From 89bfd27a8b78219d3990755a8c6bec80881cc31d Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 7 Dec 2016 14:09:23 -0800 Subject: [PATCH 1/7] Copy of variant-1.1.4 (02bd1ac) --- mapbox/optional.hpp | 74 +++ mapbox/recursive_wrapper.hpp | 122 ++++ mapbox/variant.hpp | 1013 ++++++++++++++++++++++++++++++++++ mapbox/variant_io.hpp | 45 ++ mapbox/variant_visitor.hpp | 38 ++ 5 files changed, 1292 insertions(+) create mode 100644 mapbox/optional.hpp create mode 100644 mapbox/recursive_wrapper.hpp create mode 100644 mapbox/variant.hpp create mode 100644 mapbox/variant_io.hpp create mode 100644 mapbox/variant_visitor.hpp diff --git a/mapbox/optional.hpp b/mapbox/optional.hpp new file mode 100644 index 0000000..d84705c --- /dev/null +++ b/mapbox/optional.hpp @@ -0,0 +1,74 @@ +#ifndef MAPBOX_UTIL_OPTIONAL_HPP +#define MAPBOX_UTIL_OPTIONAL_HPP + +#pragma message("This implementation of optional is deprecated. See https://github.com/mapbox/variant/issues/64.") + +#include +#include + +#include + +namespace mapbox { +namespace util { + +template +class optional +{ + static_assert(!std::is_reference::value, "optional doesn't support references"); + + struct none_type + { + }; + + variant variant_; + +public: + optional() = default; + + optional(optional const& rhs) + { + if (this != &rhs) + { // protect against invalid self-assignment + variant_ = rhs.variant_; + } + } + + optional(T const& v) { variant_ = v; } + + explicit operator bool() const noexcept { return variant_.template is(); } + + T const& get() const { return variant_.template get(); } + T& get() { return variant_.template get(); } + + T const& operator*() const { return this->get(); } + T operator*() { return this->get(); } + + optional& operator=(T const& v) + { + variant_ = v; + return *this; + } + + optional& operator=(optional const& rhs) + { + if (this != &rhs) + { + variant_ = rhs.variant_; + } + return *this; + } + + template + void emplace(Args&&... args) + { + variant_ = T{std::forward(args)...}; + } + + void reset() { variant_ = none_type{}; } + +}; // class optional + +} // namespace util +} // namespace mapbox + +#endif // MAPBOX_UTIL_OPTIONAL_HPP diff --git a/mapbox/recursive_wrapper.hpp b/mapbox/recursive_wrapper.hpp new file mode 100644 index 0000000..4ffcbd7 --- /dev/null +++ b/mapbox/recursive_wrapper.hpp @@ -0,0 +1,122 @@ +#ifndef MAPBOX_UTIL_RECURSIVE_WRAPPER_HPP +#define MAPBOX_UTIL_RECURSIVE_WRAPPER_HPP + +// Based on variant/recursive_wrapper.hpp from boost. +// +// Original license: +// +// Copyright (c) 2002-2003 +// Eric Friedman, Itay Maman +// +// Distributed under the Boost Software License, Version 1.0. (See +// accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +#include +#include + +namespace mapbox { +namespace util { + +template +class recursive_wrapper +{ + + T* p_; + + void assign(T const& rhs) + { + this->get() = rhs; + } + +public: + using type = T; + + /** + * Default constructor default initializes the internally stored value. + * For POD types this means nothing is done and the storage is + * uninitialized. + * + * @throws std::bad_alloc if there is insufficient memory for an object + * of type T. + * @throws any exception thrown by the default constructur of T. + */ + recursive_wrapper() + : p_(new T){} + + ~recursive_wrapper() noexcept { delete p_; } + + recursive_wrapper(recursive_wrapper const& operand) + : p_(new T(operand.get())) {} + + recursive_wrapper(T const& operand) + : p_(new T(operand)) {} + + recursive_wrapper(recursive_wrapper&& operand) + : p_(new T(std::move(operand.get()))) {} + + recursive_wrapper(T&& operand) + : p_(new T(std::move(operand))) {} + + inline recursive_wrapper& operator=(recursive_wrapper const& rhs) + { + assign(rhs.get()); + return *this; + } + + inline recursive_wrapper& operator=(T const& rhs) + { + assign(rhs); + return *this; + } + + inline void swap(recursive_wrapper& operand) noexcept + { + T* temp = operand.p_; + operand.p_ = p_; + p_ = temp; + } + + recursive_wrapper& operator=(recursive_wrapper&& rhs) noexcept + { + swap(rhs); + return *this; + } + + recursive_wrapper& operator=(T&& rhs) + { + get() = std::move(rhs); + return *this; + } + + T& get() + { + assert(p_); + return *get_pointer(); + } + + T const& get() const + { + assert(p_); + return *get_pointer(); + } + + T* get_pointer() { return p_; } + + const T* get_pointer() const { return p_; } + + operator T const&() const { return this->get(); } + + operator T&() { return this->get(); } + +}; // class recursive_wrapper + +template +inline void swap(recursive_wrapper& lhs, recursive_wrapper& rhs) noexcept +{ + lhs.swap(rhs); +} +} // namespace util +} // namespace mapbox + +#endif // MAPBOX_UTIL_RECURSIVE_WRAPPER_HPP diff --git a/mapbox/variant.hpp b/mapbox/variant.hpp new file mode 100644 index 0000000..fb0f77e --- /dev/null +++ b/mapbox/variant.hpp @@ -0,0 +1,1013 @@ +#ifndef MAPBOX_UTIL_VARIANT_HPP +#define MAPBOX_UTIL_VARIANT_HPP + +#include +#include // size_t +#include // operator new +#include // runtime_error +#include +#include +#include +#include +#include +#include + +#include +#include + +// clang-format off +// [[deprecated]] is only available in C++14, use this for the time being +#if __cplusplus <= 201103L +# ifdef __GNUC__ +# define MAPBOX_VARIANT_DEPRECATED __attribute__((deprecated)) +# elif defined(_MSC_VER) +# define MAPBOX_VARIANT_DEPRECATED __declspec(deprecated) +# else +# define MAPBOX_VARIANT_DEPRECATED +# endif +#else +# define MAPBOX_VARIANT_DEPRECATED [[deprecated]] +#endif + + +#ifdef _MSC_VER +// https://msdn.microsoft.com/en-us/library/bw1hbe6y.aspx +# ifdef NDEBUG +# define VARIANT_INLINE __forceinline +# else +# define VARIANT_INLINE //__declspec(noinline) +# endif +#else +# ifdef NDEBUG +# define VARIANT_INLINE //inline __attribute__((always_inline)) +# else +# define VARIANT_INLINE __attribute__((noinline)) +# endif +#endif +// clang-format on + +// Exceptions +#if defined( __EXCEPTIONS) || defined( _MSC_VER) +#define HAS_EXCEPTIONS +#endif + +#define VARIANT_MAJOR_VERSION 1 +#define VARIANT_MINOR_VERSION 1 +#define VARIANT_PATCH_VERSION 0 + +#define VARIANT_VERSION (VARIANT_MAJOR_VERSION * 100000) + (VARIANT_MINOR_VERSION * 100) + (VARIANT_PATCH_VERSION) + +namespace mapbox { +namespace util { + +// XXX This should derive from std::logic_error instead of std::runtime_error. +// See https://github.com/mapbox/variant/issues/48 for details. +class bad_variant_access : public std::runtime_error +{ + +public: + explicit bad_variant_access(const std::string& what_arg) + : runtime_error(what_arg) {} + + explicit bad_variant_access(const char* what_arg) + : runtime_error(what_arg) {} + +}; // class bad_variant_access + +template +struct MAPBOX_VARIANT_DEPRECATED static_visitor +{ + using result_type = R; + +protected: + static_visitor() {} + ~static_visitor() {} +}; + +namespace detail { + +static constexpr std::size_t invalid_value = std::size_t(-1); + +template +struct direct_type; + +template +struct direct_type +{ + static constexpr std::size_t index = std::is_same::value + ? sizeof...(Types) + : direct_type::index; +}; + +template +struct direct_type +{ + static constexpr std::size_t index = invalid_value; +}; + +#if __cpp_lib_logical_traits >= 201510L + +using std::disjunction; + +#else + +template +struct disjunction : std::false_type {}; + +template +struct disjunction : B1 {}; + +template +struct disjunction : std::conditional::type {}; + +template +struct disjunction : std::conditional>::type {}; + +#endif + +template +struct convertible_type; + +template +struct convertible_type +{ + static constexpr std::size_t index = std::is_convertible::value + ? disjunction...>::value ? invalid_value : sizeof...(Types) + : convertible_type::index; +}; + +template +struct convertible_type +{ + static constexpr std::size_t index = invalid_value; +}; + +template +struct value_traits +{ + using value_type = typename std::remove_const::type>::type; + static constexpr std::size_t direct_index = direct_type::index; + static constexpr bool is_direct = direct_index != invalid_value; + static constexpr std::size_t index = is_direct ? direct_index : convertible_type::index; + static constexpr bool is_valid = index != invalid_value; + static constexpr std::size_t tindex = is_valid ? sizeof...(Types)-index : 0; + using target_type = typename std::tuple_element>::type; +}; + +template +struct enable_if_type +{ + using type = R; +}; + +template +struct result_of_unary_visit +{ + using type = typename std::result_of::type; +}; + +template +struct result_of_unary_visit::type> +{ + using type = typename F::result_type; +}; + +template +struct result_of_binary_visit +{ + using type = typename std::result_of::type; +}; + +template +struct result_of_binary_visit::type> +{ + using type = typename F::result_type; +}; + +template +struct static_max; + +template +struct static_max +{ + static const std::size_t value = arg; +}; + +template +struct static_max +{ + static const std::size_t value = arg1 >= arg2 ? static_max::value : static_max::value; +}; + +template +struct variant_helper; + +template +struct variant_helper +{ + VARIANT_INLINE static void destroy(const std::size_t type_index, void* data) + { + if (type_index == sizeof...(Types)) + { + reinterpret_cast(data)->~T(); + } + else + { + variant_helper::destroy(type_index, data); + } + } + + VARIANT_INLINE static void move(const std::size_t old_type_index, void* old_value, void* new_value) + { + if (old_type_index == sizeof...(Types)) + { + new (new_value) T(std::move(*reinterpret_cast(old_value))); + } + else + { + variant_helper::move(old_type_index, old_value, new_value); + } + } + + VARIANT_INLINE static void copy(const std::size_t old_type_index, const void* old_value, void* new_value) + { + if (old_type_index == sizeof...(Types)) + { + new (new_value) T(*reinterpret_cast(old_value)); + } + else + { + variant_helper::copy(old_type_index, old_value, new_value); + } + } +}; + +template <> +struct variant_helper<> +{ + VARIANT_INLINE static void destroy(const std::size_t, void*) {} + VARIANT_INLINE static void move(const std::size_t, void*, void*) {} + VARIANT_INLINE static void copy(const std::size_t, const void*, void*) {} +}; + +template +struct unwrapper +{ + static T const& apply_const(T const& obj) { return obj; } + static T& apply(T& obj) { return obj; } +}; + +template +struct unwrapper> +{ + static auto apply_const(recursive_wrapper const& obj) + -> typename recursive_wrapper::type const& + { + return obj.get(); + } + static auto apply(recursive_wrapper& obj) + -> typename recursive_wrapper::type& + { + return obj.get(); + } +}; + +template +struct unwrapper> +{ + static auto apply_const(std::reference_wrapper const& obj) + -> typename std::reference_wrapper::type const& + { + return obj.get(); + } + static auto apply(std::reference_wrapper& obj) + -> typename std::reference_wrapper::type& + { + return obj.get(); + } +}; + +template +struct dispatcher; + +template +struct dispatcher +{ + VARIANT_INLINE static R apply_const(V const& v, F&& f) + { + if (v.template is()) + { + return f(unwrapper::apply_const(v.template get_unchecked())); + } + else + { + return dispatcher::apply_const(v, std::forward(f)); + } + } + + VARIANT_INLINE static R apply(V& v, F&& f) + { + if (v.template is()) + { + return f(unwrapper::apply(v.template get_unchecked())); + } + else + { + return dispatcher::apply(v, std::forward(f)); + } + } +}; + +template +struct dispatcher +{ + VARIANT_INLINE static R apply_const(V const& v, F&& f) + { + return f(unwrapper::apply_const(v.template get_unchecked())); + } + + VARIANT_INLINE static R apply(V& v, F&& f) + { + return f(unwrapper::apply(v.template get_unchecked())); + } +}; + +template +struct binary_dispatcher_rhs; + +template +struct binary_dispatcher_rhs +{ + VARIANT_INLINE static R apply_const(V const& lhs, V const& rhs, F&& f) + { + if (rhs.template is()) // call binary functor + { + return f(unwrapper::apply_const(lhs.template get_unchecked()), + unwrapper::apply_const(rhs.template get_unchecked())); + } + else + { + return binary_dispatcher_rhs::apply_const(lhs, rhs, std::forward(f)); + } + } + + VARIANT_INLINE static R apply(V& lhs, V& rhs, F&& f) + { + if (rhs.template is()) // call binary functor + { + return f(unwrapper::apply(lhs.template get_unchecked()), + unwrapper::apply(rhs.template get_unchecked())); + } + else + { + return binary_dispatcher_rhs::apply(lhs, rhs, std::forward(f)); + } + } +}; + +template +struct binary_dispatcher_rhs +{ + VARIANT_INLINE static R apply_const(V const& lhs, V const& rhs, F&& f) + { + return f(unwrapper::apply_const(lhs.template get_unchecked()), + unwrapper::apply_const(rhs.template get_unchecked())); + } + + VARIANT_INLINE static R apply(V& lhs, V& rhs, F&& f) + { + return f(unwrapper::apply(lhs.template get_unchecked()), + unwrapper::apply(rhs.template get_unchecked())); + } +}; + +template +struct binary_dispatcher_lhs; + +template +struct binary_dispatcher_lhs +{ + VARIANT_INLINE static R apply_const(V const& lhs, V const& rhs, F&& f) + { + if (lhs.template is()) // call binary functor + { + return f(unwrapper::apply_const(lhs.template get_unchecked()), + unwrapper::apply_const(rhs.template get_unchecked())); + } + else + { + return binary_dispatcher_lhs::apply_const(lhs, rhs, std::forward(f)); + } + } + + VARIANT_INLINE static R apply(V& lhs, V& rhs, F&& f) + { + if (lhs.template is()) // call binary functor + { + return f(unwrapper::apply(lhs.template get_unchecked()), + unwrapper::apply(rhs.template get_unchecked())); + } + else + { + return binary_dispatcher_lhs::apply(lhs, rhs, std::forward(f)); + } + } +}; + +template +struct binary_dispatcher_lhs +{ + VARIANT_INLINE static R apply_const(V const& lhs, V const& rhs, F&& f) + { + return f(unwrapper::apply_const(lhs.template get_unchecked()), + unwrapper::apply_const(rhs.template get_unchecked())); + } + + VARIANT_INLINE static R apply(V& lhs, V& rhs, F&& f) + { + return f(unwrapper::apply(lhs.template get_unchecked()), + unwrapper::apply(rhs.template get_unchecked())); + } +}; + +template +struct binary_dispatcher; + +template +struct binary_dispatcher +{ + VARIANT_INLINE static R apply_const(V const& v0, V const& v1, F&& f) + { + if (v0.template is()) + { + if (v1.template is()) + { + return f(unwrapper::apply_const(v0.template get_unchecked()), + unwrapper::apply_const(v1.template get_unchecked())); // call binary functor + } + else + { + return binary_dispatcher_rhs::apply_const(v0, v1, std::forward(f)); + } + } + else if (v1.template is()) + { + return binary_dispatcher_lhs::apply_const(v0, v1, std::forward(f)); + } + return binary_dispatcher::apply_const(v0, v1, std::forward(f)); + } + + VARIANT_INLINE static R apply(V& v0, V& v1, F&& f) + { + if (v0.template is()) + { + if (v1.template is()) + { + return f(unwrapper::apply(v0.template get_unchecked()), + unwrapper::apply(v1.template get_unchecked())); // call binary functor + } + else + { + return binary_dispatcher_rhs::apply(v0, v1, std::forward(f)); + } + } + else if (v1.template is()) + { + return binary_dispatcher_lhs::apply(v0, v1, std::forward(f)); + } + return binary_dispatcher::apply(v0, v1, std::forward(f)); + } +}; + +template +struct binary_dispatcher +{ + VARIANT_INLINE static R apply_const(V const& v0, V const& v1, F&& f) + { + return f(unwrapper::apply_const(v0.template get_unchecked()), + unwrapper::apply_const(v1.template get_unchecked())); // call binary functor + } + + VARIANT_INLINE static R apply(V& v0, V& v1, F&& f) + { + return f(unwrapper::apply(v0.template get_unchecked()), + unwrapper::apply(v1.template get_unchecked())); // call binary functor + } +}; + +// comparator functors +struct equal_comp +{ + template + bool operator()(T const& lhs, T const& rhs) const + { + return lhs == rhs; + } +}; + +struct less_comp +{ + template + bool operator()(T const& lhs, T const& rhs) const + { + return lhs < rhs; + } +}; + +template +class comparer +{ +public: + explicit comparer(Variant const& lhs) noexcept + : lhs_(lhs) {} + comparer& operator=(comparer const&) = delete; + // visitor + template + bool operator()(T const& rhs_content) const + { + T const& lhs_content = lhs_.template get_unchecked(); + return Comp()(lhs_content, rhs_content); + } + +private: + Variant const& lhs_; +}; + +// hashing visitor +struct hasher +{ + template + std::size_t operator()(const T& hashable) const + { + return std::hash{}(hashable); + } +}; + +} // namespace detail + +struct no_init +{ +}; + +template +class variant +{ + static_assert(sizeof...(Types) > 0, "Template parameter type list of variant can not be empty"); + static_assert(!detail::disjunction...>::value, "Variant can not hold reference types. Maybe use std::reference_wrapper?"); + +private: + static const std::size_t data_size = detail::static_max::value; + static const std::size_t data_align = detail::static_max::value; +public: + struct adapted_variant_tag; + using types = std::tuple; +private: + using first_type = typename std::tuple_element<0, types>::type; + using data_type = typename std::aligned_storage::type; + using helper_type = detail::variant_helper; + + std::size_t type_index; + data_type data; + +public: + VARIANT_INLINE variant() noexcept(std::is_nothrow_default_constructible::value) + : type_index(sizeof...(Types)-1) + { + static_assert(std::is_default_constructible::value, "First type in variant must be default constructible to allow default construction of variant"); + new (&data) first_type(); + } + + VARIANT_INLINE variant(no_init) noexcept + : type_index(detail::invalid_value) {} + + // http://isocpp.org/blog/2012/11/universal-references-in-c11-scott-meyers + template , + typename Enable = typename std::enable_if, typename Traits::value_type>::value>::type > + VARIANT_INLINE variant(T&& val) noexcept(std::is_nothrow_constructible::value) + : type_index(Traits::index) + { + new (&data) typename Traits::target_type(std::forward(val)); + } + + VARIANT_INLINE variant(variant const& old) + : type_index(old.type_index) + { + helper_type::copy(old.type_index, &old.data, &data); + } + + VARIANT_INLINE variant(variant&& old) noexcept(std::is_nothrow_move_constructible::value) + : type_index(old.type_index) + { + helper_type::move(old.type_index, &old.data, &data); + } + +private: + VARIANT_INLINE void copy_assign(variant const& rhs) + { + helper_type::destroy(type_index, &data); + type_index = detail::invalid_value; + helper_type::copy(rhs.type_index, &rhs.data, &data); + type_index = rhs.type_index; + } + + VARIANT_INLINE void move_assign(variant&& rhs) + { + helper_type::destroy(type_index, &data); + type_index = detail::invalid_value; + helper_type::move(rhs.type_index, &rhs.data, &data); + type_index = rhs.type_index; + } + +public: + VARIANT_INLINE variant& operator=(variant&& other) + { + move_assign(std::move(other)); + return *this; + } + + VARIANT_INLINE variant& operator=(variant const& other) + { + copy_assign(other); + return *this; + } + + // conversions + // move-assign + template + VARIANT_INLINE variant& operator=(T&& rhs) noexcept + { + variant temp(std::forward(rhs)); + move_assign(std::move(temp)); + return *this; + } + + // copy-assign + template + VARIANT_INLINE variant& operator=(T const& rhs) + { + variant temp(rhs); + copy_assign(temp); + return *this; + } + + template ::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE bool is() const + { + return type_index == detail::direct_type::index; + } + + template , Types...>::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE bool is() const + { + return type_index == detail::direct_type, Types...>::index; + } + + VARIANT_INLINE bool valid() const + { + return type_index != detail::invalid_value; + } + + template + VARIANT_INLINE void set(Args&&... args) + { + helper_type::destroy(type_index, &data); + type_index = detail::invalid_value; + new (&data) T(std::forward(args)...); + type_index = detail::direct_type::index; + } + + // get_unchecked() + template ::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T& get_unchecked() + { + return *reinterpret_cast(&data); + } + +#ifdef HAS_EXCEPTIONS + // get() + template ::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T& get() + { + if (type_index == detail::direct_type::index) + { + return *reinterpret_cast(&data); + } + else + { + throw bad_variant_access("in get()"); + } + } +#endif + + template ::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T const& get_unchecked() const + { + return *reinterpret_cast(&data); + } + +#ifdef HAS_EXCEPTIONS + template ::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T const& get() const + { + if (type_index == detail::direct_type::index) + { + return *reinterpret_cast(&data); + } + else + { + throw bad_variant_access("in get()"); + } + } +#endif + + // get_unchecked() - T stored as recursive_wrapper + template , Types...>::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T& get_unchecked() + { + return (*reinterpret_cast*>(&data)).get(); + } + +#ifdef HAS_EXCEPTIONS + // get() - T stored as recursive_wrapper + template , Types...>::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T& get() + { + if (type_index == detail::direct_type, Types...>::index) + { + return (*reinterpret_cast*>(&data)).get(); + } + else + { + throw bad_variant_access("in get()"); + } + } +#endif + + template , Types...>::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T const& get_unchecked() const + { + return (*reinterpret_cast const*>(&data)).get(); + } + +#ifdef HAS_EXCEPTIONS + template , Types...>::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T const& get() const + { + if (type_index == detail::direct_type, Types...>::index) + { + return (*reinterpret_cast const*>(&data)).get(); + } + else + { + throw bad_variant_access("in get()"); + } + } +#endif + + // get_unchecked() - T stored as std::reference_wrapper + template , Types...>::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T& get_unchecked() + { + return (*reinterpret_cast*>(&data)).get(); + } + +#ifdef HAS_EXCEPTIONS + // get() - T stored as std::reference_wrapper + template , Types...>::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T& get() + { + if (type_index == detail::direct_type, Types...>::index) + { + return (*reinterpret_cast*>(&data)).get(); + } + else + { + throw bad_variant_access("in get()"); + } + } +#endif + + template , Types...>::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T const& get_unchecked() const + { + return (*reinterpret_cast const*>(&data)).get(); + } + +#ifdef HAS_EXCEPTIONS + template , Types...>::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE T const& get() const + { + if (type_index == detail::direct_type, Types...>::index) + { + return (*reinterpret_cast const*>(&data)).get(); + } + else + { + throw bad_variant_access("in get()"); + } + } +#endif + + // This function is deprecated because it returns an internal index field. + // Use which() instead. + MAPBOX_VARIANT_DEPRECATED VARIANT_INLINE std::size_t get_type_index() const + { + return type_index; + } + + VARIANT_INLINE int which() const noexcept + { + return static_cast(sizeof...(Types)-type_index - 1); + } + + template ::index != detail::invalid_value)>::type* = nullptr> + VARIANT_INLINE static constexpr int which() noexcept + { + return static_cast(sizeof...(Types)-detail::direct_type::index - 1); + } + + // visitor + // unary + template ::type> + auto VARIANT_INLINE static visit(V const& v, F&& f) + -> decltype(detail::dispatcher::apply_const(v, std::forward(f))) + { + return detail::dispatcher::apply_const(v, std::forward(f)); + } + // non-const + template ::type> + auto VARIANT_INLINE static visit(V& v, F&& f) + -> decltype(detail::dispatcher::apply(v, std::forward(f))) + { + return detail::dispatcher::apply(v, std::forward(f)); + } + + // binary + // const + template ::type> + auto VARIANT_INLINE static binary_visit(V const& v0, V const& v1, F&& f) + -> decltype(detail::binary_dispatcher::apply_const(v0, v1, std::forward(f))) + { + return detail::binary_dispatcher::apply_const(v0, v1, std::forward(f)); + } + // non-const + template ::type> + auto VARIANT_INLINE static binary_visit(V& v0, V& v1, F&& f) + -> decltype(detail::binary_dispatcher::apply(v0, v1, std::forward(f))) + { + return detail::binary_dispatcher::apply(v0, v1, std::forward(f)); + } + + // match + // unary + template + auto VARIANT_INLINE match(Fs&&... fs) const + -> decltype(variant::visit(*this, ::mapbox::util::make_visitor(std::forward(fs)...))) + { + return variant::visit(*this, ::mapbox::util::make_visitor(std::forward(fs)...)); + } + // non-const + template + auto VARIANT_INLINE match(Fs&&... fs) + -> decltype(variant::visit(*this, ::mapbox::util::make_visitor(std::forward(fs)...))) + { + return variant::visit(*this, ::mapbox::util::make_visitor(std::forward(fs)...)); + } + + ~variant() noexcept // no-throw destructor + { + helper_type::destroy(type_index, &data); + } + + // comparison operators + // equality + VARIANT_INLINE bool operator==(variant const& rhs) const + { + assert(valid() && rhs.valid()); + if (this->which() != rhs.which()) + { + return false; + } + detail::comparer visitor(*this); + return visit(rhs, visitor); + } + + VARIANT_INLINE bool operator!=(variant const& rhs) const + { + return !(*this == rhs); + } + + // less than + VARIANT_INLINE bool operator<(variant const& rhs) const + { + assert(valid() && rhs.valid()); + if (this->which() != rhs.which()) + { + return this->which() < rhs.which(); + } + detail::comparer visitor(*this); + return visit(rhs, visitor); + } + VARIANT_INLINE bool operator>(variant const& rhs) const + { + return rhs < *this; + } + VARIANT_INLINE bool operator<=(variant const& rhs) const + { + return !(*this > rhs); + } + VARIANT_INLINE bool operator>=(variant const& rhs) const + { + return !(*this < rhs); + } +}; + +// unary visitor interface +// const +template +auto VARIANT_INLINE apply_visitor(F&& f, V const& v) -> decltype(V::visit(v, std::forward(f))) +{ + return V::visit(v, std::forward(f)); +} + +// non-const +template +auto VARIANT_INLINE apply_visitor(F&& f, V& v) -> decltype(V::visit(v, std::forward(f))) +{ + return V::visit(v, std::forward(f)); +} + +// binary visitor interface +// const +template +auto VARIANT_INLINE apply_visitor(F&& f, V const& v0, V const& v1) -> decltype(V::binary_visit(v0, v1, std::forward(f))) +{ + return V::binary_visit(v0, v1, std::forward(f)); +} + +// non-const +template +auto VARIANT_INLINE apply_visitor(F&& f, V& v0, V& v1) -> decltype(V::binary_visit(v0, v1, std::forward(f))) +{ + return V::binary_visit(v0, v1, std::forward(f)); +} + +// getter interface + +#ifdef HAS_EXCEPTIONS +template +auto get(T& var)->decltype(var.template get()) +{ + return var.template get(); +} +#endif + +template +ResultType& get_unchecked(T& var) +{ + return var.template get_unchecked(); +} + +#ifdef HAS_EXCEPTIONS +template +auto get(T const& var)->decltype(var.template get()) +{ + return var.template get(); +} +#endif + +template +ResultType const& get_unchecked(T const& var) +{ + return var.template get_unchecked(); +} +} // namespace util +} // namespace mapbox + +// hashable iff underlying types are hashable +namespace std { +template +struct hash< ::mapbox::util::variant> { + std::size_t operator()(const ::mapbox::util::variant& v) const noexcept + { + return ::mapbox::util::apply_visitor(::mapbox::util::detail::hasher{}, v); + } +}; +} + +#endif // MAPBOX_UTIL_VARIANT_HPP diff --git a/mapbox/variant_io.hpp b/mapbox/variant_io.hpp new file mode 100644 index 0000000..1456cc5 --- /dev/null +++ b/mapbox/variant_io.hpp @@ -0,0 +1,45 @@ +#ifndef MAPBOX_UTIL_VARIANT_IO_HPP +#define MAPBOX_UTIL_VARIANT_IO_HPP + +#include + +#include + +namespace mapbox { +namespace util { + +namespace detail { +// operator<< helper +template +class printer +{ +public: + explicit printer(Out& out) + : out_(out) {} + printer& operator=(printer const&) = delete; + + // visitor + template + void operator()(T const& operand) const + { + out_ << operand; + } + +private: + Out& out_; +}; +} + +// operator<< +template +VARIANT_INLINE std::basic_ostream& +operator<<(std::basic_ostream& out, variant const& rhs) +{ + detail::printer> visitor(out); + apply_visitor(visitor, rhs); + return out; +} +} // namespace util +} // namespace mapbox + +#endif // MAPBOX_UTIL_VARIANT_IO_HPP diff --git a/mapbox/variant_visitor.hpp b/mapbox/variant_visitor.hpp new file mode 100644 index 0000000..481eb65 --- /dev/null +++ b/mapbox/variant_visitor.hpp @@ -0,0 +1,38 @@ +#ifndef MAPBOX_UTIL_VARIANT_VISITOR_HPP +#define MAPBOX_UTIL_VARIANT_VISITOR_HPP + +namespace mapbox { +namespace util { + +template +struct visitor; + +template +struct visitor : Fn +{ + using type = Fn; + using Fn::operator(); + + visitor(Fn fn) : Fn(fn) {} +}; + +template +struct visitor : Fn, visitor +{ + using type = visitor; + using Fn::operator(); + using visitor::operator(); + + visitor(Fn fn, Fns... fns) : Fn(fn), visitor(fns...) {} +}; + +template +visitor make_visitor(Fns... fns) +{ + return visitor(fns...); +} + +} // namespace util +} // namespace mapbox + +#endif // MAPBOX_UTIL_VARIANT_VISITOR_HPP From c0d5171f1dc63c801f37f8c469efc8c1e45117d0 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 7 Dec 2016 14:11:53 -0800 Subject: [PATCH 2/7] Copy of geometry.hpp-0.9.0 (e3acceb) --- mapbox/geometry.hpp | 13 +++ mapbox/geometry/box.hpp | 34 ++++++++ mapbox/geometry/envelope.hpp | 33 +++++++ mapbox/geometry/feature.hpp | 81 ++++++++++++++++++ mapbox/geometry/for_each_point.hpp | 45 ++++++++++ mapbox/geometry/geometry.hpp | 53 ++++++++++++ mapbox/geometry/line_string.hpp | 21 +++++ mapbox/geometry/multi_line_string.hpp | 21 +++++ mapbox/geometry/multi_point.hpp | 21 +++++ mapbox/geometry/multi_polygon.hpp | 21 +++++ mapbox/geometry/point.hpp | 35 ++++++++ mapbox/geometry/point_arithmetic.hpp | 119 ++++++++++++++++++++++++++ mapbox/geometry/polygon.hpp | 31 +++++++ 13 files changed, 528 insertions(+) create mode 100644 mapbox/geometry.hpp create mode 100644 mapbox/geometry/box.hpp create mode 100644 mapbox/geometry/envelope.hpp create mode 100644 mapbox/geometry/feature.hpp create mode 100644 mapbox/geometry/for_each_point.hpp create mode 100644 mapbox/geometry/geometry.hpp create mode 100644 mapbox/geometry/line_string.hpp create mode 100644 mapbox/geometry/multi_line_string.hpp create mode 100644 mapbox/geometry/multi_point.hpp create mode 100644 mapbox/geometry/multi_polygon.hpp create mode 100644 mapbox/geometry/point.hpp create mode 100644 mapbox/geometry/point_arithmetic.hpp create mode 100644 mapbox/geometry/polygon.hpp diff --git a/mapbox/geometry.hpp b/mapbox/geometry.hpp new file mode 100644 index 0000000..e232453 --- /dev/null +++ b/mapbox/geometry.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include diff --git a/mapbox/geometry/box.hpp b/mapbox/geometry/box.hpp new file mode 100644 index 0000000..bf81b70 --- /dev/null +++ b/mapbox/geometry/box.hpp @@ -0,0 +1,34 @@ +#pragma once + +#include + +namespace mapbox { +namespace geometry { + +template +struct box +{ + using point_type = point; + + constexpr box(point_type const& min_, point_type const& max_) + : min(min_), max(max_) + {} + + point_type min; + point_type max; +}; + +template +constexpr bool operator==(box const& lhs, box const& rhs) +{ + return lhs.min == rhs.min && lhs.max == rhs.max; +} + +template +constexpr bool operator!=(box const& lhs, box const& rhs) +{ + return lhs.min != rhs.min || lhs.max != rhs.max; +} + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/envelope.hpp b/mapbox/geometry/envelope.hpp new file mode 100644 index 0000000..8603583 --- /dev/null +++ b/mapbox/geometry/envelope.hpp @@ -0,0 +1,33 @@ +#pragma once + +#include +#include + +#include + +namespace mapbox { +namespace geometry { + +template +box envelope(G const& geometry) +{ + using limits = std::numeric_limits; + + T min_t = limits::has_infinity ? -limits::infinity() : limits::min(); + T max_t = limits::has_infinity ? limits::infinity() : limits::max(); + + point min(max_t, max_t); + point max(min_t, min_t); + + for_each_point(geometry, [&] (point const& point) { + if (min.x > point.x) min.x = point.x; + if (min.y > point.y) min.y = point.y; + if (max.x < point.x) max.x = point.x; + if (max.y < point.y) max.y = point.y; + }); + + return box(min, max); +} + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/feature.hpp b/mapbox/geometry/feature.hpp new file mode 100644 index 0000000..3bdd484 --- /dev/null +++ b/mapbox/geometry/feature.hpp @@ -0,0 +1,81 @@ +#pragma once + +#include + +#include + +#include +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { + +struct value; + +struct null_value_t +{ + constexpr null_value_t() {} + constexpr null_value_t(std::nullptr_t) {} +}; + +constexpr bool operator==(const null_value_t&, const null_value_t&) { return true; } +constexpr bool operator!=(const null_value_t&, const null_value_t&) { return false; } + +constexpr null_value_t null_value = null_value_t(); + +// Multiple numeric types (uint64_t, int64_t, double) are present in order to support +// the widest possible range of JSON numbers, which do not have a maximum range. +// Implementations that produce `value`s should use that order for type preference, +// using uint64_t for positive integers, int64_t for negative integers, and double +// for non-integers and integers outside the range of 64 bits. +using value_base = mapbox::util::variant>, + mapbox::util::recursive_wrapper>>; + +struct value : value_base +{ + using value_base::value_base; +}; + +using property_map = std::unordered_map; + +// The same considerations and requirement for numeric types apply as for `value_base`. +using identifier = mapbox::util::variant; + +template +struct feature +{ + using coordinate_type = T; + using geometry_type = mapbox::geometry::geometry; // Fully qualified to avoid GCC -fpermissive error. + + geometry_type geometry; + property_map properties {}; + std::experimental::optional id {}; +}; + +template +constexpr bool operator==(feature const& lhs, feature const& rhs) +{ + return lhs.id == rhs.id && lhs.geometry == rhs.geometry && lhs.properties == rhs.properties; +} + +template +constexpr bool operator!=(feature const& lhs, feature const& rhs) +{ + return !(lhs == rhs); +} + +template class Cont = std::vector> +struct feature_collection : Cont> +{ + using coordinate_type = T; + using feature_type = feature; + using container_type = Cont; + using container_type::container_type; +}; + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/for_each_point.hpp b/mapbox/geometry/for_each_point.hpp new file mode 100644 index 0000000..44d6e77 --- /dev/null +++ b/mapbox/geometry/for_each_point.hpp @@ -0,0 +1,45 @@ +#pragma once + +#include + +namespace mapbox { +namespace geometry { + +template +auto for_each_point(Point&& point, F&& f) + -> decltype(point.x, point.y, void()) +{ + f(std::forward(point)); +} + +template +auto for_each_point(Container&& container, F&& f) + -> decltype(container.begin(), container.end(), void()); + +template +void for_each_point(mapbox::util::variant const& geom, F&& f) +{ + mapbox::util::variant::visit(geom, [&] (auto const& g) { + for_each_point(g, f); + }); +} + +template +void for_each_point(mapbox::util::variant & geom, F&& f) +{ + mapbox::util::variant::visit(geom, [&] (auto & g) { + for_each_point(g, f); + }); +} + +template +auto for_each_point(Container&& container, F&& f) + -> decltype(container.begin(), container.end(), void()) +{ + for (auto& e: container) { + for_each_point(e, f); + } +} + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/geometry.hpp b/mapbox/geometry/geometry.hpp new file mode 100644 index 0000000..a3970bf --- /dev/null +++ b/mapbox/geometry/geometry.hpp @@ -0,0 +1,53 @@ +#pragma once + +#include +#include +#include +#include +#include +#include + +#include + +// stl +#include + +namespace mapbox { +namespace geometry { + +template class Cont = std::vector> +struct geometry_collection; + +template +using geometry_base = mapbox::util::variant, + line_string, + polygon, + multi_point, + multi_line_string, + multi_polygon, + geometry_collection>; + +template +struct geometry : geometry_base +{ + using coordinate_type = T; + using geometry_base::geometry_base; + + /* + * The default constructor would create a point geometry with default-constructed coordinates; + * i.e. (0, 0). Since this is not particularly useful, and could hide bugs, it is disabled. + */ + geometry() = delete; +}; + +template class Cont> +struct geometry_collection : Cont> +{ + using coordinate_type = T; + using geometry_type = geometry; + using container_type = Cont; + using container_type::container_type; +}; + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/line_string.hpp b/mapbox/geometry/line_string.hpp new file mode 100644 index 0000000..6d811ce --- /dev/null +++ b/mapbox/geometry/line_string.hpp @@ -0,0 +1,21 @@ +#pragma once + +// mapbox +#include +// stl +#include + +namespace mapbox { +namespace geometry { + +template class Cont = std::vector> +struct line_string : Cont > +{ + using coordinate_type = T; + using point_type = point; + using container_type = Cont; + using container_type::container_type; +}; + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/multi_line_string.hpp b/mapbox/geometry/multi_line_string.hpp new file mode 100644 index 0000000..07a7a1d --- /dev/null +++ b/mapbox/geometry/multi_line_string.hpp @@ -0,0 +1,21 @@ +#pragma once + +// mapbox +#include +// stl +#include + +namespace mapbox { +namespace geometry { + +template class Cont = std::vector> +struct multi_line_string : Cont> +{ + using coordinate_type = T; + using line_string_type = line_string; + using container_type = Cont; + using container_type::container_type; +}; + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/multi_point.hpp b/mapbox/geometry/multi_point.hpp new file mode 100644 index 0000000..a3c73cf --- /dev/null +++ b/mapbox/geometry/multi_point.hpp @@ -0,0 +1,21 @@ +#pragma once + +// mapbox +#include +// stl +#include + +namespace mapbox { +namespace geometry { + +template class Cont = std::vector> +struct multi_point : Cont> +{ + using coordinate_type = T; + using point_type = point; + using container_type = Cont; + using container_type::container_type; +}; + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/multi_polygon.hpp b/mapbox/geometry/multi_polygon.hpp new file mode 100644 index 0000000..ad230a0 --- /dev/null +++ b/mapbox/geometry/multi_polygon.hpp @@ -0,0 +1,21 @@ +#pragma once + +// mapbox +#include +// stl +#include + +namespace mapbox { +namespace geometry { + +template class Cont = std::vector> +struct multi_polygon : Cont> +{ + using coordinate_type = T; + using polygon_type = polygon; + using container_type = Cont; + using container_type::container_type; +}; + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/point.hpp b/mapbox/geometry/point.hpp new file mode 100644 index 0000000..0cba499 --- /dev/null +++ b/mapbox/geometry/point.hpp @@ -0,0 +1,35 @@ +#pragma once + +namespace mapbox { +namespace geometry { + +template +struct point +{ + using coordinate_type = T; + + constexpr point() + : x(), y() + {} + constexpr point(T x_, T y_) + : x(x_), y(y_) + {} + + T x; + T y; +}; + +template +constexpr bool operator==(point const& lhs, point const& rhs) +{ + return lhs.x == rhs.x && lhs.y == rhs.y; +} + +template +constexpr bool operator!=(point const& lhs, point const& rhs) +{ + return !(lhs == rhs); +} + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/point_arithmetic.hpp b/mapbox/geometry/point_arithmetic.hpp new file mode 100644 index 0000000..3940e5b --- /dev/null +++ b/mapbox/geometry/point_arithmetic.hpp @@ -0,0 +1,119 @@ +#pragma once + +namespace mapbox { +namespace geometry { + +template +constexpr point operator+(point const& lhs, point const& rhs) +{ + return point(lhs.x + rhs.x, lhs.y + rhs.y); +} + +template +constexpr point operator+(point const& lhs, T const& rhs) +{ + return point(lhs.x + rhs, lhs.y + rhs); +} + +template +constexpr point operator-(point const& lhs, point const& rhs) +{ + return point(lhs.x - rhs.x, lhs.y - rhs.y); +} + +template +constexpr point operator-(point const& lhs, T const& rhs) +{ + return point(lhs.x - rhs, lhs.y - rhs); +} + +template +constexpr point operator*(point const& lhs, point const& rhs) +{ + return point(lhs.x * rhs.x, lhs.y * rhs.y); +} + +template +constexpr point operator*(point const& lhs, T const& rhs) +{ + return point(lhs.x * rhs, lhs.y * rhs); +} + +template +constexpr point operator/(point const& lhs, point const& rhs) +{ + return point(lhs.x / rhs.x, lhs.y / rhs.y); +} + +template +constexpr point operator/(point const& lhs, T const& rhs) +{ + return point(lhs.x / rhs, lhs.y / rhs); +} + +template +constexpr point& operator+=(point& lhs, point const& rhs) +{ + lhs.x += rhs.x; + lhs.y += rhs.y; + return lhs; +} + +template +constexpr point& operator+=(point& lhs, T const& rhs) +{ + lhs.x += rhs; + lhs.y += rhs; + return lhs; +} + +template +constexpr point& operator-=(point& lhs, point const& rhs) +{ + lhs.x -= rhs.x; + lhs.y -= rhs.y; + return lhs; +} + +template +constexpr point& operator-=(point& lhs, T const& rhs) +{ + lhs.x -= rhs; + lhs.y -= rhs; + return lhs; +} + +template +constexpr point& operator*=(point& lhs, point const& rhs) +{ + lhs.x *= rhs.x; + lhs.y *= rhs.y; + return lhs; +} + +template +constexpr point& operator*=(point& lhs, T const& rhs) +{ + lhs.x *= rhs; + lhs.y *= rhs; + return lhs; +} + +template +constexpr point& operator/=(point& lhs, point const& rhs) +{ + lhs.x /= rhs.x; + lhs.y /= rhs.y; + return lhs; +} + +template +constexpr point& operator/=(point& lhs, T const& rhs) +{ + lhs.x /= rhs; + lhs.y /= rhs; + return lhs; +} + +} // namespace geometry +} // namespace mapbox diff --git a/mapbox/geometry/polygon.hpp b/mapbox/geometry/polygon.hpp new file mode 100644 index 0000000..99a66aa --- /dev/null +++ b/mapbox/geometry/polygon.hpp @@ -0,0 +1,31 @@ +#pragma once + +// mapbox +#include + +// stl +#include + +namespace mapbox { +namespace geometry { + +template class Cont = std::vector> +struct linear_ring : Cont> +{ + using coordinate_type = T; + using point_type = point; + using container_type = Cont; + using container_type::container_type; +}; + +template class Cont = std::vector> +struct polygon : Cont> +{ + using coordinate_type = T; + using linear_ring_type = linear_ring; + using container_type = Cont; + using container_type::container_type; +}; + +} // namespace geometry +} // namespace mapbox From 22cb5186d7a7e4b5d4a2e9b21360c11679f06ae5 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 7 Dec 2016 14:14:56 -0800 Subject: [PATCH 3/7] Copy of wagyu-0.2.0 (b3fa127) --- mapbox/geometry/wagyu/active_bound_list.hpp | 526 +++++ mapbox/geometry/wagyu/bound.hpp | 95 + mapbox/geometry/wagyu/build_edges.hpp | 216 ++ .../wagyu/build_local_minima_list.hpp | 40 + mapbox/geometry/wagyu/build_result.hpp | 68 + mapbox/geometry/wagyu/config.hpp | 52 + mapbox/geometry/wagyu/edge.hpp | 122 ++ mapbox/geometry/wagyu/exceptions.hpp | 23 + mapbox/geometry/wagyu/intersect.hpp | 73 + mapbox/geometry/wagyu/intersect_util.hpp | 387 ++++ mapbox/geometry/wagyu/local_minimum.hpp | 116 + mapbox/geometry/wagyu/local_minimum_util.hpp | 419 ++++ mapbox/geometry/wagyu/point.hpp | 110 + mapbox/geometry/wagyu/process_horizontal.hpp | 285 +++ mapbox/geometry/wagyu/process_maxima.hpp | 133 ++ mapbox/geometry/wagyu/ring.hpp | 479 ++++ mapbox/geometry/wagyu/ring_util.hpp | 915 ++++++++ mapbox/geometry/wagyu/scanbeam.hpp | 37 + mapbox/geometry/wagyu/snap_rounding.hpp | 174 ++ mapbox/geometry/wagyu/topology_correction.hpp | 1932 +++++++++++++++++ mapbox/geometry/wagyu/util.hpp | 83 + mapbox/geometry/wagyu/vatti.hpp | 77 + mapbox/geometry/wagyu/wagyu.hpp | 141 ++ 23 files changed, 6503 insertions(+) create mode 100644 mapbox/geometry/wagyu/active_bound_list.hpp create mode 100644 mapbox/geometry/wagyu/bound.hpp create mode 100644 mapbox/geometry/wagyu/build_edges.hpp create mode 100644 mapbox/geometry/wagyu/build_local_minima_list.hpp create mode 100644 mapbox/geometry/wagyu/build_result.hpp create mode 100644 mapbox/geometry/wagyu/config.hpp create mode 100644 mapbox/geometry/wagyu/edge.hpp create mode 100644 mapbox/geometry/wagyu/exceptions.hpp create mode 100644 mapbox/geometry/wagyu/intersect.hpp create mode 100644 mapbox/geometry/wagyu/intersect_util.hpp create mode 100644 mapbox/geometry/wagyu/local_minimum.hpp create mode 100644 mapbox/geometry/wagyu/local_minimum_util.hpp create mode 100644 mapbox/geometry/wagyu/point.hpp create mode 100644 mapbox/geometry/wagyu/process_horizontal.hpp create mode 100644 mapbox/geometry/wagyu/process_maxima.hpp create mode 100644 mapbox/geometry/wagyu/ring.hpp create mode 100644 mapbox/geometry/wagyu/ring_util.hpp create mode 100644 mapbox/geometry/wagyu/scanbeam.hpp create mode 100644 mapbox/geometry/wagyu/snap_rounding.hpp create mode 100644 mapbox/geometry/wagyu/topology_correction.hpp create mode 100644 mapbox/geometry/wagyu/util.hpp create mode 100644 mapbox/geometry/wagyu/vatti.hpp create mode 100644 mapbox/geometry/wagyu/wagyu.hpp diff --git a/mapbox/geometry/wagyu/active_bound_list.hpp b/mapbox/geometry/wagyu/active_bound_list.hpp new file mode 100644 index 0000000..2f1c970 --- /dev/null +++ b/mapbox/geometry/wagyu/active_bound_list.hpp @@ -0,0 +1,526 @@ +#pragma once + +#ifdef DEBUG +#include +#endif + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +using active_bound_list = std::list>; + +template +using active_bound_list_itr = typename active_bound_list::iterator; + +template +using active_bound_list_rev_itr = typename active_bound_list::reverse_iterator; + +#ifdef DEBUG + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const active_bound_list& bnds) { + std::size_t c = 0; + for (auto const& bnd : bnds) { + out << "Index: " << c++ << std::endl; + out << *bnd; + } + return out; +} + +template +std::string output_edges(active_bound_list const& bnds) { + std::ostringstream out; + out << "["; + bool first = true; + for (auto const& bnd : bnds) { + if (first) { + first = false; + } else { + out << ","; + } + out << "[[" << bnd->current_edge->bot.x << "," << bnd->current_edge->bot.y << "],["; + out << bnd->current_edge->top.x << "," << bnd->current_edge->top.y << "]]"; + } + out << "]"; + return out.str(); +} + +#endif + +template +bool is_even_odd_fill_type(bound const& bound, + fill_type subject_fill_type, + fill_type clip_fill_type) { + if (bound.poly_type == polygon_type_subject) { + return subject_fill_type == fill_type_even_odd; + } else { + return clip_fill_type == fill_type_even_odd; + } +} + +template +bool is_even_odd_alt_fill_type(bound const& bound, + fill_type subject_fill_type, + fill_type clip_fill_type) { + if (bound.poly_type == polygon_type_subject) { + return clip_fill_type == fill_type_even_odd; + } else { + return subject_fill_type == fill_type_even_odd; + } +} + +template +inline bool bound2_inserts_before_bound1(bound const& bound1, bound const& bound2) { + if (values_are_equal(bound2.current_x, bound1.current_x)) { + if (bound2.current_edge->top.y > bound1.current_edge->top.y) { + return bound2.current_edge->top.x < + get_current_x(*(bound1.current_edge), bound2.current_edge->top.y); + } else { + return bound1.current_edge->top.x > + get_current_x(*(bound2.current_edge), bound1.current_edge->top.y); + } + } else { + return bound2.current_x < bound1.current_x; + } +} + +template +active_bound_list_itr insert_bound_into_ABL(bound& bnd, active_bound_list& active_bounds) { + auto itr = active_bounds.begin(); + while (itr != active_bounds.end() && !bound2_inserts_before_bound1(*(*itr), bnd)) { + ++itr; + } + return active_bounds.insert(itr, &bnd); +} + +template +active_bound_list_itr insert_bound_into_ABL(bound& bnd, + active_bound_list_itr itr, + active_bound_list& active_bounds) { + while (itr != active_bounds.end() && !bound2_inserts_before_bound1(*(*itr), bnd)) { + ++itr; + } + return active_bounds.insert(itr, &bnd); +} + +template +inline bool is_maxima(bound& bnd, T y) { + return bnd.next_edge == bnd.edges.end() && + bnd.current_edge->top.y == y; +} + +template +inline bool is_maxima(active_bound_list_itr& bnd, T y) { + return is_maxima(*(*bnd), y); +} + +template +inline bool is_intermediate(bound& bnd, T y) { + return bnd.next_edge != bnd.edges.end() && + bnd.current_edge->top.y == y; +} + +template +inline bool is_intermediate(active_bound_list_itr& bnd, T y) { + return is_intermediate(*(*bnd), y); +} + +template +inline bool current_edge_is_horizontal(active_bound_list_itr& bnd) { + return is_horizontal(*((*bnd)->current_edge)); +} + +template +inline bool next_edge_is_horizontal(active_bound_list_itr& bnd) { + return is_horizontal(*((*bnd)->next_edge)); +} + +template +inline void swap_positions_in_ABL(active_bound_list_itr& bnd1, + active_bound_list_itr& bnd2, + active_bound_list& active_bounds) { + if (std::next(bnd2) == bnd1) { + active_bounds.splice(bnd2, active_bounds, bnd1); + } else { + active_bounds.splice(bnd1, active_bounds, bnd2); + } +} + +template +void next_edge_in_bound(active_bound_list_itr& bnd, scanbeam_list& scanbeam) { + ++((*bnd)->current_edge); + if ((*bnd)->current_edge != (*bnd)->edges.end()) { + ++((*bnd)->next_edge); + (*bnd)->current_x = static_cast((*bnd)->current_edge->bot.x); + if (!current_edge_is_horizontal(bnd)) { + scanbeam.push((*bnd)->current_edge->top.y); + } + } +} + +template +active_bound_list_itr get_maxima_pair(active_bound_list_itr bnd, + active_bound_list& active_bounds) { + auto bnd_itr = active_bounds.begin(); + while (bnd_itr != active_bounds.end()) { + if (*bnd_itr == (*bnd)->maximum_bound) { + break; + } + ++bnd_itr; + } + return bnd_itr; +} + +template +void set_winding_count(active_bound_list_itr& bnd_itr, + active_bound_list& active_bounds, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + + auto rev_bnd_itr = active_bound_list_rev_itr(bnd_itr); + if (rev_bnd_itr == active_bounds.rend()) { + if ((*bnd_itr)->winding_delta == 0) { + fill_type pft = ((*bnd_itr)->poly_type == polygon_type_subject) ? subject_fill_type + : clip_fill_type; + (*bnd_itr)->winding_count = (pft == fill_type_negative ? -1 : 1); + } else { + (*bnd_itr)->winding_count = (*bnd_itr)->winding_delta; + } + (*bnd_itr)->winding_count2 = 0; + return; + } + + // find the edge of the same polytype that immediately preceeds 'edge' in + // AEL + while (rev_bnd_itr != active_bounds.rend() && + ((*rev_bnd_itr)->poly_type != (*bnd_itr)->poly_type || + (*rev_bnd_itr)->winding_delta == 0)) { + ++rev_bnd_itr; + } + if (rev_bnd_itr == active_bounds.rend()) { + if ((*bnd_itr)->winding_delta == 0) { + fill_type pft = ((*bnd_itr)->poly_type == polygon_type_subject) ? subject_fill_type + : clip_fill_type; + (*bnd_itr)->winding_count = (pft == fill_type_negative ? -1 : 1); + } else { + (*bnd_itr)->winding_count = (*bnd_itr)->winding_delta; + } + (*bnd_itr)->winding_count2 = 0; + } else if ((*bnd_itr)->winding_delta == 0 && cliptype != clip_type_union) { + (*bnd_itr)->winding_count = 1; + (*bnd_itr)->winding_count2 = (*rev_bnd_itr)->winding_count2; + } else if (is_even_odd_fill_type(*(*bnd_itr), subject_fill_type, clip_fill_type)) { + // EvenOdd filling ... + if ((*bnd_itr)->winding_delta == 0) { + // are we inside a subj polygon ... + bool inside = true; + auto rev2 = std::next(rev_bnd_itr); + while (rev2 != active_bounds.rend()) { + if ((*rev2)->poly_type == (*rev_bnd_itr)->poly_type && + (*rev2)->winding_delta != 0) { + inside = !inside; + } + ++rev2; + } + (*bnd_itr)->winding_count = (inside ? 0 : 1); + } else { + (*bnd_itr)->winding_count = (*bnd_itr)->winding_delta; + } + (*bnd_itr)->winding_count2 = (*rev_bnd_itr)->winding_count2; + } else { + // nonZero, Positive or Negative filling ... + if ((*rev_bnd_itr)->winding_count * (*rev_bnd_itr)->winding_delta < 0) { + // prev edge is 'decreasing' WindCount (WC) toward zero + // so we're outside the previous polygon ... + if (std::abs((*rev_bnd_itr)->winding_count) > 1) { + // outside prev poly but still inside another. + // when reversing direction of prev poly use the same WC + if ((*rev_bnd_itr)->winding_delta * (*bnd_itr)->winding_delta < 0) { + (*bnd_itr)->winding_count = (*rev_bnd_itr)->winding_count; + } else { + // otherwise continue to 'decrease' WC ... + (*bnd_itr)->winding_count = + (*rev_bnd_itr)->winding_count + (*bnd_itr)->winding_delta; + } + } else { + // now outside all polys of same polytype so set own WC ... + (*bnd_itr)->winding_count = + ((*bnd_itr)->winding_delta == 0 ? 1 : (*bnd_itr)->winding_delta); + } + } else { + // prev edge is 'increasing' WindCount (WC) away from zero + // so we're inside the previous polygon ... + if ((*bnd_itr)->winding_delta == 0) { + (*bnd_itr)->winding_count = + ((*rev_bnd_itr)->winding_count < 0 ? (*rev_bnd_itr)->winding_count - 1 + : (*rev_bnd_itr)->winding_count + 1); + } else if ((*rev_bnd_itr)->winding_delta * (*bnd_itr)->winding_delta < 0) { + // if wind direction is reversing prev then use same WC + (*bnd_itr)->winding_count = (*rev_bnd_itr)->winding_count; + } else { + // otherwise add to WC ... + (*bnd_itr)->winding_count = + (*rev_bnd_itr)->winding_count + (*bnd_itr)->winding_delta; + } + } + (*bnd_itr)->winding_count2 = (*rev_bnd_itr)->winding_count2; + } + + // update winding_count2 ... + auto bnd_itr_forward = rev_bnd_itr.base(); + if (is_even_odd_alt_fill_type(*(*bnd_itr), subject_fill_type, clip_fill_type)) { + // EvenOdd filling ... + while (bnd_itr_forward != bnd_itr) { + if ((*bnd_itr_forward)->winding_delta != 0) { + (*bnd_itr)->winding_count2 = ((*bnd_itr)->winding_count2 == 0 ? 1 : 0); + } + ++bnd_itr_forward; + } + } else { + // nonZero, Positive or Negative filling ... + while (bnd_itr_forward != bnd_itr) { + (*bnd_itr)->winding_count2 += (*bnd_itr_forward)->winding_delta; + ++bnd_itr_forward; + } + } +} + +template +bool is_contributing(bound const& bnd, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + fill_type pft = subject_fill_type; + fill_type pft2 = clip_fill_type; + if (bnd.poly_type != polygon_type_subject) { + pft = clip_fill_type; + pft2 = subject_fill_type; + } + + switch (pft) { + case fill_type_even_odd: + // return false if a subj line has been flagged as inside a subj + // polygon + if (bnd.winding_delta == 0 && bnd.winding_count != 1) { + return false; + } + break; + case fill_type_non_zero: + if (std::abs(bnd.winding_count) != 1) { + return false; + } + break; + case fill_type_positive: + if (bnd.winding_count != 1) { + return false; + } + break; + case fill_type_negative: + default: + if (bnd.winding_count != -1) { + return false; + } + } + + switch (cliptype) { + case clip_type_intersection: + switch (pft2) { + case fill_type_even_odd: + case fill_type_non_zero: + return (bnd.winding_count2 != 0); + case fill_type_positive: + return (bnd.winding_count2 > 0); + case fill_type_negative: + default: + return (bnd.winding_count2 < 0); + } + break; + case clip_type_union: + switch (pft2) { + case fill_type_even_odd: + case fill_type_non_zero: + return (bnd.winding_count2 == 0); + case fill_type_positive: + return (bnd.winding_count2 <= 0); + case fill_type_negative: + default: + return (bnd.winding_count2 >= 0); + } + break; + case clip_type_difference: + if (bnd.poly_type == polygon_type_subject) { + switch (pft2) { + case fill_type_even_odd: + case fill_type_non_zero: + return (bnd.winding_count2 == 0); + case fill_type_positive: + return (bnd.winding_count2 <= 0); + case fill_type_negative: + default: + return (bnd.winding_count2 >= 0); + } + } else { + switch (pft2) { + case fill_type_even_odd: + case fill_type_non_zero: + return (bnd.winding_count2 != 0); + case fill_type_positive: + return (bnd.winding_count2 > 0); + case fill_type_negative: + default: + return (bnd.winding_count2 < 0); + } + } + break; + case clip_type_x_or: + if (bnd.winding_delta == 0) { + // XOr always contributing unless open + switch (pft2) { + case fill_type_even_odd: + case fill_type_non_zero: + return (bnd.winding_count2 == 0); + case fill_type_positive: + return (bnd.winding_count2 <= 0); + case fill_type_negative: + default: + return (bnd.winding_count2 >= 0); + } + } else { + return true; + } + break; + default: + return true; + } +} + +template +void insert_lm_only_one_bound(bound& bnd, + active_bound_list& active_bounds, + ring_manager& rings, + scanbeam_list& scanbeam, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + auto abl_itr = insert_bound_into_ABL(bnd, active_bounds); + set_winding_count(abl_itr, active_bounds, cliptype, subject_fill_type, clip_fill_type); + if (is_contributing(bnd, cliptype, subject_fill_type, clip_fill_type)) { + add_first_point(abl_itr, active_bounds, (*abl_itr)->current_edge->bot, rings); + } + if (!current_edge_is_horizontal(abl_itr)) { + scanbeam.push((*abl_itr)->current_edge->top.y); + } +} + +template +void insert_lm_left_and_right_bound(bound& left_bound, + bound& right_bound, + active_bound_list& active_bounds, + ring_manager& rings, + scanbeam_list& scanbeam, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + + // Both left and right bound + auto lb_abl_itr = insert_bound_into_ABL(left_bound, active_bounds); + auto rb_abl_itr = insert_bound_into_ABL(right_bound, lb_abl_itr, active_bounds); + set_winding_count(lb_abl_itr, active_bounds, cliptype, subject_fill_type, clip_fill_type); + (*rb_abl_itr)->winding_count = (*lb_abl_itr)->winding_count; + (*rb_abl_itr)->winding_count2 = (*lb_abl_itr)->winding_count2; + if (is_contributing(left_bound, cliptype, subject_fill_type, clip_fill_type)) { + add_local_minimum_point(lb_abl_itr, rb_abl_itr, active_bounds, + (*lb_abl_itr)->current_edge->bot, rings); + } + + // Add top of edges to scanbeam + scanbeam.push((*lb_abl_itr)->current_edge->top.y); + + if (!current_edge_is_horizontal(rb_abl_itr)) { + scanbeam.push((*rb_abl_itr)->current_edge->top.y); + } + auto abl_itr = std::next(lb_abl_itr); + while (abl_itr != rb_abl_itr && abl_itr != active_bounds.end()) { + // We call intersect_bounds here, but we do not swap positions in the ABL + // this is the logic that was copied from angus, but it might be correct + // to swap the positions in the ABL following this or at least move + // lb and rb to be next to each other in the ABL. + intersect_bounds(rb_abl_itr, abl_itr, (*lb_abl_itr)->current_edge->bot, cliptype, + subject_fill_type, clip_fill_type, rings, active_bounds); + ++abl_itr; + } +} + +template +void insert_local_minima_into_ABL(T const bot_y, + local_minimum_ptr_list const& minima_sorted, + local_minimum_ptr_list_itr& current_lm, + active_bound_list& active_bounds, + ring_manager& rings, + scanbeam_list& scanbeam, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + while (current_lm != minima_sorted.end() && bot_y == (*current_lm)->y) { + initialize_lm(current_lm); + auto& left_bound = (*current_lm)->left_bound; + auto& right_bound = (*current_lm)->right_bound; + if (left_bound.edges.empty() && !right_bound.edges.empty()) { + insert_lm_only_one_bound(right_bound, active_bounds, rings, scanbeam, cliptype, + subject_fill_type, clip_fill_type); + } else if (right_bound.edges.empty() && !left_bound.edges.empty()) { + insert_lm_only_one_bound(left_bound, active_bounds, rings, scanbeam, cliptype, + subject_fill_type, clip_fill_type); + } else { + insert_lm_left_and_right_bound(left_bound, right_bound, active_bounds, rings, scanbeam, + cliptype, subject_fill_type, clip_fill_type); + } + ++current_lm; + } +} + +template +void insert_horizontal_local_minima_into_ABL(T const top_y, + local_minimum_ptr_list const& minima_sorted, + local_minimum_ptr_list_itr& current_lm, + active_bound_list& active_bounds, + ring_manager& rings, + scanbeam_list& scanbeam, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + while (current_lm != minima_sorted.end() && top_y == (*current_lm)->y && + (*current_lm)->minimum_has_horizontal) { + initialize_lm(current_lm); + auto& left_bound = (*current_lm)->left_bound; + auto& right_bound = (*current_lm)->right_bound; + if (left_bound.edges.empty() && !right_bound.edges.empty()) { + insert_lm_only_one_bound(right_bound, active_bounds, rings, scanbeam, cliptype, + subject_fill_type, clip_fill_type); + } else if (right_bound.edges.empty() && !left_bound.edges.empty()) { + throw clipper_exception( + "There should only be horizontal local minimum on right bounds!"); + } else { + insert_lm_left_and_right_bound(left_bound, right_bound, active_bounds, rings, scanbeam, + cliptype, subject_fill_type, clip_fill_type); + } + ++current_lm; + } +} +} +} +} diff --git a/mapbox/geometry/wagyu/bound.hpp b/mapbox/geometry/wagyu/bound.hpp new file mode 100644 index 0000000..f0e3159 --- /dev/null +++ b/mapbox/geometry/wagyu/bound.hpp @@ -0,0 +1,95 @@ +#pragma once + +#include + +#include + +#include +#include +#include + +#ifdef DEBUG +#include +#endif + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +struct bound { + + edge_list edges; + edge_list_itr current_edge; + edge_list_itr next_edge; + mapbox::geometry::point last_point; + ring_ptr ring; + bound_ptr maximum_bound; // the bound who's maximum connects with this bound + double current_x; + std::size_t pos; + std::int32_t winding_count; + std::int32_t winding_count2; // winding count of the opposite polytype + std::int8_t winding_delta; // 1 or -1 depending on winding direction - 0 for linestrings + polygon_type poly_type; + edge_side side; // side only refers to current side of solution poly + + bound() noexcept + : edges(), + current_edge(edges.end()), + last_point({ 0, 0 }), + ring(nullptr), + maximum_bound(nullptr), + current_x(0.0), + pos(0), + winding_count(0), + winding_count2(0), + winding_delta(0), + poly_type(polygon_type_subject), + side(edge_left) { + } + + bound(bound && b) noexcept + : edges(std::move(b.edges)), + current_edge(std::move(b.current_edge)), + last_point(std::move(b.last_point)), + ring(std::move(b.ring)), + maximum_bound(std::move(b.maximum_bound)), + current_x(std::move(b.current_x)), + pos(std::move(b.pos)), + winding_count(std::move(b.winding_count)), + winding_count2(std::move(b.winding_count2)), + winding_delta(std::move(b.winding_delta)), + poly_type(std::move(b.poly_type)), + side(std::move(b.side)) { + } +}; + +#ifdef DEBUG + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const bound& bnd) { + out << " Bound: " << &bnd << std::endl; + out << " current_x: " << bnd.current_x << std::endl; + out << " last_point: " << bnd.last_point.x << ", " << bnd.last_point.y << std::endl; + out << *(bnd.current_edge); + out << " winding count: " << bnd.winding_count << std::endl; + out << " winding_count2: " << bnd.winding_count2 << std::endl; + out << " winding_delta: " << static_cast(bnd.winding_delta) << std::endl; + out << " maximum_bound: " << bnd.maximum_bound << std::endl; + if (bnd.side == edge_left) { + out << " side: left" << std::endl; + } else { + out << " side: right" << std::endl; + } + out << " ring: " << bnd.ring << std::endl; + if (bnd.ring) { + out << " ring index: " << bnd.ring->ring_index << std::endl; + } + return out; +} + +#endif +} +} +} diff --git a/mapbox/geometry/wagyu/build_edges.hpp b/mapbox/geometry/wagyu/build_edges.hpp new file mode 100644 index 0000000..b7ce6d4 --- /dev/null +++ b/mapbox/geometry/wagyu/build_edges.hpp @@ -0,0 +1,216 @@ +#pragma once + +#include +#include +#include + +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +bool build_edge_list(mapbox::geometry::line_string const& path_geometry, + edge_list& edges, + bool& is_flat) { + if (path_geometry.size() < 2) { + return false; + } + + auto itr_next = path_geometry.begin(); + ++itr_next; + auto itr = path_geometry.begin(); + while (itr_next != path_geometry.end()) { + if (*itr_next == *itr) { + // Duplicate point advance itr_next, but do not + // advance itr + ++itr_next; + continue; + } + + if (is_flat && itr_next->y != itr->y) { + is_flat = false; + } + edges.emplace_back(*itr, *itr_next); + itr = itr_next; + ++itr_next; + } + + if (edges.size() < 2) { + return false; + } + + return true; +} + +template +bool point_2_is_between_point_1_and_point_3(mapbox::geometry::point const& pt1, + mapbox::geometry::point const& pt2, + mapbox::geometry::point const& pt3) { + if ((pt1 == pt3) || (pt1 == pt2) || (pt3 == pt2)) { + return false; + } else if (pt1.x != pt3.x) { + return (pt2.x > pt1.x) == (pt2.x < pt3.x); + } else { + return (pt2.y > pt1.y) == (pt2.y < pt3.y); + } +} + +template +bool build_edge_list(mapbox::geometry::linear_ring const& path_geometry, edge_list& edges) { + using value_type = T; + + if (path_geometry.size() < 3) { + return false; + } + + // As this is a loop, we need to first go backwards from end to try and find + // the proper starting point for the iterators before the beginning + + auto itr_rev = path_geometry.rbegin(); + auto itr = path_geometry.begin(); + mapbox::geometry::point pt1 = *itr_rev; + mapbox::geometry::point pt2 = *itr; + + // Find next non repeated point going backwards from + // end for pt1 + while (pt1 == pt2) { + pt1 = *(++itr_rev); + if (itr_rev == path_geometry.rend()) { + return false; + } + } + ++itr; + mapbox::geometry::point pt3 = *itr; + auto itr_last = itr_rev.base(); + mapbox::geometry::point front_pt; + mapbox::geometry::point back_pt; + while (true) { + if (pt3 == pt2) { + // Duplicate point advance itr, but do not + // advance other points + if (itr == itr_last) { + break; + } + ++itr; + if (itr == itr_last) { + if (edges.empty()) { + break; + } + pt3 = front_pt; + } else { + pt3 = *itr; + } + continue; + } + + // Now check if slopes are equal between two segments - either + // a spike or a collinear point - if so drop point number 2. + if (slopes_equal(pt1, pt2, pt3)) { + // We need to reconsider previously added points + // because the point it was using was found to be collinear + // or a spike + pt2 = pt1; + if (!edges.empty()) { + edges.pop_back(); // remove previous edge (pt1) + } + if (!edges.empty()) { + if (back_pt == edges.back().top) { + pt1 = edges.back().bot; + } else { + pt1 = edges.back().top; + } + back_pt = pt1; + } else { + // If this occurs we must look to the back of the + // ring for new points. + do { + ++itr_rev; + if ((itr + 1) == itr_rev.base()) { + return false; + } + pt1 = *itr_rev; + } while (pt1 == pt2); + itr_last = itr_rev.base(); + } + continue; + } + + if (edges.empty()) { + front_pt = pt2; + } + edges.emplace_back(pt2, pt3); + back_pt = pt2; + if (itr == itr_last) { + break; + } + pt1 = pt2; + pt2 = pt3; + ++itr; + if (itr == itr_last) { + if (edges.empty()) { + break; + } + pt3 = front_pt; + } else { + pt3 = *itr; + } + } + + bool modified = false; + do { + modified = false; + if (edges.size() < 3) { + return false; + } + auto& f = edges.front(); + auto& b = edges.back(); + if (slopes_equal(f, b)) { + if (f.bot == b.top) { + if (f.top == b.bot) { + edges.pop_back(); + edges.erase(edges.begin()); + } else { + f.bot = b.bot; + edges.pop_back(); + } + modified = true; + } else if (f.top == b.bot) { + f.top = b.top; + edges.pop_back(); + modified = true; + } else if (f.top == b.top && f.bot == b.bot) { + edges.pop_back(); + edges.erase(edges.begin()); + modified = true; + } else if (f.top == b.top) { + if (point_2_is_between_point_1_and_point_3(f.top, f.bot, b.bot)) { + b.top = f.bot; + edges.erase(edges.begin()); + } else { + f.top = b.bot; + edges.pop_back(); + } + modified = true; + } else if (f.bot == b.bot) { + if (point_2_is_between_point_1_and_point_3(f.bot, f.top, b.top)) { + b.bot = f.top; + edges.erase(edges.begin()); + } else { + f.bot = b.top; + edges.pop_back(); + } + modified = true; + } + } + } while (modified); + + return true; +} +} +} +} diff --git a/mapbox/geometry/wagyu/build_local_minima_list.hpp b/mapbox/geometry/wagyu/build_local_minima_list.hpp new file mode 100644 index 0000000..595e7c4 --- /dev/null +++ b/mapbox/geometry/wagyu/build_local_minima_list.hpp @@ -0,0 +1,40 @@ +#pragma once + +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +bool add_line_string(mapbox::geometry::line_string const& path_geometry, + local_minimum_list& minima_list) { + bool is_flat = true; + edge_list new_edges; + new_edges.reserve(path_geometry.size()); + if (!build_edge_list(path_geometry, new_edges, is_flat) || new_edges.empty()) { + return false; + } + add_line_to_local_minima_list(new_edges, minima_list, polygon_type_subject); + return true; +} + +template +bool add_linear_ring(mapbox::geometry::linear_ring const& path_geometry, + local_minimum_list& minima_list, + polygon_type p_type) { + edge_list new_edges; + new_edges.reserve(path_geometry.size()); + if (!build_edge_list(path_geometry, new_edges) || new_edges.empty()) { + return false; + } + add_ring_to_local_minima_list(new_edges, minima_list, p_type); + return true; +} + +} +} +} diff --git a/mapbox/geometry/wagyu/build_result.hpp b/mapbox/geometry/wagyu/build_result.hpp new file mode 100644 index 0000000..5bc78ac --- /dev/null +++ b/mapbox/geometry/wagyu/build_result.hpp @@ -0,0 +1,68 @@ +#pragma once + +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +void push_ring_to_polygon(mapbox::geometry::polygon& poly, ring_ptr& r, bool reverse_output) { + mapbox::geometry::linear_ring lr; + lr.reserve(r->size + 1); + auto firstPt = r->points; + auto ptIt = r->points; + if (reverse_output) { + do { + lr.push_back({ ptIt->x, ptIt->y }); + ptIt = ptIt->next; + } while (ptIt != firstPt); + } else { + do { + lr.push_back({ ptIt->x, ptIt->y }); + ptIt = ptIt->prev; + } while (ptIt != firstPt); + } + lr.push_back({ firstPt->x, firstPt->y }); // close the ring + poly.push_back(lr); +} + +template +void build_result_polygons(std::vector>& solution, + ring_list& rings, + bool reverse_output) { + + for (auto& r : rings) { + assert(r->points); + std::size_t cnt = point_count(r->points); + if ((r->is_open && cnt < 2) || (!r->is_open && cnt < 3)) { + continue; + } + solution.emplace_back(); + push_ring_to_polygon(solution.back(), r, reverse_output); + for (auto& c : r->children) { + assert(c->points); + cnt = point_count(c->points); + if ((c->is_open && cnt < 2) || (!c->is_open && cnt < 3)) { + continue; + } + push_ring_to_polygon(solution.back(), c, reverse_output); + } + for (auto& c : r->children) { + if (!c->children.empty()) { + build_result_polygons(solution, c->children, reverse_output); + } + } + } +} + +template +void build_result(std::vector>& solution, + ring_manager& rings, + bool reverse_output) { + build_result_polygons(solution, rings.children, reverse_output); +} +} +} +} diff --git a/mapbox/geometry/wagyu/config.hpp b/mapbox/geometry/wagyu/config.hpp new file mode 100644 index 0000000..4dbdff7 --- /dev/null +++ b/mapbox/geometry/wagyu/config.hpp @@ -0,0 +1,52 @@ +#pragma once + +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +enum clip_type : std::uint8_t { + clip_type_intersection = 0, + clip_type_union, + clip_type_difference, + clip_type_x_or +}; + +enum polygon_type : std::uint8_t { polygon_type_subject = 0, polygon_type_clip }; + +enum fill_type : std::uint8_t { + fill_type_even_odd = 0, + fill_type_non_zero, + fill_type_positive, + fill_type_negative +}; + +static double const def_arc_tolerance = 0.25; + +static int const EDGE_UNASSIGNED = -1; // edge not currently 'owning' a solution +static int const EDGE_SKIP = -2; // edge that would otherwise close a path +static std::int64_t const LOW_RANGE = 0x3FFFFFFF; +static std::int64_t const HIGH_RANGE = 0x3FFFFFFFFFFFFFFFLL; + +enum horizontal_direction : std::uint8_t { right_to_left = 0, left_to_right = 1 }; + +enum edge_side : std::uint8_t { edge_left = 0, edge_right }; + +enum join_type : std::uint8_t { join_type_square = 0, join_type_round, join_type_miter }; + +enum end_type { + end_type_closed_polygon = 0, + end_type_closed_line, + end_type_open_butt, + end_type_open_square, + end_type_open_round +}; + +template +using maxima_list = std::list; +} +} +} diff --git a/mapbox/geometry/wagyu/edge.hpp b/mapbox/geometry/wagyu/edge.hpp new file mode 100644 index 0000000..7f4f475 --- /dev/null +++ b/mapbox/geometry/wagyu/edge.hpp @@ -0,0 +1,122 @@ +#pragma once + +#include +#include +#include + +#include +#include +#include + +#ifdef DEBUG +#include +#endif + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +struct bound; + +template +using bound_ptr = bound*; + +template +struct edge { + mapbox::geometry::point bot; + mapbox::geometry::point top; + double dx; + + edge(edge && e) noexcept + : bot(std::move(e.bot)), + top(std::move(e.top)), + dx(std::move(e.dx)) {} + + edge& operator=(edge && e) noexcept { + bot = std::move(e.bot); + top = std::move(e.top); + dx = std::move(e.dx); + return *this; + } + + edge(mapbox::geometry::point const& current, mapbox::geometry::point const& next_pt) noexcept + : bot(current), top(current), dx(0.0) { + if (current.y >= next_pt.y) { + top = next_pt; + } else { + bot = next_pt; + } + double dy = static_cast(top.y - bot.y); + if (value_is_zero(dy)) { + dx = std::numeric_limits::infinity(); + } else { + dx = static_cast(top.x - bot.x) / dy; + } + } + +}; + +template +using edge_ptr = edge*; + +template +using edge_list = std::vector>; + +template +using edge_list_itr = typename edge_list::iterator; + +template +bool slopes_equal(edge const& e1, edge const& e2) { + return (e1.top.y - e1.bot.y) * (e2.top.x - e2.bot.x) == + (e1.top.x - e1.bot.x) * (e2.top.y - e2.bot.y); +} + +template +inline bool is_horizontal(edge const& e) { + return std::isinf(e.dx); +} + +template +inline double get_current_x(edge const& edge, const T current_y) { + if (current_y == edge.top.y) { + return static_cast(edge.top.x); + } else { + return static_cast(edge.bot.x) + + edge.dx * static_cast(current_y - edge.bot.y); + } +} + +#ifdef DEBUG + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const edge& e) { + out << " Edge: " << std::endl; + out << " bot x: " << e.bot.x << " y: " << e.bot.y << std::endl; + out << " top x: " << e.top.x << " y: " << e.top.y << std::endl; + return out; +} + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + edge_list const& edges) { + out << "["; + bool first = true; + for (auto const& e : edges) { + if (first) { + first = false; + } else { + out << ","; + } + out << "[[" << e.bot.x << "," << e.bot.y << "],["; + out << e.top.x << "," << e.top.y << "]]"; + } + out << "]"; + return out; +} + +#endif +} +} +} diff --git a/mapbox/geometry/wagyu/exceptions.hpp b/mapbox/geometry/wagyu/exceptions.hpp new file mode 100644 index 0000000..f05b390 --- /dev/null +++ b/mapbox/geometry/wagyu/exceptions.hpp @@ -0,0 +1,23 @@ +#pragma once + +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { +class clipper_exception : public std::exception { +private: + std::string m_descr; + +public: + clipper_exception(const char* description) : m_descr(description) { + } + virtual ~clipper_exception() noexcept { + } + virtual const char* what() const noexcept { + return m_descr.c_str(); + } +}; +} +} +} diff --git a/mapbox/geometry/wagyu/intersect.hpp b/mapbox/geometry/wagyu/intersect.hpp new file mode 100644 index 0000000..cdb8571 --- /dev/null +++ b/mapbox/geometry/wagyu/intersect.hpp @@ -0,0 +1,73 @@ +#pragma once + +#include + +#include + +#include + +#ifdef DEBUG +#include +#endif + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +struct intersect_node { + + active_bound_list_itr bound1; + active_bound_list_itr bound2; + mapbox::geometry::point pt; + + intersect_node(intersect_node && n) + : bound1(std::move(n.bound1)), + bound2(std::move(n.bound2)), + pt(std::move(n.pt)) { } + + intersect_node& operator=(intersect_node && n) { + bound1 = std::move(n.bound1); + bound2 = std::move(n.bound2); + pt = std::move(n.pt); + return *this; + } + + intersect_node(active_bound_list_itr const& bound1_, + active_bound_list_itr const& bound2_, + mapbox::geometry::point const& pt_) + : bound1(bound1_), bound2(bound2_), pt(pt_) { + } +}; + +template +using intersect_list = std::vector>; + +#ifdef DEBUG + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const intersect_node& e) { + out << " point x: " << e.pt.x << " y: " << e.pt.y << std::endl; + out << " bound 1: " << std::endl; + out << *(*e.bound1) << std::endl; + out << " bound 2: " << std::endl; + out << *(*e.bound2) << std::endl; + return out; +} + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const intersect_list& ints) { + std::size_t c = 0; + for (auto const& i : ints) { + out << "Intersection: " << c++ << std::endl; + out << i; + } + return out; +} + +#endif +} +} +} diff --git a/mapbox/geometry/wagyu/intersect_util.hpp b/mapbox/geometry/wagyu/intersect_util.hpp new file mode 100644 index 0000000..77be594 --- /dev/null +++ b/mapbox/geometry/wagyu/intersect_util.hpp @@ -0,0 +1,387 @@ +#pragma once + +#include +#include +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +struct intersect_list_sorter { + inline bool operator()(intersect_node const& node1, intersect_node const& node2) { + if (!values_are_equal(node2.pt.y, node1.pt.y)) { + return node2.pt.y < node1.pt.y; + } else { + return ((*node2.bound1)->winding_count2 + (*node2.bound2)->winding_count2) > + ((*node1.bound1)->winding_count2 + (*node1.bound2)->winding_count2); + } + } +}; + +template +inline mapbox::geometry::point round_point(mapbox::geometry::point const& pt) { + return mapbox::geometry::point(round_towards_max(pt.x), round_towards_max(pt.y)); +} + +template +inline void swap_rings(bound& b1, bound& b2) { + ring_ptr ring = b1.ring; + b1.ring = b2.ring; + b2.ring = ring; +} + +template +inline void swap_sides(bound& b1, bound& b2) { + edge_side side = b1.side; + b1.side = b2.side; + b2.side = side; +} + +template +bool get_edge_intersection(edge const& e1, + edge const& e2, + mapbox::geometry::point& pt) { + T2 p0_x = static_cast(e1.bot.x); + T2 p0_y = static_cast(e1.bot.y); + T2 p1_x = static_cast(e1.top.x); + T2 p1_y = static_cast(e1.top.y); + T2 p2_x = static_cast(e2.bot.x); + T2 p2_y = static_cast(e2.bot.y); + T2 p3_x = static_cast(e2.top.x); + T2 p3_y = static_cast(e2.top.y); + T2 s1_x, s1_y, s2_x, s2_y; + s1_x = p1_x - p0_x; + s1_y = p1_y - p0_y; + s2_x = p3_x - p2_x; + s2_y = p3_y - p2_y; + + T2 s, t; + s = (-s1_y * (p0_x - p2_x) + s1_x * (p0_y - p2_y)) / (-s2_x * s1_y + s1_x * s2_y); + t = (s2_x * (p0_y - p2_y) - s2_y * (p0_x - p2_x)) / (-s2_x * s1_y + s1_x * s2_y); + + if (s >= 0.0 && s <= 1.0 && t >= 0.0 && t <= 1.0) { + pt.x = p0_x + (t * s1_x); + pt.y = p0_y + (t * s1_y); + return true; + } + return false; +} + +template +void build_intersect_list(active_bound_list& active_bounds, + intersect_list& intersects) { + // bubblesort ... + bool isModified = false; + do { + isModified = false; + auto bnd = active_bounds.begin(); + auto bnd_next = std::next(bnd); + while (bnd_next != active_bounds.end()) { + if ((*bnd)->current_x > (*bnd_next)->current_x && + !slopes_equal(*((*bnd)->current_edge), *((*bnd_next)->current_edge))) { + mapbox::geometry::point pt; + if (!get_edge_intersection(*((*bnd)->current_edge), + *((*bnd_next)->current_edge), pt)) { + throw std::runtime_error( + "Trying to find intersection of lines that do not intersect"); + } + intersects.emplace_back(bnd, bnd_next, pt); + swap_positions_in_ABL(bnd, bnd_next, active_bounds); + bnd_next = std::next(bnd); + isModified = true; + } else { + bnd = bnd_next; + ++bnd_next; + } + } + } while (isModified); +} + +template +void intersect_bounds(active_bound_list_itr& b1, + active_bound_list_itr& b2, + mapbox::geometry::point const& pt, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type, + ring_manager& rings, + active_bound_list& active_bounds) { + bool b1Contributing = ((*b1)->ring != nullptr); + bool b2Contributing = ((*b2)->ring != nullptr); + // if either bound is on an OPEN path ... + if ((*b1)->winding_delta == 0 || (*b2)->winding_delta == 0) { + // ignore subject-subject open path intersections UNLESS they + // are both open paths, AND they are both 'contributing maximas' ... + if ((*b1)->winding_delta == 0 && (*b2)->winding_delta == 0) { + return; + } + + // if intersecting a subj line with a subj poly ... + else if ((*b1)->poly_type == (*b2)->poly_type && + (*b1)->winding_delta != (*b2)->winding_delta && cliptype == clip_type_union) { + if ((*b1)->winding_delta == 0) { + if (b2Contributing) { + add_point(b1, active_bounds, pt, rings); + if (b1Contributing) { + (*b1)->ring = nullptr; + } + } + } else { + if (b1Contributing) { + add_point(b2, active_bounds, pt, rings); + if (b2Contributing) { + (*b2)->ring = nullptr; + } + } + } + } else if ((*b1)->poly_type != (*b2)->poly_type) { + // toggle subj open path index on/off when std::abs(clip.WndCnt) == 1 + if (((*b1)->winding_delta == 0) && std::abs((*b2)->winding_count) == 1 && + (cliptype != clip_type_union || (*b2)->winding_count2 == 0)) { + add_point(b1, active_bounds, pt, rings); + if (b1Contributing) { + (*b1)->ring = nullptr; + } + } else if (((*b2)->winding_delta == 0) && (std::abs((*b1)->winding_count) == 1) && + (cliptype != clip_type_union || (*b1)->winding_count2 == 0)) { + add_point(b2, active_bounds, pt, rings); + if (b2Contributing) { + (*b2)->ring = nullptr; + } + } + } + return; + } + + // update winding counts... + // assumes that b1 will be to the Right of b2 ABOVE the intersection + if ((*b1)->poly_type == (*b2)->poly_type) { + if (is_even_odd_fill_type(*(*b1), subject_fill_type, clip_fill_type)) { + std::int32_t oldE1winding_count = (*b1)->winding_count; + (*b1)->winding_count = (*b2)->winding_count; + (*b2)->winding_count = oldE1winding_count; + } else { + if ((*b1)->winding_count + (*b2)->winding_delta == 0) { + (*b1)->winding_count = -(*b1)->winding_count; + } else { + (*b1)->winding_count += (*b2)->winding_delta; + } + if ((*b2)->winding_count - (*b1)->winding_delta == 0) { + (*b2)->winding_count = -(*b2)->winding_count; + } else { + (*b2)->winding_count -= (*b1)->winding_delta; + } + } + } else { + if (!is_even_odd_fill_type(*(*b2), subject_fill_type, clip_fill_type)) { + (*b1)->winding_count2 += (*b2)->winding_delta; + } else { + (*b1)->winding_count2 = ((*b1)->winding_count2 == 0) ? 1 : 0; + } + if (!is_even_odd_fill_type(*(*b1), subject_fill_type, clip_fill_type)) { + (*b2)->winding_count2 -= (*b1)->winding_delta; + } else { + (*b2)->winding_count2 = ((*b2)->winding_count2 == 0) ? 1 : 0; + } + } + + fill_type b1FillType, b2FillType, b1FillType2, b2FillType2; + if ((*b1)->poly_type == polygon_type_subject) { + b1FillType = subject_fill_type; + b1FillType2 = clip_fill_type; + } else { + b1FillType = clip_fill_type; + b1FillType2 = subject_fill_type; + } + if ((*b2)->poly_type == polygon_type_subject) { + b2FillType = subject_fill_type; + b2FillType2 = clip_fill_type; + } else { + b2FillType = clip_fill_type; + b2FillType2 = subject_fill_type; + } + + std::int32_t b1Wc, b2Wc; + switch (b1FillType) { + case fill_type_positive: + b1Wc = (*b1)->winding_count; + break; + case fill_type_negative: + b1Wc = -(*b1)->winding_count; + break; + case fill_type_even_odd: + case fill_type_non_zero: + default: + b1Wc = std::abs((*b1)->winding_count); + } + switch (b2FillType) { + case fill_type_positive: + b2Wc = (*b2)->winding_count; + break; + case fill_type_negative: + b2Wc = -(*b2)->winding_count; + break; + case fill_type_even_odd: + case fill_type_non_zero: + default: + b2Wc = std::abs((*b2)->winding_count); + } + if (b1Contributing && b2Contributing) { + if ((b1Wc != 0 && b1Wc != 1) || (b2Wc != 0 && b2Wc != 1) || + ((*b1)->poly_type != (*b2)->poly_type && cliptype != clip_type_x_or)) { + add_local_maximum_point(b1, b2, pt, rings, active_bounds); + } else { + add_point(b1, active_bounds, pt, rings); + add_point(b2, active_bounds, pt, rings); + swap_sides(*(*b1), *(*b2)); + swap_rings(*(*b1), *(*b2)); + } + } else if (b1Contributing) { + if (b2Wc == 0 || b2Wc == 1) { + add_point(b1, active_bounds, pt, rings); + (*b2)->last_point = pt; + swap_sides(*(*b1), *(*b2)); + swap_rings(*(*b1), *(*b2)); + } + } else if (b2Contributing) { + if (b1Wc == 0 || b1Wc == 1) { + (*b1)->last_point = pt; + add_point(b2, active_bounds, pt, rings); + swap_sides(*(*b1), *(*b2)); + swap_rings(*(*b1), *(*b2)); + } + } else if ((b1Wc == 0 || b1Wc == 1) && (b2Wc == 0 || b2Wc == 1)) { + // neither bound is currently contributing ... + + std::int32_t b1Wc2, b2Wc2; + switch (b1FillType2) { + case fill_type_positive: + b1Wc2 = (*b1)->winding_count2; + break; + case fill_type_negative: + b1Wc2 = -(*b1)->winding_count2; + break; + case fill_type_even_odd: + case fill_type_non_zero: + default: + b1Wc2 = std::abs((*b1)->winding_count2); + } + switch (b2FillType2) { + case fill_type_positive: + b2Wc2 = (*b2)->winding_count2; + break; + case fill_type_negative: + b2Wc2 = -(*b2)->winding_count2; + break; + case fill_type_even_odd: + case fill_type_non_zero: + default: + b2Wc2 = std::abs((*b2)->winding_count2); + } + + if ((*b1)->poly_type != (*b2)->poly_type) { + add_local_minimum_point(b1, b2, active_bounds, pt, rings); + } else if (b1Wc == 1 && b2Wc == 1) { + switch (cliptype) { + case clip_type_intersection: + if (b1Wc2 > 0 && b2Wc2 > 0) { + add_local_minimum_point(b1, b2, active_bounds, pt, rings); + } + break; + default: + case clip_type_union: + if (b1Wc2 <= 0 && b2Wc2 <= 0) { + add_local_minimum_point(b1, b2, active_bounds, pt, rings); + } + break; + case clip_type_difference: + if ((((*b1)->poly_type == polygon_type_clip) && (b1Wc2 > 0) && (b2Wc2 > 0)) || + (((*b1)->poly_type == polygon_type_subject) && (b1Wc2 <= 0) && (b2Wc2 <= 0))) { + add_local_minimum_point(b1, b2, active_bounds, pt, rings); + } + break; + case clip_type_x_or: + add_local_minimum_point(b1, b2, active_bounds, pt, rings); + } + } else { + swap_sides(*(*b1), *(*b2)); + } + } +} + +template +bool bounds_adjacent(intersect_node const& inode) { + return (std::next(inode.bound1) == inode.bound2) || (std::next(inode.bound2) == inode.bound1); +} + +template +void process_intersect_list(intersect_list& intersects, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type, + ring_manager& rings, + active_bound_list& active_bounds) { + for (auto node_itr = intersects.begin(); node_itr != intersects.end(); ++node_itr) { + if (!bounds_adjacent(*node_itr)) { + auto next_itr = std::next(node_itr); + while (next_itr != intersects.end() && !bounds_adjacent(*next_itr)) { + ++next_itr; + } + if (next_itr == intersects.end()) { + throw std::runtime_error("Could not properly correct intersection order."); + } + std::iter_swap(node_itr, next_itr); + } + mapbox::geometry::point pt = round_point(node_itr->pt); + intersect_bounds(node_itr->bound1, node_itr->bound2, pt, cliptype, subject_fill_type, + clip_fill_type, rings, active_bounds); + swap_positions_in_ABL(node_itr->bound1, node_itr->bound2, active_bounds); + } +} + +template +void update_current_x(active_bound_list& active_bounds, T top_y) { + std::size_t pos = 0; + for (auto & bnd : active_bounds) { + bnd->pos = pos++; + bnd->current_x = get_current_x(*bnd->current_edge, top_y); + } +} + +template +void process_intersections(T top_y, + active_bound_list& active_bounds, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type, + ring_manager& rings) { + if (active_bounds.empty()) { + return; + } + update_current_x(active_bounds, top_y); + intersect_list intersects; + build_intersect_list(active_bounds, intersects); + + if (intersects.empty()) { + return; + } + + // Restore order of active bounds list + active_bounds.sort([] (bound_ptr const& b1, bound_ptr const& b2) { + return b1->pos < b2->pos; + }); + + // Sort the intersection list + std::stable_sort(intersects.begin(), intersects.end(), intersect_list_sorter()); + + process_intersect_list(intersects, cliptype, subject_fill_type, clip_fill_type, rings, + active_bounds); +} +} +} +} diff --git a/mapbox/geometry/wagyu/local_minimum.hpp b/mapbox/geometry/wagyu/local_minimum.hpp new file mode 100644 index 0000000..afd0a69 --- /dev/null +++ b/mapbox/geometry/wagyu/local_minimum.hpp @@ -0,0 +1,116 @@ +#pragma once + +#ifdef DEBUG +#include +#endif +#include + +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +struct local_minimum { + bound left_bound; + bound right_bound; + T y; + bool minimum_has_horizontal; + + local_minimum(bound&& left_bound_, bound&& right_bound_, T y_, bool has_horz_) + : left_bound(std::move(left_bound_)), + right_bound(std::move(right_bound_)), + y(y_), + minimum_has_horizontal(has_horz_) { + } +}; + +template +using local_minimum_list = std::deque>; + +template +using local_minimum_itr = typename local_minimum_list::iterator; + +template +using local_minimum_ptr = local_minimum*; + +template +using local_minimum_ptr_list = std::vector>; + +template +using local_minimum_ptr_list_itr = typename local_minimum_ptr_list::iterator; + +template +struct local_minimum_sorter { + inline bool operator()(local_minimum_ptr const& locMin1, + local_minimum_ptr const& locMin2) { + if (locMin2->y == locMin1->y) { + return locMin2->minimum_has_horizontal != locMin1->minimum_has_horizontal && + locMin1->minimum_has_horizontal; + } + return locMin2->y < locMin1->y; + } +}; + +#ifdef DEBUG + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const local_minimum& lm) { + out << " Local Minimum:" << std::endl; + out << " y: " << lm.y << std::endl; + if (lm.minimum_has_horizontal) { + out << " minimum_has_horizontal: true" << std::endl; + } else { + out << " minimum_has_horizontal: false" << std::endl; + } + out << " left_bound: " << std::endl; + out << lm.left_bound << std::endl; + out << " right_bound: " << std::endl; + out << lm.right_bound << std::endl; + return out; +} + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const local_minimum_ptr_list& lms) { + for (auto const& lm : lms) { + out << *lm; + } + return out; +} + +template +std::string output_all_edges(local_minimum_ptr_list const& lms) { + std::ostringstream out; + out << "["; + bool first = true; + for (auto const& lm : lms) { + for (auto const& e : lm->left_bound.edges) { + if (first) { + first = false; + } else { + out << ","; + } + out << "[[" << e.bot.x << "," << e.bot.y << "],["; + out << e.top.x << "," << e.top.y << "]]"; + } + for (auto const& e : lm->right_bound.edges) { + if (first) { + first = false; + } else { + out << ","; + } + out << "[[" << e.bot.x << "," << e.bot.y << "],["; + out << e.top.x << "," << e.top.y << "]]"; + } + } + out << "]"; + return out.str(); +} + +#endif +} +} +} diff --git a/mapbox/geometry/wagyu/local_minimum_util.hpp b/mapbox/geometry/wagyu/local_minimum_util.hpp new file mode 100644 index 0000000..b9863c8 --- /dev/null +++ b/mapbox/geometry/wagyu/local_minimum_util.hpp @@ -0,0 +1,419 @@ +#pragma once + +#include +#include + +#ifdef DEBUG +#include +#endif + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +inline void reverse_horizontal(edge& e) { + // swap horizontal edges' top and bottom x's so they follow the natural + // progression of the bounds - ie so their xbots will align with the + // adjoining lower edge. [Helpful in the process_horizontal() method.] + std::swap(e.top.x, e.bot.x); +} + +// Make a list start on a local maximum by +// shifting all the points not on a local maximum to the +template +void start_list_on_local_maximum(edge_list& edges) { + if (edges.size() <= 2) { + return; + } + // Find the first local maximum going forward in the list + auto prev_edge = edges.end(); + --prev_edge; + bool prev_edge_is_horizontal = is_horizontal(*prev_edge); + auto edge = edges.begin(); + bool edge_is_horizontal; + bool y_decreasing_before_last_horizontal = false; // assume false at start + + while (edge != edges.end()) { + edge_is_horizontal = is_horizontal(*edge); + if ((!prev_edge_is_horizontal && !edge_is_horizontal && edge->top == prev_edge->top)) { + break; + } + if (!edge_is_horizontal && prev_edge_is_horizontal) { + if (y_decreasing_before_last_horizontal && + (edge->top == prev_edge->bot || edge->top == prev_edge->top)) { + break; + } + } else if (!y_decreasing_before_last_horizontal && !prev_edge_is_horizontal && + edge_is_horizontal && + (prev_edge->top == edge->top || prev_edge->top == edge->bot)) { + y_decreasing_before_last_horizontal = true; + } + prev_edge_is_horizontal = edge_is_horizontal; + prev_edge = edge; + ++edge; + } + std::rotate(edges.begin(), edge, edges.end()); +} + +template +bound create_bound_towards_minimum(edge_list& edges) { + if (edges.size() == 1) { + if (is_horizontal(edges.front())) { + reverse_horizontal(edges.front()); + } + bound bnd; + std::swap(bnd.edges, edges); + return bnd; + } + auto next_edge = edges.begin(); + auto edge = next_edge; + ++next_edge; + bool edge_is_horizontal = is_horizontal(*edge); + if (edge_is_horizontal) { + reverse_horizontal(*edge); + } + bool next_edge_is_horizontal; + bool y_increasing_before_last_horizontal = false; // assume false at start + + while (next_edge != edges.end()) { + next_edge_is_horizontal = is_horizontal(*next_edge); + if ((!next_edge_is_horizontal && !edge_is_horizontal && edge->bot == next_edge->bot)) { + break; + } + if (!next_edge_is_horizontal && edge_is_horizontal) { + if (y_increasing_before_last_horizontal && + (next_edge->bot == edge->bot || next_edge->bot == edge->top)) { + break; + } + } else if (!y_increasing_before_last_horizontal && !edge_is_horizontal && + next_edge_is_horizontal && + (edge->bot == next_edge->top || edge->bot == next_edge->bot)) { + y_increasing_before_last_horizontal = true; + } + edge_is_horizontal = next_edge_is_horizontal; + edge = next_edge; + if (edge_is_horizontal) { + reverse_horizontal(*edge); + } + ++next_edge; + } + bound bnd; + if (next_edge == edges.end()) { + std::swap(edges, bnd.edges); + } else { + bnd.edges.reserve(std::distance(edges.begin(), next_edge)); + std::move(edges.begin(), next_edge, std::back_inserter(bnd.edges)); + edges.erase(edges.begin(), next_edge); + } + std::reverse(bnd.edges.begin(), bnd.edges.end()); + return bnd; +} + +template +bound create_bound_towards_maximum(edge_list& edges) { + if (edges.size() == 1) { + bound bnd; + std::swap(bnd.edges, edges); + return bnd; + } + auto next_edge = edges.begin(); + auto edge = next_edge; + ++next_edge; + bool edge_is_horizontal = is_horizontal(*edge); + bool next_edge_is_horizontal; + bool y_decreasing_before_last_horizontal = false; // assume false at start + + while (next_edge != edges.end()) { + next_edge_is_horizontal = is_horizontal(*next_edge); + if ((!next_edge_is_horizontal && !edge_is_horizontal && edge->top == next_edge->top)) { + break; + } + if (!next_edge_is_horizontal && edge_is_horizontal) { + if (y_decreasing_before_last_horizontal && + (next_edge->top == edge->bot || next_edge->top == edge->top)) { + break; + } + } else if (!y_decreasing_before_last_horizontal && !edge_is_horizontal && + next_edge_is_horizontal && + (edge->top == next_edge->top || edge->top == next_edge->bot)) { + y_decreasing_before_last_horizontal = true; + } + edge_is_horizontal = next_edge_is_horizontal; + edge = next_edge; + ++next_edge; + } + bound bnd; + if (next_edge == edges.end()) { + std::swap(bnd.edges, edges); + } else { + bnd.edges.reserve(std::distance(edges.begin(), next_edge)); + std::move(edges.begin(), next_edge, std::back_inserter(bnd.edges)); + edges.erase(edges.begin(), next_edge); + } + return bnd; +} + +template +void fix_horizontals(bound& bnd) { + + auto edge_itr = bnd.edges.begin(); + auto next_itr = std::next(edge_itr); + if (next_itr == bnd.edges.end()) { + return; + } + if (is_horizontal(*edge_itr) && next_itr->bot != edge_itr->top) { + reverse_horizontal(*edge_itr); + } + auto prev_itr = edge_itr++; + while (edge_itr != bnd.edges.end()) { + if (is_horizontal(*edge_itr) && prev_itr->top != edge_itr->bot) { + reverse_horizontal(*edge_itr); + } + prev_itr = edge_itr; + ++edge_itr; + } +} + +template +void move_horizontals_on_left_to_right(bound& left_bound, bound& right_bound) { + // We want all the horizontal segments that are at the same Y as the minimum to be on the right + // bound + auto edge_itr = left_bound.edges.begin(); + while (edge_itr != left_bound.edges.end()) { + if (!is_horizontal(*edge_itr)) { + break; + } + reverse_horizontal(*edge_itr); + ++edge_itr; + } + if (edge_itr == left_bound.edges.begin()) { + return; + } + std::reverse(left_bound.edges.begin(), edge_itr); + auto dist = std::distance(left_bound.edges.begin(), edge_itr); + std::move(left_bound.edges.begin(), edge_itr, std::back_inserter(right_bound.edges)); + left_bound.edges.erase(left_bound.edges.begin(), edge_itr); + std::rotate(right_bound.edges.begin(), std::prev(right_bound.edges.end(), dist), right_bound.edges.end()); +} + +template +void add_line_to_local_minima_list(edge_list& edges, local_minimum_list& minima_list) { + + if (edges.empty()) { + return; + } + // Adjust the order of the ring so we start on a local maximum + // therefore we start right away on a bound. + start_list_on_local_maximum(edges); + bound_ptr last_maximum = nullptr; + while (!edges.empty()) { + bool lm_minimum_has_horizontal = false; + auto to_minimum = create_bound_towards_minimum(edges); + assert(!to_minimum.edges.empty()); + fix_horizontals(to_minimum); + to_minimum.poly_type = polygon_type_subject; + to_minimum.maximum_bound = last_maximum; + to_minimum.winding_delta = 0; + auto to_min_first_non_horizontal = to_minimum.edges.begin(); + while (to_min_first_non_horizontal != to_minimum.edges.end() && + is_horizontal(*to_min_first_non_horizontal)) { + lm_minimum_has_horizontal = true; + ++to_min_first_non_horizontal; + } + if (edges.empty()) { + if (to_min_first_non_horizontal != to_minimum.edges.end() && + to_min_first_non_horizontal->dx > 0.0) { + to_minimum.side = edge_left; + bound right_bound; + right_bound.winding_delta = 0; + right_bound.side = edge_right; + right_bound.poly_type = polygon_type_subject; + move_horizontals_on_left_to_right(to_minimum, right_bound); + auto const& min_front = to_minimum.edges.front(); + minima_list.emplace_back(std::move(to_minimum), std::move(right_bound), min_front.y, + lm_minimum_has_horizontal); + if (last_maximum) { + last_maximum->maximum_bound = &(minima_list.back().left_bound); + last_maximum = nullptr; + } + } else { + to_minimum.side = edge_right; + bound left_bound; + left_bound.winding_delta = 0; + left_bound.side = edge_left; + left_bound.poly_type = polygon_type_subject; + auto const& min_front = to_minimum.edges.front(); + minima_list.emplace_back(std::move(left_bound), std::move(to_minimum), min_front.y); + if (last_maximum) { + last_maximum->maximum_bound = &(minima_list.back().right_bound); + last_maximum = nullptr; + } + } + break; + } + bool minimum_is_left = true; + auto to_maximum = create_bound_towards_maximum(edges); + assert(!to_maximum.edges.empty()); + fix_horizontals(to_maximum); + auto to_max_first_non_horizontal = to_minimum.edges.begin(); + while (to_max_first_non_horizontal != to_maximum.edges.end() && + is_horizontal(*to_max_first_non_horizontal)) { + lm_minimum_has_horizontal = true; + ++to_max_first_non_horizontal; + } + if (to_max_first_non_horizontal != to_maximum.edges.end() && + (to_min_first_non_horizontal == to_minimum.edges.end() || + to_max_first_non_horizontal->dx > to_min_first_non_horizontal->dx)) { + minimum_is_left = false; + move_horizontals_on_left_to_right(to_maximum, to_minimum); + } else { + minimum_is_left = true; + move_horizontals_on_left_to_right(to_minimum, to_maximum); + } + auto const& min_front = to_minimum.edges.front(); + to_maximum.poly_type = polygon_type_subject; + to_maximum.winding_delta = 0; + if (!minimum_is_left) { + to_minimum.side = edge_right; + to_maximum.side = edge_left; + minima_list.emplace_back(std::move(to_maximum), std::move(to_minimum), min_front.bot.y, + lm_minimum_has_horizontal); + if (last_maximum) { + last_maximum->maximum_bound = &(minima_list.back().right_bound); + } + last_maximum = &(minima_list.back().left_bound); + } else { + to_minimum.side = edge_left; + to_maximum.side = edge_right; + minima_list.emplace_back(std::move(to_minimum), std::move(to_maximum), min_front.bot.y, + lm_minimum_has_horizontal); + if (last_maximum) { + last_maximum->maximum_bound = &(minima_list.back().left_bound); + } + last_maximum = &(minima_list.back().right_bound); + } + } +} + +template +void add_ring_to_local_minima_list(edge_list& edges, + local_minimum_list& minima_list, + polygon_type poly_type) { + + if (edges.empty()) { + return; + } + // Adjust the order of the ring so we start on a local maximum + // therefore we start right away on a bound. + start_list_on_local_maximum(edges); + + bound_ptr first_minimum = nullptr; + bound_ptr last_maximum = nullptr; + while (!edges.empty()) { + bool lm_minimum_has_horizontal = false; + auto to_minimum = create_bound_towards_minimum(edges); + if (edges.empty()) { + throw std::runtime_error("Edges is empty after only creating a single bound."); + } + auto to_maximum = create_bound_towards_maximum(edges); + fix_horizontals(to_minimum); + fix_horizontals(to_maximum); + auto to_max_first_non_horizontal = to_maximum.edges.begin(); + auto to_min_first_non_horizontal = to_minimum.edges.begin(); + bool minimum_is_left = true; + while (to_max_first_non_horizontal != to_maximum.edges.end() && + is_horizontal(*to_max_first_non_horizontal)) { + lm_minimum_has_horizontal = true; + ++to_max_first_non_horizontal; + } + while (to_min_first_non_horizontal != to_minimum.edges.end() && + is_horizontal(*to_min_first_non_horizontal)) { + lm_minimum_has_horizontal = true; + ++to_min_first_non_horizontal; + } +#ifdef DEBUG + if (to_max_first_non_horizontal == to_maximum.edges.end() || + to_min_first_non_horizontal == to_minimum.edges.end()) { + throw clipper_exception("should not have a horizontal only bound for a ring"); + } +#endif + if (lm_minimum_has_horizontal) { + if (to_max_first_non_horizontal->bot.x > to_min_first_non_horizontal->bot.x) { + minimum_is_left = true; + move_horizontals_on_left_to_right(to_minimum, to_maximum); + } else { + minimum_is_left = false; + move_horizontals_on_left_to_right(to_maximum, to_minimum); + } + } else { + if (to_max_first_non_horizontal->dx > to_min_first_non_horizontal->dx) { + minimum_is_left = false; + } else { + minimum_is_left = true; + } + } + assert(!to_minimum.edges.empty()); + assert(!to_maximum.edges.empty()); + auto const& min_front = to_minimum.edges.front(); + if (last_maximum) { + to_minimum.maximum_bound = last_maximum; + } + to_minimum.poly_type = poly_type; + to_maximum.poly_type = poly_type; + if (!minimum_is_left) { + to_minimum.side = edge_right; + to_maximum.side = edge_left; + to_minimum.winding_delta = -1; + to_maximum.winding_delta = 1; + minima_list.emplace_back(std::move(to_maximum), std::move(to_minimum), min_front.bot.y, + lm_minimum_has_horizontal); + if (!last_maximum) { + first_minimum = &(minima_list.back().right_bound); + } else { + last_maximum->maximum_bound = &(minima_list.back().right_bound); + } + last_maximum = &(minima_list.back().left_bound); + } else { + to_minimum.side = edge_left; + to_maximum.side = edge_right; + to_minimum.winding_delta = -1; + to_maximum.winding_delta = 1; + minima_list.emplace_back(std::move(to_minimum), std::move(to_maximum), min_front.bot.y, + lm_minimum_has_horizontal); + if (!last_maximum) { + first_minimum = &(minima_list.back().left_bound); + } else { + last_maximum->maximum_bound = &(minima_list.back().left_bound); + } + last_maximum = &(minima_list.back().right_bound); + } + } + last_maximum->maximum_bound = first_minimum; + first_minimum->maximum_bound = last_maximum; +} + +template +void initialize_lm(local_minimum_ptr_list_itr& lm) { + if (!(*lm)->left_bound.edges.empty()) { + (*lm)->left_bound.current_edge = (*lm)->left_bound.edges.begin(); + (*lm)->left_bound.next_edge = std::next((*lm)->left_bound.current_edge); + (*lm)->left_bound.current_x = static_cast((*lm)->left_bound.current_edge->bot.x); + (*lm)->left_bound.winding_count = 0; + (*lm)->left_bound.winding_count2 = 0; + (*lm)->left_bound.side = edge_left; + (*lm)->left_bound.ring = nullptr; + } + if (!(*lm)->right_bound.edges.empty()) { + (*lm)->right_bound.current_edge = (*lm)->right_bound.edges.begin(); + (*lm)->right_bound.next_edge = std::next((*lm)->right_bound.current_edge); + (*lm)->right_bound.current_x = static_cast((*lm)->right_bound.current_edge->bot.x); + (*lm)->right_bound.winding_count = 0; + (*lm)->right_bound.winding_count2 = 0; + (*lm)->right_bound.side = edge_right; + (*lm)->right_bound.ring = nullptr; + } +} +} +} +} diff --git a/mapbox/geometry/wagyu/point.hpp b/mapbox/geometry/wagyu/point.hpp new file mode 100644 index 0000000..8811319 --- /dev/null +++ b/mapbox/geometry/wagyu/point.hpp @@ -0,0 +1,110 @@ +#pragma once + +#include + +#ifdef DEBUG +#include +#endif + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +struct point; + +template +using point_ptr = point*; + +template +using const_point_ptr = point* const; + +template +struct ring; + +template +using ring_ptr = ring*; + +template +using const_ring_ptr = ring* const; + +template +struct point { + using coordinate_type = T; + ring_ptr ring; + T x; + T y; + point_ptr next; + point_ptr prev; + + point(point && p) + : ring(std::move(p.ring)), + x(std::move(p.x)), + y(std::move(p.y)), + next(std::move(p.next)), + prev(std::move(p.prev)) { } + + point() : ring(nullptr), x(0), y(0), prev(this), next(this) { + } + point(T x_, T y_) : ring(nullptr), x(x_), y(y_), next(this), prev(this) { + } + point(ring_ptr ring_, mapbox::geometry::point const& pt) + : ring(ring_), x(pt.x), y(pt.y), next(this), prev(this) { + } + + point(ring_ptr ring_, mapbox::geometry::point const& pt, point_ptr before_this_point) + : ring(ring_), x(pt.x), y(pt.y), next(before_this_point), prev(before_this_point->prev) { + before_this_point->prev = this; + prev->next = this; + } +}; + +template +bool operator==(point const& lhs, point const& rhs) { + return lhs.x == rhs.x && lhs.y == rhs.y; +} + +template +bool operator==(mapbox::geometry::point const& lhs, point const& rhs) { + return lhs.x == rhs.x && lhs.y == rhs.y; +} + +template +bool operator==(point const& lhs, mapbox::geometry::point const& rhs) { + return lhs.x == rhs.x && lhs.y == rhs.y; +} + +template +bool operator!=(point const& lhs, point const& rhs) { + return lhs.x != rhs.x || lhs.y != rhs.y; +} + +template +bool operator!=(mapbox::geometry::point const& lhs, point const& rhs) { + return lhs.x != rhs.x || lhs.y != rhs.y; +} + +template +bool operator!=(point const& lhs, mapbox::geometry::point const& rhs) { + return lhs.x != rhs.x || lhs.y != rhs.y; +} + +#ifdef DEBUG + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const point& p) { + out << " point at: " << p.x << ", " << p.y; + return out; +} + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const mapbox::geometry::point& p) { + out << " point at: " << p.x << ", " << p.y; + return out; +} +#endif +} +} +} diff --git a/mapbox/geometry/wagyu/process_horizontal.hpp b/mapbox/geometry/wagyu/process_horizontal.hpp new file mode 100644 index 0000000..ad8774f --- /dev/null +++ b/mapbox/geometry/wagyu/process_horizontal.hpp @@ -0,0 +1,285 @@ +#pragma once + +#include +#include +#include + +#include +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +active_bound_list_itr process_horizontal_left_to_right(T scanline_y, + active_bound_list_itr& horz_bound, + active_bound_list& active_bounds, + ring_manager& rings, + scanbeam_list& scanbeam, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + auto horizontal_itr_behind = horz_bound; + bool is_open = (*horz_bound)->winding_delta == 0; + bool is_maxima_edge = is_maxima(horz_bound, scanline_y); + auto bound_max_pair = active_bounds.end(); + if (is_maxima_edge) { + bound_max_pair = get_maxima_pair(horz_bound, active_bounds); + } + + auto hp_itr = rings.current_hp_itr; + while (hp_itr != rings.hot_pixels.end() && (hp_itr->y > scanline_y || (hp_itr->y == scanline_y && hp_itr->x < (*horz_bound)->current_edge->bot.x))) { + ++hp_itr; + } + + auto bnd = std::next(horz_bound); + + while (bnd != active_bounds.end()) { + // this code block inserts extra coords into horizontal edges (in output + // polygons) wherever hot pixels touch these horizontal edges. This helps + //'simplifying' polygons (ie if the Simplify property is set). + while (hp_itr != rings.hot_pixels.end() && hp_itr->y == scanline_y && hp_itr->x < std::llround((*bnd)->current_x) && + hp_itr->x < (*horz_bound)->current_edge->top.x) { + if ((*horz_bound)->ring && !is_open) { + add_point_to_ring(*(*horz_bound), *hp_itr, rings); + } + ++hp_itr; + } + + if ((*bnd)->current_x > static_cast((*horz_bound)->current_edge->top.x)) { + break; + } + + // Also break if we've got to the end of an intermediate horizontal edge ... + // nb: Smaller Dx's are to the right of larger Dx's ABOVE the horizontal. + if (std::llround((*bnd)->current_x) == (*horz_bound)->current_edge->top.x && + (*horz_bound)->next_edge != (*horz_bound)->edges.end() && + (*horz_bound)->current_edge->dx < (*horz_bound)->next_edge->dx) { + break; + } + + // note: may be done multiple times + if ((*horz_bound)->ring && !is_open) { + add_point_to_ring(*(*horz_bound), + mapbox::geometry::point(std::llround((*bnd)->current_x), + scanline_y), + rings); + } + + // OK, so far we're still in range of the horizontal Edge but make sure + // we're at the last of consec. horizontals when matching with eMaxPair + if (is_maxima_edge && bnd == bound_max_pair) { + if ((*horz_bound)->ring) { + add_local_maximum_point(horz_bound, bound_max_pair, + (*horz_bound)->current_edge->top, rings, active_bounds); + } + active_bounds.erase(bound_max_pair); + auto after_horz = active_bounds.erase(horz_bound); + if (horizontal_itr_behind != horz_bound) { + return horizontal_itr_behind; + } else { + return after_horz; + } + } + + intersect_bounds(horz_bound, bnd, + mapbox::geometry::point(std::llround((*bnd)->current_x), + scanline_y), + cliptype, subject_fill_type, clip_fill_type, rings, active_bounds); + auto next_bnd = std::next(bnd); + swap_positions_in_ABL(horz_bound, bnd, active_bounds); + if (current_edge_is_horizontal(bnd) && horizontal_itr_behind == horz_bound) { + horizontal_itr_behind = bnd; + } + bnd = next_bnd; + } // end while (bnd != active_bounds.end()) + + if ((*horz_bound)->ring && !is_open) { + while (hp_itr != rings.hot_pixels.end() && hp_itr->y == scanline_y && + hp_itr->x < std::llround((*horz_bound)->current_edge->top.x)) { + add_point_to_ring(*(*horz_bound), *hp_itr, rings); + ++hp_itr; + } + } + + if ((*horz_bound)->next_edge != (*horz_bound)->edges.end()) { + if ((*horz_bound)->ring) { + add_point_to_ring(*(*horz_bound), (*horz_bound)->current_edge->top, rings); + next_edge_in_bound(horz_bound, scanbeam); + + if ((*horz_bound)->winding_delta == 0) { + if (horizontal_itr_behind != horz_bound) { + return horizontal_itr_behind; + } else { + return std::next(horz_bound); + } + } + } else { + next_edge_in_bound(horz_bound, scanbeam); + } + if (horizontal_itr_behind != horz_bound) { + return horizontal_itr_behind; + } else { + return std::next(horz_bound); + } + } else { + if ((*horz_bound)->ring) { + add_point_to_ring(*(*horz_bound), (*horz_bound)->current_edge->top, rings); + } + auto after_horz = active_bounds.erase(horz_bound); + if (horizontal_itr_behind != horz_bound) { + return horizontal_itr_behind; + } else { + return after_horz; + } + } +} + +template +active_bound_list_itr process_horizontal_right_to_left(T scanline_y, + active_bound_list_itr& horz_bound, + active_bound_list& active_bounds, + ring_manager& rings, + scanbeam_list& scanbeam, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + bool is_open = (*horz_bound)->winding_delta == 0; + bool is_maxima_edge = is_maxima(horz_bound, scanline_y); + auto bound_max_pair = active_bounds.end(); + if (is_maxima_edge) { + bound_max_pair = get_maxima_pair(horz_bound, active_bounds); + } + auto hp_itr_fwd = rings.current_hp_itr; + while (hp_itr_fwd != rings.hot_pixels.end() && (hp_itr_fwd->y < scanline_y || (hp_itr_fwd->y == scanline_y && hp_itr_fwd->x < (*horz_bound)->current_edge->top.x))) { + ++hp_itr_fwd; + } + auto hp_itr = hot_pixel_rev_itr(hp_itr_fwd); + + auto bnd = active_bound_list_rev_itr(horz_bound); + while (bnd != active_bounds.rend()) { + // this code block inserts extra coords into horizontal edges (in output + // polygons) wherever hot pixels touch these horizontal edges. + while (hp_itr != rings.hot_pixels.rend() && hp_itr->y == scanline_y && hp_itr->x > std::llround((*bnd)->current_x) && + hp_itr->x > (*horz_bound)->current_edge->top.x) { + if ((*horz_bound)->ring && !is_open) { + add_point_to_ring(*(*horz_bound), *hp_itr, rings); + } + ++hp_itr; + } + + if ((*bnd)->current_x < static_cast((*horz_bound)->current_edge->top.x)) { + break; + } + + // Also break if we've got to the end of an intermediate horizontal edge ... + // nb: Smaller Dx's are to the right of larger Dx's ABOVE the horizontal. + if (std::llround((*bnd)->current_x) == (*horz_bound)->current_edge->top.x && + (*horz_bound)->next_edge != (*horz_bound)->edges.end() && + (*horz_bound)->current_edge->dx < (*horz_bound)->next_edge->dx) { + break; + } + + // note: may be done multiple times + if ((*horz_bound)->ring && !is_open) { + add_point_to_ring(*(*horz_bound), + mapbox::geometry::point(std::llround((*bnd)->current_x), + scanline_y), + rings); + } + auto bnd_forward = --(bnd.base()); + + // OK, so far we're still in range of the horizontal Edge but make sure + // we're at the last of consec. horizontals when matching with eMaxPair + if (is_maxima_edge && bnd_forward == bound_max_pair) { + if ((*horz_bound)->ring) { + add_local_maximum_point(horz_bound, bound_max_pair, + (*horz_bound)->current_edge->top, rings, active_bounds); + } + active_bounds.erase(bound_max_pair); + return active_bounds.erase(horz_bound); + } + + intersect_bounds(bnd_forward, horz_bound, + mapbox::geometry::point(std::llround((*bnd)->current_x), + scanline_y), + cliptype, subject_fill_type, clip_fill_type, rings, active_bounds); + swap_positions_in_ABL(horz_bound, bnd_forward, active_bounds); + // Why are we not incrementing the bnd iterator here: + // It is because reverse iterators point to a `base()` iterator that is a forward + // iterator that is one ahead of the reverse bound. This will always be the horizontal + // bound, + // so what the reverse bound points to will have changed. + } // end while (bnd != active_bounds.rend()) + + if ((*horz_bound)->ring && !is_open) { + while (hp_itr != rings.hot_pixels.rend() && hp_itr->y == scanline_y && hp_itr->x > (*horz_bound)->current_edge->top.x) { + add_point_to_ring(*(*horz_bound), *hp_itr, rings); + ++hp_itr; + } + } + + if ((*horz_bound)->next_edge != (*horz_bound)->edges.end()) { + if ((*horz_bound)->ring) { + add_point_to_ring(*(*horz_bound), (*horz_bound)->current_edge->top, rings); + next_edge_in_bound(horz_bound, scanbeam); + + if ((*horz_bound)->winding_delta == 0) { + return std::next(horz_bound); + } + } else { + next_edge_in_bound(horz_bound, scanbeam); + } + return std::next(horz_bound); + } else { + if ((*horz_bound)->ring) { + add_point_to_ring(*(*horz_bound), (*horz_bound)->current_edge->top, rings); + } + return active_bounds.erase(horz_bound); + } +} + +template +active_bound_list_itr process_horizontal(T scanline_y, + active_bound_list_itr& horz_bound, + active_bound_list& active_bounds, + ring_manager& rings, + scanbeam_list& scanbeam, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + if ((*horz_bound)->current_edge->bot.x < (*horz_bound)->current_edge->top.x) { + return process_horizontal_left_to_right(scanline_y, horz_bound, active_bounds, rings, + scanbeam, cliptype, subject_fill_type, + clip_fill_type); + } else { + return process_horizontal_right_to_left(scanline_y, horz_bound, active_bounds, rings, + scanbeam, cliptype, subject_fill_type, + clip_fill_type); + } +} + +template +void process_horizontals(T scanline_y, + active_bound_list& active_bounds, + ring_manager& rings, + scanbeam_list& scanbeam, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + for (auto bnd_itr = active_bounds.begin(); bnd_itr != active_bounds.end();) { + if (current_edge_is_horizontal(bnd_itr)) { + bnd_itr = process_horizontal(scanline_y, bnd_itr, active_bounds, rings, scanbeam, + cliptype, subject_fill_type, clip_fill_type); + } else { + ++bnd_itr; + } + } +} +} +} +} diff --git a/mapbox/geometry/wagyu/process_maxima.hpp b/mapbox/geometry/wagyu/process_maxima.hpp new file mode 100644 index 0000000..edac1c3 --- /dev/null +++ b/mapbox/geometry/wagyu/process_maxima.hpp @@ -0,0 +1,133 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +active_bound_list_itr do_maxima(active_bound_list_itr& bnd, + active_bound_list_itr& bndMaxPair, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type, + ring_manager& rings, + active_bound_list& active_bounds) { + if (bndMaxPair == active_bounds.end()) { + if ((*bnd)->ring) { + add_point_to_ring(*(*bnd), (*bnd)->current_edge->top, rings); + } + return active_bounds.erase(bnd); + } + auto bnd_next = std::next(bnd); + auto return_bnd = bnd_next; + bool skipped = false; + while (bnd_next != active_bounds.end() && bnd_next != bndMaxPair) { + skipped = true; + intersect_bounds(bnd, bnd_next, (*bnd)->current_edge->top, cliptype, subject_fill_type, + clip_fill_type, rings, active_bounds); + swap_positions_in_ABL(bnd, bnd_next, active_bounds); + bnd_next = std::next(bnd); + } + + if (!(*bnd)->ring && !(*bndMaxPair)->ring) { + active_bounds.erase(bndMaxPair); + } else if ((*bnd)->ring && (*bndMaxPair)->ring) { + add_local_maximum_point(bnd, bndMaxPair, (*bnd)->current_edge->top, rings, active_bounds); + active_bounds.erase(bndMaxPair); + } else if ((*bnd)->winding_delta == 0 && (*bnd)->ring) { + add_point_to_ring(*(*bnd), (*bnd)->current_edge->top, rings); + active_bounds.erase(bndMaxPair); + } else if ((*bnd)->winding_delta == 0 && (*bndMaxPair)->ring) { + add_point_to_ring(*(*bndMaxPair), (*bnd)->current_edge->top, rings); + active_bounds.erase(bndMaxPair); + } else { + throw clipper_exception("DoMaxima error"); + } + auto prev_itr = active_bounds.erase(bnd); + if (skipped) { + return return_bnd; + } else { + return prev_itr; + } +} + +template +void process_edges_at_top_of_scanbeam(T top_y, + active_bound_list& active_bounds, + scanbeam_list& scanbeam, + local_minimum_ptr_list const& minima_sorted, + local_minimum_ptr_list_itr& current_lm, + ring_manager& rings, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + + for (auto bnd = active_bounds.begin(); bnd != active_bounds.end();) { + // 1. Process maxima, treating them as if they are "bent" horizontal edges, + // but exclude maxima with horizontal edges. + + bool is_maxima_edge = is_maxima(bnd, top_y); + + if (is_maxima_edge) { + auto bnd_max_pair = get_maxima_pair(bnd, active_bounds); + is_maxima_edge = ((bnd_max_pair == active_bounds.end() || + !current_edge_is_horizontal(bnd_max_pair)) && + is_maxima(bnd_max_pair, top_y)); + if (is_maxima_edge) { + bnd = do_maxima(bnd, bnd_max_pair, cliptype, subject_fill_type, clip_fill_type, rings, + active_bounds); + continue; + } + } + + // 2. Promote horizontal edges. + if (is_intermediate(bnd, top_y) && next_edge_is_horizontal(bnd)) { + if ((*bnd)->ring) { + insert_hot_pixels_in_path(*(*bnd), (*bnd)->current_edge->top, rings, false); + } + next_edge_in_bound(bnd, scanbeam); + if ((*bnd)->ring) { + add_point_to_ring(*(*bnd), (*bnd)->current_edge->bot, rings); + } + } else { + (*bnd)->current_x = get_current_x(*((*bnd)->current_edge), top_y); + } + + ++bnd; + } + + insert_horizontal_local_minima_into_ABL(top_y, minima_sorted, current_lm, active_bounds, rings, + scanbeam, cliptype, subject_fill_type, clip_fill_type); + + process_horizontals(top_y, active_bounds, rings, scanbeam, cliptype, subject_fill_type, + clip_fill_type); + + // 4. Promote intermediate vertices + + for (auto bnd = active_bounds.begin(); bnd != active_bounds.end(); ++bnd) { + if (is_intermediate(bnd, top_y)) { + if ((*bnd)->ring) { + add_point_to_ring(*(*bnd), (*bnd)->current_edge->top, rings); + insert_hot_pixels_in_path(*(*bnd), (*bnd)->current_edge->top, rings, false); + } + next_edge_in_bound(bnd, scanbeam); + } + } +} + +} +} +} diff --git a/mapbox/geometry/wagyu/ring.hpp b/mapbox/geometry/wagyu/ring.hpp new file mode 100644 index 0000000..b4eda27 --- /dev/null +++ b/mapbox/geometry/wagyu/ring.hpp @@ -0,0 +1,479 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef DEBUG +#include +#include +#include +// +// void* callstack[128]; +// int i, frames = backtrace(callstack, 128); +// char** strs = backtrace_symbols(callstack, frames); +// for (i = 0; i < frames; ++i) { +// printf("%s\n", strs[i]); +// } +// free(strs); +#endif + +namespace mapbox { +namespace geometry { +namespace wagyu { + +// NOTE: ring and ring_ptr are forward declared in wagyu/point.hpp + +template +using ring_vector = std::vector>; + +template +using ring_list = std::list>; + +template +struct ring { + std::size_t ring_index; // To support unset 0 is undefined and indexes offset by 1 + std::size_t size; + double area; + ring_ptr parent; + ring_list children; + point_ptr points; + point_ptr bottom_point; + bool is_open; + + ring( ring const& ) = delete; + ring& operator=(ring const& ) = delete; + + ring() + : ring_index(0), + size(0), + area(std::numeric_limits::quiet_NaN()), + parent(nullptr), + children(), + points(nullptr), + bottom_point(nullptr), + is_open(false) { + } +}; + +template +using hot_pixel_vector = std::vector>; + +template +using hot_pixel_itr = typename hot_pixel_vector::iterator; + +template +using hot_pixel_rev_itr = typename hot_pixel_vector::reverse_iterator; + +template +struct ring_manager { + + ring_list children; + std::vector> all_points; + hot_pixel_vector hot_pixels; + hot_pixel_itr current_hp_itr; + std::deque> points; + std::deque> rings; + std::vector> storage; + std::size_t index; + + ring_manager( ring_manager const& ) = delete; + ring_manager& operator=(ring_manager const& ) = delete; + + ring_manager() + : children(), + all_points(), + hot_pixels(), + current_hp_itr(hot_pixels.end()), + points(), + rings(), + storage(), + index(0) { + } +}; + +template +void preallocate_point_memory(ring_manager& rings, std::size_t size) { + rings.storage.reserve(size); + rings.all_points.reserve(size); +} + +template +ring_ptr create_new_ring(ring_manager& rings) { + rings.rings.emplace_back(); + ring_ptr result = &rings.rings.back(); + result->ring_index = rings.index++; + return result; +} + +template +point_ptr +create_new_point(ring_ptr r, mapbox::geometry::point const& pt, ring_manager& rings) { + point_ptr point; + if (rings.storage.size() < rings.storage.capacity()) { + rings.storage.emplace_back(r, pt); + point = &rings.storage.back(); + } else { + rings.points.emplace_back(r, pt); + point = &rings.points.back(); + } + rings.all_points.push_back(point); + return point; +} + +template +point_ptr create_new_point(ring_ptr r, + mapbox::geometry::point const& pt, + point_ptr before_this_point, + ring_manager& rings) { + point_ptr point; + if (rings.storage.size() < rings.storage.capacity()) { + rings.storage.emplace_back(r, pt, before_this_point); + point = &rings.storage.back(); + } else { + rings.points.emplace_back(r, pt, before_this_point); + point = &rings.points.back(); + } + rings.all_points.push_back(point); + return point; +} + +template +void ring1_child_of_ring2(ring_ptr ring1, ring_ptr ring2, ring_manager& manager) { + assert(ring1 != ring2); + if (ring1->parent == ring2) { + return; + } + if (ring1->parent == nullptr) { + manager.children.remove(ring1); + } else { + ring1->parent->children.remove(ring1); + } + if (ring2 == nullptr) { + ring1->parent = nullptr; + manager.children.push_back(ring1); + } else { + ring1->parent = ring2; + ring2->children.push_back(ring1); + } +} + +template +void ring1_sibling_of_ring2(ring_ptr ring1, ring_ptr ring2, ring_manager& manager) { + assert(ring1 != ring2); + if (ring1->parent == ring2->parent) { + return; + } + if (ring1->parent == nullptr) { + manager.children.remove(ring1); + } else { + ring1->parent->children.remove(ring1); + } + if (ring2->parent == nullptr) { + manager.children.push_back(ring1); + } else { + ring2->parent->children.push_back(ring1); + } + ring1->parent = ring2->parent; +} + +template +void ring1_replaces_ring2(ring_ptr ring1, ring_ptr ring2, ring_manager& manager) { + assert(ring1 != ring2); + if (ring2->parent == nullptr) { + manager.children.remove(ring2); + } else { + ring2->parent->children.remove(ring2); + } + for (auto& c : ring2->children) { + c->parent = ring1; + } + if (ring1 == nullptr) { + manager.children.splice(manager.children.end(), ring2->children); + } else { + ring1->children.splice(ring1->children.end(), ring2->children); + } + ring2->parent = nullptr; +} + +template +void remove_ring(ring_ptr r, ring_manager& manager) { + if (r->parent == nullptr) { + manager.children.remove(r); + for (auto& c : r->children) { + c->parent = nullptr; + } + manager.children.splice(manager.children.end(), r->children); + } else { + r->parent->children.remove(r); + for (auto& c : r->children) { + c->parent = r->parent; + } + r->parent->children.splice(r->parent->children.end(), r->children); + r->parent = nullptr; + } +} + +template +inline std::size_t ring_depth(ring_ptr r) { + std::size_t depth = 0; + if (!r) { + return depth; + } + while (r->parent) { + depth++; + r = r->parent; + } + return depth; +} + +template +inline bool ring_is_hole(ring_ptr r) { + return ring_depth(r) & 1; +} + +template +void set_next(const_point_ptr& node, const const_point_ptr& next_node) { + node->next = next_node; +} + +template +point_ptr get_next(const_point_ptr& node) { + return node->next; +} + +template +point_ptr get_prev(const_point_ptr& node) { + return node->prev; +} + +template +void set_prev(const_point_ptr& node, const const_point_ptr& prev_node) { + node->prev = prev_node; +} + +template +void init(const_point_ptr& node) { + set_next(node, node); + set_prev(node, node); +} + +template +std::size_t point_count(const const_point_ptr& orig_node) { + std::size_t size = 0; + point_ptr n = orig_node; + do { + n = get_next(n); + ++size; + } while (n != orig_node); + return size; +} + +template +void link_before(point_ptr& node, point_ptr& new_node) { + point_ptr prev_node = get_prev(node); + set_prev(new_node, prev_node); + set_next(new_node, node); + set_prev(node, new_node); + set_next(prev_node, new_node); +} + +template +void link_after(point_ptr& node, point_ptr& new_node) { + point_ptr next_node = get_next(node); + set_prev(new_node, node); + set_next(new_node, next_node); + set_next(node, new_node); + set_prev(next_node, new_node); +} + +template +void transfer_point(point_ptr& p, point_ptr& b, point_ptr& e) { + if (b != e) { + point_ptr prev_p = get_prev(p); + point_ptr prev_b = get_prev(b); + point_ptr prev_e = get_prev(e); + set_next(prev_e, p); + set_prev(p, prev_e); + set_next(prev_b, e); + set_prev(e, prev_b); + set_next(prev_p, b); + set_prev(b, prev_p); + } else { + link_before(p, b); + } +} + +template +void reverse_ring(point_ptr pp) { + if (!pp) { + return; + } + point_ptr pp1; + point_ptr pp2; + pp1 = pp; + do { + pp2 = pp1->next; + pp1->next = pp1->prev; + pp1->prev = pp2; + pp1 = pp2; + } while (pp1 != pp); +} + +template +double area_from_point(point_ptr op, std::size_t & size) { + point_ptr startOp = op; + size = 1; + if (!op) { + return 0.0; + } + double a = 0.0; + do { + ++size; + a += static_cast(op->prev->x + op->x) * static_cast(op->prev->y - op->y); + op = op->next; + } while (op != startOp); + return a * 0.5; +} + +template +double area(ring_ptr r) { + assert(r != nullptr); + if (std::isnan(r->area)) { + r->area = area_from_point(r->points, r->size); + } + return r->area; +} + +#ifdef DEBUG + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const ring& r) { + out << " ring_index: " << r.ring_index << std::endl; + if (!r.parent) { + // out << " parent_ring ptr: nullptr" << std::endl; + out << " parent_index: -----" << std::endl; + } else { + // out << " parent_ring ptr: " << r.parent << std::endl; + out << " parent_ring idx: " << r.parent->ring_index << std::endl; + } + ring_ptr n = const_cast>(&r); + if (ring_is_hole(n)) { + out << " is_hole: true " << std::endl; + } else { + out << " is_hole: false " << std::endl; + } + auto pt_itr = r.points; + if (pt_itr) { + out << " area: " << r.area << std::endl; + out << " points:" << std::endl; + out << " [[[" << pt_itr->x << "," << pt_itr->y << "],"; + pt_itr = pt_itr->next; + while (pt_itr != r.points) { + out << "[" << pt_itr->x << "," << pt_itr->y << "],"; + pt_itr = pt_itr->next; + } + out << "[" << pt_itr->x << "," << pt_itr->y << "]]]" << std::endl; + } else { + out << " area: NONE" << std::endl; + out << " points: NONE" << std::endl; + } + return out; +} + +template +std::string output_as_polygon(ring_ptr r) { + std::ostringstream out; + + auto pt_itr = r->points; + if (pt_itr) { + out << "["; + out << "[[" << pt_itr->x << "," << pt_itr->y << "],"; + pt_itr = pt_itr->next; + while (pt_itr != r->points) { + out << "[" << pt_itr->x << "," << pt_itr->y << "],"; + pt_itr = pt_itr->next; + } + out << "[" << pt_itr->x << "," << pt_itr->y << "]]"; + for (auto const& c : r->children) { + pt_itr = c->points; + if (pt_itr) { + out << ",[[" << pt_itr->x << "," << pt_itr->y << "],"; + pt_itr = pt_itr->next; + while (pt_itr != c->points) { + out << "[" << pt_itr->x << "," << pt_itr->y << "],"; + pt_itr = pt_itr->next; + } + out << "[" << pt_itr->x << "," << pt_itr->y << "]]"; + } + } + out << "]" << std::endl; + } else { + out << "[]" << std::endl; + } + + return out.str(); +} + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const ring_list& rings) { + out << "START RING LIST" << std::endl; + for (auto& r : rings) { + out << " ring: " << r->ring_index << " - " << r << std::endl; + out << *r; + } + out << "END RING LIST" << std::endl; + return out; +} + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const ring_vector& rings) { + out << "START RING VECTOR" << std::endl; + for (auto& r : rings) { + if (!r->points) { + continue; + } + out << " ring: " << r->ring_index << " - " << r << std::endl; + out << *r; + } + out << "END RING VECTOR" << std::endl; + return out; +} + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const std::deque>& rings) { + out << "START RING VECTOR" << std::endl; + for (auto& r : rings) { + if (!r.points) { + continue; + } + out << " ring: " << r.ring_index << std::endl; + out << r; + } + out << "END RING VECTOR" << std::endl; + return out; +} + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const hot_pixel_vector& hp_vec) { + out << "Hot Pixels: " << std::endl; + for (auto& hp : hp_vec) { + out << hp << std::endl; + } + return out; +} +#endif +} +} +} diff --git a/mapbox/geometry/wagyu/ring_util.hpp b/mapbox/geometry/wagyu/ring_util.hpp new file mode 100644 index 0000000..0988a77 --- /dev/null +++ b/mapbox/geometry/wagyu/ring_util.hpp @@ -0,0 +1,915 @@ +#pragma once + +#ifdef DEBUG +#include +// Example debug print for backtrace - only works on IOS +#include +#include +// +// void* callstack[128]; +// int i, frames = backtrace(callstack, 128); +// char** strs = backtrace_symbols(callstack, frames); +// for (i = 0; i < frames; ++i) { +// printf("%s\n", strs[i]); +// } +// free(strs); +#endif + +#include + +#include +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +void set_hole_state(active_bound_list_itr& bnd, + active_bound_list& active_bounds, + ring_manager& rings) { + auto bnd2 = active_bound_list_rev_itr(bnd); + bound_ptr bndTmp = nullptr; + // Find first non line ring to the left of current bound. + while (bnd2 != active_bounds.rend()) { + if ((*bnd2)->ring && (*bnd2)->winding_delta != 0) { + if (!bndTmp) { + bndTmp = (*bnd2); + } else if (bndTmp->ring == (*bnd2)->ring) { + bndTmp = nullptr; + } + } + ++bnd2; + } + if (!bndTmp) { + (*bnd)->ring->parent = nullptr; + rings.children.push_back((*bnd)->ring); + } else { + (*bnd)->ring->parent = bndTmp->ring; + bndTmp->ring->children.push_back((*bnd)->ring); + } +} + +template +void set_hole_state(active_bound_list_rev_itr& bnd, + active_bound_list& active_bounds, + ring_manager& rings) { + auto bnd2 = std::next(bnd); + bound_ptr bndTmp = nullptr; + // Find first non line ring to the left of current bound. + while (bnd2 != active_bounds.rend()) { + if ((*bnd2)->ring && (*bnd2)->winding_delta != 0) { + if (!bndTmp) { + bndTmp = (*bnd2); + } else if (bndTmp->ring == (*bnd2)->ring) { + bndTmp = nullptr; + } + } + ++bnd2; + } + + if (!bndTmp) { + (*bnd)->ring->parent = nullptr; + rings.children.push_back((*bnd)->ring); + } else { + (*bnd)->ring->parent = bndTmp->ring; + bndTmp->ring->children.push_back((*bnd)->ring); + } +} + +template +void update_current_hp_itr(T scanline_y, ring_manager& rings) { + while (rings.current_hp_itr->y > scanline_y) { + ++rings.current_hp_itr; + } +} + +template +struct hot_pixel_sorter { + inline bool operator()(mapbox::geometry::point const& pt1, mapbox::geometry::point const& pt2) { + if (pt1.y == pt2.y) { + return pt1.x < pt2.x; + } else { + return pt1.y > pt2.y; + } + } +}; + +// Due to the nature of floating point calculations +// and the high likely hood of values around X.5, we +// need to fudge what is X.5 some for our rounding. +const double rounding_offset = 1e-12; +const double rounding_offset_y = 5e-13; + +template +T round_towards_min(double val) { + // 0.5 rounds to 0 + // 0.0 rounds to 0 + // -0.5 rounds to -1 + return static_cast(std::ceil(val - 0.5 + rounding_offset)); +} + +template +T round_towards_max(double val) { + // 0.5 rounds to 1 + // 0.0 rounds to 0 + // -0.5 rounds to 0 + return static_cast(std::floor(val + 0.5 + rounding_offset)); +} + +template +inline T get_edge_min_x(edge const& edge, const T current_y) { + if (is_horizontal(edge)) { + if (edge.bot.x < edge.top.x) { + return edge.bot.x; + } else { + return edge.top.x; + } + } else if (edge.dx > 0.0) { + if (current_y == edge.top.y) { + return edge.top.x; + } else { + double lower_range_y = static_cast(current_y - edge.bot.y) - 0.5; + double return_val = static_cast(edge.bot.x) + edge.dx * lower_range_y; + T value = round_towards_min(return_val); + return value; + } + } else { + if (current_y == edge.bot.y) { + return edge.bot.x; + } else { + double return_val = static_cast(edge.bot.x) + + edge.dx * (static_cast(current_y - edge.bot.y) + 0.5 - rounding_offset_y); + T value = round_towards_min(return_val); + return value; + } + } +} + +template +inline T get_edge_max_x(edge const& edge, const T current_y) { + if (is_horizontal(edge)) { + if (edge.bot.x > edge.top.x) { + return edge.bot.x; + } else { + return edge.top.x; + } + } else if (edge.dx < 0.0) { + if (current_y == edge.top.y) { + return edge.top.x; + } else { + double lower_range_y = static_cast(current_y - edge.bot.y) - 0.5; + double return_val = static_cast(edge.bot.x) + edge.dx * lower_range_y; + T value = round_towards_max(return_val); + return value; + } + } else { + if (current_y == edge.bot.y) { + return edge.bot.x; + } else { + double return_val = static_cast(edge.bot.x) + + edge.dx * (static_cast(current_y - edge.bot.y) + 0.5 - rounding_offset_y); + T value = round_towards_max(return_val); + return value; + } + } +} + +template +void hot_pixel_set_left_to_right(T y, + T start_x, + T end_x, + bound& bnd, + ring_manager& rings, + hot_pixel_itr & itr, + hot_pixel_itr & end, + bool add_end_point) { + T x_min = get_edge_min_x(*(bnd.current_edge), y); + x_min = std::max(x_min, start_x); + T x_max = get_edge_max_x(*(bnd.current_edge), y); + x_max = std::min(x_max, end_x); + for (;itr != end; ++itr) { + if (itr->x < x_min) { + continue; + } + if (itr->x > x_max) { + break; + } + if (!add_end_point && itr->x == end_x) { + continue; + } + point_ptr op = bnd.ring->points; + bool to_front = (bnd.side == edge_left); + if (to_front && (*itr == *op)) { + continue; + } else if (!to_front && (*itr == *op->prev)) { + continue; + } + point_ptr new_point = create_new_point(bnd.ring, *itr, op, rings); + if (to_front) { + bnd.ring->points = new_point; + } + } +} + +template +void hot_pixel_set_right_to_left(T y, + T start_x, + T end_x, + bound& bnd, + ring_manager& rings, + hot_pixel_rev_itr & itr, + hot_pixel_rev_itr & end, + bool add_end_point) { + T x_min = get_edge_min_x(*(bnd.current_edge), y); + x_min = std::max(x_min, end_x); + T x_max = get_edge_max_x(*(bnd.current_edge), y); + x_max = std::min(x_max, start_x); + for (;itr != end; ++itr) { + if (itr->x > x_max) { + continue; + } + if (itr->x < x_min) { + break; + } + if (!add_end_point && itr->x == end_x) { + continue; + } + point_ptr op = bnd.ring->points; + bool to_front = (bnd.side == edge_left); + if (to_front && (*itr == *op)) { + continue; + } else if (!to_front && (*itr == *op->prev)) { + continue; + } + point_ptr new_point = create_new_point(bnd.ring, *itr, op, rings); + if (to_front) { + bnd.ring->points = new_point; + } + } +} + +template +void sort_hot_pixels(ring_manager& rings) { + std::sort(rings.hot_pixels.begin(), rings.hot_pixels.end(), hot_pixel_sorter()); + auto last = std::unique(rings.hot_pixels.begin(), rings.hot_pixels.end()); + rings.hot_pixels.erase(last, rings.hot_pixels.end()); +} + +template +void insert_hot_pixels_in_path(bound& bnd, + mapbox::geometry::point const& end_pt, + ring_manager& rings, + bool add_end_point) { + if (end_pt == bnd.last_point) { + return; + } + if (!bnd.ring) { + bnd.last_point = end_pt; + return; + } + + T start_y = bnd.last_point.y; + T start_x = bnd.last_point.x; + T end_y = end_pt.y; + T end_x = end_pt.x; + + auto itr = rings.current_hp_itr; + while (itr->y <= start_y && itr != rings.hot_pixels.begin()) { + --itr; + } + if (start_x > end_x) { + for (; itr != rings.hot_pixels.end();) { + if (itr->y > start_y) { + ++itr; + continue; + } + if (itr->y < end_y) { + break; + } + T y = itr->y; + auto last_itr = hot_pixel_rev_itr(itr); + while (itr != rings.hot_pixels.end() && itr->y == y) { + ++itr; + } + auto first_itr = hot_pixel_rev_itr(itr); + bool add_end_point_itr = (y != end_pt.y || add_end_point); + hot_pixel_set_right_to_left(y, start_x, end_x, bnd, rings, first_itr, last_itr, + add_end_point_itr); + } + } else { + for (; itr != rings.hot_pixels.end();) { + if (itr->y > start_y) { + ++itr; + continue; + } + if (itr->y < end_y) { + break; + } + T y = itr->y; + auto first_itr = itr; + while (itr != rings.hot_pixels.end() && itr->y == y) { + ++itr; + } + auto last_itr = itr; + bool add_end_point_itr = (y != end_pt.y || add_end_point); + hot_pixel_set_left_to_right(y, start_x, end_x, bnd, rings, first_itr, last_itr, + add_end_point_itr); + } + } + bnd.last_point = end_pt; +} + +template +void add_to_hot_pixels(mapbox::geometry::point const& pt, ring_manager& rings) { + rings.hot_pixels.push_back(pt); +} + +template +void add_first_point(active_bound_list_itr& bnd, + active_bound_list& active_bounds, + mapbox::geometry::point const& pt, + ring_manager& rings) { + + ring_ptr r = create_new_ring(rings); + (*bnd)->ring = r; + r->is_open = ((*bnd)->winding_delta == 0); + r->points = create_new_point(r, pt, rings); + if (!r->is_open) { + set_hole_state(bnd, active_bounds, rings); + } + (*bnd)->last_point = pt; +} + +template +void add_first_point(active_bound_list_rev_itr& bnd, + active_bound_list& active_bounds, + mapbox::geometry::point const& pt, + ring_manager& rings) { + ring_ptr r = create_new_ring(rings); + // no ring currently set! + (*bnd)->ring = r; + r->is_open = ((*bnd)->winding_delta == 0); + r->points = create_new_point(r, pt, rings); + if (!r->is_open) { + set_hole_state(bnd, active_bounds, rings); + } + (*bnd)->last_point = pt; +} + +template +void add_point_to_ring(bound& bnd, + mapbox::geometry::point const& pt, + ring_manager& rings) { + assert(bnd.ring); + // Handle hot pixels + insert_hot_pixels_in_path(bnd, pt, rings, false); + + // bnd.ring->points is the 'Left-most' point & bnd.ring->points->prev is the + // 'Right-most' + point_ptr op = bnd.ring->points; + bool to_front = (bnd.side == edge_left); + if (to_front && (pt == *op)) { + return; + } else if (!to_front && (pt == *op->prev)) { + return; + } + point_ptr new_point = create_new_point(bnd.ring, pt, bnd.ring->points, rings); + if (to_front) { + bnd.ring->points = new_point; + } +} + +template +void add_point(active_bound_list_itr& bnd, + active_bound_list& active_bounds, + mapbox::geometry::point const& pt, + ring_manager& rings) { + if (!(*bnd)->ring) { + add_first_point(bnd, active_bounds, pt, rings); + } else { + add_point_to_ring(*(*bnd), pt, rings); + } +} + +template +void add_point(active_bound_list_rev_itr& bnd, + active_bound_list& active_bounds, + mapbox::geometry::point const& pt, + ring_manager& rings) { + if (!(*bnd)->ring) { + add_first_point(bnd, active_bounds, pt, rings); + } else { + add_point_to_ring(*(*bnd), pt, rings); + } +} + +template +void add_local_minimum_point(active_bound_list_itr b1, + active_bound_list_itr b2, + active_bound_list& active_bounds, + mapbox::geometry::point const& pt, + ring_manager& rings) { + active_bound_list_itr b; + active_bound_list_rev_itr prev_bound; + active_bound_list_rev_itr prev_b1(b1); + active_bound_list_rev_itr prev_b2(b2); + if (is_horizontal(*((*b2)->current_edge)) || + ((*b1)->current_edge->dx > (*b2)->current_edge->dx)) { + add_point(b1, active_bounds, pt, rings); + (*b2)->last_point = pt; + (*b2)->ring = (*b1)->ring; + (*b1)->side = edge_left; + (*b2)->side = edge_right; + b = b1; + if (prev_b1 != active_bounds.rend() && std::prev(b) == b2) { + prev_bound = prev_b2; + } else { + prev_bound = prev_b1; + } + } else { + add_point(b2, active_bounds, pt, rings); + (*b1)->last_point = pt; + (*b1)->ring = (*b2)->ring; + (*b1)->side = edge_right; + (*b2)->side = edge_left; + b = b2; + if (prev_b2 != active_bounds.rend() && std::prev(b) == b1) { + prev_bound = prev_b1; + } else { + prev_bound = prev_b2; + } + } +} + +template +inline double get_dx(point const& pt1, point const& pt2) { + if (pt1.y == pt2.y) { + return std::numeric_limits::infinity(); + } else { + return static_cast(pt2.x - pt2.x) / static_cast(pt2.y - pt1.y); + } +} + +template +bool first_is_bottom_point(const_point_ptr btmPt1, const_point_ptr btmPt2) { + point_ptr p = btmPt1->prev; + while ((*p == *btmPt1) && (p != btmPt1)) { + p = p->prev; + } + double dx1p = std::fabs(get_dx(*btmPt1, *p)); + + p = btmPt1->next; + while ((*p == *btmPt1) && (p != btmPt1)) { + p = p->next; + } + double dx1n = std::fabs(get_dx(*btmPt1, *p)); + + p = btmPt2->prev; + while ((*p == *btmPt2) && (p != btmPt2)) { + p = p->prev; + } + double dx2p = std::fabs(get_dx(*btmPt2, *p)); + + p = btmPt2->next; + while ((*p == *btmPt2) && (p != btmPt2)) { + p = p->next; + } + double dx2n = std::fabs(get_dx(*btmPt2, *p)); + + if (values_are_equal(std::max(dx1p, dx1n), std::max(dx2p, dx2n)) && + values_are_equal(std::min(dx1p, dx1n), std::min(dx2p, dx2n))) { + std::size_t s = 0; + return area_from_point(btmPt1, s) > 0.0; // if otherwise identical use orientation + } else { + return (greater_than_or_equal(dx1p, dx2p) && greater_than_or_equal(dx1p, dx2n)) || + (greater_than_or_equal(dx1n, dx2p) && greater_than_or_equal(dx1n, dx2n)); + } +} + +template +point_ptr get_bottom_point(point_ptr pp) { + point_ptr dups = 0; + point_ptr p = pp->next; + while (p != pp) { + if (p->y > pp->y) { + pp = p; + dups = 0; + } else if (p->y == pp->y && p->x <= pp->x) { + if (p->x < pp->x) { + dups = 0; + pp = p; + } else { + if (p->next != pp && p->prev != pp) { + dups = p; + } + } + } + p = p->next; + } + if (dups) { + // there appears to be at least 2 vertices at bottom_point so ... + while (dups != p) { + if (!first_is_bottom_point(p, dups)) { + pp = dups; + } + dups = dups->next; + while (*dups != *pp) { + dups = dups->next; + } + } + } + return pp; +} + +template +ring_ptr get_lower_most_ring(ring_ptr outRec1, ring_ptr outRec2) { + // work out which polygon fragment has the correct hole state ... + if (!outRec1->bottom_point) { + outRec1->bottom_point = get_bottom_point(outRec1->points); + } + if (!outRec2->bottom_point) { + outRec2->bottom_point = get_bottom_point(outRec2->points); + } + point_ptr OutPt1 = outRec1->bottom_point; + point_ptr OutPt2 = outRec2->bottom_point; + if (OutPt1->y > OutPt2->y) { + return outRec1; + } else if (OutPt1->y < OutPt2->y) { + return outRec2; + } else if (OutPt1->x < OutPt2->x) { + return outRec1; + } else if (OutPt1->x > OutPt2->x) { + return outRec2; + } else if (OutPt1->next == OutPt1) { + return outRec2; + } else if (OutPt2->next == OutPt2) { + return outRec1; + } else if (first_is_bottom_point(OutPt1, OutPt2)) { + return outRec1; + } else { + return outRec2; + } +} + +template +bool ring1_right_of_ring2(ring_ptr ring1, ring_ptr ring2) { + do { + ring1 = ring1->parent; + if (ring1 == ring2) { + return true; + } + } while (ring1); + return false; +} + +template +void update_points_ring(ring_ptr ring) { + point_ptr op = ring->points; + do { + op->ring = ring; + op = op->prev; + } while (op != ring->points); +} + +template +void append_ring(active_bound_list_itr& b1, + active_bound_list_itr& b2, + active_bound_list& active_bounds, + ring_manager& manager) { + // get the start and ends of both output polygons ... + ring_ptr outRec1 = (*b1)->ring; + ring_ptr outRec2 = (*b2)->ring; + + ring_ptr keep_ring; + bound_ptr keep_bound; + ring_ptr remove_ring; + bound_ptr remove_bound; + if (ring1_right_of_ring2(outRec1, outRec2)) { + keep_ring = outRec2; + keep_bound = *b2; + remove_ring = outRec1; + remove_bound = *b1; + } else if (ring1_right_of_ring2(outRec2, outRec1)) { + keep_ring = outRec1; + keep_bound = *b1; + remove_ring = outRec2; + remove_bound = *b2; + } else if (outRec1 == get_lower_most_ring(outRec1, outRec2)) { + keep_ring = outRec1; + keep_bound = *b1; + remove_ring = outRec2; + remove_bound = *b2; + } else { + keep_ring = outRec2; + keep_bound = *b2; + remove_ring = outRec1; + remove_bound = *b1; + } + + // get the start and ends of both output polygons and + // join b2 poly onto b1 poly and delete pointers to b2 ... + + point_ptr p1_lft = keep_ring->points; + point_ptr p1_rt = p1_lft->prev; + point_ptr p2_lft = remove_ring->points; + point_ptr p2_rt = p2_lft->prev; + + // join b2 poly onto b1 poly and delete pointers to b2 ... + if (keep_bound->side == edge_left) { + if (remove_bound->side == edge_left) { + // z y x a b c + reverse_ring(p2_lft); + p2_lft->next = p1_lft; + p1_lft->prev = p2_lft; + p1_rt->next = p2_rt; + p2_rt->prev = p1_rt; + keep_ring->points = p2_rt; + } else { + // x y z a b c + p2_rt->next = p1_lft; + p1_lft->prev = p2_rt; + p2_lft->prev = p1_rt; + p1_rt->next = p2_lft; + keep_ring->points = p2_lft; + } + } else { + if (remove_bound->side == edge_right) { + // a b c z y x + reverse_ring(p2_lft); + p1_rt->next = p2_rt; + p2_rt->prev = p1_rt; + p2_lft->next = p1_lft; + p1_lft->prev = p2_lft; + } else { + // a b c x y z + p1_rt->next = p2_lft; + p2_lft->prev = p1_rt; + p1_lft->prev = p2_rt; + p2_rt->next = p1_lft; + } + } + + keep_ring->bottom_point = nullptr; + bool keep_is_hole = ring_is_hole(keep_ring); + bool remove_is_hole = ring_is_hole(remove_ring); + + remove_ring->points = nullptr; + remove_ring->bottom_point = nullptr; + if (keep_is_hole != remove_is_hole) { + ring1_replaces_ring2(keep_ring->parent, remove_ring, manager); + } else { + ring1_replaces_ring2(keep_ring, remove_ring, manager); + } + + update_points_ring(keep_ring); + + // nb: safe because we only get here via AddLocalMaxPoly + keep_bound->ring = nullptr; + remove_bound->ring = nullptr; + + for (auto& b : active_bounds) { + if (b->ring == remove_ring) { + b->ring = keep_ring; + b->side = keep_bound->side; + break; // Not sure why there is a break here but was transfered logic from angus + } + } +} + +template +void add_local_maximum_point(active_bound_list_itr& b1, + active_bound_list_itr& b2, + mapbox::geometry::point const& pt, + ring_manager& rings, + active_bound_list& active_bounds) { + insert_hot_pixels_in_path(*(*b2), pt, rings, false); + add_point(b1, active_bounds, pt, rings); + if ((*b2)->winding_delta == 0) { + add_point(b2, active_bounds, pt, rings); + } + if ((*b1)->ring == (*b2)->ring) { + (*b1)->ring = nullptr; + (*b2)->ring = nullptr; + // I am not certain that order is important here? + } else if ((*b1)->ring->ring_index < (*b2)->ring->ring_index) { + append_ring(b1, b2, active_bounds, rings); + } else { + append_ring(b2, b1, active_bounds, rings); + } +} + +enum point_in_polygon_result : std::int8_t { + point_on_polygon = -1, + point_inside_polygon = 0, + point_outside_polygon = 1 +}; + +template +point_in_polygon_result point_in_polygon(point const& pt, point_ptr op) { + // returns 0 if false, +1 if true, -1 if pt ON polygon boundary + point_in_polygon_result result = point_outside_polygon; + point_ptr startOp = op; + do { + if (op->next->y == pt.y) { + if ((op->next->x == pt.x) || + (op->y == pt.y && ((op->next->x > pt.x) == (op->x < pt.x)))) { + return point_on_polygon; + } + } + if ((op->y < pt.y) != (op->next->y < pt.y)) { + if (op->x >= pt.x) { + if (op->next->x > pt.x) { + // Switch between point outside polygon and point inside + // polygon + if (result == point_outside_polygon) { + result = point_inside_polygon; + } else { + result = point_outside_polygon; + } + } else { + double d = + static_cast(op->x - pt.x) * + static_cast(op->next->y - pt.y) - + static_cast(op->next->x - pt.x) * static_cast(op->y - pt.y); + if (value_is_zero(d)) { + return point_on_polygon; + } + if ((d > 0) == (op->next->y > op->y)) { + // Switch between point outside polygon and point inside + // polygon + if (result == point_outside_polygon) { + result = point_inside_polygon; + } else { + result = point_outside_polygon; + } + } + } + } else { + if (op->next->x > pt.x) { + double d = + static_cast(op->x - pt.x) * + static_cast(op->next->y - pt.y) - + static_cast(op->next->x - pt.x) * static_cast(op->y - pt.y); + if (value_is_zero(d)) { + return point_on_polygon; + } + if ((d > 0) == (op->next->y > op->y)) { + // Switch between point outside polygon and point inside + // polygon + if (result == point_outside_polygon) { + result = point_inside_polygon; + } else { + result = point_outside_polygon; + } + } + } + } + } + op = op->next; + } while (startOp != op); + return result; +} + +template +point_in_polygon_result point_in_polygon(mapbox::geometry::point const& pt, + point_ptr op) { + // returns 0 if false, +1 if true, -1 if pt ON polygon boundary + point_in_polygon_result result = point_outside_polygon; + point_ptr startOp = op; + do { + double op_x = static_cast(op->x); + double op_y = static_cast(op->y); + double op_next_x = static_cast(op->next->x); + double op_next_y = static_cast(op->next->y); + if (values_are_equal(op_next_y, pt.y)) { + if (values_are_equal(op_next_x, pt.x) || + (values_are_equal(op_y, pt.y) && ((op_next_x > pt.x) == (op_x < pt.x)))) { + return point_on_polygon; + } + } + if ((op_y < pt.y) != (op_next_y < pt.y)) { + if (greater_than_or_equal(op_x, pt.x)) { + if (op_next_x > pt.x) { + // Switch between point outside polygon and point inside + // polygon + if (result == point_outside_polygon) { + result = point_inside_polygon; + } else { + result = point_outside_polygon; + } + } else { + double d = + (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); + if (value_is_zero(d)) { + return point_on_polygon; + } + if ((d > 0.0) == (op_next_y > op->y)) { + // Switch between point outside polygon and point inside + // polygon + if (result == point_outside_polygon) { + result = point_inside_polygon; + } else { + result = point_outside_polygon; + } + } + } + } else { + if (op_next_x > pt.x) { + double d = + (op_x - pt.x) * (op_next_y - pt.y) - (op_next_x - pt.x) * (op_y - pt.y); + if (value_is_zero(d)) { + return point_on_polygon; + } + if ((d > 0.0) == (op_next_y > op->y)) { + // Switch between point outside polygon and point inside + // polygon + if (result == point_outside_polygon) { + result = point_inside_polygon; + } else { + result = point_outside_polygon; + } + } + } + } + } + op = op->next; + } while (startOp != op); + return result; +} + +template +point_in_polygon_result inside_or_outside_special(point_ptr first_pt, point_ptr other_poly) { + + if (value_is_zero(area(first_pt->ring))) { + return point_inside_polygon; + } + if (value_is_zero(area(other_poly->ring))) { + return point_outside_polygon; + } + point_ptr pt = first_pt; + do { + if (*pt == *(pt->prev) || *pt == *(pt->next) || *(pt->next) == *(pt->prev) || + slopes_equal(*(pt->prev), *pt, *(pt->next))) { + pt = pt->next; + continue; + } + double dx = ((pt->prev->x - pt->x) / 3.0) + ((pt->next->x - pt->x) / 3.0); + double dy = ((pt->prev->y - pt->y) / 3.0) + ((pt->next->y - pt->y) / 3.0); + mapbox::geometry::point offset_pt(pt->x + dx, pt->y + dy); + point_in_polygon_result res = point_in_polygon(offset_pt, pt); + if (res != point_inside_polygon) { + offset_pt.x = pt->x - dx; + offset_pt.y = pt->y - dy; + res = point_in_polygon(offset_pt, pt); + if (res != point_inside_polygon) { + pt = pt->next; + continue; + } + } + res = point_in_polygon(offset_pt, other_poly); + if (res == point_on_polygon) { + pt = pt->next; + continue; + } + return res; + } while (pt != first_pt); + return point_inside_polygon; +} + +template +bool poly2_contains_poly1(point_ptr outpt1, point_ptr outpt2) { + point_ptr op = outpt1; + do { + // nb: PointInPolygon returns 0 if false, +1 if true, -1 if pt on polygon + point_in_polygon_result res = point_in_polygon(*op, outpt2); + if (res != point_on_polygon) { + return res == point_inside_polygon; + } + op = op->next; + } while (op != outpt1); + point_in_polygon_result res = inside_or_outside_special(outpt1, outpt2); + return res == point_inside_polygon; +} + +template +void dispose_out_points(point_ptr& pp) { + if (pp == nullptr) { + return; + } + pp->prev->next = nullptr; + while (pp) { + point_ptr tmpPp = pp; + pp = pp->next; + tmpPp->next = tmpPp; + tmpPp->prev = tmpPp; + tmpPp->ring = nullptr; + // delete tmpPp; + } +} +} +} +} diff --git a/mapbox/geometry/wagyu/scanbeam.hpp b/mapbox/geometry/wagyu/scanbeam.hpp new file mode 100644 index 0000000..a3bf8f7 --- /dev/null +++ b/mapbox/geometry/wagyu/scanbeam.hpp @@ -0,0 +1,37 @@ +#pragma once + +#include + +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +using scanbeam_list = std::priority_queue; + +template +bool pop_from_scanbeam(T& Y, scanbeam_list& scanbeam) { + if (scanbeam.empty()) { + return false; + } + Y = scanbeam.top(); + scanbeam.pop(); + while (!scanbeam.empty() && Y == scanbeam.top()) { + scanbeam.pop(); + } // Pop duplicates. + return true; +} + +template +void setup_scanbeam(local_minimum_list& minima_list, scanbeam_list& scanbeam) { + + for (auto lm = minima_list.begin(); lm != minima_list.end(); ++lm) { + scanbeam.push(lm->y); + } +} +} +} +} diff --git a/mapbox/geometry/wagyu/snap_rounding.hpp b/mapbox/geometry/wagyu/snap_rounding.hpp new file mode 100644 index 0000000..fc65d27 --- /dev/null +++ b/mapbox/geometry/wagyu/snap_rounding.hpp @@ -0,0 +1,174 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +void process_hot_pixel_intersections(T top_y, + active_bound_list& active_bounds, + ring_manager& rings) { + if (active_bounds.empty()) { + return; + } + + update_current_x(active_bounds, top_y); + // bubblesort ... + bool isModified; + do { + isModified = false; + auto bnd = active_bounds.begin(); + auto bnd_next = std::next(bnd); + while (bnd_next != active_bounds.end()) { + if ((*bnd)->current_x > (*bnd_next)->current_x && !slopes_equal(*(*bnd)->current_edge, *(*bnd_next)->current_edge)) { + mapbox::geometry::point pt; + if (!get_edge_intersection(*((*bnd)->current_edge), + *((*bnd_next)->current_edge), pt)) { + throw std::runtime_error("Edges do not intersect!"); + } + add_to_hot_pixels(round_point(pt), rings); + swap_positions_in_ABL(bnd, bnd_next, active_bounds); + bnd_next = std::next(bnd); + isModified = true; + } else { + bnd = bnd_next; + ++bnd_next; + } + } + } while (isModified); +} + +template +void process_hot_pixel_edges_at_top_of_scanbeam(T top_y, + scanbeam_list& scanbeam, + active_bound_list& active_bounds, + ring_manager& rings) { + for (auto bnd = active_bounds.begin(); bnd != active_bounds.end();) { + auto bnd_2 = std::next(bnd); + while ((*bnd)->current_edge != (*bnd)->edges.end() && (*bnd)->current_edge->top.y == top_y) { + add_to_hot_pixels((*bnd)->current_edge->top, rings); + if (current_edge_is_horizontal(bnd)) { + (*bnd)->current_x = static_cast((*bnd)->current_edge->top.x); + if ((*bnd)->current_edge->bot.x < (*bnd)->current_edge->top.x) { + // left to right + auto bnd_next = std::next(bnd); + while (bnd_next != active_bounds.end() && (*bnd_next)->current_x < (*bnd)->current_x) { + if (std::llround((*bnd_next)->current_edge->top.y) != top_y && std::llround((*bnd_next)->current_edge->bot.y) != top_y) { + mapbox::geometry::point pt(std::llround((*bnd_next)->current_x), top_y); + add_to_hot_pixels(pt, rings); + } + swap_positions_in_ABL(bnd, bnd_next, active_bounds); + bnd_next = std::next(bnd); + } + } else { + // right to left + if (bnd != active_bounds.begin()) { + auto bnd_prev = std::prev(bnd); + while (bnd != active_bounds.begin() && (*bnd_prev)->current_x > (*bnd)->current_x) { + if (std::llround((*bnd_prev)->current_edge->top.y) != top_y && std::llround((*bnd_prev)->current_edge->bot.y) != top_y) { + mapbox::geometry::point pt(std::llround((*bnd_prev)->current_x), top_y); + add_to_hot_pixels(pt, rings); + } + swap_positions_in_ABL(bnd, bnd_prev, active_bounds); + bnd_prev = std::prev(bnd); + } + } + } + } + next_edge_in_bound(bnd, scanbeam); + } + if ((*bnd)->current_edge == (*bnd)->edges.end()) { + active_bounds.erase(bnd); + } + bnd = bnd_2; + } +} + +template +void insert_local_minima_into_ABL_hot_pixel(T top_y, + local_minimum_ptr_list & minima_sorted, + local_minimum_ptr_list_itr & lm, + active_bound_list& active_bounds, + ring_manager& rings, + scanbeam_list& scanbeam) { + while (lm != minima_sorted.end() && (*lm)->y == top_y) { + if ((*lm)->left_bound.edges.empty() || (*lm)->right_bound.edges.empty()) { + ++lm; + continue; + } + + add_to_hot_pixels((*lm)->left_bound.edges.front().bot, rings); + auto& left_bound = (*lm)->left_bound; + left_bound.current_edge = left_bound.edges.begin(); + left_bound.current_x = static_cast(left_bound.current_edge->bot.x); + auto lb_abl_itr = insert_bound_into_ABL(left_bound, active_bounds); + if (!current_edge_is_horizontal(lb_abl_itr)) { + scanbeam.push((*lb_abl_itr)->current_edge->top.y); + } + auto& right_bound = (*lm)->right_bound; + right_bound.current_edge = right_bound.edges.begin(); + right_bound.current_x = static_cast(right_bound.current_edge->bot.x); + auto rb_abl_itr = insert_bound_into_ABL(right_bound, lb_abl_itr, active_bounds); + if (!current_edge_is_horizontal(rb_abl_itr)) { + scanbeam.push((*rb_abl_itr)->current_edge->top.y); + } + ++lm; + } +} + +template +void build_hot_pixels(local_minimum_list& minima_list, + ring_manager& rings) { + if (minima_list.empty()) { + return; + } + + active_bound_list active_bounds; + scanbeam_list scanbeam; + T scanline_y = std::numeric_limits::max(); + + local_minimum_ptr_list minima_sorted; + minima_sorted.reserve(minima_list.size()); + for (auto& lm : minima_list) { + minima_sorted.push_back(&lm); + } + std::stable_sort(minima_sorted.begin(), minima_sorted.end(), local_minimum_sorter()); + local_minimum_ptr_list_itr current_lm = minima_sorted.begin(); + + setup_scanbeam(minima_list, scanbeam); + + // Estimate size for reserving hot pixels + std::size_t reserve = 0; + for (auto & lm : minima_list) { + reserve += lm.left_bound.edges.size() + 2; + reserve += lm.right_bound.edges.size() + 2; + } + rings.hot_pixels.reserve(reserve); + + while (pop_from_scanbeam(scanline_y, scanbeam) || current_lm != minima_sorted.end()) { + + process_hot_pixel_intersections(scanline_y, active_bounds, rings); + + insert_local_minima_into_ABL_hot_pixel(scanline_y, minima_sorted, current_lm, active_bounds, + rings, scanbeam); + + process_hot_pixel_edges_at_top_of_scanbeam(scanline_y, scanbeam, active_bounds, rings); + + } + preallocate_point_memory(rings, rings.hot_pixels.size()); + sort_hot_pixels(rings); +} + +} +} +} diff --git a/mapbox/geometry/wagyu/topology_correction.hpp b/mapbox/geometry/wagyu/topology_correction.hpp new file mode 100644 index 0000000..d65e1ff --- /dev/null +++ b/mapbox/geometry/wagyu/topology_correction.hpp @@ -0,0 +1,1932 @@ +#pragma once + +#define _USE_MATH_DEFINES +#include + +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#ifdef DEBUG +#include +#endif + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +struct point_ptr_pair { + point_ptr op1; + point_ptr op2; + + constexpr point_ptr_pair(point_ptr o1, point_ptr o2) + : op1(o1), + op2(o2) {} + + point_ptr_pair(point_ptr_pair const& p) = default; + + point_ptr_pair(point_ptr_pair && p) + : op1(std::move(p.op1)), + op2(std::move(p.op2)) {} + + point_ptr_pair& operator=(point_ptr_pair && p) { + op1 = std::move(p.op1); + op2 = std::move(p.op2); + return *this; + } + +}; + +#ifdef DEBUG + +template +inline std::basic_ostream& +operator<<(std::basic_ostream& out, + const std::unordered_multimap, point_ptr_pair>& dupe_ring) { + + out << " BEGIN CONNECTIONS: " << std::endl; + for (auto& r : dupe_ring) { + out << " Ring: "; + if (r.second.op1->ring) { + out << r.second.op1->ring->ring_index; + } else { + out << "---"; + } + out << " to "; + if (r.second.op2->ring) { + out << r.second.op2->ring->ring_index; + } else { + out << "---"; + } + out << " ( at " << r.second.op1->x << ", " << r.second.op1->y << " )"; + out << " Ring1 ( "; + if (r.second.op1->ring) { + out << "area: " << r.second.op1->ring->area << " parent: "; + if (r.second.op1->ring->parent) { + out << r.second.op1->ring->parent->ring_index; + } else { + out << "---"; + } + } else { + out << "---"; + } + out << " )"; + out << " Ring2 ( "; + if (r.second.op2->ring) { + out << "area: " << r.second.op2->ring->area << " parent: "; + if (r.second.op2->ring->parent) { + out << r.second.op2->ring->parent->ring_index; + } else { + out << "---"; + } + } else { + out << "---"; + } + out << " )"; + out << std::endl; + } + out << " END CONNECTIONS: " << std::endl; + return out; +} + +#endif + +template +bool find_intersect_loop(std::unordered_multimap, point_ptr_pair>& dupe_ring, + std::list, point_ptr_pair>>& iList, + ring_ptr ring_parent, + ring_ptr ring_origin, + ring_ptr ring_search, + std::set>& visited, + point_ptr orig_pt, + point_ptr prev_pt, + ring_manager& rings) { + { + auto range = dupe_ring.equal_range(ring_search); + // Check for direct connection + for (auto& it = range.first; it != range.second;) { + ring_ptr it_ring1 = it->second.op1->ring; + ring_ptr it_ring2 = it->second.op2->ring; + if (!it_ring1 || !it_ring2 || it_ring1 != ring_search || + (!ring_is_hole(it_ring1) && !ring_is_hole(it_ring2))) { + it = dupe_ring.erase(it); + continue; + } + if (it_ring2 == ring_origin && + (ring_parent == it_ring2 || ring_parent == it_ring2->parent) && + *prev_pt != *it->second.op2 && *orig_pt != *it->second.op2) { + iList.emplace_front(ring_search, it->second); + return true; + } + ++it; + } + } + auto range = dupe_ring.equal_range(ring_search); + visited.insert(ring_search); + // Check for connection through chain of other intersections + for (auto& it = range.first; + it != range.second && it != dupe_ring.end() && it->first == ring_search; ++it) { + ring_ptr it_ring = it->second.op2->ring; + if (visited.count(it_ring) > 0 || it_ring == nullptr || + (ring_parent != it_ring && ring_parent != it_ring->parent) || + value_is_zero(area(it_ring)) || *prev_pt == *it->second.op2) { + continue; + } + if (find_intersect_loop(dupe_ring, iList, ring_parent, ring_origin, it_ring, visited, + orig_pt, it->second.op2, rings)) { + iList.emplace_front(ring_search, it->second); + return true; + } + } + return false; +} + +template +void remove_spikes(point_ptr& pt) { + ring_ptr r = pt->ring; + while (true) { + if (pt->next == pt) { + r->points = nullptr; + r->area = std::numeric_limits::quiet_NaN(); + pt->ring = nullptr; + pt = nullptr; + break; + } else if (*(pt) == *(pt->next)) { + point_ptr old_next = pt->next; + old_next->next->prev = pt; + pt->next = old_next->next; + old_next->next = old_next; + old_next->prev = old_next; + if (r->points == old_next) { + r->points = pt; + } + r->area = std::numeric_limits::quiet_NaN(); + old_next->ring = nullptr; + } else if (*(pt) == *(pt->prev)) { + point_ptr old_prev = pt->prev; + old_prev->prev->next = pt; + pt->prev = old_prev->prev; + old_prev->next = old_prev; + old_prev->prev = old_prev; + if (r->points == old_prev) { + r->points = pt; + } + r->area = std::numeric_limits::quiet_NaN(); + old_prev->ring = nullptr; + } else if (*(pt->next) == *(pt->prev)) { + point_ptr next = pt->next; + point_ptr prev = pt->prev; + next->prev = prev; + prev->next = next; + if (r->points == pt) { + r->points = prev; + } + r->area = std::numeric_limits::quiet_NaN(); + pt->ring = nullptr; + pt->next = pt; + pt->prev = pt; + pt = next; + } else { + break; + } + } +} + +template +void fixup_children(ring_ptr old_ring, ring_ptr new_ring) { + // Tests if any of the children from the old ring are now children of the new ring + assert(old_ring != new_ring); + for (auto r = old_ring->children.begin(); r != old_ring->children.end();) { + assert((*r)->points); + assert((*r) != old_ring); + if ((*r) != new_ring && !ring1_right_of_ring2(new_ring, (*r)) && + poly2_contains_poly1((*r)->points, new_ring->points)) { + (*r)->parent = new_ring; + new_ring->children.push_back((*r)); + r = old_ring->children.erase(r); + } else { + ++r; + } + } +} + +template +bool fix_intersects(std::unordered_multimap, point_ptr_pair>& dupe_ring, + point_ptr op_j, + point_ptr op_k, + ring_manager& rings, + mapbox::geometry::point& rewind_point) { + ring_ptr ring_j = op_j->ring; + ring_ptr ring_k = op_k->ring; + if (ring_j == ring_k) { + return false; + } + + if (!ring_is_hole(ring_j) && !ring_is_hole(ring_k)) { + // Both are not holes, return nothing to do. + return false; + } + + ring_ptr ring_origin; + ring_ptr ring_search; + ring_ptr ring_parent; + point_ptr op_origin_1; + point_ptr op_origin_2; + if (!ring_is_hole(ring_j)) { + ring_origin = ring_j; + ring_parent = ring_origin; + ring_search = ring_k; + op_origin_1 = op_j; + op_origin_2 = op_k; + } else if (!ring_is_hole(ring_k)) { + ring_origin = ring_k; + ring_parent = ring_origin; + ring_search = ring_j; + op_origin_1 = op_k; + op_origin_2 = op_j; + + } else { + // both are holes + // Order doesn't matter + ring_origin = ring_j; + ring_parent = ring_origin->parent; + ring_search = ring_k; + op_origin_1 = op_j; + op_origin_2 = op_k; + } + if (ring_parent != ring_search->parent) { + // The two holes do not have the same parent, do not add them + // simply return! + if (ring_parent->parent != ring_search && + poly2_contains_poly1(ring_search->points, ring_parent->points) && + !ring1_right_of_ring2(ring_search, ring_parent)) { + ring_ptr old_parent = ring_search->parent; + ring_search->parent = ring_parent; + old_parent->children.remove(ring_search); + ring_parent->children.push_back(ring_search); + } else { + return false; + } + } + bool found = false; + std::list, point_ptr_pair>> iList; + { + auto range = dupe_ring.equal_range(ring_search); + // Check for direct connection + for (auto& it = range.first; it != range.second;) { + if (!it->second.op1->ring) { + it = dupe_ring.erase(it); + continue; + } + if (!it->second.op2->ring) { + it = dupe_ring.erase(it); + continue; + } + ring_ptr it_ring2 = it->second.op2->ring; + if (it_ring2 == ring_origin) { + found = true; + if (*op_origin_1 != *(it->second.op2)) { + iList.emplace_back(ring_search, it->second); + break; + } + } + ++it; + } + } + if (iList.empty()) { + auto range = dupe_ring.equal_range(ring_search); + std::set> visited; + visited.insert(ring_search); + // Check for connection through chain of other intersections + for (auto& it = range.first; + it != range.second && it != dupe_ring.end() && it->first == ring_search; ++it) { + ring_ptr it_ring = it->second.op2->ring; + if (it_ring != ring_search && *op_origin_2 != *it->second.op2 && it_ring != nullptr && + (ring_parent == it_ring || ring_parent == it_ring->parent) && + !value_is_zero(area(it_ring)) && + find_intersect_loop(dupe_ring, iList, ring_parent, ring_origin, it_ring, visited, + op_origin_2, it->second.op2, rings)) { + found = true; + iList.emplace_front(ring_search, it->second); + break; + } + } + } + if (!found) { + point_ptr_pair intPt_origin = { op_origin_1, op_origin_2 }; + point_ptr_pair intPt_search = { op_origin_2, op_origin_1 }; + dupe_ring.emplace(ring_origin, std::move(intPt_origin)); + dupe_ring.emplace(ring_search, std::move(intPt_search)); + return false; + } + + if (iList.empty()) { + // The situation where both origin and search are holes might have a missing + // search condition, we must check if a new pair must be added. + bool missing = true; + auto rng = dupe_ring.equal_range(ring_origin); + // Check for direct connection + for (auto& it = rng.first; it != rng.second; ++it) { + ring_ptr it_ring2 = it->second.op2->ring; + if (it_ring2 == ring_search) { + missing = false; + } + } + if (missing) { + point_ptr_pair intPt_origin = { op_origin_1, op_origin_2 }; + dupe_ring.emplace(ring_origin, std::move(intPt_origin)); + } + return false; + } + + if (ring_is_hole(ring_origin)) { + for (auto& iRing : iList) { + ring_ptr ring_itr = iRing.first; + if (!ring_is_hole(ring_itr)) { + // Make the hole the origin! + point_ptr op1 = op_origin_1; + op_origin_1 = iRing.second.op1; + iRing.second.op1 = op1; + point_ptr op2 = op_origin_2; + op_origin_2 = iRing.second.op2; + iRing.second.op2 = op2; + iRing.first = ring_origin; + ring_origin = ring_itr; + ring_parent = ring_origin; + break; + } + } + } + + // Switch + point_ptr op_origin_1_next = op_origin_1->next; + point_ptr op_origin_2_next = op_origin_2->next; + op_origin_1->next = op_origin_2_next; + op_origin_2->next = op_origin_1_next; + op_origin_1_next->prev = op_origin_2; + op_origin_2_next->prev = op_origin_1; + + for (auto& iRing : iList) { + mapbox::geometry::point possible_rewind_point = find_rewind_point(iRing.second.op2); + if (possible_rewind_point.y > rewind_point.y || + (possible_rewind_point.y == rewind_point.y && + possible_rewind_point.x < rewind_point.x)) { + rewind_point.x = possible_rewind_point.x; + rewind_point.y = possible_rewind_point.y; + } + } + + for (auto& iRing : iList) { + point_ptr op_search_1 = iRing.second.op1; + point_ptr op_search_2 = iRing.second.op2; + point_ptr op_search_1_next = op_search_1->next; + point_ptr op_search_2_next = op_search_2->next; + op_search_1->next = op_search_2_next; + op_search_2->next = op_search_1_next; + op_search_1_next->prev = op_search_2; + op_search_2_next->prev = op_search_1; + } + + remove_spikes(op_origin_1); + remove_spikes(op_origin_2); + + if (op_origin_1 == nullptr || op_origin_2 == nullptr) { + if (op_origin_1 == nullptr && op_origin_2 == nullptr) { + // Self destruction! + ring_origin->points = nullptr; + ring_origin->area = std::numeric_limits::quiet_NaN(); + remove_ring(ring_origin, rings); + for (auto& iRing : iList) { + ring_ptr ring_itr = iRing.first; + ring_itr->points = nullptr; + ring_itr->area = std::numeric_limits::quiet_NaN(); + remove_ring(ring_itr, rings); + } + } else { + if (op_origin_1 == nullptr) { + ring_origin->points = op_origin_2; + } else { + //(op_origin_2 == nullptr) + ring_origin->points = op_origin_1; + } + ring_origin->area = std::numeric_limits::quiet_NaN(); + update_points_ring(ring_origin); + for (auto& iRing : iList) { + ring_ptr ring_itr = iRing.first; + ring_itr->points = nullptr; + ring_itr->area = std::numeric_limits::quiet_NaN(); + ring_itr->bottom_point = nullptr; + if (ring_is_hole(ring_origin)) { + ring1_replaces_ring2(ring_origin, ring_itr, rings); + } else { + ring1_replaces_ring2(ring_origin->parent, ring_itr, rings); + } + } + } + } else { + ring_ptr ring_new = create_new_ring(rings); + std::size_t size_1 = 0; + std::size_t size_2 = 0; + double area_1 = area_from_point(op_origin_1, size_1); + double area_2 = area_from_point(op_origin_2, size_2); + if (ring_is_hole(ring_origin) && ((area_1 < 0.0))) { + ring_origin->points = op_origin_1; + ring_origin->area = area_1; + ring_origin->size = size_1; + ring_new->points = op_origin_2; + ring_new->area = area_2; + ring_new->size = size_2; + } else { + ring_origin->points = op_origin_2; + ring_origin->area = area_2; + ring_origin->size = size_2; + ring_new->points = op_origin_1; + ring_new->area = area_1; + ring_new->size = size_1; + } + + update_points_ring(ring_origin); + update_points_ring(ring_new); + + ring_origin->bottom_point = nullptr; + + for (auto& iRing : iList) { + ring_ptr ring_itr = iRing.first; + ring_itr->points = nullptr; + ring_itr->area = std::numeric_limits::quiet_NaN(); + ring_itr->bottom_point = nullptr; + if (ring_is_hole(ring_origin)) { + ring1_replaces_ring2(ring_origin, ring_itr, rings); + } else { + ring1_replaces_ring2(ring_origin->parent, ring_itr, rings); + } + } + if (ring_is_hole(ring_origin)) { + ring_new->parent = ring_origin; + ring_new->parent->children.push_back(ring_new); + fixup_children(ring_origin, ring_new); + fixup_children(ring_parent, ring_new); + } else { + ring_new->parent = ring_origin->parent; + if (ring_new->parent == nullptr) { + rings.children.push_back(ring_new); + } else { + ring_new->parent->children.push_back(ring_new); + } + fixup_children(ring_origin, ring_new); + } + } + + std::list, point_ptr_pair>> move_list; + + for (auto& iRing : iList) { + auto range_itr = dupe_ring.equal_range(iRing.first); + if (range_itr.first != range_itr.second) { + for (auto& it = range_itr.first; it != range_itr.second; ++it) { + ring_ptr it_ring = it->second.op1->ring; + ring_ptr it_ring2 = it->second.op2->ring; + if (it_ring == nullptr || it_ring2 == nullptr || it_ring == it_ring2) { + continue; + } + if ((ring_is_hole(it_ring) || ring_is_hole(it_ring2))) { + move_list.emplace_back(it_ring, it->second); + } + } + dupe_ring.erase(iRing.first); + } + } + + auto range_itr = dupe_ring.equal_range(ring_origin); + for (auto& it = range_itr.first; it != range_itr.second;) { + ring_ptr it_ring = it->second.op1->ring; + ring_ptr it_ring2 = it->second.op2->ring; + if (it_ring == nullptr || it_ring2 == nullptr || it_ring == it_ring2) { + it = dupe_ring.erase(it); + continue; + } + if (it_ring != ring_origin) { + if ((ring_is_hole(it_ring) || ring_is_hole(it_ring2))) { + move_list.emplace_back(it_ring, it->second); + } + it = dupe_ring.erase(it); + } else { + if ((ring_is_hole(it_ring) || ring_is_hole(it_ring2))) { + ++it; + } else { + it = dupe_ring.erase(it); + } + } + } + + if (!move_list.empty()) { + dupe_ring.insert(move_list.begin(), move_list.end()); + } + + return true; +} + +template +struct point_ptr_cmp { + inline bool operator()(point_ptr op1, point_ptr op2) { + if (op1->y != op2->y) { + return (op1->y > op2->y); + } else if (op1->x != op2->x) { + return (op1->x < op2->x); + } else { + std::size_t depth_1 = ring_depth(op1->ring); + std::size_t depth_2 = ring_depth(op2->ring); + return depth_1 > depth_2; + } + } +}; + +template +struct point_ptr_depth_cmp { + inline bool operator()(point_ptr op1, point_ptr op2) { + std::size_t depth_1 = ring_depth(op1->ring); + std::size_t depth_2 = ring_depth(op2->ring); + return depth_1 > depth_2; + } +}; + +template +void update_duplicate_point_entries( + ring_ptr ring, std::unordered_multimap, point_ptr_pair>& dupe_ring) { + auto range = dupe_ring.equal_range(ring); + std::list, point_ptr_pair>> move_list; + for (auto& it = range.first; it != range.second;) { + ring_ptr it_ring = it->second.op1->ring; + ring_ptr it_ring_2 = it->second.op2->ring; + if (it_ring == nullptr || it_ring_2 == nullptr) { + it = dupe_ring.erase(it); + continue; + } + if (it_ring != ring) { + if ((ring_is_hole(it_ring) || ring_is_hole(it_ring_2))) { + move_list.emplace_back(it_ring, it->second); + } + it = dupe_ring.erase(it); + } else { + if ((ring_is_hole(it_ring) || ring_is_hole(it_ring_2))) { + ++it; + } else { + it = dupe_ring.erase(it); + } + } + } + if (!move_list.empty()) { + dupe_ring.insert(move_list.begin(), move_list.end()); + } +} + +template +bool parent_in_tree(ring_ptr r, ring_ptr possible_parent) { + + ring_ptr current_ring = r->parent; + while (current_ring != nullptr) { + if (current_ring == possible_parent) { + return true; + } + current_ring = current_ring->parent; + } + return false; +} + +template +void fixup_children_new_interior_ring(ring_ptr old_ring, + ring_ptr new_ring, + ring_manager& rings) { + bool old_ring_area_is_positive = area(old_ring) > 0.0; + // Now we must search the siblings of the old ring + // This is slow, but there is no other way I know of currently + // to solve these problems. + if (old_ring->parent == nullptr) { + for (auto r = rings.children.begin(); r != rings.children.end();) { + assert((*r)->points); + bool ring_area_is_positive = area((*r)) > 0.0; + if ((*r) != new_ring && ring_area_is_positive == old_ring_area_is_positive && + poly2_contains_poly1((*r)->points, new_ring->points)) { + (*r)->parent = new_ring; + new_ring->children.push_back((*r)); + r = rings.children.erase(r); + } else { + ++r; + } + } + } else { + ring_ptr parent = old_ring->parent; + for (auto r = parent->children.begin(); r != parent->children.end();) { + assert((*r)->points); + assert((*r) != parent); + bool ring_area_is_positive = area((*r)) > 0.0; + if ((*r) != new_ring && ring_area_is_positive == old_ring_area_is_positive && + poly2_contains_poly1((*r)->points, new_ring->points)) { + (*r)->parent = new_ring; + new_ring->children.push_back((*r)); + r = parent->children.erase(r); + } else { + ++r; + } + } + } +} + +#ifdef DEBUG + +template +void check_if_intersections_cross(point_ptr p1, point_ptr p2) { + // LCOV_EXCL_START + point_ptr p1_next = p1->next; + point_ptr p2_next = p2->next; + point_ptr p1_prev = p1->prev; + point_ptr p2_prev = p2->prev; + while (*p1_next == *p1) { + if (p1_next == p1) { + return; + } + p1_next = p1_next->next; + } + while (*p2_next == *p2) { + if (p2_next == p2) { + return; + } + p2_next = p2_next->next; + } + while (*p1_prev == *p1) { + if (p1_prev == p1) { + return; + } + p1_prev = p1_prev->prev; + } + while (*p2_prev == *p2) { + if (p2_prev == p2) { + return; + } + p2_prev = p2_prev->prev; + } + double a1_p1 = std::atan2(static_cast(p1_prev->y - p1->y), + static_cast(p1_prev->x - p1->x)); + double a2_p1 = std::atan2(static_cast(p1_next->y - p1->y), + static_cast(p1_next->x - p1->x)); + double a1_p2 = std::atan2(static_cast(p2_prev->y - p2->y), + static_cast(p2_prev->x - p2->x)); + double a2_p2 = std::atan2(static_cast(p2_next->y - p2->y), + static_cast(p2_next->x - p2->x)); + double min_p1 = std::min(a1_p1, a2_p1); + double max_p1 = std::max(a1_p1, a2_p1); + double min_p2 = std::min(a1_p2, a2_p2); + double max_p2 = std::max(a1_p2, a2_p2); + if ((min_p1 < max_p2 && min_p1 > min_p2 && max_p1 > max_p2) || + (min_p2 < max_p1 && min_p2 > min_p1 && max_p2 > max_p1)) { + throw std::runtime_error("Paths are found to be crossing"); + } + // LCOV_EXCL_END +} + +#endif + +template +void handle_self_intersections(point_ptr op, + point_ptr op2, + std::unordered_multimap, point_ptr_pair>& dupe_ring, + ring_manager& rings) { + // Check that are same ring + assert(op->ring == op2->ring); + ring_ptr ring = op->ring; + double original_area = area(ring); + bool original_is_positive = (original_area > 0.0); +#ifdef DEBUG + check_if_intersections_cross(op, op2); +#endif + + // split the polygon into two ... + point_ptr op3 = op->prev; + point_ptr op4 = op2->prev; + op->prev = op4; + op4->next = op; + op2->prev = op3; + op3->next = op2; + + remove_spikes(op); + remove_spikes(op2); + + if (op == nullptr && op2 == nullptr) { + // Self destruction! + // I am not positive that it could ever reach this point -- but leaving + // the logic in here for now. + ring->points = nullptr; + ring->area = std::numeric_limits::quiet_NaN(); + remove_ring(ring, rings); + update_duplicate_point_entries(ring, dupe_ring); + return; + } else if (op == nullptr) { + ring->points = op2; + ring->area = std::numeric_limits::quiet_NaN(); + update_duplicate_point_entries(ring, dupe_ring); + return; + } else if (op2 == nullptr) { + ring->points = op; + ring->area = std::numeric_limits::quiet_NaN(); + update_duplicate_point_entries(ring, dupe_ring); + return; + } + + ring_ptr new_ring = create_new_ring(rings); + std::size_t size_1 = 0; + std::size_t size_2 = 0; + double area_1 = area_from_point(op, size_1); + double area_2 = area_from_point(op2, size_2); + bool area_1_is_positive = (area_1 > 0.0); + bool area_2_is_positive = (area_2 > 0.0); + bool area_1_is_zero = value_is_zero(area_1); + bool area_2_is_zero = value_is_zero(area_2); + + // Situation # 1 - Orientations are NOT the same: + // - One ring contains the other and MUST be a child of that ring + // - The one that changed orientation is the child of the other ring + // + // Situation # 2 - Orientations are the same + // - The rings are now split, such a new ring of the same orientation + // must be created. + // - If the new ring is WITHIN the old ring: + // * It WILL be the child of a hole of that ring (this ring may not yet be created) + // or possible the child of a child of a child of the ring (an so on)... + // - If the new ring is OUTSIDE the old ring: + // * It may contain any of the children of the old ring. + if (area_2_is_zero || area_1_is_zero || area_1_is_positive != area_2_is_positive) { + // Situation #1 - new_ring is contained by ring ... + if (area_2_is_zero || (!area_1_is_zero && area_1_is_positive == original_is_positive)) { + ring->points = op; + ring->area = area_1; + ring->size = size_1; + new_ring->points = op2; + new_ring->area = area_2; + new_ring->size = size_2; + } else { + ring->points = op2; + ring->area = area_2; + ring->size = size_2; + new_ring->points = op; + new_ring->area = area_1; + new_ring->size = size_1; + } + update_points_ring(ring); + update_points_ring(new_ring); + new_ring->parent = ring; + new_ring->parent->children.push_back(new_ring); + fixup_children_new_interior_ring(ring, new_ring, rings); + } else { + // Situation #2 - create new ring + // The largest absolute area is the parent + if (std::fabs(area_1) > std::fabs(area_2)) { + ring->points = op; + ring->area = area_1; + ring->size = size_1; + new_ring->points = op2; + new_ring->area = area_2; + new_ring->size = size_2; + } else { + ring->points = op2; + ring->area = area_2; + ring->size = size_2; + new_ring->points = op; + new_ring->area = area_1; + new_ring->size = size_1; + } + update_points_ring(ring); + update_points_ring(new_ring); + if (poly2_contains_poly1(new_ring->points, ring->points)) { + // This is the situation where there is the new ring is + // created inside the ring. Later on this should be inherited + // as child of a newly created hole. However, we should check existing + // holes of this polygon to see if they might belong inside this polygon. + new_ring->parent = ring; + new_ring->parent->children.push_back(new_ring); + fixup_children(ring, new_ring); + } else { + // Polygons are completely seperate + new_ring->parent = ring->parent; + if (new_ring->parent == nullptr) { + rings.children.push_back(new_ring); + } else { + new_ring->parent->children.push_back(new_ring); + } + fixup_children(ring, new_ring); + } + } + update_duplicate_point_entries(ring, dupe_ring); +} + +template +mapbox::geometry::point find_rewind_point(point_ptr pt) { + mapbox::geometry::point rewind; + rewind.x = pt->x; + rewind.y = pt->y; + point_ptr itr = pt->next; + while (pt != itr) { + if (itr->y > rewind.y || (itr->y == rewind.y && itr->x < rewind.x)) { + rewind.x = itr->x; + rewind.y = itr->y; + } + itr = itr->next; + } + return rewind; +} + +template +bool handle_collinear_edges(point_ptr pt1, + point_ptr pt2, + std::unordered_multimap, point_ptr_pair>& dupe_ring, + ring_manager& rings, + mapbox::geometry::point& rewind_point) { + ring_ptr ring1 = pt1->ring; + ring_ptr ring2 = pt2->ring; + if (ring1 == ring2) { + return false; + } + + bool valid = (ring1 != ring2 && (ring1->parent == ring2->parent || ring2->parent == ring1 || + ring1->parent == ring2)); + if (!valid) { + return false; + } + + if (*(pt1->next) != *(pt2->prev) && *(pt2->next) != *(pt1->prev)) { + return false; + } + + if (ring1->parent == ring2) { + // switch ring1 and ring2 + std::swap(pt1, pt2); + std::swap(ring1, ring2); + } + + mapbox::geometry::point rewind_1 = find_rewind_point(pt1); + mapbox::geometry::point rewind_2 = find_rewind_point(pt2); + + // The lower right of the two points is the rewind point. + mapbox::geometry::point possible_rewind; + if (rewind_1.y > rewind_2.y) { + possible_rewind = rewind_2; + } else if (rewind_1.y < rewind_2.y) { + possible_rewind = rewind_1; + } else if (rewind_1.x > rewind_2.x) { + possible_rewind = rewind_1; + } else { + possible_rewind = rewind_2; + } + if (possible_rewind.y > rewind_point.y || + (possible_rewind.y == rewind_point.y && possible_rewind.x < rewind_point.x)) { + rewind_point.x = possible_rewind.x; + rewind_point.y = possible_rewind.y; + } + + // swap points + point_ptr pt3 = pt1->prev; + point_ptr pt4 = pt2->prev; + pt1->prev = pt4; + pt4->next = pt1; + pt2->prev = pt3; + pt3->next = pt2; + + // remove spikes + remove_spikes(pt1); + if (!pt1) { + // rings self destructed + ring1->points = nullptr; + ring1->area = std::numeric_limits::quiet_NaN(); + remove_ring(ring1, rings); + ring2->points = nullptr; + ring2->area = std::numeric_limits::quiet_NaN(); + remove_ring(ring2, rings); + return false; + } + if (pt2->ring) { + remove_spikes(pt2); + if (!pt2) { + // rings self destructed + // Not sure this logic is reachable, but leaving it in for now. + ring1->points = nullptr; + ring1->area = std::numeric_limits::quiet_NaN(); + remove_ring(ring1, rings); + ring2->points = nullptr; + ring2->area = std::numeric_limits::quiet_NaN(); + remove_ring(ring2, rings); + return false; + } + // We could have removed pt1 during this process.. + // if we did we need to reassign pt2 to pt1 + if (!pt1->ring) { + pt1 = pt2; + } + } + ring1->points = pt1; + ring2->points = nullptr; + ring1->area = std::numeric_limits::quiet_NaN(); + ring2->area = std::numeric_limits::quiet_NaN(); + if (ring2->parent == ring1) { + ring1_replaces_ring2(ring1->parent, ring2, rings); + } else { + ring1_replaces_ring2(ring1, ring2, rings); + } + update_points_ring(ring1); + update_duplicate_point_entries(ring2, dupe_ring); + + return true; +} + +template +bool point_2_is_between_point_1_and_point_3(point_ptr pt1, point_ptr pt2, point_ptr pt3) { + if ((*pt1 == *pt3) || (*pt1 == *pt2) || (*pt3 == *pt2)) { + return false; + } else if (pt1->x != pt3->x) { + return (pt2->x > pt1->x) == (pt2->x < pt3->x); + } else { + return (pt2->y > pt1->y) == (pt2->y < pt3->y); + } +} + +enum orientation_type : std::uint8_t { + orientation_collinear_spike = 0, + orientation_clockwise, + orientation_collinear_line, + orientation_counter_clockwise +}; + +// To find orientation of ordered triplet (p, q, r) +// Orientation between q and r with respect to p. +template +inline orientation_type orientation_of_points(point_ptr p, point_ptr q, point_ptr r) { + T val = (q->y - p->y) * (r->x - q->x) - (q->x - p->x) * (r->y - q->y); + if (val == 0) { + if (point_2_is_between_point_1_and_point_3(q, p, r)) { + return orientation_collinear_line; + } else { + return orientation_collinear_spike; + } + } + return (val > 0) ? orientation_clockwise : orientation_counter_clockwise; +} + +// Self intersection point vector +template +using si_point_vector = std::vector, bool>>; + +#ifdef DEBUG + +template +std::string output_si_angles(point_ptr pt) { + // LCOV_EXCL_START + std::ostringstream out; + double prev_angle = std::atan2(static_cast(pt->prev->y - pt->y), + static_cast(pt->prev->x - pt->x)); + prev_angle = (180.0 / M_PI) * prev_angle; + if (prev_angle < 0.0) { + prev_angle += 360.0; + } + double next_angle = std::atan2(static_cast(pt->next->y - pt->y), + static_cast(pt->next->x - pt->x)); + next_angle = (180.0 / M_PI) * next_angle; + if (next_angle < 0.0) { + next_angle += 360.0; + } + out << " angles: " << prev_angle << " , " << next_angle; + out << " - [[" << pt->prev->x << "," << pt->prev->y << "],["; + out << pt->x << "," << pt->y << "],["; + out << pt->next->x << "," << pt->next->y << "]]"; + return out.str(); + // LCOV_EXCL_END +} + +template +std::string output_compare_si_angles(point_ptr pt, point_ptr compare) { + std::ostringstream out; + double cmp_prev_angle = std::atan2(static_cast(compare->prev->y - compare->y), + static_cast(compare->prev->x - compare->x)); + double prev_angle = std::atan2(static_cast(pt->prev->y - pt->y), + static_cast(pt->prev->x - pt->x)); + prev_angle = (180.0 / M_PI) * prev_angle; + if (prev_angle < 0.0) { + prev_angle += 360.0; + } + cmp_prev_angle = (180.0 / M_PI) * cmp_prev_angle; + if (cmp_prev_angle < 0.0) { + cmp_prev_angle += 360.0; + } + double cmp_next_angle = std::atan2(static_cast(compare->next->y - compare->y), + static_cast(compare->next->x - compare->x)); + double next_angle = std::atan2(static_cast(pt->next->y - pt->y), + static_cast(pt->next->x - pt->x)); + next_angle = (180.0 / M_PI) * next_angle; + if (next_angle < 0.0) { + next_angle += 360.0; + } + cmp_next_angle = (180.0 / M_PI) * cmp_next_angle; + if (cmp_next_angle < 0.0) { + cmp_next_angle += 360.0; + } + out << " compared to prev: " << prev_angle - cmp_prev_angle << ", " + << next_angle - cmp_prev_angle << std::endl; + out << " compared to next: " << prev_angle - cmp_next_angle << ", " + << next_angle - cmp_next_angle << std::endl; + return out.str(); +} + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const si_point_vector& pts) { + out << "Self Intersection Point Vector:" << std::endl; + for (auto& pt : pts) { + out << output_si_angles(pt.first); + if (pt.second) { + out << " - clockwise" << std::endl; + } else { + out << " - counter clockwise" << std::endl; + } + } + return out; +} + +template +inline std::basic_ostream& operator<<(std::basic_ostream& out, + const orientation_type& ot) { + switch (ot) { + case orientation_collinear_spike: + out << "collinear - spike"; + break; + case orientation_clockwise: + out << "clockwise"; + break; + case orientation_collinear_line: + out << "collinear - line"; + break; + case orientation_counter_clockwise: + out << "counter clockwise"; + break; + }; + return out; +} + +#endif + +template +bool clockwise_of_next(point_ptr const& origin, point_ptr pt) { + + // Determine if the prev and next of pt is either clockwise of next from + // origin (and therefore ccw of previous) or if it is ccw of next and clockwise + // of previous + + // First inspect orientation of points, keep in mind this is the orientations of + // the three points + orientation_type ot_origin = orientation_of_points(origin, origin->next, origin->prev); + if (ot_origin == orientation_collinear_spike) { + return true; + } else if (ot_origin == orientation_clockwise) { + orientation_type ot_prev_next = orientation_of_points(origin, origin->next, pt->prev); + if (ot_prev_next == orientation_collinear_spike) { + orientation_type ot_next_next = orientation_of_points(origin, origin->next, pt->next); + if (ot_next_next == orientation_collinear_spike) { + // Pt forms a spike on origin next + // so lets assume it is CW. + // I am not sure that we would ever encounter a spike so this will + // be missing from coverage, but left in code. + return true; + } else if (ot_next_next == orientation_clockwise) { + // We need to check which is after "origin->next" traveling + // clockwise -- origin->prev or pt->next + orientation_type ot_next_prev = + orientation_of_points(origin, origin->prev, pt->next); + if (ot_next_prev == orientation_collinear_spike) { + // Both origin and pt follow the same paths. + // so we will call this clockwise + return true; + } else if (ot_next_prev == orientation_clockwise) { + // pt->next is clockwise of prev + return false; + } else if (ot_next_prev == orientation_collinear_line) { + // This shouldn't happen + // LCOV_EXCL_START + throw std::runtime_error("Impossible situation reached in clockwise_of_next"); + // LCOV_EXCL_END + } else { + // Pt next is counter clockwise of origin prev + return true; + } + } else { + // ot_next_next == orientation_collinear_line + // ot_next_next == orientation_counter_clockwise + return false; + } + } else if (ot_prev_next == orientation_clockwise) { + // We need to check which is after "origin->next" traveling + // clockwise -- origin->prev or pt->prev + orientation_type ot_prev_prev = orientation_of_points(origin, origin->prev, pt->prev); + if (ot_prev_prev == orientation_clockwise || + ot_prev_prev == orientation_collinear_spike) { + // pt->prev is before this, so.. between the two. + return false; + } else { + // ot_prev_prev == orientation_clockwise + // ot_prev_prev == orientation_collinear_line + return true; + } + } else { + // ot_prev_next == orientation_collinear_line + // ot_prev_next == orientation_counter_clockwise + return false; + } + } else if (ot_origin == orientation_collinear_line) { + orientation_type ot_prev_next = orientation_of_points(origin, origin->next, pt->prev); + if (ot_prev_next == orientation_collinear_spike || + ot_prev_next == orientation_collinear_line) { + // prev and next on top of each other + orientation_type ot_next_next = orientation_of_points(origin, origin->next, pt->next); + if (ot_next_next == orientation_counter_clockwise) { + return false; + } else { + // ot_next_next == orientation_collinear_spike + // ot_next_next == orientation_clockwise + // ot_next_next == orientation_collinear_line + return true; + } + } else if (ot_prev_next == orientation_clockwise) { + return true; + } else { + // ot_prev_next == orientation_counter_clockwise + return false; + } + } else { + // orientation_counter_clockwise + orientation_type ot_prev_next = orientation_of_points(origin, origin->next, pt->prev); + if (ot_prev_next == orientation_collinear_spike) { + orientation_type ot_next_next = orientation_of_points(origin, origin->next, pt->next); + if (ot_next_next == orientation_collinear_spike) { + // Pt forms a spike on origin next + // so lets assume it is CW. + // I am not sure that we would ever encounter a spike so this will + // be missing from coverage, but left in code. + return true; + } else if (ot_next_next == orientation_counter_clockwise) { + // We need to check which is after "origin->next" traveling + // counter clockwise -- origin->prev or pt->next + orientation_type ot_next_prev = + orientation_of_points(origin, origin->prev, pt->next); + if (ot_next_prev == orientation_collinear_spike) { + // Both origin and pt follow the same paths. + // so we will call this clockwise + return true; + } else if (ot_next_prev == orientation_clockwise) { + // pt->next is clockwise of prev + return false; + } else if (ot_next_prev == orientation_collinear_line) { + // This shouldn't happen? + // LCOV_EXCL_START + throw std::runtime_error("Impossible situation reached in clockwise_of_next - 2"); + // LCOV_EXCL_END + } else { + // Pt next is counter clockwise of origin prev + return true; + } + } else { + // ot_next_next == orientation_clockwise + // ot_next_next == orientation_collinear_line + return true; + } + } else if (ot_prev_next == orientation_counter_clockwise) { + // We need to check which is after "origin->next" traveling + // counter clockwise -- origin->prev or pt->prev + orientation_type ot_prev_prev = orientation_of_points(origin, origin->prev, pt->prev); + if (ot_prev_prev == orientation_clockwise || + ot_prev_prev == orientation_collinear_spike) { + // pt->prev is before this, so.. between the two. + return false; + } else { + // ot_prev_prev == orientation_counter_clockwise + // ot_prev_prev == orientation_collinear_line + return true; + } + } else { + // ot_prev_next == orientation_collinear_line + // ot_prev_next == orientation_clockwise + return true; + } + } +} + +template +inline bool cw_p1p2_prev_collinear_spike(point_ptr const& origin, + point_ptr const& next, + point_ptr const& p1, + point_ptr const& p2) { + + // we must compare the nexts to determine the order between the two. + orientation_type ot_p1_next = orientation_of_points(origin, next, p1->next); + orientation_type ot_p2_next = orientation_of_points(origin, next, p2->next); + if (ot_p1_next == orientation_collinear_spike) { + // p1 is a spike on origin next + if (ot_p2_next == orientation_collinear_spike) { + // I am not sure that a spike will ever occur at this point in the processing! + return true; + } else { + return false; + } + } else if (ot_p1_next == orientation_clockwise) { + if (ot_p2_next == orientation_collinear_spike) { + return true; + } else if (ot_p2_next == orientation_clockwise) { + // Both are clockwise we have to compare. + orientation_type ot = orientation_of_points(origin, p1->next, p2->next); + if (ot == orientation_collinear_spike) { + return true; + } else if (ot == orientation_clockwise) { + return false; + } else if (ot == orientation_collinear_line) { + return false; + } else { + return true; + } + } else { + // ot_p2_next == orienation_collinear_line + // ot_p2_next == orienation_counter_clockwise + return false; + } + } else if (ot_p1_next == orientation_collinear_line) { + if (ot_p2_next == orientation_counter_clockwise) { + return false; + } else { + // ot_p2_next == orienation_collinear_spike + // ot_p2_next == orienation_clockwise + // ot_p2_next == orienation_collinear_line + return true; + } + } else { + // ot_p1_next == orientation_counter_clockwise + if (ot_p2_next == orientation_counter_clockwise) { + // Both are counter clockwise we have to compare. + orientation_type ot = orientation_of_points(origin, p1->next, p2->next); + if (ot == orientation_collinear_spike) { + return true; + } else if (ot == orientation_clockwise) { + return false; + } else if (ot == orientation_collinear_line) { + return false; + } else { + return true; + } + } else { + // ot_p2_next == orienation_collinear_spike + // ot_p2_next == orienation_clockwise + // ot_p2_next == orienation_collinear_line + return true; + } + } +} + +template +inline bool ccw_p1p2_prev_collinear_spike(point_ptr const& origin, + point_ptr const& next, + point_ptr const& p1, + point_ptr const& p2) { + + // we must compare the nexts to determine the order between the two. + orientation_type ot_p1_next = orientation_of_points(origin, next, p1->next); + orientation_type ot_p2_next = orientation_of_points(origin, next, p2->next); + if (ot_p1_next == orientation_collinear_spike) { + // p1 is a spike on origin next + if (ot_p2_next == orientation_collinear_spike) { + return true; + } else { + return false; + } + } else if (ot_p1_next == orientation_clockwise) { + if (ot_p2_next == orientation_collinear_spike) { + return false; + } else if (ot_p2_next == orientation_clockwise) { + // Both are clockwise we have to compare. + orientation_type ot = orientation_of_points(origin, p1->next, p2->next); + if (ot == orientation_collinear_spike) { + return true; + } else if (ot == orientation_clockwise) { + return true; + } else if (ot == orientation_collinear_line) { + return true; + } else { + return false; + } + } else { + // ot_p2_next == orienation_collinear_line + // ot_p2_next == orienation_counter_clockwise + return true; + } + } else if (ot_p1_next == orientation_collinear_line) { + if (ot_p2_next == orientation_clockwise) { + return false; + } else { + // ot_p2_next == orienation_collinear_spike + // ot_p2_next == orienation_counter_clockwise + // ot_p2_next == orienation_collinear_line + return true; + } + } else { + // ot_p1_next == orientation_counter_clockwise + if (ot_p2_next == orientation_counter_clockwise) { + // Both are counter clockwise we have to compare. + orientation_type ot = orientation_of_points(origin, p1->next, p2->next); + if (ot == orientation_collinear_spike) { + return true; + } else if (ot == orientation_clockwise) { + return true; + } else if (ot == orientation_collinear_line) { + return true; + } else { + return false; + } + } else { + // ot_p2_next == orienation_collinear_spike + // ot_p2_next == orienation_clockwise + // ot_p2_next == orienation_collinear_line + return false; + } + } +} + +template +struct si_point_sorter { + + point_ptr origin; + point_ptr next; + + si_point_sorter(point_ptr origin_) : origin(origin_), next(origin_->next) { + } + + // Sorting order + // + // Primary Sort: + // * Left of next, right of previous + // * Right of next, left of previous + // + // Secondary Sort: + // * Magnitude of angle (direction based on primary sort) + // between item's previous and origin's next + + inline bool operator()(std::pair, bool> const& pp1, + std::pair, bool> const& pp2) { + // Because a next must be paired with a previous, we are only + // caring first about previous segments for ordering + point_ptr p1 = pp1.first; + point_ptr p2 = pp2.first; + if (pp1.second != pp2.second) { + return pp1.second; + } + + orientation_type ot_p1 = orientation_of_points(origin, next, p1->prev); + orientation_type ot_p2 = orientation_of_points(origin, next, p2->prev); + if (pp1.second) { + if (ot_p1 == orientation_collinear_spike) { + // p1 prev lines up with origin next + if (ot_p2 != orientation_collinear_spike) { + // ot_p2 == orienation_clockwise + // ot_p2 == orienation_collinear_line + // ot_p2 == orienation_counter_clockwise + return true; + } else { + // ot_p2 == orientation_collinear_spike + return cw_p1p2_prev_collinear_spike(origin, next, p1, p2); + } + } else if (ot_p1 == orientation_clockwise) { + if (ot_p2 == orientation_collinear_spike) { + return false; + } else if (ot_p2 == orientation_clockwise) { + orientation_type ot_p1p2 = orientation_of_points(origin, p1->prev, p2->prev); + if (ot_p1p2 == orientation_collinear_spike) { + // Both p1 prev and p2 prev are on top of each other + return cw_p1p2_prev_collinear_spike(origin, next, p1, p2); + } else if (ot_p1p2 == orientation_clockwise) { + return true; + } else { + // ot_p1p2 == orientation_counter_clockwise + // ot_p1p2 == orientation_collinear_line + return false; + } + } else { + // ot_p2 == orientation_collinear_line + // ot_p2 == orientation_counter_clockwise + return true; + } + } else if (ot_p1 == orientation_collinear_line) { + if (ot_p2 == orientation_collinear_spike || ot_p2 == orientation_clockwise) { + return false; + } else if (ot_p2 == orientation_collinear_line) { + return cw_p1p2_prev_collinear_spike(origin, next, p1, p2); + } else { + // ot_p2 == orientation_counter_clockwise + return true; + } + } else { + // ot_p1 == orientation_counter_clockwise + if (ot_p2 == orientation_counter_clockwise) { + orientation_type ot_p1p2 = orientation_of_points(origin, p1->prev, p2->prev); + if (ot_p1p2 == orientation_collinear_spike) { + // Both p1 prev and p2 prev are on top of each other + return cw_p1p2_prev_collinear_spike(origin, next, p1, p2); + } else if (ot_p1p2 == orientation_clockwise) { + return true; + } else { + // ot_p1p2 == orientation_counter_clockwise + // ot_p1p2 == orientation_collinear_line + return false; + } + } else { + // ot_p2 == orientation_collinear_spike + // ot_p2 == orientation_counter_clockwise + // ot_p2 == orientation_collinear_line + return false; + } + } + } else { + if (ot_p1 == orientation_collinear_spike) { + // p1 prev lines up with origin next + if (ot_p2 != orientation_collinear_spike) { + // ot_p2 == orienation_clockwise + // ot_p2 == orienation_collinear_line + // ot_p2 == orienation_counter_clockwise + return true; + } else { + // ot_p2 == orientation_collinear_spike + return ccw_p1p2_prev_collinear_spike(origin, next, p1, p2); + } + } else if (ot_p1 == orientation_clockwise) { + if (ot_p2 == orientation_collinear_spike) { + return false; + } else if (ot_p2 == orientation_clockwise) { + orientation_type ot_p1p2 = orientation_of_points(origin, p1->prev, p2->prev); + if (ot_p1p2 == orientation_collinear_spike) { + // Both p1 prev and p2 prev are on top of each other + return ccw_p1p2_prev_collinear_spike(origin, next, p1, p2); + } else if (ot_p1p2 == orientation_counter_clockwise) { + return true; + } else { + // ot_p1p2 == orientation_clockwise + // ot_p1p2 == orientation_collinear_line + return false; + } + } else { + // ot_p2 == orientation_collinear_line + // ot_p2 == orientation_counter_clockwise + return false; + } + } else if (ot_p1 == orientation_collinear_line) { + if (ot_p2 == orientation_collinear_spike || + ot_p2 == orientation_counter_clockwise) { + return false; + } else if (ot_p2 == orientation_collinear_line) { + return ccw_p1p2_prev_collinear_spike(origin, next, p1, p2); + } else { + // ot_p2 == orientation_clockwise + return true; + } + } else { + // ot_p1 == orientation_counter_clockwise + if (ot_p2 == orientation_collinear_spike) { + return false; + } else if (ot_p2 == orientation_counter_clockwise) { + orientation_type ot_p1p2 = orientation_of_points(origin, p1->prev, p2->prev); + if (ot_p1p2 == orientation_collinear_spike) { + // Both p1 prev and p2 prev are on top of each other + return ccw_p1p2_prev_collinear_spike(origin, next, p1, p2); + } else if (ot_p1p2 == orientation_counter_clockwise) { + return true; + } else { + // ot_p1p2 == orientation_clockwise + // ot_p1p2 == orientation_collinear_line + return false; + } + } else { + // ot_p2 == orientation_clockwise + // ot_p2 == orientation_collinear_line + return true; + } + } + } + } +}; + +template +si_point_vector build_si_point_vector(std::size_t first_index, + std::size_t last_index, + std::size_t current_index, + ring_ptr match_ring, + ring_manager& rings) { + si_point_vector point_vec; + point_ptr origin = rings.all_points[current_index]; + for (std::size_t j = first_index; j <= last_index; ++j) { + if (j == current_index) { + continue; + } + point_ptr op_j = rings.all_points[j]; + if (op_j->ring == match_ring) { + bool clockwise = clockwise_of_next(origin, op_j); + point_vec.emplace_back(op_j, clockwise); + } + } + return point_vec; +} + +template +bool process_repeated_point_set(std::size_t first_index, + std::size_t last_index, + std::size_t current_index, + std::unordered_multimap, point_ptr_pair>& dupe_ring, + ring_manager& rings) { + point_ptr point_1 = rings.all_points[current_index]; + + if (point_1->ring == nullptr) { + return false; + } + + // Build point vector + si_point_vector vec = + build_si_point_vector(first_index, last_index, current_index, point_1->ring, rings); + + if (vec.empty()) { + return false; + } + + // Sort points in vector + std::stable_sort(vec.begin(), vec.end(), si_point_sorter(point_1)); + + auto vec_itr = vec.begin(); + point_ptr point_2 = vec_itr->first; + + // If there are collinear sets of lines, we might not be able to just pick + // the first point in the sorted list (and we will have to do special processing). + if (vec.size() > 2) { + ++vec_itr; + point_ptr point_3 = vec_itr->first; + orientation_type ot_next = orientation_of_points(point_2, point_2->next, point_3->next); + if (ot_next == orientation_collinear_spike) { + orientation_type ot_prev = orientation_of_points(point_2, point_2->prev, point_3->prev); + if (ot_prev == orientation_collinear_spike) { + // Start at point_1 and we will travel around the circle until we find another point at + // the same location. We will measure its area, and then continue till the next point at + // the same location. The smallest absolute value of area is the one we will use. + point_ptr point_a = point_1; + point_ptr min_a = nullptr; + point_ptr min_b = nullptr; + point_ptr pt = point_1->next; + double area = 0.0; + double min_area = std::numeric_limits::max(); + while (pt != point_1) { + area += static_cast(pt->prev->x + pt->x) * static_cast(pt->prev->y - pt->y); + if (*pt == *point_1) { + if (std::fabs(area) < min_area) { + min_area = std::fabs(area); + min_a = point_a; + min_b = pt; + } + point_a = pt; + area = 0.0; + } + pt = pt->next; + } + if (point_a == point_1) { + // LCOV_EXCL_START + throw std::runtime_error("No other point was between point_1 on the path"); + // LCOV_EXCL_END + } + area += static_cast(pt->prev->x + pt->x) * static_cast(pt->prev->y - pt->y); + if (std::fabs(area) < min_area) { + min_area = std::fabs(area); + min_a = point_a; + min_b = pt; + } + handle_self_intersections(min_a, min_b, dupe_ring, rings); + return true; + } + } + } + handle_self_intersections(point_1, point_2, dupe_ring, rings); + return true; +} + +template +void process_repeated_points(std::size_t first_index, + std::size_t last_index, + std::unordered_multimap, point_ptr_pair>& dupe_ring, + ring_manager& rings) { + for (std::size_t j = first_index; j <= last_index; ++j) { + while (process_repeated_point_set(first_index, last_index, j, dupe_ring, rings)) + ; + } + +#ifdef DEBUG + // LCOV_EXCL_START + for (std::size_t j = first_index; j <= last_index; ++j) { + point_ptr op_j = rings.all_points[j]; + if (!op_j->ring) { + continue; + } + double ring_area = area(op_j->ring); + bool ring_is_positive = ring_area > 0.0; + bool ring_is_zero = value_is_zero(ring_area); + if (!ring_is_zero) { + if (op_j->ring->parent) { + double parent_area = area(op_j->ring->parent); + bool parent_is_positive = parent_area > 0.0; + bool parent_is_zero = value_is_zero(parent_area); + if (!parent_is_zero && ring_is_positive == parent_is_positive) { + throw std::runtime_error( + "Created a ring with a parent having the same orientation (sign of area)"); + } + } + for (auto& c : op_j->ring->children) { + double c_area = area(c); + bool c_is_positive = c_area > 0.0; + bool c_is_zero = value_is_zero(c_area); + if (!c_is_zero && ring_is_positive == c_is_positive) { + throw std::runtime_error( + "Created a ring with a child having the same orientation (sign of area)"); + } + } + } + } + // LCOV_EXCL_STOP +#endif +} + +template +bool process_chains(std::size_t first_index, + std::size_t last_index, + std::unordered_multimap, point_ptr_pair>& dupe_ring, + ring_manager& rings, + mapbox::geometry::point& rewind_point) { + bool rewind = false; + for (std::size_t j = first_index; j <= last_index; ++j) { + point_ptr op_j = rings.all_points[j]; + if (!op_j->ring) { + continue; + } + for (std::size_t k = j + 1; k <= last_index; ++k) { + point_ptr op_k = rings.all_points[k]; + if (!op_k->ring || !op_j->ring) { + continue; + } + if (fix_intersects(dupe_ring, op_j, op_k, rings, rewind_point)) { + rewind = true; + } + } + } + return rewind; +} + +template +bool process_collinear_edges(std::size_t first_index, + std::size_t last_index, + std::unordered_multimap, point_ptr_pair>& dupe_ring, + ring_manager& rings, + mapbox::geometry::point& rewind_point) { + bool rewind = false; + for (std::size_t j = first_index; j <= last_index; ++j) { + point_ptr op_j = rings.all_points[j]; + if (!op_j->ring) { + continue; + } + for (std::size_t k = j + 1; k <= last_index; ++k) { + point_ptr op_k = rings.all_points[k]; + if (!op_k->ring || !op_j->ring) { + continue; + } + if (handle_collinear_edges(op_j, op_k, dupe_ring, rings, rewind_point)) { + rewind = true; + } + } + } + return rewind; +} + +template +bool index_is_after_point(std::size_t const& i, + mapbox::geometry::point const& pt, + ring_manager const& rings) { + if (i == 0) { + return false; + } + + if (rings.all_points[i]->y < pt.y) { + return true; + } else if (rings.all_points[i]->y > pt.y) { + return false; + } else if (rings.all_points[i]->x >= pt.x) { + return true; + } else { + return false; + } +} + +template +void rewind_to_point(std::size_t& i, + mapbox::geometry::point const& pt, + ring_manager const& rings) { + if (i >= rings.rings.size()) { + i = rings.rings.size() - 1; + } + while (index_is_after_point(i, pt, rings)) { + --i; + } +} + +template +void remove_spikes_in_polygons(ring_ptr r, ring_manager& rings) { + + point_ptr first_point = r->points; + remove_spikes(first_point); + if (!first_point) { + r->points = nullptr; + r->area = std::numeric_limits::quiet_NaN(); + remove_ring(r, rings); + return; + } + point_ptr p = first_point->next; + while (p != first_point) { + remove_spikes(p); + if (!p) { + r->points = nullptr; + r->area = std::numeric_limits::quiet_NaN(); + remove_ring(r, rings); + return; + } + if (p->ring && !first_point->ring) { + first_point = p; + } + p = p->next; + } +} + +template +void fixup_out_polyline(ring& ring, ring_manager& rings) { + point_ptr pp = ring.points; + point_ptr lastPP = pp->prev; + while (pp != lastPP) { + pp = pp->next; + if (*pp == *pp->prev) { + if (pp == lastPP) + lastPP = pp->prev; + point_ptr tmpPP = pp->prev; + tmpPP->next = pp->next; + pp->next->prev = tmpPP; + // delete pp; + pp->next = pp; + pp->prev = pp; + pp->ring = nullptr; + pp = tmpPP; + } + } + + if (pp == pp->prev) { + remove_ring(&ring, rings); + dispose_out_points(pp); + ring.points = nullptr; + return; + } +} + + +template +void fixup_out_polygon(ring& ring, ring_manager& rings) { + // FixupOutPolygon() - removes duplicate points and simplifies consecutive + // parallel edges by removing the middle vertex. + point_ptr lastOK = nullptr; + ring.bottom_point = nullptr; + point_ptr pp = ring.points; + + for (;;) { + if (pp->prev == pp || pp->prev == pp->next) { + // We now need to make sure any children rings to this are promoted and their hole + // status is changed + // promote_children_of_removed_ring(&ring, rings); + remove_ring(&ring, rings); + dispose_out_points(pp); + ring.points = nullptr; + return; + } + + // test for duplicate points and collinear edges ... + if ((*pp == *pp->next) || (*pp == *pp->prev) || + (slopes_equal(*pp->prev, *pp, *pp->next))) { + lastOK = nullptr; + point_ptr tmp = pp; + pp->prev->next = pp->next; + pp->next->prev = pp->prev; + pp = pp->prev; + tmp->ring = nullptr; + tmp->next = tmp; + tmp->prev = tmp; + } else if (pp == lastOK) { + break; + } else { + if (!lastOK) { + lastOK = pp; + } + pp = pp->next; + } + } + ring.points = pp; +} + + +template +void do_simple_polygons(ring_manager& rings) { + + // fix orientations ... + for (auto& r : rings.rings) { + if (!r.points || r.is_open) { + continue; + } + std::size_t s = 0; + if (ring_is_hole(&r) == (area_from_point(r.points, s) > 0)) { + reverse_ring(r.points); + } + remove_spikes_in_polygons(&r, rings); + r.area = std::numeric_limits::quiet_NaN(); + } + + std::stable_sort(rings.all_points.begin(), rings.all_points.end(), point_ptr_cmp()); + std::unordered_multimap, point_ptr_pair> dupe_ring; + dupe_ring.reserve(rings.rings.size()); + + // Find sets of repeated points and process them + std::size_t count = 0; + for (std::size_t i = 1; i < rings.all_points.size(); ++i) { + if (*rings.all_points[i] == *rings.all_points[i - 1]) { + ++count; + if (i < (rings.all_points.size() - 1)) { + continue; + } else { + ++i; + } + } + + if (count == 0) { + continue; + } + std::size_t first_index = i - count - 1; + std::size_t last_index = i - 1; + auto sort_begin = rings.all_points.begin(); + std::advance(sort_begin, first_index); + auto sort_end = rings.all_points.begin(); + std::advance(sort_end, i); + std::stable_sort(sort_begin, sort_end, point_ptr_depth_cmp()); + process_repeated_points(first_index, last_index, dupe_ring, rings); + mapbox::geometry::point rewind_point(std::numeric_limits::min(), + std::numeric_limits::min()); + bool do_rewind = false; + if (process_chains(first_index, last_index, dupe_ring, rings, rewind_point)) { + do_rewind = true; + } + if (process_collinear_edges(first_index, last_index, dupe_ring, rings, rewind_point)) { + do_rewind = true; + } + if (do_rewind) { + rewind_to_point(i, rewind_point, rings); + } + count = 0; + } + +#if DEBUG + // LCOV_EXCL_START + for (auto& r : rings.rings) { + if (!r.points || r.is_open) { + continue; + } + double stored_area = area(&r); + std::size_t s = 0; + double calculated_area = area_from_point(r.points, s); + if (!values_near_equal(stored_area, calculated_area)) { + throw std::runtime_error("Difference in stored area vs calculated area!"); + } + } + // LCOV_EXCL_END +#endif + + for (auto& r : rings.rings) { + if (!r.points || r.is_open) { + continue; + } + fixup_out_polygon(r, rings); + if (ring_is_hole(&r) == (area(&r) > 0.0)) { + reverse_ring(r.points); + r.area = std::numeric_limits::quiet_NaN(); + } + } +} +} +} +} diff --git a/mapbox/geometry/wagyu/util.hpp b/mapbox/geometry/wagyu/util.hpp new file mode 100644 index 0000000..45938f6 --- /dev/null +++ b/mapbox/geometry/wagyu/util.hpp @@ -0,0 +1,83 @@ +#pragma once + +#include + +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +double area(mapbox::geometry::linear_ring const& poly) { + std::size_t size = poly.size(); + if (size < 3) { + return 0.0; + } + + double a = 0.0; + auto itr = poly.begin(); + auto itr_prev = poly.end(); + --itr_prev; + a += static_cast(itr_prev->x + itr->x) * static_cast(itr_prev->y - itr->y); + ++itr; + itr_prev = poly.begin(); + for (; itr != poly.end(); ++itr, ++itr_prev) { + a += static_cast(itr_prev->x + itr->x) * static_cast(itr_prev->y - itr->y); + } + return -a * 0.5; +} + +inline bool value_is_zero(double val) { + return std::fabs(val) < std::numeric_limits::epsilon(); +} + +inline bool values_are_equal(double x, double y) { + return value_is_zero(x - y); +} + +inline bool values_near_equal(double x, double y) { + return std::fabs(x - y) < (5.0 * std::numeric_limits::epsilon()); +} + +inline bool greater_than_or_equal(double x, double y) { + return x > y || values_are_equal(x, y); +} + +inline bool less_than_or_equal(double x, double y) { + return x < y || values_are_equal(x, y); +} + +template +bool slopes_equal(mapbox::geometry::point const& pt1, + mapbox::geometry::point const& pt2, + mapbox::geometry::point const& pt3) { + return (pt1.y - pt2.y) * (pt2.x - pt3.x) == (pt1.x - pt2.x) * (pt2.y - pt3.y); +} + +template +bool slopes_equal(mapbox::geometry::wagyu::point const& pt1, + mapbox::geometry::wagyu::point const& pt2, + mapbox::geometry::point const& pt3) { + return (pt1.y - pt2.y) * (pt2.x - pt3.x) == (pt1.x - pt2.x) * (pt2.y - pt3.y); +} + +template +bool slopes_equal(mapbox::geometry::wagyu::point const& pt1, + mapbox::geometry::wagyu::point const& pt2, + mapbox::geometry::wagyu::point const& pt3) { + return (pt1.y - pt2.y) * (pt2.x - pt3.x) == (pt1.x - pt2.x) * (pt2.y - pt3.y); +} + +template +bool slopes_equal(mapbox::geometry::point const& pt1, + mapbox::geometry::point const& pt2, + mapbox::geometry::point const& pt3, + mapbox::geometry::point const& pt4) { + return (pt1.y - pt2.y) * (pt3.x - pt4.x) == (pt1.x - pt2.x) * (pt3.y - pt4.y); +} +} +} +} diff --git a/mapbox/geometry/wagyu/vatti.hpp b/mapbox/geometry/wagyu/vatti.hpp new file mode 100644 index 0000000..5e32fa0 --- /dev/null +++ b/mapbox/geometry/wagyu/vatti.hpp @@ -0,0 +1,77 @@ +#pragma once + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +bool execute_vatti(local_minimum_list& minima_list, + ring_manager& rings, + clip_type cliptype, + fill_type subject_fill_type, + fill_type clip_fill_type) { + + if (minima_list.empty()) { + return false; + } + + active_bound_list active_bounds; + scanbeam_list scanbeam; + T scanline_y = std::numeric_limits::max(); + + local_minimum_ptr_list minima_sorted; + minima_sorted.reserve(minima_list.size()); + for (auto& lm : minima_list) { + minima_sorted.push_back(&lm); + } + std::stable_sort(minima_sorted.begin(), minima_sorted.end(), local_minimum_sorter()); + local_minimum_ptr_list_itr current_lm = minima_sorted.begin(); + // std::clog << output_all_edges(minima_sorted) << std::endl; + + setup_scanbeam(minima_list, scanbeam); + rings.current_hp_itr = rings.hot_pixels.begin(); + + while (pop_from_scanbeam(scanline_y, scanbeam) || current_lm != minima_sorted.end()) { + + process_intersections(scanline_y, active_bounds, cliptype, + subject_fill_type, clip_fill_type, rings); + + update_current_hp_itr(scanline_y, rings); + + // First we process bounds that has already been added to the active bound list -- + // if the active bound list is empty local minima that are at this scanline_y and + // have a horizontal edge at the local minima will be processed + process_edges_at_top_of_scanbeam(scanline_y, active_bounds, scanbeam, minima_sorted, + current_lm, rings, cliptype, subject_fill_type, + clip_fill_type); + + // Next we will add local minima bounds to the active bounds list that are on the local + // minima queue at + // this current scanline_y + insert_local_minima_into_ABL(scanline_y, minima_sorted, current_lm, active_bounds, + rings, scanbeam, cliptype, subject_fill_type, + clip_fill_type); + + } + // std::clog << rings.rings << std::endl; + // std::clog << output_as_polygon(rings.all_rings[0]); + return true; +} +} +} +} diff --git a/mapbox/geometry/wagyu/wagyu.hpp b/mapbox/geometry/wagyu/wagyu.hpp new file mode 100644 index 0000000..730a565 --- /dev/null +++ b/mapbox/geometry/wagyu/wagyu.hpp @@ -0,0 +1,141 @@ +#pragma once + +#include + +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +namespace mapbox { +namespace geometry { +namespace wagyu { + +template +class wagyu { +private: + using value_type = T; + + local_minimum_list minima_list; + bool has_open_paths; + bool reverse_output; + + wagyu( wagyu const& ) = delete; + wagyu& operator=(wagyu const& ) = delete; + +public: + wagyu() : minima_list(), has_open_paths(false), reverse_output(false) { + } + + ~wagyu() { + clear(); + } + + bool add_line(mapbox::geometry::line_string const& pg) { + bool success = add_line_string(pg, minima_list); + if (success) { + has_open_paths = true; + } + return success; + } + + bool add_ring(mapbox::geometry::linear_ring const& pg, + polygon_type p_type = polygon_type_subject) { + return add_linear_ring(pg, minima_list, p_type); + } + + bool add_polygon(mapbox::geometry::polygon const& ppg, + polygon_type p_type = polygon_type_subject) { + bool result = false; + for (auto const& r : ppg) { + if (add_ring(r, p_type)) { + result = true; + } + } + return result; + } + + void reverse_rings(bool value) { + reverse_output = value; + } + + void clear() { + minima_list.clear(); + has_open_paths = false; + } + + mapbox::geometry::box get_bounds() { + mapbox::geometry::point min = { 0, 0 }; + mapbox::geometry::point max = { 0, 0 }; + if (minima_list.empty()) { + return mapbox::geometry::box(min, max); + } + bool first_set = false; + for (auto const& lm : minima_list) { + if (!lm.left_bound.edges.empty()) { + if (!first_set) { + min = lm.left_bound.edges.front().top; + max = lm.left_bound.edges.back().bot; + first_set = true; + } else { + min.y = std::min(min.y, lm.left_bound.edges.front().top.y); + max.y = std::max(max.y, lm.left_bound.edges.back().bot.y); + max.x = std::max(max.x, lm.left_bound.edges.back().top.x); + min.x = std::min(min.x, lm.left_bound.edges.back().top.x); + } + for (auto const& e : lm.left_bound.edges) { + max.x = std::max(max.x, e.bot.x); + min.x = std::min(min.x, e.bot.x); + } + } + if (!lm.right_bound.edges.empty()) { + if (!first_set) { + min = lm.right_bound.edges.front().top; + max = lm.right_bound.edges.back().bot; + first_set = true; + } else { + min.y = std::min(min.y, lm.right_bound.edges.front().top.y); + max.y = std::max(max.y, lm.right_bound.edges.back().bot.y); + max.x = std::max(max.x, lm.right_bound.edges.back().top.x); + min.x = std::min(min.x, lm.right_bound.edges.back().top.x); + } + for (auto const& e : lm.right_bound.edges) { + max.x = std::max(max.x, e.bot.x); + min.x = std::min(min.x, e.bot.x); + } + } + } + return mapbox::geometry::box(min, max); + } + + bool execute(clip_type cliptype, + mapbox::geometry::multi_polygon& solution, + fill_type subject_fill_type, + fill_type clip_fill_type) { + + ring_manager rings; + + build_hot_pixels(minima_list, rings); + + if (!execute_vatti(minima_list, rings, cliptype, subject_fill_type, clip_fill_type)) { + return false; + } + + do_simple_polygons(rings); + + build_result(solution, rings, reverse_output); + + return true; + } +}; +} +} +} From a4f5406cfb92f8ab25aca49c0ae4b67a96f6ad4b Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 7 Dec 2016 14:29:09 -0800 Subject: [PATCH 4/7] Switch polygon topology correction from Clipper to Wagyu --- CHANGELOG.md | 4 + Makefile | 4 +- clipper/README | 407 -- clipper/clipper.cpp | 5598 ----------------- clipper/clipper.hpp | 450 -- geometry.cpp | 328 +- mapbox/LICENSE-geometry.hpp | 13 + mapbox/LICENSE-variant | 25 + clipper/License.txt => mapbox/LICENSE-wagyu | 19 +- .../out/-z1_--detect-shared-borders.json | 32 +- tests/curve/out/-z2.json | 54 +- tests/curve/out/-z2_--no-clipping.json | 54 +- tests/curve/out/-z2_--no-duplication.json | 12 +- tests/dateline/out/-z5.json | 130 +- tests/join-population/joined-i.mbtiles.json | 1984 +++--- tests/join-population/joined.mbtiles.json | 2918 ++++----- tests/join-population/merged.mbtiles.json | 2918 ++++----- ...s%named%alg_-Lalbania@tests%named%alb.json | 6 +- ...g_-Lalbania@tests%named%alb_-lunified.json | 6 +- .../out/-z4_-yname.json | 2940 ++++----- .../out/-z4_-yname_--drop-polygons.json | 1530 ++--- .../out/-z4_-yname_--grid-low-zooms_-D8.json | 3008 ++++----- ...z4_-yname_--no-tiny-polygon-reduction.json | 2944 ++++----- .../out/-z4_-yname_-S4.json | 2938 ++++----- .../out/-z4_-yname_-pD.json | 1780 +++--- .../out/-z4_-yname_-pc.json | 3014 ++++----- .../-z5_-M5000_--drop-smallest-as-needed.json | 3506 +++++------ tests/nullisland/out/-b0_-z4.json | 40 +- .../nullisland/out/-b0_-z4_-ANullIsland.json | 40 +- tests/overlap/out/-z0.json | 4 +- tests/overlap/out/-z0_--coalesce.json | 2 +- tests/tl_2015_us_county/out/-z8.json | 70 +- tests/tl_2015_us_county/out/-z8_-pp.json | 64 +- .../out/-pk_-pf_-Z9_-z12_-ldata.json | 88 +- version.hpp | 2 +- 35 files changed, 15193 insertions(+), 21739 deletions(-) delete mode 100644 clipper/README delete mode 100644 clipper/clipper.cpp delete mode 100644 clipper/clipper.hpp create mode 100644 mapbox/LICENSE-geometry.hpp create mode 100644 mapbox/LICENSE-variant rename clipper/License.txt => mapbox/LICENSE-wagyu (67%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 417e156..b6232f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.16.0 + +* Switch from Clipper to Wagyu for polygon topology correction + ## 1.15.4 * Dot-dropping with -r/-B doesn't apply if there is a per-feature minzoom tag diff --git a/Makefile b/Makefile index cfe761d..2ad1b3c 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ SHELL = /bin/bash CC := $(CC) CXX := $(CXX) CFLAGS := $(CFLAGS) -CXXFLAGS := $(CXXFLAGS) -std=c++11 +CXXFLAGS := $(CXXFLAGS) -std=c++14 LDFLAGS := $(LDFLAGS) WARNING_FLAGS := -Wall -Wshadow -Wsign-compare RELEASE_FLAGS := -O3 -DNDEBUG @@ -43,7 +43,7 @@ C = $(wildcard *.c) $(wildcard *.cpp) INCLUDES = -I/usr/local/include -I. LIBS = -L/usr/local/lib -tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o clipper/clipper.o mvt.o serial.o main.o text.o +tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o mvt.o serial.o main.o text.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread tippecanoe-enumerate: enumerate.o diff --git a/clipper/README b/clipper/README deleted file mode 100644 index 3805104..0000000 --- a/clipper/README +++ /dev/null @@ -1,407 +0,0 @@ -===================================================================== -Clipper Change Log -===================================================================== -v6.2.1 (31 October 2014) Rev 482 -* Bugfix in ClipperOffset.Execute where the Polytree.IsHole property - was returning incorrect values with negative offsets -* Very minor improvement to join rounding in ClipperOffset -* Fixed CPP OpenGL demo. - -v6.2.0 (17 October 2014) Rev 477 -* Numerous minor bugfixes, too many to list. - (See revisions 454-475 in Sourceforge Repository) -* The ZFillFunction (custom callback function) has had its parameters - changed. -* Curves demo removed (temporarily). -* Deprecated functions have been removed. - -v6.1.5 (26 February 2014) Rev 460 -* Improved the joining of output polygons sharing a common edge - when those common edges are horizontal. -* Fixed a bug in ClipperOffset.AddPath() which would produce - incorrect solutions when open paths were added before closed paths. -* Minor code tidy and performance improvement - -v6.1.4 (6 February 2014) -* Fixed bugs in MinkowskiSum -* Fixed minor bug when using Clipper.ForceSimplify. -* Modified use_xyz callback so that all 4 vertices around an - intersection point are now passed to the callback function. - -v6.1.3a (22 January 2014) Rev 453 -* Fixed buggy PointInPolygon function (C++ and C# only). - Note this bug only affected the newly exported function, the - internal PointInPolygon function used by Clipper was OK. - -v6.1.3 (19 January 2014) Rev 452 -* Fixed potential endless loop condition when adding open - paths to Clipper. -* Fixed missing implementation of SimplifyPolygon function - in C++ code. -* Fixed incorrect upper range constant for polygon coordinates - in Delphi code. -* Added PointInPolygon function. -* Overloaded MinkowskiSum function to accommodate multi-contour - paths. - -v6.1.2 (15 December 2013) Rev 444 -* Fixed broken C++ header file. -* Minor improvement to joining polygons. - -v6.1.1 (13 December 2013) Rev 441 -* Fixed a couple of bugs affecting open paths that could - raise unhandled exceptions. - -v6.1.0 (12 December 2013) -* Deleted: Previously deprecated code has been removed. -* Modified: The OffsetPaths function is now deprecated as it has - been replaced by the ClipperOffset class which is much more - flexible. -* Bugfixes: Several minor bugs have been fixed including - occasionally an incorrect nesting within the PolyTree structure. - -v6.0.0 (30 October 2013) -* Added: Open path (polyline) clipping. A new 'Curves' demo - application showcases this (see the 'Curves' directory). -* Update: Major improvement in the merging of - shared/collinear edges in clip solutions (see Execute). -* Added: The IntPoint structure now has an optional 'Z' member. - (See the precompiler directive use_xyz.) -* Added: Users can now force Clipper to use 32bit integers - (via the precompiler directive use_int32) instead of using - 64bit integers. -* Modified: To accommodate open paths, the Polygon and Polygons - structures have been renamed Path and Paths respectively. The - AddPolygon and AddPolygons methods of the ClipperBase class - have been renamed AddPath and AddPaths respectively. Several - other functions have been similarly renamed. -* Modified: The PolyNode Class has a new IsOpen property. -* Modified: The Clipper class has a new ZFillFunction property. -* Added: MinkowskiSum and MinkowskiDiff functions added. -* Added: Several other new functions have been added including - PolyTreeToPaths, OpenPathsFromPolyTree and ClosedPathsFromPolyTree. -* Added: The Clipper constructor now accepts an optional InitOptions - parameter to simplify setting properties. -* Bugfixes: Numerous minor bugs have been fixed. -* Deprecated: Version 6 is a major upgrade from previous versions - and quite a number of changes have been made to exposed structures - and functions. To minimize inconvenience to existing library users, - some code has been retained and some added to maintain backward - compatibility. However, because this code will be removed in a - future update, it has been marked as deprecated and a precompiler - directive use_deprecated has been defined. - -v5.1.6 (23 May 2013) -* BugFix: CleanPolygon function was buggy. -* Changed: The behaviour of the 'miter' JoinType has been - changed so that when squaring occurs, it's no longer - extended up to the miter limit but is squared off at - exactly 'delta' units. (This improves the look of mitering - with larger limits at acute angles.) -* Added: New OffsetPolyLines function -* Update: Minor code refactoring and optimisations - -v5.1.5 (5 May 2013) -* Added: ForceSimple property to Clipper class -* Update: Improved documentation - -v5.1.4 (24 March 2013) -* Update: CleanPolygon function enhanced. -* Update: Documentation improved. - -v5.1.3 (14 March 2013) -* Bugfix: Minor bugfixes. -* Update: Documentation significantly improved. - -v5.1.2 (26 February 2013) -* Bugfix: PolyNode class was missing a constructor. -* Update: The MiterLimit parameter in the OffsetPolygons - function has been renamed Limit and can now also be used to - limit the number of vertices used to construct arcs when - JoinType is set to jtRound. - -v5.1.0 (17 February 2013) -* Update: ExPolygons has been replaced with the PolyTree & - PolyNode classes to more fully represent the parent-child - relationships of the polygons returned by Clipper. -* Added: New CleanPolygon and CleanPolygons functions. -* Bugfix: Another orientation bug fixed. - -v5.0.2 - 30 December 2012 -* Bugfix: Significant fixes in and tidy of the internal - Int128 class (which is used only when polygon coordinate - values are greater than ±0x3FFFFFFF (~1.07e9)). -* Update: The Area algorithm has been updated and is faster. -* Update: Documentation updates. The newish but undocumented - 'CheckInputs' parameter of the OffsetPolygons function has been - renamed 'AutoFix' and documented too. The comments on rounding - have also been improved (ie clearer and expanded). - -v4.10.0 - 25 December 2012 -* Bugfix: Orientation bugs should now be resolved (finally!). -* Bugfix: Bug in Int128 class - -v4.9.8 - 2 December 2012 -* Bugfix: Further fixes to rare Orientation bug. - -v4.9.7 - 29 November 2012 -* Bugfix: Bug that very rarely returned the wrong polygon - orientation. -* Bugfix: Obscure bug affecting OffsetPolygons when using - jtRound for the JoinType parameter and when polygons also - contain very large coordinate values (> +/-100000000000). - -v4.9.6 - 9 November 2012 -* Bugfix: Another obscure bug related to joining polygons. - -v4.9.4 - 2 November 2012 -* Bugfix: Bugs in Int128 class occasionally causing - wrong orientations. -* Bugfix: Further fixes related to joining polygons. - -v4.9.0 - 9 October 2012 -* Bugfix: Obscure bug related to joining polygons. - -v4.8.9 - 25 September 2012 -* Bugfix: Obscure bug related to precision of intersections. - -v4.8.8 - 30 August 2012 -* Bugfix: Fixed bug in OffsetPolygons function introduced in - version 4.8.5. - -v4.8.7 - 24 August 2012 -* Bugfix: ReversePolygon function in C++ translation was broken. -* Bugfix: Two obscure bugs affecting orientation fixed too. - -v4.8.6 - 11 August 2012 -* Bugfix: Potential for memory overflow errors when using - ExPolygons structure. -* Bugfix: The polygon coordinate range has been reduced to - +/- 0x3FFFFFFFFFFFFFFF (4.6e18). -* Update: ReversePolygons function was misnamed ReversePoints in C++. -* Update: SimplifyPolygon function now takes a PolyFillType parameter. - -v4.8.5 - 15 July 2012 -* Bugfix: Potential for memory overflow errors in OffsetPolygons(). - -v4.8.4 - 1 June 2012 -* Bugfix: Another obscure bug affecting ExPolygons structure. - -v4.8.3 - 27 May 2012 -* Bugfix: Obscure bug causing incorrect removal of a vertex. - -v4.8.2 - 21 May 2012 -* Bugfix: Obscure bug could cause an exception when using - ExPolygon structure. - -v4.8.1 - 12 May 2012 -* Update: Cody tidy and minor bug fixes. - -v4.8.0 - 30 April 2012 -* Bugfix: Occasional errors in orientation fixed. -* Update: Added notes on rounding to the documentation. - -v4.7.6 - 11 April 2012 -* Fixed a bug in Orientation function (affecting C# translations only). -* Minor documentation update. - -v4.7.5 - 28 March 2012 -* Bugfix: Fixed a recently introduced bug that occasionally caused an - unhandled exception in C++ and C# translations. - -v4.7.4 - 15 March 2012 -* Bugfix: Another minor bugfix. - -v4.7.2 - 4 March 2012 -* Bugfix: Fixed bug introduced in ver 4.7 which sometimes caused - an exception if ExPolygon structure was passed to Clipper's - Execute method. - -v4.7.1 - 3 March 2012 -* Bugfix: Rare crash when JoinCommonEdges joined polygons that - 'cancelled' each other. -* Bugfix: Clipper's internal Orientation method occasionally - returned wrong result. -* Update: Improved C# code (thanks to numerous excellent suggestions - from David Piepgrass) - -v4.7 - 10 February 2012 -* Improved the joining of output polygons sharing a common edge. - -v4.6.6 - 3 February 2012 -* Bugfix: Another obscure bug occasionally causing incorrect - polygon orientation. - -v4.6.5 - 17 January 2012 -* Bugfix: Obscure bug occasionally causing incorrect hole - assignment in ExPolygon structure. - -v4.6.4 - 8 November 2011 -* Added: SimplifyPolygon and SimplifyPolygons functions. - -v4.6.3 - 11 November 2011 -* Bugfix: Fixed another minor mitering bug in OffsetPolygons. - -v4.6.2 - 10 November 2011 -* Bugfix: Fixed a rare bug in the orientation of polygons - returned by Clipper's Execute() method. -* Bugfix: Previous update introduced a mitering bug in the - OffsetPolygons function. - -v4.6 - 29 October 2011 -* Added: Support for Positive and Negative polygon fill - types (in addition to the EvenOdd and NonZero fill types). -* Bugfix: The OffsetPolygons function was generating the - occasional artefact when 'shrinking' polygons. - -v4.5.5 - 8 October 2011 -* Bugfix: Fixed an obscure bug in Clipper's JoinCommonEdges - method. -* Update: Replaced IsClockwise function with Orientation - function. The orientation issues affecting OffsetPolygons - should now be finally resolved. -* Change: The Area function once again returns a signed value. - -v4.5.1 - 28 September 2011 -* Deleted: The UseFullCoordinateRange property has been - deleted since integer range is now managed implicitly. -* BugFix: Minor bug in OffsetPolygon mitering. -* Change: C# JoinType enum moved from Clipper class to - ClipperLib namespace. -* Change: The Area function now returns the absolute area - (irrespective of orientation). -* Change: The IsClockwise function now requires a second - parameter - YAxisPositiveUpward - to accommodate displays - with Y-axis oriented in either direction - -v4.4.4 - 10 September 2011 -* Change: Deleted jtButt from JoinType (used by the - OffsetPolygons function). -* BugFix: Fixed another minor bug in OffsetPolygons function. -* Update: Further improvements to the help file - -v4.4.3 - 29 August 2011 -* BugFix: fixed a minor rounding issue in OffsetPolygons - function (affected C++ & C# translations). -* BugFix: fixed a minor bug in OffsetPolygons' function - declaration (affected C++ translation only). -* Change: 'clipper' namespace changed to 'ClipperLib' - namespace in both C++ and C# code to remove the ambiguity - between the Clipper class and the namespace. (This also - required numerous updates to the accompanying demos.) - -v4.4.2 - 26 August 2011 -* BugFix: minor bugfixes in Clipper. -* Update: the OffsetPolygons function has been significantly - improved by offering 4 different join styles. - -v4.4.0 - 6 August 2011 -* BugFix: A number of minor bugs have been fixed that mostly - affected the new ExPolygons structure. - -v4.3.0 - 17 June 2011 -* New: ExPolygons structure that explicitly associates 'hole' - polygons with their 'outer' container polygons. -* New: Execute method overloaded so the solution parameter - can now be either Polygons or ExPolygons. -* BugFix: Fixed a rare bug in solution polygons orientation. - -v4.2.8 - 21 May 2011 -* Update: JoinCommonEdges() improved once more. -* BugFix: Several minor bugs fixed. - -v4.2.6 - 1 May 2011 -* Bugfix: minor bug in SlopesEqual function. -* Update: Merging of output polygons sharing common edges - has been significantly inproved - -v4.2.4 - 26 April 2011 - Input polygon coordinates can now contain the full range of - signed 64bit integers (ie +/-9,223,372,036,854,775,807). This - means that floating point values can be converted to and from - Clipper's 64bit integer coordinates structure (IntPoint) and - still retain a precision of up to 18 decimal places. However, - since the large-integer math that supports this expanded range - imposes a small cost on performance (~15%), a new property - UseFullCoordinateRange has been added to the Clipper class to - allow users the choice of whether or not to use this expanded - coordinate range. If this property is disabled, coordinate values - are restricted to +/-1,500,000,000. - -v4.2 - 12 April 2011 - JoinCommonEdges() code significantly improved plus other minor - improvements. - -v4.1.2 - 9 April 2011 -* Update: Minor code tidy. -* Bugfix: Possible endless loop in JoinCommonEdges() in clipper.pas. - -v4.1.1 - 8 April 2011 -* Update: All polygon coordinates are now stored as 64bit integers - (though they're still restricted to range -1.5e9 to +1.5e9 pending - the inclusion of code supporting 64bit math). -* Change: AddPolygon and AddPolygons methods now return boolean - values. -* Bugfix: Bug in JoinCommonEdges() caused potential endless loop. -* Bugfix: Bug in IsClockwise(). (C++ code only) - -v4.0 - 5 April 2011 -* Clipper 4 is a major rewrite of earlier versions. The biggest - change is that floating point values are no longer used, - except for the storing of edge slope values. The main benefit - of this is the issue of numerical robustness has been - addressed. Due to other major code improvements Clipper v4 - is approximately 40% faster than Clipper v3. -* The AddPolyPolygon method has been renamed to AddPolygons. -* The IgnoreOrientation property has been removed. -* The clipper_misc library has been merged back into the - main clipper library. - -v3.1.0 - 17 February 2011 -* Bugfix: Obscure bug in TClipperBase.SetDx method that caused - problems with very small edges ( edges <1/1000th pixel in size). - -v3.0.3 - 9 February 2011 -* Bugfix: Significant bug, but only in C# code. -* Update: Minor refactoring. - -v3.0 - 31 January 2011 -* Update: Major rewrite of the portion of code that calculates - the output polygons' orientation. -* Update: Help file significantly improved. -* Change: Renamed ForceOrientation property to IgnoreOrientation. - If the orientation of output polygons is not important, or can - be managed separately, clipping routines can be sped up by about - 60% by setting IgnoreOrientation to true. Defaults to false. -* Change: The OffsetPolygon and Area functions have been moved to - the new unit - clipper_misc. - -2.99 - 15 January 2011 -* Bugfix: Obscure bug in AddPolygon method could cause an endless loop. - -2.8 - 20 November 2010 -* Updated: Output polygons which previously shared a common - edge are now merged. -* Changed: The orientation of outer polygons is now clockwise - when the display's Y axis is positive downwards (as is - typical for most Windows applications). Inner polygons - (holes) have the opposite orientation. -* Added: Support module for Cairo Graphics Library (with demo). -* Updated: C# and C++ demos. - -2.522 - 15 October 2010 -* Added C# translation (thanks to Olivier Lejeune) and - a link to Ruby bindings (thanks to Mike Owens). - -2.0 - 30 July 2010 -* Clipper now clips using both the Even-Odd (alternate) and - Non-Zero (winding) polygon filling rules. (Previously Clipper - assumed the Even-Odd rule for polygon filling.) - -1.4c - 16 June 2010 -* Added C++ support for AGG graphics library - -1.2s - 2 June 2010 -* Added C++ translation of clipper.pas - -1.0 - 9 May 2010 \ No newline at end of file diff --git a/clipper/clipper.cpp b/clipper/clipper.cpp deleted file mode 100644 index fa9af6c..0000000 --- a/clipper/clipper.cpp +++ /dev/null @@ -1,5598 +0,0 @@ -/******************************************************************************* -* * -* Author : Angus Johnson * -* Version : 6.4.0 * -* Date : 2 July 2015 * -* Website : http://www.angusj.com * -* Copyright : Angus Johnson 2010-2015 * -* * -* License: * -* Use, modification & distribution is subject to Boost Software License Ver 1. * -* http://www.boost.org/LICENSE_1_0.txt * -* * -* Attributions: * -* The code in this library is an extension of Bala Vatti's clipping algorithm: * -* "A generic solution to polygon clipping" * -* Communications of the ACM, Vol 35, Issue 7 (July 1992) pp 56-63. * -* http://portal.acm.org/citation.cfm?id=129906 * -* * -* Computer graphics and geometric modeling: implementation and algorithms * -* By Max K. Agoston * -* Springer; 1 edition (January 4, 2005) * -* http://books.google.com/books?q=vatti+clipping+agoston * -* * -* See also: * -* "Polygon Offsetting by Computing Winding Numbers" * -* Paper no. DETC2005-85513 pp. 565-575 * -* ASME 2005 International Design Engineering Technical Conferences * -* and Computers and Information in Engineering Conference (IDETC/CIE2005) * -* September 24-28, 2005 , Long Beach, California, USA * -* http://www.me.berkeley.edu/~mcmains/pubs/DAC05OffsetPolygon.pdf * -* * -*******************************************************************************/ - -/******************************************************************************* -* * -* This is a translation of the Delphi Clipper library and the naming style * -* used has retained a Delphi flavour. * -* * -*******************************************************************************/ - -#include "clipper.hpp" -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace ClipperLib { - -static double const pi = 3.141592653589793238; -static double const two_pi = pi *2; -static double const def_arc_tolerance = 0.25; - -enum Direction { dRightToLeft, dLeftToRight }; - -static int const Unassigned = -1; //edge not currently 'owning' a solution -static int const Skip = -2; //edge that would otherwise close a path - -#define HORIZONTAL (-1.0E+40) -#define TOLERANCE (1.0e-20) -#define NEAR_ZERO(val) (((val) > -TOLERANCE) && ((val) < TOLERANCE)) - -struct TEdge { - IntPoint Bot; - IntPoint Curr; //current (updated for every new scanbeam) - IntPoint Top; - double Dx; - PolyType PolyTyp; - EdgeSide Side; //side only refers to current side of solution poly - int WindDelta; //1 or -1 depending on winding direction - int WindCnt; - int WindCnt2; //winding count of the opposite polytype - int OutIdx; - TEdge *Next; - TEdge *Prev; - TEdge *NextInLML; - TEdge *NextInAEL; - TEdge *PrevInAEL; - TEdge *NextInSEL; - TEdge *PrevInSEL; -}; - -struct IntersectNode { - TEdge *Edge1; - TEdge *Edge2; - IntPoint Pt; -}; - -struct LocalMinimum { - cInt Y; - TEdge *LeftBound; - TEdge *RightBound; -}; - -struct OutPt; - -//OutRec: contains a path in the clipping solution. Edges in the AEL will -//carry a pointer to an OutRec when they are part of the clipping solution. -struct OutRec { - int Idx; - bool IsHole; - bool IsOpen; - OutRec *FirstLeft; //see comments in clipper.pas - PolyNode *PolyNd; - OutPt *Pts; - OutPt *BottomPt; -}; - -struct OutPt { - int Idx; - IntPoint Pt; - OutPt *Next; - OutPt *Prev; -}; - -struct Join { - OutPt *OutPt1; - OutPt *OutPt2; - IntPoint OffPt; -}; - -struct LocMinSorter -{ - inline bool operator()(const LocalMinimum& locMin1, const LocalMinimum& locMin2) - { - return locMin2.Y < locMin1.Y; - } -}; - -//------------------------------------------------------------------------------ -//------------------------------------------------------------------------------ - -inline cInt Round(double val) -{ - if ((val < 0)) return static_cast(val - 0.5); - else return static_cast(val + 0.5); -} -//------------------------------------------------------------------------------ - -inline cInt Abs(cInt val) -{ - return val < 0 ? -val : val; -} - -//------------------------------------------------------------------------------ -// PolyTree methods ... -//------------------------------------------------------------------------------ - -void PolyTree::Clear() -{ - for (PolyNodes::size_type i = 0; i < AllNodes.size(); ++i) - delete AllNodes[i]; - AllNodes.resize(0); - Childs.resize(0); -} -//------------------------------------------------------------------------------ - -PolyNode* PolyTree::GetFirst() const -{ - if (!Childs.empty()) - return Childs[0]; - else - return 0; -} -//------------------------------------------------------------------------------ - -int PolyTree::Total() const -{ - int result = (int)AllNodes.size(); - //with negative offsets, ignore the hidden outer polygon ... - if (result > 0 && Childs[0] != AllNodes[0]) result--; - return result; -} - -//------------------------------------------------------------------------------ -// PolyNode methods ... -//------------------------------------------------------------------------------ - -PolyNode::PolyNode(): Childs(), Parent(0), Index(0), m_IsOpen(false) -{ -} -//------------------------------------------------------------------------------ - -int PolyNode::ChildCount() const -{ - return (int)Childs.size(); -} -//------------------------------------------------------------------------------ - -void PolyNode::AddChild(PolyNode& child) -{ - unsigned cnt = (unsigned)Childs.size(); - Childs.push_back(&child); - child.Parent = this; - child.Index = cnt; -} -//------------------------------------------------------------------------------ - -PolyNode* PolyNode::GetNext() const -{ - if (!Childs.empty()) - return Childs[0]; - else - return GetNextSiblingUp(); -} -//------------------------------------------------------------------------------ - -PolyNode* PolyNode::GetNextSiblingUp() const -{ - if (!Parent) //protects against PolyTree.GetNextSiblingUp() - return 0; - else if (Index == Parent->Childs.size() - 1) - return Parent->GetNextSiblingUp(); - else - return Parent->Childs[Index + 1]; -} -//------------------------------------------------------------------------------ - -bool PolyNode::IsHole() const -{ - bool result = true; - PolyNode* node = Parent; - while (node) - { - result = !result; - node = node->Parent; - } - return result; -} -//------------------------------------------------------------------------------ - -bool PolyNode::IsOpen() const -{ - return m_IsOpen; -} -//------------------------------------------------------------------------------ - -#ifndef use_int32 - -//------------------------------------------------------------------------------ -// Int128 class (enables safe math on signed 64bit integers) -// eg Int128 val1((long64)9223372036854775807); //ie 2^63 -1 -// Int128 val2((long64)9223372036854775807); -// Int128 val3 = val1 * val2; -// val3.AsString => "85070591730234615847396907784232501249" (8.5e+37) -//------------------------------------------------------------------------------ - -class Int128 -{ - public: - ulong64 lo; - long64 hi; - - Int128(long64 _lo = 0) - { - lo = (ulong64)_lo; - if (_lo < 0) hi = -1; else hi = 0; - } - - - Int128(const Int128 &val): lo(val.lo), hi(val.hi){} - - Int128(const long64& _hi, const ulong64& _lo): lo(_lo), hi(_hi){} - - Int128& operator = (const long64 &val) - { - lo = (ulong64)val; - if (val < 0) hi = -1; else hi = 0; - return *this; - } - - bool operator == (const Int128 &val) const - {return (hi == val.hi && lo == val.lo);} - - bool operator != (const Int128 &val) const - { return !(*this == val);} - - bool operator > (const Int128 &val) const - { - if (hi != val.hi) - return hi > val.hi; - else - return lo > val.lo; - } - - bool operator < (const Int128 &val) const - { - if (hi != val.hi) - return hi < val.hi; - else - return lo < val.lo; - } - - bool operator >= (const Int128 &val) const - { return !(*this < val);} - - bool operator <= (const Int128 &val) const - { return !(*this > val);} - - Int128& operator += (const Int128 &rhs) - { - hi += rhs.hi; - lo += rhs.lo; - if (lo < rhs.lo) hi++; - return *this; - } - - Int128 operator + (const Int128 &rhs) const - { - Int128 result(*this); - result+= rhs; - return result; - } - - Int128& operator -= (const Int128 &rhs) - { - *this += -rhs; - return *this; - } - - Int128 operator - (const Int128 &rhs) const - { - Int128 result(*this); - result -= rhs; - return result; - } - - Int128 operator-() const //unary negation - { - if (lo == 0) - return Int128(-hi, 0); - else - return Int128(~hi, ~lo + 1); - } - - operator double() const - { - const double shift64 = 18446744073709551616.0; //2^64 - if (hi < 0) - { - if (lo == 0) return (double)hi * shift64; - else return -(double)(~lo + ~hi * shift64); - } - else - return (double)(lo + hi * shift64); - } - -}; -//------------------------------------------------------------------------------ - -Int128 Int128Mul (long64 lhs, long64 rhs) -{ - bool negate = (lhs < 0) != (rhs < 0); - - if (lhs < 0) lhs = -lhs; - ulong64 int1Hi = ulong64(lhs) >> 32; - ulong64 int1Lo = ulong64(lhs & 0xFFFFFFFF); - - if (rhs < 0) rhs = -rhs; - ulong64 int2Hi = ulong64(rhs) >> 32; - ulong64 int2Lo = ulong64(rhs & 0xFFFFFFFF); - - //nb: see comments in clipper.pas - ulong64 a = int1Hi * int2Hi; - ulong64 b = int1Lo * int2Lo; - ulong64 c = int1Hi * int2Lo + int1Lo * int2Hi; - - Int128 tmp; - tmp.hi = long64(a + (c >> 32)); - tmp.lo = long64(c << 32); - tmp.lo += long64(b); - if (tmp.lo < b) tmp.hi++; - if (negate) tmp = -tmp; - return tmp; -}; -#endif - -//------------------------------------------------------------------------------ -// Miscellaneous global functions -//------------------------------------------------------------------------------ - -bool Orientation(const Path &poly) -{ - return Area(poly) >= 0; -} -//------------------------------------------------------------------------------ - -double Area(const Path &poly) -{ - int size = (int)poly.size(); - if (size < 3) return 0; - - double a = 0; - for (int i = 0, j = size -1; i < size; ++i) - { - a += ((double)poly[j].X + poly[i].X) * ((double)poly[j].Y - poly[i].Y); - j = i; - } - return -a * 0.5; -} -//------------------------------------------------------------------------------ - -double Area(const OutPt *op) -{ - const OutPt *startOp = op; - if (!op) return 0; - double a = 0; - do { - a += (double)(op->Prev->Pt.X + op->Pt.X) * (double)(op->Prev->Pt.Y - op->Pt.Y); - op = op->Next; - } while (op != startOp); - return a * 0.5; -} -//------------------------------------------------------------------------------ - -double Area(const OutRec &outRec) -{ - return Area(outRec.Pts); -} -//------------------------------------------------------------------------------ - -bool PointIsVertex(const IntPoint &Pt, OutPt *pp) -{ - OutPt *pp2 = pp; - do - { - if (pp2->Pt == Pt) return true; - pp2 = pp2->Next; - } - while (pp2 != pp); - return false; -} -//------------------------------------------------------------------------------ - -//See "The Point in Polygon Problem for Arbitrary Polygons" by Hormann & Agathos -//http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.88.5498&rep=rep1&type=pdf -int PointInPolygon(const IntPoint &pt, const Path &path) -{ - //returns 0 if false, +1 if true, -1 if pt ON polygon boundary - int result = 0; - size_t cnt = path.size(); - if (cnt < 3) return 0; - IntPoint ip = path[0]; - for(size_t i = 1; i <= cnt; ++i) - { - IntPoint ipNext = (i == cnt ? path[0] : path[i]); - if (ipNext.Y == pt.Y) - { - if ((ipNext.X == pt.X) || (ip.Y == pt.Y && - ((ipNext.X > pt.X) == (ip.X < pt.X)))) return -1; - } - if ((ip.Y < pt.Y) != (ipNext.Y < pt.Y)) - { - if (ip.X >= pt.X) - { - if (ipNext.X > pt.X) result = 1 - result; - else - { - double d = (double)(ip.X - pt.X) * (ipNext.Y - pt.Y) - - (double)(ipNext.X - pt.X) * (ip.Y - pt.Y); - if (!d) return -1; - if ((d > 0) == (ipNext.Y > ip.Y)) result = 1 - result; - } - } else - { - if (ipNext.X > pt.X) - { - double d = (double)(ip.X - pt.X) * (ipNext.Y - pt.Y) - - (double)(ipNext.X - pt.X) * (ip.Y - pt.Y); - if (!d) return -1; - if ((d > 0) == (ipNext.Y > ip.Y)) result = 1 - result; - } - } - } - ip = ipNext; - } - return result; -} -//------------------------------------------------------------------------------ - -int PointInPolygon (const IntPoint &pt, OutPt *op) -{ - //returns 0 if false, +1 if true, -1 if pt ON polygon boundary - int result = 0; - OutPt* startOp = op; - for(;;) - { - if (op->Next->Pt.Y == pt.Y) - { - if ((op->Next->Pt.X == pt.X) || (op->Pt.Y == pt.Y && - ((op->Next->Pt.X > pt.X) == (op->Pt.X < pt.X)))) return -1; - } - if ((op->Pt.Y < pt.Y) != (op->Next->Pt.Y < pt.Y)) - { - if (op->Pt.X >= pt.X) - { - if (op->Next->Pt.X > pt.X) result = 1 - result; - else - { - double d = (double)(op->Pt.X - pt.X) * (op->Next->Pt.Y - pt.Y) - - (double)(op->Next->Pt.X - pt.X) * (op->Pt.Y - pt.Y); - if (!d) return -1; - if ((d > 0) == (op->Next->Pt.Y > op->Pt.Y)) result = 1 - result; - } - } else - { - if (op->Next->Pt.X > pt.X) - { - double d = (double)(op->Pt.X - pt.X) * (op->Next->Pt.Y - pt.Y) - - (double)(op->Next->Pt.X - pt.X) * (op->Pt.Y - pt.Y); - if (!d) return -1; - if ((d > 0) == (op->Next->Pt.Y > op->Pt.Y)) result = 1 - result; - } - } - } - op = op->Next; - if (startOp == op) break; - } - return result; -} -//------------------------------------------------------------------------------ - -bool Poly2ContainsPoly1(OutPt *OutPt1, OutPt *OutPt2) -{ - OutPt* op = OutPt1; - do - { - //nb: PointInPolygon returns 0 if false, +1 if true, -1 if pt on polygon - int res = PointInPolygon(op->Pt, OutPt2); - if (res >= 0) return res > 0; - op = op->Next; - } - while (op != OutPt1); - return true; -} -//---------------------------------------------------------------------- - -bool SlopesEqual(const TEdge &e1, const TEdge &e2, bool UseFullInt64Range) -{ -#ifndef use_int32 - if (UseFullInt64Range) - return Int128Mul(e1.Top.Y - e1.Bot.Y, e2.Top.X - e2.Bot.X) == - Int128Mul(e1.Top.X - e1.Bot.X, e2.Top.Y - e2.Bot.Y); - else -#endif - return (e1.Top.Y - e1.Bot.Y) * (e2.Top.X - e2.Bot.X) == - (e1.Top.X - e1.Bot.X) * (e2.Top.Y - e2.Bot.Y); -} -//------------------------------------------------------------------------------ - -bool SlopesEqual(const IntPoint pt1, const IntPoint pt2, - const IntPoint pt3, bool UseFullInt64Range) -{ -#ifndef use_int32 - if (UseFullInt64Range) - return Int128Mul(pt1.Y-pt2.Y, pt2.X-pt3.X) == Int128Mul(pt1.X-pt2.X, pt2.Y-pt3.Y); - else -#endif - return (pt1.Y-pt2.Y)*(pt2.X-pt3.X) == (pt1.X-pt2.X)*(pt2.Y-pt3.Y); -} -//------------------------------------------------------------------------------ - -bool SlopesEqual(const IntPoint pt1, const IntPoint pt2, - const IntPoint pt3, const IntPoint pt4, bool UseFullInt64Range) -{ -#ifndef use_int32 - if (UseFullInt64Range) - return Int128Mul(pt1.Y-pt2.Y, pt3.X-pt4.X) == Int128Mul(pt1.X-pt2.X, pt3.Y-pt4.Y); - else -#endif - return (pt1.Y-pt2.Y)*(pt3.X-pt4.X) == (pt1.X-pt2.X)*(pt3.Y-pt4.Y); -} -//------------------------------------------------------------------------------ - -inline bool IsHorizontal(TEdge &e) -{ - return e.Dx == HORIZONTAL; -} -//------------------------------------------------------------------------------ - -inline double GetDx(const IntPoint pt1, const IntPoint pt2) -{ - return (pt1.Y == pt2.Y) ? - HORIZONTAL : (double)(pt2.X - pt1.X) / (pt2.Y - pt1.Y); -} -//--------------------------------------------------------------------------- - -inline void SetDx(TEdge &e) -{ - cInt dy = (e.Top.Y - e.Bot.Y); - if (dy == 0) e.Dx = HORIZONTAL; - else e.Dx = (double)(e.Top.X - e.Bot.X) / dy; -} -//--------------------------------------------------------------------------- - -inline void SwapSides(TEdge &Edge1, TEdge &Edge2) -{ - EdgeSide Side = Edge1.Side; - Edge1.Side = Edge2.Side; - Edge2.Side = Side; -} -//------------------------------------------------------------------------------ - -inline void SwapPolyIndexes(TEdge &Edge1, TEdge &Edge2) -{ - int OutIdx = Edge1.OutIdx; - Edge1.OutIdx = Edge2.OutIdx; - Edge2.OutIdx = OutIdx; -} -//------------------------------------------------------------------------------ - -inline cInt TopX(TEdge &edge, const cInt currentY) -{ - return ( currentY == edge.Top.Y ) ? - edge.Top.X : edge.Bot.X + Round(edge.Dx *(currentY - edge.Bot.Y)); -} -//------------------------------------------------------------------------------ - -void IntersectPoint(TEdge &Edge1, TEdge &Edge2, IntPoint &ip) -{ -#ifdef use_xyz - ip.Z = 0; -#endif - - double b1, b2; - if (Edge1.Dx == Edge2.Dx) - { - ip.Y = Edge1.Curr.Y; - ip.X = TopX(Edge1, ip.Y); - return; - } - else if (Edge1.Dx == 0.0) - { - ip.X = Edge1.Bot.X; - if (IsHorizontal(Edge2)) - ip.Y = Edge2.Bot.Y; - else - { - b2 = Edge2.Bot.Y - (Edge2.Bot.X / Edge2.Dx); - if (Edge2.Bot.X == Edge1.Bot.X) ip.Y = Round(ip.X / Edge2.Dx + b2); - else if (Edge2.Bot.X < Edge1.Bot.X) ip.Y = Round((ip.X - 0.5) / Edge2.Dx + b2); - else ip.Y = Round((ip.X + 0.5) / Edge2.Dx + b2); - } - } - else if (Edge2.Dx == 0.0) - { - ip.X = Edge2.Bot.X; - if (IsHorizontal(Edge1)) - ip.Y = Edge1.Bot.Y; - else - { - b1 = Edge1.Bot.Y - (Edge1.Bot.X / Edge1.Dx); - if (Edge1.Bot.X == Edge2.Bot.X) ip.Y = Round(ip.X / Edge1.Dx + b1); - else if (Edge1.Bot.X < Edge2.Bot.X) ip.Y = Round((ip.X - 0.5) / Edge1.Dx + b1); - else ip.Y = Round((ip.X + 0.5) / Edge1.Dx + b1); - } - } - else - { - b1 = Edge1.Bot.X - Edge1.Bot.Y * Edge1.Dx; - b2 = Edge2.Bot.X - Edge2.Bot.Y * Edge2.Dx; - double q = (b2-b1) / (Edge1.Dx - Edge2.Dx); - ip.Y = Round(q); - if (std::fabs(Edge1.Dx) < std::fabs(Edge2.Dx)) - ip.X = Round(Edge1.Dx * q + b1); - else - ip.X = Round(Edge2.Dx * q + b2); - // the idea is simply to looking closer - // towards the origins of the lines (Edge1.Bot and Edge2.Bot) - // until we do not find pixels that both lines travel through - bool keep_searching = false; - double by1 = Edge1.Bot.Y - (Edge1.Bot.X / Edge1.Dx); - double by2 = Edge2.Bot.Y - (Edge2.Bot.X / Edge2.Dx); - double bx1 = Edge1.Bot.X - (Edge1.Bot.Y * Edge1.Dx); - double bx2 = Edge2.Bot.X - (Edge2.Bot.Y * Edge2.Dx); - do - { - keep_searching = false; - cInt y1 = ip.Y; - cInt y2 = ip.Y; - if (Edge1.Bot.X > ip.X) - { - if (Edge1.Bot.Y >= ip.Y) - { - y1 = std::floor(((ip.X + 0.5) / Edge1.Dx + by1) + 0.5); - } - else - { - y1 = std::ceil(((ip.X + 0.5) / Edge1.Dx + by1) - 0.5); - } - } - else if (Edge1.Bot.X < ip.X) - { - if (Edge1.Bot.Y >= ip.Y) - { - y1 = std::floor(((ip.X - 0.5) / Edge1.Dx + by1) + 0.5); - } - else - { - y1 = std::ceil(((ip.X - 0.5) / Edge1.Dx + by1) - 0.5); - } - } - if (ip.Y >= Edge1.Bot.Y && y1 < Edge1.Bot.Y) y1 = Edge1.Bot.Y; - else if (ip.Y <= Edge1.Bot.Y && y1 > Edge1.Bot.Y) y1 = Edge1.Bot.Y; - if (Edge2.Bot.X > ip.X) - { - if (Edge2.Bot.Y >= ip.Y) - { - y2 = std::floor(((ip.X + 0.5) / Edge2.Dx + by2) + 0.5); - } - else - { - y2 = std::ceil(((ip.X + 0.5) / Edge2.Dx + by2) - 0.5); - } - } - else if (Edge2.Bot.X < ip.X) - { - if (Edge2.Bot.Y >= ip.Y) - { - y2 = std::floor(((ip.X - 0.5) / Edge2.Dx + by2) + 0.5); - } - else - { - y2 = std::ceil(((ip.X - 0.5) / Edge2.Dx + by2) - 0.5); - } - } - if (ip.Y >= Edge2.Bot.Y && y2 < Edge2.Bot.Y) y2 = Edge2.Bot.Y; - else if (ip.Y <= Edge2.Bot.Y && y2 > Edge2.Bot.Y) y2 = Edge2.Bot.Y; - cInt x1 = ip.X; - cInt x2 = ip.X; - if (Edge1.Bot.Y > ip.Y) - { - if (Edge1.Bot.X >= ip.X) - { - x1 = std::floor(((ip.Y + 0.5) * Edge1.Dx + bx1) + 0.5); - } - else - { - x1 = std::ceil(((ip.Y + 0.5) * Edge1.Dx + bx1) - 0.5); - } - } - else if (Edge1.Bot.Y < ip.Y) - { - if (Edge1.Bot.X >= ip.X) - { - x1 = std::floor(((ip.Y - 0.5) * Edge1.Dx + bx1) + 0.5); - } - else - { - x1 = std::ceil(((ip.Y - 0.5) * Edge1.Dx + bx1) - 0.5); - } - } - if (ip.X >= Edge1.Bot.X && x1 < Edge1.Bot.X) x1 = Edge1.Bot.X; - else if (ip.X <= Edge1.Bot.X && x1 > Edge1.Bot.X) x1 = Edge1.Bot.X; - if (Edge2.Bot.Y > ip.Y) - { - if (Edge2.Bot.X >= ip.X) - { - x2 = std::floor(((ip.Y + 0.5) * Edge2.Dx + bx2) + 0.5); - } - else - { - x2 = std::ceil(((ip.Y + 0.5) * Edge2.Dx + bx2) - 0.5); - } - } - else if (Edge2.Bot.Y < ip.Y) - { - if (Edge2.Bot.X >= ip.X) - { - x2 = std::floor(((ip.Y - 0.5) * Edge2.Dx + bx2) + 0.5); - } - else - { - x2 = std::ceil(((ip.Y - 0.5) * Edge2.Dx + bx2) - 0.5); - } - } - if (ip.X >= Edge2.Bot.X && x2 < Edge2.Bot.X) x2 = Edge2.Bot.X; - else if (ip.X <= Edge2.Bot.X && x2 > Edge2.Bot.X) x2 = Edge2.Bot.X; - if (y1 > ip.Y && y2 > ip.Y) - { - ip.Y = std::min(y1,y2); - keep_searching = true; - } - else if (y1 < ip.Y && y2 < ip.Y) - { - ip.Y = std::max(y1,y2); - keep_searching = true; - } - if (x1 > ip.X && x2 > ip.X) - { - ip.X = std::min(x1,x2); - keep_searching = true; - } - else if (x1 < ip.X && x2 < ip.X) - { - ip.X = std::max(x1,x2); - keep_searching = true; - } - } - while (keep_searching); - } - - if (ip.Y < Edge1.Top.Y || ip.Y < Edge2.Top.Y) - { - if (Edge1.Top.Y > Edge2.Top.Y) - ip.Y = Edge1.Top.Y; - else - ip.Y = Edge2.Top.Y; - if (std::fabs(Edge1.Dx) < std::fabs(Edge2.Dx)) - ip.X = TopX(Edge1, ip.Y); - else - ip.X = TopX(Edge2, ip.Y); - } - //finally, don't allow 'ip' to be BELOW curr.Y (ie bottom of scanbeam) ... - if (ip.Y > Edge1.Curr.Y) - { - ip.Y = Edge1.Curr.Y; - //use the more vertical edge to derive X ... - if (std::fabs(Edge1.Dx) > std::fabs(Edge2.Dx)) - ip.X = TopX(Edge2, ip.Y); else - ip.X = TopX(Edge1, ip.Y); - } -} -//------------------------------------------------------------------------------ - -void ReversePolyPtLinks(OutPt *pp) -{ - if (!pp) return; - OutPt *pp1, *pp2; - pp1 = pp; - do { - pp2 = pp1->Next; - pp1->Next = pp1->Prev; - pp1->Prev = pp2; - pp1 = pp2; - } while( pp1 != pp ); -} -//------------------------------------------------------------------------------ - -void DisposeOutPts(OutPt*& pp) -{ - if (pp == 0) return; - pp->Prev->Next = 0; - while( pp ) - { - OutPt *tmpPp = pp; - pp = pp->Next; - delete tmpPp; - } -} -//------------------------------------------------------------------------------ - -inline void InitEdge(TEdge* e, TEdge* eNext, TEdge* ePrev, const IntPoint& Pt) -{ - std::memset(e, 0, sizeof(TEdge)); - e->Next = eNext; - e->Prev = ePrev; - e->Curr = Pt; - e->OutIdx = Unassigned; -} -//------------------------------------------------------------------------------ - -void InitEdge2(TEdge& e, PolyType Pt) -{ - if (e.Curr.Y >= e.Next->Curr.Y) - { - e.Bot = e.Curr; - e.Top = e.Next->Curr; - } else - { - e.Top = e.Curr; - e.Bot = e.Next->Curr; - } - SetDx(e); - e.PolyTyp = Pt; -} -//------------------------------------------------------------------------------ - -TEdge* RemoveEdge(TEdge* e) -{ - //removes e from double_linked_list (but without removing from memory) - e->Prev->Next = e->Next; - e->Next->Prev = e->Prev; - TEdge* result = e->Next; - e->Prev = 0; //flag as removed (see ClipperBase.Clear) - return result; -} -//------------------------------------------------------------------------------ - -inline void ReverseHorizontal(TEdge &e) -{ - //swap horizontal edges' Top and Bottom x's so they follow the natural - //progression of the bounds - ie so their xbots will align with the - //adjoining lower edge. [Helpful in the ProcessHorizontal() method.] - std::swap(e.Top.X, e.Bot.X); -#ifdef use_xyz - std::swap(e.Top.Z, e.Bot.Z); -#endif -} -//------------------------------------------------------------------------------ - -void SwapPoints(IntPoint &pt1, IntPoint &pt2) -{ - IntPoint tmp = pt1; - pt1 = pt2; - pt2 = tmp; -} -//------------------------------------------------------------------------------ - -bool GetOverlapSegment(IntPoint pt1a, IntPoint pt1b, IntPoint pt2a, - IntPoint pt2b, IntPoint &pt1, IntPoint &pt2) -{ - //precondition: segments are Collinear. - if (Abs(pt1a.X - pt1b.X) > Abs(pt1a.Y - pt1b.Y)) - { - if (pt1a.X > pt1b.X) SwapPoints(pt1a, pt1b); - if (pt2a.X > pt2b.X) SwapPoints(pt2a, pt2b); - if (pt1a.X > pt2a.X) pt1 = pt1a; else pt1 = pt2a; - if (pt1b.X < pt2b.X) pt2 = pt1b; else pt2 = pt2b; - return pt1.X < pt2.X; - } else - { - if (pt1a.Y < pt1b.Y) SwapPoints(pt1a, pt1b); - if (pt2a.Y < pt2b.Y) SwapPoints(pt2a, pt2b); - if (pt1a.Y < pt2a.Y) pt1 = pt1a; else pt1 = pt2a; - if (pt1b.Y > pt2b.Y) pt2 = pt1b; else pt2 = pt2b; - return pt1.Y > pt2.Y; - } -} -//------------------------------------------------------------------------------ - -bool FirstIsBottomPt(const OutPt* btmPt1, const OutPt* btmPt2) -{ - OutPt *p = btmPt1->Prev; - while ((p->Pt == btmPt1->Pt) && (p != btmPt1)) p = p->Prev; - double dx1p = std::fabs(GetDx(btmPt1->Pt, p->Pt)); - p = btmPt1->Next; - while ((p->Pt == btmPt1->Pt) && (p != btmPt1)) p = p->Next; - double dx1n = std::fabs(GetDx(btmPt1->Pt, p->Pt)); - - p = btmPt2->Prev; - while ((p->Pt == btmPt2->Pt) && (p != btmPt2)) p = p->Prev; - double dx2p = std::fabs(GetDx(btmPt2->Pt, p->Pt)); - p = btmPt2->Next; - while ((p->Pt == btmPt2->Pt) && (p != btmPt2)) p = p->Next; - double dx2n = std::fabs(GetDx(btmPt2->Pt, p->Pt)); - - if (std::max(dx1p, dx1n) == std::max(dx2p, dx2n) && - std::min(dx1p, dx1n) == std::min(dx2p, dx2n)) - return Area(btmPt1) > 0; //if otherwise identical use orientation - else - return (dx1p >= dx2p && dx1p >= dx2n) || (dx1n >= dx2p && dx1n >= dx2n); -} -//------------------------------------------------------------------------------ - -OutPt* GetBottomPt(OutPt *pp) -{ - OutPt* dups = 0; - OutPt* p = pp->Next; - while (p != pp) - { - if (p->Pt.Y > pp->Pt.Y) - { - pp = p; - dups = 0; - } - else if (p->Pt.Y == pp->Pt.Y && p->Pt.X <= pp->Pt.X) - { - if (p->Pt.X < pp->Pt.X) - { - dups = 0; - pp = p; - } else - { - if (p->Next != pp && p->Prev != pp) dups = p; - } - } - p = p->Next; - } - if (dups) - { - //there appears to be at least 2 vertices at BottomPt so ... - while (dups != p) - { - if (!FirstIsBottomPt(p, dups)) pp = dups; - dups = dups->Next; - while (dups->Pt != pp->Pt) dups = dups->Next; - } - } - return pp; -} -//------------------------------------------------------------------------------ - -bool Pt2IsBetweenPt1AndPt3(const IntPoint pt1, - const IntPoint pt2, const IntPoint pt3) -{ - if ((pt1 == pt3) || (pt1 == pt2) || (pt3 == pt2)) - return false; - else if (pt1.X != pt3.X) - return (pt2.X > pt1.X) == (pt2.X < pt3.X); - else - return (pt2.Y > pt1.Y) == (pt2.Y < pt3.Y); -} -//------------------------------------------------------------------------------ - -bool HorzSegmentsOverlap(cInt seg1a, cInt seg1b, cInt seg2a, cInt seg2b) -{ - if (seg1a > seg1b) std::swap(seg1a, seg1b); - if (seg2a > seg2b) std::swap(seg2a, seg2b); - return (seg1a < seg2b) && (seg2a < seg1b); -} - -//------------------------------------------------------------------------------ -// ClipperBase class methods ... -//------------------------------------------------------------------------------ - -ClipperBase::ClipperBase() //constructor -{ - m_CurrentLM = m_MinimaList.begin(); //begin() == end() here - m_UseFullRange = false; -} -//------------------------------------------------------------------------------ - -ClipperBase::~ClipperBase() //destructor -{ - Clear(); -} -//------------------------------------------------------------------------------ - -void RangeTest(const IntPoint& Pt, bool& useFullRange) -{ - if (useFullRange) - { - if (Pt.X > hiRange || Pt.Y > hiRange || -Pt.X > hiRange || -Pt.Y > hiRange) - { - std::stringstream s; - s << "Coordinate outside allowed range: "; - s << std::fixed << Pt.X << " " << Pt.Y << " " << -Pt.X << " " << -Pt.Y; - throw clipperException(s.str().c_str()); - } - } - else if (Pt.X > loRange|| Pt.Y > loRange || -Pt.X > loRange || -Pt.Y > loRange) - { - useFullRange = true; - RangeTest(Pt, useFullRange); - } -} -//------------------------------------------------------------------------------ - -TEdge* FindNextLocMin(TEdge* E) -{ - for (;;) - { - while (E->Bot != E->Prev->Bot || E->Curr == E->Top) E = E->Next; - if (!IsHorizontal(*E) && !IsHorizontal(*E->Prev)) break; - while (IsHorizontal(*E->Prev)) E = E->Prev; - TEdge* E2 = E; - while (IsHorizontal(*E)) E = E->Next; - if (E->Top.Y == E->Prev->Bot.Y) continue; //ie just an intermediate horz. - if (E2->Prev->Bot.X < E->Bot.X) E = E2; - break; - } - return E; -} -//------------------------------------------------------------------------------ - -TEdge* ClipperBase::ProcessBound(TEdge* E, bool NextIsForward) -{ - TEdge *Result = E; - TEdge *Horz = 0; - - if (E->OutIdx == Skip) - { - //if edges still remain in the current bound beyond the skip edge then - //create another LocMin and call ProcessBound once more - if (NextIsForward) - { - while (E->Top.Y == E->Next->Bot.Y) E = E->Next; - //don't include top horizontals when parsing a bound a second time, - //they will be contained in the opposite bound ... - while (E != Result && IsHorizontal(*E)) E = E->Prev; - } - else - { - while (E->Top.Y == E->Prev->Bot.Y) E = E->Prev; - while (E != Result && IsHorizontal(*E)) E = E->Next; - } - - if (E == Result) - { - if (NextIsForward) Result = E->Next; - else Result = E->Prev; - } - else - { - //there are more edges in the bound beyond result starting with E - if (NextIsForward) - E = Result->Next; - else - E = Result->Prev; - MinimaList::value_type locMin; - locMin.Y = E->Bot.Y; - locMin.LeftBound = 0; - locMin.RightBound = E; - E->WindDelta = 0; - Result = ProcessBound(E, NextIsForward); - m_MinimaList.push_back(locMin); - } - return Result; - } - - TEdge *EStart; - - if (IsHorizontal(*E)) - { - //We need to be careful with open paths because this may not be a - //true local minima (ie E may be following a skip edge). - //Also, consecutive horz. edges may start heading left before going right. - if (NextIsForward) - EStart = E->Prev; - else - EStart = E->Next; - if (IsHorizontal(*EStart)) //ie an adjoining horizontal skip edge - { - if (EStart->Bot.X != E->Bot.X && EStart->Top.X != E->Bot.X) - ReverseHorizontal(*E); - } - else if (EStart->Bot.X != E->Bot.X) - ReverseHorizontal(*E); - } - - EStart = E; - if (NextIsForward) - { - while (Result->Top.Y == Result->Next->Bot.Y && Result->Next->OutIdx != Skip) - Result = Result->Next; - if (IsHorizontal(*Result) && Result->Next->OutIdx != Skip) - { - //nb: at the top of a bound, horizontals are added to the bound - //only when the preceding edge attaches to the horizontal's left vertex - //unless a Skip edge is encountered when that becomes the top divide - Horz = Result; - while (IsHorizontal(*Horz->Prev)) Horz = Horz->Prev; - if (Horz->Prev->Top.X > Result->Next->Top.X) Result = Horz->Prev; - } - while (E != Result) - { - E->NextInLML = E->Next; - if (IsHorizontal(*E) && E != EStart && - E->Bot.X != E->Prev->Top.X) ReverseHorizontal(*E); - E = E->Next; - } - if (IsHorizontal(*E) && E != EStart && E->Bot.X != E->Prev->Top.X) - ReverseHorizontal(*E); - Result = Result->Next; //move to the edge just beyond current bound - } else - { - while (Result->Top.Y == Result->Prev->Bot.Y && Result->Prev->OutIdx != Skip) - Result = Result->Prev; - if (IsHorizontal(*Result) && Result->Prev->OutIdx != Skip) - { - Horz = Result; - while (IsHorizontal(*Horz->Next)) Horz = Horz->Next; - if (Horz->Next->Top.X == Result->Prev->Top.X || - Horz->Next->Top.X > Result->Prev->Top.X) Result = Horz->Next; - } - - while (E != Result) - { - E->NextInLML = E->Prev; - if (IsHorizontal(*E) && E != EStart && E->Bot.X != E->Next->Top.X) - ReverseHorizontal(*E); - E = E->Prev; - } - if (IsHorizontal(*E) && E != EStart && E->Bot.X != E->Next->Top.X) - ReverseHorizontal(*E); - Result = Result->Prev; //move to the edge just beyond current bound - } - - return Result; -} -//------------------------------------------------------------------------------ - -bool ClipperBase::AddPath(const Path &pg, PolyType PolyTyp, bool Closed) -{ -#ifdef use_lines - if (!Closed && PolyTyp == ptClip) - throw clipperException("AddPath: Open paths must be subject."); -#else - if (!Closed) - throw clipperException("AddPath: Open paths have been disabled."); -#endif - - int highI = (int)pg.size() -1; - if (Closed) while (highI > 0 && (pg[highI] == pg[0])) --highI; - while (highI > 0 && (pg[highI] == pg[highI -1])) --highI; - if ((Closed && highI < 2) || (!Closed && highI < 1)) return false; - - //create a new edge array ... - TEdge *edges = new TEdge [highI +1]; - - bool IsFlat = true; - //1. Basic (first) edge initialization ... - try - { - edges[1].Curr = pg[1]; - RangeTest(pg[0], m_UseFullRange); - RangeTest(pg[highI], m_UseFullRange); - InitEdge(&edges[0], &edges[1], &edges[highI], pg[0]); - InitEdge(&edges[highI], &edges[0], &edges[highI-1], pg[highI]); - for (int i = highI - 1; i >= 1; --i) - { - RangeTest(pg[i], m_UseFullRange); - InitEdge(&edges[i], &edges[i+1], &edges[i-1], pg[i]); - } - } - catch(std::exception const&) - { - delete [] edges; - throw; //range test fails - } - TEdge *eStart = &edges[0]; - - //2. Remove duplicate vertices, and (when closed) collinear edges ... - TEdge *E = eStart, *eLoopStop = eStart; - for (;;) - { - //nb: allows matching start and end points when not Closed ... - if (E->Curr == E->Next->Curr && (Closed || E->Next != eStart)) - { - if (E == E->Next) break; - if (E == eStart) eStart = E->Next; - E = RemoveEdge(E); - eLoopStop = E; - continue; - } - if (E->Prev == E->Next) - break; //only two vertices - else if (Closed && - SlopesEqual(E->Prev->Curr, E->Curr, E->Next->Curr, m_UseFullRange) && - (!m_PreserveCollinear || - !Pt2IsBetweenPt1AndPt3(E->Prev->Curr, E->Curr, E->Next->Curr))) - { - //Collinear edges are allowed for open paths but in closed paths - //the default is to merge adjacent collinear edges into a single edge. - //However, if the PreserveCollinear property is enabled, only overlapping - //collinear edges (ie spikes) will be removed from closed paths. - if (E == eStart) eStart = E->Next; - E = RemoveEdge(E); - E = E->Prev; - eLoopStop = E; - continue; - } - E = E->Next; - if ((E == eLoopStop) || (!Closed && E->Next == eStart)) break; - } - - if ((!Closed && (E == E->Next)) || (Closed && (E->Prev == E->Next))) - { - delete [] edges; - return false; - } - - if (!Closed) - { - m_HasOpenPaths = true; - eStart->Prev->OutIdx = Skip; - } - - //3. Do second stage of edge initialization ... - E = eStart; - do - { - InitEdge2(*E, PolyTyp); - E = E->Next; - if (IsFlat && E->Curr.Y != eStart->Curr.Y) IsFlat = false; - } - while (E != eStart); - - //4. Finally, add edge bounds to LocalMinima list ... - - //Totally flat paths must be handled differently when adding them - //to LocalMinima list to avoid endless loops etc ... - if (IsFlat) - { - if (Closed) - { - delete [] edges; - return false; - } - E->Prev->OutIdx = Skip; - MinimaList::value_type locMin; - locMin.Y = E->Bot.Y; - locMin.LeftBound = 0; - locMin.RightBound = E; - locMin.RightBound->Side = esRight; - locMin.RightBound->WindDelta = 0; - for (;;) - { - if (E->Bot.X != E->Prev->Top.X) ReverseHorizontal(*E); - if (E->Next->OutIdx == Skip) break; - E->NextInLML = E->Next; - E = E->Next; - } - m_MinimaList.push_back(locMin); - m_edges.push_back(edges); - return true; - } - - m_edges.push_back(edges); - bool leftBoundIsForward; - TEdge* EMin = 0; - - //workaround to avoid an endless loop in the while loop below when - //open paths have matching start and end points ... - if (E->Prev->Bot == E->Prev->Top) E = E->Next; - - for (;;) - { - E = FindNextLocMin(E); - if (E == EMin) break; - else if (!EMin) EMin = E; - - //E and E.Prev now share a local minima (left aligned if horizontal). - //Compare their slopes to find which starts which bound ... - MinimaList::value_type locMin; - locMin.Y = E->Bot.Y; - if (E->Dx < E->Prev->Dx) - { - locMin.LeftBound = E->Prev; - locMin.RightBound = E; - leftBoundIsForward = false; //Q.nextInLML = Q.prev - } else - { - locMin.LeftBound = E; - locMin.RightBound = E->Prev; - leftBoundIsForward = true; //Q.nextInLML = Q.next - } - - if (!Closed) locMin.LeftBound->WindDelta = 0; - else if (locMin.LeftBound->Next == locMin.RightBound) - locMin.LeftBound->WindDelta = -1; - else locMin.LeftBound->WindDelta = 1; - locMin.RightBound->WindDelta = -locMin.LeftBound->WindDelta; - - E = ProcessBound(locMin.LeftBound, leftBoundIsForward); - if (E->OutIdx == Skip) E = ProcessBound(E, leftBoundIsForward); - - TEdge* E2 = ProcessBound(locMin.RightBound, !leftBoundIsForward); - if (E2->OutIdx == Skip) E2 = ProcessBound(E2, !leftBoundIsForward); - - if (locMin.LeftBound->OutIdx == Skip) - locMin.LeftBound = 0; - else if (locMin.RightBound->OutIdx == Skip) - locMin.RightBound = 0; - m_MinimaList.push_back(locMin); - if (!leftBoundIsForward) E = E2; - } - return true; -} -//------------------------------------------------------------------------------ - -bool ClipperBase::AddPaths(const Paths &ppg, PolyType PolyTyp, bool Closed) -{ - bool result = false; - for (Paths::size_type i = 0; i < ppg.size(); ++i) - if (AddPath(ppg[i], PolyTyp, Closed)) result = true; - return result; -} -//------------------------------------------------------------------------------ - -void ClipperBase::Clear() -{ - DisposeLocalMinimaList(); - for (EdgeList::size_type i = 0; i < m_edges.size(); ++i) - { - TEdge* edges = m_edges[i]; - delete [] edges; - } - m_edges.clear(); - m_UseFullRange = false; - m_HasOpenPaths = false; -} -//------------------------------------------------------------------------------ - -void ClipperBase::Reset() -{ - m_CurrentLM = m_MinimaList.begin(); - if (m_CurrentLM == m_MinimaList.end()) return; //ie nothing to process - std::stable_sort(m_MinimaList.begin(), m_MinimaList.end(), LocMinSorter()); - - m_Scanbeam = ScanbeamList(); //clears/resets priority_queue - //reset all edges ... - for (MinimaList::iterator lm = m_MinimaList.begin(); lm != m_MinimaList.end(); ++lm) - { - InsertScanbeam(lm->Y); - TEdge* e = lm->LeftBound; - if (e) - { - e->Curr = e->Bot; - e->Side = esLeft; - e->OutIdx = Unassigned; - } - - e = lm->RightBound; - if (e) - { - e->Curr = e->Bot; - e->Side = esRight; - e->OutIdx = Unassigned; - } - } - m_ActiveEdges = 0; - m_CurrentLM = m_MinimaList.begin(); -} -//------------------------------------------------------------------------------ - -void ClipperBase::DisposeLocalMinimaList() -{ - m_MinimaList.clear(); - m_CurrentLM = m_MinimaList.begin(); -} -//------------------------------------------------------------------------------ - -bool ClipperBase::PopLocalMinima(cInt Y, const LocalMinimum *&locMin) -{ - if (m_CurrentLM == m_MinimaList.end() || (*m_CurrentLM).Y != Y) return false; - locMin = &(*m_CurrentLM); - ++m_CurrentLM; - return true; -} -//------------------------------------------------------------------------------ - -IntRect ClipperBase::GetBounds() -{ - IntRect result; - MinimaList::iterator lm = m_MinimaList.begin(); - if (lm == m_MinimaList.end()) - { - result.left = result.top = result.right = result.bottom = 0; - return result; - } - result.left = lm->LeftBound->Bot.X; - result.top = lm->LeftBound->Bot.Y; - result.right = lm->LeftBound->Bot.X; - result.bottom = lm->LeftBound->Bot.Y; - while (lm != m_MinimaList.end()) - { - //todo - needs fixing for open paths - result.bottom = std::max(result.bottom, lm->LeftBound->Bot.Y); - TEdge* e = lm->LeftBound; - for (;;) { - TEdge* bottomE = e; - while (e->NextInLML) - { - if (e->Bot.X < result.left) result.left = e->Bot.X; - if (e->Bot.X > result.right) result.right = e->Bot.X; - e = e->NextInLML; - } - result.left = std::min(result.left, e->Bot.X); - result.right = std::max(result.right, e->Bot.X); - result.left = std::min(result.left, e->Top.X); - result.right = std::max(result.right, e->Top.X); - result.top = std::min(result.top, e->Top.Y); - if (bottomE == lm->LeftBound) e = lm->RightBound; - else break; - } - ++lm; - } - return result; -} -//------------------------------------------------------------------------------ - -void ClipperBase::InsertScanbeam(const cInt Y) -{ - m_Scanbeam.push(Y); -} -//------------------------------------------------------------------------------ - -bool ClipperBase::PopScanbeam(cInt &Y) -{ - if (m_Scanbeam.empty()) return false; - Y = m_Scanbeam.top(); - m_Scanbeam.pop(); - while (!m_Scanbeam.empty() && Y == m_Scanbeam.top()) { m_Scanbeam.pop(); } // Pop duplicates. - return true; -} -//------------------------------------------------------------------------------ - -void ClipperBase::DisposeAllOutRecs(){ - for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); ++i) - DisposeOutRec(i); - m_PolyOuts.clear(); -} -//------------------------------------------------------------------------------ - -void ClipperBase::DisposeOutRec(PolyOutList::size_type index) -{ - OutRec *outRec = m_PolyOuts[index]; - if (outRec->Pts) DisposeOutPts(outRec->Pts); - delete outRec; - m_PolyOuts[index] = 0; -} -//------------------------------------------------------------------------------ - -void ClipperBase::DeleteFromAEL(TEdge *e) -{ - TEdge* AelPrev = e->PrevInAEL; - TEdge* AelNext = e->NextInAEL; - if (!AelPrev && !AelNext && (e != m_ActiveEdges)) return; //already deleted - if (AelPrev) AelPrev->NextInAEL = AelNext; - else m_ActiveEdges = AelNext; - if (AelNext) AelNext->PrevInAEL = AelPrev; - e->NextInAEL = 0; - e->PrevInAEL = 0; -} -//------------------------------------------------------------------------------ - -OutRec* ClipperBase::CreateOutRec() -{ - OutRec* result = new OutRec; - result->IsHole = false; - result->IsOpen = false; - result->FirstLeft = 0; - result->Pts = 0; - result->BottomPt = 0; - result->PolyNd = 0; - m_PolyOuts.push_back(result); - result->Idx = (int)m_PolyOuts.size() - 1; - return result; -} -//------------------------------------------------------------------------------ - -void ClipperBase::SwapPositionsInAEL(TEdge *Edge1, TEdge *Edge2) -{ - //check that one or other edge hasn't already been removed from AEL ... - if (Edge1->NextInAEL == Edge1->PrevInAEL || - Edge2->NextInAEL == Edge2->PrevInAEL) return; - - if (Edge1->NextInAEL == Edge2) - { - TEdge* Next = Edge2->NextInAEL; - if (Next) Next->PrevInAEL = Edge1; - TEdge* Prev = Edge1->PrevInAEL; - if (Prev) Prev->NextInAEL = Edge2; - Edge2->PrevInAEL = Prev; - Edge2->NextInAEL = Edge1; - Edge1->PrevInAEL = Edge2; - Edge1->NextInAEL = Next; - } - else if (Edge2->NextInAEL == Edge1) - { - TEdge* Next = Edge1->NextInAEL; - if (Next) Next->PrevInAEL = Edge2; - TEdge* Prev = Edge2->PrevInAEL; - if (Prev) Prev->NextInAEL = Edge1; - Edge1->PrevInAEL = Prev; - Edge1->NextInAEL = Edge2; - Edge2->PrevInAEL = Edge1; - Edge2->NextInAEL = Next; - } - else - { - TEdge* Next = Edge1->NextInAEL; - TEdge* Prev = Edge1->PrevInAEL; - Edge1->NextInAEL = Edge2->NextInAEL; - if (Edge1->NextInAEL) Edge1->NextInAEL->PrevInAEL = Edge1; - Edge1->PrevInAEL = Edge2->PrevInAEL; - if (Edge1->PrevInAEL) Edge1->PrevInAEL->NextInAEL = Edge1; - Edge2->NextInAEL = Next; - if (Edge2->NextInAEL) Edge2->NextInAEL->PrevInAEL = Edge2; - Edge2->PrevInAEL = Prev; - if (Edge2->PrevInAEL) Edge2->PrevInAEL->NextInAEL = Edge2; - } - - if (!Edge1->PrevInAEL) m_ActiveEdges = Edge1; - else if (!Edge2->PrevInAEL) m_ActiveEdges = Edge2; -} -//------------------------------------------------------------------------------ - -void ClipperBase::UpdateEdgeIntoAEL(TEdge *&e) -{ - if (!e->NextInLML) - throw clipperException("UpdateEdgeIntoAEL: invalid call"); - - e->NextInLML->OutIdx = e->OutIdx; - TEdge* AelPrev = e->PrevInAEL; - TEdge* AelNext = e->NextInAEL; - if (AelPrev) AelPrev->NextInAEL = e->NextInLML; - else m_ActiveEdges = e->NextInLML; - if (AelNext) AelNext->PrevInAEL = e->NextInLML; - e->NextInLML->Side = e->Side; - e->NextInLML->WindDelta = e->WindDelta; - e->NextInLML->WindCnt = e->WindCnt; - e->NextInLML->WindCnt2 = e->WindCnt2; - e = e->NextInLML; - e->Curr = e->Bot; - e->PrevInAEL = AelPrev; - e->NextInAEL = AelNext; - if (!IsHorizontal(*e)) InsertScanbeam(e->Top.Y); -} -//------------------------------------------------------------------------------ - -bool ClipperBase::LocalMinimaPending() -{ - return (m_CurrentLM != m_MinimaList.end()); -} - -//------------------------------------------------------------------------------ -// TClipper methods ... -//------------------------------------------------------------------------------ - -Clipper::Clipper(int initOptions) : ClipperBase() //constructor -{ - m_ExecuteLocked = false; - m_UseFullRange = false; - m_ReverseOutput = ((initOptions & ioReverseSolution) != 0); - m_StrictSimple = ((initOptions & ioStrictlySimple) != 0); - m_PreserveCollinear = ((initOptions & ioPreserveCollinear) != 0); - m_HasOpenPaths = false; -#ifdef use_xyz - m_ZFill = 0; -#endif -} -//------------------------------------------------------------------------------ - -#ifdef use_xyz -void Clipper::ZFillFunction(ZFillCallback zFillFunc) -{ - m_ZFill = zFillFunc; -} -//------------------------------------------------------------------------------ -#endif - -bool Clipper::Execute(ClipType clipType, Paths &solution, PolyFillType fillType) -{ - return Execute(clipType, solution, fillType, fillType); -} -//------------------------------------------------------------------------------ - -bool Clipper::Execute(ClipType clipType, PolyTree &polytree, PolyFillType fillType) -{ - return Execute(clipType, polytree, fillType, fillType); -} -//------------------------------------------------------------------------------ - -bool Clipper::Execute(ClipType clipType, Paths &solution, - PolyFillType subjFillType, PolyFillType clipFillType) -{ - if( m_ExecuteLocked ) return false; - if (m_HasOpenPaths) - throw clipperException("Error: PolyTree struct is needed for open path clipping."); - m_ExecuteLocked = true; - solution.resize(0); - m_SubjFillType = subjFillType; - m_ClipFillType = clipFillType; - m_ClipType = clipType; - m_UsingPolyTree = false; - bool succeeded = ExecuteInternal(); - if (succeeded) BuildResult(solution); - DisposeAllOutRecs(); - m_ExecuteLocked = false; - return succeeded; -} -//------------------------------------------------------------------------------ - -bool Clipper::Execute(ClipType clipType, PolyTree& polytree, - PolyFillType subjFillType, PolyFillType clipFillType) -{ - if( m_ExecuteLocked ) return false; - m_ExecuteLocked = true; - m_SubjFillType = subjFillType; - m_ClipFillType = clipFillType; - m_ClipType = clipType; - m_UsingPolyTree = true; - bool succeeded = ExecuteInternal(); - if (succeeded) BuildResult2(polytree); - DisposeAllOutRecs(); - m_ExecuteLocked = false; - return succeeded; -} -//------------------------------------------------------------------------------ - -void Clipper::FixHoleLinkage(OutRec &outrec) -{ - //skip OutRecs that (a) contain outermost polygons or - //(b) already have the correct owner/child linkage ... - if (!outrec.FirstLeft || - (outrec.IsHole != outrec.FirstLeft->IsHole && - outrec.FirstLeft->Pts)) return; - - OutRec* orfl = outrec.FirstLeft; - while (orfl && ((orfl->IsHole == outrec.IsHole) || !orfl->Pts)) - orfl = orfl->FirstLeft; - outrec.FirstLeft = orfl; -} -//------------------------------------------------------------------------------ - -bool Clipper::ExecuteInternal() -{ - bool succeeded = true; - try { - Reset(); - m_Maxima = MaximaList(); - m_SortedEdges = 0; - - succeeded = true; - cInt botY, topY; - if (!PopScanbeam(botY)) return false; - InsertLocalMinimaIntoAEL(botY); - while (PopScanbeam(topY) || LocalMinimaPending()) - { - ProcessHorizontals(); - ClearGhostJoins(); - if (!ProcessIntersections(topY)) - { - succeeded = false; - break; - } - ProcessEdgesAtTopOfScanbeam(topY); - botY = topY; - InsertLocalMinimaIntoAEL(botY); - } - } - catch(std::exception const&) - { - succeeded = false; - } - - if (succeeded) - { - //fix orientations ... - for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); ++i) - { - OutRec *outRec = m_PolyOuts[i]; - if (!outRec->Pts || outRec->IsOpen) continue; - if ((outRec->IsHole ^ m_ReverseOutput) == (Area(*outRec) > 0)) - ReversePolyPtLinks(outRec->Pts); - } - - if (!m_Joins.empty()) JoinCommonEdges(); - - //unfortunately FixupOutPolygon() must be done after JoinCommonEdges() - for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); ++i) - { - OutRec *outRec = m_PolyOuts[i]; - if (!outRec->Pts) continue; - if (outRec->IsOpen) - FixupOutPolyline(*outRec); - else - FixupOutPolygon(*outRec); - } - - if (m_StrictSimple) - { - DoSimplePolygons(); - m_StrictSimple = false; - for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); ++i) - { - OutRec *outRec = m_PolyOuts[i]; - if (!outRec->Pts || outRec->IsOpen) - { - continue; - } - FixupOutPolygon(*outRec); - } - m_StrictSimple = true; - } - } - - ClearJoins(); - ClearGhostJoins(); - return succeeded; -} -//------------------------------------------------------------------------------ - -void Clipper::SetWindingCount(TEdge &edge) -{ - TEdge *e = edge.PrevInAEL; - //find the edge of the same polytype that immediately preceeds 'edge' in AEL - while (e && ((e->PolyTyp != edge.PolyTyp) || (e->WindDelta == 0))) e = e->PrevInAEL; - if (!e) - { - if (edge.WindDelta == 0) - { - PolyFillType pft = (edge.PolyTyp == ptSubject ? m_SubjFillType : m_ClipFillType); - edge.WindCnt = (pft == pftNegative ? -1 : 1); - } - else - edge.WindCnt = edge.WindDelta; - edge.WindCnt2 = 0; - e = m_ActiveEdges; //ie get ready to calc WindCnt2 - } - else if (edge.WindDelta == 0 && m_ClipType != ctUnion) - { - edge.WindCnt = 1; - edge.WindCnt2 = e->WindCnt2; - e = e->NextInAEL; //ie get ready to calc WindCnt2 - } - else if (IsEvenOddFillType(edge)) - { - //EvenOdd filling ... - if (edge.WindDelta == 0) - { - //are we inside a subj polygon ... - bool Inside = true; - TEdge *e2 = e->PrevInAEL; - while (e2) - { - if (e2->PolyTyp == e->PolyTyp && e2->WindDelta != 0) - Inside = !Inside; - e2 = e2->PrevInAEL; - } - edge.WindCnt = (Inside ? 0 : 1); - } - else - { - edge.WindCnt = edge.WindDelta; - } - edge.WindCnt2 = e->WindCnt2; - e = e->NextInAEL; //ie get ready to calc WindCnt2 - } - else - { - //nonZero, Positive or Negative filling ... - if (e->WindCnt * e->WindDelta < 0) - { - //prev edge is 'decreasing' WindCount (WC) toward zero - //so we're outside the previous polygon ... - if (Abs(e->WindCnt) > 1) - { - //outside prev poly but still inside another. - //when reversing direction of prev poly use the same WC - if (e->WindDelta * edge.WindDelta < 0) edge.WindCnt = e->WindCnt; - //otherwise continue to 'decrease' WC ... - else edge.WindCnt = e->WindCnt + edge.WindDelta; - } - else - //now outside all polys of same polytype so set own WC ... - edge.WindCnt = (edge.WindDelta == 0 ? 1 : edge.WindDelta); - } else - { - //prev edge is 'increasing' WindCount (WC) away from zero - //so we're inside the previous polygon ... - if (edge.WindDelta == 0) - edge.WindCnt = (e->WindCnt < 0 ? e->WindCnt - 1 : e->WindCnt + 1); - //if wind direction is reversing prev then use same WC - else if (e->WindDelta * edge.WindDelta < 0) edge.WindCnt = e->WindCnt; - //otherwise add to WC ... - else edge.WindCnt = e->WindCnt + edge.WindDelta; - } - edge.WindCnt2 = e->WindCnt2; - e = e->NextInAEL; //ie get ready to calc WindCnt2 - } - - //update WindCnt2 ... - if (IsEvenOddAltFillType(edge)) - { - //EvenOdd filling ... - while (e != &edge) - { - if (e->WindDelta != 0) - edge.WindCnt2 = (edge.WindCnt2 == 0 ? 1 : 0); - e = e->NextInAEL; - } - } else - { - //nonZero, Positive or Negative filling ... - while ( e != &edge ) - { - edge.WindCnt2 += e->WindDelta; - e = e->NextInAEL; - } - } -} -//------------------------------------------------------------------------------ - -bool Clipper::IsEvenOddFillType(const TEdge& edge) const -{ - if (edge.PolyTyp == ptSubject) - return m_SubjFillType == pftEvenOdd; else - return m_ClipFillType == pftEvenOdd; -} -//------------------------------------------------------------------------------ - -bool Clipper::IsEvenOddAltFillType(const TEdge& edge) const -{ - if (edge.PolyTyp == ptSubject) - return m_ClipFillType == pftEvenOdd; else - return m_SubjFillType == pftEvenOdd; -} -//------------------------------------------------------------------------------ - -bool Clipper::IsContributing(const TEdge& edge) const -{ - PolyFillType pft, pft2; - if (edge.PolyTyp == ptSubject) - { - pft = m_SubjFillType; - pft2 = m_ClipFillType; - } else - { - pft = m_ClipFillType; - pft2 = m_SubjFillType; - } - - switch(pft) - { - case pftEvenOdd: - //return false if a subj line has been flagged as inside a subj polygon - if (edge.WindDelta == 0 && edge.WindCnt != 1) return false; - break; - case pftNonZero: - if (Abs(edge.WindCnt) != 1) return false; - break; - case pftPositive: - if (edge.WindCnt != 1) return false; - break; - default: //pftNegative - if (edge.WindCnt != -1) return false; - } - - switch(m_ClipType) - { - case ctIntersection: - switch(pft2) - { - case pftEvenOdd: - case pftNonZero: - return (edge.WindCnt2 != 0); - case pftPositive: - return (edge.WindCnt2 > 0); - default: - return (edge.WindCnt2 < 0); - } - break; - case ctUnion: - switch(pft2) - { - case pftEvenOdd: - case pftNonZero: - return (edge.WindCnt2 == 0); - case pftPositive: - return (edge.WindCnt2 <= 0); - default: - return (edge.WindCnt2 >= 0); - } - break; - case ctDifference: - if (edge.PolyTyp == ptSubject) - switch(pft2) - { - case pftEvenOdd: - case pftNonZero: - return (edge.WindCnt2 == 0); - case pftPositive: - return (edge.WindCnt2 <= 0); - default: - return (edge.WindCnt2 >= 0); - } - else - switch(pft2) - { - case pftEvenOdd: - case pftNonZero: - return (edge.WindCnt2 != 0); - case pftPositive: - return (edge.WindCnt2 > 0); - default: - return (edge.WindCnt2 < 0); - } - break; - case ctXor: - if (edge.WindDelta == 0) //XOr always contributing unless open - switch(pft2) - { - case pftEvenOdd: - case pftNonZero: - return (edge.WindCnt2 == 0); - case pftPositive: - return (edge.WindCnt2 <= 0); - default: - return (edge.WindCnt2 >= 0); - } - else - return true; - break; - default: - return true; - } -} -//------------------------------------------------------------------------------ - -OutPt* Clipper::AddLocalMinPoly(TEdge *e1, TEdge *e2, const IntPoint &Pt) -{ - OutPt* result; - TEdge *e, *prevE; - if (IsHorizontal(*e2) || ( e1->Dx > e2->Dx )) - { - result = AddOutPt(e1, Pt); - e2->OutIdx = e1->OutIdx; - e1->Side = esLeft; - e2->Side = esRight; - e = e1; - if (e->PrevInAEL == e2) - prevE = e2->PrevInAEL; - else - prevE = e->PrevInAEL; - } else - { - result = AddOutPt(e2, Pt); - e1->OutIdx = e2->OutIdx; - e1->Side = esRight; - e2->Side = esLeft; - e = e2; - if (e->PrevInAEL == e1) - prevE = e1->PrevInAEL; - else - prevE = e->PrevInAEL; - } - - if (prevE && prevE->OutIdx >= 0) - { - cInt xPrev = TopX(*prevE, Pt.Y); - cInt xE = TopX(*e, Pt.Y); - if (xPrev == xE && (e->WindDelta != 0) && (prevE->WindDelta != 0) && - SlopesEqual(IntPoint(xPrev, Pt.Y), prevE->Top, IntPoint(xE, Pt.Y), e->Top, m_UseFullRange)) - { - OutPt* outPt = AddOutPt(prevE, Pt); - AddJoin(result, outPt, e->Top); - } - } - return result; -} -//------------------------------------------------------------------------------ - -void Clipper::AddLocalMaxPoly(TEdge *e1, TEdge *e2, const IntPoint &Pt) -{ - AddOutPt( e1, Pt ); - if (e2->WindDelta == 0) AddOutPt(e2, Pt); - if( e1->OutIdx == e2->OutIdx ) - { - e1->OutIdx = Unassigned; - e2->OutIdx = Unassigned; - } - else if (e1->OutIdx < e2->OutIdx) - AppendPolygon(e1, e2); - else - AppendPolygon(e2, e1); -} -//------------------------------------------------------------------------------ - -void Clipper::AddEdgeToSEL(TEdge *edge) -{ - //SEL pointers in PEdge are reused to build a list of horizontal edges. - //However, we don't need to worry about order with horizontal edge processing. - if( !m_SortedEdges ) - { - m_SortedEdges = edge; - edge->PrevInSEL = 0; - edge->NextInSEL = 0; - } - else - { - edge->NextInSEL = m_SortedEdges; - edge->PrevInSEL = 0; - m_SortedEdges->PrevInSEL = edge; - m_SortedEdges = edge; - } -} -//------------------------------------------------------------------------------ - -bool Clipper::PopEdgeFromSEL(TEdge *&edge) -{ - if (!m_SortedEdges) return false; - edge = m_SortedEdges; - DeleteFromSEL(m_SortedEdges); - return true; -} -//------------------------------------------------------------------------------ - -void Clipper::CopyAELToSEL() -{ - TEdge* e = m_ActiveEdges; - m_SortedEdges = e; - while ( e ) - { - e->PrevInSEL = e->PrevInAEL; - e->NextInSEL = e->NextInAEL; - e = e->NextInAEL; - } -} -//------------------------------------------------------------------------------ - -void Clipper::AddJoin(OutPt *op1, OutPt *op2, const IntPoint OffPt) -{ - Join* j = new Join; - j->OutPt1 = op1; - j->OutPt2 = op2; - j->OffPt = OffPt; - m_Joins.push_back(j); -} -//------------------------------------------------------------------------------ - -void Clipper::ClearJoins() -{ - for (JoinList::size_type i = 0; i < m_Joins.size(); i++) - delete m_Joins[i]; - m_Joins.resize(0); -} -//------------------------------------------------------------------------------ - -void Clipper::ClearGhostJoins() -{ - for (JoinList::size_type i = 0; i < m_GhostJoins.size(); i++) - delete m_GhostJoins[i]; - m_GhostJoins.resize(0); -} -//------------------------------------------------------------------------------ - -void Clipper::AddGhostJoin(OutPt *op, const IntPoint OffPt) -{ - Join* j = new Join; - j->OutPt1 = op; - j->OutPt2 = 0; - j->OffPt = OffPt; - m_GhostJoins.push_back(j); -} -//------------------------------------------------------------------------------ - -void Clipper::InsertLocalMinimaIntoAEL(const cInt botY) -{ - const LocalMinimum *lm; - while (PopLocalMinima(botY, lm)) - { - TEdge* lb = lm->LeftBound; - TEdge* rb = lm->RightBound; - - OutPt *Op1 = 0; - if (!lb) - { - //nb: don't insert LB into either AEL or SEL - InsertEdgeIntoAEL(rb, 0); - SetWindingCount(*rb); - if (IsContributing(*rb)) - { - Op1 = AddOutPt(rb, rb->Bot); - TEdge* ePrev = rb->PrevInAEL; - if ((rb->OutIdx >= 0) && (rb->WindDelta != 0) && ePrev && (ePrev->OutIdx >= 0) && - (ePrev->Curr.X == rb->Curr.X) && (ePrev->WindDelta != 0)) - { - IntPoint pt = rb->Curr; - AddOutPt(ePrev, pt); - } - TEdge* eNext = rb->NextInAEL; - if ((rb->OutIdx >= 0) && (rb->WindDelta != 0) && eNext && (eNext->OutIdx >= 0) && - (eNext->Curr.X == rb->Curr.X) && (eNext->WindDelta != 0)) - { - IntPoint pt = rb->Curr; - AddOutPt(eNext, pt); - } - } - } - else if (!rb) - { - InsertEdgeIntoAEL(lb, 0); - SetWindingCount(*lb); - if (IsContributing(*lb)) - { - Op1 = AddOutPt(lb, lb->Bot); - TEdge* ePrev = lb->PrevInAEL; - if ((lb->OutIdx >= 0) && (lb->WindDelta != 0) && ePrev && (ePrev->OutIdx >= 0) && - (ePrev->Curr.X == lb->Curr.X) && (ePrev->WindDelta != 0)) - { - IntPoint pt = lb->Curr; - AddOutPt(ePrev, pt); - } - TEdge* eNext = lb->NextInAEL; - if ((lb->OutIdx >= 0) && (lb->WindDelta != 0) && eNext && (eNext->OutIdx >= 0) && - (eNext->Curr.X == lb->Curr.X) && (eNext->WindDelta != 0)) - { - IntPoint pt = lb->Curr; - AddOutPt(eNext, pt); - } - } - InsertScanbeam(lb->Top.Y); - } - else - { - InsertEdgeIntoAEL(lb, 0); - InsertEdgeIntoAEL(rb, lb); - SetWindingCount( *lb ); - rb->WindCnt = lb->WindCnt; - rb->WindCnt2 = lb->WindCnt2; - if (IsContributing(*lb)) - { - Op1 = AddLocalMinPoly(lb, rb, lb->Bot); - TEdge* ePrev = lb->PrevInAEL; - if ((lb->OutIdx >= 0) && (lb->WindDelta != 0) && ePrev && (ePrev->OutIdx >= 0) && - (ePrev->Curr.X == lb->Curr.X) && (ePrev->WindDelta != 0)) - { - IntPoint pt = lb->Curr; - AddOutPt(ePrev, pt); - } - TEdge* eNext = rb->NextInAEL; - if ((rb->OutIdx >= 0) && (rb->WindDelta != 0) && eNext && (eNext->OutIdx >= 0) && - (eNext->Curr.X == rb->Curr.X) && (eNext->WindDelta != 0)) - { - IntPoint pt = rb->Curr; - AddOutPt(eNext, pt); - } - } - InsertScanbeam(lb->Top.Y); - } - - if (rb) - { - if (IsHorizontal(*rb)) - { - AddEdgeToSEL(rb); - if (rb->NextInLML) - InsertScanbeam(rb->NextInLML->Top.Y); - } - else InsertScanbeam( rb->Top.Y ); - } - - if (!lb || !rb) continue; - - //if any output polygons share an edge, they'll need joining later ... - if (Op1 && IsHorizontal(*rb) && - !m_GhostJoins.empty() && (rb->WindDelta != 0)) - { - for (JoinList::size_type i = 0; i < m_GhostJoins.size(); ++i) - { - Join* jr = m_GhostJoins[i]; - //if the horizontal Rb and a 'ghost' horizontal overlap, then convert - //the 'ghost' join to a real join ready for later ... - if (HorzSegmentsOverlap(jr->OutPt1->Pt.X, jr->OffPt.X, rb->Bot.X, rb->Top.X)) - AddJoin(jr->OutPt1, Op1, jr->OffPt); - } - } - - if (lb->OutIdx >= 0 && lb->PrevInAEL && - lb->PrevInAEL->Curr.X == lb->Bot.X && - lb->PrevInAEL->OutIdx >= 0 && - SlopesEqual(lb->PrevInAEL->Bot, lb->PrevInAEL->Top, lb->Curr, lb->Top, m_UseFullRange) && - (lb->WindDelta != 0) && (lb->PrevInAEL->WindDelta != 0)) - { - OutPt *Op2 = AddOutPt(lb->PrevInAEL, lb->Bot); - AddJoin(Op1, Op2, lb->Top); - } - - if(lb->NextInAEL != rb) - { - - if (rb->OutIdx >= 0 && rb->PrevInAEL->OutIdx >= 0 && - SlopesEqual(rb->PrevInAEL->Curr, rb->PrevInAEL->Top, rb->Curr, rb->Top, m_UseFullRange) && - (rb->WindDelta != 0) && (rb->PrevInAEL->WindDelta != 0)) - { - OutPt *Op2 = AddOutPt(rb->PrevInAEL, rb->Bot); - AddJoin(Op1, Op2, rb->Top); - } - - TEdge* e = lb->NextInAEL; - if (e) - { - while( e != rb ) - { - //nb: For calculating winding counts etc, IntersectEdges() assumes - //that param1 will be to the Right of param2 ABOVE the intersection ... - IntersectEdges(rb , e , lb->Curr); //order important here - e = e->NextInAEL; - } - } - } - - } -} -//------------------------------------------------------------------------------ - -void Clipper::DeleteFromSEL(TEdge *e) -{ - TEdge* SelPrev = e->PrevInSEL; - TEdge* SelNext = e->NextInSEL; - if( !SelPrev && !SelNext && (e != m_SortedEdges) ) return; //already deleted - if( SelPrev ) SelPrev->NextInSEL = SelNext; - else m_SortedEdges = SelNext; - if( SelNext ) SelNext->PrevInSEL = SelPrev; - e->NextInSEL = 0; - e->PrevInSEL = 0; -} -//------------------------------------------------------------------------------ - -#ifdef use_xyz -void Clipper::SetZ(IntPoint& pt, TEdge& e1, TEdge& e2) -{ - if (pt.Z != 0 || !m_ZFill) return; - else if (pt == e1.Bot) pt.Z = e1.Bot.Z; - else if (pt == e1.Top) pt.Z = e1.Top.Z; - else if (pt == e2.Bot) pt.Z = e2.Bot.Z; - else if (pt == e2.Top) pt.Z = e2.Top.Z; - else (*m_ZFill)(e1.Bot, e1.Top, e2.Bot, e2.Top, pt); -} -//------------------------------------------------------------------------------ -#endif - -void Clipper::IntersectEdges(TEdge *e1, TEdge *e2, IntPoint &Pt) -{ - bool e1Contributing = ( e1->OutIdx >= 0 ); - bool e2Contributing = ( e2->OutIdx >= 0 ); - -#ifdef use_xyz - SetZ(Pt, *e1, *e2); -#endif - -#ifdef use_lines - //if either edge is on an OPEN path ... - if (e1->WindDelta == 0 || e2->WindDelta == 0) - { - //ignore subject-subject open path intersections UNLESS they - //are both open paths, AND they are both 'contributing maximas' ... - if (e1->WindDelta == 0 && e2->WindDelta == 0) return; - - //if intersecting a subj line with a subj poly ... - else if (e1->PolyTyp == e2->PolyTyp && - e1->WindDelta != e2->WindDelta && m_ClipType == ctUnion) - { - if (e1->WindDelta == 0) - { - if (e2Contributing) - { - AddOutPt(e1, Pt); - if (e1Contributing) e1->OutIdx = Unassigned; - } - } - else - { - if (e1Contributing) - { - AddOutPt(e2, Pt); - if (e2Contributing) e2->OutIdx = Unassigned; - } - } - } - else if (e1->PolyTyp != e2->PolyTyp) - { - //toggle subj open path OutIdx on/off when Abs(clip.WndCnt) == 1 ... - if ((e1->WindDelta == 0) && abs(e2->WindCnt) == 1 && - (m_ClipType != ctUnion || e2->WindCnt2 == 0)) - { - AddOutPt(e1, Pt); - if (e1Contributing) e1->OutIdx = Unassigned; - } - else if ((e2->WindDelta == 0) && (abs(e1->WindCnt) == 1) && - (m_ClipType != ctUnion || e1->WindCnt2 == 0)) - { - AddOutPt(e2, Pt); - if (e2Contributing) e2->OutIdx = Unassigned; - } - } - return; - } -#endif - - //update winding counts... - //assumes that e1 will be to the Right of e2 ABOVE the intersection - if ( e1->PolyTyp == e2->PolyTyp ) - { - if ( IsEvenOddFillType( *e1) ) - { - int oldE1WindCnt = e1->WindCnt; - e1->WindCnt = e2->WindCnt; - e2->WindCnt = oldE1WindCnt; - } else - { - if (e1->WindCnt + e2->WindDelta == 0 ) e1->WindCnt = -e1->WindCnt; - else e1->WindCnt += e2->WindDelta; - if ( e2->WindCnt - e1->WindDelta == 0 ) e2->WindCnt = -e2->WindCnt; - else e2->WindCnt -= e1->WindDelta; - } - } else - { - if (!IsEvenOddFillType(*e2)) e1->WindCnt2 += e2->WindDelta; - else e1->WindCnt2 = ( e1->WindCnt2 == 0 ) ? 1 : 0; - if (!IsEvenOddFillType(*e1)) e2->WindCnt2 -= e1->WindDelta; - else e2->WindCnt2 = ( e2->WindCnt2 == 0 ) ? 1 : 0; - } - - PolyFillType e1FillType, e2FillType, e1FillType2, e2FillType2; - if (e1->PolyTyp == ptSubject) - { - e1FillType = m_SubjFillType; - e1FillType2 = m_ClipFillType; - } else - { - e1FillType = m_ClipFillType; - e1FillType2 = m_SubjFillType; - } - if (e2->PolyTyp == ptSubject) - { - e2FillType = m_SubjFillType; - e2FillType2 = m_ClipFillType; - } else - { - e2FillType = m_ClipFillType; - e2FillType2 = m_SubjFillType; - } - - cInt e1Wc, e2Wc; - switch (e1FillType) - { - case pftPositive: e1Wc = e1->WindCnt; break; - case pftNegative: e1Wc = -e1->WindCnt; break; - default: e1Wc = Abs(e1->WindCnt); - } - switch(e2FillType) - { - case pftPositive: e2Wc = e2->WindCnt; break; - case pftNegative: e2Wc = -e2->WindCnt; break; - default: e2Wc = Abs(e2->WindCnt); - } - - if ( e1Contributing && e2Contributing ) - { - if ((e1Wc != 0 && e1Wc != 1) || (e2Wc != 0 && e2Wc != 1) || - (e1->PolyTyp != e2->PolyTyp && m_ClipType != ctXor) ) - { - AddLocalMaxPoly(e1, e2, Pt); - } - else - { - AddOutPt(e1, Pt); - AddOutPt(e2, Pt); - SwapSides( *e1 , *e2 ); - SwapPolyIndexes( *e1 , *e2 ); - } - } - else if ( e1Contributing ) - { - if (e2Wc == 0 || e2Wc == 1) - { - AddOutPt(e1, Pt); - SwapSides(*e1, *e2); - SwapPolyIndexes(*e1, *e2); - } - } - else if ( e2Contributing ) - { - if (e1Wc == 0 || e1Wc == 1) - { - AddOutPt(e2, Pt); - SwapSides(*e1, *e2); - SwapPolyIndexes(*e1, *e2); - } - } - else if ( (e1Wc == 0 || e1Wc == 1) && (e2Wc == 0 || e2Wc == 1)) - { - //neither edge is currently contributing ... - - cInt e1Wc2, e2Wc2; - switch (e1FillType2) - { - case pftPositive: e1Wc2 = e1->WindCnt2; break; - case pftNegative : e1Wc2 = -e1->WindCnt2; break; - default: e1Wc2 = Abs(e1->WindCnt2); - } - switch (e2FillType2) - { - case pftPositive: e2Wc2 = e2->WindCnt2; break; - case pftNegative: e2Wc2 = -e2->WindCnt2; break; - default: e2Wc2 = Abs(e2->WindCnt2); - } - - if (e1->PolyTyp != e2->PolyTyp) - { - AddLocalMinPoly(e1, e2, Pt); - } - else if (e1Wc == 1 && e2Wc == 1) - switch( m_ClipType ) { - case ctIntersection: - if (e1Wc2 > 0 && e2Wc2 > 0) - AddLocalMinPoly(e1, e2, Pt); - break; - case ctUnion: - if ( e1Wc2 <= 0 && e2Wc2 <= 0 ) - AddLocalMinPoly(e1, e2, Pt); - break; - case ctDifference: - if (((e1->PolyTyp == ptClip) && (e1Wc2 > 0) && (e2Wc2 > 0)) || - ((e1->PolyTyp == ptSubject) && (e1Wc2 <= 0) && (e2Wc2 <= 0))) - AddLocalMinPoly(e1, e2, Pt); - break; - case ctXor: - AddLocalMinPoly(e1, e2, Pt); - } - else - SwapSides( *e1, *e2 ); - } -} -//------------------------------------------------------------------------------ - -void Clipper::SetHoleState(TEdge *e, OutRec *outrec) -{ - TEdge *e2 = e->PrevInAEL; - TEdge *eTmp = 0; - while (e2) - { - if (e2->OutIdx >= 0 && e2->WindDelta != 0) - { - if (!eTmp) eTmp = e2; - else if (eTmp->OutIdx == e2->OutIdx) eTmp = 0; - } - e2 = e2->PrevInAEL; - } - if (!eTmp) - { - outrec->FirstLeft = 0; - outrec->IsHole = false; - } - else - { - outrec->FirstLeft = m_PolyOuts[eTmp->OutIdx]; - outrec->IsHole = !outrec->FirstLeft->IsHole; - } -} -//------------------------------------------------------------------------------ - -OutRec* GetLowermostRec(OutRec *outRec1, OutRec *outRec2) -{ - //work out which polygon fragment has the correct hole state ... - if (!outRec1->BottomPt) - outRec1->BottomPt = GetBottomPt(outRec1->Pts); - if (!outRec2->BottomPt) - outRec2->BottomPt = GetBottomPt(outRec2->Pts); - OutPt *OutPt1 = outRec1->BottomPt; - OutPt *OutPt2 = outRec2->BottomPt; - if (OutPt1->Pt.Y > OutPt2->Pt.Y) return outRec1; - else if (OutPt1->Pt.Y < OutPt2->Pt.Y) return outRec2; - else if (OutPt1->Pt.X < OutPt2->Pt.X) return outRec1; - else if (OutPt1->Pt.X > OutPt2->Pt.X) return outRec2; - else if (OutPt1->Next == OutPt1) return outRec2; - else if (OutPt2->Next == OutPt2) return outRec1; - else if (FirstIsBottomPt(OutPt1, OutPt2)) return outRec1; - else return outRec2; -} -//------------------------------------------------------------------------------ - -bool OutRec1RightOfOutRec2(OutRec* outRec1, OutRec* outRec2) -{ - do - { - outRec1 = outRec1->FirstLeft; - if (outRec1 == outRec2) return true; - } while (outRec1); - return false; -} -//------------------------------------------------------------------------------ - -OutRec* Clipper::GetOutRec(int Idx) -{ - OutRec* outrec = m_PolyOuts[Idx]; - while (outrec != m_PolyOuts[outrec->Idx]) - outrec = m_PolyOuts[outrec->Idx]; - return outrec; -} -//------------------------------------------------------------------------------ - -void Clipper::AppendPolygon(TEdge *e1, TEdge *e2) -{ - //get the start and ends of both output polygons ... - OutRec *outRec1 = m_PolyOuts[e1->OutIdx]; - OutRec *outRec2 = m_PolyOuts[e2->OutIdx]; - - OutRec *holeStateRec; - if (OutRec1RightOfOutRec2(outRec1, outRec2)) - holeStateRec = outRec2; - else if (OutRec1RightOfOutRec2(outRec2, outRec1)) - holeStateRec = outRec1; - else - holeStateRec = GetLowermostRec(outRec1, outRec2); - - //get the start and ends of both output polygons and - //join e2 poly onto e1 poly and delete pointers to e2 ... - - OutPt* p1_lft = outRec1->Pts; - OutPt* p1_rt = p1_lft->Prev; - OutPt* p2_lft = outRec2->Pts; - OutPt* p2_rt = p2_lft->Prev; - - //join e2 poly onto e1 poly and delete pointers to e2 ... - if( e1->Side == esLeft ) - { - if( e2->Side == esLeft ) - { - //z y x a b c - ReversePolyPtLinks(p2_lft); - p2_lft->Next = p1_lft; - p1_lft->Prev = p2_lft; - p1_rt->Next = p2_rt; - p2_rt->Prev = p1_rt; - outRec1->Pts = p2_rt; - } else - { - //x y z a b c - p2_rt->Next = p1_lft; - p1_lft->Prev = p2_rt; - p2_lft->Prev = p1_rt; - p1_rt->Next = p2_lft; - outRec1->Pts = p2_lft; - } - } else - { - if( e2->Side == esRight ) - { - //a b c z y x - ReversePolyPtLinks(p2_lft); - p1_rt->Next = p2_rt; - p2_rt->Prev = p1_rt; - p2_lft->Next = p1_lft; - p1_lft->Prev = p2_lft; - } else - { - //a b c x y z - p1_rt->Next = p2_lft; - p2_lft->Prev = p1_rt; - p1_lft->Prev = p2_rt; - p2_rt->Next = p1_lft; - } - } - - outRec1->BottomPt = 0; - if (holeStateRec == outRec2) - { - if (outRec2->FirstLeft != outRec1) - outRec1->FirstLeft = outRec2->FirstLeft; - outRec1->IsHole = outRec2->IsHole; - } - outRec2->Pts = 0; - outRec2->BottomPt = 0; - outRec2->FirstLeft = outRec1; - - int OKIdx = e1->OutIdx; - int ObsoleteIdx = e2->OutIdx; - - e1->OutIdx = Unassigned; //nb: safe because we only get here via AddLocalMaxPoly - e2->OutIdx = Unassigned; - - TEdge* e = m_ActiveEdges; - while( e ) - { - if( e->OutIdx == ObsoleteIdx ) - { - e->OutIdx = OKIdx; - e->Side = e1->Side; - break; - } - e = e->NextInAEL; - } - - outRec2->Idx = outRec1->Idx; -} -//------------------------------------------------------------------------------ - -OutPt* Clipper::AddOutPt(TEdge *e, const IntPoint &pt) -{ - if( e->OutIdx < 0 ) - { - OutRec *outRec = CreateOutRec(); - outRec->IsOpen = (e->WindDelta == 0); - OutPt* newOp = new OutPt; - outRec->Pts = newOp; - newOp->Idx = outRec->Idx; - newOp->Pt = pt; - newOp->Next = newOp; - newOp->Prev = newOp; - if (!outRec->IsOpen) - SetHoleState(e, outRec); - e->OutIdx = outRec->Idx; - return newOp; - } else - { - OutRec *outRec = m_PolyOuts[e->OutIdx]; - //OutRec.Pts is the 'Left-most' point & OutRec.Pts.Prev is the 'Right-most' - OutPt* op = outRec->Pts; - - bool ToFront = (e->Side == esLeft); - if (ToFront && (pt == op->Pt)) return op; - else if (!ToFront && (pt == op->Prev->Pt)) return op->Prev; - - OutPt* newOp = new OutPt; - newOp->Idx = outRec->Idx; - newOp->Pt = pt; - newOp->Next = op; - newOp->Prev = op->Prev; - newOp->Prev->Next = newOp; - op->Prev = newOp; - if (ToFront) outRec->Pts = newOp; - return newOp; - } -} -//------------------------------------------------------------------------------ - -OutPt* Clipper::GetLastOutPt(TEdge *e) -{ - OutRec *outRec = m_PolyOuts[e->OutIdx]; - if (e->Side == esLeft) - return outRec->Pts; - else - return outRec->Pts->Prev; -} -//------------------------------------------------------------------------------ - -void Clipper::ProcessHorizontals() -{ - m_Maxima.sort(); - TEdge* horzEdge; - while (PopEdgeFromSEL(horzEdge)) - { - ProcessHorizontal(horzEdge); - } - m_Maxima.clear(); -} -//------------------------------------------------------------------------------ - -inline bool IsMinima(TEdge *e) -{ - return e && (e->Prev->NextInLML != e) && (e->Next->NextInLML != e); -} -//------------------------------------------------------------------------------ - -inline bool IsMaxima(TEdge *e, const cInt Y) -{ - return e && e->Top.Y == Y && !e->NextInLML; -} -//------------------------------------------------------------------------------ - -inline bool IsIntermediate(TEdge *e, const cInt Y) -{ - return e->Top.Y == Y && e->NextInLML; -} -//------------------------------------------------------------------------------ - -TEdge *GetMaximaPair(TEdge *e) -{ - if ((e->Next->Top == e->Top) && !e->Next->NextInLML) - return e->Next; - else if ((e->Prev->Top == e->Top) && !e->Prev->NextInLML) - return e->Prev; - else return 0; -} -//------------------------------------------------------------------------------ - -TEdge *GetMaximaPairEx(TEdge *e) -{ - //as GetMaximaPair() but returns 0 if MaxPair isn't in AEL (unless it's horizontal) - TEdge* result = GetMaximaPair(e); - if (result && (result->OutIdx == Skip || - (result->NextInAEL == result->PrevInAEL && !IsHorizontal(*result)))) return 0; - return result; -} -//------------------------------------------------------------------------------ - -void Clipper::SwapPositionsInSEL(TEdge *Edge1, TEdge *Edge2) -{ - if( !( Edge1->NextInSEL ) && !( Edge1->PrevInSEL ) ) return; - if( !( Edge2->NextInSEL ) && !( Edge2->PrevInSEL ) ) return; - - if( Edge1->NextInSEL == Edge2 ) - { - TEdge* Next = Edge2->NextInSEL; - if( Next ) Next->PrevInSEL = Edge1; - TEdge* Prev = Edge1->PrevInSEL; - if( Prev ) Prev->NextInSEL = Edge2; - Edge2->PrevInSEL = Prev; - Edge2->NextInSEL = Edge1; - Edge1->PrevInSEL = Edge2; - Edge1->NextInSEL = Next; - } - else if( Edge2->NextInSEL == Edge1 ) - { - TEdge* Next = Edge1->NextInSEL; - if( Next ) Next->PrevInSEL = Edge2; - TEdge* Prev = Edge2->PrevInSEL; - if( Prev ) Prev->NextInSEL = Edge1; - Edge1->PrevInSEL = Prev; - Edge1->NextInSEL = Edge2; - Edge2->PrevInSEL = Edge1; - Edge2->NextInSEL = Next; - } - else - { - TEdge* Next = Edge1->NextInSEL; - TEdge* Prev = Edge1->PrevInSEL; - Edge1->NextInSEL = Edge2->NextInSEL; - if( Edge1->NextInSEL ) Edge1->NextInSEL->PrevInSEL = Edge1; - Edge1->PrevInSEL = Edge2->PrevInSEL; - if( Edge1->PrevInSEL ) Edge1->PrevInSEL->NextInSEL = Edge1; - Edge2->NextInSEL = Next; - if( Edge2->NextInSEL ) Edge2->NextInSEL->PrevInSEL = Edge2; - Edge2->PrevInSEL = Prev; - if( Edge2->PrevInSEL ) Edge2->PrevInSEL->NextInSEL = Edge2; - } - - if( !Edge1->PrevInSEL ) m_SortedEdges = Edge1; - else if( !Edge2->PrevInSEL ) m_SortedEdges = Edge2; -} -//------------------------------------------------------------------------------ - -TEdge* GetNextInAEL(TEdge *e, Direction dir) -{ - return dir == dLeftToRight ? e->NextInAEL : e->PrevInAEL; -} -//------------------------------------------------------------------------------ - -void GetHorzDirection(TEdge& HorzEdge, Direction& Dir, cInt& Left, cInt& Right) -{ - if (HorzEdge.Bot.X < HorzEdge.Top.X) - { - Left = HorzEdge.Bot.X; - Right = HorzEdge.Top.X; - Dir = dLeftToRight; - } else - { - Left = HorzEdge.Top.X; - Right = HorzEdge.Bot.X; - Dir = dRightToLeft; - } -} -//------------------------------------------------------------------------ - -/******************************************************************************* -* Notes: Horizontal edges (HEs) at scanline intersections (ie at the Top or * -* Bottom of a scanbeam) are processed as if layered. The order in which HEs * -* are processed doesn't matter. HEs intersect with other HE Bot.Xs only [#] * -* (or they could intersect with Top.Xs only, ie EITHER Bot.Xs OR Top.Xs), * -* and with other non-horizontal edges [*]. Once these intersections are * -* processed, intermediate HEs then 'promote' the Edge above (NextInLML) into * -* the AEL. These 'promoted' edges may in turn intersect [%] with other HEs. * -*******************************************************************************/ - -void Clipper::ProcessHorizontal(TEdge *horzEdge) -{ - Direction dir; - cInt horzLeft, horzRight; - bool IsOpen = (horzEdge->WindDelta == 0); - - GetHorzDirection(*horzEdge, dir, horzLeft, horzRight); - - TEdge* eLastHorz = horzEdge, *eMaxPair = 0; - while (eLastHorz->NextInLML && IsHorizontal(*eLastHorz->NextInLML)) - eLastHorz = eLastHorz->NextInLML; - if (!eLastHorz->NextInLML) - eMaxPair = GetMaximaPair(eLastHorz); - - MaximaList::const_iterator maxIt; - MaximaList::const_reverse_iterator maxRit; - if (!m_Maxima.empty()) - { - //get the first maxima in range (X) ... - if (dir == dLeftToRight) - { - maxIt = m_Maxima.begin(); - while (maxIt != m_Maxima.end() && *maxIt <= horzEdge->Bot.X) maxIt++; - if (maxIt != m_Maxima.end() && *maxIt >= eLastHorz->Top.X) - maxIt = m_Maxima.end(); - } - else - { - maxRit = m_Maxima.rbegin(); - while (maxRit != m_Maxima.rend() && *maxRit > horzEdge->Bot.X) maxRit++; - if (maxRit != m_Maxima.rend() && *maxRit <= eLastHorz->Top.X) - maxRit = m_Maxima.rend(); - } - } - - OutPt* op1 = 0; - - for (;;) //loop through consec. horizontal edges - { - - bool IsLastHorz = (horzEdge == eLastHorz); - TEdge* e = GetNextInAEL(horzEdge, dir); - while(e) - { - - //this code block inserts extra coords into horizontal edges (in output - //polygons) whereever maxima touch these horizontal edges. This helps - //'simplifying' polygons (ie if the Simplify property is set). - if (!m_Maxima.empty()) - { - if (dir == dLeftToRight) - { - while (maxIt != m_Maxima.end() && *maxIt < e->Curr.X) - { - if (horzEdge->OutIdx >= 0 && !IsOpen) - AddOutPt(horzEdge, IntPoint(*maxIt, horzEdge->Bot.Y)); - maxIt++; - } - } - else - { - while (maxRit != m_Maxima.rend() && *maxRit > e->Curr.X) - { - if (horzEdge->OutIdx >= 0 && !IsOpen) - AddOutPt(horzEdge, IntPoint(*maxRit, horzEdge->Bot.Y)); - maxRit++; - } - } - }; - - if ((dir == dLeftToRight && e->Curr.X > horzRight) || - (dir == dRightToLeft && e->Curr.X < horzLeft)) break; - - //Also break if we've got to the end of an intermediate horizontal edge ... - //nb: Smaller Dx's are to the right of larger Dx's ABOVE the horizontal. - if (e->Curr.X == horzEdge->Top.X && horzEdge->NextInLML && - e->Dx < horzEdge->NextInLML->Dx) break; - - if (horzEdge->OutIdx >= 0 && !IsOpen) //note: may be done multiple times - { - op1 = AddOutPt(horzEdge, e->Curr); - TEdge* eNextHorz = m_SortedEdges; - while (eNextHorz) - { - if (eNextHorz->OutIdx >= 0 && - HorzSegmentsOverlap(horzEdge->Bot.X, - horzEdge->Top.X, eNextHorz->Bot.X, eNextHorz->Top.X)) - { - OutPt* op2 = GetLastOutPt(eNextHorz); - AddJoin(op2, op1, eNextHorz->Top); - } - eNextHorz = eNextHorz->NextInSEL; - } - AddGhostJoin(op1, horzEdge->Bot); - } - - //OK, so far we're still in range of the horizontal Edge but make sure - //we're at the last of consec. horizontals when matching with eMaxPair - if(e == eMaxPair && IsLastHorz) - { - if (horzEdge->OutIdx >= 0) - AddLocalMaxPoly(horzEdge, eMaxPair, horzEdge->Top); - DeleteFromAEL(horzEdge); - DeleteFromAEL(eMaxPair); - return; - } - - if(dir == dLeftToRight) - { - IntPoint Pt = IntPoint(e->Curr.X, horzEdge->Curr.Y); - IntersectEdges(horzEdge, e, Pt); - } - else - { - IntPoint Pt = IntPoint(e->Curr.X, horzEdge->Curr.Y); - IntersectEdges( e, horzEdge, Pt); - } - TEdge* eNext = GetNextInAEL(e, dir); - SwapPositionsInAEL( horzEdge, e ); - e = eNext; - } //end while(e) - - //Break out of loop if HorzEdge.NextInLML is not also horizontal ... - if (!horzEdge->NextInLML || !IsHorizontal(*horzEdge->NextInLML)) break; - - UpdateEdgeIntoAEL(horzEdge); - if (horzEdge->OutIdx >= 0) AddOutPt(horzEdge, horzEdge->Bot); - GetHorzDirection(*horzEdge, dir, horzLeft, horzRight); - - } //end for (;;) - - if (horzEdge->OutIdx >= 0 && !op1) - { - op1 = GetLastOutPt(horzEdge); - TEdge* eNextHorz = m_SortedEdges; - while (eNextHorz) - { - if (eNextHorz->OutIdx >= 0 && - HorzSegmentsOverlap(horzEdge->Bot.X, - horzEdge->Top.X, eNextHorz->Bot.X, eNextHorz->Top.X)) - { - OutPt* op2 = GetLastOutPt(eNextHorz); - AddJoin(op2, op1, eNextHorz->Top); - } - eNextHorz = eNextHorz->NextInSEL; - } - AddGhostJoin(op1, horzEdge->Top); - } - - if (horzEdge->NextInLML) - { - if(horzEdge->OutIdx >= 0) - { - op1 = AddOutPt( horzEdge, horzEdge->Top); - //When StrictlySimple and 'horzEdge' is being touched by another edge, then - //make sure both edges have a vertex here ... - if (m_StrictSimple) - { - TEdge* ePrev = horzEdge->PrevInAEL; - if ((horzEdge->WindDelta != 0) && ePrev && (ePrev->OutIdx >= 0) && - (ePrev->Curr.X == horzEdge->Top.X) && (ePrev->WindDelta != 0)) - { - IntPoint pt = horzEdge->Top; - AddOutPt(ePrev, pt); - } - TEdge* eNext = horzEdge->NextInAEL; - if ((horzEdge->WindDelta != 0) && eNext && (eNext->OutIdx >= 0) && - (eNext->Curr.X == horzEdge->Top.X) && (eNext->WindDelta != 0)) - { - IntPoint pt = horzEdge->Top; - AddOutPt(eNext, pt); - } - } - UpdateEdgeIntoAEL(horzEdge); - if (horzEdge->WindDelta == 0) return; - //nb: HorzEdge is no longer horizontal here - TEdge* ePrev = horzEdge->PrevInAEL; - TEdge* eNext = horzEdge->NextInAEL; - if (ePrev && ePrev->Curr.X == horzEdge->Bot.X && - ePrev->Curr.Y == horzEdge->Bot.Y && ePrev->WindDelta != 0 && - (ePrev->OutIdx >= 0 && ePrev->Curr.Y > ePrev->Top.Y && - SlopesEqual(*horzEdge, *ePrev, m_UseFullRange))) - { - OutPt* op2 = AddOutPt(ePrev, horzEdge->Bot); - AddJoin(op1, op2, horzEdge->Top); - } - else if (eNext && eNext->Curr.X == horzEdge->Bot.X && - eNext->Curr.Y == horzEdge->Bot.Y && eNext->WindDelta != 0 && - eNext->OutIdx >= 0 && eNext->Curr.Y > eNext->Top.Y && - SlopesEqual(*horzEdge, *eNext, m_UseFullRange)) - { - OutPt* op2 = AddOutPt(eNext, horzEdge->Bot); - AddJoin(op1, op2, horzEdge->Top); - } - } - else - UpdateEdgeIntoAEL(horzEdge); - } - else - { - if (horzEdge->OutIdx >= 0) AddOutPt(horzEdge, horzEdge->Top); - DeleteFromAEL(horzEdge); - } -} -//------------------------------------------------------------------------------ - -bool Clipper::ProcessIntersections(const cInt topY) -{ - if( !m_ActiveEdges ) return true; - try { - BuildIntersectList(topY); - size_t IlSize = m_IntersectList.size(); - if (IlSize == 0) return true; - if (IlSize == 1 || FixupIntersectionOrder()) ProcessIntersectList(); - else return false; - } - catch(std::exception const& ex) - { - m_SortedEdges = 0; - DisposeIntersectNodes(); - throw clipperException((std::string("ProcessIntersections error ") + ex.what()).c_str()); - } - m_SortedEdges = 0; - return true; -} -//------------------------------------------------------------------------------ - -void Clipper::DisposeIntersectNodes() -{ - for (size_t i = 0; i < m_IntersectList.size(); ++i ) - delete m_IntersectList[i]; - m_IntersectList.clear(); -} -//------------------------------------------------------------------------------ - -void Clipper::BuildIntersectList(const cInt topY) -{ - if ( !m_ActiveEdges ) return; - - //prepare for sorting ... - TEdge* e = m_ActiveEdges; - m_SortedEdges = e; - while( e ) - { - e->PrevInSEL = e->PrevInAEL; - e->NextInSEL = e->NextInAEL; - e->Curr.X = TopX( *e, topY ); - e = e->NextInAEL; - } - - //bubblesort ... - bool isModified; - do - { - isModified = false; - e = m_SortedEdges; - while( e->NextInSEL ) - { - TEdge *eNext = e->NextInSEL; - IntPoint Pt; - if(e->Curr.X > eNext->Curr.X) - { - IntersectPoint(*e, *eNext, Pt); - if (Pt.Y < topY) Pt = IntPoint(TopX(*e, topY), topY); - IntersectNode * newNode = new IntersectNode; - newNode->Edge1 = e; - newNode->Edge2 = eNext; - newNode->Pt = Pt; - m_IntersectList.push_back(newNode); - - SwapPositionsInSEL(e, eNext); - isModified = true; - } - else - e = eNext; - } - if( e->PrevInSEL ) e->PrevInSEL->NextInSEL = 0; - else break; - } - while ( isModified ); - m_SortedEdges = 0; //important -} -//------------------------------------------------------------------------------ - - -void Clipper::ProcessIntersectList() -{ - for (size_t i = 0; i < m_IntersectList.size(); ++i) - { - IntersectNode* iNode = m_IntersectList[i]; - { - IntersectEdges( iNode->Edge1, iNode->Edge2, iNode->Pt); - SwapPositionsInAEL( iNode->Edge1 , iNode->Edge2 ); - } - delete iNode; - } - m_IntersectList.clear(); -} -//------------------------------------------------------------------------------ - -bool IntersectListSort(IntersectNode* node1, IntersectNode* node2) -{ - if (node2->Pt.Y != node1->Pt.Y) - { - return node2->Pt.Y < node1->Pt.Y; - } - else - { - return (node2->Edge1->WindCnt2 + node2->Edge2->WindCnt2) > (node1->Edge1->WindCnt2 + node1->Edge2->WindCnt2); - } -} -//------------------------------------------------------------------------------ - -inline bool EdgesAdjacent(const IntersectNode &inode) -{ - return (inode.Edge1->NextInSEL == inode.Edge2) || - (inode.Edge1->PrevInSEL == inode.Edge2); -} -//------------------------------------------------------------------------------ - -bool Clipper::FixupIntersectionOrder() -{ - //pre-condition: intersections are sorted Bottom-most first. - //Now it's crucial that intersections are made only between adjacent edges, - //so to ensure this the order of intersections may need adjusting ... - CopyAELToSEL(); - std::stable_sort(m_IntersectList.begin(), m_IntersectList.end(), IntersectListSort); - size_t cnt = m_IntersectList.size(); - for (size_t i = 0; i < cnt; ++i) - { - if (!EdgesAdjacent(*m_IntersectList[i])) - { - size_t j = i + 1; - while (j < cnt && !EdgesAdjacent(*m_IntersectList[j])) j++; - if (j == cnt) return false; - std::swap(m_IntersectList[i], m_IntersectList[j]); - } - SwapPositionsInSEL(m_IntersectList[i]->Edge1, m_IntersectList[i]->Edge2); - } - return true; -} -//------------------------------------------------------------------------------ - -void Clipper::DoMaxima(TEdge *e) -{ - TEdge* eMaxPair = GetMaximaPairEx(e); - if (!eMaxPair) - { - if (e->OutIdx >= 0) - { - AddOutPt(e, e->Top); - } - DeleteFromAEL(e); - return; - } - - TEdge* ePrev = e->PrevInAEL; - if (ePrev && ePrev->Curr.X == e->Top.X && ePrev->Top != e->Top && ePrev->OutIdx >= 0 && - ePrev->WindDelta != 0 && e->OutIdx >= 0 && e->WindDelta != 0) - { - IntPoint pt = e->Top; - AddOutPt(ePrev, pt); - } - TEdge* eNext = e->NextInAEL; - while(eNext && eNext != eMaxPair) - { - IntersectEdges(e, eNext, e->Top); - SwapPositionsInAEL(e, eNext); - eNext = e->NextInAEL; - } - eNext = eMaxPair->NextInAEL; - if (eNext && eNext->Curr.X == e->Top.X && eNext->Top != e->Top && eNext->OutIdx >= 0 && - eNext->WindDelta != 0 && e->OutIdx >= 0 && e->WindDelta != 0) - { - IntPoint pt = e->Top; - AddOutPt(eNext, pt); - } - - if(e->OutIdx == Unassigned && eMaxPair->OutIdx == Unassigned) - { - DeleteFromAEL(e); - DeleteFromAEL(eMaxPair); - } - else if( e->OutIdx >= 0 && eMaxPair->OutIdx >= 0 ) - { - AddLocalMaxPoly(e, eMaxPair, e->Top); - DeleteFromAEL(e); - DeleteFromAEL(eMaxPair); - } -#ifdef use_lines - else if (e->WindDelta == 0) - { - if (e->OutIdx >= 0) - { - AddOutPt(e, e->Top); - e->OutIdx = Unassigned; - } - DeleteFromAEL(e); - - if (eMaxPair->OutIdx >= 0) - { - AddOutPt(eMaxPair, e->Top); - eMaxPair->OutIdx = Unassigned; - } - DeleteFromAEL(eMaxPair); - } -#endif - else throw clipperException("DoMaxima error"); -} -//------------------------------------------------------------------------------ - -void Clipper::ProcessEdgesAtTopOfScanbeam(const cInt topY) -{ - TEdge* e = m_ActiveEdges; - MaximaList next_maxima; - while( e ) - { - //1. process maxima, treating them as if they're 'bent' horizontal edges, - // but exclude maxima with horizontal edges. nb: e can't be a horizontal. - bool IsMaximaEdge = IsMaxima(e, topY); - - if(IsMaximaEdge) - { - TEdge* eMaxPair = GetMaximaPairEx(e); - IsMaximaEdge = (!eMaxPair || !IsHorizontal(*eMaxPair)); - } - - if(IsMaximaEdge) - { - if (m_StrictSimple) - { - m_Maxima.push_back(e->Top.X); - next_maxima.push_back(e->Top.X); - } - TEdge* ePrev = e->PrevInAEL; - DoMaxima(e); - if( !ePrev ) e = m_ActiveEdges; - else e = ePrev->NextInAEL; - } - else - { - //2. promote horizontal edges, otherwise update Curr.X and Curr.Y ... - if (IsIntermediate(e, topY) && IsHorizontal(*e->NextInLML)) - { - UpdateEdgeIntoAEL(e); - if (e->OutIdx >= 0) - { - AddOutPt(e, e->Bot); - if (m_StrictSimple) - { - m_Maxima.push_back(e->Top.X); - m_Maxima.push_back(e->Bot.X); - next_maxima.push_back(e->Bot.X); - } - } - AddEdgeToSEL(e); - } - else - { - e->Curr.X = TopX( *e, topY ); - e->Curr.Y = topY; - } - - //When StrictlySimple and 'e' is being touched by another edge, then - //make sure both edges have a vertex here ... - if (m_StrictSimple && e->OutIdx >= 0 && e->WindDelta != 0) - { - TEdge* ePrev = e->PrevInAEL; - while (ePrev && ePrev->Curr.X == e->Curr.X) - { - if (ePrev->OutIdx >= 0 && ePrev->WindDelta != 0 && - !(e->Bot == ePrev->Bot && e->Top == ePrev->Top)) - { - IntPoint pt = e->Curr; -#ifdef use_xyz - SetZ(pt, *ePrev, *e); -#endif - OutPt* op = AddOutPt(ePrev, pt); - OutPt* op2 = AddOutPt(e, pt); - AddJoin(op, op2, pt); //StrictlySimple (type-3) join - } - ePrev = ePrev->PrevInAEL; - } - } - - e = e->NextInAEL; - } - } - if (m_StrictSimple) - { - MinimaList::iterator lm = m_CurrentLM; - while (lm != m_MinimaList.end() && lm->Y == topY) - { - if (lm->LeftBound && lm->RightBound) - { - m_Maxima.push_back(lm->LeftBound->Bot.X); - } - ++lm; - } - } - - //3. Process horizontals at the Top of the scanbeam ... - ProcessHorizontals(); - if (m_StrictSimple && !next_maxima.empty()) - { - m_Maxima.insert(m_Maxima.end(), next_maxima.begin(), next_maxima.end()); - } - - //4. Promote intermediate vertices ... - e = m_ActiveEdges; - while(e) - { - if(IsIntermediate(e, topY)) - { - OutPt* op = 0; - if( e->OutIdx >= 0 ) - op = AddOutPt(e, e->Top); - UpdateEdgeIntoAEL(e); - - //if output polygons share an edge, they'll need joining later ... - TEdge* ePrev = e->PrevInAEL; - TEdge* eNext = e->NextInAEL; - if (ePrev && ePrev->Curr.X == e->Bot.X && - ePrev->Curr.Y == e->Bot.Y && op && - ePrev->OutIdx >= 0 && ePrev->Curr.Y > ePrev->Top.Y && - SlopesEqual(e->Curr, e->Top, ePrev->Curr, ePrev->Top, m_UseFullRange) && - (e->WindDelta != 0) && (ePrev->WindDelta != 0)) - { - OutPt* op2 = AddOutPt(ePrev, e->Bot); - AddJoin(op, op2, e->Top); - } - else if (eNext && eNext->Curr.X == e->Bot.X && - eNext->Curr.Y == e->Bot.Y && op && - eNext->OutIdx >= 0 && eNext->Curr.Y > eNext->Top.Y && - SlopesEqual(e->Curr, e->Top, eNext->Curr, eNext->Top, m_UseFullRange) && - (e->WindDelta != 0) && (eNext->WindDelta != 0)) - { - OutPt* op2 = AddOutPt(eNext, e->Bot); - AddJoin(op, op2, e->Top); - } - } - e = e->NextInAEL; - } -} -//------------------------------------------------------------------------------ - -void Clipper::FixupOutPolyline(OutRec &outrec) -{ - OutPt *pp = outrec.Pts; - OutPt *lastPP = pp->Prev; - while (pp != lastPP) - { - pp = pp->Next; - if (pp->Pt == pp->Prev->Pt) - { - if (pp == lastPP) lastPP = pp->Prev; - OutPt *tmpPP = pp->Prev; - tmpPP->Next = pp->Next; - pp->Next->Prev = tmpPP; - delete pp; - pp = tmpPP; - } - } - - if (pp == pp->Prev) - { - DisposeOutPts(pp); - outrec.Pts = 0; - return; - } -} -//------------------------------------------------------------------------------ - -void Clipper::FixupOutPolygon(OutRec &outrec) -{ - //FixupOutPolygon() - removes duplicate points and simplifies consecutive - //parallel edges by removing the middle vertex. - OutPt *lastOK = 0; - outrec.BottomPt = 0; - OutPt *pp = outrec.Pts; - bool preserveCol = m_PreserveCollinear || m_StrictSimple; - - for (;;) - { - if (pp->Prev == pp || pp->Prev == pp->Next) - { - DisposeOutPts(pp); - outrec.Pts = 0; - return; - } - - //test for duplicate points and collinear edges ... - if ((pp->Pt == pp->Next->Pt) || (pp->Pt == pp->Prev->Pt) || - (SlopesEqual(pp->Prev->Pt, pp->Pt, pp->Next->Pt, m_UseFullRange) && - (!preserveCol || !Pt2IsBetweenPt1AndPt3(pp->Prev->Pt, pp->Pt, pp->Next->Pt)))) - { - lastOK = 0; - OutPt *tmp = pp; - pp->Prev->Next = pp->Next; - pp->Next->Prev = pp->Prev; - pp = pp->Prev; - delete tmp; - } - else if (pp == lastOK) break; - else - { - if (!lastOK) lastOK = pp; - pp = pp->Next; - } - } - outrec.Pts = pp; -} -//------------------------------------------------------------------------------ - -int PointCount(OutPt *Pts) -{ - if (!Pts) return 0; - int result = 0; - OutPt* p = Pts; - do - { - result++; - p = p->Next; - } - while (p != Pts); - return result; -} -//------------------------------------------------------------------------------ - -void Clipper::BuildResult(Paths &polys) -{ - polys.reserve(m_PolyOuts.size()); - for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); ++i) - { - if (!m_PolyOuts[i]->Pts) continue; - Path pg; - OutPt* p = m_PolyOuts[i]->Pts->Prev; - int cnt = PointCount(p); - if (cnt < 2) continue; - pg.reserve(cnt); - for (int j = 0; j < cnt; ++j) - { - pg.push_back(p->Pt); - p = p->Prev; - } - polys.push_back(pg); - } -} -//------------------------------------------------------------------------------ - -void Clipper::BuildResult2(PolyTree& polytree) -{ - polytree.Clear(); - polytree.AllNodes.reserve(m_PolyOuts.size()); - //add each output polygon/contour to polytree ... - for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); i++) - { - OutRec* outRec = m_PolyOuts[i]; - int cnt = PointCount(outRec->Pts); - if ((outRec->IsOpen && cnt < 2) || (!outRec->IsOpen && cnt < 3)) continue; - FixHoleLinkage(*outRec); - PolyNode* pn = new PolyNode(); - //nb: polytree takes ownership of all the PolyNodes - polytree.AllNodes.push_back(pn); - outRec->PolyNd = pn; - pn->Parent = 0; - pn->Index = 0; - pn->Contour.reserve(cnt); - OutPt *op = outRec->Pts->Prev; - for (int j = 0; j < cnt; j++) - { - pn->Contour.push_back(op->Pt); - op = op->Prev; - } - } - - //fixup PolyNode links etc ... - polytree.Childs.reserve(m_PolyOuts.size()); - for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); i++) - { - OutRec* outRec = m_PolyOuts[i]; - if (!outRec->PolyNd) continue; - if (outRec->IsOpen) - { - outRec->PolyNd->m_IsOpen = true; - polytree.AddChild(*outRec->PolyNd); - } - else if (outRec->FirstLeft && outRec->FirstLeft->PolyNd) - outRec->FirstLeft->PolyNd->AddChild(*outRec->PolyNd); - else - polytree.AddChild(*outRec->PolyNd); - } -} -//------------------------------------------------------------------------------ - -void SwapIntersectNodes(IntersectNode &int1, IntersectNode &int2) -{ - //just swap the contents (because fIntersectNodes is a single-linked-list) - IntersectNode inode = int1; //gets a copy of Int1 - int1.Edge1 = int2.Edge1; - int1.Edge2 = int2.Edge2; - int1.Pt = int2.Pt; - int2.Edge1 = inode.Edge1; - int2.Edge2 = inode.Edge2; - int2.Pt = inode.Pt; -} -//------------------------------------------------------------------------------ - -inline bool E2InsertsBeforeE1(TEdge &e1, TEdge &e2) -{ - if (e2.Curr.X == e1.Curr.X) - { - if (e2.Top.Y > e1.Top.Y) - return e2.Top.X < TopX(e1, e2.Top.Y); - else return e1.Top.X > TopX(e2, e1.Top.Y); - } - else return e2.Curr.X < e1.Curr.X; -} -//------------------------------------------------------------------------------ - -bool GetOverlap(const cInt a1, const cInt a2, const cInt b1, const cInt b2, - cInt& Left, cInt& Right) -{ - if (a1 < a2) - { - if (b1 < b2) {Left = std::max(a1,b1); Right = std::min(a2,b2);} - else {Left = std::max(a1,b2); Right = std::min(a2,b1);} - } - else - { - if (b1 < b2) {Left = std::max(a2,b1); Right = std::min(a1,b2);} - else {Left = std::max(a2,b2); Right = std::min(a1,b1);} - } - return Left < Right; -} -//------------------------------------------------------------------------------ - -inline void UpdateOutPtIdxs(OutRec& outrec) -{ - OutPt* op = outrec.Pts; - do - { - op->Idx = outrec.Idx; - op = op->Prev; - } - while(op != outrec.Pts); -} -//------------------------------------------------------------------------------ - -void Clipper::InsertEdgeIntoAEL(TEdge *edge, TEdge* startEdge) -{ - if(!m_ActiveEdges) - { - edge->PrevInAEL = 0; - edge->NextInAEL = 0; - m_ActiveEdges = edge; - } - else if(!startEdge && E2InsertsBeforeE1(*m_ActiveEdges, *edge)) - { - edge->PrevInAEL = 0; - edge->NextInAEL = m_ActiveEdges; - m_ActiveEdges->PrevInAEL = edge; - m_ActiveEdges = edge; - } - else - { - if(!startEdge) startEdge = m_ActiveEdges; - while(startEdge->NextInAEL && - !E2InsertsBeforeE1(*startEdge->NextInAEL , *edge)) - startEdge = startEdge->NextInAEL; - edge->NextInAEL = startEdge->NextInAEL; - if(startEdge->NextInAEL) startEdge->NextInAEL->PrevInAEL = edge; - edge->PrevInAEL = startEdge; - startEdge->NextInAEL = edge; - } -} -//---------------------------------------------------------------------- - -OutPt* DupOutPt(OutPt* outPt, bool InsertAfter) -{ - OutPt* result = new OutPt; - result->Pt = outPt->Pt; - result->Idx = outPt->Idx; - if (InsertAfter) - { - result->Next = outPt->Next; - result->Prev = outPt; - outPt->Next->Prev = result; - outPt->Next = result; - } - else - { - result->Prev = outPt->Prev; - result->Next = outPt; - outPt->Prev->Next = result; - outPt->Prev = result; - } - return result; -} -//------------------------------------------------------------------------------ - -bool JoinHorz(OutPt* op1, OutPt* op1b, OutPt* op2, OutPt* op2b, - const IntPoint Pt, bool DiscardLeft) -{ - Direction Dir1 = (op1->Pt.X > op1b->Pt.X ? dRightToLeft : dLeftToRight); - Direction Dir2 = (op2->Pt.X > op2b->Pt.X ? dRightToLeft : dLeftToRight); - if (Dir1 == Dir2) return false; - - //When DiscardLeft, we want Op1b to be on the Left of Op1, otherwise we - //want Op1b to be on the Right. (And likewise with Op2 and Op2b.) - //So, to facilitate this while inserting Op1b and Op2b ... - //when DiscardLeft, make sure we're AT or RIGHT of Pt before adding Op1b, - //otherwise make sure we're AT or LEFT of Pt. (Likewise with Op2b.) - if (Dir1 == dLeftToRight) - { - while (op1->Next->Pt.X <= Pt.X && - op1->Next->Pt.X >= op1->Pt.X && op1->Next->Pt.Y == Pt.Y) - op1 = op1->Next; - if (DiscardLeft && (op1->Pt.X != Pt.X)) op1 = op1->Next; - op1b = DupOutPt(op1, !DiscardLeft); - if (op1b->Pt != Pt) - { - op1 = op1b; - op1->Pt = Pt; - op1b = DupOutPt(op1, !DiscardLeft); - } - } - else - { - while (op1->Next->Pt.X >= Pt.X && - op1->Next->Pt.X <= op1->Pt.X && op1->Next->Pt.Y == Pt.Y) - op1 = op1->Next; - if (!DiscardLeft && (op1->Pt.X != Pt.X)) op1 = op1->Next; - op1b = DupOutPt(op1, DiscardLeft); - if (op1b->Pt != Pt) - { - op1 = op1b; - op1->Pt = Pt; - op1b = DupOutPt(op1, DiscardLeft); - } - } - - if (Dir2 == dLeftToRight) - { - while (op2->Next->Pt.X <= Pt.X && - op2->Next->Pt.X >= op2->Pt.X && op2->Next->Pt.Y == Pt.Y) - op2 = op2->Next; - if (DiscardLeft && (op2->Pt.X != Pt.X)) op2 = op2->Next; - op2b = DupOutPt(op2, !DiscardLeft); - if (op2b->Pt != Pt) - { - op2 = op2b; - op2->Pt = Pt; - op2b = DupOutPt(op2, !DiscardLeft); - }; - } else - { - while (op2->Next->Pt.X >= Pt.X && - op2->Next->Pt.X <= op2->Pt.X && op2->Next->Pt.Y == Pt.Y) - op2 = op2->Next; - if (!DiscardLeft && (op2->Pt.X != Pt.X)) op2 = op2->Next; - op2b = DupOutPt(op2, DiscardLeft); - if (op2b->Pt != Pt) - { - op2 = op2b; - op2->Pt = Pt; - op2b = DupOutPt(op2, DiscardLeft); - }; - }; - - if ((Dir1 == dLeftToRight) == DiscardLeft) - { - op1->Prev = op2; - op2->Next = op1; - op1b->Next = op2b; - op2b->Prev = op1b; - } - else - { - op1->Next = op2; - op2->Prev = op1; - op1b->Prev = op2b; - op2b->Next = op1b; - } - return true; -} -//------------------------------------------------------------------------------ - -bool Clipper::JoinPoints(Join *j, OutRec* outRec1, OutRec* outRec2) -{ - OutPt *op1 = j->OutPt1, *op1b; - OutPt *op2 = j->OutPt2, *op2b; - - //There are 3 kinds of joins for output polygons ... - //1. Horizontal joins where Join.OutPt1 & Join.OutPt2 are vertices anywhere - //along (horizontal) collinear edges (& Join.OffPt is on the same horizontal). - //2. Non-horizontal joins where Join.OutPt1 & Join.OutPt2 are at the same - //location at the Bottom of the overlapping segment (& Join.OffPt is above). - //3. StrictSimple joins where edges touch but are not collinear and where - //Join.OutPt1, Join.OutPt2 & Join.OffPt all share the same point. - bool isHorizontal = (j->OutPt1->Pt.Y == j->OffPt.Y); - - if (isHorizontal && (j->OffPt == j->OutPt1->Pt) && - (j->OffPt == j->OutPt2->Pt)) - { - if (outRec1 != outRec2) - { - // First Op1 Next and Op2 Prev - op1b = j->OutPt1->Next; - while (op1b != op1 && (op1b->Pt == j->OffPt)) - op1b = op1b->Next; - op2b = j->OutPt2->Prev; - while (op2b != op2 && (op2b->Pt == j->OffPt)) - op2b = op2b->Prev; - if (op1b->Pt == op2b->Pt) - { - OutPt* op1b_prev = op1b->Prev; - OutPt* op2b_next = op2b->Next; - op1b->Prev = op2b; - op2b->Next = op1b; - op1b_prev->Next = op2b_next; - op2b_next->Prev = op1b_prev; - return true; - } - - // Second Op1 Prev and Op2 Next - op2b = j->OutPt2->Next; - while (op2b != op2 && (op2b->Pt == j->OffPt)) - op2b = op2b->Next; - op1b = j->OutPt1->Prev; - while (op1b != op1 && (op1b->Pt == j->OffPt)) - op1b = op1b->Prev; - if (op2b->Pt == op1b->Pt) - { - OutPt* op2b_prev = op2b->Prev; - OutPt* op1b_next = op1b->Next; - op2b->Prev = op1b; - op1b->Next = op2b; - op2b_prev->Next = op1b_next; - op1b_next->Prev = op2b_prev; - return true; - } - return false; - } - //Strictly Simple join ... - op1b = j->OutPt1->Next; - while (op1b != op1 && (op1b->Pt == j->OffPt)) - op1b = op1b->Next; - bool reverse1 = (op1b->Pt.Y > j->OffPt.Y); - op2b = j->OutPt2->Next; - while (op2b != op2 && (op2b->Pt == j->OffPt)) - op2b = op2b->Next; - bool reverse2 = (op2b->Pt.Y > j->OffPt.Y); - if (reverse1 == reverse2) return false; - if (reverse1) - { - op1b = DupOutPt(op1, false); - op2b = DupOutPt(op2, true); - op1->Prev = op2; - op2->Next = op1; - op1b->Next = op2b; - op2b->Prev = op1b; - j->OutPt1 = op1; - j->OutPt2 = op1b; - return true; - } else - { - op1b = DupOutPt(op1, true); - op2b = DupOutPt(op2, false); - op1->Next = op2; - op2->Prev = op1; - op1b->Prev = op2b; - op2b->Next = op1b; - j->OutPt1 = op1; - j->OutPt2 = op1b; - return true; - } - } - else if (isHorizontal) - { - //treat horizontal joins differently to non-horizontal joins since with - //them we're not yet sure where the overlapping is. OutPt1.Pt & OutPt2.Pt - //may be anywhere along the horizontal edge. - op1b = op1; - while (op1->Prev->Pt.Y == op1->Pt.Y && op1->Prev != op1b && op1->Prev != op2) - op1 = op1->Prev; - while (op1b->Next->Pt.Y == op1b->Pt.Y && op1b->Next != op1 && op1b->Next != op2) - op1b = op1b->Next; - if (op1b->Next == op1 || op1b->Next == op2) return false; //a flat 'polygon' - - op2b = op2; - while (op2->Prev->Pt.Y == op2->Pt.Y && op2->Prev != op2b && op2->Prev != op1b) - op2 = op2->Prev; - while (op2b->Next->Pt.Y == op2b->Pt.Y && op2b->Next != op2 && op2b->Next != op1) - op2b = op2b->Next; - if (op2b->Next == op2 || op2b->Next == op1) return false; //a flat 'polygon' - - cInt Left, Right; - //Op1 --> Op1b & Op2 --> Op2b are the extremites of the horizontal edges - if (!GetOverlap(op1->Pt.X, op1b->Pt.X, op2->Pt.X, op2b->Pt.X, Left, Right)) - return false; - - //DiscardLeftSide: when overlapping edges are joined, a spike will created - //which needs to be cleaned up. However, we don't want Op1 or Op2 caught up - //on the discard Side as either may still be needed for other joins ... - IntPoint Pt; - bool DiscardLeftSide; - if (op1->Pt.X >= Left && op1->Pt.X <= Right) - { - Pt = op1->Pt; DiscardLeftSide = (op1->Pt.X > op1b->Pt.X); - } - else if (op2->Pt.X >= Left&& op2->Pt.X <= Right) - { - Pt = op2->Pt; DiscardLeftSide = (op2->Pt.X > op2b->Pt.X); - } - else if (op1b->Pt.X >= Left && op1b->Pt.X <= Right) - { - Pt = op1b->Pt; DiscardLeftSide = op1b->Pt.X > op1->Pt.X; - } - else - { - Pt = op2b->Pt; DiscardLeftSide = (op2b->Pt.X > op2->Pt.X); - } - j->OutPt1 = op1; j->OutPt2 = op2; - return JoinHorz(op1, op1b, op2, op2b, Pt, DiscardLeftSide); - } else - { - //nb: For non-horizontal joins ... - // 1. Jr.OutPt1.Pt.Y == Jr.OutPt2.Pt.Y - // 2. Jr.OutPt1.Pt > Jr.OffPt.Y - - //make sure the polygons are correctly oriented ... - op1b = op1->Next; - while ((op1b->Pt == op1->Pt) && (op1b != op1)) op1b = op1b->Next; - bool Reverse1 = ((op1b->Pt.Y > op1->Pt.Y) || - !SlopesEqual(op1->Pt, op1b->Pt, j->OffPt, m_UseFullRange)); - if (Reverse1) - { - op1b = op1->Prev; - while ((op1b->Pt == op1->Pt) && (op1b != op1)) op1b = op1b->Prev; - if ((op1b->Pt.Y > op1->Pt.Y) || - !SlopesEqual(op1->Pt, op1b->Pt, j->OffPt, m_UseFullRange)) return false; - }; - op2b = op2->Next; - while ((op2b->Pt == op2->Pt) && (op2b != op2))op2b = op2b->Next; - bool Reverse2 = ((op2b->Pt.Y > op2->Pt.Y) || - !SlopesEqual(op2->Pt, op2b->Pt, j->OffPt, m_UseFullRange)); - if (Reverse2) - { - op2b = op2->Prev; - while ((op2b->Pt == op2->Pt) && (op2b != op2)) op2b = op2b->Prev; - if ((op2b->Pt.Y > op2->Pt.Y) || - !SlopesEqual(op2->Pt, op2b->Pt, j->OffPt, m_UseFullRange)) return false; - } - - if ((op1b == op1) || (op2b == op2) || (op1b == op2b) || - ((outRec1 == outRec2) && (Reverse1 == Reverse2))) return false; - - if (Reverse1) - { - op1b = DupOutPt(op1, false); - op2b = DupOutPt(op2, true); - op1->Prev = op2; - op2->Next = op1; - op1b->Next = op2b; - op2b->Prev = op1b; - j->OutPt1 = op1; - j->OutPt2 = op1b; - return true; - } else - { - op1b = DupOutPt(op1, true); - op2b = DupOutPt(op2, false); - op1->Next = op2; - op2->Prev = op1; - op1b->Prev = op2b; - op2b->Next = op1b; - j->OutPt1 = op1; - j->OutPt2 = op1b; - return true; - } - } -} -//---------------------------------------------------------------------- - -static OutRec* ParseFirstLeft(OutRec* FirstLeft) -{ - while (FirstLeft && !FirstLeft->Pts) - FirstLeft = FirstLeft->FirstLeft; - return FirstLeft; -} -//------------------------------------------------------------------------------ - -void Clipper::FixupFirstLefts1(OutRec* OldOutRec, OutRec* NewOutRec) -{ - //tests if NewOutRec contains the polygon before reassigning FirstLeft - for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); ++i) - { - OutRec* outRec = m_PolyOuts[i]; - OutRec* firstLeft = ParseFirstLeft(outRec->FirstLeft); - if (outRec->Pts && firstLeft == OldOutRec) - { - if (Poly2ContainsPoly1(outRec->Pts, NewOutRec->Pts)) - { - if (outRec->IsHole == NewOutRec->IsHole) - { - outRec->IsHole = !outRec->IsHole; - ReversePolyPtLinks(outRec->Pts); - } - outRec->FirstLeft = NewOutRec; - } - } - } -} -//---------------------------------------------------------------------- - -void Clipper::FixupFirstLefts2(OutRec* InnerOutRec, OutRec* OuterOutRec) -{ - //A polygon has split into two such that one is now the inner of the other. - //It's possible that these polygons now wrap around other polygons, so check - //every polygon that's also contained by OuterOutRec's FirstLeft container - //(including 0) to see if they've become inner to the new inner polygon ... - for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); ++i) - { - OutRec* outRec = m_PolyOuts[i]; - - if (!outRec->Pts || outRec == OuterOutRec || outRec == InnerOutRec) - continue; - OutRec* firstLeft = ParseFirstLeft(outRec->FirstLeft); - if (firstLeft != InnerOutRec && firstLeft != OuterOutRec) - continue; - if (Poly2ContainsPoly1(outRec->Pts, InnerOutRec->Pts)) - { - if (outRec->IsHole == InnerOutRec->IsHole) - { - outRec->IsHole = !outRec->IsHole; - ReversePolyPtLinks(outRec->Pts); - } - outRec->FirstLeft = InnerOutRec; - } - else - { - if (outRec->IsHole == OuterOutRec->IsHole) - { - if (Poly2ContainsPoly1(outRec->Pts, OuterOutRec->Pts)) - { - outRec->FirstLeft = OuterOutRec; - } - else - { - outRec->FirstLeft = ParseFirstLeft(OuterOutRec->FirstLeft); - } - } - else - { - if (Area(outRec->Pts) == 0.0 && !Poly2ContainsPoly1(outRec->Pts, OuterOutRec->Pts)) - { - outRec->IsHole = !outRec->IsHole; - outRec->FirstLeft = ParseFirstLeft(OuterOutRec->FirstLeft); - ReversePolyPtLinks(outRec->Pts); - } - else - { - outRec->FirstLeft = OuterOutRec; - } - } - } - } -} -//---------------------------------------------------------------------- -void Clipper::FixupFirstLefts3(OutRec* OldOutRec, OutRec* NewOutRec) -{ - //reassigns FirstLeft WITHOUT testing if NewOutRec contains the polygon - for (PolyOutList::size_type i = 0; i < m_PolyOuts.size(); ++i) - { - OutRec* outRec = m_PolyOuts[i]; - // unused variable `firstLeft`: is this a bug? (dane) - //OutRec* firstLeft = ParseFirstLeft(outRec->FirstLeft); - if (outRec->Pts && outRec->FirstLeft == OldOutRec) - outRec->FirstLeft = NewOutRec; - } -} -//---------------------------------------------------------------------- - -void Clipper::JoinCommonEdges() -{ - for (JoinList::size_type i = 0; i < m_Joins.size(); i++) - { - Join* join = m_Joins[i]; - - OutRec *outRec1 = GetOutRec(join->OutPt1->Idx); - OutRec *outRec2 = GetOutRec(join->OutPt2->Idx); - - if (!outRec1->Pts || !outRec2->Pts) continue; - if (outRec1->IsOpen || outRec2->IsOpen) continue; - - //get the polygon fragment with the correct hole state (FirstLeft) - //before calling JoinPoints() ... - OutRec *holeStateRec; - if (outRec1 == outRec2) holeStateRec = outRec1; - else if (OutRec1RightOfOutRec2(outRec1, outRec2)) holeStateRec = outRec2; - else if (OutRec1RightOfOutRec2(outRec2, outRec1)) holeStateRec = outRec1; - else holeStateRec = GetLowermostRec(outRec1, outRec2); - - if (!JoinPoints(join, outRec1, outRec2)) continue; - - if (outRec1 == outRec2) - { - //instead of joining two polygons, we've just created a new one by - //splitting one polygon into two. - outRec1->BottomPt = 0; - outRec2 = CreateOutRec(); - if (PointCount(join->OutPt1) > PointCount(join->OutPt2)) - { - outRec1->Pts = join->OutPt1; - outRec2->Pts = join->OutPt2; - } - else - { - outRec1->Pts = join->OutPt2; - outRec2->Pts = join->OutPt1; - } - - //update all OutRec2.Pts Idx's ... - UpdateOutPtIdxs(*outRec2); - - if (Poly2ContainsPoly1(outRec2->Pts, outRec1->Pts)) - { - //outRec1 contains outRec2 ... - outRec2->IsHole = !outRec1->IsHole; - outRec2->FirstLeft = outRec1; - - if (m_UsingPolyTree) FixupFirstLefts2(outRec2, outRec1); - - if ((outRec2->IsHole ^ m_ReverseOutput) == (Area(*outRec2) > 0)) - ReversePolyPtLinks(outRec2->Pts); - - } else if (Poly2ContainsPoly1(outRec1->Pts, outRec2->Pts)) - { - //outRec2 contains outRec1 ... - outRec2->IsHole = outRec1->IsHole; - outRec1->IsHole = !outRec2->IsHole; - outRec2->FirstLeft = outRec1->FirstLeft; - outRec1->FirstLeft = outRec2; - - if (m_UsingPolyTree) FixupFirstLefts2(outRec1, outRec2); - - if ((outRec1->IsHole ^ m_ReverseOutput) == (Area(*outRec1) > 0)) - ReversePolyPtLinks(outRec1->Pts); - } - else - { - //the 2 polygons are completely separate ... - outRec2->IsHole = outRec1->IsHole; - outRec2->FirstLeft = outRec1->FirstLeft; - - //fixup FirstLeft pointers that may need reassigning to OutRec2 - if (m_UsingPolyTree) FixupFirstLefts1(outRec1, outRec2); - } - - } else - { - //joined 2 polygons together ... - - outRec2->Pts = 0; - outRec2->BottomPt = 0; - outRec2->Idx = outRec1->Idx; - - outRec1->IsHole = holeStateRec->IsHole; - if (holeStateRec == outRec2) - outRec1->FirstLeft = outRec2->FirstLeft; - outRec2->FirstLeft = outRec1; - - if (m_UsingPolyTree) FixupFirstLefts3(outRec2, outRec1); - } - } -} - -//------------------------------------------------------------------------------ -// ClipperOffset support functions ... -//------------------------------------------------------------------------------ - -DoublePoint GetUnitNormal(const IntPoint &pt1, const IntPoint &pt2) -{ - if(pt2.X == pt1.X && pt2.Y == pt1.Y) - return DoublePoint(0, 0); - - double Dx = (double)(pt2.X - pt1.X); - double dy = (double)(pt2.Y - pt1.Y); - double f = 1 *1.0/ std::sqrt( Dx*Dx + dy*dy ); - Dx *= f; - dy *= f; - return DoublePoint(dy, -Dx); -} - -//------------------------------------------------------------------------------ -// ClipperOffset class -//------------------------------------------------------------------------------ - -ClipperOffset::ClipperOffset(double miterLimit, double arcTolerance) -{ - this->MiterLimit = miterLimit; - this->ArcTolerance = arcTolerance; - m_lowest.X = -1; -} -//------------------------------------------------------------------------------ - -ClipperOffset::~ClipperOffset() -{ - Clear(); -} -//------------------------------------------------------------------------------ - -void ClipperOffset::Clear() -{ - for (int i = 0; i < m_polyNodes.ChildCount(); ++i) - delete m_polyNodes.Childs[i]; - m_polyNodes.Childs.clear(); - m_lowest.X = -1; -} -//------------------------------------------------------------------------------ - -void ClipperOffset::AddPath(const Path& path, JoinType joinType, EndType endType) -{ - int highI = (int)path.size() - 1; - if (highI < 0) return; - PolyNode* newNode = new PolyNode(); - newNode->m_jointype = joinType; - newNode->m_endtype = endType; - - //strip duplicate points from path and also get index to the lowest point ... - if (endType == etClosedLine || endType == etClosedPolygon) - while (highI > 0 && path[0] == path[highI]) highI--; - newNode->Contour.reserve(highI + 1); - newNode->Contour.push_back(path[0]); - int j = 0, k = 0; - for (int i = 1; i <= highI; i++) - if (newNode->Contour[j] != path[i]) - { - j++; - newNode->Contour.push_back(path[i]); - if (path[i].Y > newNode->Contour[k].Y || - (path[i].Y == newNode->Contour[k].Y && - path[i].X < newNode->Contour[k].X)) k = j; - } - if (endType == etClosedPolygon && j < 2) - { - delete newNode; - return; - } - m_polyNodes.AddChild(*newNode); - - //if this path's lowest pt is lower than all the others then update m_lowest - if (endType != etClosedPolygon) return; - if (m_lowest.X < 0) - m_lowest = IntPoint(m_polyNodes.ChildCount() - 1, k); - else - { - IntPoint ip = m_polyNodes.Childs[(int)m_lowest.X]->Contour[(int)m_lowest.Y]; - if (newNode->Contour[k].Y > ip.Y || - (newNode->Contour[k].Y == ip.Y && - newNode->Contour[k].X < ip.X)) - m_lowest = IntPoint(m_polyNodes.ChildCount() - 1, k); - } -} -//------------------------------------------------------------------------------ - -void ClipperOffset::AddPaths(const Paths& paths, JoinType joinType, EndType endType) -{ - for (Paths::size_type i = 0; i < paths.size(); ++i) - AddPath(paths[i], joinType, endType); -} -//------------------------------------------------------------------------------ - -void ClipperOffset::FixOrientations() -{ - //fixup orientations of all closed paths if the orientation of the - //closed path with the lowermost vertex is wrong ... - if (m_lowest.X >= 0 && - !Orientation(m_polyNodes.Childs[(int)m_lowest.X]->Contour)) - { - for (int i = 0; i < m_polyNodes.ChildCount(); ++i) - { - PolyNode& node = *m_polyNodes.Childs[i]; - if (node.m_endtype == etClosedPolygon || - (node.m_endtype == etClosedLine && Orientation(node.Contour))) - ReversePath(node.Contour); - } - } else - { - for (int i = 0; i < m_polyNodes.ChildCount(); ++i) - { - PolyNode& node = *m_polyNodes.Childs[i]; - if (node.m_endtype == etClosedLine && !Orientation(node.Contour)) - ReversePath(node.Contour); - } - } -} -//------------------------------------------------------------------------------ - -void ClipperOffset::Execute(Paths& solution, double delta) -{ - solution.clear(); - FixOrientations(); - DoOffset(delta); - - //now clean up 'corners' ... - Clipper clpr; - clpr.AddPaths(m_destPolys, ptSubject, true); - if (delta > 0) - { - clpr.Execute(ctUnion, solution, pftPositive, pftPositive); - } - else - { - IntRect r = clpr.GetBounds(); - Path outer(4); - outer[0] = IntPoint(r.left - 10, r.bottom + 10); - outer[1] = IntPoint(r.right + 10, r.bottom + 10); - outer[2] = IntPoint(r.right + 10, r.top - 10); - outer[3] = IntPoint(r.left - 10, r.top - 10); - - clpr.AddPath(outer, ptSubject, true); - clpr.ReverseSolution(true); - clpr.Execute(ctUnion, solution, pftNegative, pftNegative); - if (!solution.empty()) solution.erase(solution.begin()); - } -} -//------------------------------------------------------------------------------ - -void ClipperOffset::Execute(PolyTree& solution, double delta) -{ - solution.Clear(); - FixOrientations(); - DoOffset(delta); - - //now clean up 'corners' ... - Clipper clpr; - clpr.AddPaths(m_destPolys, ptSubject, true); - if (delta > 0) - { - clpr.Execute(ctUnion, solution, pftPositive, pftPositive); - } - else - { - IntRect r = clpr.GetBounds(); - Path outer(4); - outer[0] = IntPoint(r.left - 10, r.bottom + 10); - outer[1] = IntPoint(r.right + 10, r.bottom + 10); - outer[2] = IntPoint(r.right + 10, r.top - 10); - outer[3] = IntPoint(r.left - 10, r.top - 10); - - clpr.AddPath(outer, ptSubject, true); - clpr.ReverseSolution(true); - clpr.Execute(ctUnion, solution, pftNegative, pftNegative); - //remove the outer PolyNode rectangle ... - if (solution.ChildCount() == 1 && solution.Childs[0]->ChildCount() > 0) - { - PolyNode* outerNode = solution.Childs[0]; - solution.Childs.reserve(outerNode->ChildCount()); - solution.Childs[0] = outerNode->Childs[0]; - solution.Childs[0]->Parent = outerNode->Parent; - for (int i = 1; i < outerNode->ChildCount(); ++i) - solution.AddChild(*outerNode->Childs[i]); - } - else - solution.Clear(); - } -} -//------------------------------------------------------------------------------ - -void ClipperOffset::DoOffset(double delta) -{ - m_destPolys.clear(); - m_delta = delta; - - //if Zero offset, just copy any CLOSED polygons to m_p and return ... - if (NEAR_ZERO(delta)) - { - m_destPolys.reserve(m_polyNodes.ChildCount()); - for (int i = 0; i < m_polyNodes.ChildCount(); i++) - { - PolyNode& node = *m_polyNodes.Childs[i]; - if (node.m_endtype == etClosedPolygon) - m_destPolys.push_back(node.Contour); - } - return; - } - - //see offset_triginometry3.svg in the documentation folder ... - if (MiterLimit > 2) m_miterLim = 2/(MiterLimit * MiterLimit); - else m_miterLim = 0.5; - - double y; - if (ArcTolerance <= 0.0) y = def_arc_tolerance; - else if (ArcTolerance > std::fabs(delta) * def_arc_tolerance) - y = std::fabs(delta) * def_arc_tolerance; - else y = ArcTolerance; - //see offset_triginometry2.svg in the documentation folder ... - double steps = pi / std::acos(1 - y / std::fabs(delta)); - if (steps > std::fabs(delta) * pi) - steps = std::fabs(delta) * pi; //ie excessive precision check - m_sin = std::sin(two_pi / steps); - m_cos = std::cos(two_pi / steps); - m_StepsPerRad = steps / two_pi; - if (delta < 0.0) m_sin = -m_sin; - - m_destPolys.reserve(m_polyNodes.ChildCount() * 2); - for (int i = 0; i < m_polyNodes.ChildCount(); i++) - { - PolyNode& node = *m_polyNodes.Childs[i]; - m_srcPoly = node.Contour; - - int len = (int)m_srcPoly.size(); - if (len == 0 || (delta <= 0 && (len < 3 || node.m_endtype != etClosedPolygon))) - continue; - - m_destPoly.clear(); - if (len == 1) - { - if (node.m_jointype == jtRound) - { - double X = 1.0, Y = 0.0; - for (cInt j = 1; j <= steps; j++) - { - m_destPoly.push_back(IntPoint( - Round(m_srcPoly[0].X + X * delta), - Round(m_srcPoly[0].Y + Y * delta))); - double X2 = X; - X = X * m_cos - m_sin * Y; - Y = X2 * m_sin + Y * m_cos; - } - } - else - { - double X = -1.0, Y = -1.0; - for (int j = 0; j < 4; ++j) - { - m_destPoly.push_back(IntPoint( - Round(m_srcPoly[0].X + X * delta), - Round(m_srcPoly[0].Y + Y * delta))); - if (X < 0) X = 1; - else if (Y < 0) Y = 1; - else X = -1; - } - } - m_destPolys.push_back(m_destPoly); - continue; - } - //build m_normals ... - m_normals.clear(); - m_normals.reserve(len); - for (int j = 0; j < len - 1; ++j) - m_normals.push_back(GetUnitNormal(m_srcPoly[j], m_srcPoly[j + 1])); - if (node.m_endtype == etClosedLine || node.m_endtype == etClosedPolygon) - m_normals.push_back(GetUnitNormal(m_srcPoly[len - 1], m_srcPoly[0])); - else - m_normals.push_back(DoublePoint(m_normals[len - 2])); - - if (node.m_endtype == etClosedPolygon) - { - int k = len - 1; - for (int j = 0; j < len; ++j) - OffsetPoint(j, k, node.m_jointype); - m_destPolys.push_back(m_destPoly); - } - else if (node.m_endtype == etClosedLine) - { - int k = len - 1; - for (int j = 0; j < len; ++j) - OffsetPoint(j, k, node.m_jointype); - m_destPolys.push_back(m_destPoly); - m_destPoly.clear(); - //re-build m_normals ... - DoublePoint n = m_normals[len -1]; - for (int j = len - 1; j > 0; j--) - m_normals[j] = DoublePoint(-m_normals[j - 1].X, -m_normals[j - 1].Y); - m_normals[0] = DoublePoint(-n.X, -n.Y); - k = 0; - for (int j = len - 1; j >= 0; j--) - OffsetPoint(j, k, node.m_jointype); - m_destPolys.push_back(m_destPoly); - } - else - { - int k = 0; - for (int j = 1; j < len - 1; ++j) - OffsetPoint(j, k, node.m_jointype); - - IntPoint pt1; - if (node.m_endtype == etOpenButt) - { - int j = len - 1; - pt1 = IntPoint((cInt)Round(m_srcPoly[j].X + m_normals[j].X * - delta), (cInt)Round(m_srcPoly[j].Y + m_normals[j].Y * delta)); - m_destPoly.push_back(pt1); - pt1 = IntPoint((cInt)Round(m_srcPoly[j].X - m_normals[j].X * - delta), (cInt)Round(m_srcPoly[j].Y - m_normals[j].Y * delta)); - m_destPoly.push_back(pt1); - } - else - { - int j = len - 1; - k = len - 2; - m_sinA = 0; - m_normals[j] = DoublePoint(-m_normals[j].X, -m_normals[j].Y); - if (node.m_endtype == etOpenSquare) - DoSquare(j, k); - else - DoRound(j, k); - } - - //re-build m_normals ... - for (int j = len - 1; j > 0; j--) - m_normals[j] = DoublePoint(-m_normals[j - 1].X, -m_normals[j - 1].Y); - m_normals[0] = DoublePoint(-m_normals[1].X, -m_normals[1].Y); - - k = len - 1; - for (int j = k - 1; j > 0; --j) OffsetPoint(j, k, node.m_jointype); - - if (node.m_endtype == etOpenButt) - { - pt1 = IntPoint((cInt)Round(m_srcPoly[0].X - m_normals[0].X * delta), - (cInt)Round(m_srcPoly[0].Y - m_normals[0].Y * delta)); - m_destPoly.push_back(pt1); - pt1 = IntPoint((cInt)Round(m_srcPoly[0].X + m_normals[0].X * delta), - (cInt)Round(m_srcPoly[0].Y + m_normals[0].Y * delta)); - m_destPoly.push_back(pt1); - } - else - { - k = 1; - m_sinA = 0; - if (node.m_endtype == etOpenSquare) - DoSquare(0, 1); - else - DoRound(0, 1); - } - m_destPolys.push_back(m_destPoly); - } - } -} -//------------------------------------------------------------------------------ - -void ClipperOffset::OffsetPoint(int j, int& k, JoinType jointype) -{ - //cross product ... - m_sinA = (m_normals[k].X * m_normals[j].Y - m_normals[j].X * m_normals[k].Y); - if (std::fabs(m_sinA * m_delta) < 1.0) - { - //dot product ... - double cosA = (m_normals[k].X * m_normals[j].X + m_normals[j].Y * m_normals[k].Y ); - if (cosA > 0) // angle => 0 degrees - { - m_destPoly.push_back(IntPoint(Round(m_srcPoly[j].X + m_normals[k].X * m_delta), - Round(m_srcPoly[j].Y + m_normals[k].Y * m_delta))); - return; - } - //else angle => 180 degrees - } - else if (m_sinA > 1.0) m_sinA = 1.0; - else if (m_sinA < -1.0) m_sinA = -1.0; - - if (m_sinA * m_delta < 0) - { - m_destPoly.push_back(IntPoint(Round(m_srcPoly[j].X + m_normals[k].X * m_delta), - Round(m_srcPoly[j].Y + m_normals[k].Y * m_delta))); - m_destPoly.push_back(m_srcPoly[j]); - m_destPoly.push_back(IntPoint(Round(m_srcPoly[j].X + m_normals[j].X * m_delta), - Round(m_srcPoly[j].Y + m_normals[j].Y * m_delta))); - } - else - switch (jointype) - { - case jtMiter: - { - double r = 1 + (m_normals[j].X * m_normals[k].X + - m_normals[j].Y * m_normals[k].Y); - if (r >= m_miterLim) DoMiter(j, k, r); else DoSquare(j, k); - break; - } - case jtSquare: DoSquare(j, k); break; - case jtRound: DoRound(j, k); break; - } - k = j; -} -//------------------------------------------------------------------------------ - -void ClipperOffset::DoSquare(int j, int k) -{ - double dx = std::tan(std::atan2(m_sinA, - m_normals[k].X * m_normals[j].X + m_normals[k].Y * m_normals[j].Y) / 4); - m_destPoly.push_back(IntPoint( - Round(m_srcPoly[j].X + m_delta * (m_normals[k].X - m_normals[k].Y * dx)), - Round(m_srcPoly[j].Y + m_delta * (m_normals[k].Y + m_normals[k].X * dx)))); - m_destPoly.push_back(IntPoint( - Round(m_srcPoly[j].X + m_delta * (m_normals[j].X + m_normals[j].Y * dx)), - Round(m_srcPoly[j].Y + m_delta * (m_normals[j].Y - m_normals[j].X * dx)))); -} -//------------------------------------------------------------------------------ - -void ClipperOffset::DoMiter(int j, int k, double r) -{ - double q = m_delta / r; - m_destPoly.push_back(IntPoint(Round(m_srcPoly[j].X + (m_normals[k].X + m_normals[j].X) * q), - Round(m_srcPoly[j].Y + (m_normals[k].Y + m_normals[j].Y) * q))); -} -//------------------------------------------------------------------------------ - -void ClipperOffset::DoRound(int j, int k) -{ - double a = std::atan2(m_sinA, - m_normals[k].X * m_normals[j].X + m_normals[k].Y * m_normals[j].Y); - int steps = std::max((int)Round(m_StepsPerRad * std::fabs(a)), 1); - - double X = m_normals[k].X, Y = m_normals[k].Y, X2; - for (int i = 0; i < steps; ++i) - { - m_destPoly.push_back(IntPoint( - Round(m_srcPoly[j].X + X * m_delta), - Round(m_srcPoly[j].Y + Y * m_delta))); - X2 = X; - X = X * m_cos - m_sin * Y; - Y = X2 * m_sin + Y * m_cos; - } - m_destPoly.push_back(IntPoint( - Round(m_srcPoly[j].X + m_normals[j].X * m_delta), - Round(m_srcPoly[j].Y + m_normals[j].Y * m_delta))); -} - -//------------------------------------------------------------------------------ -// Miscellaneous public functions -//------------------------------------------------------------------------------ - -bool SortOutPt(OutPt* op1, OutPt* op2) -{ - if (op1->Pt.Y > op2->Pt.Y) - { - return true; - } - else if (op1->Pt.Y < op2->Pt.Y) - { - return false; - } - else if (op1->Pt.X < op2->Pt.X) - { - return true; - } - else if (op1->Pt.X > op2->Pt.X) - { - return false; - } - else - { - return (op1->Idx < op2->Idx); - } -} - -//----------------------------------------------------------------------------- - -struct OutPtIntersect -{ - OutPt * op1; - OutPt * op2; -}; - -//----------------------------------------------------------------------------- - -bool Clipper::FindIntersectLoop(std::unordered_multimap & dupeRec, - std::list > & iList, - OutRec * outRec_parent, - int idx_origin, - int idx_search, - std::set & visited, - OutPt * orig_pt, - OutPt * prev_pt) -{ - auto range = dupeRec.equal_range(idx_search); - // Check for direct connection - for (auto it = range.first; it != range.second;) - { - OutRec * itRec1 = GetOutRec(it->second.op1->Idx); - OutRec * itRec2 = GetOutRec(it->second.op2->Idx); - if (itRec1->Idx != idx_search || (!itRec1->IsHole && !itRec2->IsHole)) - { - it = dupeRec.erase(it); - continue; - } - if (itRec2->Idx == idx_origin && - (outRec_parent == itRec2 || outRec_parent == ParseFirstLeft(itRec2->FirstLeft)) && - prev_pt->Pt != it->second.op2->Pt && - orig_pt->Pt != it->second.op2->Pt) - { - iList.emplace_front(idx_search, it->second); - return true; - } - ++it; - } - range = dupeRec.equal_range(idx_search); - visited.insert(idx_search); - // Check for connection through chain of other intersections - for (auto it = range.first; it != range.second && it != dupeRec.end() && it->first == idx_search; ++it) - { - OutRec * itRec = GetOutRec(it->second.op2->Idx); - if (visited.count(itRec->Idx) > 0 || - (outRec_parent != itRec && outRec_parent != ParseFirstLeft(itRec->FirstLeft)) - || prev_pt->Pt == it->second.op2->Pt) - { - continue; - } - if (FindIntersectLoop(dupeRec, iList, outRec_parent, idx_origin, itRec->Idx, visited, orig_pt, it->second.op2)) - { - iList.emplace_front(idx_search, it->second); - return true; - } - } - return false; -} - -//----------------------------------------------------------------------------- - -bool Clipper::FixIntersects(std::unordered_multimap & dupeRec, - OutPt * op_j, - OutPt * op_k, - OutRec * outRec_j, - OutRec * outRec_k) -{ - if (!outRec_j->IsHole && !outRec_k->IsHole) - { - // Both are not holes, return nothing to do. - return false; - } - OutRec * outRec_origin; - OutRec * outRec_search; - OutRec * outRec_parent; - OutPt * op_origin_1; - OutPt * op_origin_2; - if (!outRec_j->IsHole) - { - outRec_origin = outRec_j; - outRec_parent = outRec_origin; - outRec_search = outRec_k; - op_origin_1 = op_j; - op_origin_2 = op_k; - } - else if (!outRec_k->IsHole) - { - outRec_origin = outRec_k; - outRec_parent = outRec_origin; - outRec_search = outRec_j; - op_origin_1 = op_k; - op_origin_2 = op_j; - - } - else // both are holes - { - // Order doesn't matter - outRec_origin = outRec_j; - outRec_parent = ParseFirstLeft(outRec_origin->FirstLeft); - outRec_search = outRec_k; - op_origin_1 = op_j; - op_origin_2 = op_k; - } - if (outRec_parent != ParseFirstLeft(outRec_search->FirstLeft)) - { - // The two holes do not have the same parent, do not add them - // simply return! - return false; - } - bool found = false; - std::list > iList; - auto range = dupeRec.equal_range(outRec_search->Idx); - // Check for direct connection - for (auto it = range.first; it != range.second;) - { - OutRec * itRec1 = GetOutRec(it->second.op1->Idx); - OutRec * itRec2 = GetOutRec(it->second.op2->Idx); - if (outRec_search->Idx != itRec1->Idx || outRec_search->Idx == itRec2->Idx) - { - it = dupeRec.erase(it); - continue; - } - if (itRec2->Idx == outRec_origin->Idx) - { - found = true; - if (op_origin_1->Pt != it->second.op2->Pt) - { - iList.emplace_back(outRec_search->Idx, it->second); - break; - } - } - ++it; - } - if (!found) - { - range = dupeRec.equal_range(outRec_search->Idx); - std::set visited; - visited.insert(outRec_search->Idx); - // Check for connection through chain of other intersections - for (auto it = range.first; it != range.second && it != dupeRec.end() && it->first == outRec_search->Idx; ++it) - { - OutRec * itRec = GetOutRec(it->second.op2->Idx); - if (itRec->Idx != outRec_search->Idx && - op_origin_2->Pt != it->second.op2->Pt && - (outRec_parent == itRec || outRec_parent == ParseFirstLeft(itRec->FirstLeft)) && - FindIntersectLoop(dupeRec, iList, outRec_parent, outRec_origin->Idx, itRec->Idx, visited, op_origin_2, it->second.op2)) - { - found = true; - iList.emplace_front(outRec_search->Idx, it->second); - break; - } - } - } - if (!found) - { - OutPtIntersect intPt_origin = { op_origin_1, op_origin_2 }; - OutPtIntersect intPt_search = { op_origin_2, op_origin_1 }; - dupeRec.emplace(outRec_origin->Idx, intPt_origin); - dupeRec.emplace(outRec_search->Idx, intPt_search); - return false; - } - - if (iList.empty()) - { - return false; - } - if (outRec_origin->IsHole) - { - for (auto & iRing : iList) - { - OutRec * outRec_itr = GetOutRec(iRing.first); - if (!outRec_itr->IsHole) - { - // Make the hole the origin! - OutPt * op1 = op_origin_1; - op_origin_1 = iRing.second.op1; - iRing.second.op1 = op1; - OutPt * op2 = op_origin_2; - op_origin_2 = iRing.second.op2; - iRing.second.op2 = op2; - iRing.first = outRec_origin->Idx; - outRec_origin = outRec_itr; - outRec_parent = outRec_origin; - break; - } - } - } - - // Switch - OutPt * op_origin_1_next = op_origin_1->Next; - OutPt * op_origin_2_next = op_origin_2->Next; - op_origin_1->Next = op_origin_2_next; - op_origin_2->Next = op_origin_1_next; - op_origin_1_next->Prev = op_origin_2; - op_origin_2_next->Prev = op_origin_1; - - for (auto iRing : iList) - { - OutPt * op_search_1 = iRing.second.op1; - OutPt * op_search_2 = iRing.second.op2; - OutPt * op_search_1_next = op_search_1->Next; - OutPt * op_search_2_next = op_search_2->Next; - op_search_1->Next = op_search_2_next; - op_search_2->Next = op_search_1_next; - op_search_1_next->Prev = op_search_2; - op_search_2_next->Prev = op_search_1; - } - - OutRec * outRec_new = CreateOutRec(); - outRec_new->IsHole = false; - if (outRec_origin->IsHole && ((Area(op_origin_1) < 0) ^ m_ReverseOutput)) - { - outRec_origin->Pts = op_origin_1; - outRec_new->Pts = op_origin_2; - } - else - { - outRec_origin->Pts = op_origin_2; - outRec_new->Pts = op_origin_1; - } - - UpdateOutPtIdxs(*outRec_origin); - UpdateOutPtIdxs(*outRec_new); - - outRec_origin->BottomPt = 0; - - std::list > move_list; - for (auto iRing : iList) - { - OutRec * outRec_itr = GetOutRec(iRing.first); - outRec_itr->Pts = 0; - outRec_itr->BottomPt = 0; - outRec_itr->Idx = outRec_origin->Idx; - if (outRec_origin->IsHole) - { - outRec_itr->FirstLeft = ParseFirstLeft(outRec_origin->FirstLeft); - } - else - { - outRec_itr->FirstLeft = outRec_origin; - } - outRec_itr->IsHole = outRec_origin->IsHole; - if (m_UsingPolyTree) - { - FixupFirstLefts3(outRec_itr, outRec_origin); - } - } - if (outRec_origin->IsHole) - { - outRec_new->FirstLeft = outRec_origin; - } - else - { - outRec_new->FirstLeft = outRec_origin->FirstLeft; - } - if (m_UsingPolyTree) - { - if (outRec_origin->IsHole) - { - FixupFirstLefts2(outRec_new, outRec_origin); - } - else - { - FixupFirstLefts1(outRec_origin, outRec_new); - } - } - for (auto iRing : iList) - { - auto range_itr = dupeRec.equal_range(iRing.first); - if (range_itr.first != range_itr.second) - { - for (auto it = range_itr.first; it != range_itr.second; ++it) - { - OutRec * itRec = GetOutRec(it->second.op1->Idx); - OutRec * itRec2 = GetOutRec(it->second.op2->Idx); - if (itRec == itRec2) - { - continue; - } - OutRec * flRec; - OutRec * flRec2; - if (itRec->IsHole) - { - flRec = ParseFirstLeft(itRec->FirstLeft); - } - else - { - flRec = itRec; - } - if (itRec2->IsHole) - { - flRec2 = ParseFirstLeft(itRec2->FirstLeft); - } - else - { - flRec2 = itRec2; - } - if ((itRec->IsHole || itRec2->IsHole) && (flRec == flRec2)) - { - move_list.emplace_back(itRec->Idx, it->second); - } - } - dupeRec.erase(iRing.first); - } - } - auto range_itr = dupeRec.equal_range(outRec_origin->Idx); - for (auto it = range_itr.first; it != range_itr.second;) - { - OutRec * itRec = GetOutRec(it->second.op1->Idx); - OutRec * itRec2 = GetOutRec(it->second.op2->Idx); - if (itRec == itRec2) - { - it = dupeRec.erase(it); - continue; - } - OutRec * flRec; - OutRec * flRec2; - if (itRec->IsHole) - { - flRec = ParseFirstLeft(itRec->FirstLeft); - } - else - { - flRec = itRec; - } - if (itRec2->IsHole) - { - flRec2 = ParseFirstLeft(itRec2->FirstLeft); - } - else - { - flRec2 = itRec2; - } - if (itRec->Idx != outRec_origin->Idx) - { - if ((itRec->IsHole || itRec2->IsHole) && (flRec == flRec2)) - { - move_list.emplace_back(itRec->Idx, it->second); - } - it = dupeRec.erase(it); - } - else - { - if ((itRec->IsHole || itRec2->IsHole) && (flRec == flRec2)) - { - ++it; - } - else - { - it = dupeRec.erase(it); - } - } - } - - if (!move_list.empty()) - { - dupeRec.insert(move_list.begin(), move_list.end()); - } - return true; -} - -//----------------------------------------------------------------------------- - -void Clipper::DoSimplePolygons() -{ - std::vector < OutPt*> m_OutPts; - { - PolyOutList::size_type i = 0; - while (i < m_PolyOuts.size()) - { - OutRec* outrec = m_PolyOuts[i++]; - OutPt* op = outrec->Pts; - if (!op || outrec->IsOpen) continue; - do - { - m_OutPts.push_back(op); - op = op->Next; - } - while (op != outrec->Pts); - } - } - std::stable_sort(m_OutPts.begin(), m_OutPts.end(), SortOutPt); - std::unordered_multimap dupeRec; - dupeRec.reserve(m_PolyOuts.size()); - std::size_t count = 0; - for (std::size_t i = 1; i < m_OutPts.size(); ++i) - { - if (m_OutPts[i]->Pt == m_OutPts[i-1]->Pt) - { - ++count; - continue; - } - if (count > 0) - { - for (std::size_t j = (i - count - 1); j < i; ++j) - { - if (m_OutPts[j]->Idx < 0) continue; - OutRec * outRec_j = GetOutRec(m_OutPts[j]->Idx); - int idx_j = outRec_j->Idx; - for (std::size_t k = j + 1; k < i; ++k) - { - if (m_OutPts[k]->Idx < 0) continue; - OutRec * outRec_k = GetOutRec(m_OutPts[k]->Idx); - int idx_k = outRec_k->Idx; - if (idx_k == idx_j) - { - OutPt * op = m_OutPts[j]; - OutPt * op2 = m_OutPts[k]; - OutRec * outrec = outRec_j; - if (op != op2 && op2->Next != op && op2->Prev != op) - { - //split the polygon into two ... - OutPt* op3 = op->Prev; - OutPt* op4 = op2->Prev; - op->Prev = op4; - op4->Next = op; - op2->Prev = op3; - op3->Next = op2; - - OutRec* outrec2 = CreateOutRec(); - if (PointCount(op) > PointCount(op2)) - { - outrec->Pts = op; - outrec2->Pts = op2; - } - else - { - outrec->Pts = op2; - outrec2->Pts = op; - } - UpdateOutPtIdxs(*outrec); - UpdateOutPtIdxs(*outrec2); - if (Poly2ContainsPoly1(outrec2->Pts, outrec->Pts)) - { - //OutRec2 is contained by OutRec1 ... - outrec2->IsHole = !outrec->IsHole; - outrec2->FirstLeft = outrec; - if (m_UsingPolyTree) - { - FixupFirstLefts2(outrec2, outrec); - } - auto range = dupeRec.equal_range(idx_j); - std::list > move_list; - for (auto it = range.first; it != range.second;) - { - OutRec * itRec = GetOutRec(it->second.op1->Idx); - OutRec * itRec2 = GetOutRec(it->second.op2->Idx); - OutRec * flRec; - OutRec * flRec2; - if (itRec->IsHole) - { - flRec = ParseFirstLeft(itRec->FirstLeft); - } - else - { - flRec = itRec; - } - if (itRec2->IsHole) - { - flRec2 = ParseFirstLeft(itRec2->FirstLeft); - } - else - { - flRec2 = itRec2; - } - if (itRec->Idx != idx_j) - { - if ((itRec->IsHole || itRec2->IsHole) && (flRec == flRec2)) - { - move_list.emplace_back(itRec->Idx, it->second); - } - it = dupeRec.erase(it); - } - else - { - if ((itRec->IsHole || itRec2->IsHole) && (flRec == flRec2)) - { - ++it; - } - else - { - it = dupeRec.erase(it); - } - } - } - if (!move_list.empty()) - { - dupeRec.insert(move_list.begin(), move_list.end()); - } - if (!outrec->IsHole) - { - OutPtIntersect intPt1 = { outrec->Pts, outrec2->Pts }; - OutPtIntersect intPt2 = { outrec2->Pts, outrec->Pts }; - dupeRec.emplace(outrec->Idx, intPt1); - dupeRec.emplace(outrec2->Idx, intPt2); - } - } - else if (Poly2ContainsPoly1(outrec->Pts, outrec2->Pts)) - { - //OutRec1 is contained by OutRec2 ... - outrec2->IsHole = outrec->IsHole; - outrec->IsHole = !outrec2->IsHole; - outrec2->FirstLeft = outrec->FirstLeft; - outrec->FirstLeft = outrec2; - if (m_UsingPolyTree) - { - FixupFirstLefts2(outrec, outrec2); - } - auto range = dupeRec.equal_range(idx_j); - std::list > move_list; - for (auto it = range.first; it != range.second;) - { - OutRec * itRec = GetOutRec(it->second.op1->Idx); - OutRec * itRec2 = GetOutRec(it->second.op2->Idx); - OutRec * flRec; - OutRec * flRec2; - if (itRec->IsHole) - { - flRec = ParseFirstLeft(itRec->FirstLeft); - } - else - { - flRec = itRec; - } - if (itRec2->IsHole) - { - flRec2 = ParseFirstLeft(itRec2->FirstLeft); - } - else - { - flRec2 = itRec2; - } - if (itRec->Idx != idx_j) - { - if ((itRec->IsHole || itRec2->IsHole) && (flRec == flRec2)) - { - move_list.emplace_back(itRec->Idx, it->second); - } - it = dupeRec.erase(it); - } - else - { - if ((itRec->IsHole || itRec2->IsHole) && (flRec == flRec2)) - { - ++it; - } - else - { - it = dupeRec.erase(it); - } - } - } - if (!move_list.empty()) - { - dupeRec.insert(move_list.begin(), move_list.end()); - } - if (!outrec2->IsHole) - { - OutPtIntersect intPt1 = { outrec->Pts, outrec2->Pts }; - OutPtIntersect intPt2 = { outrec2->Pts, outrec->Pts }; - dupeRec.emplace(outrec->Idx, intPt1); - dupeRec.emplace(outrec2->Idx, intPt2); - } - } - else - { - //the 2 polygons are separate ... - outrec2->IsHole = outrec->IsHole; - outrec2->FirstLeft = outrec->FirstLeft; - if (m_UsingPolyTree) - { - FixupFirstLefts1(outrec, outrec2); - } - auto range = dupeRec.equal_range(idx_j); - std::list > move_list; - for (auto it = range.first; it != range.second;) - { - OutRec * itRec = GetOutRec(it->second.op1->Idx); - OutRec * itRec2 = GetOutRec(it->second.op2->Idx); - OutRec * flRec; - OutRec * flRec2; - if (itRec->IsHole) - { - flRec = ParseFirstLeft(itRec->FirstLeft); - } - else - { - flRec = itRec; - } - if (itRec2->IsHole) - { - flRec2 = ParseFirstLeft(itRec2->FirstLeft); - } - else - { - flRec2 = itRec2; - } - if (itRec->Idx != idx_j) - { - if ((itRec->IsHole || itRec2->IsHole) && (flRec == flRec2)) - { - move_list.emplace_back(itRec->Idx, it->second); - } - it = dupeRec.erase(it); - } - else - { - if ((itRec->IsHole || itRec2->IsHole) && (flRec == flRec2)) - { - ++it; - } - else - { - it = dupeRec.erase(it); - } - } - } - if (!move_list.empty()) - { - dupeRec.insert(move_list.begin(), move_list.end()); - } - if (outrec2->IsHole) - { - OutPtIntersect intPt1 = { outrec->Pts, outrec2->Pts }; - OutPtIntersect intPt2 = { outrec2->Pts, outrec->Pts }; - dupeRec.emplace(outrec->Idx, intPt1); - dupeRec.emplace(outrec2->Idx, intPt2); - } - } - outRec_j = GetOutRec(m_OutPts[j]->Idx); - idx_j = outRec_j->Idx; - } - continue; - } - if (FixIntersects(dupeRec, m_OutPts[j], m_OutPts[k], outRec_j, outRec_k)) - { - outRec_j = GetOutRec(m_OutPts[j]->Idx); - idx_j = outRec_j->Idx; - } - } - } - count = 0; - } - } -} -//------------------------------------------------------------------------------ - -void ReversePath(Path& p) -{ - std::reverse(p.begin(), p.end()); -} -//------------------------------------------------------------------------------ - -void ReversePaths(Paths& p) -{ - for (Paths::size_type i = 0; i < p.size(); ++i) - ReversePath(p[i]); -} -//------------------------------------------------------------------------------ - -void SimplifyPolygon(const Path &in_poly, Paths &out_polys, PolyFillType fillType) -{ - Clipper c; - c.StrictlySimple(true); - c.AddPath(in_poly, ptSubject, true); - c.Execute(ctUnion, out_polys, fillType, fillType); -} -//------------------------------------------------------------------------------ - -void SimplifyPolygons(const Paths &in_polys, Paths &out_polys, PolyFillType fillType) -{ - Clipper c; - c.StrictlySimple(true); - c.AddPaths(in_polys, ptSubject, true); - c.Execute(ctUnion, out_polys, fillType, fillType); -} -//------------------------------------------------------------------------------ - -void SimplifyPolygons(Paths &polys, PolyFillType fillType) -{ - SimplifyPolygons(polys, polys, fillType); -} -//------------------------------------------------------------------------------ - -inline double DistanceSqrd(const IntPoint& pt1, const IntPoint& pt2) -{ - double Dx = ((double)pt1.X - pt2.X); - double dy = ((double)pt1.Y - pt2.Y); - return (Dx*Dx + dy*dy); -} -//------------------------------------------------------------------------------ - -double DistanceFromLineSqrd( - const IntPoint& pt, const IntPoint& ln1, const IntPoint& ln2) -{ - //The equation of a line in general form (Ax + By + C = 0) - //given 2 points (x¹,y¹) & (x²,y²) is ... - //(y¹ - y²)x + (x² - x¹)y + (y² - y¹)x¹ - (x² - x¹)y¹ = 0 - //A = (y¹ - y²); B = (x² - x¹); C = (y² - y¹)x¹ - (x² - x¹)y¹ - //perpendicular distance of point (x³,y³) = (Ax³ + By³ + C)/Sqrt(A² + B²) - //see http://en.wikipedia.org/wiki/Perpendicular_distance - double A = double(ln1.Y - ln2.Y); - double B = double(ln2.X - ln1.X); - double C = A * ln1.X + B * ln1.Y; - C = A * pt.X + B * pt.Y - C; - return (C * C) / (A * A + B * B); -} -//--------------------------------------------------------------------------- - -bool SlopesNearCollinear(const IntPoint& pt1, - const IntPoint& pt2, const IntPoint& pt3, double distSqrd) -{ - //this function is more accurate when the point that's geometrically - //between the other 2 points is the one that's tested for distance. - //ie makes it more likely to pick up 'spikes' ... - if (Abs(pt1.X - pt2.X) > Abs(pt1.Y - pt2.Y)) - { - if ((pt1.X > pt2.X) == (pt1.X < pt3.X)) - return DistanceFromLineSqrd(pt1, pt2, pt3) < distSqrd; - else if ((pt2.X > pt1.X) == (pt2.X < pt3.X)) - return DistanceFromLineSqrd(pt2, pt1, pt3) < distSqrd; - else - return DistanceFromLineSqrd(pt3, pt1, pt2) < distSqrd; - } - else - { - if ((pt1.Y > pt2.Y) == (pt1.Y < pt3.Y)) - return DistanceFromLineSqrd(pt1, pt2, pt3) < distSqrd; - else if ((pt2.Y > pt1.Y) == (pt2.Y < pt3.Y)) - return DistanceFromLineSqrd(pt2, pt1, pt3) < distSqrd; - else - return DistanceFromLineSqrd(pt3, pt1, pt2) < distSqrd; - } -} -//------------------------------------------------------------------------------ - -bool PointsAreClose(IntPoint pt1, IntPoint pt2, double distSqrd) -{ - double Dx = (double)pt1.X - pt2.X; - double dy = (double)pt1.Y - pt2.Y; - return ((Dx * Dx) + (dy * dy) <= distSqrd); -} -//------------------------------------------------------------------------------ - -OutPt* ExcludeOp(OutPt* op) -{ - OutPt* result = op->Prev; - result->Next = op->Next; - op->Next->Prev = result; - result->Idx = 0; - return result; -} -//------------------------------------------------------------------------------ - -void CleanPolygon(const Path& in_poly, Path& out_poly, double distance) -{ - //distance = proximity in units/pixels below which vertices - //will be stripped. Default ~= sqrt(2). - - size_t size = in_poly.size(); - - if (size == 0) - { - out_poly.clear(); - return; - } - - OutPt* outPts = new OutPt[size]; - for (size_t i = 0; i < size; ++i) - { - outPts[i].Pt = in_poly[i]; - outPts[i].Next = &outPts[(i + 1) % size]; - outPts[i].Next->Prev = &outPts[i]; - outPts[i].Idx = 0; - } - - double distSqrd = distance * distance; - OutPt* op = &outPts[0]; - while (op->Idx == 0 && op->Next != op->Prev) - { - if (PointsAreClose(op->Pt, op->Prev->Pt, distSqrd)) - { - op = ExcludeOp(op); - size--; - } - else if (PointsAreClose(op->Prev->Pt, op->Next->Pt, distSqrd)) - { - ExcludeOp(op->Next); - op = ExcludeOp(op); - size -= 2; - } - else if (SlopesNearCollinear(op->Prev->Pt, op->Pt, op->Next->Pt, distSqrd)) - { - op = ExcludeOp(op); - size--; - } - else - { - op->Idx = 1; - op = op->Next; - } - } - - if (size < 3) size = 0; - out_poly.resize(size); - for (size_t i = 0; i < size; ++i) - { - out_poly[i] = op->Pt; - op = op->Next; - } - delete [] outPts; -} -//------------------------------------------------------------------------------ - -void CleanPolygon(Path& poly, double distance) -{ - CleanPolygon(poly, poly, distance); -} -//------------------------------------------------------------------------------ - -void CleanPolygons(const Paths& in_polys, Paths& out_polys, double distance) -{ - out_polys.resize(in_polys.size()); - for (Paths::size_type i = 0; i < in_polys.size(); ++i) - CleanPolygon(in_polys[i], out_polys[i], distance); -} -//------------------------------------------------------------------------------ - -void CleanPolygons(Paths& polys, double distance) -{ - CleanPolygons(polys, polys, distance); -} -//------------------------------------------------------------------------------ - -void Minkowski(const Path& poly, const Path& path, - Paths& solution, bool isSum, bool isClosed) -{ - int delta = (isClosed ? 1 : 0); - size_t polyCnt = poly.size(); - size_t pathCnt = path.size(); - Paths pp; - pp.reserve(pathCnt); - if (isSum) - for (size_t i = 0; i < pathCnt; ++i) - { - Path p; - p.reserve(polyCnt); - for (size_t j = 0; j < poly.size(); ++j) - p.push_back(IntPoint(path[i].X + poly[j].X, path[i].Y + poly[j].Y)); - pp.push_back(p); - } - else - for (size_t i = 0; i < pathCnt; ++i) - { - Path p; - p.reserve(polyCnt); - for (size_t j = 0; j < poly.size(); ++j) - p.push_back(IntPoint(path[i].X - poly[j].X, path[i].Y - poly[j].Y)); - pp.push_back(p); - } - - solution.clear(); - solution.reserve((pathCnt + delta) * (polyCnt + 1)); - for (size_t i = 0; i < pathCnt - 1 + delta; ++i) - for (size_t j = 0; j < polyCnt; ++j) - { - Path quad; - quad.reserve(4); - quad.push_back(pp[i % pathCnt][j % polyCnt]); - quad.push_back(pp[(i + 1) % pathCnt][j % polyCnt]); - quad.push_back(pp[(i + 1) % pathCnt][(j + 1) % polyCnt]); - quad.push_back(pp[i % pathCnt][(j + 1) % polyCnt]); - if (!Orientation(quad)) ReversePath(quad); - solution.push_back(quad); - } -} -//------------------------------------------------------------------------------ - -void MinkowskiSum(const Path& pattern, const Path& path, Paths& solution, bool pathIsClosed) -{ - Minkowski(pattern, path, solution, true, pathIsClosed); - Clipper c; - c.AddPaths(solution, ptSubject, true); - c.Execute(ctUnion, solution, pftNonZero, pftNonZero); -} -//------------------------------------------------------------------------------ - -void TranslatePath(const Path& input, Path& output, const IntPoint delta) -{ - //precondition: input != output - output.resize(input.size()); - for (size_t i = 0; i < input.size(); ++i) - output[i] = IntPoint(input[i].X + delta.X, input[i].Y + delta.Y); -} -//------------------------------------------------------------------------------ - -void MinkowskiSum(const Path& pattern, const Paths& paths, Paths& solution, bool pathIsClosed) -{ - Clipper c; - for (size_t i = 0; i < paths.size(); ++i) - { - Paths tmp; - Minkowski(pattern, paths[i], tmp, true, pathIsClosed); - c.AddPaths(tmp, ptSubject, true); - if (pathIsClosed) - { - Path tmp2; - TranslatePath(paths[i], tmp2, pattern[0]); - c.AddPath(tmp2, ptClip, true); - } - } - c.Execute(ctUnion, solution, pftNonZero, pftNonZero); -} -//------------------------------------------------------------------------------ - -void MinkowskiDiff(const Path& poly1, const Path& poly2, Paths& solution) -{ - Minkowski(poly1, poly2, solution, false, true); - Clipper c; - c.AddPaths(solution, ptSubject, true); - c.Execute(ctUnion, solution, pftNonZero, pftNonZero); -} -//------------------------------------------------------------------------------ - -enum NodeType {ntAny, ntOpen, ntClosed}; - -void AddPolyNodeToPaths(const PolyNode& polynode, NodeType nodetype, Paths& paths) -{ - bool match = true; - if (nodetype == ntClosed) match = !polynode.IsOpen(); - else if (nodetype == ntOpen) return; - - if (!polynode.Contour.empty() && match) - paths.push_back(polynode.Contour); - for (int i = 0; i < polynode.ChildCount(); ++i) - AddPolyNodeToPaths(*polynode.Childs[i], nodetype, paths); -} -//------------------------------------------------------------------------------ - -void PolyTreeToPaths(const PolyTree& polytree, Paths& paths) -{ - paths.resize(0); - paths.reserve(polytree.Total()); - AddPolyNodeToPaths(polytree, ntAny, paths); -} -//------------------------------------------------------------------------------ - -void ClosedPathsFromPolyTree(const PolyTree& polytree, Paths& paths) -{ - paths.resize(0); - paths.reserve(polytree.Total()); - AddPolyNodeToPaths(polytree, ntClosed, paths); -} -//------------------------------------------------------------------------------ - -void OpenPathsFromPolyTree(PolyTree& polytree, Paths& paths) -{ - paths.resize(0); - paths.reserve(polytree.Total()); - //Open paths are top level only, so ... - for (int i = 0; i < polytree.ChildCount(); ++i) - if (polytree.Childs[i]->IsOpen()) - paths.push_back(polytree.Childs[i]->Contour); -} -//------------------------------------------------------------------------------ - -std::ostream& operator <<(std::ostream &s, const IntPoint &p) -{ - s << "(" << p.X << "," << p.Y << ")"; - return s; -} -//------------------------------------------------------------------------------ - -std::ostream& operator <<(std::ostream &s, const Path &p) -{ - if (p.empty()) return s; - Path::size_type last = p.size() -1; - for (Path::size_type i = 0; i < last; i++) - s << "(" << p[i].X << "," << p[i].Y << "), "; - s << "(" << p[last].X << "," << p[last].Y << ")\n"; - return s; -} -//------------------------------------------------------------------------------ - -std::ostream& operator <<(std::ostream &s, const Paths &p) -{ - for (Paths::size_type i = 0; i < p.size(); i++) - s << p[i]; - s << "\n"; - return s; -} -//------------------------------------------------------------------------------ - -} //ClipperLib namespace diff --git a/clipper/clipper.hpp b/clipper/clipper.hpp deleted file mode 100644 index a62b6b9..0000000 --- a/clipper/clipper.hpp +++ /dev/null @@ -1,450 +0,0 @@ -/******************************************************************************* -* * -* Author : Angus Johnson * -* Version : 6.4.0 * -* Date : 2 July 2015 * -* Website : http://www.angusj.com * -* Copyright : Angus Johnson 2010-2015 * -* * -* License: * -* Use, modification & distribution is subject to Boost Software License Ver 1. * -* http://www.boost.org/LICENSE_1_0.txt * -* * -* Attributions: * -* The code in this library is an extension of Bala Vatti's clipping algorithm: * -* "A generic solution to polygon clipping" * -* Communications of the ACM, Vol 35, Issue 7 (July 1992) pp 56-63. * -* http://portal.acm.org/citation.cfm?id=129906 * -* * -* Computer graphics and geometric modeling: implementation and algorithms * -* By Max K. Agoston * -* Springer; 1 edition (January 4, 2005) * -* http://books.google.com/books?q=vatti+clipping+agoston * -* * -* See also: * -* "Polygon Offsetting by Computing Winding Numbers" * -* Paper no. DETC2005-85513 pp. 565-575 * -* ASME 2005 International Design Engineering Technical Conferences * -* and Computers and Information in Engineering Conference (IDETC/CIE2005) * -* September 24-28, 2005 , Long Beach, California, USA * -* http://www.me.berkeley.edu/~mcmains/pubs/DAC05OffsetPolygon.pdf * -* * -*******************************************************************************/ - -#ifndef clipper_hpp -#define clipper_hpp - -#define CLIPPER_VERSION "6.2.6" - -//use_int32: When enabled 32bit ints are used instead of 64bit ints. This -//improve performance but coordinate values are limited to the range +/- 46340 -//#define use_int32 - -//use_xyz: adds a Z member to IntPoint. Adds a minor cost to perfomance. -//#define use_xyz - -//use_lines: Enables line clipping. Adds a very minor cost to performance. -//#define use_lines - -//use_deprecated: Enables temporary support for the obsolete functions -//#define use_deprecated - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#if defined(CLIPPER_IMPL_INCLUDE) -#include CLIPPER_IMPL_INCLUDE -#endif - -namespace ClipperLib { - -enum ClipType { ctIntersection, ctUnion, ctDifference, ctXor }; -enum PolyType { ptSubject, ptClip }; -//By far the most widely used winding rules for polygon filling are -//EvenOdd & NonZero (GDI, GDI+, XLib, OpenGL, Cairo, AGG, Quartz, SVG, Gr32) -//Others rules include Positive, Negative and ABS_GTR_EQ_TWO (only in OpenGL) -//see http://glprogramming.com/red/chapter11.html -enum PolyFillType { pftEvenOdd, pftNonZero, pftPositive, pftNegative }; - -#ifdef use_int32 - typedef int cInt; - static cInt const loRange = 0x7FFF; - static cInt const hiRange = 0x7FFF; -#else - typedef std::int64_t cInt; - static cInt const loRange = 0x3FFFFFFF; - static cInt const hiRange = 0x3FFFFFFFFFFFFFFFLL; - typedef signed long long long64; //used by Int128 class - typedef unsigned long long ulong64; - -#endif - -#if defined(CLIPPER_INTPOINT_IMPL) - -typedef CLIPPER_INTPOINT_IMPL IntPoint; - -#else - -struct IntPoint { - cInt X; - cInt Y; -#ifdef use_xyz - cInt Z; - IntPoint(cInt x = 0, cInt y = 0, cInt z = 0): X(x), Y(y), Z(z) {}; -#else - IntPoint(cInt x = 0, cInt y = 0): X(x), Y(y) {}; -#endif - - friend inline bool operator== (const IntPoint& a, const IntPoint& b) - { - return a.X == b.X && a.Y == b.Y; - } - friend inline bool operator!= (const IntPoint& a, const IntPoint& b) - { - return a.X != b.X || a.Y != b.Y; - } -}; -#endif - -//------------------------------------------------------------------------------ - -#if defined(CLIPPER_PATH_IMPL) - -typedef CLIPPER_PATH_IMPL Path; - -#else - -typedef std::vector< IntPoint > Path; - -#endif - - -#if defined(CLIPPER_PATHS_IMPL) - -typedef CLIPPER_PATHS_IMPL Paths; - -#else - -typedef std::vector< Path > Paths; - -#endif - - - -inline Path& operator <<(Path& poly, const IntPoint& p) {poly.push_back(p); return poly;} -inline Paths& operator <<(Paths& polys, const Path& p) {polys.push_back(p); return polys;} - -std::ostream& operator <<(std::ostream &s, const IntPoint &p); -std::ostream& operator <<(std::ostream &s, const Path &p); -std::ostream& operator <<(std::ostream &s, const Paths &p); - -struct DoublePoint -{ - double X; - double Y; - DoublePoint(double x = 0, double y = 0) : X(x), Y(y) {} - DoublePoint(IntPoint ip) : X((double)ip.X), Y((double)ip.Y) {} -}; -//------------------------------------------------------------------------------ - -#ifdef use_xyz -typedef void (*ZFillCallback)(IntPoint& e1bot, IntPoint& e1top, IntPoint& e2bot, IntPoint& e2top, IntPoint& pt); -#endif - -enum InitOptions {ioReverseSolution = 1, ioStrictlySimple = 2, ioPreserveCollinear = 4}; -enum JoinType {jtSquare, jtRound, jtMiter}; -enum EndType {etClosedPolygon, etClosedLine, etOpenButt, etOpenSquare, etOpenRound}; - -class PolyNode; -typedef std::vector< PolyNode* > PolyNodes; - -class PolyNode -{ -public: - PolyNode(); - virtual ~PolyNode(){}; - Path Contour; - PolyNodes Childs; - PolyNode* Parent; - PolyNode* GetNext() const; - bool IsHole() const; - bool IsOpen() const; - int ChildCount() const; -private: - unsigned Index; //node index in Parent.Childs - bool m_IsOpen; - JoinType m_jointype; - EndType m_endtype; - PolyNode* GetNextSiblingUp() const; - void AddChild(PolyNode& child); - friend class Clipper; //to access Index - friend class ClipperOffset; -}; - -class PolyTree: public PolyNode -{ -public: - ~PolyTree(){Clear();}; - PolyNode* GetFirst() const; - void Clear(); - int Total() const; -private: - PolyNodes AllNodes; - friend class Clipper; //to access AllNodes -}; - -bool Orientation(const Path &poly); -double Area(const Path &poly); -int PointInPolygon(const IntPoint &pt, const Path &path); - -void SimplifyPolygon(const Path &in_poly, Paths &out_polys, PolyFillType fillType = pftEvenOdd); -void SimplifyPolygons(const Paths &in_polys, Paths &out_polys, PolyFillType fillType = pftEvenOdd); -void SimplifyPolygons(Paths &polys, PolyFillType fillType = pftEvenOdd); - -void CleanPolygon(const Path& in_poly, Path& out_poly, double distance = 1.415); -void CleanPolygon(Path& poly, double distance = 1.415); -void CleanPolygons(const Paths& in_polys, Paths& out_polys, double distance = 1.415); -void CleanPolygons(Paths& polys, double distance = 1.415); - -void MinkowskiSum(const Path& pattern, const Path& path, Paths& solution, bool pathIsClosed); -void MinkowskiSum(const Path& pattern, const Paths& paths, Paths& solution, bool pathIsClosed); -void MinkowskiDiff(const Path& poly1, const Path& poly2, Paths& solution); - -void PolyTreeToPaths(const PolyTree& polytree, Paths& paths); -void ClosedPathsFromPolyTree(const PolyTree& polytree, Paths& paths); -void OpenPathsFromPolyTree(PolyTree& polytree, Paths& paths); - -void ReversePath(Path& p); -void ReversePaths(Paths& p); - -struct IntRect { cInt left; cInt top; cInt right; cInt bottom; }; - -//enums that are used internally ... -enum EdgeSide { esLeft = 1, esRight = 2}; - -//forward declarations (for stuff used internally) ... -struct TEdge; -struct IntersectNode; -struct LocalMinimum; -struct OutPt; -struct OutRec; -struct Join; -struct OutPtIntersect; - -typedef std::vector < OutRec* > PolyOutList; -typedef std::vector < TEdge* > EdgeList; -typedef std::vector < Join* > JoinList; -typedef std::vector < IntersectNode* > IntersectList; - -//------------------------------------------------------------------------------ - -//ClipperBase is the ancestor to the Clipper class. It should not be -//instantiated directly. This class simply abstracts the conversion of sets of -//polygon coordinates into edge objects that are stored in a LocalMinima list. -class ClipperBase -{ -public: - ClipperBase(); - virtual ~ClipperBase(); - virtual bool AddPath(const Path &pg, PolyType PolyTyp, bool Closed); - bool AddPaths(const Paths &ppg, PolyType PolyTyp, bool Closed); - virtual void Clear(); - IntRect GetBounds(); - bool PreserveCollinear() {return m_PreserveCollinear;}; - void PreserveCollinear(bool value) {m_PreserveCollinear = value;}; -protected: - void DisposeLocalMinimaList(); - TEdge* AddBoundsToLML(TEdge *e, bool IsClosed); - virtual void Reset(); - TEdge* ProcessBound(TEdge* E, bool IsClockwise); - void InsertScanbeam(const cInt Y); - bool PopScanbeam(cInt &Y); - bool LocalMinimaPending(); - bool PopLocalMinima(cInt Y, const LocalMinimum *&locMin); - OutRec* CreateOutRec(); - void DisposeAllOutRecs(); - void DisposeOutRec(PolyOutList::size_type index); - void SwapPositionsInAEL(TEdge *edge1, TEdge *edge2); - void DeleteFromAEL(TEdge *e); - void UpdateEdgeIntoAEL(TEdge *&e); - - typedef std::vector MinimaList; - MinimaList::iterator m_CurrentLM; - MinimaList m_MinimaList; - - bool m_UseFullRange; - EdgeList m_edges; - bool m_PreserveCollinear; - bool m_HasOpenPaths; - PolyOutList m_PolyOuts; - TEdge *m_ActiveEdges; - - typedef std::priority_queue ScanbeamList; - ScanbeamList m_Scanbeam; -}; -//------------------------------------------------------------------------------ - -class Clipper : public virtual ClipperBase -{ -public: - Clipper(int initOptions = 0); - bool Execute(ClipType clipType, - Paths &solution, - PolyFillType fillType = pftEvenOdd); - bool Execute(ClipType clipType, - Paths &solution, - PolyFillType subjFillType, - PolyFillType clipFillType); - bool Execute(ClipType clipType, - PolyTree &polytree, - PolyFillType fillType = pftEvenOdd); - bool Execute(ClipType clipType, - PolyTree &polytree, - PolyFillType subjFillType, - PolyFillType clipFillType); - bool ReverseSolution() { return m_ReverseOutput; }; - void ReverseSolution(bool value) {m_ReverseOutput = value;}; - bool StrictlySimple() {return m_StrictSimple;}; - void StrictlySimple(bool value) {m_StrictSimple = value;}; - //set the callback function for z value filling on intersections (otherwise Z is 0) -#ifdef use_xyz - void ZFillFunction(ZFillCallback zFillFunc); -#endif -protected: - virtual bool ExecuteInternal(); -private: - JoinList m_Joins; - JoinList m_GhostJoins; - IntersectList m_IntersectList; - ClipType m_ClipType; - typedef std::list MaximaList; - MaximaList m_Maxima; - TEdge *m_SortedEdges; - bool m_ExecuteLocked; - PolyFillType m_ClipFillType; - PolyFillType m_SubjFillType; - bool m_ReverseOutput; - bool m_UsingPolyTree; - bool m_StrictSimple; -#ifdef use_xyz - ZFillCallback m_ZFill; //custom callback -#endif - void SetWindingCount(TEdge& edge); - bool IsEvenOddFillType(const TEdge& edge) const; - bool IsEvenOddAltFillType(const TEdge& edge) const; - void InsertLocalMinimaIntoAEL(const cInt botY); - void InsertEdgeIntoAEL(TEdge *edge, TEdge* startEdge); - void AddEdgeToSEL(TEdge *edge); - bool PopEdgeFromSEL(TEdge *&edge); - void CopyAELToSEL(); - void DeleteFromSEL(TEdge *e); - void SwapPositionsInSEL(TEdge *edge1, TEdge *edge2); - bool IsContributing(const TEdge& edge) const; - bool IsTopHorz(const cInt XPos); - void DoMaxima(TEdge *e); - void ProcessHorizontals(); - void ProcessHorizontal(TEdge *horzEdge); - void AddLocalMaxPoly(TEdge *e1, TEdge *e2, const IntPoint &pt); - OutPt* AddLocalMinPoly(TEdge *e1, TEdge *e2, const IntPoint &pt); - OutRec* GetOutRec(int idx); - void AppendPolygon(TEdge *e1, TEdge *e2); - void IntersectEdges(TEdge *e1, TEdge *e2, IntPoint &pt); - OutPt* AddOutPt(TEdge *e, const IntPoint &pt); - OutPt* GetLastOutPt(TEdge *e); - bool ProcessIntersections(const cInt topY); - void BuildIntersectList(const cInt topY); - void ProcessIntersectList(); - void ProcessEdgesAtTopOfScanbeam(const cInt topY); - void BuildResult(Paths& polys); - void BuildResult2(PolyTree& polytree); - void SetHoleState(TEdge *e, OutRec *outrec); - void DisposeIntersectNodes(); - bool FixupIntersectionOrder(); - void FixupOutPolygon(OutRec &outrec); - void FixupOutPolyline(OutRec &outrec); - bool IsHole(TEdge *e); - bool FindOwnerFromSplitRecs(OutRec &outRec, OutRec *&currOrfl); - void FixHoleLinkage(OutRec &outrec); - void AddJoin(OutPt *op1, OutPt *op2, const IntPoint offPt); - void ClearJoins(); - void ClearGhostJoins(); - void AddGhostJoin(OutPt *op, const IntPoint offPt); - bool JoinPoints(Join *j, OutRec* outRec1, OutRec* outRec2); - void JoinCommonEdges(); - void DoSimplePolygons(); - bool FindIntersectLoop(std::unordered_multimap & dupeRec, - std::list > & iList, - OutRec * outRec_parent, - int idx_origin, - int idx_prev, - std::set & visited, - OutPt * orig_pt, - OutPt * prev_pt); - bool FixIntersects(std::unordered_multimap & dupeRec, - OutPt * op_j, - OutPt * op_k, - OutRec * outRec_j, - OutRec * outRec_k); - void FixupFirstLefts1(OutRec* OldOutRec, OutRec* NewOutRec); - void FixupFirstLefts2(OutRec* InnerOutRec, OutRec* OuterOutRec); - void FixupFirstLefts3(OutRec* OldOutRec, OutRec* NewOutRec); -#ifdef use_xyz - void SetZ(IntPoint& pt, TEdge& e1, TEdge& e2); -#endif -}; -//------------------------------------------------------------------------------ - -class ClipperOffset -{ -public: - ClipperOffset(double miterLimit = 2.0, double roundPrecision = 0.25); - ~ClipperOffset(); - void AddPath(const Path& path, JoinType joinType, EndType endType); - void AddPaths(const Paths& paths, JoinType joinType, EndType endType); - void Execute(Paths& solution, double delta); - void Execute(PolyTree& solution, double delta); - void Clear(); - double MiterLimit; - double ArcTolerance; -private: - Paths m_destPolys; - Path m_srcPoly; - Path m_destPoly; - std::vector m_normals; - double m_delta, m_sinA, m_sin, m_cos; - double m_miterLim, m_StepsPerRad; - IntPoint m_lowest; - PolyNode m_polyNodes; - - void FixOrientations(); - void DoOffset(double delta); - void OffsetPoint(int j, int& k, JoinType jointype); - void DoSquare(int j, int k); - void DoMiter(int j, int k, double r); - void DoRound(int j, int k); -}; -//------------------------------------------------------------------------------ - -class clipperException : public std::exception -{ - public: - clipperException(const char* description): m_descr(description) {} - virtual ~clipperException() throw() {} - virtual const char* what() const throw() {return m_descr.c_str();} - private: - std::string m_descr; -}; -//------------------------------------------------------------------------------ - -} //ClipperLib namespace - -#endif //clipper_hpp - - diff --git a/geometry.cpp b/geometry.cpp index 7e1b203..ae495df 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -9,8 +9,9 @@ #include #include #include +#include +#include #include "geometry.hpp" -#include "clipper/clipper.hpp" #include "projection.hpp" #include "serial.hpp" #include "main.hpp" @@ -163,201 +164,38 @@ double get_area(drawvec &geom, size_t i, size_t j) { return area; } -void reverse_ring(drawvec &geom, size_t start, size_t end) { - drawvec tmp; +static void decode_clipped(mapbox::geometry::multi_polygon &t, drawvec &out) { + out.clear(); - for (size_t i = start; i < end; i++) { - tmp.push_back(geom[i]); - } + for (size_t i = 0; i < t.size(); i++) { + for (size_t j = 0; j < t[i].size(); j++) { + drawvec ring; - for (unsigned i = start; i < end; i++) { - geom[i] = tmp[end - 1 - i]; - if (i == start) { - geom[i].op = VT_MOVETO; - } else if (i == end - 1) { - geom[i].op = VT_LINETO; - } - } -} - -struct ring { - drawvec data; - long double area; - long long parent; - std::vector children; - - ring(drawvec &_data) { - data = _data; - area = get_area(_data, 0, _data.size()); - parent = -1; - } - - bool operator<(const ring &o) const { - if (std::fabs(this->area) < std::fabs(o.area)) { - return true; - } else { - return false; - } - } -}; - -static void decode_rings(ClipperLib::PolyNode *t, std::vector &out) { - // Supposedly outer ring - - ClipperLib::Path p = t->Contour; - drawvec dv; - for (size_t i = 0; i < p.size(); i++) { - dv.push_back(draw((i == 0) ? VT_MOVETO : VT_LINETO, p[i].X, p[i].Y)); - } - if (p.size() > 0) { - dv.push_back(draw(VT_LINETO, p[0].X, p[0].Y)); - } - out.push_back(dv); - - // Supposedly inner rings - - for (int n = 0; n < t->ChildCount(); n++) { - ClipperLib::Path cp = t->Childs[n]->Contour; - drawvec ring; - for (size_t i = 0; i < cp.size(); i++) { - ring.push_back(draw((i == 0) ? VT_MOVETO : VT_LINETO, cp[i].X, cp[i].Y)); - } - if (cp.size() > 0) { - ring.push_back(draw(VT_LINETO, cp[0].X, cp[0].Y)); - } - out.push_back(ring); - } - - // Recurse to supposedly outer rings (children of the children) - - for (int n = 0; n < t->ChildCount(); n++) { - for (int m = 0; m < t->Childs[n]->ChildCount(); m++) { - decode_rings(t->Childs[n]->Childs[m], out); - } - } -} - -static void decode_clipped(ClipperLib::PolyNode *t, drawvec &out) { - // The output of Clipper supposedly produces the outer rings - // as top level objects, with links to any inner-ring children - // they may have, each of which then has links to any outer rings - // that it has, and so on. This doesn't actually work. - - // So instead, we pull out all the rings, sort them by absolute area, - // and go through them, looking for the - // smallest parent that contains a point from it, since we are - // guaranteed that at least one point in the polygon is strictly - // inside its parent (not on one of its boundary lines). - - std::vector rings; - decode_rings(t, rings); - std::sort(rings.begin(), rings.end()); - - for (size_t i = 0; i < rings.size(); i++) { - for (size_t j = i + 1; j < rings.size(); j++) { - for (size_t k = 0; k < rings[i].data.size(); k++) { - if (pnpoly(rings[j].data, 0, rings[j].data.size(), rings[i].data[k].x, rings[i].data[k].y)) { - rings[i].parent = j; - rings[j].children.push_back(i); - goto nextring; - } + for (size_t k = 0; k < t[i][j].size(); k++) { + ring.push_back(draw((k == 0) ? VT_MOVETO : VT_LINETO, t[i][j][k].x, t[i][j][k].y)); } - } - nextring:; - } - // Then reverse the winding order of any rings that turned out - // to actually be inner when they are outer, or vice versa. - // (A ring is outer if it has no parent or if its parent is - // an inner ring.) - - for (size_t ii = rings.size(); ii > 0; ii--) { - size_t i = ii - 1; - - if (rings[i].parent < 0) { - if (rings[i].area < 0) { - rings[i].area = -rings[i].area; - reverse_ring(rings[i].data, 0, rings[i].data.size()); + if (ring.size() > 0 && ring[ring.size() - 1] != ring[0]) { + fprintf(stderr, "Had to close ring\n"); + ring.push_back(draw(VT_LINETO, ring[0].x, ring[0].y)); } - } else { - if ((rings[i].area > 0) == (rings[rings[i].parent].area > 0)) { - rings[i].area = -rings[i].area; - reverse_ring(rings[i].data, 0, rings[i].data.size()); + + double area = get_area(ring, 0, ring.size()); + + if ((j == 0 && area < 0) || (j != 0 && area > 0)) { + fprintf(stderr, "Ring area has wrong sign: %f for %zu\n", area, j); + exit(EXIT_FAILURE); + } + + for (size_t k = 0; k < ring.size(); k++) { + out.push_back(ring[k]); } } } - - // Then run through the rings again, outputting each outer ring - // followed by its direct children, and checking to make sure - // there are no child rings whose parents weren't identified. - - for (size_t ii = rings.size(); ii > 0; ii--) { - size_t i = ii - 1; - - if (rings[i].area > 0) { -#if 0 - fprintf(stderr, "ring area %Lf at %lld\n", rings[i].area, (long long) out.size()); -#endif - - for (size_t j = 0; j < rings[i].data.size(); j++) { - out.push_back(rings[i].data[j]); - } - - for (size_t j = 0; j < rings[i].children.size(); j++) { -#if 0 - fprintf(stderr, "ring area %Lf at %lld\n", rings[rings[i].children[j]].area, (long long) out.size()); -#endif - - for (size_t k = 0; k < rings[rings[i].children[j]].data.size(); k++) { - out.push_back(rings[rings[i].children[j]].data[k]); - } - - rings[rings[i].children[j]].parent = -2; - } - } else if (rings[i].parent != -2) { - fprintf(stderr, "Found ring with child area but no parent %lld\n", (long long) i); - } - } -} - -static void dump(drawvec &geom) { - ClipperLib::Clipper clipper(ClipperLib::ioStrictlySimple); - - for (size_t i = 0; i < geom.size(); i++) { - if (geom[i].op == VT_MOVETO) { - size_t j; - for (j = i + 1; j < geom.size(); j++) { - if (geom[j].op != VT_LINETO) { - break; - } - } - - ClipperLib::Path path; - printf("{ ClipperLib::Path path; "); - - drawvec tmp; - for (size_t k = i; k < j; k++) { - printf("path.push_back(IntPoint(%lld,%lld)); ", geom[k].x, geom[k].y); - path.push_back(ClipperLib::IntPoint(geom[k].x, geom[k].y)); - } - - if (!clipper.AddPath(path, ClipperLib::ptSubject, true)) { - } - printf("clipper.AddPath(path, ClipperLib::ptSubject, true); }\n"); - - i = j - 1; - } else { - fprintf(stderr, "Unexpected operation in polygon %d\n", (int) geom[i].op); - exit(EXIT_FAILURE); - } - } - printf("clipper.Execute(ClipperLib::ctUnion, clipped));\n"); } drawvec clean_or_clip_poly(drawvec &geom, int z, int detail, int buffer, bool clip) { - ClipperLib::Clipper clipper(ClipperLib::ioStrictlySimple); - - bool has_area = false; + mapbox::geometry::wagyu::wagyu wagyu; for (size_t i = 0; i < geom.size(); i++) { if (geom[i].op == VT_MOVETO) { @@ -368,77 +206,95 @@ drawvec clean_or_clip_poly(drawvec &geom, int z, int detail, int buffer, bool cl } } - double area = get_area(geom, i, j); - if (area != 0) { - has_area = true; - } + if (j >= i + 4) { + mapbox::geometry::linear_ring lr; - ClipperLib::Path path; - - drawvec tmp; - for (size_t k = i; k < j; k++) { - path.push_back(ClipperLib::IntPoint(geom[k].x, geom[k].y)); - } - - if (!clipper.AddPath(path, ClipperLib::ptSubject, true)) { -#if 0 - fprintf(stderr, "Couldn't add polygon for clipping:"); for (size_t k = i; k < j; k++) { - fprintf(stderr, " %lld,%lld", geom[k].x, geom[k].y); + lr.push_back(mapbox::geometry::point(geom[k].x, geom[k].y)); + } + + if (lr.size() >= 3) { + wagyu.add_ring(lr); } - fprintf(stderr, "\n"); -#endif } i = j - 1; - } else { - fprintf(stderr, "Unexpected operation in polygon %d\n", (int) geom[i].op); - exit(EXIT_FAILURE); } } if (clip) { - long long area = 1LL << (32 - z); + long long area = 0xFFFFFFFF; + if (z != 0) { + area = 1LL << (32 - z); + } long long clip_buffer = buffer * area / 256; - ClipperLib::Path edge; - edge.push_back(ClipperLib::IntPoint(-clip_buffer, -clip_buffer)); - edge.push_back(ClipperLib::IntPoint(area + clip_buffer, -clip_buffer)); - edge.push_back(ClipperLib::IntPoint(area + clip_buffer, area + clip_buffer)); - edge.push_back(ClipperLib::IntPoint(-clip_buffer, area + clip_buffer)); - edge.push_back(ClipperLib::IntPoint(-clip_buffer, -clip_buffer)); + mapbox::geometry::linear_ring lr; - clipper.AddPath(edge, ClipperLib::ptClip, true); + lr.push_back(mapbox::geometry::point(-clip_buffer, -clip_buffer)); + lr.push_back(mapbox::geometry::point(-clip_buffer, area + clip_buffer)); + lr.push_back(mapbox::geometry::point(area + clip_buffer, area + clip_buffer)); + lr.push_back(mapbox::geometry::point(area + clip_buffer, -clip_buffer)); + lr.push_back(mapbox::geometry::point(-clip_buffer, -clip_buffer)); + + wagyu.add_ring(lr, mapbox::geometry::wagyu::polygon_type_clip); } - ClipperLib::PolyTree clipped; - if (clip) { - if (!clipper.Execute(ClipperLib::ctIntersection, clipped)) { - fprintf(stderr, "Polygon clip failed\n"); - } - } else { - if (!has_area) { - drawvec out; - return out; - } + mapbox::geometry::multi_polygon result; + try { + wagyu.execute(mapbox::geometry::wagyu::clip_type_union, result, mapbox::geometry::wagyu::fill_type_positive, mapbox::geometry::wagyu::fill_type_positive); + } catch (std::runtime_error e) { + FILE *f = fopen("/tmp/wagyu.log", "w"); + fprintf(f, "%s\n", e.what()); + fprintf(stderr, "%s\n", e.what()); + fprintf(f, "["); - if (!clipper.Execute(ClipperLib::ctUnion, clipped)) { - static bool complained = false; + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == VT_MOVETO) { + size_t j; + for (j = i + 1; j < geom.size(); j++) { + if (geom[j].op != VT_LINETO) { + break; + } + } - if (!complained) { - fprintf(stderr, "Polygon clean failed\n"); - complained = true; + if (j >= i + 4) { + mapbox::geometry::linear_ring lr; + + if (i != 0) { + fprintf(f, ","); + } + fprintf(f, "["); + + for (size_t k = i; k < j; k++) { + lr.push_back(mapbox::geometry::point(geom[k].x, geom[k].y)); + if (k != i) { + fprintf(f, ","); + } + fprintf(f, "[%lld,%lld]", geom[k].x, geom[k].y); + } + + fprintf(f, "]"); + + if (lr.size() >= 3) { + } + } + + i = j - 1; } } + + fprintf(f, "]"); + fprintf(f, "\n\n\n\n\n"); + + fclose(f); + fprintf(stderr, "Internal error: Polygon cleaning failed. Log in /tmp/wagyu.log\n"); + exit(EXIT_FAILURE); } - drawvec out; - - for (int i = 0; i < clipped.ChildCount(); i++) { - decode_clipped(clipped.Childs[i], out); - } - - return out; + drawvec ret; + decode_clipped(result, ret); + return ret; } /* pnpoly: @@ -482,7 +338,6 @@ void check_polygon(drawvec &geom, drawvec &before) { geom[i + 1].x, geom[i + 1].y, geom[j + 0].x, geom[j + 0].y, geom[j + 1].x, geom[j + 1].y); - dump(before); } } } @@ -524,7 +379,6 @@ void check_polygon(drawvec &geom, drawvec &before) { if (!on_edge) { printf("%lld,%lld at %lld not in outer ring (%lld to %lld)\n", geom[k].x, geom[k].y, (long long) k, (long long) outer_start, (long long) (outer_start + outer_len)); - dump(before); #if 0 for (size_t l = outer_start; l < outer_start + outer_len; l++) { fprintf(stderr, " %lld,%lld", geom[l].x, geom[l].y); diff --git a/mapbox/LICENSE-geometry.hpp b/mapbox/LICENSE-geometry.hpp new file mode 100644 index 0000000..8f6a86b --- /dev/null +++ b/mapbox/LICENSE-geometry.hpp @@ -0,0 +1,13 @@ +Copyright (c) 2016, Mapbox + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/mapbox/LICENSE-variant b/mapbox/LICENSE-variant new file mode 100644 index 0000000..6c4ce40 --- /dev/null +++ b/mapbox/LICENSE-variant @@ -0,0 +1,25 @@ +Copyright (c) MapBox +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. +- Neither the name "MapBox" nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/clipper/License.txt b/mapbox/LICENSE-wagyu similarity index 67% rename from clipper/License.txt rename to mapbox/LICENSE-wagyu index 3e3af47..f3eb477 100644 --- a/clipper/License.txt +++ b/mapbox/LICENSE-wagyu @@ -1,5 +1,18 @@ -Boost Software License - Version 1.0 - August 17th, 2003 -http://www.boost.org/LICENSE_1_0.txt +Parts of the code in the Wagyu Library are derived from the version of the +Clipper Library by Angus Johnson listed below. + +Author : Angus Johnson +Version : 6.4.0 +Date : 2 July 2015 +Website : http://www.angusj.com + +Copyright for portions of the derived code in the Wagyu library are held +by Angus Johnson, 2010-2015. All other copyright for the Wagyu Library are held by +Mapbox, 2016. This code is published in accordance with, and retains the same license +as the Clipper Library by Angus Johnson. + +Copyright (c) 2010-2015, Angus Johnson +Copyright (c) 2016, Mapbox Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by @@ -21,4 +34,4 @@ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. \ No newline at end of file +DEALINGS IN THE SOFTWARE. diff --git a/tests/border/out/-z1_--detect-shared-borders.json b/tests/border/out/-z1_--detect-shared-borders.json index 8769f4e..ed04992 100644 --- a/tests/border/out/-z1_--detect-shared-borders.json +++ b/tests/border/out/-z1_--detect-shared-borders.json @@ -12,41 +12,41 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.435547, 46.558860 ], [ 16.259766, 46.558860 ], [ 16.259766, 46.377254 ], [ 15.996094, 46.437857 ], [ 15.996094, 46.316584 ], [ 15.556641, 46.255847 ], [ 15.644531, 45.828799 ], [ 15.205078, 45.767523 ], [ 15.292969, 45.521744 ], [ 15.117188, 45.460131 ], [ 14.941406, 45.521744 ], [ 14.765625, 45.460131 ], [ 14.589844, 45.706179 ], [ 14.326172, 45.521744 ], [ 13.535156, 45.521744 ], [ 13.535156, 45.583290 ], [ 13.886719, 45.644768 ], [ 13.535156, 45.828799 ], [ 13.535156, 46.012224 ], [ 13.447266, 46.073231 ], [ 13.623047, 46.195042 ], [ 13.359375, 46.255847 ], [ 13.359375, 46.377254 ], [ 13.623047, 46.558860 ], [ 14.501953, 46.437857 ], [ 15.029297, 46.679594 ], [ 15.468750, 46.619261 ], [ 15.556641, 46.739861 ], [ 15.996094, 46.739861 ], [ 15.908203, 46.860191 ], [ 16.259766, 46.920255 ], [ 16.435547, 46.558860 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.259766, 46.920255 ], [ 16.435547, 46.558860 ], [ 16.259766, 46.558860 ], [ 16.259766, 46.377254 ], [ 15.996094, 46.437857 ], [ 15.996094, 46.316584 ], [ 15.556641, 46.255847 ], [ 15.644531, 45.828799 ], [ 15.205078, 45.767523 ], [ 15.292969, 45.521744 ], [ 15.117188, 45.460131 ], [ 14.941406, 45.521744 ], [ 14.765625, 45.460131 ], [ 14.589844, 45.706179 ], [ 14.326172, 45.521744 ], [ 13.535156, 45.521744 ], [ 13.535156, 45.583290 ], [ 13.886719, 45.644768 ], [ 13.535156, 45.828799 ], [ 13.535156, 46.012224 ], [ 13.447266, 46.073231 ], [ 13.623047, 46.195042 ], [ 13.359375, 46.255847 ], [ 13.359375, 46.377254 ], [ 13.623047, 46.558860 ], [ 14.501953, 46.437857 ], [ 15.029297, 46.679594 ], [ 15.468750, 46.619261 ], [ 15.556641, 46.739861 ], [ 15.996094, 46.739861 ], [ 15.908203, 46.860191 ], [ 16.259766, 46.920255 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.402344, 42.875964 ], [ 16.962891, 43.068888 ], [ 17.314453, 43.004647 ], [ 17.490234, 42.940339 ], [ 17.578125, 42.940339 ], [ 17.578125, 42.875964 ], [ 17.666016, 42.875964 ], [ 17.666016, 42.940339 ], [ 17.753906, 42.940339 ], [ 17.841797, 42.811522 ], [ 17.753906, 42.811522 ], [ 17.402344, 42.875964 ] ] ], [ [ [ 17.138672, 42.940339 ], [ 16.611328, 42.940339 ], [ 16.611328, 43.004647 ], [ 17.138672, 42.940339 ] ] ], [ [ [ 14.238281, 45.398450 ], [ 14.150391, 45.151053 ], [ 14.150391, 45.026950 ], [ 14.062500, 45.026950 ], [ 13.974609, 44.902578 ], [ 13.886719, 44.902578 ], [ 13.974609, 44.840291 ], [ 13.798828, 44.840291 ], [ 13.798828, 44.902578 ], [ 13.710938, 44.964798 ], [ 13.535156, 45.151053 ], [ 13.535156, 45.336702 ], [ 13.447266, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.706179 ], [ 14.765625, 45.460131 ], [ 14.941406, 45.521744 ], [ 15.117188, 45.460131 ], [ 15.292969, 45.521744 ], [ 15.205078, 45.767523 ], [ 15.644531, 45.828799 ], [ 15.556641, 46.255847 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.437857 ], [ 16.259766, 46.377254 ], [ 16.259766, 46.558860 ], [ 16.435547, 46.558860 ], [ 16.699219, 46.437857 ], [ 16.787109, 46.437857 ], [ 16.962891, 46.195042 ], [ 17.226562, 46.012224 ], [ 17.314453, 46.012224 ], [ 18.193359, 45.767523 ], [ 18.896484, 45.951150 ], [ 18.808594, 45.890008 ], [ 18.896484, 45.583290 ], [ 19.072266, 45.583290 ], [ 18.896484, 45.398450 ], [ 19.335938, 45.274886 ], [ 18.984375, 45.151053 ], [ 19.072266, 44.964798 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.151053 ], [ 18.457031, 45.089036 ], [ 18.193359, 45.213004 ], [ 17.841797, 45.089036 ], [ 17.490234, 45.151053 ], [ 17.138672, 45.151053 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.274886 ], [ 16.259766, 45.026950 ], [ 15.996094, 45.274886 ], [ 15.732422, 45.213004 ], [ 15.644531, 44.777936 ], [ 15.996094, 44.653024 ], [ 16.259766, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.389082 ], [ 17.578125, 43.068888 ], [ 17.578125, 43.004647 ], [ 17.490234, 43.004647 ], [ 16.875000, 43.452919 ], [ 16.347656, 43.516689 ], [ 16.347656, 43.580391 ], [ 15.908203, 43.516689 ], [ 15.908203, 43.707594 ], [ 15.468750, 43.897892 ], [ 15.468750, 44.024422 ], [ 15.292969, 44.024422 ], [ 15.117188, 44.276671 ], [ 15.205078, 44.276671 ], [ 15.117188, 44.339565 ], [ 15.205078, 44.339565 ], [ 15.468750, 44.276671 ], [ 14.941406, 44.590467 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.501953, 45.336702 ], [ 14.238281, 45.398450 ] ] ], [ [ [ 16.259766, 43.068888 ], [ 16.083984, 43.068888 ], [ 16.083984, 43.197167 ], [ 16.259766, 43.197167 ], [ 16.259766, 43.068888 ] ] ], [ [ [ 17.138672, 43.133061 ], [ 16.347656, 43.197167 ], [ 16.435547, 43.261206 ], [ 16.523438, 43.261206 ], [ 17.138672, 43.133061 ] ] ], [ [ [ 16.875000, 43.325178 ], [ 16.347656, 43.389082 ], [ 16.435547, 43.389082 ], [ 16.347656, 43.452919 ], [ 16.875000, 43.325178 ] ] ], [ [ [ 15.029297, 44.087585 ], [ 14.853516, 44.087585 ], [ 14.853516, 44.213710 ], [ 15.029297, 44.213710 ], [ 15.029297, 44.087585 ] ] ], [ [ [ 15.029297, 44.465151 ], [ 15.205078, 44.402392 ], [ 15.117188, 44.339565 ], [ 15.029297, 44.339565 ], [ 15.029297, 44.402392 ], [ 14.853516, 44.590467 ], [ 15.029297, 44.465151 ] ] ], [ [ [ 14.414062, 45.026950 ], [ 14.501953, 44.653024 ], [ 14.326172, 44.777936 ], [ 14.238281, 45.213004 ], [ 14.414062, 45.026950 ] ] ], [ [ [ 14.765625, 45.026950 ], [ 14.589844, 45.026950 ], [ 14.414062, 45.089036 ], [ 14.589844, 45.274886 ], [ 14.765625, 45.026950 ] ] ], [ [ [ 18.193359, 42.682435 ], [ 18.281250, 42.617791 ], [ 18.105469, 42.682435 ], [ 18.193359, 42.682435 ] ] ], [ [ [ 15.292969, 43.897892 ], [ 15.292969, 44.024422 ], [ 15.468750, 43.897892 ], [ 15.292969, 43.897892 ] ] ], [ [ [ 18.369141, 42.617791 ], [ 18.369141, 42.488302 ], [ 18.281250, 42.617791 ], [ 18.369141, 42.617791 ] ] ], [ [ [ 18.017578, 42.682435 ], [ 17.929688, 42.747012 ], [ 18.105469, 42.682435 ], [ 18.017578, 42.682435 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.578125, 42.875964 ], [ 17.402344, 42.875964 ], [ 16.962891, 43.068888 ], [ 17.314453, 43.004647 ], [ 17.490234, 42.940339 ], [ 17.578125, 42.940339 ], [ 17.578125, 42.875964 ] ] ], [ [ [ 16.611328, 43.004647 ], [ 17.138672, 42.940339 ], [ 16.611328, 42.940339 ], [ 16.611328, 43.004647 ] ] ], [ [ [ 14.501953, 45.336702 ], [ 14.238281, 45.398450 ], [ 14.150391, 45.151053 ], [ 14.150391, 45.026950 ], [ 14.062500, 45.026950 ], [ 13.974609, 44.902578 ], [ 13.974609, 44.840291 ], [ 13.798828, 44.840291 ], [ 13.798828, 44.902578 ], [ 13.710938, 44.964798 ], [ 13.535156, 45.151053 ], [ 13.535156, 45.336702 ], [ 13.447266, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.706179 ], [ 14.765625, 45.460131 ], [ 14.941406, 45.521744 ], [ 15.117188, 45.460131 ], [ 15.292969, 45.521744 ], [ 15.205078, 45.767523 ], [ 15.644531, 45.828799 ], [ 15.556641, 46.255847 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.437857 ], [ 16.259766, 46.377254 ], [ 16.259766, 46.558860 ], [ 16.435547, 46.558860 ], [ 16.699219, 46.437857 ], [ 16.787109, 46.437857 ], [ 16.962891, 46.195042 ], [ 17.226562, 46.012224 ], [ 17.314453, 46.012224 ], [ 18.193359, 45.767523 ], [ 18.808594, 45.890008 ], [ 18.896484, 45.583290 ], [ 19.072266, 45.583290 ], [ 18.896484, 45.398450 ], [ 19.335938, 45.274886 ], [ 18.984375, 45.151053 ], [ 19.072266, 44.964798 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.151053 ], [ 18.457031, 45.089036 ], [ 18.193359, 45.213004 ], [ 17.841797, 45.089036 ], [ 17.490234, 45.151053 ], [ 17.138672, 45.151053 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.274886 ], [ 16.259766, 45.026950 ], [ 15.996094, 45.274886 ], [ 15.732422, 45.213004 ], [ 15.644531, 44.777936 ], [ 15.996094, 44.653024 ], [ 16.259766, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.389082 ], [ 17.578125, 43.068888 ], [ 17.578125, 43.004647 ], [ 17.490234, 43.004647 ], [ 16.875000, 43.452919 ], [ 16.347656, 43.516689 ], [ 16.347656, 43.580391 ], [ 15.908203, 43.516689 ], [ 15.908203, 43.707594 ], [ 15.468750, 43.897892 ], [ 15.292969, 43.897892 ], [ 15.292969, 44.024422 ], [ 15.117188, 44.276671 ], [ 15.205078, 44.276671 ], [ 15.205078, 44.339565 ], [ 15.468750, 44.276671 ], [ 15.205078, 44.402392 ], [ 14.941406, 44.590467 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.501953, 45.336702 ] ] ], [ [ [ 16.259766, 43.197167 ], [ 16.259766, 43.068888 ], [ 16.083984, 43.068888 ], [ 16.083984, 43.197167 ], [ 16.259766, 43.197167 ] ] ], [ [ [ 16.523438, 43.261206 ], [ 17.138672, 43.133061 ], [ 16.347656, 43.197167 ], [ 16.435547, 43.261206 ], [ 16.523438, 43.261206 ] ] ], [ [ [ 16.347656, 43.452919 ], [ 16.875000, 43.325178 ], [ 16.435547, 43.389082 ], [ 16.347656, 43.452919 ] ] ], [ [ [ 15.029297, 44.213710 ], [ 15.029297, 44.087585 ], [ 14.853516, 44.087585 ], [ 14.853516, 44.213710 ], [ 15.029297, 44.213710 ] ] ], [ [ [ 14.238281, 45.213004 ], [ 14.414062, 45.089036 ], [ 14.414062, 45.026950 ], [ 14.501953, 44.653024 ], [ 14.326172, 44.777936 ], [ 14.238281, 45.213004 ] ] ], [ [ [ 14.589844, 45.274886 ], [ 14.765625, 45.026950 ], [ 14.589844, 45.026950 ], [ 14.414062, 45.089036 ], [ 14.589844, 45.274886 ] ] ], [ [ [ 17.578125, 42.875964 ], [ 17.666016, 42.875964 ], [ 17.666016, 42.940339 ], [ 17.753906, 42.940339 ], [ 17.841797, 42.811522 ], [ 17.753906, 42.811522 ], [ 17.578125, 42.875964 ] ] ], [ [ [ 15.029297, 44.339565 ], [ 15.029297, 44.465151 ], [ 15.205078, 44.402392 ], [ 15.205078, 44.339565 ], [ 15.029297, 44.339565 ] ] ], [ [ [ 15.029297, 44.465151 ], [ 14.677734, 44.715514 ], [ 14.941406, 44.590467 ], [ 15.029297, 44.465151 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.138672, 45.151053 ], [ 17.490234, 45.151053 ], [ 17.841797, 45.089036 ], [ 18.193359, 45.213004 ], [ 18.457031, 45.089036 ], [ 18.544922, 45.151053 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.402392 ], [ 19.423828, 44.213710 ], [ 19.423828, 44.150681 ], [ 19.511719, 44.087585 ], [ 19.511719, 44.024422 ], [ 19.160156, 44.024422 ], [ 19.423828, 43.771094 ], [ 19.335938, 43.580391 ], [ 19.248047, 43.644026 ], [ 19.160156, 43.580391 ], [ 18.896484, 43.580391 ], [ 18.984375, 43.325178 ], [ 18.808594, 43.389082 ], [ 18.632812, 43.261206 ], [ 18.632812, 43.068888 ], [ 18.369141, 43.004647 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.617791 ], [ 17.929688, 42.747012 ], [ 17.753906, 42.940339 ], [ 17.490234, 42.940339 ], [ 17.578125, 43.004647 ], [ 17.578125, 43.068888 ], [ 17.226562, 43.389082 ], [ 17.226562, 43.452919 ], [ 16.259766, 44.087585 ], [ 15.996094, 44.653024 ], [ 15.644531, 44.777936 ], [ 15.732422, 45.213004 ], [ 15.996094, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.274886 ], [ 16.962891, 45.274886 ], [ 17.138672, 45.151053 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.274886 ], [ 17.138672, 45.151053 ], [ 17.490234, 45.151053 ], [ 17.841797, 45.089036 ], [ 18.193359, 45.213004 ], [ 18.457031, 45.089036 ], [ 18.544922, 45.151053 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.402392 ], [ 19.423828, 44.213710 ], [ 19.423828, 44.150681 ], [ 19.511719, 44.087585 ], [ 19.511719, 44.024422 ], [ 19.160156, 44.024422 ], [ 19.423828, 43.771094 ], [ 19.335938, 43.580391 ], [ 19.248047, 43.644026 ], [ 19.160156, 43.580391 ], [ 18.896484, 43.580391 ], [ 18.984375, 43.325178 ], [ 18.808594, 43.389082 ], [ 18.632812, 43.261206 ], [ 18.632812, 43.068888 ], [ 18.369141, 43.004647 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.617791 ], [ 17.929688, 42.747012 ], [ 17.753906, 42.940339 ], [ 17.490234, 42.940339 ], [ 17.578125, 43.004647 ], [ 17.578125, 43.068888 ], [ 17.226562, 43.389082 ], [ 17.226562, 43.452919 ], [ 16.259766, 44.087585 ], [ 15.996094, 44.653024 ], [ 15.644531, 44.777936 ], [ 15.732422, 45.213004 ], [ 15.996094, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.274886 ], [ 16.962891, 45.274886 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 43.197167 ], [ 19.863281, 43.133061 ], [ 20.302734, 42.940339 ], [ 20.302734, 42.875964 ], [ 20.126953, 42.747012 ], [ 19.951172, 42.811522 ], [ 20.039062, 42.617791 ], [ 19.863281, 42.488302 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.511719, 42.617791 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.544922, 42.423457 ], [ 18.632812, 42.488302 ], [ 18.457031, 42.423457 ], [ 18.457031, 42.488302 ], [ 18.369141, 42.488302 ], [ 18.369141, 42.617791 ], [ 18.544922, 42.682435 ], [ 18.369141, 43.004647 ], [ 18.632812, 43.068888 ], [ 18.632812, 43.261206 ], [ 18.808594, 43.389082 ], [ 18.984375, 43.325178 ], [ 18.896484, 43.580391 ], [ 19.160156, 43.580391 ], [ 19.511719, 43.197167 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 19.511719, 43.197167 ], [ 19.863281, 43.133061 ], [ 20.302734, 42.940339 ], [ 20.302734, 42.875964 ], [ 20.126953, 42.747012 ], [ 19.951172, 42.811522 ], [ 20.039062, 42.617791 ], [ 19.863281, 42.488302 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.511719, 42.617791 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.544922, 42.423457 ], [ 18.457031, 42.423457 ], [ 18.457031, 42.488302 ], [ 18.369141, 42.488302 ], [ 18.369141, 42.617791 ], [ 18.544922, 42.682435 ], [ 18.369141, 43.004647 ], [ 18.632812, 43.068888 ], [ 18.632812, 43.261206 ], [ 18.808594, 43.389082 ], [ 18.984375, 43.325178 ], [ 18.896484, 43.580391 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 45.767523 ], [ 20.742188, 45.521744 ], [ 21.445312, 45.151053 ], [ 21.269531, 45.026950 ], [ 21.533203, 44.902578 ], [ 21.357422, 44.902578 ], [ 21.357422, 44.840291 ], [ 21.972656, 44.715514 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.777936 ], [ 22.763672, 44.590467 ], [ 22.412109, 44.527843 ], [ 22.675781, 44.276671 ], [ 22.587891, 44.087585 ], [ 22.324219, 44.024422 ], [ 22.324219, 43.834527 ], [ 22.500000, 43.516689 ], [ 22.939453, 43.197167 ], [ 22.675781, 42.940339 ], [ 22.412109, 42.875964 ], [ 22.500000, 42.423457 ], [ 22.324219, 42.358544 ], [ 22.236328, 42.423457 ], [ 21.533203, 42.293564 ], [ 21.445312, 42.358544 ], [ 21.708984, 42.682435 ], [ 21.357422, 42.747012 ], [ 21.357422, 42.875964 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.654297, 43.133061 ], [ 20.302734, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.863281, 43.133061 ], [ 19.511719, 43.197167 ], [ 19.160156, 43.580391 ], [ 19.248047, 43.644026 ], [ 19.335938, 43.580391 ], [ 19.423828, 43.771094 ], [ 19.160156, 44.024422 ], [ 19.511719, 44.024422 ], [ 19.511719, 44.087585 ], [ 19.423828, 44.150681 ], [ 19.423828, 44.213710 ], [ 19.072266, 44.402392 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.072266, 44.964798 ], [ 18.984375, 45.151053 ], [ 19.335938, 45.274886 ], [ 18.896484, 45.398450 ], [ 19.072266, 45.583290 ], [ 18.896484, 45.583290 ], [ 18.808594, 45.890008 ], [ 19.072266, 46.073231 ], [ 19.248047, 46.012224 ], [ 19.511719, 46.195042 ], [ 20.126953, 46.195042 ], [ 20.742188, 45.767523 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.126953, 46.195042 ], [ 20.742188, 45.767523 ], [ 20.742188, 45.521744 ], [ 21.445312, 45.151053 ], [ 21.269531, 45.026950 ], [ 21.533203, 44.902578 ], [ 21.357422, 44.902578 ], [ 21.357422, 44.840291 ], [ 21.972656, 44.715514 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.777936 ], [ 22.763672, 44.590467 ], [ 22.412109, 44.527843 ], [ 22.675781, 44.276671 ], [ 22.587891, 44.087585 ], [ 22.324219, 44.024422 ], [ 22.324219, 43.834527 ], [ 22.500000, 43.516689 ], [ 22.939453, 43.197167 ], [ 22.675781, 42.940339 ], [ 22.412109, 42.875964 ], [ 22.500000, 42.423457 ], [ 22.324219, 42.358544 ], [ 22.236328, 42.423457 ], [ 21.533203, 42.293564 ], [ 21.445312, 42.358544 ], [ 21.708984, 42.682435 ], [ 21.357422, 42.747012 ], [ 21.357422, 42.875964 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.654297, 43.133061 ], [ 20.302734, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.863281, 43.133061 ], [ 19.511719, 43.197167 ], [ 19.160156, 43.580391 ], [ 19.248047, 43.644026 ], [ 19.335938, 43.580391 ], [ 19.423828, 43.771094 ], [ 19.160156, 44.024422 ], [ 19.511719, 44.024422 ], [ 19.511719, 44.087585 ], [ 19.423828, 44.150681 ], [ 19.423828, 44.213710 ], [ 19.072266, 44.402392 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.072266, 44.964798 ], [ 18.984375, 45.151053 ], [ 19.335938, 45.274886 ], [ 18.896484, 45.398450 ], [ 19.072266, 45.583290 ], [ 18.896484, 45.583290 ], [ 18.808594, 45.890008 ], [ 19.072266, 46.073231 ], [ 19.248047, 46.012224 ], [ 19.511719, 46.195042 ], [ 20.126953, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.357422, 42.875964 ], [ 21.357422, 42.747012 ], [ 21.708984, 42.682435 ], [ 21.445312, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.269531, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.093750, 42.228517 ], [ 20.742188, 42.098222 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.293564 ], [ 20.214844, 42.358544 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.617791 ], [ 19.951172, 42.811522 ], [ 20.126953, 42.747012 ], [ 20.654297, 43.133061 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ], [ 21.357422, 42.875964 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.357422, 42.875964 ], [ 21.357422, 42.747012 ], [ 21.708984, 42.682435 ], [ 21.445312, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.269531, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.093750, 42.228517 ], [ 20.742188, 42.098222 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.293564 ], [ 20.214844, 42.358544 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.617791 ], [ 19.951172, 42.811522 ], [ 20.126953, 42.747012 ], [ 20.654297, 43.133061 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.423828, 41.046217 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.423828, 41.640078 ], [ 19.511719, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.682435 ], [ 19.687500, 42.553080 ], [ 19.863281, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.039062, 42.553080 ], [ 20.214844, 42.358544 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.478516, 41.244772 ], [ 20.654297, 40.913513 ], [ 20.917969, 40.913513 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.446947 ], [ 20.654297, 40.178873 ], [ 20.302734, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.707187 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.423828, 40.245992 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.248047, 40.647304 ], [ 19.423828, 40.913513 ], [ 19.511719, 40.979898 ], [ 19.423828, 41.046217 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.682435 ], [ 19.687500, 42.553080 ], [ 19.863281, 42.488302 ], [ 20.039062, 42.553080 ], [ 20.214844, 42.358544 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.478516, 41.244772 ], [ 20.654297, 40.913513 ], [ 20.917969, 40.913513 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.446947 ], [ 20.654297, 40.178873 ], [ 20.302734, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.707187 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.423828, 40.245992 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.248047, 40.647304 ], [ 19.423828, 40.913513 ], [ 19.511719, 40.979898 ], [ 19.423828, 41.046217 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.511719, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.682435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.358544 ], [ 22.500000, 42.163403 ], [ 22.851562, 42.032974 ], [ 22.939453, 41.771312 ], [ 22.939453, 41.376809 ], [ 22.675781, 41.376809 ], [ 22.675781, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.533203, 40.913513 ], [ 20.654297, 40.913513 ], [ 20.478516, 41.244772 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.093750, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.269531, 42.228517 ], [ 21.533203, 42.293564 ], [ 22.236328, 42.423457 ], [ 22.324219, 42.358544 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.236328, 42.423457 ], [ 22.324219, 42.358544 ], [ 22.500000, 42.163403 ], [ 22.851562, 42.032974 ], [ 22.939453, 41.771312 ], [ 22.939453, 41.376809 ], [ 22.675781, 41.376809 ], [ 22.675781, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.533203, 40.913513 ], [ 20.654297, 40.913513 ], [ 20.478516, 41.244772 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.093750, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.269531, 42.228517 ], [ 21.533203, 42.293564 ], [ 22.236328, 42.423457 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.259766, 46.800059 ], [ 16.391602, 46.709736 ], [ 16.347656, 46.649436 ], [ 16.479492, 46.528635 ], [ 16.303711, 46.558860 ], [ 16.215820, 46.498392 ], [ 16.259766, 46.377254 ], [ 16.040039, 46.407564 ], [ 15.996094, 46.316584 ], [ 15.600586, 46.225453 ], [ 15.556641, 46.134170 ], [ 15.688477, 46.042736 ], [ 15.644531, 45.828799 ], [ 15.424805, 45.828799 ], [ 15.249023, 45.736860 ], [ 15.336914, 45.675482 ], [ 15.249023, 45.644768 ], [ 15.249023, 45.552525 ], [ 15.336914, 45.490946 ], [ 15.161133, 45.429299 ], [ 14.941406, 45.521744 ], [ 14.809570, 45.460131 ], [ 14.765625, 45.521744 ], [ 14.633789, 45.552525 ], [ 14.589844, 45.675482 ], [ 14.458008, 45.614037 ], [ 14.370117, 45.490946 ], [ 13.930664, 45.521744 ], [ 13.974609, 45.490946 ], [ 13.886719, 45.429299 ], [ 13.798828, 45.429299 ], [ 13.754883, 45.490946 ], [ 13.579102, 45.490946 ], [ 13.535156, 45.552525 ], [ 13.666992, 45.552525 ], [ 13.710938, 45.614037 ], [ 13.798828, 45.583290 ], [ 13.886719, 45.644768 ], [ 13.754883, 45.767523 ], [ 13.535156, 45.828799 ], [ 13.579102, 46.012224 ], [ 13.491211, 45.981695 ], [ 13.447266, 46.042736 ], [ 13.623047, 46.195042 ], [ 13.403320, 46.225453 ], [ 13.403320, 46.377254 ], [ 13.666992, 46.468133 ], [ 13.666992, 46.528635 ], [ 14.326172, 46.437857 ], [ 14.370117, 46.468133 ], [ 14.545898, 46.407564 ], [ 14.809570, 46.558860 ], [ 14.809570, 46.619261 ], [ 14.941406, 46.619261 ], [ 15.029297, 46.679594 ], [ 15.468750, 46.619261 ], [ 15.512695, 46.679594 ], [ 15.600586, 46.679594 ], [ 15.600586, 46.739861 ], [ 15.996094, 46.709736 ], [ 15.952148, 46.830134 ], [ 16.083984, 46.890232 ], [ 16.259766, 46.890232 ], [ 16.259766, 46.800059 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.259766, 46.890232 ], [ 16.259766, 46.800059 ], [ 16.391602, 46.709736 ], [ 16.347656, 46.649436 ], [ 16.479492, 46.528635 ], [ 16.303711, 46.558860 ], [ 16.215820, 46.498392 ], [ 16.259766, 46.377254 ], [ 16.040039, 46.407564 ], [ 15.996094, 46.316584 ], [ 15.600586, 46.225453 ], [ 15.556641, 46.134170 ], [ 15.688477, 46.042736 ], [ 15.644531, 45.828799 ], [ 15.424805, 45.828799 ], [ 15.249023, 45.736860 ], [ 15.336914, 45.675482 ], [ 15.249023, 45.644768 ], [ 15.249023, 45.552525 ], [ 15.336914, 45.490946 ], [ 15.161133, 45.429299 ], [ 14.941406, 45.521744 ], [ 14.809570, 45.460131 ], [ 14.765625, 45.521744 ], [ 14.633789, 45.552525 ], [ 14.589844, 45.675482 ], [ 14.458008, 45.614037 ], [ 14.370117, 45.490946 ], [ 13.930664, 45.521744 ], [ 13.974609, 45.490946 ], [ 13.886719, 45.429299 ], [ 13.798828, 45.429299 ], [ 13.754883, 45.490946 ], [ 13.579102, 45.490946 ], [ 13.535156, 45.552525 ], [ 13.666992, 45.552525 ], [ 13.710938, 45.614037 ], [ 13.798828, 45.583290 ], [ 13.886719, 45.644768 ], [ 13.754883, 45.767523 ], [ 13.535156, 45.828799 ], [ 13.579102, 46.012224 ], [ 13.491211, 45.981695 ], [ 13.447266, 46.042736 ], [ 13.623047, 46.195042 ], [ 13.403320, 46.225453 ], [ 13.403320, 46.377254 ], [ 13.666992, 46.468133 ], [ 13.666992, 46.528635 ], [ 14.326172, 46.437857 ], [ 14.370117, 46.468133 ], [ 14.545898, 46.407564 ], [ 14.809570, 46.558860 ], [ 14.809570, 46.619261 ], [ 14.941406, 46.619261 ], [ 15.029297, 46.679594 ], [ 15.468750, 46.619261 ], [ 15.512695, 46.679594 ], [ 15.600586, 46.679594 ], [ 15.600586, 46.739861 ], [ 15.996094, 46.709736 ], [ 15.952148, 46.830134 ], [ 16.083984, 46.890232 ], [ 16.259766, 46.890232 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.797852, 42.940339 ], [ 17.797852, 42.875964 ], [ 17.885742, 42.811522 ], [ 17.797852, 42.811522 ], [ 17.709961, 42.843751 ], [ 17.709961, 42.779275 ], [ 17.666016, 42.843751 ], [ 17.402344, 42.875964 ], [ 17.402344, 42.940339 ], [ 17.006836, 43.004647 ], [ 17.006836, 43.068888 ], [ 17.358398, 43.004647 ], [ 17.490234, 42.940339 ], [ 17.534180, 42.940339 ], [ 17.622070, 42.908160 ], [ 17.797852, 42.940339 ] ], [ [ 17.622070, 42.875964 ], [ 17.666016, 42.875964 ], [ 17.709961, 42.908160 ], [ 17.622070, 42.908160 ], [ 17.622070, 42.875964 ] ] ], [ [ [ 16.918945, 42.747012 ], [ 16.787109, 42.747012 ], [ 16.787109, 42.811522 ], [ 16.918945, 42.747012 ] ] ], [ [ [ 17.182617, 42.940339 ], [ 16.831055, 42.908160 ], [ 16.611328, 42.940339 ], [ 16.699219, 42.972502 ], [ 16.655273, 43.004647 ], [ 17.006836, 43.004647 ], [ 17.182617, 42.940339 ] ] ], [ [ [ 16.171875, 43.036776 ], [ 16.083984, 43.036776 ], [ 16.040039, 43.100983 ], [ 16.215820, 43.100983 ], [ 16.171875, 43.036776 ] ] ], [ [ [ 16.699219, 43.165123 ], [ 16.831055, 43.197167 ], [ 17.182617, 43.133061 ], [ 16.655273, 43.133061 ], [ 16.347656, 43.197167 ], [ 16.479492, 43.229195 ], [ 16.655273, 43.229195 ], [ 16.699219, 43.165123 ] ] ], [ [ [ 16.875000, 43.325178 ], [ 16.479492, 43.293200 ], [ 16.391602, 43.357138 ], [ 16.435547, 43.357138 ], [ 16.391602, 43.421009 ], [ 16.875000, 43.325178 ] ] ], [ [ [ 16.259766, 43.484812 ], [ 16.259766, 43.548548 ], [ 16.347656, 43.548548 ], [ 16.347656, 43.484812 ], [ 16.259766, 43.484812 ] ] ], [ [ [ 15.380859, 43.771094 ], [ 15.292969, 43.771094 ], [ 15.292969, 43.834527 ], [ 15.380859, 43.834527 ], [ 15.380859, 43.771094 ] ] ], [ [ [ 15.117188, 44.276671 ], [ 15.205078, 44.276671 ], [ 15.161133, 44.308127 ], [ 15.205078, 44.308127 ], [ 15.292969, 44.276671 ], [ 15.249023, 44.308127 ], [ 15.292969, 44.339565 ], [ 15.380859, 44.276671 ], [ 15.512695, 44.276671 ], [ 14.985352, 44.590467 ], [ 14.853516, 44.746733 ], [ 14.853516, 45.089036 ], [ 14.545898, 45.305803 ], [ 14.282227, 45.367584 ], [ 14.194336, 45.151053 ], [ 14.150391, 45.120053 ], [ 14.150391, 44.995883 ], [ 14.062500, 44.995883 ], [ 14.018555, 44.902578 ], [ 13.974609, 44.902578 ], [ 13.930664, 44.871443 ], [ 13.974609, 44.840291 ], [ 13.798828, 44.840291 ], [ 13.798828, 44.902578 ], [ 13.754883, 44.933696 ], [ 13.579102, 45.120053 ], [ 13.710938, 45.151053 ], [ 13.579102, 45.151053 ], [ 13.491211, 45.521744 ], [ 13.579102, 45.490946 ], [ 13.754883, 45.490946 ], [ 13.798828, 45.429299 ], [ 13.886719, 45.429299 ], [ 13.974609, 45.490946 ], [ 13.930664, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.458008, 45.614037 ], [ 14.589844, 45.675482 ], [ 14.633789, 45.552525 ], [ 14.765625, 45.521744 ], [ 14.809570, 45.460131 ], [ 14.941406, 45.521744 ], [ 15.161133, 45.429299 ], [ 15.336914, 45.490946 ], [ 15.249023, 45.552525 ], [ 15.249023, 45.644768 ], [ 15.336914, 45.675482 ], [ 15.249023, 45.736860 ], [ 15.424805, 45.828799 ], [ 15.644531, 45.828799 ], [ 15.688477, 46.042736 ], [ 15.556641, 46.134170 ], [ 15.600586, 46.225453 ], [ 15.996094, 46.316584 ], [ 16.040039, 46.407564 ], [ 16.259766, 46.377254 ], [ 16.215820, 46.498392 ], [ 16.303711, 46.558860 ], [ 16.479492, 46.528635 ], [ 16.611328, 46.498392 ], [ 16.699219, 46.407564 ], [ 16.787109, 46.407564 ], [ 17.006836, 46.164614 ], [ 17.182617, 46.134170 ], [ 17.270508, 46.012224 ], [ 17.270508, 45.981695 ], [ 17.490234, 45.981695 ], [ 17.622070, 45.920587 ], [ 17.622070, 45.859412 ], [ 17.841797, 45.798170 ], [ 18.237305, 45.767523 ], [ 18.413086, 45.767523 ], [ 18.632812, 45.920587 ], [ 18.764648, 45.890008 ], [ 18.896484, 45.951150 ], [ 18.896484, 45.920587 ], [ 18.852539, 45.890008 ], [ 18.808594, 45.828799 ], [ 18.940430, 45.706179 ], [ 18.896484, 45.552525 ], [ 19.072266, 45.552525 ], [ 18.984375, 45.521744 ], [ 19.028320, 45.429299 ], [ 18.940430, 45.398450 ], [ 19.379883, 45.243953 ], [ 19.379883, 45.182037 ], [ 19.116211, 45.213004 ], [ 19.116211, 45.151053 ], [ 19.028320, 45.151053 ], [ 19.116211, 44.964798 ], [ 18.984375, 44.933696 ], [ 18.984375, 44.871443 ], [ 18.852539, 44.871443 ], [ 18.764648, 44.933696 ], [ 18.764648, 45.026950 ], [ 18.588867, 45.120053 ], [ 18.500977, 45.120053 ], [ 18.500977, 45.058001 ], [ 18.237305, 45.182037 ], [ 18.193359, 45.120053 ], [ 17.973633, 45.151053 ], [ 17.885742, 45.089036 ], [ 17.753906, 45.089036 ], [ 17.709961, 45.182037 ], [ 17.534180, 45.151053 ], [ 17.446289, 45.120053 ], [ 17.446289, 45.151053 ], [ 17.226562, 45.213004 ], [ 17.182617, 45.151053 ], [ 17.006836, 45.274886 ], [ 16.962891, 45.243953 ], [ 16.918945, 45.305803 ], [ 16.787109, 45.243953 ], [ 16.787109, 45.182037 ], [ 16.523438, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.215820, 45.026950 ], [ 15.996094, 45.182037 ], [ 15.996094, 45.243953 ], [ 15.776367, 45.213004 ], [ 15.688477, 44.777936 ], [ 15.776367, 44.715514 ], [ 15.864258, 44.746733 ], [ 16.040039, 44.621754 ], [ 15.996094, 44.527843 ], [ 16.083984, 44.559163 ], [ 16.171875, 44.213710 ], [ 16.303711, 44.087585 ], [ 16.391602, 44.087585 ], [ 16.523438, 43.992815 ], [ 16.655273, 43.802819 ], [ 17.050781, 43.516689 ], [ 17.270508, 43.452919 ], [ 17.226562, 43.357138 ], [ 17.402344, 43.229195 ], [ 17.402344, 43.165123 ], [ 17.622070, 43.068888 ], [ 17.578125, 42.972502 ], [ 17.490234, 42.972502 ], [ 17.446289, 43.036776 ], [ 17.402344, 43.036776 ], [ 16.875000, 43.421009 ], [ 16.347656, 43.516689 ], [ 16.435547, 43.548548 ], [ 16.391602, 43.580391 ], [ 16.083984, 43.548548 ], [ 16.171875, 43.516689 ], [ 16.083984, 43.484812 ], [ 15.952148, 43.516689 ], [ 15.908203, 43.675818 ], [ 15.952148, 43.707594 ], [ 15.688477, 43.771094 ], [ 15.644531, 43.834527 ], [ 15.512695, 43.929550 ], [ 15.424805, 43.929550 ], [ 15.424805, 43.897892 ], [ 15.249023, 44.024422 ], [ 15.380859, 43.992815 ], [ 15.380859, 44.024422 ], [ 15.117188, 44.213710 ], [ 15.117188, 44.276671 ] ], [ [ 14.062500, 45.026950 ], [ 14.018555, 45.026950 ], [ 14.062500, 44.995883 ], [ 14.062500, 45.026950 ] ] ], [ [ [ 15.205078, 43.929550 ], [ 15.161133, 43.897892 ], [ 15.117188, 43.929550 ], [ 15.073242, 43.929550 ], [ 14.853516, 44.182204 ], [ 15.205078, 43.929550 ] ] ], [ [ [ 15.249023, 44.056012 ], [ 15.161133, 44.056012 ], [ 15.161133, 44.119142 ], [ 15.249023, 44.119142 ], [ 15.249023, 44.056012 ] ] ], [ [ [ 14.853516, 44.590467 ], [ 14.897461, 44.621754 ], [ 15.073242, 44.496505 ], [ 14.897461, 44.559163 ], [ 15.029297, 44.465151 ], [ 15.249023, 44.370987 ], [ 15.161133, 44.370987 ], [ 15.161133, 44.308127 ], [ 15.073242, 44.339565 ], [ 15.073242, 44.402392 ], [ 14.897461, 44.496505 ], [ 14.809570, 44.621754 ], [ 14.853516, 44.590467 ] ] ], [ [ [ 14.853516, 44.339565 ], [ 14.765625, 44.339565 ], [ 14.765625, 44.402392 ], [ 14.853516, 44.402392 ], [ 14.853516, 44.339565 ] ] ], [ [ [ 14.414062, 44.590467 ], [ 14.326172, 44.590467 ], [ 14.326172, 44.653024 ], [ 14.414062, 44.653024 ], [ 14.414062, 44.590467 ] ] ], [ [ [ 14.370117, 45.026950 ], [ 14.458008, 44.995883 ], [ 14.414062, 44.809122 ], [ 14.501953, 44.621754 ], [ 14.326172, 44.777936 ], [ 14.282227, 44.964798 ], [ 14.370117, 44.933696 ], [ 14.370117, 44.995883 ], [ 14.238281, 45.120053 ], [ 14.282227, 45.151053 ], [ 14.370117, 45.026950 ] ] ], [ [ [ 14.853516, 44.746733 ], [ 14.809570, 44.715514 ], [ 14.677734, 44.809122 ], [ 14.677734, 44.871443 ], [ 14.853516, 44.746733 ] ] ], [ [ [ 14.633789, 45.089036 ], [ 14.721680, 45.089036 ], [ 14.809570, 44.995883 ], [ 14.677734, 44.964798 ], [ 14.589844, 45.026950 ], [ 14.414062, 45.089036 ], [ 14.545898, 45.213004 ], [ 14.501953, 45.243953 ], [ 14.589844, 45.243953 ], [ 14.633789, 45.089036 ] ] ], [ [ [ 17.973633, 42.747012 ], [ 18.413086, 42.585444 ], [ 18.413086, 42.488302 ], [ 18.457031, 42.455888 ], [ 18.193359, 42.585444 ], [ 18.193359, 42.650122 ], [ 18.061523, 42.682435 ], [ 17.841797, 42.779275 ], [ 17.885742, 42.811522 ], [ 17.973633, 42.747012 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.622070, 42.908160 ], [ 17.622070, 42.875964 ], [ 17.666016, 42.875964 ], [ 17.709961, 42.908160 ], [ 17.797852, 42.940339 ], [ 17.797852, 42.875964 ], [ 17.885742, 42.811522 ], [ 17.797852, 42.811522 ], [ 17.709961, 42.843751 ], [ 17.709961, 42.779275 ], [ 17.666016, 42.843751 ], [ 17.402344, 42.875964 ], [ 17.402344, 42.940339 ], [ 17.006836, 43.004647 ], [ 17.006836, 43.068888 ], [ 17.358398, 43.004647 ], [ 17.490234, 42.940339 ], [ 17.534180, 42.940339 ], [ 17.622070, 42.908160 ] ] ], [ [ [ 16.787109, 42.811522 ], [ 16.918945, 42.747012 ], [ 16.787109, 42.747012 ], [ 16.787109, 42.811522 ] ] ], [ [ [ 17.006836, 43.004647 ], [ 17.182617, 42.940339 ], [ 16.831055, 42.908160 ], [ 16.611328, 42.940339 ], [ 16.699219, 42.972502 ], [ 16.655273, 43.004647 ], [ 17.006836, 43.004647 ] ] ], [ [ [ 15.117188, 44.213710 ], [ 15.117188, 44.276671 ], [ 15.205078, 44.276671 ], [ 15.205078, 44.308127 ], [ 15.249023, 44.308127 ], [ 15.292969, 44.339565 ], [ 15.380859, 44.276671 ], [ 15.512695, 44.276671 ], [ 14.985352, 44.590467 ], [ 14.853516, 44.746733 ], [ 14.853516, 45.089036 ], [ 14.545898, 45.305803 ], [ 14.282227, 45.367584 ], [ 14.194336, 45.151053 ], [ 14.150391, 45.120053 ], [ 14.150391, 44.995883 ], [ 14.062500, 44.995883 ], [ 14.018555, 44.902578 ], [ 13.974609, 44.902578 ], [ 13.930664, 44.871443 ], [ 13.974609, 44.840291 ], [ 13.798828, 44.840291 ], [ 13.798828, 44.902578 ], [ 13.754883, 44.933696 ], [ 13.579102, 45.120053 ], [ 13.710938, 45.151053 ], [ 13.579102, 45.151053 ], [ 13.491211, 45.521744 ], [ 13.579102, 45.490946 ], [ 13.754883, 45.490946 ], [ 13.798828, 45.429299 ], [ 13.886719, 45.429299 ], [ 13.974609, 45.490946 ], [ 13.930664, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.458008, 45.614037 ], [ 14.589844, 45.675482 ], [ 14.633789, 45.552525 ], [ 14.765625, 45.521744 ], [ 14.809570, 45.460131 ], [ 14.941406, 45.521744 ], [ 15.161133, 45.429299 ], [ 15.336914, 45.490946 ], [ 15.249023, 45.552525 ], [ 15.249023, 45.644768 ], [ 15.336914, 45.675482 ], [ 15.249023, 45.736860 ], [ 15.424805, 45.828799 ], [ 15.644531, 45.828799 ], [ 15.688477, 46.042736 ], [ 15.556641, 46.134170 ], [ 15.600586, 46.225453 ], [ 15.996094, 46.316584 ], [ 16.040039, 46.407564 ], [ 16.259766, 46.377254 ], [ 16.215820, 46.498392 ], [ 16.303711, 46.558860 ], [ 16.479492, 46.528635 ], [ 16.611328, 46.498392 ], [ 16.699219, 46.407564 ], [ 16.787109, 46.407564 ], [ 17.006836, 46.164614 ], [ 17.182617, 46.134170 ], [ 17.270508, 46.012224 ], [ 17.270508, 45.981695 ], [ 17.490234, 45.981695 ], [ 17.622070, 45.920587 ], [ 17.622070, 45.859412 ], [ 17.841797, 45.798170 ], [ 18.237305, 45.767523 ], [ 18.413086, 45.767523 ], [ 18.632812, 45.920587 ], [ 18.764648, 45.890008 ], [ 18.896484, 45.951150 ], [ 18.896484, 45.920587 ], [ 18.852539, 45.890008 ], [ 18.808594, 45.828799 ], [ 18.940430, 45.706179 ], [ 18.896484, 45.552525 ], [ 19.072266, 45.552525 ], [ 18.984375, 45.521744 ], [ 19.028320, 45.429299 ], [ 18.940430, 45.398450 ], [ 19.379883, 45.243953 ], [ 19.379883, 45.182037 ], [ 19.116211, 45.213004 ], [ 19.116211, 45.151053 ], [ 19.028320, 45.151053 ], [ 19.116211, 44.964798 ], [ 18.984375, 44.933696 ], [ 18.984375, 44.871443 ], [ 18.852539, 44.871443 ], [ 18.764648, 44.933696 ], [ 18.764648, 45.026950 ], [ 18.588867, 45.120053 ], [ 18.500977, 45.120053 ], [ 18.500977, 45.058001 ], [ 18.237305, 45.182037 ], [ 18.193359, 45.120053 ], [ 17.973633, 45.151053 ], [ 17.885742, 45.089036 ], [ 17.753906, 45.089036 ], [ 17.709961, 45.182037 ], [ 17.534180, 45.151053 ], [ 17.446289, 45.120053 ], [ 17.446289, 45.151053 ], [ 17.226562, 45.213004 ], [ 17.182617, 45.151053 ], [ 17.006836, 45.274886 ], [ 16.962891, 45.243953 ], [ 16.918945, 45.305803 ], [ 16.787109, 45.243953 ], [ 16.787109, 45.182037 ], [ 16.523438, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.215820, 45.026950 ], [ 15.996094, 45.182037 ], [ 15.996094, 45.243953 ], [ 15.776367, 45.213004 ], [ 15.688477, 44.777936 ], [ 15.776367, 44.715514 ], [ 15.864258, 44.746733 ], [ 16.040039, 44.621754 ], [ 15.996094, 44.527843 ], [ 16.083984, 44.559163 ], [ 16.171875, 44.213710 ], [ 16.303711, 44.087585 ], [ 16.391602, 44.087585 ], [ 16.523438, 43.992815 ], [ 16.655273, 43.802819 ], [ 17.050781, 43.516689 ], [ 17.270508, 43.452919 ], [ 17.226562, 43.357138 ], [ 17.402344, 43.229195 ], [ 17.402344, 43.165123 ], [ 17.622070, 43.068888 ], [ 17.578125, 42.972502 ], [ 17.490234, 42.972502 ], [ 17.446289, 43.036776 ], [ 17.402344, 43.036776 ], [ 16.875000, 43.421009 ], [ 16.347656, 43.516689 ], [ 16.435547, 43.548548 ], [ 16.391602, 43.580391 ], [ 16.259766, 43.548548 ], [ 16.083984, 43.548548 ], [ 16.171875, 43.516689 ], [ 16.083984, 43.484812 ], [ 15.952148, 43.516689 ], [ 15.908203, 43.675818 ], [ 15.952148, 43.707594 ], [ 15.688477, 43.771094 ], [ 15.644531, 43.834527 ], [ 15.512695, 43.929550 ], [ 15.424805, 43.929550 ], [ 15.249023, 44.024422 ], [ 15.380859, 43.992815 ], [ 15.380859, 44.024422 ], [ 15.117188, 44.213710 ] ] ], [ [ [ 16.215820, 43.100983 ], [ 16.171875, 43.036776 ], [ 16.083984, 43.036776 ], [ 16.040039, 43.100983 ], [ 16.215820, 43.100983 ] ] ], [ [ [ 16.655273, 43.229195 ], [ 16.699219, 43.165123 ], [ 16.831055, 43.197167 ], [ 17.182617, 43.133061 ], [ 16.655273, 43.133061 ], [ 16.347656, 43.197167 ], [ 16.479492, 43.229195 ], [ 16.655273, 43.229195 ] ] ], [ [ [ 16.391602, 43.421009 ], [ 16.875000, 43.325178 ], [ 16.479492, 43.293200 ], [ 16.391602, 43.421009 ] ] ], [ [ [ 16.347656, 43.484812 ], [ 16.259766, 43.484812 ], [ 16.259766, 43.548548 ], [ 16.347656, 43.548548 ], [ 16.347656, 43.484812 ] ] ], [ [ [ 15.380859, 43.834527 ], [ 15.380859, 43.771094 ], [ 15.292969, 43.771094 ], [ 15.292969, 43.834527 ], [ 15.380859, 43.834527 ] ] ], [ [ [ 14.853516, 44.182204 ], [ 15.205078, 43.929550 ], [ 15.161133, 43.897892 ], [ 15.117188, 43.929550 ], [ 15.073242, 43.929550 ], [ 14.853516, 44.182204 ] ] ], [ [ [ 15.249023, 44.119142 ], [ 15.249023, 44.056012 ], [ 15.161133, 44.056012 ], [ 15.161133, 44.119142 ], [ 15.249023, 44.119142 ] ] ], [ [ [ 14.853516, 44.590467 ], [ 14.897461, 44.621754 ], [ 14.985352, 44.590467 ], [ 15.073242, 44.496505 ], [ 14.897461, 44.559163 ], [ 15.029297, 44.465151 ], [ 15.249023, 44.370987 ], [ 15.161133, 44.370987 ], [ 15.161133, 44.308127 ], [ 15.073242, 44.339565 ], [ 15.073242, 44.402392 ], [ 14.897461, 44.496505 ], [ 14.853516, 44.590467 ] ] ], [ [ [ 14.853516, 44.402392 ], [ 14.853516, 44.339565 ], [ 14.765625, 44.339565 ], [ 14.765625, 44.402392 ], [ 14.853516, 44.402392 ] ] ], [ [ [ 14.414062, 44.653024 ], [ 14.414062, 44.590467 ], [ 14.326172, 44.590467 ], [ 14.326172, 44.653024 ], [ 14.414062, 44.653024 ] ] ], [ [ [ 14.370117, 45.026950 ], [ 14.458008, 44.995883 ], [ 14.414062, 44.809122 ], [ 14.501953, 44.621754 ], [ 14.326172, 44.777936 ], [ 14.282227, 44.964798 ], [ 14.370117, 44.933696 ], [ 14.370117, 45.026950 ] ] ], [ [ [ 14.677734, 44.871443 ], [ 14.853516, 44.746733 ], [ 14.809570, 44.715514 ], [ 14.677734, 44.809122 ], [ 14.677734, 44.871443 ] ] ], [ [ [ 14.589844, 45.243953 ], [ 14.633789, 45.089036 ], [ 14.721680, 45.089036 ], [ 14.809570, 44.995883 ], [ 14.677734, 44.964798 ], [ 14.589844, 45.026950 ], [ 14.414062, 45.089036 ], [ 14.545898, 45.213004 ], [ 14.501953, 45.243953 ], [ 14.589844, 45.243953 ] ] ], [ [ [ 18.193359, 42.650122 ], [ 18.413086, 42.585444 ], [ 18.413086, 42.488302 ], [ 18.193359, 42.585444 ], [ 18.193359, 42.650122 ] ] ], [ [ [ 17.973633, 42.747012 ], [ 18.193359, 42.650122 ], [ 18.061523, 42.682435 ], [ 17.973633, 42.747012 ] ] ], [ [ [ 17.885742, 42.811522 ], [ 17.973633, 42.747012 ], [ 17.841797, 42.779275 ], [ 17.885742, 42.811522 ] ] ], [ [ [ 14.370117, 45.026950 ], [ 14.238281, 45.120053 ], [ 14.282227, 45.182037 ], [ 14.370117, 45.026950 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.243953 ], [ 17.006836, 45.274886 ], [ 17.182617, 45.151053 ], [ 17.226562, 45.213004 ], [ 17.446289, 45.151053 ], [ 17.446289, 45.120053 ], [ 17.534180, 45.151053 ], [ 17.709961, 45.182037 ], [ 17.753906, 45.089036 ], [ 17.885742, 45.089036 ], [ 17.973633, 45.151053 ], [ 18.193359, 45.120053 ], [ 18.237305, 45.182037 ], [ 18.500977, 45.058001 ], [ 18.500977, 45.120053 ], [ 18.588867, 45.120053 ], [ 18.764648, 45.026950 ], [ 18.764648, 44.933696 ], [ 18.852539, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.160156, 44.933696 ], [ 19.335938, 44.902578 ], [ 19.291992, 44.715514 ], [ 19.116211, 44.527843 ], [ 19.072266, 44.370987 ], [ 19.116211, 44.308127 ], [ 19.335938, 44.276671 ], [ 19.335938, 44.213710 ], [ 19.423828, 44.182204 ], [ 19.467773, 44.119142 ], [ 19.555664, 44.087585 ], [ 19.599609, 44.024422 ], [ 19.511719, 43.992815 ], [ 19.204102, 44.024422 ], [ 19.204102, 43.961191 ], [ 19.467773, 43.739352 ], [ 19.467773, 43.580391 ], [ 19.379883, 43.580391 ], [ 19.248047, 43.612217 ], [ 19.160156, 43.548548 ], [ 18.896484, 43.548548 ], [ 19.028320, 43.325178 ], [ 18.940430, 43.293200 ], [ 18.940430, 43.357138 ], [ 18.808594, 43.357138 ], [ 18.632812, 43.261206 ], [ 18.632812, 43.036776 ], [ 18.413086, 43.004647 ], [ 18.413086, 42.811522 ], [ 18.544922, 42.682435 ], [ 18.413086, 42.585444 ], [ 17.973633, 42.747012 ], [ 17.797852, 42.875964 ], [ 17.797852, 42.940339 ], [ 17.622070, 42.908160 ], [ 17.534180, 42.940339 ], [ 17.578125, 42.972502 ], [ 17.622070, 43.068888 ], [ 17.402344, 43.165123 ], [ 17.402344, 43.229195 ], [ 17.226562, 43.357138 ], [ 17.270508, 43.452919 ], [ 17.050781, 43.516689 ], [ 16.655273, 43.802819 ], [ 16.523438, 43.992815 ], [ 16.391602, 44.087585 ], [ 16.303711, 44.087585 ], [ 16.171875, 44.213710 ], [ 16.083984, 44.559163 ], [ 15.996094, 44.527843 ], [ 16.040039, 44.621754 ], [ 15.864258, 44.746733 ], [ 15.776367, 44.715514 ], [ 15.688477, 44.777936 ], [ 15.776367, 45.213004 ], [ 15.996094, 45.243953 ], [ 15.996094, 45.182037 ], [ 16.215820, 45.026950 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.243953 ], [ 16.787109, 45.182037 ], [ 16.787109, 45.243953 ], [ 16.918945, 45.305803 ], [ 16.962891, 45.243953 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.918945, 45.305803 ], [ 16.962891, 45.243953 ], [ 17.006836, 45.274886 ], [ 17.182617, 45.151053 ], [ 17.226562, 45.213004 ], [ 17.446289, 45.151053 ], [ 17.446289, 45.120053 ], [ 17.534180, 45.151053 ], [ 17.709961, 45.182037 ], [ 17.753906, 45.089036 ], [ 17.885742, 45.089036 ], [ 17.973633, 45.151053 ], [ 18.193359, 45.120053 ], [ 18.237305, 45.182037 ], [ 18.500977, 45.058001 ], [ 18.500977, 45.120053 ], [ 18.588867, 45.120053 ], [ 18.764648, 45.026950 ], [ 18.764648, 44.933696 ], [ 18.852539, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.160156, 44.933696 ], [ 19.335938, 44.902578 ], [ 19.291992, 44.715514 ], [ 19.116211, 44.527843 ], [ 19.072266, 44.370987 ], [ 19.116211, 44.308127 ], [ 19.335938, 44.276671 ], [ 19.335938, 44.213710 ], [ 19.423828, 44.182204 ], [ 19.467773, 44.119142 ], [ 19.555664, 44.087585 ], [ 19.599609, 44.024422 ], [ 19.511719, 43.992815 ], [ 19.204102, 44.024422 ], [ 19.204102, 43.961191 ], [ 19.467773, 43.739352 ], [ 19.467773, 43.580391 ], [ 19.379883, 43.580391 ], [ 19.248047, 43.612217 ], [ 19.160156, 43.548548 ], [ 18.896484, 43.548548 ], [ 19.028320, 43.325178 ], [ 18.940430, 43.293200 ], [ 18.940430, 43.357138 ], [ 18.808594, 43.357138 ], [ 18.632812, 43.261206 ], [ 18.632812, 43.036776 ], [ 18.413086, 43.004647 ], [ 18.413086, 42.811522 ], [ 18.544922, 42.682435 ], [ 18.413086, 42.585444 ], [ 17.973633, 42.747012 ], [ 17.797852, 42.875964 ], [ 17.797852, 42.940339 ], [ 17.622070, 42.908160 ], [ 17.534180, 42.940339 ], [ 17.578125, 42.972502 ], [ 17.622070, 43.068888 ], [ 17.402344, 43.165123 ], [ 17.402344, 43.229195 ], [ 17.226562, 43.357138 ], [ 17.270508, 43.452919 ], [ 17.050781, 43.516689 ], [ 16.655273, 43.802819 ], [ 16.523438, 43.992815 ], [ 16.391602, 44.087585 ], [ 16.303711, 44.087585 ], [ 16.171875, 44.213710 ], [ 16.083984, 44.559163 ], [ 15.996094, 44.527843 ], [ 16.040039, 44.621754 ], [ 15.864258, 44.746733 ], [ 15.776367, 44.715514 ], [ 15.688477, 44.777936 ], [ 15.776367, 45.213004 ], [ 15.996094, 45.243953 ], [ 15.996094, 45.182037 ], [ 16.215820, 45.026950 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.243953 ], [ 16.787109, 45.182037 ], [ 16.787109, 45.243953 ], [ 16.918945, 45.305803 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.457031, 42.455888 ], [ 18.413086, 42.488302 ], [ 18.413086, 42.585444 ], [ 18.544922, 42.682435 ], [ 18.413086, 42.811522 ], [ 18.413086, 43.004647 ], [ 18.632812, 43.036776 ], [ 18.632812, 43.261206 ], [ 18.808594, 43.357138 ], [ 18.940430, 43.357138 ], [ 18.940430, 43.293200 ], [ 19.028320, 43.325178 ], [ 18.896484, 43.548548 ], [ 19.160156, 43.548548 ], [ 19.160156, 43.484812 ], [ 19.335938, 43.421009 ], [ 19.555664, 43.197167 ], [ 19.687500, 43.197167 ], [ 19.775391, 43.100983 ], [ 19.907227, 43.133061 ], [ 20.126953, 42.972502 ], [ 20.346680, 42.908160 ], [ 20.302734, 42.843751 ], [ 20.170898, 42.811522 ], [ 20.170898, 42.747012 ], [ 19.995117, 42.779275 ], [ 19.995117, 42.714732 ], [ 20.083008, 42.682435 ], [ 20.039062, 42.585444 ], [ 19.863281, 42.488302 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.555664, 42.585444 ], [ 19.555664, 42.520700 ], [ 19.248047, 42.195969 ], [ 19.335938, 42.130821 ], [ 19.335938, 41.869561 ], [ 19.160156, 41.934977 ], [ 19.072266, 42.130821 ], [ 18.852539, 42.293564 ], [ 18.720703, 42.293564 ], [ 18.676758, 42.391009 ], [ 18.544922, 42.391009 ], [ 18.544922, 42.455888 ], [ 18.457031, 42.423457 ], [ 18.457031, 42.455888 ] ], [ [ 18.544922, 42.455888 ], [ 18.676758, 42.423457 ], [ 18.676758, 42.488302 ], [ 18.544922, 42.455888 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.548548 ], [ 19.160156, 43.484812 ], [ 19.335938, 43.421009 ], [ 19.555664, 43.197167 ], [ 19.687500, 43.197167 ], [ 19.775391, 43.100983 ], [ 19.907227, 43.133061 ], [ 20.126953, 42.972502 ], [ 20.346680, 42.908160 ], [ 20.302734, 42.843751 ], [ 20.170898, 42.811522 ], [ 20.170898, 42.747012 ], [ 19.995117, 42.779275 ], [ 19.995117, 42.714732 ], [ 20.083008, 42.682435 ], [ 20.039062, 42.585444 ], [ 19.863281, 42.488302 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.555664, 42.585444 ], [ 19.555664, 42.520700 ], [ 19.248047, 42.195969 ], [ 19.335938, 42.130821 ], [ 19.335938, 41.869561 ], [ 19.160156, 41.934977 ], [ 19.072266, 42.130821 ], [ 18.852539, 42.293564 ], [ 18.720703, 42.293564 ], [ 18.676758, 42.391009 ], [ 18.544922, 42.391009 ], [ 18.544922, 42.455888 ], [ 18.457031, 42.423457 ], [ 18.457031, 42.455888 ], [ 18.413086, 42.488302 ], [ 18.413086, 42.585444 ], [ 18.544922, 42.682435 ], [ 18.413086, 42.811522 ], [ 18.413086, 43.004647 ], [ 18.632812, 43.036776 ], [ 18.632812, 43.261206 ], [ 18.808594, 43.357138 ], [ 18.940430, 43.357138 ], [ 18.940430, 43.293200 ], [ 19.028320, 43.325178 ], [ 18.896484, 43.548548 ], [ 19.160156, 43.548548 ] ], [ [ 18.676758, 42.488302 ], [ 18.544922, 42.455888 ], [ 18.676758, 42.423457 ], [ 18.676758, 42.488302 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 46.134170 ], [ 20.170898, 46.164614 ], [ 20.302734, 46.073231 ], [ 20.302734, 46.012224 ], [ 20.522461, 45.920587 ], [ 20.698242, 45.736860 ], [ 20.742188, 45.767523 ], [ 20.742188, 45.490946 ], [ 20.961914, 45.336702 ], [ 21.489258, 45.151053 ], [ 21.313477, 44.995883 ], [ 21.489258, 44.964798 ], [ 21.533203, 44.902578 ], [ 21.357422, 44.902578 ], [ 21.357422, 44.809122 ], [ 21.533203, 44.809122 ], [ 21.665039, 44.684277 ], [ 21.972656, 44.684277 ], [ 22.060547, 44.527843 ], [ 22.148438, 44.527843 ], [ 22.280273, 44.715514 ], [ 22.412109, 44.746733 ], [ 22.763672, 44.590467 ], [ 22.543945, 44.590467 ], [ 22.543945, 44.527843 ], [ 22.456055, 44.527843 ], [ 22.543945, 44.339565 ], [ 22.631836, 44.339565 ], [ 22.675781, 44.245199 ], [ 22.587891, 44.213710 ], [ 22.587891, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.024422 ], [ 22.368164, 44.024422 ], [ 22.324219, 43.802819 ], [ 22.456055, 43.675818 ], [ 22.500000, 43.484812 ], [ 22.631836, 43.452919 ], [ 22.983398, 43.197167 ], [ 22.895508, 43.068888 ], [ 22.719727, 42.972502 ], [ 22.719727, 42.908160 ], [ 22.543945, 42.908160 ], [ 22.412109, 42.843751 ], [ 22.412109, 42.585444 ], [ 22.500000, 42.520700 ], [ 22.500000, 42.423457 ], [ 22.412109, 42.391009 ], [ 22.412109, 42.326062 ], [ 22.324219, 42.326062 ], [ 22.236328, 42.391009 ], [ 21.533203, 42.261049 ], [ 21.489258, 42.358544 ], [ 21.621094, 42.423457 ], [ 21.577148, 42.455888 ], [ 21.708984, 42.553080 ], [ 21.752930, 42.682435 ], [ 21.357422, 42.747012 ], [ 21.401367, 42.875964 ], [ 21.225586, 42.908160 ], [ 21.093750, 43.100983 ], [ 20.961914, 43.100983 ], [ 20.786133, 43.293200 ], [ 20.566406, 43.229195 ], [ 20.654297, 43.100983 ], [ 20.434570, 42.972502 ], [ 20.478516, 42.908160 ], [ 20.302734, 42.843751 ], [ 20.346680, 42.908160 ], [ 20.126953, 42.972502 ], [ 19.907227, 43.133061 ], [ 19.775391, 43.100983 ], [ 19.687500, 43.197167 ], [ 19.555664, 43.197167 ], [ 19.335938, 43.421009 ], [ 19.160156, 43.484812 ], [ 19.160156, 43.548548 ], [ 19.248047, 43.612217 ], [ 19.379883, 43.580391 ], [ 19.467773, 43.580391 ], [ 19.467773, 43.739352 ], [ 19.204102, 43.961191 ], [ 19.204102, 44.024422 ], [ 19.511719, 43.992815 ], [ 19.599609, 44.024422 ], [ 19.555664, 44.087585 ], [ 19.467773, 44.119142 ], [ 19.423828, 44.182204 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.276671 ], [ 19.116211, 44.308127 ], [ 19.072266, 44.370987 ], [ 19.116211, 44.527843 ], [ 19.291992, 44.715514 ], [ 19.335938, 44.902578 ], [ 19.160156, 44.933696 ], [ 18.984375, 44.871443 ], [ 18.984375, 44.933696 ], [ 19.116211, 44.964798 ], [ 19.028320, 45.151053 ], [ 19.116211, 45.151053 ], [ 19.116211, 45.213004 ], [ 19.379883, 45.182037 ], [ 19.379883, 45.243953 ], [ 18.940430, 45.398450 ], [ 19.028320, 45.429299 ], [ 18.984375, 45.521744 ], [ 19.072266, 45.552525 ], [ 18.896484, 45.552525 ], [ 18.940430, 45.706179 ], [ 18.808594, 45.828799 ], [ 18.852539, 45.890008 ], [ 18.896484, 45.920587 ], [ 18.896484, 45.951150 ], [ 18.940430, 45.951150 ], [ 19.072266, 46.042736 ], [ 19.248047, 45.981695 ], [ 19.248047, 46.042736 ], [ 19.379883, 46.042736 ], [ 19.555664, 46.195042 ], [ 19.687500, 46.195042 ], [ 19.731445, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 46.195042 ], [ 19.731445, 46.134170 ], [ 20.170898, 46.164614 ], [ 20.302734, 46.073231 ], [ 20.302734, 46.012224 ], [ 20.522461, 45.920587 ], [ 20.698242, 45.736860 ], [ 20.742188, 45.767523 ], [ 20.742188, 45.490946 ], [ 20.961914, 45.336702 ], [ 21.489258, 45.151053 ], [ 21.313477, 44.995883 ], [ 21.489258, 44.964798 ], [ 21.533203, 44.902578 ], [ 21.357422, 44.902578 ], [ 21.357422, 44.809122 ], [ 21.533203, 44.809122 ], [ 21.665039, 44.684277 ], [ 21.972656, 44.684277 ], [ 22.060547, 44.527843 ], [ 22.148438, 44.527843 ], [ 22.280273, 44.715514 ], [ 22.412109, 44.746733 ], [ 22.763672, 44.590467 ], [ 22.543945, 44.590467 ], [ 22.543945, 44.527843 ], [ 22.456055, 44.527843 ], [ 22.543945, 44.339565 ], [ 22.631836, 44.339565 ], [ 22.675781, 44.245199 ], [ 22.587891, 44.213710 ], [ 22.587891, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.024422 ], [ 22.368164, 44.024422 ], [ 22.324219, 43.802819 ], [ 22.456055, 43.675818 ], [ 22.500000, 43.484812 ], [ 22.631836, 43.452919 ], [ 22.983398, 43.197167 ], [ 22.895508, 43.068888 ], [ 22.719727, 42.972502 ], [ 22.719727, 42.908160 ], [ 22.543945, 42.908160 ], [ 22.412109, 42.843751 ], [ 22.412109, 42.585444 ], [ 22.500000, 42.520700 ], [ 22.500000, 42.423457 ], [ 22.412109, 42.391009 ], [ 22.412109, 42.326062 ], [ 22.324219, 42.326062 ], [ 22.236328, 42.391009 ], [ 21.533203, 42.261049 ], [ 21.489258, 42.358544 ], [ 21.621094, 42.423457 ], [ 21.577148, 42.455888 ], [ 21.708984, 42.553080 ], [ 21.752930, 42.682435 ], [ 21.357422, 42.747012 ], [ 21.401367, 42.875964 ], [ 21.225586, 42.908160 ], [ 21.093750, 43.100983 ], [ 20.961914, 43.100983 ], [ 20.786133, 43.293200 ], [ 20.566406, 43.229195 ], [ 20.654297, 43.100983 ], [ 20.434570, 42.972502 ], [ 20.478516, 42.908160 ], [ 20.302734, 42.843751 ], [ 20.346680, 42.908160 ], [ 20.126953, 42.972502 ], [ 19.907227, 43.133061 ], [ 19.775391, 43.100983 ], [ 19.687500, 43.197167 ], [ 19.555664, 43.197167 ], [ 19.335938, 43.421009 ], [ 19.160156, 43.484812 ], [ 19.160156, 43.548548 ], [ 19.248047, 43.612217 ], [ 19.379883, 43.580391 ], [ 19.467773, 43.580391 ], [ 19.467773, 43.739352 ], [ 19.204102, 43.961191 ], [ 19.204102, 44.024422 ], [ 19.511719, 43.992815 ], [ 19.599609, 44.024422 ], [ 19.555664, 44.087585 ], [ 19.467773, 44.119142 ], [ 19.423828, 44.182204 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.276671 ], [ 19.116211, 44.308127 ], [ 19.072266, 44.370987 ], [ 19.116211, 44.527843 ], [ 19.291992, 44.715514 ], [ 19.335938, 44.902578 ], [ 19.160156, 44.933696 ], [ 18.984375, 44.871443 ], [ 18.984375, 44.933696 ], [ 19.116211, 44.964798 ], [ 19.028320, 45.151053 ], [ 19.116211, 45.151053 ], [ 19.116211, 45.213004 ], [ 19.379883, 45.182037 ], [ 19.379883, 45.243953 ], [ 18.940430, 45.398450 ], [ 19.028320, 45.429299 ], [ 18.984375, 45.521744 ], [ 19.072266, 45.552525 ], [ 18.896484, 45.552525 ], [ 18.940430, 45.706179 ], [ 18.808594, 45.828799 ], [ 18.852539, 45.890008 ], [ 18.896484, 45.920587 ], [ 18.896484, 45.951150 ], [ 18.940430, 45.951150 ], [ 19.072266, 46.042736 ], [ 19.248047, 45.981695 ], [ 19.248047, 46.042736 ], [ 19.379883, 46.042736 ], [ 19.555664, 46.195042 ], [ 19.687500, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.961914, 43.100983 ], [ 21.093750, 43.100983 ], [ 21.225586, 42.908160 ], [ 21.401367, 42.875964 ], [ 21.357422, 42.747012 ], [ 21.752930, 42.682435 ], [ 21.708984, 42.553080 ], [ 21.577148, 42.455888 ], [ 21.621094, 42.423457 ], [ 21.489258, 42.358544 ], [ 21.533203, 42.261049 ], [ 21.313477, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.137695, 42.195969 ], [ 20.742188, 42.098222 ], [ 20.742188, 41.934977 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.261049 ], [ 20.214844, 42.326062 ], [ 20.126953, 42.520700 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.585444 ], [ 20.083008, 42.682435 ], [ 19.995117, 42.714732 ], [ 19.995117, 42.779275 ], [ 20.170898, 42.747012 ], [ 20.170898, 42.811522 ], [ 20.302734, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.434570, 42.972502 ], [ 20.654297, 43.100983 ], [ 20.566406, 43.229195 ], [ 20.786133, 43.293200 ], [ 20.961914, 43.100983 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 43.293200 ], [ 20.961914, 43.100983 ], [ 21.093750, 43.100983 ], [ 21.225586, 42.908160 ], [ 21.401367, 42.875964 ], [ 21.357422, 42.747012 ], [ 21.752930, 42.682435 ], [ 21.708984, 42.553080 ], [ 21.577148, 42.455888 ], [ 21.621094, 42.423457 ], [ 21.489258, 42.358544 ], [ 21.533203, 42.261049 ], [ 21.313477, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.137695, 42.195969 ], [ 20.742188, 42.098222 ], [ 20.742188, 41.934977 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.261049 ], [ 20.214844, 42.326062 ], [ 20.126953, 42.520700 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.585444 ], [ 20.083008, 42.682435 ], [ 19.995117, 42.714732 ], [ 19.995117, 42.779275 ], [ 20.170898, 42.747012 ], [ 20.170898, 42.811522 ], [ 20.302734, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.434570, 42.972502 ], [ 20.654297, 43.100983 ], [ 20.566406, 43.229195 ], [ 20.786133, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 41.013066 ], [ 19.423828, 41.178654 ], [ 19.511719, 41.277806 ], [ 19.467773, 41.343825 ], [ 19.379883, 41.343825 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.541478 ], [ 19.423828, 41.607228 ], [ 19.555664, 41.607228 ], [ 19.599609, 41.804078 ], [ 19.335938, 41.869561 ], [ 19.335938, 42.130821 ], [ 19.248047, 42.195969 ], [ 19.555664, 42.520700 ], [ 19.555664, 42.585444 ], [ 19.687500, 42.682435 ], [ 19.687500, 42.553080 ], [ 19.863281, 42.488302 ], [ 20.039062, 42.585444 ], [ 20.039062, 42.553080 ], [ 20.126953, 42.520700 ], [ 20.214844, 42.326062 ], [ 20.478516, 42.261049 ], [ 20.566406, 41.902277 ], [ 20.478516, 41.771312 ], [ 20.522461, 41.607228 ], [ 20.434570, 41.574361 ], [ 20.522461, 41.442726 ], [ 20.522461, 41.376809 ], [ 20.434570, 41.343825 ], [ 20.478516, 41.211722 ], [ 20.654297, 41.079351 ], [ 20.698242, 40.913513 ], [ 20.874023, 40.946714 ], [ 20.961914, 40.880295 ], [ 20.917969, 40.747257 ], [ 21.005859, 40.713956 ], [ 21.005859, 40.547200 ], [ 20.742188, 40.446947 ], [ 20.654297, 40.145289 ], [ 20.302734, 40.010787 ], [ 20.390625, 39.842286 ], [ 20.258789, 39.808536 ], [ 20.258789, 39.707187 ], [ 20.170898, 39.639538 ], [ 20.083008, 39.707187 ], [ 19.951172, 39.707187 ], [ 19.995117, 39.876019 ], [ 19.863281, 39.909736 ], [ 19.863281, 40.078071 ], [ 19.731445, 40.078071 ], [ 19.687500, 40.145289 ], [ 19.467773, 40.212441 ], [ 19.335938, 40.313043 ], [ 19.291992, 40.446947 ], [ 19.379883, 40.413496 ], [ 19.379883, 40.346544 ], [ 19.467773, 40.380028 ], [ 19.467773, 40.480381 ], [ 19.379883, 40.513799 ], [ 19.423828, 40.580585 ], [ 19.335938, 40.580585 ], [ 19.291992, 40.647304 ], [ 19.423828, 40.913513 ], [ 19.511719, 40.946714 ], [ 19.467773, 41.013066 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.682435 ], [ 19.687500, 42.553080 ], [ 19.863281, 42.488302 ], [ 20.039062, 42.585444 ], [ 20.039062, 42.553080 ], [ 20.126953, 42.520700 ], [ 20.214844, 42.326062 ], [ 20.478516, 42.261049 ], [ 20.566406, 41.902277 ], [ 20.478516, 41.771312 ], [ 20.522461, 41.607228 ], [ 20.434570, 41.574361 ], [ 20.522461, 41.442726 ], [ 20.522461, 41.376809 ], [ 20.434570, 41.343825 ], [ 20.478516, 41.211722 ], [ 20.654297, 41.079351 ], [ 20.698242, 40.913513 ], [ 20.874023, 40.946714 ], [ 20.961914, 40.880295 ], [ 20.917969, 40.747257 ], [ 21.005859, 40.713956 ], [ 21.005859, 40.547200 ], [ 20.742188, 40.446947 ], [ 20.654297, 40.145289 ], [ 20.302734, 40.010787 ], [ 20.390625, 39.842286 ], [ 20.258789, 39.808536 ], [ 20.258789, 39.707187 ], [ 20.170898, 39.639538 ], [ 20.083008, 39.707187 ], [ 19.951172, 39.707187 ], [ 19.995117, 39.876019 ], [ 19.863281, 39.909736 ], [ 19.863281, 40.078071 ], [ 19.731445, 40.078071 ], [ 19.687500, 40.145289 ], [ 19.467773, 40.212441 ], [ 19.335938, 40.313043 ], [ 19.291992, 40.446947 ], [ 19.379883, 40.413496 ], [ 19.379883, 40.346544 ], [ 19.467773, 40.380028 ], [ 19.467773, 40.480381 ], [ 19.379883, 40.513799 ], [ 19.423828, 40.580585 ], [ 19.335938, 40.580585 ], [ 19.291992, 40.647304 ], [ 19.423828, 40.913513 ], [ 19.511719, 40.946714 ], [ 19.467773, 41.013066 ], [ 19.423828, 41.178654 ], [ 19.511719, 41.277806 ], [ 19.467773, 41.343825 ], [ 19.379883, 41.343825 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.541478 ], [ 19.423828, 41.607228 ], [ 19.555664, 41.607228 ], [ 19.599609, 41.804078 ], [ 19.335938, 41.869561 ], [ 19.335938, 42.130821 ], [ 19.248047, 42.195969 ], [ 19.555664, 42.520700 ], [ 19.555664, 42.585444 ], [ 19.687500, 42.682435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 41.934977 ], [ 20.742188, 42.098222 ], [ 21.137695, 42.195969 ], [ 21.269531, 42.098222 ], [ 21.313477, 42.228517 ], [ 21.533203, 42.261049 ], [ 22.236328, 42.391009 ], [ 22.324219, 42.326062 ], [ 22.500000, 42.130821 ], [ 22.851562, 42.000325 ], [ 22.851562, 41.869561 ], [ 22.983398, 41.771312 ], [ 22.895508, 41.640078 ], [ 22.939453, 41.376809 ], [ 22.719727, 41.343825 ], [ 22.675781, 41.145570 ], [ 22.631836, 41.211722 ], [ 22.587891, 41.145570 ], [ 21.928711, 41.145570 ], [ 21.840820, 41.013066 ], [ 21.752930, 40.946714 ], [ 21.621094, 40.946714 ], [ 21.577148, 40.880295 ], [ 20.961914, 40.880295 ], [ 20.874023, 40.946714 ], [ 20.698242, 40.913513 ], [ 20.654297, 41.079351 ], [ 20.478516, 41.211722 ], [ 20.434570, 41.343825 ], [ 20.522461, 41.376809 ], [ 20.522461, 41.442726 ], [ 20.434570, 41.574361 ], [ 20.522461, 41.607228 ], [ 20.478516, 41.771312 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 41.934977 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.236328, 42.391009 ], [ 22.324219, 42.326062 ], [ 22.500000, 42.130821 ], [ 22.851562, 42.000325 ], [ 22.851562, 41.869561 ], [ 22.983398, 41.771312 ], [ 22.895508, 41.640078 ], [ 22.939453, 41.376809 ], [ 22.719727, 41.343825 ], [ 22.675781, 41.145570 ], [ 22.631836, 41.211722 ], [ 22.587891, 41.145570 ], [ 21.928711, 41.145570 ], [ 21.840820, 41.013066 ], [ 21.752930, 40.946714 ], [ 21.621094, 40.946714 ], [ 21.577148, 40.880295 ], [ 20.961914, 40.880295 ], [ 20.874023, 40.946714 ], [ 20.698242, 40.913513 ], [ 20.654297, 41.079351 ], [ 20.478516, 41.211722 ], [ 20.434570, 41.343825 ], [ 20.522461, 41.376809 ], [ 20.522461, 41.442726 ], [ 20.434570, 41.574361 ], [ 20.522461, 41.607228 ], [ 20.478516, 41.771312 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 41.934977 ], [ 20.742188, 42.098222 ], [ 21.137695, 42.195969 ], [ 21.269531, 42.098222 ], [ 21.313477, 42.228517 ], [ 21.533203, 42.261049 ], [ 22.236328, 42.391009 ] ] ] } } ] } ] } ] } diff --git a/tests/curve/out/-z2.json b/tests/curve/out/-z2.json index 290106e..dda8bec 100644 --- a/tests/curve/out/-z2.json +++ b/tests/curve/out/-z2.json @@ -12,119 +12,119 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.009169 ], [ -106.083984, 70.020587 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.931641, -73.995328 ], [ 144.931641, -76.999935 ], [ 92.988281, -78.988187 ], [ -33.046875, -76.999935 ], [ -75.058594, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.070312, 71.016960 ], [ -99.052734, 83.004844 ], [ -82.001953, 82.009169 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.052734, 83.004844 ], [ -82.001953, 82.009169 ], [ -106.083984, 70.020587 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.931641, -73.995328 ], [ 144.931641, -76.999935 ], [ 92.988281, -78.988187 ], [ -33.046875, -76.999935 ], [ -75.058594, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.070312, 71.016960 ], [ -99.052734, 83.004844 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.012423 ], [ -88.066406, 80.012423 ], [ -119.003906, 71.016960 ], [ -112.060547, -74.982183 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.019543 ], [ -101.074219, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.012423 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.004844 ], [ 135.000000, 80.012423 ], [ -88.066406, 80.012423 ], [ -119.003906, 71.016960 ], [ -112.060547, -74.982183 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.019543 ], [ -101.074219, 83.004844 ], [ 108.984375, 83.004844 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.724609, 0.000000 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 0.000000, -73.226700 ], [ 3.515625, -73.264704 ], [ 3.515625, -77.608282 ], [ 0.000000, -77.551572 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -109.731445, 0.000000 ], [ -110.786133, 3.513421 ], [ -93.779297, 3.513421 ], [ -92.724609, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.779297, 3.513421 ], [ -92.724609, 0.000000 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 0.000000, -73.226700 ], [ 3.515625, -73.264704 ], [ 3.515625, -77.608282 ], [ 0.000000, -77.551572 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -109.731445, 0.000000 ], [ -110.786133, 3.513421 ], [ -93.779297, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -115.751953, 0.000000 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 0.000000, -78.134493 ], [ 3.515625, -78.179588 ], [ 3.515625, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 3.513421 ], [ -115.883789, 3.513421 ], [ -115.751953, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -115.883789, 3.513421 ], [ -115.751953, 0.000000 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 0.000000, -78.134493 ], [ 3.515625, -78.179588 ], [ 3.515625, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 3.513421 ], [ -115.883789, 3.513421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -92.724609, 0.000000 ], [ -91.625977, -3.513421 ], [ -108.632812, -3.513421 ], [ -109.731445, 0.000000 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -92.724609, 0.000000 ], [ -91.625977, -3.513421 ], [ -108.632812, -3.513421 ], [ -109.731445, 0.000000 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -115.751953, 0.000000 ], [ -115.620117, -3.513421 ], [ -139.042969, -3.513421 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 3.515625, 83.004844 ], [ 3.515625, 80.004799 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 83.004844 ], [ 3.515625, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -115.751953, 0.000000 ], [ -115.620117, -3.513421 ], [ -139.042969, -3.513421 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 0.000000, 83.004844 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -73.226700 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ 0.000000, -77.551572 ], [ -3.515625, -77.494607 ], [ -3.515625, -73.201317 ], [ 0.000000, -73.226700 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, -73.201317 ], [ 0.000000, -73.226700 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ 0.000000, -77.551572 ], [ -3.515625, -77.494607 ], [ -3.515625, -73.201317 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -78.134493 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -3.515625, -81.996942 ], [ -3.515625, -78.098296 ], [ 0.000000, -78.134493 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, -78.098296 ], [ 0.000000, -78.134493 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -3.515625, -81.996942 ], [ -3.515625, -78.098296 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -3.515625, 80.004799 ], [ -3.515625, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ], [ -3.515625, 80.004799 ], [ -3.515625, 83.004844 ], [ 108.984375, 83.004844 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.873535, -66.513260 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ -90.000000, -77.024626 ], [ -88.242188, -77.044346 ], [ -88.242188, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, -65.802776 ], [ -112.917480, -65.802776 ], [ -112.873535, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.917480, -65.802776 ], [ -112.873535, -66.513260 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ -90.000000, -77.024626 ], [ -88.242188, -77.044346 ], [ -88.242188, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, -65.802776 ], [ -112.917480, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.702637, 0.000000 ], [ -90.000000, -8.733077 ], [ -88.242188, -14.370834 ], [ -88.242188, -51.371780 ], [ -90.000000, -48.936935 ], [ -97.009277, -37.996163 ], [ -109.709473, 0.000000 ], [ -110.258789, 1.757537 ], [ -93.229980, 1.757537 ], [ -92.702637, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.229980, 1.757537 ], [ -92.702637, 0.000000 ], [ -90.000000, -8.733077 ], [ -88.242188, -14.370834 ], [ -88.242188, -51.371780 ], [ -90.000000, -48.936935 ], [ -97.009277, -37.996163 ], [ -109.709473, 0.000000 ], [ -110.258789, 1.757537 ], [ -93.229980, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -115.751953, 0.000000 ], [ -112.873535, -66.513260 ], [ -112.807617, -67.204032 ], [ -139.020996, -67.204032 ], [ -139.020996, 1.757537 ], [ -115.817871, 1.757537 ], [ -115.751953, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -115.817871, 1.757537 ], [ -115.751953, 0.000000 ], [ -112.873535, -66.513260 ], [ -112.807617, -67.204032 ], [ -139.020996, -67.204032 ], [ -139.020996, 1.757537 ], [ -115.817871, 1.757537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -105.600586, 66.513260 ], [ -103.007812, 32.008076 ], [ -92.702637, 0.000000 ], [ -92.175293, -1.757537 ], [ -109.182129, -1.757537 ], [ -109.731445, 0.000000 ], [ -118.015137, 26.017298 ], [ -117.180176, 66.513260 ], [ -117.158203, 67.204032 ], [ -105.666504, 67.204032 ], [ -105.600586, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -105.666504, 67.204032 ], [ -105.600586, 66.513260 ], [ -103.007812, 32.008076 ], [ -92.702637, 0.000000 ], [ -92.175293, -1.757537 ], [ -109.182129, -1.757537 ], [ -109.731445, 0.000000 ], [ -118.015137, 26.017298 ], [ -117.180176, 66.513260 ], [ -117.158203, 67.204032 ], [ -105.666504, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.608398, 66.513260 ], [ -115.751953, 0.000000 ], [ -115.686035, -1.757537 ], [ -139.020996, -1.757537 ], [ -139.020996, 67.204032 ], [ -118.674316, 67.204032 ], [ -118.608398, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.674316, 67.204032 ], [ -118.608398, 66.513260 ], [ -115.751953, 0.000000 ], [ -115.686035, -1.757537 ], [ -139.020996, -1.757537 ], [ -139.020996, 67.204032 ], [ -118.674316, 67.204032 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 82.489081 ], [ -88.242188, 82.384973 ], [ -88.242188, 79.839471 ], [ -90.000000, 79.134119 ], [ -106.018066, 70.005567 ], [ -105.600586, 66.513260 ], [ -105.512695, 65.802776 ], [ -117.202148, 65.802776 ], [ -117.180176, 66.513260 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -90.000000, 82.489081 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.002167 ], [ -90.000000, 82.489081 ], [ -88.242188, 82.384973 ], [ -88.242188, 79.839471 ], [ -90.000000, 79.134119 ], [ -106.018066, 70.005567 ], [ -105.600586, 66.513260 ], [ -105.512695, 65.802776 ], [ -117.202148, 65.802776 ], [ -117.180176, 66.513260 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 79.951265 ], [ -90.000000, 79.576460 ], [ -119.003906, 71.002660 ], [ -118.608398, 66.513260 ], [ -118.564453, 65.802776 ], [ -139.020996, 65.802776 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ -88.242188, 83.002167 ], [ -88.242188, 79.951265 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 83.002167 ], [ -88.242188, 79.951265 ], [ -90.000000, 79.576460 ], [ -119.003906, 71.002660 ], [ -118.608398, 66.513260 ], [ -118.564453, 65.802776 ], [ -139.020996, 65.802776 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ -88.242188, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.382812, -66.513260 ], [ -28.015137, -72.996909 ], [ 0.000000, -73.233040 ], [ 1.757812, -73.245712 ], [ 1.757812, -77.575232 ], [ 0.000000, -77.546835 ], [ -33.002930, -76.999935 ], [ -73.498535, -66.513260 ], [ -75.014648, -65.991212 ], [ -75.234375, -65.802776 ], [ -54.645996, -65.802776 ], [ -52.382812, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.645996, -65.802776 ], [ -52.382812, -66.513260 ], [ -28.015137, -72.996909 ], [ 0.000000, -73.233040 ], [ 1.757812, -73.245712 ], [ 1.757812, -77.575232 ], [ 0.000000, -77.546835 ], [ -33.002930, -76.999935 ], [ -73.498535, -66.513260 ], [ -75.014648, -65.991212 ], [ -75.234375, -65.802776 ], [ -54.645996, -65.802776 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, -77.024626 ], [ 0.000000, -78.134493 ], [ 1.757812, -78.157062 ], [ 1.757812, -81.996942 ], [ -91.757812, -81.996942 ], [ -91.757812, -76.999935 ], [ -90.000000, -77.024626 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.757812, -76.999935 ], [ -90.000000, -77.024626 ], [ 0.000000, -78.134493 ], [ 1.757812, -78.157062 ], [ 1.757812, -81.996942 ], [ -91.757812, -81.996942 ], [ -91.757812, -76.999935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, -8.733077 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -52.382812, -66.513260 ], [ -50.119629, -67.204032 ], [ -71.433105, -67.204032 ], [ -73.498535, -66.513260 ], [ -75.014648, -65.991212 ], [ -90.000000, -48.936935 ], [ -91.757812, -46.377254 ], [ -91.757812, -3.030812 ], [ -90.000000, -8.733077 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.757812, -3.030812 ], [ -90.000000, -8.733077 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -52.382812, -66.513260 ], [ -50.119629, -67.204032 ], [ -71.433105, -67.204032 ], [ -73.498535, -66.513260 ], [ -75.014648, -65.991212 ], [ -90.000000, -48.936935 ], [ -91.757812, -46.377254 ], [ -91.757812, -3.030812 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 82.489081 ], [ -82.001953, 82.000000 ], [ -90.000000, 79.134119 ], [ -91.757812, 78.376004 ], [ -91.757812, 82.591775 ], [ -90.000000, 82.489081 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.757812, 82.591775 ], [ -90.000000, 82.489081 ], [ -82.001953, 82.000000 ], [ -90.000000, 79.134119 ], [ -91.757812, 78.376004 ], [ -91.757812, 82.591775 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 80.000984 ], [ -88.000488, 80.000984 ], [ -90.000000, 79.576460 ], [ -91.757812, 79.191956 ], [ -91.757812, 83.002167 ], [ 1.757812, 83.002167 ], [ 1.757812, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 83.002167 ], [ 1.757812, 80.000984 ], [ -88.000488, 80.000984 ], [ -90.000000, 79.576460 ], [ -91.757812, 79.191956 ], [ -91.757812, 83.002167 ], [ 0.000000, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -73.233040 ], [ 90.000000, -73.995328 ], [ 91.757812, -73.995328 ], [ 91.757812, -78.975588 ], [ 90.000000, -78.950349 ], [ 0.000000, -77.551572 ], [ -1.757812, -77.523122 ], [ -1.757812, -73.220358 ], [ 0.000000, -73.233040 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, -73.220358 ], [ 0.000000, -73.233040 ], [ 90.000000, -73.995328 ], [ 91.757812, -73.995328 ], [ 91.757812, -78.975588 ], [ 90.000000, -78.950349 ], [ 0.000000, -77.551572 ], [ -1.757812, -77.523122 ], [ -1.757812, -73.220358 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -78.139010 ], [ 90.000000, -79.158943 ], [ 91.757812, -79.179588 ], [ 91.757812, -81.996942 ], [ -1.757812, -81.996942 ], [ -1.757812, -78.116408 ], [ 0.000000, -78.139010 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, -78.116408 ], [ 0.000000, -78.139010 ], [ 90.000000, -79.158943 ], [ 91.757812, -79.179588 ], [ 91.757812, -81.996942 ], [ -1.757812, -81.996942 ], [ -1.757812, -78.116408 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 80.000984 ], [ -1.757812, 80.000984 ], [ -1.757812, 83.002167 ], [ 91.757812, 83.002167 ], [ 91.757812, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 83.002167 ], [ 91.757812, 80.000984 ], [ -1.757812, 80.000984 ], [ -1.757812, 83.002167 ], [ 0.000000, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ 90.000000, -78.950349 ], [ 88.242188, -78.925053 ], [ 88.242188, -73.977144 ], [ 90.000000, -73.995328 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.242188, -73.977144 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ 90.000000, -78.950349 ], [ 88.242188, -78.925053 ], [ 88.242188, -73.977144 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, -79.158943 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ 88.242188, -81.996942 ], [ 88.242188, -79.142400 ], [ 90.000000, -79.158943 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.242188, -79.142400 ], [ 90.000000, -79.158943 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ 88.242188, -81.996942 ], [ 88.242188, -79.142400 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ 88.242188, 80.000984 ], [ 88.242188, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ 88.242188, 80.000984 ], [ 88.242188, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } ] } diff --git a/tests/curve/out/-z2_--no-clipping.json b/tests/curve/out/-z2_--no-clipping.json index 51d7bca..e0b2da6 100644 --- a/tests/curve/out/-z2_--no-clipping.json +++ b/tests/curve/out/-z2_--no-clipping.json @@ -12,119 +12,119 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.009169 ], [ -106.083984, 70.020587 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.931641, -73.995328 ], [ 144.931641, -76.999935 ], [ 92.988281, -78.988187 ], [ -33.046875, -76.999935 ], [ -75.058594, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.070312, 71.016960 ], [ -99.052734, 83.004844 ], [ -82.001953, 82.009169 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.052734, 83.004844 ], [ -82.001953, 82.009169 ], [ -106.083984, 70.020587 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.931641, -73.995328 ], [ 144.931641, -76.999935 ], [ 92.988281, -78.988187 ], [ -33.046875, -76.999935 ], [ -75.058594, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.070312, 71.016960 ], [ -99.052734, 83.004844 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.012423 ], [ -88.066406, 80.012423 ], [ -119.003906, 71.016960 ], [ -112.060547, -74.982183 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.019543 ], [ -101.074219, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.012423 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.004844 ], [ 135.000000, 80.012423 ], [ -88.066406, 80.012423 ], [ -119.003906, 71.016960 ], [ -112.060547, -74.982183 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.019543 ], [ -101.074219, 83.004844 ], [ 108.984375, 83.004844 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } ] } diff --git a/tests/curve/out/-z2_--no-duplication.json b/tests/curve/out/-z2_--no-duplication.json index d13948e..c725ef6 100644 --- a/tests/curve/out/-z2_--no-duplication.json +++ b/tests/curve/out/-z2_--no-duplication.json @@ -12,25 +12,25 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.009169 ], [ -106.083984, 70.020587 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.931641, -73.995328 ], [ 144.931641, -76.999935 ], [ 92.988281, -78.988187 ], [ -33.046875, -76.999935 ], [ -75.058594, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.070312, 71.016960 ], [ -99.052734, 83.004844 ], [ -82.001953, 82.009169 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.052734, 83.004844 ], [ -82.001953, 82.009169 ], [ -106.083984, 70.020587 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.931641, -73.995328 ], [ 144.931641, -76.999935 ], [ 92.988281, -78.988187 ], [ -33.046875, -76.999935 ], [ -75.058594, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.070312, 71.016960 ], [ -99.052734, 83.004844 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.012423 ], [ -88.066406, 80.012423 ], [ -119.003906, 71.016960 ], [ -112.060547, -74.982183 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.019543 ], [ -101.074219, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.012423 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.004844 ], [ 135.000000, 80.012423 ], [ -88.066406, 80.012423 ], [ -119.003906, 71.016960 ], [ -112.060547, -74.982183 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.019543 ], [ -101.074219, 83.004844 ], [ 108.984375, 83.004844 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.004844 ], [ -82.001953, 82.003058 ], [ -106.040039, 70.005567 ], [ -103.007812, 32.026706 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.037109, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.975586, -73.995328 ], [ 144.975586, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.982270 ], [ -97.031250, -37.996163 ], [ -118.037109, 26.037042 ], [ -117.026367, 71.002660 ], [ -99.008789, 83.004844 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.004844 ], [ 135.000000, 80.004799 ], [ -88.022461, 80.004799 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.993566 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.960938, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.042969, -75.994839 ], [ -139.042969, 74.007440 ], [ -101.030273, 83.004844 ], [ 108.984375, 83.004844 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.008789, 83.002167 ], [ -82.001953, 82.000000 ], [ -106.018066, 70.005567 ], [ -103.007812, 32.008076 ], [ -82.001953, -32.990236 ], [ -63.017578, -62.995158 ], [ -28.015137, -72.996909 ], [ 90.000000, -73.995328 ], [ 144.997559, -73.995328 ], [ 144.997559, -76.999935 ], [ 92.988281, -78.996578 ], [ -33.002930, -76.999935 ], [ -75.014648, -65.991212 ], [ -97.009277, -37.996163 ], [ -118.015137, 26.017298 ], [ -117.004395, 71.002660 ], [ -99.008789, 83.002167 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.984375, 83.002167 ], [ 135.000000, 80.000984 ], [ -88.000488, 80.000984 ], [ -119.003906, 71.002660 ], [ -112.016602, -74.999254 ], [ -92.021484, -76.999935 ], [ 169.980469, -79.997168 ], [ 159.982910, -81.996942 ], [ -111.005859, -81.996942 ], [ -139.020996, -75.994839 ], [ -139.020996, 74.001385 ], [ -101.008301, 83.002167 ], [ 108.984375, 83.002167 ] ] ] } } ] } ] } ] } diff --git a/tests/dateline/out/-z5.json b/tests/dateline/out/-z5.json index d453345..2dfe2f4 100644 --- a/tests/dateline/out/-z5.json +++ b/tests/dateline/out/-z5.json @@ -12,7 +12,7 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.539062, 44.339565 ], [ -164.882812, 43.389082 ], [ -153.281250, 46.619261 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.183902 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.510643 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.689872 ], [ -185.976562, 58.859224 ], [ -187.031250, 56.992883 ], [ -187.031250, 65.730626 ], [ -182.460938, 67.339861 ], [ -180.000000, 67.542167 ], [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ], [ -144.492188, 66.089364 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -146.250000, 38.616870 ], [ -169.453125, 34.957995 ], [ -180.000000, 36.527295 ], [ -184.218750, 37.160317 ], [ -187.031250, 38.891033 ], [ -187.031250, 50.457504 ], [ -185.976562, 47.279229 ], [ -177.539062, 44.339565 ] ] ], [ [ [ 187.031250, 35.460670 ], [ 175.781250, 37.160317 ], [ 161.718750, 45.336702 ], [ 156.796875, 55.028022 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.811557 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.542167 ], [ 187.031250, 68.007571 ], [ 187.031250, 63.743631 ], [ 182.109375, 62.593341 ], [ 180.000000, 61.689872 ], [ 174.023438, 58.859224 ], [ 171.562500, 54.418930 ], [ 174.023438, 47.279229 ], [ 182.460938, 44.339565 ], [ 187.031250, 44.024422 ], [ 187.031250, 35.460670 ] ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -187.031250, 50.457504 ], [ -185.976562, 47.279229 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.389082 ], [ -153.281250, 46.619261 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.183902 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.510643 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.689872 ], [ -185.976562, 58.859224 ], [ -187.031250, 56.992883 ], [ -187.031250, 65.730626 ], [ -182.460938, 67.339861 ], [ -180.000000, 67.542167 ], [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ], [ -144.492188, 66.089364 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -146.250000, 38.616870 ], [ -169.453125, 34.957995 ], [ -180.000000, 36.527295 ], [ -184.218750, 37.160317 ], [ -187.031250, 38.891033 ], [ -187.031250, 50.457504 ] ] ], [ [ [ 187.031250, 68.007571 ], [ 187.031250, 63.743631 ], [ 182.109375, 62.593341 ], [ 180.000000, 61.689872 ], [ 174.023438, 58.859224 ], [ 171.562500, 54.418930 ], [ 174.023438, 47.279229 ], [ 182.460938, 44.339565 ], [ 187.031250, 44.024422 ], [ 187.031250, 35.460670 ], [ 175.781250, 37.160317 ], [ 161.718750, 45.336702 ], [ 156.796875, 55.028022 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.811557 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.542167 ], [ 187.031250, 68.007571 ] ] ] ] } } , { "type": "Feature", "properties": { "zoom": "z0-2" }, "geometry": { "type": "LineString", "coordinates": [ [ -112.851562, 55.178868 ], [ -117.773438, 44.590467 ], [ -104.414062, 51.179343 ] ] } } ] } @@ -20,7 +20,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.882812, 43.357138 ], [ -153.281250, 46.589069 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.160078 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.491725 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.669024 ], [ -183.515625, 60.020952 ], [ -183.515625, 66.981666 ], [ -182.460938, 67.339861 ], [ -180.000000, 67.525373 ], [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ], [ -144.492188, 66.089364 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -146.250000, 38.582526 ], [ -169.453125, 34.921971 ], [ -183.515625, 37.055177 ], [ -183.515625, 46.437857 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.357138 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -183.515625, 46.437857 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.357138 ], [ -153.281250, 46.589069 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.160078 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.491725 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.669024 ], [ -183.515625, 60.020952 ], [ -183.515625, 66.981666 ], [ -182.460938, 67.339861 ], [ -180.000000, 67.525373 ], [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ], [ -144.492188, 66.089364 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -146.250000, 38.582526 ], [ -169.453125, 34.921971 ], [ -183.515625, 37.055177 ], [ -183.515625, 46.437857 ] ] ] } } , { "type": "Feature", "properties": { "zoom": "z0-2" }, "geometry": { "type": "LineString", "coordinates": [ [ -112.851562, 55.178868 ], [ -117.773438, 44.590467 ], [ -104.414062, 51.179343 ] ] } } ] } @@ -28,13 +28,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 183.515625, 35.995785 ], [ 175.781250, 37.160317 ], [ 161.718750, 45.336702 ], [ 156.796875, 55.002826 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.792848 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.525373 ], [ 183.515625, 67.776025 ], [ 183.515625, 62.935235 ], [ 182.109375, 62.593341 ], [ 180.000000, 61.669024 ], [ 174.023438, 58.836490 ], [ 171.562500, 54.393352 ], [ 174.023438, 47.279229 ], [ 182.460938, 44.339565 ], [ 183.515625, 44.276671 ], [ 183.515625, 35.995785 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 183.515625, 67.776025 ], [ 183.515625, 62.935235 ], [ 182.109375, 62.593341 ], [ 180.000000, 61.669024 ], [ 174.023438, 58.836490 ], [ 171.562500, 54.393352 ], [ 174.023438, 47.279229 ], [ 182.460938, 44.339565 ], [ 183.515625, 44.276671 ], [ 183.515625, 35.995785 ], [ 175.781250, 37.160317 ], [ 161.718750, 45.336702 ], [ 156.796875, 55.002826 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.792848 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.525373 ], [ 183.515625, 67.776025 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.882812, 43.341160 ], [ -153.281250, 46.573967 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.148161 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.482261 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.658595 ], [ -181.757812, 60.844911 ], [ -181.757812, 67.204032 ], [ -150.688477, 67.204032 ], [ -146.821289, 66.513260 ], [ -144.492188, 66.089364 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -146.250000, 38.565348 ], [ -169.453125, 34.903953 ], [ -180.000000, 36.527295 ], [ -181.757812, 36.791691 ], [ -181.757812, 45.828799 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.341160 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -181.757812, 45.828799 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.341160 ], [ -153.281250, 46.573967 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.148161 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.482261 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.658595 ], [ -181.757812, 60.844911 ], [ -181.757812, 67.204032 ], [ -150.688477, 67.204032 ], [ -146.821289, 66.513260 ], [ -144.492188, 66.089364 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -146.250000, 38.565348 ], [ -169.453125, 34.903953 ], [ -180.000000, 36.527295 ], [ -181.757812, 36.791691 ], [ -181.757812, 45.828799 ] ] ] } } , { "type": "Feature", "properties": { "zoom": "z0-2" }, "geometry": { "type": "LineString", "coordinates": [ [ -112.851562, 55.178868 ], [ -117.773438, 44.590467 ], [ -104.414062, 51.179343 ] ] } } ] } @@ -42,43 +42,43 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.093750, 68.138852 ], [ -146.821289, 66.513260 ], [ -144.492188, 66.089364 ], [ -143.679199, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 67.390599 ], [ -180.000000, 67.516972 ], [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ], [ -146.821289, 66.513260 ], [ -144.492188, 66.089364 ], [ -143.679199, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 67.390599 ], [ -180.000000, 67.516972 ], [ -169.101562, 68.269387 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 181.757812, 36.261992 ], [ 175.781250, 37.160317 ], [ 161.718750, 45.336702 ], [ 156.796875, 54.990222 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.783488 ], [ 175.187988, 66.513260 ], [ 177.143555, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 62.441242 ], [ 180.000000, 61.658595 ], [ 174.023438, 58.825118 ], [ 171.562500, 54.380557 ], [ 174.023438, 47.279229 ], [ 181.757812, 44.590467 ], [ 181.757812, 36.261992 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 181.757812, 67.204032 ], [ 181.757812, 62.441242 ], [ 180.000000, 61.658595 ], [ 174.023438, 58.825118 ], [ 171.562500, 54.380557 ], [ 174.023438, 47.279229 ], [ 181.757812, 44.590467 ], [ 181.757812, 36.261992 ], [ 175.781250, 37.160317 ], [ 161.718750, 45.336702 ], [ 156.796875, 54.990222 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.783488 ], [ 175.187988, 66.513260 ], [ 177.143555, 67.204032 ], [ 181.757812, 67.204032 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 181.757812, 65.802776 ], [ 173.232422, 65.802776 ], [ 175.187988, 66.513260 ], [ 177.539062, 67.339861 ], [ 181.757812, 67.642676 ], [ 181.757812, 65.802776 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 181.757812, 67.642676 ], [ 181.757812, 65.802776 ], [ 173.232422, 65.802776 ], [ 175.187988, 66.513260 ], [ 177.539062, 67.339861 ], [ 181.757812, 67.642676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.404541, 40.979898 ], [ -146.250000, 38.556757 ], [ -169.453125, 34.894942 ], [ -180.000000, 36.527295 ], [ -180.878906, 36.659606 ], [ -180.878906, 41.640078 ], [ -142.613525, 41.640078 ], [ -143.404541, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -142.613525, 41.640078 ], [ -143.404541, 40.979898 ], [ -146.250000, 38.556757 ], [ -169.453125, 34.894942 ], [ -180.000000, 36.527295 ], [ -180.878906, 36.659606 ], [ -180.878906, 41.640078 ], [ -142.613525, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.882812, 43.333169 ], [ -153.281250, 46.566414 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.142200 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.477528 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.653379 ], [ -180.878906, 61.249102 ], [ -180.878906, 66.861082 ], [ -148.754883, 66.861082 ], [ -146.821289, 66.513260 ], [ -144.492188, 66.089364 ], [ -135.000000, 62.573106 ], [ -134.648438, 62.431074 ], [ -134.121094, 61.217379 ], [ -134.121094, 48.305121 ], [ -135.000000, 47.650588 ], [ -144.195557, 40.313043 ], [ -180.878906, 40.313043 ], [ -180.878906, 45.521744 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.333169 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.878906, 45.521744 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.333169 ], [ -153.281250, 46.566414 ], [ -144.492188, 51.179343 ], [ -143.789062, 57.142200 ], [ -148.007812, 61.100789 ], [ -158.554688, 63.860036 ], [ -169.453125, 64.477528 ], [ -177.890625, 62.593341 ], [ -180.000000, 61.653379 ], [ -180.878906, 61.249102 ], [ -180.878906, 66.861082 ], [ -148.754883, 66.861082 ], [ -146.821289, 66.513260 ], [ -144.492188, 66.089364 ], [ -135.000000, 62.573106 ], [ -134.648438, 62.431074 ], [ -134.121094, 61.217379 ], [ -134.121094, 48.305121 ], [ -135.000000, 47.650588 ], [ -144.195557, 40.313043 ], [ -180.878906, 40.313043 ], [ -180.878906, 45.521744 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.093750, 68.138852 ], [ -146.821289, 66.513260 ], [ -144.887695, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 67.453869 ], [ -180.000000, 67.516972 ], [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.101562, 68.269387 ], [ -156.093750, 68.138852 ], [ -146.821289, 66.513260 ], [ -144.887695, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 67.453869 ], [ -180.000000, 67.516972 ], [ -169.101562, 68.269387 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 62.573106 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -135.000000, 47.650588 ], [ -135.878906, 46.987747 ], [ -135.878906, 62.915233 ], [ -135.000000, 62.573106 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.878906, 62.915233 ], [ -135.000000, 62.573106 ], [ -134.648438, 62.431074 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -135.000000, 47.650588 ], [ -135.878906, 46.987747 ], [ -135.878906, 62.915233 ] ] ] } } ] } ] } , @@ -96,31 +96,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.878906, 36.385913 ], [ 180.000000, 36.527295 ], [ 175.781250, 37.160317 ], [ 169.420166, 40.979898 ], [ 168.288574, 41.640078 ], [ 180.878906, 41.640078 ], [ 180.878906, 36.385913 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.878906, 41.640078 ], [ 180.878906, 36.385913 ], [ 180.000000, 36.527295 ], [ 175.781250, 37.160317 ], [ 169.420166, 40.979898 ], [ 168.288574, 41.640078 ], [ 180.878906, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.878906, 40.313043 ], [ 170.562744, 40.313043 ], [ 169.420166, 40.979898 ], [ 161.718750, 45.336702 ], [ 156.796875, 54.983918 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.778807 ], [ 175.187988, 66.513260 ], [ 176.165771, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 62.047288 ], [ 180.000000, 61.653379 ], [ 174.023438, 58.819430 ], [ 171.562500, 54.374158 ], [ 174.023438, 47.279229 ], [ 180.878906, 44.902578 ], [ 180.878906, 40.313043 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.878906, 66.861082 ], [ 180.878906, 62.047288 ], [ 180.000000, 61.653379 ], [ 174.023438, 58.819430 ], [ 171.562500, 54.374158 ], [ 174.023438, 47.279229 ], [ 180.878906, 44.902578 ], [ 180.878906, 40.313043 ], [ 170.562744, 40.313043 ], [ 169.420166, 40.979898 ], [ 161.718750, 45.336702 ], [ 156.796875, 54.983918 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.778807 ], [ 175.187988, 66.513260 ], [ 176.165771, 66.861082 ], [ 180.878906, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.878906, 66.160511 ], [ 174.210205, 66.160511 ], [ 175.187988, 66.513260 ], [ 177.539062, 67.339861 ], [ 180.878906, 67.579908 ], [ 180.878906, 66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.878906, 67.579908 ], [ 180.878906, 66.160511 ], [ 174.210205, 66.160511 ], [ 175.187988, 66.513260 ], [ 177.539062, 67.339861 ], [ 180.878906, 67.579908 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.060547, 36.866438 ], [ -157.500000, 36.800488 ], [ -169.453125, 34.890437 ], [ -180.000000, 36.522881 ], [ -180.439453, 36.589068 ], [ -180.439453, 41.310824 ], [ -157.060547, 41.310824 ], [ -157.060547, 36.866438 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.060547, 41.310824 ], [ -157.060547, 36.866438 ], [ -157.500000, 36.800488 ], [ -169.453125, 34.890437 ], [ -180.000000, 36.522881 ], [ -180.439453, 36.589068 ], [ -180.439453, 41.310824 ], [ -157.060547, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.882812, 43.329174 ], [ -157.500000, 45.406164 ], [ -157.060547, 45.529441 ], [ -157.060547, 40.647304 ], [ -180.439453, 40.647304 ], [ -180.439453, 45.367584 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.329174 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.060547, 45.529441 ], [ -157.060547, 40.647304 ], [ -180.439453, 40.647304 ], [ -180.439453, 45.367584 ], [ -177.539062, 44.339565 ], [ -164.882812, 43.329174 ], [ -157.500000, 45.406164 ], [ -157.060547, 45.529441 ] ] ] } } ] } ] } , @@ -132,43 +132,43 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.500000, 68.153165 ], [ -157.060547, 68.149077 ], [ -157.060547, 66.337505 ], [ -180.439453, 66.337505 ], [ -180.439453, 67.485442 ], [ -180.000000, 67.514872 ], [ -169.101562, 68.269387 ], [ -157.500000, 68.153165 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.101562, 68.269387 ], [ -157.500000, 68.153165 ], [ -157.060547, 68.149077 ], [ -157.060547, 66.337505 ], [ -180.439453, 66.337505 ], [ -180.439453, 67.485442 ], [ -180.000000, 67.514872 ], [ -169.101562, 68.269387 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.410034, 40.979898 ], [ -146.250000, 38.552461 ], [ -157.500000, 36.800488 ], [ -157.939453, 36.730080 ], [ -157.939453, 41.310824 ], [ -143.014526, 41.310824 ], [ -143.410034, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.014526, 41.310824 ], [ -143.410034, 40.979898 ], [ -146.250000, 38.552461 ], [ -157.500000, 36.800488 ], [ -157.939453, 36.730080 ], [ -157.939453, 41.310824 ], [ -143.014526, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.281250, 46.562637 ], [ -144.492188, 51.179343 ], [ -143.959351, 55.776573 ], [ -143.931885, 56.022948 ], [ -134.560547, 56.022948 ], [ -134.560547, 47.978891 ], [ -135.000000, 47.650588 ], [ -143.800049, 40.647304 ], [ -157.939453, 40.647304 ], [ -157.939453, 45.286482 ], [ -157.500000, 45.406164 ], [ -153.281250, 46.562637 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 56.022948 ], [ -134.560547, 47.978891 ], [ -135.000000, 47.650588 ], [ -143.800049, 40.647304 ], [ -157.939453, 40.647304 ], [ -157.939453, 45.286482 ], [ -157.500000, 45.406164 ], [ -153.281250, 46.562637 ], [ -144.492188, 51.179343 ], [ -143.959351, 55.776573 ], [ -143.931885, 56.022948 ], [ -134.560547, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.789062, 57.139220 ], [ -148.007812, 61.100789 ], [ -157.500000, 63.597448 ], [ -157.939453, 63.707156 ], [ -157.939453, 66.687784 ], [ -147.782593, 66.687784 ], [ -146.815796, 66.513260 ], [ -144.492188, 66.089364 ], [ -135.000000, 62.570575 ], [ -134.648438, 62.431074 ], [ -134.560547, 62.232115 ], [ -134.560547, 55.528631 ], [ -143.992310, 55.528631 ], [ -143.959351, 55.776573 ], [ -143.789062, 57.139220 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -147.782593, 66.687784 ], [ -146.815796, 66.513260 ], [ -144.492188, 66.089364 ], [ -135.000000, 62.570575 ], [ -134.648438, 62.431074 ], [ -134.560547, 62.232115 ], [ -134.560547, 55.528631 ], [ -143.992310, 55.528631 ], [ -143.959351, 55.776573 ], [ -143.789062, 57.139220 ], [ -148.007812, 61.100789 ], [ -157.500000, 63.597448 ], [ -157.939453, 63.707156 ], [ -157.939453, 66.687784 ], [ -147.782593, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.500000, 68.153165 ], [ -156.093750, 68.138852 ], [ -146.815796, 66.513260 ], [ -145.848999, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 68.159297 ], [ -157.500000, 68.153165 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.939453, 68.159297 ], [ -157.500000, 68.153165 ], [ -156.093750, 68.138852 ], [ -146.815796, 66.513260 ], [ -145.848999, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 68.159297 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.984253, 55.776573 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -135.000000, 47.650588 ], [ -135.439453, 47.320207 ], [ -135.439453, 56.022948 ], [ -132.072144, 56.022948 ], [ -131.984253, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -132.072144, 56.022948 ], [ -131.984253, 55.776573 ], [ -131.835938, 55.379110 ], [ -133.593750, 48.690960 ], [ -135.000000, 47.650588 ], [ -135.439453, 47.320207 ], [ -135.439453, 56.022948 ], [ -132.072144, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 62.570575 ], [ -134.648438, 62.431074 ], [ -131.984253, 55.776573 ], [ -131.890869, 55.528631 ], [ -135.439453, 55.528631 ], [ -135.439453, 62.744665 ], [ -135.000000, 62.570575 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 62.744665 ], [ -135.000000, 62.570575 ], [ -134.648438, 62.431074 ], [ -131.984253, 55.776573 ], [ -131.890869, 55.528631 ], [ -135.439453, 55.528631 ], [ -135.439453, 62.744665 ] ] ] } } ] } ] } , @@ -186,55 +186,55 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, 52.915527 ], [ 157.500000, 53.722717 ], [ 156.796875, 54.980766 ], [ 157.445068, 55.776573 ], [ 157.648315, 56.022948 ], [ 157.939453, 56.022948 ], [ 157.939453, 52.915527 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, 56.022948 ], [ 157.939453, 52.915527 ], [ 157.500000, 53.722717 ], [ 156.796875, 54.980766 ], [ 157.445068, 55.776573 ], [ 157.648315, 56.022948 ], [ 157.939453, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, 55.528631 ], [ 157.241821, 55.528631 ], [ 157.445068, 55.776573 ], [ 157.500000, 55.841398 ], [ 157.939453, 56.371335 ], [ 157.939453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, 56.371335 ], [ 157.939453, 55.528631 ], [ 157.241821, 55.528631 ], [ 157.445068, 55.776573 ], [ 157.500000, 55.841398 ], [ 157.939453, 56.371335 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.439453, 36.456636 ], [ 180.000000, 36.522881 ], [ 175.781250, 37.160317 ], [ 169.425659, 40.979898 ], [ 168.859863, 41.310824 ], [ 180.439453, 41.310824 ], [ 180.439453, 36.456636 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.439453, 41.310824 ], [ 180.439453, 36.456636 ], [ 180.000000, 36.522881 ], [ 175.781250, 37.160317 ], [ 169.425659, 40.979898 ], [ 168.859863, 41.310824 ], [ 180.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.562500, 54.370959 ], [ 174.023438, 47.279229 ], [ 180.439453, 45.058001 ], [ 180.439453, 40.647304 ], [ 169.991455, 40.647304 ], [ 169.425659, 40.979898 ], [ 161.718750, 45.336702 ], [ 157.500000, 53.722717 ], [ 157.060547, 54.514704 ], [ 157.060547, 55.307264 ], [ 157.648315, 56.022948 ], [ 172.441406, 56.022948 ], [ 172.309570, 55.776573 ], [ 171.562500, 54.370959 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.441406, 56.022948 ], [ 172.309570, 55.776573 ], [ 171.562500, 54.370959 ], [ 174.023438, 47.279229 ], [ 180.439453, 45.058001 ], [ 180.439453, 40.647304 ], [ 169.991455, 40.647304 ], [ 169.425659, 40.979898 ], [ 161.718750, 45.336702 ], [ 157.500000, 53.722717 ], [ 157.060547, 54.514704 ], [ 157.060547, 55.307264 ], [ 157.648315, 56.022948 ], [ 172.441406, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.023438, 58.816586 ], [ 172.309570, 55.776573 ], [ 172.172241, 55.528631 ], [ 157.241821, 55.528631 ], [ 157.500000, 55.841398 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.776466 ], [ 175.187988, 66.513260 ], [ 175.676880, 66.687784 ], [ 180.439453, 66.687784 ], [ 180.439453, 61.850966 ], [ 180.000000, 61.650771 ], [ 174.023438, 58.816586 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.439453, 66.687784 ], [ 180.439453, 61.850966 ], [ 180.000000, 61.650771 ], [ 174.023438, 58.816586 ], [ 172.309570, 55.776573 ], [ 172.172241, 55.528631 ], [ 157.241821, 55.528631 ], [ 157.500000, 55.841398 ], [ 163.476562, 62.431074 ], [ 170.507812, 64.776466 ], [ 175.187988, 66.513260 ], [ 175.676880, 66.687784 ], [ 180.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.439453, 66.337505 ], [ 174.699097, 66.337505 ], [ 175.187988, 66.513260 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.514872 ], [ 180.439453, 67.546363 ], [ 180.439453, 66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.439453, 67.546363 ], [ 180.439453, 66.337505 ], [ 174.699097, 66.337505 ], [ 175.187988, 66.513260 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.514872 ], [ 180.439453, 67.546363 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.530273, 35.038992 ], [ -168.750000, 35.003003 ], [ -169.453125, 34.888184 ], [ -180.000000, 36.522881 ], [ -180.219727, 36.555982 ], [ -180.219727, 41.145570 ], [ -168.530273, 41.145570 ], [ -168.530273, 35.038992 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.530273, 41.145570 ], [ -168.530273, 35.038992 ], [ -168.750000, 35.003003 ], [ -169.453125, 34.888184 ], [ -180.000000, 36.522881 ], [ -180.219727, 36.555982 ], [ -180.219727, 41.145570 ], [ -168.530273, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.219727, 40.813809 ], [ -180.219727, 45.290347 ], [ -177.539062, 44.339565 ], [ -168.750000, 43.640051 ], [ -168.530273, 43.622159 ], [ -168.530273, 40.813809 ], [ -180.219727, 40.813809 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.219727, 45.290347 ], [ -177.539062, 44.339565 ], [ -168.750000, 43.640051 ], [ -168.530273, 43.622159 ], [ -168.530273, 40.813809 ], [ -180.219727, 40.813809 ], [ -180.219727, 45.290347 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.219727, 61.710706 ], [ -179.868164, 61.710706 ], [ -180.219727, 61.551493 ], [ -180.219727, 61.710706 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.868164, 61.710706 ], [ -180.219727, 61.551493 ], [ -180.219727, 61.710706 ], [ -179.868164, 61.710706 ] ] ] } } ] } ] } , @@ -246,127 +246,127 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.750000, 68.266336 ], [ -168.530273, 68.264302 ], [ -168.530273, 66.425537 ], [ -180.219727, 66.425537 ], [ -180.219727, 67.500161 ], [ -180.000000, 67.515922 ], [ -169.101562, 68.269387 ], [ -168.750000, 68.266336 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.101562, 68.269387 ], [ -168.750000, 68.266336 ], [ -168.530273, 68.264302 ], [ -168.530273, 66.425537 ], [ -180.219727, 66.425537 ], [ -180.219727, 67.500161 ], [ -180.000000, 67.515922 ], [ -169.101562, 68.269387 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 36.833470 ], [ -157.500000, 36.798289 ], [ -168.750000, 35.003003 ], [ -168.969727, 34.966999 ], [ -168.969727, 41.145570 ], [ -157.280273, 41.145570 ], [ -157.280273, 36.833470 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 41.145570 ], [ -157.280273, 36.833470 ], [ -157.500000, 36.798289 ], [ -168.750000, 35.003003 ], [ -168.969727, 34.966999 ], [ -168.969727, 41.145570 ], [ -157.280273, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -164.882812, 43.327176 ], [ -157.500000, 45.406164 ], [ -157.280273, 45.467836 ], [ -157.280273, 40.813809 ], [ -168.969727, 40.813809 ], [ -168.969727, 43.657937 ], [ -168.750000, 43.640051 ], [ -164.882812, 43.327176 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 45.467836 ], [ -157.280273, 40.813809 ], [ -168.969727, 40.813809 ], [ -168.969727, 43.657937 ], [ -168.750000, 43.640051 ], [ -164.882812, 43.327176 ], [ -157.500000, 45.406164 ], [ -157.280273, 45.467836 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.554688, 63.860036 ], [ -168.750000, 64.434892 ], [ -168.969727, 64.447927 ], [ -168.969727, 66.600676 ], [ -157.280273, 66.600676 ], [ -157.280273, 63.541211 ], [ -157.500000, 63.596226 ], [ -158.554688, 63.860036 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 66.600676 ], [ -157.280273, 63.541211 ], [ -157.500000, 63.596226 ], [ -158.554688, 63.860036 ], [ -168.750000, 64.434892 ], [ -168.969727, 64.447927 ], [ -168.969727, 66.600676 ], [ -157.280273, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.750000, 68.266336 ], [ -157.500000, 68.154187 ], [ -157.280273, 68.152143 ], [ -157.280273, 66.425537 ], [ -168.969727, 66.425537 ], [ -168.969727, 68.268370 ], [ -168.750000, 68.266336 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.969727, 68.268370 ], [ -168.750000, 68.266336 ], [ -157.500000, 68.154187 ], [ -157.280273, 68.152143 ], [ -157.280273, 66.425537 ], [ -168.969727, 66.425537 ], [ -168.969727, 68.268370 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 38.741231 ], [ -146.250000, 38.550313 ], [ -157.500000, 36.798289 ], [ -157.719727, 36.763092 ], [ -157.719727, 41.145570 ], [ -146.030273, 41.145570 ], [ -146.030273, 38.741231 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 41.145570 ], [ -146.030273, 38.741231 ], [ -146.250000, 38.550313 ], [ -157.500000, 36.798289 ], [ -157.719727, 36.763092 ], [ -157.719727, 41.145570 ], [ -146.030273, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.281250, 46.560749 ], [ -148.889465, 48.922499 ], [ -148.614807, 49.066668 ], [ -146.030273, 49.066668 ], [ -146.030273, 40.813809 ], [ -157.719727, 40.813809 ], [ -157.719727, 45.346354 ], [ -157.500000, 45.408092 ], [ -153.281250, 46.560749 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 49.066668 ], [ -146.030273, 40.813809 ], [ -157.719727, 40.813809 ], [ -157.719727, 45.346354 ], [ -157.500000, 45.408092 ], [ -153.281250, 46.560749 ], [ -148.889465, 48.922499 ], [ -148.614807, 49.066668 ], [ -146.030273, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.250000, 50.291094 ], [ -146.030273, 50.403266 ], [ -146.030273, 48.777913 ], [ -149.164124, 48.777913 ], [ -148.889465, 48.922499 ], [ -146.250000, 50.291094 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 50.403266 ], [ -146.030273, 48.777913 ], [ -149.164124, 48.777913 ], [ -148.889465, 48.922499 ], [ -146.250000, 50.291094 ], [ -146.030273, 50.403266 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -148.007812, 61.100789 ], [ -149.869995, 61.606396 ], [ -150.257263, 61.710706 ], [ -146.030273, 61.710706 ], [ -146.030273, 59.300954 ], [ -146.250000, 59.506455 ], [ -148.007812, 61.100789 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 61.710706 ], [ -146.030273, 59.300954 ], [ -146.250000, 59.506455 ], [ -148.007812, 61.100789 ], [ -149.869995, 61.606396 ], [ -150.257263, 61.710706 ], [ -146.030273, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.500000, 63.597448 ], [ -157.719727, 63.652355 ], [ -157.719727, 66.600676 ], [ -147.296448, 66.600676 ], [ -146.813049, 66.513260 ], [ -146.250000, 66.411253 ], [ -146.030273, 66.371654 ], [ -146.030273, 61.501734 ], [ -149.482727, 61.501734 ], [ -149.869995, 61.606396 ], [ -157.500000, 63.597448 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -147.296448, 66.600676 ], [ -146.813049, 66.513260 ], [ -146.250000, 66.411253 ], [ -146.030273, 66.371654 ], [ -146.030273, 61.501734 ], [ -149.482727, 61.501734 ], [ -149.869995, 61.606396 ], [ -157.500000, 63.597448 ], [ -157.719727, 63.652355 ], [ -157.719727, 66.600676 ], [ -147.296448, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.500000, 68.154187 ], [ -156.093750, 68.138852 ], [ -146.813049, 66.513260 ], [ -146.329651, 66.425537 ], [ -157.719727, 66.425537 ], [ -157.719727, 68.156231 ], [ -157.500000, 68.154187 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.719727, 68.156231 ], [ -157.500000, 68.154187 ], [ -156.093750, 68.138852 ], [ -146.813049, 66.513260 ], [ -146.329651, 66.425537 ], [ -157.719727, 66.425537 ], [ -157.719727, 68.156231 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.407288, 40.979898 ], [ -146.250000, 38.550313 ], [ -146.469727, 38.518086 ], [ -146.469727, 41.145570 ], [ -143.209534, 41.145570 ], [ -143.407288, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.209534, 41.145570 ], [ -143.407288, 40.979898 ], [ -146.250000, 38.550313 ], [ -146.469727, 38.518086 ], [ -146.469727, 41.145570 ], [ -143.209534, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 47.816843 ], [ -135.000000, 47.652438 ], [ -143.407288, 40.979898 ], [ -143.605042, 40.813809 ], [ -146.469727, 40.813809 ], [ -146.469727, 49.066668 ], [ -134.780273, 49.066668 ], [ -134.780273, 47.816843 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 49.066668 ], [ -134.780273, 47.816843 ], [ -135.000000, 47.652438 ], [ -143.407288, 40.979898 ], [ -143.605042, 40.813809 ], [ -146.469727, 40.813809 ], [ -146.469727, 49.066668 ], [ -134.780273, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -144.492188, 51.179343 ], [ -143.962097, 55.776573 ], [ -143.945618, 55.899956 ], [ -134.780273, 55.899956 ], [ -134.780273, 48.777913 ], [ -146.469727, 48.777913 ], [ -146.469727, 50.178657 ], [ -146.250000, 50.291094 ], [ -144.492188, 51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 55.899956 ], [ -134.780273, 48.777913 ], [ -146.469727, 48.777913 ], [ -146.469727, 50.178657 ], [ -146.250000, 50.291094 ], [ -144.492188, 51.179343 ], [ -143.962097, 55.776573 ], [ -143.945618, 55.899956 ], [ -134.780273, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.789062, 57.137730 ], [ -146.250000, 59.506455 ], [ -146.469727, 59.709327 ], [ -146.469727, 61.710706 ], [ -134.780273, 61.710706 ], [ -134.780273, 55.652798 ], [ -143.975830, 55.652798 ], [ -143.959351, 55.776573 ], [ -143.789062, 57.137730 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 61.710706 ], [ -134.780273, 55.652798 ], [ -143.975830, 55.652798 ], [ -143.959351, 55.776573 ], [ -143.789062, 57.137730 ], [ -146.250000, 59.506455 ], [ -146.469727, 59.709327 ], [ -146.469727, 61.710706 ], [ -134.780273, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.250000, 66.411253 ], [ -144.492188, 66.089364 ], [ -135.000000, 62.570575 ], [ -134.780273, 62.484415 ], [ -134.780273, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.451887 ], [ -146.250000, 66.411253 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.469727, 66.451887 ], [ -146.250000, 66.411253 ], [ -144.492188, 66.089364 ], [ -135.000000, 62.570575 ], [ -134.780273, 62.484415 ], [ -134.780273, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.451887 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.329651, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 66.451887 ], [ -146.329651, 66.425537 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.469727, 66.451887 ], [ -146.329651, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 66.451887 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.538818, 48.922499 ], [ -133.593750, 48.690960 ], [ -135.000000, 47.650588 ], [ -135.219727, 47.485657 ], [ -135.219727, 49.066668 ], [ -133.503113, 49.066668 ], [ -133.538818, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.503113, 49.066668 ], [ -133.538818, 48.922499 ], [ -133.593750, 48.690960 ], [ -135.000000, 47.650588 ], [ -135.219727, 47.485657 ], [ -135.219727, 49.066668 ], [ -133.503113, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.981506, 55.776573 ], [ -131.835938, 55.379110 ], [ -133.538818, 48.922499 ], [ -133.574524, 48.777913 ], [ -135.219727, 48.777913 ], [ -135.219727, 55.899956 ], [ -132.028198, 55.899956 ], [ -131.981506, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -132.028198, 55.899956 ], [ -131.981506, 55.776573 ], [ -131.835938, 55.379110 ], [ -133.538818, 48.922499 ], [ -133.574524, 48.777913 ], [ -135.219727, 48.777913 ], [ -135.219727, 55.899956 ], [ -132.028198, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.288635, 61.606396 ], [ -131.981506, 55.776573 ], [ -131.937561, 55.652798 ], [ -135.219727, 55.652798 ], [ -135.219727, 61.710706 ], [ -134.335327, 61.710706 ], [ -134.288635, 61.606396 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.335327, 61.710706 ], [ -134.288635, 61.606396 ], [ -131.981506, 55.776573 ], [ -131.937561, 55.652798 ], [ -135.219727, 55.652798 ], [ -135.219727, 61.710706 ], [ -134.335327, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 62.570575 ], [ -134.648438, 62.431074 ], [ -134.288635, 61.606396 ], [ -134.244690, 61.501734 ], [ -135.219727, 61.501734 ], [ -135.219727, 62.657748 ], [ -135.000000, 62.570575 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, 62.657748 ], [ -135.000000, 62.570575 ], [ -134.648438, 62.431074 ], [ -134.288635, 61.606396 ], [ -134.244690, 61.501734 ], [ -135.219727, 61.501734 ], [ -135.219727, 62.657748 ] ] ] } } ] } ] } , @@ -396,73 +396,73 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 53.321030 ], [ 157.500000, 53.722717 ], [ 156.796875, 54.979190 ], [ 157.445068, 55.776573 ], [ 157.546692, 55.899956 ], [ 157.719727, 55.899956 ], [ 157.719727, 53.321030 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 55.899956 ], [ 157.719727, 53.321030 ], [ 157.500000, 53.722717 ], [ 156.796875, 54.979190 ], [ 157.445068, 55.776573 ], [ 157.546692, 55.899956 ], [ 157.719727, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 55.652798 ], [ 157.343445, 55.652798 ], [ 157.445068, 55.776573 ], [ 157.719727, 56.107278 ], [ 157.719727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 56.107278 ], [ 157.719727, 55.652798 ], [ 157.343445, 55.652798 ], [ 157.445068, 55.776573 ], [ 157.719727, 56.107278 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 41.248903 ], [ 161.718750, 45.336702 ], [ 160.002136, 48.922499 ], [ 159.930725, 49.066668 ], [ 168.969727, 49.066668 ], [ 168.969727, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 49.066668 ], [ 168.969727, 41.248903 ], [ 161.718750, 45.336702 ], [ 160.002136, 48.922499 ], [ 159.930725, 49.066668 ], [ 168.969727, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 48.777913 ], [ 160.073547, 48.777913 ], [ 160.002136, 48.922499 ], [ 157.500000, 53.722717 ], [ 157.280273, 54.120602 ], [ 157.280273, 55.575239 ], [ 157.546692, 55.899956 ], [ 168.969727, 55.899956 ], [ 168.969727, 48.777913 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 55.899956 ], [ 168.969727, 48.777913 ], [ 160.073547, 48.777913 ], [ 160.002136, 48.922499 ], [ 157.500000, 53.722717 ], [ 157.280273, 54.120602 ], [ 157.280273, 55.575239 ], [ 157.546692, 55.899956 ], [ 168.969727, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 55.652798 ], [ 157.343445, 55.652798 ], [ 157.500000, 55.842940 ], [ 162.660828, 61.606396 ], [ 162.762451, 61.710706 ], [ 168.969727, 61.710706 ], [ 168.969727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 61.710706 ], [ 168.969727, 55.652798 ], [ 157.343445, 55.652798 ], [ 157.500000, 55.842940 ], [ 162.660828, 61.606396 ], [ 162.762451, 61.710706 ], [ 168.969727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 61.501734 ], [ 162.559204, 61.501734 ], [ 162.660828, 61.606396 ], [ 163.476562, 62.431074 ], [ 168.750000, 64.207572 ], [ 168.969727, 64.279184 ], [ 168.969727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 64.279184 ], [ 168.969727, 61.501734 ], [ 162.559204, 61.501734 ], [ 162.660828, 61.606396 ], [ 163.476562, 62.431074 ], [ 168.750000, 64.207572 ], [ 168.969727, 64.279184 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.219727, 36.489765 ], [ 180.000000, 36.522881 ], [ 175.781250, 37.160317 ], [ 169.425659, 40.979898 ], [ 169.142761, 41.145570 ], [ 180.219727, 41.145570 ], [ 180.219727, 36.489765 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.219727, 41.145570 ], [ 180.219727, 36.489765 ], [ 180.000000, 36.522881 ], [ 175.781250, 37.160317 ], [ 169.425659, 40.979898 ], [ 169.142761, 41.145570 ], [ 180.219727, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.023438, 47.279229 ], [ 180.219727, 45.135555 ], [ 180.219727, 40.813809 ], [ 169.708557, 40.813809 ], [ 169.425659, 40.979898 ], [ 168.750000, 41.376809 ], [ 168.530273, 41.504464 ], [ 168.530273, 49.066668 ], [ 173.435669, 49.066668 ], [ 173.485107, 48.922499 ], [ 174.023438, 47.279229 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.435669, 49.066668 ], [ 173.485107, 48.922499 ], [ 174.023438, 47.279229 ], [ 180.219727, 45.135555 ], [ 180.219727, 40.813809 ], [ 169.708557, 40.813809 ], [ 169.425659, 40.979898 ], [ 168.750000, 41.376809 ], [ 168.530273, 41.504464 ], [ 168.530273, 49.066668 ], [ 173.435669, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.562500, 54.369359 ], [ 173.485107, 48.922499 ], [ 173.531799, 48.777913 ], [ 168.530273, 48.777913 ], [ 168.530273, 55.899956 ], [ 172.375488, 55.899956 ], [ 172.309570, 55.776573 ], [ 171.562500, 54.369359 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.375488, 55.899956 ], [ 172.309570, 55.776573 ], [ 171.562500, 54.369359 ], [ 173.485107, 48.922499 ], [ 173.531799, 48.777913 ], [ 168.530273, 48.777913 ], [ 168.530273, 55.899956 ], [ 172.375488, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.023438, 58.815164 ], [ 172.306824, 55.776573 ], [ 172.240906, 55.652798 ], [ 168.530273, 55.652798 ], [ 168.530273, 61.710706 ], [ 180.131836, 61.710706 ], [ 179.901123, 61.606396 ], [ 174.023438, 58.815164 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.131836, 61.710706 ], [ 179.901123, 61.606396 ], [ 174.023438, 58.815164 ], [ 172.306824, 55.776573 ], [ 172.240906, 55.652798 ], [ 168.530273, 55.652798 ], [ 168.530273, 61.710706 ], [ 180.131836, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 179.901123, 61.606396 ], [ 179.670410, 61.501734 ], [ 168.530273, 61.501734 ], [ 168.530273, 64.135775 ], [ 170.507812, 64.775296 ], [ 175.190735, 66.513260 ], [ 175.435181, 66.600676 ], [ 180.219727, 66.600676 ], [ 180.219727, 61.751031 ], [ 180.000000, 61.650771 ], [ 179.901123, 61.606396 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.219727, 66.600676 ], [ 180.219727, 61.751031 ], [ 180.000000, 61.650771 ], [ 179.901123, 61.606396 ], [ 179.670410, 61.501734 ], [ 168.530273, 61.501734 ], [ 168.530273, 64.135775 ], [ 170.507812, 64.775296 ], [ 175.190735, 66.513260 ], [ 175.435181, 66.600676 ], [ 180.219727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.219727, 66.425537 ], [ 174.946289, 66.425537 ], [ 175.190735, 66.513260 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.515922 ], [ 180.219727, 67.531672 ], [ 180.219727, 66.425537 ] ] ] } } +{ "type": "Feature", "properties": { "boolean": true, "otherboolean": false, "stringify": "[\"yes\",27.00000000,27,1.4e27,{\"foo\":\"bar\"}]", "escape": "foo\u0001bar,ü\"\\/\u0008\u000c\u000a\u000d\u0009→", "prêt": "ready" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.219727, 67.531672 ], [ 180.219727, 66.425537 ], [ 174.946289, 66.425537 ], [ 175.190735, 66.513260 ], [ 177.539062, 67.339861 ], [ 180.000000, 67.515922 ], [ 180.219727, 67.531672 ] ] ] } } ] } ] } ] } diff --git a/tests/join-population/joined-i.mbtiles.json b/tests/join-population/joined-i.mbtiles.json index cdbc173..bf55342 100644 --- a/tests/join-population/joined-i.mbtiles.json +++ b/tests/join-population/joined-i.mbtiles.json @@ -12,2037 +12,2037 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.887860 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.896530 ], [ -122.299805, 37.887860 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.896530 ], [ -122.299805, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.892196 ], [ -122.308044, 37.890028 ], [ -122.310791, 37.898698 ], [ -122.302551, 37.898698 ], [ -122.305298, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.892196 ], [ -122.308044, 37.890028 ], [ -122.310791, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.890028 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.894363 ], [ -122.302551, 37.894363 ], [ -122.302551, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.894363 ], [ -122.302551, 37.890028 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.894363 ], [ -122.302551, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890028 ], [ -122.305298, 37.890028 ], [ -122.305298, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.894363 ], [ -122.299805, 37.890028 ], [ -122.305298, 37.890028 ], [ -122.305298, 37.894363 ], [ -122.299805, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.883525 ], [ -122.308044, 37.883525 ], [ -122.308044, 37.887860 ], [ -122.302551, 37.887860 ], [ -122.302551, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.883525 ], [ -122.308044, 37.883525 ], [ -122.308044, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.900865 ], [ -122.294312, 37.900865 ], [ -122.294312, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.900865 ], [ -122.294312, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.900865 ], [ -122.294312, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.894363 ], [ -122.288818, 37.894363 ], [ -122.288818, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.288818, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.894363 ], [ -122.288818, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.885693 ], [ -122.288818, 37.885693 ], [ -122.288818, 37.890028 ], [ -122.283325, 37.890028 ], [ -122.283325, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.890028 ], [ -122.283325, 37.885693 ], [ -122.288818, 37.885693 ], [ -122.288818, 37.890028 ], [ -122.283325, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.883525 ], [ -122.288818, 37.883525 ], [ -122.288818, 37.887860 ], [ -122.283325, 37.887860 ], [ -122.283325, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887860 ], [ -122.283325, 37.883525 ], [ -122.288818, 37.883525 ], [ -122.288818, 37.887860 ], [ -122.283325, 37.887860 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.891112 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898698 ], [ -122.302551, 37.898698 ], [ -122.305298, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.891112 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891112 ], [ -122.305298, 37.891112 ], [ -122.305298, 37.893279 ], [ -122.302551, 37.893279 ], [ -122.302551, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.893279 ], [ -122.302551, 37.891112 ], [ -122.305298, 37.891112 ], [ -122.305298, 37.893279 ], [ -122.302551, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893279 ], [ -122.303925, 37.893279 ], [ -122.303925, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895447 ], [ -122.301178, 37.893279 ], [ -122.303925, 37.893279 ], [ -122.303925, 37.895447 ], [ -122.301178, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.887860 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.888944 ], [ -122.305298, 37.888944 ], [ -122.305298, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891112 ], [ -122.302551, 37.888944 ], [ -122.305298, 37.888944 ], [ -122.305298, 37.891112 ], [ -122.302551, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.888944 ], [ -122.303925, 37.888944 ], [ -122.303925, 37.891112 ], [ -122.301178, 37.891112 ], [ -122.301178, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.891112 ], [ -122.301178, 37.888944 ], [ -122.303925, 37.888944 ], [ -122.303925, 37.891112 ], [ -122.301178, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.888944 ], [ -122.302551, 37.888944 ], [ -122.302551, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891112 ], [ -122.299805, 37.888944 ], [ -122.302551, 37.888944 ], [ -122.302551, 37.891112 ], [ -122.299805, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.305298, 37.886777 ], [ -122.308044, 37.885693 ], [ -122.308044, 37.887860 ], [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ], [ -122.305298, 37.886777 ], [ -122.308044, 37.885693 ], [ -122.308044, 37.887860 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.883525 ], [ -122.306671, 37.882441 ], [ -122.308044, 37.885693 ], [ -122.305298, 37.885693 ], [ -122.302551, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.885693 ], [ -122.302551, 37.883525 ], [ -122.306671, 37.882441 ], [ -122.308044, 37.885693 ], [ -122.305298, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.883525 ], [ -122.303925, 37.883525 ], [ -122.303925, 37.886777 ], [ -122.301178, 37.886777 ], [ -122.301178, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.301178, 37.883525 ], [ -122.303925, 37.883525 ], [ -122.303925, 37.886777 ], [ -122.301178, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.882441 ], [ -122.302551, 37.882441 ], [ -122.302551, 37.884609 ], [ -122.299805, 37.884609 ], [ -122.299805, 37.882441 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884609 ], [ -122.299805, 37.882441 ], [ -122.302551, 37.882441 ], [ -122.302551, 37.884609 ], [ -122.299805, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.295685, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.897614 ], [ -122.295685, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898698 ], [ -122.298431, 37.896530 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.898698 ], [ -122.298431, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299805, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.297058, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299805, 37.897614 ], [ -122.297058, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.297058, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.895447 ], [ -122.297058, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.897614 ], [ -122.294312, 37.897614 ], [ -122.294312, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.897614 ], [ -122.294312, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.897614 ], [ -122.294312, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.899781 ], [ -122.292938, 37.899781 ], [ -122.292938, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.899781 ], [ -122.292938, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.899781 ], [ -122.292938, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.896530 ], [ -122.292938, 37.896530 ], [ -122.292938, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.896530 ], [ -122.292938, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.896530 ], [ -122.292938, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.896530 ], [ -122.291565, 37.896530 ], [ -122.291565, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896530 ], [ -122.290192, 37.896530 ], [ -122.290192, 37.898698 ], [ -122.287445, 37.898698 ], [ -122.287445, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.896530 ], [ -122.290192, 37.896530 ], [ -122.290192, 37.898698 ], [ -122.287445, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894363 ], [ -122.290192, 37.894363 ], [ -122.290192, 37.896530 ], [ -122.287445, 37.896530 ], [ -122.287445, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896530 ], [ -122.287445, 37.894363 ], [ -122.290192, 37.894363 ], [ -122.290192, 37.896530 ], [ -122.287445, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.299805, 37.885693 ], [ -122.299805, 37.887860 ], [ -122.297058, 37.887860 ], [ -122.297058, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887860 ], [ -122.297058, 37.885693 ], [ -122.299805, 37.885693 ], [ -122.299805, 37.887860 ], [ -122.297058, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.892196 ], [ -122.294312, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.892196 ], [ -122.294312, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892196 ], [ -122.297058, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.892196 ], [ -122.297058, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.886777 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.888944 ], [ -122.295685, 37.888944 ], [ -122.295685, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.888944 ], [ -122.295685, 37.886777 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.888944 ], [ -122.295685, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.883525 ], [ -122.297058, 37.883525 ], [ -122.297058, 37.885693 ], [ -122.294312, 37.885693 ], [ -122.294312, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.885693 ], [ -122.294312, 37.883525 ], [ -122.297058, 37.883525 ], [ -122.297058, 37.885693 ], [ -122.294312, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.886777 ], [ -122.294312, 37.886777 ], [ -122.294312, 37.888944 ], [ -122.291565, 37.888944 ], [ -122.291565, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888944 ], [ -122.291565, 37.886777 ], [ -122.294312, 37.886777 ], [ -122.294312, 37.888944 ], [ -122.291565, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.892196 ], [ -122.291565, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.892196 ], [ -122.291565, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.894363 ], [ -122.288818, 37.894363 ], [ -122.288818, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.288818, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.894363 ], [ -122.288818, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890028 ], [ -122.291565, 37.890028 ], [ -122.291565, 37.892196 ], [ -122.288818, 37.892196 ], [ -122.288818, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.288818, 37.890028 ], [ -122.291565, 37.890028 ], [ -122.291565, 37.892196 ], [ -122.288818, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885693 ], [ -122.291565, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.885693 ], [ -122.291565, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.887860 ], [ -122.290192, 37.887860 ], [ -122.290192, 37.890028 ], [ -122.287445, 37.890028 ], [ -122.287445, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.287445, 37.887860 ], [ -122.290192, 37.887860 ], [ -122.290192, 37.890028 ], [ -122.287445, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.890028 ], [ -122.286072, 37.890028 ], [ -122.286072, 37.892196 ], [ -122.283325, 37.892196 ], [ -122.283325, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.892196 ], [ -122.283325, 37.890028 ], [ -122.286072, 37.890028 ], [ -122.286072, 37.892196 ], [ -122.283325, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886777 ], [ -122.286072, 37.886777 ], [ -122.286072, 37.888944 ], [ -122.283325, 37.888944 ], [ -122.283325, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.888944 ], [ -122.283325, 37.886777 ], [ -122.286072, 37.886777 ], [ -122.286072, 37.888944 ], [ -122.283325, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.887860 ], [ -122.288818, 37.887860 ], [ -122.288818, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.887860 ], [ -122.288818, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.887860 ], [ -122.288818, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885693 ], [ -122.287445, 37.885693 ], [ -122.287445, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.885693 ], [ -122.287445, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885693 ], [ -122.287445, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.884609 ], [ -122.287445, 37.884609 ], [ -122.287445, 37.886777 ], [ -122.284698, 37.886777 ], [ -122.284698, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.886777 ], [ -122.284698, 37.884609 ], [ -122.287445, 37.884609 ], [ -122.287445, 37.886777 ], [ -122.284698, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.884609 ], [ -122.286072, 37.884609 ], [ -122.286072, 37.886777 ], [ -122.283325, 37.886777 ], [ -122.283325, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886777 ], [ -122.283325, 37.884609 ], [ -122.286072, 37.884609 ], [ -122.286072, 37.886777 ], [ -122.283325, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.883525 ], [ -122.286072, 37.883525 ], [ -122.283325, 37.885693 ], [ -122.283325, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.885693 ], [ -122.283325, 37.883525 ], [ -122.286072, 37.883525 ], [ -122.283325, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.885693 ], [ -122.284698, 37.885693 ], [ -122.284698, 37.887860 ], [ -122.281952, 37.887860 ], [ -122.281952, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.887860 ], [ -122.281952, 37.885693 ], [ -122.284698, 37.885693 ], [ -122.284698, 37.887860 ], [ -122.281952, 37.887860 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.301178, 37.897072 ], [ -122.301865, 37.898698 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.300491, 37.897072 ], [ -122.301178, 37.897072 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.309418, 37.898156 ], [ -122.301865, 37.898698 ], [ -122.301178, 37.896530 ], [ -122.303238, 37.895989 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.893821 ], [ -122.304611, 37.890570 ], [ -122.306671, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.301178, 37.896530 ], [ -122.303238, 37.895989 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.893821 ], [ -122.304611, 37.890570 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898156 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.892196 ], [ -122.303238, 37.891654 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894905 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.891654 ], [ -122.303238, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.894363 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.895989 ], [ -122.301865, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.300491, 37.895447 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.897072 ], [ -122.299805, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.299805, 37.895447 ], [ -122.300491, 37.895447 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896530 ], [ -122.301178, 37.894363 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.893821 ], [ -122.302551, 37.893821 ], [ -122.301865, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.893821 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.893821 ], [ -122.302551, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.893821 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.893821 ], [ -122.301178, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.893821 ], [ -122.299805, 37.892737 ], [ -122.301178, 37.892196 ], [ -122.301178, 37.894363 ], [ -122.300491, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.892737 ], [ -122.301178, 37.892196 ], [ -122.301178, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.889486 ], [ -122.307358, 37.889486 ], [ -122.307358, 37.890570 ], [ -122.305984, 37.890570 ], [ -122.305984, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.890570 ], [ -122.305984, 37.889486 ], [ -122.307358, 37.889486 ], [ -122.307358, 37.890570 ], [ -122.305984, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.888944 ], [ -122.306671, 37.888944 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888944 ], [ -122.306671, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.888944 ], [ -122.306671, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.888944 ], [ -122.304611, 37.888944 ], [ -122.304611, 37.890028 ], [ -122.303238, 37.890028 ], [ -122.303238, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890028 ], [ -122.303238, 37.888944 ], [ -122.304611, 37.888944 ], [ -122.304611, 37.890028 ], [ -122.303238, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.889486 ], [ -122.305984, 37.889486 ], [ -122.306671, 37.890028 ], [ -122.303925, 37.890570 ], [ -122.303925, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.890570 ], [ -122.303925, 37.889486 ], [ -122.305984, 37.889486 ], [ -122.306671, 37.890028 ], [ -122.303925, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.887318 ], [ -122.306671, 37.887318 ], [ -122.306671, 37.888402 ], [ -122.305298, 37.888402 ], [ -122.305298, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.888402 ], [ -122.305298, 37.887318 ], [ -122.306671, 37.887318 ], [ -122.306671, 37.888402 ], [ -122.305298, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.888944 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.890028 ], [ -122.304611, 37.890028 ], [ -122.304611, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.890028 ], [ -122.304611, 37.888944 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.890028 ], [ -122.304611, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.887860 ], [ -122.303925, 37.887860 ], [ -122.304611, 37.889486 ], [ -122.303925, 37.889486 ], [ -122.303238, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.889486 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.887860 ], [ -122.304611, 37.889486 ], [ -122.303925, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.302551, 37.890028 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.892196 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.890028 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299118, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299118, 37.890570 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.890570 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.892196 ], [ -122.300491, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887860 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.889486 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.890028 ], [ -122.301865, 37.887860 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.889486 ], [ -122.302551, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.301178, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.887860 ], [ -122.300491, 37.887860 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.890570 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.887860 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.304611, 37.886235 ], [ -122.307358, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ], [ -122.304611, 37.886235 ], [ -122.307358, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.884609 ], [ -122.304611, 37.884609 ], [ -122.304611, 37.885693 ], [ -122.303238, 37.885693 ], [ -122.303238, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.885693 ], [ -122.303238, 37.884609 ], [ -122.304611, 37.884609 ], [ -122.304611, 37.885693 ], [ -122.303238, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884067 ], [ -122.302551, 37.882983 ], [ -122.305984, 37.882441 ], [ -122.307358, 37.885693 ], [ -122.304611, 37.885693 ], [ -122.303925, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885693 ], [ -122.303925, 37.884067 ], [ -122.302551, 37.882983 ], [ -122.305984, 37.882441 ], [ -122.307358, 37.885693 ], [ -122.304611, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883525 ], [ -122.304611, 37.883525 ], [ -122.304611, 37.884609 ], [ -122.303238, 37.884609 ], [ -122.303238, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.884609 ], [ -122.303238, 37.883525 ], [ -122.304611, 37.883525 ], [ -122.304611, 37.884609 ], [ -122.303238, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.883525 ], [ -122.303238, 37.883525 ], [ -122.303925, 37.886235 ], [ -122.301178, 37.886777 ], [ -122.300491, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.300491, 37.883525 ], [ -122.303238, 37.883525 ], [ -122.303925, 37.886235 ], [ -122.301178, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.882983 ], [ -122.301178, 37.882983 ], [ -122.301178, 37.884067 ], [ -122.299805, 37.884067 ], [ -122.299805, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884067 ], [ -122.299805, 37.882983 ], [ -122.301178, 37.882983 ], [ -122.301178, 37.884067 ], [ -122.299805, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898156 ], [ -122.299805, 37.898156 ], [ -122.299805, 37.899240 ], [ -122.298431, 37.899240 ], [ -122.298431, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899240 ], [ -122.298431, 37.898156 ], [ -122.299805, 37.898156 ], [ -122.299805, 37.899240 ], [ -122.298431, 37.899240 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.898698 ], [ -122.299118, 37.898698 ], [ -122.299118, 37.899781 ], [ -122.297745, 37.899781 ], [ -122.297745, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.899781 ], [ -122.297745, 37.898698 ], [ -122.299118, 37.898698 ], [ -122.299118, 37.899781 ], [ -122.297745, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.899781 ], [ -122.297058, 37.899781 ], [ -122.297058, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.896530 ], [ -122.295685, 37.896530 ], [ -122.295685, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896530 ], [ -122.295685, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.896530 ], [ -122.295685, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.299805, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298431, 37.898156 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898156 ], [ -122.298431, 37.897072 ], [ -122.299805, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298431, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.894905 ], [ -122.299805, 37.894905 ], [ -122.299805, 37.895989 ], [ -122.298431, 37.895989 ], [ -122.298431, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.895989 ], [ -122.298431, 37.894905 ], [ -122.299805, 37.894905 ], [ -122.299805, 37.895989 ], [ -122.298431, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.299118, 37.895447 ], [ -122.299118, 37.896530 ], [ -122.297745, 37.896530 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.896530 ], [ -122.297745, 37.895447 ], [ -122.299118, 37.895447 ], [ -122.299118, 37.896530 ], [ -122.297745, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.300491, 37.893821 ], [ -122.300491, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.300491, 37.893821 ], [ -122.300491, 37.895447 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.892196 ], [ -122.299805, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299118, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892196 ], [ -122.299805, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.298431, 37.894905 ], [ -122.297058, 37.894905 ], [ -122.297058, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.894905 ], [ -122.297058, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.298431, 37.894905 ], [ -122.297058, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.893821 ], [ -122.297745, 37.893821 ], [ -122.297745, 37.894905 ], [ -122.296371, 37.894905 ], [ -122.296371, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.894905 ], [ -122.296371, 37.893821 ], [ -122.297745, 37.893821 ], [ -122.297745, 37.894905 ], [ -122.296371, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894905 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ], [ -122.294998, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.894905 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296371, 37.897072 ], [ -122.294998, 37.897072 ], [ -122.294998, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.897072 ], [ -122.294998, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296371, 37.897072 ], [ -122.294998, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.898156 ], [ -122.292252, 37.897072 ], [ -122.292938, 37.897072 ], [ -122.292938, 37.898698 ], [ -122.292252, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898698 ], [ -122.292252, 37.898156 ], [ -122.292252, 37.897072 ], [ -122.292938, 37.897072 ], [ -122.292938, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897614 ], [ -122.291565, 37.897614 ], [ -122.291565, 37.898698 ], [ -122.290192, 37.898698 ], [ -122.290192, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.898698 ], [ -122.290192, 37.897614 ], [ -122.291565, 37.897614 ], [ -122.291565, 37.898698 ], [ -122.290192, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.897614 ], [ -122.290878, 37.897614 ], [ -122.290878, 37.898698 ], [ -122.289505, 37.898698 ], [ -122.289505, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.898698 ], [ -122.289505, 37.897614 ], [ -122.290878, 37.897614 ], [ -122.290878, 37.898698 ], [ -122.289505, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894905 ], [ -122.294998, 37.898156 ], [ -122.294312, 37.898156 ], [ -122.294998, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898156 ], [ -122.294998, 37.894905 ], [ -122.294998, 37.898156 ], [ -122.294312, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.894905 ], [ -122.294312, 37.894905 ], [ -122.294312, 37.898156 ], [ -122.292938, 37.898156 ], [ -122.293625, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898156 ], [ -122.293625, 37.894905 ], [ -122.294312, 37.894905 ], [ -122.294312, 37.898156 ], [ -122.292938, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.896530 ], [ -122.293625, 37.896530 ], [ -122.293625, 37.897614 ], [ -122.292252, 37.897614 ], [ -122.292252, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.897614 ], [ -122.292252, 37.896530 ], [ -122.293625, 37.896530 ], [ -122.293625, 37.897614 ], [ -122.292252, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.893279 ], [ -122.294312, 37.893279 ], [ -122.294312, 37.894905 ], [ -122.293625, 37.894905 ], [ -122.293625, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.894905 ], [ -122.293625, 37.893279 ], [ -122.294312, 37.893279 ], [ -122.294312, 37.894905 ], [ -122.293625, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.892737 ], [ -122.294312, 37.892737 ], [ -122.294312, 37.893821 ], [ -122.292938, 37.893821 ], [ -122.292938, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.893821 ], [ -122.292938, 37.892737 ], [ -122.294312, 37.892737 ], [ -122.294312, 37.893821 ], [ -122.292938, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.893279 ], [ -122.292938, 37.893279 ], [ -122.292938, 37.894905 ], [ -122.292252, 37.894905 ], [ -122.292252, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.894905 ], [ -122.292252, 37.893279 ], [ -122.292938, 37.893279 ], [ -122.292938, 37.894905 ], [ -122.292252, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.897072 ], [ -122.289505, 37.897072 ], [ -122.289505, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.897072 ], [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.897072 ], [ -122.289505, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.894905 ], [ -122.291565, 37.894905 ], [ -122.291565, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.894905 ], [ -122.291565, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.894905 ], [ -122.291565, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.289505, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.898698 ], [ -122.287445, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.288818, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.897072 ], [ -122.288818, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.897072 ], [ -122.288818, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.897072 ], [ -122.287445, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.897072 ], [ -122.287445, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894905 ], [ -122.288818, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.894905 ], [ -122.288818, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.288818, 37.894905 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.288818, 37.894905 ], [ -122.287445, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.894363 ], [ -122.288132, 37.894363 ], [ -122.288132, 37.895447 ], [ -122.286758, 37.895447 ], [ -122.286758, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.895447 ], [ -122.286758, 37.894363 ], [ -122.288132, 37.894363 ], [ -122.288132, 37.895447 ], [ -122.286758, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.891112 ], [ -122.298431, 37.891112 ], [ -122.298431, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.891112 ], [ -122.298431, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.891112 ], [ -122.298431, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.890570 ], [ -122.298431, 37.891112 ], [ -122.299118, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.297745, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297745, 37.890570 ], [ -122.298431, 37.891112 ], [ -122.299118, 37.892196 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.887860 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.890570 ], [ -122.299118, 37.890570 ], [ -122.298431, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.298431, 37.887860 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.890570 ], [ -122.299118, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.890028 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.886777 ], [ -122.299118, 37.890570 ], [ -122.298431, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.298431, 37.890028 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.886777 ], [ -122.299118, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.297745, 37.891112 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892737 ], [ -122.296371, 37.890570 ], [ -122.297745, 37.891112 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892737 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.893279 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.893279 ], [ -122.293625, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.890570 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.890570 ], [ -122.296371, 37.887318 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.890570 ], [ -122.297745, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887860 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887860 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.890570 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.883525 ], [ -122.300491, 37.883525 ], [ -122.299805, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.298431, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884609 ], [ -122.298431, 37.883525 ], [ -122.300491, 37.883525 ], [ -122.299805, 37.884609 ], [ -122.298431, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.886777 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.886777 ], [ -122.297058, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.884609 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.884609 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.891112 ], [ -122.292938, 37.891112 ], [ -122.292938, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.893279 ], [ -122.292252, 37.891112 ], [ -122.292938, 37.891112 ], [ -122.292938, 37.893279 ], [ -122.292252, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890028 ], [ -122.294998, 37.890028 ], [ -122.294998, 37.891112 ], [ -122.293625, 37.891112 ], [ -122.293625, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.891112 ], [ -122.293625, 37.890028 ], [ -122.294998, 37.890028 ], [ -122.294998, 37.891112 ], [ -122.293625, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888402 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.891112 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.292252, 37.891112 ], [ -122.292252, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.893279 ], [ -122.291565, 37.891112 ], [ -122.292252, 37.891112 ], [ -122.292252, 37.893279 ], [ -122.291565, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.291565, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290878, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893279 ], [ -122.290878, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.291565, 37.893279 ], [ -122.290192, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893279 ], [ -122.289505, 37.891112 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.893279 ], [ -122.289505, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.289505, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.289505, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.893279 ], [ -122.289505, 37.891112 ], [ -122.289505, 37.893279 ], [ -122.288818, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.290192, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.290192, 37.888402 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.888944 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.891112 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.888944 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.891112 ], [ -122.288818, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.288818, 37.888944 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.885151 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887860 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.887860 ], [ -122.292252, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.292252, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884067 ], [ -122.294312, 37.884067 ], [ -122.294312, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.292938, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.885151 ], [ -122.292938, 37.884067 ], [ -122.294312, 37.884067 ], [ -122.294312, 37.885151 ], [ -122.292938, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.884067 ], [ -122.293625, 37.884067 ], [ -122.293625, 37.885151 ], [ -122.292252, 37.885151 ], [ -122.292252, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.885151 ], [ -122.292252, 37.884067 ], [ -122.293625, 37.884067 ], [ -122.293625, 37.885151 ], [ -122.292252, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.882983 ], [ -122.292938, 37.882983 ], [ -122.292938, 37.884067 ], [ -122.291565, 37.884067 ], [ -122.291565, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884067 ], [ -122.291565, 37.882983 ], [ -122.292938, 37.882983 ], [ -122.292938, 37.884067 ], [ -122.291565, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885693 ], [ -122.291565, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888402 ], [ -122.290192, 37.885693 ], [ -122.291565, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291565, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288818, 37.888944 ], [ -122.289505, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.888944 ], [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288818, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.884609 ], [ -122.290878, 37.885693 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.888402 ], [ -122.290192, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.290192, 37.884609 ], [ -122.290878, 37.885693 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.884609 ], [ -122.292252, 37.884609 ], [ -122.292252, 37.885693 ], [ -122.290878, 37.885693 ], [ -122.290878, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.885693 ], [ -122.290878, 37.884609 ], [ -122.292252, 37.884609 ], [ -122.292252, 37.885693 ], [ -122.290878, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.882983 ], [ -122.291565, 37.882983 ], [ -122.291565, 37.884067 ], [ -122.290192, 37.884067 ], [ -122.290192, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.884067 ], [ -122.290192, 37.882983 ], [ -122.291565, 37.882983 ], [ -122.291565, 37.884067 ], [ -122.290192, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885151 ], [ -122.288818, 37.885151 ], [ -122.289505, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885151 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885151 ], [ -122.288818, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.891112 ], [ -122.288818, 37.891112 ], [ -122.288818, 37.893279 ], [ -122.287445, 37.893279 ], [ -122.288132, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893279 ], [ -122.288132, 37.891112 ], [ -122.288818, 37.891112 ], [ -122.288818, 37.893279 ], [ -122.287445, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.892737 ], [ -122.288132, 37.892737 ], [ -122.288132, 37.893821 ], [ -122.286758, 37.893821 ], [ -122.286758, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.893821 ], [ -122.286758, 37.892737 ], [ -122.288132, 37.892737 ], [ -122.288132, 37.893821 ], [ -122.286758, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.889486 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.891112 ], [ -122.288132, 37.891112 ], [ -122.287445, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.891112 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.891112 ], [ -122.288132, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.889486 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.891112 ], [ -122.286758, 37.891112 ], [ -122.286758, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.891112 ], [ -122.286758, 37.889486 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.891112 ], [ -122.286758, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.888402 ], [ -122.287445, 37.889486 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.889486 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.888402 ], [ -122.287445, 37.889486 ], [ -122.286758, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.890028 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.286072, 37.891112 ], [ -122.285385, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.891112 ], [ -122.285385, 37.890028 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.286072, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.889486 ], [ -122.285385, 37.890028 ], [ -122.286072, 37.891112 ], [ -122.284698, 37.891112 ], [ -122.284698, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.891112 ], [ -122.284698, 37.889486 ], [ -122.285385, 37.890028 ], [ -122.286072, 37.891112 ], [ -122.284698, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.889486 ], [ -122.284698, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.284012, 37.891112 ], [ -122.283325, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.891112 ], [ -122.283325, 37.889486 ], [ -122.284698, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.284012, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.285385, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887860 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.285385, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889486 ], [ -122.284698, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.889486 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887318 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.283325, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.889486 ], [ -122.283325, 37.887318 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.889486 ], [ -122.283325, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885151 ], [ -122.290192, 37.885151 ], [ -122.289505, 37.886235 ], [ -122.288818, 37.888944 ], [ -122.287445, 37.889486 ], [ -122.288818, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.889486 ], [ -122.288818, 37.885151 ], [ -122.290192, 37.885151 ], [ -122.289505, 37.886235 ], [ -122.288818, 37.888944 ], [ -122.287445, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.885151 ], [ -122.288132, 37.888402 ], [ -122.286758, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888402 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.885151 ], [ -122.288132, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.287445, 37.886235 ], [ -122.287445, 37.887318 ], [ -122.286072, 37.887318 ], [ -122.286072, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.887318 ], [ -122.286072, 37.886235 ], [ -122.287445, 37.886235 ], [ -122.287445, 37.887318 ], [ -122.286072, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.288132, 37.884609 ], [ -122.288132, 37.886235 ], [ -122.286758, 37.886235 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887860 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884609 ], [ -122.288132, 37.886235 ], [ -122.286758, 37.886235 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.884067 ], [ -122.288818, 37.884067 ], [ -122.288818, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.885151 ], [ -122.287445, 37.884067 ], [ -122.288818, 37.884067 ], [ -122.288818, 37.885151 ], [ -122.287445, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.885151 ], [ -122.284698, 37.884609 ], [ -122.284012, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.284012, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886235 ], [ -122.284012, 37.885151 ], [ -122.284012, 37.886235 ], [ -122.283325, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.882983 ], [ -122.286072, 37.882983 ], [ -122.286072, 37.884067 ], [ -122.282639, 37.885151 ], [ -122.283325, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.885151 ], [ -122.283325, 37.882983 ], [ -122.286072, 37.882983 ], [ -122.286072, 37.884067 ], [ -122.282639, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.284012, 37.891112 ], [ -122.282639, 37.891654 ], [ -122.281952, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.891654 ], [ -122.281952, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.284012, 37.891112 ], [ -122.282639, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.888944 ], [ -122.282639, 37.886777 ], [ -122.283325, 37.887318 ], [ -122.283325, 37.889486 ], [ -122.281952, 37.889486 ], [ -122.281952, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.281952, 37.888944 ], [ -122.282639, 37.886777 ], [ -122.283325, 37.887318 ], [ -122.283325, 37.889486 ], [ -122.281952, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.283325, 37.887318 ], [ -122.281952, 37.887318 ], [ -122.281952, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.887318 ], [ -122.281952, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.283325, 37.887318 ], [ -122.281952, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.288818, 37.883525 ], [ -122.288132, 37.884609 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884609 ], [ -122.286758, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.288818, 37.883525 ], [ -122.288132, 37.884609 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.882441 ], [ -122.288132, 37.882441 ], [ -122.288132, 37.883525 ], [ -122.286758, 37.883525 ], [ -122.286758, 37.882441 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.883525 ], [ -122.286758, 37.882441 ], [ -122.288132, 37.882441 ], [ -122.288132, 37.883525 ], [ -122.286758, 37.883525 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.898427 ], [ -122.300148, 37.897072 ], [ -122.301178, 37.896801 ], [ -122.301865, 37.898698 ], [ -122.300835, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.300835, 37.898427 ], [ -122.300148, 37.897072 ], [ -122.301178, 37.896801 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.897072 ], [ -122.300148, 37.897072 ], [ -122.300835, 37.898427 ], [ -122.299805, 37.898427 ], [ -122.299461, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898427 ], [ -122.299461, 37.897072 ], [ -122.300148, 37.897072 ], [ -122.300835, 37.898427 ], [ -122.299805, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896260 ], [ -122.302895, 37.895718 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.893821 ], [ -122.303238, 37.894634 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.891654 ], [ -122.304268, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898156 ], [ -122.301865, 37.898698 ], [ -122.301178, 37.896260 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.301178, 37.896260 ], [ -122.302895, 37.895718 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.893821 ], [ -122.303238, 37.894634 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.891654 ], [ -122.304268, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898156 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891925 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.894634 ], [ -122.302551, 37.891925 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302551, 37.891925 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.895718 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.894092 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.895718 ], [ -122.301865, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896260 ], [ -122.301178, 37.896801 ], [ -122.300148, 37.897072 ], [ -122.299805, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.897072 ], [ -122.299805, 37.895447 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896260 ], [ -122.301178, 37.896801 ], [ -122.300148, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.895176 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896260 ], [ -122.300835, 37.895176 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896260 ], [ -122.300835, 37.895176 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896260 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892196 ], [ -122.302551, 37.891925 ], [ -122.302895, 37.893821 ], [ -122.302208, 37.893821 ], [ -122.301521, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.893821 ], [ -122.301521, 37.892196 ], [ -122.302551, 37.891925 ], [ -122.302895, 37.893821 ], [ -122.302208, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.892196 ], [ -122.301521, 37.892196 ], [ -122.302208, 37.893821 ], [ -122.301178, 37.894092 ], [ -122.300835, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.300835, 37.892196 ], [ -122.301521, 37.892196 ], [ -122.302208, 37.893821 ], [ -122.301178, 37.894092 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893550 ], [ -122.299805, 37.892466 ], [ -122.300835, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894363 ], [ -122.300148, 37.893550 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894363 ], [ -122.300148, 37.893550 ], [ -122.299805, 37.892466 ], [ -122.300835, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.307701, 37.889486 ], [ -122.306671, 37.890841 ], [ -122.306671, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890841 ], [ -122.306671, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.307701, 37.889486 ], [ -122.306671, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.889215 ], [ -122.307358, 37.888673 ], [ -122.307701, 37.889486 ], [ -122.306328, 37.889757 ], [ -122.305984, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306328, 37.889757 ], [ -122.305984, 37.889215 ], [ -122.307358, 37.888673 ], [ -122.307701, 37.889486 ], [ -122.306328, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888673 ], [ -122.306328, 37.888673 ], [ -122.306328, 37.889215 ], [ -122.305641, 37.889215 ], [ -122.305641, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.889215 ], [ -122.305641, 37.888673 ], [ -122.306328, 37.888673 ], [ -122.306328, 37.889215 ], [ -122.305641, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888402 ], [ -122.307358, 37.888131 ], [ -122.307358, 37.888673 ], [ -122.305984, 37.888944 ], [ -122.305641, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.888944 ], [ -122.305641, 37.888402 ], [ -122.307358, 37.888131 ], [ -122.307358, 37.888673 ], [ -122.305984, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.887589 ], [ -122.307014, 37.887589 ], [ -122.307358, 37.888131 ], [ -122.305641, 37.888402 ], [ -122.305641, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888402 ], [ -122.305641, 37.887589 ], [ -122.307014, 37.887589 ], [ -122.307358, 37.888131 ], [ -122.305641, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889757 ], [ -122.303581, 37.889486 ], [ -122.303581, 37.890570 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.891654 ], [ -122.302551, 37.889757 ], [ -122.303581, 37.889486 ], [ -122.303581, 37.890570 ], [ -122.303238, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.889486 ], [ -122.305984, 37.889215 ], [ -122.306328, 37.889757 ], [ -122.303581, 37.890570 ], [ -122.303581, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890570 ], [ -122.303581, 37.889486 ], [ -122.305984, 37.889215 ], [ -122.306328, 37.889757 ], [ -122.303581, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.305984, 37.888944 ], [ -122.304955, 37.889215 ], [ -122.304611, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889215 ], [ -122.304611, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.305984, 37.888944 ], [ -122.304955, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889215 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.889486 ], [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889215 ], [ -122.304268, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302895, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.889486 ], [ -122.302895, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.889486 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.302551, 37.889757 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891925 ], [ -122.301865, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891925 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889757 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891925 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.891925 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892196 ], [ -122.300835, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.891925 ], [ -122.301521, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299805, 37.891925 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892466 ], [ -122.299805, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.892196 ], [ -122.299805, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.890299 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.892196 ], [ -122.300148, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.892196 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887860 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.889486 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889757 ], [ -122.301865, 37.887860 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.889486 ], [ -122.302551, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.887860 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.887860 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299461, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.890299 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.886506 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.307014, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300835, 37.887860 ], [ -122.300835, 37.886506 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.300835, 37.886506 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.307014, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300835, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884880 ], [ -122.303925, 37.883796 ], [ -122.304268, 37.883796 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ], [ -122.303925, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885964 ], [ -122.303925, 37.884880 ], [ -122.303925, 37.883796 ], [ -122.304268, 37.883796 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885422 ], [ -122.304268, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302895, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.305984, 37.882170 ], [ -122.307014, 37.885693 ], [ -122.304611, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.885693 ], [ -122.304611, 37.885422 ], [ -122.304268, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302895, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.305984, 37.882170 ], [ -122.307014, 37.885693 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885151 ], [ -122.303581, 37.885151 ], [ -122.303581, 37.884338 ], [ -122.304268, 37.884338 ], [ -122.304268, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.304268, 37.885964 ], [ -122.303581, 37.885964 ], [ -122.303238, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.885964 ], [ -122.303238, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.304268, 37.885964 ], [ -122.303581, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.883525 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.885964 ], [ -122.300835, 37.886506 ], [ -122.300148, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.886506 ], [ -122.300148, 37.883525 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.885964 ], [ -122.300835, 37.886506 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302895, 37.883254 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303238, 37.883796 ], [ -122.302895, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883796 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303238, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.302895, 37.883254 ], [ -122.301178, 37.883525 ], [ -122.300491, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.883525 ], [ -122.300491, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.302895, 37.883254 ], [ -122.301178, 37.883525 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.897343 ], [ -122.299461, 37.897072 ], [ -122.299805, 37.898427 ], [ -122.299118, 37.898698 ], [ -122.298775, 37.897343 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.298775, 37.897343 ], [ -122.299461, 37.897072 ], [ -122.299805, 37.898427 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897614 ], [ -122.298775, 37.897343 ], [ -122.299118, 37.898698 ], [ -122.298088, 37.898969 ], [ -122.297745, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898969 ], [ -122.297745, 37.897614 ], [ -122.298775, 37.897343 ], [ -122.299118, 37.898698 ], [ -122.298088, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.297745, 37.897614 ], [ -122.298088, 37.898969 ], [ -122.297401, 37.898969 ], [ -122.297058, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.898969 ], [ -122.297058, 37.897614 ], [ -122.297745, 37.897614 ], [ -122.298088, 37.898969 ], [ -122.297401, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.297058, 37.897614 ], [ -122.297401, 37.898969 ], [ -122.296371, 37.898969 ], [ -122.296028, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.296028, 37.897885 ], [ -122.297058, 37.897614 ], [ -122.297401, 37.898969 ], [ -122.296371, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.297401, 37.895989 ], [ -122.297745, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.296371, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297401, 37.895989 ], [ -122.297745, 37.897614 ], [ -122.297058, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896260 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.897614 ], [ -122.296028, 37.897885 ], [ -122.295685, 37.896260 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.295685, 37.896260 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.897614 ], [ -122.296028, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.300148, 37.897072 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.300148, 37.897072 ], [ -122.299461, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.897343 ], [ -122.298088, 37.895718 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.897343 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.897343 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.298431, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298431, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.895447 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.895989 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.897343 ], [ -122.297745, 37.897614 ], [ -122.297401, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897614 ], [ -122.297401, 37.895989 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.897343 ], [ -122.297745, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894092 ], [ -122.298431, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ], [ -122.297745, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.297745, 37.894092 ], [ -122.298431, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894363 ], [ -122.297745, 37.894092 ], [ -122.298088, 37.895718 ], [ -122.297401, 37.895989 ], [ -122.296715, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.895989 ], [ -122.296715, 37.894363 ], [ -122.297745, 37.894092 ], [ -122.298088, 37.895718 ], [ -122.297401, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.300148, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.300148, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.892196 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.892466 ], [ -122.300148, 37.893550 ], [ -122.299118, 37.893821 ], [ -122.298775, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298775, 37.892196 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.892466 ], [ -122.300148, 37.893550 ], [ -122.299118, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298775, 37.892196 ], [ -122.299118, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298775, 37.892196 ], [ -122.299118, 37.893821 ], [ -122.298431, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.894092 ], [ -122.297058, 37.892466 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894092 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.894092 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.894363 ], [ -122.296715, 37.894363 ], [ -122.297401, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296028, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.296028, 37.894363 ], [ -122.296715, 37.894363 ], [ -122.297401, 37.895989 ], [ -122.296371, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.296028, 37.897885 ], [ -122.294655, 37.897885 ], [ -122.294655, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.296028, 37.897885 ], [ -122.294655, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894634 ], [ -122.296028, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295685, 37.896260 ], [ -122.294998, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896260 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295685, 37.896260 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.296715, 37.894363 ], [ -122.296028, 37.894363 ], [ -122.295341, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.894363 ], [ -122.295341, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.296715, 37.894363 ], [ -122.296028, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.894092 ], [ -122.296715, 37.894363 ], [ -122.296371, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894363 ], [ -122.296371, 37.892737 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.894092 ], [ -122.296715, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.893008 ], [ -122.295341, 37.892737 ], [ -122.296028, 37.894363 ], [ -122.294998, 37.894634 ], [ -122.294655, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894634 ], [ -122.294655, 37.893008 ], [ -122.295341, 37.892737 ], [ -122.296028, 37.894363 ], [ -122.294998, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.292938, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.898698 ], [ -122.292938, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.898698 ], [ -122.292938, 37.898427 ], [ -122.292938, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.897614 ], [ -122.293282, 37.897614 ], [ -122.293282, 37.898156 ], [ -122.292595, 37.898156 ], [ -122.292595, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.898156 ], [ -122.292595, 37.897614 ], [ -122.293282, 37.897614 ], [ -122.293282, 37.898156 ], [ -122.292595, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.898156 ], [ -122.291908, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.898427 ], [ -122.291908, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.291908, 37.898156 ], [ -122.291908, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.896801 ], [ -122.291908, 37.896801 ], [ -122.291908, 37.898156 ], [ -122.290878, 37.898156 ], [ -122.290878, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898156 ], [ -122.290878, 37.896801 ], [ -122.291908, 37.896801 ], [ -122.291908, 37.898156 ], [ -122.290878, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897885 ], [ -122.290192, 37.896801 ], [ -122.290878, 37.896801 ], [ -122.290878, 37.898156 ], [ -122.290192, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898156 ], [ -122.290192, 37.897885 ], [ -122.290192, 37.896801 ], [ -122.290878, 37.896801 ], [ -122.290878, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896801 ], [ -122.290192, 37.896801 ], [ -122.290192, 37.897885 ], [ -122.289162, 37.897885 ], [ -122.289162, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.897885 ], [ -122.289162, 37.896801 ], [ -122.290192, 37.896801 ], [ -122.290192, 37.897885 ], [ -122.289162, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894905 ], [ -122.294655, 37.894634 ], [ -122.294655, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.897885 ], [ -122.293968, 37.894905 ], [ -122.294655, 37.894634 ], [ -122.294655, 37.897885 ], [ -122.293968, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.894905 ], [ -122.293968, 37.894905 ], [ -122.293968, 37.897885 ], [ -122.292938, 37.897885 ], [ -122.293282, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897885 ], [ -122.293282, 37.894905 ], [ -122.293968, 37.894905 ], [ -122.293968, 37.897885 ], [ -122.292938, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.896801 ], [ -122.292938, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.292938, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.893008 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894905 ], [ -122.294312, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894905 ], [ -122.294312, 37.893008 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.293968, 37.893008 ], [ -122.293968, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.293282, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.894905 ], [ -122.293282, 37.893008 ], [ -122.293968, 37.893008 ], [ -122.293968, 37.894905 ], [ -122.293282, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894905 ], [ -122.292938, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.292938, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.292938, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.291908, 37.894905 ], [ -122.291908, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.894905 ], [ -122.291908, 37.893008 ], [ -122.292938, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.291908, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289505, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896801 ], [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.896801 ], [ -122.289162, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291222, 37.894905 ], [ -122.291222, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.894905 ], [ -122.291222, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291222, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.289505, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289162, 37.897885 ], [ -122.288475, 37.898156 ], [ -122.288475, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.898156 ], [ -122.288475, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289162, 37.897885 ], [ -122.288475, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288132, 37.898156 ], [ -122.287445, 37.898698 ], [ -122.287445, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288132, 37.898156 ], [ -122.287445, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.897885 ], [ -122.287445, 37.897885 ], [ -122.287445, 37.898427 ], [ -122.286758, 37.898427 ], [ -122.286758, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.898427 ], [ -122.286758, 37.897885 ], [ -122.287445, 37.897885 ], [ -122.287445, 37.898427 ], [ -122.286758, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289162, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288475, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.896801 ], [ -122.288475, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289162, 37.896801 ], [ -122.288475, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.896801 ], [ -122.287445, 37.896801 ], [ -122.287445, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896801 ], [ -122.287445, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.896801 ], [ -122.287445, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.896801 ], [ -122.287102, 37.896801 ], [ -122.287445, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896801 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.896801 ], [ -122.287102, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.894905 ], [ -122.288475, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.894905 ], [ -122.288475, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.894905 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.894905 ], [ -122.287445, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.894905 ], [ -122.287102, 37.894905 ], [ -122.287102, 37.894092 ], [ -122.287788, 37.894092 ], [ -122.287788, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890570 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298775, 37.892196 ], [ -122.298088, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.892196 ], [ -122.298088, 37.890570 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298775, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890028 ], [ -122.300491, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.890570 ], [ -122.299805, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890570 ], [ -122.299805, 37.890028 ], [ -122.300491, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.890570 ], [ -122.298088, 37.890570 ], [ -122.298431, 37.890841 ], [ -122.298775, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.297401, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297401, 37.890570 ], [ -122.298088, 37.890570 ], [ -122.298431, 37.890841 ], [ -122.298775, 37.892196 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.887860 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.890299 ], [ -122.299118, 37.890299 ], [ -122.298431, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890299 ], [ -122.298431, 37.887860 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.890299 ], [ -122.299118, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.889757 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.886777 ], [ -122.299118, 37.890299 ], [ -122.298088, 37.890299 ], [ -122.298088, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.298088, 37.889757 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.886777 ], [ -122.299118, 37.890299 ], [ -122.298088, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.297401, 37.890570 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.296371, 37.890570 ], [ -122.297401, 37.890570 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295341, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.893008 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.893008 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.890299 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.890570 ], [ -122.296371, 37.887318 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.890299 ], [ -122.297401, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.295341, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.887589 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.294655, 37.887589 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.294655, 37.887589 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.887589 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.883254 ], [ -122.300491, 37.883254 ], [ -122.299805, 37.884338 ], [ -122.298431, 37.884609 ], [ -122.298088, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884609 ], [ -122.298088, 37.883254 ], [ -122.300491, 37.883254 ], [ -122.299805, 37.884338 ], [ -122.298431, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298088, 37.886777 ], [ -122.297058, 37.887048 ], [ -122.296028, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887048 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298088, 37.886777 ], [ -122.297058, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.884338 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.887048 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887048 ], [ -122.295341, 37.884338 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.887048 ], [ -122.296371, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.884338 ], [ -122.295341, 37.884338 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.884338 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.882983 ], [ -122.294998, 37.882983 ], [ -122.295341, 37.884338 ], [ -122.294655, 37.884338 ], [ -122.293968, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.884338 ], [ -122.293968, 37.882983 ], [ -122.294998, 37.882983 ], [ -122.295341, 37.884338 ], [ -122.294655, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.891112 ], [ -122.294312, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.293282, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.293282, 37.891112 ], [ -122.294312, 37.893008 ], [ -122.293282, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.890841 ], [ -122.292938, 37.890841 ], [ -122.292938, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.292252, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.292252, 37.890841 ], [ -122.292938, 37.890841 ], [ -122.292938, 37.893008 ], [ -122.291908, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293968, 37.890570 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293968, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.888131 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890841 ], [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890841 ], [ -122.292252, 37.890841 ], [ -122.291908, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.893008 ], [ -122.291222, 37.890841 ], [ -122.292252, 37.890841 ], [ -122.291908, 37.893008 ], [ -122.291222, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290535, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.291222, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290535, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.290535, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.291222, 37.893008 ], [ -122.290192, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.890841 ], [ -122.290535, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893008 ], [ -122.289505, 37.890841 ], [ -122.290535, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289505, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.891654 ], [ -122.289505, 37.890841 ], [ -122.289505, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.891654 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.893008 ], [ -122.288475, 37.891654 ], [ -122.289505, 37.890841 ], [ -122.289505, 37.893008 ], [ -122.288475, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.290192, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890841 ], [ -122.290192, 37.888402 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888673 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.890841 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.888673 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.890841 ], [ -122.288475, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.890841 ], [ -122.288475, 37.888673 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884880 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.887860 ], [ -122.291908, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.291908, 37.884880 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885151 ], [ -122.291565, 37.885151 ], [ -122.292595, 37.887860 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.291222, 37.885151 ], [ -122.291565, 37.885151 ], [ -122.292595, 37.887860 ], [ -122.292252, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884338 ], [ -122.293282, 37.883254 ], [ -122.293968, 37.882983 ], [ -122.294655, 37.884338 ], [ -122.293625, 37.884609 ], [ -122.293625, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.293625, 37.884338 ], [ -122.293282, 37.883254 ], [ -122.293968, 37.882983 ], [ -122.294655, 37.884338 ], [ -122.293625, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.884609 ], [ -122.292252, 37.883254 ], [ -122.293282, 37.883254 ], [ -122.293625, 37.884609 ], [ -122.292938, 37.884880 ], [ -122.292595, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884880 ], [ -122.292595, 37.884609 ], [ -122.292252, 37.883254 ], [ -122.293282, 37.883254 ], [ -122.293625, 37.884609 ], [ -122.292938, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.883254 ], [ -122.292252, 37.883254 ], [ -122.292938, 37.884880 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.291565, 37.883254 ], [ -122.292252, 37.883254 ], [ -122.292938, 37.884880 ], [ -122.291908, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885422 ], [ -122.291222, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.290192, 37.885422 ], [ -122.291222, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288475, 37.888673 ], [ -122.289505, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.888673 ], [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288475, 37.888673 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.886235 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.885693 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.888402 ], [ -122.289505, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.289505, 37.886235 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.885693 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290535, 37.883254 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885151 ], [ -122.291222, 37.885151 ], [ -122.290535, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885151 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885151 ], [ -122.291222, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884609 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885151 ], [ -122.290192, 37.885422 ], [ -122.289848, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885422 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885151 ], [ -122.290192, 37.885422 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883254 ], [ -122.289848, 37.885151 ], [ -122.288818, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.885151 ], [ -122.288818, 37.884880 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883254 ], [ -122.289848, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883254 ], [ -122.297058, 37.884067 ], [ -122.296028, 37.884067 ], [ -122.296028, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.296028, 37.883254 ], [ -122.297058, 37.884067 ], [ -122.296028, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.882983 ], [ -122.296028, 37.883254 ], [ -122.296028, 37.884067 ], [ -122.295341, 37.884338 ], [ -122.294998, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.884338 ], [ -122.294998, 37.882983 ], [ -122.296028, 37.883254 ], [ -122.296028, 37.884067 ], [ -122.295341, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.891112 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.893008 ], [ -122.287445, 37.893008 ], [ -122.287788, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893008 ], [ -122.287788, 37.891112 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.893008 ], [ -122.287445, 37.893008 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.892466 ], [ -122.287445, 37.892466 ], [ -122.287445, 37.891654 ], [ -122.288132, 37.891654 ], [ -122.288132, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889215 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ], [ -122.287102, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.890841 ], [ -122.287102, 37.889215 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.889486 ], [ -122.287102, 37.889215 ], [ -122.287788, 37.890841 ], [ -122.286758, 37.891112 ], [ -122.286415, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.891112 ], [ -122.286415, 37.889486 ], [ -122.287102, 37.889215 ], [ -122.287788, 37.890841 ], [ -122.286758, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.887860 ], [ -122.287788, 37.888131 ], [ -122.287102, 37.889215 ], [ -122.286415, 37.889486 ], [ -122.286415, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.889486 ], [ -122.286415, 37.887860 ], [ -122.287788, 37.888131 ], [ -122.287102, 37.889215 ], [ -122.286415, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889757 ], [ -122.286415, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.285728, 37.891112 ], [ -122.285385, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.891112 ], [ -122.285385, 37.889757 ], [ -122.286415, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.285728, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285728, 37.891112 ], [ -122.284698, 37.891112 ], [ -122.284355, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.891112 ], [ -122.284355, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285728, 37.891112 ], [ -122.284698, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.284355, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.283669, 37.891112 ], [ -122.282982, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.891112 ], [ -122.282982, 37.889215 ], [ -122.284355, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.283669, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.888673 ], [ -122.285385, 37.887589 ], [ -122.286415, 37.887860 ], [ -122.286415, 37.889486 ], [ -122.285385, 37.889486 ], [ -122.285042, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887589 ], [ -122.286415, 37.887860 ], [ -122.286415, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.889215 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.887589 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.284012, 37.889215 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.887589 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887048 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.889215 ], [ -122.282982, 37.889215 ], [ -122.283325, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.283325, 37.887048 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.889215 ], [ -122.282982, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.289848, 37.884880 ], [ -122.289505, 37.885964 ], [ -122.288475, 37.888673 ], [ -122.287102, 37.889215 ], [ -122.288818, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889215 ], [ -122.288818, 37.884880 ], [ -122.289848, 37.884880 ], [ -122.289505, 37.885964 ], [ -122.288475, 37.888673 ], [ -122.287102, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884880 ], [ -122.287788, 37.888131 ], [ -122.286758, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.888131 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884880 ], [ -122.287788, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.885693 ], [ -122.287788, 37.885964 ], [ -122.287445, 37.886777 ], [ -122.286415, 37.886777 ], [ -122.286758, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.886777 ], [ -122.286758, 37.885693 ], [ -122.287788, 37.885964 ], [ -122.287445, 37.886777 ], [ -122.286415, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887589 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287788, 37.885964 ], [ -122.286758, 37.885964 ], [ -122.286415, 37.886777 ], [ -122.287445, 37.886777 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887589 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287788, 37.885964 ], [ -122.286758, 37.885964 ], [ -122.286415, 37.886777 ], [ -122.287445, 37.886777 ], [ -122.286758, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884609 ], [ -122.288818, 37.883254 ], [ -122.289505, 37.883525 ], [ -122.288818, 37.884880 ], [ -122.288132, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.883254 ], [ -122.289505, 37.883525 ], [ -122.288818, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887318 ], [ -122.285385, 37.885422 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887589 ], [ -122.284355, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887589 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.885422 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885422 ], [ -122.285728, 37.883796 ], [ -122.287102, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885693 ], [ -122.285385, 37.885422 ], [ -122.285728, 37.883796 ], [ -122.287102, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.284012, 37.886235 ], [ -122.284698, 37.884338 ], [ -122.285728, 37.883796 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887318 ], [ -122.283669, 37.887048 ], [ -122.284012, 37.886235 ], [ -122.284698, 37.884338 ], [ -122.285728, 37.883796 ], [ -122.284355, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.884880 ], [ -122.284698, 37.884338 ], [ -122.284012, 37.886235 ], [ -122.282982, 37.886235 ], [ -122.283669, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.886235 ], [ -122.283669, 37.884880 ], [ -122.284698, 37.884338 ], [ -122.284012, 37.886235 ], [ -122.282982, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.882712 ], [ -122.286072, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.282295, 37.885151 ], [ -122.282982, 37.882712 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.885151 ], [ -122.282982, 37.882712 ], [ -122.286072, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.282295, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283669, 37.891112 ], [ -122.282639, 37.891383 ], [ -122.281952, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.891383 ], [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283669, 37.891112 ], [ -122.282639, 37.891383 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.887048 ], [ -122.282982, 37.889215 ], [ -122.281952, 37.889486 ], [ -122.281952, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.281952, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.887048 ], [ -122.282982, 37.889215 ], [ -122.281952, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886777 ], [ -122.282982, 37.886235 ], [ -122.284012, 37.886235 ], [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ], [ -122.282982, 37.886235 ], [ -122.284012, 37.886235 ], [ -122.283669, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287445, 37.882712 ], [ -122.288818, 37.883254 ], [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287445, 37.882712 ], [ -122.288818, 37.883254 ], [ -122.288132, 37.884338 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882712 ], [ -122.287445, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.286072, 37.882712 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883796 ], [ -122.286072, 37.882712 ], [ -122.287445, 37.882712 ], [ -122.285728, 37.883796 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 82, "y": 197 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898427 ], [ -122.300148, 37.896937 ], [ -122.301006, 37.896801 ], [ -122.301693, 37.898562 ], [ -122.300663, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.300663, 37.898427 ], [ -122.300148, 37.896937 ], [ -122.301006, 37.896801 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896937 ], [ -122.300663, 37.898427 ], [ -122.299805, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898427 ], [ -122.299805, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896937 ], [ -122.300663, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896124 ], [ -122.302723, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303238, 37.894634 ], [ -122.303238, 37.893550 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.890570 ], [ -122.304096, 37.890163 ], [ -122.306156, 37.889622 ], [ -122.306843, 37.891789 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898021 ], [ -122.305470, 37.898427 ], [ -122.301693, 37.898562 ], [ -122.301006, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896124 ], [ -122.302723, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303238, 37.894634 ], [ -122.303238, 37.893550 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.890570 ], [ -122.304096, 37.890163 ], [ -122.306156, 37.889622 ], [ -122.306843, 37.891789 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898021 ], [ -122.305470, 37.898427 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.891789 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.893550 ], [ -122.303238, 37.894634 ], [ -122.302380, 37.891789 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302380, 37.891789 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.893550 ], [ -122.303238, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.302036, 37.893821 ], [ -122.302723, 37.895718 ], [ -122.301865, 37.895853 ], [ -122.301178, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895853 ], [ -122.301178, 37.894092 ], [ -122.302036, 37.893821 ], [ -122.302723, 37.895718 ], [ -122.301865, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896801 ], [ -122.300148, 37.896937 ], [ -122.299633, 37.895311 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896937 ], [ -122.299633, 37.895311 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896801 ], [ -122.300148, 37.896937 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.895176 ], [ -122.300491, 37.894228 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895853 ], [ -122.301006, 37.896124 ], [ -122.300663, 37.895176 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896124 ], [ -122.300663, 37.895176 ], [ -122.300491, 37.894228 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895853 ], [ -122.301006, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892060 ], [ -122.302380, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ], [ -122.301521, 37.892060 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301521, 37.892060 ], [ -122.302380, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.892196 ], [ -122.301521, 37.892060 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894092 ], [ -122.300663, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.300663, 37.892196 ], [ -122.301521, 37.892060 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894092 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893550 ], [ -122.299805, 37.892331 ], [ -122.300663, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894228 ], [ -122.300148, 37.893550 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894228 ], [ -122.300148, 37.893550 ], [ -122.299805, 37.892331 ], [ -122.300663, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894228 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892331 ], [ -122.300148, 37.893550 ], [ -122.299976, 37.893550 ], [ -122.299633, 37.892331 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893550 ], [ -122.299633, 37.892331 ], [ -122.300148, 37.893550 ], [ -122.299976, 37.893550 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306328, 37.890299 ], [ -122.306671, 37.890299 ], [ -122.306156, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.306843, 37.890705 ], [ -122.306499, 37.890841 ], [ -122.306328, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306499, 37.890841 ], [ -122.306328, 37.890299 ], [ -122.306671, 37.890299 ], [ -122.306156, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.306843, 37.890705 ], [ -122.306499, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.889080 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306156, 37.889622 ], [ -122.305984, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.889622 ], [ -122.305984, 37.889080 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306156, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.888538 ], [ -122.307529, 37.888538 ], [ -122.307529, 37.888809 ], [ -122.307186, 37.888809 ], [ -122.307186, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.888809 ], [ -122.307186, 37.888538 ], [ -122.307529, 37.888538 ], [ -122.307529, 37.888809 ], [ -122.307186, 37.888809 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305470, 37.887589 ], [ -122.307014, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ], [ -122.305470, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.305470, 37.887589 ], [ -122.307014, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889622 ], [ -122.303410, 37.889486 ], [ -122.303581, 37.890434 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.891654 ], [ -122.302551, 37.889622 ], [ -122.303410, 37.889486 ], [ -122.303581, 37.890434 ], [ -122.303238, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.889486 ], [ -122.305984, 37.889080 ], [ -122.306156, 37.889622 ], [ -122.304268, 37.890028 ], [ -122.303581, 37.890434 ], [ -122.303410, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890434 ], [ -122.303410, 37.889486 ], [ -122.305984, 37.889080 ], [ -122.306156, 37.889622 ], [ -122.304268, 37.890028 ], [ -122.303581, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.889215 ], [ -122.304440, 37.889215 ], [ -122.304440, 37.889486 ], [ -122.304096, 37.889486 ], [ -122.304096, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.889486 ], [ -122.304096, 37.889215 ], [ -122.304440, 37.889215 ], [ -122.304440, 37.889486 ], [ -122.304096, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ], [ -122.304611, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304611, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889080 ], [ -122.304268, 37.889351 ], [ -122.303581, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.889351 ], [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889080 ], [ -122.304268, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889351 ], [ -122.303410, 37.889486 ], [ -122.302723, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.889486 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889351 ], [ -122.303410, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889893 ], [ -122.302551, 37.889622 ], [ -122.303238, 37.891654 ], [ -122.302380, 37.891789 ], [ -122.301693, 37.889893 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.891789 ], [ -122.301693, 37.889893 ], [ -122.302551, 37.889622 ], [ -122.303238, 37.891654 ], [ -122.302380, 37.891789 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.301693, 37.889893 ], [ -122.302380, 37.891789 ], [ -122.301521, 37.892060 ], [ -122.300835, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892060 ], [ -122.300835, 37.890028 ], [ -122.301693, 37.889893 ], [ -122.302380, 37.891789 ], [ -122.301521, 37.892060 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300663, 37.892196 ], [ -122.299805, 37.892331 ], [ -122.299633, 37.891925 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892331 ], [ -122.299633, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300663, 37.892196 ], [ -122.299805, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892060 ], [ -122.300663, 37.892196 ], [ -122.299976, 37.890163 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.892196 ], [ -122.299976, 37.890163 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892060 ], [ -122.300663, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887725 ], [ -122.302723, 37.887589 ], [ -122.303410, 37.889486 ], [ -122.302551, 37.889622 ], [ -122.301865, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889622 ], [ -122.301865, 37.887725 ], [ -122.302723, 37.887589 ], [ -122.303410, 37.889486 ], [ -122.302551, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301865, 37.887725 ], [ -122.302551, 37.889622 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889893 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.887725 ], [ -122.302551, 37.889622 ], [ -122.301693, 37.889893 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.887725 ], [ -122.300835, 37.887860 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.887860 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.887860 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.890028 ], [ -122.299976, 37.890163 ], [ -122.299290, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.299290, 37.887860 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.890028 ], [ -122.299976, 37.890163 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887725 ], [ -122.300663, 37.886370 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.306843, 37.885693 ], [ -122.307186, 37.887183 ], [ -122.300835, 37.887860 ], [ -122.301006, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301006, 37.887725 ], [ -122.300663, 37.886370 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.306843, 37.885693 ], [ -122.307186, 37.887183 ], [ -122.300835, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884744 ], [ -122.303753, 37.883660 ], [ -122.304096, 37.883660 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ], [ -122.303925, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885964 ], [ -122.303925, 37.884744 ], [ -122.303753, 37.883660 ], [ -122.304096, 37.883660 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885422 ], [ -122.304096, 37.883660 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302723, 37.883119 ], [ -122.302380, 37.882577 ], [ -122.305813, 37.882170 ], [ -122.306843, 37.885693 ], [ -122.304611, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306843, 37.885693 ], [ -122.304611, 37.885422 ], [ -122.304096, 37.883660 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302723, 37.883119 ], [ -122.302380, 37.882577 ], [ -122.305813, 37.882170 ], [ -122.306843, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.883796 ], [ -122.303753, 37.883660 ], [ -122.304268, 37.885964 ], [ -122.304096, 37.885964 ], [ -122.303410, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.885964 ], [ -122.303410, 37.883796 ], [ -122.303753, 37.883660 ], [ -122.304268, 37.885964 ], [ -122.304096, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.883796 ], [ -122.303410, 37.883796 ], [ -122.304096, 37.885964 ], [ -122.303581, 37.885964 ], [ -122.303066, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.885964 ], [ -122.303066, 37.883796 ], [ -122.303410, 37.883796 ], [ -122.304096, 37.885964 ], [ -122.303581, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884202 ], [ -122.300148, 37.883389 ], [ -122.300320, 37.883254 ], [ -122.301006, 37.883525 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.885964 ], [ -122.300663, 37.886370 ], [ -122.299805, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.886370 ], [ -122.299805, 37.884202 ], [ -122.300148, 37.883389 ], [ -122.300320, 37.883254 ], [ -122.301006, 37.883525 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.885964 ], [ -122.300663, 37.886370 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.883119 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303066, 37.883796 ], [ -122.302723, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.883796 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303066, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300320, 37.883119 ], [ -122.300320, 37.882983 ], [ -122.302380, 37.882577 ], [ -122.302723, 37.883119 ], [ -122.301006, 37.883525 ], [ -122.300320, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883525 ], [ -122.300320, 37.883119 ], [ -122.300320, 37.882983 ], [ -122.302380, 37.882577 ], [ -122.302723, 37.883119 ], [ -122.301006, 37.883525 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299805, 37.898291 ], [ -122.298946, 37.898562 ], [ -122.298603, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.898562 ], [ -122.298603, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299805, 37.898291 ], [ -122.298946, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897479 ], [ -122.298603, 37.897208 ], [ -122.298946, 37.898562 ], [ -122.298088, 37.898833 ], [ -122.297745, 37.897479 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898833 ], [ -122.297745, 37.897479 ], [ -122.298603, 37.897208 ], [ -122.298946, 37.898562 ], [ -122.298088, 37.898833 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.897614 ], [ -122.297745, 37.897479 ], [ -122.298088, 37.898833 ], [ -122.297230, 37.898969 ], [ -122.296886, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898969 ], [ -122.296886, 37.897614 ], [ -122.297745, 37.897479 ], [ -122.298088, 37.898833 ], [ -122.297230, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.296886, 37.897614 ], [ -122.297230, 37.898969 ], [ -122.296371, 37.898969 ], [ -122.295856, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.295856, 37.897885 ], [ -122.296886, 37.897614 ], [ -122.297230, 37.898969 ], [ -122.296371, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.297230, 37.895853 ], [ -122.297745, 37.897479 ], [ -122.296886, 37.897614 ], [ -122.296371, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297230, 37.895853 ], [ -122.297745, 37.897479 ], [ -122.296886, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.896124 ], [ -122.296371, 37.895989 ], [ -122.296886, 37.897614 ], [ -122.296028, 37.897750 ], [ -122.295513, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897750 ], [ -122.295513, 37.896124 ], [ -122.296371, 37.895989 ], [ -122.296886, 37.897614 ], [ -122.296028, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896937 ], [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896937 ], [ -122.299290, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298603, 37.897208 ], [ -122.298088, 37.895718 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.897208 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298603, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.895853 ], [ -122.298088, 37.895718 ], [ -122.298603, 37.897208 ], [ -122.297745, 37.897479 ], [ -122.297230, 37.895853 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897479 ], [ -122.297230, 37.895853 ], [ -122.298088, 37.895718 ], [ -122.298603, 37.897208 ], [ -122.297745, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ], [ -122.297573, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.297573, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894228 ], [ -122.297573, 37.893957 ], [ -122.298088, 37.895718 ], [ -122.297230, 37.895853 ], [ -122.296715, 37.894228 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.895853 ], [ -122.296715, 37.894228 ], [ -122.297573, 37.893957 ], [ -122.298088, 37.895718 ], [ -122.297230, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.299976, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ], [ -122.299976, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299633, 37.895311 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.892060 ], [ -122.299461, 37.891925 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893550 ], [ -122.299118, 37.893686 ], [ -122.298603, 37.892060 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.298603, 37.892060 ], [ -122.299461, 37.891925 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893550 ], [ -122.299118, 37.893686 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298603, 37.892060 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298603, 37.892060 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297573, 37.893957 ], [ -122.297058, 37.892466 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.893957 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297573, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.894363 ], [ -122.296715, 37.894228 ], [ -122.297230, 37.895853 ], [ -122.296371, 37.895989 ], [ -122.295856, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295856, 37.894363 ], [ -122.296715, 37.894228 ], [ -122.297230, 37.895853 ], [ -122.296371, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897750 ], [ -122.294827, 37.895447 ], [ -122.294483, 37.894634 ], [ -122.294655, 37.894634 ], [ -122.295856, 37.897885 ], [ -122.294655, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.294655, 37.897750 ], [ -122.294827, 37.895447 ], [ -122.294483, 37.894634 ], [ -122.294655, 37.894634 ], [ -122.295856, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894498 ], [ -122.295856, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295513, 37.896124 ], [ -122.294998, 37.894498 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.896124 ], [ -122.294998, 37.894498 ], [ -122.295856, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295513, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.296200, 37.892602 ], [ -122.296715, 37.894228 ], [ -122.295856, 37.894363 ], [ -122.295341, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.894363 ], [ -122.295341, 37.892737 ], [ -122.296200, 37.892602 ], [ -122.296715, 37.894228 ], [ -122.295856, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.892602 ], [ -122.297058, 37.892466 ], [ -122.297573, 37.893957 ], [ -122.296715, 37.894228 ], [ -122.296200, 37.892602 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894228 ], [ -122.296200, 37.892602 ], [ -122.297058, 37.892466 ], [ -122.297573, 37.893957 ], [ -122.296715, 37.894228 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.892873 ], [ -122.295341, 37.892737 ], [ -122.295856, 37.894363 ], [ -122.294998, 37.894498 ], [ -122.294483, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894498 ], [ -122.294483, 37.892873 ], [ -122.295341, 37.892737 ], [ -122.295856, 37.894363 ], [ -122.294998, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.292938, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293797, 37.898562 ], [ -122.292938, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.898562 ], [ -122.292938, 37.898427 ], [ -122.292938, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293797, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.897750 ], [ -122.292767, 37.897750 ], [ -122.292767, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.897750 ], [ -122.292767, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.897750 ], [ -122.292767, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291737, 37.898156 ], [ -122.291737, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.898427 ], [ -122.291737, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.898427 ], [ -122.291737, 37.898156 ], [ -122.291737, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898021 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896801 ], [ -122.291737, 37.898156 ], [ -122.290878, 37.898021 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291737, 37.898156 ], [ -122.290878, 37.898021 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896801 ], [ -122.291737, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290878, 37.898021 ], [ -122.290020, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898021 ], [ -122.290020, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290878, 37.898021 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.897885 ], [ -122.289162, 37.897885 ], [ -122.289162, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.897885 ], [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.897885 ], [ -122.289162, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894769 ], [ -122.294483, 37.894634 ], [ -122.294827, 37.895447 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293968, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.897750 ], [ -122.293968, 37.894769 ], [ -122.294483, 37.894634 ], [ -122.294827, 37.895447 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.894905 ], [ -122.293968, 37.894769 ], [ -122.293968, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292938, 37.897750 ], [ -122.293110, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897750 ], [ -122.293110, 37.894905 ], [ -122.293968, 37.894769 ], [ -122.293968, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292938, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.293110, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.292767, 37.894905 ], [ -122.293110, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292767, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894769 ], [ -122.294140, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894769 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293968, 37.894769 ], [ -122.293110, 37.894905 ], [ -122.293110, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.894905 ], [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293968, 37.894769 ], [ -122.293110, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293110, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292938, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.292938, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293110, 37.894905 ], [ -122.292767, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292938, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291908, 37.894905 ], [ -122.291908, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.894905 ], [ -122.291908, 37.892873 ], [ -122.292938, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291908, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.894769 ], [ -122.290192, 37.894905 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289333, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.289333, 37.894769 ], [ -122.290192, 37.894905 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291050, 37.894905 ], [ -122.291050, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.894905 ], [ -122.291050, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291050, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291050, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291050, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.894769 ], [ -122.289333, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289333, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.289333, 37.894769 ], [ -122.289333, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289162, 37.897885 ], [ -122.288303, 37.898156 ], [ -122.288303, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.898156 ], [ -122.288303, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289162, 37.897885 ], [ -122.288303, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288132, 37.898156 ], [ -122.287273, 37.898698 ], [ -122.287273, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.898698 ], [ -122.287273, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288132, 37.898156 ], [ -122.287273, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287273, 37.898156 ], [ -122.287102, 37.898156 ], [ -122.287102, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.898156 ], [ -122.287102, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287273, 37.898156 ], [ -122.287102, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.289333, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288303, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.896666 ], [ -122.288303, 37.894769 ], [ -122.289333, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288303, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288303, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287445, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896666 ], [ -122.287445, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288303, 37.896666 ], [ -122.287273, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.896666 ], [ -122.287102, 37.896666 ], [ -122.287273, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896666 ], [ -122.287273, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.896666 ], [ -122.287102, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.289333, 37.893008 ], [ -122.289333, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ], [ -122.289333, 37.893008 ], [ -122.289333, 37.894769 ], [ -122.288303, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.288475, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287445, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894769 ], [ -122.287445, 37.892873 ], [ -122.288475, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287445, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.894769 ], [ -122.287273, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.894769 ], [ -122.287273, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890434 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298603, 37.892060 ], [ -122.298088, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.892060 ], [ -122.298088, 37.890434 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298603, 37.892060 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890028 ], [ -122.300148, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299805, 37.890299 ], [ -122.299805, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890299 ], [ -122.299805, 37.890028 ], [ -122.300148, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299805, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.890434 ], [ -122.298088, 37.890434 ], [ -122.298260, 37.890705 ], [ -122.298603, 37.892060 ], [ -122.297745, 37.892196 ], [ -122.297230, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297230, 37.890434 ], [ -122.298088, 37.890434 ], [ -122.298260, 37.890705 ], [ -122.298603, 37.892060 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887860 ], [ -122.299290, 37.887860 ], [ -122.299976, 37.890163 ], [ -122.299118, 37.890299 ], [ -122.298260, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890299 ], [ -122.298260, 37.887860 ], [ -122.299290, 37.887860 ], [ -122.299976, 37.890163 ], [ -122.299118, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.889622 ], [ -122.297058, 37.886912 ], [ -122.297916, 37.886777 ], [ -122.298946, 37.890299 ], [ -122.298088, 37.890299 ], [ -122.297916, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.297916, 37.889622 ], [ -122.297058, 37.886912 ], [ -122.297916, 37.886777 ], [ -122.298946, 37.890299 ], [ -122.298088, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890434 ], [ -122.297230, 37.890434 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.296371, 37.890434 ], [ -122.297230, 37.890434 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.890570 ], [ -122.296371, 37.890434 ], [ -122.297058, 37.892466 ], [ -122.296200, 37.892602 ], [ -122.295513, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.892602 ], [ -122.295513, 37.890570 ], [ -122.296371, 37.890434 ], [ -122.297058, 37.892466 ], [ -122.296200, 37.892602 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.295513, 37.890570 ], [ -122.296200, 37.892602 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ], [ -122.295513, 37.890570 ], [ -122.296200, 37.892602 ], [ -122.295341, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294483, 37.892873 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294483, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.887183 ], [ -122.297058, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297230, 37.890434 ], [ -122.296200, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.890434 ], [ -122.296200, 37.887183 ], [ -122.297058, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297230, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.296200, 37.887183 ], [ -122.297230, 37.890434 ], [ -122.296371, 37.890434 ], [ -122.295341, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890434 ], [ -122.295341, 37.887318 ], [ -122.296200, 37.887183 ], [ -122.297230, 37.890434 ], [ -122.296371, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887454 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890434 ], [ -122.295513, 37.890434 ], [ -122.294483, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.890434 ], [ -122.294483, 37.887454 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890434 ], [ -122.295513, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.294483, 37.887454 ], [ -122.295513, 37.890434 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ], [ -122.294483, 37.887454 ], [ -122.295513, 37.890434 ], [ -122.294655, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.883254 ], [ -122.300320, 37.882983 ], [ -122.300320, 37.883119 ], [ -122.299805, 37.884202 ], [ -122.298431, 37.884473 ], [ -122.298088, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884473 ], [ -122.298088, 37.883254 ], [ -122.300320, 37.882983 ], [ -122.300320, 37.883119 ], [ -122.299805, 37.884202 ], [ -122.298431, 37.884473 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.294483, 37.884338 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.884338 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.296886, 37.883931 ], [ -122.297916, 37.886777 ], [ -122.297058, 37.886912 ], [ -122.296028, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886912 ], [ -122.296028, 37.884067 ], [ -122.296886, 37.883931 ], [ -122.297916, 37.886777 ], [ -122.297058, 37.886912 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.886912 ], [ -122.296200, 37.887048 ], [ -122.295170, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.887048 ], [ -122.295170, 37.884202 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.886912 ], [ -122.296200, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296200, 37.887048 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887183 ], [ -122.294483, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296200, 37.887048 ], [ -122.295341, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.882983 ], [ -122.294827, 37.882848 ], [ -122.295170, 37.884202 ], [ -122.294483, 37.884338 ], [ -122.293968, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.884338 ], [ -122.293968, 37.882983 ], [ -122.294827, 37.882848 ], [ -122.295170, 37.884202 ], [ -122.294483, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.891112 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293282, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293282, 37.891112 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.890705 ], [ -122.292938, 37.890705 ], [ -122.292938, 37.892873 ], [ -122.291908, 37.892873 ], [ -122.292080, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292080, 37.890705 ], [ -122.292938, 37.890705 ], [ -122.292938, 37.892873 ], [ -122.291908, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.890434 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293282, 37.889893 ], [ -122.293797, 37.890570 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293282, 37.889893 ], [ -122.293797, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.888131 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890705 ], [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890705 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890705 ], [ -122.292080, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291222, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.893008 ], [ -122.291222, 37.890705 ], [ -122.292080, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290363, 37.890841 ], [ -122.291222, 37.890705 ], [ -122.291050, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290363, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.290363, 37.890841 ], [ -122.291222, 37.890705 ], [ -122.291050, 37.893008 ], [ -122.290192, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.890841 ], [ -122.290363, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289333, 37.893008 ], [ -122.289505, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.893008 ], [ -122.289505, 37.890841 ], [ -122.290363, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289333, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288990, 37.890841 ], [ -122.289505, 37.890841 ], [ -122.289333, 37.893008 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.893008 ], [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288990, 37.890841 ], [ -122.289505, 37.890841 ], [ -122.289333, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888267 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.890705 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.890841 ], [ -122.290192, 37.888267 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.890705 ], [ -122.290878, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888538 ], [ -122.290192, 37.888267 ], [ -122.290878, 37.890841 ], [ -122.290020, 37.890841 ], [ -122.289162, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.890841 ], [ -122.289162, 37.888538 ], [ -122.290192, 37.888267 ], [ -122.290878, 37.890841 ], [ -122.290020, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289162, 37.888538 ], [ -122.290020, 37.890841 ], [ -122.288990, 37.890841 ], [ -122.288303, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.890841 ], [ -122.288303, 37.888673 ], [ -122.289162, 37.888538 ], [ -122.290020, 37.890841 ], [ -122.288990, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.884744 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.887589 ], [ -122.292767, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.887589 ], [ -122.293625, 37.887725 ], [ -122.292767, 37.887725 ], [ -122.291908, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.887725 ], [ -122.291908, 37.884880 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.887589 ], [ -122.293625, 37.887725 ], [ -122.292767, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.291565, 37.885015 ], [ -122.292595, 37.887725 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.885015 ], [ -122.292595, 37.887725 ], [ -122.292252, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884202 ], [ -122.293110, 37.883119 ], [ -122.293968, 37.882983 ], [ -122.294483, 37.884338 ], [ -122.293625, 37.884609 ], [ -122.293453, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.293453, 37.884202 ], [ -122.293110, 37.883119 ], [ -122.293968, 37.882983 ], [ -122.294483, 37.884338 ], [ -122.293625, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.884473 ], [ -122.292080, 37.883254 ], [ -122.293110, 37.883119 ], [ -122.293625, 37.884609 ], [ -122.292767, 37.884744 ], [ -122.292595, 37.884473 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.884744 ], [ -122.292595, 37.884473 ], [ -122.292080, 37.883254 ], [ -122.293110, 37.883119 ], [ -122.293625, 37.884609 ], [ -122.292767, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291393, 37.883254 ], [ -122.292080, 37.883254 ], [ -122.292767, 37.884744 ], [ -122.291908, 37.884880 ], [ -122.291393, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.291393, 37.883254 ], [ -122.292080, 37.883254 ], [ -122.292767, 37.884744 ], [ -122.291908, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885286 ], [ -122.291222, 37.885015 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.885286 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.887996 ], [ -122.290192, 37.885286 ], [ -122.291222, 37.885015 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886099 ], [ -122.290192, 37.888267 ], [ -122.288303, 37.888673 ], [ -122.289333, 37.886099 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289333, 37.886099 ], [ -122.290192, 37.888267 ], [ -122.288303, 37.888673 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886099 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.885693 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.888267 ], [ -122.289333, 37.886099 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888267 ], [ -122.289333, 37.886099 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.885693 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290535, 37.883254 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885015 ], [ -122.291222, 37.885015 ], [ -122.290535, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.290535, 37.883254 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885015 ], [ -122.291222, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884609 ], [ -122.290363, 37.883119 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885286 ], [ -122.289848, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885286 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.883119 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885286 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.289333, 37.883389 ], [ -122.290192, 37.883254 ], [ -122.290363, 37.883119 ], [ -122.289848, 37.885015 ], [ -122.288818, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.885015 ], [ -122.288818, 37.884744 ], [ -122.289333, 37.883389 ], [ -122.290192, 37.883254 ], [ -122.290363, 37.883119 ], [ -122.289848, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.883119 ], [ -122.296028, 37.883119 ], [ -122.296886, 37.883525 ], [ -122.296886, 37.883931 ], [ -122.296028, 37.884067 ], [ -122.295856, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.883119 ], [ -122.296886, 37.883525 ], [ -122.296886, 37.883931 ], [ -122.296028, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294827, 37.882848 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.884067 ], [ -122.295170, 37.884202 ], [ -122.294827, 37.882848 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.294827, 37.882848 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.884067 ], [ -122.295170, 37.884202 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.890976 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288475, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287617, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.287617, 37.890976 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288475, 37.892873 ], [ -122.287445, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.890976 ], [ -122.287617, 37.890976 ], [ -122.287617, 37.891383 ], [ -122.287445, 37.892873 ], [ -122.287273, 37.892873 ], [ -122.287273, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.892873 ], [ -122.287273, 37.890976 ], [ -122.287617, 37.890976 ], [ -122.287617, 37.891383 ], [ -122.287445, 37.892873 ], [ -122.287273, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288132, 37.888809 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888809 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286243, 37.889486 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890976 ], [ -122.287617, 37.890841 ], [ -122.286758, 37.890976 ], [ -122.286243, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.890976 ], [ -122.286243, 37.889486 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890976 ], [ -122.287617, 37.890841 ], [ -122.286758, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.888673 ], [ -122.286415, 37.887725 ], [ -122.287617, 37.887996 ], [ -122.287102, 37.889080 ], [ -122.286243, 37.889351 ], [ -122.286072, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286243, 37.889351 ], [ -122.286072, 37.888673 ], [ -122.286415, 37.887725 ], [ -122.287617, 37.887996 ], [ -122.287102, 37.889080 ], [ -122.286243, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889622 ], [ -122.286243, 37.889486 ], [ -122.286758, 37.890976 ], [ -122.285728, 37.890976 ], [ -122.285213, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.285213, 37.889622 ], [ -122.286243, 37.889486 ], [ -122.286758, 37.890976 ], [ -122.285728, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284184, 37.889351 ], [ -122.285213, 37.889622 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891112 ], [ -122.284184, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891112 ], [ -122.284184, 37.889351 ], [ -122.285213, 37.889622 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.284184, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ], [ -122.282982, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.282982, 37.889215 ], [ -122.284184, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.888673 ], [ -122.285385, 37.887454 ], [ -122.286415, 37.887725 ], [ -122.286072, 37.888673 ], [ -122.286243, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887454 ], [ -122.286415, 37.887725 ], [ -122.286072, 37.888673 ], [ -122.286243, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.888944 ], [ -122.284870, 37.888944 ], [ -122.284870, 37.888538 ], [ -122.285385, 37.888538 ], [ -122.285385, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.889215 ], [ -122.284355, 37.887183 ], [ -122.285385, 37.887454 ], [ -122.285042, 37.888538 ], [ -122.285213, 37.889486 ], [ -122.283840, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.283840, 37.889215 ], [ -122.284355, 37.887183 ], [ -122.285385, 37.887454 ], [ -122.285042, 37.888538 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.889080 ], [ -122.282810, 37.888673 ], [ -122.283325, 37.886912 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.282810, 37.888673 ], [ -122.283325, 37.886912 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889215 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.887725 ], [ -122.288475, 37.887725 ], [ -122.288475, 37.887183 ], [ -122.288990, 37.887183 ], [ -122.288990, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885964 ], [ -122.288303, 37.888673 ], [ -122.287102, 37.889080 ], [ -122.288818, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885964 ], [ -122.288303, 37.888673 ], [ -122.287102, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.287960, 37.884609 ], [ -122.288818, 37.884744 ], [ -122.287617, 37.887996 ], [ -122.286758, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.887996 ], [ -122.286758, 37.887725 ], [ -122.287960, 37.884609 ], [ -122.288818, 37.884744 ], [ -122.287617, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.886641 ], [ -122.286758, 37.885693 ], [ -122.287617, 37.885828 ], [ -122.287273, 37.886777 ], [ -122.286415, 37.886641 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.886777 ], [ -122.286415, 37.886641 ], [ -122.286758, 37.885693 ], [ -122.287617, 37.885828 ], [ -122.287273, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887454 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287617, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286415, 37.886641 ], [ -122.287273, 37.886777 ], [ -122.286758, 37.887725 ], [ -122.285385, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.285385, 37.887454 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287617, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286415, 37.886641 ], [ -122.287273, 37.886777 ], [ -122.286758, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884609 ], [ -122.288647, 37.883119 ], [ -122.289333, 37.883389 ], [ -122.288818, 37.884744 ], [ -122.287960, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.287960, 37.884609 ], [ -122.288647, 37.883119 ], [ -122.289333, 37.883389 ], [ -122.288818, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.285213, 37.885422 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887454 ], [ -122.284355, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887454 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.885422 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.885422 ], [ -122.285728, 37.883660 ], [ -122.287102, 37.882983 ], [ -122.286587, 37.884067 ], [ -122.286072, 37.885557 ], [ -122.285213, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285213, 37.885422 ], [ -122.285728, 37.883660 ], [ -122.287102, 37.882983 ], [ -122.286587, 37.884067 ], [ -122.286072, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.283669, 37.887048 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.886099 ], [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ], [ -122.282810, 37.886099 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282810, 37.886099 ], [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.884473 ], [ -122.281952, 37.884473 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882577 ], [ -122.285728, 37.883660 ], [ -122.283154, 37.884880 ], [ -122.282124, 37.885015 ], [ -122.282295, 37.884473 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.885015 ], [ -122.282295, 37.884473 ], [ -122.281952, 37.884473 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882577 ], [ -122.285728, 37.883660 ], [ -122.283154, 37.884880 ], [ -122.282124, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891247 ], [ -122.281952, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891247 ], [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891247 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281780, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.886912 ], [ -122.282810, 37.888673 ], [ -122.282810, 37.889080 ], [ -122.281952, 37.889351 ], [ -122.281780, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889351 ], [ -122.281780, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.886912 ], [ -122.282810, 37.888673 ], [ -122.282810, 37.889080 ], [ -122.281952, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886777 ], [ -122.282639, 37.886370 ], [ -122.282810, 37.886099 ], [ -122.283840, 37.886235 ], [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ], [ -122.282639, 37.886370 ], [ -122.282810, 37.886099 ], [ -122.283840, 37.886235 ], [ -122.283669, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287273, 37.882712 ], [ -122.288647, 37.883119 ], [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287273, 37.882712 ], [ -122.288647, 37.883119 ], [ -122.288132, 37.884338 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883525 ], [ -122.286243, 37.883525 ], [ -122.286243, 37.883119 ], [ -122.286587, 37.883119 ], [ -122.286587, 37.883525 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882577 ], [ -122.287273, 37.882577 ], [ -122.287102, 37.882983 ], [ -122.285728, 37.883660 ], [ -122.286072, 37.882577 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.286072, 37.882577 ], [ -122.287273, 37.882577 ], [ -122.287102, 37.882983 ], [ -122.285728, 37.883660 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 164, "y": 395 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898359 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896734 ], [ -122.301607, 37.898562 ], [ -122.300663, 37.898359 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301607, 37.898562 ], [ -122.300663, 37.898359 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896734 ], [ -122.301607, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300663, 37.898359 ], [ -122.299719, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898359 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300663, 37.898359 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896056 ], [ -122.302637, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303152, 37.894566 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.890570 ], [ -122.304010, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.306757, 37.891721 ], [ -122.306671, 37.892670 ], [ -122.308989, 37.898021 ], [ -122.306242, 37.898291 ], [ -122.305384, 37.898427 ], [ -122.301693, 37.898562 ], [ -122.300920, 37.896056 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.300920, 37.896056 ], [ -122.302637, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303152, 37.894566 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.890570 ], [ -122.304010, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.306757, 37.891721 ], [ -122.306671, 37.892670 ], [ -122.308989, 37.898021 ], [ -122.306242, 37.898291 ], [ -122.305384, 37.898427 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302294, 37.891789 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.893550 ], [ -122.303152, 37.894566 ], [ -122.302294, 37.891789 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303152, 37.894566 ], [ -122.302294, 37.891789 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.893550 ], [ -122.303152, 37.894566 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894024 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895718 ], [ -122.301779, 37.895853 ], [ -122.301178, 37.894024 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895853 ], [ -122.301178, 37.894024 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895718 ], [ -122.301779, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.300491, 37.895108 ], [ -122.300835, 37.896056 ], [ -122.301006, 37.896734 ], [ -122.300148, 37.896869 ], [ -122.299633, 37.895311 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895311 ], [ -122.300491, 37.895108 ], [ -122.300835, 37.896056 ], [ -122.301006, 37.896734 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.894160 ], [ -122.301178, 37.894024 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896056 ], [ -122.300406, 37.894160 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896056 ], [ -122.300406, 37.894160 ], [ -122.301178, 37.894024 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896056 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891992 ], [ -122.302294, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ], [ -122.301435, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301435, 37.891992 ], [ -122.302294, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.301435, 37.891992 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894024 ], [ -122.300577, 37.892128 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894024 ], [ -122.300577, 37.892128 ], [ -122.301435, 37.891992 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894024 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893482 ], [ -122.299719, 37.892331 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.894024 ], [ -122.300406, 37.894160 ], [ -122.300148, 37.893482 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.894160 ], [ -122.300148, 37.893482 ], [ -122.299719, 37.892331 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.894024 ], [ -122.300406, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892331 ], [ -122.299719, 37.892331 ], [ -122.300148, 37.893482 ], [ -122.299976, 37.893482 ], [ -122.299633, 37.892331 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.299633, 37.892331 ], [ -122.299719, 37.892331 ], [ -122.300148, 37.893482 ], [ -122.299976, 37.893482 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890299 ], [ -122.306671, 37.890231 ], [ -122.306328, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890841 ], [ -122.306242, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890841 ], [ -122.306242, 37.890299 ], [ -122.306671, 37.890231 ], [ -122.306328, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305899, 37.889012 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306070, 37.889622 ], [ -122.305899, 37.889012 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306070, 37.889622 ], [ -122.305899, 37.889012 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306070, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305899, 37.889012 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888944 ], [ -122.305899, 37.889012 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.307358, 37.888673 ], [ -122.305899, 37.889012 ], [ -122.305813, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305899, 37.889012 ], [ -122.305813, 37.888944 ], [ -122.307358, 37.888673 ], [ -122.305899, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305470, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ], [ -122.305470, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.305470, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.303324, 37.889486 ], [ -122.303581, 37.890367 ], [ -122.303152, 37.891654 ], [ -122.302465, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303152, 37.891654 ], [ -122.302465, 37.889622 ], [ -122.303324, 37.889486 ], [ -122.303581, 37.890367 ], [ -122.303152, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889486 ], [ -122.305899, 37.889012 ], [ -122.306070, 37.889622 ], [ -122.304182, 37.890028 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890367 ], [ -122.303324, 37.889486 ], [ -122.305899, 37.889012 ], [ -122.306070, 37.889622 ], [ -122.304182, 37.890028 ], [ -122.303581, 37.890367 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.889351 ], [ -122.304354, 37.889351 ], [ -122.304354, 37.889147 ], [ -122.304525, 37.889147 ], [ -122.304525, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.887522 ], [ -122.305384, 37.887522 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ], [ -122.304525, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304525, 37.887522 ], [ -122.305384, 37.887522 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887589 ], [ -122.304525, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304182, 37.889283 ], [ -122.303581, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304182, 37.889283 ], [ -122.303581, 37.887589 ], [ -122.304525, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304182, 37.889283 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889418 ], [ -122.302723, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889418 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889825 ], [ -122.302465, 37.889622 ], [ -122.303152, 37.891654 ], [ -122.302294, 37.891789 ], [ -122.301693, 37.889825 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302294, 37.891789 ], [ -122.301693, 37.889825 ], [ -122.302465, 37.889622 ], [ -122.303152, 37.891654 ], [ -122.302294, 37.891789 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.889960 ], [ -122.301693, 37.889825 ], [ -122.302294, 37.891789 ], [ -122.301435, 37.891992 ], [ -122.300835, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891992 ], [ -122.300835, 37.889960 ], [ -122.301693, 37.889825 ], [ -122.302294, 37.891789 ], [ -122.301435, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.891857 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892331 ], [ -122.299547, 37.891857 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892331 ], [ -122.299547, 37.891857 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.300835, 37.889960 ], [ -122.301435, 37.891992 ], [ -122.300577, 37.892128 ], [ -122.299976, 37.890163 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.299976, 37.890163 ], [ -122.300835, 37.889960 ], [ -122.301435, 37.891992 ], [ -122.300577, 37.892128 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887657 ], [ -122.302723, 37.887589 ], [ -122.303324, 37.889418 ], [ -122.302465, 37.889622 ], [ -122.301865, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.301865, 37.887657 ], [ -122.302723, 37.887589 ], [ -122.303324, 37.889418 ], [ -122.302465, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300749, 37.887793 ], [ -122.301865, 37.887657 ], [ -122.302465, 37.889622 ], [ -122.301693, 37.889825 ], [ -122.300749, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889825 ], [ -122.300749, 37.887793 ], [ -122.301865, 37.887657 ], [ -122.302465, 37.889622 ], [ -122.301693, 37.889825 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300062, 37.887725 ], [ -122.300749, 37.887793 ], [ -122.301693, 37.889825 ], [ -122.300835, 37.889960 ], [ -122.300062, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300749, 37.887793 ], [ -122.301693, 37.889825 ], [ -122.300835, 37.889960 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299204, 37.887793 ], [ -122.300062, 37.887725 ], [ -122.300835, 37.889960 ], [ -122.299976, 37.890096 ], [ -122.299204, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890096 ], [ -122.299204, 37.887793 ], [ -122.300062, 37.887725 ], [ -122.300835, 37.889960 ], [ -122.299976, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887657 ], [ -122.300577, 37.886370 ], [ -122.302380, 37.886031 ], [ -122.304611, 37.885896 ], [ -122.304525, 37.885354 ], [ -122.306843, 37.885625 ], [ -122.307186, 37.887115 ], [ -122.305899, 37.887318 ], [ -122.302122, 37.887522 ], [ -122.302122, 37.887657 ], [ -122.300749, 37.887793 ], [ -122.301006, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300749, 37.887793 ], [ -122.301006, 37.887657 ], [ -122.300577, 37.886370 ], [ -122.302380, 37.886031 ], [ -122.304611, 37.885896 ], [ -122.304525, 37.885354 ], [ -122.306843, 37.885625 ], [ -122.307186, 37.887115 ], [ -122.305899, 37.887318 ], [ -122.302122, 37.887522 ], [ -122.302122, 37.887657 ], [ -122.300749, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884744 ], [ -122.303667, 37.883660 ], [ -122.304010, 37.883593 ], [ -122.304611, 37.885896 ], [ -122.304268, 37.885896 ], [ -122.303925, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885896 ], [ -122.303925, 37.884744 ], [ -122.303667, 37.883660 ], [ -122.304010, 37.883593 ], [ -122.304611, 37.885896 ], [ -122.304268, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.885354 ], [ -122.304010, 37.883593 ], [ -122.303495, 37.883728 ], [ -122.303495, 37.882915 ], [ -122.302637, 37.883119 ], [ -122.302380, 37.882509 ], [ -122.303324, 37.882306 ], [ -122.305298, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306843, 37.885625 ], [ -122.304525, 37.885354 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306843, 37.885625 ], [ -122.304525, 37.885354 ], [ -122.304010, 37.883593 ], [ -122.303495, 37.883728 ], [ -122.303495, 37.882915 ], [ -122.302637, 37.883119 ], [ -122.302380, 37.882509 ], [ -122.303324, 37.882306 ], [ -122.305298, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306843, 37.885625 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.883728 ], [ -122.303667, 37.883660 ], [ -122.304268, 37.885896 ], [ -122.304010, 37.885896 ], [ -122.303324, 37.883728 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304010, 37.885896 ], [ -122.303324, 37.883728 ], [ -122.303667, 37.883660 ], [ -122.304268, 37.885896 ], [ -122.304010, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.304010, 37.885896 ], [ -122.303495, 37.885964 ], [ -122.302980, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303495, 37.885964 ], [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.304010, 37.885896 ], [ -122.303495, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.884067 ], [ -122.299805, 37.884135 ], [ -122.300062, 37.883389 ], [ -122.300234, 37.883254 ], [ -122.301006, 37.883457 ], [ -122.302637, 37.883119 ], [ -122.302980, 37.883796 ], [ -122.303495, 37.885964 ], [ -122.300577, 37.886370 ], [ -122.299976, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.886370 ], [ -122.299976, 37.884067 ], [ -122.299805, 37.884135 ], [ -122.300062, 37.883389 ], [ -122.300234, 37.883254 ], [ -122.301006, 37.883457 ], [ -122.302637, 37.883119 ], [ -122.302980, 37.883796 ], [ -122.303495, 37.885964 ], [ -122.300577, 37.886370 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302637, 37.883119 ], [ -122.303495, 37.882915 ], [ -122.303495, 37.883728 ], [ -122.302980, 37.883796 ], [ -122.302637, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.302637, 37.883119 ], [ -122.303495, 37.882915 ], [ -122.303495, 37.883728 ], [ -122.302980, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.883254 ], [ -122.300320, 37.883119 ], [ -122.300234, 37.882915 ], [ -122.302380, 37.882509 ], [ -122.302637, 37.883119 ], [ -122.301006, 37.883457 ], [ -122.300406, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883457 ], [ -122.300406, 37.883254 ], [ -122.300320, 37.883119 ], [ -122.300234, 37.882915 ], [ -122.302380, 37.882509 ], [ -122.302637, 37.883119 ], [ -122.301006, 37.883457 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298517, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ], [ -122.298517, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298517, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297659, 37.897411 ], [ -122.298517, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298088, 37.898766 ], [ -122.297659, 37.897411 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898766 ], [ -122.297659, 37.897411 ], [ -122.298517, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298088, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.297659, 37.897411 ], [ -122.298088, 37.898766 ], [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ], [ -122.297659, 37.897411 ], [ -122.298088, 37.898766 ], [ -122.297230, 37.898901 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296286, 37.898969 ], [ -122.295771, 37.897817 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.898969 ], [ -122.295771, 37.897817 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296286, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895989 ], [ -122.297144, 37.895785 ], [ -122.297659, 37.897411 ], [ -122.296801, 37.897546 ], [ -122.296286, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895989 ], [ -122.297144, 37.895785 ], [ -122.297659, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896124 ], [ -122.296286, 37.895989 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ], [ -122.295427, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295942, 37.897750 ], [ -122.295427, 37.896124 ], [ -122.296286, 37.895989 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.895650 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298517, 37.897208 ], [ -122.298002, 37.895650 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298517, 37.897208 ], [ -122.298002, 37.895650 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298517, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.895785 ], [ -122.298002, 37.895650 ], [ -122.298517, 37.897208 ], [ -122.297659, 37.897411 ], [ -122.297144, 37.895785 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297659, 37.897411 ], [ -122.297144, 37.895785 ], [ -122.298002, 37.895650 ], [ -122.298517, 37.897208 ], [ -122.297659, 37.897411 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298002, 37.895650 ], [ -122.297487, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.895650 ], [ -122.297487, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298002, 37.895650 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296629, 37.894160 ], [ -122.297487, 37.893957 ], [ -122.298002, 37.895650 ], [ -122.297144, 37.895785 ], [ -122.296629, 37.894160 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.895785 ], [ -122.296629, 37.894160 ], [ -122.297487, 37.893957 ], [ -122.298002, 37.895650 ], [ -122.297144, 37.895785 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895108 ], [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895108 ], [ -122.299633, 37.895311 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.891992 ], [ -122.299461, 37.891857 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299118, 37.893686 ], [ -122.298603, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.298603, 37.891992 ], [ -122.299461, 37.891857 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299118, 37.893686 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298603, 37.891992 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298603, 37.891992 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.892399 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297487, 37.893957 ], [ -122.296972, 37.892399 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.893957 ], [ -122.296972, 37.892399 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297487, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.296629, 37.894160 ], [ -122.297144, 37.895785 ], [ -122.296286, 37.895989 ], [ -122.295771, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895989 ], [ -122.295771, 37.894295 ], [ -122.296629, 37.894160 ], [ -122.297144, 37.895785 ], [ -122.296286, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894566 ], [ -122.295771, 37.897817 ], [ -122.294655, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.294655, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894566 ], [ -122.295771, 37.897817 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895989 ], [ -122.295427, 37.896124 ], [ -122.294912, 37.894498 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896124 ], [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895989 ], [ -122.295427, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892737 ], [ -122.296114, 37.892534 ], [ -122.296629, 37.894160 ], [ -122.295771, 37.894295 ], [ -122.295256, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.295256, 37.892737 ], [ -122.296114, 37.892534 ], [ -122.296629, 37.894160 ], [ -122.295771, 37.894295 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.892534 ], [ -122.296972, 37.892399 ], [ -122.297487, 37.893957 ], [ -122.296629, 37.894160 ], [ -122.296114, 37.892534 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296629, 37.894160 ], [ -122.296114, 37.892534 ], [ -122.296972, 37.892399 ], [ -122.297487, 37.893957 ], [ -122.296629, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.892873 ], [ -122.295256, 37.892737 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ], [ -122.294397, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.294397, 37.892873 ], [ -122.295256, 37.892737 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898427 ], [ -122.292852, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293711, 37.898562 ], [ -122.293711, 37.898698 ], [ -122.292852, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898698 ], [ -122.292852, 37.898427 ], [ -122.292852, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293711, 37.898562 ], [ -122.293711, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897750 ], [ -122.292681, 37.897750 ], [ -122.292681, 37.896734 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.897750 ], [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897750 ], [ -122.292681, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291651, 37.898156 ], [ -122.291737, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292681, 37.898359 ], [ -122.291651, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.291651, 37.898156 ], [ -122.291737, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292681, 37.898359 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.897953 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896734 ], [ -122.291651, 37.898156 ], [ -122.290792, 37.897953 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291651, 37.898156 ], [ -122.290792, 37.897953 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896734 ], [ -122.291651, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289934, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290792, 37.897953 ], [ -122.289934, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.897953 ], [ -122.289934, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290792, 37.897953 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.289934, 37.897885 ], [ -122.289076, 37.897885 ], [ -122.289162, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289076, 37.897885 ], [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.289934, 37.897885 ], [ -122.289076, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293882, 37.894702 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.897750 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894905 ], [ -122.293882, 37.894702 ], [ -122.293882, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292852, 37.897750 ], [ -122.293024, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897750 ], [ -122.293024, 37.894905 ], [ -122.293882, 37.894702 ], [ -122.293882, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292852, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.293024, 37.894905 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292767, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292767, 37.894905 ], [ -122.293024, 37.894905 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894566 ], [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894566 ], [ -122.293882, 37.894702 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894905 ], [ -122.293110, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894905 ], [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293024, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292852, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.292852, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293024, 37.894905 ], [ -122.292767, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292852, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291822, 37.894905 ], [ -122.291908, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894905 ], [ -122.291908, 37.892873 ], [ -122.292852, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291822, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289248, 37.894769 ], [ -122.290106, 37.894837 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289248, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.289248, 37.894769 ], [ -122.290106, 37.894837 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290964, 37.894837 ], [ -122.291050, 37.892941 ], [ -122.291908, 37.893008 ], [ -122.291822, 37.894905 ], [ -122.290964, 37.894837 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894905 ], [ -122.290964, 37.894837 ], [ -122.291050, 37.892941 ], [ -122.291908, 37.893008 ], [ -122.291822, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.892941 ], [ -122.291050, 37.892941 ], [ -122.290964, 37.894837 ], [ -122.290106, 37.894837 ], [ -122.290192, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.894837 ], [ -122.290192, 37.892941 ], [ -122.291050, 37.892941 ], [ -122.290964, 37.894837 ], [ -122.290106, 37.894837 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289248, 37.894769 ], [ -122.289333, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290106, 37.894837 ], [ -122.289248, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.894837 ], [ -122.289248, 37.894769 ], [ -122.289333, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290106, 37.894837 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.289162, 37.896666 ], [ -122.289076, 37.897885 ], [ -122.288561, 37.897953 ], [ -122.288218, 37.898156 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.898156 ], [ -122.288218, 37.896598 ], [ -122.289162, 37.896666 ], [ -122.289076, 37.897885 ], [ -122.288561, 37.897953 ], [ -122.288218, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287188, 37.898698 ], [ -122.287273, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.898698 ], [ -122.287273, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287188, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ], [ -122.287102, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287102, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288303, 37.894769 ], [ -122.289248, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894769 ], [ -122.289248, 37.894769 ], [ -122.289162, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288218, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287359, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896598 ], [ -122.287359, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288218, 37.896598 ], [ -122.287273, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287273, 37.896598 ], [ -122.287102, 37.896598 ], [ -122.287188, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896598 ], [ -122.287188, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287273, 37.896598 ], [ -122.287102, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.289333, 37.892941 ], [ -122.289248, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ], [ -122.289333, 37.892941 ], [ -122.289248, 37.894769 ], [ -122.288303, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.288389, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287445, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894769 ], [ -122.287445, 37.892873 ], [ -122.288389, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287359, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287359, 37.894769 ], [ -122.287188, 37.894769 ], [ -122.287188, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.894769 ], [ -122.287188, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287359, 37.894769 ], [ -122.287188, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890367 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891857 ], [ -122.298603, 37.891992 ], [ -122.298088, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.891992 ], [ -122.298088, 37.890367 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891857 ], [ -122.298603, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890231 ], [ -122.299290, 37.890231 ], [ -122.299976, 37.890096 ], [ -122.299376, 37.890299 ], [ -122.299032, 37.890231 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299376, 37.890299 ], [ -122.299032, 37.890231 ], [ -122.299290, 37.890231 ], [ -122.299976, 37.890096 ], [ -122.299376, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.298088, 37.890367 ], [ -122.298174, 37.890705 ], [ -122.298603, 37.891992 ], [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ], [ -122.298088, 37.890367 ], [ -122.298174, 37.890705 ], [ -122.298603, 37.891992 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887793 ], [ -122.299204, 37.887793 ], [ -122.299976, 37.890096 ], [ -122.299032, 37.890231 ], [ -122.298260, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890231 ], [ -122.298260, 37.887793 ], [ -122.299204, 37.887793 ], [ -122.299976, 37.890096 ], [ -122.299032, 37.890231 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297831, 37.889622 ], [ -122.296972, 37.886912 ], [ -122.297831, 37.886777 ], [ -122.297831, 37.886709 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887793 ], [ -122.298174, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298088, 37.890299 ], [ -122.297831, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.297831, 37.889622 ], [ -122.296972, 37.886912 ], [ -122.297831, 37.886777 ], [ -122.297831, 37.886709 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887793 ], [ -122.298174, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298088, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297316, 37.890773 ], [ -122.297745, 37.892196 ], [ -122.296972, 37.892399 ], [ -122.296286, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.892399 ], [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297316, 37.890773 ], [ -122.297745, 37.892196 ], [ -122.296972, 37.892399 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890502 ], [ -122.296286, 37.890434 ], [ -122.296972, 37.892399 ], [ -122.296114, 37.892534 ], [ -122.295427, 37.890502 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.892534 ], [ -122.295427, 37.890502 ], [ -122.296286, 37.890434 ], [ -122.296972, 37.892399 ], [ -122.296114, 37.892534 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890570 ], [ -122.295427, 37.890502 ], [ -122.296114, 37.892534 ], [ -122.295256, 37.892737 ], [ -122.294569, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892737 ], [ -122.294569, 37.890570 ], [ -122.295427, 37.890502 ], [ -122.296114, 37.892534 ], [ -122.295256, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294569, 37.890570 ], [ -122.295256, 37.892737 ], [ -122.294397, 37.892873 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294569, 37.890570 ], [ -122.295256, 37.892737 ], [ -122.294397, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887115 ], [ -122.296972, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297144, 37.890367 ], [ -122.296114, 37.887115 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.296114, 37.887115 ], [ -122.296972, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297144, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.296114, 37.887115 ], [ -122.297144, 37.890367 ], [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ], [ -122.296114, 37.887115 ], [ -122.297144, 37.890367 ], [ -122.296286, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295427, 37.890434 ], [ -122.294483, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890434 ], [ -122.294483, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295427, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294483, 37.887386 ], [ -122.295427, 37.890434 ], [ -122.294569, 37.890502 ], [ -122.293625, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890502 ], [ -122.293625, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294483, 37.887386 ], [ -122.295427, 37.890434 ], [ -122.294569, 37.890502 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.883254 ], [ -122.299032, 37.883051 ], [ -122.300234, 37.882915 ], [ -122.300320, 37.883051 ], [ -122.300320, 37.883254 ], [ -122.300062, 37.883389 ], [ -122.299805, 37.884135 ], [ -122.298346, 37.884406 ], [ -122.298002, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298346, 37.884406 ], [ -122.298002, 37.883254 ], [ -122.299032, 37.883051 ], [ -122.300234, 37.882915 ], [ -122.300320, 37.883051 ], [ -122.300320, 37.883254 ], [ -122.300062, 37.883389 ], [ -122.299805, 37.884135 ], [ -122.298346, 37.884406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293539, 37.884541 ], [ -122.294397, 37.884338 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.887318 ], [ -122.293539, 37.884541 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.884338 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883999 ], [ -122.296886, 37.883864 ], [ -122.297831, 37.886709 ], [ -122.296972, 37.886844 ], [ -122.296028, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.886844 ], [ -122.296028, 37.883999 ], [ -122.296886, 37.883864 ], [ -122.297831, 37.886709 ], [ -122.296972, 37.886844 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.296028, 37.883999 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.886980 ], [ -122.295170, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.886980 ], [ -122.295170, 37.884202 ], [ -122.296028, 37.883999 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296114, 37.886980 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887183 ], [ -122.294397, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296114, 37.886980 ], [ -122.295256, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.882983 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884202 ], [ -122.294397, 37.884338 ], [ -122.293882, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.884338 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884202 ], [ -122.294397, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.891044 ], [ -122.293882, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293196, 37.891044 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293196, 37.891044 ], [ -122.293882, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291994, 37.890705 ], [ -122.292938, 37.890638 ], [ -122.292852, 37.892873 ], [ -122.291908, 37.892873 ], [ -122.291994, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.291994, 37.890705 ], [ -122.292938, 37.890638 ], [ -122.292852, 37.892873 ], [ -122.291908, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.292767, 37.887793 ], [ -122.292767, 37.887657 ], [ -122.293625, 37.887657 ], [ -122.293625, 37.887522 ], [ -122.294569, 37.890502 ], [ -122.293711, 37.890570 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890570 ], [ -122.293625, 37.890434 ], [ -122.292767, 37.887793 ], [ -122.292767, 37.887657 ], [ -122.293625, 37.887657 ], [ -122.294569, 37.890502 ], [ -122.293711, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293196, 37.889825 ], [ -122.293711, 37.890570 ], [ -122.292938, 37.890570 ], [ -122.292166, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293196, 37.889825 ], [ -122.293711, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.888064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.291136, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.892941 ], [ -122.291136, 37.890705 ], [ -122.291994, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.291050, 37.892941 ], [ -122.291136, 37.890705 ], [ -122.291994, 37.890705 ], [ -122.291908, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290277, 37.890773 ], [ -122.291136, 37.890705 ], [ -122.291050, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290277, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.892941 ], [ -122.290277, 37.890773 ], [ -122.291136, 37.890705 ], [ -122.291050, 37.892941 ], [ -122.290192, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289419, 37.890841 ], [ -122.290277, 37.890773 ], [ -122.290192, 37.892941 ], [ -122.289333, 37.892941 ], [ -122.289419, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.892941 ], [ -122.289419, 37.890841 ], [ -122.290277, 37.890773 ], [ -122.290192, 37.892941 ], [ -122.289333, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288904, 37.890841 ], [ -122.289419, 37.890841 ], [ -122.289333, 37.892941 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.892941 ], [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288904, 37.890841 ], [ -122.289419, 37.890841 ], [ -122.289333, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.291136, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.890705 ], [ -122.290792, 37.890773 ], [ -122.290106, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890773 ], [ -122.290106, 37.888267 ], [ -122.291136, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.890705 ], [ -122.290792, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890773 ], [ -122.289934, 37.890773 ], [ -122.289162, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289934, 37.890773 ], [ -122.289162, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890773 ], [ -122.289934, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289162, 37.888470 ], [ -122.289934, 37.890773 ], [ -122.288904, 37.890841 ], [ -122.288303, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288904, 37.890841 ], [ -122.288303, 37.888673 ], [ -122.289162, 37.888470 ], [ -122.289934, 37.890773 ], [ -122.288904, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.884677 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.887318 ], [ -122.293625, 37.887522 ], [ -122.292681, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887522 ], [ -122.292681, 37.884677 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.887318 ], [ -122.293625, 37.887522 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.884880 ], [ -122.292681, 37.884677 ], [ -122.293625, 37.887522 ], [ -122.293625, 37.887657 ], [ -122.292767, 37.887657 ], [ -122.291822, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.887657 ], [ -122.291822, 37.884880 ], [ -122.292681, 37.884677 ], [ -122.293625, 37.887522 ], [ -122.293625, 37.887657 ], [ -122.292767, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.291565, 37.884948 ], [ -122.292509, 37.887725 ], [ -122.292166, 37.887793 ], [ -122.291222, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887793 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884948 ], [ -122.292509, 37.887725 ], [ -122.292166, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293367, 37.884202 ], [ -122.293024, 37.883051 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.884338 ], [ -122.293539, 37.884541 ], [ -122.293367, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293539, 37.884541 ], [ -122.293367, 37.884202 ], [ -122.293024, 37.883051 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.884338 ], [ -122.293539, 37.884541 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.884406 ], [ -122.292080, 37.883186 ], [ -122.293024, 37.883051 ], [ -122.293539, 37.884541 ], [ -122.292681, 37.884677 ], [ -122.292595, 37.884406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.884677 ], [ -122.292595, 37.884406 ], [ -122.292080, 37.883186 ], [ -122.293024, 37.883051 ], [ -122.293539, 37.884541 ], [ -122.292681, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291307, 37.883254 ], [ -122.292080, 37.883186 ], [ -122.292681, 37.884677 ], [ -122.291822, 37.884880 ], [ -122.291307, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.884880 ], [ -122.291307, 37.883254 ], [ -122.292080, 37.883186 ], [ -122.292681, 37.884677 ], [ -122.291822, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.291222, 37.885015 ], [ -122.292166, 37.887793 ], [ -122.291136, 37.887996 ], [ -122.290192, 37.885219 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.887996 ], [ -122.290192, 37.885219 ], [ -122.291222, 37.885015 ], [ -122.292166, 37.887793 ], [ -122.291136, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886031 ], [ -122.290106, 37.888199 ], [ -122.288303, 37.888606 ], [ -122.289333, 37.886031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888606 ], [ -122.289333, 37.886031 ], [ -122.290106, 37.888199 ], [ -122.288303, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886031 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.885693 ], [ -122.291136, 37.887996 ], [ -122.290106, 37.888199 ], [ -122.289333, 37.886031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888199 ], [ -122.289333, 37.886031 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.885693 ], [ -122.291136, 37.887996 ], [ -122.290106, 37.888199 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290449, 37.883254 ], [ -122.290878, 37.883322 ], [ -122.291222, 37.883999 ], [ -122.291565, 37.884948 ], [ -122.291222, 37.885015 ], [ -122.290449, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.290449, 37.883254 ], [ -122.290878, 37.883322 ], [ -122.291222, 37.883999 ], [ -122.291565, 37.884948 ], [ -122.291222, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884541 ], [ -122.290363, 37.883051 ], [ -122.290449, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885219 ], [ -122.289848, 37.884541 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.883051 ], [ -122.290449, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885219 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.289333, 37.883322 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289762, 37.884948 ], [ -122.288818, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289762, 37.884948 ], [ -122.288818, 37.884744 ], [ -122.289333, 37.883322 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289762, 37.884948 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.883051 ], [ -122.296028, 37.883051 ], [ -122.296801, 37.883525 ], [ -122.296886, 37.883864 ], [ -122.296028, 37.883999 ], [ -122.295771, 37.883051 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883999 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883051 ], [ -122.296801, 37.883525 ], [ -122.296886, 37.883864 ], [ -122.296028, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294741, 37.882780 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883999 ], [ -122.295170, 37.884202 ], [ -122.294741, 37.882780 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.294741, 37.882780 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883999 ], [ -122.295170, 37.884202 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287531, 37.890909 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288389, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287531, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.287531, 37.890909 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288389, 37.892873 ], [ -122.287445, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890976 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891315 ], [ -122.287445, 37.892873 ], [ -122.287188, 37.892873 ], [ -122.287188, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892873 ], [ -122.287188, 37.890976 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891315 ], [ -122.287445, 37.892873 ], [ -122.287188, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288132, 37.888741 ], [ -122.288818, 37.890773 ], [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888741 ], [ -122.288818, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.888606 ], [ -122.286415, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.287273, 37.888267 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.888606 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.286072, 37.888606 ], [ -122.286415, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.287273, 37.888267 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285728, 37.890976 ], [ -122.285213, 37.889554 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.285213, 37.889554 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285728, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284098, 37.889351 ], [ -122.285213, 37.889554 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.284098, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.284098, 37.889351 ], [ -122.285213, 37.889554 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891044 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282896, 37.889147 ], [ -122.283497, 37.889215 ], [ -122.284098, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ], [ -122.282896, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.282896, 37.889147 ], [ -122.283497, 37.889215 ], [ -122.284098, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.888673 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887657 ], [ -122.286072, 37.888606 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887657 ], [ -122.286072, 37.888606 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284956, 37.888538 ], [ -122.285299, 37.887386 ], [ -122.285385, 37.887386 ], [ -122.285042, 37.888538 ], [ -122.285128, 37.889486 ], [ -122.284956, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889486 ], [ -122.284956, 37.888538 ], [ -122.285299, 37.887386 ], [ -122.285385, 37.887386 ], [ -122.285042, 37.888538 ], [ -122.285128, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283754, 37.889147 ], [ -122.283754, 37.888809 ], [ -122.284355, 37.887183 ], [ -122.285299, 37.887386 ], [ -122.284956, 37.888538 ], [ -122.285128, 37.889486 ], [ -122.283754, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889486 ], [ -122.283754, 37.889147 ], [ -122.283754, 37.888809 ], [ -122.284355, 37.887183 ], [ -122.285299, 37.887386 ], [ -122.284956, 37.888538 ], [ -122.285128, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.889080 ], [ -122.282724, 37.888606 ], [ -122.283325, 37.886912 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889147 ], [ -122.282810, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282724, 37.888606 ], [ -122.283325, 37.886912 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889147 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885896 ], [ -122.289333, 37.886031 ], [ -122.288303, 37.888606 ], [ -122.288218, 37.888606 ], [ -122.289333, 37.885896 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.289333, 37.886031 ], [ -122.288303, 37.888606 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.888267 ], [ -122.287703, 37.887657 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885896 ], [ -122.288218, 37.888606 ], [ -122.287102, 37.889012 ], [ -122.287273, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287273, 37.888267 ], [ -122.287703, 37.887657 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885896 ], [ -122.288218, 37.888606 ], [ -122.287102, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.287960, 37.884541 ], [ -122.288818, 37.884744 ], [ -122.287703, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.286758, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287531, 37.887928 ], [ -122.286758, 37.887725 ], [ -122.287960, 37.884541 ], [ -122.288818, 37.884744 ], [ -122.287703, 37.887657 ], [ -122.287531, 37.887928 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286329, 37.886573 ], [ -122.286673, 37.885693 ], [ -122.287531, 37.885828 ], [ -122.287188, 37.886777 ], [ -122.286329, 37.886573 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.886777 ], [ -122.286329, 37.886573 ], [ -122.286673, 37.885693 ], [ -122.287531, 37.885828 ], [ -122.287188, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.288132, 37.884270 ], [ -122.287531, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286329, 37.886573 ], [ -122.287188, 37.886777 ], [ -122.286758, 37.887725 ], [ -122.285385, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.288132, 37.884270 ], [ -122.287531, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286329, 37.886573 ], [ -122.287188, 37.886777 ], [ -122.286758, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884541 ], [ -122.288561, 37.883051 ], [ -122.289333, 37.883322 ], [ -122.288818, 37.884744 ], [ -122.287960, 37.884541 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.287960, 37.884541 ], [ -122.288561, 37.883051 ], [ -122.289333, 37.883322 ], [ -122.288818, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.285128, 37.885354 ], [ -122.285986, 37.885557 ], [ -122.285299, 37.887386 ], [ -122.284355, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887386 ], [ -122.284355, 37.887183 ], [ -122.285128, 37.885354 ], [ -122.285986, 37.885557 ], [ -122.285299, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.885354 ], [ -122.285728, 37.883660 ], [ -122.287016, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885557 ], [ -122.285128, 37.885354 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.285128, 37.885354 ], [ -122.285728, 37.883660 ], [ -122.287016, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283583, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ], [ -122.283583, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.283583, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282724, 37.886031 ], [ -122.283239, 37.885422 ], [ -122.283325, 37.884812 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ], [ -122.282724, 37.886031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282724, 37.886031 ], [ -122.283239, 37.885422 ], [ -122.283325, 37.884812 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.884406 ], [ -122.281952, 37.884406 ], [ -122.282639, 37.882780 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882509 ], [ -122.285728, 37.883593 ], [ -122.283154, 37.884812 ], [ -122.282038, 37.885015 ], [ -122.282295, 37.884406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885015 ], [ -122.282295, 37.884406 ], [ -122.281952, 37.884406 ], [ -122.282639, 37.882780 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882509 ], [ -122.285728, 37.883593 ], [ -122.283154, 37.884812 ], [ -122.282038, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886709 ], [ -122.283325, 37.886912 ], [ -122.282724, 37.888606 ], [ -122.282810, 37.889080 ], [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886709 ], [ -122.283325, 37.886912 ], [ -122.282724, 37.888606 ], [ -122.282810, 37.889080 ], [ -122.281866, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886709 ], [ -122.282553, 37.886370 ], [ -122.282724, 37.886031 ], [ -122.283840, 37.886235 ], [ -122.283583, 37.886980 ], [ -122.282295, 37.886709 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283583, 37.886980 ], [ -122.282295, 37.886709 ], [ -122.282553, 37.886370 ], [ -122.282724, 37.886031 ], [ -122.283840, 37.886235 ], [ -122.283583, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287273, 37.882644 ], [ -122.288561, 37.883051 ], [ -122.288132, 37.884270 ], [ -122.286673, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884270 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287273, 37.882644 ], [ -122.288561, 37.883051 ], [ -122.288132, 37.884270 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.882577 ], [ -122.287188, 37.882712 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882915 ], [ -122.287188, 37.882577 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882915 ], [ -122.287188, 37.882577 ], [ -122.287188, 37.882712 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882915 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883593 ], [ -122.287016, 37.882915 ], [ -122.287102, 37.882915 ], [ -122.285728, 37.883660 ], [ -122.285728, 37.883593 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.285728, 37.883593 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883660 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882509 ], [ -122.287188, 37.882577 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883593 ], [ -122.286072, 37.882509 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883593 ], [ -122.286072, 37.882509 ], [ -122.287188, 37.882577 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883593 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 790 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.898325 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.300620, 37.898325 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301607, 37.898528 ], [ -122.300620, 37.898325 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896700 ], [ -122.301607, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300620, 37.898325 ], [ -122.300320, 37.898258 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.898325 ], [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300620, 37.898325 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.302637, 37.895684 ], [ -122.302036, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894532 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.891620 ], [ -122.303452, 37.890536 ], [ -122.303753, 37.890197 ], [ -122.303967, 37.890062 ], [ -122.304440, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.306714, 37.891721 ], [ -122.306714, 37.892026 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308989, 37.897987 ], [ -122.308817, 37.898054 ], [ -122.306199, 37.898258 ], [ -122.305341, 37.898427 ], [ -122.304611, 37.898427 ], [ -122.303753, 37.898528 ], [ -122.301650, 37.898528 ], [ -122.300920, 37.896022 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.898528 ], [ -122.300920, 37.896022 ], [ -122.302637, 37.895684 ], [ -122.302036, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894532 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.891620 ], [ -122.303452, 37.890536 ], [ -122.303753, 37.890197 ], [ -122.303967, 37.890062 ], [ -122.304440, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.306714, 37.891721 ], [ -122.306714, 37.892026 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308989, 37.897987 ], [ -122.308817, 37.898054 ], [ -122.306199, 37.898258 ], [ -122.305341, 37.898427 ], [ -122.304611, 37.898427 ], [ -122.303753, 37.898528 ], [ -122.301650, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891789 ], [ -122.303109, 37.891620 ], [ -122.303495, 37.892839 ], [ -122.303152, 37.893550 ], [ -122.303109, 37.894532 ], [ -122.302251, 37.891789 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.894532 ], [ -122.302251, 37.891789 ], [ -122.303109, 37.891620 ], [ -122.303495, 37.892839 ], [ -122.303152, 37.893550 ], [ -122.303109, 37.894532 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895684 ], [ -122.301779, 37.895853 ], [ -122.301178, 37.893990 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895853 ], [ -122.301178, 37.893990 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895684 ], [ -122.301779, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895277 ], [ -122.300491, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.301006, 37.896700 ], [ -122.300148, 37.896869 ], [ -122.299633, 37.895277 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895277 ], [ -122.300491, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.301006, 37.896700 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.895074 ], [ -122.300363, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896022 ], [ -122.300620, 37.895074 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.300620, 37.895074 ], [ -122.300363, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896022 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891958 ], [ -122.302251, 37.891789 ], [ -122.302852, 37.893652 ], [ -122.302036, 37.893821 ], [ -122.301435, 37.891958 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301435, 37.891958 ], [ -122.302251, 37.891789 ], [ -122.302852, 37.893652 ], [ -122.302036, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.301435, 37.891958 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.893990 ], [ -122.300577, 37.892128 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.300577, 37.892128 ], [ -122.301435, 37.891958 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.893990 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.893449 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.893990 ], [ -122.300363, 37.894160 ], [ -122.300105, 37.893449 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300363, 37.894160 ], [ -122.300105, 37.893449 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.893990 ], [ -122.300363, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892331 ], [ -122.299719, 37.892297 ], [ -122.300105, 37.893449 ], [ -122.299976, 37.893482 ], [ -122.299590, 37.892331 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.299590, 37.892331 ], [ -122.299719, 37.892297 ], [ -122.300105, 37.893449 ], [ -122.299976, 37.893482 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890265 ], [ -122.306628, 37.890197 ], [ -122.306328, 37.890096 ], [ -122.306156, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890807 ], [ -122.306242, 37.890265 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890807 ], [ -122.306242, 37.890265 ], [ -122.306628, 37.890197 ], [ -122.306328, 37.890096 ], [ -122.306156, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890807 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305856, 37.888978 ], [ -122.307315, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ], [ -122.305856, 37.888978 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306027, 37.889588 ], [ -122.305856, 37.888978 ], [ -122.307315, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305856, 37.888978 ], [ -122.304997, 37.889147 ], [ -122.304955, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304997, 37.889147 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305856, 37.888978 ], [ -122.304997, 37.889147 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.307315, 37.888639 ], [ -122.307315, 37.888673 ], [ -122.305856, 37.888978 ], [ -122.305813, 37.888910 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305856, 37.888978 ], [ -122.305813, 37.888910 ], [ -122.307315, 37.888639 ], [ -122.307315, 37.888673 ], [ -122.305856, 37.888978 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888267 ], [ -122.307143, 37.887962 ], [ -122.307315, 37.888639 ], [ -122.305813, 37.888910 ], [ -122.305598, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.305598, 37.888267 ], [ -122.307143, 37.887962 ], [ -122.307315, 37.888639 ], [ -122.305813, 37.888910 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305341, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.306070, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307014, 37.887522 ], [ -122.307143, 37.887962 ], [ -122.305598, 37.888267 ], [ -122.305341, 37.887488 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888267 ], [ -122.305341, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.306070, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307014, 37.887522 ], [ -122.307143, 37.887962 ], [ -122.305598, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.303324, 37.889452 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.890841 ], [ -122.303109, 37.891620 ], [ -122.302465, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.891620 ], [ -122.302465, 37.889622 ], [ -122.303324, 37.889452 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.890841 ], [ -122.303109, 37.891620 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889452 ], [ -122.305856, 37.888978 ], [ -122.306027, 37.889588 ], [ -122.304182, 37.889994 ], [ -122.303753, 37.890197 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890367 ], [ -122.303324, 37.889452 ], [ -122.305856, 37.888978 ], [ -122.306027, 37.889588 ], [ -122.304182, 37.889994 ], [ -122.303753, 37.890197 ], [ -122.303581, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304997, 37.889147 ], [ -122.304139, 37.889283 ], [ -122.304139, 37.889249 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889283 ], [ -122.304139, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304997, 37.889147 ], [ -122.304139, 37.889283 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304482, 37.887522 ], [ -122.305341, 37.887488 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ], [ -122.304482, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304482, 37.887522 ], [ -122.305341, 37.887488 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887556 ], [ -122.304482, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304139, 37.889249 ], [ -122.303581, 37.887556 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889249 ], [ -122.303581, 37.887556 ], [ -122.304482, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304139, 37.889249 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304139, 37.889249 ], [ -122.303281, 37.889418 ], [ -122.302723, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889418 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304139, 37.889249 ], [ -122.303281, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303109, 37.891620 ], [ -122.302251, 37.891789 ], [ -122.301650, 37.889791 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891789 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303109, 37.891620 ], [ -122.302251, 37.891789 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.302251, 37.891789 ], [ -122.301435, 37.891958 ], [ -122.300792, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891958 ], [ -122.300792, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.302251, 37.891789 ], [ -122.301435, 37.891958 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.891823 ], [ -122.299075, 37.890265 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892297 ], [ -122.299547, 37.891823 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892297 ], [ -122.299547, 37.891823 ], [ -122.299075, 37.890265 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.300792, 37.889960 ], [ -122.301435, 37.891958 ], [ -122.300577, 37.892128 ], [ -122.299933, 37.890130 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.299933, 37.890130 ], [ -122.300792, 37.889960 ], [ -122.301435, 37.891958 ], [ -122.300577, 37.892128 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301822, 37.887623 ], [ -122.302723, 37.887589 ], [ -122.303281, 37.889418 ], [ -122.302465, 37.889588 ], [ -122.301822, 37.887623 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889588 ], [ -122.301822, 37.887623 ], [ -122.302723, 37.887589 ], [ -122.303281, 37.889418 ], [ -122.302465, 37.889588 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300706, 37.887759 ], [ -122.301822, 37.887623 ], [ -122.302465, 37.889588 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ], [ -122.300706, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.300706, 37.887759 ], [ -122.301822, 37.887623 ], [ -122.302465, 37.889588 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300062, 37.887725 ], [ -122.300706, 37.887759 ], [ -122.301650, 37.889791 ], [ -122.300792, 37.889960 ], [ -122.300062, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300706, 37.887759 ], [ -122.301650, 37.889791 ], [ -122.300792, 37.889960 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299204, 37.887759 ], [ -122.300062, 37.887725 ], [ -122.300792, 37.889926 ], [ -122.299933, 37.890096 ], [ -122.299204, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890096 ], [ -122.299204, 37.887759 ], [ -122.300062, 37.887725 ], [ -122.300792, 37.889926 ], [ -122.299933, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300963, 37.887657 ], [ -122.300534, 37.886336 ], [ -122.302337, 37.886031 ], [ -122.304611, 37.885862 ], [ -122.304482, 37.885354 ], [ -122.306800, 37.885591 ], [ -122.307186, 37.887081 ], [ -122.305856, 37.887318 ], [ -122.302079, 37.887522 ], [ -122.302122, 37.887623 ], [ -122.300706, 37.887759 ], [ -122.300963, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300706, 37.887759 ], [ -122.300963, 37.887657 ], [ -122.300534, 37.886336 ], [ -122.302337, 37.886031 ], [ -122.304611, 37.885862 ], [ -122.304482, 37.885354 ], [ -122.306800, 37.885591 ], [ -122.307186, 37.887081 ], [ -122.305856, 37.887318 ], [ -122.302079, 37.887522 ], [ -122.302122, 37.887623 ], [ -122.300706, 37.887759 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884744 ], [ -122.303624, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304611, 37.885862 ], [ -122.304225, 37.885896 ], [ -122.303925, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304225, 37.885896 ], [ -122.303925, 37.884744 ], [ -122.303624, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304611, 37.885862 ], [ -122.304225, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304482, 37.885354 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303452, 37.882881 ], [ -122.302637, 37.883085 ], [ -122.302380, 37.882509 ], [ -122.302766, 37.882475 ], [ -122.303324, 37.882306 ], [ -122.305255, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306800, 37.885591 ], [ -122.304482, 37.885354 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306800, 37.885591 ], [ -122.304482, 37.885354 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303452, 37.882881 ], [ -122.302637, 37.883085 ], [ -122.302380, 37.882509 ], [ -122.302766, 37.882475 ], [ -122.303324, 37.882306 ], [ -122.305255, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306800, 37.885591 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.883728 ], [ -122.303624, 37.883660 ], [ -122.304225, 37.885896 ], [ -122.303967, 37.885896 ], [ -122.303324, 37.883728 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303967, 37.885896 ], [ -122.303324, 37.883728 ], [ -122.303624, 37.883660 ], [ -122.304225, 37.885896 ], [ -122.303967, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.303967, 37.885896 ], [ -122.303452, 37.885964 ], [ -122.302980, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303452, 37.885964 ], [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.303967, 37.885896 ], [ -122.303452, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.884440 ], [ -122.299933, 37.884067 ], [ -122.299805, 37.884101 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.301006, 37.883423 ], [ -122.301006, 37.883356 ], [ -122.302079, 37.883119 ], [ -122.302637, 37.883085 ], [ -122.302980, 37.883796 ], [ -122.303452, 37.885964 ], [ -122.301822, 37.886099 ], [ -122.300534, 37.886336 ], [ -122.299933, 37.884440 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300534, 37.886336 ], [ -122.299933, 37.884440 ], [ -122.299933, 37.884067 ], [ -122.299805, 37.884101 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.301006, 37.883423 ], [ -122.301006, 37.883356 ], [ -122.302079, 37.883119 ], [ -122.302637, 37.883085 ], [ -122.302980, 37.883796 ], [ -122.303452, 37.885964 ], [ -122.301822, 37.886099 ], [ -122.300534, 37.886336 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302637, 37.883085 ], [ -122.303452, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302980, 37.883796 ], [ -122.302637, 37.883085 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.302637, 37.883085 ], [ -122.303452, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302980, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300363, 37.883254 ], [ -122.300277, 37.883119 ], [ -122.300234, 37.882881 ], [ -122.301092, 37.882780 ], [ -122.302337, 37.882509 ], [ -122.302637, 37.883085 ], [ -122.302079, 37.883119 ], [ -122.301006, 37.883356 ], [ -122.301006, 37.883423 ], [ -122.300363, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883423 ], [ -122.300363, 37.883254 ], [ -122.300277, 37.883119 ], [ -122.300234, 37.882881 ], [ -122.301092, 37.882780 ], [ -122.302337, 37.882509 ], [ -122.302637, 37.883085 ], [ -122.302079, 37.883119 ], [ -122.301006, 37.883356 ], [ -122.301006, 37.883423 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298474, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.299418, 37.898325 ], [ -122.298861, 37.898495 ], [ -122.298474, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298474, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.299418, 37.898325 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897411 ], [ -122.298474, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298045, 37.898766 ], [ -122.297616, 37.897411 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898766 ], [ -122.297616, 37.897411 ], [ -122.298474, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298045, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.297616, 37.897411 ], [ -122.298045, 37.898766 ], [ -122.297788, 37.898833 ], [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ], [ -122.297616, 37.897411 ], [ -122.298045, 37.898766 ], [ -122.297788, 37.898833 ], [ -122.297230, 37.898901 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.897783 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296243, 37.898935 ], [ -122.295728, 37.897783 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.898935 ], [ -122.295728, 37.897783 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296243, 37.898935 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895955 ], [ -122.297101, 37.895785 ], [ -122.297616, 37.897411 ], [ -122.296801, 37.897546 ], [ -122.296286, 37.895955 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895955 ], [ -122.297101, 37.895785 ], [ -122.297616, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896090 ], [ -122.296286, 37.895955 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ], [ -122.295427, 37.896090 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295942, 37.897750 ], [ -122.295427, 37.896090 ], [ -122.296286, 37.895955 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299633, 37.895277 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895277 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297959, 37.895616 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298474, 37.897208 ], [ -122.297959, 37.895616 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298474, 37.897208 ], [ -122.297959, 37.895616 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298474, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299075, 37.893652 ], [ -122.299633, 37.895277 ], [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299075, 37.893652 ], [ -122.299633, 37.895277 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297101, 37.895785 ], [ -122.297959, 37.895616 ], [ -122.298474, 37.897208 ], [ -122.297616, 37.897411 ], [ -122.297101, 37.895785 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897411 ], [ -122.297101, 37.895785 ], [ -122.297959, 37.895616 ], [ -122.298474, 37.897208 ], [ -122.297616, 37.897411 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297444, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297959, 37.895616 ], [ -122.297444, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297959, 37.895616 ], [ -122.297444, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297959, 37.895616 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296586, 37.894126 ], [ -122.297444, 37.893957 ], [ -122.297959, 37.895616 ], [ -122.297101, 37.895785 ], [ -122.296586, 37.894126 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297101, 37.895785 ], [ -122.296586, 37.894126 ], [ -122.297444, 37.893957 ], [ -122.297959, 37.895616 ], [ -122.297101, 37.895785 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893652 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895074 ], [ -122.299633, 37.895277 ], [ -122.299075, 37.893652 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895277 ], [ -122.299075, 37.893652 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895074 ], [ -122.299633, 37.895277 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299075, 37.893652 ], [ -122.298560, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893652 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299075, 37.893652 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893652 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893652 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.892365 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297444, 37.893957 ], [ -122.296929, 37.892365 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297444, 37.893957 ], [ -122.296929, 37.892365 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297444, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.296586, 37.894126 ], [ -122.297101, 37.895785 ], [ -122.296286, 37.895955 ], [ -122.295771, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895955 ], [ -122.295771, 37.894295 ], [ -122.296586, 37.894126 ], [ -122.297101, 37.895785 ], [ -122.296286, 37.895955 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294612, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295728, 37.897783 ], [ -122.294612, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.897783 ], [ -122.294612, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295728, 37.897783 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895955 ], [ -122.295427, 37.896090 ], [ -122.294912, 37.894498 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896090 ], [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895955 ], [ -122.295427, 37.896090 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892704 ], [ -122.296071, 37.892534 ], [ -122.296586, 37.894126 ], [ -122.295771, 37.894295 ], [ -122.295256, 37.892704 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.295256, 37.892704 ], [ -122.296071, 37.892534 ], [ -122.296586, 37.894126 ], [ -122.295771, 37.894295 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892534 ], [ -122.296929, 37.892365 ], [ -122.297444, 37.893957 ], [ -122.296586, 37.894126 ], [ -122.296071, 37.892534 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296586, 37.894126 ], [ -122.296071, 37.892534 ], [ -122.296929, 37.892365 ], [ -122.297444, 37.893957 ], [ -122.296586, 37.894126 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892873 ], [ -122.295256, 37.892704 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ], [ -122.294354, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.294354, 37.892873 ], [ -122.295256, 37.892704 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.898427 ], [ -122.292852, 37.898393 ], [ -122.292852, 37.897716 ], [ -122.293754, 37.897716 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898664 ], [ -122.293196, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898664 ], [ -122.293196, 37.898427 ], [ -122.292852, 37.898393 ], [ -122.292852, 37.897716 ], [ -122.293754, 37.897716 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898664 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897716 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.896734 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.897716 ], [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897716 ], [ -122.292638, 37.897716 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291994, 37.898258 ], [ -122.291608, 37.898122 ], [ -122.291737, 37.896700 ], [ -122.292681, 37.896734 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.898359 ], [ -122.291994, 37.898258 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.291994, 37.898258 ], [ -122.291608, 37.898122 ], [ -122.291737, 37.896700 ], [ -122.292681, 37.896734 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.898359 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.897953 ], [ -122.290750, 37.897919 ], [ -122.290835, 37.896666 ], [ -122.291737, 37.896700 ], [ -122.291608, 37.898122 ], [ -122.291093, 37.897953 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291608, 37.898122 ], [ -122.291093, 37.897953 ], [ -122.290750, 37.897919 ], [ -122.290835, 37.896666 ], [ -122.291737, 37.896700 ], [ -122.291608, 37.898122 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.897851 ], [ -122.289977, 37.896666 ], [ -122.290835, 37.896666 ], [ -122.290750, 37.897919 ], [ -122.289891, 37.897851 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290750, 37.897919 ], [ -122.289891, 37.897851 ], [ -122.289977, 37.896666 ], [ -122.290835, 37.896666 ], [ -122.290750, 37.897919 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.289977, 37.896666 ], [ -122.289891, 37.897851 ], [ -122.289033, 37.897885 ], [ -122.289119, 37.896632 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289033, 37.897885 ], [ -122.289119, 37.896632 ], [ -122.289977, 37.896666 ], [ -122.289891, 37.897851 ], [ -122.289033, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293754, 37.897716 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294612, 37.897750 ], [ -122.293754, 37.897716 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294612, 37.897750 ], [ -122.293754, 37.897716 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294612, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894871 ], [ -122.293882, 37.894702 ], [ -122.293839, 37.895311 ], [ -122.293754, 37.897716 ], [ -122.292852, 37.897716 ], [ -122.293024, 37.894871 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897716 ], [ -122.293024, 37.894871 ], [ -122.293882, 37.894702 ], [ -122.293839, 37.895311 ], [ -122.293754, 37.897716 ], [ -122.292852, 37.897716 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894871 ], [ -122.293024, 37.894871 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292767, 37.894871 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292767, 37.894871 ], [ -122.293024, 37.894871 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894702 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892839 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894871 ], [ -122.293110, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894871 ], [ -122.293110, 37.892839 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892839 ], [ -122.293110, 37.892839 ], [ -122.293024, 37.894871 ], [ -122.292767, 37.894871 ], [ -122.292852, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894871 ], [ -122.292852, 37.892839 ], [ -122.293110, 37.892839 ], [ -122.293024, 37.894871 ], [ -122.292767, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892839 ], [ -122.292852, 37.892839 ], [ -122.292767, 37.894871 ], [ -122.291822, 37.894871 ], [ -122.291908, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894871 ], [ -122.291908, 37.892839 ], [ -122.292852, 37.892839 ], [ -122.292767, 37.894871 ], [ -122.291822, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894803 ], [ -122.289977, 37.896666 ], [ -122.289119, 37.896632 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896666 ], [ -122.289119, 37.896632 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894803 ], [ -122.289977, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894837 ], [ -122.291007, 37.892941 ], [ -122.291908, 37.892974 ], [ -122.291822, 37.894871 ], [ -122.290921, 37.894837 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894871 ], [ -122.290921, 37.894837 ], [ -122.291007, 37.892941 ], [ -122.291908, 37.892974 ], [ -122.291822, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894803 ], [ -122.290149, 37.892907 ], [ -122.291007, 37.892941 ], [ -122.290921, 37.894837 ], [ -122.290063, 37.894803 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894837 ], [ -122.290063, 37.894803 ], [ -122.290149, 37.892907 ], [ -122.291007, 37.892941 ], [ -122.290921, 37.894837 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.289290, 37.892907 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894803 ], [ -122.289205, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894803 ], [ -122.289205, 37.894769 ], [ -122.289290, 37.892907 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894803 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.289119, 37.896632 ], [ -122.289033, 37.897885 ], [ -122.288518, 37.897953 ], [ -122.288175, 37.898122 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.898122 ], [ -122.288218, 37.896598 ], [ -122.289119, 37.896632 ], [ -122.289033, 37.897885 ], [ -122.288518, 37.897953 ], [ -122.288175, 37.898122 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.288175, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287145, 37.898664 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.898664 ], [ -122.287273, 37.896564 ], [ -122.288175, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287145, 37.898664 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ], [ -122.287102, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287102, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289119, 37.896632 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289119, 37.896632 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.287359, 37.894736 ], [ -122.288260, 37.894736 ], [ -122.288175, 37.896598 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.287273, 37.896564 ], [ -122.287359, 37.894736 ], [ -122.288260, 37.894736 ], [ -122.288175, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287273, 37.896564 ], [ -122.287102, 37.896564 ], [ -122.287145, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896564 ], [ -122.287145, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287273, 37.896564 ], [ -122.287102, 37.896564 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894736 ], [ -122.288432, 37.892873 ], [ -122.289290, 37.892907 ], [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ], [ -122.288432, 37.892873 ], [ -122.289290, 37.892907 ], [ -122.289205, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892839 ], [ -122.288346, 37.892873 ], [ -122.288260, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287445, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894736 ], [ -122.287445, 37.892839 ], [ -122.288346, 37.892873 ], [ -122.288260, 37.894736 ], [ -122.287359, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892839 ], [ -122.287445, 37.892839 ], [ -122.287359, 37.894736 ], [ -122.287145, 37.894736 ], [ -122.287188, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894736 ], [ -122.287188, 37.892839 ], [ -122.287445, 37.892839 ], [ -122.287359, 37.894736 ], [ -122.287145, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298946, 37.890299 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ], [ -122.298946, 37.890299 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.299290, 37.890197 ], [ -122.299933, 37.890096 ], [ -122.299933, 37.890130 ], [ -122.299333, 37.890265 ], [ -122.299075, 37.890265 ], [ -122.299032, 37.890197 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.890265 ], [ -122.299032, 37.890197 ], [ -122.299290, 37.890197 ], [ -122.299933, 37.890096 ], [ -122.299933, 37.890130 ], [ -122.299333, 37.890265 ], [ -122.299075, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298174, 37.890671 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298174, 37.890671 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.299204, 37.887759 ], [ -122.299933, 37.890096 ], [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ], [ -122.299204, 37.887759 ], [ -122.299933, 37.890096 ], [ -122.299032, 37.890197 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297831, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297788, 37.886743 ], [ -122.297788, 37.886675 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298045, 37.890265 ], [ -122.297831, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890265 ], [ -122.297831, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297788, 37.886743 ], [ -122.297788, 37.886675 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298045, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892196 ], [ -122.296929, 37.892365 ], [ -122.296286, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.892365 ], [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892196 ], [ -122.296929, 37.892365 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890468 ], [ -122.296286, 37.890434 ], [ -122.296929, 37.892365 ], [ -122.296071, 37.892534 ], [ -122.295427, 37.890468 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892534 ], [ -122.295427, 37.890468 ], [ -122.296286, 37.890434 ], [ -122.296929, 37.892365 ], [ -122.296071, 37.892534 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294526, 37.890536 ], [ -122.295427, 37.890468 ], [ -122.296071, 37.892534 ], [ -122.295256, 37.892704 ], [ -122.294526, 37.890536 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892704 ], [ -122.294526, 37.890536 ], [ -122.295427, 37.890468 ], [ -122.296071, 37.892534 ], [ -122.295256, 37.892704 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294526, 37.890536 ], [ -122.295256, 37.892704 ], [ -122.294354, 37.892873 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294526, 37.890536 ], [ -122.295256, 37.892704 ], [ -122.294354, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887081 ], [ -122.296929, 37.886878 ], [ -122.298045, 37.890265 ], [ -122.297144, 37.890333 ], [ -122.296114, 37.887081 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890333 ], [ -122.296114, 37.887081 ], [ -122.296929, 37.886878 ], [ -122.298045, 37.890265 ], [ -122.297144, 37.890333 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.296114, 37.887081 ], [ -122.297144, 37.890333 ], [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ], [ -122.296114, 37.887081 ], [ -122.297144, 37.890333 ], [ -122.296286, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294440, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295384, 37.890434 ], [ -122.294440, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.294440, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295384, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294440, 37.887386 ], [ -122.295384, 37.890434 ], [ -122.294526, 37.890502 ], [ -122.293582, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294526, 37.890502 ], [ -122.293582, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294440, 37.887386 ], [ -122.295384, 37.890434 ], [ -122.294526, 37.890502 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300234, 37.882881 ], [ -122.300320, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299805, 37.884101 ], [ -122.298303, 37.884406 ], [ -122.298002, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298303, 37.884406 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300234, 37.882881 ], [ -122.300320, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299805, 37.884101 ], [ -122.298303, 37.884406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293496, 37.884507 ], [ -122.294354, 37.884338 ], [ -122.295213, 37.887183 ], [ -122.294397, 37.887318 ], [ -122.293496, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293496, 37.884507 ], [ -122.294354, 37.884338 ], [ -122.295213, 37.887183 ], [ -122.294397, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.296886, 37.883830 ], [ -122.297788, 37.886675 ], [ -122.296929, 37.886844 ], [ -122.295985, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886844 ], [ -122.295985, 37.883999 ], [ -122.296886, 37.883830 ], [ -122.297788, 37.886675 ], [ -122.296929, 37.886844 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296929, 37.886844 ], [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296929, 37.886844 ], [ -122.296071, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.884338 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887183 ], [ -122.294354, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887183 ], [ -122.294354, 37.884338 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.882949 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294354, 37.884338 ], [ -122.293882, 37.882949 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.884338 ], [ -122.293882, 37.882949 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294354, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892839 ], [ -122.293153, 37.891044 ], [ -122.293839, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293110, 37.892839 ], [ -122.293153, 37.891044 ], [ -122.293839, 37.891992 ], [ -122.294140, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291951, 37.890671 ], [ -122.292895, 37.890604 ], [ -122.292852, 37.892839 ], [ -122.291908, 37.892839 ], [ -122.291951, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892839 ], [ -122.291951, 37.890671 ], [ -122.292895, 37.890604 ], [ -122.292852, 37.892839 ], [ -122.291908, 37.892839 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.292724, 37.887759 ], [ -122.292724, 37.887657 ], [ -122.293582, 37.887657 ], [ -122.293582, 37.887522 ], [ -122.294526, 37.890502 ], [ -122.293711, 37.890536 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890536 ], [ -122.293625, 37.890434 ], [ -122.292724, 37.887759 ], [ -122.292724, 37.887657 ], [ -122.293582, 37.887657 ], [ -122.293582, 37.887522 ], [ -122.294526, 37.890502 ], [ -122.293711, 37.890536 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890536 ], [ -122.292895, 37.890570 ], [ -122.292809, 37.890028 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293153, 37.889825 ], [ -122.293711, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.293625, 37.890536 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.293625, 37.890536 ], [ -122.292895, 37.890570 ], [ -122.292809, 37.890028 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293153, 37.889825 ], [ -122.293711, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890570 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.888064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.291093, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890570 ], [ -122.291908, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291007, 37.892941 ], [ -122.291093, 37.890705 ], [ -122.291951, 37.890671 ], [ -122.291908, 37.892974 ], [ -122.291007, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892974 ], [ -122.291007, 37.892941 ], [ -122.291093, 37.890705 ], [ -122.291951, 37.890671 ], [ -122.291908, 37.892974 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290149, 37.892907 ], [ -122.290277, 37.890739 ], [ -122.291093, 37.890705 ], [ -122.291007, 37.892941 ], [ -122.290149, 37.892907 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291007, 37.892941 ], [ -122.290149, 37.892907 ], [ -122.290277, 37.890739 ], [ -122.291093, 37.890705 ], [ -122.291007, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289419, 37.890807 ], [ -122.290277, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892907 ], [ -122.289419, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892907 ], [ -122.289419, 37.890807 ], [ -122.290277, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892907 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288432, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288818, 37.891078 ], [ -122.288861, 37.890841 ], [ -122.289419, 37.890807 ], [ -122.289290, 37.892907 ], [ -122.288432, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892907 ], [ -122.288432, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288818, 37.891078 ], [ -122.288861, 37.890841 ], [ -122.289419, 37.890807 ], [ -122.289290, 37.892907 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.890671 ], [ -122.291093, 37.890705 ], [ -122.290792, 37.890739 ], [ -122.290106, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890739 ], [ -122.290106, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.890671 ], [ -122.291093, 37.890705 ], [ -122.290792, 37.890739 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890739 ], [ -122.289891, 37.890773 ], [ -122.289119, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.890773 ], [ -122.289119, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890739 ], [ -122.289891, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888876 ], [ -122.288260, 37.888673 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890739 ], [ -122.288861, 37.890841 ], [ -122.288260, 37.888876 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890841 ], [ -122.288260, 37.888876 ], [ -122.288260, 37.888673 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890739 ], [ -122.288861, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.293496, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293582, 37.887522 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.887522 ], [ -122.292638, 37.884677 ], [ -122.293496, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293582, 37.887522 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884880 ], [ -122.292638, 37.884677 ], [ -122.293582, 37.887522 ], [ -122.293582, 37.887657 ], [ -122.292724, 37.887657 ], [ -122.291780, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292724, 37.887657 ], [ -122.291780, 37.884880 ], [ -122.292638, 37.884677 ], [ -122.293582, 37.887522 ], [ -122.293582, 37.887657 ], [ -122.292724, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887725 ], [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887725 ], [ -122.292123, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293367, 37.884202 ], [ -122.292981, 37.883051 ], [ -122.293882, 37.882949 ], [ -122.294354, 37.884338 ], [ -122.293496, 37.884507 ], [ -122.293367, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293496, 37.884507 ], [ -122.293367, 37.884202 ], [ -122.292981, 37.883051 ], [ -122.293882, 37.882949 ], [ -122.294354, 37.884338 ], [ -122.293496, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292552, 37.884406 ], [ -122.292080, 37.883152 ], [ -122.292509, 37.883152 ], [ -122.292981, 37.883051 ], [ -122.293496, 37.884507 ], [ -122.292638, 37.884677 ], [ -122.292552, 37.884406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292552, 37.884406 ], [ -122.292080, 37.883152 ], [ -122.292509, 37.883152 ], [ -122.292981, 37.883051 ], [ -122.293496, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291265, 37.883254 ], [ -122.292080, 37.883152 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884880 ], [ -122.291265, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884880 ], [ -122.291265, 37.883254 ], [ -122.292080, 37.883152 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291093, 37.887996 ], [ -122.290192, 37.885219 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.887996 ], [ -122.290192, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291093, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885998 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ], [ -122.289333, 37.885998 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.289333, 37.885998 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885998 ], [ -122.289848, 37.884507 ], [ -122.290363, 37.885693 ], [ -122.291093, 37.887996 ], [ -122.290063, 37.888199 ], [ -122.289333, 37.885998 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.289333, 37.885998 ], [ -122.289848, 37.884507 ], [ -122.290363, 37.885693 ], [ -122.291093, 37.887996 ], [ -122.290063, 37.888199 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290406, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291179, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ], [ -122.290406, 37.883220 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.290406, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291179, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884507 ], [ -122.290320, 37.883051 ], [ -122.290320, 37.883220 ], [ -122.290406, 37.883220 ], [ -122.291179, 37.884981 ], [ -122.290192, 37.885219 ], [ -122.289848, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.289848, 37.884507 ], [ -122.290320, 37.883051 ], [ -122.290320, 37.883220 ], [ -122.290406, 37.883220 ], [ -122.291179, 37.884981 ], [ -122.290192, 37.885219 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.884710 ], [ -122.289333, 37.883288 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289720, 37.884914 ], [ -122.288775, 37.884710 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289720, 37.884914 ], [ -122.288775, 37.884710 ], [ -122.289333, 37.883288 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289720, 37.884914 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.883017 ], [ -122.295985, 37.883051 ], [ -122.296114, 37.883085 ], [ -122.296371, 37.883356 ], [ -122.296758, 37.883525 ], [ -122.296886, 37.883830 ], [ -122.295985, 37.883999 ], [ -122.295728, 37.883017 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883051 ], [ -122.296114, 37.883085 ], [ -122.296371, 37.883356 ], [ -122.296758, 37.883525 ], [ -122.296886, 37.883830 ], [ -122.295985, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294741, 37.882780 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ], [ -122.294741, 37.882780 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.294741, 37.882780 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892839 ], [ -122.287531, 37.890909 ], [ -122.288775, 37.890841 ], [ -122.288775, 37.891044 ], [ -122.288432, 37.891484 ], [ -122.288346, 37.892873 ], [ -122.287445, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.287445, 37.892839 ], [ -122.287531, 37.890909 ], [ -122.288775, 37.890841 ], [ -122.288775, 37.891044 ], [ -122.288432, 37.891484 ], [ -122.288346, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890942 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891281 ], [ -122.287445, 37.892839 ], [ -122.287188, 37.892839 ], [ -122.287188, 37.890942 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892839 ], [ -122.287188, 37.890942 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891281 ], [ -122.287445, 37.892839 ], [ -122.287188, 37.892839 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288132, 37.888707 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888707 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287745, 37.890875 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287745, 37.890875 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889012 ], [ -122.286072, 37.888572 ], [ -122.286415, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.287273, 37.888233 ], [ -122.287102, 37.888843 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.889012 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.286072, 37.889012 ], [ -122.286072, 37.888572 ], [ -122.286415, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.287273, 37.888233 ], [ -122.287102, 37.888843 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285557, 37.890807 ], [ -122.285171, 37.889520 ], [ -122.285600, 37.889520 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ], [ -122.285171, 37.889520 ], [ -122.285600, 37.889520 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285686, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.890671 ], [ -122.284055, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889520 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.284484, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.284484, 37.890671 ], [ -122.284055, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889520 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284527, 37.891044 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889452 ], [ -122.282853, 37.889147 ], [ -122.283454, 37.889181 ], [ -122.284055, 37.889317 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891078 ], [ -122.282982, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.282982, 37.889452 ], [ -122.282853, 37.889147 ], [ -122.283454, 37.889181 ], [ -122.284055, 37.889317 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891078 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284999, 37.888639 ], [ -122.285171, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887623 ], [ -122.286072, 37.888572 ], [ -122.286072, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285213, 37.889452 ], [ -122.284999, 37.888639 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889452 ], [ -122.284999, 37.888639 ], [ -122.285171, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887623 ], [ -122.286072, 37.888572 ], [ -122.286072, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285213, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.285085, 37.887894 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285171, 37.887894 ], [ -122.284999, 37.888504 ], [ -122.285085, 37.889046 ], [ -122.285213, 37.889452 ], [ -122.285128, 37.889452 ], [ -122.284999, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889452 ], [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.285085, 37.887894 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285171, 37.887894 ], [ -122.284999, 37.888504 ], [ -122.285085, 37.889046 ], [ -122.285213, 37.889452 ], [ -122.285128, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.889418 ], [ -122.283711, 37.889147 ], [ -122.283711, 37.888775 ], [ -122.284355, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285085, 37.887894 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285128, 37.889452 ], [ -122.284698, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889452 ], [ -122.284698, 37.889418 ], [ -122.283711, 37.889147 ], [ -122.283711, 37.888775 ], [ -122.284355, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285085, 37.887894 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285128, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283111, 37.889080 ], [ -122.282767, 37.889080 ], [ -122.282681, 37.888944 ], [ -122.282681, 37.888606 ], [ -122.283282, 37.886912 ], [ -122.283540, 37.886980 ], [ -122.284355, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889147 ], [ -122.283111, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889147 ], [ -122.283111, 37.889080 ], [ -122.282767, 37.889080 ], [ -122.282681, 37.888944 ], [ -122.282681, 37.888606 ], [ -122.283282, 37.886912 ], [ -122.283540, 37.886980 ], [ -122.284355, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889147 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885862 ], [ -122.289333, 37.885998 ], [ -122.288303, 37.888572 ], [ -122.288175, 37.888606 ], [ -122.289290, 37.885862 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.888606 ], [ -122.289290, 37.885862 ], [ -122.289333, 37.885998 ], [ -122.288303, 37.888572 ], [ -122.288175, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.888843 ], [ -122.287273, 37.888233 ], [ -122.287703, 37.887623 ], [ -122.288775, 37.884710 ], [ -122.289634, 37.884880 ], [ -122.289290, 37.885862 ], [ -122.288175, 37.888606 ], [ -122.287102, 37.889012 ], [ -122.287102, 37.888843 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287102, 37.888843 ], [ -122.287273, 37.888233 ], [ -122.287703, 37.887623 ], [ -122.288775, 37.884710 ], [ -122.289634, 37.884880 ], [ -122.289290, 37.885862 ], [ -122.288175, 37.888606 ], [ -122.287102, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.287960, 37.884507 ], [ -122.288775, 37.884710 ], [ -122.287703, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.286758, 37.887691 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287488, 37.887894 ], [ -122.286758, 37.887691 ], [ -122.287960, 37.884507 ], [ -122.288775, 37.884710 ], [ -122.287703, 37.887623 ], [ -122.287488, 37.887894 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286286, 37.886539 ], [ -122.286673, 37.885659 ], [ -122.287488, 37.885828 ], [ -122.287145, 37.886743 ], [ -122.286286, 37.886539 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.886743 ], [ -122.286286, 37.886539 ], [ -122.286673, 37.885659 ], [ -122.287488, 37.885828 ], [ -122.287145, 37.886743 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287831, 37.884169 ], [ -122.288089, 37.884270 ], [ -122.287488, 37.885828 ], [ -122.286758, 37.885659 ], [ -122.286673, 37.885659 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886539 ], [ -122.287145, 37.886743 ], [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287831, 37.884169 ], [ -122.288089, 37.884270 ], [ -122.287488, 37.885828 ], [ -122.286758, 37.885659 ], [ -122.286673, 37.885659 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886539 ], [ -122.287145, 37.886743 ], [ -122.286758, 37.887691 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289333, 37.883288 ], [ -122.288775, 37.884710 ], [ -122.287960, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.884710 ], [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289333, 37.883288 ], [ -122.288775, 37.884710 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ], [ -122.284355, 37.887149 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.284355, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285085, 37.885320 ], [ -122.285686, 37.883660 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ], [ -122.285686, 37.883660 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885523 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884372 ], [ -122.284527, 37.884202 ], [ -122.285686, 37.883660 ], [ -122.284570, 37.886709 ], [ -122.284355, 37.887149 ], [ -122.283540, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887149 ], [ -122.283540, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884372 ], [ -122.284527, 37.884202 ], [ -122.285686, 37.883660 ], [ -122.284570, 37.886709 ], [ -122.284355, 37.887149 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282681, 37.885998 ], [ -122.283196, 37.885388 ], [ -122.283282, 37.884778 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284527, 37.884372 ], [ -122.283840, 37.886235 ], [ -122.282681, 37.885998 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282681, 37.885998 ], [ -122.283196, 37.885388 ], [ -122.283282, 37.884778 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284527, 37.884372 ], [ -122.283840, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282596, 37.882746 ], [ -122.282767, 37.882543 ], [ -122.285385, 37.882441 ], [ -122.286072, 37.882475 ], [ -122.285728, 37.883559 ], [ -122.283154, 37.884778 ], [ -122.282424, 37.884981 ], [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282596, 37.882746 ], [ -122.282767, 37.882543 ], [ -122.285385, 37.882441 ], [ -122.286072, 37.882475 ], [ -122.285728, 37.883559 ], [ -122.283154, 37.884778 ], [ -122.282424, 37.884981 ], [ -122.281995, 37.884981 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282381, 37.890807 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889249 ], [ -122.282853, 37.889181 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ], [ -122.282381, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.282381, 37.890807 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889249 ], [ -122.282853, 37.889181 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886912 ], [ -122.282681, 37.888606 ], [ -122.282681, 37.888944 ], [ -122.282767, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886912 ], [ -122.282681, 37.888606 ], [ -122.282681, 37.888944 ], [ -122.282767, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886675 ], [ -122.282510, 37.886336 ], [ -122.282681, 37.885998 ], [ -122.283840, 37.886235 ], [ -122.283540, 37.886980 ], [ -122.282295, 37.886675 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886980 ], [ -122.282295, 37.886675 ], [ -122.282510, 37.886336 ], [ -122.282681, 37.885998 ], [ -122.283840, 37.886235 ], [ -122.283540, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287831, 37.884169 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287230, 37.882610 ], [ -122.288518, 37.883051 ], [ -122.288089, 37.884270 ], [ -122.287831, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288089, 37.884270 ], [ -122.287831, 37.884169 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287230, 37.882610 ], [ -122.288518, 37.883051 ], [ -122.288089, 37.884270 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882881 ], [ -122.287145, 37.882577 ], [ -122.287230, 37.882610 ], [ -122.287188, 37.882678 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882881 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.882915 ], [ -122.287016, 37.882881 ], [ -122.287145, 37.882577 ], [ -122.287230, 37.882610 ], [ -122.287188, 37.882678 ], [ -122.287102, 37.882915 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883559 ], [ -122.287016, 37.882881 ], [ -122.287102, 37.882915 ], [ -122.285686, 37.883660 ], [ -122.285728, 37.883559 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.883660 ], [ -122.285728, 37.883559 ], [ -122.287016, 37.882881 ], [ -122.287102, 37.882915 ], [ -122.285686, 37.883660 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882475 ], [ -122.286758, 37.882475 ], [ -122.287145, 37.882577 ], [ -122.287016, 37.882881 ], [ -122.285728, 37.883559 ], [ -122.286072, 37.882475 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883559 ], [ -122.286072, 37.882475 ], [ -122.286758, 37.882475 ], [ -122.287145, 37.882577 ], [ -122.287016, 37.882881 ], [ -122.285728, 37.883559 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 656, "y": 1581 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.898308 ], [ -122.300127, 37.896869 ], [ -122.300985, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.301500, 37.898528 ], [ -122.300599, 37.898308 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301500, 37.898528 ], [ -122.300599, 37.898308 ], [ -122.300127, 37.896869 ], [ -122.300985, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.301500, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300298, 37.898241 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897055 ], [ -122.300127, 37.896869 ], [ -122.300599, 37.898308 ], [ -122.300298, 37.898241 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.898308 ], [ -122.300298, 37.898241 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897055 ], [ -122.300127, 37.896869 ], [ -122.300599, 37.898308 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301135, 37.896683 ], [ -122.300920, 37.896022 ], [ -122.302616, 37.895667 ], [ -122.302015, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894515 ], [ -122.303131, 37.894261 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.893533 ], [ -122.303302, 37.893144 ], [ -122.303495, 37.892839 ], [ -122.303088, 37.891603 ], [ -122.303324, 37.890841 ], [ -122.303452, 37.890536 ], [ -122.303560, 37.890350 ], [ -122.303731, 37.890180 ], [ -122.303967, 37.890045 ], [ -122.304418, 37.889909 ], [ -122.304933, 37.889825 ], [ -122.306027, 37.889588 ], [ -122.306693, 37.891704 ], [ -122.306714, 37.892009 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308495, 37.896835 ], [ -122.308602, 37.897157 ], [ -122.308967, 37.897987 ], [ -122.308795, 37.898037 ], [ -122.306199, 37.898241 ], [ -122.305341, 37.898427 ], [ -122.304590, 37.898427 ], [ -122.303731, 37.898528 ], [ -122.301629, 37.898528 ], [ -122.301135, 37.896683 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301629, 37.898528 ], [ -122.301135, 37.896683 ], [ -122.300920, 37.896022 ], [ -122.302616, 37.895667 ], [ -122.302015, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894515 ], [ -122.303131, 37.894261 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.893533 ], [ -122.303302, 37.893144 ], [ -122.303495, 37.892839 ], [ -122.303088, 37.891603 ], [ -122.303324, 37.890841 ], [ -122.303452, 37.890536 ], [ -122.303560, 37.890350 ], [ -122.303731, 37.890180 ], [ -122.303967, 37.890045 ], [ -122.304418, 37.889909 ], [ -122.304933, 37.889825 ], [ -122.306027, 37.889588 ], [ -122.306693, 37.891704 ], [ -122.306714, 37.892009 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308495, 37.896835 ], [ -122.308602, 37.897157 ], [ -122.308967, 37.897987 ], [ -122.308795, 37.898037 ], [ -122.306199, 37.898241 ], [ -122.305341, 37.898427 ], [ -122.304590, 37.898427 ], [ -122.303731, 37.898528 ], [ -122.301629, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303302, 37.893144 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.894261 ], [ -122.303109, 37.894515 ], [ -122.302251, 37.891772 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.894515 ], [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303302, 37.893144 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.894261 ], [ -122.303109, 37.894515 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.302015, 37.893821 ], [ -122.302616, 37.895667 ], [ -122.301779, 37.895836 ], [ -122.301178, 37.893990 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895836 ], [ -122.301178, 37.893990 ], [ -122.302015, 37.893821 ], [ -122.302616, 37.895667 ], [ -122.301779, 37.895836 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895260 ], [ -122.300470, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ], [ -122.299612, 37.895260 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300127, 37.896869 ], [ -122.299612, 37.895260 ], [ -122.300470, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.895057 ], [ -122.300341, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895836 ], [ -122.300920, 37.896022 ], [ -122.300599, 37.895057 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.300599, 37.895057 ], [ -122.300341, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895836 ], [ -122.300920, 37.896022 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891942 ], [ -122.302251, 37.891772 ], [ -122.302852, 37.893652 ], [ -122.302015, 37.893821 ], [ -122.301435, 37.891942 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302015, 37.893821 ], [ -122.301435, 37.891942 ], [ -122.302251, 37.891772 ], [ -122.302852, 37.893652 ], [ -122.302015, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892111 ], [ -122.301435, 37.891942 ], [ -122.302015, 37.893821 ], [ -122.301178, 37.893990 ], [ -122.300577, 37.892111 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.300577, 37.892111 ], [ -122.301435, 37.891942 ], [ -122.302015, 37.893821 ], [ -122.301178, 37.893990 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300084, 37.893432 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892111 ], [ -122.301178, 37.893990 ], [ -122.300341, 37.894160 ], [ -122.300084, 37.893432 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300341, 37.894160 ], [ -122.300084, 37.893432 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892111 ], [ -122.301178, 37.893990 ], [ -122.300341, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892314 ], [ -122.299719, 37.892297 ], [ -122.300084, 37.893432 ], [ -122.299955, 37.893466 ], [ -122.299590, 37.892314 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893466 ], [ -122.299590, 37.892314 ], [ -122.299719, 37.892297 ], [ -122.300084, 37.893432 ], [ -122.299955, 37.893466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890248 ], [ -122.306607, 37.890197 ], [ -122.306306, 37.890096 ], [ -122.306135, 37.889909 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889537 ], [ -122.306821, 37.890688 ], [ -122.306714, 37.890739 ], [ -122.306414, 37.890807 ], [ -122.306242, 37.890248 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890807 ], [ -122.306242, 37.890248 ], [ -122.306607, 37.890197 ], [ -122.306306, 37.890096 ], [ -122.306135, 37.889909 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889537 ], [ -122.306821, 37.890688 ], [ -122.306714, 37.890739 ], [ -122.306414, 37.890807 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305834, 37.888961 ], [ -122.307293, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ], [ -122.305834, 37.888961 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306027, 37.889588 ], [ -122.305834, 37.888961 ], [ -122.307293, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305834, 37.888961 ], [ -122.304976, 37.889130 ], [ -122.304955, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304976, 37.889130 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305834, 37.888961 ], [ -122.304976, 37.889130 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.307293, 37.888622 ], [ -122.307293, 37.888673 ], [ -122.305834, 37.888961 ], [ -122.305813, 37.888910 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305834, 37.888961 ], [ -122.305813, 37.888910 ], [ -122.307293, 37.888622 ], [ -122.307293, 37.888673 ], [ -122.305834, 37.888961 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888250 ], [ -122.307122, 37.887945 ], [ -122.307293, 37.888622 ], [ -122.305813, 37.888910 ], [ -122.305598, 37.888250 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.305598, 37.888250 ], [ -122.307122, 37.887945 ], [ -122.307293, 37.888622 ], [ -122.305813, 37.888910 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305341, 37.887471 ], [ -122.305427, 37.887471 ], [ -122.305512, 37.887505 ], [ -122.306070, 37.887505 ], [ -122.306907, 37.887454 ], [ -122.306993, 37.887522 ], [ -122.307122, 37.887945 ], [ -122.305598, 37.888250 ], [ -122.305341, 37.887471 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888250 ], [ -122.305341, 37.887471 ], [ -122.305427, 37.887471 ], [ -122.305512, 37.887505 ], [ -122.306070, 37.887505 ], [ -122.306907, 37.887454 ], [ -122.306993, 37.887522 ], [ -122.307122, 37.887945 ], [ -122.305598, 37.888250 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.303302, 37.889452 ], [ -122.303560, 37.890350 ], [ -122.303324, 37.890841 ], [ -122.303088, 37.891603 ], [ -122.302465, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303088, 37.891603 ], [ -122.302465, 37.889622 ], [ -122.303302, 37.889452 ], [ -122.303560, 37.890350 ], [ -122.303324, 37.890841 ], [ -122.303088, 37.891603 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303302, 37.889452 ], [ -122.305834, 37.888961 ], [ -122.306027, 37.889588 ], [ -122.304161, 37.889977 ], [ -122.303967, 37.890045 ], [ -122.303731, 37.890180 ], [ -122.303560, 37.890350 ], [ -122.303302, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303560, 37.890350 ], [ -122.303302, 37.889452 ], [ -122.305834, 37.888961 ], [ -122.306027, 37.889588 ], [ -122.304161, 37.889977 ], [ -122.303967, 37.890045 ], [ -122.303731, 37.890180 ], [ -122.303560, 37.890350 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304118, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304976, 37.889130 ], [ -122.304139, 37.889283 ], [ -122.304118, 37.889249 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889283 ], [ -122.304118, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304976, 37.889130 ], [ -122.304139, 37.889283 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304461, 37.887522 ], [ -122.305341, 37.887471 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ], [ -122.304461, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304461, 37.887522 ], [ -122.305341, 37.887471 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887556 ], [ -122.304461, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304118, 37.889249 ], [ -122.303581, 37.887556 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304118, 37.889249 ], [ -122.303581, 37.887556 ], [ -122.304461, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304118, 37.889249 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302701, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304118, 37.889249 ], [ -122.303281, 37.889401 ], [ -122.302701, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889401 ], [ -122.302701, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304118, 37.889249 ], [ -122.303281, 37.889401 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301714, 37.890113 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303088, 37.891603 ], [ -122.302251, 37.891772 ], [ -122.301714, 37.890113 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891772 ], [ -122.301714, 37.890113 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303088, 37.891603 ], [ -122.302251, 37.891772 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300770, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.301714, 37.890113 ], [ -122.302251, 37.891772 ], [ -122.301435, 37.891942 ], [ -122.300770, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891942 ], [ -122.300770, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.301714, 37.890113 ], [ -122.302251, 37.891772 ], [ -122.301435, 37.891942 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.891806 ], [ -122.299054, 37.890265 ], [ -122.299311, 37.890248 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892111 ], [ -122.299719, 37.892297 ], [ -122.299547, 37.891806 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892297 ], [ -122.299547, 37.891806 ], [ -122.299054, 37.890265 ], [ -122.299311, 37.890248 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892111 ], [ -122.299719, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.300770, 37.889960 ], [ -122.301435, 37.891942 ], [ -122.300577, 37.892111 ], [ -122.299933, 37.890130 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892111 ], [ -122.299933, 37.890130 ], [ -122.300770, 37.889960 ], [ -122.301435, 37.891942 ], [ -122.300577, 37.892111 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301822, 37.887623 ], [ -122.302701, 37.887589 ], [ -122.303281, 37.889401 ], [ -122.302444, 37.889571 ], [ -122.301822, 37.887623 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302444, 37.889571 ], [ -122.301822, 37.887623 ], [ -122.302701, 37.887589 ], [ -122.303281, 37.889401 ], [ -122.302444, 37.889571 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300684, 37.887742 ], [ -122.301822, 37.887623 ], [ -122.302444, 37.889571 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ], [ -122.300684, 37.887742 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.300684, 37.887742 ], [ -122.301822, 37.887623 ], [ -122.302444, 37.889571 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300062, 37.887725 ], [ -122.300684, 37.887742 ], [ -122.301650, 37.889791 ], [ -122.300770, 37.889960 ], [ -122.300062, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300770, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300684, 37.887742 ], [ -122.301650, 37.889791 ], [ -122.300770, 37.889960 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299182, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.300770, 37.889909 ], [ -122.299912, 37.890079 ], [ -122.299182, 37.887742 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299912, 37.890079 ], [ -122.299182, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.300770, 37.889909 ], [ -122.299912, 37.890079 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300963, 37.887657 ], [ -122.300513, 37.886319 ], [ -122.302337, 37.886031 ], [ -122.304590, 37.885845 ], [ -122.304482, 37.885337 ], [ -122.306800, 37.885591 ], [ -122.307165, 37.887081 ], [ -122.305834, 37.887318 ], [ -122.302079, 37.887505 ], [ -122.302101, 37.887606 ], [ -122.300684, 37.887742 ], [ -122.300963, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300684, 37.887742 ], [ -122.300963, 37.887657 ], [ -122.300513, 37.886319 ], [ -122.302337, 37.886031 ], [ -122.304590, 37.885845 ], [ -122.304482, 37.885337 ], [ -122.306800, 37.885591 ], [ -122.307165, 37.887081 ], [ -122.305834, 37.887318 ], [ -122.302079, 37.887505 ], [ -122.302101, 37.887606 ], [ -122.300684, 37.887742 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303903, 37.884744 ], [ -122.303603, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304525, 37.885473 ], [ -122.304590, 37.885845 ], [ -122.304225, 37.885879 ], [ -122.303903, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304225, 37.885879 ], [ -122.303903, 37.884744 ], [ -122.303603, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304525, 37.885473 ], [ -122.304590, 37.885845 ], [ -122.304225, 37.885879 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304482, 37.885337 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303431, 37.882881 ], [ -122.302938, 37.883017 ], [ -122.302616, 37.883068 ], [ -122.302444, 37.882763 ], [ -122.302358, 37.882509 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302959, 37.882407 ], [ -122.303131, 37.882323 ], [ -122.303324, 37.882289 ], [ -122.303967, 37.882255 ], [ -122.304525, 37.882272 ], [ -122.305233, 37.882221 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306800, 37.885591 ], [ -122.304482, 37.885337 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306800, 37.885591 ], [ -122.304482, 37.885337 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303431, 37.882881 ], [ -122.302938, 37.883017 ], [ -122.302616, 37.883068 ], [ -122.302444, 37.882763 ], [ -122.302358, 37.882509 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302959, 37.882407 ], [ -122.303131, 37.882323 ], [ -122.303324, 37.882289 ], [ -122.303967, 37.882255 ], [ -122.304525, 37.882272 ], [ -122.305233, 37.882221 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306800, 37.885591 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303903, 37.885659 ], [ -122.303302, 37.883711 ], [ -122.303603, 37.883660 ], [ -122.304225, 37.885879 ], [ -122.303946, 37.885896 ], [ -122.303903, 37.885659 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303946, 37.885896 ], [ -122.303903, 37.885659 ], [ -122.303302, 37.883711 ], [ -122.303603, 37.883660 ], [ -122.304225, 37.885879 ], [ -122.303946, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302959, 37.883796 ], [ -122.303302, 37.883711 ], [ -122.303903, 37.885659 ], [ -122.303946, 37.885896 ], [ -122.303431, 37.885947 ], [ -122.302959, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303431, 37.885947 ], [ -122.302959, 37.883796 ], [ -122.303302, 37.883711 ], [ -122.303903, 37.885659 ], [ -122.303946, 37.885896 ], [ -122.303431, 37.885947 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.884440 ], [ -122.299912, 37.884067 ], [ -122.299805, 37.884084 ], [ -122.299826, 37.883881 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.300534, 37.883288 ], [ -122.300663, 37.883356 ], [ -122.300856, 37.883406 ], [ -122.300985, 37.883406 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883356 ], [ -122.301114, 37.883356 ], [ -122.301414, 37.883271 ], [ -122.301607, 37.883254 ], [ -122.301650, 37.883220 ], [ -122.302079, 37.883119 ], [ -122.302616, 37.883068 ], [ -122.302959, 37.883796 ], [ -122.303431, 37.885947 ], [ -122.302508, 37.886014 ], [ -122.301800, 37.886099 ], [ -122.300513, 37.886319 ], [ -122.299933, 37.884440 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299933, 37.884440 ], [ -122.299912, 37.884067 ], [ -122.299805, 37.884084 ], [ -122.299826, 37.883881 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.300534, 37.883288 ], [ -122.300663, 37.883356 ], [ -122.300856, 37.883406 ], [ -122.300985, 37.883406 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883356 ], [ -122.301114, 37.883356 ], [ -122.301414, 37.883271 ], [ -122.301607, 37.883254 ], [ -122.301650, 37.883220 ], [ -122.302079, 37.883119 ], [ -122.302616, 37.883068 ], [ -122.302959, 37.883796 ], [ -122.303431, 37.885947 ], [ -122.302508, 37.886014 ], [ -122.301800, 37.886099 ], [ -122.300513, 37.886319 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302616, 37.883068 ], [ -122.302938, 37.883017 ], [ -122.303431, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302959, 37.883796 ], [ -122.302616, 37.883068 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302959, 37.883796 ], [ -122.302616, 37.883068 ], [ -122.302938, 37.883017 ], [ -122.303431, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302959, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.883356 ], [ -122.300534, 37.883288 ], [ -122.300341, 37.883254 ], [ -122.300298, 37.883220 ], [ -122.300277, 37.883119 ], [ -122.300212, 37.882881 ], [ -122.300642, 37.882814 ], [ -122.301092, 37.882780 ], [ -122.301908, 37.882577 ], [ -122.302337, 37.882509 ], [ -122.302616, 37.883068 ], [ -122.302079, 37.883119 ], [ -122.301650, 37.883220 ], [ -122.301607, 37.883254 ], [ -122.301414, 37.883271 ], [ -122.301114, 37.883356 ], [ -122.300985, 37.883356 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883406 ], [ -122.300856, 37.883406 ], [ -122.300663, 37.883356 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300856, 37.883406 ], [ -122.300663, 37.883356 ], [ -122.300534, 37.883288 ], [ -122.300341, 37.883254 ], [ -122.300298, 37.883220 ], [ -122.300277, 37.883119 ], [ -122.300212, 37.882881 ], [ -122.300642, 37.882814 ], [ -122.301092, 37.882780 ], [ -122.301908, 37.882577 ], [ -122.302337, 37.882509 ], [ -122.302616, 37.883068 ], [ -122.302079, 37.883119 ], [ -122.301650, 37.883220 ], [ -122.301607, 37.883254 ], [ -122.301414, 37.883271 ], [ -122.301114, 37.883356 ], [ -122.300985, 37.883356 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883406 ], [ -122.300856, 37.883406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.299290, 37.897055 ], [ -122.299719, 37.898291 ], [ -122.299397, 37.898325 ], [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299290, 37.897055 ], [ -122.299719, 37.898291 ], [ -122.299397, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898749 ], [ -122.297616, 37.897394 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898749 ], [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898749 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.297616, 37.897394 ], [ -122.298045, 37.898749 ], [ -122.297788, 37.898833 ], [ -122.297208, 37.898901 ], [ -122.296779, 37.897546 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297208, 37.898901 ], [ -122.296779, 37.897546 ], [ -122.297616, 37.897394 ], [ -122.298045, 37.898749 ], [ -122.297788, 37.898833 ], [ -122.297208, 37.898901 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.897767 ], [ -122.296779, 37.897546 ], [ -122.297208, 37.898901 ], [ -122.297015, 37.898935 ], [ -122.296221, 37.898935 ], [ -122.295706, 37.897767 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296221, 37.898935 ], [ -122.295706, 37.897767 ], [ -122.296779, 37.897546 ], [ -122.297208, 37.898901 ], [ -122.297015, 37.898935 ], [ -122.296221, 37.898935 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895938 ], [ -122.297080, 37.895768 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ], [ -122.296264, 37.895938 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.296264, 37.895938 ], [ -122.297080, 37.895768 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.896090 ], [ -122.296264, 37.895938 ], [ -122.296779, 37.897546 ], [ -122.295921, 37.897733 ], [ -122.295406, 37.896090 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295921, 37.897733 ], [ -122.295406, 37.896090 ], [ -122.296264, 37.895938 ], [ -122.296779, 37.897546 ], [ -122.295921, 37.897733 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895430 ], [ -122.299612, 37.895260 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897055 ], [ -122.298775, 37.895430 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897055 ], [ -122.298775, 37.895430 ], [ -122.299612, 37.895260 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897055 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297938, 37.895599 ], [ -122.298775, 37.895430 ], [ -122.299290, 37.897055 ], [ -122.298453, 37.897208 ], [ -122.297938, 37.895599 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297938, 37.895599 ], [ -122.298775, 37.895430 ], [ -122.299290, 37.897055 ], [ -122.298453, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299075, 37.893635 ], [ -122.299612, 37.895260 ], [ -122.298775, 37.895430 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895430 ], [ -122.298260, 37.893821 ], [ -122.299075, 37.893635 ], [ -122.299612, 37.895260 ], [ -122.298775, 37.895430 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895768 ], [ -122.297938, 37.895599 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ], [ -122.297080, 37.895768 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.297080, 37.895768 ], [ -122.297938, 37.895599 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297423, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895430 ], [ -122.297938, 37.895599 ], [ -122.297423, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297938, 37.895599 ], [ -122.297423, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895430 ], [ -122.297938, 37.895599 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296565, 37.894126 ], [ -122.297423, 37.893957 ], [ -122.297938, 37.895599 ], [ -122.297080, 37.895768 ], [ -122.296565, 37.894126 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895768 ], [ -122.296565, 37.894126 ], [ -122.297423, 37.893957 ], [ -122.297938, 37.895599 ], [ -122.297080, 37.895768 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893635 ], [ -122.299955, 37.893466 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895260 ], [ -122.299075, 37.893635 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895260 ], [ -122.299075, 37.893635 ], [ -122.299955, 37.893466 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895260 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892314 ], [ -122.299955, 37.893466 ], [ -122.299075, 37.893635 ], [ -122.298560, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893635 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892314 ], [ -122.299955, 37.893466 ], [ -122.299075, 37.893635 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892179 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893635 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892179 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892179 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893635 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.892348 ], [ -122.297745, 37.892179 ], [ -122.298260, 37.893821 ], [ -122.297423, 37.893957 ], [ -122.296908, 37.892348 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297423, 37.893957 ], [ -122.296908, 37.892348 ], [ -122.297745, 37.892179 ], [ -122.298260, 37.893821 ], [ -122.297423, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295749, 37.894295 ], [ -122.296565, 37.894126 ], [ -122.297080, 37.895768 ], [ -122.296264, 37.895938 ], [ -122.295749, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895938 ], [ -122.295749, 37.894295 ], [ -122.296565, 37.894126 ], [ -122.297080, 37.895768 ], [ -122.296264, 37.895938 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294590, 37.897750 ], [ -122.294719, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295706, 37.897767 ], [ -122.294590, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.897767 ], [ -122.294590, 37.897750 ], [ -122.294719, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295706, 37.897767 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294891, 37.894482 ], [ -122.295749, 37.894295 ], [ -122.296264, 37.895938 ], [ -122.295406, 37.896090 ], [ -122.294891, 37.894482 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.896090 ], [ -122.294891, 37.894482 ], [ -122.295749, 37.894295 ], [ -122.296264, 37.895938 ], [ -122.295406, 37.896090 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.892687 ], [ -122.296071, 37.892517 ], [ -122.296565, 37.894126 ], [ -122.295749, 37.894295 ], [ -122.295234, 37.892687 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295749, 37.894295 ], [ -122.295234, 37.892687 ], [ -122.296071, 37.892517 ], [ -122.296565, 37.894126 ], [ -122.295749, 37.894295 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892517 ], [ -122.296908, 37.892348 ], [ -122.297423, 37.893957 ], [ -122.296565, 37.894126 ], [ -122.296071, 37.892517 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296565, 37.894126 ], [ -122.296071, 37.892517 ], [ -122.296908, 37.892348 ], [ -122.297423, 37.893957 ], [ -122.296565, 37.894126 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892856 ], [ -122.295234, 37.892687 ], [ -122.295749, 37.894295 ], [ -122.294891, 37.894482 ], [ -122.294354, 37.892856 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294891, 37.894482 ], [ -122.294354, 37.892856 ], [ -122.295234, 37.892687 ], [ -122.295749, 37.894295 ], [ -122.294891, 37.894482 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.898630 ], [ -122.293196, 37.898427 ], [ -122.292831, 37.898376 ], [ -122.292852, 37.897699 ], [ -122.293732, 37.897716 ], [ -122.293711, 37.898393 ], [ -122.293668, 37.898528 ], [ -122.293689, 37.898647 ], [ -122.293582, 37.898630 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293689, 37.898647 ], [ -122.293582, 37.898630 ], [ -122.293196, 37.898427 ], [ -122.292831, 37.898376 ], [ -122.292852, 37.897699 ], [ -122.293732, 37.897716 ], [ -122.293711, 37.898393 ], [ -122.293668, 37.898528 ], [ -122.293689, 37.898647 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896717 ], [ -122.292917, 37.896734 ], [ -122.292852, 37.897699 ], [ -122.292616, 37.897699 ], [ -122.292681, 37.896717 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292616, 37.897699 ], [ -122.292681, 37.896717 ], [ -122.292917, 37.896734 ], [ -122.292852, 37.897699 ], [ -122.292616, 37.897699 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291994, 37.898241 ], [ -122.291608, 37.898105 ], [ -122.291715, 37.896700 ], [ -122.292681, 37.896717 ], [ -122.292616, 37.897699 ], [ -122.292659, 37.897987 ], [ -122.292659, 37.898342 ], [ -122.291994, 37.898241 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292659, 37.898342 ], [ -122.291994, 37.898241 ], [ -122.291608, 37.898105 ], [ -122.291715, 37.896700 ], [ -122.292681, 37.896717 ], [ -122.292616, 37.897699 ], [ -122.292659, 37.897987 ], [ -122.292659, 37.898342 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.897936 ], [ -122.290728, 37.897902 ], [ -122.290814, 37.896666 ], [ -122.291715, 37.896700 ], [ -122.291608, 37.898105 ], [ -122.291093, 37.897936 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291608, 37.898105 ], [ -122.291093, 37.897936 ], [ -122.290728, 37.897902 ], [ -122.290814, 37.896666 ], [ -122.291715, 37.896700 ], [ -122.291608, 37.898105 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897834 ], [ -122.289870, 37.897834 ], [ -122.289977, 37.896649 ], [ -122.290814, 37.896666 ], [ -122.290728, 37.897902 ], [ -122.290192, 37.897834 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290728, 37.897902 ], [ -122.290192, 37.897834 ], [ -122.289870, 37.897834 ], [ -122.289977, 37.896649 ], [ -122.290814, 37.896666 ], [ -122.290728, 37.897902 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.896615 ], [ -122.289977, 37.896649 ], [ -122.289870, 37.897834 ], [ -122.289484, 37.897834 ], [ -122.289011, 37.897885 ], [ -122.289097, 37.896615 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289011, 37.897885 ], [ -122.289097, 37.896615 ], [ -122.289977, 37.896649 ], [ -122.289870, 37.897834 ], [ -122.289484, 37.897834 ], [ -122.289011, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293732, 37.897716 ], [ -122.293882, 37.894685 ], [ -122.294397, 37.894566 ], [ -122.294719, 37.895379 ], [ -122.294590, 37.897750 ], [ -122.293732, 37.897716 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294590, 37.897750 ], [ -122.293732, 37.897716 ], [ -122.293882, 37.894685 ], [ -122.294397, 37.894566 ], [ -122.294719, 37.895379 ], [ -122.294590, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897699 ], [ -122.293003, 37.894871 ], [ -122.293882, 37.894685 ], [ -122.293839, 37.895294 ], [ -122.293732, 37.897716 ], [ -122.292852, 37.897699 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293732, 37.897716 ], [ -122.292852, 37.897699 ], [ -122.293003, 37.894871 ], [ -122.293882, 37.894685 ], [ -122.293839, 37.895294 ], [ -122.293732, 37.897716 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896717 ], [ -122.292745, 37.894871 ], [ -122.293003, 37.894871 ], [ -122.292917, 37.896734 ], [ -122.292681, 37.896717 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292917, 37.896734 ], [ -122.292681, 37.896717 ], [ -122.292745, 37.894871 ], [ -122.293003, 37.894871 ], [ -122.292917, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293947, 37.892856 ], [ -122.294118, 37.892856 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894685 ], [ -122.293947, 37.892856 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894685 ], [ -122.293947, 37.892856 ], [ -122.294118, 37.892856 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894685 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293088, 37.892839 ], [ -122.293947, 37.892856 ], [ -122.293882, 37.894685 ], [ -122.293003, 37.894871 ], [ -122.293088, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293003, 37.894871 ], [ -122.293088, 37.892839 ], [ -122.293947, 37.892856 ], [ -122.293882, 37.894685 ], [ -122.293003, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292831, 37.892822 ], [ -122.293088, 37.892839 ], [ -122.293003, 37.894871 ], [ -122.292745, 37.894871 ], [ -122.292831, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292745, 37.894871 ], [ -122.292831, 37.892822 ], [ -122.293088, 37.892839 ], [ -122.293003, 37.894871 ], [ -122.292745, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291801, 37.894854 ], [ -122.291887, 37.892822 ], [ -122.292831, 37.892822 ], [ -122.292745, 37.894871 ], [ -122.291801, 37.894854 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292745, 37.894871 ], [ -122.291801, 37.894854 ], [ -122.291887, 37.892822 ], [ -122.292831, 37.892822 ], [ -122.292745, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.896615 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894786 ], [ -122.289977, 37.896649 ], [ -122.289097, 37.896615 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896649 ], [ -122.289097, 37.896615 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894786 ], [ -122.289977, 37.896649 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894820 ], [ -122.290986, 37.892941 ], [ -122.291887, 37.892974 ], [ -122.291801, 37.894854 ], [ -122.290921, 37.894820 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291801, 37.894854 ], [ -122.290921, 37.894820 ], [ -122.290986, 37.892941 ], [ -122.291887, 37.892974 ], [ -122.291801, 37.894854 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894786 ], [ -122.290149, 37.892907 ], [ -122.290986, 37.892941 ], [ -122.290921, 37.894820 ], [ -122.290063, 37.894786 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894820 ], [ -122.290063, 37.894786 ], [ -122.290149, 37.892907 ], [ -122.290986, 37.892941 ], [ -122.290921, 37.894820 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.289290, 37.892890 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894786 ], [ -122.289205, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894786 ], [ -122.289205, 37.894769 ], [ -122.289290, 37.892890 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894786 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.289097, 37.896615 ], [ -122.289011, 37.897885 ], [ -122.288496, 37.897936 ], [ -122.288175, 37.898105 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.898105 ], [ -122.288218, 37.896598 ], [ -122.289097, 37.896615 ], [ -122.289011, 37.897885 ], [ -122.288496, 37.897936 ], [ -122.288175, 37.898105 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.288153, 37.896598 ], [ -122.288110, 37.898156 ], [ -122.287145, 37.898647 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.898647 ], [ -122.287273, 37.896564 ], [ -122.288153, 37.896598 ], [ -122.288110, 37.898156 ], [ -122.287145, 37.898647 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898139 ], [ -122.287080, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898139 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.898156 ], [ -122.287016, 37.898139 ], [ -122.287080, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289097, 37.896615 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.896615 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289097, 37.896615 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.287359, 37.894719 ], [ -122.288239, 37.894736 ], [ -122.288153, 37.896598 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.896598 ], [ -122.287273, 37.896564 ], [ -122.287359, 37.894719 ], [ -122.288239, 37.894736 ], [ -122.288153, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894719 ], [ -122.287359, 37.894719 ], [ -122.287273, 37.896564 ], [ -122.287080, 37.896564 ], [ -122.287145, 37.894719 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.896564 ], [ -122.287145, 37.894719 ], [ -122.287359, 37.894719 ], [ -122.287273, 37.896564 ], [ -122.287080, 37.896564 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894736 ], [ -122.288411, 37.892873 ], [ -122.289290, 37.892890 ], [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ], [ -122.288411, 37.892873 ], [ -122.289290, 37.892890 ], [ -122.289205, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894719 ], [ -122.287445, 37.892822 ], [ -122.288325, 37.892873 ], [ -122.288239, 37.894736 ], [ -122.287359, 37.894719 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.894736 ], [ -122.287359, 37.894719 ], [ -122.287445, 37.892822 ], [ -122.288325, 37.892873 ], [ -122.288239, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892822 ], [ -122.287445, 37.892822 ], [ -122.287359, 37.894719 ], [ -122.287145, 37.894719 ], [ -122.287188, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894719 ], [ -122.287188, 37.892822 ], [ -122.287445, 37.892822 ], [ -122.287359, 37.894719 ], [ -122.287145, 37.894719 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298946, 37.890282 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ], [ -122.298946, 37.890282 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.299290, 37.890180 ], [ -122.299912, 37.890079 ], [ -122.299933, 37.890130 ], [ -122.299311, 37.890248 ], [ -122.299054, 37.890265 ], [ -122.299032, 37.890197 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299054, 37.890265 ], [ -122.299032, 37.890197 ], [ -122.299290, 37.890180 ], [ -122.299912, 37.890079 ], [ -122.299933, 37.890130 ], [ -122.299311, 37.890248 ], [ -122.299054, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298152, 37.890655 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892179 ], [ -122.297144, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892179 ], [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298152, 37.890655 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892179 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.299182, 37.887742 ], [ -122.299912, 37.890079 ], [ -122.299290, 37.890180 ], [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ], [ -122.299182, 37.887742 ], [ -122.299912, 37.890079 ], [ -122.299290, 37.890180 ], [ -122.299032, 37.890197 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297809, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297552, 37.886760 ], [ -122.297788, 37.886743 ], [ -122.297766, 37.886675 ], [ -122.297916, 37.886692 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887776 ], [ -122.298925, 37.890214 ], [ -122.298024, 37.890265 ], [ -122.297809, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298024, 37.890265 ], [ -122.297809, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297552, 37.886760 ], [ -122.297788, 37.886743 ], [ -122.297766, 37.886675 ], [ -122.297916, 37.886692 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887776 ], [ -122.298925, 37.890214 ], [ -122.298024, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890417 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892179 ], [ -122.296908, 37.892348 ], [ -122.296264, 37.890417 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.892348 ], [ -122.296264, 37.890417 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892179 ], [ -122.296908, 37.892348 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.890468 ], [ -122.296264, 37.890417 ], [ -122.296908, 37.892348 ], [ -122.296071, 37.892517 ], [ -122.295406, 37.890468 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892517 ], [ -122.295406, 37.890468 ], [ -122.296264, 37.890417 ], [ -122.296908, 37.892348 ], [ -122.296071, 37.892517 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890519 ], [ -122.295406, 37.890468 ], [ -122.296071, 37.892517 ], [ -122.295234, 37.892687 ], [ -122.294505, 37.890519 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.892687 ], [ -122.294505, 37.890519 ], [ -122.295406, 37.890468 ], [ -122.296071, 37.892517 ], [ -122.295234, 37.892687 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294505, 37.890519 ], [ -122.295234, 37.892687 ], [ -122.294354, 37.892856 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892856 ], [ -122.293625, 37.890570 ], [ -122.294505, 37.890519 ], [ -122.295234, 37.892687 ], [ -122.294354, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296093, 37.887064 ], [ -122.296929, 37.886878 ], [ -122.298024, 37.890265 ], [ -122.297144, 37.890316 ], [ -122.296093, 37.887064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890316 ], [ -122.296093, 37.887064 ], [ -122.296929, 37.886878 ], [ -122.298024, 37.890265 ], [ -122.297144, 37.890316 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.887234 ], [ -122.296093, 37.887064 ], [ -122.297144, 37.890316 ], [ -122.296264, 37.890367 ], [ -122.295234, 37.887234 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890367 ], [ -122.295234, 37.887234 ], [ -122.296093, 37.887064 ], [ -122.297144, 37.890316 ], [ -122.296264, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294419, 37.887386 ], [ -122.295234, 37.887234 ], [ -122.296264, 37.890367 ], [ -122.295384, 37.890434 ], [ -122.294419, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.294419, 37.887386 ], [ -122.295234, 37.887234 ], [ -122.296264, 37.890367 ], [ -122.295384, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293561, 37.887505 ], [ -122.294397, 37.887318 ], [ -122.295384, 37.890434 ], [ -122.294505, 37.890485 ], [ -122.293561, 37.887505 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890485 ], [ -122.293561, 37.887505 ], [ -122.294397, 37.887318 ], [ -122.295384, 37.890434 ], [ -122.294505, 37.890485 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298110, 37.883779 ], [ -122.298088, 37.883474 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300212, 37.882881 ], [ -122.300255, 37.883034 ], [ -122.300298, 37.883220 ], [ -122.300234, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299826, 37.883881 ], [ -122.299805, 37.884084 ], [ -122.298281, 37.884389 ], [ -122.298110, 37.883779 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298281, 37.884389 ], [ -122.298110, 37.883779 ], [ -122.298088, 37.883474 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300212, 37.882881 ], [ -122.300255, 37.883034 ], [ -122.300298, 37.883220 ], [ -122.300234, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299826, 37.883881 ], [ -122.299805, 37.884084 ], [ -122.298281, 37.884389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293475, 37.884507 ], [ -122.294333, 37.884321 ], [ -122.295213, 37.887166 ], [ -122.294397, 37.887318 ], [ -122.293475, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293475, 37.884507 ], [ -122.294333, 37.884321 ], [ -122.295213, 37.887166 ], [ -122.294397, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.296865, 37.883830 ], [ -122.297766, 37.886675 ], [ -122.297616, 37.886675 ], [ -122.296908, 37.886827 ], [ -122.295985, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.886827 ], [ -122.295985, 37.883999 ], [ -122.296865, 37.883830 ], [ -122.297766, 37.886675 ], [ -122.297616, 37.886675 ], [ -122.296908, 37.886827 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296908, 37.886827 ], [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296908, 37.886827 ], [ -122.296071, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294333, 37.884321 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887166 ], [ -122.294333, 37.884321 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887166 ], [ -122.294333, 37.884321 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887166 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293861, 37.882949 ], [ -122.294011, 37.882915 ], [ -122.294376, 37.882763 ], [ -122.294719, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294333, 37.884321 ], [ -122.293861, 37.882949 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294333, 37.884321 ], [ -122.293861, 37.882949 ], [ -122.294011, 37.882915 ], [ -122.294376, 37.882763 ], [ -122.294719, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294333, 37.884321 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293088, 37.892839 ], [ -122.293153, 37.891027 ], [ -122.293839, 37.891992 ], [ -122.294118, 37.892856 ], [ -122.293088, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294118, 37.892856 ], [ -122.293088, 37.892839 ], [ -122.293153, 37.891027 ], [ -122.293839, 37.891992 ], [ -122.294118, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291951, 37.891078 ], [ -122.291930, 37.890655 ], [ -122.292895, 37.890604 ], [ -122.292917, 37.891146 ], [ -122.292831, 37.892822 ], [ -122.291887, 37.892822 ], [ -122.291951, 37.891078 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291887, 37.892822 ], [ -122.291951, 37.891078 ], [ -122.291930, 37.890655 ], [ -122.292895, 37.890604 ], [ -122.292917, 37.891146 ], [ -122.292831, 37.892822 ], [ -122.291887, 37.892822 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890417 ], [ -122.293561, 37.890316 ], [ -122.292724, 37.887742 ], [ -122.292702, 37.887657 ], [ -122.293582, 37.887640 ], [ -122.293561, 37.887505 ], [ -122.294505, 37.890485 ], [ -122.293711, 37.890519 ], [ -122.293625, 37.890417 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890519 ], [ -122.293625, 37.890417 ], [ -122.293561, 37.890316 ], [ -122.292724, 37.887742 ], [ -122.292702, 37.887657 ], [ -122.293582, 37.887640 ], [ -122.293561, 37.887505 ], [ -122.294505, 37.890485 ], [ -122.293711, 37.890519 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890519 ], [ -122.292895, 37.890553 ], [ -122.292809, 37.890028 ], [ -122.292144, 37.887860 ], [ -122.292488, 37.887776 ], [ -122.293131, 37.889825 ], [ -122.293711, 37.890519 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.293625, 37.890519 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.293625, 37.890519 ], [ -122.292895, 37.890553 ], [ -122.292809, 37.890028 ], [ -122.292144, 37.887860 ], [ -122.292488, 37.887776 ], [ -122.293131, 37.889825 ], [ -122.293711, 37.890519 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.292144, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890553 ], [ -122.291908, 37.890621 ], [ -122.291093, 37.888064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890621 ], [ -122.291093, 37.888064 ], [ -122.292144, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890553 ], [ -122.291908, 37.890621 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290986, 37.892941 ], [ -122.291028, 37.892483 ], [ -122.291071, 37.890705 ], [ -122.291930, 37.890655 ], [ -122.291951, 37.891078 ], [ -122.291887, 37.892974 ], [ -122.290986, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291887, 37.892974 ], [ -122.290986, 37.892941 ], [ -122.291028, 37.892483 ], [ -122.291071, 37.890705 ], [ -122.291930, 37.890655 ], [ -122.291951, 37.891078 ], [ -122.291887, 37.892974 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290149, 37.892907 ], [ -122.290256, 37.890739 ], [ -122.291071, 37.890705 ], [ -122.291028, 37.892483 ], [ -122.290986, 37.892941 ], [ -122.290149, 37.892907 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290986, 37.892941 ], [ -122.290149, 37.892907 ], [ -122.290256, 37.890739 ], [ -122.291071, 37.890705 ], [ -122.291028, 37.892483 ], [ -122.290986, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892890 ], [ -122.289398, 37.890790 ], [ -122.290256, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892890 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290149, 37.892907 ], [ -122.289290, 37.892890 ], [ -122.289398, 37.890790 ], [ -122.290256, 37.890739 ], [ -122.290149, 37.892907 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288411, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288797, 37.891078 ], [ -122.288861, 37.890824 ], [ -122.289398, 37.890790 ], [ -122.289290, 37.892890 ], [ -122.288411, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892890 ], [ -122.288411, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288797, 37.891078 ], [ -122.288861, 37.890824 ], [ -122.289398, 37.890790 ], [ -122.289290, 37.892890 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290084, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890621 ], [ -122.291071, 37.890655 ], [ -122.291071, 37.890705 ], [ -122.290792, 37.890722 ], [ -122.290084, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890722 ], [ -122.290084, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890621 ], [ -122.291071, 37.890655 ], [ -122.291071, 37.890705 ], [ -122.290792, 37.890722 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.290084, 37.888267 ], [ -122.290792, 37.890722 ], [ -122.289891, 37.890756 ], [ -122.289119, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.890756 ], [ -122.289119, 37.888470 ], [ -122.290084, 37.888267 ], [ -122.290792, 37.890722 ], [ -122.289891, 37.890756 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890688 ], [ -122.288239, 37.888860 ], [ -122.288239, 37.888656 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890722 ], [ -122.289891, 37.890756 ], [ -122.288861, 37.890824 ], [ -122.288861, 37.890688 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890824 ], [ -122.288861, 37.890688 ], [ -122.288239, 37.888860 ], [ -122.288239, 37.888656 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890722 ], [ -122.289891, 37.890756 ], [ -122.288861, 37.890824 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.293475, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293561, 37.887505 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293561, 37.887505 ], [ -122.292638, 37.884677 ], [ -122.293475, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293561, 37.887505 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884863 ], [ -122.292638, 37.884677 ], [ -122.293561, 37.887505 ], [ -122.293582, 37.887640 ], [ -122.292702, 37.887657 ], [ -122.291780, 37.884863 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292702, 37.887657 ], [ -122.291780, 37.884863 ], [ -122.292638, 37.884677 ], [ -122.293561, 37.887505 ], [ -122.293582, 37.887640 ], [ -122.292702, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887708 ], [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887708 ], [ -122.292123, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293367, 37.884202 ], [ -122.292960, 37.883034 ], [ -122.293131, 37.883000 ], [ -122.293861, 37.882949 ], [ -122.294333, 37.884321 ], [ -122.293475, 37.884507 ], [ -122.293367, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293475, 37.884507 ], [ -122.293367, 37.884202 ], [ -122.292960, 37.883034 ], [ -122.293131, 37.883000 ], [ -122.293861, 37.882949 ], [ -122.294333, 37.884321 ], [ -122.293475, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292552, 37.884389 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883135 ], [ -122.292960, 37.883034 ], [ -122.293475, 37.884507 ], [ -122.292638, 37.884677 ], [ -122.292552, 37.884389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292552, 37.884389 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883135 ], [ -122.292960, 37.883034 ], [ -122.293475, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291265, 37.883237 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884863 ], [ -122.291265, 37.883237 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884863 ], [ -122.291265, 37.883237 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884863 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290363, 37.885693 ], [ -122.290170, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291071, 37.887996 ], [ -122.290363, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.887996 ], [ -122.290363, 37.885693 ], [ -122.290170, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291071, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885981 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ], [ -122.289333, 37.885981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.289333, 37.885981 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885981 ], [ -122.289848, 37.884507 ], [ -122.290041, 37.884897 ], [ -122.290363, 37.885693 ], [ -122.291071, 37.887996 ], [ -122.290063, 37.888199 ], [ -122.289333, 37.885981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.289333, 37.885981 ], [ -122.289848, 37.884507 ], [ -122.290041, 37.884897 ], [ -122.290363, 37.885693 ], [ -122.291071, 37.887996 ], [ -122.290063, 37.888199 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290943, 37.884372 ], [ -122.290385, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291157, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ], [ -122.290943, 37.884372 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.290943, 37.884372 ], [ -122.290385, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291157, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884507 ], [ -122.290170, 37.883576 ], [ -122.290299, 37.883034 ], [ -122.290320, 37.883203 ], [ -122.290385, 37.883220 ], [ -122.290943, 37.884372 ], [ -122.291179, 37.884981 ], [ -122.290170, 37.885219 ], [ -122.289848, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290170, 37.885219 ], [ -122.289848, 37.884507 ], [ -122.290170, 37.883576 ], [ -122.290299, 37.883034 ], [ -122.290320, 37.883203 ], [ -122.290385, 37.883220 ], [ -122.290943, 37.884372 ], [ -122.291179, 37.884981 ], [ -122.290170, 37.885219 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289720, 37.884897 ], [ -122.288754, 37.884694 ], [ -122.289312, 37.883288 ], [ -122.289355, 37.883305 ], [ -122.289526, 37.883271 ], [ -122.289762, 37.883186 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883169 ], [ -122.290256, 37.883186 ], [ -122.290170, 37.883576 ], [ -122.289720, 37.884897 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.883017 ], [ -122.296093, 37.883068 ], [ -122.296243, 37.883186 ], [ -122.296371, 37.883339 ], [ -122.296715, 37.883525 ], [ -122.296758, 37.883525 ], [ -122.296865, 37.883830 ], [ -122.295985, 37.883999 ], [ -122.295706, 37.883017 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.295706, 37.883017 ], [ -122.296093, 37.883068 ], [ -122.296243, 37.883186 ], [ -122.296371, 37.883339 ], [ -122.296715, 37.883525 ], [ -122.296758, 37.883525 ], [ -122.296865, 37.883830 ], [ -122.295985, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294719, 37.882780 ], [ -122.295449, 37.882983 ], [ -122.295706, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ], [ -122.294719, 37.882780 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.294719, 37.882780 ], [ -122.295449, 37.882983 ], [ -122.295706, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892822 ], [ -122.287531, 37.890892 ], [ -122.288775, 37.890824 ], [ -122.288754, 37.891027 ], [ -122.288496, 37.891332 ], [ -122.288411, 37.891484 ], [ -122.288325, 37.892873 ], [ -122.287445, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892873 ], [ -122.287445, 37.892822 ], [ -122.287531, 37.890892 ], [ -122.288775, 37.890824 ], [ -122.288754, 37.891027 ], [ -122.288496, 37.891332 ], [ -122.288411, 37.891484 ], [ -122.288325, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890926 ], [ -122.287531, 37.890892 ], [ -122.287467, 37.892433 ], [ -122.287445, 37.892822 ], [ -122.287188, 37.892822 ], [ -122.287188, 37.890926 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892822 ], [ -122.287188, 37.890926 ], [ -122.287531, 37.890892 ], [ -122.287467, 37.892433 ], [ -122.287445, 37.892822 ], [ -122.287188, 37.892822 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.287381, 37.888944 ], [ -122.288110, 37.888690 ], [ -122.288775, 37.890671 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.287381, 37.888944 ], [ -122.288110, 37.888690 ], [ -122.288775, 37.890671 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889080 ], [ -122.287724, 37.890875 ], [ -122.287531, 37.890892 ], [ -122.287531, 37.890841 ], [ -122.286651, 37.890909 ], [ -122.286158, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889080 ], [ -122.287724, 37.890875 ], [ -122.287531, 37.890892 ], [ -122.287531, 37.890841 ], [ -122.286651, 37.890909 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286050, 37.888995 ], [ -122.286050, 37.888555 ], [ -122.286394, 37.887606 ], [ -122.287488, 37.887877 ], [ -122.287273, 37.888216 ], [ -122.287080, 37.888826 ], [ -122.287080, 37.889012 ], [ -122.286673, 37.889181 ], [ -122.286136, 37.889351 ], [ -122.286050, 37.888995 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286136, 37.889351 ], [ -122.286050, 37.888995 ], [ -122.286050, 37.888555 ], [ -122.286394, 37.887606 ], [ -122.287488, 37.887877 ], [ -122.287273, 37.888216 ], [ -122.287080, 37.888826 ], [ -122.287080, 37.889012 ], [ -122.286673, 37.889181 ], [ -122.286136, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285557, 37.890807 ], [ -122.285171, 37.889503 ], [ -122.285600, 37.889503 ], [ -122.286158, 37.889418 ], [ -122.286651, 37.890909 ], [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ], [ -122.285171, 37.889503 ], [ -122.285600, 37.889503 ], [ -122.286158, 37.889418 ], [ -122.286651, 37.890909 ], [ -122.285686, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.890926 ], [ -122.284484, 37.890671 ], [ -122.284398, 37.890485 ], [ -122.284033, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889503 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284505, 37.891027 ], [ -122.284527, 37.890926 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284505, 37.891027 ], [ -122.284527, 37.890926 ], [ -122.284484, 37.890671 ], [ -122.284398, 37.890485 ], [ -122.284033, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889503 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284505, 37.891027 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889435 ], [ -122.282896, 37.889215 ], [ -122.282832, 37.889147 ], [ -122.283454, 37.889164 ], [ -122.284033, 37.889317 ], [ -122.284398, 37.890485 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284505, 37.891027 ], [ -122.283497, 37.891078 ], [ -122.282982, 37.889435 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.282982, 37.889435 ], [ -122.282896, 37.889215 ], [ -122.282832, 37.889147 ], [ -122.283454, 37.889164 ], [ -122.284033, 37.889317 ], [ -122.284398, 37.890485 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284505, 37.891027 ], [ -122.283497, 37.891078 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285192, 37.889435 ], [ -122.285085, 37.889130 ], [ -122.284999, 37.888639 ], [ -122.285042, 37.888250 ], [ -122.285149, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286394, 37.887606 ], [ -122.286050, 37.888555 ], [ -122.286050, 37.888995 ], [ -122.286136, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285192, 37.889435 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889452 ], [ -122.285192, 37.889435 ], [ -122.285085, 37.889130 ], [ -122.284999, 37.888639 ], [ -122.285042, 37.888250 ], [ -122.285149, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286394, 37.887606 ], [ -122.286050, 37.888555 ], [ -122.286050, 37.888995 ], [ -122.286136, 37.889351 ], [ -122.285385, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.284956, 37.888233 ], [ -122.285063, 37.887877 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285149, 37.887894 ], [ -122.284999, 37.888487 ], [ -122.285063, 37.889029 ], [ -122.285192, 37.889435 ], [ -122.285106, 37.889435 ], [ -122.284999, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285106, 37.889435 ], [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.284956, 37.888233 ], [ -122.285063, 37.887877 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285149, 37.887894 ], [ -122.284999, 37.888487 ], [ -122.285063, 37.889029 ], [ -122.285192, 37.889435 ], [ -122.285106, 37.889435 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.889401 ], [ -122.283690, 37.889147 ], [ -122.283669, 37.888961 ], [ -122.283711, 37.888775 ], [ -122.284334, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285063, 37.887877 ], [ -122.284956, 37.888233 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285106, 37.889435 ], [ -122.284698, 37.889401 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285106, 37.889435 ], [ -122.284698, 37.889401 ], [ -122.283690, 37.889147 ], [ -122.283669, 37.888961 ], [ -122.283711, 37.888775 ], [ -122.284334, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285063, 37.887877 ], [ -122.284956, 37.888233 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285106, 37.889435 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283089, 37.889063 ], [ -122.282746, 37.889080 ], [ -122.282660, 37.888944 ], [ -122.282660, 37.888589 ], [ -122.283282, 37.886895 ], [ -122.283540, 37.886963 ], [ -122.284334, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889130 ], [ -122.283089, 37.889063 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889130 ], [ -122.283089, 37.889063 ], [ -122.282746, 37.889080 ], [ -122.282660, 37.888944 ], [ -122.282660, 37.888589 ], [ -122.283282, 37.886895 ], [ -122.283540, 37.886963 ], [ -122.284334, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889130 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.888284 ], [ -122.289269, 37.885862 ], [ -122.289333, 37.885981 ], [ -122.288303, 37.888572 ], [ -122.288153, 37.888606 ], [ -122.288325, 37.888284 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.888606 ], [ -122.288325, 37.888284 ], [ -122.289269, 37.885862 ], [ -122.289333, 37.885981 ], [ -122.288303, 37.888572 ], [ -122.288153, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.888826 ], [ -122.287273, 37.888216 ], [ -122.287338, 37.888081 ], [ -122.287595, 37.887776 ], [ -122.287681, 37.887623 ], [ -122.288561, 37.885286 ], [ -122.288754, 37.884694 ], [ -122.289612, 37.884880 ], [ -122.289269, 37.885862 ], [ -122.288325, 37.888284 ], [ -122.288153, 37.888606 ], [ -122.287617, 37.888775 ], [ -122.287080, 37.889012 ], [ -122.287080, 37.888826 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.889012 ], [ -122.287080, 37.888826 ], [ -122.287273, 37.888216 ], [ -122.287338, 37.888081 ], [ -122.287595, 37.887776 ], [ -122.287681, 37.887623 ], [ -122.288561, 37.885286 ], [ -122.288754, 37.884694 ], [ -122.289612, 37.884880 ], [ -122.289269, 37.885862 ], [ -122.288325, 37.888284 ], [ -122.288153, 37.888606 ], [ -122.287617, 37.888775 ], [ -122.287080, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.287037, 37.886912 ], [ -122.287488, 37.885828 ], [ -122.287960, 37.884507 ], [ -122.288754, 37.884694 ], [ -122.288561, 37.885286 ], [ -122.287681, 37.887623 ], [ -122.287595, 37.887776 ], [ -122.287488, 37.887877 ], [ -122.286758, 37.887691 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287488, 37.887877 ], [ -122.286758, 37.887691 ], [ -122.287037, 37.886912 ], [ -122.287488, 37.885828 ], [ -122.287960, 37.884507 ], [ -122.288754, 37.884694 ], [ -122.288561, 37.885286 ], [ -122.287681, 37.887623 ], [ -122.287595, 37.887776 ], [ -122.287488, 37.887877 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286286, 37.886523 ], [ -122.286544, 37.885794 ], [ -122.286651, 37.885642 ], [ -122.286737, 37.885642 ], [ -122.287488, 37.885828 ], [ -122.287123, 37.886726 ], [ -122.286286, 37.886523 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287123, 37.886726 ], [ -122.286286, 37.886523 ], [ -122.286544, 37.885794 ], [ -122.286651, 37.885642 ], [ -122.286737, 37.885642 ], [ -122.287488, 37.885828 ], [ -122.287123, 37.886726 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287188, 37.884101 ], [ -122.287810, 37.884169 ], [ -122.288067, 37.884253 ], [ -122.287488, 37.885828 ], [ -122.286737, 37.885642 ], [ -122.286651, 37.885642 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886523 ], [ -122.287123, 37.886726 ], [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287188, 37.884101 ], [ -122.287810, 37.884169 ], [ -122.288067, 37.884253 ], [ -122.287488, 37.885828 ], [ -122.286737, 37.885642 ], [ -122.286651, 37.885642 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886523 ], [ -122.287123, 37.886726 ], [ -122.286758, 37.887691 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289312, 37.883288 ], [ -122.288754, 37.884694 ], [ -122.287960, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288754, 37.884694 ], [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289312, 37.883288 ], [ -122.288754, 37.884694 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284334, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ], [ -122.284334, 37.887149 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.284334, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285085, 37.885320 ], [ -122.285600, 37.883999 ], [ -122.285686, 37.883644 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883982 ], [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ], [ -122.285600, 37.883999 ], [ -122.285686, 37.883644 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883982 ], [ -122.285986, 37.885523 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886963 ], [ -122.283819, 37.886235 ], [ -122.284505, 37.884372 ], [ -122.284505, 37.884202 ], [ -122.285686, 37.883644 ], [ -122.285600, 37.883999 ], [ -122.284570, 37.886709 ], [ -122.284334, 37.887149 ], [ -122.283540, 37.886963 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284334, 37.887149 ], [ -122.283540, 37.886963 ], [ -122.283819, 37.886235 ], [ -122.284505, 37.884372 ], [ -122.284505, 37.884202 ], [ -122.285686, 37.883644 ], [ -122.285600, 37.883999 ], [ -122.284570, 37.886709 ], [ -122.284334, 37.887149 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282681, 37.885981 ], [ -122.283175, 37.885371 ], [ -122.283282, 37.884778 ], [ -122.283390, 37.884727 ], [ -122.283862, 37.884541 ], [ -122.284505, 37.884202 ], [ -122.284505, 37.884372 ], [ -122.283819, 37.886235 ], [ -122.282681, 37.885981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283819, 37.886235 ], [ -122.282681, 37.885981 ], [ -122.283175, 37.885371 ], [ -122.283282, 37.884778 ], [ -122.283390, 37.884727 ], [ -122.283862, 37.884541 ], [ -122.284505, 37.884202 ], [ -122.284505, 37.884372 ], [ -122.283819, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282016, 37.884185 ], [ -122.282574, 37.882729 ], [ -122.282767, 37.882543 ], [ -122.282810, 37.882509 ], [ -122.283025, 37.882526 ], [ -122.283690, 37.882492 ], [ -122.285085, 37.882475 ], [ -122.285385, 37.882441 ], [ -122.286050, 37.882458 ], [ -122.285836, 37.883034 ], [ -122.285707, 37.883542 ], [ -122.283797, 37.884473 ], [ -122.283132, 37.884761 ], [ -122.282424, 37.884965 ], [ -122.282124, 37.884998 ], [ -122.281995, 37.884981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.884998 ], [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282016, 37.884185 ], [ -122.282574, 37.882729 ], [ -122.282767, 37.882543 ], [ -122.282810, 37.882509 ], [ -122.283025, 37.882526 ], [ -122.283690, 37.882492 ], [ -122.285085, 37.882475 ], [ -122.285385, 37.882441 ], [ -122.286050, 37.882458 ], [ -122.285836, 37.883034 ], [ -122.285707, 37.883542 ], [ -122.283797, 37.884473 ], [ -122.283132, 37.884761 ], [ -122.282424, 37.884965 ], [ -122.282124, 37.884998 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282381, 37.890790 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889232 ], [ -122.282639, 37.889164 ], [ -122.282853, 37.889164 ], [ -122.282982, 37.889435 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ], [ -122.282381, 37.890790 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.282381, 37.890790 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889232 ], [ -122.282639, 37.889164 ], [ -122.282853, 37.889164 ], [ -122.282982, 37.889435 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281673, 37.888673 ], [ -122.281673, 37.888250 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886895 ], [ -122.282660, 37.888589 ], [ -122.282660, 37.888944 ], [ -122.282746, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ], [ -122.281673, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281673, 37.888673 ], [ -122.281673, 37.888250 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886895 ], [ -122.282660, 37.888589 ], [ -122.282660, 37.888944 ], [ -122.282746, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886675 ], [ -122.282488, 37.886319 ], [ -122.282681, 37.885981 ], [ -122.283819, 37.886235 ], [ -122.283540, 37.886963 ], [ -122.282295, 37.886675 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886963 ], [ -122.282295, 37.886675 ], [ -122.282488, 37.886319 ], [ -122.282681, 37.885981 ], [ -122.283819, 37.886235 ], [ -122.283540, 37.886963 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287810, 37.884169 ], [ -122.287188, 37.884101 ], [ -122.286673, 37.883999 ], [ -122.287080, 37.882915 ], [ -122.287209, 37.882594 ], [ -122.287939, 37.882881 ], [ -122.288518, 37.883051 ], [ -122.288067, 37.884253 ], [ -122.287810, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288067, 37.884253 ], [ -122.287810, 37.884169 ], [ -122.287188, 37.884101 ], [ -122.286673, 37.883999 ], [ -122.287080, 37.882915 ], [ -122.287209, 37.882594 ], [ -122.287939, 37.882881 ], [ -122.288518, 37.883051 ], [ -122.288067, 37.884253 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882864 ], [ -122.287123, 37.882560 ], [ -122.287209, 37.882594 ], [ -122.287188, 37.882661 ], [ -122.287080, 37.882915 ], [ -122.287016, 37.882864 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.882915 ], [ -122.287016, 37.882864 ], [ -122.287123, 37.882560 ], [ -122.287209, 37.882594 ], [ -122.287188, 37.882661 ], [ -122.287080, 37.882915 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285707, 37.883542 ], [ -122.287016, 37.882864 ], [ -122.287080, 37.882915 ], [ -122.285686, 37.883644 ], [ -122.285707, 37.883542 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.883644 ], [ -122.285707, 37.883542 ], [ -122.287016, 37.882864 ], [ -122.287080, 37.882915 ], [ -122.285686, 37.883644 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285836, 37.883034 ], [ -122.286050, 37.882458 ], [ -122.286758, 37.882458 ], [ -122.287123, 37.882560 ], [ -122.287016, 37.882864 ], [ -122.285707, 37.883542 ], [ -122.285836, 37.883034 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285707, 37.883542 ], [ -122.285836, 37.883034 ], [ -122.286050, 37.882458 ], [ -122.286758, 37.882458 ], [ -122.287123, 37.882560 ], [ -122.287016, 37.882864 ], [ -122.285707, 37.883542 ] ] ] } } ] } ] } ] } diff --git a/tests/join-population/joined.mbtiles.json b/tests/join-population/joined.mbtiles.json index 4ea8680..1265559 100644 --- a/tests/join-population/joined.mbtiles.json +++ b/tests/join-population/joined.mbtiles.json @@ -12,3017 +12,3017 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.321777, 37.874853 ], [ -122.343750, 37.874853 ], [ -122.343750, 37.892196 ], [ -122.321777, 37.892196 ], [ -122.321777, 37.874853 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.321777, 37.892196 ], [ -122.321777, 37.874853 ], [ -122.343750, 37.874853 ], [ -122.343750, 37.892196 ], [ -122.321777, 37.892196 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.338257, 37.892196 ], [ -122.316284, 37.900865 ], [ -122.310791, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.900865 ], [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.338257, 37.892196 ], [ -122.316284, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.883525 ], [ -122.332764, 37.879189 ], [ -122.338257, 37.892196 ], [ -122.321777, 37.892196 ], [ -122.316284, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.321777, 37.892196 ], [ -122.316284, 37.883525 ], [ -122.332764, 37.879189 ], [ -122.338257, 37.892196 ], [ -122.321777, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.887860 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.896530 ], [ -122.299805, 37.887860 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.896530 ], [ -122.299805, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.316284, 37.894363 ], [ -122.335510, 37.890028 ], [ -122.335510, 37.894363 ], [ -122.313538, 37.898698 ], [ -122.310791, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.898698 ], [ -122.310791, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.316284, 37.894363 ], [ -122.335510, 37.890028 ], [ -122.335510, 37.894363 ], [ -122.313538, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.890028 ], [ -122.330017, 37.892196 ], [ -122.316284, 37.894363 ], [ -122.310791, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.330017, 37.892196 ], [ -122.316284, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.892196 ], [ -122.308044, 37.890028 ], [ -122.310791, 37.898698 ], [ -122.302551, 37.898698 ], [ -122.305298, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.892196 ], [ -122.308044, 37.890028 ], [ -122.310791, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.890028 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.894363 ], [ -122.302551, 37.894363 ], [ -122.302551, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.894363 ], [ -122.302551, 37.890028 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.894363 ], [ -122.302551, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.883525 ], [ -122.330017, 37.879189 ], [ -122.335510, 37.890028 ], [ -122.319031, 37.890028 ], [ -122.313538, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.319031, 37.890028 ], [ -122.313538, 37.883525 ], [ -122.330017, 37.879189 ], [ -122.335510, 37.890028 ], [ -122.319031, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.313538, 37.883525 ], [ -122.319031, 37.890028 ], [ -122.313538, 37.890028 ], [ -122.310791, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.890028 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.313538, 37.883525 ], [ -122.319031, 37.890028 ], [ -122.313538, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.881357 ], [ -122.313538, 37.881357 ], [ -122.313538, 37.885693 ], [ -122.308044, 37.885693 ], [ -122.308044, 37.881357 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.885693 ], [ -122.308044, 37.881357 ], [ -122.313538, 37.881357 ], [ -122.313538, 37.885693 ], [ -122.308044, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890028 ], [ -122.305298, 37.890028 ], [ -122.305298, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.894363 ], [ -122.299805, 37.890028 ], [ -122.305298, 37.890028 ], [ -122.305298, 37.894363 ], [ -122.299805, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.883525 ], [ -122.308044, 37.883525 ], [ -122.308044, 37.887860 ], [ -122.302551, 37.887860 ], [ -122.302551, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.883525 ], [ -122.308044, 37.883525 ], [ -122.308044, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.900865 ], [ -122.294312, 37.900865 ], [ -122.294312, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.900865 ], [ -122.294312, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.900865 ], [ -122.294312, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.898698 ], [ -122.288818, 37.898698 ], [ -122.288818, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.898698 ], [ -122.288818, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.898698 ], [ -122.288818, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.894363 ], [ -122.288818, 37.894363 ], [ -122.288818, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.288818, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.894363 ], [ -122.288818, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.887860 ], [ -122.288818, 37.887860 ], [ -122.288818, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.887860 ], [ -122.288818, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.887860 ], [ -122.288818, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.885693 ], [ -122.288818, 37.885693 ], [ -122.288818, 37.890028 ], [ -122.283325, 37.890028 ], [ -122.283325, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.890028 ], [ -122.283325, 37.885693 ], [ -122.288818, 37.885693 ], [ -122.288818, 37.890028 ], [ -122.283325, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.883525 ], [ -122.288818, 37.883525 ], [ -122.288818, 37.887860 ], [ -122.283325, 37.887860 ], [ -122.283325, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887860 ], [ -122.283325, 37.883525 ], [ -122.288818, 37.883525 ], [ -122.288818, 37.887860 ], [ -122.283325, 37.887860 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.314911, 37.893279 ], [ -122.320404, 37.890028 ], [ -122.325897, 37.893279 ], [ -122.328644, 37.890028 ], [ -122.335510, 37.890028 ], [ -122.334137, 37.893279 ], [ -122.313538, 37.897614 ], [ -122.309418, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.897614 ], [ -122.309418, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.314911, 37.893279 ], [ -122.320404, 37.890028 ], [ -122.325897, 37.893279 ], [ -122.328644, 37.890028 ], [ -122.335510, 37.890028 ], [ -122.334137, 37.893279 ], [ -122.313538, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.312164, 37.897614 ], [ -122.309418, 37.893279 ], [ -122.309418, 37.891112 ], [ -122.312164, 37.897614 ] ] ], [ [ [ -122.310791, 37.888944 ], [ -122.328644, 37.890028 ], [ -122.328644, 37.892196 ], [ -122.324524, 37.893279 ], [ -122.323151, 37.890028 ], [ -122.320404, 37.890028 ], [ -122.314911, 37.893279 ], [ -122.310791, 37.888944 ] ] ], [ [ [ -122.309418, 37.888944 ], [ -122.310791, 37.888944 ], [ -122.309418, 37.891112 ], [ -122.309418, 37.888944 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.891112 ], [ -122.309418, 37.888944 ], [ -122.310791, 37.888944 ], [ -122.309418, 37.891112 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.314911, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.323151, 37.890028 ], [ -122.328644, 37.890028 ], [ -122.328644, 37.892196 ], [ -122.324524, 37.893279 ], [ -122.323151, 37.890028 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897614 ], [ -122.309418, 37.891112 ], [ -122.312164, 37.898698 ], [ -122.309418, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.898698 ], [ -122.309418, 37.897614 ], [ -122.309418, 37.891112 ], [ -122.312164, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.313538, 37.896530 ], [ -122.313538, 37.898698 ], [ -122.310791, 37.898698 ], [ -122.310791, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.898698 ], [ -122.310791, 37.896530 ], [ -122.313538, 37.896530 ], [ -122.313538, 37.898698 ], [ -122.310791, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.308044, 37.894363 ], [ -122.305298, 37.894363 ], [ -122.305298, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.894363 ], [ -122.305298, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.308044, 37.894363 ], [ -122.305298, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.891112 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898698 ], [ -122.302551, 37.898698 ], [ -122.305298, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.891112 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891112 ], [ -122.305298, 37.891112 ], [ -122.305298, 37.893279 ], [ -122.302551, 37.893279 ], [ -122.302551, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.893279 ], [ -122.302551, 37.891112 ], [ -122.305298, 37.891112 ], [ -122.305298, 37.893279 ], [ -122.302551, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893279 ], [ -122.303925, 37.893279 ], [ -122.303925, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895447 ], [ -122.301178, 37.893279 ], [ -122.303925, 37.893279 ], [ -122.303925, 37.895447 ], [ -122.301178, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.325897, 37.888944 ], [ -122.317657, 37.890028 ], [ -122.317657, 37.885693 ], [ -122.313538, 37.882441 ], [ -122.328644, 37.878105 ], [ -122.335510, 37.890028 ], [ -122.328644, 37.890028 ], [ -122.325897, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.328644, 37.890028 ], [ -122.325897, 37.888944 ], [ -122.317657, 37.890028 ], [ -122.317657, 37.885693 ], [ -122.313538, 37.882441 ], [ -122.328644, 37.878105 ], [ -122.335510, 37.890028 ], [ -122.328644, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.312164, 37.890028 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.882441 ], [ -122.313538, 37.882441 ], [ -122.317657, 37.885693 ], [ -122.317657, 37.890028 ], [ -122.312164, 37.890028 ] ] ], [ [ [ -122.325897, 37.888944 ], [ -122.328644, 37.890028 ], [ -122.317657, 37.890028 ], [ -122.325897, 37.888944 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317657, 37.890028 ], [ -122.312164, 37.890028 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.882441 ], [ -122.313538, 37.882441 ], [ -122.317657, 37.885693 ], [ -122.317657, 37.890028 ] ] ], [ [ [ -122.317657, 37.890028 ], [ -122.325897, 37.888944 ], [ -122.328644, 37.890028 ], [ -122.317657, 37.890028 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.886777 ], [ -122.310791, 37.886777 ], [ -122.310791, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888944 ], [ -122.308044, 37.886777 ], [ -122.310791, 37.886777 ], [ -122.310791, 37.888944 ], [ -122.308044, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.887860 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.882441 ], [ -122.309418, 37.883525 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.882441 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.882441 ], [ -122.309418, 37.883525 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.308044, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.882441 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.884609 ], [ -122.305298, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.308044, 37.884609 ], [ -122.305298, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.888944 ], [ -122.305298, 37.888944 ], [ -122.305298, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891112 ], [ -122.302551, 37.888944 ], [ -122.305298, 37.888944 ], [ -122.305298, 37.891112 ], [ -122.302551, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.888944 ], [ -122.303925, 37.888944 ], [ -122.303925, 37.891112 ], [ -122.301178, 37.891112 ], [ -122.301178, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.891112 ], [ -122.301178, 37.888944 ], [ -122.303925, 37.888944 ], [ -122.303925, 37.891112 ], [ -122.301178, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.888944 ], [ -122.302551, 37.888944 ], [ -122.302551, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891112 ], [ -122.299805, 37.888944 ], [ -122.302551, 37.888944 ], [ -122.302551, 37.891112 ], [ -122.299805, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.305298, 37.886777 ], [ -122.308044, 37.885693 ], [ -122.308044, 37.887860 ], [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ], [ -122.305298, 37.886777 ], [ -122.308044, 37.885693 ], [ -122.308044, 37.887860 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.883525 ], [ -122.306671, 37.882441 ], [ -122.308044, 37.885693 ], [ -122.305298, 37.885693 ], [ -122.302551, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.885693 ], [ -122.302551, 37.883525 ], [ -122.306671, 37.882441 ], [ -122.308044, 37.885693 ], [ -122.305298, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.883525 ], [ -122.303925, 37.883525 ], [ -122.303925, 37.886777 ], [ -122.301178, 37.886777 ], [ -122.301178, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.301178, 37.883525 ], [ -122.303925, 37.883525 ], [ -122.303925, 37.886777 ], [ -122.301178, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.882441 ], [ -122.302551, 37.882441 ], [ -122.302551, 37.884609 ], [ -122.299805, 37.884609 ], [ -122.299805, 37.882441 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884609 ], [ -122.299805, 37.882441 ], [ -122.302551, 37.882441 ], [ -122.302551, 37.884609 ], [ -122.299805, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.295685, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.897614 ], [ -122.295685, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898698 ], [ -122.298431, 37.896530 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.898698 ], [ -122.298431, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299805, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.297058, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299805, 37.897614 ], [ -122.297058, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.297058, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.895447 ], [ -122.297058, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.897614 ], [ -122.294312, 37.897614 ], [ -122.294312, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.897614 ], [ -122.294312, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.897614 ], [ -122.294312, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.297058, 37.898698 ], [ -122.297058, 37.900865 ], [ -122.294312, 37.900865 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.900865 ], [ -122.294312, 37.898698 ], [ -122.297058, 37.898698 ], [ -122.297058, 37.900865 ], [ -122.294312, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.899781 ], [ -122.292938, 37.899781 ], [ -122.292938, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.899781 ], [ -122.292938, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.899781 ], [ -122.292938, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.896530 ], [ -122.292938, 37.896530 ], [ -122.292938, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.896530 ], [ -122.292938, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.896530 ], [ -122.292938, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.895447 ], [ -122.291565, 37.895447 ], [ -122.291565, 37.897614 ], [ -122.288818, 37.897614 ], [ -122.288818, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.897614 ], [ -122.288818, 37.895447 ], [ -122.291565, 37.895447 ], [ -122.291565, 37.897614 ], [ -122.288818, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.896530 ], [ -122.291565, 37.896530 ], [ -122.291565, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896530 ], [ -122.290192, 37.896530 ], [ -122.290192, 37.898698 ], [ -122.287445, 37.898698 ], [ -122.287445, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.896530 ], [ -122.290192, 37.896530 ], [ -122.290192, 37.898698 ], [ -122.287445, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894363 ], [ -122.290192, 37.894363 ], [ -122.290192, 37.896530 ], [ -122.287445, 37.896530 ], [ -122.287445, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896530 ], [ -122.287445, 37.894363 ], [ -122.290192, 37.894363 ], [ -122.290192, 37.896530 ], [ -122.287445, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.299805, 37.885693 ], [ -122.299805, 37.887860 ], [ -122.297058, 37.887860 ], [ -122.297058, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887860 ], [ -122.297058, 37.885693 ], [ -122.299805, 37.885693 ], [ -122.299805, 37.887860 ], [ -122.297058, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.892196 ], [ -122.294312, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.892196 ], [ -122.294312, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892196 ], [ -122.297058, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.892196 ], [ -122.297058, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.886777 ], [ -122.298431, 37.884609 ], [ -122.301178, 37.884609 ], [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.884609 ], [ -122.301178, 37.884609 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.885693 ], [ -122.297058, 37.885693 ], [ -122.297058, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.297058, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.885693 ], [ -122.297058, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.886777 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.888944 ], [ -122.295685, 37.888944 ], [ -122.295685, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.888944 ], [ -122.295685, 37.886777 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.888944 ], [ -122.295685, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.883525 ], [ -122.297058, 37.883525 ], [ -122.297058, 37.885693 ], [ -122.294312, 37.885693 ], [ -122.294312, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.885693 ], [ -122.294312, 37.883525 ], [ -122.297058, 37.883525 ], [ -122.297058, 37.885693 ], [ -122.294312, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.886777 ], [ -122.294312, 37.886777 ], [ -122.294312, 37.888944 ], [ -122.291565, 37.888944 ], [ -122.291565, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888944 ], [ -122.291565, 37.886777 ], [ -122.294312, 37.886777 ], [ -122.294312, 37.888944 ], [ -122.291565, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.892196 ], [ -122.291565, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.892196 ], [ -122.291565, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.894363 ], [ -122.288818, 37.894363 ], [ -122.288818, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.288818, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.894363 ], [ -122.288818, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890028 ], [ -122.291565, 37.890028 ], [ -122.291565, 37.892196 ], [ -122.288818, 37.892196 ], [ -122.288818, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.288818, 37.890028 ], [ -122.291565, 37.890028 ], [ -122.291565, 37.892196 ], [ -122.288818, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885693 ], [ -122.291565, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.885693 ], [ -122.291565, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.887860 ], [ -122.290192, 37.887860 ], [ -122.290192, 37.890028 ], [ -122.287445, 37.890028 ], [ -122.287445, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.287445, 37.887860 ], [ -122.290192, 37.887860 ], [ -122.290192, 37.890028 ], [ -122.287445, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.884609 ], [ -122.292938, 37.884609 ], [ -122.292938, 37.886777 ], [ -122.290192, 37.886777 ], [ -122.290192, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.886777 ], [ -122.290192, 37.884609 ], [ -122.292938, 37.884609 ], [ -122.292938, 37.886777 ], [ -122.290192, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.890028 ], [ -122.286072, 37.890028 ], [ -122.286072, 37.892196 ], [ -122.283325, 37.892196 ], [ -122.283325, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.892196 ], [ -122.283325, 37.890028 ], [ -122.286072, 37.890028 ], [ -122.286072, 37.892196 ], [ -122.283325, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886777 ], [ -122.286072, 37.886777 ], [ -122.286072, 37.888944 ], [ -122.283325, 37.888944 ], [ -122.283325, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.888944 ], [ -122.283325, 37.886777 ], [ -122.286072, 37.886777 ], [ -122.286072, 37.888944 ], [ -122.283325, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.887860 ], [ -122.288818, 37.887860 ], [ -122.288818, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.887860 ], [ -122.288818, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.887860 ], [ -122.288818, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885693 ], [ -122.287445, 37.885693 ], [ -122.287445, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.885693 ], [ -122.287445, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885693 ], [ -122.287445, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.884609 ], [ -122.287445, 37.884609 ], [ -122.287445, 37.886777 ], [ -122.284698, 37.886777 ], [ -122.284698, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.886777 ], [ -122.284698, 37.884609 ], [ -122.287445, 37.884609 ], [ -122.287445, 37.886777 ], [ -122.284698, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.884609 ], [ -122.286072, 37.884609 ], [ -122.286072, 37.886777 ], [ -122.283325, 37.886777 ], [ -122.283325, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886777 ], [ -122.283325, 37.884609 ], [ -122.286072, 37.884609 ], [ -122.286072, 37.886777 ], [ -122.283325, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.883525 ], [ -122.286072, 37.883525 ], [ -122.283325, 37.885693 ], [ -122.283325, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.885693 ], [ -122.283325, 37.883525 ], [ -122.286072, 37.883525 ], [ -122.283325, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.885693 ], [ -122.284698, 37.885693 ], [ -122.284698, 37.887860 ], [ -122.281952, 37.887860 ], [ -122.281952, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.887860 ], [ -122.281952, 37.885693 ], [ -122.284698, 37.885693 ], [ -122.284698, 37.887860 ], [ -122.281952, 37.887860 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.887860 ], [ -122.311478, 37.889486 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ], [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.891112 ], [ -122.309418, 37.887860 ] ] ], [ [ [ -122.309418, 37.893279 ], [ -122.309418, 37.892737 ], [ -122.312164, 37.897072 ], [ -122.309418, 37.893279 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ] ] ], [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.894905 ], [ -122.308731, 37.891112 ], [ -122.312164, 37.897614 ], [ -122.309418, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.897614 ], [ -122.309418, 37.894905 ], [ -122.308731, 37.891112 ], [ -122.312164, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897614 ], [ -122.308731, 37.891112 ], [ -122.311478, 37.898156 ], [ -122.309418, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.898156 ], [ -122.309418, 37.897614 ], [ -122.308731, 37.891112 ], [ -122.311478, 37.898156 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.895447 ], [ -122.310104, 37.895447 ], [ -122.310104, 37.893821 ], [ -122.311478, 37.893821 ], [ -122.311478, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.893821 ], [ -122.307358, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.893821 ], [ -122.307358, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.898156 ], [ -122.306671, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.306671, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898156 ], [ -122.302551, 37.898156 ], [ -122.302551, 37.899240 ], [ -122.301178, 37.899240 ], [ -122.301178, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.899240 ], [ -122.301178, 37.898156 ], [ -122.302551, 37.898156 ], [ -122.302551, 37.899240 ], [ -122.301178, 37.899240 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.301178, 37.897072 ], [ -122.301865, 37.898698 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.300491, 37.897072 ], [ -122.301178, 37.897072 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.309418, 37.898156 ], [ -122.301865, 37.898698 ], [ -122.301178, 37.896530 ], [ -122.303238, 37.895989 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.893821 ], [ -122.304611, 37.890570 ], [ -122.306671, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.301178, 37.896530 ], [ -122.303238, 37.895989 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.893821 ], [ -122.304611, 37.890570 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898156 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.892196 ], [ -122.303238, 37.891654 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894905 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.891654 ], [ -122.303238, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.894363 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.895989 ], [ -122.301865, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.300491, 37.895447 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.897072 ], [ -122.299805, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.299805, 37.895447 ], [ -122.300491, 37.895447 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896530 ], [ -122.301178, 37.894363 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.893821 ], [ -122.302551, 37.893821 ], [ -122.301865, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.893821 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.893821 ], [ -122.302551, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.893821 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.893821 ], [ -122.301178, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.894905 ], [ -122.301178, 37.894905 ], [ -122.301178, 37.895989 ], [ -122.299805, 37.895989 ], [ -122.299805, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895989 ], [ -122.299805, 37.894905 ], [ -122.301178, 37.894905 ], [ -122.301178, 37.895989 ], [ -122.299805, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.893821 ], [ -122.299805, 37.892737 ], [ -122.301178, 37.892196 ], [ -122.301178, 37.894363 ], [ -122.300491, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.892737 ], [ -122.301178, 37.892196 ], [ -122.301178, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327957, 37.888944 ], [ -122.325211, 37.888402 ], [ -122.322464, 37.889486 ], [ -122.317657, 37.889486 ], [ -122.316284, 37.887860 ], [ -122.316284, 37.885693 ], [ -122.315598, 37.884067 ], [ -122.312851, 37.881899 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327957, 37.890028 ], [ -122.327957, 37.888944 ], [ -122.325211, 37.888402 ], [ -122.322464, 37.889486 ], [ -122.317657, 37.889486 ], [ -122.316284, 37.887860 ], [ -122.316284, 37.885693 ], [ -122.315598, 37.884067 ], [ -122.312851, 37.881899 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.890028 ], [ -122.327957, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.308731, 37.882441 ], [ -122.312851, 37.881899 ], [ -122.315598, 37.884067 ], [ -122.316284, 37.885693 ], [ -122.316284, 37.887860 ], [ -122.317657, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.325211, 37.888402 ], [ -122.327957, 37.888944 ], [ -122.327957, 37.890028 ], [ -122.311478, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317657, 37.889486 ], [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.308731, 37.882441 ], [ -122.312851, 37.881899 ], [ -122.315598, 37.884067 ], [ -122.316284, 37.885693 ], [ -122.316284, 37.887860 ], [ -122.317657, 37.889486 ] ] ], [ [ [ -122.317657, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.325211, 37.888402 ], [ -122.327957, 37.888944 ], [ -122.327957, 37.890028 ], [ -122.317657, 37.889486 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.889486 ], [ -122.307358, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.889486 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.889486 ], [ -122.307358, 37.889486 ], [ -122.307358, 37.890570 ], [ -122.305984, 37.890570 ], [ -122.305984, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.890570 ], [ -122.305984, 37.889486 ], [ -122.307358, 37.889486 ], [ -122.307358, 37.890570 ], [ -122.305984, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.888944 ], [ -122.306671, 37.888944 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888944 ], [ -122.306671, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.888944 ], [ -122.306671, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ], [ -122.308044, 37.882441 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.883525 ], [ -122.305984, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.307358, 37.887318 ], [ -122.306671, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.306671, 37.883525 ], [ -122.305984, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.888944 ], [ -122.304611, 37.888944 ], [ -122.304611, 37.890028 ], [ -122.303238, 37.890028 ], [ -122.303238, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890028 ], [ -122.303238, 37.888944 ], [ -122.304611, 37.888944 ], [ -122.304611, 37.890028 ], [ -122.303238, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.889486 ], [ -122.305984, 37.889486 ], [ -122.306671, 37.890028 ], [ -122.303925, 37.890570 ], [ -122.303925, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.890570 ], [ -122.303925, 37.889486 ], [ -122.305984, 37.889486 ], [ -122.306671, 37.890028 ], [ -122.303925, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.887318 ], [ -122.306671, 37.887318 ], [ -122.306671, 37.888402 ], [ -122.305298, 37.888402 ], [ -122.305298, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.888402 ], [ -122.305298, 37.887318 ], [ -122.306671, 37.887318 ], [ -122.306671, 37.888402 ], [ -122.305298, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.888944 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.890028 ], [ -122.304611, 37.890028 ], [ -122.304611, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.890028 ], [ -122.304611, 37.888944 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.890028 ], [ -122.304611, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.887860 ], [ -122.303925, 37.887860 ], [ -122.304611, 37.889486 ], [ -122.303925, 37.889486 ], [ -122.303238, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.889486 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.887860 ], [ -122.304611, 37.889486 ], [ -122.303925, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.302551, 37.890028 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.892196 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.890028 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299118, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299118, 37.890570 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.890570 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.892196 ], [ -122.300491, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887860 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.889486 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.890028 ], [ -122.301865, 37.887860 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.889486 ], [ -122.302551, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.301178, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.887860 ], [ -122.300491, 37.887860 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.890570 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.887860 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.304611, 37.886235 ], [ -122.307358, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ], [ -122.304611, 37.886235 ], [ -122.307358, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.884609 ], [ -122.304611, 37.884609 ], [ -122.304611, 37.885693 ], [ -122.303238, 37.885693 ], [ -122.303238, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.885693 ], [ -122.303238, 37.884609 ], [ -122.304611, 37.884609 ], [ -122.304611, 37.885693 ], [ -122.303238, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884067 ], [ -122.302551, 37.882983 ], [ -122.305984, 37.882441 ], [ -122.307358, 37.885693 ], [ -122.304611, 37.885693 ], [ -122.303925, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885693 ], [ -122.303925, 37.884067 ], [ -122.302551, 37.882983 ], [ -122.305984, 37.882441 ], [ -122.307358, 37.885693 ], [ -122.304611, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883525 ], [ -122.304611, 37.883525 ], [ -122.304611, 37.884609 ], [ -122.303238, 37.884609 ], [ -122.303238, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.884609 ], [ -122.303238, 37.883525 ], [ -122.304611, 37.883525 ], [ -122.304611, 37.884609 ], [ -122.303238, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.883525 ], [ -122.303238, 37.883525 ], [ -122.303925, 37.886235 ], [ -122.301178, 37.886777 ], [ -122.300491, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.300491, 37.883525 ], [ -122.303238, 37.883525 ], [ -122.303925, 37.886235 ], [ -122.301178, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.882983 ], [ -122.301178, 37.882983 ], [ -122.301178, 37.884067 ], [ -122.299805, 37.884067 ], [ -122.299805, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884067 ], [ -122.299805, 37.882983 ], [ -122.301178, 37.882983 ], [ -122.301178, 37.884067 ], [ -122.299805, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898156 ], [ -122.299805, 37.898156 ], [ -122.299805, 37.899240 ], [ -122.298431, 37.899240 ], [ -122.298431, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899240 ], [ -122.298431, 37.898156 ], [ -122.299805, 37.898156 ], [ -122.299805, 37.899240 ], [ -122.298431, 37.899240 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.898698 ], [ -122.299118, 37.898698 ], [ -122.299118, 37.899781 ], [ -122.297745, 37.899781 ], [ -122.297745, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.899781 ], [ -122.297745, 37.898698 ], [ -122.299118, 37.898698 ], [ -122.299118, 37.899781 ], [ -122.297745, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.899781 ], [ -122.297058, 37.899781 ], [ -122.297058, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.896530 ], [ -122.295685, 37.896530 ], [ -122.295685, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896530 ], [ -122.295685, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.896530 ], [ -122.295685, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.296371, 37.898156 ], [ -122.296371, 37.899240 ], [ -122.294998, 37.899240 ], [ -122.294998, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.899240 ], [ -122.294998, 37.898156 ], [ -122.296371, 37.898156 ], [ -122.296371, 37.899240 ], [ -122.294998, 37.899240 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.299805, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298431, 37.898156 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898156 ], [ -122.298431, 37.897072 ], [ -122.299805, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298431, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.894905 ], [ -122.299805, 37.894905 ], [ -122.299805, 37.895989 ], [ -122.298431, 37.895989 ], [ -122.298431, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.895989 ], [ -122.298431, 37.894905 ], [ -122.299805, 37.894905 ], [ -122.299805, 37.895989 ], [ -122.298431, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.299118, 37.895447 ], [ -122.299118, 37.896530 ], [ -122.297745, 37.896530 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.896530 ], [ -122.297745, 37.895447 ], [ -122.299118, 37.895447 ], [ -122.299118, 37.896530 ], [ -122.297745, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.300491, 37.893821 ], [ -122.300491, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.300491, 37.893821 ], [ -122.300491, 37.895447 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.892196 ], [ -122.299805, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299118, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892196 ], [ -122.299805, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.298431, 37.894905 ], [ -122.297058, 37.894905 ], [ -122.297058, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.894905 ], [ -122.297058, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.298431, 37.894905 ], [ -122.297058, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.893821 ], [ -122.297745, 37.893821 ], [ -122.297745, 37.894905 ], [ -122.296371, 37.894905 ], [ -122.296371, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.894905 ], [ -122.296371, 37.893821 ], [ -122.297745, 37.893821 ], [ -122.297745, 37.894905 ], [ -122.296371, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894905 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ], [ -122.294998, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.894905 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296371, 37.897072 ], [ -122.294998, 37.897072 ], [ -122.294998, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.897072 ], [ -122.294998, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296371, 37.897072 ], [ -122.294998, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.899781 ], [ -122.294312, 37.899781 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.899781 ], [ -122.294312, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.899781 ], [ -122.294312, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.898156 ], [ -122.292252, 37.897072 ], [ -122.292938, 37.897072 ], [ -122.292938, 37.898698 ], [ -122.292252, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898698 ], [ -122.292252, 37.898156 ], [ -122.292252, 37.897072 ], [ -122.292938, 37.897072 ], [ -122.292938, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897614 ], [ -122.291565, 37.897614 ], [ -122.291565, 37.898698 ], [ -122.290192, 37.898698 ], [ -122.290192, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.898698 ], [ -122.290192, 37.897614 ], [ -122.291565, 37.897614 ], [ -122.291565, 37.898698 ], [ -122.290192, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.897614 ], [ -122.290878, 37.897614 ], [ -122.290878, 37.898698 ], [ -122.289505, 37.898698 ], [ -122.289505, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.898698 ], [ -122.289505, 37.897614 ], [ -122.290878, 37.897614 ], [ -122.290878, 37.898698 ], [ -122.289505, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894905 ], [ -122.294998, 37.898156 ], [ -122.294312, 37.898156 ], [ -122.294998, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898156 ], [ -122.294998, 37.894905 ], [ -122.294998, 37.898156 ], [ -122.294312, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.894905 ], [ -122.294312, 37.894905 ], [ -122.294312, 37.898156 ], [ -122.292938, 37.898156 ], [ -122.293625, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898156 ], [ -122.293625, 37.894905 ], [ -122.294312, 37.894905 ], [ -122.294312, 37.898156 ], [ -122.292938, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.896530 ], [ -122.293625, 37.896530 ], [ -122.293625, 37.897614 ], [ -122.292252, 37.897614 ], [ -122.292252, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.897614 ], [ -122.292252, 37.896530 ], [ -122.293625, 37.896530 ], [ -122.293625, 37.897614 ], [ -122.292252, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.893279 ], [ -122.294312, 37.893279 ], [ -122.294312, 37.894905 ], [ -122.293625, 37.894905 ], [ -122.293625, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.894905 ], [ -122.293625, 37.893279 ], [ -122.294312, 37.893279 ], [ -122.294312, 37.894905 ], [ -122.293625, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.892737 ], [ -122.294312, 37.892737 ], [ -122.294312, 37.893821 ], [ -122.292938, 37.893821 ], [ -122.292938, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.893821 ], [ -122.292938, 37.892737 ], [ -122.294312, 37.892737 ], [ -122.294312, 37.893821 ], [ -122.292938, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.893279 ], [ -122.292938, 37.893279 ], [ -122.292938, 37.894905 ], [ -122.292252, 37.894905 ], [ -122.292252, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.894905 ], [ -122.292252, 37.893279 ], [ -122.292938, 37.893279 ], [ -122.292938, 37.894905 ], [ -122.292252, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.897072 ], [ -122.290192, 37.897072 ], [ -122.290192, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897072 ], [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.897072 ], [ -122.290192, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.897072 ], [ -122.289505, 37.897072 ], [ -122.289505, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.897072 ], [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.897072 ], [ -122.289505, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.894905 ], [ -122.291565, 37.894905 ], [ -122.291565, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.894905 ], [ -122.291565, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.894905 ], [ -122.291565, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.289505, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.897614 ], [ -122.289505, 37.897614 ], [ -122.289505, 37.898698 ], [ -122.288132, 37.898698 ], [ -122.288132, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898698 ], [ -122.288132, 37.897614 ], [ -122.289505, 37.897614 ], [ -122.289505, 37.898698 ], [ -122.288132, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.898698 ], [ -122.287445, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.288818, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.897072 ], [ -122.288818, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.897072 ], [ -122.288818, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.897072 ], [ -122.287445, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.897072 ], [ -122.287445, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894905 ], [ -122.288818, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.894905 ], [ -122.288818, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.288818, 37.894905 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.288818, 37.894905 ], [ -122.287445, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.894363 ], [ -122.288132, 37.894363 ], [ -122.288132, 37.895447 ], [ -122.286758, 37.895447 ], [ -122.286758, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.895447 ], [ -122.286758, 37.894363 ], [ -122.288132, 37.894363 ], [ -122.288132, 37.895447 ], [ -122.286758, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.891112 ], [ -122.298431, 37.891112 ], [ -122.298431, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.891112 ], [ -122.298431, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.891112 ], [ -122.298431, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.890570 ], [ -122.298431, 37.891112 ], [ -122.299118, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.297745, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297745, 37.890570 ], [ -122.298431, 37.891112 ], [ -122.299118, 37.892196 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.887860 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.890570 ], [ -122.299118, 37.890570 ], [ -122.298431, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.298431, 37.887860 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.890570 ], [ -122.299118, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.890028 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.886777 ], [ -122.299118, 37.890570 ], [ -122.298431, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.298431, 37.890028 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.886777 ], [ -122.299118, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.297745, 37.891112 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892737 ], [ -122.296371, 37.890570 ], [ -122.297745, 37.891112 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892737 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.893279 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.893279 ], [ -122.293625, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.890570 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.890570 ], [ -122.296371, 37.887318 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.890570 ], [ -122.297745, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887860 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887860 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.890570 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.886235 ], [ -122.299118, 37.886235 ], [ -122.299118, 37.887318 ], [ -122.297745, 37.887318 ], [ -122.297745, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.887318 ], [ -122.297745, 37.886235 ], [ -122.299118, 37.886235 ], [ -122.299118, 37.887318 ], [ -122.297745, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.886777 ], [ -122.297745, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300491, 37.884067 ], [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ], [ -122.297745, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300491, 37.884067 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.883525 ], [ -122.300491, 37.883525 ], [ -122.299805, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.298431, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884609 ], [ -122.298431, 37.883525 ], [ -122.300491, 37.883525 ], [ -122.299805, 37.884609 ], [ -122.298431, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.884067 ], [ -122.298431, 37.884067 ], [ -122.298431, 37.885151 ], [ -122.297058, 37.885151 ], [ -122.297058, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885151 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.884067 ], [ -122.298431, 37.885151 ], [ -122.297058, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.886777 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.886777 ], [ -122.297058, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.884609 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.884609 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.891112 ], [ -122.292938, 37.891112 ], [ -122.292938, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.893279 ], [ -122.292252, 37.891112 ], [ -122.292938, 37.891112 ], [ -122.292938, 37.893279 ], [ -122.292252, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890028 ], [ -122.294998, 37.890028 ], [ -122.294998, 37.891112 ], [ -122.293625, 37.891112 ], [ -122.293625, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.891112 ], [ -122.293625, 37.890028 ], [ -122.294998, 37.890028 ], [ -122.294998, 37.891112 ], [ -122.293625, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888402 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.891112 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.292252, 37.891112 ], [ -122.292252, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.893279 ], [ -122.291565, 37.891112 ], [ -122.292252, 37.891112 ], [ -122.292252, 37.893279 ], [ -122.291565, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.291565, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290878, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893279 ], [ -122.290878, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.291565, 37.893279 ], [ -122.290192, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893279 ], [ -122.289505, 37.891112 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.893279 ], [ -122.289505, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.289505, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.289505, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.893279 ], [ -122.289505, 37.891112 ], [ -122.289505, 37.893279 ], [ -122.288818, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.290192, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.290192, 37.888402 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.888944 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.891112 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.888944 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.891112 ], [ -122.288818, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.288818, 37.888944 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.885151 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887860 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.887860 ], [ -122.292252, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.292252, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887318 ], [ -122.293625, 37.887318 ], [ -122.293625, 37.888402 ], [ -122.292252, 37.888402 ], [ -122.292252, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.888402 ], [ -122.292252, 37.887318 ], [ -122.293625, 37.887318 ], [ -122.293625, 37.888402 ], [ -122.292252, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884067 ], [ -122.294312, 37.884067 ], [ -122.294312, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.292938, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.885151 ], [ -122.292938, 37.884067 ], [ -122.294312, 37.884067 ], [ -122.294312, 37.885151 ], [ -122.292938, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.884067 ], [ -122.293625, 37.884067 ], [ -122.293625, 37.885151 ], [ -122.292252, 37.885151 ], [ -122.292252, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.885151 ], [ -122.292252, 37.884067 ], [ -122.293625, 37.884067 ], [ -122.293625, 37.885151 ], [ -122.292252, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.882983 ], [ -122.292938, 37.882983 ], [ -122.292938, 37.884067 ], [ -122.291565, 37.884067 ], [ -122.291565, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884067 ], [ -122.291565, 37.882983 ], [ -122.292938, 37.882983 ], [ -122.292938, 37.884067 ], [ -122.291565, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885693 ], [ -122.291565, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888402 ], [ -122.290192, 37.885693 ], [ -122.291565, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291565, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288818, 37.888944 ], [ -122.289505, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.888944 ], [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288818, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.884609 ], [ -122.290878, 37.885693 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.888402 ], [ -122.290192, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.290192, 37.884609 ], [ -122.290878, 37.885693 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.884609 ], [ -122.292252, 37.884609 ], [ -122.292252, 37.885693 ], [ -122.290878, 37.885693 ], [ -122.290878, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.885693 ], [ -122.290878, 37.884609 ], [ -122.292252, 37.884609 ], [ -122.292252, 37.885693 ], [ -122.290878, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.882983 ], [ -122.291565, 37.882983 ], [ -122.291565, 37.884067 ], [ -122.290192, 37.884067 ], [ -122.290192, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.884067 ], [ -122.290192, 37.882983 ], [ -122.291565, 37.882983 ], [ -122.291565, 37.884067 ], [ -122.290192, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885151 ], [ -122.288818, 37.885151 ], [ -122.289505, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885151 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885151 ], [ -122.288818, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.891112 ], [ -122.288818, 37.891112 ], [ -122.288818, 37.893279 ], [ -122.287445, 37.893279 ], [ -122.288132, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893279 ], [ -122.288132, 37.891112 ], [ -122.288818, 37.891112 ], [ -122.288818, 37.893279 ], [ -122.287445, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.892737 ], [ -122.288132, 37.892737 ], [ -122.288132, 37.893821 ], [ -122.286758, 37.893821 ], [ -122.286758, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.893821 ], [ -122.286758, 37.892737 ], [ -122.288132, 37.892737 ], [ -122.288132, 37.893821 ], [ -122.286758, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.889486 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.891112 ], [ -122.288132, 37.891112 ], [ -122.287445, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.891112 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.891112 ], [ -122.288132, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.889486 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.891112 ], [ -122.286758, 37.891112 ], [ -122.286758, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.891112 ], [ -122.286758, 37.889486 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.891112 ], [ -122.286758, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.888402 ], [ -122.287445, 37.889486 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.889486 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.888402 ], [ -122.287445, 37.889486 ], [ -122.286758, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.890028 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.286072, 37.891112 ], [ -122.285385, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.891112 ], [ -122.285385, 37.890028 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.286072, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.889486 ], [ -122.285385, 37.890028 ], [ -122.286072, 37.891112 ], [ -122.284698, 37.891112 ], [ -122.284698, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.891112 ], [ -122.284698, 37.889486 ], [ -122.285385, 37.890028 ], [ -122.286072, 37.891112 ], [ -122.284698, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.889486 ], [ -122.284698, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.284012, 37.891112 ], [ -122.283325, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.891112 ], [ -122.283325, 37.889486 ], [ -122.284698, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.284012, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.285385, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887860 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.285385, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889486 ], [ -122.284698, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.889486 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887318 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.283325, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.889486 ], [ -122.283325, 37.887318 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.889486 ], [ -122.283325, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885151 ], [ -122.290192, 37.885151 ], [ -122.289505, 37.886235 ], [ -122.288818, 37.888944 ], [ -122.287445, 37.889486 ], [ -122.288818, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.889486 ], [ -122.288818, 37.885151 ], [ -122.290192, 37.885151 ], [ -122.289505, 37.886235 ], [ -122.288818, 37.888944 ], [ -122.287445, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.885151 ], [ -122.288132, 37.888402 ], [ -122.286758, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888402 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.885151 ], [ -122.288132, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.287445, 37.886235 ], [ -122.287445, 37.887318 ], [ -122.286072, 37.887318 ], [ -122.286072, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.887318 ], [ -122.286072, 37.886235 ], [ -122.287445, 37.886235 ], [ -122.287445, 37.887318 ], [ -122.286072, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.288132, 37.884609 ], [ -122.288132, 37.886235 ], [ -122.286758, 37.886235 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887860 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884609 ], [ -122.288132, 37.886235 ], [ -122.286758, 37.886235 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.884067 ], [ -122.288818, 37.884067 ], [ -122.288818, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.885151 ], [ -122.287445, 37.884067 ], [ -122.288818, 37.884067 ], [ -122.288818, 37.885151 ], [ -122.287445, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.885151 ], [ -122.284698, 37.884609 ], [ -122.284012, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.284012, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886235 ], [ -122.284012, 37.885151 ], [ -122.284012, 37.886235 ], [ -122.283325, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.882983 ], [ -122.286072, 37.882983 ], [ -122.286072, 37.884067 ], [ -122.282639, 37.885151 ], [ -122.283325, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.885151 ], [ -122.283325, 37.882983 ], [ -122.286072, 37.882983 ], [ -122.286072, 37.884067 ], [ -122.282639, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.284012, 37.891112 ], [ -122.282639, 37.891654 ], [ -122.281952, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.891654 ], [ -122.281952, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.284012, 37.891112 ], [ -122.282639, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.888944 ], [ -122.282639, 37.886777 ], [ -122.283325, 37.887318 ], [ -122.283325, 37.889486 ], [ -122.281952, 37.889486 ], [ -122.281952, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.281952, 37.888944 ], [ -122.282639, 37.886777 ], [ -122.283325, 37.887318 ], [ -122.283325, 37.889486 ], [ -122.281952, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.283325, 37.887318 ], [ -122.281952, 37.887318 ], [ -122.281952, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.887318 ], [ -122.281952, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.283325, 37.887318 ], [ -122.281952, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.288818, 37.883525 ], [ -122.288132, 37.884609 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884609 ], [ -122.286758, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.288818, 37.883525 ], [ -122.288132, 37.884609 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.882441 ], [ -122.288132, 37.882441 ], [ -122.288132, 37.883525 ], [ -122.286758, 37.883525 ], [ -122.286758, 37.882441 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.883525 ], [ -122.286758, 37.882441 ], [ -122.288132, 37.882441 ], [ -122.288132, 37.883525 ], [ -122.286758, 37.883525 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.316284, 37.896801 ], [ -122.316284, 37.891383 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.896801 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.316284, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.316284, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.316284, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.316284, 37.888402 ], [ -122.316284, 37.880544 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.316284, 37.888402 ], [ -122.316284, 37.880544 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.888402 ], [ -122.317314, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.323151, 37.889215 ], [ -122.323151, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ], [ -122.316284, 37.889757 ], [ -122.316284, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.323494, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310448, 37.894905 ], [ -122.309418, 37.892466 ], [ -122.309418, 37.889757 ], [ -122.310104, 37.888944 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.314911, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.312508, 37.897614 ], [ -122.310448, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897614 ], [ -122.310448, 37.894905 ], [ -122.309418, 37.892466 ], [ -122.309418, 37.889757 ], [ -122.310104, 37.888944 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.314911, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.312508, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309074, 37.888944 ], [ -122.309418, 37.887860 ], [ -122.311478, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314911, 37.892466 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.889757 ], [ -122.309418, 37.891383 ], [ -122.309074, 37.888944 ] ] ], [ [ [ -122.309418, 37.893279 ], [ -122.309418, 37.892737 ], [ -122.311821, 37.896801 ], [ -122.309418, 37.893279 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.892466 ], [ -122.309074, 37.888944 ], [ -122.309418, 37.887860 ], [ -122.311478, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314911, 37.892466 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.889757 ], [ -122.309418, 37.892466 ] ] ], [ [ [ -122.309418, 37.892466 ], [ -122.311821, 37.896801 ], [ -122.309418, 37.893279 ], [ -122.309418, 37.892466 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.894092 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.309418, 37.897885 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897885 ], [ -122.309418, 37.894634 ], [ -122.309418, 37.894092 ], [ -122.312164, 37.897614 ], [ -122.311478, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897343 ], [ -122.308388, 37.894634 ], [ -122.308388, 37.890841 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897885 ], [ -122.309761, 37.897885 ], [ -122.309418, 37.897343 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309761, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894634 ], [ -122.308388, 37.890841 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897885 ], [ -122.309761, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310791, 37.895989 ], [ -122.309418, 37.893279 ], [ -122.312164, 37.897614 ], [ -122.310791, 37.895989 ] ] ], [ [ [ -122.308388, 37.890299 ], [ -122.309074, 37.888944 ], [ -122.309418, 37.893279 ], [ -122.308388, 37.890299 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.893279 ], [ -122.308388, 37.890299 ], [ -122.309074, 37.888944 ], [ -122.309418, 37.893279 ] ] ], [ [ [ -122.309418, 37.893279 ], [ -122.312164, 37.897614 ], [ -122.310791, 37.895989 ], [ -122.309418, 37.893279 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.892737 ], [ -122.307701, 37.889757 ], [ -122.307701, 37.893550 ], [ -122.307358, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.893550 ], [ -122.307358, 37.892737 ], [ -122.307701, 37.889757 ], [ -122.307701, 37.893550 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.892737 ], [ -122.306671, 37.890841 ], [ -122.307701, 37.889757 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898156 ], [ -122.306671, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.898156 ], [ -122.306671, 37.892737 ], [ -122.306671, 37.890841 ], [ -122.307701, 37.889757 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.893279 ], [ -122.308044, 37.891112 ], [ -122.308388, 37.895447 ], [ -122.307701, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.895447 ], [ -122.307701, 37.893279 ], [ -122.308044, 37.891112 ], [ -122.308388, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.898427 ], [ -122.302208, 37.898427 ], [ -122.302208, 37.898969 ], [ -122.301521, 37.898969 ], [ -122.301521, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.898969 ], [ -122.301521, 37.898427 ], [ -122.302208, 37.898427 ], [ -122.302208, 37.898969 ], [ -122.301521, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.898427 ], [ -122.300148, 37.897072 ], [ -122.301178, 37.896801 ], [ -122.301865, 37.898698 ], [ -122.300835, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.300835, 37.898427 ], [ -122.300148, 37.897072 ], [ -122.301178, 37.896801 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.897072 ], [ -122.300148, 37.897072 ], [ -122.300835, 37.898427 ], [ -122.299805, 37.898427 ], [ -122.299461, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898427 ], [ -122.299461, 37.897072 ], [ -122.300148, 37.897072 ], [ -122.300835, 37.898427 ], [ -122.299805, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896260 ], [ -122.302895, 37.895718 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.893821 ], [ -122.303238, 37.894634 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.891654 ], [ -122.304268, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898156 ], [ -122.301865, 37.898698 ], [ -122.301178, 37.896260 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.301178, 37.896260 ], [ -122.302895, 37.895718 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.893821 ], [ -122.303238, 37.894634 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.891654 ], [ -122.304268, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898156 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891925 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.894634 ], [ -122.302551, 37.891925 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302551, 37.891925 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.895718 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.894092 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.895718 ], [ -122.301865, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895989 ], [ -122.301178, 37.895989 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.896530 ], [ -122.300491, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.896530 ], [ -122.300491, 37.895989 ], [ -122.301178, 37.895989 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896260 ], [ -122.301178, 37.896801 ], [ -122.300148, 37.897072 ], [ -122.299805, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.897072 ], [ -122.299805, 37.895447 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896260 ], [ -122.301178, 37.896801 ], [ -122.300148, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.895176 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896260 ], [ -122.300835, 37.895176 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896260 ], [ -122.300835, 37.895176 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896260 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892196 ], [ -122.302551, 37.891925 ], [ -122.302895, 37.893821 ], [ -122.302208, 37.893821 ], [ -122.301521, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.893821 ], [ -122.301521, 37.892196 ], [ -122.302551, 37.891925 ], [ -122.302895, 37.893821 ], [ -122.302208, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.892196 ], [ -122.301521, 37.892196 ], [ -122.302208, 37.893821 ], [ -122.301178, 37.894092 ], [ -122.300835, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.300835, 37.892196 ], [ -122.301521, 37.892196 ], [ -122.302208, 37.893821 ], [ -122.301178, 37.894092 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893550 ], [ -122.299805, 37.892466 ], [ -122.300835, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894363 ], [ -122.300148, 37.893550 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894363 ], [ -122.300148, 37.893550 ], [ -122.299805, 37.892466 ], [ -122.300835, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.315941, 37.887589 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316284, 37.885693 ], [ -122.317314, 37.885693 ], [ -122.315941, 37.885422 ], [ -122.315598, 37.884067 ], [ -122.312508, 37.881628 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.315941, 37.887589 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316284, 37.885693 ], [ -122.317314, 37.885693 ], [ -122.315941, 37.885422 ], [ -122.315598, 37.884067 ], [ -122.312508, 37.881628 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.309761, 37.886506 ], [ -122.308388, 37.882441 ], [ -122.312508, 37.881628 ], [ -122.315598, 37.884067 ], [ -122.315941, 37.885422 ], [ -122.317314, 37.885693 ], [ -122.316284, 37.885693 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887589 ], [ -122.317314, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.323151, 37.889215 ], [ -122.323151, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ], [ -122.311478, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317314, 37.889486 ], [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.309761, 37.886506 ], [ -122.308388, 37.882441 ], [ -122.312508, 37.881628 ], [ -122.315598, 37.884067 ], [ -122.315941, 37.885422 ], [ -122.317314, 37.885693 ], [ -122.316284, 37.885693 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887589 ], [ -122.317314, 37.889486 ] ] ], [ [ [ -122.317314, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.323151, 37.889215 ], [ -122.323151, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ], [ -122.317314, 37.889486 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.889215 ], [ -122.308731, 37.887589 ], [ -122.309074, 37.887589 ], [ -122.308388, 37.890299 ], [ -122.308388, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890299 ], [ -122.308388, 37.889215 ], [ -122.308731, 37.887589 ], [ -122.309074, 37.887589 ], [ -122.308388, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.307701, 37.889486 ], [ -122.306671, 37.890841 ], [ -122.306671, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890841 ], [ -122.306671, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.307701, 37.889486 ], [ -122.306671, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889757 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ], [ -122.307701, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307701, 37.889757 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308731, 37.887589 ], [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887589 ], [ -122.307701, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.889215 ], [ -122.307358, 37.888673 ], [ -122.307701, 37.889486 ], [ -122.306328, 37.889757 ], [ -122.305984, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306328, 37.889757 ], [ -122.305984, 37.889215 ], [ -122.307358, 37.888673 ], [ -122.307701, 37.889486 ], [ -122.306328, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888673 ], [ -122.306328, 37.888673 ], [ -122.306328, 37.889215 ], [ -122.305641, 37.889215 ], [ -122.305641, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.889215 ], [ -122.305641, 37.888673 ], [ -122.306328, 37.888673 ], [ -122.306328, 37.889215 ], [ -122.305641, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888402 ], [ -122.307358, 37.888131 ], [ -122.307358, 37.888673 ], [ -122.305984, 37.888944 ], [ -122.305641, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.888944 ], [ -122.305641, 37.888402 ], [ -122.307358, 37.888131 ], [ -122.307358, 37.888673 ], [ -122.305984, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889757 ], [ -122.307014, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889757 ], [ -122.307014, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309074, 37.887589 ], [ -122.308731, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887589 ], [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309074, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.886506 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.883525 ], [ -122.309761, 37.886506 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.886506 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.887318 ], [ -122.309418, 37.886506 ], [ -122.309074, 37.885151 ], [ -122.309761, 37.886506 ], [ -122.309418, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.882170 ], [ -122.308388, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ], [ -122.308044, 37.882170 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.882170 ], [ -122.308388, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.887589 ], [ -122.307014, 37.887589 ], [ -122.307358, 37.888131 ], [ -122.305641, 37.888402 ], [ -122.305641, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888402 ], [ -122.305641, 37.887589 ], [ -122.307014, 37.887589 ], [ -122.307358, 37.888131 ], [ -122.305641, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306328, 37.883525 ], [ -122.305984, 37.882170 ], [ -122.308044, 37.882170 ], [ -122.307358, 37.887048 ], [ -122.306328, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887048 ], [ -122.306328, 37.883525 ], [ -122.305984, 37.882170 ], [ -122.308044, 37.882170 ], [ -122.307358, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889757 ], [ -122.303581, 37.889486 ], [ -122.303581, 37.890570 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.891654 ], [ -122.302551, 37.889757 ], [ -122.303581, 37.889486 ], [ -122.303581, 37.890570 ], [ -122.303238, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.889486 ], [ -122.305984, 37.889215 ], [ -122.306328, 37.889757 ], [ -122.303581, 37.890570 ], [ -122.303581, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890570 ], [ -122.303581, 37.889486 ], [ -122.305984, 37.889215 ], [ -122.306328, 37.889757 ], [ -122.303581, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.305984, 37.888944 ], [ -122.304955, 37.889215 ], [ -122.304611, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889215 ], [ -122.304611, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.305984, 37.888944 ], [ -122.304955, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889215 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.889486 ], [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889215 ], [ -122.304268, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.889215 ], [ -122.303925, 37.889215 ], [ -122.303925, 37.889757 ], [ -122.303238, 37.889757 ], [ -122.303238, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.889757 ], [ -122.303238, 37.889215 ], [ -122.303925, 37.889215 ], [ -122.303925, 37.889757 ], [ -122.303238, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302895, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.889486 ], [ -122.302895, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.889486 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.302551, 37.889757 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891925 ], [ -122.301865, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891925 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889757 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891925 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.891925 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892196 ], [ -122.300835, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.891925 ], [ -122.301521, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299805, 37.891925 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892466 ], [ -122.299805, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.892196 ], [ -122.299805, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.890299 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.892196 ], [ -122.300148, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.892196 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887860 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.889486 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889757 ], [ -122.301865, 37.887860 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.889486 ], [ -122.302551, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.887860 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.887860 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299461, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.890299 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.305641, 37.887589 ], [ -122.302208, 37.887589 ], [ -122.307358, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.305641, 37.887589 ], [ -122.302208, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.886506 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.307014, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300835, 37.887860 ], [ -122.300835, 37.886506 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.300835, 37.886506 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.307014, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300835, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884880 ], [ -122.303925, 37.883796 ], [ -122.304268, 37.883796 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ], [ -122.303925, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885964 ], [ -122.303925, 37.884880 ], [ -122.303925, 37.883796 ], [ -122.304268, 37.883796 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885422 ], [ -122.304268, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302895, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.305984, 37.882170 ], [ -122.307014, 37.885693 ], [ -122.304611, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.885693 ], [ -122.304611, 37.885422 ], [ -122.304268, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302895, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.305984, 37.882170 ], [ -122.307014, 37.885693 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885151 ], [ -122.303581, 37.885151 ], [ -122.303581, 37.884338 ], [ -122.304268, 37.884338 ], [ -122.304268, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.304268, 37.885964 ], [ -122.303581, 37.885964 ], [ -122.303238, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.885964 ], [ -122.303238, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.304268, 37.885964 ], [ -122.303581, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.883525 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.885964 ], [ -122.300835, 37.886506 ], [ -122.300148, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.886506 ], [ -122.300148, 37.883525 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.885964 ], [ -122.300835, 37.886506 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302895, 37.883254 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303238, 37.883796 ], [ -122.302895, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883796 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303238, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.302895, 37.883254 ], [ -122.301178, 37.883525 ], [ -122.300491, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.883525 ], [ -122.300491, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.302895, 37.883254 ], [ -122.301178, 37.883525 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.897343 ], [ -122.299461, 37.897072 ], [ -122.299805, 37.898427 ], [ -122.299118, 37.898698 ], [ -122.298775, 37.897343 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.298775, 37.897343 ], [ -122.299461, 37.897072 ], [ -122.299805, 37.898427 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897614 ], [ -122.298775, 37.897343 ], [ -122.299118, 37.898698 ], [ -122.298088, 37.898969 ], [ -122.297745, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898969 ], [ -122.297745, 37.897614 ], [ -122.298775, 37.897343 ], [ -122.299118, 37.898698 ], [ -122.298088, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.297745, 37.897614 ], [ -122.298088, 37.898969 ], [ -122.297401, 37.898969 ], [ -122.297058, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.898969 ], [ -122.297058, 37.897614 ], [ -122.297745, 37.897614 ], [ -122.298088, 37.898969 ], [ -122.297401, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.297058, 37.897614 ], [ -122.297401, 37.898969 ], [ -122.296371, 37.898969 ], [ -122.296028, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.296028, 37.897885 ], [ -122.297058, 37.897614 ], [ -122.297401, 37.898969 ], [ -122.296371, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.297401, 37.895989 ], [ -122.297745, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.296371, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297401, 37.895989 ], [ -122.297745, 37.897614 ], [ -122.297058, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896260 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.897614 ], [ -122.296028, 37.897885 ], [ -122.295685, 37.896260 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.295685, 37.896260 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.897614 ], [ -122.296028, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897885 ], [ -122.296028, 37.897885 ], [ -122.296371, 37.898969 ], [ -122.294655, 37.898969 ], [ -122.294655, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898969 ], [ -122.294655, 37.897885 ], [ -122.296028, 37.897885 ], [ -122.296371, 37.898969 ], [ -122.294655, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.300148, 37.897072 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.300148, 37.897072 ], [ -122.299461, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.897343 ], [ -122.298088, 37.895718 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.897343 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.897343 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.298431, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298431, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.895447 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.895989 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.897343 ], [ -122.297745, 37.897614 ], [ -122.297401, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897614 ], [ -122.297401, 37.895989 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.897343 ], [ -122.297745, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894092 ], [ -122.298431, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ], [ -122.297745, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.297745, 37.894092 ], [ -122.298431, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894363 ], [ -122.297745, 37.894092 ], [ -122.298088, 37.895718 ], [ -122.297401, 37.895989 ], [ -122.296715, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.895989 ], [ -122.296715, 37.894363 ], [ -122.297745, 37.894092 ], [ -122.298088, 37.895718 ], [ -122.297401, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.300148, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.300148, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.892196 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.892466 ], [ -122.300148, 37.893550 ], [ -122.299118, 37.893821 ], [ -122.298775, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298775, 37.892196 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.892466 ], [ -122.300148, 37.893550 ], [ -122.299118, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298775, 37.892196 ], [ -122.299118, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298775, 37.892196 ], [ -122.299118, 37.893821 ], [ -122.298431, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.894092 ], [ -122.297058, 37.892466 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894092 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.894092 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.894363 ], [ -122.296715, 37.894363 ], [ -122.297401, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296028, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.296028, 37.894363 ], [ -122.296715, 37.894363 ], [ -122.297401, 37.895989 ], [ -122.296371, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.897885 ], [ -122.294655, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.296028, 37.897885 ], [ -122.294655, 37.897885 ], [ -122.294655, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.296028, 37.897885 ], [ -122.294655, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894634 ], [ -122.296028, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295685, 37.896260 ], [ -122.294998, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896260 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295685, 37.896260 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.296715, 37.894363 ], [ -122.296028, 37.894363 ], [ -122.295341, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.894363 ], [ -122.295341, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.296715, 37.894363 ], [ -122.296028, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.894092 ], [ -122.296715, 37.894363 ], [ -122.296371, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894363 ], [ -122.296371, 37.892737 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.894092 ], [ -122.296715, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.893008 ], [ -122.295341, 37.892737 ], [ -122.296028, 37.894363 ], [ -122.294998, 37.894634 ], [ -122.294655, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894634 ], [ -122.294655, 37.893008 ], [ -122.295341, 37.892737 ], [ -122.296028, 37.894363 ], [ -122.294998, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.893008 ], [ -122.294998, 37.894634 ], [ -122.294655, 37.894634 ], [ -122.294312, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294312, 37.893008 ], [ -122.294998, 37.894634 ], [ -122.294655, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.898698 ], [ -122.293968, 37.897885 ], [ -122.294655, 37.897885 ], [ -122.294655, 37.898969 ], [ -122.293968, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898969 ], [ -122.293968, 37.898698 ], [ -122.293968, 37.897885 ], [ -122.294655, 37.897885 ], [ -122.294655, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.292938, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.898698 ], [ -122.292938, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.898698 ], [ -122.292938, 37.898427 ], [ -122.292938, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.897614 ], [ -122.293282, 37.897614 ], [ -122.293282, 37.898156 ], [ -122.292595, 37.898156 ], [ -122.292595, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.898156 ], [ -122.292595, 37.897614 ], [ -122.293282, 37.897614 ], [ -122.293282, 37.898156 ], [ -122.292595, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.898156 ], [ -122.291908, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.898427 ], [ -122.291908, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.291908, 37.898156 ], [ -122.291908, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.896801 ], [ -122.291908, 37.896801 ], [ -122.291908, 37.898156 ], [ -122.290878, 37.898156 ], [ -122.290878, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898156 ], [ -122.290878, 37.896801 ], [ -122.291908, 37.896801 ], [ -122.291908, 37.898156 ], [ -122.290878, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897885 ], [ -122.290192, 37.896801 ], [ -122.290878, 37.896801 ], [ -122.290878, 37.898156 ], [ -122.290192, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898156 ], [ -122.290192, 37.897885 ], [ -122.290192, 37.896801 ], [ -122.290878, 37.896801 ], [ -122.290878, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896801 ], [ -122.290192, 37.896801 ], [ -122.290192, 37.897885 ], [ -122.289162, 37.897885 ], [ -122.289162, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.897885 ], [ -122.289162, 37.896801 ], [ -122.290192, 37.896801 ], [ -122.290192, 37.897885 ], [ -122.289162, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894905 ], [ -122.294655, 37.894634 ], [ -122.294655, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.897885 ], [ -122.293968, 37.894905 ], [ -122.294655, 37.894634 ], [ -122.294655, 37.897885 ], [ -122.293968, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.894905 ], [ -122.293968, 37.894905 ], [ -122.293968, 37.897885 ], [ -122.292938, 37.897885 ], [ -122.293282, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897885 ], [ -122.293282, 37.894905 ], [ -122.293968, 37.894905 ], [ -122.293968, 37.897885 ], [ -122.292938, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.896801 ], [ -122.292938, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.292938, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.893008 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894905 ], [ -122.294312, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894905 ], [ -122.294312, 37.893008 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.293968, 37.893008 ], [ -122.293968, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.293282, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.894905 ], [ -122.293282, 37.893008 ], [ -122.293968, 37.893008 ], [ -122.293968, 37.894905 ], [ -122.293282, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894905 ], [ -122.292938, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.292938, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.292938, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.291908, 37.894905 ], [ -122.291908, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.894905 ], [ -122.291908, 37.893008 ], [ -122.292938, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.291908, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.290192, 37.896801 ], [ -122.290192, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.896801 ], [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.290192, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289505, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896801 ], [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.896801 ], [ -122.289162, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291222, 37.894905 ], [ -122.291222, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.894905 ], [ -122.291222, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291222, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.289505, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289162, 37.897885 ], [ -122.288475, 37.898156 ], [ -122.288475, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.898156 ], [ -122.288475, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289162, 37.897885 ], [ -122.288475, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288132, 37.898156 ], [ -122.287445, 37.898698 ], [ -122.287445, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288132, 37.898156 ], [ -122.287445, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.897885 ], [ -122.287445, 37.897885 ], [ -122.287445, 37.898427 ], [ -122.286758, 37.898427 ], [ -122.286758, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.898427 ], [ -122.286758, 37.897885 ], [ -122.287445, 37.897885 ], [ -122.287445, 37.898427 ], [ -122.286758, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289162, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288475, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.896801 ], [ -122.288475, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289162, 37.896801 ], [ -122.288475, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.896801 ], [ -122.287445, 37.896801 ], [ -122.287445, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896801 ], [ -122.287445, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.896801 ], [ -122.287445, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.896801 ], [ -122.287102, 37.896801 ], [ -122.287445, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896801 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.896801 ], [ -122.287102, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.894905 ], [ -122.288475, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.894905 ], [ -122.288475, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.894634 ], [ -122.288818, 37.894634 ], [ -122.288818, 37.895176 ], [ -122.288132, 37.895176 ], [ -122.288132, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.895176 ], [ -122.288132, 37.894634 ], [ -122.288818, 37.894634 ], [ -122.288818, 37.895176 ], [ -122.288132, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.894905 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.894905 ], [ -122.287445, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.894905 ], [ -122.287102, 37.894905 ], [ -122.287102, 37.894092 ], [ -122.287788, 37.894092 ], [ -122.287788, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890570 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298775, 37.892196 ], [ -122.298088, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.892196 ], [ -122.298088, 37.890570 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298775, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890028 ], [ -122.300491, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.890570 ], [ -122.299805, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890570 ], [ -122.299805, 37.890028 ], [ -122.300491, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.890570 ], [ -122.298088, 37.890570 ], [ -122.298431, 37.890841 ], [ -122.298775, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.297401, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297401, 37.890570 ], [ -122.298088, 37.890570 ], [ -122.298431, 37.890841 ], [ -122.298775, 37.892196 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.887860 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.890299 ], [ -122.299118, 37.890299 ], [ -122.298431, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890299 ], [ -122.298431, 37.887860 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.890299 ], [ -122.299118, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.887589 ], [ -122.298775, 37.887589 ], [ -122.298775, 37.888131 ], [ -122.298088, 37.888131 ], [ -122.298088, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.888131 ], [ -122.298088, 37.887589 ], [ -122.298775, 37.887589 ], [ -122.298775, 37.888131 ], [ -122.298088, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.889757 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.886777 ], [ -122.299118, 37.890299 ], [ -122.298088, 37.890299 ], [ -122.298088, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.298088, 37.889757 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.886777 ], [ -122.299118, 37.890299 ], [ -122.298088, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.297401, 37.890570 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.296371, 37.890570 ], [ -122.297401, 37.890570 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295341, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.893008 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.893008 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.890299 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.890570 ], [ -122.296371, 37.887318 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.890299 ], [ -122.297401, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.295341, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.887589 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.294655, 37.887589 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.294655, 37.887589 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.887589 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.886777 ], [ -122.301178, 37.887860 ], [ -122.298431, 37.887860 ], [ -122.298088, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.887860 ], [ -122.298088, 37.886777 ], [ -122.301178, 37.887860 ], [ -122.298431, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300148, 37.884067 ], [ -122.301178, 37.887860 ], [ -122.298088, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298088, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300148, 37.884067 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.883254 ], [ -122.300491, 37.883254 ], [ -122.299805, 37.884338 ], [ -122.298431, 37.884609 ], [ -122.298088, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884609 ], [ -122.298088, 37.883254 ], [ -122.300491, 37.883254 ], [ -122.299805, 37.884338 ], [ -122.298431, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.886506 ], [ -122.298431, 37.886506 ], [ -122.298431, 37.887048 ], [ -122.297745, 37.887048 ], [ -122.297745, 37.886506 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.887048 ], [ -122.297745, 37.886506 ], [ -122.298431, 37.886506 ], [ -122.298431, 37.887048 ], [ -122.297745, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884609 ], [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884609 ], [ -122.297401, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887048 ], [ -122.295685, 37.887048 ], [ -122.295685, 37.887589 ], [ -122.294998, 37.887589 ], [ -122.294998, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887589 ], [ -122.294998, 37.887048 ], [ -122.295685, 37.887048 ], [ -122.295685, 37.887589 ], [ -122.294998, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298088, 37.886777 ], [ -122.297058, 37.887048 ], [ -122.296028, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887048 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298088, 37.886777 ], [ -122.297058, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.884338 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.887048 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887048 ], [ -122.295341, 37.884338 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.887048 ], [ -122.296371, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.884338 ], [ -122.295341, 37.884338 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.884338 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.882983 ], [ -122.294998, 37.882983 ], [ -122.295341, 37.884338 ], [ -122.294655, 37.884338 ], [ -122.293968, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.884338 ], [ -122.293968, 37.882983 ], [ -122.294998, 37.882983 ], [ -122.295341, 37.884338 ], [ -122.294655, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.891112 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.893008 ], [ -122.294312, 37.893008 ], [ -122.293282, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.893008 ], [ -122.293282, 37.891112 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.893008 ], [ -122.294312, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.891112 ], [ -122.294312, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.293282, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.293282, 37.891112 ], [ -122.294312, 37.893008 ], [ -122.293282, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293282, 37.893008 ], [ -122.292938, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293282, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.890841 ], [ -122.292938, 37.890841 ], [ -122.292938, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.292252, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.292252, 37.890841 ], [ -122.292938, 37.890841 ], [ -122.292938, 37.893008 ], [ -122.291908, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.890570 ], [ -122.292252, 37.890570 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.291565, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.291565, 37.890570 ], [ -122.292252, 37.890570 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.887860 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.890570 ], [ -122.292595, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292595, 37.887860 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293968, 37.890570 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293968, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.888131 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890841 ], [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890841 ], [ -122.292252, 37.890841 ], [ -122.291908, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.893008 ], [ -122.291222, 37.890841 ], [ -122.292252, 37.890841 ], [ -122.291908, 37.893008 ], [ -122.291222, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290535, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.291222, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290535, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.290535, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.291222, 37.893008 ], [ -122.290192, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.890841 ], [ -122.290535, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893008 ], [ -122.289505, 37.890841 ], [ -122.290535, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289505, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.891654 ], [ -122.289505, 37.890841 ], [ -122.289505, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.891654 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.893008 ], [ -122.288475, 37.891654 ], [ -122.289505, 37.890841 ], [ -122.289505, 37.893008 ], [ -122.288475, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.290192, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890841 ], [ -122.290192, 37.888402 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888673 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.890841 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.888673 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.890841 ], [ -122.288475, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.890841 ], [ -122.288475, 37.888673 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884880 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.887860 ], [ -122.291908, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.291908, 37.884880 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.292938, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.291908, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.887860 ], [ -122.291908, 37.884880 ], [ -122.292938, 37.887860 ], [ -122.292595, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885151 ], [ -122.291565, 37.885151 ], [ -122.292595, 37.887860 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.291222, 37.885151 ], [ -122.291565, 37.885151 ], [ -122.292595, 37.887860 ], [ -122.292252, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884338 ], [ -122.293282, 37.883254 ], [ -122.293968, 37.882983 ], [ -122.294655, 37.884338 ], [ -122.293625, 37.884609 ], [ -122.293625, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.293625, 37.884338 ], [ -122.293282, 37.883254 ], [ -122.293968, 37.882983 ], [ -122.294655, 37.884338 ], [ -122.293625, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.884609 ], [ -122.292252, 37.883254 ], [ -122.293282, 37.883254 ], [ -122.293625, 37.884609 ], [ -122.292938, 37.884880 ], [ -122.292595, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884880 ], [ -122.292595, 37.884609 ], [ -122.292252, 37.883254 ], [ -122.293282, 37.883254 ], [ -122.293625, 37.884609 ], [ -122.292938, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.883254 ], [ -122.292252, 37.883254 ], [ -122.292938, 37.884880 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.291565, 37.883254 ], [ -122.292252, 37.883254 ], [ -122.292938, 37.884880 ], [ -122.291908, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885422 ], [ -122.291222, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.290192, 37.885422 ], [ -122.291222, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288475, 37.888673 ], [ -122.289505, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.888673 ], [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288475, 37.888673 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.886235 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.885693 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.888402 ], [ -122.289505, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.289505, 37.886235 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.885693 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290535, 37.883254 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885151 ], [ -122.291222, 37.885151 ], [ -122.290535, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885151 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885151 ], [ -122.291222, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885151 ], [ -122.291222, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885151 ], [ -122.291222, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884609 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885151 ], [ -122.290192, 37.885422 ], [ -122.289848, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885422 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885151 ], [ -122.290192, 37.885422 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.885693 ], [ -122.289848, 37.885693 ], [ -122.289848, 37.886235 ], [ -122.289162, 37.886235 ], [ -122.289162, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.886235 ], [ -122.289162, 37.885693 ], [ -122.289848, 37.885693 ], [ -122.289848, 37.886235 ], [ -122.289162, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883254 ], [ -122.289848, 37.885151 ], [ -122.288818, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.885151 ], [ -122.288818, 37.884880 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883254 ], [ -122.289848, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883254 ], [ -122.297058, 37.884067 ], [ -122.296028, 37.884067 ], [ -122.296028, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.296028, 37.883254 ], [ -122.297058, 37.884067 ], [ -122.296028, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.882983 ], [ -122.296028, 37.883254 ], [ -122.296028, 37.884067 ], [ -122.295341, 37.884338 ], [ -122.294998, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.884338 ], [ -122.294998, 37.882983 ], [ -122.296028, 37.883254 ], [ -122.296028, 37.884067 ], [ -122.295341, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.891112 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.893008 ], [ -122.287445, 37.893008 ], [ -122.287788, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893008 ], [ -122.287788, 37.891112 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.893008 ], [ -122.287445, 37.893008 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.892466 ], [ -122.287445, 37.892466 ], [ -122.287445, 37.891654 ], [ -122.288132, 37.891654 ], [ -122.288132, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.890570 ], [ -122.289162, 37.890570 ], [ -122.289162, 37.891112 ], [ -122.288475, 37.891112 ], [ -122.288475, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.891112 ], [ -122.288475, 37.890570 ], [ -122.289162, 37.890570 ], [ -122.289162, 37.891112 ], [ -122.288475, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889215 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ], [ -122.287102, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.890841 ], [ -122.287102, 37.889215 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.889486 ], [ -122.287102, 37.889215 ], [ -122.287788, 37.890841 ], [ -122.286758, 37.891112 ], [ -122.286415, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.891112 ], [ -122.286415, 37.889486 ], [ -122.287102, 37.889215 ], [ -122.287788, 37.890841 ], [ -122.286758, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.887860 ], [ -122.287788, 37.888131 ], [ -122.287102, 37.889215 ], [ -122.286415, 37.889486 ], [ -122.286415, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.889486 ], [ -122.286415, 37.887860 ], [ -122.287788, 37.888131 ], [ -122.287102, 37.889215 ], [ -122.286415, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889757 ], [ -122.286415, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.285728, 37.891112 ], [ -122.285385, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.891112 ], [ -122.285385, 37.889757 ], [ -122.286415, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.285728, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.890841 ], [ -122.285042, 37.890841 ], [ -122.285042, 37.891383 ], [ -122.284355, 37.891383 ], [ -122.284355, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.891383 ], [ -122.284355, 37.890841 ], [ -122.285042, 37.890841 ], [ -122.285042, 37.891383 ], [ -122.284355, 37.891383 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285728, 37.891112 ], [ -122.284698, 37.891112 ], [ -122.284355, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.891112 ], [ -122.284355, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285728, 37.891112 ], [ -122.284698, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.284355, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.283669, 37.891112 ], [ -122.282982, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.891112 ], [ -122.282982, 37.889215 ], [ -122.284355, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.283669, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.888673 ], [ -122.285385, 37.887589 ], [ -122.286415, 37.887860 ], [ -122.286415, 37.889486 ], [ -122.285385, 37.889486 ], [ -122.285042, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887589 ], [ -122.286415, 37.887860 ], [ -122.286415, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.285728, 37.889486 ], [ -122.285728, 37.890028 ], [ -122.285042, 37.890028 ], [ -122.285042, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.890028 ], [ -122.285042, 37.889486 ], [ -122.285728, 37.889486 ], [ -122.285728, 37.890028 ], [ -122.285042, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.889215 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.887589 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.284012, 37.889215 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.887589 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887048 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.889215 ], [ -122.282982, 37.889215 ], [ -122.283325, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.283325, 37.887048 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.889215 ], [ -122.282982, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.289848, 37.884880 ], [ -122.289505, 37.885964 ], [ -122.288475, 37.888673 ], [ -122.287102, 37.889215 ], [ -122.288818, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889215 ], [ -122.288818, 37.884880 ], [ -122.289848, 37.884880 ], [ -122.289505, 37.885964 ], [ -122.288475, 37.888673 ], [ -122.287102, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884880 ], [ -122.287788, 37.888131 ], [ -122.286758, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.888131 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884880 ], [ -122.287788, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.885693 ], [ -122.287788, 37.885964 ], [ -122.287445, 37.886777 ], [ -122.286415, 37.886777 ], [ -122.286758, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.886777 ], [ -122.286758, 37.885693 ], [ -122.287788, 37.885964 ], [ -122.287445, 37.886777 ], [ -122.286415, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887589 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287788, 37.885964 ], [ -122.286758, 37.885964 ], [ -122.286415, 37.886777 ], [ -122.287445, 37.886777 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887589 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287788, 37.885964 ], [ -122.286758, 37.885964 ], [ -122.286415, 37.886777 ], [ -122.287445, 37.886777 ], [ -122.286758, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884609 ], [ -122.288818, 37.883254 ], [ -122.289505, 37.883525 ], [ -122.288818, 37.884880 ], [ -122.288132, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.883254 ], [ -122.289505, 37.883525 ], [ -122.288818, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.885422 ], [ -122.286415, 37.885422 ], [ -122.286415, 37.885964 ], [ -122.285728, 37.885964 ], [ -122.285728, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.885964 ], [ -122.285728, 37.885422 ], [ -122.286415, 37.885422 ], [ -122.286415, 37.885964 ], [ -122.285728, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887318 ], [ -122.285385, 37.885422 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887589 ], [ -122.284355, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887589 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.885422 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885422 ], [ -122.285728, 37.883796 ], [ -122.287102, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885693 ], [ -122.285385, 37.885422 ], [ -122.285728, 37.883796 ], [ -122.287102, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.884067 ], [ -122.285042, 37.884067 ], [ -122.285042, 37.884609 ], [ -122.284355, 37.884609 ], [ -122.284355, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.884609 ], [ -122.284355, 37.884067 ], [ -122.285042, 37.884067 ], [ -122.285042, 37.884609 ], [ -122.284355, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.284012, 37.886235 ], [ -122.284698, 37.884338 ], [ -122.285728, 37.883796 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887318 ], [ -122.283669, 37.887048 ], [ -122.284012, 37.886235 ], [ -122.284698, 37.884338 ], [ -122.285728, 37.883796 ], [ -122.284355, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.884880 ], [ -122.284698, 37.884338 ], [ -122.284012, 37.886235 ], [ -122.282982, 37.886235 ], [ -122.283669, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.886235 ], [ -122.283669, 37.884880 ], [ -122.284698, 37.884338 ], [ -122.284012, 37.886235 ], [ -122.282982, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.882712 ], [ -122.286072, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.282295, 37.885151 ], [ -122.282982, 37.882712 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.885151 ], [ -122.282982, 37.882712 ], [ -122.286072, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.282295, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283669, 37.891112 ], [ -122.282639, 37.891383 ], [ -122.281952, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.891383 ], [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283669, 37.891112 ], [ -122.282639, 37.891383 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.887048 ], [ -122.282982, 37.889215 ], [ -122.281952, 37.889486 ], [ -122.281952, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.281952, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.887048 ], [ -122.282982, 37.889215 ], [ -122.281952, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886777 ], [ -122.282982, 37.886235 ], [ -122.284012, 37.886235 ], [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ], [ -122.282982, 37.886235 ], [ -122.284012, 37.886235 ], [ -122.283669, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.884880 ], [ -122.282639, 37.884880 ], [ -122.282639, 37.885422 ], [ -122.281952, 37.885422 ], [ -122.281952, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.885422 ], [ -122.281952, 37.884880 ], [ -122.282639, 37.884880 ], [ -122.282639, 37.885422 ], [ -122.281952, 37.885422 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287445, 37.882712 ], [ -122.288818, 37.883254 ], [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287445, 37.882712 ], [ -122.288818, 37.883254 ], [ -122.288132, 37.884338 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882712 ], [ -122.287445, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.286072, 37.882712 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883796 ], [ -122.286072, 37.882712 ], [ -122.287445, 37.882712 ], [ -122.285728, 37.883796 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.330017, 37.893686 ], [ -122.330017, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.893686 ], [ -122.330017, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.330017, 37.893686 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.881493 ], [ -122.334824, 37.889622 ], [ -122.330017, 37.889757 ], [ -122.330017, 37.881493 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.889757 ], [ -122.330017, 37.881493 ], [ -122.334824, 37.889622 ], [ -122.330017, 37.889757 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 82, "y": 197 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312679, 37.897072 ], [ -122.311649, 37.896937 ], [ -122.311649, 37.896260 ], [ -122.311134, 37.896124 ], [ -122.311306, 37.895853 ], [ -122.310791, 37.895582 ], [ -122.310276, 37.894769 ], [ -122.309246, 37.892331 ], [ -122.309418, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.310963, 37.889757 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.312851, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314396, 37.892060 ], [ -122.314739, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316113, 37.891247 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324009, 37.892466 ], [ -122.325726, 37.892602 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325726, 37.890841 ], [ -122.327442, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327614, 37.891518 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.312508, 37.897479 ], [ -122.312679, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897479 ], [ -122.312679, 37.897072 ], [ -122.311649, 37.896937 ], [ -122.311649, 37.896260 ], [ -122.311134, 37.896124 ], [ -122.311306, 37.895853 ], [ -122.310791, 37.895582 ], [ -122.310276, 37.894769 ], [ -122.309246, 37.892331 ], [ -122.309418, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.310963, 37.889757 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.312851, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314396, 37.892060 ], [ -122.314739, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316113, 37.891247 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324009, 37.892466 ], [ -122.325726, 37.892602 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325726, 37.890841 ], [ -122.327442, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327614, 37.891518 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.312508, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310104, 37.894769 ], [ -122.309246, 37.893144 ], [ -122.308903, 37.890570 ], [ -122.309074, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.311306, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.891518 ], [ -122.327442, 37.891518 ], [ -122.327442, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325554, 37.891518 ], [ -122.325897, 37.892602 ], [ -122.324009, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.319889, 37.890028 ], [ -122.317657, 37.890976 ], [ -122.316113, 37.891247 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314739, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.313709, 37.891925 ], [ -122.312851, 37.891247 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310963, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.309418, 37.889757 ], [ -122.309246, 37.892331 ], [ -122.310276, 37.894769 ], [ -122.310791, 37.895582 ], [ -122.310104, 37.894769 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.310791, 37.895582 ], [ -122.311306, 37.895853 ], [ -122.311134, 37.896124 ] ] ], [ [ [ -122.311649, 37.896801 ], [ -122.311134, 37.896124 ], [ -122.311649, 37.896260 ], [ -122.311649, 37.896801 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310791, 37.895582 ], [ -122.310104, 37.894769 ], [ -122.309246, 37.893144 ], [ -122.308903, 37.890570 ], [ -122.309074, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.311306, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.891518 ], [ -122.327442, 37.891518 ], [ -122.327442, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325554, 37.891518 ], [ -122.325897, 37.892602 ], [ -122.324009, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.319889, 37.890028 ], [ -122.317657, 37.890976 ], [ -122.316113, 37.891247 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314739, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.313709, 37.891925 ], [ -122.312851, 37.891247 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310963, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.309418, 37.889757 ], [ -122.309246, 37.892331 ], [ -122.310276, 37.894769 ], [ -122.310791, 37.895582 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.311649, 37.896260 ], [ -122.311649, 37.896801 ], [ -122.311134, 37.896124 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.310791, 37.895582 ], [ -122.311306, 37.895853 ], [ -122.311134, 37.896124 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311649, 37.896937 ], [ -122.312508, 37.896937 ], [ -122.312508, 37.897479 ], [ -122.312164, 37.897479 ], [ -122.311649, 37.896937 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.897479 ], [ -122.311649, 37.896937 ], [ -122.312508, 37.896937 ], [ -122.312508, 37.897479 ], [ -122.312164, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.894092 ], [ -122.307873, 37.892873 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.308388, 37.894498 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ], [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ], [ -122.307873, 37.892873 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.308388, 37.894498 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ], [ -122.309418, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.894634 ], [ -122.308216, 37.890705 ], [ -122.308388, 37.890163 ], [ -122.309418, 37.893957 ], [ -122.311993, 37.897614 ], [ -122.311478, 37.897750 ], [ -122.309418, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897750 ], [ -122.309418, 37.894634 ], [ -122.308216, 37.890705 ], [ -122.308388, 37.890163 ], [ -122.309418, 37.893957 ], [ -122.311993, 37.897614 ], [ -122.311478, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897343 ], [ -122.308388, 37.894498 ], [ -122.308388, 37.892331 ], [ -122.308044, 37.890976 ], [ -122.308216, 37.890705 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897750 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894498 ], [ -122.308388, 37.892331 ], [ -122.308044, 37.890976 ], [ -122.308216, 37.890705 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897750 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.312164, 37.897479 ], [ -122.311993, 37.897614 ], [ -122.310619, 37.895853 ], [ -122.310104, 37.894769 ], [ -122.311649, 37.896937 ], [ -122.312164, 37.897479 ] ] ], [ [ [ -122.308388, 37.890163 ], [ -122.309074, 37.888809 ], [ -122.308903, 37.890570 ], [ -122.309246, 37.893144 ], [ -122.308388, 37.890163 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309246, 37.893144 ], [ -122.308388, 37.890163 ], [ -122.309074, 37.888809 ], [ -122.308903, 37.890570 ], [ -122.309246, 37.893144 ] ] ], [ [ [ -122.310104, 37.894769 ], [ -122.311649, 37.896937 ], [ -122.312164, 37.897479 ], [ -122.311993, 37.897614 ], [ -122.310619, 37.895853 ], [ -122.310104, 37.894769 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.892602 ], [ -122.307186, 37.890976 ], [ -122.307529, 37.889622 ], [ -122.308044, 37.890976 ], [ -122.307701, 37.893415 ], [ -122.308388, 37.895311 ], [ -122.307186, 37.892602 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.895311 ], [ -122.307186, 37.892602 ], [ -122.307186, 37.890976 ], [ -122.307529, 37.889622 ], [ -122.308044, 37.890976 ], [ -122.307701, 37.893415 ], [ -122.308388, 37.895311 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.892737 ], [ -122.306671, 37.892331 ], [ -122.306499, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307529, 37.889757 ], [ -122.307186, 37.891247 ], [ -122.307186, 37.892602 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898021 ], [ -122.306671, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.898021 ], [ -122.306671, 37.892737 ], [ -122.306671, 37.892331 ], [ -122.306499, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307529, 37.889757 ], [ -122.307186, 37.891247 ], [ -122.307186, 37.892602 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898021 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.308388, 37.895311 ], [ -122.307701, 37.893144 ], [ -122.307873, 37.892331 ], [ -122.307873, 37.893144 ], [ -122.308388, 37.895311 ] ] ], [ [ [ -122.308044, 37.890976 ], [ -122.308388, 37.892196 ], [ -122.307873, 37.892331 ], [ -122.308044, 37.890976 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.307873, 37.892331 ], [ -122.308044, 37.890976 ], [ -122.308388, 37.892196 ], [ -122.307873, 37.892331 ] ] ], [ [ [ -122.307873, 37.892331 ], [ -122.307873, 37.893144 ], [ -122.308388, 37.895311 ], [ -122.307701, 37.893144 ], [ -122.307873, 37.892331 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896801 ], [ -122.301178, 37.896801 ], [ -122.301693, 37.898562 ], [ -122.301006, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896801 ], [ -122.301178, 37.896801 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898427 ], [ -122.300148, 37.896937 ], [ -122.301006, 37.896801 ], [ -122.301693, 37.898562 ], [ -122.300663, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.300663, 37.898427 ], [ -122.300148, 37.896937 ], [ -122.301006, 37.896801 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896937 ], [ -122.300663, 37.898427 ], [ -122.299805, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898427 ], [ -122.299805, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896937 ], [ -122.300663, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896124 ], [ -122.302723, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303238, 37.894634 ], [ -122.303238, 37.893550 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.890570 ], [ -122.304096, 37.890163 ], [ -122.306156, 37.889622 ], [ -122.306843, 37.891789 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898021 ], [ -122.305470, 37.898427 ], [ -122.301693, 37.898562 ], [ -122.301006, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896124 ], [ -122.302723, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303238, 37.894634 ], [ -122.303238, 37.893550 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.890570 ], [ -122.304096, 37.890163 ], [ -122.306156, 37.889622 ], [ -122.306843, 37.891789 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898021 ], [ -122.305470, 37.898427 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.891789 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.893550 ], [ -122.303238, 37.894634 ], [ -122.302380, 37.891789 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302380, 37.891789 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.893550 ], [ -122.303238, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.302036, 37.893821 ], [ -122.302723, 37.895718 ], [ -122.301865, 37.895853 ], [ -122.301178, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895853 ], [ -122.301178, 37.894092 ], [ -122.302036, 37.893821 ], [ -122.302723, 37.895718 ], [ -122.301865, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896124 ], [ -122.301006, 37.896124 ], [ -122.301178, 37.896801 ], [ -122.300835, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896801 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896124 ], [ -122.301178, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895176 ], [ -122.301006, 37.896124 ], [ -122.300835, 37.896124 ], [ -122.300491, 37.895176 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896124 ], [ -122.300491, 37.895176 ], [ -122.301006, 37.896124 ], [ -122.300835, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896801 ], [ -122.300148, 37.896937 ], [ -122.299633, 37.895311 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896937 ], [ -122.299633, 37.895311 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896801 ], [ -122.300148, 37.896937 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.895176 ], [ -122.300491, 37.894228 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895853 ], [ -122.301006, 37.896124 ], [ -122.300663, 37.895176 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896124 ], [ -122.300663, 37.895176 ], [ -122.300491, 37.894228 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895853 ], [ -122.301006, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892060 ], [ -122.302380, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ], [ -122.301521, 37.892060 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301521, 37.892060 ], [ -122.302380, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.892196 ], [ -122.301521, 37.892060 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894092 ], [ -122.300663, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.300663, 37.892196 ], [ -122.301521, 37.892060 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894092 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893550 ], [ -122.300663, 37.894905 ], [ -122.300491, 37.895176 ], [ -122.300148, 37.893550 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895176 ], [ -122.300148, 37.893550 ], [ -122.300663, 37.894905 ], [ -122.300491, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893550 ], [ -122.299805, 37.892331 ], [ -122.300663, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894228 ], [ -122.300148, 37.893550 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894228 ], [ -122.300148, 37.893550 ], [ -122.299805, 37.892331 ], [ -122.300663, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894228 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892331 ], [ -122.300148, 37.893550 ], [ -122.299976, 37.893550 ], [ -122.299633, 37.892331 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893550 ], [ -122.299633, 37.892331 ], [ -122.300148, 37.893550 ], [ -122.299976, 37.893550 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.888809 ], [ -122.327099, 37.888809 ], [ -122.324696, 37.887996 ], [ -122.322979, 37.888402 ], [ -122.322979, 37.889080 ], [ -122.322292, 37.889486 ], [ -122.317314, 37.889351 ], [ -122.315941, 37.887454 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316456, 37.885964 ], [ -122.316113, 37.885964 ], [ -122.316113, 37.885693 ], [ -122.317142, 37.885828 ], [ -122.317142, 37.885557 ], [ -122.316113, 37.885557 ], [ -122.315769, 37.885286 ], [ -122.315598, 37.884744 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.884067 ], [ -122.314053, 37.882712 ], [ -122.313194, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.327785, 37.877428 ], [ -122.334824, 37.889622 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.888809 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888809 ], [ -122.327099, 37.888809 ], [ -122.324696, 37.887996 ], [ -122.322979, 37.888402 ], [ -122.322979, 37.889080 ], [ -122.322292, 37.889486 ], [ -122.317314, 37.889351 ], [ -122.315941, 37.887454 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316456, 37.885964 ], [ -122.316113, 37.885964 ], [ -122.316113, 37.885693 ], [ -122.317142, 37.885828 ], [ -122.317142, 37.885557 ], [ -122.316113, 37.885557 ], [ -122.315769, 37.885286 ], [ -122.315598, 37.884744 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.884067 ], [ -122.314053, 37.882712 ], [ -122.313194, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.327785, 37.877428 ], [ -122.334824, 37.889622 ], [ -122.327614, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.313194, 37.882306 ], [ -122.314053, 37.882712 ], [ -122.315083, 37.884067 ], [ -122.315598, 37.884067 ], [ -122.315598, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885557 ], [ -122.317142, 37.885557 ], [ -122.317142, 37.885828 ], [ -122.316113, 37.885693 ], [ -122.316113, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887454 ], [ -122.317314, 37.889351 ], [ -122.322292, 37.889486 ], [ -122.322979, 37.889080 ], [ -122.322979, 37.888402 ], [ -122.324696, 37.887996 ], [ -122.327099, 37.888809 ], [ -122.327614, 37.888809 ], [ -122.327614, 37.889757 ], [ -122.311306, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.313194, 37.882306 ], [ -122.314053, 37.882712 ], [ -122.315083, 37.884067 ], [ -122.315598, 37.884067 ], [ -122.315598, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885557 ], [ -122.317142, 37.885557 ], [ -122.317142, 37.885828 ], [ -122.316113, 37.885693 ], [ -122.316113, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887454 ], [ -122.317314, 37.889351 ], [ -122.322292, 37.889486 ], [ -122.322979, 37.889080 ], [ -122.322979, 37.888402 ], [ -122.324696, 37.887996 ], [ -122.327099, 37.888809 ], [ -122.327614, 37.888809 ], [ -122.327614, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.309418, 37.887318 ], [ -122.309074, 37.888809 ], [ -122.309074, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.888809 ], [ -122.309074, 37.887454 ], [ -122.309418, 37.887318 ], [ -122.309074, 37.888809 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308731, 37.887454 ], [ -122.309074, 37.887454 ], [ -122.309074, 37.888809 ], [ -122.308388, 37.890163 ], [ -122.308388, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890163 ], [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308731, 37.887454 ], [ -122.309074, 37.887454 ], [ -122.309074, 37.888809 ], [ -122.308388, 37.890163 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306328, 37.890299 ], [ -122.306671, 37.890299 ], [ -122.306156, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.306843, 37.890705 ], [ -122.306499, 37.890841 ], [ -122.306328, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306499, 37.890841 ], [ -122.306328, 37.890299 ], [ -122.306671, 37.890299 ], [ -122.306156, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.306843, 37.890705 ], [ -122.306499, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.890163 ], [ -122.306499, 37.890163 ], [ -122.306499, 37.890434 ], [ -122.306156, 37.890434 ], [ -122.306156, 37.890163 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.890434 ], [ -122.306156, 37.890163 ], [ -122.306499, 37.890163 ], [ -122.306499, 37.890434 ], [ -122.306156, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889622 ], [ -122.308559, 37.887725 ], [ -122.308388, 37.890163 ], [ -122.308044, 37.890976 ], [ -122.307529, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.890976 ], [ -122.307529, 37.889622 ], [ -122.308559, 37.887725 ], [ -122.308388, 37.890163 ], [ -122.308044, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308731, 37.887454 ], [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887454 ], [ -122.307701, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.889080 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306156, 37.889622 ], [ -122.305984, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.889622 ], [ -122.305984, 37.889080 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306156, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.888538 ], [ -122.307529, 37.888538 ], [ -122.307529, 37.888809 ], [ -122.307186, 37.888809 ], [ -122.307186, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.888809 ], [ -122.307186, 37.888538 ], [ -122.307529, 37.888538 ], [ -122.307529, 37.888809 ], [ -122.307186, 37.888809 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889622 ], [ -122.307014, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889622 ], [ -122.307014, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309418, 37.886912 ], [ -122.309074, 37.887454 ], [ -122.308731, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309418, 37.886912 ], [ -122.309074, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.886370 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.887318 ], [ -122.309418, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309418, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887183 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882306 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887318 ], [ -122.307358, 37.887183 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882306 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887183 ], [ -122.308731, 37.887318 ], [ -122.308559, 37.887318 ], [ -122.307358, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308559, 37.887454 ], [ -122.308044, 37.887454 ], [ -122.308044, 37.887048 ], [ -122.308559, 37.887048 ], [ -122.308559, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305470, 37.887589 ], [ -122.307014, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ], [ -122.305470, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.305470, 37.887589 ], [ -122.307014, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.886912 ], [ -122.306328, 37.883389 ], [ -122.305813, 37.882170 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.887183 ], [ -122.307186, 37.886912 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887183 ], [ -122.307186, 37.886912 ], [ -122.306328, 37.883389 ], [ -122.305813, 37.882170 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889622 ], [ -122.303410, 37.889486 ], [ -122.303581, 37.890434 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.891654 ], [ -122.302551, 37.889622 ], [ -122.303410, 37.889486 ], [ -122.303581, 37.890434 ], [ -122.303238, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.889486 ], [ -122.305984, 37.889080 ], [ -122.306156, 37.889622 ], [ -122.304268, 37.890028 ], [ -122.303581, 37.890434 ], [ -122.303410, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890434 ], [ -122.303410, 37.889486 ], [ -122.305984, 37.889080 ], [ -122.306156, 37.889622 ], [ -122.304268, 37.890028 ], [ -122.303581, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.889215 ], [ -122.304440, 37.889215 ], [ -122.304440, 37.889486 ], [ -122.304096, 37.889486 ], [ -122.304096, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.889486 ], [ -122.304096, 37.889215 ], [ -122.304440, 37.889215 ], [ -122.304440, 37.889486 ], [ -122.304096, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ], [ -122.304611, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304611, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889080 ], [ -122.304268, 37.889351 ], [ -122.303581, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.889351 ], [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889080 ], [ -122.304268, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.889486 ], [ -122.302723, 37.889486 ], [ -122.302723, 37.889757 ], [ -122.302380, 37.889757 ], [ -122.302380, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.889757 ], [ -122.302380, 37.889486 ], [ -122.302723, 37.889486 ], [ -122.302723, 37.889757 ], [ -122.302380, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889351 ], [ -122.303410, 37.889486 ], [ -122.302723, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.889486 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889351 ], [ -122.303410, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889893 ], [ -122.302551, 37.889622 ], [ -122.303238, 37.891654 ], [ -122.302380, 37.891789 ], [ -122.301693, 37.889893 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.891789 ], [ -122.301693, 37.889893 ], [ -122.302551, 37.889622 ], [ -122.303238, 37.891654 ], [ -122.302380, 37.891789 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.301693, 37.889893 ], [ -122.302380, 37.891789 ], [ -122.301521, 37.892060 ], [ -122.300835, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892060 ], [ -122.300835, 37.890028 ], [ -122.301693, 37.889893 ], [ -122.302380, 37.891789 ], [ -122.301521, 37.892060 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300663, 37.892196 ], [ -122.299805, 37.892331 ], [ -122.299633, 37.891925 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892331 ], [ -122.299633, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300663, 37.892196 ], [ -122.299805, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892060 ], [ -122.300663, 37.892196 ], [ -122.299976, 37.890163 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.892196 ], [ -122.299976, 37.890163 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892060 ], [ -122.300663, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887725 ], [ -122.302723, 37.887589 ], [ -122.303410, 37.889486 ], [ -122.302551, 37.889622 ], [ -122.301865, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889622 ], [ -122.301865, 37.887725 ], [ -122.302723, 37.887589 ], [ -122.303410, 37.889486 ], [ -122.302551, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301865, 37.887725 ], [ -122.302551, 37.889622 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889893 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.887725 ], [ -122.302551, 37.889622 ], [ -122.301693, 37.889893 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.887725 ], [ -122.300835, 37.887860 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.887860 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.887860 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.890028 ], [ -122.299976, 37.890163 ], [ -122.299290, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.299290, 37.887860 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.890028 ], [ -122.299976, 37.890163 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887183 ], [ -122.305470, 37.887589 ], [ -122.302208, 37.887589 ], [ -122.307358, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887589 ], [ -122.307358, 37.887183 ], [ -122.305470, 37.887589 ], [ -122.302208, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887725 ], [ -122.300663, 37.886370 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.306843, 37.885693 ], [ -122.307186, 37.887183 ], [ -122.300835, 37.887860 ], [ -122.301006, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301006, 37.887725 ], [ -122.300663, 37.886370 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.306843, 37.885693 ], [ -122.307186, 37.887183 ], [ -122.300835, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884744 ], [ -122.303753, 37.883660 ], [ -122.304096, 37.883660 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ], [ -122.303925, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885964 ], [ -122.303925, 37.884744 ], [ -122.303753, 37.883660 ], [ -122.304096, 37.883660 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885422 ], [ -122.304096, 37.883660 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302723, 37.883119 ], [ -122.302380, 37.882577 ], [ -122.305813, 37.882170 ], [ -122.306843, 37.885693 ], [ -122.304611, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306843, 37.885693 ], [ -122.304611, 37.885422 ], [ -122.304096, 37.883660 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302723, 37.883119 ], [ -122.302380, 37.882577 ], [ -122.305813, 37.882170 ], [ -122.306843, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.883796 ], [ -122.303753, 37.883660 ], [ -122.304268, 37.885964 ], [ -122.304096, 37.885964 ], [ -122.303410, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.885964 ], [ -122.303410, 37.883796 ], [ -122.303753, 37.883660 ], [ -122.304268, 37.885964 ], [ -122.304096, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.883796 ], [ -122.303410, 37.883796 ], [ -122.304096, 37.885964 ], [ -122.303581, 37.885964 ], [ -122.303066, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.885964 ], [ -122.303066, 37.883796 ], [ -122.303410, 37.883796 ], [ -122.304096, 37.885964 ], [ -122.303581, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884202 ], [ -122.300148, 37.883389 ], [ -122.300320, 37.883254 ], [ -122.301006, 37.883525 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.885964 ], [ -122.300663, 37.886370 ], [ -122.299805, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.886370 ], [ -122.299805, 37.884202 ], [ -122.300148, 37.883389 ], [ -122.300320, 37.883254 ], [ -122.301006, 37.883525 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.885964 ], [ -122.300663, 37.886370 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.883119 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303066, 37.883796 ], [ -122.302723, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.883796 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303066, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300320, 37.883119 ], [ -122.300320, 37.882983 ], [ -122.302380, 37.882577 ], [ -122.302723, 37.883119 ], [ -122.301006, 37.883525 ], [ -122.300320, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883525 ], [ -122.300320, 37.883119 ], [ -122.300320, 37.882983 ], [ -122.302380, 37.882577 ], [ -122.302723, 37.883119 ], [ -122.301006, 37.883525 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299805, 37.898291 ], [ -122.298946, 37.898562 ], [ -122.298603, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.898562 ], [ -122.298603, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299805, 37.898291 ], [ -122.298946, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897479 ], [ -122.298603, 37.897208 ], [ -122.298946, 37.898562 ], [ -122.298088, 37.898833 ], [ -122.297745, 37.897479 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898833 ], [ -122.297745, 37.897479 ], [ -122.298603, 37.897208 ], [ -122.298946, 37.898562 ], [ -122.298088, 37.898833 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.897614 ], [ -122.297745, 37.897479 ], [ -122.298088, 37.898833 ], [ -122.297230, 37.898969 ], [ -122.296886, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898969 ], [ -122.296886, 37.897614 ], [ -122.297745, 37.897479 ], [ -122.298088, 37.898833 ], [ -122.297230, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.296886, 37.897614 ], [ -122.297230, 37.898969 ], [ -122.296371, 37.898969 ], [ -122.295856, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.295856, 37.897885 ], [ -122.296886, 37.897614 ], [ -122.297230, 37.898969 ], [ -122.296371, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.297230, 37.895853 ], [ -122.297745, 37.897479 ], [ -122.296886, 37.897614 ], [ -122.296371, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297230, 37.895853 ], [ -122.297745, 37.897479 ], [ -122.296886, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.896124 ], [ -122.296371, 37.895989 ], [ -122.296886, 37.897614 ], [ -122.296028, 37.897750 ], [ -122.295513, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897750 ], [ -122.295513, 37.896124 ], [ -122.296371, 37.895989 ], [ -122.296886, 37.897614 ], [ -122.296028, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898833 ], [ -122.294655, 37.897750 ], [ -122.295856, 37.897885 ], [ -122.296371, 37.898969 ], [ -122.294655, 37.898833 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.294655, 37.898833 ], [ -122.294655, 37.897750 ], [ -122.295856, 37.897885 ], [ -122.296371, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896937 ], [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896937 ], [ -122.299290, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298603, 37.897208 ], [ -122.298088, 37.895718 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.897208 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298603, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.895853 ], [ -122.298088, 37.895718 ], [ -122.298603, 37.897208 ], [ -122.297745, 37.897479 ], [ -122.297230, 37.895853 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897479 ], [ -122.297230, 37.895853 ], [ -122.298088, 37.895718 ], [ -122.298603, 37.897208 ], [ -122.297745, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ], [ -122.297573, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.297573, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894228 ], [ -122.297573, 37.893957 ], [ -122.298088, 37.895718 ], [ -122.297230, 37.895853 ], [ -122.296715, 37.894228 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.895853 ], [ -122.296715, 37.894228 ], [ -122.297573, 37.893957 ], [ -122.298088, 37.895718 ], [ -122.297230, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.299976, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ], [ -122.299976, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299633, 37.895311 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.892060 ], [ -122.299461, 37.891925 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893550 ], [ -122.299118, 37.893686 ], [ -122.298603, 37.892060 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.298603, 37.892060 ], [ -122.299461, 37.891925 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893550 ], [ -122.299118, 37.893686 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298603, 37.892060 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298603, 37.892060 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297573, 37.893957 ], [ -122.297058, 37.892466 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.893957 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297573, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.894363 ], [ -122.296715, 37.894228 ], [ -122.297230, 37.895853 ], [ -122.296371, 37.895989 ], [ -122.295856, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295856, 37.894363 ], [ -122.296715, 37.894228 ], [ -122.297230, 37.895853 ], [ -122.296371, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294998, 37.894498 ], [ -122.296028, 37.897750 ], [ -122.295856, 37.897885 ], [ -122.294655, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.294998, 37.894498 ], [ -122.296028, 37.897750 ], [ -122.295856, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897750 ], [ -122.294827, 37.895447 ], [ -122.294483, 37.894634 ], [ -122.294655, 37.894634 ], [ -122.295856, 37.897885 ], [ -122.294655, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.294655, 37.897750 ], [ -122.294827, 37.895447 ], [ -122.294483, 37.894634 ], [ -122.294655, 37.894634 ], [ -122.295856, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894498 ], [ -122.295856, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295513, 37.896124 ], [ -122.294998, 37.894498 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.896124 ], [ -122.294998, 37.894498 ], [ -122.295856, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295513, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.296200, 37.892602 ], [ -122.296715, 37.894228 ], [ -122.295856, 37.894363 ], [ -122.295341, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.894363 ], [ -122.295341, 37.892737 ], [ -122.296200, 37.892602 ], [ -122.296715, 37.894228 ], [ -122.295856, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.892602 ], [ -122.297058, 37.892466 ], [ -122.297573, 37.893957 ], [ -122.296715, 37.894228 ], [ -122.296200, 37.892602 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894228 ], [ -122.296200, 37.892602 ], [ -122.297058, 37.892466 ], [ -122.297573, 37.893957 ], [ -122.296715, 37.894228 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.892873 ], [ -122.295341, 37.892737 ], [ -122.295856, 37.894363 ], [ -122.294998, 37.894498 ], [ -122.294483, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894498 ], [ -122.294483, 37.892873 ], [ -122.295341, 37.892737 ], [ -122.295856, 37.894363 ], [ -122.294998, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.294483, 37.892873 ], [ -122.294998, 37.894498 ], [ -122.294655, 37.894634 ], [ -122.294140, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294140, 37.892873 ], [ -122.294483, 37.892873 ], [ -122.294998, 37.894498 ], [ -122.294655, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294655, 37.898833 ], [ -122.293797, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898833 ], [ -122.293797, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294655, 37.898833 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.292938, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293797, 37.898562 ], [ -122.292938, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.898562 ], [ -122.292938, 37.898427 ], [ -122.292938, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293797, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.897750 ], [ -122.292938, 37.897750 ], [ -122.292938, 37.898427 ], [ -122.292767, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.292767, 37.897750 ], [ -122.292938, 37.897750 ], [ -122.292938, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.897750 ], [ -122.292767, 37.897750 ], [ -122.292767, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.897750 ], [ -122.292767, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.897750 ], [ -122.292767, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291737, 37.898156 ], [ -122.291737, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.898427 ], [ -122.291737, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.898427 ], [ -122.291737, 37.898156 ], [ -122.291737, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898021 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896801 ], [ -122.291737, 37.898156 ], [ -122.290878, 37.898021 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291737, 37.898156 ], [ -122.290878, 37.898021 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896801 ], [ -122.291737, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290878, 37.898021 ], [ -122.290020, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898021 ], [ -122.290020, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290878, 37.898021 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.897885 ], [ -122.289162, 37.897885 ], [ -122.289162, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.897885 ], [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.897885 ], [ -122.289162, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894769 ], [ -122.294483, 37.894634 ], [ -122.294827, 37.895447 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293968, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.897750 ], [ -122.293968, 37.894769 ], [ -122.294483, 37.894634 ], [ -122.294827, 37.895447 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.894905 ], [ -122.293968, 37.894769 ], [ -122.293968, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292938, 37.897750 ], [ -122.293110, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897750 ], [ -122.293110, 37.894905 ], [ -122.293968, 37.894769 ], [ -122.293968, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292938, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.293110, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.292767, 37.894905 ], [ -122.293110, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292767, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894769 ], [ -122.294140, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894769 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293968, 37.894769 ], [ -122.293110, 37.894905 ], [ -122.293110, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.894905 ], [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293968, 37.894769 ], [ -122.293110, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293110, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292938, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.292938, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293110, 37.894905 ], [ -122.292767, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292938, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291908, 37.894905 ], [ -122.291908, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.894905 ], [ -122.291908, 37.892873 ], [ -122.292938, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291908, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290192, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292767, 37.896801 ], [ -122.290020, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290192, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292767, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.894769 ], [ -122.290192, 37.894905 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289333, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.289333, 37.894769 ], [ -122.290192, 37.894905 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291050, 37.894905 ], [ -122.291050, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.894905 ], [ -122.291050, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291050, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291050, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291050, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.894769 ], [ -122.289333, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289333, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.289333, 37.894769 ], [ -122.289333, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289162, 37.897885 ], [ -122.288303, 37.898156 ], [ -122.288303, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.898156 ], [ -122.288303, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289162, 37.897885 ], [ -122.288303, 37.898156 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.897885 ], [ -122.288132, 37.897885 ], [ -122.288132, 37.897479 ], [ -122.288303, 37.897479 ], [ -122.288303, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288132, 37.898156 ], [ -122.287273, 37.898698 ], [ -122.287273, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.898698 ], [ -122.287273, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288132, 37.898156 ], [ -122.287273, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.898156 ], [ -122.287273, 37.898698 ], [ -122.287102, 37.898833 ], [ -122.287273, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.898833 ], [ -122.287273, 37.898156 ], [ -122.287273, 37.898698 ], [ -122.287102, 37.898833 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287273, 37.898156 ], [ -122.287102, 37.898156 ], [ -122.287102, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.898156 ], [ -122.287102, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287273, 37.898156 ], [ -122.287102, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.289333, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288303, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.896666 ], [ -122.288303, 37.894769 ], [ -122.289333, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288303, 37.896666 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.895989 ], [ -122.288132, 37.895989 ], [ -122.288132, 37.895582 ], [ -122.288475, 37.895582 ], [ -122.288475, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288303, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287445, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896666 ], [ -122.287445, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288303, 37.896666 ], [ -122.287273, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.896666 ], [ -122.287102, 37.896666 ], [ -122.287273, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896666 ], [ -122.287273, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.896666 ], [ -122.287102, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.289333, 37.893008 ], [ -122.289333, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ], [ -122.289333, 37.893008 ], [ -122.289333, 37.894769 ], [ -122.288303, 37.894769 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288647, 37.894498 ], [ -122.288303, 37.894498 ], [ -122.288303, 37.894092 ], [ -122.288647, 37.894092 ], [ -122.288647, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.288475, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287445, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894769 ], [ -122.287445, 37.892873 ], [ -122.288475, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287445, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.894769 ], [ -122.287273, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.894769 ], [ -122.287273, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892196 ], [ -122.299976, 37.892196 ], [ -122.299976, 37.892466 ], [ -122.299633, 37.892466 ], [ -122.299633, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892466 ], [ -122.299633, 37.892196 ], [ -122.299976, 37.892196 ], [ -122.299976, 37.892466 ], [ -122.299633, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890434 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298603, 37.892060 ], [ -122.298088, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.892060 ], [ -122.298088, 37.890434 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298603, 37.892060 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299461, 37.891925 ], [ -122.298946, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.891925 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299461, 37.891925 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890028 ], [ -122.300148, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299805, 37.890299 ], [ -122.299805, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890299 ], [ -122.299805, 37.890028 ], [ -122.300148, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299805, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.890434 ], [ -122.298088, 37.890434 ], [ -122.298260, 37.890705 ], [ -122.298603, 37.892060 ], [ -122.297745, 37.892196 ], [ -122.297230, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297230, 37.890434 ], [ -122.298088, 37.890434 ], [ -122.298260, 37.890705 ], [ -122.298603, 37.892060 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890299 ], [ -122.297401, 37.890299 ], [ -122.297401, 37.890570 ], [ -122.297058, 37.890570 ], [ -122.297058, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.297058, 37.890299 ], [ -122.297401, 37.890299 ], [ -122.297401, 37.890570 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887860 ], [ -122.299290, 37.887860 ], [ -122.299976, 37.890163 ], [ -122.299118, 37.890299 ], [ -122.298260, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890299 ], [ -122.298260, 37.887860 ], [ -122.299290, 37.887860 ], [ -122.299976, 37.890163 ], [ -122.299118, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887860 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ], [ -122.298260, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298260, 37.887860 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.889622 ], [ -122.297058, 37.886912 ], [ -122.297916, 37.886777 ], [ -122.298946, 37.890299 ], [ -122.298088, 37.890299 ], [ -122.297916, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.297916, 37.889622 ], [ -122.297058, 37.886912 ], [ -122.297916, 37.886777 ], [ -122.298946, 37.890299 ], [ -122.298088, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890434 ], [ -122.297230, 37.890434 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.296371, 37.890434 ], [ -122.297230, 37.890434 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.890570 ], [ -122.296371, 37.890434 ], [ -122.297058, 37.892466 ], [ -122.296200, 37.892602 ], [ -122.295513, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.892602 ], [ -122.295513, 37.890570 ], [ -122.296371, 37.890434 ], [ -122.297058, 37.892466 ], [ -122.296200, 37.892602 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.890299 ], [ -122.296543, 37.890299 ], [ -122.296543, 37.890570 ], [ -122.296200, 37.890570 ], [ -122.296200, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.890570 ], [ -122.296200, 37.890299 ], [ -122.296543, 37.890299 ], [ -122.296543, 37.890570 ], [ -122.296200, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.295513, 37.890570 ], [ -122.296200, 37.892602 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ], [ -122.295513, 37.890570 ], [ -122.296200, 37.892602 ], [ -122.295341, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294483, 37.892873 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294483, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.887183 ], [ -122.297058, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297230, 37.890434 ], [ -122.296200, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.890434 ], [ -122.296200, 37.887183 ], [ -122.297058, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297230, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.296200, 37.887183 ], [ -122.297230, 37.890434 ], [ -122.296371, 37.890434 ], [ -122.295341, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890434 ], [ -122.295341, 37.887318 ], [ -122.296200, 37.887183 ], [ -122.297230, 37.890434 ], [ -122.296371, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887454 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890434 ], [ -122.295513, 37.890434 ], [ -122.294483, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.890434 ], [ -122.294483, 37.887454 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890434 ], [ -122.295513, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.294483, 37.887454 ], [ -122.295513, 37.890434 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ], [ -122.294483, 37.887454 ], [ -122.295513, 37.890434 ], [ -122.294655, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886777 ], [ -122.299633, 37.887589 ], [ -122.301006, 37.887725 ], [ -122.298260, 37.887860 ], [ -122.297916, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887860 ], [ -122.297916, 37.886777 ], [ -122.299633, 37.887589 ], [ -122.301006, 37.887725 ], [ -122.298260, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.887589 ], [ -122.297916, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884473 ], [ -122.299976, 37.884067 ], [ -122.301006, 37.887725 ], [ -122.299633, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887725 ], [ -122.299633, 37.887589 ], [ -122.297916, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884473 ], [ -122.299976, 37.884067 ], [ -122.301006, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.886641 ], [ -122.298088, 37.886641 ], [ -122.298088, 37.886912 ], [ -122.297745, 37.886912 ], [ -122.297745, 37.886641 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.886912 ], [ -122.297745, 37.886641 ], [ -122.298088, 37.886641 ], [ -122.298088, 37.886912 ], [ -122.297745, 37.886912 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.883254 ], [ -122.300320, 37.882983 ], [ -122.300320, 37.883119 ], [ -122.299805, 37.884202 ], [ -122.298431, 37.884473 ], [ -122.298088, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884473 ], [ -122.298088, 37.883254 ], [ -122.300320, 37.882983 ], [ -122.300320, 37.883119 ], [ -122.299805, 37.884202 ], [ -122.298431, 37.884473 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.886506 ], [ -122.297573, 37.886506 ], [ -122.297573, 37.885964 ], [ -122.298088, 37.885964 ], [ -122.298088, 37.886506 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884473 ], [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884473 ], [ -122.297401, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.887048 ], [ -122.296371, 37.887048 ], [ -122.296371, 37.887318 ], [ -122.296028, 37.887318 ], [ -122.296028, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.887318 ], [ -122.296028, 37.887048 ], [ -122.296371, 37.887048 ], [ -122.296371, 37.887318 ], [ -122.296028, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.887183 ], [ -122.295513, 37.887183 ], [ -122.295513, 37.887454 ], [ -122.295170, 37.887454 ], [ -122.295170, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.887454 ], [ -122.295170, 37.887183 ], [ -122.295513, 37.887183 ], [ -122.295513, 37.887454 ], [ -122.295170, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.294483, 37.884338 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.884338 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.296886, 37.883931 ], [ -122.297916, 37.886777 ], [ -122.297058, 37.886912 ], [ -122.296028, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886912 ], [ -122.296028, 37.884067 ], [ -122.296886, 37.883931 ], [ -122.297916, 37.886777 ], [ -122.297058, 37.886912 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.886912 ], [ -122.296200, 37.887048 ], [ -122.295170, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.887048 ], [ -122.295170, 37.884202 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.886912 ], [ -122.296200, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.883796 ], [ -122.297401, 37.884609 ], [ -122.297230, 37.884744 ], [ -122.297058, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.884744 ], [ -122.297058, 37.883796 ], [ -122.297401, 37.884609 ], [ -122.297230, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296200, 37.887048 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887183 ], [ -122.294483, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296200, 37.887048 ], [ -122.295341, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.882983 ], [ -122.294827, 37.882848 ], [ -122.295170, 37.884202 ], [ -122.294483, 37.884338 ], [ -122.293968, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.884338 ], [ -122.293968, 37.882983 ], [ -122.294827, 37.882848 ], [ -122.295170, 37.884202 ], [ -122.294483, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.891112 ], [ -122.293282, 37.890705 ], [ -122.293625, 37.890570 ], [ -122.294483, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.293282, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293282, 37.891112 ], [ -122.293282, 37.890705 ], [ -122.293625, 37.890570 ], [ -122.294483, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.891112 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293282, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293282, 37.891112 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293110, 37.892873 ], [ -122.292938, 37.892873 ], [ -122.292938, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.892873 ], [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293110, 37.892873 ], [ -122.292938, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.293968, 37.890434 ], [ -122.293968, 37.890705 ], [ -122.293625, 37.890705 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890705 ], [ -122.293625, 37.890434 ], [ -122.293968, 37.890434 ], [ -122.293968, 37.890705 ], [ -122.293625, 37.890705 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.890570 ], [ -122.293453, 37.890570 ], [ -122.293453, 37.890841 ], [ -122.293110, 37.890841 ], [ -122.293110, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.890841 ], [ -122.293110, 37.890570 ], [ -122.293453, 37.890570 ], [ -122.293453, 37.890841 ], [ -122.293110, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.890705 ], [ -122.292938, 37.890705 ], [ -122.292938, 37.892873 ], [ -122.291908, 37.892873 ], [ -122.292080, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292080, 37.890705 ], [ -122.292938, 37.890705 ], [ -122.292938, 37.892873 ], [ -122.291908, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.890434 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.889893 ], [ -122.292595, 37.887725 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.890434 ], [ -122.293282, 37.889893 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.293282, 37.889893 ], [ -122.292595, 37.887725 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293282, 37.889893 ], [ -122.293797, 37.890570 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293282, 37.889893 ], [ -122.293797, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.888131 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890705 ], [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890705 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.292423, 37.887725 ], [ -122.292423, 37.887996 ], [ -122.292080, 37.887996 ], [ -122.292080, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887996 ], [ -122.292080, 37.887725 ], [ -122.292423, 37.887725 ], [ -122.292423, 37.887996 ], [ -122.292080, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890705 ], [ -122.292080, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291222, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.893008 ], [ -122.291222, 37.890705 ], [ -122.292080, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290363, 37.890841 ], [ -122.291222, 37.890705 ], [ -122.291050, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290363, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.290363, 37.890841 ], [ -122.291222, 37.890705 ], [ -122.291050, 37.893008 ], [ -122.290192, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.890570 ], [ -122.291393, 37.890570 ], [ -122.291393, 37.890841 ], [ -122.291050, 37.890841 ], [ -122.291050, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.890841 ], [ -122.291050, 37.890570 ], [ -122.291393, 37.890570 ], [ -122.291393, 37.890841 ], [ -122.291050, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.890841 ], [ -122.290363, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289333, 37.893008 ], [ -122.289505, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.893008 ], [ -122.289505, 37.890841 ], [ -122.290363, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289333, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288990, 37.890841 ], [ -122.289505, 37.890841 ], [ -122.289333, 37.893008 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.893008 ], [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288990, 37.890841 ], [ -122.289505, 37.890841 ], [ -122.289333, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888267 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.890705 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.890841 ], [ -122.290192, 37.888267 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.890705 ], [ -122.290878, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888538 ], [ -122.290192, 37.888267 ], [ -122.290878, 37.890841 ], [ -122.290020, 37.890841 ], [ -122.289162, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.890841 ], [ -122.289162, 37.888538 ], [ -122.290192, 37.888267 ], [ -122.290878, 37.890841 ], [ -122.290020, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289162, 37.888538 ], [ -122.290020, 37.890841 ], [ -122.288990, 37.890841 ], [ -122.288303, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.890841 ], [ -122.288303, 37.888673 ], [ -122.289162, 37.888538 ], [ -122.290020, 37.890841 ], [ -122.288990, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.888131 ], [ -122.290363, 37.888131 ], [ -122.290363, 37.888402 ], [ -122.290020, 37.888402 ], [ -122.290020, 37.888131 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.888402 ], [ -122.290020, 37.888131 ], [ -122.290363, 37.888131 ], [ -122.290363, 37.888402 ], [ -122.290020, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.884744 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.887589 ], [ -122.292767, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.887589 ], [ -122.293625, 37.887725 ], [ -122.292767, 37.887725 ], [ -122.291908, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.887725 ], [ -122.291908, 37.884880 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.887589 ], [ -122.293625, 37.887725 ], [ -122.292767, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885015 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887725 ], [ -122.292595, 37.887725 ], [ -122.291565, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.887725 ], [ -122.291565, 37.885015 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887725 ], [ -122.292595, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.291565, 37.885015 ], [ -122.292595, 37.887725 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.885015 ], [ -122.292595, 37.887725 ], [ -122.292252, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884202 ], [ -122.293110, 37.883119 ], [ -122.293968, 37.882983 ], [ -122.294483, 37.884338 ], [ -122.293625, 37.884609 ], [ -122.293453, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.293453, 37.884202 ], [ -122.293110, 37.883119 ], [ -122.293968, 37.882983 ], [ -122.294483, 37.884338 ], [ -122.293625, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.884473 ], [ -122.292080, 37.883254 ], [ -122.293110, 37.883119 ], [ -122.293625, 37.884609 ], [ -122.292767, 37.884744 ], [ -122.292595, 37.884473 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.884744 ], [ -122.292595, 37.884473 ], [ -122.292080, 37.883254 ], [ -122.293110, 37.883119 ], [ -122.293625, 37.884609 ], [ -122.292767, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291393, 37.883254 ], [ -122.292080, 37.883254 ], [ -122.292767, 37.884744 ], [ -122.291908, 37.884880 ], [ -122.291393, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.291393, 37.883254 ], [ -122.292080, 37.883254 ], [ -122.292767, 37.884744 ], [ -122.291908, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885286 ], [ -122.291222, 37.885015 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.885286 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.887996 ], [ -122.290192, 37.885286 ], [ -122.291222, 37.885015 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886099 ], [ -122.290192, 37.888267 ], [ -122.288303, 37.888673 ], [ -122.289333, 37.886099 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289333, 37.886099 ], [ -122.290192, 37.888267 ], [ -122.288303, 37.888673 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886099 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.885693 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.888267 ], [ -122.289333, 37.886099 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888267 ], [ -122.289333, 37.886099 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.885693 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290535, 37.883254 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885015 ], [ -122.291222, 37.885015 ], [ -122.290535, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.290535, 37.883254 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885015 ], [ -122.291222, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.883389 ], [ -122.291222, 37.883254 ], [ -122.291393, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885015 ], [ -122.290878, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885015 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.883254 ], [ -122.291393, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884609 ], [ -122.290363, 37.883119 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885286 ], [ -122.289848, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885286 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.883119 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885286 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885964 ], [ -122.289333, 37.885964 ], [ -122.289333, 37.885557 ], [ -122.289677, 37.885557 ], [ -122.289677, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.289333, 37.883389 ], [ -122.290192, 37.883254 ], [ -122.290363, 37.883119 ], [ -122.289848, 37.885015 ], [ -122.288818, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.885015 ], [ -122.288818, 37.884744 ], [ -122.289333, 37.883389 ], [ -122.290192, 37.883254 ], [ -122.290363, 37.883119 ], [ -122.289848, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.883119 ], [ -122.296028, 37.883119 ], [ -122.296886, 37.883525 ], [ -122.296886, 37.883931 ], [ -122.296028, 37.884067 ], [ -122.295856, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.883119 ], [ -122.296886, 37.883525 ], [ -122.296886, 37.883931 ], [ -122.296028, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294827, 37.882848 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.884067 ], [ -122.295170, 37.884202 ], [ -122.294827, 37.882848 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.294827, 37.882848 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.884067 ], [ -122.295170, 37.884202 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892060 ], [ -122.288475, 37.892060 ], [ -122.288475, 37.891654 ], [ -122.288818, 37.891654 ], [ -122.288818, 37.892060 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.890976 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288475, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287617, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.287617, 37.890976 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288475, 37.892873 ], [ -122.287445, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.890705 ], [ -122.287960, 37.890705 ], [ -122.287960, 37.890976 ], [ -122.287617, 37.890976 ], [ -122.287617, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.890976 ], [ -122.287617, 37.890705 ], [ -122.287960, 37.890705 ], [ -122.287960, 37.890976 ], [ -122.287617, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.890976 ], [ -122.287617, 37.890976 ], [ -122.287617, 37.891383 ], [ -122.287445, 37.892873 ], [ -122.287273, 37.892873 ], [ -122.287273, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.892873 ], [ -122.287273, 37.890976 ], [ -122.287617, 37.890976 ], [ -122.287617, 37.891383 ], [ -122.287445, 37.892873 ], [ -122.287273, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.890841 ], [ -122.286930, 37.890841 ], [ -122.286930, 37.891112 ], [ -122.286587, 37.891112 ], [ -122.286587, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.891112 ], [ -122.286587, 37.890841 ], [ -122.286930, 37.890841 ], [ -122.286930, 37.891112 ], [ -122.286587, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888809 ], [ -122.288303, 37.888673 ], [ -122.288303, 37.888944 ], [ -122.288818, 37.890841 ], [ -122.288132, 37.888809 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890841 ], [ -122.288132, 37.888809 ], [ -122.288303, 37.888673 ], [ -122.288303, 37.888944 ], [ -122.288818, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288132, 37.888809 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888809 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888538 ], [ -122.288475, 37.888538 ], [ -122.288475, 37.888809 ], [ -122.288132, 37.888809 ], [ -122.288132, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888809 ], [ -122.288132, 37.888538 ], [ -122.288475, 37.888538 ], [ -122.288475, 37.888809 ], [ -122.288132, 37.888809 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286243, 37.889486 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890976 ], [ -122.287617, 37.890841 ], [ -122.286758, 37.890976 ], [ -122.286243, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.890976 ], [ -122.286243, 37.889486 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890976 ], [ -122.287617, 37.890841 ], [ -122.286758, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286930, 37.888944 ], [ -122.287273, 37.888944 ], [ -122.287273, 37.889215 ], [ -122.286930, 37.889215 ], [ -122.286930, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286930, 37.889215 ], [ -122.286930, 37.888944 ], [ -122.287273, 37.888944 ], [ -122.287273, 37.889215 ], [ -122.286930, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.888673 ], [ -122.286415, 37.887725 ], [ -122.287617, 37.887996 ], [ -122.287102, 37.889080 ], [ -122.286243, 37.889351 ], [ -122.286072, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286243, 37.889351 ], [ -122.286072, 37.888673 ], [ -122.286415, 37.887725 ], [ -122.287617, 37.887996 ], [ -122.287102, 37.889080 ], [ -122.286243, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889622 ], [ -122.286243, 37.889486 ], [ -122.286758, 37.890976 ], [ -122.285728, 37.890976 ], [ -122.285213, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.285213, 37.889622 ], [ -122.286243, 37.889486 ], [ -122.286758, 37.890976 ], [ -122.285728, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.890976 ], [ -122.284698, 37.890976 ], [ -122.284698, 37.891247 ], [ -122.284355, 37.891247 ], [ -122.284355, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.891247 ], [ -122.284355, 37.890976 ], [ -122.284698, 37.890976 ], [ -122.284698, 37.891247 ], [ -122.284355, 37.891247 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284184, 37.889351 ], [ -122.285213, 37.889622 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891112 ], [ -122.284184, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891112 ], [ -122.284184, 37.889351 ], [ -122.285213, 37.889622 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.284184, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ], [ -122.282982, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.282982, 37.889215 ], [ -122.284184, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889215 ], [ -122.286415, 37.889215 ], [ -122.286415, 37.889486 ], [ -122.286072, 37.889486 ], [ -122.286072, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889486 ], [ -122.286072, 37.889215 ], [ -122.286415, 37.889215 ], [ -122.286415, 37.889486 ], [ -122.286072, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.888673 ], [ -122.285385, 37.887454 ], [ -122.286415, 37.887725 ], [ -122.286072, 37.888673 ], [ -122.286243, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887454 ], [ -122.286415, 37.887725 ], [ -122.286072, 37.888673 ], [ -122.286243, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.888944 ], [ -122.284870, 37.888944 ], [ -122.284870, 37.888538 ], [ -122.285385, 37.888538 ], [ -122.285385, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.285385, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285042, 37.889757 ], [ -122.285042, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889757 ], [ -122.285042, 37.889486 ], [ -122.285385, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285042, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.889215 ], [ -122.284355, 37.887183 ], [ -122.285385, 37.887454 ], [ -122.285042, 37.888538 ], [ -122.285213, 37.889486 ], [ -122.283840, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.283840, 37.889215 ], [ -122.284355, 37.887183 ], [ -122.285385, 37.887454 ], [ -122.285042, 37.888538 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.889080 ], [ -122.282810, 37.888673 ], [ -122.283325, 37.886912 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.282810, 37.888673 ], [ -122.283325, 37.886912 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889215 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.887725 ], [ -122.288475, 37.887725 ], [ -122.288475, 37.887183 ], [ -122.288990, 37.887183 ], [ -122.288990, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885964 ], [ -122.288303, 37.888673 ], [ -122.287102, 37.889080 ], [ -122.288818, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885964 ], [ -122.288303, 37.888673 ], [ -122.287102, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.287960, 37.884609 ], [ -122.288818, 37.884744 ], [ -122.287617, 37.887996 ], [ -122.286758, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.887996 ], [ -122.286758, 37.887725 ], [ -122.287960, 37.884609 ], [ -122.288818, 37.884744 ], [ -122.287617, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.886641 ], [ -122.286758, 37.885693 ], [ -122.287617, 37.885828 ], [ -122.287273, 37.886777 ], [ -122.286415, 37.886641 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.886777 ], [ -122.286415, 37.886641 ], [ -122.286758, 37.885693 ], [ -122.287617, 37.885828 ], [ -122.287273, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887454 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287617, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286415, 37.886641 ], [ -122.287273, 37.886777 ], [ -122.286758, 37.887725 ], [ -122.285385, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.285385, 37.887454 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287617, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286415, 37.886641 ], [ -122.287273, 37.886777 ], [ -122.286758, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884609 ], [ -122.288647, 37.883119 ], [ -122.289333, 37.883389 ], [ -122.288818, 37.884744 ], [ -122.287960, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.287960, 37.884609 ], [ -122.288647, 37.883119 ], [ -122.289333, 37.883389 ], [ -122.288818, 37.884744 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.885015 ], [ -122.286243, 37.885015 ], [ -122.286243, 37.884609 ], [ -122.286587, 37.884609 ], [ -122.286587, 37.885015 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285900, 37.886641 ], [ -122.285385, 37.886641 ], [ -122.285385, 37.886235 ], [ -122.285900, 37.886235 ], [ -122.285900, 37.886641 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.285213, 37.885422 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887454 ], [ -122.284355, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887454 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.885422 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.885422 ], [ -122.285728, 37.883660 ], [ -122.287102, 37.882983 ], [ -122.286587, 37.884067 ], [ -122.286072, 37.885557 ], [ -122.285213, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285213, 37.885422 ], [ -122.285728, 37.883660 ], [ -122.287102, 37.882983 ], [ -122.286587, 37.884067 ], [ -122.286072, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.284870, 37.884202 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284870, 37.884202 ], [ -122.284527, 37.884202 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.283669, 37.887048 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.886099 ], [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ], [ -122.282810, 37.886099 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282810, 37.886099 ], [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.284012, 37.884609 ], [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284012, 37.884609 ], [ -122.283497, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.884473 ], [ -122.281952, 37.884473 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882577 ], [ -122.285728, 37.883660 ], [ -122.283154, 37.884880 ], [ -122.282124, 37.885015 ], [ -122.282295, 37.884473 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.885015 ], [ -122.282295, 37.884473 ], [ -122.281952, 37.884473 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882577 ], [ -122.285728, 37.883660 ], [ -122.283154, 37.884880 ], [ -122.282124, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891247 ], [ -122.281952, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891247 ], [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891247 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889080 ], [ -122.283840, 37.889080 ], [ -122.283840, 37.889351 ], [ -122.283497, 37.889351 ], [ -122.283497, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889351 ], [ -122.283497, 37.889080 ], [ -122.283840, 37.889080 ], [ -122.283840, 37.889351 ], [ -122.283497, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.888944 ], [ -122.282982, 37.888944 ], [ -122.282982, 37.889215 ], [ -122.282639, 37.889215 ], [ -122.282639, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889215 ], [ -122.282639, 37.888944 ], [ -122.282982, 37.888944 ], [ -122.282982, 37.889215 ], [ -122.282639, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281780, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.886912 ], [ -122.282810, 37.888673 ], [ -122.282810, 37.889080 ], [ -122.281952, 37.889351 ], [ -122.281780, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889351 ], [ -122.281780, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.886912 ], [ -122.282810, 37.888673 ], [ -122.282810, 37.889080 ], [ -122.281952, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886777 ], [ -122.282639, 37.886370 ], [ -122.282810, 37.886099 ], [ -122.283840, 37.886235 ], [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ], [ -122.282639, 37.886370 ], [ -122.282810, 37.886099 ], [ -122.283840, 37.886235 ], [ -122.283669, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.885015 ], [ -122.283497, 37.884744 ], [ -122.282467, 37.885151 ], [ -122.282124, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.885151 ], [ -122.282124, 37.885015 ], [ -122.283497, 37.884744 ], [ -122.282467, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287273, 37.882712 ], [ -122.288647, 37.883119 ], [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287273, 37.882712 ], [ -122.288647, 37.883119 ], [ -122.288132, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883931 ], [ -122.286930, 37.883931 ], [ -122.286930, 37.884202 ], [ -122.286587, 37.884202 ], [ -122.286587, 37.883931 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.884202 ], [ -122.286587, 37.883931 ], [ -122.286930, 37.883931 ], [ -122.286930, 37.884202 ], [ -122.286587, 37.884202 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883525 ], [ -122.286243, 37.883525 ], [ -122.286243, 37.883119 ], [ -122.286587, 37.883119 ], [ -122.286587, 37.883525 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882577 ], [ -122.287273, 37.882577 ], [ -122.287102, 37.882983 ], [ -122.285728, 37.883660 ], [ -122.286072, 37.882577 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.286072, 37.882577 ], [ -122.287273, 37.882577 ], [ -122.287102, 37.882983 ], [ -122.285728, 37.883660 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 164, "y": 395 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312593, 37.897072 ], [ -122.311649, 37.896869 ], [ -122.311563, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.895582 ], [ -122.310705, 37.895514 ], [ -122.310619, 37.895108 ], [ -122.310190, 37.894769 ], [ -122.309504, 37.893482 ], [ -122.309160, 37.892263 ], [ -122.309074, 37.891315 ], [ -122.309332, 37.889757 ], [ -122.309504, 37.889147 ], [ -122.309847, 37.888809 ], [ -122.310104, 37.888944 ], [ -122.310190, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.311049, 37.890231 ], [ -122.311134, 37.890299 ], [ -122.311220, 37.889960 ], [ -122.311392, 37.889960 ], [ -122.311735, 37.890434 ], [ -122.312765, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314310, 37.891992 ], [ -122.314739, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316027, 37.891180 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.889960 ], [ -122.322721, 37.890028 ], [ -122.323151, 37.891044 ], [ -122.324009, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.890841 ], [ -122.327356, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327528, 37.891586 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.889689 ], [ -122.334738, 37.889622 ], [ -122.333450, 37.892805 ], [ -122.312508, 37.897479 ], [ -122.312593, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897479 ], [ -122.312593, 37.897072 ], [ -122.311649, 37.896869 ], [ -122.311563, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.895582 ], [ -122.310705, 37.895514 ], [ -122.310619, 37.895108 ], [ -122.310190, 37.894769 ], [ -122.309504, 37.893482 ], [ -122.309160, 37.892263 ], [ -122.309074, 37.891315 ], [ -122.309332, 37.889757 ], [ -122.309504, 37.889147 ], [ -122.309847, 37.888809 ], [ -122.310104, 37.888944 ], [ -122.310190, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.311049, 37.890231 ], [ -122.311134, 37.890299 ], [ -122.311220, 37.889960 ], [ -122.311392, 37.889960 ], [ -122.311735, 37.890434 ], [ -122.312765, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314310, 37.891992 ], [ -122.314739, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316027, 37.891180 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.889960 ], [ -122.322721, 37.890028 ], [ -122.323151, 37.891044 ], [ -122.324009, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.890841 ], [ -122.327356, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327528, 37.891586 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.889689 ], [ -122.334738, 37.889622 ], [ -122.333450, 37.892805 ], [ -122.312508, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.308903, 37.890502 ], [ -122.308989, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.309847, 37.888131 ], [ -122.311306, 37.889486 ], [ -122.315598, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.327614, 37.889689 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891586 ], [ -122.327442, 37.891518 ], [ -122.327356, 37.890841 ], [ -122.325811, 37.890841 ], [ -122.325640, 37.890976 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325897, 37.892331 ], [ -122.325897, 37.892534 ], [ -122.324009, 37.892399 ], [ -122.323151, 37.891044 ], [ -122.322721, 37.890028 ], [ -122.319889, 37.889960 ], [ -122.317657, 37.890976 ], [ -122.316027, 37.891180 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314825, 37.892466 ], [ -122.314739, 37.892466 ], [ -122.314310, 37.891992 ], [ -122.313709, 37.891925 ], [ -122.312765, 37.891247 ], [ -122.311735, 37.890434 ], [ -122.311392, 37.889960 ], [ -122.311220, 37.889960 ], [ -122.311134, 37.890299 ], [ -122.311049, 37.890231 ], [ -122.310877, 37.889757 ], [ -122.310190, 37.889147 ], [ -122.310104, 37.888944 ], [ -122.309847, 37.888809 ], [ -122.309504, 37.889147 ], [ -122.309332, 37.889757 ], [ -122.309074, 37.891315 ], [ -122.309074, 37.891518 ], [ -122.308903, 37.890502 ] ] ], [ [ [ -122.310190, 37.894769 ], [ -122.310619, 37.895108 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895582 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.896056 ], [ -122.311563, 37.896192 ], [ -122.311563, 37.896734 ], [ -122.310705, 37.895785 ], [ -122.310019, 37.894769 ], [ -122.309246, 37.893076 ], [ -122.309160, 37.892399 ], [ -122.309504, 37.893482 ], [ -122.310190, 37.894769 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309160, 37.892263 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.309847, 37.888131 ], [ -122.311306, 37.889486 ], [ -122.315598, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.327614, 37.889689 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891586 ], [ -122.327442, 37.891518 ], [ -122.327356, 37.890841 ], [ -122.325811, 37.890841 ], [ -122.325640, 37.890976 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325897, 37.892331 ], [ -122.325897, 37.892534 ], [ -122.324009, 37.892399 ], [ -122.323151, 37.891044 ], [ -122.322721, 37.890028 ], [ -122.319889, 37.889960 ], [ -122.317657, 37.890976 ], [ -122.316027, 37.891180 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314825, 37.892466 ], [ -122.314739, 37.892466 ], [ -122.314310, 37.891992 ], [ -122.313709, 37.891925 ], [ -122.312765, 37.891247 ], [ -122.311735, 37.890434 ], [ -122.311392, 37.889960 ], [ -122.311220, 37.889960 ], [ -122.311134, 37.890299 ], [ -122.311049, 37.890231 ], [ -122.310877, 37.889757 ], [ -122.310190, 37.889147 ], [ -122.310104, 37.888944 ], [ -122.309847, 37.888809 ], [ -122.309504, 37.889147 ], [ -122.309332, 37.889757 ], [ -122.309074, 37.891315 ], [ -122.309160, 37.892263 ] ] ], [ [ [ -122.309160, 37.892263 ], [ -122.309504, 37.893482 ], [ -122.310190, 37.894769 ], [ -122.310619, 37.895108 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895582 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.896056 ], [ -122.311563, 37.896192 ], [ -122.311563, 37.896734 ], [ -122.310705, 37.895785 ], [ -122.310019, 37.894769 ], [ -122.309246, 37.893076 ], [ -122.309160, 37.892263 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311649, 37.896869 ], [ -122.312508, 37.896937 ], [ -122.312593, 37.897140 ], [ -122.312508, 37.897479 ], [ -122.312078, 37.897479 ], [ -122.311649, 37.896869 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311649, 37.896869 ], [ -122.312508, 37.896937 ], [ -122.312593, 37.897140 ], [ -122.312508, 37.897479 ], [ -122.312078, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.892805 ], [ -122.307873, 37.892331 ], [ -122.308044, 37.892196 ], [ -122.308302, 37.892196 ], [ -122.308388, 37.894431 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ], [ -122.309332, 37.897817 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.892805 ], [ -122.307873, 37.892331 ], [ -122.308044, 37.892196 ], [ -122.308302, 37.892196 ], [ -122.308388, 37.894431 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309933, 37.895718 ], [ -122.309332, 37.894566 ], [ -122.308559, 37.892399 ], [ -122.308130, 37.890638 ], [ -122.308388, 37.890096 ], [ -122.309418, 37.893889 ], [ -122.310534, 37.895853 ], [ -122.311907, 37.897546 ], [ -122.311478, 37.897682 ], [ -122.309933, 37.895718 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897682 ], [ -122.309933, 37.895718 ], [ -122.309332, 37.894566 ], [ -122.308559, 37.892399 ], [ -122.308130, 37.890638 ], [ -122.308388, 37.890096 ], [ -122.309418, 37.893889 ], [ -122.310534, 37.895853 ], [ -122.311907, 37.897546 ], [ -122.311478, 37.897682 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897343 ], [ -122.308388, 37.894431 ], [ -122.308302, 37.892331 ], [ -122.307959, 37.890976 ], [ -122.308130, 37.890638 ], [ -122.308559, 37.892399 ], [ -122.309332, 37.894566 ], [ -122.309933, 37.895718 ], [ -122.311478, 37.897682 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894431 ], [ -122.308302, 37.892331 ], [ -122.307959, 37.890976 ], [ -122.308130, 37.890638 ], [ -122.308559, 37.892399 ], [ -122.309332, 37.894566 ], [ -122.309933, 37.895718 ], [ -122.311478, 37.897682 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310534, 37.895853 ], [ -122.309761, 37.894498 ], [ -122.309160, 37.893144 ], [ -122.308388, 37.890096 ], [ -122.308989, 37.888809 ], [ -122.308903, 37.890502 ], [ -122.309246, 37.893076 ], [ -122.310019, 37.894769 ], [ -122.311563, 37.896869 ], [ -122.312078, 37.897479 ], [ -122.311907, 37.897546 ], [ -122.310534, 37.895853 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311907, 37.897546 ], [ -122.310534, 37.895853 ], [ -122.309761, 37.894498 ], [ -122.309160, 37.893144 ], [ -122.308388, 37.890096 ], [ -122.308989, 37.888809 ], [ -122.308903, 37.890502 ], [ -122.309246, 37.893076 ], [ -122.310019, 37.894769 ], [ -122.311563, 37.896869 ], [ -122.312078, 37.897479 ], [ -122.311907, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.894295 ], [ -122.307100, 37.892602 ], [ -122.307100, 37.890909 ], [ -122.307529, 37.889554 ], [ -122.307959, 37.890976 ], [ -122.307615, 37.892263 ], [ -122.307615, 37.893347 ], [ -122.308302, 37.895244 ], [ -122.309418, 37.897885 ], [ -122.307701, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.307701, 37.894295 ], [ -122.307100, 37.892602 ], [ -122.307100, 37.890909 ], [ -122.307529, 37.889554 ], [ -122.307959, 37.890976 ], [ -122.307615, 37.892263 ], [ -122.307615, 37.893347 ], [ -122.308302, 37.895244 ], [ -122.309418, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.892670 ], [ -122.306671, 37.892263 ], [ -122.306757, 37.891721 ], [ -122.306414, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307444, 37.889757 ], [ -122.307100, 37.891247 ], [ -122.307100, 37.892602 ], [ -122.307701, 37.894295 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.898021 ], [ -122.306671, 37.892670 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.898021 ], [ -122.306671, 37.892670 ], [ -122.306671, 37.892263 ], [ -122.306757, 37.891721 ], [ -122.306414, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307444, 37.889757 ], [ -122.307100, 37.891247 ], [ -122.307100, 37.892602 ], [ -122.307701, 37.894295 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.898021 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307615, 37.893144 ], [ -122.307701, 37.891721 ], [ -122.307959, 37.890976 ], [ -122.308302, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.307873, 37.892331 ], [ -122.307873, 37.893076 ], [ -122.308302, 37.895244 ], [ -122.307615, 37.893144 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308302, 37.895244 ], [ -122.307615, 37.893144 ], [ -122.307701, 37.891721 ], [ -122.307959, 37.890976 ], [ -122.308302, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.307873, 37.892331 ], [ -122.307873, 37.893076 ], [ -122.308302, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896734 ], [ -122.301178, 37.896734 ], [ -122.301693, 37.898562 ], [ -122.301006, 37.896734 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896734 ], [ -122.301178, 37.896734 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898359 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896734 ], [ -122.301607, 37.898562 ], [ -122.300663, 37.898359 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301607, 37.898562 ], [ -122.300663, 37.898359 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896734 ], [ -122.301607, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300663, 37.898359 ], [ -122.299719, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898359 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300663, 37.898359 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896056 ], [ -122.302637, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303152, 37.894566 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.890570 ], [ -122.304010, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.306757, 37.891721 ], [ -122.306671, 37.892670 ], [ -122.308989, 37.898021 ], [ -122.306242, 37.898291 ], [ -122.305384, 37.898427 ], [ -122.301693, 37.898562 ], [ -122.300920, 37.896056 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.300920, 37.896056 ], [ -122.302637, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303152, 37.894566 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.890570 ], [ -122.304010, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.306757, 37.891721 ], [ -122.306671, 37.892670 ], [ -122.308989, 37.898021 ], [ -122.306242, 37.898291 ], [ -122.305384, 37.898427 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302294, 37.891789 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.893550 ], [ -122.303152, 37.894566 ], [ -122.302294, 37.891789 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303152, 37.894566 ], [ -122.302294, 37.891789 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.893550 ], [ -122.303152, 37.894566 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894024 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895718 ], [ -122.301779, 37.895853 ], [ -122.301178, 37.894024 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895853 ], [ -122.301178, 37.894024 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895718 ], [ -122.301779, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896056 ], [ -122.300920, 37.896056 ], [ -122.301178, 37.896734 ], [ -122.301006, 37.896734 ], [ -122.300835, 37.896056 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896734 ], [ -122.300835, 37.896056 ], [ -122.300920, 37.896056 ], [ -122.301178, 37.896734 ], [ -122.301006, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895108 ], [ -122.300663, 37.895108 ], [ -122.300920, 37.896056 ], [ -122.300835, 37.896056 ], [ -122.300491, 37.895108 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896056 ], [ -122.300491, 37.895108 ], [ -122.300663, 37.895108 ], [ -122.300920, 37.896056 ], [ -122.300835, 37.896056 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.300491, 37.895108 ], [ -122.300835, 37.896056 ], [ -122.301006, 37.896734 ], [ -122.300148, 37.896869 ], [ -122.299633, 37.895311 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895311 ], [ -122.300491, 37.895108 ], [ -122.300835, 37.896056 ], [ -122.301006, 37.896734 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.894160 ], [ -122.301178, 37.894024 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896056 ], [ -122.300406, 37.894160 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896056 ], [ -122.300406, 37.894160 ], [ -122.301178, 37.894024 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896056 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891992 ], [ -122.302294, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ], [ -122.301435, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301435, 37.891992 ], [ -122.302294, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.301435, 37.891992 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894024 ], [ -122.300577, 37.892128 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894024 ], [ -122.300577, 37.892128 ], [ -122.301435, 37.891992 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894024 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.300148, 37.893482 ], [ -122.300577, 37.894905 ], [ -122.300663, 37.895108 ], [ -122.300491, 37.895108 ], [ -122.299976, 37.893482 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895108 ], [ -122.299976, 37.893482 ], [ -122.300148, 37.893482 ], [ -122.300577, 37.894905 ], [ -122.300663, 37.895108 ], [ -122.300491, 37.895108 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893482 ], [ -122.299719, 37.892331 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.894024 ], [ -122.300406, 37.894160 ], [ -122.300148, 37.893482 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.894160 ], [ -122.300148, 37.893482 ], [ -122.299719, 37.892331 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.894024 ], [ -122.300406, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892331 ], [ -122.299719, 37.892331 ], [ -122.300148, 37.893482 ], [ -122.299976, 37.893482 ], [ -122.299633, 37.892331 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.299633, 37.892331 ], [ -122.299719, 37.892331 ], [ -122.300148, 37.893482 ], [ -122.299976, 37.893482 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327442, 37.889147 ], [ -122.327614, 37.888741 ], [ -122.327099, 37.888741 ], [ -122.325468, 37.888131 ], [ -122.324610, 37.887928 ], [ -122.322979, 37.888335 ], [ -122.322893, 37.889080 ], [ -122.322292, 37.889418 ], [ -122.320919, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.317314, 37.889283 ], [ -122.316113, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316542, 37.886167 ], [ -122.316456, 37.885964 ], [ -122.316027, 37.885964 ], [ -122.316027, 37.885693 ], [ -122.316885, 37.885693 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.316113, 37.885489 ], [ -122.315769, 37.885286 ], [ -122.315512, 37.884744 ], [ -122.315683, 37.884338 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.883999 ], [ -122.314396, 37.883389 ], [ -122.313967, 37.882644 ], [ -122.313108, 37.882238 ], [ -122.312508, 37.881425 ], [ -122.327700, 37.877360 ], [ -122.334738, 37.889622 ], [ -122.327614, 37.889689 ], [ -122.327442, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889689 ], [ -122.327442, 37.889147 ], [ -122.327614, 37.888741 ], [ -122.327099, 37.888741 ], [ -122.325468, 37.888131 ], [ -122.324610, 37.887928 ], [ -122.322979, 37.888335 ], [ -122.322893, 37.889080 ], [ -122.322292, 37.889418 ], [ -122.320919, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.317314, 37.889283 ], [ -122.316113, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316542, 37.886167 ], [ -122.316456, 37.885964 ], [ -122.316027, 37.885964 ], [ -122.316027, 37.885693 ], [ -122.316885, 37.885693 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.316113, 37.885489 ], [ -122.315769, 37.885286 ], [ -122.315512, 37.884744 ], [ -122.315683, 37.884338 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.883999 ], [ -122.314396, 37.883389 ], [ -122.313967, 37.882644 ], [ -122.313108, 37.882238 ], [ -122.312508, 37.881425 ], [ -122.327700, 37.877360 ], [ -122.334738, 37.889622 ], [ -122.327614, 37.889689 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309332, 37.887318 ], [ -122.309589, 37.886980 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881425 ], [ -122.313108, 37.882238 ], [ -122.313967, 37.882644 ], [ -122.314396, 37.883389 ], [ -122.315083, 37.883999 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884338 ], [ -122.315512, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885693 ], [ -122.316027, 37.885693 ], [ -122.316027, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316542, 37.886167 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316113, 37.887928 ], [ -122.317314, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.320919, 37.889283 ], [ -122.322292, 37.889418 ], [ -122.322893, 37.889080 ], [ -122.322979, 37.888335 ], [ -122.324610, 37.887928 ], [ -122.325468, 37.888131 ], [ -122.327099, 37.888741 ], [ -122.327614, 37.888741 ], [ -122.327442, 37.889147 ], [ -122.327614, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.315598, 37.889689 ], [ -122.311306, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.315598, 37.889689 ], [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309332, 37.887318 ], [ -122.309589, 37.886980 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881425 ], [ -122.313108, 37.882238 ], [ -122.313967, 37.882644 ], [ -122.314396, 37.883389 ], [ -122.315083, 37.883999 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884338 ], [ -122.315512, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885693 ], [ -122.316027, 37.885693 ], [ -122.316027, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316542, 37.886167 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316113, 37.887928 ], [ -122.317314, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.320919, 37.889283 ], [ -122.322292, 37.889418 ], [ -122.322893, 37.889080 ], [ -122.322979, 37.888335 ], [ -122.324610, 37.887928 ], [ -122.325468, 37.888131 ], [ -122.327099, 37.888741 ], [ -122.327614, 37.888741 ], [ -122.327442, 37.889147 ], [ -122.327614, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.315598, 37.889689 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.887928 ], [ -122.309418, 37.887725 ], [ -122.309847, 37.888131 ], [ -122.309332, 37.887928 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309847, 37.888131 ], [ -122.309332, 37.887928 ], [ -122.309418, 37.887725 ], [ -122.309847, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.309332, 37.887318 ], [ -122.308989, 37.888809 ], [ -122.309074, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.888809 ], [ -122.309074, 37.887454 ], [ -122.309332, 37.887318 ], [ -122.308989, 37.888809 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308645, 37.887386 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888809 ], [ -122.308388, 37.890096 ], [ -122.308388, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890096 ], [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308645, 37.887386 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888809 ], [ -122.308388, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890299 ], [ -122.306671, 37.890231 ], [ -122.306328, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890841 ], [ -122.306242, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890841 ], [ -122.306242, 37.890299 ], [ -122.306671, 37.890231 ], [ -122.306328, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.889960 ], [ -122.306671, 37.890231 ], [ -122.306242, 37.890299 ], [ -122.306156, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890299 ], [ -122.306156, 37.889960 ], [ -122.306671, 37.890231 ], [ -122.306242, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889554 ], [ -122.308559, 37.887657 ], [ -122.308388, 37.890096 ], [ -122.307959, 37.890976 ], [ -122.307529, 37.889554 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307959, 37.890976 ], [ -122.307529, 37.889554 ], [ -122.308559, 37.887657 ], [ -122.308388, 37.890096 ], [ -122.307959, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307272, 37.887251 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887386 ], [ -122.308645, 37.887454 ], [ -122.307701, 37.889215 ], [ -122.307272, 37.887251 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307272, 37.887251 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887386 ], [ -122.308645, 37.887454 ], [ -122.307701, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305899, 37.889012 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306070, 37.889622 ], [ -122.305899, 37.889012 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306070, 37.889622 ], [ -122.305899, 37.889012 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306070, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305899, 37.889012 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888944 ], [ -122.305899, 37.889012 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.307358, 37.888673 ], [ -122.305899, 37.889012 ], [ -122.305813, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305899, 37.889012 ], [ -122.305813, 37.888944 ], [ -122.307358, 37.888673 ], [ -122.305899, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.887522 ], [ -122.305470, 37.887522 ], [ -122.307272, 37.887251 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889554 ], [ -122.307014, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889554 ], [ -122.307014, 37.887522 ], [ -122.305470, 37.887522 ], [ -122.307272, 37.887251 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889554 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887386 ], [ -122.308731, 37.887251 ], [ -122.309074, 37.887454 ], [ -122.308645, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308645, 37.887386 ], [ -122.308731, 37.887251 ], [ -122.309074, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887251 ], [ -122.309074, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309332, 37.887318 ], [ -122.309074, 37.887454 ], [ -122.308731, 37.887251 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308731, 37.887251 ], [ -122.309074, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309332, 37.887318 ], [ -122.309074, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308645, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309589, 37.887115 ], [ -122.309332, 37.887318 ], [ -122.309332, 37.886370 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.887318 ], [ -122.309332, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308645, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309589, 37.887115 ], [ -122.309332, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307272, 37.887115 ], [ -122.307358, 37.886777 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882238 ], [ -122.308645, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887251 ], [ -122.307272, 37.887115 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887251 ], [ -122.307272, 37.887115 ], [ -122.307358, 37.886777 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882238 ], [ -122.308645, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887251 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308559, 37.887318 ], [ -122.307272, 37.887251 ], [ -122.307272, 37.887115 ], [ -122.308731, 37.887251 ], [ -122.308645, 37.887386 ], [ -122.308559, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887386 ], [ -122.308559, 37.887318 ], [ -122.307272, 37.887251 ], [ -122.307272, 37.887115 ], [ -122.308731, 37.887251 ], [ -122.308645, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305470, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ], [ -122.305470, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.305470, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307100, 37.886912 ], [ -122.306242, 37.883322 ], [ -122.305813, 37.882102 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.886777 ], [ -122.307272, 37.887115 ], [ -122.307100, 37.886912 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307272, 37.887115 ], [ -122.307100, 37.886912 ], [ -122.306242, 37.883322 ], [ -122.305813, 37.882102 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.886777 ], [ -122.307272, 37.887115 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.303324, 37.889486 ], [ -122.303581, 37.890367 ], [ -122.303152, 37.891654 ], [ -122.302465, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303152, 37.891654 ], [ -122.302465, 37.889622 ], [ -122.303324, 37.889486 ], [ -122.303581, 37.890367 ], [ -122.303152, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889486 ], [ -122.305899, 37.889012 ], [ -122.306070, 37.889622 ], [ -122.304182, 37.890028 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890367 ], [ -122.303324, 37.889486 ], [ -122.305899, 37.889012 ], [ -122.306070, 37.889622 ], [ -122.304182, 37.890028 ], [ -122.303581, 37.890367 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.889351 ], [ -122.304354, 37.889351 ], [ -122.304354, 37.889147 ], [ -122.304525, 37.889147 ], [ -122.304525, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.887522 ], [ -122.305384, 37.887522 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ], [ -122.304525, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304525, 37.887522 ], [ -122.305384, 37.887522 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887589 ], [ -122.304525, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304182, 37.889283 ], [ -122.303581, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304182, 37.889283 ], [ -122.303581, 37.887589 ], [ -122.304525, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304182, 37.889283 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889418 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889486 ], [ -122.303324, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889486 ], [ -122.303324, 37.889418 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302809, 37.889689 ], [ -122.302551, 37.889689 ], [ -122.302551, 37.889486 ], [ -122.302809, 37.889486 ], [ -122.302809, 37.889689 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889418 ], [ -122.302723, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889418 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889825 ], [ -122.302465, 37.889622 ], [ -122.303152, 37.891654 ], [ -122.302294, 37.891789 ], [ -122.301693, 37.889825 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302294, 37.891789 ], [ -122.301693, 37.889825 ], [ -122.302465, 37.889622 ], [ -122.303152, 37.891654 ], [ -122.302294, 37.891789 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.889960 ], [ -122.301693, 37.889825 ], [ -122.302294, 37.891789 ], [ -122.301435, 37.891992 ], [ -122.300835, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891992 ], [ -122.300835, 37.889960 ], [ -122.301693, 37.889825 ], [ -122.302294, 37.891789 ], [ -122.301435, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.891857 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892331 ], [ -122.299547, 37.891857 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892331 ], [ -122.299547, 37.891857 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.300835, 37.889960 ], [ -122.301435, 37.891992 ], [ -122.300577, 37.892128 ], [ -122.299976, 37.890163 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.299976, 37.890163 ], [ -122.300835, 37.889960 ], [ -122.301435, 37.891992 ], [ -122.300577, 37.892128 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887657 ], [ -122.302723, 37.887589 ], [ -122.303324, 37.889418 ], [ -122.302465, 37.889622 ], [ -122.301865, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.301865, 37.887657 ], [ -122.302723, 37.887589 ], [ -122.303324, 37.889418 ], [ -122.302465, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300749, 37.887793 ], [ -122.301865, 37.887657 ], [ -122.302465, 37.889622 ], [ -122.301693, 37.889825 ], [ -122.300749, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889825 ], [ -122.300749, 37.887793 ], [ -122.301865, 37.887657 ], [ -122.302465, 37.889622 ], [ -122.301693, 37.889825 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.889960 ], [ -122.300148, 37.890096 ], [ -122.299976, 37.890096 ], [ -122.300835, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.890096 ], [ -122.300320, 37.890096 ], [ -122.300320, 37.889893 ], [ -122.300577, 37.889893 ], [ -122.300577, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300062, 37.887725 ], [ -122.300749, 37.887793 ], [ -122.301693, 37.889825 ], [ -122.300835, 37.889960 ], [ -122.300062, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300749, 37.887793 ], [ -122.301693, 37.889825 ], [ -122.300835, 37.889960 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299204, 37.887793 ], [ -122.300062, 37.887725 ], [ -122.300835, 37.889960 ], [ -122.299976, 37.890096 ], [ -122.299204, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890096 ], [ -122.299204, 37.887793 ], [ -122.300062, 37.887725 ], [ -122.300835, 37.889960 ], [ -122.299976, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302122, 37.887522 ], [ -122.305899, 37.887318 ], [ -122.307272, 37.887115 ], [ -122.307272, 37.887251 ], [ -122.305470, 37.887522 ], [ -122.302208, 37.887657 ], [ -122.302122, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887657 ], [ -122.302122, 37.887522 ], [ -122.305899, 37.887318 ], [ -122.307272, 37.887115 ], [ -122.307272, 37.887251 ], [ -122.305470, 37.887522 ], [ -122.302208, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887657 ], [ -122.300577, 37.886370 ], [ -122.302380, 37.886031 ], [ -122.304611, 37.885896 ], [ -122.304525, 37.885354 ], [ -122.306843, 37.885625 ], [ -122.307186, 37.887115 ], [ -122.305899, 37.887318 ], [ -122.302122, 37.887522 ], [ -122.302122, 37.887657 ], [ -122.300749, 37.887793 ], [ -122.301006, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300749, 37.887793 ], [ -122.301006, 37.887657 ], [ -122.300577, 37.886370 ], [ -122.302380, 37.886031 ], [ -122.304611, 37.885896 ], [ -122.304525, 37.885354 ], [ -122.306843, 37.885625 ], [ -122.307186, 37.887115 ], [ -122.305899, 37.887318 ], [ -122.302122, 37.887522 ], [ -122.302122, 37.887657 ], [ -122.300749, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884744 ], [ -122.303667, 37.883660 ], [ -122.304010, 37.883593 ], [ -122.304611, 37.885896 ], [ -122.304268, 37.885896 ], [ -122.303925, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885896 ], [ -122.303925, 37.884744 ], [ -122.303667, 37.883660 ], [ -122.304010, 37.883593 ], [ -122.304611, 37.885896 ], [ -122.304268, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.885354 ], [ -122.304010, 37.883593 ], [ -122.303495, 37.883728 ], [ -122.303495, 37.882915 ], [ -122.302637, 37.883119 ], [ -122.302380, 37.882509 ], [ -122.303324, 37.882306 ], [ -122.305298, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306843, 37.885625 ], [ -122.304525, 37.885354 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306843, 37.885625 ], [ -122.304525, 37.885354 ], [ -122.304010, 37.883593 ], [ -122.303495, 37.883728 ], [ -122.303495, 37.882915 ], [ -122.302637, 37.883119 ], [ -122.302380, 37.882509 ], [ -122.303324, 37.882306 ], [ -122.305298, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306843, 37.885625 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.883728 ], [ -122.303667, 37.883660 ], [ -122.304268, 37.885896 ], [ -122.304010, 37.885896 ], [ -122.303324, 37.883728 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304010, 37.885896 ], [ -122.303324, 37.883728 ], [ -122.303667, 37.883660 ], [ -122.304268, 37.885896 ], [ -122.304010, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.304010, 37.885896 ], [ -122.303495, 37.885964 ], [ -122.302980, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303495, 37.885964 ], [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.304010, 37.885896 ], [ -122.303495, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.884067 ], [ -122.299805, 37.884135 ], [ -122.300062, 37.883389 ], [ -122.300234, 37.883254 ], [ -122.301006, 37.883457 ], [ -122.302637, 37.883119 ], [ -122.302980, 37.883796 ], [ -122.303495, 37.885964 ], [ -122.300577, 37.886370 ], [ -122.299976, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.886370 ], [ -122.299976, 37.884067 ], [ -122.299805, 37.884135 ], [ -122.300062, 37.883389 ], [ -122.300234, 37.883254 ], [ -122.301006, 37.883457 ], [ -122.302637, 37.883119 ], [ -122.302980, 37.883796 ], [ -122.303495, 37.885964 ], [ -122.300577, 37.886370 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302637, 37.883119 ], [ -122.303495, 37.882915 ], [ -122.303495, 37.883728 ], [ -122.302980, 37.883796 ], [ -122.302637, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.302637, 37.883119 ], [ -122.303495, 37.882915 ], [ -122.303495, 37.883728 ], [ -122.302980, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.883254 ], [ -122.300320, 37.883119 ], [ -122.300234, 37.882915 ], [ -122.302380, 37.882509 ], [ -122.302637, 37.883119 ], [ -122.301006, 37.883457 ], [ -122.300406, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883457 ], [ -122.300406, 37.883254 ], [ -122.300320, 37.883119 ], [ -122.300234, 37.882915 ], [ -122.302380, 37.882509 ], [ -122.302637, 37.883119 ], [ -122.301006, 37.883457 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298517, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ], [ -122.298517, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298517, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297659, 37.897411 ], [ -122.298517, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298088, 37.898766 ], [ -122.297659, 37.897411 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898766 ], [ -122.297659, 37.897411 ], [ -122.298517, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298088, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.297659, 37.897411 ], [ -122.298088, 37.898766 ], [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ], [ -122.297659, 37.897411 ], [ -122.298088, 37.898766 ], [ -122.297230, 37.898901 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296286, 37.898969 ], [ -122.295771, 37.897817 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.898969 ], [ -122.295771, 37.897817 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296286, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895989 ], [ -122.297144, 37.895785 ], [ -122.297659, 37.897411 ], [ -122.296801, 37.897546 ], [ -122.296286, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895989 ], [ -122.297144, 37.895785 ], [ -122.297659, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896124 ], [ -122.296286, 37.895989 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ], [ -122.295427, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295942, 37.897750 ], [ -122.295427, 37.896124 ], [ -122.296286, 37.895989 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.294655, 37.897750 ], [ -122.295771, 37.897817 ], [ -122.296286, 37.898969 ], [ -122.294569, 37.898766 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.898969 ], [ -122.294569, 37.898766 ], [ -122.294655, 37.897750 ], [ -122.295771, 37.897817 ], [ -122.296286, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.895650 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298517, 37.897208 ], [ -122.298002, 37.895650 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298517, 37.897208 ], [ -122.298002, 37.895650 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298517, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.895785 ], [ -122.298002, 37.895650 ], [ -122.298517, 37.897208 ], [ -122.297659, 37.897411 ], [ -122.297144, 37.895785 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297659, 37.897411 ], [ -122.297144, 37.895785 ], [ -122.298002, 37.895650 ], [ -122.298517, 37.897208 ], [ -122.297659, 37.897411 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298002, 37.895650 ], [ -122.297487, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.895650 ], [ -122.297487, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298002, 37.895650 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296629, 37.894160 ], [ -122.297487, 37.893957 ], [ -122.298002, 37.895650 ], [ -122.297144, 37.895785 ], [ -122.296629, 37.894160 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.895785 ], [ -122.296629, 37.894160 ], [ -122.297487, 37.893957 ], [ -122.298002, 37.895650 ], [ -122.297144, 37.895785 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895108 ], [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895108 ], [ -122.299633, 37.895311 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.891992 ], [ -122.299461, 37.891857 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299118, 37.893686 ], [ -122.298603, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.298603, 37.891992 ], [ -122.299461, 37.891857 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299118, 37.893686 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298603, 37.891992 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298603, 37.891992 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.892399 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297487, 37.893957 ], [ -122.296972, 37.892399 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.893957 ], [ -122.296972, 37.892399 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297487, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.296629, 37.894160 ], [ -122.297144, 37.895785 ], [ -122.296286, 37.895989 ], [ -122.295771, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895989 ], [ -122.295771, 37.894295 ], [ -122.296629, 37.894160 ], [ -122.297144, 37.895785 ], [ -122.296286, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894566 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897817 ], [ -122.294655, 37.894566 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.294655, 37.894566 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897817 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894566 ], [ -122.295771, 37.897817 ], [ -122.294655, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.294655, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894566 ], [ -122.295771, 37.897817 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895989 ], [ -122.295427, 37.896124 ], [ -122.294912, 37.894498 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896124 ], [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895989 ], [ -122.295427, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892737 ], [ -122.296114, 37.892534 ], [ -122.296629, 37.894160 ], [ -122.295771, 37.894295 ], [ -122.295256, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.295256, 37.892737 ], [ -122.296114, 37.892534 ], [ -122.296629, 37.894160 ], [ -122.295771, 37.894295 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.892534 ], [ -122.296972, 37.892399 ], [ -122.297487, 37.893957 ], [ -122.296629, 37.894160 ], [ -122.296114, 37.892534 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296629, 37.894160 ], [ -122.296114, 37.892534 ], [ -122.296972, 37.892399 ], [ -122.297487, 37.893957 ], [ -122.296629, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.892873 ], [ -122.295256, 37.892737 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ], [ -122.294397, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.294397, 37.892873 ], [ -122.295256, 37.892737 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.294397, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894566 ], [ -122.294140, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894566 ], [ -122.294140, 37.892873 ], [ -122.294397, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894566 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294569, 37.898766 ], [ -122.293711, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.293711, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294569, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898427 ], [ -122.292852, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293711, 37.898562 ], [ -122.293711, 37.898698 ], [ -122.292852, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898698 ], [ -122.292852, 37.898427 ], [ -122.292852, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293711, 37.898562 ], [ -122.293711, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.292681, 37.897750 ], [ -122.292852, 37.897750 ], [ -122.292852, 37.898427 ], [ -122.292681, 37.898359 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898427 ], [ -122.292681, 37.898359 ], [ -122.292681, 37.897750 ], [ -122.292852, 37.897750 ], [ -122.292852, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897750 ], [ -122.292681, 37.897750 ], [ -122.292681, 37.896734 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.897750 ], [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897750 ], [ -122.292681, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291651, 37.898156 ], [ -122.291737, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292681, 37.898359 ], [ -122.291651, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.291651, 37.898156 ], [ -122.291737, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292681, 37.898359 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.897953 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896734 ], [ -122.291651, 37.898156 ], [ -122.290792, 37.897953 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291651, 37.898156 ], [ -122.290792, 37.897953 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896734 ], [ -122.291651, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289934, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290792, 37.897953 ], [ -122.289934, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.897953 ], [ -122.289934, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290792, 37.897953 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.289934, 37.897885 ], [ -122.289076, 37.897885 ], [ -122.289162, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289076, 37.897885 ], [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.289934, 37.897885 ], [ -122.289076, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293882, 37.894702 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.897750 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894905 ], [ -122.293882, 37.894702 ], [ -122.293882, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292852, 37.897750 ], [ -122.293024, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897750 ], [ -122.293024, 37.894905 ], [ -122.293882, 37.894702 ], [ -122.293882, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292852, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.293024, 37.894905 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292767, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292767, 37.894905 ], [ -122.293024, 37.894905 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894566 ], [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894566 ], [ -122.293882, 37.894702 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894905 ], [ -122.293110, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894905 ], [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293024, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292852, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.292852, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293024, 37.894905 ], [ -122.292767, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292852, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291822, 37.894905 ], [ -122.291908, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894905 ], [ -122.291908, 37.892873 ], [ -122.292852, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291822, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290106, 37.894837 ], [ -122.292767, 37.894905 ], [ -122.292681, 37.896734 ], [ -122.290020, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290106, 37.894837 ], [ -122.292767, 37.894905 ], [ -122.292681, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289248, 37.894769 ], [ -122.290106, 37.894837 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289248, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.289248, 37.894769 ], [ -122.290106, 37.894837 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290964, 37.894837 ], [ -122.291050, 37.892941 ], [ -122.291908, 37.893008 ], [ -122.291822, 37.894905 ], [ -122.290964, 37.894837 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894905 ], [ -122.290964, 37.894837 ], [ -122.291050, 37.892941 ], [ -122.291908, 37.893008 ], [ -122.291822, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.892941 ], [ -122.291050, 37.892941 ], [ -122.290964, 37.894837 ], [ -122.290106, 37.894837 ], [ -122.290192, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.894837 ], [ -122.290192, 37.892941 ], [ -122.291050, 37.892941 ], [ -122.290964, 37.894837 ], [ -122.290106, 37.894837 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289248, 37.894769 ], [ -122.289333, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290106, 37.894837 ], [ -122.289248, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.894837 ], [ -122.289248, 37.894769 ], [ -122.289333, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290106, 37.894837 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.289162, 37.896666 ], [ -122.289076, 37.897885 ], [ -122.288561, 37.897953 ], [ -122.288218, 37.898156 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.898156 ], [ -122.288218, 37.896598 ], [ -122.289162, 37.896666 ], [ -122.289076, 37.897885 ], [ -122.288561, 37.897953 ], [ -122.288218, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288218, 37.898156 ], [ -122.288132, 37.898156 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898156 ], [ -122.288218, 37.896598 ], [ -122.288218, 37.898156 ], [ -122.288132, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287188, 37.898698 ], [ -122.287273, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.898698 ], [ -122.287273, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287188, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287188, 37.898156 ], [ -122.287188, 37.898698 ], [ -122.287016, 37.898766 ], [ -122.287016, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898766 ], [ -122.287016, 37.898156 ], [ -122.287188, 37.898156 ], [ -122.287188, 37.898698 ], [ -122.287016, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ], [ -122.287102, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287102, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288303, 37.894769 ], [ -122.289248, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894769 ], [ -122.289248, 37.894769 ], [ -122.289162, 37.896666 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.895921 ], [ -122.288046, 37.895921 ], [ -122.288046, 37.895582 ], [ -122.288475, 37.895582 ], [ -122.288475, 37.895921 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288218, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287359, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896598 ], [ -122.287359, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288218, 37.896598 ], [ -122.287273, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287273, 37.896598 ], [ -122.287102, 37.896598 ], [ -122.287188, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896598 ], [ -122.287188, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287273, 37.896598 ], [ -122.287102, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.289333, 37.892941 ], [ -122.289248, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ], [ -122.289333, 37.892941 ], [ -122.289248, 37.894769 ], [ -122.288303, 37.894769 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288561, 37.894431 ], [ -122.288132, 37.894431 ], [ -122.288132, 37.894092 ], [ -122.288561, 37.894092 ], [ -122.288561, 37.894431 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.288389, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287445, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894769 ], [ -122.287445, 37.892873 ], [ -122.288389, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287359, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287359, 37.894769 ], [ -122.287188, 37.894769 ], [ -122.287188, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.894769 ], [ -122.287188, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287359, 37.894769 ], [ -122.287188, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.891857 ], [ -122.299547, 37.891857 ], [ -122.299719, 37.892331 ], [ -122.299633, 37.892331 ], [ -122.299461, 37.891857 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892331 ], [ -122.299461, 37.891857 ], [ -122.299547, 37.891857 ], [ -122.299719, 37.892331 ], [ -122.299633, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890367 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891857 ], [ -122.298603, 37.891992 ], [ -122.298088, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.891992 ], [ -122.298088, 37.890367 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891857 ], [ -122.298603, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891857 ], [ -122.299461, 37.891857 ], [ -122.298946, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.891857 ], [ -122.298946, 37.890299 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891857 ], [ -122.299461, 37.891857 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890231 ], [ -122.299290, 37.890231 ], [ -122.299976, 37.890096 ], [ -122.299376, 37.890299 ], [ -122.299032, 37.890231 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299376, 37.890299 ], [ -122.299032, 37.890231 ], [ -122.299290, 37.890231 ], [ -122.299976, 37.890096 ], [ -122.299376, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890367 ], [ -122.298088, 37.890367 ], [ -122.298088, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890367 ], [ -122.298088, 37.890299 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890367 ], [ -122.298088, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.298088, 37.890367 ], [ -122.298174, 37.890705 ], [ -122.298603, 37.891992 ], [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ], [ -122.298088, 37.890367 ], [ -122.298174, 37.890705 ], [ -122.298603, 37.891992 ], [ -122.297745, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.890502 ], [ -122.297316, 37.890502 ], [ -122.297316, 37.890231 ], [ -122.297487, 37.890231 ], [ -122.297487, 37.890502 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887793 ], [ -122.299204, 37.887793 ], [ -122.299976, 37.890096 ], [ -122.299032, 37.890231 ], [ -122.298260, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890231 ], [ -122.298260, 37.887793 ], [ -122.299204, 37.887793 ], [ -122.299976, 37.890096 ], [ -122.299032, 37.890231 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298174, 37.887793 ], [ -122.298260, 37.887793 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ], [ -122.298174, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298174, 37.887793 ], [ -122.298260, 37.887793 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297831, 37.889622 ], [ -122.296972, 37.886912 ], [ -122.297831, 37.886777 ], [ -122.297831, 37.886709 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887793 ], [ -122.298174, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298088, 37.890299 ], [ -122.297831, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.297831, 37.889622 ], [ -122.296972, 37.886912 ], [ -122.297831, 37.886777 ], [ -122.297831, 37.886709 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887793 ], [ -122.298174, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298088, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297316, 37.890773 ], [ -122.297745, 37.892196 ], [ -122.296972, 37.892399 ], [ -122.296286, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.892399 ], [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297316, 37.890773 ], [ -122.297745, 37.892196 ], [ -122.296972, 37.892399 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890502 ], [ -122.296286, 37.890434 ], [ -122.296972, 37.892399 ], [ -122.296114, 37.892534 ], [ -122.295427, 37.890502 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.892534 ], [ -122.295427, 37.890502 ], [ -122.296286, 37.890434 ], [ -122.296972, 37.892399 ], [ -122.296114, 37.892534 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890434 ], [ -122.296286, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295427, 37.890434 ], [ -122.296286, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295427, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890570 ], [ -122.295427, 37.890502 ], [ -122.296114, 37.892534 ], [ -122.295256, 37.892737 ], [ -122.294569, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892737 ], [ -122.294569, 37.890570 ], [ -122.295427, 37.890502 ], [ -122.296114, 37.892534 ], [ -122.295256, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294569, 37.890570 ], [ -122.295256, 37.892737 ], [ -122.294397, 37.892873 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294569, 37.890570 ], [ -122.295256, 37.892737 ], [ -122.294397, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890502 ], [ -122.295427, 37.890502 ], [ -122.294741, 37.890570 ], [ -122.294569, 37.890502 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294741, 37.890570 ], [ -122.294569, 37.890502 ], [ -122.295427, 37.890502 ], [ -122.294741, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887115 ], [ -122.296972, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297144, 37.890367 ], [ -122.296114, 37.887115 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.296114, 37.887115 ], [ -122.296972, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297144, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.296114, 37.887115 ], [ -122.297144, 37.890367 ], [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ], [ -122.296114, 37.887115 ], [ -122.297144, 37.890367 ], [ -122.296286, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295427, 37.890434 ], [ -122.294483, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890434 ], [ -122.294483, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295427, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294483, 37.887386 ], [ -122.295427, 37.890434 ], [ -122.294569, 37.890502 ], [ -122.293625, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890502 ], [ -122.293625, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294483, 37.887386 ], [ -122.295427, 37.890434 ], [ -122.294569, 37.890502 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299633, 37.887522 ], [ -122.301006, 37.887657 ], [ -122.300749, 37.887793 ], [ -122.298260, 37.887793 ], [ -122.297916, 37.886709 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887793 ], [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299633, 37.887522 ], [ -122.301006, 37.887657 ], [ -122.300749, 37.887793 ], [ -122.298260, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.887522 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297316, 37.884609 ], [ -122.298346, 37.884406 ], [ -122.299976, 37.884067 ], [ -122.300148, 37.885151 ], [ -122.301006, 37.887657 ], [ -122.299633, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887657 ], [ -122.299633, 37.887522 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297316, 37.884609 ], [ -122.298346, 37.884406 ], [ -122.299976, 37.884067 ], [ -122.300148, 37.885151 ], [ -122.301006, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297659, 37.886709 ], [ -122.297831, 37.886709 ], [ -122.297831, 37.886777 ], [ -122.296972, 37.886844 ], [ -122.297659, 37.886709 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.886844 ], [ -122.297659, 37.886709 ], [ -122.297831, 37.886709 ], [ -122.297831, 37.886777 ], [ -122.296972, 37.886844 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.883254 ], [ -122.299032, 37.883051 ], [ -122.300234, 37.882915 ], [ -122.300320, 37.883051 ], [ -122.300320, 37.883254 ], [ -122.300062, 37.883389 ], [ -122.299805, 37.884135 ], [ -122.298346, 37.884406 ], [ -122.298002, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298346, 37.884406 ], [ -122.298002, 37.883254 ], [ -122.299032, 37.883051 ], [ -122.300234, 37.882915 ], [ -122.300320, 37.883051 ], [ -122.300320, 37.883254 ], [ -122.300062, 37.883389 ], [ -122.299805, 37.884135 ], [ -122.298346, 37.884406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.884677 ], [ -122.297316, 37.884609 ], [ -122.297916, 37.886709 ], [ -122.297831, 37.886709 ], [ -122.297144, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297831, 37.886709 ], [ -122.297144, 37.884677 ], [ -122.297316, 37.884609 ], [ -122.297916, 37.886709 ], [ -122.297831, 37.886709 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.883525 ], [ -122.298002, 37.883254 ], [ -122.298346, 37.884406 ], [ -122.297316, 37.884609 ], [ -122.296972, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297316, 37.884609 ], [ -122.296972, 37.883525 ], [ -122.298002, 37.883254 ], [ -122.298346, 37.884406 ], [ -122.297316, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.886980 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.887115 ], [ -122.296114, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887115 ], [ -122.296114, 37.886980 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.887115 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887183 ], [ -122.296114, 37.886980 ], [ -122.296114, 37.887115 ], [ -122.295256, 37.887251 ], [ -122.295256, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.295256, 37.887183 ], [ -122.296114, 37.886980 ], [ -122.296114, 37.887115 ], [ -122.295256, 37.887251 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.295256, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294483, 37.887386 ], [ -122.294397, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295256, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294483, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293539, 37.884541 ], [ -122.294397, 37.884338 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.887318 ], [ -122.293539, 37.884541 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.884338 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883999 ], [ -122.296886, 37.883864 ], [ -122.297831, 37.886709 ], [ -122.296972, 37.886844 ], [ -122.296028, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.886844 ], [ -122.296028, 37.883999 ], [ -122.296886, 37.883864 ], [ -122.297831, 37.886709 ], [ -122.296972, 37.886844 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.296028, 37.883999 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.886980 ], [ -122.295170, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.886980 ], [ -122.295170, 37.884202 ], [ -122.296028, 37.883999 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883864 ], [ -122.297058, 37.883796 ], [ -122.297316, 37.884609 ], [ -122.297144, 37.884677 ], [ -122.296886, 37.883864 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.884677 ], [ -122.296886, 37.883864 ], [ -122.297058, 37.883796 ], [ -122.297316, 37.884609 ], [ -122.297144, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.883525 ], [ -122.296972, 37.883525 ], [ -122.297058, 37.883796 ], [ -122.296886, 37.883864 ], [ -122.296801, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883864 ], [ -122.296801, 37.883525 ], [ -122.296972, 37.883525 ], [ -122.297058, 37.883796 ], [ -122.296886, 37.883864 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296114, 37.886980 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887183 ], [ -122.294397, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296114, 37.886980 ], [ -122.295256, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.882983 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884202 ], [ -122.294397, 37.884338 ], [ -122.293882, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.884338 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884202 ], [ -122.294397, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.891992 ], [ -122.293196, 37.891044 ], [ -122.293196, 37.890638 ], [ -122.293625, 37.890570 ], [ -122.294397, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.293882, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293882, 37.891992 ], [ -122.293196, 37.891044 ], [ -122.293196, 37.890638 ], [ -122.293625, 37.890570 ], [ -122.294397, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.891044 ], [ -122.293882, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293196, 37.891044 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293196, 37.891044 ], [ -122.293882, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890773 ], [ -122.293196, 37.891044 ], [ -122.293110, 37.892873 ], [ -122.292852, 37.892873 ], [ -122.292938, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892873 ], [ -122.292938, 37.890773 ], [ -122.293196, 37.891044 ], [ -122.293110, 37.892873 ], [ -122.292852, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890502 ], [ -122.293797, 37.890570 ], [ -122.293711, 37.890570 ], [ -122.294569, 37.890502 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294054, 37.890638 ], [ -122.293882, 37.890638 ], [ -122.293882, 37.890434 ], [ -122.294054, 37.890434 ], [ -122.294054, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890638 ], [ -122.293196, 37.890638 ], [ -122.293196, 37.891044 ], [ -122.292938, 37.890638 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.891044 ], [ -122.292938, 37.890638 ], [ -122.293196, 37.890638 ], [ -122.293196, 37.891044 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.890638 ], [ -122.292938, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890638 ], [ -122.292938, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291994, 37.890705 ], [ -122.292938, 37.890638 ], [ -122.292852, 37.892873 ], [ -122.291908, 37.892873 ], [ -122.291994, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.291994, 37.890705 ], [ -122.292938, 37.890638 ], [ -122.292852, 37.892873 ], [ -122.291908, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292767, 37.890638 ], [ -122.291908, 37.890638 ], [ -122.292938, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.292938, 37.890570 ], [ -122.292767, 37.890638 ], [ -122.291908, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.292767, 37.887793 ], [ -122.292767, 37.887657 ], [ -122.293625, 37.887657 ], [ -122.293625, 37.887522 ], [ -122.294569, 37.890502 ], [ -122.293711, 37.890570 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890570 ], [ -122.293625, 37.890434 ], [ -122.292767, 37.887793 ], [ -122.292767, 37.887657 ], [ -122.293625, 37.887657 ], [ -122.294569, 37.890502 ], [ -122.293711, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.889825 ], [ -122.292509, 37.887725 ], [ -122.292767, 37.887657 ], [ -122.292767, 37.887793 ], [ -122.293625, 37.890367 ], [ -122.293196, 37.889825 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890367 ], [ -122.293196, 37.889825 ], [ -122.292509, 37.887725 ], [ -122.292767, 37.887657 ], [ -122.292767, 37.887793 ], [ -122.293625, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293196, 37.889825 ], [ -122.293711, 37.890570 ], [ -122.292938, 37.890570 ], [ -122.292166, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293196, 37.889825 ], [ -122.293711, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.888064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.291136, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.887996 ], [ -122.292166, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291136, 37.888064 ], [ -122.291136, 37.887996 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.888064 ], [ -122.291136, 37.887996 ], [ -122.292166, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291136, 37.888064 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.892941 ], [ -122.291136, 37.890705 ], [ -122.291994, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.291050, 37.892941 ], [ -122.291136, 37.890705 ], [ -122.291994, 37.890705 ], [ -122.291908, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290277, 37.890773 ], [ -122.291136, 37.890705 ], [ -122.291050, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290277, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.892941 ], [ -122.290277, 37.890773 ], [ -122.291136, 37.890705 ], [ -122.291050, 37.892941 ], [ -122.290192, 37.892941 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291479, 37.890773 ], [ -122.291307, 37.890773 ], [ -122.291307, 37.890570 ], [ -122.291479, 37.890570 ], [ -122.291479, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289419, 37.890841 ], [ -122.290277, 37.890773 ], [ -122.290192, 37.892941 ], [ -122.289333, 37.892941 ], [ -122.289419, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.892941 ], [ -122.289419, 37.890841 ], [ -122.290277, 37.890773 ], [ -122.290192, 37.892941 ], [ -122.289333, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288904, 37.890841 ], [ -122.289419, 37.890841 ], [ -122.289333, 37.892941 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.892941 ], [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288904, 37.890841 ], [ -122.289419, 37.890841 ], [ -122.289333, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.291136, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.890705 ], [ -122.290792, 37.890773 ], [ -122.290106, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890773 ], [ -122.290106, 37.888267 ], [ -122.291136, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.890705 ], [ -122.290792, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888199 ], [ -122.291136, 37.887996 ], [ -122.291136, 37.888064 ], [ -122.290106, 37.888267 ], [ -122.290106, 37.888199 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.290106, 37.888199 ], [ -122.291136, 37.887996 ], [ -122.291136, 37.888064 ], [ -122.290106, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890773 ], [ -122.289934, 37.890773 ], [ -122.289162, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289934, 37.890773 ], [ -122.289162, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890773 ], [ -122.289934, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289162, 37.888470 ], [ -122.289934, 37.890773 ], [ -122.288904, 37.890841 ], [ -122.288303, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288904, 37.890841 ], [ -122.288303, 37.888673 ], [ -122.289162, 37.888470 ], [ -122.289934, 37.890773 ], [ -122.288904, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888402 ], [ -122.290106, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289162, 37.888470 ], [ -122.289162, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888470 ], [ -122.289162, 37.888402 ], [ -122.290106, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289162, 37.888470 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.884677 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.887318 ], [ -122.293625, 37.887522 ], [ -122.292681, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887522 ], [ -122.292681, 37.884677 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.887318 ], [ -122.293625, 37.887522 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887793 ], [ -122.292509, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.292166, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292166, 37.887793 ], [ -122.292509, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.884880 ], [ -122.292681, 37.884677 ], [ -122.293625, 37.887522 ], [ -122.293625, 37.887657 ], [ -122.292767, 37.887657 ], [ -122.291822, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.887657 ], [ -122.291822, 37.884880 ], [ -122.292681, 37.884677 ], [ -122.293625, 37.887522 ], [ -122.293625, 37.887657 ], [ -122.292767, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884948 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887657 ], [ -122.292509, 37.887725 ], [ -122.291565, 37.884948 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292509, 37.887725 ], [ -122.291565, 37.884948 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887657 ], [ -122.292509, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.291565, 37.884948 ], [ -122.292509, 37.887725 ], [ -122.292166, 37.887793 ], [ -122.291222, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887793 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884948 ], [ -122.292509, 37.887725 ], [ -122.292166, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293367, 37.884202 ], [ -122.293024, 37.883051 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.884338 ], [ -122.293539, 37.884541 ], [ -122.293367, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293539, 37.884541 ], [ -122.293367, 37.884202 ], [ -122.293024, 37.883051 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.884338 ], [ -122.293539, 37.884541 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.884406 ], [ -122.292080, 37.883186 ], [ -122.293024, 37.883051 ], [ -122.293539, 37.884541 ], [ -122.292681, 37.884677 ], [ -122.292595, 37.884406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.884677 ], [ -122.292595, 37.884406 ], [ -122.292080, 37.883186 ], [ -122.293024, 37.883051 ], [ -122.293539, 37.884541 ], [ -122.292681, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291307, 37.883254 ], [ -122.292080, 37.883186 ], [ -122.292681, 37.884677 ], [ -122.291822, 37.884880 ], [ -122.291307, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.884880 ], [ -122.291307, 37.883254 ], [ -122.292080, 37.883186 ], [ -122.292681, 37.884677 ], [ -122.291822, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.291222, 37.885015 ], [ -122.292166, 37.887793 ], [ -122.291136, 37.887996 ], [ -122.290192, 37.885219 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.887996 ], [ -122.290192, 37.885219 ], [ -122.291222, 37.885015 ], [ -122.292166, 37.887793 ], [ -122.291136, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886031 ], [ -122.290106, 37.888199 ], [ -122.288303, 37.888606 ], [ -122.289333, 37.886031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888606 ], [ -122.289333, 37.886031 ], [ -122.290106, 37.888199 ], [ -122.288303, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886031 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.885693 ], [ -122.291136, 37.887996 ], [ -122.290106, 37.888199 ], [ -122.289333, 37.886031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888199 ], [ -122.289333, 37.886031 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.885693 ], [ -122.291136, 37.887996 ], [ -122.290106, 37.888199 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290449, 37.883254 ], [ -122.290878, 37.883322 ], [ -122.291222, 37.883999 ], [ -122.291565, 37.884948 ], [ -122.291222, 37.885015 ], [ -122.290449, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.290449, 37.883254 ], [ -122.290878, 37.883322 ], [ -122.291222, 37.883999 ], [ -122.291565, 37.884948 ], [ -122.291222, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.883322 ], [ -122.291136, 37.883254 ], [ -122.291307, 37.883254 ], [ -122.291822, 37.884880 ], [ -122.291565, 37.884948 ], [ -122.290878, 37.883322 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884948 ], [ -122.290878, 37.883322 ], [ -122.291136, 37.883254 ], [ -122.291307, 37.883254 ], [ -122.291822, 37.884880 ], [ -122.291565, 37.884948 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884541 ], [ -122.290363, 37.883051 ], [ -122.290449, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885219 ], [ -122.289848, 37.884541 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.883051 ], [ -122.290449, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885219 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885896 ], [ -122.289677, 37.884880 ], [ -122.289762, 37.884948 ], [ -122.289333, 37.886031 ], [ -122.289333, 37.885896 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885896 ], [ -122.289677, 37.884880 ], [ -122.289762, 37.884948 ], [ -122.289333, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.289333, 37.883322 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289762, 37.884948 ], [ -122.288818, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289762, 37.884948 ], [ -122.288818, 37.884744 ], [ -122.289333, 37.883322 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289762, 37.884948 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.883051 ], [ -122.296028, 37.883051 ], [ -122.296801, 37.883525 ], [ -122.296886, 37.883864 ], [ -122.296028, 37.883999 ], [ -122.295771, 37.883051 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883999 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883051 ], [ -122.296801, 37.883525 ], [ -122.296886, 37.883864 ], [ -122.296028, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294741, 37.882780 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883999 ], [ -122.295170, 37.884202 ], [ -122.294741, 37.882780 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.294741, 37.882780 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883999 ], [ -122.295170, 37.884202 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288733, 37.892128 ], [ -122.288389, 37.892128 ], [ -122.288389, 37.891721 ], [ -122.288733, 37.891721 ], [ -122.288733, 37.892128 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287531, 37.890909 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288389, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287531, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.287531, 37.890909 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288389, 37.892873 ], [ -122.287445, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288818, 37.890841 ], [ -122.287703, 37.890841 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.288818, 37.890773 ], [ -122.288818, 37.890841 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890976 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891315 ], [ -122.287445, 37.892873 ], [ -122.287188, 37.892873 ], [ -122.287188, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892873 ], [ -122.287188, 37.890976 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891315 ], [ -122.287445, 37.892873 ], [ -122.287188, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287188, 37.890976 ], [ -122.286673, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287188, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286501, 37.890976 ], [ -122.285728, 37.890976 ], [ -122.286673, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.286501, 37.890976 ], [ -122.285728, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888741 ], [ -122.288303, 37.888606 ], [ -122.288303, 37.888876 ], [ -122.288904, 37.890705 ], [ -122.288818, 37.890841 ], [ -122.288132, 37.888741 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890841 ], [ -122.288132, 37.888741 ], [ -122.288303, 37.888606 ], [ -122.288303, 37.888876 ], [ -122.288904, 37.890705 ], [ -122.288818, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288132, 37.888741 ], [ -122.288818, 37.890773 ], [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888741 ], [ -122.288818, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.888470 ], [ -122.289162, 37.888470 ], [ -122.288303, 37.888673 ], [ -122.288990, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.888673 ], [ -122.288733, 37.888673 ], [ -122.288733, 37.888402 ], [ -122.288990, 37.888402 ], [ -122.288990, 37.888673 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.888944 ], [ -122.288218, 37.888606 ], [ -122.287102, 37.889080 ], [ -122.287359, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.888944 ], [ -122.287617, 37.888944 ], [ -122.287617, 37.888673 ], [ -122.287960, 37.888673 ], [ -122.287960, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.888606 ], [ -122.286415, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.287273, 37.888267 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.888606 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.286072, 37.888606 ], [ -122.286415, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.287273, 37.888267 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285728, 37.890976 ], [ -122.285213, 37.889554 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.285213, 37.889554 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285728, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.285728, 37.891044 ], [ -122.284527, 37.891112 ], [ -122.284527, 37.891044 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891112 ], [ -122.284527, 37.891044 ], [ -122.285728, 37.891044 ], [ -122.284527, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284098, 37.889351 ], [ -122.285213, 37.889554 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.284098, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.284098, 37.889351 ], [ -122.285213, 37.889554 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891044 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891180 ], [ -122.283497, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891180 ], [ -122.283497, 37.891112 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282896, 37.889147 ], [ -122.283497, 37.889215 ], [ -122.284098, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ], [ -122.282896, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.282896, 37.889147 ], [ -122.283497, 37.889215 ], [ -122.284098, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.889486 ], [ -122.285213, 37.889554 ], [ -122.285213, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.285213, 37.889486 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.889486 ], [ -122.285213, 37.889554 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.888673 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887657 ], [ -122.286072, 37.888606 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887657 ], [ -122.286072, 37.888606 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284956, 37.888538 ], [ -122.285299, 37.887386 ], [ -122.285385, 37.887386 ], [ -122.285042, 37.888538 ], [ -122.285128, 37.889486 ], [ -122.284956, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889486 ], [ -122.284956, 37.888538 ], [ -122.285299, 37.887386 ], [ -122.285385, 37.887386 ], [ -122.285042, 37.888538 ], [ -122.285128, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284441, 37.889418 ], [ -122.284098, 37.889351 ], [ -122.284098, 37.889283 ], [ -122.285213, 37.889486 ], [ -122.285213, 37.889554 ], [ -122.284441, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.284441, 37.889418 ], [ -122.284098, 37.889351 ], [ -122.284098, 37.889283 ], [ -122.285213, 37.889486 ], [ -122.285213, 37.889554 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284098, 37.889283 ], [ -122.284098, 37.889351 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284098, 37.889351 ], [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284098, 37.889283 ], [ -122.284098, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283754, 37.889147 ], [ -122.283754, 37.888809 ], [ -122.284355, 37.887183 ], [ -122.285299, 37.887386 ], [ -122.284956, 37.888538 ], [ -122.285128, 37.889486 ], [ -122.283754, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889486 ], [ -122.283754, 37.889147 ], [ -122.283754, 37.888809 ], [ -122.284355, 37.887183 ], [ -122.285299, 37.887386 ], [ -122.284956, 37.888538 ], [ -122.285128, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.889080 ], [ -122.282724, 37.888606 ], [ -122.283325, 37.886912 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889147 ], [ -122.282810, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282724, 37.888606 ], [ -122.283325, 37.886912 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889147 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885896 ], [ -122.289333, 37.886031 ], [ -122.288303, 37.888606 ], [ -122.288218, 37.888606 ], [ -122.289333, 37.885896 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.289333, 37.886031 ], [ -122.288303, 37.888606 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.888267 ], [ -122.287703, 37.887657 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885896 ], [ -122.288218, 37.888606 ], [ -122.287102, 37.889012 ], [ -122.287273, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287273, 37.888267 ], [ -122.287703, 37.887657 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885896 ], [ -122.288218, 37.888606 ], [ -122.287102, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.287960, 37.884541 ], [ -122.288818, 37.884744 ], [ -122.287703, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.286758, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287531, 37.887928 ], [ -122.286758, 37.887725 ], [ -122.287960, 37.884541 ], [ -122.288818, 37.884744 ], [ -122.287703, 37.887657 ], [ -122.287531, 37.887928 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286329, 37.886573 ], [ -122.286673, 37.885693 ], [ -122.287531, 37.885828 ], [ -122.287188, 37.886777 ], [ -122.286329, 37.886573 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.886777 ], [ -122.286329, 37.886573 ], [ -122.286673, 37.885693 ], [ -122.287531, 37.885828 ], [ -122.287188, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.288132, 37.884270 ], [ -122.287531, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286329, 37.886573 ], [ -122.287188, 37.886777 ], [ -122.286758, 37.887725 ], [ -122.285385, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.288132, 37.884270 ], [ -122.287531, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286329, 37.886573 ], [ -122.287188, 37.886777 ], [ -122.286758, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884541 ], [ -122.288561, 37.883051 ], [ -122.289333, 37.883322 ], [ -122.288818, 37.884744 ], [ -122.287960, 37.884541 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.287960, 37.884541 ], [ -122.288561, 37.883051 ], [ -122.289333, 37.883322 ], [ -122.288818, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ], [ -122.285986, 37.885557 ], [ -122.286587, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ], [ -122.285986, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ], [ -122.285299, 37.887386 ], [ -122.285986, 37.885557 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887386 ], [ -122.285986, 37.885557 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ], [ -122.285299, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.285128, 37.885354 ], [ -122.285986, 37.885557 ], [ -122.285299, 37.887386 ], [ -122.284355, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887386 ], [ -122.284355, 37.887183 ], [ -122.285128, 37.885354 ], [ -122.285986, 37.885557 ], [ -122.285299, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.885354 ], [ -122.285728, 37.883660 ], [ -122.287016, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885557 ], [ -122.285128, 37.885354 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.285128, 37.885354 ], [ -122.285728, 37.883660 ], [ -122.287016, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884135 ], [ -122.285728, 37.883593 ], [ -122.285728, 37.883660 ], [ -122.284784, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.284527, 37.884135 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.284527, 37.884135 ], [ -122.285728, 37.883593 ], [ -122.285728, 37.883660 ], [ -122.284784, 37.884135 ], [ -122.284527, 37.884202 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283583, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ], [ -122.283583, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.283583, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282724, 37.886031 ], [ -122.283239, 37.885422 ], [ -122.283325, 37.884812 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ], [ -122.282724, 37.886031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282724, 37.886031 ], [ -122.283239, 37.885422 ], [ -122.283325, 37.884812 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283926, 37.884541 ], [ -122.283411, 37.884677 ], [ -122.284527, 37.884135 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283411, 37.884677 ], [ -122.284527, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283926, 37.884541 ], [ -122.283411, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.884406 ], [ -122.281952, 37.884406 ], [ -122.282639, 37.882780 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882509 ], [ -122.285728, 37.883593 ], [ -122.283154, 37.884812 ], [ -122.282038, 37.885015 ], [ -122.282295, 37.884406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885015 ], [ -122.282295, 37.884406 ], [ -122.281952, 37.884406 ], [ -122.282639, 37.882780 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882509 ], [ -122.285728, 37.883593 ], [ -122.283154, 37.884812 ], [ -122.282038, 37.885015 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283068, 37.891247 ], [ -122.282810, 37.891247 ], [ -122.282810, 37.891044 ], [ -122.283068, 37.891044 ], [ -122.283068, 37.891247 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886709 ], [ -122.283325, 37.886912 ], [ -122.282724, 37.888606 ], [ -122.282810, 37.889080 ], [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886709 ], [ -122.283325, 37.886912 ], [ -122.282724, 37.888606 ], [ -122.282810, 37.889080 ], [ -122.281866, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886709 ], [ -122.282553, 37.886370 ], [ -122.282724, 37.886031 ], [ -122.283840, 37.886235 ], [ -122.283583, 37.886980 ], [ -122.282295, 37.886709 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283583, 37.886980 ], [ -122.282295, 37.886709 ], [ -122.282553, 37.886370 ], [ -122.282724, 37.886031 ], [ -122.283840, 37.886235 ], [ -122.283583, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885015 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885083 ], [ -122.282038, 37.885083 ], [ -122.282038, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885083 ], [ -122.282038, 37.885015 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885083 ], [ -122.282038, 37.885083 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287273, 37.882644 ], [ -122.288561, 37.883051 ], [ -122.288132, 37.884270 ], [ -122.286673, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884270 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287273, 37.882644 ], [ -122.288561, 37.883051 ], [ -122.288132, 37.884270 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.882915 ], [ -122.287102, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ], [ -122.287102, 37.882915 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287102, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.882577 ], [ -122.287188, 37.882712 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882915 ], [ -122.287188, 37.882577 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882915 ], [ -122.287188, 37.882577 ], [ -122.287188, 37.882712 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882915 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883593 ], [ -122.287016, 37.882915 ], [ -122.287102, 37.882915 ], [ -122.285728, 37.883660 ], [ -122.285728, 37.883593 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.285728, 37.883593 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883660 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882509 ], [ -122.287188, 37.882577 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883593 ], [ -122.286072, 37.882509 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883593 ], [ -122.286072, 37.882509 ], [ -122.287188, 37.882577 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883593 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 790 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312551, 37.897038 ], [ -122.312465, 37.896937 ], [ -122.312164, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896734 ], [ -122.311606, 37.896497 ], [ -122.311521, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.895548 ], [ -122.310705, 37.895514 ], [ -122.310705, 37.895277 ], [ -122.310576, 37.895074 ], [ -122.310147, 37.894769 ], [ -122.309461, 37.893482 ], [ -122.309117, 37.892229 ], [ -122.309074, 37.891315 ], [ -122.309289, 37.889723 ], [ -122.309461, 37.889147 ], [ -122.309675, 37.888876 ], [ -122.309804, 37.888809 ], [ -122.310061, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.310963, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890265 ], [ -122.311220, 37.890163 ], [ -122.311220, 37.889926 ], [ -122.311349, 37.889926 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891213 ], [ -122.313709, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892060 ], [ -122.314696, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314610, 37.892162 ], [ -122.314525, 37.891925 ], [ -122.314696, 37.891891 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317615, 37.890942 ], [ -122.319846, 37.889960 ], [ -122.322721, 37.889994 ], [ -122.323151, 37.891010 ], [ -122.323966, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325854, 37.892500 ], [ -122.325897, 37.892297 ], [ -122.325640, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325554, 37.891518 ], [ -122.325597, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890807 ], [ -122.326198, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.327313, 37.890807 ], [ -122.327399, 37.890909 ], [ -122.327399, 37.891484 ], [ -122.327528, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327571, 37.889689 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312508, 37.897445 ], [ -122.312551, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897445 ], [ -122.312551, 37.897038 ], [ -122.312465, 37.896937 ], [ -122.312164, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896734 ], [ -122.311606, 37.896497 ], [ -122.311521, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.895548 ], [ -122.310705, 37.895514 ], [ -122.310705, 37.895277 ], [ -122.310576, 37.895074 ], [ -122.310147, 37.894769 ], [ -122.309461, 37.893482 ], [ -122.309117, 37.892229 ], [ -122.309074, 37.891315 ], [ -122.309289, 37.889723 ], [ -122.309461, 37.889147 ], [ -122.309675, 37.888876 ], [ -122.309804, 37.888809 ], [ -122.310061, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.310963, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890265 ], [ -122.311220, 37.890163 ], [ -122.311220, 37.889926 ], [ -122.311349, 37.889926 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891213 ], [ -122.313709, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892060 ], [ -122.314696, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314610, 37.892162 ], [ -122.314525, 37.891925 ], [ -122.314696, 37.891891 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317615, 37.890942 ], [ -122.319846, 37.889960 ], [ -122.322721, 37.889994 ], [ -122.323151, 37.891010 ], [ -122.323966, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325854, 37.892500 ], [ -122.325897, 37.892297 ], [ -122.325640, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325554, 37.891518 ], [ -122.325597, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890807 ], [ -122.326198, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.327313, 37.890807 ], [ -122.327399, 37.890909 ], [ -122.327399, 37.891484 ], [ -122.327528, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327571, 37.889689 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312508, 37.897445 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310662, 37.895752 ], [ -122.310019, 37.894769 ], [ -122.309546, 37.893855 ], [ -122.309246, 37.893076 ], [ -122.309031, 37.892094 ], [ -122.308989, 37.891247 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888775 ], [ -122.309246, 37.887860 ], [ -122.309804, 37.888131 ], [ -122.311263, 37.889452 ], [ -122.315598, 37.889655 ], [ -122.315812, 37.889520 ], [ -122.327614, 37.889689 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891552 ], [ -122.327399, 37.891484 ], [ -122.327399, 37.890909 ], [ -122.327313, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.325811, 37.890807 ], [ -122.325640, 37.890841 ], [ -122.325597, 37.890942 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325854, 37.892500 ], [ -122.325554, 37.892534 ], [ -122.324996, 37.892466 ], [ -122.324696, 37.892500 ], [ -122.323966, 37.892399 ], [ -122.323151, 37.891010 ], [ -122.322721, 37.889994 ], [ -122.319846, 37.889960 ], [ -122.317615, 37.890942 ], [ -122.316027, 37.891146 ], [ -122.315984, 37.891247 ], [ -122.315941, 37.891891 ], [ -122.314696, 37.891891 ], [ -122.314525, 37.891925 ], [ -122.314610, 37.892162 ], [ -122.314825, 37.892466 ], [ -122.314696, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.314267, 37.891958 ], [ -122.313709, 37.891891 ], [ -122.312722, 37.891213 ], [ -122.311692, 37.890401 ], [ -122.311349, 37.889926 ], [ -122.311220, 37.889926 ], [ -122.311220, 37.890163 ], [ -122.311134, 37.890265 ], [ -122.311006, 37.890197 ], [ -122.310963, 37.889859 ], [ -122.310877, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310061, 37.888910 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888876 ], [ -122.309461, 37.889147 ], [ -122.309289, 37.889723 ], [ -122.309074, 37.891315 ], [ -122.309117, 37.892229 ], [ -122.309461, 37.893482 ], [ -122.310147, 37.894769 ], [ -122.310576, 37.895074 ], [ -122.310705, 37.895277 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895548 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896192 ], [ -122.311606, 37.896293 ], [ -122.311521, 37.896734 ], [ -122.310662, 37.895752 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311521, 37.896734 ], [ -122.310662, 37.895752 ], [ -122.310019, 37.894769 ], [ -122.309546, 37.893855 ], [ -122.309246, 37.893076 ], [ -122.309031, 37.892094 ], [ -122.308989, 37.891247 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888775 ], [ -122.309246, 37.887860 ], [ -122.309804, 37.888131 ], [ -122.311263, 37.889452 ], [ -122.315598, 37.889655 ], [ -122.315812, 37.889520 ], [ -122.327614, 37.889689 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891552 ], [ -122.327399, 37.891484 ], [ -122.327399, 37.890909 ], [ -122.327313, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.325811, 37.890807 ], [ -122.325640, 37.890841 ], [ -122.325597, 37.890942 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325854, 37.892500 ], [ -122.325554, 37.892534 ], [ -122.324996, 37.892466 ], [ -122.324696, 37.892500 ], [ -122.323966, 37.892399 ], [ -122.323151, 37.891010 ], [ -122.322721, 37.889994 ], [ -122.319846, 37.889960 ], [ -122.317615, 37.890942 ], [ -122.316027, 37.891146 ], [ -122.315984, 37.891247 ], [ -122.315941, 37.891891 ], [ -122.314696, 37.891891 ], [ -122.314525, 37.891925 ], [ -122.314610, 37.892162 ], [ -122.314825, 37.892466 ], [ -122.314696, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.314267, 37.891958 ], [ -122.313709, 37.891891 ], [ -122.312722, 37.891213 ], [ -122.311692, 37.890401 ], [ -122.311349, 37.889926 ], [ -122.311220, 37.889926 ], [ -122.311220, 37.890163 ], [ -122.311134, 37.890265 ], [ -122.311006, 37.890197 ], [ -122.310963, 37.889859 ], [ -122.310877, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310061, 37.888910 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888876 ], [ -122.309461, 37.889147 ], [ -122.309289, 37.889723 ], [ -122.309074, 37.891315 ], [ -122.309117, 37.892229 ], [ -122.309461, 37.893482 ], [ -122.310147, 37.894769 ], [ -122.310576, 37.895074 ], [ -122.310705, 37.895277 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895548 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896192 ], [ -122.311606, 37.896293 ], [ -122.311521, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311606, 37.896869 ], [ -122.311563, 37.896835 ], [ -122.312164, 37.896937 ], [ -122.312465, 37.896937 ], [ -122.312551, 37.897140 ], [ -122.312508, 37.897445 ], [ -122.312078, 37.897479 ], [ -122.311606, 37.896869 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311606, 37.896869 ], [ -122.311563, 37.896835 ], [ -122.312164, 37.896937 ], [ -122.312465, 37.896937 ], [ -122.312551, 37.897140 ], [ -122.312508, 37.897445 ], [ -122.312078, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307830, 37.892805 ], [ -122.307873, 37.892297 ], [ -122.308044, 37.892162 ], [ -122.308259, 37.892196 ], [ -122.308345, 37.894431 ], [ -122.309418, 37.897309 ], [ -122.309546, 37.897851 ], [ -122.309375, 37.897885 ], [ -122.309332, 37.897817 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309375, 37.897885 ], [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307830, 37.892805 ], [ -122.307873, 37.892297 ], [ -122.308044, 37.892162 ], [ -122.308259, 37.892196 ], [ -122.308345, 37.894431 ], [ -122.309418, 37.897309 ], [ -122.309546, 37.897851 ], [ -122.309375, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309933, 37.895684 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308517, 37.892399 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.892568 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894837 ], [ -122.310534, 37.895819 ], [ -122.311864, 37.897546 ], [ -122.311478, 37.897648 ], [ -122.309933, 37.895684 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897648 ], [ -122.309933, 37.895684 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308517, 37.892399 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.892568 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894837 ], [ -122.310534, 37.895819 ], [ -122.311864, 37.897546 ], [ -122.311478, 37.897648 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897309 ], [ -122.308345, 37.894431 ], [ -122.308259, 37.892297 ], [ -122.307916, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308517, 37.892399 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895684 ], [ -122.311478, 37.897648 ], [ -122.310920, 37.897851 ], [ -122.309546, 37.897851 ], [ -122.309418, 37.897309 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309546, 37.897851 ], [ -122.309418, 37.897309 ], [ -122.308345, 37.894431 ], [ -122.308259, 37.892297 ], [ -122.307916, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308517, 37.892399 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895684 ], [ -122.311478, 37.897648 ], [ -122.310920, 37.897851 ], [ -122.309546, 37.897851 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310534, 37.895819 ], [ -122.309718, 37.894465 ], [ -122.309160, 37.893144 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.888775 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.891247 ], [ -122.309031, 37.892094 ], [ -122.309246, 37.893076 ], [ -122.309546, 37.893855 ], [ -122.310019, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311563, 37.896835 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897546 ], [ -122.310534, 37.895819 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311864, 37.897546 ], [ -122.310534, 37.895819 ], [ -122.309718, 37.894465 ], [ -122.309160, 37.893144 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.888775 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.891247 ], [ -122.309031, 37.892094 ], [ -122.309246, 37.893076 ], [ -122.309546, 37.893855 ], [ -122.310019, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311563, 37.896835 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.894261 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892568 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.890875 ], [ -122.307272, 37.890130 ], [ -122.307529, 37.889520 ], [ -122.307916, 37.890976 ], [ -122.307658, 37.891688 ], [ -122.307572, 37.892263 ], [ -122.307529, 37.892636 ], [ -122.307615, 37.893313 ], [ -122.307787, 37.893990 ], [ -122.308302, 37.895244 ], [ -122.309375, 37.897885 ], [ -122.307701, 37.894261 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309375, 37.897885 ], [ -122.307701, 37.894261 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892568 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.890875 ], [ -122.307272, 37.890130 ], [ -122.307529, 37.889520 ], [ -122.307916, 37.890976 ], [ -122.307658, 37.891688 ], [ -122.307572, 37.892263 ], [ -122.307529, 37.892636 ], [ -122.307615, 37.893313 ], [ -122.307787, 37.893990 ], [ -122.308302, 37.895244 ], [ -122.309375, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306671, 37.892229 ], [ -122.306714, 37.892026 ], [ -122.306714, 37.891721 ], [ -122.306414, 37.890807 ], [ -122.306843, 37.890705 ], [ -122.307401, 37.889757 ], [ -122.307229, 37.890299 ], [ -122.307057, 37.891247 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892568 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894261 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.897987 ], [ -122.307229, 37.893753 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.897987 ], [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306671, 37.892229 ], [ -122.306714, 37.892026 ], [ -122.306714, 37.891721 ], [ -122.306414, 37.890807 ], [ -122.306843, 37.890705 ], [ -122.307401, 37.889757 ], [ -122.307229, 37.890299 ], [ -122.307057, 37.891247 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892568 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894261 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.897987 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.893720 ], [ -122.307572, 37.893144 ], [ -122.307529, 37.892636 ], [ -122.307658, 37.891688 ], [ -122.307916, 37.890976 ], [ -122.308259, 37.892196 ], [ -122.308044, 37.892162 ], [ -122.307873, 37.892297 ], [ -122.307830, 37.893042 ], [ -122.307873, 37.893652 ], [ -122.308302, 37.895244 ], [ -122.307701, 37.893720 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308302, 37.895244 ], [ -122.307701, 37.893720 ], [ -122.307572, 37.893144 ], [ -122.307529, 37.892636 ], [ -122.307658, 37.891688 ], [ -122.307916, 37.890976 ], [ -122.308259, 37.892196 ], [ -122.308044, 37.892162 ], [ -122.307873, 37.892297 ], [ -122.307830, 37.893042 ], [ -122.307873, 37.893652 ], [ -122.308302, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896700 ], [ -122.301135, 37.896700 ], [ -122.301650, 37.898528 ], [ -122.301006, 37.896700 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.898528 ], [ -122.301006, 37.896700 ], [ -122.301135, 37.896700 ], [ -122.301650, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.898325 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.300620, 37.898325 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301607, 37.898528 ], [ -122.300620, 37.898325 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896700 ], [ -122.301607, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300620, 37.898325 ], [ -122.300320, 37.898258 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.898325 ], [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300620, 37.898325 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.302637, 37.895684 ], [ -122.302036, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894532 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.891620 ], [ -122.303452, 37.890536 ], [ -122.303753, 37.890197 ], [ -122.303967, 37.890062 ], [ -122.304440, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.306714, 37.891721 ], [ -122.306714, 37.892026 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308989, 37.897987 ], [ -122.308817, 37.898054 ], [ -122.306199, 37.898258 ], [ -122.305341, 37.898427 ], [ -122.304611, 37.898427 ], [ -122.303753, 37.898528 ], [ -122.301650, 37.898528 ], [ -122.300920, 37.896022 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.898528 ], [ -122.300920, 37.896022 ], [ -122.302637, 37.895684 ], [ -122.302036, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894532 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.891620 ], [ -122.303452, 37.890536 ], [ -122.303753, 37.890197 ], [ -122.303967, 37.890062 ], [ -122.304440, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.306714, 37.891721 ], [ -122.306714, 37.892026 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308989, 37.897987 ], [ -122.308817, 37.898054 ], [ -122.306199, 37.898258 ], [ -122.305341, 37.898427 ], [ -122.304611, 37.898427 ], [ -122.303753, 37.898528 ], [ -122.301650, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891789 ], [ -122.303109, 37.891620 ], [ -122.303495, 37.892839 ], [ -122.303152, 37.893550 ], [ -122.303109, 37.894532 ], [ -122.302251, 37.891789 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.894532 ], [ -122.302251, 37.891789 ], [ -122.303109, 37.891620 ], [ -122.303495, 37.892839 ], [ -122.303152, 37.893550 ], [ -122.303109, 37.894532 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895684 ], [ -122.301779, 37.895853 ], [ -122.301178, 37.893990 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895853 ], [ -122.301178, 37.893990 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895684 ], [ -122.301779, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896700 ], [ -122.301006, 37.896700 ], [ -122.300792, 37.896056 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896700 ], [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896700 ], [ -122.301006, 37.896700 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895074 ], [ -122.300620, 37.895074 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ], [ -122.300491, 37.895074 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300491, 37.895074 ], [ -122.300620, 37.895074 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895277 ], [ -122.300491, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.301006, 37.896700 ], [ -122.300148, 37.896869 ], [ -122.299633, 37.895277 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895277 ], [ -122.300491, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.301006, 37.896700 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.895074 ], [ -122.300363, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896022 ], [ -122.300620, 37.895074 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.300620, 37.895074 ], [ -122.300363, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896022 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891958 ], [ -122.302251, 37.891789 ], [ -122.302852, 37.893652 ], [ -122.302036, 37.893821 ], [ -122.301435, 37.891958 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301435, 37.891958 ], [ -122.302251, 37.891789 ], [ -122.302852, 37.893652 ], [ -122.302036, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.301435, 37.891958 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.893990 ], [ -122.300577, 37.892128 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.300577, 37.892128 ], [ -122.301435, 37.891958 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.893990 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.300105, 37.893449 ], [ -122.300577, 37.894871 ], [ -122.300620, 37.895074 ], [ -122.300491, 37.895074 ], [ -122.299976, 37.893482 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895074 ], [ -122.299976, 37.893482 ], [ -122.300105, 37.893449 ], [ -122.300577, 37.894871 ], [ -122.300620, 37.895074 ], [ -122.300491, 37.895074 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.893449 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.893990 ], [ -122.300363, 37.894160 ], [ -122.300105, 37.893449 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300363, 37.894160 ], [ -122.300105, 37.893449 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.893990 ], [ -122.300363, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892331 ], [ -122.299719, 37.892297 ], [ -122.300105, 37.893449 ], [ -122.299976, 37.893482 ], [ -122.299590, 37.892331 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.299590, 37.892331 ], [ -122.299719, 37.892297 ], [ -122.300105, 37.893449 ], [ -122.299976, 37.893482 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327442, 37.889147 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327056, 37.888707 ], [ -122.325468, 37.888097 ], [ -122.324910, 37.887928 ], [ -122.324610, 37.887894 ], [ -122.322936, 37.888301 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889080 ], [ -122.322550, 37.889317 ], [ -122.322249, 37.889384 ], [ -122.321949, 37.889418 ], [ -122.321348, 37.889283 ], [ -122.320919, 37.889249 ], [ -122.319632, 37.889452 ], [ -122.317271, 37.889283 ], [ -122.316842, 37.888944 ], [ -122.316756, 37.888741 ], [ -122.316070, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316499, 37.886133 ], [ -122.316456, 37.885964 ], [ -122.315984, 37.885964 ], [ -122.316027, 37.885659 ], [ -122.316885, 37.885659 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885523 ], [ -122.316113, 37.885456 ], [ -122.315726, 37.885286 ], [ -122.315469, 37.884710 ], [ -122.315683, 37.884304 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315340, 37.884067 ], [ -122.315040, 37.883965 ], [ -122.314396, 37.883389 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313623, 37.882441 ], [ -122.313066, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327657, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889689 ], [ -122.327442, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889689 ], [ -122.327442, 37.889147 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327056, 37.888707 ], [ -122.325468, 37.888097 ], [ -122.324910, 37.887928 ], [ -122.324610, 37.887894 ], [ -122.322936, 37.888301 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889080 ], [ -122.322550, 37.889317 ], [ -122.322249, 37.889384 ], [ -122.321949, 37.889418 ], [ -122.321348, 37.889283 ], [ -122.320919, 37.889249 ], [ -122.319632, 37.889452 ], [ -122.317271, 37.889283 ], [ -122.316842, 37.888944 ], [ -122.316756, 37.888741 ], [ -122.316070, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316499, 37.886133 ], [ -122.316456, 37.885964 ], [ -122.315984, 37.885964 ], [ -122.316027, 37.885659 ], [ -122.316885, 37.885659 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885523 ], [ -122.316113, 37.885456 ], [ -122.315726, 37.885286 ], [ -122.315469, 37.884710 ], [ -122.315683, 37.884304 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315340, 37.884067 ], [ -122.315040, 37.883965 ], [ -122.314396, 37.883389 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313623, 37.882441 ], [ -122.313066, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327657, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889689 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.315812, 37.889520 ], [ -122.315598, 37.889655 ], [ -122.311263, 37.889452 ], [ -122.310190, 37.888538 ], [ -122.309804, 37.888064 ], [ -122.309375, 37.887691 ], [ -122.309289, 37.887894 ], [ -122.309246, 37.887860 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887183 ], [ -122.309546, 37.886980 ], [ -122.309546, 37.886472 ], [ -122.308903, 37.884033 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882306 ], [ -122.312465, 37.881391 ], [ -122.313066, 37.882204 ], [ -122.313623, 37.882441 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314396, 37.883389 ], [ -122.315040, 37.883965 ], [ -122.315340, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884304 ], [ -122.315469, 37.884710 ], [ -122.315726, 37.885286 ], [ -122.316113, 37.885456 ], [ -122.316027, 37.885523 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885659 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316499, 37.886133 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316070, 37.887928 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888944 ], [ -122.317271, 37.889283 ], [ -122.319632, 37.889452 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889283 ], [ -122.321949, 37.889418 ], [ -122.322249, 37.889384 ], [ -122.322550, 37.889317 ], [ -122.322850, 37.889080 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888301 ], [ -122.324610, 37.887894 ], [ -122.324910, 37.887928 ], [ -122.325468, 37.888097 ], [ -122.327056, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.889147 ], [ -122.327571, 37.889689 ], [ -122.315812, 37.889520 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889689 ], [ -122.315812, 37.889520 ], [ -122.315598, 37.889655 ], [ -122.311263, 37.889452 ], [ -122.310190, 37.888538 ], [ -122.309804, 37.888064 ], [ -122.309375, 37.887691 ], [ -122.309289, 37.887894 ], [ -122.309246, 37.887860 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887183 ], [ -122.309546, 37.886980 ], [ -122.309546, 37.886472 ], [ -122.308903, 37.884033 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882306 ], [ -122.312465, 37.881391 ], [ -122.313066, 37.882204 ], [ -122.313623, 37.882441 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314396, 37.883389 ], [ -122.315040, 37.883965 ], [ -122.315340, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884304 ], [ -122.315469, 37.884710 ], [ -122.315726, 37.885286 ], [ -122.316113, 37.885456 ], [ -122.316027, 37.885523 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885659 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316499, 37.886133 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316070, 37.887928 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888944 ], [ -122.317271, 37.889283 ], [ -122.319632, 37.889452 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889283 ], [ -122.321949, 37.889418 ], [ -122.322249, 37.889384 ], [ -122.322550, 37.889317 ], [ -122.322850, 37.889080 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888301 ], [ -122.324610, 37.887894 ], [ -122.324910, 37.887928 ], [ -122.325468, 37.888097 ], [ -122.327056, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.889147 ], [ -122.327571, 37.889689 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309632, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887894 ], [ -122.309375, 37.887691 ], [ -122.309804, 37.888064 ], [ -122.309804, 37.888131 ], [ -122.309632, 37.888030 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309804, 37.888131 ], [ -122.309632, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887894 ], [ -122.309375, 37.887691 ], [ -122.309804, 37.888064 ], [ -122.309804, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.308989, 37.888775 ], [ -122.309074, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.888775 ], [ -122.309074, 37.887454 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.308989, 37.888775 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.889215 ], [ -122.308559, 37.888301 ], [ -122.308559, 37.887556 ], [ -122.308645, 37.887352 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888775 ], [ -122.308345, 37.890096 ], [ -122.308345, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.890096 ], [ -122.308345, 37.889215 ], [ -122.308559, 37.888301 ], [ -122.308559, 37.887556 ], [ -122.308645, 37.887352 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888775 ], [ -122.308345, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890265 ], [ -122.306628, 37.890197 ], [ -122.306328, 37.890096 ], [ -122.306156, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890807 ], [ -122.306242, 37.890265 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890807 ], [ -122.306242, 37.890265 ], [ -122.306628, 37.890197 ], [ -122.306328, 37.890096 ], [ -122.306156, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890807 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.889926 ], [ -122.306328, 37.890096 ], [ -122.306628, 37.890197 ], [ -122.306242, 37.890265 ], [ -122.306156, 37.889926 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890265 ], [ -122.306156, 37.889926 ], [ -122.306328, 37.890096 ], [ -122.306628, 37.890197 ], [ -122.306242, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889520 ], [ -122.308517, 37.887657 ], [ -122.308559, 37.888301 ], [ -122.308388, 37.889012 ], [ -122.308345, 37.890096 ], [ -122.307916, 37.890976 ], [ -122.307529, 37.889520 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307916, 37.890976 ], [ -122.307529, 37.889520 ], [ -122.308517, 37.887657 ], [ -122.308559, 37.888301 ], [ -122.308388, 37.889012 ], [ -122.308345, 37.890096 ], [ -122.307916, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307229, 37.887217 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887352 ], [ -122.308602, 37.887454 ], [ -122.307701, 37.889181 ], [ -122.307229, 37.887217 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889181 ], [ -122.307229, 37.887217 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887352 ], [ -122.308602, 37.887454 ], [ -122.307701, 37.889181 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305856, 37.888978 ], [ -122.307315, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ], [ -122.305856, 37.888978 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306027, 37.889588 ], [ -122.305856, 37.888978 ], [ -122.307315, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305856, 37.888978 ], [ -122.304997, 37.889147 ], [ -122.304955, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304997, 37.889147 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305856, 37.888978 ], [ -122.304997, 37.889147 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.307315, 37.888639 ], [ -122.307315, 37.888673 ], [ -122.305856, 37.888978 ], [ -122.305813, 37.888910 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305856, 37.888978 ], [ -122.305813, 37.888910 ], [ -122.307315, 37.888639 ], [ -122.307315, 37.888673 ], [ -122.305856, 37.888978 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888267 ], [ -122.307143, 37.887962 ], [ -122.307315, 37.888639 ], [ -122.305813, 37.888910 ], [ -122.305598, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.305598, 37.888267 ], [ -122.307143, 37.887962 ], [ -122.307315, 37.888639 ], [ -122.305813, 37.888910 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306972, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.307229, 37.887217 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889520 ], [ -122.306972, 37.887488 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889520 ], [ -122.306972, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.307229, 37.887217 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889520 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308989, 37.887352 ], [ -122.309074, 37.887454 ], [ -122.308645, 37.887352 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308645, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308989, 37.887352 ], [ -122.309074, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308860, 37.886472 ], [ -122.309031, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309289, 37.887318 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.887352 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308989, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308860, 37.886472 ], [ -122.309031, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309289, 37.887318 ], [ -122.309074, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.886844 ], [ -122.309289, 37.886336 ], [ -122.309031, 37.885151 ], [ -122.308645, 37.883491 ], [ -122.308903, 37.884033 ], [ -122.309546, 37.886472 ], [ -122.309546, 37.887081 ], [ -122.309289, 37.887318 ], [ -122.309332, 37.886844 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309289, 37.887318 ], [ -122.309332, 37.886844 ], [ -122.309289, 37.886336 ], [ -122.309031, 37.885151 ], [ -122.308645, 37.883491 ], [ -122.308903, 37.884033 ], [ -122.309546, 37.886472 ], [ -122.309546, 37.887081 ], [ -122.309289, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887115 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886743 ], [ -122.307830, 37.882035 ], [ -122.308388, 37.882204 ], [ -122.308645, 37.883491 ], [ -122.309031, 37.885151 ], [ -122.308860, 37.886472 ], [ -122.308688, 37.887217 ], [ -122.308044, 37.887115 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308688, 37.887217 ], [ -122.308044, 37.887115 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886743 ], [ -122.307830, 37.882035 ], [ -122.308388, 37.882204 ], [ -122.308645, 37.883491 ], [ -122.309031, 37.885151 ], [ -122.308860, 37.886472 ], [ -122.308688, 37.887217 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308517, 37.887318 ], [ -122.307873, 37.887217 ], [ -122.307229, 37.887217 ], [ -122.307229, 37.887081 ], [ -122.308044, 37.887115 ], [ -122.308688, 37.887217 ], [ -122.308645, 37.887352 ], [ -122.308517, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887352 ], [ -122.308517, 37.887318 ], [ -122.307873, 37.887217 ], [ -122.307229, 37.887217 ], [ -122.307229, 37.887081 ], [ -122.308044, 37.887115 ], [ -122.308688, 37.887217 ], [ -122.308645, 37.887352 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305341, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.306070, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307014, 37.887522 ], [ -122.307143, 37.887962 ], [ -122.305598, 37.888267 ], [ -122.305341, 37.887488 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888267 ], [ -122.305341, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.306070, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307014, 37.887522 ], [ -122.307143, 37.887962 ], [ -122.305598, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307100, 37.886878 ], [ -122.306199, 37.883288 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881899 ], [ -122.307315, 37.881933 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882035 ], [ -122.307358, 37.886743 ], [ -122.307229, 37.887081 ], [ -122.307186, 37.887081 ], [ -122.307100, 37.886878 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.887081 ], [ -122.307100, 37.886878 ], [ -122.306199, 37.883288 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881899 ], [ -122.307315, 37.881933 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882035 ], [ -122.307358, 37.886743 ], [ -122.307229, 37.887081 ], [ -122.307186, 37.887081 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.303324, 37.889452 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.890841 ], [ -122.303109, 37.891620 ], [ -122.302465, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.891620 ], [ -122.302465, 37.889622 ], [ -122.303324, 37.889452 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.890841 ], [ -122.303109, 37.891620 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889452 ], [ -122.305856, 37.888978 ], [ -122.306027, 37.889588 ], [ -122.304182, 37.889994 ], [ -122.303753, 37.890197 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890367 ], [ -122.303324, 37.889452 ], [ -122.305856, 37.888978 ], [ -122.306027, 37.889588 ], [ -122.304182, 37.889994 ], [ -122.303753, 37.890197 ], [ -122.303581, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304997, 37.889147 ], [ -122.304139, 37.889283 ], [ -122.304139, 37.889249 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889283 ], [ -122.304139, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304997, 37.889147 ], [ -122.304139, 37.889283 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304482, 37.887522 ], [ -122.305341, 37.887488 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ], [ -122.304482, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304482, 37.887522 ], [ -122.305341, 37.887488 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887556 ], [ -122.304482, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304139, 37.889249 ], [ -122.303581, 37.887556 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889249 ], [ -122.303581, 37.887556 ], [ -122.304482, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304139, 37.889249 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889418 ], [ -122.304139, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303324, 37.889452 ], [ -122.303281, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889452 ], [ -122.303281, 37.889418 ], [ -122.304139, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303324, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889588 ], [ -122.303281, 37.889418 ], [ -122.303324, 37.889452 ], [ -122.302465, 37.889622 ], [ -122.302465, 37.889588 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.302465, 37.889588 ], [ -122.303281, 37.889418 ], [ -122.303324, 37.889452 ], [ -122.302465, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304139, 37.889249 ], [ -122.303281, 37.889418 ], [ -122.302723, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889418 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304139, 37.889249 ], [ -122.303281, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303109, 37.891620 ], [ -122.302251, 37.891789 ], [ -122.301650, 37.889791 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891789 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303109, 37.891620 ], [ -122.302251, 37.891789 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.302251, 37.891789 ], [ -122.301435, 37.891958 ], [ -122.300792, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891958 ], [ -122.300792, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.302251, 37.891789 ], [ -122.301435, 37.891958 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.891823 ], [ -122.299075, 37.890265 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892297 ], [ -122.299547, 37.891823 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892297 ], [ -122.299547, 37.891823 ], [ -122.299075, 37.890265 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.300792, 37.889960 ], [ -122.301435, 37.891958 ], [ -122.300577, 37.892128 ], [ -122.299933, 37.890130 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.299933, 37.890130 ], [ -122.300792, 37.889960 ], [ -122.301435, 37.891958 ], [ -122.300577, 37.892128 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301822, 37.887623 ], [ -122.302723, 37.887589 ], [ -122.303281, 37.889418 ], [ -122.302465, 37.889588 ], [ -122.301822, 37.887623 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889588 ], [ -122.301822, 37.887623 ], [ -122.302723, 37.887589 ], [ -122.303281, 37.889418 ], [ -122.302465, 37.889588 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300706, 37.887759 ], [ -122.301822, 37.887623 ], [ -122.302465, 37.889588 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ], [ -122.300706, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.300706, 37.887759 ], [ -122.301822, 37.887623 ], [ -122.302465, 37.889588 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890096 ], [ -122.300792, 37.889926 ], [ -122.300792, 37.889960 ], [ -122.299933, 37.890130 ], [ -122.299933, 37.890096 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.299933, 37.890096 ], [ -122.300792, 37.889926 ], [ -122.300792, 37.889960 ], [ -122.299933, 37.890130 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300062, 37.887725 ], [ -122.300706, 37.887759 ], [ -122.301650, 37.889791 ], [ -122.300792, 37.889960 ], [ -122.300062, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300706, 37.887759 ], [ -122.301650, 37.889791 ], [ -122.300792, 37.889960 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299204, 37.887759 ], [ -122.300062, 37.887725 ], [ -122.300792, 37.889926 ], [ -122.299933, 37.890096 ], [ -122.299204, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890096 ], [ -122.299204, 37.887759 ], [ -122.300062, 37.887725 ], [ -122.300792, 37.889926 ], [ -122.299933, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302079, 37.887522 ], [ -122.305856, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307229, 37.887217 ], [ -122.305427, 37.887488 ], [ -122.302208, 37.887623 ], [ -122.302122, 37.887623 ], [ -122.302079, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302122, 37.887623 ], [ -122.302079, 37.887522 ], [ -122.305856, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307229, 37.887217 ], [ -122.305427, 37.887488 ], [ -122.302208, 37.887623 ], [ -122.302122, 37.887623 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300963, 37.887657 ], [ -122.300534, 37.886336 ], [ -122.302337, 37.886031 ], [ -122.304611, 37.885862 ], [ -122.304482, 37.885354 ], [ -122.306800, 37.885591 ], [ -122.307186, 37.887081 ], [ -122.305856, 37.887318 ], [ -122.302079, 37.887522 ], [ -122.302122, 37.887623 ], [ -122.300706, 37.887759 ], [ -122.300963, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300706, 37.887759 ], [ -122.300963, 37.887657 ], [ -122.300534, 37.886336 ], [ -122.302337, 37.886031 ], [ -122.304611, 37.885862 ], [ -122.304482, 37.885354 ], [ -122.306800, 37.885591 ], [ -122.307186, 37.887081 ], [ -122.305856, 37.887318 ], [ -122.302079, 37.887522 ], [ -122.302122, 37.887623 ], [ -122.300706, 37.887759 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884744 ], [ -122.303624, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304611, 37.885862 ], [ -122.304225, 37.885896 ], [ -122.303925, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304225, 37.885896 ], [ -122.303925, 37.884744 ], [ -122.303624, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304611, 37.885862 ], [ -122.304225, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304482, 37.885354 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303452, 37.882881 ], [ -122.302637, 37.883085 ], [ -122.302380, 37.882509 ], [ -122.302766, 37.882475 ], [ -122.303324, 37.882306 ], [ -122.305255, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306800, 37.885591 ], [ -122.304482, 37.885354 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306800, 37.885591 ], [ -122.304482, 37.885354 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303452, 37.882881 ], [ -122.302637, 37.883085 ], [ -122.302380, 37.882509 ], [ -122.302766, 37.882475 ], [ -122.303324, 37.882306 ], [ -122.305255, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306800, 37.885591 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.883728 ], [ -122.303624, 37.883660 ], [ -122.304225, 37.885896 ], [ -122.303967, 37.885896 ], [ -122.303324, 37.883728 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303967, 37.885896 ], [ -122.303324, 37.883728 ], [ -122.303624, 37.883660 ], [ -122.304225, 37.885896 ], [ -122.303967, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.303967, 37.885896 ], [ -122.303452, 37.885964 ], [ -122.302980, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303452, 37.885964 ], [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.303967, 37.885896 ], [ -122.303452, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.884440 ], [ -122.299933, 37.884067 ], [ -122.299805, 37.884101 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.301006, 37.883423 ], [ -122.301006, 37.883356 ], [ -122.302079, 37.883119 ], [ -122.302637, 37.883085 ], [ -122.302980, 37.883796 ], [ -122.303452, 37.885964 ], [ -122.301822, 37.886099 ], [ -122.300534, 37.886336 ], [ -122.299933, 37.884440 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300534, 37.886336 ], [ -122.299933, 37.884440 ], [ -122.299933, 37.884067 ], [ -122.299805, 37.884101 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.301006, 37.883423 ], [ -122.301006, 37.883356 ], [ -122.302079, 37.883119 ], [ -122.302637, 37.883085 ], [ -122.302980, 37.883796 ], [ -122.303452, 37.885964 ], [ -122.301822, 37.886099 ], [ -122.300534, 37.886336 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302637, 37.883085 ], [ -122.303452, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302980, 37.883796 ], [ -122.302637, 37.883085 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.302637, 37.883085 ], [ -122.303452, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302980, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300363, 37.883254 ], [ -122.300277, 37.883119 ], [ -122.300234, 37.882881 ], [ -122.301092, 37.882780 ], [ -122.302337, 37.882509 ], [ -122.302637, 37.883085 ], [ -122.302079, 37.883119 ], [ -122.301006, 37.883356 ], [ -122.301006, 37.883423 ], [ -122.300363, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883423 ], [ -122.300363, 37.883254 ], [ -122.300277, 37.883119 ], [ -122.300234, 37.882881 ], [ -122.301092, 37.882780 ], [ -122.302337, 37.882509 ], [ -122.302637, 37.883085 ], [ -122.302079, 37.883119 ], [ -122.301006, 37.883356 ], [ -122.301006, 37.883423 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298474, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.299418, 37.898325 ], [ -122.298861, 37.898495 ], [ -122.298474, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298474, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.299418, 37.898325 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897411 ], [ -122.298474, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298045, 37.898766 ], [ -122.297616, 37.897411 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898766 ], [ -122.297616, 37.897411 ], [ -122.298474, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298045, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.297616, 37.897411 ], [ -122.298045, 37.898766 ], [ -122.297788, 37.898833 ], [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ], [ -122.297616, 37.897411 ], [ -122.298045, 37.898766 ], [ -122.297788, 37.898833 ], [ -122.297230, 37.898901 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.897783 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296243, 37.898935 ], [ -122.295728, 37.897783 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.898935 ], [ -122.295728, 37.897783 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296243, 37.898935 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895955 ], [ -122.297101, 37.895785 ], [ -122.297616, 37.897411 ], [ -122.296801, 37.897546 ], [ -122.296286, 37.895955 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895955 ], [ -122.297101, 37.895785 ], [ -122.297616, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896090 ], [ -122.296286, 37.895955 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ], [ -122.295427, 37.896090 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295942, 37.897750 ], [ -122.295427, 37.896090 ], [ -122.296286, 37.895955 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.294612, 37.897750 ], [ -122.295728, 37.897783 ], [ -122.296243, 37.898935 ], [ -122.294569, 37.898766 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.898935 ], [ -122.294569, 37.898766 ], [ -122.294612, 37.897750 ], [ -122.295728, 37.897783 ], [ -122.296243, 37.898935 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299633, 37.895277 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895277 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297959, 37.895616 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298474, 37.897208 ], [ -122.297959, 37.895616 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298474, 37.897208 ], [ -122.297959, 37.895616 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298474, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299075, 37.893652 ], [ -122.299633, 37.895277 ], [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299075, 37.893652 ], [ -122.299633, 37.895277 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297101, 37.895785 ], [ -122.297959, 37.895616 ], [ -122.298474, 37.897208 ], [ -122.297616, 37.897411 ], [ -122.297101, 37.895785 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897411 ], [ -122.297101, 37.895785 ], [ -122.297959, 37.895616 ], [ -122.298474, 37.897208 ], [ -122.297616, 37.897411 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297444, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297959, 37.895616 ], [ -122.297444, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297959, 37.895616 ], [ -122.297444, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297959, 37.895616 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296586, 37.894126 ], [ -122.297444, 37.893957 ], [ -122.297959, 37.895616 ], [ -122.297101, 37.895785 ], [ -122.296586, 37.894126 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297101, 37.895785 ], [ -122.296586, 37.894126 ], [ -122.297444, 37.893957 ], [ -122.297959, 37.895616 ], [ -122.297101, 37.895785 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893652 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895074 ], [ -122.299633, 37.895277 ], [ -122.299075, 37.893652 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895277 ], [ -122.299075, 37.893652 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895074 ], [ -122.299633, 37.895277 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299075, 37.893652 ], [ -122.298560, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893652 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299075, 37.893652 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893652 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893652 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.892365 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297444, 37.893957 ], [ -122.296929, 37.892365 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297444, 37.893957 ], [ -122.296929, 37.892365 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297444, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.296586, 37.894126 ], [ -122.297101, 37.895785 ], [ -122.296286, 37.895955 ], [ -122.295771, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895955 ], [ -122.295771, 37.894295 ], [ -122.296586, 37.894126 ], [ -122.297101, 37.895785 ], [ -122.296286, 37.895955 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897783 ], [ -122.294655, 37.894532 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897783 ], [ -122.294655, 37.894532 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897783 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294612, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295728, 37.897783 ], [ -122.294612, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.897783 ], [ -122.294612, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295728, 37.897783 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895955 ], [ -122.295427, 37.896090 ], [ -122.294912, 37.894498 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896090 ], [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895955 ], [ -122.295427, 37.896090 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892704 ], [ -122.296071, 37.892534 ], [ -122.296586, 37.894126 ], [ -122.295771, 37.894295 ], [ -122.295256, 37.892704 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.295256, 37.892704 ], [ -122.296071, 37.892534 ], [ -122.296586, 37.894126 ], [ -122.295771, 37.894295 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892534 ], [ -122.296929, 37.892365 ], [ -122.297444, 37.893957 ], [ -122.296586, 37.894126 ], [ -122.296071, 37.892534 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296586, 37.894126 ], [ -122.296071, 37.892534 ], [ -122.296929, 37.892365 ], [ -122.297444, 37.893957 ], [ -122.296586, 37.894126 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892873 ], [ -122.295256, 37.892704 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ], [ -122.294354, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.294354, 37.892873 ], [ -122.295256, 37.892704 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.294354, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894532 ], [ -122.294140, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294140, 37.892873 ], [ -122.294354, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894532 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898664 ], [ -122.293754, 37.897716 ], [ -122.294612, 37.897750 ], [ -122.294569, 37.898766 ], [ -122.293711, 37.898664 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.293711, 37.898664 ], [ -122.293754, 37.897716 ], [ -122.294612, 37.897750 ], [ -122.294569, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.898427 ], [ -122.292852, 37.898393 ], [ -122.292852, 37.897716 ], [ -122.293754, 37.897716 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898664 ], [ -122.293196, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898664 ], [ -122.293196, 37.898427 ], [ -122.292852, 37.898393 ], [ -122.292852, 37.897716 ], [ -122.293754, 37.897716 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898664 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.292638, 37.897716 ], [ -122.292852, 37.897716 ], [ -122.292852, 37.898393 ], [ -122.292681, 37.898359 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898393 ], [ -122.292681, 37.898359 ], [ -122.292638, 37.897716 ], [ -122.292852, 37.897716 ], [ -122.292852, 37.898393 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897716 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.896734 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.897716 ], [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897716 ], [ -122.292638, 37.897716 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291994, 37.898258 ], [ -122.291608, 37.898122 ], [ -122.291737, 37.896700 ], [ -122.292681, 37.896734 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.898359 ], [ -122.291994, 37.898258 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.291994, 37.898258 ], [ -122.291608, 37.898122 ], [ -122.291737, 37.896700 ], [ -122.292681, 37.896734 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.898359 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.897953 ], [ -122.290750, 37.897919 ], [ -122.290835, 37.896666 ], [ -122.291737, 37.896700 ], [ -122.291608, 37.898122 ], [ -122.291093, 37.897953 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291608, 37.898122 ], [ -122.291093, 37.897953 ], [ -122.290750, 37.897919 ], [ -122.290835, 37.896666 ], [ -122.291737, 37.896700 ], [ -122.291608, 37.898122 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.897851 ], [ -122.289977, 37.896666 ], [ -122.290835, 37.896666 ], [ -122.290750, 37.897919 ], [ -122.289891, 37.897851 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290750, 37.897919 ], [ -122.289891, 37.897851 ], [ -122.289977, 37.896666 ], [ -122.290835, 37.896666 ], [ -122.290750, 37.897919 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.289977, 37.896666 ], [ -122.289891, 37.897851 ], [ -122.289033, 37.897885 ], [ -122.289119, 37.896632 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289033, 37.897885 ], [ -122.289119, 37.896632 ], [ -122.289977, 37.896666 ], [ -122.289891, 37.897851 ], [ -122.289033, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293754, 37.897716 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294612, 37.897750 ], [ -122.293754, 37.897716 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294612, 37.897750 ], [ -122.293754, 37.897716 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294612, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894871 ], [ -122.293882, 37.894702 ], [ -122.293839, 37.895311 ], [ -122.293754, 37.897716 ], [ -122.292852, 37.897716 ], [ -122.293024, 37.894871 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897716 ], [ -122.293024, 37.894871 ], [ -122.293882, 37.894702 ], [ -122.293839, 37.895311 ], [ -122.293754, 37.897716 ], [ -122.292852, 37.897716 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894871 ], [ -122.293024, 37.894871 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292767, 37.894871 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292767, 37.894871 ], [ -122.293024, 37.894871 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894702 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892839 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894871 ], [ -122.293110, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894871 ], [ -122.293110, 37.892839 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892839 ], [ -122.293110, 37.892839 ], [ -122.293024, 37.894871 ], [ -122.292767, 37.894871 ], [ -122.292852, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894871 ], [ -122.292852, 37.892839 ], [ -122.293110, 37.892839 ], [ -122.293024, 37.894871 ], [ -122.292767, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892839 ], [ -122.292852, 37.892839 ], [ -122.292767, 37.894871 ], [ -122.291822, 37.894871 ], [ -122.291908, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894871 ], [ -122.291908, 37.892839 ], [ -122.292852, 37.892839 ], [ -122.292767, 37.894871 ], [ -122.291822, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290063, 37.894803 ], [ -122.292767, 37.894871 ], [ -122.292681, 37.896734 ], [ -122.289977, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.289977, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290063, 37.894803 ], [ -122.292767, 37.894871 ], [ -122.292681, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894803 ], [ -122.289977, 37.896666 ], [ -122.289119, 37.896632 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896666 ], [ -122.289119, 37.896632 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894803 ], [ -122.289977, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894837 ], [ -122.291007, 37.892941 ], [ -122.291908, 37.892974 ], [ -122.291822, 37.894871 ], [ -122.290921, 37.894837 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894871 ], [ -122.290921, 37.894837 ], [ -122.291007, 37.892941 ], [ -122.291908, 37.892974 ], [ -122.291822, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894803 ], [ -122.290149, 37.892907 ], [ -122.291007, 37.892941 ], [ -122.290921, 37.894837 ], [ -122.290063, 37.894803 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894837 ], [ -122.290063, 37.894803 ], [ -122.290149, 37.892907 ], [ -122.291007, 37.892941 ], [ -122.290921, 37.894837 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.289290, 37.892907 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894803 ], [ -122.289205, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894803 ], [ -122.289205, 37.894769 ], [ -122.289290, 37.892907 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894803 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.289119, 37.896632 ], [ -122.289033, 37.897885 ], [ -122.288518, 37.897953 ], [ -122.288175, 37.898122 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.898122 ], [ -122.288218, 37.896598 ], [ -122.289119, 37.896632 ], [ -122.289033, 37.897885 ], [ -122.288518, 37.897953 ], [ -122.288175, 37.898122 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897817 ], [ -122.288175, 37.898122 ], [ -122.288132, 37.898156 ], [ -122.288175, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898156 ], [ -122.288175, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897817 ], [ -122.288175, 37.898122 ], [ -122.288132, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.288175, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287145, 37.898664 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.898664 ], [ -122.287273, 37.896564 ], [ -122.288175, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287145, 37.898664 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287145, 37.898156 ], [ -122.287145, 37.898664 ], [ -122.286973, 37.898732 ], [ -122.287016, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286973, 37.898732 ], [ -122.287016, 37.898156 ], [ -122.287145, 37.898156 ], [ -122.287145, 37.898664 ], [ -122.286973, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ], [ -122.287102, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287102, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289119, 37.896632 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289119, 37.896632 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.896598 ], [ -122.288260, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.288260, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.287359, 37.894736 ], [ -122.288260, 37.894736 ], [ -122.288175, 37.896598 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.287273, 37.896564 ], [ -122.287359, 37.894736 ], [ -122.288260, 37.894736 ], [ -122.288175, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287273, 37.896564 ], [ -122.287102, 37.896564 ], [ -122.287145, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896564 ], [ -122.287145, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287273, 37.896564 ], [ -122.287102, 37.896564 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894736 ], [ -122.288432, 37.892873 ], [ -122.289290, 37.892907 ], [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ], [ -122.288432, 37.892873 ], [ -122.289290, 37.892907 ], [ -122.289205, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.288432, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288260, 37.894736 ], [ -122.288346, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.894736 ], [ -122.288346, 37.892873 ], [ -122.288432, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288260, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892839 ], [ -122.288346, 37.892873 ], [ -122.288260, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287445, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894736 ], [ -122.287445, 37.892839 ], [ -122.288346, 37.892873 ], [ -122.288260, 37.894736 ], [ -122.287359, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892839 ], [ -122.287445, 37.892839 ], [ -122.287359, 37.894736 ], [ -122.287145, 37.894736 ], [ -122.287188, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894736 ], [ -122.287188, 37.892839 ], [ -122.287445, 37.892839 ], [ -122.287359, 37.894736 ], [ -122.287145, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.299547, 37.891823 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892331 ], [ -122.299418, 37.891823 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892331 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891823 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298946, 37.890299 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ], [ -122.298946, 37.890299 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.299075, 37.890265 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891823 ], [ -122.299418, 37.891823 ], [ -122.298946, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.298946, 37.890299 ], [ -122.299075, 37.890265 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891823 ], [ -122.299418, 37.891823 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.299290, 37.890197 ], [ -122.299933, 37.890096 ], [ -122.299933, 37.890130 ], [ -122.299333, 37.890265 ], [ -122.299075, 37.890265 ], [ -122.299032, 37.890197 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.890265 ], [ -122.299032, 37.890197 ], [ -122.299290, 37.890197 ], [ -122.299933, 37.890096 ], [ -122.299933, 37.890130 ], [ -122.299333, 37.890265 ], [ -122.299075, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890265 ], [ -122.298946, 37.890231 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890333 ], [ -122.298045, 37.890333 ], [ -122.298045, 37.890265 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298045, 37.890265 ], [ -122.298946, 37.890231 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890333 ], [ -122.298045, 37.890333 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298174, 37.890671 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298174, 37.890671 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890333 ], [ -122.298045, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ], [ -122.297144, 37.890333 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.297144, 37.890333 ], [ -122.298045, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.299204, 37.887759 ], [ -122.299933, 37.890096 ], [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ], [ -122.299204, 37.887759 ], [ -122.299933, 37.890096 ], [ -122.299032, 37.890197 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298131, 37.887793 ], [ -122.298260, 37.887759 ], [ -122.299075, 37.890265 ], [ -122.298946, 37.890299 ], [ -122.298131, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298131, 37.887793 ], [ -122.298260, 37.887759 ], [ -122.299075, 37.890265 ], [ -122.298946, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297831, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297788, 37.886743 ], [ -122.297788, 37.886675 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298045, 37.890265 ], [ -122.297831, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890265 ], [ -122.297831, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297788, 37.886743 ], [ -122.297788, 37.886675 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298045, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892196 ], [ -122.296929, 37.892365 ], [ -122.296286, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.892365 ], [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892196 ], [ -122.296929, 37.892365 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890468 ], [ -122.296286, 37.890434 ], [ -122.296929, 37.892365 ], [ -122.296071, 37.892534 ], [ -122.295427, 37.890468 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892534 ], [ -122.295427, 37.890468 ], [ -122.296286, 37.890434 ], [ -122.296929, 37.892365 ], [ -122.296071, 37.892534 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.297144, 37.890333 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890401 ], [ -122.296286, 37.890434 ], [ -122.296286, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.297144, 37.890333 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890401 ], [ -122.296286, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295599, 37.890468 ], [ -122.295384, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295599, 37.890468 ], [ -122.295384, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295599, 37.890468 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294526, 37.890536 ], [ -122.295427, 37.890468 ], [ -122.296071, 37.892534 ], [ -122.295256, 37.892704 ], [ -122.294526, 37.890536 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892704 ], [ -122.294526, 37.890536 ], [ -122.295427, 37.890468 ], [ -122.296071, 37.892534 ], [ -122.295256, 37.892704 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294526, 37.890536 ], [ -122.295256, 37.892704 ], [ -122.294354, 37.892873 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294526, 37.890536 ], [ -122.295256, 37.892704 ], [ -122.294354, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294526, 37.890502 ], [ -122.295384, 37.890434 ], [ -122.295427, 37.890468 ], [ -122.294698, 37.890536 ], [ -122.294526, 37.890502 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294698, 37.890536 ], [ -122.294526, 37.890502 ], [ -122.295384, 37.890434 ], [ -122.295427, 37.890468 ], [ -122.294698, 37.890536 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887081 ], [ -122.296929, 37.886878 ], [ -122.298045, 37.890265 ], [ -122.297144, 37.890333 ], [ -122.296114, 37.887081 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890333 ], [ -122.296114, 37.887081 ], [ -122.296929, 37.886878 ], [ -122.298045, 37.890265 ], [ -122.297144, 37.890333 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.296114, 37.887081 ], [ -122.297144, 37.890333 ], [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ], [ -122.296114, 37.887081 ], [ -122.297144, 37.890333 ], [ -122.296286, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294440, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295384, 37.890434 ], [ -122.294440, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.294440, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295384, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294440, 37.887386 ], [ -122.295384, 37.890434 ], [ -122.294526, 37.890502 ], [ -122.293582, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294526, 37.890502 ], [ -122.293582, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294440, 37.887386 ], [ -122.295384, 37.890434 ], [ -122.294526, 37.890502 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299590, 37.887488 ], [ -122.300191, 37.887623 ], [ -122.300963, 37.887657 ], [ -122.300706, 37.887759 ], [ -122.298260, 37.887759 ], [ -122.297916, 37.886709 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299590, 37.887488 ], [ -122.300191, 37.887623 ], [ -122.300963, 37.887657 ], [ -122.300706, 37.887759 ], [ -122.298260, 37.887759 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300191, 37.887623 ], [ -122.299590, 37.887488 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297273, 37.884609 ], [ -122.298303, 37.884406 ], [ -122.299933, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300148, 37.885117 ], [ -122.300963, 37.887657 ], [ -122.300191, 37.887623 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300963, 37.887657 ], [ -122.300191, 37.887623 ], [ -122.299590, 37.887488 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297273, 37.884609 ], [ -122.298303, 37.884406 ], [ -122.299933, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300148, 37.885117 ], [ -122.300963, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886844 ], [ -122.297616, 37.886675 ], [ -122.297788, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.296929, 37.886878 ], [ -122.296929, 37.886844 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886878 ], [ -122.296929, 37.886844 ], [ -122.297616, 37.886675 ], [ -122.297788, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.296929, 37.886878 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300234, 37.882881 ], [ -122.300320, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299805, 37.884101 ], [ -122.298303, 37.884406 ], [ -122.298002, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298303, 37.884406 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300234, 37.882881 ], [ -122.300320, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299805, 37.884101 ], [ -122.298303, 37.884406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297788, 37.886675 ], [ -122.297144, 37.884643 ], [ -122.297273, 37.884609 ], [ -122.297916, 37.886709 ], [ -122.297788, 37.886675 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886709 ], [ -122.297788, 37.886675 ], [ -122.297144, 37.884643 ], [ -122.297273, 37.884609 ], [ -122.297916, 37.886709 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.883525 ], [ -122.297788, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298303, 37.884406 ], [ -122.297273, 37.884609 ], [ -122.296929, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297273, 37.884609 ], [ -122.296929, 37.883525 ], [ -122.297788, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298303, 37.884406 ], [ -122.297273, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.296929, 37.886844 ], [ -122.296929, 37.886878 ], [ -122.296114, 37.887081 ], [ -122.296071, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887081 ], [ -122.296071, 37.886980 ], [ -122.296929, 37.886844 ], [ -122.296929, 37.886878 ], [ -122.296114, 37.887081 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887183 ], [ -122.296071, 37.886980 ], [ -122.296114, 37.887081 ], [ -122.295256, 37.887251 ], [ -122.295213, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.295213, 37.887183 ], [ -122.296071, 37.886980 ], [ -122.296114, 37.887081 ], [ -122.295256, 37.887251 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.295213, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294440, 37.887386 ], [ -122.294397, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294440, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295213, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294440, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293496, 37.884507 ], [ -122.294354, 37.884338 ], [ -122.295213, 37.887183 ], [ -122.294397, 37.887318 ], [ -122.293496, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293496, 37.884507 ], [ -122.294354, 37.884338 ], [ -122.295213, 37.887183 ], [ -122.294397, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.296886, 37.883830 ], [ -122.297788, 37.886675 ], [ -122.296929, 37.886844 ], [ -122.295985, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886844 ], [ -122.295985, 37.883999 ], [ -122.296886, 37.883830 ], [ -122.297788, 37.886675 ], [ -122.296929, 37.886844 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296929, 37.886844 ], [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296929, 37.886844 ], [ -122.296071, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883830 ], [ -122.297015, 37.883796 ], [ -122.297273, 37.884609 ], [ -122.297144, 37.884643 ], [ -122.296886, 37.883830 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.884643 ], [ -122.296886, 37.883830 ], [ -122.297015, 37.883796 ], [ -122.297273, 37.884609 ], [ -122.297144, 37.884643 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.883525 ], [ -122.296929, 37.883525 ], [ -122.297015, 37.883796 ], [ -122.296886, 37.883830 ], [ -122.296758, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883830 ], [ -122.296758, 37.883525 ], [ -122.296929, 37.883525 ], [ -122.297015, 37.883796 ], [ -122.296886, 37.883830 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.884338 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887183 ], [ -122.294354, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887183 ], [ -122.294354, 37.884338 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.882949 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294354, 37.884338 ], [ -122.293882, 37.882949 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.884338 ], [ -122.293882, 37.882949 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294354, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293839, 37.891992 ], [ -122.293153, 37.891044 ], [ -122.293196, 37.890604 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.293839, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293839, 37.891992 ], [ -122.293153, 37.891044 ], [ -122.293196, 37.890604 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892839 ], [ -122.293153, 37.891044 ], [ -122.293839, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293110, 37.892839 ], [ -122.293153, 37.891044 ], [ -122.293839, 37.891992 ], [ -122.294140, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890739 ], [ -122.293153, 37.891044 ], [ -122.293067, 37.892839 ], [ -122.292852, 37.892839 ], [ -122.292938, 37.890739 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892839 ], [ -122.292938, 37.890739 ], [ -122.293153, 37.891044 ], [ -122.293067, 37.892839 ], [ -122.292852, 37.892839 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890536 ], [ -122.294526, 37.890502 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293711, 37.890536 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293754, 37.890570 ], [ -122.293711, 37.890536 ], [ -122.294526, 37.890502 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890739 ], [ -122.292895, 37.890604 ], [ -122.293196, 37.890604 ], [ -122.293153, 37.891044 ], [ -122.292938, 37.890739 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293153, 37.891044 ], [ -122.292938, 37.890739 ], [ -122.292895, 37.890604 ], [ -122.293196, 37.890604 ], [ -122.293153, 37.891044 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890570 ], [ -122.293410, 37.890536 ], [ -122.293625, 37.890536 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ], [ -122.292895, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890604 ], [ -122.292895, 37.890570 ], [ -122.293410, 37.890536 ], [ -122.293625, 37.890536 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291951, 37.890671 ], [ -122.292895, 37.890604 ], [ -122.292852, 37.892839 ], [ -122.291908, 37.892839 ], [ -122.291951, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892839 ], [ -122.291951, 37.890671 ], [ -122.292895, 37.890604 ], [ -122.292852, 37.892839 ], [ -122.291908, 37.892839 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890570 ], [ -122.292895, 37.890604 ], [ -122.292724, 37.890638 ], [ -122.291908, 37.890638 ], [ -122.292895, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.292895, 37.890570 ], [ -122.292895, 37.890604 ], [ -122.292724, 37.890638 ], [ -122.291908, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.292724, 37.887759 ], [ -122.292724, 37.887657 ], [ -122.293582, 37.887657 ], [ -122.293582, 37.887522 ], [ -122.294526, 37.890502 ], [ -122.293711, 37.890536 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890536 ], [ -122.293625, 37.890434 ], [ -122.292724, 37.887759 ], [ -122.292724, 37.887657 ], [ -122.293582, 37.887657 ], [ -122.293582, 37.887522 ], [ -122.294526, 37.890502 ], [ -122.293711, 37.890536 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293153, 37.889825 ], [ -122.292466, 37.887725 ], [ -122.292724, 37.887657 ], [ -122.292724, 37.887759 ], [ -122.293582, 37.890333 ], [ -122.293153, 37.889825 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.890333 ], [ -122.293153, 37.889825 ], [ -122.292466, 37.887725 ], [ -122.292724, 37.887657 ], [ -122.292724, 37.887759 ], [ -122.293582, 37.890333 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890536 ], [ -122.292895, 37.890570 ], [ -122.292809, 37.890028 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293153, 37.889825 ], [ -122.293711, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.293625, 37.890536 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.293625, 37.890536 ], [ -122.292895, 37.890570 ], [ -122.292809, 37.890028 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293153, 37.889825 ], [ -122.293711, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890570 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.888064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.291093, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890570 ], [ -122.291908, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291093, 37.888064 ], [ -122.291093, 37.887996 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.291093, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291093, 37.888064 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291007, 37.892941 ], [ -122.291093, 37.890705 ], [ -122.291951, 37.890671 ], [ -122.291908, 37.892974 ], [ -122.291007, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892974 ], [ -122.291007, 37.892941 ], [ -122.291093, 37.890705 ], [ -122.291951, 37.890671 ], [ -122.291908, 37.892974 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290149, 37.892907 ], [ -122.290277, 37.890739 ], [ -122.291093, 37.890705 ], [ -122.291007, 37.892941 ], [ -122.290149, 37.892907 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291007, 37.892941 ], [ -122.290149, 37.892907 ], [ -122.290277, 37.890739 ], [ -122.291093, 37.890705 ], [ -122.291007, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.890671 ], [ -122.291951, 37.890671 ], [ -122.291093, 37.890705 ], [ -122.291093, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.890705 ], [ -122.291093, 37.890671 ], [ -122.291951, 37.890671 ], [ -122.291093, 37.890705 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289419, 37.890807 ], [ -122.290277, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892907 ], [ -122.289419, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892907 ], [ -122.289419, 37.890807 ], [ -122.290277, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892907 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288432, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288818, 37.891078 ], [ -122.288861, 37.890841 ], [ -122.289419, 37.890807 ], [ -122.289290, 37.892907 ], [ -122.288432, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892907 ], [ -122.288432, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288818, 37.891078 ], [ -122.288861, 37.890841 ], [ -122.289419, 37.890807 ], [ -122.289290, 37.892907 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.890671 ], [ -122.291093, 37.890705 ], [ -122.290792, 37.890739 ], [ -122.290106, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890739 ], [ -122.290106, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.890671 ], [ -122.291093, 37.890705 ], [ -122.290792, 37.890739 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.291093, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290106, 37.888267 ], [ -122.290063, 37.888199 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.290063, 37.888199 ], [ -122.291093, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290106, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890739 ], [ -122.289891, 37.890773 ], [ -122.289119, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.890773 ], [ -122.289119, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890739 ], [ -122.289891, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888876 ], [ -122.288260, 37.888673 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890739 ], [ -122.288861, 37.890841 ], [ -122.288260, 37.888876 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890841 ], [ -122.288260, 37.888876 ], [ -122.288260, 37.888673 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890739 ], [ -122.288861, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289119, 37.888470 ], [ -122.289119, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.289119, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289119, 37.888470 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.293496, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293582, 37.887522 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.887522 ], [ -122.292638, 37.884677 ], [ -122.293496, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293582, 37.887522 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.292466, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.292123, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292123, 37.887793 ], [ -122.292466, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884880 ], [ -122.292638, 37.884677 ], [ -122.293582, 37.887522 ], [ -122.293582, 37.887657 ], [ -122.292724, 37.887657 ], [ -122.291780, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292724, 37.887657 ], [ -122.291780, 37.884880 ], [ -122.292638, 37.884677 ], [ -122.293582, 37.887522 ], [ -122.293582, 37.887657 ], [ -122.292724, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291737, 37.884880 ], [ -122.291780, 37.884880 ], [ -122.292724, 37.887657 ], [ -122.292466, 37.887725 ], [ -122.291694, 37.885286 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292466, 37.887725 ], [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291737, 37.884880 ], [ -122.291780, 37.884880 ], [ -122.292724, 37.887657 ], [ -122.292466, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887725 ], [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887725 ], [ -122.292123, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293367, 37.884202 ], [ -122.292981, 37.883051 ], [ -122.293882, 37.882949 ], [ -122.294354, 37.884338 ], [ -122.293496, 37.884507 ], [ -122.293367, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293496, 37.884507 ], [ -122.293367, 37.884202 ], [ -122.292981, 37.883051 ], [ -122.293882, 37.882949 ], [ -122.294354, 37.884338 ], [ -122.293496, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292552, 37.884406 ], [ -122.292080, 37.883152 ], [ -122.292509, 37.883152 ], [ -122.292981, 37.883051 ], [ -122.293496, 37.884507 ], [ -122.292638, 37.884677 ], [ -122.292552, 37.884406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292552, 37.884406 ], [ -122.292080, 37.883152 ], [ -122.292509, 37.883152 ], [ -122.292981, 37.883051 ], [ -122.293496, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291265, 37.883254 ], [ -122.292080, 37.883152 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884880 ], [ -122.291265, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884880 ], [ -122.291265, 37.883254 ], [ -122.292080, 37.883152 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291093, 37.887996 ], [ -122.290192, 37.885219 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.887996 ], [ -122.290192, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291093, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885998 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ], [ -122.289333, 37.885998 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.289333, 37.885998 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885998 ], [ -122.289848, 37.884507 ], [ -122.290363, 37.885693 ], [ -122.291093, 37.887996 ], [ -122.290063, 37.888199 ], [ -122.289333, 37.885998 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.289333, 37.885998 ], [ -122.289848, 37.884507 ], [ -122.290363, 37.885693 ], [ -122.291093, 37.887996 ], [ -122.290063, 37.888199 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290406, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291179, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ], [ -122.290406, 37.883220 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.290406, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291179, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290835, 37.883322 ], [ -122.291093, 37.883254 ], [ -122.291265, 37.883254 ], [ -122.291780, 37.884880 ], [ -122.291522, 37.884914 ], [ -122.290835, 37.883322 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291522, 37.884914 ], [ -122.290835, 37.883322 ], [ -122.291093, 37.883254 ], [ -122.291265, 37.883254 ], [ -122.291780, 37.884880 ], [ -122.291522, 37.884914 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884507 ], [ -122.290320, 37.883051 ], [ -122.290320, 37.883220 ], [ -122.290406, 37.883220 ], [ -122.291179, 37.884981 ], [ -122.290192, 37.885219 ], [ -122.289848, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.289848, 37.884507 ], [ -122.290320, 37.883051 ], [ -122.290320, 37.883220 ], [ -122.290406, 37.883220 ], [ -122.291179, 37.884981 ], [ -122.290192, 37.885219 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885862 ], [ -122.289634, 37.884880 ], [ -122.289720, 37.884914 ], [ -122.289333, 37.885998 ], [ -122.289290, 37.885862 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885998 ], [ -122.289290, 37.885862 ], [ -122.289634, 37.884880 ], [ -122.289720, 37.884914 ], [ -122.289333, 37.885998 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.884710 ], [ -122.289333, 37.883288 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289720, 37.884914 ], [ -122.288775, 37.884710 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289720, 37.884914 ], [ -122.288775, 37.884710 ], [ -122.289333, 37.883288 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289720, 37.884914 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.883017 ], [ -122.295985, 37.883051 ], [ -122.296114, 37.883085 ], [ -122.296371, 37.883356 ], [ -122.296758, 37.883525 ], [ -122.296886, 37.883830 ], [ -122.295985, 37.883999 ], [ -122.295728, 37.883017 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883051 ], [ -122.296114, 37.883085 ], [ -122.296371, 37.883356 ], [ -122.296758, 37.883525 ], [ -122.296886, 37.883830 ], [ -122.295985, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294741, 37.882780 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ], [ -122.294741, 37.882780 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.294741, 37.882780 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288432, 37.891484 ], [ -122.288775, 37.891044 ], [ -122.288775, 37.890841 ], [ -122.288861, 37.890841 ], [ -122.288818, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288432, 37.892873 ], [ -122.288346, 37.892873 ], [ -122.288432, 37.891484 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.288432, 37.891484 ], [ -122.288775, 37.891044 ], [ -122.288775, 37.890841 ], [ -122.288861, 37.890841 ], [ -122.288818, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288432, 37.892873 ], [ -122.288346, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892839 ], [ -122.287531, 37.890909 ], [ -122.288775, 37.890841 ], [ -122.288775, 37.891044 ], [ -122.288432, 37.891484 ], [ -122.288346, 37.892873 ], [ -122.287445, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.287445, 37.892839 ], [ -122.287531, 37.890909 ], [ -122.288775, 37.890841 ], [ -122.288775, 37.891044 ], [ -122.288432, 37.891484 ], [ -122.288346, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890841 ], [ -122.287960, 37.890875 ], [ -122.287703, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.890875 ], [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890841 ], [ -122.287960, 37.890875 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890942 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891281 ], [ -122.287445, 37.892839 ], [ -122.287188, 37.892839 ], [ -122.287188, 37.890942 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892839 ], [ -122.287188, 37.890942 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891281 ], [ -122.287445, 37.892839 ], [ -122.287188, 37.892839 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890909 ], [ -122.287188, 37.890942 ], [ -122.286673, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890942 ], [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890909 ], [ -122.287188, 37.890942 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.286458, 37.890976 ], [ -122.285728, 37.891010 ], [ -122.285686, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.891010 ], [ -122.285686, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.286458, 37.890976 ], [ -122.285728, 37.891010 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890671 ], [ -122.288132, 37.888707 ], [ -122.288175, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288260, 37.888876 ], [ -122.288861, 37.890705 ], [ -122.288861, 37.890841 ], [ -122.288775, 37.890841 ], [ -122.288775, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890841 ], [ -122.288775, 37.890671 ], [ -122.288132, 37.888707 ], [ -122.288175, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288260, 37.888876 ], [ -122.288861, 37.890705 ], [ -122.288861, 37.890841 ], [ -122.288775, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288132, 37.888707 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888707 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.288947, 37.888436 ], [ -122.289119, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288260, 37.888673 ], [ -122.288303, 37.888572 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888673 ], [ -122.288303, 37.888572 ], [ -122.288947, 37.888436 ], [ -122.289119, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288260, 37.888673 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287316, 37.888910 ], [ -122.288175, 37.888606 ], [ -122.288132, 37.888707 ], [ -122.287102, 37.889080 ], [ -122.287102, 37.889012 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.287102, 37.889012 ], [ -122.287316, 37.888910 ], [ -122.288175, 37.888606 ], [ -122.288132, 37.888707 ], [ -122.287102, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287745, 37.890875 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287745, 37.890875 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286158, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889012 ], [ -122.286072, 37.888572 ], [ -122.286415, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.287273, 37.888233 ], [ -122.287102, 37.888843 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.889012 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.286072, 37.889012 ], [ -122.286072, 37.888572 ], [ -122.286415, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.287273, 37.888233 ], [ -122.287102, 37.888843 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285557, 37.890807 ], [ -122.285171, 37.889520 ], [ -122.285600, 37.889520 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ], [ -122.285171, 37.889520 ], [ -122.285600, 37.889520 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285686, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.285686, 37.890976 ], [ -122.285728, 37.891010 ], [ -122.284484, 37.891078 ], [ -122.284527, 37.891044 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.891078 ], [ -122.284527, 37.891044 ], [ -122.285686, 37.890976 ], [ -122.285728, 37.891010 ], [ -122.284484, 37.891078 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.890671 ], [ -122.284055, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889520 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.284484, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.284484, 37.890671 ], [ -122.284055, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889520 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284527, 37.891044 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.284527, 37.891044 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891146 ], [ -122.283497, 37.891078 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.284527, 37.891044 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891146 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889452 ], [ -122.282853, 37.889147 ], [ -122.283454, 37.889181 ], [ -122.284055, 37.889317 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891078 ], [ -122.282982, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.282982, 37.889452 ], [ -122.282853, 37.889147 ], [ -122.283454, 37.889181 ], [ -122.284055, 37.889317 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891078 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889452 ], [ -122.285600, 37.889452 ], [ -122.286158, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286029, 37.889452 ], [ -122.285171, 37.889520 ], [ -122.285213, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889520 ], [ -122.285213, 37.889452 ], [ -122.285600, 37.889452 ], [ -122.286158, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286029, 37.889452 ], [ -122.285171, 37.889520 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284999, 37.888639 ], [ -122.285171, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887623 ], [ -122.286072, 37.888572 ], [ -122.286072, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285213, 37.889452 ], [ -122.284999, 37.888639 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889452 ], [ -122.284999, 37.888639 ], [ -122.285171, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887623 ], [ -122.286072, 37.888572 ], [ -122.286072, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285213, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.285085, 37.887894 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285171, 37.887894 ], [ -122.284999, 37.888504 ], [ -122.285085, 37.889046 ], [ -122.285213, 37.889452 ], [ -122.285128, 37.889452 ], [ -122.284999, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889452 ], [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.285085, 37.887894 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285171, 37.887894 ], [ -122.284999, 37.888504 ], [ -122.285085, 37.889046 ], [ -122.285213, 37.889452 ], [ -122.285128, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284441, 37.889418 ], [ -122.284055, 37.889317 ], [ -122.284055, 37.889249 ], [ -122.284698, 37.889418 ], [ -122.285213, 37.889452 ], [ -122.285171, 37.889520 ], [ -122.284441, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889520 ], [ -122.284441, 37.889418 ], [ -122.284055, 37.889317 ], [ -122.284055, 37.889249 ], [ -122.284698, 37.889418 ], [ -122.285213, 37.889452 ], [ -122.285171, 37.889520 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284055, 37.889249 ], [ -122.284055, 37.889317 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284055, 37.889317 ], [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284055, 37.889249 ], [ -122.284055, 37.889317 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.889418 ], [ -122.283711, 37.889147 ], [ -122.283711, 37.888775 ], [ -122.284355, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285085, 37.887894 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285128, 37.889452 ], [ -122.284698, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889452 ], [ -122.284698, 37.889418 ], [ -122.283711, 37.889147 ], [ -122.283711, 37.888775 ], [ -122.284355, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285085, 37.887894 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285128, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283111, 37.889080 ], [ -122.282767, 37.889080 ], [ -122.282681, 37.888944 ], [ -122.282681, 37.888606 ], [ -122.283282, 37.886912 ], [ -122.283540, 37.886980 ], [ -122.284355, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889147 ], [ -122.283111, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889147 ], [ -122.283111, 37.889080 ], [ -122.282767, 37.889080 ], [ -122.282681, 37.888944 ], [ -122.282681, 37.888606 ], [ -122.283282, 37.886912 ], [ -122.283540, 37.886980 ], [ -122.284355, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889147 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885862 ], [ -122.289333, 37.885998 ], [ -122.288303, 37.888572 ], [ -122.288175, 37.888606 ], [ -122.289290, 37.885862 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.888606 ], [ -122.289290, 37.885862 ], [ -122.289333, 37.885998 ], [ -122.288303, 37.888572 ], [ -122.288175, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.888843 ], [ -122.287273, 37.888233 ], [ -122.287703, 37.887623 ], [ -122.288775, 37.884710 ], [ -122.289634, 37.884880 ], [ -122.289290, 37.885862 ], [ -122.288175, 37.888606 ], [ -122.287102, 37.889012 ], [ -122.287102, 37.888843 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287102, 37.888843 ], [ -122.287273, 37.888233 ], [ -122.287703, 37.887623 ], [ -122.288775, 37.884710 ], [ -122.289634, 37.884880 ], [ -122.289290, 37.885862 ], [ -122.288175, 37.888606 ], [ -122.287102, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.287960, 37.884507 ], [ -122.288775, 37.884710 ], [ -122.287703, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.286758, 37.887691 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287488, 37.887894 ], [ -122.286758, 37.887691 ], [ -122.287960, 37.884507 ], [ -122.288775, 37.884710 ], [ -122.287703, 37.887623 ], [ -122.287488, 37.887894 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286286, 37.886539 ], [ -122.286673, 37.885659 ], [ -122.287488, 37.885828 ], [ -122.287145, 37.886743 ], [ -122.286286, 37.886539 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.886743 ], [ -122.286286, 37.886539 ], [ -122.286673, 37.885659 ], [ -122.287488, 37.885828 ], [ -122.287145, 37.886743 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287831, 37.884169 ], [ -122.288089, 37.884270 ], [ -122.287488, 37.885828 ], [ -122.286758, 37.885659 ], [ -122.286673, 37.885659 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886539 ], [ -122.287145, 37.886743 ], [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287831, 37.884169 ], [ -122.288089, 37.884270 ], [ -122.287488, 37.885828 ], [ -122.286758, 37.885659 ], [ -122.286673, 37.885659 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886539 ], [ -122.287145, 37.886743 ], [ -122.286758, 37.887691 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289333, 37.883288 ], [ -122.288775, 37.884710 ], [ -122.287960, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.884710 ], [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289333, 37.883288 ], [ -122.288775, 37.884710 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ], [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ], [ -122.284355, 37.887149 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.284355, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285085, 37.885320 ], [ -122.285686, 37.883660 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ], [ -122.285686, 37.883660 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885523 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.884135 ], [ -122.285728, 37.883559 ], [ -122.285686, 37.883660 ], [ -122.284741, 37.884101 ], [ -122.284527, 37.884202 ], [ -122.284484, 37.884135 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.284484, 37.884135 ], [ -122.285728, 37.883559 ], [ -122.285686, 37.883660 ], [ -122.284741, 37.884101 ], [ -122.284527, 37.884202 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884372 ], [ -122.284527, 37.884202 ], [ -122.285686, 37.883660 ], [ -122.284570, 37.886709 ], [ -122.284355, 37.887149 ], [ -122.283540, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887149 ], [ -122.283540, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884372 ], [ -122.284527, 37.884202 ], [ -122.285686, 37.883660 ], [ -122.284570, 37.886709 ], [ -122.284355, 37.887149 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282681, 37.885998 ], [ -122.283196, 37.885388 ], [ -122.283282, 37.884778 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284527, 37.884372 ], [ -122.283840, 37.886235 ], [ -122.282681, 37.885998 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282681, 37.885998 ], [ -122.283196, 37.885388 ], [ -122.283282, 37.884778 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284527, 37.884372 ], [ -122.283840, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283368, 37.884677 ], [ -122.284484, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283883, 37.884541 ], [ -122.283411, 37.884744 ], [ -122.283368, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283411, 37.884744 ], [ -122.283368, 37.884677 ], [ -122.284484, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283883, 37.884541 ], [ -122.283411, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282596, 37.882746 ], [ -122.282767, 37.882543 ], [ -122.285385, 37.882441 ], [ -122.286072, 37.882475 ], [ -122.285728, 37.883559 ], [ -122.283154, 37.884778 ], [ -122.282424, 37.884981 ], [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282596, 37.882746 ], [ -122.282767, 37.882543 ], [ -122.285385, 37.882441 ], [ -122.286072, 37.882475 ], [ -122.285728, 37.883559 ], [ -122.283154, 37.884778 ], [ -122.282424, 37.884981 ], [ -122.281995, 37.884981 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891146 ], [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891146 ], [ -122.282424, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282381, 37.890807 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889249 ], [ -122.282853, 37.889181 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ], [ -122.282381, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.282381, 37.890807 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889249 ], [ -122.282853, 37.889181 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283282, 37.889147 ], [ -122.282853, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.283497, 37.889114 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.283282, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.283282, 37.889147 ], [ -122.282853, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.283497, 37.889114 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.282853, 37.889147 ], [ -122.282295, 37.889249 ], [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.282853, 37.889147 ], [ -122.282295, 37.889249 ], [ -122.281909, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886912 ], [ -122.282681, 37.888606 ], [ -122.282681, 37.888944 ], [ -122.282767, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886912 ], [ -122.282681, 37.888606 ], [ -122.282681, 37.888944 ], [ -122.282767, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886675 ], [ -122.282510, 37.886336 ], [ -122.282681, 37.885998 ], [ -122.283840, 37.886235 ], [ -122.283540, 37.886980 ], [ -122.282295, 37.886675 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886980 ], [ -122.282295, 37.886675 ], [ -122.282510, 37.886336 ], [ -122.282681, 37.885998 ], [ -122.283840, 37.886235 ], [ -122.283540, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281995, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282424, 37.884981 ], [ -122.283368, 37.884677 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885049 ], [ -122.282038, 37.885083 ], [ -122.281995, 37.885049 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885083 ], [ -122.281995, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282424, 37.884981 ], [ -122.283368, 37.884677 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885049 ], [ -122.282038, 37.885083 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287831, 37.884169 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287230, 37.882610 ], [ -122.288518, 37.883051 ], [ -122.288089, 37.884270 ], [ -122.287831, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288089, 37.884270 ], [ -122.287831, 37.884169 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287230, 37.882610 ], [ -122.288518, 37.883051 ], [ -122.288089, 37.884270 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286973, 37.882983 ], [ -122.287102, 37.882915 ], [ -122.287059, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ], [ -122.286973, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883999 ], [ -122.286973, 37.882983 ], [ -122.287102, 37.882915 ], [ -122.287059, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882881 ], [ -122.287145, 37.882577 ], [ -122.287230, 37.882610 ], [ -122.287188, 37.882678 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882881 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.882915 ], [ -122.287016, 37.882881 ], [ -122.287145, 37.882577 ], [ -122.287230, 37.882610 ], [ -122.287188, 37.882678 ], [ -122.287102, 37.882915 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883559 ], [ -122.287016, 37.882881 ], [ -122.287102, 37.882915 ], [ -122.285686, 37.883660 ], [ -122.285728, 37.883559 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.883660 ], [ -122.285728, 37.883559 ], [ -122.287016, 37.882881 ], [ -122.287102, 37.882915 ], [ -122.285686, 37.883660 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882475 ], [ -122.286758, 37.882475 ], [ -122.287145, 37.882577 ], [ -122.287016, 37.882881 ], [ -122.285728, 37.883559 ], [ -122.286072, 37.882475 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883559 ], [ -122.286072, 37.882475 ], [ -122.286758, 37.882475 ], [ -122.287145, 37.882577 ], [ -122.287016, 37.882881 ], [ -122.285728, 37.883559 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 656, "y": 1581 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312551, 37.897123 ], [ -122.312529, 37.897021 ], [ -122.312443, 37.896937 ], [ -122.312143, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896717 ], [ -122.311585, 37.896480 ], [ -122.311585, 37.896293 ], [ -122.311521, 37.896175 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.895531 ], [ -122.311006, 37.895498 ], [ -122.310705, 37.895498 ], [ -122.310662, 37.895396 ], [ -122.310684, 37.895277 ], [ -122.310555, 37.895074 ], [ -122.310233, 37.894786 ], [ -122.310126, 37.894752 ], [ -122.309461, 37.893466 ], [ -122.309096, 37.892212 ], [ -122.309053, 37.891298 ], [ -122.309268, 37.889706 ], [ -122.309439, 37.889130 ], [ -122.309675, 37.888860 ], [ -122.309804, 37.888809 ], [ -122.309933, 37.888826 ], [ -122.310040, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310855, 37.889757 ], [ -122.310941, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890248 ], [ -122.311199, 37.890147 ], [ -122.311199, 37.889909 ], [ -122.311349, 37.889909 ], [ -122.311456, 37.889994 ], [ -122.311606, 37.890316 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891196 ], [ -122.313688, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892043 ], [ -122.314589, 37.892348 ], [ -122.314696, 37.892450 ], [ -122.314825, 37.892450 ], [ -122.314589, 37.892145 ], [ -122.314525, 37.891925 ], [ -122.314675, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315812, 37.891908 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891688 ], [ -122.315962, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317593, 37.890926 ], [ -122.318988, 37.890350 ], [ -122.319589, 37.890028 ], [ -122.319846, 37.889943 ], [ -122.322571, 37.889943 ], [ -122.322700, 37.889977 ], [ -122.322807, 37.890316 ], [ -122.323022, 37.890655 ], [ -122.323129, 37.890993 ], [ -122.323472, 37.891518 ], [ -122.323816, 37.892212 ], [ -122.323966, 37.892399 ], [ -122.324438, 37.892466 ], [ -122.324696, 37.892483 ], [ -122.324975, 37.892450 ], [ -122.325554, 37.892534 ], [ -122.325704, 37.892534 ], [ -122.325833, 37.892500 ], [ -122.325833, 37.892382 ], [ -122.325897, 37.892297 ], [ -122.325618, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325575, 37.891857 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890790 ], [ -122.326198, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.327313, 37.890790 ], [ -122.327378, 37.890892 ], [ -122.327399, 37.891467 ], [ -122.327507, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.890773 ], [ -122.327678, 37.890231 ], [ -122.327592, 37.889926 ], [ -122.327571, 37.889672 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312486, 37.897428 ], [ -122.312551, 37.897123 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312486, 37.897428 ], [ -122.312551, 37.897123 ], [ -122.312529, 37.897021 ], [ -122.312443, 37.896937 ], [ -122.312143, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896717 ], [ -122.311585, 37.896480 ], [ -122.311585, 37.896293 ], [ -122.311521, 37.896175 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.895531 ], [ -122.311006, 37.895498 ], [ -122.310705, 37.895498 ], [ -122.310662, 37.895396 ], [ -122.310684, 37.895277 ], [ -122.310555, 37.895074 ], [ -122.310233, 37.894786 ], [ -122.310126, 37.894752 ], [ -122.309461, 37.893466 ], [ -122.309096, 37.892212 ], [ -122.309053, 37.891298 ], [ -122.309268, 37.889706 ], [ -122.309439, 37.889130 ], [ -122.309675, 37.888860 ], [ -122.309804, 37.888809 ], [ -122.309933, 37.888826 ], [ -122.310040, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310855, 37.889757 ], [ -122.310941, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890248 ], [ -122.311199, 37.890147 ], [ -122.311199, 37.889909 ], [ -122.311349, 37.889909 ], [ -122.311456, 37.889994 ], [ -122.311606, 37.890316 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891196 ], [ -122.313688, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892043 ], [ -122.314589, 37.892348 ], [ -122.314696, 37.892450 ], [ -122.314825, 37.892450 ], [ -122.314589, 37.892145 ], [ -122.314525, 37.891925 ], [ -122.314675, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315812, 37.891908 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891688 ], [ -122.315962, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317593, 37.890926 ], [ -122.318988, 37.890350 ], [ -122.319589, 37.890028 ], [ -122.319846, 37.889943 ], [ -122.322571, 37.889943 ], [ -122.322700, 37.889977 ], [ -122.322807, 37.890316 ], [ -122.323022, 37.890655 ], [ -122.323129, 37.890993 ], [ -122.323472, 37.891518 ], [ -122.323816, 37.892212 ], [ -122.323966, 37.892399 ], [ -122.324438, 37.892466 ], [ -122.324696, 37.892483 ], [ -122.324975, 37.892450 ], [ -122.325554, 37.892534 ], [ -122.325704, 37.892534 ], [ -122.325833, 37.892500 ], [ -122.325833, 37.892382 ], [ -122.325897, 37.892297 ], [ -122.325618, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325575, 37.891857 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890790 ], [ -122.326198, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.327313, 37.890790 ], [ -122.327378, 37.890892 ], [ -122.327399, 37.891467 ], [ -122.327507, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.890773 ], [ -122.327678, 37.890231 ], [ -122.327592, 37.889926 ], [ -122.327571, 37.889672 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312486, 37.897428 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310662, 37.895752 ], [ -122.309997, 37.894769 ], [ -122.309525, 37.893855 ], [ -122.309225, 37.893059 ], [ -122.309096, 37.892585 ], [ -122.309010, 37.892077 ], [ -122.308967, 37.891721 ], [ -122.308989, 37.891247 ], [ -122.308881, 37.890485 ], [ -122.308967, 37.888775 ], [ -122.309225, 37.887843 ], [ -122.309804, 37.888131 ], [ -122.310190, 37.888521 ], [ -122.311242, 37.889452 ], [ -122.315598, 37.889639 ], [ -122.315791, 37.889520 ], [ -122.327592, 37.889672 ], [ -122.327571, 37.889791 ], [ -122.327678, 37.890231 ], [ -122.327614, 37.890773 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.891450 ], [ -122.327507, 37.891552 ], [ -122.327399, 37.891467 ], [ -122.327378, 37.890892 ], [ -122.327313, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.326198, 37.890790 ], [ -122.325811, 37.890790 ], [ -122.325640, 37.890841 ], [ -122.325575, 37.890942 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.891857 ], [ -122.325554, 37.892060 ], [ -122.325618, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325833, 37.892382 ], [ -122.325833, 37.892500 ], [ -122.325704, 37.892534 ], [ -122.325554, 37.892534 ], [ -122.324975, 37.892450 ], [ -122.324696, 37.892483 ], [ -122.323966, 37.892399 ], [ -122.323816, 37.892212 ], [ -122.323472, 37.891518 ], [ -122.323129, 37.890993 ], [ -122.323022, 37.890655 ], [ -122.322807, 37.890316 ], [ -122.322700, 37.889977 ], [ -122.322571, 37.889943 ], [ -122.319846, 37.889943 ], [ -122.319589, 37.890028 ], [ -122.318988, 37.890350 ], [ -122.317593, 37.890926 ], [ -122.316027, 37.891146 ], [ -122.315962, 37.891247 ], [ -122.315941, 37.891688 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891891 ], [ -122.315812, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.314675, 37.891874 ], [ -122.314525, 37.891925 ], [ -122.314589, 37.892145 ], [ -122.314825, 37.892450 ], [ -122.314696, 37.892450 ], [ -122.314589, 37.892348 ], [ -122.314396, 37.892043 ], [ -122.314267, 37.891958 ], [ -122.313688, 37.891891 ], [ -122.312722, 37.891196 ], [ -122.311692, 37.890401 ], [ -122.311606, 37.890316 ], [ -122.311456, 37.889994 ], [ -122.311349, 37.889909 ], [ -122.311199, 37.889909 ], [ -122.311199, 37.890147 ], [ -122.311134, 37.890248 ], [ -122.311006, 37.890197 ], [ -122.310941, 37.889859 ], [ -122.310855, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310040, 37.888910 ], [ -122.309933, 37.888826 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888860 ], [ -122.309439, 37.889130 ], [ -122.309268, 37.889706 ], [ -122.309053, 37.891298 ], [ -122.309096, 37.892212 ], [ -122.309461, 37.893466 ], [ -122.310126, 37.894752 ], [ -122.310233, 37.894786 ], [ -122.310555, 37.895074 ], [ -122.310684, 37.895277 ], [ -122.310662, 37.895396 ], [ -122.310705, 37.895498 ], [ -122.311006, 37.895498 ], [ -122.311134, 37.895531 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896175 ], [ -122.311585, 37.896293 ], [ -122.311585, 37.896480 ], [ -122.311521, 37.896717 ], [ -122.310662, 37.895752 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311521, 37.896717 ], [ -122.310662, 37.895752 ], [ -122.309997, 37.894769 ], [ -122.309525, 37.893855 ], [ -122.309225, 37.893059 ], [ -122.309096, 37.892585 ], [ -122.309010, 37.892077 ], [ -122.308967, 37.891721 ], [ -122.308989, 37.891247 ], [ -122.308881, 37.890485 ], [ -122.308967, 37.888775 ], [ -122.309225, 37.887843 ], [ -122.309804, 37.888131 ], [ -122.310190, 37.888521 ], [ -122.311242, 37.889452 ], [ -122.315598, 37.889639 ], [ -122.315791, 37.889520 ], [ -122.327592, 37.889672 ], [ -122.327571, 37.889791 ], [ -122.327678, 37.890231 ], [ -122.327614, 37.890773 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.891450 ], [ -122.327507, 37.891552 ], [ -122.327399, 37.891467 ], [ -122.327378, 37.890892 ], [ -122.327313, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.326198, 37.890790 ], [ -122.325811, 37.890790 ], [ -122.325640, 37.890841 ], [ -122.325575, 37.890942 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.891857 ], [ -122.325554, 37.892060 ], [ -122.325618, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325833, 37.892382 ], [ -122.325833, 37.892500 ], [ -122.325704, 37.892534 ], [ -122.325554, 37.892534 ], [ -122.324975, 37.892450 ], [ -122.324696, 37.892483 ], [ -122.323966, 37.892399 ], [ -122.323816, 37.892212 ], [ -122.323472, 37.891518 ], [ -122.323129, 37.890993 ], [ -122.323022, 37.890655 ], [ -122.322807, 37.890316 ], [ -122.322700, 37.889977 ], [ -122.322571, 37.889943 ], [ -122.319846, 37.889943 ], [ -122.319589, 37.890028 ], [ -122.318988, 37.890350 ], [ -122.317593, 37.890926 ], [ -122.316027, 37.891146 ], [ -122.315962, 37.891247 ], [ -122.315941, 37.891688 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891891 ], [ -122.315812, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.314675, 37.891874 ], [ -122.314525, 37.891925 ], [ -122.314589, 37.892145 ], [ -122.314825, 37.892450 ], [ -122.314696, 37.892450 ], [ -122.314589, 37.892348 ], [ -122.314396, 37.892043 ], [ -122.314267, 37.891958 ], [ -122.313688, 37.891891 ], [ -122.312722, 37.891196 ], [ -122.311692, 37.890401 ], [ -122.311606, 37.890316 ], [ -122.311456, 37.889994 ], [ -122.311349, 37.889909 ], [ -122.311199, 37.889909 ], [ -122.311199, 37.890147 ], [ -122.311134, 37.890248 ], [ -122.311006, 37.890197 ], [ -122.310941, 37.889859 ], [ -122.310855, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310040, 37.888910 ], [ -122.309933, 37.888826 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888860 ], [ -122.309439, 37.889130 ], [ -122.309268, 37.889706 ], [ -122.309053, 37.891298 ], [ -122.309096, 37.892212 ], [ -122.309461, 37.893466 ], [ -122.310126, 37.894752 ], [ -122.310233, 37.894786 ], [ -122.310555, 37.895074 ], [ -122.310684, 37.895277 ], [ -122.310662, 37.895396 ], [ -122.310705, 37.895498 ], [ -122.311006, 37.895498 ], [ -122.311134, 37.895531 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896175 ], [ -122.311585, 37.896293 ], [ -122.311585, 37.896480 ], [ -122.311521, 37.896717 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311585, 37.896852 ], [ -122.311542, 37.896818 ], [ -122.312143, 37.896937 ], [ -122.312443, 37.896937 ], [ -122.312529, 37.897021 ], [ -122.312551, 37.897123 ], [ -122.312486, 37.897428 ], [ -122.312078, 37.897479 ], [ -122.311585, 37.896852 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311585, 37.896852 ], [ -122.311542, 37.896818 ], [ -122.312143, 37.896937 ], [ -122.312443, 37.896937 ], [ -122.312529, 37.897021 ], [ -122.312551, 37.897123 ], [ -122.312486, 37.897428 ], [ -122.312078, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.897800 ], [ -122.308280, 37.895227 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.893652 ], [ -122.307808, 37.892788 ], [ -122.307851, 37.892280 ], [ -122.308023, 37.892162 ], [ -122.308238, 37.892179 ], [ -122.308323, 37.893178 ], [ -122.308280, 37.893770 ], [ -122.308345, 37.894414 ], [ -122.309160, 37.896734 ], [ -122.309396, 37.897309 ], [ -122.309525, 37.897834 ], [ -122.309353, 37.897868 ], [ -122.309332, 37.897800 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309353, 37.897868 ], [ -122.309332, 37.897800 ], [ -122.308280, 37.895227 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.893652 ], [ -122.307808, 37.892788 ], [ -122.307851, 37.892280 ], [ -122.308023, 37.892162 ], [ -122.308238, 37.892179 ], [ -122.308323, 37.893178 ], [ -122.308280, 37.893770 ], [ -122.308345, 37.894414 ], [ -122.309160, 37.896734 ], [ -122.309396, 37.897309 ], [ -122.309525, 37.897834 ], [ -122.309353, 37.897868 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309933, 37.895667 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308495, 37.892382 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890079 ], [ -122.308967, 37.892551 ], [ -122.309139, 37.893127 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894820 ], [ -122.310512, 37.895802 ], [ -122.310941, 37.896412 ], [ -122.311864, 37.897529 ], [ -122.311478, 37.897631 ], [ -122.309933, 37.895667 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897631 ], [ -122.309933, 37.895667 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308495, 37.892382 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890079 ], [ -122.308967, 37.892551 ], [ -122.309139, 37.893127 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894820 ], [ -122.310512, 37.895802 ], [ -122.310941, 37.896412 ], [ -122.311864, 37.897529 ], [ -122.311478, 37.897631 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309396, 37.897309 ], [ -122.309160, 37.896734 ], [ -122.308345, 37.894414 ], [ -122.308280, 37.893770 ], [ -122.308323, 37.893178 ], [ -122.308259, 37.892297 ], [ -122.307894, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308495, 37.892382 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895667 ], [ -122.311478, 37.897631 ], [ -122.310898, 37.897834 ], [ -122.309525, 37.897834 ], [ -122.309396, 37.897309 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309525, 37.897834 ], [ -122.309396, 37.897309 ], [ -122.309160, 37.896734 ], [ -122.308345, 37.894414 ], [ -122.308280, 37.893770 ], [ -122.308323, 37.893178 ], [ -122.308259, 37.892297 ], [ -122.307894, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308495, 37.892382 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895667 ], [ -122.311478, 37.897631 ], [ -122.310898, 37.897834 ], [ -122.309525, 37.897834 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310941, 37.896412 ], [ -122.310512, 37.895802 ], [ -122.309697, 37.894465 ], [ -122.309418, 37.893889 ], [ -122.309139, 37.893127 ], [ -122.308710, 37.891603 ], [ -122.308345, 37.890079 ], [ -122.308967, 37.888775 ], [ -122.308881, 37.890485 ], [ -122.308989, 37.891247 ], [ -122.308967, 37.891721 ], [ -122.309010, 37.892077 ], [ -122.309096, 37.892585 ], [ -122.309225, 37.893059 ], [ -122.309525, 37.893855 ], [ -122.309997, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311542, 37.896818 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897529 ], [ -122.310941, 37.896412 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311864, 37.897529 ], [ -122.310941, 37.896412 ], [ -122.310512, 37.895802 ], [ -122.309697, 37.894465 ], [ -122.309418, 37.893889 ], [ -122.309139, 37.893127 ], [ -122.308710, 37.891603 ], [ -122.308345, 37.890079 ], [ -122.308967, 37.888775 ], [ -122.308881, 37.890485 ], [ -122.308989, 37.891247 ], [ -122.308967, 37.891721 ], [ -122.309010, 37.892077 ], [ -122.309096, 37.892585 ], [ -122.309225, 37.893059 ], [ -122.309525, 37.893855 ], [ -122.309997, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311542, 37.896818 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897529 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309289, 37.897783 ], [ -122.307701, 37.894244 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892551 ], [ -122.307014, 37.891925 ], [ -122.307079, 37.890875 ], [ -122.307250, 37.890130 ], [ -122.307529, 37.889503 ], [ -122.307894, 37.890976 ], [ -122.307658, 37.891671 ], [ -122.307572, 37.892246 ], [ -122.307529, 37.892619 ], [ -122.307594, 37.893296 ], [ -122.307787, 37.893974 ], [ -122.308280, 37.895227 ], [ -122.309353, 37.897868 ], [ -122.309289, 37.897783 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309353, 37.897868 ], [ -122.309289, 37.897783 ], [ -122.307701, 37.894244 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892551 ], [ -122.307014, 37.891925 ], [ -122.307079, 37.890875 ], [ -122.307250, 37.890130 ], [ -122.307529, 37.889503 ], [ -122.307894, 37.890976 ], [ -122.307658, 37.891671 ], [ -122.307572, 37.892246 ], [ -122.307529, 37.892619 ], [ -122.307594, 37.893296 ], [ -122.307787, 37.893974 ], [ -122.308280, 37.895227 ], [ -122.309353, 37.897868 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308602, 37.897157 ], [ -122.308495, 37.896835 ], [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306628, 37.892399 ], [ -122.306650, 37.892229 ], [ -122.306714, 37.892009 ], [ -122.306693, 37.891704 ], [ -122.306414, 37.890807 ], [ -122.306714, 37.890739 ], [ -122.306821, 37.890688 ], [ -122.307229, 37.889994 ], [ -122.307401, 37.889757 ], [ -122.307208, 37.890282 ], [ -122.307036, 37.891230 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892551 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894244 ], [ -122.309332, 37.897868 ], [ -122.309010, 37.897953 ], [ -122.308967, 37.897987 ], [ -122.308602, 37.897157 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308967, 37.897987 ], [ -122.308602, 37.897157 ], [ -122.308495, 37.896835 ], [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306628, 37.892399 ], [ -122.306650, 37.892229 ], [ -122.306714, 37.892009 ], [ -122.306693, 37.891704 ], [ -122.306414, 37.890807 ], [ -122.306714, 37.890739 ], [ -122.306821, 37.890688 ], [ -122.307229, 37.889994 ], [ -122.307401, 37.889757 ], [ -122.307208, 37.890282 ], [ -122.307036, 37.891230 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892551 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894244 ], [ -122.309332, 37.897868 ], [ -122.309010, 37.897953 ], [ -122.308967, 37.897987 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.893720 ], [ -122.307572, 37.893127 ], [ -122.307529, 37.892619 ], [ -122.307658, 37.891671 ], [ -122.307894, 37.890976 ], [ -122.308238, 37.892179 ], [ -122.308023, 37.892162 ], [ -122.307851, 37.892280 ], [ -122.307808, 37.893025 ], [ -122.307873, 37.893652 ], [ -122.308280, 37.895227 ], [ -122.307701, 37.893720 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308280, 37.895227 ], [ -122.307701, 37.893720 ], [ -122.307572, 37.893127 ], [ -122.307529, 37.892619 ], [ -122.307658, 37.891671 ], [ -122.307894, 37.890976 ], [ -122.308238, 37.892179 ], [ -122.308023, 37.892162 ], [ -122.307851, 37.892280 ], [ -122.307808, 37.893025 ], [ -122.307873, 37.893652 ], [ -122.308280, 37.895227 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301478, 37.898207 ], [ -122.300985, 37.896700 ], [ -122.301135, 37.896683 ], [ -122.301629, 37.898528 ], [ -122.301478, 37.898207 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301629, 37.898528 ], [ -122.301478, 37.898207 ], [ -122.300985, 37.896700 ], [ -122.301135, 37.896683 ], [ -122.301629, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.898308 ], [ -122.300127, 37.896869 ], [ -122.300985, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.301500, 37.898528 ], [ -122.300599, 37.898308 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "population": 4, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301500, 37.898528 ], [ -122.300599, 37.898308 ], [ -122.300127, 37.896869 ], [ -122.300985, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.301500, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300298, 37.898241 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897055 ], [ -122.300127, 37.896869 ], [ -122.300599, 37.898308 ], [ -122.300298, 37.898241 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.898308 ], [ -122.300298, 37.898241 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897055 ], [ -122.300127, 37.896869 ], [ -122.300599, 37.898308 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301135, 37.896683 ], [ -122.300920, 37.896022 ], [ -122.302616, 37.895667 ], [ -122.302015, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894515 ], [ -122.303131, 37.894261 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.893533 ], [ -122.303302, 37.893144 ], [ -122.303495, 37.892839 ], [ -122.303088, 37.891603 ], [ -122.303324, 37.890841 ], [ -122.303452, 37.890536 ], [ -122.303560, 37.890350 ], [ -122.303731, 37.890180 ], [ -122.303967, 37.890045 ], [ -122.304418, 37.889909 ], [ -122.304933, 37.889825 ], [ -122.306027, 37.889588 ], [ -122.306693, 37.891704 ], [ -122.306714, 37.892009 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308495, 37.896835 ], [ -122.308602, 37.897157 ], [ -122.308967, 37.897987 ], [ -122.308795, 37.898037 ], [ -122.306199, 37.898241 ], [ -122.305341, 37.898427 ], [ -122.304590, 37.898427 ], [ -122.303731, 37.898528 ], [ -122.301629, 37.898528 ], [ -122.301135, 37.896683 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301629, 37.898528 ], [ -122.301135, 37.896683 ], [ -122.300920, 37.896022 ], [ -122.302616, 37.895667 ], [ -122.302015, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894515 ], [ -122.303131, 37.894261 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.893533 ], [ -122.303302, 37.893144 ], [ -122.303495, 37.892839 ], [ -122.303088, 37.891603 ], [ -122.303324, 37.890841 ], [ -122.303452, 37.890536 ], [ -122.303560, 37.890350 ], [ -122.303731, 37.890180 ], [ -122.303967, 37.890045 ], [ -122.304418, 37.889909 ], [ -122.304933, 37.889825 ], [ -122.306027, 37.889588 ], [ -122.306693, 37.891704 ], [ -122.306714, 37.892009 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308495, 37.896835 ], [ -122.308602, 37.897157 ], [ -122.308967, 37.897987 ], [ -122.308795, 37.898037 ], [ -122.306199, 37.898241 ], [ -122.305341, 37.898427 ], [ -122.304590, 37.898427 ], [ -122.303731, 37.898528 ], [ -122.301629, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303302, 37.893144 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.894261 ], [ -122.303109, 37.894515 ], [ -122.302251, 37.891772 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.894515 ], [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303302, 37.893144 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.894261 ], [ -122.303109, 37.894515 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.302015, 37.893821 ], [ -122.302616, 37.895667 ], [ -122.301779, 37.895836 ], [ -122.301178, 37.893990 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895836 ], [ -122.301178, 37.893990 ], [ -122.302015, 37.893821 ], [ -122.302616, 37.895667 ], [ -122.301779, 37.895836 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896683 ], [ -122.300985, 37.896700 ], [ -122.300792, 37.896056 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300985, 37.896700 ], [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896683 ], [ -122.300985, 37.896700 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300470, 37.895074 ], [ -122.300599, 37.895057 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ], [ -122.300470, 37.895074 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300470, 37.895074 ], [ -122.300599, 37.895057 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895260 ], [ -122.300470, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ], [ -122.299612, 37.895260 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300127, 37.896869 ], [ -122.299612, 37.895260 ], [ -122.300470, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.895057 ], [ -122.300341, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895836 ], [ -122.300920, 37.896022 ], [ -122.300599, 37.895057 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.300599, 37.895057 ], [ -122.300341, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895836 ], [ -122.300920, 37.896022 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891942 ], [ -122.302251, 37.891772 ], [ -122.302852, 37.893652 ], [ -122.302015, 37.893821 ], [ -122.301435, 37.891942 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302015, 37.893821 ], [ -122.301435, 37.891942 ], [ -122.302251, 37.891772 ], [ -122.302852, 37.893652 ], [ -122.302015, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892111 ], [ -122.301435, 37.891942 ], [ -122.302015, 37.893821 ], [ -122.301178, 37.893990 ], [ -122.300577, 37.892111 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "population": 46, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.300577, 37.892111 ], [ -122.301435, 37.891942 ], [ -122.302015, 37.893821 ], [ -122.301178, 37.893990 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893466 ], [ -122.300084, 37.893432 ], [ -122.300556, 37.894871 ], [ -122.300599, 37.895057 ], [ -122.300470, 37.895074 ], [ -122.299955, 37.893466 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300470, 37.895074 ], [ -122.299955, 37.893466 ], [ -122.300084, 37.893432 ], [ -122.300556, 37.894871 ], [ -122.300599, 37.895057 ], [ -122.300470, 37.895074 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300084, 37.893432 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892111 ], [ -122.301178, 37.893990 ], [ -122.300341, 37.894160 ], [ -122.300084, 37.893432 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300341, 37.894160 ], [ -122.300084, 37.893432 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892111 ], [ -122.301178, 37.893990 ], [ -122.300341, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892314 ], [ -122.299719, 37.892297 ], [ -122.300084, 37.893432 ], [ -122.299955, 37.893466 ], [ -122.299590, 37.892314 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893466 ], [ -122.299590, 37.892314 ], [ -122.299719, 37.892297 ], [ -122.300084, 37.893432 ], [ -122.299955, 37.893466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327442, 37.889130 ], [ -122.327571, 37.888690 ], [ -122.327421, 37.888622 ], [ -122.327034, 37.888690 ], [ -122.326713, 37.888589 ], [ -122.325447, 37.888081 ], [ -122.324910, 37.887911 ], [ -122.324610, 37.887877 ], [ -122.322936, 37.888284 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889063 ], [ -122.322764, 37.889164 ], [ -122.322528, 37.889300 ], [ -122.322249, 37.889384 ], [ -122.321928, 37.889401 ], [ -122.321649, 37.889368 ], [ -122.321348, 37.889266 ], [ -122.320919, 37.889249 ], [ -122.319610, 37.889435 ], [ -122.318945, 37.889384 ], [ -122.317808, 37.889351 ], [ -122.317250, 37.889283 ], [ -122.316842, 37.888927 ], [ -122.316756, 37.888741 ], [ -122.316585, 37.888589 ], [ -122.316048, 37.887911 ], [ -122.315834, 37.887386 ], [ -122.315898, 37.886810 ], [ -122.315876, 37.886573 ], [ -122.315941, 37.886235 ], [ -122.316477, 37.886116 ], [ -122.316456, 37.885947 ], [ -122.315984, 37.885947 ], [ -122.316027, 37.885659 ], [ -122.316864, 37.885642 ], [ -122.316864, 37.885760 ], [ -122.317035, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885506 ], [ -122.316091, 37.885439 ], [ -122.315705, 37.885269 ], [ -122.315447, 37.884710 ], [ -122.315469, 37.884592 ], [ -122.315619, 37.884406 ], [ -122.315662, 37.884287 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884016 ], [ -122.315319, 37.884067 ], [ -122.315018, 37.883965 ], [ -122.314589, 37.883525 ], [ -122.314374, 37.883373 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313602, 37.882424 ], [ -122.313044, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327635, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889672 ], [ -122.327442, 37.889130 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889672 ], [ -122.327442, 37.889130 ], [ -122.327571, 37.888690 ], [ -122.327421, 37.888622 ], [ -122.327034, 37.888690 ], [ -122.326713, 37.888589 ], [ -122.325447, 37.888081 ], [ -122.324910, 37.887911 ], [ -122.324610, 37.887877 ], [ -122.322936, 37.888284 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889063 ], [ -122.322764, 37.889164 ], [ -122.322528, 37.889300 ], [ -122.322249, 37.889384 ], [ -122.321928, 37.889401 ], [ -122.321649, 37.889368 ], [ -122.321348, 37.889266 ], [ -122.320919, 37.889249 ], [ -122.319610, 37.889435 ], [ -122.318945, 37.889384 ], [ -122.317808, 37.889351 ], [ -122.317250, 37.889283 ], [ -122.316842, 37.888927 ], [ -122.316756, 37.888741 ], [ -122.316585, 37.888589 ], [ -122.316048, 37.887911 ], [ -122.315834, 37.887386 ], [ -122.315898, 37.886810 ], [ -122.315876, 37.886573 ], [ -122.315941, 37.886235 ], [ -122.316477, 37.886116 ], [ -122.316456, 37.885947 ], [ -122.315984, 37.885947 ], [ -122.316027, 37.885659 ], [ -122.316864, 37.885642 ], [ -122.316864, 37.885760 ], [ -122.317035, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885506 ], [ -122.316091, 37.885439 ], [ -122.315705, 37.885269 ], [ -122.315447, 37.884710 ], [ -122.315469, 37.884592 ], [ -122.315619, 37.884406 ], [ -122.315662, 37.884287 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884016 ], [ -122.315319, 37.884067 ], [ -122.315018, 37.883965 ], [ -122.314589, 37.883525 ], [ -122.314374, 37.883373 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313602, 37.882424 ], [ -122.313044, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327635, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889672 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.315791, 37.889520 ], [ -122.315598, 37.889639 ], [ -122.311242, 37.889452 ], [ -122.310190, 37.888521 ], [ -122.309804, 37.888131 ], [ -122.309783, 37.888047 ], [ -122.309353, 37.887674 ], [ -122.309289, 37.887877 ], [ -122.309225, 37.887843 ], [ -122.309289, 37.887589 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887166 ], [ -122.309546, 37.886980 ], [ -122.309525, 37.886455 ], [ -122.308881, 37.884016 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882289 ], [ -122.312465, 37.881391 ], [ -122.313044, 37.882204 ], [ -122.313602, 37.882424 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314374, 37.883373 ], [ -122.314589, 37.883525 ], [ -122.315018, 37.883965 ], [ -122.315319, 37.884067 ], [ -122.315469, 37.884016 ], [ -122.315598, 37.884067 ], [ -122.315662, 37.884287 ], [ -122.315619, 37.884406 ], [ -122.315469, 37.884592 ], [ -122.315447, 37.884710 ], [ -122.315705, 37.885269 ], [ -122.316091, 37.885439 ], [ -122.316027, 37.885506 ], [ -122.317057, 37.885489 ], [ -122.317035, 37.885760 ], [ -122.316864, 37.885760 ], [ -122.316864, 37.885642 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885947 ], [ -122.316456, 37.885947 ], [ -122.316477, 37.886116 ], [ -122.315941, 37.886235 ], [ -122.315876, 37.886573 ], [ -122.315898, 37.886810 ], [ -122.315834, 37.887386 ], [ -122.316048, 37.887911 ], [ -122.316585, 37.888589 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888927 ], [ -122.317250, 37.889283 ], [ -122.317808, 37.889351 ], [ -122.318945, 37.889384 ], [ -122.319610, 37.889435 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889266 ], [ -122.321649, 37.889368 ], [ -122.321928, 37.889401 ], [ -122.322249, 37.889384 ], [ -122.322528, 37.889300 ], [ -122.322764, 37.889164 ], [ -122.322850, 37.889063 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888284 ], [ -122.324610, 37.887877 ], [ -122.324910, 37.887911 ], [ -122.325447, 37.888081 ], [ -122.326713, 37.888589 ], [ -122.327034, 37.888690 ], [ -122.327421, 37.888622 ], [ -122.327571, 37.888690 ], [ -122.327442, 37.889130 ], [ -122.327571, 37.889672 ], [ -122.315791, 37.889520 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889672 ], [ -122.315791, 37.889520 ], [ -122.315598, 37.889639 ], [ -122.311242, 37.889452 ], [ -122.310190, 37.888521 ], [ -122.309804, 37.888131 ], [ -122.309783, 37.888047 ], [ -122.309353, 37.887674 ], [ -122.309289, 37.887877 ], [ -122.309225, 37.887843 ], [ -122.309289, 37.887589 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887166 ], [ -122.309546, 37.886980 ], [ -122.309525, 37.886455 ], [ -122.308881, 37.884016 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882289 ], [ -122.312465, 37.881391 ], [ -122.313044, 37.882204 ], [ -122.313602, 37.882424 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314374, 37.883373 ], [ -122.314589, 37.883525 ], [ -122.315018, 37.883965 ], [ -122.315319, 37.884067 ], [ -122.315469, 37.884016 ], [ -122.315598, 37.884067 ], [ -122.315662, 37.884287 ], [ -122.315619, 37.884406 ], [ -122.315469, 37.884592 ], [ -122.315447, 37.884710 ], [ -122.315705, 37.885269 ], [ -122.316091, 37.885439 ], [ -122.316027, 37.885506 ], [ -122.317057, 37.885489 ], [ -122.317035, 37.885760 ], [ -122.316864, 37.885760 ], [ -122.316864, 37.885642 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885947 ], [ -122.316456, 37.885947 ], [ -122.316477, 37.886116 ], [ -122.315941, 37.886235 ], [ -122.315876, 37.886573 ], [ -122.315898, 37.886810 ], [ -122.315834, 37.887386 ], [ -122.316048, 37.887911 ], [ -122.316585, 37.888589 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888927 ], [ -122.317250, 37.889283 ], [ -122.317808, 37.889351 ], [ -122.318945, 37.889384 ], [ -122.319610, 37.889435 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889266 ], [ -122.321649, 37.889368 ], [ -122.321928, 37.889401 ], [ -122.322249, 37.889384 ], [ -122.322528, 37.889300 ], [ -122.322764, 37.889164 ], [ -122.322850, 37.889063 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888284 ], [ -122.324610, 37.887877 ], [ -122.324910, 37.887911 ], [ -122.325447, 37.888081 ], [ -122.326713, 37.888589 ], [ -122.327034, 37.888690 ], [ -122.327421, 37.888622 ], [ -122.327571, 37.888690 ], [ -122.327442, 37.889130 ], [ -122.327571, 37.889672 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309611, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887877 ], [ -122.309353, 37.887674 ], [ -122.309783, 37.888047 ], [ -122.309804, 37.888131 ], [ -122.309611, 37.888030 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309804, 37.888131 ], [ -122.309611, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887877 ], [ -122.309353, 37.887674 ], [ -122.309783, 37.888047 ], [ -122.309804, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309053, 37.887437 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.309096, 37.888385 ], [ -122.308967, 37.888775 ], [ -122.309053, 37.887437 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308967, 37.888775 ], [ -122.309053, 37.887437 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.309096, 37.888385 ], [ -122.308967, 37.888775 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.889215 ], [ -122.308366, 37.888995 ], [ -122.308538, 37.888284 ], [ -122.308495, 37.887640 ], [ -122.308538, 37.887556 ], [ -122.308624, 37.887335 ], [ -122.308881, 37.887420 ], [ -122.309053, 37.887437 ], [ -122.308967, 37.888775 ], [ -122.308345, 37.890079 ], [ -122.308345, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.890079 ], [ -122.308345, 37.889215 ], [ -122.308366, 37.888995 ], [ -122.308538, 37.888284 ], [ -122.308495, 37.887640 ], [ -122.308538, 37.887556 ], [ -122.308624, 37.887335 ], [ -122.308881, 37.887420 ], [ -122.309053, 37.887437 ], [ -122.308967, 37.888775 ], [ -122.308345, 37.890079 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890248 ], [ -122.306607, 37.890197 ], [ -122.306306, 37.890096 ], [ -122.306135, 37.889909 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889537 ], [ -122.306821, 37.890688 ], [ -122.306714, 37.890739 ], [ -122.306414, 37.890807 ], [ -122.306242, 37.890248 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890807 ], [ -122.306242, 37.890248 ], [ -122.306607, 37.890197 ], [ -122.306306, 37.890096 ], [ -122.306135, 37.889909 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889537 ], [ -122.306821, 37.890688 ], [ -122.306714, 37.890739 ], [ -122.306414, 37.890807 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306135, 37.889909 ], [ -122.306306, 37.890096 ], [ -122.306607, 37.890197 ], [ -122.306242, 37.890248 ], [ -122.306135, 37.889909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890248 ], [ -122.306135, 37.889909 ], [ -122.306306, 37.890096 ], [ -122.306607, 37.890197 ], [ -122.306242, 37.890248 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889503 ], [ -122.308323, 37.888047 ], [ -122.308495, 37.887640 ], [ -122.308538, 37.888284 ], [ -122.308366, 37.888995 ], [ -122.308323, 37.889520 ], [ -122.308345, 37.890079 ], [ -122.307894, 37.890976 ], [ -122.307529, 37.889503 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307894, 37.890976 ], [ -122.307529, 37.889503 ], [ -122.308323, 37.888047 ], [ -122.308495, 37.887640 ], [ -122.308538, 37.888284 ], [ -122.308366, 37.888995 ], [ -122.308323, 37.889520 ], [ -122.308345, 37.890079 ], [ -122.307894, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307208, 37.887200 ], [ -122.307851, 37.887200 ], [ -122.308130, 37.887234 ], [ -122.308624, 37.887335 ], [ -122.308581, 37.887454 ], [ -122.308323, 37.888047 ], [ -122.307701, 37.889181 ], [ -122.307208, 37.887200 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889181 ], [ -122.307208, 37.887200 ], [ -122.307851, 37.887200 ], [ -122.308130, 37.887234 ], [ -122.308624, 37.887335 ], [ -122.308581, 37.887454 ], [ -122.308323, 37.888047 ], [ -122.307701, 37.889181 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305834, 37.888961 ], [ -122.307293, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ], [ -122.305834, 37.888961 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306027, 37.889588 ], [ -122.305834, 37.888961 ], [ -122.307293, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305834, 37.888961 ], [ -122.304976, 37.889130 ], [ -122.304955, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "population": 1, "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304976, 37.889130 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305834, 37.888961 ], [ -122.304976, 37.889130 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.307293, 37.888622 ], [ -122.307293, 37.888673 ], [ -122.305834, 37.888961 ], [ -122.305813, 37.888910 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "population": 7, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305834, 37.888961 ], [ -122.305813, 37.888910 ], [ -122.307293, 37.888622 ], [ -122.307293, 37.888673 ], [ -122.305834, 37.888961 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888250 ], [ -122.307122, 37.887945 ], [ -122.307293, 37.888622 ], [ -122.305813, 37.888910 ], [ -122.305598, 37.888250 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.305598, 37.888250 ], [ -122.307122, 37.887945 ], [ -122.307293, 37.888622 ], [ -122.305813, 37.888910 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307079, 37.887793 ], [ -122.307014, 37.887573 ], [ -122.306950, 37.887471 ], [ -122.306821, 37.887454 ], [ -122.306070, 37.887505 ], [ -122.305512, 37.887505 ], [ -122.305427, 37.887471 ], [ -122.306993, 37.887200 ], [ -122.307208, 37.887200 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889503 ], [ -122.307079, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889503 ], [ -122.307079, 37.887793 ], [ -122.307014, 37.887573 ], [ -122.306950, 37.887471 ], [ -122.306821, 37.887454 ], [ -122.306070, 37.887505 ], [ -122.305512, 37.887505 ], [ -122.305427, 37.887471 ], [ -122.306993, 37.887200 ], [ -122.307208, 37.887200 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889503 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308881, 37.887420 ], [ -122.308624, 37.887335 ], [ -122.308667, 37.887217 ], [ -122.308967, 37.887335 ], [ -122.309053, 37.887437 ], [ -122.308881, 37.887420 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309053, 37.887437 ], [ -122.308881, 37.887420 ], [ -122.308624, 37.887335 ], [ -122.308667, 37.887217 ], [ -122.308967, 37.887335 ], [ -122.309053, 37.887437 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308967, 37.887335 ], [ -122.308667, 37.887217 ], [ -122.308838, 37.886472 ], [ -122.309010, 37.885388 ], [ -122.309010, 37.885134 ], [ -122.309268, 37.886319 ], [ -122.309332, 37.886827 ], [ -122.309289, 37.887318 ], [ -122.309053, 37.887437 ], [ -122.308967, 37.887335 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309053, 37.887437 ], [ -122.308967, 37.887335 ], [ -122.308667, 37.887217 ], [ -122.308838, 37.886472 ], [ -122.309010, 37.885388 ], [ -122.309010, 37.885134 ], [ -122.309268, 37.886319 ], [ -122.309332, 37.886827 ], [ -122.309289, 37.887318 ], [ -122.309053, 37.887437 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.886827 ], [ -122.309268, 37.886319 ], [ -122.309010, 37.885134 ], [ -122.308645, 37.883491 ], [ -122.308881, 37.884016 ], [ -122.309525, 37.886455 ], [ -122.309525, 37.887064 ], [ -122.309461, 37.887166 ], [ -122.309289, 37.887318 ], [ -122.309332, 37.886827 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309289, 37.887318 ], [ -122.309332, 37.886827 ], [ -122.309268, 37.886319 ], [ -122.309010, 37.885134 ], [ -122.308645, 37.883491 ], [ -122.308881, 37.884016 ], [ -122.309525, 37.886455 ], [ -122.309525, 37.887064 ], [ -122.309461, 37.887166 ], [ -122.309289, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887098 ], [ -122.307401, 37.887064 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886726 ], [ -122.307572, 37.884169 ], [ -122.307830, 37.882018 ], [ -122.308366, 37.882187 ], [ -122.308645, 37.883491 ], [ -122.309010, 37.885134 ], [ -122.309010, 37.885388 ], [ -122.308838, 37.886472 ], [ -122.308667, 37.887217 ], [ -122.308044, 37.887098 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308667, 37.887217 ], [ -122.308044, 37.887098 ], [ -122.307401, 37.887064 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886726 ], [ -122.307572, 37.884169 ], [ -122.307830, 37.882018 ], [ -122.308366, 37.882187 ], [ -122.308645, 37.883491 ], [ -122.309010, 37.885134 ], [ -122.309010, 37.885388 ], [ -122.308838, 37.886472 ], [ -122.308667, 37.887217 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308517, 37.887318 ], [ -122.307851, 37.887200 ], [ -122.307208, 37.887200 ], [ -122.307229, 37.887081 ], [ -122.307401, 37.887064 ], [ -122.308044, 37.887098 ], [ -122.308667, 37.887217 ], [ -122.308624, 37.887335 ], [ -122.308517, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308624, 37.887335 ], [ -122.308517, 37.887318 ], [ -122.307851, 37.887200 ], [ -122.307208, 37.887200 ], [ -122.307229, 37.887081 ], [ -122.307401, 37.887064 ], [ -122.308044, 37.887098 ], [ -122.308667, 37.887217 ], [ -122.308624, 37.887335 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305341, 37.887471 ], [ -122.305427, 37.887471 ], [ -122.305512, 37.887505 ], [ -122.306070, 37.887505 ], [ -122.306907, 37.887454 ], [ -122.306993, 37.887522 ], [ -122.307122, 37.887945 ], [ -122.305598, 37.888250 ], [ -122.305341, 37.887471 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888250 ], [ -122.305341, 37.887471 ], [ -122.305427, 37.887471 ], [ -122.305512, 37.887505 ], [ -122.306070, 37.887505 ], [ -122.306907, 37.887454 ], [ -122.306993, 37.887522 ], [ -122.307122, 37.887945 ], [ -122.305598, 37.888250 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307100, 37.886878 ], [ -122.306800, 37.885591 ], [ -122.306178, 37.883271 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881882 ], [ -122.307315, 37.881916 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882018 ], [ -122.307572, 37.884169 ], [ -122.307358, 37.886726 ], [ -122.307229, 37.887081 ], [ -122.307165, 37.887081 ], [ -122.307100, 37.886878 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307165, 37.887081 ], [ -122.307100, 37.886878 ], [ -122.306800, 37.885591 ], [ -122.306178, 37.883271 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881882 ], [ -122.307315, 37.881916 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882018 ], [ -122.307572, 37.884169 ], [ -122.307358, 37.886726 ], [ -122.307229, 37.887081 ], [ -122.307165, 37.887081 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.303302, 37.889452 ], [ -122.303560, 37.890350 ], [ -122.303324, 37.890841 ], [ -122.303088, 37.891603 ], [ -122.302465, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303088, 37.891603 ], [ -122.302465, 37.889622 ], [ -122.303302, 37.889452 ], [ -122.303560, 37.890350 ], [ -122.303324, 37.890841 ], [ -122.303088, 37.891603 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303302, 37.889452 ], [ -122.305834, 37.888961 ], [ -122.306027, 37.889588 ], [ -122.304161, 37.889977 ], [ -122.303967, 37.890045 ], [ -122.303731, 37.890180 ], [ -122.303560, 37.890350 ], [ -122.303302, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303560, 37.890350 ], [ -122.303302, 37.889452 ], [ -122.305834, 37.888961 ], [ -122.306027, 37.889588 ], [ -122.304161, 37.889977 ], [ -122.303967, 37.890045 ], [ -122.303731, 37.890180 ], [ -122.303560, 37.890350 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304118, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304976, 37.889130 ], [ -122.304139, 37.889283 ], [ -122.304118, 37.889249 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "population": 1, "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889283 ], [ -122.304118, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304976, 37.889130 ], [ -122.304139, 37.889283 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304461, 37.887522 ], [ -122.305341, 37.887471 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ], [ -122.304461, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304461, 37.887522 ], [ -122.305341, 37.887471 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887556 ], [ -122.304461, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304118, 37.889249 ], [ -122.303581, 37.887556 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304118, 37.889249 ], [ -122.303581, 37.887556 ], [ -122.304461, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304118, 37.889249 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889401 ], [ -122.304118, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303302, 37.889452 ], [ -122.303281, 37.889401 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303302, 37.889452 ], [ -122.303281, 37.889401 ], [ -122.304118, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303302, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302444, 37.889571 ], [ -122.303281, 37.889401 ], [ -122.303302, 37.889452 ], [ -122.302465, 37.889622 ], [ -122.302444, 37.889571 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.302444, 37.889571 ], [ -122.303281, 37.889401 ], [ -122.303302, 37.889452 ], [ -122.302465, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302701, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304118, 37.889249 ], [ -122.303281, 37.889401 ], [ -122.302701, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "population": 31, "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889401 ], [ -122.302701, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304118, 37.889249 ], [ -122.303281, 37.889401 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301714, 37.890113 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303088, 37.891603 ], [ -122.302251, 37.891772 ], [ -122.301714, 37.890113 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891772 ], [ -122.301714, 37.890113 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303088, 37.891603 ], [ -122.302251, 37.891772 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300770, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.301714, 37.890113 ], [ -122.302251, 37.891772 ], [ -122.301435, 37.891942 ], [ -122.300770, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891942 ], [ -122.300770, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.301714, 37.890113 ], [ -122.302251, 37.891772 ], [ -122.301435, 37.891942 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.891806 ], [ -122.299054, 37.890265 ], [ -122.299311, 37.890248 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892111 ], [ -122.299719, 37.892297 ], [ -122.299547, 37.891806 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "population": 38, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892297 ], [ -122.299547, 37.891806 ], [ -122.299054, 37.890265 ], [ -122.299311, 37.890248 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892111 ], [ -122.299719, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.300770, 37.889960 ], [ -122.301435, 37.891942 ], [ -122.300577, 37.892111 ], [ -122.299933, 37.890130 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892111 ], [ -122.299933, 37.890130 ], [ -122.300770, 37.889960 ], [ -122.301435, 37.891942 ], [ -122.300577, 37.892111 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301822, 37.887623 ], [ -122.302701, 37.887589 ], [ -122.303281, 37.889401 ], [ -122.302444, 37.889571 ], [ -122.301822, 37.887623 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302444, 37.889571 ], [ -122.301822, 37.887623 ], [ -122.302701, 37.887589 ], [ -122.303281, 37.889401 ], [ -122.302444, 37.889571 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300684, 37.887742 ], [ -122.301822, 37.887623 ], [ -122.302444, 37.889571 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ], [ -122.300684, 37.887742 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.300684, 37.887742 ], [ -122.301822, 37.887623 ], [ -122.302444, 37.889571 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299912, 37.890079 ], [ -122.300770, 37.889909 ], [ -122.300770, 37.889960 ], [ -122.300105, 37.890096 ], [ -122.299933, 37.890130 ], [ -122.299912, 37.890079 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.299912, 37.890079 ], [ -122.300770, 37.889909 ], [ -122.300770, 37.889960 ], [ -122.300105, 37.890096 ], [ -122.299933, 37.890130 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300062, 37.887725 ], [ -122.300684, 37.887742 ], [ -122.301650, 37.889791 ], [ -122.300770, 37.889960 ], [ -122.300062, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "population": 69, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300770, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300684, 37.887742 ], [ -122.301650, 37.889791 ], [ -122.300770, 37.889960 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299182, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.300770, 37.889909 ], [ -122.299912, 37.890079 ], [ -122.299182, 37.887742 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "population": 70, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299912, 37.890079 ], [ -122.299182, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.300770, 37.889909 ], [ -122.299912, 37.890079 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302079, 37.887505 ], [ -122.305834, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307208, 37.887200 ], [ -122.306993, 37.887200 ], [ -122.305427, 37.887471 ], [ -122.302208, 37.887606 ], [ -122.302101, 37.887606 ], [ -122.302079, 37.887505 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302101, 37.887606 ], [ -122.302079, 37.887505 ], [ -122.305834, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307208, 37.887200 ], [ -122.306993, 37.887200 ], [ -122.305427, 37.887471 ], [ -122.302208, 37.887606 ], [ -122.302101, 37.887606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300963, 37.887657 ], [ -122.300513, 37.886319 ], [ -122.302337, 37.886031 ], [ -122.304590, 37.885845 ], [ -122.304482, 37.885337 ], [ -122.306800, 37.885591 ], [ -122.307165, 37.887081 ], [ -122.305834, 37.887318 ], [ -122.302079, 37.887505 ], [ -122.302101, 37.887606 ], [ -122.300684, 37.887742 ], [ -122.300963, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300684, 37.887742 ], [ -122.300963, 37.887657 ], [ -122.300513, 37.886319 ], [ -122.302337, 37.886031 ], [ -122.304590, 37.885845 ], [ -122.304482, 37.885337 ], [ -122.306800, 37.885591 ], [ -122.307165, 37.887081 ], [ -122.305834, 37.887318 ], [ -122.302079, 37.887505 ], [ -122.302101, 37.887606 ], [ -122.300684, 37.887742 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303903, 37.884744 ], [ -122.303603, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304525, 37.885473 ], [ -122.304590, 37.885845 ], [ -122.304225, 37.885879 ], [ -122.303903, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304225, 37.885879 ], [ -122.303903, 37.884744 ], [ -122.303603, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304525, 37.885473 ], [ -122.304590, 37.885845 ], [ -122.304225, 37.885879 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304482, 37.885337 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303431, 37.882881 ], [ -122.302938, 37.883017 ], [ -122.302616, 37.883068 ], [ -122.302444, 37.882763 ], [ -122.302358, 37.882509 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302959, 37.882407 ], [ -122.303131, 37.882323 ], [ -122.303324, 37.882289 ], [ -122.303967, 37.882255 ], [ -122.304525, 37.882272 ], [ -122.305233, 37.882221 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306800, 37.885591 ], [ -122.304482, 37.885337 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306800, 37.885591 ], [ -122.304482, 37.885337 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303431, 37.882881 ], [ -122.302938, 37.883017 ], [ -122.302616, 37.883068 ], [ -122.302444, 37.882763 ], [ -122.302358, 37.882509 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302959, 37.882407 ], [ -122.303131, 37.882323 ], [ -122.303324, 37.882289 ], [ -122.303967, 37.882255 ], [ -122.304525, 37.882272 ], [ -122.305233, 37.882221 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306800, 37.885591 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303903, 37.885659 ], [ -122.303302, 37.883711 ], [ -122.303603, 37.883660 ], [ -122.304225, 37.885879 ], [ -122.303946, 37.885896 ], [ -122.303903, 37.885659 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303946, 37.885896 ], [ -122.303903, 37.885659 ], [ -122.303302, 37.883711 ], [ -122.303603, 37.883660 ], [ -122.304225, 37.885879 ], [ -122.303946, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302959, 37.883796 ], [ -122.303302, 37.883711 ], [ -122.303903, 37.885659 ], [ -122.303946, 37.885896 ], [ -122.303431, 37.885947 ], [ -122.302959, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303431, 37.885947 ], [ -122.302959, 37.883796 ], [ -122.303302, 37.883711 ], [ -122.303903, 37.885659 ], [ -122.303946, 37.885896 ], [ -122.303431, 37.885947 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.884440 ], [ -122.299912, 37.884067 ], [ -122.299805, 37.884084 ], [ -122.299826, 37.883881 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.300534, 37.883288 ], [ -122.300663, 37.883356 ], [ -122.300856, 37.883406 ], [ -122.300985, 37.883406 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883356 ], [ -122.301114, 37.883356 ], [ -122.301414, 37.883271 ], [ -122.301607, 37.883254 ], [ -122.301650, 37.883220 ], [ -122.302079, 37.883119 ], [ -122.302616, 37.883068 ], [ -122.302959, 37.883796 ], [ -122.303431, 37.885947 ], [ -122.302508, 37.886014 ], [ -122.301800, 37.886099 ], [ -122.300513, 37.886319 ], [ -122.299933, 37.884440 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299933, 37.884440 ], [ -122.299912, 37.884067 ], [ -122.299805, 37.884084 ], [ -122.299826, 37.883881 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.300534, 37.883288 ], [ -122.300663, 37.883356 ], [ -122.300856, 37.883406 ], [ -122.300985, 37.883406 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883356 ], [ -122.301114, 37.883356 ], [ -122.301414, 37.883271 ], [ -122.301607, 37.883254 ], [ -122.301650, 37.883220 ], [ -122.302079, 37.883119 ], [ -122.302616, 37.883068 ], [ -122.302959, 37.883796 ], [ -122.303431, 37.885947 ], [ -122.302508, 37.886014 ], [ -122.301800, 37.886099 ], [ -122.300513, 37.886319 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302616, 37.883068 ], [ -122.302938, 37.883017 ], [ -122.303431, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302959, 37.883796 ], [ -122.302616, 37.883068 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "population": 30, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302959, 37.883796 ], [ -122.302616, 37.883068 ], [ -122.302938, 37.883017 ], [ -122.303431, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302959, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.883356 ], [ -122.300534, 37.883288 ], [ -122.300341, 37.883254 ], [ -122.300298, 37.883220 ], [ -122.300277, 37.883119 ], [ -122.300212, 37.882881 ], [ -122.300642, 37.882814 ], [ -122.301092, 37.882780 ], [ -122.301908, 37.882577 ], [ -122.302337, 37.882509 ], [ -122.302616, 37.883068 ], [ -122.302079, 37.883119 ], [ -122.301650, 37.883220 ], [ -122.301607, 37.883254 ], [ -122.301414, 37.883271 ], [ -122.301114, 37.883356 ], [ -122.300985, 37.883356 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883406 ], [ -122.300856, 37.883406 ], [ -122.300663, 37.883356 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300856, 37.883406 ], [ -122.300663, 37.883356 ], [ -122.300534, 37.883288 ], [ -122.300341, 37.883254 ], [ -122.300298, 37.883220 ], [ -122.300277, 37.883119 ], [ -122.300212, 37.882881 ], [ -122.300642, 37.882814 ], [ -122.301092, 37.882780 ], [ -122.301908, 37.882577 ], [ -122.302337, 37.882509 ], [ -122.302616, 37.883068 ], [ -122.302079, 37.883119 ], [ -122.301650, 37.883220 ], [ -122.301607, 37.883254 ], [ -122.301414, 37.883271 ], [ -122.301114, 37.883356 ], [ -122.300985, 37.883356 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883406 ], [ -122.300856, 37.883406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.299290, 37.897055 ], [ -122.299719, 37.898291 ], [ -122.299397, 37.898325 ], [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299290, 37.897055 ], [ -122.299719, 37.898291 ], [ -122.299397, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898749 ], [ -122.297616, 37.897394 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898749 ], [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898749 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.297616, 37.897394 ], [ -122.298045, 37.898749 ], [ -122.297788, 37.898833 ], [ -122.297208, 37.898901 ], [ -122.296779, 37.897546 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297208, 37.898901 ], [ -122.296779, 37.897546 ], [ -122.297616, 37.897394 ], [ -122.298045, 37.898749 ], [ -122.297788, 37.898833 ], [ -122.297208, 37.898901 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.897767 ], [ -122.296779, 37.897546 ], [ -122.297208, 37.898901 ], [ -122.297015, 37.898935 ], [ -122.296221, 37.898935 ], [ -122.295706, 37.897767 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296221, 37.898935 ], [ -122.295706, 37.897767 ], [ -122.296779, 37.897546 ], [ -122.297208, 37.898901 ], [ -122.297015, 37.898935 ], [ -122.296221, 37.898935 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895938 ], [ -122.297080, 37.895768 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ], [ -122.296264, 37.895938 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.296264, 37.895938 ], [ -122.297080, 37.895768 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.896090 ], [ -122.296264, 37.895938 ], [ -122.296779, 37.897546 ], [ -122.295921, 37.897733 ], [ -122.295406, 37.896090 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "population": 27, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295921, 37.897733 ], [ -122.295406, 37.896090 ], [ -122.296264, 37.895938 ], [ -122.296779, 37.897546 ], [ -122.295921, 37.897733 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898749 ], [ -122.294590, 37.897750 ], [ -122.295706, 37.897767 ], [ -122.296221, 37.898935 ], [ -122.295985, 37.898935 ], [ -122.294569, 37.898749 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.898935 ], [ -122.294569, 37.898749 ], [ -122.294590, 37.897750 ], [ -122.295706, 37.897767 ], [ -122.296221, 37.898935 ], [ -122.295985, 37.898935 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895430 ], [ -122.299612, 37.895260 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897055 ], [ -122.298775, 37.895430 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897055 ], [ -122.298775, 37.895430 ], [ -122.299612, 37.895260 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897055 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297938, 37.895599 ], [ -122.298775, 37.895430 ], [ -122.299290, 37.897055 ], [ -122.298453, 37.897208 ], [ -122.297938, 37.895599 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297938, 37.895599 ], [ -122.298775, 37.895430 ], [ -122.299290, 37.897055 ], [ -122.298453, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299075, 37.893635 ], [ -122.299612, 37.895260 ], [ -122.298775, 37.895430 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895430 ], [ -122.298260, 37.893821 ], [ -122.299075, 37.893635 ], [ -122.299612, 37.895260 ], [ -122.298775, 37.895430 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895768 ], [ -122.297938, 37.895599 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ], [ -122.297080, 37.895768 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.297080, 37.895768 ], [ -122.297938, 37.895599 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297423, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895430 ], [ -122.297938, 37.895599 ], [ -122.297423, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297938, 37.895599 ], [ -122.297423, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895430 ], [ -122.297938, 37.895599 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296565, 37.894126 ], [ -122.297423, 37.893957 ], [ -122.297938, 37.895599 ], [ -122.297080, 37.895768 ], [ -122.296565, 37.894126 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895768 ], [ -122.296565, 37.894126 ], [ -122.297423, 37.893957 ], [ -122.297938, 37.895599 ], [ -122.297080, 37.895768 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893635 ], [ -122.299955, 37.893466 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895260 ], [ -122.299075, 37.893635 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895260 ], [ -122.299075, 37.893635 ], [ -122.299955, 37.893466 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895260 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892314 ], [ -122.299955, 37.893466 ], [ -122.299075, 37.893635 ], [ -122.298560, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893635 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892314 ], [ -122.299955, 37.893466 ], [ -122.299075, 37.893635 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892179 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893635 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892179 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "population": 53, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892179 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893635 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.892348 ], [ -122.297745, 37.892179 ], [ -122.298260, 37.893821 ], [ -122.297423, 37.893957 ], [ -122.296908, 37.892348 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297423, 37.893957 ], [ -122.296908, 37.892348 ], [ -122.297745, 37.892179 ], [ -122.298260, 37.893821 ], [ -122.297423, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295749, 37.894295 ], [ -122.296565, 37.894126 ], [ -122.297080, 37.895768 ], [ -122.296264, 37.895938 ], [ -122.295749, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895938 ], [ -122.295749, 37.894295 ], [ -122.296565, 37.894126 ], [ -122.297080, 37.895768 ], [ -122.296264, 37.895938 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294891, 37.894482 ], [ -122.295921, 37.897733 ], [ -122.295749, 37.897767 ], [ -122.295706, 37.897767 ], [ -122.294655, 37.894532 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.897767 ], [ -122.294655, 37.894532 ], [ -122.294891, 37.894482 ], [ -122.295921, 37.897733 ], [ -122.295749, 37.897767 ], [ -122.295706, 37.897767 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294590, 37.897750 ], [ -122.294719, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295706, 37.897767 ], [ -122.294590, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.897767 ], [ -122.294590, 37.897750 ], [ -122.294719, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295706, 37.897767 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294891, 37.894482 ], [ -122.295749, 37.894295 ], [ -122.296264, 37.895938 ], [ -122.295406, 37.896090 ], [ -122.294891, 37.894482 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.896090 ], [ -122.294891, 37.894482 ], [ -122.295749, 37.894295 ], [ -122.296264, 37.895938 ], [ -122.295406, 37.896090 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.892687 ], [ -122.296071, 37.892517 ], [ -122.296565, 37.894126 ], [ -122.295749, 37.894295 ], [ -122.295234, 37.892687 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295749, 37.894295 ], [ -122.295234, 37.892687 ], [ -122.296071, 37.892517 ], [ -122.296565, 37.894126 ], [ -122.295749, 37.894295 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892517 ], [ -122.296908, 37.892348 ], [ -122.297423, 37.893957 ], [ -122.296565, 37.894126 ], [ -122.296071, 37.892517 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "population": 32, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296565, 37.894126 ], [ -122.296071, 37.892517 ], [ -122.296908, 37.892348 ], [ -122.297423, 37.893957 ], [ -122.296565, 37.894126 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892856 ], [ -122.295234, 37.892687 ], [ -122.295749, 37.894295 ], [ -122.294891, 37.894482 ], [ -122.294354, 37.892856 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "population": 32, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294891, 37.894482 ], [ -122.294354, 37.892856 ], [ -122.295234, 37.892687 ], [ -122.295749, 37.894295 ], [ -122.294891, 37.894482 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294118, 37.892856 ], [ -122.294354, 37.892856 ], [ -122.294891, 37.894482 ], [ -122.294655, 37.894532 ], [ -122.294118, 37.892856 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294118, 37.892856 ], [ -122.294354, 37.892856 ], [ -122.294891, 37.894482 ], [ -122.294655, 37.894532 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293689, 37.898647 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898393 ], [ -122.293732, 37.897716 ], [ -122.294590, 37.897750 ], [ -122.294569, 37.898749 ], [ -122.293689, 37.898647 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898749 ], [ -122.293689, 37.898647 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898393 ], [ -122.293732, 37.897716 ], [ -122.294590, 37.897750 ], [ -122.294569, 37.898749 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.898630 ], [ -122.293196, 37.898427 ], [ -122.292831, 37.898376 ], [ -122.292852, 37.897699 ], [ -122.293732, 37.897716 ], [ -122.293711, 37.898393 ], [ -122.293668, 37.898528 ], [ -122.293689, 37.898647 ], [ -122.293582, 37.898630 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "population": 9, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293689, 37.898647 ], [ -122.293582, 37.898630 ], [ -122.293196, 37.898427 ], [ -122.292831, 37.898376 ], [ -122.292852, 37.897699 ], [ -122.293732, 37.897716 ], [ -122.293711, 37.898393 ], [ -122.293668, 37.898528 ], [ -122.293689, 37.898647 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292659, 37.898342 ], [ -122.292659, 37.897987 ], [ -122.292616, 37.897699 ], [ -122.292852, 37.897699 ], [ -122.292831, 37.898376 ], [ -122.292659, 37.898342 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292831, 37.898376 ], [ -122.292659, 37.898342 ], [ -122.292659, 37.897987 ], [ -122.292616, 37.897699 ], [ -122.292852, 37.897699 ], [ -122.292831, 37.898376 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896717 ], [ -122.292917, 37.896734 ], [ -122.292852, 37.897699 ], [ -122.292616, 37.897699 ], [ -122.292681, 37.896717 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "population": 2, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292616, 37.897699 ], [ -122.292681, 37.896717 ], [ -122.292917, 37.896734 ], [ -122.292852, 37.897699 ], [ -122.292616, 37.897699 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291994, 37.898241 ], [ -122.291608, 37.898105 ], [ -122.291715, 37.896700 ], [ -122.292681, 37.896717 ], [ -122.292616, 37.897699 ], [ -122.292659, 37.897987 ], [ -122.292659, 37.898342 ], [ -122.291994, 37.898241 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "population": 31, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292659, 37.898342 ], [ -122.291994, 37.898241 ], [ -122.291608, 37.898105 ], [ -122.291715, 37.896700 ], [ -122.292681, 37.896717 ], [ -122.292616, 37.897699 ], [ -122.292659, 37.897987 ], [ -122.292659, 37.898342 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.897936 ], [ -122.290728, 37.897902 ], [ -122.290814, 37.896666 ], [ -122.291715, 37.896700 ], [ -122.291608, 37.898105 ], [ -122.291093, 37.897936 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "population": 21, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291608, 37.898105 ], [ -122.291093, 37.897936 ], [ -122.290728, 37.897902 ], [ -122.290814, 37.896666 ], [ -122.291715, 37.896700 ], [ -122.291608, 37.898105 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897834 ], [ -122.289870, 37.897834 ], [ -122.289977, 37.896649 ], [ -122.290814, 37.896666 ], [ -122.290728, 37.897902 ], [ -122.290192, 37.897834 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "population": 16, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290728, 37.897902 ], [ -122.290192, 37.897834 ], [ -122.289870, 37.897834 ], [ -122.289977, 37.896649 ], [ -122.290814, 37.896666 ], [ -122.290728, 37.897902 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.896615 ], [ -122.289977, 37.896649 ], [ -122.289870, 37.897834 ], [ -122.289484, 37.897834 ], [ -122.289011, 37.897885 ], [ -122.289097, 37.896615 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "population": 17, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289011, 37.897885 ], [ -122.289097, 37.896615 ], [ -122.289977, 37.896649 ], [ -122.289870, 37.897834 ], [ -122.289484, 37.897834 ], [ -122.289011, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293732, 37.897716 ], [ -122.293882, 37.894685 ], [ -122.294397, 37.894566 ], [ -122.294719, 37.895379 ], [ -122.294590, 37.897750 ], [ -122.293732, 37.897716 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "population": 37, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294590, 37.897750 ], [ -122.293732, 37.897716 ], [ -122.293882, 37.894685 ], [ -122.294397, 37.894566 ], [ -122.294719, 37.895379 ], [ -122.294590, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897699 ], [ -122.293003, 37.894871 ], [ -122.293882, 37.894685 ], [ -122.293839, 37.895294 ], [ -122.293732, 37.897716 ], [ -122.292852, 37.897699 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "population": 44, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293732, 37.897716 ], [ -122.292852, 37.897699 ], [ -122.293003, 37.894871 ], [ -122.293882, 37.894685 ], [ -122.293839, 37.895294 ], [ -122.293732, 37.897716 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896717 ], [ -122.292745, 37.894871 ], [ -122.293003, 37.894871 ], [ -122.292917, 37.896734 ], [ -122.292681, 37.896717 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "population": 1, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292917, 37.896734 ], [ -122.292681, 37.896717 ], [ -122.292745, 37.894871 ], [ -122.293003, 37.894871 ], [ -122.292917, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293947, 37.892856 ], [ -122.294118, 37.892856 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894685 ], [ -122.293947, 37.892856 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "population": 13, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894685 ], [ -122.293947, 37.892856 ], [ -122.294118, 37.892856 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894685 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293088, 37.892839 ], [ -122.293947, 37.892856 ], [ -122.293882, 37.894685 ], [ -122.293003, 37.894871 ], [ -122.293088, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "population": 30, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293003, 37.894871 ], [ -122.293088, 37.892839 ], [ -122.293947, 37.892856 ], [ -122.293882, 37.894685 ], [ -122.293003, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292831, 37.892822 ], [ -122.293088, 37.892839 ], [ -122.293003, 37.894871 ], [ -122.292745, 37.894871 ], [ -122.292831, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "population": 2, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292745, 37.894871 ], [ -122.292831, 37.892822 ], [ -122.293088, 37.892839 ], [ -122.293003, 37.894871 ], [ -122.292745, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291801, 37.894854 ], [ -122.291887, 37.892822 ], [ -122.292831, 37.892822 ], [ -122.292745, 37.894871 ], [ -122.291801, 37.894854 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "population": 38, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292745, 37.894871 ], [ -122.291801, 37.894854 ], [ -122.291887, 37.892822 ], [ -122.292831, 37.892822 ], [ -122.292745, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896649 ], [ -122.289999, 37.895836 ], [ -122.290063, 37.894786 ], [ -122.292745, 37.894871 ], [ -122.292681, 37.896717 ], [ -122.289977, 37.896649 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896717 ], [ -122.289977, 37.896649 ], [ -122.289999, 37.895836 ], [ -122.290063, 37.894786 ], [ -122.292745, 37.894871 ], [ -122.292681, 37.896717 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.896615 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894786 ], [ -122.289977, 37.896649 ], [ -122.289097, 37.896615 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "population": 31, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896649 ], [ -122.289097, 37.896615 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894786 ], [ -122.289977, 37.896649 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894820 ], [ -122.290986, 37.892941 ], [ -122.291887, 37.892974 ], [ -122.291801, 37.894854 ], [ -122.290921, 37.894820 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "population": 31, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291801, 37.894854 ], [ -122.290921, 37.894820 ], [ -122.290986, 37.892941 ], [ -122.291887, 37.892974 ], [ -122.291801, 37.894854 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894786 ], [ -122.290149, 37.892907 ], [ -122.290986, 37.892941 ], [ -122.290921, 37.894820 ], [ -122.290063, 37.894786 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "population": 31, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894820 ], [ -122.290063, 37.894786 ], [ -122.290149, 37.892907 ], [ -122.290986, 37.892941 ], [ -122.290921, 37.894820 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.289290, 37.892890 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894786 ], [ -122.289205, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "population": 35, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894786 ], [ -122.289205, 37.894769 ], [ -122.289290, 37.892890 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894786 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.289097, 37.896615 ], [ -122.289011, 37.897885 ], [ -122.288496, 37.897936 ], [ -122.288175, 37.898105 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.898105 ], [ -122.288218, 37.896598 ], [ -122.289097, 37.896615 ], [ -122.289011, 37.897885 ], [ -122.288496, 37.897936 ], [ -122.288175, 37.898105 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897800 ], [ -122.288175, 37.898105 ], [ -122.288110, 37.898156 ], [ -122.288153, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288110, 37.898156 ], [ -122.288153, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897800 ], [ -122.288175, 37.898105 ], [ -122.288110, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.288153, 37.896598 ], [ -122.288110, 37.898156 ], [ -122.287145, 37.898647 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "population": 35, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.898647 ], [ -122.287273, 37.896564 ], [ -122.288153, 37.896598 ], [ -122.288110, 37.898156 ], [ -122.287145, 37.898647 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898139 ], [ -122.287145, 37.898139 ], [ -122.287188, 37.898156 ], [ -122.287145, 37.898647 ], [ -122.286952, 37.898715 ], [ -122.287016, 37.898139 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286952, 37.898715 ], [ -122.287016, 37.898139 ], [ -122.287145, 37.898139 ], [ -122.287188, 37.898156 ], [ -122.287145, 37.898647 ], [ -122.286952, 37.898715 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898139 ], [ -122.287080, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898139 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "population": 9, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.898156 ], [ -122.287016, 37.898139 ], [ -122.287080, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289097, 37.896615 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "population": 30, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.896615 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289097, 37.896615 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288153, 37.896598 ], [ -122.288239, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.896598 ], [ -122.288239, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288153, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.287359, 37.894719 ], [ -122.288239, 37.894736 ], [ -122.288153, 37.896598 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "population": 33, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.896598 ], [ -122.287273, 37.896564 ], [ -122.287359, 37.894719 ], [ -122.288239, 37.894736 ], [ -122.288153, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894719 ], [ -122.287359, 37.894719 ], [ -122.287273, 37.896564 ], [ -122.287080, 37.896564 ], [ -122.287145, 37.894719 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "population": 10, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.896564 ], [ -122.287145, 37.894719 ], [ -122.287359, 37.894719 ], [ -122.287273, 37.896564 ], [ -122.287080, 37.896564 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894736 ], [ -122.288411, 37.892873 ], [ -122.289290, 37.892890 ], [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "population": 32, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ], [ -122.288411, 37.892873 ], [ -122.289290, 37.892890 ], [ -122.289205, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892873 ], [ -122.288411, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288239, 37.894736 ], [ -122.288325, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.894736 ], [ -122.288325, 37.892873 ], [ -122.288411, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288239, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894719 ], [ -122.287445, 37.892822 ], [ -122.288325, 37.892873 ], [ -122.288239, 37.894736 ], [ -122.287359, 37.894719 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "population": 30, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.894736 ], [ -122.287359, 37.894719 ], [ -122.287445, 37.892822 ], [ -122.288325, 37.892873 ], [ -122.288239, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892822 ], [ -122.287445, 37.892822 ], [ -122.287359, 37.894719 ], [ -122.287145, 37.894719 ], [ -122.287188, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "population": 11, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894719 ], [ -122.287188, 37.892822 ], [ -122.287445, 37.892822 ], [ -122.287359, 37.894719 ], [ -122.287145, 37.894719 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.299547, 37.891806 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892314 ], [ -122.299418, 37.891823 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892314 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891806 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892314 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298946, 37.890282 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "population": 30, "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ], [ -122.298946, 37.890282 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890282 ], [ -122.299054, 37.890265 ], [ -122.299461, 37.891501 ], [ -122.299547, 37.891806 ], [ -122.299418, 37.891823 ], [ -122.298946, 37.890282 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.298946, 37.890282 ], [ -122.299054, 37.890265 ], [ -122.299461, 37.891501 ], [ -122.299547, 37.891806 ], [ -122.299418, 37.891823 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.299290, 37.890180 ], [ -122.299912, 37.890079 ], [ -122.299933, 37.890130 ], [ -122.299311, 37.890248 ], [ -122.299054, 37.890265 ], [ -122.299032, 37.890197 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "population": 4, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299054, 37.890265 ], [ -122.299032, 37.890197 ], [ -122.299290, 37.890180 ], [ -122.299912, 37.890079 ], [ -122.299933, 37.890130 ], [ -122.299311, 37.890248 ], [ -122.299054, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298024, 37.890265 ], [ -122.298925, 37.890214 ], [ -122.298946, 37.890282 ], [ -122.298517, 37.890316 ], [ -122.298045, 37.890333 ], [ -122.298024, 37.890265 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298024, 37.890265 ], [ -122.298925, 37.890214 ], [ -122.298946, 37.890282 ], [ -122.298517, 37.890316 ], [ -122.298045, 37.890333 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298152, 37.890655 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892179 ], [ -122.297144, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "population": 84, "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892179 ], [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298152, 37.890655 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892179 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890316 ], [ -122.298024, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ], [ -122.297144, 37.890316 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.297144, 37.890316 ], [ -122.298024, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.299182, 37.887742 ], [ -122.299912, 37.890079 ], [ -122.299290, 37.890180 ], [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "population": 43, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ], [ -122.299182, 37.887742 ], [ -122.299912, 37.890079 ], [ -122.299290, 37.890180 ], [ -122.299032, 37.890197 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298131, 37.887776 ], [ -122.298260, 37.887759 ], [ -122.299054, 37.890265 ], [ -122.298946, 37.890282 ], [ -122.298131, 37.887776 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890282 ], [ -122.298131, 37.887776 ], [ -122.298260, 37.887759 ], [ -122.299054, 37.890265 ], [ -122.298946, 37.890282 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297809, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297552, 37.886760 ], [ -122.297788, 37.886743 ], [ -122.297766, 37.886675 ], [ -122.297916, 37.886692 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887776 ], [ -122.298925, 37.890214 ], [ -122.298024, 37.890265 ], [ -122.297809, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "population": 70, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298024, 37.890265 ], [ -122.297809, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297552, 37.886760 ], [ -122.297788, 37.886743 ], [ -122.297766, 37.886675 ], [ -122.297916, 37.886692 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887776 ], [ -122.298925, 37.890214 ], [ -122.298024, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890417 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892179 ], [ -122.296908, 37.892348 ], [ -122.296264, 37.890417 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "population": 51, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.892348 ], [ -122.296264, 37.890417 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892179 ], [ -122.296908, 37.892348 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.890468 ], [ -122.296264, 37.890417 ], [ -122.296908, 37.892348 ], [ -122.296071, 37.892517 ], [ -122.295406, 37.890468 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "population": 51, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892517 ], [ -122.295406, 37.890468 ], [ -122.296264, 37.890417 ], [ -122.296908, 37.892348 ], [ -122.296071, 37.892517 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890367 ], [ -122.297144, 37.890316 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890384 ], [ -122.296264, 37.890417 ], [ -122.296264, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890417 ], [ -122.296264, 37.890367 ], [ -122.297144, 37.890316 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890384 ], [ -122.296264, 37.890417 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.296264, 37.890367 ], [ -122.296264, 37.890417 ], [ -122.295578, 37.890468 ], [ -122.295406, 37.890468 ], [ -122.295384, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.890468 ], [ -122.295384, 37.890434 ], [ -122.296264, 37.890367 ], [ -122.296264, 37.890417 ], [ -122.295578, 37.890468 ], [ -122.295406, 37.890468 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890519 ], [ -122.295406, 37.890468 ], [ -122.296071, 37.892517 ], [ -122.295234, 37.892687 ], [ -122.294505, 37.890519 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "population": 50, "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.892687 ], [ -122.294505, 37.890519 ], [ -122.295406, 37.890468 ], [ -122.296071, 37.892517 ], [ -122.295234, 37.892687 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294505, 37.890519 ], [ -122.295234, 37.892687 ], [ -122.294354, 37.892856 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "population": 57, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892856 ], [ -122.293625, 37.890570 ], [ -122.294505, 37.890519 ], [ -122.295234, 37.892687 ], [ -122.294354, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890485 ], [ -122.295384, 37.890434 ], [ -122.295406, 37.890468 ], [ -122.294698, 37.890519 ], [ -122.294505, 37.890519 ], [ -122.294505, 37.890485 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890519 ], [ -122.294505, 37.890485 ], [ -122.295384, 37.890434 ], [ -122.295406, 37.890468 ], [ -122.294698, 37.890519 ], [ -122.294505, 37.890519 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296093, 37.887064 ], [ -122.296929, 37.886878 ], [ -122.298024, 37.890265 ], [ -122.297144, 37.890316 ], [ -122.296093, 37.887064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890316 ], [ -122.296093, 37.887064 ], [ -122.296929, 37.886878 ], [ -122.298024, 37.890265 ], [ -122.297144, 37.890316 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.887234 ], [ -122.296093, 37.887064 ], [ -122.297144, 37.890316 ], [ -122.296264, 37.890367 ], [ -122.295234, 37.887234 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "population": 69, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890367 ], [ -122.295234, 37.887234 ], [ -122.296093, 37.887064 ], [ -122.297144, 37.890316 ], [ -122.296264, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294419, 37.887386 ], [ -122.295234, 37.887234 ], [ -122.296264, 37.890367 ], [ -122.295384, 37.890434 ], [ -122.294419, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "population": 33, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.294419, 37.887386 ], [ -122.295234, 37.887234 ], [ -122.296264, 37.890367 ], [ -122.295384, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293561, 37.887505 ], [ -122.294397, 37.887318 ], [ -122.295384, 37.890434 ], [ -122.294505, 37.890485 ], [ -122.293561, 37.887505 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "population": 68, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890485 ], [ -122.293561, 37.887505 ], [ -122.294397, 37.887318 ], [ -122.295384, 37.890434 ], [ -122.294505, 37.890485 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886692 ], [ -122.298152, 37.886743 ], [ -122.298410, 37.886844 ], [ -122.299311, 37.887352 ], [ -122.299569, 37.887471 ], [ -122.300169, 37.887606 ], [ -122.300577, 37.887623 ], [ -122.300684, 37.887657 ], [ -122.300963, 37.887657 ], [ -122.300684, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.298260, 37.887759 ], [ -122.297916, 37.886692 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.297916, 37.886692 ], [ -122.298152, 37.886743 ], [ -122.298410, 37.886844 ], [ -122.299311, 37.887352 ], [ -122.299569, 37.887471 ], [ -122.300169, 37.887606 ], [ -122.300577, 37.887623 ], [ -122.300684, 37.887657 ], [ -122.300963, 37.887657 ], [ -122.300684, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.298260, 37.887759 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.887623 ], [ -122.300169, 37.887606 ], [ -122.299569, 37.887471 ], [ -122.299311, 37.887352 ], [ -122.298410, 37.886844 ], [ -122.298152, 37.886743 ], [ -122.297916, 37.886692 ], [ -122.297251, 37.884592 ], [ -122.299912, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300127, 37.885117 ], [ -122.300963, 37.887657 ], [ -122.300684, 37.887657 ], [ -122.300577, 37.887623 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300684, 37.887657 ], [ -122.300577, 37.887623 ], [ -122.300169, 37.887606 ], [ -122.299569, 37.887471 ], [ -122.299311, 37.887352 ], [ -122.298410, 37.886844 ], [ -122.298152, 37.886743 ], [ -122.297916, 37.886692 ], [ -122.297251, 37.884592 ], [ -122.299912, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300127, 37.885117 ], [ -122.300963, 37.887657 ], [ -122.300684, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.886827 ], [ -122.297616, 37.886675 ], [ -122.297766, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.297552, 37.886760 ], [ -122.296929, 37.886878 ], [ -122.296908, 37.886827 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886878 ], [ -122.296908, 37.886827 ], [ -122.297616, 37.886675 ], [ -122.297766, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.297552, 37.886760 ], [ -122.296929, 37.886878 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298110, 37.883779 ], [ -122.298088, 37.883474 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300212, 37.882881 ], [ -122.300255, 37.883034 ], [ -122.300298, 37.883220 ], [ -122.300234, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299826, 37.883881 ], [ -122.299805, 37.884084 ], [ -122.298281, 37.884389 ], [ -122.298110, 37.883779 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "population": 1, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298281, 37.884389 ], [ -122.298110, 37.883779 ], [ -122.298088, 37.883474 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300212, 37.882881 ], [ -122.300255, 37.883034 ], [ -122.300298, 37.883220 ], [ -122.300234, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299826, 37.883881 ], [ -122.299805, 37.884084 ], [ -122.298281, 37.884389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297766, 37.886675 ], [ -122.297122, 37.884626 ], [ -122.297251, 37.884592 ], [ -122.297916, 37.886692 ], [ -122.297766, 37.886675 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886692 ], [ -122.297766, 37.886675 ], [ -122.297122, 37.884626 ], [ -122.297251, 37.884592 ], [ -122.297916, 37.886692 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.883508 ], [ -122.297122, 37.883491 ], [ -122.297766, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298088, 37.883474 ], [ -122.298110, 37.883779 ], [ -122.298281, 37.884389 ], [ -122.297251, 37.884592 ], [ -122.296908, 37.883508 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297251, 37.884592 ], [ -122.296908, 37.883508 ], [ -122.297122, 37.883491 ], [ -122.297766, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298088, 37.883474 ], [ -122.298110, 37.883779 ], [ -122.298281, 37.884389 ], [ -122.297251, 37.884592 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.296908, 37.886827 ], [ -122.296929, 37.886878 ], [ -122.296093, 37.887064 ], [ -122.296071, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296093, 37.887064 ], [ -122.296071, 37.886980 ], [ -122.296908, 37.886827 ], [ -122.296929, 37.886878 ], [ -122.296093, 37.887064 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887166 ], [ -122.296071, 37.886980 ], [ -122.296093, 37.887064 ], [ -122.295234, 37.887234 ], [ -122.295213, 37.887166 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.887234 ], [ -122.295213, 37.887166 ], [ -122.296071, 37.886980 ], [ -122.296093, 37.887064 ], [ -122.295234, 37.887234 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.295213, 37.887166 ], [ -122.295234, 37.887234 ], [ -122.294419, 37.887386 ], [ -122.294397, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294419, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295213, 37.887166 ], [ -122.295234, 37.887234 ], [ -122.294419, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293475, 37.884507 ], [ -122.294333, 37.884321 ], [ -122.295213, 37.887166 ], [ -122.294397, 37.887318 ], [ -122.293475, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293475, 37.884507 ], [ -122.294333, 37.884321 ], [ -122.295213, 37.887166 ], [ -122.294397, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.296865, 37.883830 ], [ -122.297766, 37.886675 ], [ -122.297616, 37.886675 ], [ -122.296908, 37.886827 ], [ -122.295985, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.886827 ], [ -122.295985, 37.883999 ], [ -122.296865, 37.883830 ], [ -122.297766, 37.886675 ], [ -122.297616, 37.886675 ], [ -122.296908, 37.886827 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296908, 37.886827 ], [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296908, 37.886827 ], [ -122.296071, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296865, 37.883830 ], [ -122.296994, 37.883796 ], [ -122.297251, 37.884592 ], [ -122.297122, 37.884626 ], [ -122.296865, 37.883830 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297122, 37.884626 ], [ -122.296865, 37.883830 ], [ -122.296994, 37.883796 ], [ -122.297251, 37.884592 ], [ -122.297122, 37.884626 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.883525 ], [ -122.296908, 37.883508 ], [ -122.296994, 37.883796 ], [ -122.296865, 37.883830 ], [ -122.296758, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296865, 37.883830 ], [ -122.296758, 37.883525 ], [ -122.296908, 37.883508 ], [ -122.296994, 37.883796 ], [ -122.296865, 37.883830 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294333, 37.884321 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887166 ], [ -122.294333, 37.884321 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887166 ], [ -122.294333, 37.884321 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887166 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293861, 37.882949 ], [ -122.294011, 37.882915 ], [ -122.294376, 37.882763 ], [ -122.294719, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294333, 37.884321 ], [ -122.293861, 37.882949 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "population": 35, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294333, 37.884321 ], [ -122.293861, 37.882949 ], [ -122.294011, 37.882915 ], [ -122.294376, 37.882763 ], [ -122.294719, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294333, 37.884321 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293839, 37.891992 ], [ -122.293153, 37.891027 ], [ -122.293174, 37.890587 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892856 ], [ -122.294118, 37.892856 ], [ -122.293839, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294118, 37.892856 ], [ -122.293839, 37.891992 ], [ -122.293153, 37.891027 ], [ -122.293174, 37.890587 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892856 ], [ -122.294118, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293088, 37.892839 ], [ -122.293153, 37.891027 ], [ -122.293839, 37.891992 ], [ -122.294118, 37.892856 ], [ -122.293088, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294118, 37.892856 ], [ -122.293088, 37.892839 ], [ -122.293153, 37.891027 ], [ -122.293839, 37.891992 ], [ -122.294118, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292831, 37.892822 ], [ -122.292917, 37.890722 ], [ -122.293153, 37.891027 ], [ -122.293088, 37.892839 ], [ -122.293046, 37.892839 ], [ -122.292831, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293046, 37.892839 ], [ -122.292831, 37.892822 ], [ -122.292917, 37.890722 ], [ -122.293153, 37.891027 ], [ -122.293088, 37.892839 ], [ -122.293046, 37.892839 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890519 ], [ -122.294505, 37.890485 ], [ -122.294505, 37.890519 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293711, 37.890519 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293754, 37.890570 ], [ -122.293711, 37.890519 ], [ -122.294505, 37.890485 ], [ -122.294505, 37.890519 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292917, 37.890722 ], [ -122.292895, 37.890604 ], [ -122.293174, 37.890587 ], [ -122.293153, 37.891027 ], [ -122.292917, 37.890722 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293153, 37.891027 ], [ -122.292917, 37.890722 ], [ -122.292895, 37.890604 ], [ -122.293174, 37.890587 ], [ -122.293153, 37.891027 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890553 ], [ -122.293389, 37.890536 ], [ -122.293625, 37.890519 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ], [ -122.292895, 37.890553 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890604 ], [ -122.292895, 37.890553 ], [ -122.293389, 37.890536 ], [ -122.293625, 37.890519 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291951, 37.891078 ], [ -122.291930, 37.890655 ], [ -122.292895, 37.890604 ], [ -122.292917, 37.891146 ], [ -122.292831, 37.892822 ], [ -122.291887, 37.892822 ], [ -122.291951, 37.891078 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "population": 42, "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291887, 37.892822 ], [ -122.291951, 37.891078 ], [ -122.291930, 37.890655 ], [ -122.292895, 37.890604 ], [ -122.292917, 37.891146 ], [ -122.292831, 37.892822 ], [ -122.291887, 37.892822 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890621 ], [ -122.292895, 37.890553 ], [ -122.292895, 37.890604 ], [ -122.292702, 37.890621 ], [ -122.291930, 37.890655 ], [ -122.291908, 37.890621 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291930, 37.890655 ], [ -122.291908, 37.890621 ], [ -122.292895, 37.890553 ], [ -122.292895, 37.890604 ], [ -122.292702, 37.890621 ], [ -122.291930, 37.890655 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890417 ], [ -122.293561, 37.890316 ], [ -122.292724, 37.887742 ], [ -122.292702, 37.887657 ], [ -122.293582, 37.887640 ], [ -122.293561, 37.887505 ], [ -122.294505, 37.890485 ], [ -122.293711, 37.890519 ], [ -122.293625, 37.890417 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "population": 49, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890519 ], [ -122.293625, 37.890417 ], [ -122.293561, 37.890316 ], [ -122.292724, 37.887742 ], [ -122.292702, 37.887657 ], [ -122.293582, 37.887640 ], [ -122.293561, 37.887505 ], [ -122.294505, 37.890485 ], [ -122.293711, 37.890519 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293131, 37.889825 ], [ -122.292466, 37.887708 ], [ -122.292702, 37.887657 ], [ -122.292724, 37.887742 ], [ -122.293561, 37.890316 ], [ -122.293131, 37.889825 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293561, 37.890316 ], [ -122.293131, 37.889825 ], [ -122.292466, 37.887708 ], [ -122.292702, 37.887657 ], [ -122.292724, 37.887742 ], [ -122.293561, 37.890316 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890519 ], [ -122.292895, 37.890553 ], [ -122.292809, 37.890028 ], [ -122.292144, 37.887860 ], [ -122.292488, 37.887776 ], [ -122.293131, 37.889825 ], [ -122.293711, 37.890519 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.293625, 37.890519 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "population": 17, "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.293625, 37.890519 ], [ -122.292895, 37.890553 ], [ -122.292809, 37.890028 ], [ -122.292144, 37.887860 ], [ -122.292488, 37.887776 ], [ -122.293131, 37.889825 ], [ -122.293711, 37.890519 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.292144, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890553 ], [ -122.291908, 37.890621 ], [ -122.291093, 37.888064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "population": 55, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890621 ], [ -122.291093, 37.888064 ], [ -122.292144, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890553 ], [ -122.291908, 37.890621 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292144, 37.887860 ], [ -122.291093, 37.888064 ], [ -122.291071, 37.887996 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.291071, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292144, 37.887860 ], [ -122.291093, 37.888064 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290986, 37.892941 ], [ -122.291028, 37.892483 ], [ -122.291071, 37.890705 ], [ -122.291930, 37.890655 ], [ -122.291951, 37.891078 ], [ -122.291887, 37.892974 ], [ -122.290986, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "population": 38, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291887, 37.892974 ], [ -122.290986, 37.892941 ], [ -122.291028, 37.892483 ], [ -122.291071, 37.890705 ], [ -122.291930, 37.890655 ], [ -122.291951, 37.891078 ], [ -122.291887, 37.892974 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290149, 37.892907 ], [ -122.290256, 37.890739 ], [ -122.291071, 37.890705 ], [ -122.291028, 37.892483 ], [ -122.290986, 37.892941 ], [ -122.290149, 37.892907 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "population": 32, "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290986, 37.892941 ], [ -122.290149, 37.892907 ], [ -122.290256, 37.890739 ], [ -122.291071, 37.890705 ], [ -122.291028, 37.892483 ], [ -122.290986, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.890655 ], [ -122.291908, 37.890621 ], [ -122.291930, 37.890655 ], [ -122.291071, 37.890705 ], [ -122.291071, 37.890655 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.890705 ], [ -122.291071, 37.890655 ], [ -122.291908, 37.890621 ], [ -122.291930, 37.890655 ], [ -122.291071, 37.890705 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892890 ], [ -122.289398, 37.890790 ], [ -122.290256, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892890 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "population": 41, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290149, 37.892907 ], [ -122.289290, 37.892890 ], [ -122.289398, 37.890790 ], [ -122.290256, 37.890739 ], [ -122.290149, 37.892907 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288411, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288797, 37.891078 ], [ -122.288861, 37.890824 ], [ -122.289398, 37.890790 ], [ -122.289290, 37.892890 ], [ -122.288411, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "population": 29, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892890 ], [ -122.288411, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288797, 37.891078 ], [ -122.288861, 37.890824 ], [ -122.289398, 37.890790 ], [ -122.289290, 37.892890 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290084, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890621 ], [ -122.291071, 37.890655 ], [ -122.291071, 37.890705 ], [ -122.290792, 37.890722 ], [ -122.290084, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "population": 82, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890722 ], [ -122.290084, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890621 ], [ -122.291071, 37.890655 ], [ -122.291071, 37.890705 ], [ -122.290792, 37.890722 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.291071, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290084, 37.888267 ], [ -122.290063, 37.888199 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290084, 37.888267 ], [ -122.290063, 37.888199 ], [ -122.291071, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290084, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.290084, 37.888267 ], [ -122.290792, 37.890722 ], [ -122.289891, 37.890756 ], [ -122.289119, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "population": 34, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.890756 ], [ -122.289119, 37.888470 ], [ -122.290084, 37.888267 ], [ -122.290792, 37.890722 ], [ -122.289891, 37.890756 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890688 ], [ -122.288239, 37.888860 ], [ -122.288239, 37.888656 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890722 ], [ -122.289891, 37.890756 ], [ -122.288861, 37.890824 ], [ -122.288861, 37.890688 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "population": 47, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890824 ], [ -122.288861, 37.890688 ], [ -122.288239, 37.888860 ], [ -122.288239, 37.888656 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890722 ], [ -122.289891, 37.890756 ], [ -122.288861, 37.890824 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290084, 37.888267 ], [ -122.289119, 37.888470 ], [ -122.289097, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.289097, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290084, 37.888267 ], [ -122.289119, 37.888470 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.293475, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293561, 37.887505 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "population": 60, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293561, 37.887505 ], [ -122.292638, 37.884677 ], [ -122.293475, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293561, 37.887505 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.292466, 37.887708 ], [ -122.292488, 37.887776 ], [ -122.292144, 37.887860 ], [ -122.292123, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292144, 37.887860 ], [ -122.292123, 37.887793 ], [ -122.292466, 37.887708 ], [ -122.292488, 37.887776 ], [ -122.292144, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884863 ], [ -122.292638, 37.884677 ], [ -122.293561, 37.887505 ], [ -122.293582, 37.887640 ], [ -122.292702, 37.887657 ], [ -122.291780, 37.884863 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "population": 58, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292702, 37.887657 ], [ -122.291780, 37.884863 ], [ -122.292638, 37.884677 ], [ -122.293561, 37.887505 ], [ -122.293582, 37.887640 ], [ -122.292702, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291715, 37.884863 ], [ -122.291780, 37.884863 ], [ -122.292702, 37.887657 ], [ -122.292466, 37.887708 ], [ -122.291694, 37.885286 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292466, 37.887708 ], [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291715, 37.884863 ], [ -122.291780, 37.884863 ], [ -122.292702, 37.887657 ], [ -122.292466, 37.887708 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887708 ], [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887708 ], [ -122.292123, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293367, 37.884202 ], [ -122.292960, 37.883034 ], [ -122.293131, 37.883000 ], [ -122.293861, 37.882949 ], [ -122.294333, 37.884321 ], [ -122.293475, 37.884507 ], [ -122.293367, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293475, 37.884507 ], [ -122.293367, 37.884202 ], [ -122.292960, 37.883034 ], [ -122.293131, 37.883000 ], [ -122.293861, 37.882949 ], [ -122.294333, 37.884321 ], [ -122.293475, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292552, 37.884389 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883135 ], [ -122.292960, 37.883034 ], [ -122.293475, 37.884507 ], [ -122.292638, 37.884677 ], [ -122.292552, 37.884389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292552, 37.884389 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883135 ], [ -122.292960, 37.883034 ], [ -122.293475, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291265, 37.883237 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884863 ], [ -122.291265, 37.883237 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884863 ], [ -122.291265, 37.883237 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884863 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290363, 37.885693 ], [ -122.290170, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291071, 37.887996 ], [ -122.290363, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "population": 66, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.887996 ], [ -122.290363, 37.885693 ], [ -122.290170, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291071, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885981 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ], [ -122.289333, 37.885981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.289333, 37.885981 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885981 ], [ -122.289848, 37.884507 ], [ -122.290041, 37.884897 ], [ -122.290363, 37.885693 ], [ -122.291071, 37.887996 ], [ -122.290063, 37.888199 ], [ -122.289333, 37.885981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "population": 60, "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.289333, 37.885981 ], [ -122.289848, 37.884507 ], [ -122.290041, 37.884897 ], [ -122.290363, 37.885693 ], [ -122.291071, 37.887996 ], [ -122.290063, 37.888199 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290943, 37.884372 ], [ -122.290385, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291157, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ], [ -122.290943, 37.884372 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "population": 12, "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.290943, 37.884372 ], [ -122.290385, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291157, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291372, 37.884490 ], [ -122.290835, 37.883322 ], [ -122.291071, 37.883254 ], [ -122.291265, 37.883237 ], [ -122.291780, 37.884863 ], [ -122.291522, 37.884914 ], [ -122.291372, 37.884490 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291522, 37.884914 ], [ -122.291372, 37.884490 ], [ -122.290835, 37.883322 ], [ -122.291071, 37.883254 ], [ -122.291265, 37.883237 ], [ -122.291780, 37.884863 ], [ -122.291522, 37.884914 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884507 ], [ -122.290170, 37.883576 ], [ -122.290299, 37.883034 ], [ -122.290320, 37.883203 ], [ -122.290385, 37.883220 ], [ -122.290943, 37.884372 ], [ -122.291179, 37.884981 ], [ -122.290170, 37.885219 ], [ -122.289848, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "population": 32, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290170, 37.885219 ], [ -122.289848, 37.884507 ], [ -122.290170, 37.883576 ], [ -122.290299, 37.883034 ], [ -122.290320, 37.883203 ], [ -122.290385, 37.883220 ], [ -122.290943, 37.884372 ], [ -122.291179, 37.884981 ], [ -122.290170, 37.885219 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289269, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289333, 37.885981 ], [ -122.289269, 37.885862 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885981 ], [ -122.289269, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289333, 37.885981 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "population": 41, "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289720, 37.884897 ], [ -122.288754, 37.884694 ], [ -122.289312, 37.883288 ], [ -122.289355, 37.883305 ], [ -122.289526, 37.883271 ], [ -122.289762, 37.883186 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883169 ], [ -122.290256, 37.883186 ], [ -122.290170, 37.883576 ], [ -122.289720, 37.884897 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.883017 ], [ -122.296093, 37.883068 ], [ -122.296243, 37.883186 ], [ -122.296371, 37.883339 ], [ -122.296715, 37.883525 ], [ -122.296758, 37.883525 ], [ -122.296865, 37.883830 ], [ -122.295985, 37.883999 ], [ -122.295706, 37.883017 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "population": 24, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.295706, 37.883017 ], [ -122.296093, 37.883068 ], [ -122.296243, 37.883186 ], [ -122.296371, 37.883339 ], [ -122.296715, 37.883525 ], [ -122.296758, 37.883525 ], [ -122.296865, 37.883830 ], [ -122.295985, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294719, 37.882780 ], [ -122.295449, 37.882983 ], [ -122.295706, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ], [ -122.294719, 37.882780 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "population": 33, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.294719, 37.882780 ], [ -122.295449, 37.882983 ], [ -122.295706, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288411, 37.891484 ], [ -122.288496, 37.891332 ], [ -122.288754, 37.891027 ], [ -122.288775, 37.890824 ], [ -122.288861, 37.890824 ], [ -122.288797, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288411, 37.892873 ], [ -122.288325, 37.892873 ], [ -122.288411, 37.891484 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892873 ], [ -122.288411, 37.891484 ], [ -122.288496, 37.891332 ], [ -122.288754, 37.891027 ], [ -122.288775, 37.890824 ], [ -122.288861, 37.890824 ], [ -122.288797, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288411, 37.892873 ], [ -122.288325, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892822 ], [ -122.287531, 37.890892 ], [ -122.288775, 37.890824 ], [ -122.288754, 37.891027 ], [ -122.288496, 37.891332 ], [ -122.288411, 37.891484 ], [ -122.288325, 37.892873 ], [ -122.287445, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892873 ], [ -122.287445, 37.892822 ], [ -122.287531, 37.890892 ], [ -122.288775, 37.890824 ], [ -122.288754, 37.891027 ], [ -122.288496, 37.891332 ], [ -122.288411, 37.891484 ], [ -122.288325, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890824 ], [ -122.287939, 37.890875 ], [ -122.287724, 37.890875 ], [ -122.287703, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287724, 37.890875 ], [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890824 ], [ -122.287939, 37.890875 ], [ -122.287724, 37.890875 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890926 ], [ -122.287531, 37.890892 ], [ -122.287467, 37.892433 ], [ -122.287445, 37.892822 ], [ -122.287188, 37.892822 ], [ -122.287188, 37.890926 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "population": 12, "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892822 ], [ -122.287188, 37.890926 ], [ -122.287531, 37.890892 ], [ -122.287467, 37.892433 ], [ -122.287445, 37.892822 ], [ -122.287188, 37.892822 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890892 ], [ -122.287188, 37.890926 ], [ -122.286651, 37.890942 ], [ -122.286651, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890942 ], [ -122.286651, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890892 ], [ -122.287188, 37.890926 ], [ -122.286651, 37.890942 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.286651, 37.890909 ], [ -122.286651, 37.890942 ], [ -122.286458, 37.890959 ], [ -122.285707, 37.891010 ], [ -122.285686, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285707, 37.891010 ], [ -122.285686, 37.890976 ], [ -122.286651, 37.890909 ], [ -122.286651, 37.890942 ], [ -122.286458, 37.890959 ], [ -122.285707, 37.891010 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890671 ], [ -122.288110, 37.888690 ], [ -122.288153, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288239, 37.888860 ], [ -122.288861, 37.890688 ], [ -122.288861, 37.890824 ], [ -122.288775, 37.890824 ], [ -122.288775, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890824 ], [ -122.288775, 37.890671 ], [ -122.288110, 37.888690 ], [ -122.288153, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288239, 37.888860 ], [ -122.288861, 37.890688 ], [ -122.288861, 37.890824 ], [ -122.288775, 37.890824 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.287381, 37.888944 ], [ -122.288110, 37.888690 ], [ -122.288775, 37.890671 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.287381, 37.888944 ], [ -122.288110, 37.888690 ], [ -122.288775, 37.890671 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.288926, 37.888436 ], [ -122.289097, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288239, 37.888656 ], [ -122.288303, 37.888572 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.888656 ], [ -122.288303, 37.888572 ], [ -122.288926, 37.888436 ], [ -122.289097, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288239, 37.888656 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.889012 ], [ -122.287316, 37.888893 ], [ -122.288153, 37.888606 ], [ -122.288110, 37.888690 ], [ -122.287381, 37.888944 ], [ -122.287102, 37.889080 ], [ -122.287080, 37.889012 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.287080, 37.889012 ], [ -122.287316, 37.888893 ], [ -122.288153, 37.888606 ], [ -122.288110, 37.888690 ], [ -122.287381, 37.888944 ], [ -122.287102, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889080 ], [ -122.287724, 37.890875 ], [ -122.287531, 37.890892 ], [ -122.287531, 37.890841 ], [ -122.286651, 37.890909 ], [ -122.286158, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889080 ], [ -122.287724, 37.890875 ], [ -122.287531, 37.890892 ], [ -122.287531, 37.890841 ], [ -122.286651, 37.890909 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286136, 37.889351 ], [ -122.286673, 37.889181 ], [ -122.287080, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286458, 37.889334 ], [ -122.286158, 37.889418 ], [ -122.286136, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286136, 37.889351 ], [ -122.286673, 37.889181 ], [ -122.287080, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286458, 37.889334 ], [ -122.286158, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286050, 37.888995 ], [ -122.286050, 37.888555 ], [ -122.286394, 37.887606 ], [ -122.287488, 37.887877 ], [ -122.287273, 37.888216 ], [ -122.287080, 37.888826 ], [ -122.287080, 37.889012 ], [ -122.286673, 37.889181 ], [ -122.286136, 37.889351 ], [ -122.286050, 37.888995 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "population": 27, "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286136, 37.889351 ], [ -122.286050, 37.888995 ], [ -122.286050, 37.888555 ], [ -122.286394, 37.887606 ], [ -122.287488, 37.887877 ], [ -122.287273, 37.888216 ], [ -122.287080, 37.888826 ], [ -122.287080, 37.889012 ], [ -122.286673, 37.889181 ], [ -122.286136, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285557, 37.890807 ], [ -122.285171, 37.889503 ], [ -122.285600, 37.889503 ], [ -122.286158, 37.889418 ], [ -122.286651, 37.890909 ], [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "population": 18, "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ], [ -122.285171, 37.889503 ], [ -122.285600, 37.889503 ], [ -122.286158, 37.889418 ], [ -122.286651, 37.890909 ], [ -122.285686, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284505, 37.891027 ], [ -122.285686, 37.890976 ], [ -122.285707, 37.891010 ], [ -122.284484, 37.891078 ], [ -122.284505, 37.891027 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.891078 ], [ -122.284505, 37.891027 ], [ -122.285686, 37.890976 ], [ -122.285707, 37.891010 ], [ -122.284484, 37.891078 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.890926 ], [ -122.284484, 37.890671 ], [ -122.284398, 37.890485 ], [ -122.284033, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889503 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284505, 37.891027 ], [ -122.284527, 37.890926 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "population": 27, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284505, 37.891027 ], [ -122.284527, 37.890926 ], [ -122.284484, 37.890671 ], [ -122.284398, 37.890485 ], [ -122.284033, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889503 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284505, 37.891027 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.284505, 37.891027 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891129 ], [ -122.283497, 37.891078 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891129 ], [ -122.283497, 37.891078 ], [ -122.284505, 37.891027 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891129 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889435 ], [ -122.282896, 37.889215 ], [ -122.282832, 37.889147 ], [ -122.283454, 37.889164 ], [ -122.284033, 37.889317 ], [ -122.284398, 37.890485 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284505, 37.891027 ], [ -122.283497, 37.891078 ], [ -122.282982, 37.889435 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "population": 22, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.282982, 37.889435 ], [ -122.282896, 37.889215 ], [ -122.282832, 37.889147 ], [ -122.283454, 37.889164 ], [ -122.284033, 37.889317 ], [ -122.284398, 37.890485 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284505, 37.891027 ], [ -122.283497, 37.891078 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889503 ], [ -122.285192, 37.889435 ], [ -122.285600, 37.889435 ], [ -122.286136, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286007, 37.889452 ], [ -122.285385, 37.889520 ], [ -122.285171, 37.889503 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889520 ], [ -122.285171, 37.889503 ], [ -122.285192, 37.889435 ], [ -122.285600, 37.889435 ], [ -122.286136, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286007, 37.889452 ], [ -122.285385, 37.889520 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285192, 37.889435 ], [ -122.285085, 37.889130 ], [ -122.284999, 37.888639 ], [ -122.285042, 37.888250 ], [ -122.285149, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286394, 37.887606 ], [ -122.286050, 37.888555 ], [ -122.286050, 37.888995 ], [ -122.286136, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285192, 37.889435 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889452 ], [ -122.285192, 37.889435 ], [ -122.285085, 37.889130 ], [ -122.284999, 37.888639 ], [ -122.285042, 37.888250 ], [ -122.285149, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286394, 37.887606 ], [ -122.286050, 37.888555 ], [ -122.286050, 37.888995 ], [ -122.286136, 37.889351 ], [ -122.285385, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.284956, 37.888233 ], [ -122.285063, 37.887877 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285149, 37.887894 ], [ -122.284999, 37.888487 ], [ -122.285063, 37.889029 ], [ -122.285192, 37.889435 ], [ -122.285106, 37.889435 ], [ -122.284999, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285106, 37.889435 ], [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.284956, 37.888233 ], [ -122.285063, 37.887877 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285149, 37.887894 ], [ -122.284999, 37.888487 ], [ -122.285063, 37.889029 ], [ -122.285192, 37.889435 ], [ -122.285106, 37.889435 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284741, 37.889486 ], [ -122.284441, 37.889418 ], [ -122.284033, 37.889317 ], [ -122.284033, 37.889232 ], [ -122.284698, 37.889401 ], [ -122.285192, 37.889435 ], [ -122.285171, 37.889503 ], [ -122.284741, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889503 ], [ -122.284741, 37.889486 ], [ -122.284441, 37.889418 ], [ -122.284033, 37.889317 ], [ -122.284033, 37.889232 ], [ -122.284698, 37.889401 ], [ -122.285192, 37.889435 ], [ -122.285171, 37.889503 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283647, 37.889215 ], [ -122.283669, 37.889130 ], [ -122.284033, 37.889232 ], [ -122.284033, 37.889317 ], [ -122.283647, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284033, 37.889317 ], [ -122.283647, 37.889215 ], [ -122.283669, 37.889130 ], [ -122.284033, 37.889232 ], [ -122.284033, 37.889317 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.889401 ], [ -122.283690, 37.889147 ], [ -122.283669, 37.888961 ], [ -122.283711, 37.888775 ], [ -122.284334, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285063, 37.887877 ], [ -122.284956, 37.888233 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285106, 37.889435 ], [ -122.284698, 37.889401 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285106, 37.889435 ], [ -122.284698, 37.889401 ], [ -122.283690, 37.889147 ], [ -122.283669, 37.888961 ], [ -122.283711, 37.888775 ], [ -122.284334, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285063, 37.887877 ], [ -122.284956, 37.888233 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285106, 37.889435 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283089, 37.889063 ], [ -122.282746, 37.889080 ], [ -122.282660, 37.888944 ], [ -122.282660, 37.888589 ], [ -122.283282, 37.886895 ], [ -122.283540, 37.886963 ], [ -122.284334, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889130 ], [ -122.283089, 37.889063 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "population": 38, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889130 ], [ -122.283089, 37.889063 ], [ -122.282746, 37.889080 ], [ -122.282660, 37.888944 ], [ -122.282660, 37.888589 ], [ -122.283282, 37.886895 ], [ -122.283540, 37.886963 ], [ -122.284334, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889130 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.888284 ], [ -122.289269, 37.885862 ], [ -122.289333, 37.885981 ], [ -122.288303, 37.888572 ], [ -122.288153, 37.888606 ], [ -122.288325, 37.888284 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "population": 1, "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.888606 ], [ -122.288325, 37.888284 ], [ -122.289269, 37.885862 ], [ -122.289333, 37.885981 ], [ -122.288303, 37.888572 ], [ -122.288153, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.888826 ], [ -122.287273, 37.888216 ], [ -122.287338, 37.888081 ], [ -122.287595, 37.887776 ], [ -122.287681, 37.887623 ], [ -122.288561, 37.885286 ], [ -122.288754, 37.884694 ], [ -122.289612, 37.884880 ], [ -122.289269, 37.885862 ], [ -122.288325, 37.888284 ], [ -122.288153, 37.888606 ], [ -122.287617, 37.888775 ], [ -122.287080, 37.889012 ], [ -122.287080, 37.888826 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "population": 51, "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.889012 ], [ -122.287080, 37.888826 ], [ -122.287273, 37.888216 ], [ -122.287338, 37.888081 ], [ -122.287595, 37.887776 ], [ -122.287681, 37.887623 ], [ -122.288561, 37.885286 ], [ -122.288754, 37.884694 ], [ -122.289612, 37.884880 ], [ -122.289269, 37.885862 ], [ -122.288325, 37.888284 ], [ -122.288153, 37.888606 ], [ -122.287617, 37.888775 ], [ -122.287080, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.287037, 37.886912 ], [ -122.287488, 37.885828 ], [ -122.287960, 37.884507 ], [ -122.288754, 37.884694 ], [ -122.288561, 37.885286 ], [ -122.287681, 37.887623 ], [ -122.287595, 37.887776 ], [ -122.287488, 37.887877 ], [ -122.286758, 37.887691 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287488, 37.887877 ], [ -122.286758, 37.887691 ], [ -122.287037, 37.886912 ], [ -122.287488, 37.885828 ], [ -122.287960, 37.884507 ], [ -122.288754, 37.884694 ], [ -122.288561, 37.885286 ], [ -122.287681, 37.887623 ], [ -122.287595, 37.887776 ], [ -122.287488, 37.887877 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286286, 37.886523 ], [ -122.286544, 37.885794 ], [ -122.286651, 37.885642 ], [ -122.286737, 37.885642 ], [ -122.287488, 37.885828 ], [ -122.287123, 37.886726 ], [ -122.286286, 37.886523 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287123, 37.886726 ], [ -122.286286, 37.886523 ], [ -122.286544, 37.885794 ], [ -122.286651, 37.885642 ], [ -122.286737, 37.885642 ], [ -122.287488, 37.885828 ], [ -122.287123, 37.886726 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287188, 37.884101 ], [ -122.287810, 37.884169 ], [ -122.288067, 37.884253 ], [ -122.287488, 37.885828 ], [ -122.286737, 37.885642 ], [ -122.286651, 37.885642 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886523 ], [ -122.287123, 37.886726 ], [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287188, 37.884101 ], [ -122.287810, 37.884169 ], [ -122.288067, 37.884253 ], [ -122.287488, 37.885828 ], [ -122.286737, 37.885642 ], [ -122.286651, 37.885642 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886523 ], [ -122.287123, 37.886726 ], [ -122.286758, 37.887691 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289312, 37.883288 ], [ -122.288754, 37.884694 ], [ -122.287960, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "population": 31, "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288754, 37.884694 ], [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289312, 37.883288 ], [ -122.288754, 37.884694 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.286587, 37.883982 ], [ -122.286673, 37.883999 ], [ -122.286565, 37.884321 ], [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ], [ -122.286587, 37.883982 ], [ -122.286673, 37.883999 ], [ -122.286565, 37.884321 ], [ -122.286072, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284334, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ], [ -122.284334, 37.887149 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "population": 39, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.284334, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285085, 37.885320 ], [ -122.285600, 37.883999 ], [ -122.285686, 37.883644 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883982 ], [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "population": 45, "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ], [ -122.285600, 37.883999 ], [ -122.285686, 37.883644 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883982 ], [ -122.285986, 37.885523 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284462, 37.884135 ], [ -122.285707, 37.883542 ], [ -122.285686, 37.883644 ], [ -122.284741, 37.884101 ], [ -122.284505, 37.884202 ], [ -122.284462, 37.884135 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284505, 37.884202 ], [ -122.284462, 37.884135 ], [ -122.285707, 37.883542 ], [ -122.285686, 37.883644 ], [ -122.284741, 37.884101 ], [ -122.284505, 37.884202 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886963 ], [ -122.283819, 37.886235 ], [ -122.284505, 37.884372 ], [ -122.284505, 37.884202 ], [ -122.285686, 37.883644 ], [ -122.285600, 37.883999 ], [ -122.284570, 37.886709 ], [ -122.284334, 37.887149 ], [ -122.283540, 37.886963 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "population": 65, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284334, 37.887149 ], [ -122.283540, 37.886963 ], [ -122.283819, 37.886235 ], [ -122.284505, 37.884372 ], [ -122.284505, 37.884202 ], [ -122.285686, 37.883644 ], [ -122.285600, 37.883999 ], [ -122.284570, 37.886709 ], [ -122.284334, 37.887149 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282681, 37.885981 ], [ -122.283175, 37.885371 ], [ -122.283282, 37.884778 ], [ -122.283390, 37.884727 ], [ -122.283862, 37.884541 ], [ -122.284505, 37.884202 ], [ -122.284505, 37.884372 ], [ -122.283819, 37.886235 ], [ -122.282681, 37.885981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "population": 30, "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283819, 37.886235 ], [ -122.282681, 37.885981 ], [ -122.283175, 37.885371 ], [ -122.283282, 37.884778 ], [ -122.283390, 37.884727 ], [ -122.283862, 37.884541 ], [ -122.284505, 37.884202 ], [ -122.284505, 37.884372 ], [ -122.283819, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283347, 37.884677 ], [ -122.284462, 37.884135 ], [ -122.284505, 37.884202 ], [ -122.283862, 37.884541 ], [ -122.283390, 37.884727 ], [ -122.283347, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283390, 37.884727 ], [ -122.283347, 37.884677 ], [ -122.284462, 37.884135 ], [ -122.284505, 37.884202 ], [ -122.283862, 37.884541 ], [ -122.283390, 37.884727 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282016, 37.884185 ], [ -122.282574, 37.882729 ], [ -122.282767, 37.882543 ], [ -122.282810, 37.882509 ], [ -122.283025, 37.882526 ], [ -122.283690, 37.882492 ], [ -122.285085, 37.882475 ], [ -122.285385, 37.882441 ], [ -122.286050, 37.882458 ], [ -122.285836, 37.883034 ], [ -122.285707, 37.883542 ], [ -122.283797, 37.884473 ], [ -122.283132, 37.884761 ], [ -122.282424, 37.884965 ], [ -122.282124, 37.884998 ], [ -122.281995, 37.884981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "population": 17, "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.884998 ], [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282016, 37.884185 ], [ -122.282574, 37.882729 ], [ -122.282767, 37.882543 ], [ -122.282810, 37.882509 ], [ -122.283025, 37.882526 ], [ -122.283690, 37.882492 ], [ -122.285085, 37.882475 ], [ -122.285385, 37.882441 ], [ -122.286050, 37.882458 ], [ -122.285836, 37.883034 ], [ -122.285707, 37.883542 ], [ -122.283797, 37.884473 ], [ -122.283132, 37.884761 ], [ -122.282424, 37.884965 ], [ -122.282124, 37.884998 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891129 ], [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891129 ], [ -122.282424, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282381, 37.890790 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889232 ], [ -122.282639, 37.889164 ], [ -122.282853, 37.889164 ], [ -122.282982, 37.889435 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ], [ -122.282381, 37.890790 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "population": 22, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.282381, 37.890790 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889232 ], [ -122.282639, 37.889164 ], [ -122.282853, 37.889164 ], [ -122.282982, 37.889435 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283282, 37.889147 ], [ -122.282832, 37.889147 ], [ -122.282746, 37.889080 ], [ -122.283089, 37.889063 ], [ -122.283475, 37.889097 ], [ -122.283669, 37.889130 ], [ -122.283647, 37.889215 ], [ -122.283282, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283647, 37.889215 ], [ -122.283282, 37.889147 ], [ -122.282832, 37.889147 ], [ -122.282746, 37.889080 ], [ -122.283089, 37.889063 ], [ -122.283475, 37.889097 ], [ -122.283669, 37.889130 ], [ -122.283647, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282746, 37.889080 ], [ -122.282832, 37.889147 ], [ -122.282295, 37.889232 ], [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282746, 37.889080 ], [ -122.282832, 37.889147 ], [ -122.282295, 37.889232 ], [ -122.281909, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281673, 37.888673 ], [ -122.281673, 37.888250 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886895 ], [ -122.282660, 37.888589 ], [ -122.282660, 37.888944 ], [ -122.282746, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ], [ -122.281673, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "population": 37, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281673, 37.888673 ], [ -122.281673, 37.888250 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886895 ], [ -122.282660, 37.888589 ], [ -122.282660, 37.888944 ], [ -122.282746, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886675 ], [ -122.282488, 37.886319 ], [ -122.282681, 37.885981 ], [ -122.283819, 37.886235 ], [ -122.283540, 37.886963 ], [ -122.282295, 37.886675 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "population": 16, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886963 ], [ -122.282295, 37.886675 ], [ -122.282488, 37.886319 ], [ -122.282681, 37.885981 ], [ -122.283819, 37.886235 ], [ -122.283540, 37.886963 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281973, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282124, 37.884998 ], [ -122.282424, 37.884965 ], [ -122.282875, 37.884846 ], [ -122.283347, 37.884677 ], [ -122.283390, 37.884727 ], [ -122.282917, 37.884914 ], [ -122.282445, 37.885032 ], [ -122.282038, 37.885066 ], [ -122.281973, 37.885049 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885066 ], [ -122.281973, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282124, 37.884998 ], [ -122.282424, 37.884965 ], [ -122.282875, 37.884846 ], [ -122.283347, 37.884677 ], [ -122.283390, 37.884727 ], [ -122.282917, 37.884914 ], [ -122.282445, 37.885032 ], [ -122.282038, 37.885066 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287810, 37.884169 ], [ -122.287188, 37.884101 ], [ -122.286673, 37.883999 ], [ -122.287080, 37.882915 ], [ -122.287209, 37.882594 ], [ -122.287939, 37.882881 ], [ -122.288518, 37.883051 ], [ -122.288067, 37.884253 ], [ -122.287810, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "population": 45, "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288067, 37.884253 ], [ -122.287810, 37.884169 ], [ -122.287188, 37.884101 ], [ -122.286673, 37.883999 ], [ -122.287080, 37.882915 ], [ -122.287209, 37.882594 ], [ -122.287939, 37.882881 ], [ -122.288518, 37.883051 ], [ -122.288067, 37.884253 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883982 ], [ -122.286973, 37.882983 ], [ -122.287080, 37.882915 ], [ -122.287037, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883982 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.883999 ], [ -122.286587, 37.883982 ], [ -122.286973, 37.882983 ], [ -122.287080, 37.882915 ], [ -122.287037, 37.883051 ], [ -122.286673, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882864 ], [ -122.287123, 37.882560 ], [ -122.287209, 37.882594 ], [ -122.287188, 37.882661 ], [ -122.287080, 37.882915 ], [ -122.287016, 37.882864 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "population": 1, "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.882915 ], [ -122.287016, 37.882864 ], [ -122.287123, 37.882560 ], [ -122.287209, 37.882594 ], [ -122.287188, 37.882661 ], [ -122.287080, 37.882915 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285707, 37.883542 ], [ -122.287016, 37.882864 ], [ -122.287080, 37.882915 ], [ -122.285686, 37.883644 ], [ -122.285707, 37.883542 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "population": 1, "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.883644 ], [ -122.285707, 37.883542 ], [ -122.287016, 37.882864 ], [ -122.287080, 37.882915 ], [ -122.285686, 37.883644 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285836, 37.883034 ], [ -122.286050, 37.882458 ], [ -122.286758, 37.882458 ], [ -122.287123, 37.882560 ], [ -122.287016, 37.882864 ], [ -122.285707, 37.883542 ], [ -122.285836, 37.883034 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "population": 15, "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285707, 37.883542 ], [ -122.285836, 37.883034 ], [ -122.286050, 37.882458 ], [ -122.286758, 37.882458 ], [ -122.287123, 37.882560 ], [ -122.287016, 37.882864 ], [ -122.285707, 37.883542 ] ] ] } } ] } ] } ] } diff --git a/tests/join-population/merged.mbtiles.json b/tests/join-population/merged.mbtiles.json index 5072a76..5f7f353 100644 --- a/tests/join-population/merged.mbtiles.json +++ b/tests/join-population/merged.mbtiles.json @@ -12,23 +12,23 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.321777, 37.874853 ], [ -122.343750, 37.874853 ], [ -122.343750, 37.892196 ], [ -122.321777, 37.892196 ], [ -122.321777, 37.874853 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.321777, 37.892196 ], [ -122.321777, 37.874853 ], [ -122.343750, 37.874853 ], [ -122.343750, 37.892196 ], [ -122.321777, 37.892196 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.338257, 37.892196 ], [ -122.316284, 37.900865 ], [ -122.310791, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.900865 ], [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.338257, 37.892196 ], [ -122.316284, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.883525 ], [ -122.332764, 37.879189 ], [ -122.338257, 37.892196 ], [ -122.321777, 37.892196 ], [ -122.316284, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.321777, 37.892196 ], [ -122.316284, 37.883525 ], [ -122.332764, 37.879189 ], [ -122.338257, 37.892196 ], [ -122.321777, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.887860 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.896530 ], [ -122.299805, 37.887860 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.896530 ], [ -122.299805, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ] ] ] } } ] } ] } , @@ -56,43 +56,43 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.316284, 37.894363 ], [ -122.335510, 37.890028 ], [ -122.335510, 37.894363 ], [ -122.313538, 37.898698 ], [ -122.310791, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.898698 ], [ -122.310791, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.316284, 37.894363 ], [ -122.335510, 37.890028 ], [ -122.335510, 37.894363 ], [ -122.313538, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.890028 ], [ -122.330017, 37.892196 ], [ -122.316284, 37.894363 ], [ -122.310791, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.330017, 37.892196 ], [ -122.316284, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.892196 ], [ -122.308044, 37.890028 ], [ -122.310791, 37.898698 ], [ -122.302551, 37.898698 ], [ -122.305298, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.892196 ], [ -122.308044, 37.890028 ], [ -122.310791, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.890028 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.894363 ], [ -122.302551, 37.894363 ], [ -122.302551, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.894363 ], [ -122.302551, 37.890028 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.894363 ], [ -122.302551, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.883525 ], [ -122.330017, 37.879189 ], [ -122.335510, 37.890028 ], [ -122.319031, 37.890028 ], [ -122.313538, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.319031, 37.890028 ], [ -122.313538, 37.883525 ], [ -122.330017, 37.879189 ], [ -122.335510, 37.890028 ], [ -122.319031, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.313538, 37.883525 ], [ -122.319031, 37.890028 ], [ -122.313538, 37.890028 ], [ -122.310791, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.890028 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.313538, 37.883525 ], [ -122.319031, 37.890028 ], [ -122.313538, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.881357 ], [ -122.313538, 37.881357 ], [ -122.313538, 37.885693 ], [ -122.308044, 37.885693 ], [ -122.308044, 37.881357 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.885693 ], [ -122.308044, 37.881357 ], [ -122.313538, 37.881357 ], [ -122.313538, 37.885693 ], [ -122.308044, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890028 ], [ -122.305298, 37.890028 ], [ -122.305298, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.894363 ], [ -122.299805, 37.890028 ], [ -122.305298, 37.890028 ], [ -122.305298, 37.894363 ], [ -122.299805, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.883525 ], [ -122.308044, 37.883525 ], [ -122.308044, 37.887860 ], [ -122.302551, 37.887860 ], [ -122.302551, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.883525 ], [ -122.308044, 37.883525 ], [ -122.308044, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.900865 ], [ -122.294312, 37.900865 ], [ -122.294312, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.900865 ], [ -122.294312, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.900865 ], [ -122.294312, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.898698 ], [ -122.288818, 37.898698 ], [ -122.288818, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.898698 ], [ -122.288818, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.898698 ], [ -122.288818, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.894363 ], [ -122.288818, 37.894363 ], [ -122.288818, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.288818, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.894363 ], [ -122.288818, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.887860 ], [ -122.288818, 37.887860 ], [ -122.288818, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.887860 ], [ -122.288818, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.887860 ], [ -122.288818, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.885693 ], [ -122.288818, 37.885693 ], [ -122.288818, 37.890028 ], [ -122.283325, 37.890028 ], [ -122.283325, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.890028 ], [ -122.283325, 37.885693 ], [ -122.288818, 37.885693 ], [ -122.288818, 37.890028 ], [ -122.283325, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.883525 ], [ -122.288818, 37.883525 ], [ -122.288818, 37.887860 ], [ -122.283325, 37.887860 ], [ -122.283325, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887860 ], [ -122.283325, 37.883525 ], [ -122.288818, 37.883525 ], [ -122.288818, 37.887860 ], [ -122.283325, 37.887860 ] ] ] } } ] } ] } , @@ -122,127 +122,127 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.314911, 37.893279 ], [ -122.320404, 37.890028 ], [ -122.325897, 37.893279 ], [ -122.328644, 37.890028 ], [ -122.335510, 37.890028 ], [ -122.334137, 37.893279 ], [ -122.313538, 37.897614 ], [ -122.309418, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.897614 ], [ -122.309418, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.314911, 37.893279 ], [ -122.320404, 37.890028 ], [ -122.325897, 37.893279 ], [ -122.328644, 37.890028 ], [ -122.335510, 37.890028 ], [ -122.334137, 37.893279 ], [ -122.313538, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.312164, 37.897614 ], [ -122.309418, 37.893279 ], [ -122.309418, 37.891112 ], [ -122.312164, 37.897614 ] ] ], [ [ [ -122.310791, 37.888944 ], [ -122.328644, 37.890028 ], [ -122.328644, 37.892196 ], [ -122.324524, 37.893279 ], [ -122.323151, 37.890028 ], [ -122.320404, 37.890028 ], [ -122.314911, 37.893279 ], [ -122.310791, 37.888944 ] ] ], [ [ [ -122.309418, 37.888944 ], [ -122.310791, 37.888944 ], [ -122.309418, 37.891112 ], [ -122.309418, 37.888944 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.891112 ], [ -122.309418, 37.888944 ], [ -122.310791, 37.888944 ], [ -122.309418, 37.891112 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.314911, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.323151, 37.890028 ], [ -122.328644, 37.890028 ], [ -122.328644, 37.892196 ], [ -122.324524, 37.893279 ], [ -122.323151, 37.890028 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897614 ], [ -122.309418, 37.891112 ], [ -122.312164, 37.898698 ], [ -122.309418, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.898698 ], [ -122.309418, 37.897614 ], [ -122.309418, 37.891112 ], [ -122.312164, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.313538, 37.896530 ], [ -122.313538, 37.898698 ], [ -122.310791, 37.898698 ], [ -122.310791, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.898698 ], [ -122.310791, 37.896530 ], [ -122.313538, 37.896530 ], [ -122.313538, 37.898698 ], [ -122.310791, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.308044, 37.894363 ], [ -122.305298, 37.894363 ], [ -122.305298, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.894363 ], [ -122.305298, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.308044, 37.894363 ], [ -122.305298, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.891112 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898698 ], [ -122.302551, 37.898698 ], [ -122.305298, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.891112 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891112 ], [ -122.305298, 37.891112 ], [ -122.305298, 37.893279 ], [ -122.302551, 37.893279 ], [ -122.302551, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.893279 ], [ -122.302551, 37.891112 ], [ -122.305298, 37.891112 ], [ -122.305298, 37.893279 ], [ -122.302551, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893279 ], [ -122.303925, 37.893279 ], [ -122.303925, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895447 ], [ -122.301178, 37.893279 ], [ -122.303925, 37.893279 ], [ -122.303925, 37.895447 ], [ -122.301178, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.325897, 37.888944 ], [ -122.317657, 37.890028 ], [ -122.317657, 37.885693 ], [ -122.313538, 37.882441 ], [ -122.328644, 37.878105 ], [ -122.335510, 37.890028 ], [ -122.328644, 37.890028 ], [ -122.325897, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.328644, 37.890028 ], [ -122.325897, 37.888944 ], [ -122.317657, 37.890028 ], [ -122.317657, 37.885693 ], [ -122.313538, 37.882441 ], [ -122.328644, 37.878105 ], [ -122.335510, 37.890028 ], [ -122.328644, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.312164, 37.890028 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.882441 ], [ -122.313538, 37.882441 ], [ -122.317657, 37.885693 ], [ -122.317657, 37.890028 ], [ -122.312164, 37.890028 ] ] ], [ [ [ -122.325897, 37.888944 ], [ -122.328644, 37.890028 ], [ -122.317657, 37.890028 ], [ -122.325897, 37.888944 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317657, 37.890028 ], [ -122.312164, 37.890028 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.882441 ], [ -122.313538, 37.882441 ], [ -122.317657, 37.885693 ], [ -122.317657, 37.890028 ] ] ], [ [ [ -122.317657, 37.890028 ], [ -122.325897, 37.888944 ], [ -122.328644, 37.890028 ], [ -122.317657, 37.890028 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.886777 ], [ -122.310791, 37.886777 ], [ -122.310791, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888944 ], [ -122.308044, 37.886777 ], [ -122.310791, 37.886777 ], [ -122.310791, 37.888944 ], [ -122.308044, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.887860 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.882441 ], [ -122.309418, 37.883525 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.882441 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.882441 ], [ -122.309418, 37.883525 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.308044, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.882441 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.884609 ], [ -122.305298, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.308044, 37.884609 ], [ -122.305298, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.888944 ], [ -122.305298, 37.888944 ], [ -122.305298, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891112 ], [ -122.302551, 37.888944 ], [ -122.305298, 37.888944 ], [ -122.305298, 37.891112 ], [ -122.302551, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.888944 ], [ -122.303925, 37.888944 ], [ -122.303925, 37.891112 ], [ -122.301178, 37.891112 ], [ -122.301178, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.891112 ], [ -122.301178, 37.888944 ], [ -122.303925, 37.888944 ], [ -122.303925, 37.891112 ], [ -122.301178, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.888944 ], [ -122.302551, 37.888944 ], [ -122.302551, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891112 ], [ -122.299805, 37.888944 ], [ -122.302551, 37.888944 ], [ -122.302551, 37.891112 ], [ -122.299805, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.305298, 37.886777 ], [ -122.308044, 37.885693 ], [ -122.308044, 37.887860 ], [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ], [ -122.305298, 37.886777 ], [ -122.308044, 37.885693 ], [ -122.308044, 37.887860 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.883525 ], [ -122.306671, 37.882441 ], [ -122.308044, 37.885693 ], [ -122.305298, 37.885693 ], [ -122.302551, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.885693 ], [ -122.302551, 37.883525 ], [ -122.306671, 37.882441 ], [ -122.308044, 37.885693 ], [ -122.305298, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.883525 ], [ -122.303925, 37.883525 ], [ -122.303925, 37.886777 ], [ -122.301178, 37.886777 ], [ -122.301178, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.301178, 37.883525 ], [ -122.303925, 37.883525 ], [ -122.303925, 37.886777 ], [ -122.301178, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.882441 ], [ -122.302551, 37.882441 ], [ -122.302551, 37.884609 ], [ -122.299805, 37.884609 ], [ -122.299805, 37.882441 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884609 ], [ -122.299805, 37.882441 ], [ -122.302551, 37.882441 ], [ -122.302551, 37.884609 ], [ -122.299805, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.295685, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.897614 ], [ -122.295685, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898698 ], [ -122.298431, 37.896530 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.898698 ], [ -122.298431, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299805, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.297058, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299805, 37.897614 ], [ -122.297058, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.297058, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.895447 ], [ -122.297058, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.897614 ], [ -122.294312, 37.897614 ], [ -122.294312, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.897614 ], [ -122.294312, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.897614 ], [ -122.294312, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.297058, 37.898698 ], [ -122.297058, 37.900865 ], [ -122.294312, 37.900865 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.900865 ], [ -122.294312, 37.898698 ], [ -122.297058, 37.898698 ], [ -122.297058, 37.900865 ], [ -122.294312, 37.900865 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.899781 ], [ -122.292938, 37.899781 ], [ -122.292938, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.899781 ], [ -122.292938, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.899781 ], [ -122.292938, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.896530 ], [ -122.292938, 37.896530 ], [ -122.292938, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.896530 ], [ -122.292938, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.896530 ], [ -122.292938, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.895447 ], [ -122.291565, 37.895447 ], [ -122.291565, 37.897614 ], [ -122.288818, 37.897614 ], [ -122.288818, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.897614 ], [ -122.288818, 37.895447 ], [ -122.291565, 37.895447 ], [ -122.291565, 37.897614 ], [ -122.288818, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.896530 ], [ -122.291565, 37.896530 ], [ -122.291565, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896530 ], [ -122.290192, 37.896530 ], [ -122.290192, 37.898698 ], [ -122.287445, 37.898698 ], [ -122.287445, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.896530 ], [ -122.290192, 37.896530 ], [ -122.290192, 37.898698 ], [ -122.287445, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894363 ], [ -122.290192, 37.894363 ], [ -122.290192, 37.896530 ], [ -122.287445, 37.896530 ], [ -122.287445, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896530 ], [ -122.287445, 37.894363 ], [ -122.290192, 37.894363 ], [ -122.290192, 37.896530 ], [ -122.287445, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.299805, 37.885693 ], [ -122.299805, 37.887860 ], [ -122.297058, 37.887860 ], [ -122.297058, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887860 ], [ -122.297058, 37.885693 ], [ -122.299805, 37.885693 ], [ -122.299805, 37.887860 ], [ -122.297058, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.892196 ], [ -122.294312, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.892196 ], [ -122.294312, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892196 ], [ -122.297058, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.892196 ], [ -122.297058, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.886777 ], [ -122.298431, 37.884609 ], [ -122.301178, 37.884609 ], [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.884609 ], [ -122.301178, 37.884609 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.885693 ], [ -122.297058, 37.885693 ], [ -122.297058, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.297058, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.885693 ], [ -122.297058, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.886777 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.888944 ], [ -122.295685, 37.888944 ], [ -122.295685, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.888944 ], [ -122.295685, 37.886777 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.888944 ], [ -122.295685, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.883525 ], [ -122.297058, 37.883525 ], [ -122.297058, 37.885693 ], [ -122.294312, 37.885693 ], [ -122.294312, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.885693 ], [ -122.294312, 37.883525 ], [ -122.297058, 37.883525 ], [ -122.297058, 37.885693 ], [ -122.294312, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.886777 ], [ -122.294312, 37.886777 ], [ -122.294312, 37.888944 ], [ -122.291565, 37.888944 ], [ -122.291565, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888944 ], [ -122.291565, 37.886777 ], [ -122.294312, 37.886777 ], [ -122.294312, 37.888944 ], [ -122.291565, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.892196 ], [ -122.291565, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.892196 ], [ -122.291565, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.894363 ], [ -122.288818, 37.894363 ], [ -122.288818, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.288818, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.894363 ], [ -122.288818, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890028 ], [ -122.291565, 37.890028 ], [ -122.291565, 37.892196 ], [ -122.288818, 37.892196 ], [ -122.288818, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.288818, 37.890028 ], [ -122.291565, 37.890028 ], [ -122.291565, 37.892196 ], [ -122.288818, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885693 ], [ -122.291565, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.885693 ], [ -122.291565, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.887860 ], [ -122.290192, 37.887860 ], [ -122.290192, 37.890028 ], [ -122.287445, 37.890028 ], [ -122.287445, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.287445, 37.887860 ], [ -122.290192, 37.887860 ], [ -122.290192, 37.890028 ], [ -122.287445, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.884609 ], [ -122.292938, 37.884609 ], [ -122.292938, 37.886777 ], [ -122.290192, 37.886777 ], [ -122.290192, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.886777 ], [ -122.290192, 37.884609 ], [ -122.292938, 37.884609 ], [ -122.292938, 37.886777 ], [ -122.290192, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.890028 ], [ -122.286072, 37.890028 ], [ -122.286072, 37.892196 ], [ -122.283325, 37.892196 ], [ -122.283325, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.892196 ], [ -122.283325, 37.890028 ], [ -122.286072, 37.890028 ], [ -122.286072, 37.892196 ], [ -122.283325, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886777 ], [ -122.286072, 37.886777 ], [ -122.286072, 37.888944 ], [ -122.283325, 37.888944 ], [ -122.283325, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.888944 ], [ -122.283325, 37.886777 ], [ -122.286072, 37.886777 ], [ -122.286072, 37.888944 ], [ -122.283325, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.887860 ], [ -122.288818, 37.887860 ], [ -122.288818, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.887860 ], [ -122.288818, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.887860 ], [ -122.288818, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885693 ], [ -122.287445, 37.885693 ], [ -122.287445, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.885693 ], [ -122.287445, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885693 ], [ -122.287445, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.884609 ], [ -122.287445, 37.884609 ], [ -122.287445, 37.886777 ], [ -122.284698, 37.886777 ], [ -122.284698, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.886777 ], [ -122.284698, 37.884609 ], [ -122.287445, 37.884609 ], [ -122.287445, 37.886777 ], [ -122.284698, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.884609 ], [ -122.286072, 37.884609 ], [ -122.286072, 37.886777 ], [ -122.283325, 37.886777 ], [ -122.283325, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886777 ], [ -122.283325, 37.884609 ], [ -122.286072, 37.884609 ], [ -122.286072, 37.886777 ], [ -122.283325, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.883525 ], [ -122.286072, 37.883525 ], [ -122.283325, 37.885693 ], [ -122.283325, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.885693 ], [ -122.283325, 37.883525 ], [ -122.286072, 37.883525 ], [ -122.283325, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.885693 ], [ -122.284698, 37.885693 ], [ -122.284698, 37.887860 ], [ -122.281952, 37.887860 ], [ -122.281952, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.887860 ], [ -122.281952, 37.885693 ], [ -122.284698, 37.885693 ], [ -122.284698, 37.887860 ], [ -122.281952, 37.887860 ] ] ] } } ] } ] } , @@ -278,351 +278,351 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312851, 37.897614 ], [ -122.309418, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.314911, 37.892737 ], [ -122.316284, 37.891654 ], [ -122.320404, 37.890028 ], [ -122.323151, 37.890028 ], [ -122.324524, 37.892737 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.891112 ], [ -122.327957, 37.891654 ], [ -122.327957, 37.890028 ], [ -122.334824, 37.890028 ], [ -122.333450, 37.893279 ], [ -122.312851, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.887860 ], [ -122.311478, 37.889486 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ], [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.891112 ], [ -122.309418, 37.887860 ] ] ], [ [ [ -122.309418, 37.893279 ], [ -122.309418, 37.892737 ], [ -122.312164, 37.897072 ], [ -122.309418, 37.893279 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.320404, 37.890028 ], [ -122.316284, 37.891654 ], [ -122.314911, 37.892737 ], [ -122.310104, 37.888944 ], [ -122.311478, 37.889486 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.310104, 37.888944 ], [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ] ] ], [ [ [ -122.323151, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.891654 ], [ -122.325897, 37.891112 ], [ -122.325897, 37.892737 ], [ -122.324524, 37.892737 ], [ -122.323151, 37.890028 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.894905 ], [ -122.308731, 37.891112 ], [ -122.312164, 37.897614 ], [ -122.309418, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.897614 ], [ -122.309418, 37.894905 ], [ -122.308731, 37.891112 ], [ -122.312164, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897614 ], [ -122.308731, 37.891112 ], [ -122.311478, 37.898156 ], [ -122.309418, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.898156 ], [ -122.309418, 37.897614 ], [ -122.308731, 37.891112 ], [ -122.311478, 37.898156 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.895447 ], [ -122.310104, 37.895447 ], [ -122.310104, 37.893821 ], [ -122.311478, 37.893821 ], [ -122.311478, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.893821 ], [ -122.307358, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.893821 ], [ -122.307358, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.898156 ], [ -122.306671, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.306671, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898156 ], [ -122.302551, 37.898156 ], [ -122.302551, 37.899240 ], [ -122.301178, 37.899240 ], [ -122.301178, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.899240 ], [ -122.301178, 37.898156 ], [ -122.302551, 37.898156 ], [ -122.302551, 37.899240 ], [ -122.301178, 37.899240 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.301178, 37.897072 ], [ -122.301865, 37.898698 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.300491, 37.897072 ], [ -122.301178, 37.897072 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.309418, 37.898156 ], [ -122.301865, 37.898698 ], [ -122.301178, 37.896530 ], [ -122.303238, 37.895989 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.893821 ], [ -122.304611, 37.890570 ], [ -122.306671, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.301178, 37.896530 ], [ -122.303238, 37.895989 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.893821 ], [ -122.304611, 37.890570 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898156 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.892196 ], [ -122.303238, 37.891654 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894905 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.891654 ], [ -122.303238, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.894363 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.895989 ], [ -122.301865, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.300491, 37.895447 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.897072 ], [ -122.299805, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.299805, 37.895447 ], [ -122.300491, 37.895447 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896530 ], [ -122.301178, 37.894363 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.893821 ], [ -122.302551, 37.893821 ], [ -122.301865, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.893821 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.893821 ], [ -122.302551, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.893821 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.893821 ], [ -122.301178, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.894905 ], [ -122.301178, 37.894905 ], [ -122.301178, 37.895989 ], [ -122.299805, 37.895989 ], [ -122.299805, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895989 ], [ -122.299805, 37.894905 ], [ -122.301178, 37.894905 ], [ -122.301178, 37.895989 ], [ -122.299805, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.893821 ], [ -122.299805, 37.892737 ], [ -122.301178, 37.892196 ], [ -122.301178, 37.894363 ], [ -122.300491, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.892737 ], [ -122.301178, 37.892196 ], [ -122.301178, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327957, 37.888944 ], [ -122.325211, 37.888402 ], [ -122.322464, 37.889486 ], [ -122.317657, 37.889486 ], [ -122.316284, 37.887860 ], [ -122.316284, 37.885693 ], [ -122.315598, 37.884067 ], [ -122.312851, 37.881899 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.890028 ], [ -122.327957, 37.890028 ], [ -122.327957, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327957, 37.890028 ], [ -122.327957, 37.888944 ], [ -122.325211, 37.888402 ], [ -122.322464, 37.889486 ], [ -122.317657, 37.889486 ], [ -122.316284, 37.887860 ], [ -122.316284, 37.885693 ], [ -122.315598, 37.884067 ], [ -122.312851, 37.881899 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.890028 ], [ -122.327957, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.308731, 37.882441 ], [ -122.312851, 37.881899 ], [ -122.315598, 37.884067 ], [ -122.316284, 37.885693 ], [ -122.316284, 37.887860 ], [ -122.317657, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.325211, 37.888402 ], [ -122.327957, 37.888944 ], [ -122.327957, 37.890028 ], [ -122.311478, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317657, 37.889486 ], [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.308731, 37.882441 ], [ -122.312851, 37.881899 ], [ -122.315598, 37.884067 ], [ -122.316284, 37.885693 ], [ -122.316284, 37.887860 ], [ -122.317657, 37.889486 ] ] ], [ [ [ -122.317657, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.325211, 37.888402 ], [ -122.327957, 37.888944 ], [ -122.327957, 37.890028 ], [ -122.317657, 37.889486 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.889486 ], [ -122.307358, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.889486 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.889486 ], [ -122.307358, 37.889486 ], [ -122.307358, 37.890570 ], [ -122.305984, 37.890570 ], [ -122.305984, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.890570 ], [ -122.305984, 37.889486 ], [ -122.307358, 37.889486 ], [ -122.307358, 37.890570 ], [ -122.305984, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.888944 ], [ -122.306671, 37.888944 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888944 ], [ -122.306671, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.888944 ], [ -122.306671, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ], [ -122.308044, 37.882441 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.883525 ], [ -122.305984, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.307358, 37.887318 ], [ -122.306671, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.306671, 37.883525 ], [ -122.305984, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.888944 ], [ -122.304611, 37.888944 ], [ -122.304611, 37.890028 ], [ -122.303238, 37.890028 ], [ -122.303238, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890028 ], [ -122.303238, 37.888944 ], [ -122.304611, 37.888944 ], [ -122.304611, 37.890028 ], [ -122.303238, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.889486 ], [ -122.305984, 37.889486 ], [ -122.306671, 37.890028 ], [ -122.303925, 37.890570 ], [ -122.303925, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.890570 ], [ -122.303925, 37.889486 ], [ -122.305984, 37.889486 ], [ -122.306671, 37.890028 ], [ -122.303925, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.887318 ], [ -122.306671, 37.887318 ], [ -122.306671, 37.888402 ], [ -122.305298, 37.888402 ], [ -122.305298, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.888402 ], [ -122.305298, 37.887318 ], [ -122.306671, 37.887318 ], [ -122.306671, 37.888402 ], [ -122.305298, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.888944 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.890028 ], [ -122.304611, 37.890028 ], [ -122.304611, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.890028 ], [ -122.304611, 37.888944 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.890028 ], [ -122.304611, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.887860 ], [ -122.303925, 37.887860 ], [ -122.304611, 37.889486 ], [ -122.303925, 37.889486 ], [ -122.303238, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.889486 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.887860 ], [ -122.304611, 37.889486 ], [ -122.303925, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.302551, 37.890028 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.892196 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.890028 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299118, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299118, 37.890570 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.890570 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.892196 ], [ -122.300491, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887860 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.889486 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.890028 ], [ -122.301865, 37.887860 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.889486 ], [ -122.302551, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.301178, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.887860 ], [ -122.300491, 37.887860 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.890570 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.887860 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.304611, 37.886235 ], [ -122.307358, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ], [ -122.304611, 37.886235 ], [ -122.307358, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.884609 ], [ -122.304611, 37.884609 ], [ -122.304611, 37.885693 ], [ -122.303238, 37.885693 ], [ -122.303238, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.885693 ], [ -122.303238, 37.884609 ], [ -122.304611, 37.884609 ], [ -122.304611, 37.885693 ], [ -122.303238, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884067 ], [ -122.302551, 37.882983 ], [ -122.305984, 37.882441 ], [ -122.307358, 37.885693 ], [ -122.304611, 37.885693 ], [ -122.303925, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885693 ], [ -122.303925, 37.884067 ], [ -122.302551, 37.882983 ], [ -122.305984, 37.882441 ], [ -122.307358, 37.885693 ], [ -122.304611, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883525 ], [ -122.304611, 37.883525 ], [ -122.304611, 37.884609 ], [ -122.303238, 37.884609 ], [ -122.303238, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.884609 ], [ -122.303238, 37.883525 ], [ -122.304611, 37.883525 ], [ -122.304611, 37.884609 ], [ -122.303238, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.883525 ], [ -122.303238, 37.883525 ], [ -122.303925, 37.886235 ], [ -122.301178, 37.886777 ], [ -122.300491, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.300491, 37.883525 ], [ -122.303238, 37.883525 ], [ -122.303925, 37.886235 ], [ -122.301178, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.882983 ], [ -122.301178, 37.882983 ], [ -122.301178, 37.884067 ], [ -122.299805, 37.884067 ], [ -122.299805, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884067 ], [ -122.299805, 37.882983 ], [ -122.301178, 37.882983 ], [ -122.301178, 37.884067 ], [ -122.299805, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898156 ], [ -122.299805, 37.898156 ], [ -122.299805, 37.899240 ], [ -122.298431, 37.899240 ], [ -122.298431, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899240 ], [ -122.298431, 37.898156 ], [ -122.299805, 37.898156 ], [ -122.299805, 37.899240 ], [ -122.298431, 37.899240 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.898698 ], [ -122.299118, 37.898698 ], [ -122.299118, 37.899781 ], [ -122.297745, 37.899781 ], [ -122.297745, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.899781 ], [ -122.297745, 37.898698 ], [ -122.299118, 37.898698 ], [ -122.299118, 37.899781 ], [ -122.297745, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.899781 ], [ -122.297058, 37.899781 ], [ -122.297058, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.896530 ], [ -122.295685, 37.896530 ], [ -122.295685, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896530 ], [ -122.295685, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.896530 ], [ -122.295685, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.296371, 37.898156 ], [ -122.296371, 37.899240 ], [ -122.294998, 37.899240 ], [ -122.294998, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.899240 ], [ -122.294998, 37.898156 ], [ -122.296371, 37.898156 ], [ -122.296371, 37.899240 ], [ -122.294998, 37.899240 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.299805, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298431, 37.898156 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898156 ], [ -122.298431, 37.897072 ], [ -122.299805, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298431, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.894905 ], [ -122.299805, 37.894905 ], [ -122.299805, 37.895989 ], [ -122.298431, 37.895989 ], [ -122.298431, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.895989 ], [ -122.298431, 37.894905 ], [ -122.299805, 37.894905 ], [ -122.299805, 37.895989 ], [ -122.298431, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.299118, 37.895447 ], [ -122.299118, 37.896530 ], [ -122.297745, 37.896530 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.896530 ], [ -122.297745, 37.895447 ], [ -122.299118, 37.895447 ], [ -122.299118, 37.896530 ], [ -122.297745, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.300491, 37.893821 ], [ -122.300491, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.300491, 37.893821 ], [ -122.300491, 37.895447 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.892196 ], [ -122.299805, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299118, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892196 ], [ -122.299805, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.298431, 37.894905 ], [ -122.297058, 37.894905 ], [ -122.297058, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.894905 ], [ -122.297058, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.298431, 37.894905 ], [ -122.297058, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.893821 ], [ -122.297745, 37.893821 ], [ -122.297745, 37.894905 ], [ -122.296371, 37.894905 ], [ -122.296371, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.894905 ], [ -122.296371, 37.893821 ], [ -122.297745, 37.893821 ], [ -122.297745, 37.894905 ], [ -122.296371, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894905 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ], [ -122.294998, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.894905 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296371, 37.897072 ], [ -122.294998, 37.897072 ], [ -122.294998, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.897072 ], [ -122.294998, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296371, 37.897072 ], [ -122.294998, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.899781 ], [ -122.294312, 37.899781 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.899781 ], [ -122.294312, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.899781 ], [ -122.294312, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.898156 ], [ -122.292252, 37.897072 ], [ -122.292938, 37.897072 ], [ -122.292938, 37.898698 ], [ -122.292252, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898698 ], [ -122.292252, 37.898156 ], [ -122.292252, 37.897072 ], [ -122.292938, 37.897072 ], [ -122.292938, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897614 ], [ -122.291565, 37.897614 ], [ -122.291565, 37.898698 ], [ -122.290192, 37.898698 ], [ -122.290192, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.898698 ], [ -122.290192, 37.897614 ], [ -122.291565, 37.897614 ], [ -122.291565, 37.898698 ], [ -122.290192, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.897614 ], [ -122.290878, 37.897614 ], [ -122.290878, 37.898698 ], [ -122.289505, 37.898698 ], [ -122.289505, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.898698 ], [ -122.289505, 37.897614 ], [ -122.290878, 37.897614 ], [ -122.290878, 37.898698 ], [ -122.289505, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894905 ], [ -122.294998, 37.898156 ], [ -122.294312, 37.898156 ], [ -122.294998, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898156 ], [ -122.294998, 37.894905 ], [ -122.294998, 37.898156 ], [ -122.294312, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.894905 ], [ -122.294312, 37.894905 ], [ -122.294312, 37.898156 ], [ -122.292938, 37.898156 ], [ -122.293625, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898156 ], [ -122.293625, 37.894905 ], [ -122.294312, 37.894905 ], [ -122.294312, 37.898156 ], [ -122.292938, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.896530 ], [ -122.293625, 37.896530 ], [ -122.293625, 37.897614 ], [ -122.292252, 37.897614 ], [ -122.292252, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.897614 ], [ -122.292252, 37.896530 ], [ -122.293625, 37.896530 ], [ -122.293625, 37.897614 ], [ -122.292252, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.893279 ], [ -122.294312, 37.893279 ], [ -122.294312, 37.894905 ], [ -122.293625, 37.894905 ], [ -122.293625, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.894905 ], [ -122.293625, 37.893279 ], [ -122.294312, 37.893279 ], [ -122.294312, 37.894905 ], [ -122.293625, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.892737 ], [ -122.294312, 37.892737 ], [ -122.294312, 37.893821 ], [ -122.292938, 37.893821 ], [ -122.292938, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.893821 ], [ -122.292938, 37.892737 ], [ -122.294312, 37.892737 ], [ -122.294312, 37.893821 ], [ -122.292938, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.893279 ], [ -122.292938, 37.893279 ], [ -122.292938, 37.894905 ], [ -122.292252, 37.894905 ], [ -122.292252, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.894905 ], [ -122.292252, 37.893279 ], [ -122.292938, 37.893279 ], [ -122.292938, 37.894905 ], [ -122.292252, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.897072 ], [ -122.290192, 37.897072 ], [ -122.290192, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897072 ], [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.897072 ], [ -122.290192, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.897072 ], [ -122.289505, 37.897072 ], [ -122.289505, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.897072 ], [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.897072 ], [ -122.289505, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.894905 ], [ -122.291565, 37.894905 ], [ -122.291565, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.894905 ], [ -122.291565, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.894905 ], [ -122.291565, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.289505, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.897614 ], [ -122.289505, 37.897614 ], [ -122.289505, 37.898698 ], [ -122.288132, 37.898698 ], [ -122.288132, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898698 ], [ -122.288132, 37.897614 ], [ -122.289505, 37.897614 ], [ -122.289505, 37.898698 ], [ -122.288132, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.898698 ], [ -122.287445, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.288818, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.897072 ], [ -122.288818, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.897072 ], [ -122.288818, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.897072 ], [ -122.287445, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.897072 ], [ -122.287445, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894905 ], [ -122.288818, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.894905 ], [ -122.288818, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.288818, 37.894905 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.288818, 37.894905 ], [ -122.287445, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.894363 ], [ -122.288132, 37.894363 ], [ -122.288132, 37.895447 ], [ -122.286758, 37.895447 ], [ -122.286758, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.895447 ], [ -122.286758, 37.894363 ], [ -122.288132, 37.894363 ], [ -122.288132, 37.895447 ], [ -122.286758, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.891112 ], [ -122.298431, 37.891112 ], [ -122.298431, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.891112 ], [ -122.298431, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.891112 ], [ -122.298431, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.890570 ], [ -122.298431, 37.891112 ], [ -122.299118, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.297745, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297745, 37.890570 ], [ -122.298431, 37.891112 ], [ -122.299118, 37.892196 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.887860 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.890570 ], [ -122.299118, 37.890570 ], [ -122.298431, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.298431, 37.887860 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.890570 ], [ -122.299118, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.890028 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.886777 ], [ -122.299118, 37.890570 ], [ -122.298431, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.298431, 37.890028 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.886777 ], [ -122.299118, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.297745, 37.891112 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892737 ], [ -122.296371, 37.890570 ], [ -122.297745, 37.891112 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892737 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.893279 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.893279 ], [ -122.293625, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.890570 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.890570 ], [ -122.296371, 37.887318 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.890570 ], [ -122.297745, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887860 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887860 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.890570 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.886235 ], [ -122.299118, 37.886235 ], [ -122.299118, 37.887318 ], [ -122.297745, 37.887318 ], [ -122.297745, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.887318 ], [ -122.297745, 37.886235 ], [ -122.299118, 37.886235 ], [ -122.299118, 37.887318 ], [ -122.297745, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.886777 ], [ -122.297745, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300491, 37.884067 ], [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ], [ -122.297745, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300491, 37.884067 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.883525 ], [ -122.300491, 37.883525 ], [ -122.299805, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.298431, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884609 ], [ -122.298431, 37.883525 ], [ -122.300491, 37.883525 ], [ -122.299805, 37.884609 ], [ -122.298431, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.884067 ], [ -122.298431, 37.884067 ], [ -122.298431, 37.885151 ], [ -122.297058, 37.885151 ], [ -122.297058, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885151 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.884067 ], [ -122.298431, 37.885151 ], [ -122.297058, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.886777 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.886777 ], [ -122.297058, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.884609 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.884609 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.891112 ], [ -122.292938, 37.891112 ], [ -122.292938, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.893279 ], [ -122.292252, 37.891112 ], [ -122.292938, 37.891112 ], [ -122.292938, 37.893279 ], [ -122.292252, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890028 ], [ -122.294998, 37.890028 ], [ -122.294998, 37.891112 ], [ -122.293625, 37.891112 ], [ -122.293625, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.891112 ], [ -122.293625, 37.890028 ], [ -122.294998, 37.890028 ], [ -122.294998, 37.891112 ], [ -122.293625, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888402 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.891112 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.292252, 37.891112 ], [ -122.292252, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.893279 ], [ -122.291565, 37.891112 ], [ -122.292252, 37.891112 ], [ -122.292252, 37.893279 ], [ -122.291565, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.291565, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290878, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893279 ], [ -122.290878, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.291565, 37.893279 ], [ -122.290192, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893279 ], [ -122.289505, 37.891112 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.893279 ], [ -122.289505, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.289505, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.289505, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.893279 ], [ -122.289505, 37.891112 ], [ -122.289505, 37.893279 ], [ -122.288818, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.290192, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.290192, 37.888402 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.888944 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.891112 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.888944 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.891112 ], [ -122.288818, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.288818, 37.888944 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.885151 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887860 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.887860 ], [ -122.292252, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.292252, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887318 ], [ -122.293625, 37.887318 ], [ -122.293625, 37.888402 ], [ -122.292252, 37.888402 ], [ -122.292252, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.888402 ], [ -122.292252, 37.887318 ], [ -122.293625, 37.887318 ], [ -122.293625, 37.888402 ], [ -122.292252, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884067 ], [ -122.294312, 37.884067 ], [ -122.294312, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.292938, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.885151 ], [ -122.292938, 37.884067 ], [ -122.294312, 37.884067 ], [ -122.294312, 37.885151 ], [ -122.292938, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.884067 ], [ -122.293625, 37.884067 ], [ -122.293625, 37.885151 ], [ -122.292252, 37.885151 ], [ -122.292252, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.885151 ], [ -122.292252, 37.884067 ], [ -122.293625, 37.884067 ], [ -122.293625, 37.885151 ], [ -122.292252, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.882983 ], [ -122.292938, 37.882983 ], [ -122.292938, 37.884067 ], [ -122.291565, 37.884067 ], [ -122.291565, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884067 ], [ -122.291565, 37.882983 ], [ -122.292938, 37.882983 ], [ -122.292938, 37.884067 ], [ -122.291565, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885693 ], [ -122.291565, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888402 ], [ -122.290192, 37.885693 ], [ -122.291565, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291565, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288818, 37.888944 ], [ -122.289505, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.888944 ], [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288818, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.884609 ], [ -122.290878, 37.885693 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.888402 ], [ -122.290192, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.290192, 37.884609 ], [ -122.290878, 37.885693 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.884609 ], [ -122.292252, 37.884609 ], [ -122.292252, 37.885693 ], [ -122.290878, 37.885693 ], [ -122.290878, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.885693 ], [ -122.290878, 37.884609 ], [ -122.292252, 37.884609 ], [ -122.292252, 37.885693 ], [ -122.290878, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.882983 ], [ -122.291565, 37.882983 ], [ -122.291565, 37.884067 ], [ -122.290192, 37.884067 ], [ -122.290192, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.884067 ], [ -122.290192, 37.882983 ], [ -122.291565, 37.882983 ], [ -122.291565, 37.884067 ], [ -122.290192, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885151 ], [ -122.288818, 37.885151 ], [ -122.289505, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885151 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885151 ], [ -122.288818, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.891112 ], [ -122.288818, 37.891112 ], [ -122.288818, 37.893279 ], [ -122.287445, 37.893279 ], [ -122.288132, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893279 ], [ -122.288132, 37.891112 ], [ -122.288818, 37.891112 ], [ -122.288818, 37.893279 ], [ -122.287445, 37.893279 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.892737 ], [ -122.288132, 37.892737 ], [ -122.288132, 37.893821 ], [ -122.286758, 37.893821 ], [ -122.286758, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.893821 ], [ -122.286758, 37.892737 ], [ -122.288132, 37.892737 ], [ -122.288132, 37.893821 ], [ -122.286758, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.889486 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.891112 ], [ -122.288132, 37.891112 ], [ -122.287445, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.891112 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.891112 ], [ -122.288132, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.889486 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.891112 ], [ -122.286758, 37.891112 ], [ -122.286758, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.891112 ], [ -122.286758, 37.889486 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.891112 ], [ -122.286758, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.888402 ], [ -122.287445, 37.889486 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.889486 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.888402 ], [ -122.287445, 37.889486 ], [ -122.286758, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.890028 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.286072, 37.891112 ], [ -122.285385, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.891112 ], [ -122.285385, 37.890028 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.286072, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.889486 ], [ -122.285385, 37.890028 ], [ -122.286072, 37.891112 ], [ -122.284698, 37.891112 ], [ -122.284698, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.891112 ], [ -122.284698, 37.889486 ], [ -122.285385, 37.890028 ], [ -122.286072, 37.891112 ], [ -122.284698, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.889486 ], [ -122.284698, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.284012, 37.891112 ], [ -122.283325, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.891112 ], [ -122.283325, 37.889486 ], [ -122.284698, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.284012, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.285385, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887860 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.285385, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889486 ], [ -122.284698, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.889486 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887318 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.283325, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.889486 ], [ -122.283325, 37.887318 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.889486 ], [ -122.283325, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885151 ], [ -122.290192, 37.885151 ], [ -122.289505, 37.886235 ], [ -122.288818, 37.888944 ], [ -122.287445, 37.889486 ], [ -122.288818, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.889486 ], [ -122.288818, 37.885151 ], [ -122.290192, 37.885151 ], [ -122.289505, 37.886235 ], [ -122.288818, 37.888944 ], [ -122.287445, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.885151 ], [ -122.288132, 37.888402 ], [ -122.286758, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888402 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.885151 ], [ -122.288132, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.287445, 37.886235 ], [ -122.287445, 37.887318 ], [ -122.286072, 37.887318 ], [ -122.286072, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.887318 ], [ -122.286072, 37.886235 ], [ -122.287445, 37.886235 ], [ -122.287445, 37.887318 ], [ -122.286072, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.288132, 37.884609 ], [ -122.288132, 37.886235 ], [ -122.286758, 37.886235 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887860 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884609 ], [ -122.288132, 37.886235 ], [ -122.286758, 37.886235 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.884067 ], [ -122.288818, 37.884067 ], [ -122.288818, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.885151 ], [ -122.287445, 37.884067 ], [ -122.288818, 37.884067 ], [ -122.288818, 37.885151 ], [ -122.287445, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885693 ], [ -122.286072, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.885151 ], [ -122.284698, 37.884609 ], [ -122.284012, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.284012, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886235 ], [ -122.284012, 37.885151 ], [ -122.284012, 37.886235 ], [ -122.283325, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.882983 ], [ -122.286072, 37.882983 ], [ -122.286072, 37.884067 ], [ -122.282639, 37.885151 ], [ -122.283325, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.885151 ], [ -122.283325, 37.882983 ], [ -122.286072, 37.882983 ], [ -122.286072, 37.884067 ], [ -122.282639, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.284012, 37.891112 ], [ -122.282639, 37.891654 ], [ -122.281952, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.891654 ], [ -122.281952, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.284012, 37.891112 ], [ -122.282639, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.888944 ], [ -122.282639, 37.886777 ], [ -122.283325, 37.887318 ], [ -122.283325, 37.889486 ], [ -122.281952, 37.889486 ], [ -122.281952, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.281952, 37.888944 ], [ -122.282639, 37.886777 ], [ -122.283325, 37.887318 ], [ -122.283325, 37.889486 ], [ -122.281952, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.283325, 37.887318 ], [ -122.281952, 37.887318 ], [ -122.281952, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.887318 ], [ -122.281952, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.283325, 37.887318 ], [ -122.281952, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.288818, 37.883525 ], [ -122.288132, 37.884609 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884609 ], [ -122.286758, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.288818, 37.883525 ], [ -122.288132, 37.884609 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.882441 ], [ -122.288132, 37.882441 ], [ -122.288132, 37.883525 ], [ -122.286758, 37.883525 ], [ -122.286758, 37.882441 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.883525 ], [ -122.286758, 37.882441 ], [ -122.288132, 37.882441 ], [ -122.288132, 37.883525 ], [ -122.286758, 37.883525 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.316284, 37.896801 ], [ -122.316284, 37.891383 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.896801 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.316284, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.316284, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.316284, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.316284, 37.888402 ], [ -122.316284, 37.880544 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.316284, 37.888402 ], [ -122.316284, 37.880544 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.888402 ], [ -122.317314, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.323151, 37.889215 ], [ -122.323151, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ], [ -122.316284, 37.889757 ], [ -122.316284, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.323494, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ] ] ] } } ] } ] } , @@ -670,421 +670,421 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310448, 37.894905 ], [ -122.309418, 37.892466 ], [ -122.309418, 37.889757 ], [ -122.310104, 37.888944 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.314911, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.312508, 37.897614 ], [ -122.310448, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897614 ], [ -122.310448, 37.894905 ], [ -122.309418, 37.892466 ], [ -122.309418, 37.889757 ], [ -122.310104, 37.888944 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.314911, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.312508, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309074, 37.888944 ], [ -122.309418, 37.887860 ], [ -122.311478, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314911, 37.892466 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.889757 ], [ -122.309418, 37.891383 ], [ -122.309074, 37.888944 ] ] ], [ [ [ -122.309418, 37.893279 ], [ -122.309418, 37.892737 ], [ -122.311821, 37.896801 ], [ -122.309418, 37.893279 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.892466 ], [ -122.309074, 37.888944 ], [ -122.309418, 37.887860 ], [ -122.311478, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314911, 37.892466 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.889757 ], [ -122.309418, 37.892466 ] ] ], [ [ [ -122.309418, 37.892466 ], [ -122.311821, 37.896801 ], [ -122.309418, 37.893279 ], [ -122.309418, 37.892466 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.894092 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.309418, 37.897885 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897885 ], [ -122.309418, 37.894634 ], [ -122.309418, 37.894092 ], [ -122.312164, 37.897614 ], [ -122.311478, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897343 ], [ -122.308388, 37.894634 ], [ -122.308388, 37.890841 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897885 ], [ -122.309761, 37.897885 ], [ -122.309418, 37.897343 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309761, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894634 ], [ -122.308388, 37.890841 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897885 ], [ -122.309761, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310791, 37.895989 ], [ -122.309418, 37.893279 ], [ -122.312164, 37.897614 ], [ -122.310791, 37.895989 ] ] ], [ [ [ -122.308388, 37.890299 ], [ -122.309074, 37.888944 ], [ -122.309418, 37.893279 ], [ -122.308388, 37.890299 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.893279 ], [ -122.308388, 37.890299 ], [ -122.309074, 37.888944 ], [ -122.309418, 37.893279 ] ] ], [ [ [ -122.309418, 37.893279 ], [ -122.312164, 37.897614 ], [ -122.310791, 37.895989 ], [ -122.309418, 37.893279 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.892737 ], [ -122.307701, 37.889757 ], [ -122.307701, 37.893550 ], [ -122.307358, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.893550 ], [ -122.307358, 37.892737 ], [ -122.307701, 37.889757 ], [ -122.307701, 37.893550 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.892737 ], [ -122.306671, 37.890841 ], [ -122.307701, 37.889757 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898156 ], [ -122.306671, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.898156 ], [ -122.306671, 37.892737 ], [ -122.306671, 37.890841 ], [ -122.307701, 37.889757 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.893279 ], [ -122.308044, 37.891112 ], [ -122.308388, 37.895447 ], [ -122.307701, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.895447 ], [ -122.307701, 37.893279 ], [ -122.308044, 37.891112 ], [ -122.308388, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.898427 ], [ -122.302208, 37.898427 ], [ -122.302208, 37.898969 ], [ -122.301521, 37.898969 ], [ -122.301521, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.898969 ], [ -122.301521, 37.898427 ], [ -122.302208, 37.898427 ], [ -122.302208, 37.898969 ], [ -122.301521, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.898427 ], [ -122.300148, 37.897072 ], [ -122.301178, 37.896801 ], [ -122.301865, 37.898698 ], [ -122.300835, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.300835, 37.898427 ], [ -122.300148, 37.897072 ], [ -122.301178, 37.896801 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.897072 ], [ -122.300148, 37.897072 ], [ -122.300835, 37.898427 ], [ -122.299805, 37.898427 ], [ -122.299461, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898427 ], [ -122.299461, 37.897072 ], [ -122.300148, 37.897072 ], [ -122.300835, 37.898427 ], [ -122.299805, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896260 ], [ -122.302895, 37.895718 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.893821 ], [ -122.303238, 37.894634 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.891654 ], [ -122.304268, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898156 ], [ -122.301865, 37.898698 ], [ -122.301178, 37.896260 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.301178, 37.896260 ], [ -122.302895, 37.895718 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.893821 ], [ -122.303238, 37.894634 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.891654 ], [ -122.304268, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898156 ], [ -122.301865, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891925 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.894634 ], [ -122.302551, 37.891925 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302551, 37.891925 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.895718 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.894092 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.895718 ], [ -122.301865, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895989 ], [ -122.301178, 37.895989 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.896530 ], [ -122.300491, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.896530 ], [ -122.300491, 37.895989 ], [ -122.301178, 37.895989 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896260 ], [ -122.301178, 37.896801 ], [ -122.300148, 37.897072 ], [ -122.299805, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.897072 ], [ -122.299805, 37.895447 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896260 ], [ -122.301178, 37.896801 ], [ -122.300148, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.895176 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896260 ], [ -122.300835, 37.895176 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896260 ], [ -122.300835, 37.895176 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896260 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892196 ], [ -122.302551, 37.891925 ], [ -122.302895, 37.893821 ], [ -122.302208, 37.893821 ], [ -122.301521, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.893821 ], [ -122.301521, 37.892196 ], [ -122.302551, 37.891925 ], [ -122.302895, 37.893821 ], [ -122.302208, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.892196 ], [ -122.301521, 37.892196 ], [ -122.302208, 37.893821 ], [ -122.301178, 37.894092 ], [ -122.300835, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.300835, 37.892196 ], [ -122.301521, 37.892196 ], [ -122.302208, 37.893821 ], [ -122.301178, 37.894092 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893550 ], [ -122.299805, 37.892466 ], [ -122.300835, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894363 ], [ -122.300148, 37.893550 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894363 ], [ -122.300148, 37.893550 ], [ -122.299805, 37.892466 ], [ -122.300835, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.315941, 37.887589 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316284, 37.885693 ], [ -122.317314, 37.885693 ], [ -122.315941, 37.885422 ], [ -122.315598, 37.884067 ], [ -122.312508, 37.881628 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.315941, 37.887589 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316284, 37.885693 ], [ -122.317314, 37.885693 ], [ -122.315941, 37.885422 ], [ -122.315598, 37.884067 ], [ -122.312508, 37.881628 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.309761, 37.886506 ], [ -122.308388, 37.882441 ], [ -122.312508, 37.881628 ], [ -122.315598, 37.884067 ], [ -122.315941, 37.885422 ], [ -122.317314, 37.885693 ], [ -122.316284, 37.885693 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887589 ], [ -122.317314, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.323151, 37.889215 ], [ -122.323151, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ], [ -122.311478, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317314, 37.889486 ], [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.309761, 37.886506 ], [ -122.308388, 37.882441 ], [ -122.312508, 37.881628 ], [ -122.315598, 37.884067 ], [ -122.315941, 37.885422 ], [ -122.317314, 37.885693 ], [ -122.316284, 37.885693 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887589 ], [ -122.317314, 37.889486 ] ] ], [ [ [ -122.317314, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.323151, 37.889215 ], [ -122.323151, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ], [ -122.317314, 37.889486 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.889215 ], [ -122.308731, 37.887589 ], [ -122.309074, 37.887589 ], [ -122.308388, 37.890299 ], [ -122.308388, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890299 ], [ -122.308388, 37.889215 ], [ -122.308731, 37.887589 ], [ -122.309074, 37.887589 ], [ -122.308388, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.307701, 37.889486 ], [ -122.306671, 37.890841 ], [ -122.306671, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890841 ], [ -122.306671, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.307701, 37.889486 ], [ -122.306671, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889757 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ], [ -122.307701, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307701, 37.889757 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308731, 37.887589 ], [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887589 ], [ -122.307701, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.889215 ], [ -122.307358, 37.888673 ], [ -122.307701, 37.889486 ], [ -122.306328, 37.889757 ], [ -122.305984, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306328, 37.889757 ], [ -122.305984, 37.889215 ], [ -122.307358, 37.888673 ], [ -122.307701, 37.889486 ], [ -122.306328, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888673 ], [ -122.306328, 37.888673 ], [ -122.306328, 37.889215 ], [ -122.305641, 37.889215 ], [ -122.305641, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.889215 ], [ -122.305641, 37.888673 ], [ -122.306328, 37.888673 ], [ -122.306328, 37.889215 ], [ -122.305641, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888402 ], [ -122.307358, 37.888131 ], [ -122.307358, 37.888673 ], [ -122.305984, 37.888944 ], [ -122.305641, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.888944 ], [ -122.305641, 37.888402 ], [ -122.307358, 37.888131 ], [ -122.307358, 37.888673 ], [ -122.305984, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889757 ], [ -122.307014, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889757 ], [ -122.307014, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309074, 37.887589 ], [ -122.308731, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887589 ], [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309074, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.886506 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.883525 ], [ -122.309761, 37.886506 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.886506 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.887318 ], [ -122.309418, 37.886506 ], [ -122.309074, 37.885151 ], [ -122.309761, 37.886506 ], [ -122.309418, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.882170 ], [ -122.308388, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ], [ -122.308044, 37.882170 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.882170 ], [ -122.308388, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.887589 ], [ -122.307014, 37.887589 ], [ -122.307358, 37.888131 ], [ -122.305641, 37.888402 ], [ -122.305641, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888402 ], [ -122.305641, 37.887589 ], [ -122.307014, 37.887589 ], [ -122.307358, 37.888131 ], [ -122.305641, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306328, 37.883525 ], [ -122.305984, 37.882170 ], [ -122.308044, 37.882170 ], [ -122.307358, 37.887048 ], [ -122.306328, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887048 ], [ -122.306328, 37.883525 ], [ -122.305984, 37.882170 ], [ -122.308044, 37.882170 ], [ -122.307358, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889757 ], [ -122.303581, 37.889486 ], [ -122.303581, 37.890570 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.891654 ], [ -122.302551, 37.889757 ], [ -122.303581, 37.889486 ], [ -122.303581, 37.890570 ], [ -122.303238, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.889486 ], [ -122.305984, 37.889215 ], [ -122.306328, 37.889757 ], [ -122.303581, 37.890570 ], [ -122.303581, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890570 ], [ -122.303581, 37.889486 ], [ -122.305984, 37.889215 ], [ -122.306328, 37.889757 ], [ -122.303581, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.305984, 37.888944 ], [ -122.304955, 37.889215 ], [ -122.304611, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889215 ], [ -122.304611, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.305984, 37.888944 ], [ -122.304955, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889215 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.889486 ], [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889215 ], [ -122.304268, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.889215 ], [ -122.303925, 37.889215 ], [ -122.303925, 37.889757 ], [ -122.303238, 37.889757 ], [ -122.303238, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.889757 ], [ -122.303238, 37.889215 ], [ -122.303925, 37.889215 ], [ -122.303925, 37.889757 ], [ -122.303238, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302895, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.889486 ], [ -122.302895, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.889486 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.302551, 37.889757 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891925 ], [ -122.301865, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891925 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889757 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891925 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.891925 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892196 ], [ -122.300835, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.891925 ], [ -122.301521, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299805, 37.891925 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892466 ], [ -122.299805, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.892196 ], [ -122.299805, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.890299 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.892196 ], [ -122.300148, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.892196 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887860 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.889486 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889757 ], [ -122.301865, 37.887860 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.889486 ], [ -122.302551, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.887860 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.887860 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299461, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.890299 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.305641, 37.887589 ], [ -122.302208, 37.887589 ], [ -122.307358, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.305641, 37.887589 ], [ -122.302208, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.886506 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.307014, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300835, 37.887860 ], [ -122.300835, 37.886506 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.300835, 37.886506 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.307014, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300835, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884880 ], [ -122.303925, 37.883796 ], [ -122.304268, 37.883796 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ], [ -122.303925, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885964 ], [ -122.303925, 37.884880 ], [ -122.303925, 37.883796 ], [ -122.304268, 37.883796 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885422 ], [ -122.304268, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302895, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.305984, 37.882170 ], [ -122.307014, 37.885693 ], [ -122.304611, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.885693 ], [ -122.304611, 37.885422 ], [ -122.304268, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302895, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.305984, 37.882170 ], [ -122.307014, 37.885693 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885151 ], [ -122.303581, 37.885151 ], [ -122.303581, 37.884338 ], [ -122.304268, 37.884338 ], [ -122.304268, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.304268, 37.885964 ], [ -122.303581, 37.885964 ], [ -122.303238, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.885964 ], [ -122.303238, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.304268, 37.885964 ], [ -122.303581, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.883525 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.885964 ], [ -122.300835, 37.886506 ], [ -122.300148, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.886506 ], [ -122.300148, 37.883525 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.885964 ], [ -122.300835, 37.886506 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302895, 37.883254 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303238, 37.883796 ], [ -122.302895, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883796 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303238, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.302895, 37.883254 ], [ -122.301178, 37.883525 ], [ -122.300491, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.883525 ], [ -122.300491, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.302895, 37.883254 ], [ -122.301178, 37.883525 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.897343 ], [ -122.299461, 37.897072 ], [ -122.299805, 37.898427 ], [ -122.299118, 37.898698 ], [ -122.298775, 37.897343 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.298775, 37.897343 ], [ -122.299461, 37.897072 ], [ -122.299805, 37.898427 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897614 ], [ -122.298775, 37.897343 ], [ -122.299118, 37.898698 ], [ -122.298088, 37.898969 ], [ -122.297745, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898969 ], [ -122.297745, 37.897614 ], [ -122.298775, 37.897343 ], [ -122.299118, 37.898698 ], [ -122.298088, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.297745, 37.897614 ], [ -122.298088, 37.898969 ], [ -122.297401, 37.898969 ], [ -122.297058, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.898969 ], [ -122.297058, 37.897614 ], [ -122.297745, 37.897614 ], [ -122.298088, 37.898969 ], [ -122.297401, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.297058, 37.897614 ], [ -122.297401, 37.898969 ], [ -122.296371, 37.898969 ], [ -122.296028, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.296028, 37.897885 ], [ -122.297058, 37.897614 ], [ -122.297401, 37.898969 ], [ -122.296371, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.297401, 37.895989 ], [ -122.297745, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.296371, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297401, 37.895989 ], [ -122.297745, 37.897614 ], [ -122.297058, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896260 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.897614 ], [ -122.296028, 37.897885 ], [ -122.295685, 37.896260 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.295685, 37.896260 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.897614 ], [ -122.296028, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897885 ], [ -122.296028, 37.897885 ], [ -122.296371, 37.898969 ], [ -122.294655, 37.898969 ], [ -122.294655, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898969 ], [ -122.294655, 37.897885 ], [ -122.296028, 37.897885 ], [ -122.296371, 37.898969 ], [ -122.294655, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.300148, 37.897072 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.300148, 37.897072 ], [ -122.299461, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.897343 ], [ -122.298088, 37.895718 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.897343 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.897343 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.298431, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298431, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.895447 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.895989 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.897343 ], [ -122.297745, 37.897614 ], [ -122.297401, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897614 ], [ -122.297401, 37.895989 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.897343 ], [ -122.297745, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894092 ], [ -122.298431, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ], [ -122.297745, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.297745, 37.894092 ], [ -122.298431, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894363 ], [ -122.297745, 37.894092 ], [ -122.298088, 37.895718 ], [ -122.297401, 37.895989 ], [ -122.296715, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.895989 ], [ -122.296715, 37.894363 ], [ -122.297745, 37.894092 ], [ -122.298088, 37.895718 ], [ -122.297401, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.300148, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.300148, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.892196 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.892466 ], [ -122.300148, 37.893550 ], [ -122.299118, 37.893821 ], [ -122.298775, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298775, 37.892196 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.892466 ], [ -122.300148, 37.893550 ], [ -122.299118, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298775, 37.892196 ], [ -122.299118, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298775, 37.892196 ], [ -122.299118, 37.893821 ], [ -122.298431, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.894092 ], [ -122.297058, 37.892466 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894092 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.894092 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.894363 ], [ -122.296715, 37.894363 ], [ -122.297401, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296028, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.296028, 37.894363 ], [ -122.296715, 37.894363 ], [ -122.297401, 37.895989 ], [ -122.296371, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.897885 ], [ -122.294655, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.296028, 37.897885 ], [ -122.294655, 37.897885 ], [ -122.294655, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.296028, 37.897885 ], [ -122.294655, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894634 ], [ -122.296028, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295685, 37.896260 ], [ -122.294998, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896260 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295685, 37.896260 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.296715, 37.894363 ], [ -122.296028, 37.894363 ], [ -122.295341, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.894363 ], [ -122.295341, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.296715, 37.894363 ], [ -122.296028, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.894092 ], [ -122.296715, 37.894363 ], [ -122.296371, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894363 ], [ -122.296371, 37.892737 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.894092 ], [ -122.296715, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.893008 ], [ -122.295341, 37.892737 ], [ -122.296028, 37.894363 ], [ -122.294998, 37.894634 ], [ -122.294655, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894634 ], [ -122.294655, 37.893008 ], [ -122.295341, 37.892737 ], [ -122.296028, 37.894363 ], [ -122.294998, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.893008 ], [ -122.294998, 37.894634 ], [ -122.294655, 37.894634 ], [ -122.294312, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294312, 37.893008 ], [ -122.294998, 37.894634 ], [ -122.294655, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.898698 ], [ -122.293968, 37.897885 ], [ -122.294655, 37.897885 ], [ -122.294655, 37.898969 ], [ -122.293968, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898969 ], [ -122.293968, 37.898698 ], [ -122.293968, 37.897885 ], [ -122.294655, 37.897885 ], [ -122.294655, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.292938, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.898698 ], [ -122.292938, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.898698 ], [ -122.292938, 37.898427 ], [ -122.292938, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.897614 ], [ -122.293282, 37.897614 ], [ -122.293282, 37.898156 ], [ -122.292595, 37.898156 ], [ -122.292595, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.898156 ], [ -122.292595, 37.897614 ], [ -122.293282, 37.897614 ], [ -122.293282, 37.898156 ], [ -122.292595, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.898156 ], [ -122.291908, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.898427 ], [ -122.291908, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.291908, 37.898156 ], [ -122.291908, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.896801 ], [ -122.291908, 37.896801 ], [ -122.291908, 37.898156 ], [ -122.290878, 37.898156 ], [ -122.290878, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898156 ], [ -122.290878, 37.896801 ], [ -122.291908, 37.896801 ], [ -122.291908, 37.898156 ], [ -122.290878, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897885 ], [ -122.290192, 37.896801 ], [ -122.290878, 37.896801 ], [ -122.290878, 37.898156 ], [ -122.290192, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898156 ], [ -122.290192, 37.897885 ], [ -122.290192, 37.896801 ], [ -122.290878, 37.896801 ], [ -122.290878, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896801 ], [ -122.290192, 37.896801 ], [ -122.290192, 37.897885 ], [ -122.289162, 37.897885 ], [ -122.289162, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.897885 ], [ -122.289162, 37.896801 ], [ -122.290192, 37.896801 ], [ -122.290192, 37.897885 ], [ -122.289162, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894905 ], [ -122.294655, 37.894634 ], [ -122.294655, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.897885 ], [ -122.293968, 37.894905 ], [ -122.294655, 37.894634 ], [ -122.294655, 37.897885 ], [ -122.293968, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.894905 ], [ -122.293968, 37.894905 ], [ -122.293968, 37.897885 ], [ -122.292938, 37.897885 ], [ -122.293282, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897885 ], [ -122.293282, 37.894905 ], [ -122.293968, 37.894905 ], [ -122.293968, 37.897885 ], [ -122.292938, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.896801 ], [ -122.292938, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.292938, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.893008 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894905 ], [ -122.294312, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894905 ], [ -122.294312, 37.893008 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.293968, 37.893008 ], [ -122.293968, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.293282, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.894905 ], [ -122.293282, 37.893008 ], [ -122.293968, 37.893008 ], [ -122.293968, 37.894905 ], [ -122.293282, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894905 ], [ -122.292938, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.292938, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.292938, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.291908, 37.894905 ], [ -122.291908, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.894905 ], [ -122.291908, 37.893008 ], [ -122.292938, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.291908, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.290192, 37.896801 ], [ -122.290192, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.896801 ], [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.290192, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289505, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896801 ], [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.896801 ], [ -122.289162, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291222, 37.894905 ], [ -122.291222, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.894905 ], [ -122.291222, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291222, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.289505, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289162, 37.897885 ], [ -122.288475, 37.898156 ], [ -122.288475, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.898156 ], [ -122.288475, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289162, 37.897885 ], [ -122.288475, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288132, 37.898156 ], [ -122.287445, 37.898698 ], [ -122.287445, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288132, 37.898156 ], [ -122.287445, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.897885 ], [ -122.287445, 37.897885 ], [ -122.287445, 37.898427 ], [ -122.286758, 37.898427 ], [ -122.286758, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.898427 ], [ -122.286758, 37.897885 ], [ -122.287445, 37.897885 ], [ -122.287445, 37.898427 ], [ -122.286758, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289162, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288475, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.896801 ], [ -122.288475, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289162, 37.896801 ], [ -122.288475, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.896801 ], [ -122.287445, 37.896801 ], [ -122.287445, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896801 ], [ -122.287445, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.896801 ], [ -122.287445, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.896801 ], [ -122.287102, 37.896801 ], [ -122.287445, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896801 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.896801 ], [ -122.287102, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.894905 ], [ -122.288475, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.894905 ], [ -122.288475, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.894634 ], [ -122.288818, 37.894634 ], [ -122.288818, 37.895176 ], [ -122.288132, 37.895176 ], [ -122.288132, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.895176 ], [ -122.288132, 37.894634 ], [ -122.288818, 37.894634 ], [ -122.288818, 37.895176 ], [ -122.288132, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.894905 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.894905 ], [ -122.287445, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.894905 ], [ -122.287102, 37.894905 ], [ -122.287102, 37.894092 ], [ -122.287788, 37.894092 ], [ -122.287788, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890570 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298775, 37.892196 ], [ -122.298088, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.892196 ], [ -122.298088, 37.890570 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298775, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890028 ], [ -122.300491, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.890570 ], [ -122.299805, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890570 ], [ -122.299805, 37.890028 ], [ -122.300491, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.890570 ], [ -122.298088, 37.890570 ], [ -122.298431, 37.890841 ], [ -122.298775, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.297401, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297401, 37.890570 ], [ -122.298088, 37.890570 ], [ -122.298431, 37.890841 ], [ -122.298775, 37.892196 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.887860 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.890299 ], [ -122.299118, 37.890299 ], [ -122.298431, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890299 ], [ -122.298431, 37.887860 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.890299 ], [ -122.299118, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.887589 ], [ -122.298775, 37.887589 ], [ -122.298775, 37.888131 ], [ -122.298088, 37.888131 ], [ -122.298088, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.888131 ], [ -122.298088, 37.887589 ], [ -122.298775, 37.887589 ], [ -122.298775, 37.888131 ], [ -122.298088, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.889757 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.886777 ], [ -122.299118, 37.890299 ], [ -122.298088, 37.890299 ], [ -122.298088, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.298088, 37.889757 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.886777 ], [ -122.299118, 37.890299 ], [ -122.298088, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.297401, 37.890570 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.296371, 37.890570 ], [ -122.297401, 37.890570 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295341, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.893008 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.893008 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.890299 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.890570 ], [ -122.296371, 37.887318 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.890299 ], [ -122.297401, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.295341, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.887589 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.294655, 37.887589 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.294655, 37.887589 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.887589 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.886777 ], [ -122.301178, 37.887860 ], [ -122.298431, 37.887860 ], [ -122.298088, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.887860 ], [ -122.298088, 37.886777 ], [ -122.301178, 37.887860 ], [ -122.298431, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300148, 37.884067 ], [ -122.301178, 37.887860 ], [ -122.298088, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298088, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300148, 37.884067 ], [ -122.301178, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.883254 ], [ -122.300491, 37.883254 ], [ -122.299805, 37.884338 ], [ -122.298431, 37.884609 ], [ -122.298088, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884609 ], [ -122.298088, 37.883254 ], [ -122.300491, 37.883254 ], [ -122.299805, 37.884338 ], [ -122.298431, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.886506 ], [ -122.298431, 37.886506 ], [ -122.298431, 37.887048 ], [ -122.297745, 37.887048 ], [ -122.297745, 37.886506 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.887048 ], [ -122.297745, 37.886506 ], [ -122.298431, 37.886506 ], [ -122.298431, 37.887048 ], [ -122.297745, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884609 ], [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884609 ], [ -122.297401, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887048 ], [ -122.295685, 37.887048 ], [ -122.295685, 37.887589 ], [ -122.294998, 37.887589 ], [ -122.294998, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887589 ], [ -122.294998, 37.887048 ], [ -122.295685, 37.887048 ], [ -122.295685, 37.887589 ], [ -122.294998, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298088, 37.886777 ], [ -122.297058, 37.887048 ], [ -122.296028, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887048 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298088, 37.886777 ], [ -122.297058, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.884338 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.887048 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887048 ], [ -122.295341, 37.884338 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.887048 ], [ -122.296371, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.884338 ], [ -122.295341, 37.884338 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.884338 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.882983 ], [ -122.294998, 37.882983 ], [ -122.295341, 37.884338 ], [ -122.294655, 37.884338 ], [ -122.293968, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.884338 ], [ -122.293968, 37.882983 ], [ -122.294998, 37.882983 ], [ -122.295341, 37.884338 ], [ -122.294655, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.891112 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.893008 ], [ -122.294312, 37.893008 ], [ -122.293282, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.893008 ], [ -122.293282, 37.891112 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.893008 ], [ -122.294312, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.891112 ], [ -122.294312, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.293282, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.293282, 37.891112 ], [ -122.294312, 37.893008 ], [ -122.293282, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293282, 37.893008 ], [ -122.292938, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293282, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.890841 ], [ -122.292938, 37.890841 ], [ -122.292938, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.292252, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.292252, 37.890841 ], [ -122.292938, 37.890841 ], [ -122.292938, 37.893008 ], [ -122.291908, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.890570 ], [ -122.292252, 37.890570 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.291565, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.291565, 37.890570 ], [ -122.292252, 37.890570 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.887860 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.890570 ], [ -122.292595, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292595, 37.887860 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293968, 37.890570 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293968, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.888131 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890841 ], [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890841 ], [ -122.292252, 37.890841 ], [ -122.291908, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.893008 ], [ -122.291222, 37.890841 ], [ -122.292252, 37.890841 ], [ -122.291908, 37.893008 ], [ -122.291222, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290535, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.291222, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290535, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.290535, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.291222, 37.893008 ], [ -122.290192, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.890841 ], [ -122.290535, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893008 ], [ -122.289505, 37.890841 ], [ -122.290535, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289505, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.891654 ], [ -122.289505, 37.890841 ], [ -122.289505, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.891654 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.893008 ], [ -122.288475, 37.891654 ], [ -122.289505, 37.890841 ], [ -122.289505, 37.893008 ], [ -122.288475, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.290192, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890841 ], [ -122.290192, 37.888402 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888673 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.890841 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.888673 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.890841 ], [ -122.288475, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.890841 ], [ -122.288475, 37.888673 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884880 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.887860 ], [ -122.291908, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.291908, 37.884880 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.292938, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.291908, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.887860 ], [ -122.291908, 37.884880 ], [ -122.292938, 37.887860 ], [ -122.292595, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885151 ], [ -122.291565, 37.885151 ], [ -122.292595, 37.887860 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.885151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.291222, 37.885151 ], [ -122.291565, 37.885151 ], [ -122.292595, 37.887860 ], [ -122.292252, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884338 ], [ -122.293282, 37.883254 ], [ -122.293968, 37.882983 ], [ -122.294655, 37.884338 ], [ -122.293625, 37.884609 ], [ -122.293625, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.293625, 37.884338 ], [ -122.293282, 37.883254 ], [ -122.293968, 37.882983 ], [ -122.294655, 37.884338 ], [ -122.293625, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.884609 ], [ -122.292252, 37.883254 ], [ -122.293282, 37.883254 ], [ -122.293625, 37.884609 ], [ -122.292938, 37.884880 ], [ -122.292595, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884880 ], [ -122.292595, 37.884609 ], [ -122.292252, 37.883254 ], [ -122.293282, 37.883254 ], [ -122.293625, 37.884609 ], [ -122.292938, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.883254 ], [ -122.292252, 37.883254 ], [ -122.292938, 37.884880 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.291565, 37.883254 ], [ -122.292252, 37.883254 ], [ -122.292938, 37.884880 ], [ -122.291908, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885422 ], [ -122.291222, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.290192, 37.885422 ], [ -122.291222, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288475, 37.888673 ], [ -122.289505, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.888673 ], [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288475, 37.888673 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.886235 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.885693 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.888402 ], [ -122.289505, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.289505, 37.886235 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.885693 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290535, 37.883254 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885151 ], [ -122.291222, 37.885151 ], [ -122.290535, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885151 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885151 ], [ -122.291222, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885151 ], [ -122.291222, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885151 ], [ -122.291222, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884609 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885151 ], [ -122.290192, 37.885422 ], [ -122.289848, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885422 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885151 ], [ -122.290192, 37.885422 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.885693 ], [ -122.289848, 37.885693 ], [ -122.289848, 37.886235 ], [ -122.289162, 37.886235 ], [ -122.289162, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.886235 ], [ -122.289162, 37.885693 ], [ -122.289848, 37.885693 ], [ -122.289848, 37.886235 ], [ -122.289162, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883254 ], [ -122.289848, 37.885151 ], [ -122.288818, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.885151 ], [ -122.288818, 37.884880 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883254 ], [ -122.289848, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883254 ], [ -122.297058, 37.884067 ], [ -122.296028, 37.884067 ], [ -122.296028, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.296028, 37.883254 ], [ -122.297058, 37.884067 ], [ -122.296028, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.882983 ], [ -122.296028, 37.883254 ], [ -122.296028, 37.884067 ], [ -122.295341, 37.884338 ], [ -122.294998, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.884338 ], [ -122.294998, 37.882983 ], [ -122.296028, 37.883254 ], [ -122.296028, 37.884067 ], [ -122.295341, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.891112 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.893008 ], [ -122.287445, 37.893008 ], [ -122.287788, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893008 ], [ -122.287788, 37.891112 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.893008 ], [ -122.287445, 37.893008 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.892466 ], [ -122.287445, 37.892466 ], [ -122.287445, 37.891654 ], [ -122.288132, 37.891654 ], [ -122.288132, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.890570 ], [ -122.289162, 37.890570 ], [ -122.289162, 37.891112 ], [ -122.288475, 37.891112 ], [ -122.288475, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.891112 ], [ -122.288475, 37.890570 ], [ -122.289162, 37.890570 ], [ -122.289162, 37.891112 ], [ -122.288475, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889215 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ], [ -122.287102, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.890841 ], [ -122.287102, 37.889215 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.889486 ], [ -122.287102, 37.889215 ], [ -122.287788, 37.890841 ], [ -122.286758, 37.891112 ], [ -122.286415, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.891112 ], [ -122.286415, 37.889486 ], [ -122.287102, 37.889215 ], [ -122.287788, 37.890841 ], [ -122.286758, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.887860 ], [ -122.287788, 37.888131 ], [ -122.287102, 37.889215 ], [ -122.286415, 37.889486 ], [ -122.286415, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.889486 ], [ -122.286415, 37.887860 ], [ -122.287788, 37.888131 ], [ -122.287102, 37.889215 ], [ -122.286415, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889757 ], [ -122.286415, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.285728, 37.891112 ], [ -122.285385, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.891112 ], [ -122.285385, 37.889757 ], [ -122.286415, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.285728, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.890841 ], [ -122.285042, 37.890841 ], [ -122.285042, 37.891383 ], [ -122.284355, 37.891383 ], [ -122.284355, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.891383 ], [ -122.284355, 37.890841 ], [ -122.285042, 37.890841 ], [ -122.285042, 37.891383 ], [ -122.284355, 37.891383 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285728, 37.891112 ], [ -122.284698, 37.891112 ], [ -122.284355, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.891112 ], [ -122.284355, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285728, 37.891112 ], [ -122.284698, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.284355, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.283669, 37.891112 ], [ -122.282982, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.891112 ], [ -122.282982, 37.889215 ], [ -122.284355, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.283669, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.888673 ], [ -122.285385, 37.887589 ], [ -122.286415, 37.887860 ], [ -122.286415, 37.889486 ], [ -122.285385, 37.889486 ], [ -122.285042, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887589 ], [ -122.286415, 37.887860 ], [ -122.286415, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.285728, 37.889486 ], [ -122.285728, 37.890028 ], [ -122.285042, 37.890028 ], [ -122.285042, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.890028 ], [ -122.285042, 37.889486 ], [ -122.285728, 37.889486 ], [ -122.285728, 37.890028 ], [ -122.285042, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.889215 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.887589 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.284012, 37.889215 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.887589 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887048 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.889215 ], [ -122.282982, 37.889215 ], [ -122.283325, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.283325, 37.887048 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.889215 ], [ -122.282982, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.289848, 37.884880 ], [ -122.289505, 37.885964 ], [ -122.288475, 37.888673 ], [ -122.287102, 37.889215 ], [ -122.288818, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889215 ], [ -122.288818, 37.884880 ], [ -122.289848, 37.884880 ], [ -122.289505, 37.885964 ], [ -122.288475, 37.888673 ], [ -122.287102, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884880 ], [ -122.287788, 37.888131 ], [ -122.286758, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.888131 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884880 ], [ -122.287788, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.885693 ], [ -122.287788, 37.885964 ], [ -122.287445, 37.886777 ], [ -122.286415, 37.886777 ], [ -122.286758, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.886777 ], [ -122.286758, 37.885693 ], [ -122.287788, 37.885964 ], [ -122.287445, 37.886777 ], [ -122.286415, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887589 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287788, 37.885964 ], [ -122.286758, 37.885964 ], [ -122.286415, 37.886777 ], [ -122.287445, 37.886777 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887589 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287788, 37.885964 ], [ -122.286758, 37.885964 ], [ -122.286415, 37.886777 ], [ -122.287445, 37.886777 ], [ -122.286758, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884609 ], [ -122.288818, 37.883254 ], [ -122.289505, 37.883525 ], [ -122.288818, 37.884880 ], [ -122.288132, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.883254 ], [ -122.289505, 37.883525 ], [ -122.288818, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.885422 ], [ -122.286415, 37.885422 ], [ -122.286415, 37.885964 ], [ -122.285728, 37.885964 ], [ -122.285728, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.885964 ], [ -122.285728, 37.885422 ], [ -122.286415, 37.885422 ], [ -122.286415, 37.885964 ], [ -122.285728, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887318 ], [ -122.285385, 37.885422 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887589 ], [ -122.284355, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887589 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.885422 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.885422 ], [ -122.285728, 37.883796 ], [ -122.287102, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885693 ], [ -122.285385, 37.885422 ], [ -122.285728, 37.883796 ], [ -122.287102, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.884067 ], [ -122.285042, 37.884067 ], [ -122.285042, 37.884609 ], [ -122.284355, 37.884609 ], [ -122.284355, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.884609 ], [ -122.284355, 37.884067 ], [ -122.285042, 37.884067 ], [ -122.285042, 37.884609 ], [ -122.284355, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.284012, 37.886235 ], [ -122.284698, 37.884338 ], [ -122.285728, 37.883796 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887318 ], [ -122.283669, 37.887048 ], [ -122.284012, 37.886235 ], [ -122.284698, 37.884338 ], [ -122.285728, 37.883796 ], [ -122.284355, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.884880 ], [ -122.284698, 37.884338 ], [ -122.284012, 37.886235 ], [ -122.282982, 37.886235 ], [ -122.283669, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.886235 ], [ -122.283669, 37.884880 ], [ -122.284698, 37.884338 ], [ -122.284012, 37.886235 ], [ -122.282982, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.882712 ], [ -122.286072, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.282295, 37.885151 ], [ -122.282982, 37.882712 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.885151 ], [ -122.282982, 37.882712 ], [ -122.286072, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.282295, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283669, 37.891112 ], [ -122.282639, 37.891383 ], [ -122.281952, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.891383 ], [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283669, 37.891112 ], [ -122.282639, 37.891383 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.887048 ], [ -122.282982, 37.889215 ], [ -122.281952, 37.889486 ], [ -122.281952, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.281952, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.887048 ], [ -122.282982, 37.889215 ], [ -122.281952, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886777 ], [ -122.282982, 37.886235 ], [ -122.284012, 37.886235 ], [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ], [ -122.282982, 37.886235 ], [ -122.284012, 37.886235 ], [ -122.283669, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.884880 ], [ -122.282639, 37.884880 ], [ -122.282639, 37.885422 ], [ -122.281952, 37.885422 ], [ -122.281952, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.885422 ], [ -122.281952, 37.884880 ], [ -122.282639, 37.884880 ], [ -122.282639, 37.885422 ], [ -122.281952, 37.885422 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287445, 37.882712 ], [ -122.288818, 37.883254 ], [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287445, 37.882712 ], [ -122.288818, 37.883254 ], [ -122.288132, 37.884338 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882712 ], [ -122.287445, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.286072, 37.882712 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883796 ], [ -122.286072, 37.882712 ], [ -122.287445, 37.882712 ], [ -122.285728, 37.883796 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.330017, 37.893686 ], [ -122.330017, 37.889757 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.893686 ], [ -122.330017, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.330017, 37.893686 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.881493 ], [ -122.334824, 37.889622 ], [ -122.330017, 37.889757 ], [ -122.330017, 37.881493 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.889757 ], [ -122.330017, 37.881493 ], [ -122.334824, 37.889622 ], [ -122.330017, 37.889757 ] ] ] } } ] } ] } , @@ -1184,485 +1184,485 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312679, 37.897072 ], [ -122.311649, 37.896937 ], [ -122.311649, 37.896260 ], [ -122.311134, 37.896124 ], [ -122.311306, 37.895853 ], [ -122.310791, 37.895582 ], [ -122.310276, 37.894769 ], [ -122.309246, 37.892331 ], [ -122.309418, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.310963, 37.889757 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.312851, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314396, 37.892060 ], [ -122.314739, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316113, 37.891247 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324009, 37.892466 ], [ -122.325726, 37.892602 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325726, 37.890841 ], [ -122.327442, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327614, 37.891518 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.312508, 37.897479 ], [ -122.312679, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897479 ], [ -122.312679, 37.897072 ], [ -122.311649, 37.896937 ], [ -122.311649, 37.896260 ], [ -122.311134, 37.896124 ], [ -122.311306, 37.895853 ], [ -122.310791, 37.895582 ], [ -122.310276, 37.894769 ], [ -122.309246, 37.892331 ], [ -122.309418, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.310963, 37.889757 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.312851, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314396, 37.892060 ], [ -122.314739, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316113, 37.891247 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324009, 37.892466 ], [ -122.325726, 37.892602 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325726, 37.890841 ], [ -122.327442, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327614, 37.891518 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.312508, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310104, 37.894769 ], [ -122.309246, 37.893144 ], [ -122.308903, 37.890570 ], [ -122.309074, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.311306, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.891518 ], [ -122.327442, 37.891518 ], [ -122.327442, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325554, 37.891518 ], [ -122.325897, 37.892602 ], [ -122.324009, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.319889, 37.890028 ], [ -122.317657, 37.890976 ], [ -122.316113, 37.891247 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314739, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.313709, 37.891925 ], [ -122.312851, 37.891247 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310963, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.309418, 37.889757 ], [ -122.309246, 37.892331 ], [ -122.310276, 37.894769 ], [ -122.310791, 37.895582 ], [ -122.310104, 37.894769 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.310791, 37.895582 ], [ -122.311306, 37.895853 ], [ -122.311134, 37.896124 ] ] ], [ [ [ -122.311649, 37.896801 ], [ -122.311134, 37.896124 ], [ -122.311649, 37.896260 ], [ -122.311649, 37.896801 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310791, 37.895582 ], [ -122.310104, 37.894769 ], [ -122.309246, 37.893144 ], [ -122.308903, 37.890570 ], [ -122.309074, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.311306, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.891518 ], [ -122.327442, 37.891518 ], [ -122.327442, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325554, 37.891518 ], [ -122.325897, 37.892602 ], [ -122.324009, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.319889, 37.890028 ], [ -122.317657, 37.890976 ], [ -122.316113, 37.891247 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314739, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.313709, 37.891925 ], [ -122.312851, 37.891247 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310963, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.309418, 37.889757 ], [ -122.309246, 37.892331 ], [ -122.310276, 37.894769 ], [ -122.310791, 37.895582 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.311649, 37.896260 ], [ -122.311649, 37.896801 ], [ -122.311134, 37.896124 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.310791, 37.895582 ], [ -122.311306, 37.895853 ], [ -122.311134, 37.896124 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311649, 37.896937 ], [ -122.312508, 37.896937 ], [ -122.312508, 37.897479 ], [ -122.312164, 37.897479 ], [ -122.311649, 37.896937 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.897479 ], [ -122.311649, 37.896937 ], [ -122.312508, 37.896937 ], [ -122.312508, 37.897479 ], [ -122.312164, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.894092 ], [ -122.307873, 37.892873 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.308388, 37.894498 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ], [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ], [ -122.307873, 37.892873 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.308388, 37.894498 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ], [ -122.309418, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.894634 ], [ -122.308216, 37.890705 ], [ -122.308388, 37.890163 ], [ -122.309418, 37.893957 ], [ -122.311993, 37.897614 ], [ -122.311478, 37.897750 ], [ -122.309418, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897750 ], [ -122.309418, 37.894634 ], [ -122.308216, 37.890705 ], [ -122.308388, 37.890163 ], [ -122.309418, 37.893957 ], [ -122.311993, 37.897614 ], [ -122.311478, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897343 ], [ -122.308388, 37.894498 ], [ -122.308388, 37.892331 ], [ -122.308044, 37.890976 ], [ -122.308216, 37.890705 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897750 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894498 ], [ -122.308388, 37.892331 ], [ -122.308044, 37.890976 ], [ -122.308216, 37.890705 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897750 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.312164, 37.897479 ], [ -122.311993, 37.897614 ], [ -122.310619, 37.895853 ], [ -122.310104, 37.894769 ], [ -122.311649, 37.896937 ], [ -122.312164, 37.897479 ] ] ], [ [ [ -122.308388, 37.890163 ], [ -122.309074, 37.888809 ], [ -122.308903, 37.890570 ], [ -122.309246, 37.893144 ], [ -122.308388, 37.890163 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309246, 37.893144 ], [ -122.308388, 37.890163 ], [ -122.309074, 37.888809 ], [ -122.308903, 37.890570 ], [ -122.309246, 37.893144 ] ] ], [ [ [ -122.310104, 37.894769 ], [ -122.311649, 37.896937 ], [ -122.312164, 37.897479 ], [ -122.311993, 37.897614 ], [ -122.310619, 37.895853 ], [ -122.310104, 37.894769 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.892602 ], [ -122.307186, 37.890976 ], [ -122.307529, 37.889622 ], [ -122.308044, 37.890976 ], [ -122.307701, 37.893415 ], [ -122.308388, 37.895311 ], [ -122.307186, 37.892602 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.895311 ], [ -122.307186, 37.892602 ], [ -122.307186, 37.890976 ], [ -122.307529, 37.889622 ], [ -122.308044, 37.890976 ], [ -122.307701, 37.893415 ], [ -122.308388, 37.895311 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.892737 ], [ -122.306671, 37.892331 ], [ -122.306499, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307529, 37.889757 ], [ -122.307186, 37.891247 ], [ -122.307186, 37.892602 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898021 ], [ -122.306671, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.898021 ], [ -122.306671, 37.892737 ], [ -122.306671, 37.892331 ], [ -122.306499, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307529, 37.889757 ], [ -122.307186, 37.891247 ], [ -122.307186, 37.892602 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898021 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.308388, 37.895311 ], [ -122.307701, 37.893144 ], [ -122.307873, 37.892331 ], [ -122.307873, 37.893144 ], [ -122.308388, 37.895311 ] ] ], [ [ [ -122.308044, 37.890976 ], [ -122.308388, 37.892196 ], [ -122.307873, 37.892331 ], [ -122.308044, 37.890976 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.307873, 37.892331 ], [ -122.308044, 37.890976 ], [ -122.308388, 37.892196 ], [ -122.307873, 37.892331 ] ] ], [ [ [ -122.307873, 37.892331 ], [ -122.307873, 37.893144 ], [ -122.308388, 37.895311 ], [ -122.307701, 37.893144 ], [ -122.307873, 37.892331 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896801 ], [ -122.301178, 37.896801 ], [ -122.301693, 37.898562 ], [ -122.301006, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896801 ], [ -122.301178, 37.896801 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898427 ], [ -122.300148, 37.896937 ], [ -122.301006, 37.896801 ], [ -122.301693, 37.898562 ], [ -122.300663, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.300663, 37.898427 ], [ -122.300148, 37.896937 ], [ -122.301006, 37.896801 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896937 ], [ -122.300663, 37.898427 ], [ -122.299805, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898427 ], [ -122.299805, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896937 ], [ -122.300663, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896124 ], [ -122.302723, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303238, 37.894634 ], [ -122.303238, 37.893550 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.890570 ], [ -122.304096, 37.890163 ], [ -122.306156, 37.889622 ], [ -122.306843, 37.891789 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898021 ], [ -122.305470, 37.898427 ], [ -122.301693, 37.898562 ], [ -122.301006, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896124 ], [ -122.302723, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303238, 37.894634 ], [ -122.303238, 37.893550 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.890570 ], [ -122.304096, 37.890163 ], [ -122.306156, 37.889622 ], [ -122.306843, 37.891789 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898021 ], [ -122.305470, 37.898427 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.891789 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.893550 ], [ -122.303238, 37.894634 ], [ -122.302380, 37.891789 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302380, 37.891789 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.893550 ], [ -122.303238, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.302036, 37.893821 ], [ -122.302723, 37.895718 ], [ -122.301865, 37.895853 ], [ -122.301178, 37.894092 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895853 ], [ -122.301178, 37.894092 ], [ -122.302036, 37.893821 ], [ -122.302723, 37.895718 ], [ -122.301865, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896124 ], [ -122.301006, 37.896124 ], [ -122.301178, 37.896801 ], [ -122.300835, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896801 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896124 ], [ -122.301178, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895176 ], [ -122.301006, 37.896124 ], [ -122.300835, 37.896124 ], [ -122.300491, 37.895176 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896124 ], [ -122.300491, 37.895176 ], [ -122.301006, 37.896124 ], [ -122.300835, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896801 ], [ -122.300148, 37.896937 ], [ -122.299633, 37.895311 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896937 ], [ -122.299633, 37.895311 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896801 ], [ -122.300148, 37.896937 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.895176 ], [ -122.300491, 37.894228 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895853 ], [ -122.301006, 37.896124 ], [ -122.300663, 37.895176 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896124 ], [ -122.300663, 37.895176 ], [ -122.300491, 37.894228 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895853 ], [ -122.301006, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892060 ], [ -122.302380, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ], [ -122.301521, 37.892060 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301521, 37.892060 ], [ -122.302380, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.892196 ], [ -122.301521, 37.892060 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894092 ], [ -122.300663, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.300663, 37.892196 ], [ -122.301521, 37.892060 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894092 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893550 ], [ -122.300663, 37.894905 ], [ -122.300491, 37.895176 ], [ -122.300148, 37.893550 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895176 ], [ -122.300148, 37.893550 ], [ -122.300663, 37.894905 ], [ -122.300491, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893550 ], [ -122.299805, 37.892331 ], [ -122.300663, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894228 ], [ -122.300148, 37.893550 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894228 ], [ -122.300148, 37.893550 ], [ -122.299805, 37.892331 ], [ -122.300663, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894228 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892331 ], [ -122.300148, 37.893550 ], [ -122.299976, 37.893550 ], [ -122.299633, 37.892331 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893550 ], [ -122.299633, 37.892331 ], [ -122.300148, 37.893550 ], [ -122.299976, 37.893550 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.888809 ], [ -122.327099, 37.888809 ], [ -122.324696, 37.887996 ], [ -122.322979, 37.888402 ], [ -122.322979, 37.889080 ], [ -122.322292, 37.889486 ], [ -122.317314, 37.889351 ], [ -122.315941, 37.887454 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316456, 37.885964 ], [ -122.316113, 37.885964 ], [ -122.316113, 37.885693 ], [ -122.317142, 37.885828 ], [ -122.317142, 37.885557 ], [ -122.316113, 37.885557 ], [ -122.315769, 37.885286 ], [ -122.315598, 37.884744 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.884067 ], [ -122.314053, 37.882712 ], [ -122.313194, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.327785, 37.877428 ], [ -122.334824, 37.889622 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.888809 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888809 ], [ -122.327099, 37.888809 ], [ -122.324696, 37.887996 ], [ -122.322979, 37.888402 ], [ -122.322979, 37.889080 ], [ -122.322292, 37.889486 ], [ -122.317314, 37.889351 ], [ -122.315941, 37.887454 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316456, 37.885964 ], [ -122.316113, 37.885964 ], [ -122.316113, 37.885693 ], [ -122.317142, 37.885828 ], [ -122.317142, 37.885557 ], [ -122.316113, 37.885557 ], [ -122.315769, 37.885286 ], [ -122.315598, 37.884744 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.884067 ], [ -122.314053, 37.882712 ], [ -122.313194, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.327785, 37.877428 ], [ -122.334824, 37.889622 ], [ -122.327614, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.313194, 37.882306 ], [ -122.314053, 37.882712 ], [ -122.315083, 37.884067 ], [ -122.315598, 37.884067 ], [ -122.315598, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885557 ], [ -122.317142, 37.885557 ], [ -122.317142, 37.885828 ], [ -122.316113, 37.885693 ], [ -122.316113, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887454 ], [ -122.317314, 37.889351 ], [ -122.322292, 37.889486 ], [ -122.322979, 37.889080 ], [ -122.322979, 37.888402 ], [ -122.324696, 37.887996 ], [ -122.327099, 37.888809 ], [ -122.327614, 37.888809 ], [ -122.327614, 37.889757 ], [ -122.311306, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.313194, 37.882306 ], [ -122.314053, 37.882712 ], [ -122.315083, 37.884067 ], [ -122.315598, 37.884067 ], [ -122.315598, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885557 ], [ -122.317142, 37.885557 ], [ -122.317142, 37.885828 ], [ -122.316113, 37.885693 ], [ -122.316113, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887454 ], [ -122.317314, 37.889351 ], [ -122.322292, 37.889486 ], [ -122.322979, 37.889080 ], [ -122.322979, 37.888402 ], [ -122.324696, 37.887996 ], [ -122.327099, 37.888809 ], [ -122.327614, 37.888809 ], [ -122.327614, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.309418, 37.887318 ], [ -122.309074, 37.888809 ], [ -122.309074, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.888809 ], [ -122.309074, 37.887454 ], [ -122.309418, 37.887318 ], [ -122.309074, 37.888809 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308731, 37.887454 ], [ -122.309074, 37.887454 ], [ -122.309074, 37.888809 ], [ -122.308388, 37.890163 ], [ -122.308388, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890163 ], [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308731, 37.887454 ], [ -122.309074, 37.887454 ], [ -122.309074, 37.888809 ], [ -122.308388, 37.890163 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306328, 37.890299 ], [ -122.306671, 37.890299 ], [ -122.306156, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.306843, 37.890705 ], [ -122.306499, 37.890841 ], [ -122.306328, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306499, 37.890841 ], [ -122.306328, 37.890299 ], [ -122.306671, 37.890299 ], [ -122.306156, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.306843, 37.890705 ], [ -122.306499, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.890163 ], [ -122.306499, 37.890163 ], [ -122.306499, 37.890434 ], [ -122.306156, 37.890434 ], [ -122.306156, 37.890163 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.890434 ], [ -122.306156, 37.890163 ], [ -122.306499, 37.890163 ], [ -122.306499, 37.890434 ], [ -122.306156, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889622 ], [ -122.308559, 37.887725 ], [ -122.308388, 37.890163 ], [ -122.308044, 37.890976 ], [ -122.307529, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.890976 ], [ -122.307529, 37.889622 ], [ -122.308559, 37.887725 ], [ -122.308388, 37.890163 ], [ -122.308044, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308731, 37.887454 ], [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887454 ], [ -122.307701, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.889080 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306156, 37.889622 ], [ -122.305984, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.889622 ], [ -122.305984, 37.889080 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306156, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.888538 ], [ -122.307529, 37.888538 ], [ -122.307529, 37.888809 ], [ -122.307186, 37.888809 ], [ -122.307186, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.888809 ], [ -122.307186, 37.888538 ], [ -122.307529, 37.888538 ], [ -122.307529, 37.888809 ], [ -122.307186, 37.888809 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889622 ], [ -122.307014, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889622 ], [ -122.307014, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309418, 37.886912 ], [ -122.309074, 37.887454 ], [ -122.308731, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309418, 37.886912 ], [ -122.309074, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.886370 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.887318 ], [ -122.309418, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309418, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887183 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882306 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887318 ], [ -122.307358, 37.887183 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882306 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887183 ], [ -122.308731, 37.887318 ], [ -122.308559, 37.887318 ], [ -122.307358, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308559, 37.887454 ], [ -122.308044, 37.887454 ], [ -122.308044, 37.887048 ], [ -122.308559, 37.887048 ], [ -122.308559, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305470, 37.887589 ], [ -122.307014, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ], [ -122.305470, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.305470, 37.887589 ], [ -122.307014, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.886912 ], [ -122.306328, 37.883389 ], [ -122.305813, 37.882170 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.887183 ], [ -122.307186, 37.886912 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887183 ], [ -122.307186, 37.886912 ], [ -122.306328, 37.883389 ], [ -122.305813, 37.882170 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889622 ], [ -122.303410, 37.889486 ], [ -122.303581, 37.890434 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.891654 ], [ -122.302551, 37.889622 ], [ -122.303410, 37.889486 ], [ -122.303581, 37.890434 ], [ -122.303238, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.889486 ], [ -122.305984, 37.889080 ], [ -122.306156, 37.889622 ], [ -122.304268, 37.890028 ], [ -122.303581, 37.890434 ], [ -122.303410, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890434 ], [ -122.303410, 37.889486 ], [ -122.305984, 37.889080 ], [ -122.306156, 37.889622 ], [ -122.304268, 37.890028 ], [ -122.303581, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.889215 ], [ -122.304440, 37.889215 ], [ -122.304440, 37.889486 ], [ -122.304096, 37.889486 ], [ -122.304096, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.889486 ], [ -122.304096, 37.889215 ], [ -122.304440, 37.889215 ], [ -122.304440, 37.889486 ], [ -122.304096, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ], [ -122.304611, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304611, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889080 ], [ -122.304268, 37.889351 ], [ -122.303581, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.889351 ], [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889080 ], [ -122.304268, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.889486 ], [ -122.302723, 37.889486 ], [ -122.302723, 37.889757 ], [ -122.302380, 37.889757 ], [ -122.302380, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.889757 ], [ -122.302380, 37.889486 ], [ -122.302723, 37.889486 ], [ -122.302723, 37.889757 ], [ -122.302380, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889351 ], [ -122.303410, 37.889486 ], [ -122.302723, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.889486 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889351 ], [ -122.303410, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889893 ], [ -122.302551, 37.889622 ], [ -122.303238, 37.891654 ], [ -122.302380, 37.891789 ], [ -122.301693, 37.889893 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.891789 ], [ -122.301693, 37.889893 ], [ -122.302551, 37.889622 ], [ -122.303238, 37.891654 ], [ -122.302380, 37.891789 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.301693, 37.889893 ], [ -122.302380, 37.891789 ], [ -122.301521, 37.892060 ], [ -122.300835, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892060 ], [ -122.300835, 37.890028 ], [ -122.301693, 37.889893 ], [ -122.302380, 37.891789 ], [ -122.301521, 37.892060 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300663, 37.892196 ], [ -122.299805, 37.892331 ], [ -122.299633, 37.891925 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892331 ], [ -122.299633, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300663, 37.892196 ], [ -122.299805, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892060 ], [ -122.300663, 37.892196 ], [ -122.299976, 37.890163 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.892196 ], [ -122.299976, 37.890163 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892060 ], [ -122.300663, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887725 ], [ -122.302723, 37.887589 ], [ -122.303410, 37.889486 ], [ -122.302551, 37.889622 ], [ -122.301865, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889622 ], [ -122.301865, 37.887725 ], [ -122.302723, 37.887589 ], [ -122.303410, 37.889486 ], [ -122.302551, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301865, 37.887725 ], [ -122.302551, 37.889622 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889893 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.887725 ], [ -122.302551, 37.889622 ], [ -122.301693, 37.889893 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.887725 ], [ -122.300835, 37.887860 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.887860 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.887860 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.890028 ], [ -122.299976, 37.890163 ], [ -122.299290, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.299290, 37.887860 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.890028 ], [ -122.299976, 37.890163 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887183 ], [ -122.305470, 37.887589 ], [ -122.302208, 37.887589 ], [ -122.307358, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887589 ], [ -122.307358, 37.887183 ], [ -122.305470, 37.887589 ], [ -122.302208, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887725 ], [ -122.300663, 37.886370 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.306843, 37.885693 ], [ -122.307186, 37.887183 ], [ -122.300835, 37.887860 ], [ -122.301006, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301006, 37.887725 ], [ -122.300663, 37.886370 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.306843, 37.885693 ], [ -122.307186, 37.887183 ], [ -122.300835, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884744 ], [ -122.303753, 37.883660 ], [ -122.304096, 37.883660 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ], [ -122.303925, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885964 ], [ -122.303925, 37.884744 ], [ -122.303753, 37.883660 ], [ -122.304096, 37.883660 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885422 ], [ -122.304096, 37.883660 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302723, 37.883119 ], [ -122.302380, 37.882577 ], [ -122.305813, 37.882170 ], [ -122.306843, 37.885693 ], [ -122.304611, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306843, 37.885693 ], [ -122.304611, 37.885422 ], [ -122.304096, 37.883660 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302723, 37.883119 ], [ -122.302380, 37.882577 ], [ -122.305813, 37.882170 ], [ -122.306843, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.883796 ], [ -122.303753, 37.883660 ], [ -122.304268, 37.885964 ], [ -122.304096, 37.885964 ], [ -122.303410, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.885964 ], [ -122.303410, 37.883796 ], [ -122.303753, 37.883660 ], [ -122.304268, 37.885964 ], [ -122.304096, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.883796 ], [ -122.303410, 37.883796 ], [ -122.304096, 37.885964 ], [ -122.303581, 37.885964 ], [ -122.303066, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.885964 ], [ -122.303066, 37.883796 ], [ -122.303410, 37.883796 ], [ -122.304096, 37.885964 ], [ -122.303581, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884202 ], [ -122.300148, 37.883389 ], [ -122.300320, 37.883254 ], [ -122.301006, 37.883525 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.885964 ], [ -122.300663, 37.886370 ], [ -122.299805, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.886370 ], [ -122.299805, 37.884202 ], [ -122.300148, 37.883389 ], [ -122.300320, 37.883254 ], [ -122.301006, 37.883525 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.885964 ], [ -122.300663, 37.886370 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.883119 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303066, 37.883796 ], [ -122.302723, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.883796 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303066, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300320, 37.883119 ], [ -122.300320, 37.882983 ], [ -122.302380, 37.882577 ], [ -122.302723, 37.883119 ], [ -122.301006, 37.883525 ], [ -122.300320, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883525 ], [ -122.300320, 37.883119 ], [ -122.300320, 37.882983 ], [ -122.302380, 37.882577 ], [ -122.302723, 37.883119 ], [ -122.301006, 37.883525 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299805, 37.898291 ], [ -122.298946, 37.898562 ], [ -122.298603, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.898562 ], [ -122.298603, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299805, 37.898291 ], [ -122.298946, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897479 ], [ -122.298603, 37.897208 ], [ -122.298946, 37.898562 ], [ -122.298088, 37.898833 ], [ -122.297745, 37.897479 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898833 ], [ -122.297745, 37.897479 ], [ -122.298603, 37.897208 ], [ -122.298946, 37.898562 ], [ -122.298088, 37.898833 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.897614 ], [ -122.297745, 37.897479 ], [ -122.298088, 37.898833 ], [ -122.297230, 37.898969 ], [ -122.296886, 37.897614 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898969 ], [ -122.296886, 37.897614 ], [ -122.297745, 37.897479 ], [ -122.298088, 37.898833 ], [ -122.297230, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.296886, 37.897614 ], [ -122.297230, 37.898969 ], [ -122.296371, 37.898969 ], [ -122.295856, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.295856, 37.897885 ], [ -122.296886, 37.897614 ], [ -122.297230, 37.898969 ], [ -122.296371, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.297230, 37.895853 ], [ -122.297745, 37.897479 ], [ -122.296886, 37.897614 ], [ -122.296371, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297230, 37.895853 ], [ -122.297745, 37.897479 ], [ -122.296886, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.896124 ], [ -122.296371, 37.895989 ], [ -122.296886, 37.897614 ], [ -122.296028, 37.897750 ], [ -122.295513, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897750 ], [ -122.295513, 37.896124 ], [ -122.296371, 37.895989 ], [ -122.296886, 37.897614 ], [ -122.296028, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898833 ], [ -122.294655, 37.897750 ], [ -122.295856, 37.897885 ], [ -122.296371, 37.898969 ], [ -122.294655, 37.898833 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.294655, 37.898833 ], [ -122.294655, 37.897750 ], [ -122.295856, 37.897885 ], [ -122.296371, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896937 ], [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896937 ], [ -122.299290, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298603, 37.897208 ], [ -122.298088, 37.895718 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.897208 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298603, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.895853 ], [ -122.298088, 37.895718 ], [ -122.298603, 37.897208 ], [ -122.297745, 37.897479 ], [ -122.297230, 37.895853 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897479 ], [ -122.297230, 37.895853 ], [ -122.298088, 37.895718 ], [ -122.298603, 37.897208 ], [ -122.297745, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ], [ -122.297573, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.297573, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894228 ], [ -122.297573, 37.893957 ], [ -122.298088, 37.895718 ], [ -122.297230, 37.895853 ], [ -122.296715, 37.894228 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.895853 ], [ -122.296715, 37.894228 ], [ -122.297573, 37.893957 ], [ -122.298088, 37.895718 ], [ -122.297230, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.299976, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ], [ -122.299976, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299633, 37.895311 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.892060 ], [ -122.299461, 37.891925 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893550 ], [ -122.299118, 37.893686 ], [ -122.298603, 37.892060 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.298603, 37.892060 ], [ -122.299461, 37.891925 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893550 ], [ -122.299118, 37.893686 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298603, 37.892060 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298603, 37.892060 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297573, 37.893957 ], [ -122.297058, 37.892466 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.893957 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297573, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.894363 ], [ -122.296715, 37.894228 ], [ -122.297230, 37.895853 ], [ -122.296371, 37.895989 ], [ -122.295856, 37.894363 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295856, 37.894363 ], [ -122.296715, 37.894228 ], [ -122.297230, 37.895853 ], [ -122.296371, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294998, 37.894498 ], [ -122.296028, 37.897750 ], [ -122.295856, 37.897885 ], [ -122.294655, 37.894634 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.294998, 37.894498 ], [ -122.296028, 37.897750 ], [ -122.295856, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897750 ], [ -122.294827, 37.895447 ], [ -122.294483, 37.894634 ], [ -122.294655, 37.894634 ], [ -122.295856, 37.897885 ], [ -122.294655, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.294655, 37.897750 ], [ -122.294827, 37.895447 ], [ -122.294483, 37.894634 ], [ -122.294655, 37.894634 ], [ -122.295856, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894498 ], [ -122.295856, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295513, 37.896124 ], [ -122.294998, 37.894498 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.896124 ], [ -122.294998, 37.894498 ], [ -122.295856, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295513, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.296200, 37.892602 ], [ -122.296715, 37.894228 ], [ -122.295856, 37.894363 ], [ -122.295341, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.894363 ], [ -122.295341, 37.892737 ], [ -122.296200, 37.892602 ], [ -122.296715, 37.894228 ], [ -122.295856, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.892602 ], [ -122.297058, 37.892466 ], [ -122.297573, 37.893957 ], [ -122.296715, 37.894228 ], [ -122.296200, 37.892602 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894228 ], [ -122.296200, 37.892602 ], [ -122.297058, 37.892466 ], [ -122.297573, 37.893957 ], [ -122.296715, 37.894228 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.892873 ], [ -122.295341, 37.892737 ], [ -122.295856, 37.894363 ], [ -122.294998, 37.894498 ], [ -122.294483, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894498 ], [ -122.294483, 37.892873 ], [ -122.295341, 37.892737 ], [ -122.295856, 37.894363 ], [ -122.294998, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.294483, 37.892873 ], [ -122.294998, 37.894498 ], [ -122.294655, 37.894634 ], [ -122.294140, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294140, 37.892873 ], [ -122.294483, 37.892873 ], [ -122.294998, 37.894498 ], [ -122.294655, 37.894634 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294655, 37.898833 ], [ -122.293797, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898833 ], [ -122.293797, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294655, 37.898833 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.292938, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293797, 37.898562 ], [ -122.292938, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.898562 ], [ -122.292938, 37.898427 ], [ -122.292938, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293797, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.897750 ], [ -122.292938, 37.897750 ], [ -122.292938, 37.898427 ], [ -122.292767, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.292767, 37.897750 ], [ -122.292938, 37.897750 ], [ -122.292938, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.897750 ], [ -122.292767, 37.897750 ], [ -122.292767, 37.896801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.897750 ], [ -122.292767, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.897750 ], [ -122.292767, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291737, 37.898156 ], [ -122.291737, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.898427 ], [ -122.291737, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.898427 ], [ -122.291737, 37.898156 ], [ -122.291737, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898021 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896801 ], [ -122.291737, 37.898156 ], [ -122.290878, 37.898021 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291737, 37.898156 ], [ -122.290878, 37.898021 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896801 ], [ -122.291737, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290878, 37.898021 ], [ -122.290020, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898021 ], [ -122.290020, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290878, 37.898021 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.897885 ], [ -122.289162, 37.897885 ], [ -122.289162, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.897885 ], [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.897885 ], [ -122.289162, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894769 ], [ -122.294483, 37.894634 ], [ -122.294827, 37.895447 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293968, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.897750 ], [ -122.293968, 37.894769 ], [ -122.294483, 37.894634 ], [ -122.294827, 37.895447 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.894905 ], [ -122.293968, 37.894769 ], [ -122.293968, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292938, 37.897750 ], [ -122.293110, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897750 ], [ -122.293110, 37.894905 ], [ -122.293968, 37.894769 ], [ -122.293968, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292938, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.293110, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.292767, 37.894905 ], [ -122.293110, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292767, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894769 ], [ -122.294140, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894769 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293968, 37.894769 ], [ -122.293110, 37.894905 ], [ -122.293110, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.894905 ], [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293968, 37.894769 ], [ -122.293110, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293110, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292938, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.292938, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293110, 37.894905 ], [ -122.292767, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292938, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291908, 37.894905 ], [ -122.291908, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.894905 ], [ -122.291908, 37.892873 ], [ -122.292938, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291908, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290192, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292767, 37.896801 ], [ -122.290020, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290192, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292767, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.894769 ], [ -122.290192, 37.894905 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289333, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.289333, 37.894769 ], [ -122.290192, 37.894905 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291050, 37.894905 ], [ -122.291050, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.894905 ], [ -122.291050, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291050, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291050, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291050, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.894769 ], [ -122.289333, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289333, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.289333, 37.894769 ], [ -122.289333, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289162, 37.897885 ], [ -122.288303, 37.898156 ], [ -122.288303, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.898156 ], [ -122.288303, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289162, 37.897885 ], [ -122.288303, 37.898156 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.897885 ], [ -122.288132, 37.897885 ], [ -122.288132, 37.897479 ], [ -122.288303, 37.897479 ], [ -122.288303, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288132, 37.898156 ], [ -122.287273, 37.898698 ], [ -122.287273, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.898698 ], [ -122.287273, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288132, 37.898156 ], [ -122.287273, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.898156 ], [ -122.287273, 37.898698 ], [ -122.287102, 37.898833 ], [ -122.287273, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.898833 ], [ -122.287273, 37.898156 ], [ -122.287273, 37.898698 ], [ -122.287102, 37.898833 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287273, 37.898156 ], [ -122.287102, 37.898156 ], [ -122.287102, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.898156 ], [ -122.287102, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287273, 37.898156 ], [ -122.287102, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.289333, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288303, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.896666 ], [ -122.288303, 37.894769 ], [ -122.289333, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288303, 37.896666 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "GEOID10": "060014201002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.895989 ], [ -122.288132, 37.895989 ], [ -122.288132, 37.895582 ], [ -122.288475, 37.895582 ], [ -122.288475, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288303, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287445, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896666 ], [ -122.287445, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288303, 37.896666 ], [ -122.287273, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.896666 ], [ -122.287102, 37.896666 ], [ -122.287273, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896666 ], [ -122.287273, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.896666 ], [ -122.287102, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.289333, 37.893008 ], [ -122.289333, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ], [ -122.289333, 37.893008 ], [ -122.289333, 37.894769 ], [ -122.288303, 37.894769 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288647, 37.894498 ], [ -122.288303, 37.894498 ], [ -122.288303, 37.894092 ], [ -122.288647, 37.894092 ], [ -122.288647, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.288475, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287445, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894769 ], [ -122.287445, 37.892873 ], [ -122.288475, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287445, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.894769 ], [ -122.287273, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.894769 ], [ -122.287273, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892196 ], [ -122.299976, 37.892196 ], [ -122.299976, 37.892466 ], [ -122.299633, 37.892466 ], [ -122.299633, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892466 ], [ -122.299633, 37.892196 ], [ -122.299976, 37.892196 ], [ -122.299976, 37.892466 ], [ -122.299633, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890434 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298603, 37.892060 ], [ -122.298088, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.892060 ], [ -122.298088, 37.890434 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298603, 37.892060 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299461, 37.891925 ], [ -122.298946, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.891925 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299461, 37.891925 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890028 ], [ -122.300148, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299805, 37.890299 ], [ -122.299805, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890299 ], [ -122.299805, 37.890028 ], [ -122.300148, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299805, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.890434 ], [ -122.298088, 37.890434 ], [ -122.298260, 37.890705 ], [ -122.298603, 37.892060 ], [ -122.297745, 37.892196 ], [ -122.297230, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297230, 37.890434 ], [ -122.298088, 37.890434 ], [ -122.298260, 37.890705 ], [ -122.298603, 37.892060 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890299 ], [ -122.297401, 37.890299 ], [ -122.297401, 37.890570 ], [ -122.297058, 37.890570 ], [ -122.297058, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.297058, 37.890299 ], [ -122.297401, 37.890299 ], [ -122.297401, 37.890570 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887860 ], [ -122.299290, 37.887860 ], [ -122.299976, 37.890163 ], [ -122.299118, 37.890299 ], [ -122.298260, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890299 ], [ -122.298260, 37.887860 ], [ -122.299290, 37.887860 ], [ -122.299976, 37.890163 ], [ -122.299118, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887860 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ], [ -122.298260, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298260, 37.887860 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.889622 ], [ -122.297058, 37.886912 ], [ -122.297916, 37.886777 ], [ -122.298946, 37.890299 ], [ -122.298088, 37.890299 ], [ -122.297916, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.297916, 37.889622 ], [ -122.297058, 37.886912 ], [ -122.297916, 37.886777 ], [ -122.298946, 37.890299 ], [ -122.298088, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890434 ], [ -122.297230, 37.890434 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.296371, 37.890434 ], [ -122.297230, 37.890434 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.890570 ], [ -122.296371, 37.890434 ], [ -122.297058, 37.892466 ], [ -122.296200, 37.892602 ], [ -122.295513, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.892602 ], [ -122.295513, 37.890570 ], [ -122.296371, 37.890434 ], [ -122.297058, 37.892466 ], [ -122.296200, 37.892602 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.890299 ], [ -122.296543, 37.890299 ], [ -122.296543, 37.890570 ], [ -122.296200, 37.890570 ], [ -122.296200, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.890570 ], [ -122.296200, 37.890299 ], [ -122.296543, 37.890299 ], [ -122.296543, 37.890570 ], [ -122.296200, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.295513, 37.890570 ], [ -122.296200, 37.892602 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ], [ -122.295513, 37.890570 ], [ -122.296200, 37.892602 ], [ -122.295341, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294483, 37.892873 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294483, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.887183 ], [ -122.297058, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297230, 37.890434 ], [ -122.296200, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.890434 ], [ -122.296200, 37.887183 ], [ -122.297058, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297230, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.296200, 37.887183 ], [ -122.297230, 37.890434 ], [ -122.296371, 37.890434 ], [ -122.295341, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890434 ], [ -122.295341, 37.887318 ], [ -122.296200, 37.887183 ], [ -122.297230, 37.890434 ], [ -122.296371, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887454 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890434 ], [ -122.295513, 37.890434 ], [ -122.294483, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.890434 ], [ -122.294483, 37.887454 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890434 ], [ -122.295513, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.294483, 37.887454 ], [ -122.295513, 37.890434 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ], [ -122.294483, 37.887454 ], [ -122.295513, 37.890434 ], [ -122.294655, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886777 ], [ -122.299633, 37.887589 ], [ -122.301006, 37.887725 ], [ -122.298260, 37.887860 ], [ -122.297916, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887860 ], [ -122.297916, 37.886777 ], [ -122.299633, 37.887589 ], [ -122.301006, 37.887725 ], [ -122.298260, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.887589 ], [ -122.297916, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884473 ], [ -122.299976, 37.884067 ], [ -122.301006, 37.887725 ], [ -122.299633, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887725 ], [ -122.299633, 37.887589 ], [ -122.297916, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884473 ], [ -122.299976, 37.884067 ], [ -122.301006, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.886641 ], [ -122.298088, 37.886641 ], [ -122.298088, 37.886912 ], [ -122.297745, 37.886912 ], [ -122.297745, 37.886641 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.886912 ], [ -122.297745, 37.886641 ], [ -122.298088, 37.886641 ], [ -122.298088, 37.886912 ], [ -122.297745, 37.886912 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.883254 ], [ -122.300320, 37.882983 ], [ -122.300320, 37.883119 ], [ -122.299805, 37.884202 ], [ -122.298431, 37.884473 ], [ -122.298088, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884473 ], [ -122.298088, 37.883254 ], [ -122.300320, 37.882983 ], [ -122.300320, 37.883119 ], [ -122.299805, 37.884202 ], [ -122.298431, 37.884473 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.886506 ], [ -122.297573, 37.886506 ], [ -122.297573, 37.885964 ], [ -122.298088, 37.885964 ], [ -122.298088, 37.886506 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884473 ], [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884473 ], [ -122.297401, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.887048 ], [ -122.296371, 37.887048 ], [ -122.296371, 37.887318 ], [ -122.296028, 37.887318 ], [ -122.296028, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.887318 ], [ -122.296028, 37.887048 ], [ -122.296371, 37.887048 ], [ -122.296371, 37.887318 ], [ -122.296028, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.887183 ], [ -122.295513, 37.887183 ], [ -122.295513, 37.887454 ], [ -122.295170, 37.887454 ], [ -122.295170, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.887454 ], [ -122.295170, 37.887183 ], [ -122.295513, 37.887183 ], [ -122.295513, 37.887454 ], [ -122.295170, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.294483, 37.884338 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.884338 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.296886, 37.883931 ], [ -122.297916, 37.886777 ], [ -122.297058, 37.886912 ], [ -122.296028, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886912 ], [ -122.296028, 37.884067 ], [ -122.296886, 37.883931 ], [ -122.297916, 37.886777 ], [ -122.297058, 37.886912 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.886912 ], [ -122.296200, 37.887048 ], [ -122.295170, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.887048 ], [ -122.295170, 37.884202 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.886912 ], [ -122.296200, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.883796 ], [ -122.297401, 37.884609 ], [ -122.297230, 37.884744 ], [ -122.297058, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.884744 ], [ -122.297058, 37.883796 ], [ -122.297401, 37.884609 ], [ -122.297230, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296200, 37.887048 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887183 ], [ -122.294483, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296200, 37.887048 ], [ -122.295341, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.882983 ], [ -122.294827, 37.882848 ], [ -122.295170, 37.884202 ], [ -122.294483, 37.884338 ], [ -122.293968, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.884338 ], [ -122.293968, 37.882983 ], [ -122.294827, 37.882848 ], [ -122.295170, 37.884202 ], [ -122.294483, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.891112 ], [ -122.293282, 37.890705 ], [ -122.293625, 37.890570 ], [ -122.294483, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.293282, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293282, 37.891112 ], [ -122.293282, 37.890705 ], [ -122.293625, 37.890570 ], [ -122.294483, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.891112 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293282, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293282, 37.891112 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293110, 37.892873 ], [ -122.292938, 37.892873 ], [ -122.292938, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.892873 ], [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293110, 37.892873 ], [ -122.292938, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.293968, 37.890434 ], [ -122.293968, 37.890705 ], [ -122.293625, 37.890705 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890705 ], [ -122.293625, 37.890434 ], [ -122.293968, 37.890434 ], [ -122.293968, 37.890705 ], [ -122.293625, 37.890705 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.890570 ], [ -122.293453, 37.890570 ], [ -122.293453, 37.890841 ], [ -122.293110, 37.890841 ], [ -122.293110, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.890841 ], [ -122.293110, 37.890570 ], [ -122.293453, 37.890570 ], [ -122.293453, 37.890841 ], [ -122.293110, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.890705 ], [ -122.292938, 37.890705 ], [ -122.292938, 37.892873 ], [ -122.291908, 37.892873 ], [ -122.292080, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292080, 37.890705 ], [ -122.292938, 37.890705 ], [ -122.292938, 37.892873 ], [ -122.291908, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.890434 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.889893 ], [ -122.292595, 37.887725 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.890434 ], [ -122.293282, 37.889893 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.293282, 37.889893 ], [ -122.292595, 37.887725 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293282, 37.889893 ], [ -122.293797, 37.890570 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293282, 37.889893 ], [ -122.293797, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.888131 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890705 ], [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890705 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.292423, 37.887725 ], [ -122.292423, 37.887996 ], [ -122.292080, 37.887996 ], [ -122.292080, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887996 ], [ -122.292080, 37.887725 ], [ -122.292423, 37.887725 ], [ -122.292423, 37.887996 ], [ -122.292080, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890705 ], [ -122.292080, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291222, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.893008 ], [ -122.291222, 37.890705 ], [ -122.292080, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290363, 37.890841 ], [ -122.291222, 37.890705 ], [ -122.291050, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290363, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.290363, 37.890841 ], [ -122.291222, 37.890705 ], [ -122.291050, 37.893008 ], [ -122.290192, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.890570 ], [ -122.291393, 37.890570 ], [ -122.291393, 37.890841 ], [ -122.291050, 37.890841 ], [ -122.291050, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.890841 ], [ -122.291050, 37.890570 ], [ -122.291393, 37.890570 ], [ -122.291393, 37.890841 ], [ -122.291050, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.890841 ], [ -122.290363, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289333, 37.893008 ], [ -122.289505, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.893008 ], [ -122.289505, 37.890841 ], [ -122.290363, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289333, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288990, 37.890841 ], [ -122.289505, 37.890841 ], [ -122.289333, 37.893008 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.893008 ], [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288990, 37.890841 ], [ -122.289505, 37.890841 ], [ -122.289333, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888267 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.890705 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.890841 ], [ -122.290192, 37.888267 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.890705 ], [ -122.290878, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888538 ], [ -122.290192, 37.888267 ], [ -122.290878, 37.890841 ], [ -122.290020, 37.890841 ], [ -122.289162, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.890841 ], [ -122.289162, 37.888538 ], [ -122.290192, 37.888267 ], [ -122.290878, 37.890841 ], [ -122.290020, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289162, 37.888538 ], [ -122.290020, 37.890841 ], [ -122.288990, 37.890841 ], [ -122.288303, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.890841 ], [ -122.288303, 37.888673 ], [ -122.289162, 37.888538 ], [ -122.290020, 37.890841 ], [ -122.288990, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.888131 ], [ -122.290363, 37.888131 ], [ -122.290363, 37.888402 ], [ -122.290020, 37.888402 ], [ -122.290020, 37.888131 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.888402 ], [ -122.290020, 37.888131 ], [ -122.290363, 37.888131 ], [ -122.290363, 37.888402 ], [ -122.290020, 37.888402 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.884744 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.887589 ], [ -122.292767, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.887589 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.887589 ], [ -122.293625, 37.887725 ], [ -122.292767, 37.887725 ], [ -122.291908, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.887725 ], [ -122.291908, 37.884880 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.887589 ], [ -122.293625, 37.887725 ], [ -122.292767, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885015 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887725 ], [ -122.292595, 37.887725 ], [ -122.291565, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.887725 ], [ -122.291565, 37.885015 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887725 ], [ -122.292595, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.291565, 37.885015 ], [ -122.292595, 37.887725 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.885015 ], [ -122.292595, 37.887725 ], [ -122.292252, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884202 ], [ -122.293110, 37.883119 ], [ -122.293968, 37.882983 ], [ -122.294483, 37.884338 ], [ -122.293625, 37.884609 ], [ -122.293453, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.293453, 37.884202 ], [ -122.293110, 37.883119 ], [ -122.293968, 37.882983 ], [ -122.294483, 37.884338 ], [ -122.293625, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.884473 ], [ -122.292080, 37.883254 ], [ -122.293110, 37.883119 ], [ -122.293625, 37.884609 ], [ -122.292767, 37.884744 ], [ -122.292595, 37.884473 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.884744 ], [ -122.292595, 37.884473 ], [ -122.292080, 37.883254 ], [ -122.293110, 37.883119 ], [ -122.293625, 37.884609 ], [ -122.292767, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291393, 37.883254 ], [ -122.292080, 37.883254 ], [ -122.292767, 37.884744 ], [ -122.291908, 37.884880 ], [ -122.291393, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.291393, 37.883254 ], [ -122.292080, 37.883254 ], [ -122.292767, 37.884744 ], [ -122.291908, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885286 ], [ -122.291222, 37.885015 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.885286 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.887996 ], [ -122.290192, 37.885286 ], [ -122.291222, 37.885015 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886099 ], [ -122.290192, 37.888267 ], [ -122.288303, 37.888673 ], [ -122.289333, 37.886099 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289333, 37.886099 ], [ -122.290192, 37.888267 ], [ -122.288303, 37.888673 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886099 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.885693 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.888267 ], [ -122.289333, 37.886099 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888267 ], [ -122.289333, 37.886099 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.885693 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290535, 37.883254 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885015 ], [ -122.291222, 37.885015 ], [ -122.290535, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.290535, 37.883254 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885015 ], [ -122.291222, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.883389 ], [ -122.291222, 37.883254 ], [ -122.291393, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885015 ], [ -122.290878, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885015 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.883254 ], [ -122.291393, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884609 ], [ -122.290363, 37.883119 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885286 ], [ -122.289848, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885286 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.883119 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885286 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885964 ], [ -122.289333, 37.885964 ], [ -122.289333, 37.885557 ], [ -122.289677, 37.885557 ], [ -122.289677, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.289333, 37.883389 ], [ -122.290192, 37.883254 ], [ -122.290363, 37.883119 ], [ -122.289848, 37.885015 ], [ -122.288818, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.885015 ], [ -122.288818, 37.884744 ], [ -122.289333, 37.883389 ], [ -122.290192, 37.883254 ], [ -122.290363, 37.883119 ], [ -122.289848, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.883119 ], [ -122.296028, 37.883119 ], [ -122.296886, 37.883525 ], [ -122.296886, 37.883931 ], [ -122.296028, 37.884067 ], [ -122.295856, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.883119 ], [ -122.296886, 37.883525 ], [ -122.296886, 37.883931 ], [ -122.296028, 37.884067 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294827, 37.882848 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.884067 ], [ -122.295170, 37.884202 ], [ -122.294827, 37.882848 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.294827, 37.882848 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.884067 ], [ -122.295170, 37.884202 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "GEOID10": "060014201003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892060 ], [ -122.288475, 37.892060 ], [ -122.288475, 37.891654 ], [ -122.288818, 37.891654 ], [ -122.288818, 37.892060 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.890976 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288475, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287617, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.287617, 37.890976 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288475, 37.892873 ], [ -122.287445, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.890705 ], [ -122.287960, 37.890705 ], [ -122.287960, 37.890976 ], [ -122.287617, 37.890976 ], [ -122.287617, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.890976 ], [ -122.287617, 37.890705 ], [ -122.287960, 37.890705 ], [ -122.287960, 37.890976 ], [ -122.287617, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.890976 ], [ -122.287617, 37.890976 ], [ -122.287617, 37.891383 ], [ -122.287445, 37.892873 ], [ -122.287273, 37.892873 ], [ -122.287273, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.892873 ], [ -122.287273, 37.890976 ], [ -122.287617, 37.890976 ], [ -122.287617, 37.891383 ], [ -122.287445, 37.892873 ], [ -122.287273, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.890841 ], [ -122.286930, 37.890841 ], [ -122.286930, 37.891112 ], [ -122.286587, 37.891112 ], [ -122.286587, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.891112 ], [ -122.286587, 37.890841 ], [ -122.286930, 37.890841 ], [ -122.286930, 37.891112 ], [ -122.286587, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888809 ], [ -122.288303, 37.888673 ], [ -122.288303, 37.888944 ], [ -122.288818, 37.890841 ], [ -122.288132, 37.888809 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890841 ], [ -122.288132, 37.888809 ], [ -122.288303, 37.888673 ], [ -122.288303, 37.888944 ], [ -122.288818, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288132, 37.888809 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888809 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888538 ], [ -122.288475, 37.888538 ], [ -122.288475, 37.888809 ], [ -122.288132, 37.888809 ], [ -122.288132, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888809 ], [ -122.288132, 37.888538 ], [ -122.288475, 37.888538 ], [ -122.288475, 37.888809 ], [ -122.288132, 37.888809 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286243, 37.889486 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890976 ], [ -122.287617, 37.890841 ], [ -122.286758, 37.890976 ], [ -122.286243, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.890976 ], [ -122.286243, 37.889486 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890976 ], [ -122.287617, 37.890841 ], [ -122.286758, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286930, 37.888944 ], [ -122.287273, 37.888944 ], [ -122.287273, 37.889215 ], [ -122.286930, 37.889215 ], [ -122.286930, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286930, 37.889215 ], [ -122.286930, 37.888944 ], [ -122.287273, 37.888944 ], [ -122.287273, 37.889215 ], [ -122.286930, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.888673 ], [ -122.286415, 37.887725 ], [ -122.287617, 37.887996 ], [ -122.287102, 37.889080 ], [ -122.286243, 37.889351 ], [ -122.286072, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286243, 37.889351 ], [ -122.286072, 37.888673 ], [ -122.286415, 37.887725 ], [ -122.287617, 37.887996 ], [ -122.287102, 37.889080 ], [ -122.286243, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889622 ], [ -122.286243, 37.889486 ], [ -122.286758, 37.890976 ], [ -122.285728, 37.890976 ], [ -122.285213, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.285213, 37.889622 ], [ -122.286243, 37.889486 ], [ -122.286758, 37.890976 ], [ -122.285728, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.890976 ], [ -122.284698, 37.890976 ], [ -122.284698, 37.891247 ], [ -122.284355, 37.891247 ], [ -122.284355, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.891247 ], [ -122.284355, 37.890976 ], [ -122.284698, 37.890976 ], [ -122.284698, 37.891247 ], [ -122.284355, 37.891247 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284184, 37.889351 ], [ -122.285213, 37.889622 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891112 ], [ -122.284184, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891112 ], [ -122.284184, 37.889351 ], [ -122.285213, 37.889622 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.284184, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ], [ -122.282982, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.282982, 37.889215 ], [ -122.284184, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889215 ], [ -122.286415, 37.889215 ], [ -122.286415, 37.889486 ], [ -122.286072, 37.889486 ], [ -122.286072, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889486 ], [ -122.286072, 37.889215 ], [ -122.286415, 37.889215 ], [ -122.286415, 37.889486 ], [ -122.286072, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.888673 ], [ -122.285385, 37.887454 ], [ -122.286415, 37.887725 ], [ -122.286072, 37.888673 ], [ -122.286243, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887454 ], [ -122.286415, 37.887725 ], [ -122.286072, 37.888673 ], [ -122.286243, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.888944 ], [ -122.284870, 37.888944 ], [ -122.284870, 37.888538 ], [ -122.285385, 37.888538 ], [ -122.285385, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.285385, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285042, 37.889757 ], [ -122.285042, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889757 ], [ -122.285042, 37.889486 ], [ -122.285385, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285042, 37.889757 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.889215 ], [ -122.284355, 37.887183 ], [ -122.285385, 37.887454 ], [ -122.285042, 37.888538 ], [ -122.285213, 37.889486 ], [ -122.283840, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.283840, 37.889215 ], [ -122.284355, 37.887183 ], [ -122.285385, 37.887454 ], [ -122.285042, 37.888538 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.889080 ], [ -122.282810, 37.888673 ], [ -122.283325, 37.886912 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.282810, 37.888673 ], [ -122.283325, 37.886912 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889215 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.887725 ], [ -122.288475, 37.887725 ], [ -122.288475, 37.887183 ], [ -122.288990, 37.887183 ], [ -122.288990, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885964 ], [ -122.288303, 37.888673 ], [ -122.287102, 37.889080 ], [ -122.288818, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885964 ], [ -122.288303, 37.888673 ], [ -122.287102, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.287960, 37.884609 ], [ -122.288818, 37.884744 ], [ -122.287617, 37.887996 ], [ -122.286758, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.887996 ], [ -122.286758, 37.887725 ], [ -122.287960, 37.884609 ], [ -122.288818, 37.884744 ], [ -122.287617, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.886641 ], [ -122.286758, 37.885693 ], [ -122.287617, 37.885828 ], [ -122.287273, 37.886777 ], [ -122.286415, 37.886641 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.886777 ], [ -122.286415, 37.886641 ], [ -122.286758, 37.885693 ], [ -122.287617, 37.885828 ], [ -122.287273, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887454 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287617, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286415, 37.886641 ], [ -122.287273, 37.886777 ], [ -122.286758, 37.887725 ], [ -122.285385, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.285385, 37.887454 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287617, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286415, 37.886641 ], [ -122.287273, 37.886777 ], [ -122.286758, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884609 ], [ -122.288647, 37.883119 ], [ -122.289333, 37.883389 ], [ -122.288818, 37.884744 ], [ -122.287960, 37.884609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.287960, 37.884609 ], [ -122.288647, 37.883119 ], [ -122.289333, 37.883389 ], [ -122.288818, 37.884744 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.885015 ], [ -122.286243, 37.885015 ], [ -122.286243, 37.884609 ], [ -122.286587, 37.884609 ], [ -122.286587, 37.885015 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285900, 37.886641 ], [ -122.285385, 37.886641 ], [ -122.285385, 37.886235 ], [ -122.285900, 37.886235 ], [ -122.285900, 37.886641 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.285213, 37.885422 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887454 ], [ -122.284355, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887454 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.885422 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.885422 ], [ -122.285728, 37.883660 ], [ -122.287102, 37.882983 ], [ -122.286587, 37.884067 ], [ -122.286072, 37.885557 ], [ -122.285213, 37.885422 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285213, 37.885422 ], [ -122.285728, 37.883660 ], [ -122.287102, 37.882983 ], [ -122.286587, 37.884067 ], [ -122.286072, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.284870, 37.884202 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284870, 37.884202 ], [ -122.284527, 37.884202 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.887048 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.283669, 37.887048 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.886099 ], [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ], [ -122.282810, 37.886099 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282810, 37.886099 ], [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.284012, 37.884609 ], [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284012, 37.884609 ], [ -122.283497, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.884473 ], [ -122.281952, 37.884473 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882577 ], [ -122.285728, 37.883660 ], [ -122.283154, 37.884880 ], [ -122.282124, 37.885015 ], [ -122.282295, 37.884473 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.885015 ], [ -122.282295, 37.884473 ], [ -122.281952, 37.884473 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882577 ], [ -122.285728, 37.883660 ], [ -122.283154, 37.884880 ], [ -122.282124, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891247 ], [ -122.281952, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891247 ], [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891247 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889080 ], [ -122.283840, 37.889080 ], [ -122.283840, 37.889351 ], [ -122.283497, 37.889351 ], [ -122.283497, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889351 ], [ -122.283497, 37.889080 ], [ -122.283840, 37.889080 ], [ -122.283840, 37.889351 ], [ -122.283497, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.888944 ], [ -122.282982, 37.888944 ], [ -122.282982, 37.889215 ], [ -122.282639, 37.889215 ], [ -122.282639, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889215 ], [ -122.282639, 37.888944 ], [ -122.282982, 37.888944 ], [ -122.282982, 37.889215 ], [ -122.282639, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281780, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.886912 ], [ -122.282810, 37.888673 ], [ -122.282810, 37.889080 ], [ -122.281952, 37.889351 ], [ -122.281780, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889351 ], [ -122.281780, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.886912 ], [ -122.282810, 37.888673 ], [ -122.282810, 37.889080 ], [ -122.281952, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886777 ], [ -122.282639, 37.886370 ], [ -122.282810, 37.886099 ], [ -122.283840, 37.886235 ], [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ], [ -122.282639, 37.886370 ], [ -122.282810, 37.886099 ], [ -122.283840, 37.886235 ], [ -122.283669, 37.887048 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.885015 ], [ -122.283497, 37.884744 ], [ -122.282467, 37.885151 ], [ -122.282124, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.885151 ], [ -122.282124, 37.885015 ], [ -122.283497, 37.884744 ], [ -122.282467, 37.885151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287273, 37.882712 ], [ -122.288647, 37.883119 ], [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287273, 37.882712 ], [ -122.288647, 37.883119 ], [ -122.288132, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883931 ], [ -122.286930, 37.883931 ], [ -122.286930, 37.884202 ], [ -122.286587, 37.884202 ], [ -122.286587, 37.883931 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.884202 ], [ -122.286587, 37.883931 ], [ -122.286930, 37.883931 ], [ -122.286930, 37.884202 ], [ -122.286587, 37.884202 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883525 ], [ -122.286243, 37.883525 ], [ -122.286243, 37.883119 ], [ -122.286587, 37.883119 ], [ -122.286587, 37.883525 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882577 ], [ -122.287273, 37.882577 ], [ -122.287102, 37.882983 ], [ -122.285728, 37.883660 ], [ -122.286072, 37.882577 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.286072, 37.882577 ], [ -122.287273, 37.882577 ], [ -122.287102, 37.882983 ], [ -122.285728, 37.883660 ] ] ] } } ] } ] } , @@ -1762,525 +1762,525 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312593, 37.897072 ], [ -122.311649, 37.896869 ], [ -122.311563, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.895582 ], [ -122.310705, 37.895514 ], [ -122.310619, 37.895108 ], [ -122.310190, 37.894769 ], [ -122.309504, 37.893482 ], [ -122.309160, 37.892263 ], [ -122.309074, 37.891315 ], [ -122.309332, 37.889757 ], [ -122.309504, 37.889147 ], [ -122.309847, 37.888809 ], [ -122.310104, 37.888944 ], [ -122.310190, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.311049, 37.890231 ], [ -122.311134, 37.890299 ], [ -122.311220, 37.889960 ], [ -122.311392, 37.889960 ], [ -122.311735, 37.890434 ], [ -122.312765, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314310, 37.891992 ], [ -122.314739, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316027, 37.891180 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.889960 ], [ -122.322721, 37.890028 ], [ -122.323151, 37.891044 ], [ -122.324009, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.890841 ], [ -122.327356, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327528, 37.891586 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.889689 ], [ -122.334738, 37.889622 ], [ -122.333450, 37.892805 ], [ -122.312508, 37.897479 ], [ -122.312593, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897479 ], [ -122.312593, 37.897072 ], [ -122.311649, 37.896869 ], [ -122.311563, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.895582 ], [ -122.310705, 37.895514 ], [ -122.310619, 37.895108 ], [ -122.310190, 37.894769 ], [ -122.309504, 37.893482 ], [ -122.309160, 37.892263 ], [ -122.309074, 37.891315 ], [ -122.309332, 37.889757 ], [ -122.309504, 37.889147 ], [ -122.309847, 37.888809 ], [ -122.310104, 37.888944 ], [ -122.310190, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.311049, 37.890231 ], [ -122.311134, 37.890299 ], [ -122.311220, 37.889960 ], [ -122.311392, 37.889960 ], [ -122.311735, 37.890434 ], [ -122.312765, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314310, 37.891992 ], [ -122.314739, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316027, 37.891180 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.889960 ], [ -122.322721, 37.890028 ], [ -122.323151, 37.891044 ], [ -122.324009, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.890841 ], [ -122.327356, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327528, 37.891586 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.889689 ], [ -122.334738, 37.889622 ], [ -122.333450, 37.892805 ], [ -122.312508, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.308903, 37.890502 ], [ -122.308989, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.309847, 37.888131 ], [ -122.311306, 37.889486 ], [ -122.315598, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.327614, 37.889689 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891586 ], [ -122.327442, 37.891518 ], [ -122.327356, 37.890841 ], [ -122.325811, 37.890841 ], [ -122.325640, 37.890976 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325897, 37.892331 ], [ -122.325897, 37.892534 ], [ -122.324009, 37.892399 ], [ -122.323151, 37.891044 ], [ -122.322721, 37.890028 ], [ -122.319889, 37.889960 ], [ -122.317657, 37.890976 ], [ -122.316027, 37.891180 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314825, 37.892466 ], [ -122.314739, 37.892466 ], [ -122.314310, 37.891992 ], [ -122.313709, 37.891925 ], [ -122.312765, 37.891247 ], [ -122.311735, 37.890434 ], [ -122.311392, 37.889960 ], [ -122.311220, 37.889960 ], [ -122.311134, 37.890299 ], [ -122.311049, 37.890231 ], [ -122.310877, 37.889757 ], [ -122.310190, 37.889147 ], [ -122.310104, 37.888944 ], [ -122.309847, 37.888809 ], [ -122.309504, 37.889147 ], [ -122.309332, 37.889757 ], [ -122.309074, 37.891315 ], [ -122.309074, 37.891518 ], [ -122.308903, 37.890502 ] ] ], [ [ [ -122.310190, 37.894769 ], [ -122.310619, 37.895108 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895582 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.896056 ], [ -122.311563, 37.896192 ], [ -122.311563, 37.896734 ], [ -122.310705, 37.895785 ], [ -122.310019, 37.894769 ], [ -122.309246, 37.893076 ], [ -122.309160, 37.892399 ], [ -122.309504, 37.893482 ], [ -122.310190, 37.894769 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309160, 37.892263 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.309847, 37.888131 ], [ -122.311306, 37.889486 ], [ -122.315598, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.327614, 37.889689 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891586 ], [ -122.327442, 37.891518 ], [ -122.327356, 37.890841 ], [ -122.325811, 37.890841 ], [ -122.325640, 37.890976 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325897, 37.892331 ], [ -122.325897, 37.892534 ], [ -122.324009, 37.892399 ], [ -122.323151, 37.891044 ], [ -122.322721, 37.890028 ], [ -122.319889, 37.889960 ], [ -122.317657, 37.890976 ], [ -122.316027, 37.891180 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314825, 37.892466 ], [ -122.314739, 37.892466 ], [ -122.314310, 37.891992 ], [ -122.313709, 37.891925 ], [ -122.312765, 37.891247 ], [ -122.311735, 37.890434 ], [ -122.311392, 37.889960 ], [ -122.311220, 37.889960 ], [ -122.311134, 37.890299 ], [ -122.311049, 37.890231 ], [ -122.310877, 37.889757 ], [ -122.310190, 37.889147 ], [ -122.310104, 37.888944 ], [ -122.309847, 37.888809 ], [ -122.309504, 37.889147 ], [ -122.309332, 37.889757 ], [ -122.309074, 37.891315 ], [ -122.309160, 37.892263 ] ] ], [ [ [ -122.309160, 37.892263 ], [ -122.309504, 37.893482 ], [ -122.310190, 37.894769 ], [ -122.310619, 37.895108 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895582 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.896056 ], [ -122.311563, 37.896192 ], [ -122.311563, 37.896734 ], [ -122.310705, 37.895785 ], [ -122.310019, 37.894769 ], [ -122.309246, 37.893076 ], [ -122.309160, 37.892263 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311649, 37.896869 ], [ -122.312508, 37.896937 ], [ -122.312593, 37.897140 ], [ -122.312508, 37.897479 ], [ -122.312078, 37.897479 ], [ -122.311649, 37.896869 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311649, 37.896869 ], [ -122.312508, 37.896937 ], [ -122.312593, 37.897140 ], [ -122.312508, 37.897479 ], [ -122.312078, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.892805 ], [ -122.307873, 37.892331 ], [ -122.308044, 37.892196 ], [ -122.308302, 37.892196 ], [ -122.308388, 37.894431 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ], [ -122.309332, 37.897817 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.892805 ], [ -122.307873, 37.892331 ], [ -122.308044, 37.892196 ], [ -122.308302, 37.892196 ], [ -122.308388, 37.894431 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309933, 37.895718 ], [ -122.309332, 37.894566 ], [ -122.308559, 37.892399 ], [ -122.308130, 37.890638 ], [ -122.308388, 37.890096 ], [ -122.309418, 37.893889 ], [ -122.310534, 37.895853 ], [ -122.311907, 37.897546 ], [ -122.311478, 37.897682 ], [ -122.309933, 37.895718 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897682 ], [ -122.309933, 37.895718 ], [ -122.309332, 37.894566 ], [ -122.308559, 37.892399 ], [ -122.308130, 37.890638 ], [ -122.308388, 37.890096 ], [ -122.309418, 37.893889 ], [ -122.310534, 37.895853 ], [ -122.311907, 37.897546 ], [ -122.311478, 37.897682 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897343 ], [ -122.308388, 37.894431 ], [ -122.308302, 37.892331 ], [ -122.307959, 37.890976 ], [ -122.308130, 37.890638 ], [ -122.308559, 37.892399 ], [ -122.309332, 37.894566 ], [ -122.309933, 37.895718 ], [ -122.311478, 37.897682 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894431 ], [ -122.308302, 37.892331 ], [ -122.307959, 37.890976 ], [ -122.308130, 37.890638 ], [ -122.308559, 37.892399 ], [ -122.309332, 37.894566 ], [ -122.309933, 37.895718 ], [ -122.311478, 37.897682 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310534, 37.895853 ], [ -122.309761, 37.894498 ], [ -122.309160, 37.893144 ], [ -122.308388, 37.890096 ], [ -122.308989, 37.888809 ], [ -122.308903, 37.890502 ], [ -122.309246, 37.893076 ], [ -122.310019, 37.894769 ], [ -122.311563, 37.896869 ], [ -122.312078, 37.897479 ], [ -122.311907, 37.897546 ], [ -122.310534, 37.895853 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311907, 37.897546 ], [ -122.310534, 37.895853 ], [ -122.309761, 37.894498 ], [ -122.309160, 37.893144 ], [ -122.308388, 37.890096 ], [ -122.308989, 37.888809 ], [ -122.308903, 37.890502 ], [ -122.309246, 37.893076 ], [ -122.310019, 37.894769 ], [ -122.311563, 37.896869 ], [ -122.312078, 37.897479 ], [ -122.311907, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.894295 ], [ -122.307100, 37.892602 ], [ -122.307100, 37.890909 ], [ -122.307529, 37.889554 ], [ -122.307959, 37.890976 ], [ -122.307615, 37.892263 ], [ -122.307615, 37.893347 ], [ -122.308302, 37.895244 ], [ -122.309418, 37.897885 ], [ -122.307701, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.307701, 37.894295 ], [ -122.307100, 37.892602 ], [ -122.307100, 37.890909 ], [ -122.307529, 37.889554 ], [ -122.307959, 37.890976 ], [ -122.307615, 37.892263 ], [ -122.307615, 37.893347 ], [ -122.308302, 37.895244 ], [ -122.309418, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.892670 ], [ -122.306671, 37.892263 ], [ -122.306757, 37.891721 ], [ -122.306414, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307444, 37.889757 ], [ -122.307100, 37.891247 ], [ -122.307100, 37.892602 ], [ -122.307701, 37.894295 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.898021 ], [ -122.306671, 37.892670 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.898021 ], [ -122.306671, 37.892670 ], [ -122.306671, 37.892263 ], [ -122.306757, 37.891721 ], [ -122.306414, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307444, 37.889757 ], [ -122.307100, 37.891247 ], [ -122.307100, 37.892602 ], [ -122.307701, 37.894295 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.898021 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307615, 37.893144 ], [ -122.307701, 37.891721 ], [ -122.307959, 37.890976 ], [ -122.308302, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.307873, 37.892331 ], [ -122.307873, 37.893076 ], [ -122.308302, 37.895244 ], [ -122.307615, 37.893144 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308302, 37.895244 ], [ -122.307615, 37.893144 ], [ -122.307701, 37.891721 ], [ -122.307959, 37.890976 ], [ -122.308302, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.307873, 37.892331 ], [ -122.307873, 37.893076 ], [ -122.308302, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896734 ], [ -122.301178, 37.896734 ], [ -122.301693, 37.898562 ], [ -122.301006, 37.896734 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896734 ], [ -122.301178, 37.896734 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898359 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896734 ], [ -122.301607, 37.898562 ], [ -122.300663, 37.898359 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301607, 37.898562 ], [ -122.300663, 37.898359 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896734 ], [ -122.301607, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300663, 37.898359 ], [ -122.299719, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898359 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300663, 37.898359 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896056 ], [ -122.302637, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303152, 37.894566 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.890570 ], [ -122.304010, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.306757, 37.891721 ], [ -122.306671, 37.892670 ], [ -122.308989, 37.898021 ], [ -122.306242, 37.898291 ], [ -122.305384, 37.898427 ], [ -122.301693, 37.898562 ], [ -122.300920, 37.896056 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.300920, 37.896056 ], [ -122.302637, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303152, 37.894566 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.890570 ], [ -122.304010, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.306757, 37.891721 ], [ -122.306671, 37.892670 ], [ -122.308989, 37.898021 ], [ -122.306242, 37.898291 ], [ -122.305384, 37.898427 ], [ -122.301693, 37.898562 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302294, 37.891789 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.893550 ], [ -122.303152, 37.894566 ], [ -122.302294, 37.891789 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303152, 37.894566 ], [ -122.302294, 37.891789 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.893550 ], [ -122.303152, 37.894566 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894024 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895718 ], [ -122.301779, 37.895853 ], [ -122.301178, 37.894024 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895853 ], [ -122.301178, 37.894024 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895718 ], [ -122.301779, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896056 ], [ -122.300920, 37.896056 ], [ -122.301178, 37.896734 ], [ -122.301006, 37.896734 ], [ -122.300835, 37.896056 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896734 ], [ -122.300835, 37.896056 ], [ -122.300920, 37.896056 ], [ -122.301178, 37.896734 ], [ -122.301006, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895108 ], [ -122.300663, 37.895108 ], [ -122.300920, 37.896056 ], [ -122.300835, 37.896056 ], [ -122.300491, 37.895108 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896056 ], [ -122.300491, 37.895108 ], [ -122.300663, 37.895108 ], [ -122.300920, 37.896056 ], [ -122.300835, 37.896056 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.300491, 37.895108 ], [ -122.300835, 37.896056 ], [ -122.301006, 37.896734 ], [ -122.300148, 37.896869 ], [ -122.299633, 37.895311 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895311 ], [ -122.300491, 37.895108 ], [ -122.300835, 37.896056 ], [ -122.301006, 37.896734 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.894160 ], [ -122.301178, 37.894024 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896056 ], [ -122.300406, 37.894160 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896056 ], [ -122.300406, 37.894160 ], [ -122.301178, 37.894024 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896056 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891992 ], [ -122.302294, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ], [ -122.301435, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301435, 37.891992 ], [ -122.302294, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.301435, 37.891992 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894024 ], [ -122.300577, 37.892128 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894024 ], [ -122.300577, 37.892128 ], [ -122.301435, 37.891992 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894024 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.300148, 37.893482 ], [ -122.300577, 37.894905 ], [ -122.300663, 37.895108 ], [ -122.300491, 37.895108 ], [ -122.299976, 37.893482 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895108 ], [ -122.299976, 37.893482 ], [ -122.300148, 37.893482 ], [ -122.300577, 37.894905 ], [ -122.300663, 37.895108 ], [ -122.300491, 37.895108 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.893482 ], [ -122.299719, 37.892331 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.894024 ], [ -122.300406, 37.894160 ], [ -122.300148, 37.893482 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.894160 ], [ -122.300148, 37.893482 ], [ -122.299719, 37.892331 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.894024 ], [ -122.300406, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892331 ], [ -122.299719, 37.892331 ], [ -122.300148, 37.893482 ], [ -122.299976, 37.893482 ], [ -122.299633, 37.892331 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.299633, 37.892331 ], [ -122.299719, 37.892331 ], [ -122.300148, 37.893482 ], [ -122.299976, 37.893482 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327442, 37.889147 ], [ -122.327614, 37.888741 ], [ -122.327099, 37.888741 ], [ -122.325468, 37.888131 ], [ -122.324610, 37.887928 ], [ -122.322979, 37.888335 ], [ -122.322893, 37.889080 ], [ -122.322292, 37.889418 ], [ -122.320919, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.317314, 37.889283 ], [ -122.316113, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316542, 37.886167 ], [ -122.316456, 37.885964 ], [ -122.316027, 37.885964 ], [ -122.316027, 37.885693 ], [ -122.316885, 37.885693 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.316113, 37.885489 ], [ -122.315769, 37.885286 ], [ -122.315512, 37.884744 ], [ -122.315683, 37.884338 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.883999 ], [ -122.314396, 37.883389 ], [ -122.313967, 37.882644 ], [ -122.313108, 37.882238 ], [ -122.312508, 37.881425 ], [ -122.327700, 37.877360 ], [ -122.334738, 37.889622 ], [ -122.327614, 37.889689 ], [ -122.327442, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889689 ], [ -122.327442, 37.889147 ], [ -122.327614, 37.888741 ], [ -122.327099, 37.888741 ], [ -122.325468, 37.888131 ], [ -122.324610, 37.887928 ], [ -122.322979, 37.888335 ], [ -122.322893, 37.889080 ], [ -122.322292, 37.889418 ], [ -122.320919, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.317314, 37.889283 ], [ -122.316113, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316542, 37.886167 ], [ -122.316456, 37.885964 ], [ -122.316027, 37.885964 ], [ -122.316027, 37.885693 ], [ -122.316885, 37.885693 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.316113, 37.885489 ], [ -122.315769, 37.885286 ], [ -122.315512, 37.884744 ], [ -122.315683, 37.884338 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.883999 ], [ -122.314396, 37.883389 ], [ -122.313967, 37.882644 ], [ -122.313108, 37.882238 ], [ -122.312508, 37.881425 ], [ -122.327700, 37.877360 ], [ -122.334738, 37.889622 ], [ -122.327614, 37.889689 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309332, 37.887318 ], [ -122.309589, 37.886980 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881425 ], [ -122.313108, 37.882238 ], [ -122.313967, 37.882644 ], [ -122.314396, 37.883389 ], [ -122.315083, 37.883999 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884338 ], [ -122.315512, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885693 ], [ -122.316027, 37.885693 ], [ -122.316027, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316542, 37.886167 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316113, 37.887928 ], [ -122.317314, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.320919, 37.889283 ], [ -122.322292, 37.889418 ], [ -122.322893, 37.889080 ], [ -122.322979, 37.888335 ], [ -122.324610, 37.887928 ], [ -122.325468, 37.888131 ], [ -122.327099, 37.888741 ], [ -122.327614, 37.888741 ], [ -122.327442, 37.889147 ], [ -122.327614, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.315598, 37.889689 ], [ -122.311306, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.315598, 37.889689 ], [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309332, 37.887318 ], [ -122.309589, 37.886980 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881425 ], [ -122.313108, 37.882238 ], [ -122.313967, 37.882644 ], [ -122.314396, 37.883389 ], [ -122.315083, 37.883999 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884338 ], [ -122.315512, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885693 ], [ -122.316027, 37.885693 ], [ -122.316027, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316542, 37.886167 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316113, 37.887928 ], [ -122.317314, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.320919, 37.889283 ], [ -122.322292, 37.889418 ], [ -122.322893, 37.889080 ], [ -122.322979, 37.888335 ], [ -122.324610, 37.887928 ], [ -122.325468, 37.888131 ], [ -122.327099, 37.888741 ], [ -122.327614, 37.888741 ], [ -122.327442, 37.889147 ], [ -122.327614, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.315598, 37.889689 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "GEOID10": "060014203003030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.887928 ], [ -122.309418, 37.887725 ], [ -122.309847, 37.888131 ], [ -122.309332, 37.887928 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "GEOID10": "060014203003030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309847, 37.888131 ], [ -122.309332, 37.887928 ], [ -122.309418, 37.887725 ], [ -122.309847, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.309332, 37.887318 ], [ -122.308989, 37.888809 ], [ -122.309074, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.888809 ], [ -122.309074, 37.887454 ], [ -122.309332, 37.887318 ], [ -122.308989, 37.888809 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308645, 37.887386 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888809 ], [ -122.308388, 37.890096 ], [ -122.308388, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890096 ], [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308645, 37.887386 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888809 ], [ -122.308388, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890299 ], [ -122.306671, 37.890231 ], [ -122.306328, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890841 ], [ -122.306242, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890841 ], [ -122.306242, 37.890299 ], [ -122.306671, 37.890231 ], [ -122.306328, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.889960 ], [ -122.306671, 37.890231 ], [ -122.306242, 37.890299 ], [ -122.306156, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890299 ], [ -122.306156, 37.889960 ], [ -122.306671, 37.890231 ], [ -122.306242, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889554 ], [ -122.308559, 37.887657 ], [ -122.308388, 37.890096 ], [ -122.307959, 37.890976 ], [ -122.307529, 37.889554 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307959, 37.890976 ], [ -122.307529, 37.889554 ], [ -122.308559, 37.887657 ], [ -122.308388, 37.890096 ], [ -122.307959, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307272, 37.887251 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887386 ], [ -122.308645, 37.887454 ], [ -122.307701, 37.889215 ], [ -122.307272, 37.887251 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307272, 37.887251 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887386 ], [ -122.308645, 37.887454 ], [ -122.307701, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305899, 37.889012 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306070, 37.889622 ], [ -122.305899, 37.889012 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306070, 37.889622 ], [ -122.305899, 37.889012 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306070, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305899, 37.889012 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888944 ], [ -122.305899, 37.889012 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.307358, 37.888673 ], [ -122.305899, 37.889012 ], [ -122.305813, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305899, 37.889012 ], [ -122.305813, 37.888944 ], [ -122.307358, 37.888673 ], [ -122.305899, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.887522 ], [ -122.305470, 37.887522 ], [ -122.307272, 37.887251 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889554 ], [ -122.307014, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889554 ], [ -122.307014, 37.887522 ], [ -122.305470, 37.887522 ], [ -122.307272, 37.887251 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889554 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887386 ], [ -122.308731, 37.887251 ], [ -122.309074, 37.887454 ], [ -122.308645, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308645, 37.887386 ], [ -122.308731, 37.887251 ], [ -122.309074, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887251 ], [ -122.309074, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309332, 37.887318 ], [ -122.309074, 37.887454 ], [ -122.308731, 37.887251 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308731, 37.887251 ], [ -122.309074, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309332, 37.887318 ], [ -122.309074, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308645, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309589, 37.887115 ], [ -122.309332, 37.887318 ], [ -122.309332, 37.886370 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.887318 ], [ -122.309332, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308645, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309589, 37.887115 ], [ -122.309332, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307272, 37.887115 ], [ -122.307358, 37.886777 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882238 ], [ -122.308645, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887251 ], [ -122.307272, 37.887115 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887251 ], [ -122.307272, 37.887115 ], [ -122.307358, 37.886777 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882238 ], [ -122.308645, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887251 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308559, 37.887318 ], [ -122.307272, 37.887251 ], [ -122.307272, 37.887115 ], [ -122.308731, 37.887251 ], [ -122.308645, 37.887386 ], [ -122.308559, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887386 ], [ -122.308559, 37.887318 ], [ -122.307272, 37.887251 ], [ -122.307272, 37.887115 ], [ -122.308731, 37.887251 ], [ -122.308645, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305470, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ], [ -122.305470, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.305470, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307100, 37.886912 ], [ -122.306242, 37.883322 ], [ -122.305813, 37.882102 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.886777 ], [ -122.307272, 37.887115 ], [ -122.307100, 37.886912 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307272, 37.887115 ], [ -122.307100, 37.886912 ], [ -122.306242, 37.883322 ], [ -122.305813, 37.882102 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.886777 ], [ -122.307272, 37.887115 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.303324, 37.889486 ], [ -122.303581, 37.890367 ], [ -122.303152, 37.891654 ], [ -122.302465, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303152, 37.891654 ], [ -122.302465, 37.889622 ], [ -122.303324, 37.889486 ], [ -122.303581, 37.890367 ], [ -122.303152, 37.891654 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889486 ], [ -122.305899, 37.889012 ], [ -122.306070, 37.889622 ], [ -122.304182, 37.890028 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890367 ], [ -122.303324, 37.889486 ], [ -122.305899, 37.889012 ], [ -122.306070, 37.889622 ], [ -122.304182, 37.890028 ], [ -122.303581, 37.890367 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.889351 ], [ -122.304354, 37.889351 ], [ -122.304354, 37.889147 ], [ -122.304525, 37.889147 ], [ -122.304525, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.887522 ], [ -122.305384, 37.887522 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ], [ -122.304525, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304525, 37.887522 ], [ -122.305384, 37.887522 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887589 ], [ -122.304525, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304182, 37.889283 ], [ -122.303581, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304182, 37.889283 ], [ -122.303581, 37.887589 ], [ -122.304525, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304182, 37.889283 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889418 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889486 ], [ -122.303324, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889486 ], [ -122.303324, 37.889418 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302809, 37.889689 ], [ -122.302551, 37.889689 ], [ -122.302551, 37.889486 ], [ -122.302809, 37.889486 ], [ -122.302809, 37.889689 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889418 ], [ -122.302723, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889418 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889825 ], [ -122.302465, 37.889622 ], [ -122.303152, 37.891654 ], [ -122.302294, 37.891789 ], [ -122.301693, 37.889825 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302294, 37.891789 ], [ -122.301693, 37.889825 ], [ -122.302465, 37.889622 ], [ -122.303152, 37.891654 ], [ -122.302294, 37.891789 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.889960 ], [ -122.301693, 37.889825 ], [ -122.302294, 37.891789 ], [ -122.301435, 37.891992 ], [ -122.300835, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891992 ], [ -122.300835, 37.889960 ], [ -122.301693, 37.889825 ], [ -122.302294, 37.891789 ], [ -122.301435, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.891857 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892331 ], [ -122.299547, 37.891857 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892331 ], [ -122.299547, 37.891857 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.300835, 37.889960 ], [ -122.301435, 37.891992 ], [ -122.300577, 37.892128 ], [ -122.299976, 37.890163 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.299976, 37.890163 ], [ -122.300835, 37.889960 ], [ -122.301435, 37.891992 ], [ -122.300577, 37.892128 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.887657 ], [ -122.302723, 37.887589 ], [ -122.303324, 37.889418 ], [ -122.302465, 37.889622 ], [ -122.301865, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.301865, 37.887657 ], [ -122.302723, 37.887589 ], [ -122.303324, 37.889418 ], [ -122.302465, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300749, 37.887793 ], [ -122.301865, 37.887657 ], [ -122.302465, 37.889622 ], [ -122.301693, 37.889825 ], [ -122.300749, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889825 ], [ -122.300749, 37.887793 ], [ -122.301865, 37.887657 ], [ -122.302465, 37.889622 ], [ -122.301693, 37.889825 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "GEOID10": "060014203001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.889960 ], [ -122.300148, 37.890096 ], [ -122.299976, 37.890096 ], [ -122.300835, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "GEOID10": "060014203001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.890096 ], [ -122.300320, 37.890096 ], [ -122.300320, 37.889893 ], [ -122.300577, 37.889893 ], [ -122.300577, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300062, 37.887725 ], [ -122.300749, 37.887793 ], [ -122.301693, 37.889825 ], [ -122.300835, 37.889960 ], [ -122.300062, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300749, 37.887793 ], [ -122.301693, 37.889825 ], [ -122.300835, 37.889960 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299204, 37.887793 ], [ -122.300062, 37.887725 ], [ -122.300835, 37.889960 ], [ -122.299976, 37.890096 ], [ -122.299204, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890096 ], [ -122.299204, 37.887793 ], [ -122.300062, 37.887725 ], [ -122.300835, 37.889960 ], [ -122.299976, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302122, 37.887522 ], [ -122.305899, 37.887318 ], [ -122.307272, 37.887115 ], [ -122.307272, 37.887251 ], [ -122.305470, 37.887522 ], [ -122.302208, 37.887657 ], [ -122.302122, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887657 ], [ -122.302122, 37.887522 ], [ -122.305899, 37.887318 ], [ -122.307272, 37.887115 ], [ -122.307272, 37.887251 ], [ -122.305470, 37.887522 ], [ -122.302208, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887657 ], [ -122.300577, 37.886370 ], [ -122.302380, 37.886031 ], [ -122.304611, 37.885896 ], [ -122.304525, 37.885354 ], [ -122.306843, 37.885625 ], [ -122.307186, 37.887115 ], [ -122.305899, 37.887318 ], [ -122.302122, 37.887522 ], [ -122.302122, 37.887657 ], [ -122.300749, 37.887793 ], [ -122.301006, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300749, 37.887793 ], [ -122.301006, 37.887657 ], [ -122.300577, 37.886370 ], [ -122.302380, 37.886031 ], [ -122.304611, 37.885896 ], [ -122.304525, 37.885354 ], [ -122.306843, 37.885625 ], [ -122.307186, 37.887115 ], [ -122.305899, 37.887318 ], [ -122.302122, 37.887522 ], [ -122.302122, 37.887657 ], [ -122.300749, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884744 ], [ -122.303667, 37.883660 ], [ -122.304010, 37.883593 ], [ -122.304611, 37.885896 ], [ -122.304268, 37.885896 ], [ -122.303925, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885896 ], [ -122.303925, 37.884744 ], [ -122.303667, 37.883660 ], [ -122.304010, 37.883593 ], [ -122.304611, 37.885896 ], [ -122.304268, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.885354 ], [ -122.304010, 37.883593 ], [ -122.303495, 37.883728 ], [ -122.303495, 37.882915 ], [ -122.302637, 37.883119 ], [ -122.302380, 37.882509 ], [ -122.303324, 37.882306 ], [ -122.305298, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306843, 37.885625 ], [ -122.304525, 37.885354 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306843, 37.885625 ], [ -122.304525, 37.885354 ], [ -122.304010, 37.883593 ], [ -122.303495, 37.883728 ], [ -122.303495, 37.882915 ], [ -122.302637, 37.883119 ], [ -122.302380, 37.882509 ], [ -122.303324, 37.882306 ], [ -122.305298, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306843, 37.885625 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.883728 ], [ -122.303667, 37.883660 ], [ -122.304268, 37.885896 ], [ -122.304010, 37.885896 ], [ -122.303324, 37.883728 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304010, 37.885896 ], [ -122.303324, 37.883728 ], [ -122.303667, 37.883660 ], [ -122.304268, 37.885896 ], [ -122.304010, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.304010, 37.885896 ], [ -122.303495, 37.885964 ], [ -122.302980, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303495, 37.885964 ], [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.304010, 37.885896 ], [ -122.303495, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.884067 ], [ -122.299805, 37.884135 ], [ -122.300062, 37.883389 ], [ -122.300234, 37.883254 ], [ -122.301006, 37.883457 ], [ -122.302637, 37.883119 ], [ -122.302980, 37.883796 ], [ -122.303495, 37.885964 ], [ -122.300577, 37.886370 ], [ -122.299976, 37.884067 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.886370 ], [ -122.299976, 37.884067 ], [ -122.299805, 37.884135 ], [ -122.300062, 37.883389 ], [ -122.300234, 37.883254 ], [ -122.301006, 37.883457 ], [ -122.302637, 37.883119 ], [ -122.302980, 37.883796 ], [ -122.303495, 37.885964 ], [ -122.300577, 37.886370 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302637, 37.883119 ], [ -122.303495, 37.882915 ], [ -122.303495, 37.883728 ], [ -122.302980, 37.883796 ], [ -122.302637, 37.883119 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.302637, 37.883119 ], [ -122.303495, 37.882915 ], [ -122.303495, 37.883728 ], [ -122.302980, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.883254 ], [ -122.300320, 37.883119 ], [ -122.300234, 37.882915 ], [ -122.302380, 37.882509 ], [ -122.302637, 37.883119 ], [ -122.301006, 37.883457 ], [ -122.300406, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883457 ], [ -122.300406, 37.883254 ], [ -122.300320, 37.883119 ], [ -122.300234, 37.882915 ], [ -122.302380, 37.882509 ], [ -122.302637, 37.883119 ], [ -122.301006, 37.883457 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298517, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ], [ -122.298517, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298517, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297659, 37.897411 ], [ -122.298517, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298088, 37.898766 ], [ -122.297659, 37.897411 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898766 ], [ -122.297659, 37.897411 ], [ -122.298517, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298088, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.297659, 37.897411 ], [ -122.298088, 37.898766 ], [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ], [ -122.297659, 37.897411 ], [ -122.298088, 37.898766 ], [ -122.297230, 37.898901 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296286, 37.898969 ], [ -122.295771, 37.897817 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.898969 ], [ -122.295771, 37.897817 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296286, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895989 ], [ -122.297144, 37.895785 ], [ -122.297659, 37.897411 ], [ -122.296801, 37.897546 ], [ -122.296286, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895989 ], [ -122.297144, 37.895785 ], [ -122.297659, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896124 ], [ -122.296286, 37.895989 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ], [ -122.295427, 37.896124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295942, 37.897750 ], [ -122.295427, 37.896124 ], [ -122.296286, 37.895989 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.294655, 37.897750 ], [ -122.295771, 37.897817 ], [ -122.296286, 37.898969 ], [ -122.294569, 37.898766 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.898969 ], [ -122.294569, 37.898766 ], [ -122.294655, 37.897750 ], [ -122.295771, 37.897817 ], [ -122.296286, 37.898969 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.895650 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298517, 37.897208 ], [ -122.298002, 37.895650 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298517, 37.897208 ], [ -122.298002, 37.895650 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298517, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.895785 ], [ -122.298002, 37.895650 ], [ -122.298517, 37.897208 ], [ -122.297659, 37.897411 ], [ -122.297144, 37.895785 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297659, 37.897411 ], [ -122.297144, 37.895785 ], [ -122.298002, 37.895650 ], [ -122.298517, 37.897208 ], [ -122.297659, 37.897411 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298002, 37.895650 ], [ -122.297487, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.895650 ], [ -122.297487, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298002, 37.895650 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296629, 37.894160 ], [ -122.297487, 37.893957 ], [ -122.298002, 37.895650 ], [ -122.297144, 37.895785 ], [ -122.296629, 37.894160 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.895785 ], [ -122.296629, 37.894160 ], [ -122.297487, 37.893957 ], [ -122.298002, 37.895650 ], [ -122.297144, 37.895785 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895108 ], [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895108 ], [ -122.299633, 37.895311 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.891992 ], [ -122.299461, 37.891857 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299118, 37.893686 ], [ -122.298603, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.298603, 37.891992 ], [ -122.299461, 37.891857 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299118, 37.893686 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298603, 37.891992 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298603, 37.891992 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.892399 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297487, 37.893957 ], [ -122.296972, 37.892399 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.893957 ], [ -122.296972, 37.892399 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297487, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.296629, 37.894160 ], [ -122.297144, 37.895785 ], [ -122.296286, 37.895989 ], [ -122.295771, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895989 ], [ -122.295771, 37.894295 ], [ -122.296629, 37.894160 ], [ -122.297144, 37.895785 ], [ -122.296286, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894566 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897817 ], [ -122.294655, 37.894566 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.294655, 37.894566 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897817 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894566 ], [ -122.295771, 37.897817 ], [ -122.294655, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.294655, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894566 ], [ -122.295771, 37.897817 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895989 ], [ -122.295427, 37.896124 ], [ -122.294912, 37.894498 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896124 ], [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895989 ], [ -122.295427, 37.896124 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892737 ], [ -122.296114, 37.892534 ], [ -122.296629, 37.894160 ], [ -122.295771, 37.894295 ], [ -122.295256, 37.892737 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.295256, 37.892737 ], [ -122.296114, 37.892534 ], [ -122.296629, 37.894160 ], [ -122.295771, 37.894295 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.892534 ], [ -122.296972, 37.892399 ], [ -122.297487, 37.893957 ], [ -122.296629, 37.894160 ], [ -122.296114, 37.892534 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296629, 37.894160 ], [ -122.296114, 37.892534 ], [ -122.296972, 37.892399 ], [ -122.297487, 37.893957 ], [ -122.296629, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.892873 ], [ -122.295256, 37.892737 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ], [ -122.294397, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.294397, 37.892873 ], [ -122.295256, 37.892737 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.294397, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894566 ], [ -122.294140, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894566 ], [ -122.294140, 37.892873 ], [ -122.294397, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894566 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294569, 37.898766 ], [ -122.293711, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.293711, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294569, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898427 ], [ -122.292852, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293711, 37.898562 ], [ -122.293711, 37.898698 ], [ -122.292852, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898698 ], [ -122.292852, 37.898427 ], [ -122.292852, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293711, 37.898562 ], [ -122.293711, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.292681, 37.897750 ], [ -122.292852, 37.897750 ], [ -122.292852, 37.898427 ], [ -122.292681, 37.898359 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898427 ], [ -122.292681, 37.898359 ], [ -122.292681, 37.897750 ], [ -122.292852, 37.897750 ], [ -122.292852, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897750 ], [ -122.292681, 37.897750 ], [ -122.292681, 37.896734 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.897750 ], [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897750 ], [ -122.292681, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291651, 37.898156 ], [ -122.291737, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292681, 37.898359 ], [ -122.291651, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.291651, 37.898156 ], [ -122.291737, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292681, 37.898359 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.897953 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896734 ], [ -122.291651, 37.898156 ], [ -122.290792, 37.897953 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291651, 37.898156 ], [ -122.290792, 37.897953 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896734 ], [ -122.291651, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289934, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290792, 37.897953 ], [ -122.289934, 37.897885 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.897953 ], [ -122.289934, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290792, 37.897953 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.289934, 37.897885 ], [ -122.289076, 37.897885 ], [ -122.289162, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289076, 37.897885 ], [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.289934, 37.897885 ], [ -122.289076, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293882, 37.894702 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.897750 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894905 ], [ -122.293882, 37.894702 ], [ -122.293882, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292852, 37.897750 ], [ -122.293024, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897750 ], [ -122.293024, 37.894905 ], [ -122.293882, 37.894702 ], [ -122.293882, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292852, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.293024, 37.894905 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292767, 37.894905 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292767, 37.894905 ], [ -122.293024, 37.894905 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894566 ], [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894566 ], [ -122.293882, 37.894702 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894905 ], [ -122.293110, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894905 ], [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293024, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292852, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.292852, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293024, 37.894905 ], [ -122.292767, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292852, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291822, 37.894905 ], [ -122.291908, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894905 ], [ -122.291908, 37.892873 ], [ -122.292852, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291822, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290106, 37.894837 ], [ -122.292767, 37.894905 ], [ -122.292681, 37.896734 ], [ -122.290020, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290106, 37.894837 ], [ -122.292767, 37.894905 ], [ -122.292681, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289248, 37.894769 ], [ -122.290106, 37.894837 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289248, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.289248, 37.894769 ], [ -122.290106, 37.894837 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290964, 37.894837 ], [ -122.291050, 37.892941 ], [ -122.291908, 37.893008 ], [ -122.291822, 37.894905 ], [ -122.290964, 37.894837 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894905 ], [ -122.290964, 37.894837 ], [ -122.291050, 37.892941 ], [ -122.291908, 37.893008 ], [ -122.291822, 37.894905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.892941 ], [ -122.291050, 37.892941 ], [ -122.290964, 37.894837 ], [ -122.290106, 37.894837 ], [ -122.290192, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.894837 ], [ -122.290192, 37.892941 ], [ -122.291050, 37.892941 ], [ -122.290964, 37.894837 ], [ -122.290106, 37.894837 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289248, 37.894769 ], [ -122.289333, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290106, 37.894837 ], [ -122.289248, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.894837 ], [ -122.289248, 37.894769 ], [ -122.289333, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290106, 37.894837 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.289162, 37.896666 ], [ -122.289076, 37.897885 ], [ -122.288561, 37.897953 ], [ -122.288218, 37.898156 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.898156 ], [ -122.288218, 37.896598 ], [ -122.289162, 37.896666 ], [ -122.289076, 37.897885 ], [ -122.288561, 37.897953 ], [ -122.288218, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288218, 37.898156 ], [ -122.288132, 37.898156 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898156 ], [ -122.288218, 37.896598 ], [ -122.288218, 37.898156 ], [ -122.288132, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287188, 37.898698 ], [ -122.287273, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.898698 ], [ -122.287273, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287188, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287188, 37.898156 ], [ -122.287188, 37.898698 ], [ -122.287016, 37.898766 ], [ -122.287016, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898766 ], [ -122.287016, 37.898156 ], [ -122.287188, 37.898156 ], [ -122.287188, 37.898698 ], [ -122.287016, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ], [ -122.287102, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287102, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288303, 37.894769 ], [ -122.289248, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894769 ], [ -122.289248, 37.894769 ], [ -122.289162, 37.896666 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "GEOID10": "060014201002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.895921 ], [ -122.288046, 37.895921 ], [ -122.288046, 37.895582 ], [ -122.288475, 37.895582 ], [ -122.288475, 37.895921 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288218, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287359, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896598 ], [ -122.287359, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288218, 37.896598 ], [ -122.287273, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287273, 37.896598 ], [ -122.287102, 37.896598 ], [ -122.287188, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896598 ], [ -122.287188, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287273, 37.896598 ], [ -122.287102, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.289333, 37.892941 ], [ -122.289248, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ], [ -122.289333, 37.892941 ], [ -122.289248, 37.894769 ], [ -122.288303, 37.894769 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288561, 37.894431 ], [ -122.288132, 37.894431 ], [ -122.288132, 37.894092 ], [ -122.288561, 37.894092 ], [ -122.288561, 37.894431 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.288389, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287445, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894769 ], [ -122.287445, 37.892873 ], [ -122.288389, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287359, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287359, 37.894769 ], [ -122.287188, 37.894769 ], [ -122.287188, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.894769 ], [ -122.287188, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287359, 37.894769 ], [ -122.287188, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.891857 ], [ -122.299547, 37.891857 ], [ -122.299719, 37.892331 ], [ -122.299633, 37.892331 ], [ -122.299461, 37.891857 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892331 ], [ -122.299461, 37.891857 ], [ -122.299547, 37.891857 ], [ -122.299719, 37.892331 ], [ -122.299633, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890367 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891857 ], [ -122.298603, 37.891992 ], [ -122.298088, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.891992 ], [ -122.298088, 37.890367 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891857 ], [ -122.298603, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891857 ], [ -122.299461, 37.891857 ], [ -122.298946, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.891857 ], [ -122.298946, 37.890299 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891857 ], [ -122.299461, 37.891857 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890231 ], [ -122.299290, 37.890231 ], [ -122.299976, 37.890096 ], [ -122.299376, 37.890299 ], [ -122.299032, 37.890231 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299376, 37.890299 ], [ -122.299032, 37.890231 ], [ -122.299290, 37.890231 ], [ -122.299976, 37.890096 ], [ -122.299376, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "GEOID10": "060014205001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890367 ], [ -122.298088, 37.890367 ], [ -122.298088, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "GEOID10": "060014205001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890367 ], [ -122.298088, 37.890299 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890367 ], [ -122.298088, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.298088, 37.890367 ], [ -122.298174, 37.890705 ], [ -122.298603, 37.891992 ], [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ], [ -122.298088, 37.890367 ], [ -122.298174, 37.890705 ], [ -122.298603, 37.891992 ], [ -122.297745, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.890502 ], [ -122.297316, 37.890502 ], [ -122.297316, 37.890231 ], [ -122.297487, 37.890231 ], [ -122.297487, 37.890502 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887793 ], [ -122.299204, 37.887793 ], [ -122.299976, 37.890096 ], [ -122.299032, 37.890231 ], [ -122.298260, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890231 ], [ -122.298260, 37.887793 ], [ -122.299204, 37.887793 ], [ -122.299976, 37.890096 ], [ -122.299032, 37.890231 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298174, 37.887793 ], [ -122.298260, 37.887793 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ], [ -122.298174, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298174, 37.887793 ], [ -122.298260, 37.887793 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297831, 37.889622 ], [ -122.296972, 37.886912 ], [ -122.297831, 37.886777 ], [ -122.297831, 37.886709 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887793 ], [ -122.298174, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298088, 37.890299 ], [ -122.297831, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.297831, 37.889622 ], [ -122.296972, 37.886912 ], [ -122.297831, 37.886777 ], [ -122.297831, 37.886709 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887793 ], [ -122.298174, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298088, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297316, 37.890773 ], [ -122.297745, 37.892196 ], [ -122.296972, 37.892399 ], [ -122.296286, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.892399 ], [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297316, 37.890773 ], [ -122.297745, 37.892196 ], [ -122.296972, 37.892399 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890502 ], [ -122.296286, 37.890434 ], [ -122.296972, 37.892399 ], [ -122.296114, 37.892534 ], [ -122.295427, 37.890502 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.892534 ], [ -122.295427, 37.890502 ], [ -122.296286, 37.890434 ], [ -122.296972, 37.892399 ], [ -122.296114, 37.892534 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "GEOID10": "060014205001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890434 ], [ -122.296286, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "GEOID10": "060014205001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295427, 37.890434 ], [ -122.296286, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295427, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890570 ], [ -122.295427, 37.890502 ], [ -122.296114, 37.892534 ], [ -122.295256, 37.892737 ], [ -122.294569, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892737 ], [ -122.294569, 37.890570 ], [ -122.295427, 37.890502 ], [ -122.296114, 37.892534 ], [ -122.295256, 37.892737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294569, 37.890570 ], [ -122.295256, 37.892737 ], [ -122.294397, 37.892873 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294569, 37.890570 ], [ -122.295256, 37.892737 ], [ -122.294397, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "GEOID10": "060014205001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890502 ], [ -122.295427, 37.890502 ], [ -122.294741, 37.890570 ], [ -122.294569, 37.890502 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "GEOID10": "060014205001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294741, 37.890570 ], [ -122.294569, 37.890502 ], [ -122.295427, 37.890502 ], [ -122.294741, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887115 ], [ -122.296972, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297144, 37.890367 ], [ -122.296114, 37.887115 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.296114, 37.887115 ], [ -122.296972, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297144, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.296114, 37.887115 ], [ -122.297144, 37.890367 ], [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ], [ -122.296114, 37.887115 ], [ -122.297144, 37.890367 ], [ -122.296286, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295427, 37.890434 ], [ -122.294483, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890434 ], [ -122.294483, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295427, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294483, 37.887386 ], [ -122.295427, 37.890434 ], [ -122.294569, 37.890502 ], [ -122.293625, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890502 ], [ -122.293625, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294483, 37.887386 ], [ -122.295427, 37.890434 ], [ -122.294569, 37.890502 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299633, 37.887522 ], [ -122.301006, 37.887657 ], [ -122.300749, 37.887793 ], [ -122.298260, 37.887793 ], [ -122.297916, 37.886709 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887793 ], [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299633, 37.887522 ], [ -122.301006, 37.887657 ], [ -122.300749, 37.887793 ], [ -122.298260, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.887522 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297316, 37.884609 ], [ -122.298346, 37.884406 ], [ -122.299976, 37.884067 ], [ -122.300148, 37.885151 ], [ -122.301006, 37.887657 ], [ -122.299633, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887657 ], [ -122.299633, 37.887522 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297316, 37.884609 ], [ -122.298346, 37.884406 ], [ -122.299976, 37.884067 ], [ -122.300148, 37.885151 ], [ -122.301006, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297659, 37.886709 ], [ -122.297831, 37.886709 ], [ -122.297831, 37.886777 ], [ -122.296972, 37.886844 ], [ -122.297659, 37.886709 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.886844 ], [ -122.297659, 37.886709 ], [ -122.297831, 37.886709 ], [ -122.297831, 37.886777 ], [ -122.296972, 37.886844 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.883254 ], [ -122.299032, 37.883051 ], [ -122.300234, 37.882915 ], [ -122.300320, 37.883051 ], [ -122.300320, 37.883254 ], [ -122.300062, 37.883389 ], [ -122.299805, 37.884135 ], [ -122.298346, 37.884406 ], [ -122.298002, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298346, 37.884406 ], [ -122.298002, 37.883254 ], [ -122.299032, 37.883051 ], [ -122.300234, 37.882915 ], [ -122.300320, 37.883051 ], [ -122.300320, 37.883254 ], [ -122.300062, 37.883389 ], [ -122.299805, 37.884135 ], [ -122.298346, 37.884406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.884677 ], [ -122.297316, 37.884609 ], [ -122.297916, 37.886709 ], [ -122.297831, 37.886709 ], [ -122.297144, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297831, 37.886709 ], [ -122.297144, 37.884677 ], [ -122.297316, 37.884609 ], [ -122.297916, 37.886709 ], [ -122.297831, 37.886709 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.883525 ], [ -122.298002, 37.883254 ], [ -122.298346, 37.884406 ], [ -122.297316, 37.884609 ], [ -122.296972, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297316, 37.884609 ], [ -122.296972, 37.883525 ], [ -122.298002, 37.883254 ], [ -122.298346, 37.884406 ], [ -122.297316, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.886980 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.887115 ], [ -122.296114, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887115 ], [ -122.296114, 37.886980 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.887115 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887183 ], [ -122.296114, 37.886980 ], [ -122.296114, 37.887115 ], [ -122.295256, 37.887251 ], [ -122.295256, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.295256, 37.887183 ], [ -122.296114, 37.886980 ], [ -122.296114, 37.887115 ], [ -122.295256, 37.887251 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.295256, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294483, 37.887386 ], [ -122.294397, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295256, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294483, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293539, 37.884541 ], [ -122.294397, 37.884338 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.887318 ], [ -122.293539, 37.884541 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.884338 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883999 ], [ -122.296886, 37.883864 ], [ -122.297831, 37.886709 ], [ -122.296972, 37.886844 ], [ -122.296028, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.886844 ], [ -122.296028, 37.883999 ], [ -122.296886, 37.883864 ], [ -122.297831, 37.886709 ], [ -122.296972, 37.886844 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.296028, 37.883999 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.886980 ], [ -122.295170, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.886980 ], [ -122.295170, 37.884202 ], [ -122.296028, 37.883999 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883864 ], [ -122.297058, 37.883796 ], [ -122.297316, 37.884609 ], [ -122.297144, 37.884677 ], [ -122.296886, 37.883864 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.884677 ], [ -122.296886, 37.883864 ], [ -122.297058, 37.883796 ], [ -122.297316, 37.884609 ], [ -122.297144, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "GEOID10": "060014205002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.883525 ], [ -122.296972, 37.883525 ], [ -122.297058, 37.883796 ], [ -122.296886, 37.883864 ], [ -122.296801, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "GEOID10": "060014205002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883864 ], [ -122.296801, 37.883525 ], [ -122.296972, 37.883525 ], [ -122.297058, 37.883796 ], [ -122.296886, 37.883864 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296114, 37.886980 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887183 ], [ -122.294397, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296114, 37.886980 ], [ -122.295256, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.882983 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884202 ], [ -122.294397, 37.884338 ], [ -122.293882, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.884338 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884202 ], [ -122.294397, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.891992 ], [ -122.293196, 37.891044 ], [ -122.293196, 37.890638 ], [ -122.293625, 37.890570 ], [ -122.294397, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.293882, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293882, 37.891992 ], [ -122.293196, 37.891044 ], [ -122.293196, 37.890638 ], [ -122.293625, 37.890570 ], [ -122.294397, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.891044 ], [ -122.293882, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293196, 37.891044 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293196, 37.891044 ], [ -122.293882, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890773 ], [ -122.293196, 37.891044 ], [ -122.293110, 37.892873 ], [ -122.292852, 37.892873 ], [ -122.292938, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892873 ], [ -122.292938, 37.890773 ], [ -122.293196, 37.891044 ], [ -122.293110, 37.892873 ], [ -122.292852, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890502 ], [ -122.293797, 37.890570 ], [ -122.293711, 37.890570 ], [ -122.294569, 37.890502 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294054, 37.890638 ], [ -122.293882, 37.890638 ], [ -122.293882, 37.890434 ], [ -122.294054, 37.890434 ], [ -122.294054, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890638 ], [ -122.293196, 37.890638 ], [ -122.293196, 37.891044 ], [ -122.292938, 37.890638 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.891044 ], [ -122.292938, 37.890638 ], [ -122.293196, 37.890638 ], [ -122.293196, 37.891044 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "GEOID10": "060014206003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.890638 ], [ -122.292938, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "GEOID10": "060014206003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890638 ], [ -122.292938, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291994, 37.890705 ], [ -122.292938, 37.890638 ], [ -122.292852, 37.892873 ], [ -122.291908, 37.892873 ], [ -122.291994, 37.890705 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.291994, 37.890705 ], [ -122.292938, 37.890638 ], [ -122.292852, 37.892873 ], [ -122.291908, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292767, 37.890638 ], [ -122.291908, 37.890638 ], [ -122.292938, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.292938, 37.890570 ], [ -122.292767, 37.890638 ], [ -122.291908, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.292767, 37.887793 ], [ -122.292767, 37.887657 ], [ -122.293625, 37.887657 ], [ -122.293625, 37.887522 ], [ -122.294569, 37.890502 ], [ -122.293711, 37.890570 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890570 ], [ -122.293625, 37.890434 ], [ -122.292767, 37.887793 ], [ -122.292767, 37.887657 ], [ -122.293625, 37.887657 ], [ -122.294569, 37.890502 ], [ -122.293711, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.889825 ], [ -122.292509, 37.887725 ], [ -122.292767, 37.887657 ], [ -122.292767, 37.887793 ], [ -122.293625, 37.890367 ], [ -122.293196, 37.889825 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890367 ], [ -122.293196, 37.889825 ], [ -122.292509, 37.887725 ], [ -122.292767, 37.887657 ], [ -122.292767, 37.887793 ], [ -122.293625, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293196, 37.889825 ], [ -122.293711, 37.890570 ], [ -122.292938, 37.890570 ], [ -122.292166, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293196, 37.889825 ], [ -122.293711, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.888064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.291136, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.887996 ], [ -122.292166, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291136, 37.888064 ], [ -122.291136, 37.887996 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.888064 ], [ -122.291136, 37.887996 ], [ -122.292166, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291136, 37.888064 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.892941 ], [ -122.291136, 37.890705 ], [ -122.291994, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.291050, 37.892941 ], [ -122.291136, 37.890705 ], [ -122.291994, 37.890705 ], [ -122.291908, 37.893008 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290277, 37.890773 ], [ -122.291136, 37.890705 ], [ -122.291050, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290277, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.892941 ], [ -122.290277, 37.890773 ], [ -122.291136, 37.890705 ], [ -122.291050, 37.892941 ], [ -122.290192, 37.892941 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291479, 37.890773 ], [ -122.291307, 37.890773 ], [ -122.291307, 37.890570 ], [ -122.291479, 37.890570 ], [ -122.291479, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289419, 37.890841 ], [ -122.290277, 37.890773 ], [ -122.290192, 37.892941 ], [ -122.289333, 37.892941 ], [ -122.289419, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.892941 ], [ -122.289419, 37.890841 ], [ -122.290277, 37.890773 ], [ -122.290192, 37.892941 ], [ -122.289333, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288904, 37.890841 ], [ -122.289419, 37.890841 ], [ -122.289333, 37.892941 ], [ -122.288475, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.892941 ], [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288904, 37.890841 ], [ -122.289419, 37.890841 ], [ -122.289333, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.291136, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.890705 ], [ -122.290792, 37.890773 ], [ -122.290106, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890773 ], [ -122.290106, 37.888267 ], [ -122.291136, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.890705 ], [ -122.290792, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "GEOID10": "060014206003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888199 ], [ -122.291136, 37.887996 ], [ -122.291136, 37.888064 ], [ -122.290106, 37.888267 ], [ -122.290106, 37.888199 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "GEOID10": "060014206003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.290106, 37.888199 ], [ -122.291136, 37.887996 ], [ -122.291136, 37.888064 ], [ -122.290106, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890773 ], [ -122.289934, 37.890773 ], [ -122.289162, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289934, 37.890773 ], [ -122.289162, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890773 ], [ -122.289934, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289162, 37.888470 ], [ -122.289934, 37.890773 ], [ -122.288904, 37.890841 ], [ -122.288303, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288904, 37.890841 ], [ -122.288303, 37.888673 ], [ -122.289162, 37.888470 ], [ -122.289934, 37.890773 ], [ -122.288904, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888402 ], [ -122.290106, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289162, 37.888470 ], [ -122.289162, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888470 ], [ -122.289162, 37.888402 ], [ -122.290106, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289162, 37.888470 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.884677 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.887318 ], [ -122.293625, 37.887522 ], [ -122.292681, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887522 ], [ -122.292681, 37.884677 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.887318 ], [ -122.293625, 37.887522 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "GEOID10": "060014206003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887793 ], [ -122.292509, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.292166, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "GEOID10": "060014206003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292166, 37.887793 ], [ -122.292509, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.884880 ], [ -122.292681, 37.884677 ], [ -122.293625, 37.887522 ], [ -122.293625, 37.887657 ], [ -122.292767, 37.887657 ], [ -122.291822, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.887657 ], [ -122.291822, 37.884880 ], [ -122.292681, 37.884677 ], [ -122.293625, 37.887522 ], [ -122.293625, 37.887657 ], [ -122.292767, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884948 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887657 ], [ -122.292509, 37.887725 ], [ -122.291565, 37.884948 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292509, 37.887725 ], [ -122.291565, 37.884948 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887657 ], [ -122.292509, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.291565, 37.884948 ], [ -122.292509, 37.887725 ], [ -122.292166, 37.887793 ], [ -122.291222, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887793 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884948 ], [ -122.292509, 37.887725 ], [ -122.292166, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293367, 37.884202 ], [ -122.293024, 37.883051 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.884338 ], [ -122.293539, 37.884541 ], [ -122.293367, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293539, 37.884541 ], [ -122.293367, 37.884202 ], [ -122.293024, 37.883051 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.884338 ], [ -122.293539, 37.884541 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.884406 ], [ -122.292080, 37.883186 ], [ -122.293024, 37.883051 ], [ -122.293539, 37.884541 ], [ -122.292681, 37.884677 ], [ -122.292595, 37.884406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.884677 ], [ -122.292595, 37.884406 ], [ -122.292080, 37.883186 ], [ -122.293024, 37.883051 ], [ -122.293539, 37.884541 ], [ -122.292681, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291307, 37.883254 ], [ -122.292080, 37.883186 ], [ -122.292681, 37.884677 ], [ -122.291822, 37.884880 ], [ -122.291307, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.884880 ], [ -122.291307, 37.883254 ], [ -122.292080, 37.883186 ], [ -122.292681, 37.884677 ], [ -122.291822, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.291222, 37.885015 ], [ -122.292166, 37.887793 ], [ -122.291136, 37.887996 ], [ -122.290192, 37.885219 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.887996 ], [ -122.290192, 37.885219 ], [ -122.291222, 37.885015 ], [ -122.292166, 37.887793 ], [ -122.291136, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886031 ], [ -122.290106, 37.888199 ], [ -122.288303, 37.888606 ], [ -122.289333, 37.886031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888606 ], [ -122.289333, 37.886031 ], [ -122.290106, 37.888199 ], [ -122.288303, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.886031 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.885693 ], [ -122.291136, 37.887996 ], [ -122.290106, 37.888199 ], [ -122.289333, 37.886031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888199 ], [ -122.289333, 37.886031 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.885693 ], [ -122.291136, 37.887996 ], [ -122.290106, 37.888199 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290449, 37.883254 ], [ -122.290878, 37.883322 ], [ -122.291222, 37.883999 ], [ -122.291565, 37.884948 ], [ -122.291222, 37.885015 ], [ -122.290449, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.290449, 37.883254 ], [ -122.290878, 37.883322 ], [ -122.291222, 37.883999 ], [ -122.291565, 37.884948 ], [ -122.291222, 37.885015 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.883322 ], [ -122.291136, 37.883254 ], [ -122.291307, 37.883254 ], [ -122.291822, 37.884880 ], [ -122.291565, 37.884948 ], [ -122.290878, 37.883322 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884948 ], [ -122.290878, 37.883322 ], [ -122.291136, 37.883254 ], [ -122.291307, 37.883254 ], [ -122.291822, 37.884880 ], [ -122.291565, 37.884948 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884541 ], [ -122.290363, 37.883051 ], [ -122.290449, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885219 ], [ -122.289848, 37.884541 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.883051 ], [ -122.290449, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885219 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885896 ], [ -122.289677, 37.884880 ], [ -122.289762, 37.884948 ], [ -122.289333, 37.886031 ], [ -122.289333, 37.885896 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885896 ], [ -122.289677, 37.884880 ], [ -122.289762, 37.884948 ], [ -122.289333, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.289333, 37.883322 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289762, 37.884948 ], [ -122.288818, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289762, 37.884948 ], [ -122.288818, 37.884744 ], [ -122.289333, 37.883322 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289762, 37.884948 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.883051 ], [ -122.296028, 37.883051 ], [ -122.296801, 37.883525 ], [ -122.296886, 37.883864 ], [ -122.296028, 37.883999 ], [ -122.295771, 37.883051 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883999 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883051 ], [ -122.296801, 37.883525 ], [ -122.296886, 37.883864 ], [ -122.296028, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294741, 37.882780 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883999 ], [ -122.295170, 37.884202 ], [ -122.294741, 37.882780 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.294741, 37.882780 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883999 ], [ -122.295170, 37.884202 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "GEOID10": "060014201003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288733, 37.892128 ], [ -122.288389, 37.892128 ], [ -122.288389, 37.891721 ], [ -122.288733, 37.891721 ], [ -122.288733, 37.892128 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287531, 37.890909 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288389, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287531, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.287531, 37.890909 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288389, 37.892873 ], [ -122.287445, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288818, 37.890841 ], [ -122.287703, 37.890841 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.288818, 37.890773 ], [ -122.288818, 37.890841 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890976 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891315 ], [ -122.287445, 37.892873 ], [ -122.287188, 37.892873 ], [ -122.287188, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892873 ], [ -122.287188, 37.890976 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891315 ], [ -122.287445, 37.892873 ], [ -122.287188, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "GEOID10": "060014206002017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287188, 37.890976 ], [ -122.286673, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "GEOID10": "060014206002017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287188, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286501, 37.890976 ], [ -122.285728, 37.890976 ], [ -122.286673, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.286501, 37.890976 ], [ -122.285728, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888741 ], [ -122.288303, 37.888606 ], [ -122.288303, 37.888876 ], [ -122.288904, 37.890705 ], [ -122.288818, 37.890841 ], [ -122.288132, 37.888741 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890841 ], [ -122.288132, 37.888741 ], [ -122.288303, 37.888606 ], [ -122.288303, 37.888876 ], [ -122.288904, 37.890705 ], [ -122.288818, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288132, 37.888741 ], [ -122.288818, 37.890773 ], [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888741 ], [ -122.288818, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.888470 ], [ -122.289162, 37.888470 ], [ -122.288303, 37.888673 ], [ -122.288990, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.888673 ], [ -122.288733, 37.888673 ], [ -122.288733, 37.888402 ], [ -122.288990, 37.888402 ], [ -122.288990, 37.888673 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.888944 ], [ -122.288218, 37.888606 ], [ -122.287102, 37.889080 ], [ -122.287359, 37.888944 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.888944 ], [ -122.287617, 37.888944 ], [ -122.287617, 37.888673 ], [ -122.287960, 37.888673 ], [ -122.287960, 37.888944 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.888606 ], [ -122.286415, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.287273, 37.888267 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.888606 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.286072, 37.888606 ], [ -122.286415, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.287273, 37.888267 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285728, 37.890976 ], [ -122.285213, 37.889554 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.285213, 37.889554 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285728, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.285728, 37.891044 ], [ -122.284527, 37.891112 ], [ -122.284527, 37.891044 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891112 ], [ -122.284527, 37.891044 ], [ -122.285728, 37.891044 ], [ -122.284527, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284098, 37.889351 ], [ -122.285213, 37.889554 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.284098, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.284098, 37.889351 ], [ -122.285213, 37.889554 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891044 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "GEOID10": "060014206001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891180 ], [ -122.283497, 37.891112 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "GEOID10": "060014206001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891180 ], [ -122.283497, 37.891112 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282896, 37.889147 ], [ -122.283497, 37.889215 ], [ -122.284098, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ], [ -122.282896, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.282896, 37.889147 ], [ -122.283497, 37.889215 ], [ -122.284098, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.889486 ], [ -122.285213, 37.889554 ], [ -122.285213, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.285213, 37.889486 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.889486 ], [ -122.285213, 37.889554 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.888673 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887657 ], [ -122.286072, 37.888606 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887657 ], [ -122.286072, 37.888606 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284956, 37.888538 ], [ -122.285299, 37.887386 ], [ -122.285385, 37.887386 ], [ -122.285042, 37.888538 ], [ -122.285128, 37.889486 ], [ -122.284956, 37.888538 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889486 ], [ -122.284956, 37.888538 ], [ -122.285299, 37.887386 ], [ -122.285385, 37.887386 ], [ -122.285042, 37.888538 ], [ -122.285128, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284441, 37.889418 ], [ -122.284098, 37.889351 ], [ -122.284098, 37.889283 ], [ -122.285213, 37.889486 ], [ -122.285213, 37.889554 ], [ -122.284441, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.284441, 37.889418 ], [ -122.284098, 37.889351 ], [ -122.284098, 37.889283 ], [ -122.285213, 37.889486 ], [ -122.285213, 37.889554 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284098, 37.889283 ], [ -122.284098, 37.889351 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284098, 37.889351 ], [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284098, 37.889283 ], [ -122.284098, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283754, 37.889147 ], [ -122.283754, 37.888809 ], [ -122.284355, 37.887183 ], [ -122.285299, 37.887386 ], [ -122.284956, 37.888538 ], [ -122.285128, 37.889486 ], [ -122.283754, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889486 ], [ -122.283754, 37.889147 ], [ -122.283754, 37.888809 ], [ -122.284355, 37.887183 ], [ -122.285299, 37.887386 ], [ -122.284956, 37.888538 ], [ -122.285128, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.889080 ], [ -122.282724, 37.888606 ], [ -122.283325, 37.886912 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889147 ], [ -122.282810, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282724, 37.888606 ], [ -122.283325, 37.886912 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889147 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885896 ], [ -122.289333, 37.886031 ], [ -122.288303, 37.888606 ], [ -122.288218, 37.888606 ], [ -122.289333, 37.885896 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.289333, 37.886031 ], [ -122.288303, 37.888606 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.888267 ], [ -122.287703, 37.887657 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885896 ], [ -122.288218, 37.888606 ], [ -122.287102, 37.889012 ], [ -122.287273, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287273, 37.888267 ], [ -122.287703, 37.887657 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885896 ], [ -122.288218, 37.888606 ], [ -122.287102, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.287960, 37.884541 ], [ -122.288818, 37.884744 ], [ -122.287703, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.286758, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287531, 37.887928 ], [ -122.286758, 37.887725 ], [ -122.287960, 37.884541 ], [ -122.288818, 37.884744 ], [ -122.287703, 37.887657 ], [ -122.287531, 37.887928 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286329, 37.886573 ], [ -122.286673, 37.885693 ], [ -122.287531, 37.885828 ], [ -122.287188, 37.886777 ], [ -122.286329, 37.886573 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.886777 ], [ -122.286329, 37.886573 ], [ -122.286673, 37.885693 ], [ -122.287531, 37.885828 ], [ -122.287188, 37.886777 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.288132, 37.884270 ], [ -122.287531, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286329, 37.886573 ], [ -122.287188, 37.886777 ], [ -122.286758, 37.887725 ], [ -122.285385, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.288132, 37.884270 ], [ -122.287531, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286329, 37.886573 ], [ -122.287188, 37.886777 ], [ -122.286758, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884541 ], [ -122.288561, 37.883051 ], [ -122.289333, 37.883322 ], [ -122.288818, 37.884744 ], [ -122.287960, 37.884541 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.287960, 37.884541 ], [ -122.288561, 37.883051 ], [ -122.289333, 37.883322 ], [ -122.288818, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ], [ -122.285986, 37.885557 ], [ -122.286587, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ], [ -122.285986, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ], [ -122.285299, 37.887386 ], [ -122.285986, 37.885557 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887386 ], [ -122.285986, 37.885557 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ], [ -122.285299, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.285128, 37.885354 ], [ -122.285986, 37.885557 ], [ -122.285299, 37.887386 ], [ -122.284355, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887386 ], [ -122.284355, 37.887183 ], [ -122.285128, 37.885354 ], [ -122.285986, 37.885557 ], [ -122.285299, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.885354 ], [ -122.285728, 37.883660 ], [ -122.287016, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885557 ], [ -122.285128, 37.885354 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.285128, 37.885354 ], [ -122.285728, 37.883660 ], [ -122.287016, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884135 ], [ -122.285728, 37.883593 ], [ -122.285728, 37.883660 ], [ -122.284784, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.284527, 37.884135 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.284527, 37.884135 ], [ -122.285728, 37.883593 ], [ -122.285728, 37.883660 ], [ -122.284784, 37.884135 ], [ -122.284527, 37.884202 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283583, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ], [ -122.283583, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.283583, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282724, 37.886031 ], [ -122.283239, 37.885422 ], [ -122.283325, 37.884812 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ], [ -122.282724, 37.886031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282724, 37.886031 ], [ -122.283239, 37.885422 ], [ -122.283325, 37.884812 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283926, 37.884541 ], [ -122.283411, 37.884677 ], [ -122.284527, 37.884135 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283411, 37.884677 ], [ -122.284527, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283926, 37.884541 ], [ -122.283411, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.884406 ], [ -122.281952, 37.884406 ], [ -122.282639, 37.882780 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882509 ], [ -122.285728, 37.883593 ], [ -122.283154, 37.884812 ], [ -122.282038, 37.885015 ], [ -122.282295, 37.884406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885015 ], [ -122.282295, 37.884406 ], [ -122.281952, 37.884406 ], [ -122.282639, 37.882780 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882509 ], [ -122.285728, 37.883593 ], [ -122.283154, 37.884812 ], [ -122.282038, 37.885015 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "GEOID10": "060014206001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283068, 37.891247 ], [ -122.282810, 37.891247 ], [ -122.282810, 37.891044 ], [ -122.283068, 37.891044 ], [ -122.283068, 37.891247 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891180 ], [ -122.281952, 37.889418 ], [ -122.282295, 37.889283 ], [ -122.282896, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.283497, 37.889147 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282381, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282896, 37.889147 ], [ -122.282295, 37.889283 ], [ -122.281952, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886709 ], [ -122.283325, 37.886912 ], [ -122.282724, 37.888606 ], [ -122.282810, 37.889080 ], [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886709 ], [ -122.283325, 37.886912 ], [ -122.282724, 37.888606 ], [ -122.282810, 37.889080 ], [ -122.281866, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886709 ], [ -122.282553, 37.886370 ], [ -122.282724, 37.886031 ], [ -122.283840, 37.886235 ], [ -122.283583, 37.886980 ], [ -122.282295, 37.886709 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283583, 37.886980 ], [ -122.282295, 37.886709 ], [ -122.282553, 37.886370 ], [ -122.282724, 37.886031 ], [ -122.283840, 37.886235 ], [ -122.283583, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885015 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885083 ], [ -122.282038, 37.885083 ], [ -122.282038, 37.885015 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885083 ], [ -122.282038, 37.885015 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885083 ], [ -122.282038, 37.885083 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287273, 37.882644 ], [ -122.288561, 37.883051 ], [ -122.288132, 37.884270 ], [ -122.286673, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884270 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287273, 37.882644 ], [ -122.288561, 37.883051 ], [ -122.288132, 37.884270 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.882915 ], [ -122.287102, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ], [ -122.287102, 37.882915 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287102, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "GEOID10": "060014206001030", "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.882577 ], [ -122.287188, 37.882712 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882915 ], [ -122.287188, 37.882577 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "GEOID10": "060014206001030", "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882915 ], [ -122.287188, 37.882577 ], [ -122.287188, 37.882712 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882915 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883593 ], [ -122.287016, 37.882915 ], [ -122.287102, 37.882915 ], [ -122.285728, 37.883660 ], [ -122.285728, 37.883593 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.285728, 37.883593 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883660 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882509 ], [ -122.287188, 37.882577 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883593 ], [ -122.286072, 37.882509 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883593 ], [ -122.286072, 37.882509 ], [ -122.287188, 37.882577 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883593 ] ] ] } } ] } ] } , @@ -2332,525 +2332,525 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 790 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312551, 37.897038 ], [ -122.312465, 37.896937 ], [ -122.312164, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896734 ], [ -122.311606, 37.896497 ], [ -122.311521, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.895548 ], [ -122.310705, 37.895514 ], [ -122.310705, 37.895277 ], [ -122.310576, 37.895074 ], [ -122.310147, 37.894769 ], [ -122.309461, 37.893482 ], [ -122.309117, 37.892229 ], [ -122.309074, 37.891315 ], [ -122.309289, 37.889723 ], [ -122.309461, 37.889147 ], [ -122.309675, 37.888876 ], [ -122.309804, 37.888809 ], [ -122.310061, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.310963, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890265 ], [ -122.311220, 37.890163 ], [ -122.311220, 37.889926 ], [ -122.311349, 37.889926 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891213 ], [ -122.313709, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892060 ], [ -122.314696, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314610, 37.892162 ], [ -122.314525, 37.891925 ], [ -122.314696, 37.891891 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317615, 37.890942 ], [ -122.319846, 37.889960 ], [ -122.322721, 37.889994 ], [ -122.323151, 37.891010 ], [ -122.323966, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325854, 37.892500 ], [ -122.325897, 37.892297 ], [ -122.325640, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325554, 37.891518 ], [ -122.325597, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890807 ], [ -122.326198, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.327313, 37.890807 ], [ -122.327399, 37.890909 ], [ -122.327399, 37.891484 ], [ -122.327528, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327571, 37.889689 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312508, 37.897445 ], [ -122.312551, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897445 ], [ -122.312551, 37.897038 ], [ -122.312465, 37.896937 ], [ -122.312164, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896734 ], [ -122.311606, 37.896497 ], [ -122.311521, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.895548 ], [ -122.310705, 37.895514 ], [ -122.310705, 37.895277 ], [ -122.310576, 37.895074 ], [ -122.310147, 37.894769 ], [ -122.309461, 37.893482 ], [ -122.309117, 37.892229 ], [ -122.309074, 37.891315 ], [ -122.309289, 37.889723 ], [ -122.309461, 37.889147 ], [ -122.309675, 37.888876 ], [ -122.309804, 37.888809 ], [ -122.310061, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.310963, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890265 ], [ -122.311220, 37.890163 ], [ -122.311220, 37.889926 ], [ -122.311349, 37.889926 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891213 ], [ -122.313709, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892060 ], [ -122.314696, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314610, 37.892162 ], [ -122.314525, 37.891925 ], [ -122.314696, 37.891891 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317615, 37.890942 ], [ -122.319846, 37.889960 ], [ -122.322721, 37.889994 ], [ -122.323151, 37.891010 ], [ -122.323966, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325854, 37.892500 ], [ -122.325897, 37.892297 ], [ -122.325640, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325554, 37.891518 ], [ -122.325597, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890807 ], [ -122.326198, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.327313, 37.890807 ], [ -122.327399, 37.890909 ], [ -122.327399, 37.891484 ], [ -122.327528, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327571, 37.889689 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312508, 37.897445 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310662, 37.895752 ], [ -122.310019, 37.894769 ], [ -122.309546, 37.893855 ], [ -122.309246, 37.893076 ], [ -122.309031, 37.892094 ], [ -122.308989, 37.891247 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888775 ], [ -122.309246, 37.887860 ], [ -122.309804, 37.888131 ], [ -122.311263, 37.889452 ], [ -122.315598, 37.889655 ], [ -122.315812, 37.889520 ], [ -122.327614, 37.889689 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891552 ], [ -122.327399, 37.891484 ], [ -122.327399, 37.890909 ], [ -122.327313, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.325811, 37.890807 ], [ -122.325640, 37.890841 ], [ -122.325597, 37.890942 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325854, 37.892500 ], [ -122.325554, 37.892534 ], [ -122.324996, 37.892466 ], [ -122.324696, 37.892500 ], [ -122.323966, 37.892399 ], [ -122.323151, 37.891010 ], [ -122.322721, 37.889994 ], [ -122.319846, 37.889960 ], [ -122.317615, 37.890942 ], [ -122.316027, 37.891146 ], [ -122.315984, 37.891247 ], [ -122.315941, 37.891891 ], [ -122.314696, 37.891891 ], [ -122.314525, 37.891925 ], [ -122.314610, 37.892162 ], [ -122.314825, 37.892466 ], [ -122.314696, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.314267, 37.891958 ], [ -122.313709, 37.891891 ], [ -122.312722, 37.891213 ], [ -122.311692, 37.890401 ], [ -122.311349, 37.889926 ], [ -122.311220, 37.889926 ], [ -122.311220, 37.890163 ], [ -122.311134, 37.890265 ], [ -122.311006, 37.890197 ], [ -122.310963, 37.889859 ], [ -122.310877, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310061, 37.888910 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888876 ], [ -122.309461, 37.889147 ], [ -122.309289, 37.889723 ], [ -122.309074, 37.891315 ], [ -122.309117, 37.892229 ], [ -122.309461, 37.893482 ], [ -122.310147, 37.894769 ], [ -122.310576, 37.895074 ], [ -122.310705, 37.895277 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895548 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896192 ], [ -122.311606, 37.896293 ], [ -122.311521, 37.896734 ], [ -122.310662, 37.895752 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311521, 37.896734 ], [ -122.310662, 37.895752 ], [ -122.310019, 37.894769 ], [ -122.309546, 37.893855 ], [ -122.309246, 37.893076 ], [ -122.309031, 37.892094 ], [ -122.308989, 37.891247 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888775 ], [ -122.309246, 37.887860 ], [ -122.309804, 37.888131 ], [ -122.311263, 37.889452 ], [ -122.315598, 37.889655 ], [ -122.315812, 37.889520 ], [ -122.327614, 37.889689 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891552 ], [ -122.327399, 37.891484 ], [ -122.327399, 37.890909 ], [ -122.327313, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.325811, 37.890807 ], [ -122.325640, 37.890841 ], [ -122.325597, 37.890942 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325854, 37.892500 ], [ -122.325554, 37.892534 ], [ -122.324996, 37.892466 ], [ -122.324696, 37.892500 ], [ -122.323966, 37.892399 ], [ -122.323151, 37.891010 ], [ -122.322721, 37.889994 ], [ -122.319846, 37.889960 ], [ -122.317615, 37.890942 ], [ -122.316027, 37.891146 ], [ -122.315984, 37.891247 ], [ -122.315941, 37.891891 ], [ -122.314696, 37.891891 ], [ -122.314525, 37.891925 ], [ -122.314610, 37.892162 ], [ -122.314825, 37.892466 ], [ -122.314696, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.314267, 37.891958 ], [ -122.313709, 37.891891 ], [ -122.312722, 37.891213 ], [ -122.311692, 37.890401 ], [ -122.311349, 37.889926 ], [ -122.311220, 37.889926 ], [ -122.311220, 37.890163 ], [ -122.311134, 37.890265 ], [ -122.311006, 37.890197 ], [ -122.310963, 37.889859 ], [ -122.310877, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310061, 37.888910 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888876 ], [ -122.309461, 37.889147 ], [ -122.309289, 37.889723 ], [ -122.309074, 37.891315 ], [ -122.309117, 37.892229 ], [ -122.309461, 37.893482 ], [ -122.310147, 37.894769 ], [ -122.310576, 37.895074 ], [ -122.310705, 37.895277 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895548 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896192 ], [ -122.311606, 37.896293 ], [ -122.311521, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311606, 37.896869 ], [ -122.311563, 37.896835 ], [ -122.312164, 37.896937 ], [ -122.312465, 37.896937 ], [ -122.312551, 37.897140 ], [ -122.312508, 37.897445 ], [ -122.312078, 37.897479 ], [ -122.311606, 37.896869 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311606, 37.896869 ], [ -122.311563, 37.896835 ], [ -122.312164, 37.896937 ], [ -122.312465, 37.896937 ], [ -122.312551, 37.897140 ], [ -122.312508, 37.897445 ], [ -122.312078, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307830, 37.892805 ], [ -122.307873, 37.892297 ], [ -122.308044, 37.892162 ], [ -122.308259, 37.892196 ], [ -122.308345, 37.894431 ], [ -122.309418, 37.897309 ], [ -122.309546, 37.897851 ], [ -122.309375, 37.897885 ], [ -122.309332, 37.897817 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309375, 37.897885 ], [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307830, 37.892805 ], [ -122.307873, 37.892297 ], [ -122.308044, 37.892162 ], [ -122.308259, 37.892196 ], [ -122.308345, 37.894431 ], [ -122.309418, 37.897309 ], [ -122.309546, 37.897851 ], [ -122.309375, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309933, 37.895684 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308517, 37.892399 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.892568 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894837 ], [ -122.310534, 37.895819 ], [ -122.311864, 37.897546 ], [ -122.311478, 37.897648 ], [ -122.309933, 37.895684 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897648 ], [ -122.309933, 37.895684 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308517, 37.892399 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.892568 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894837 ], [ -122.310534, 37.895819 ], [ -122.311864, 37.897546 ], [ -122.311478, 37.897648 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897309 ], [ -122.308345, 37.894431 ], [ -122.308259, 37.892297 ], [ -122.307916, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308517, 37.892399 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895684 ], [ -122.311478, 37.897648 ], [ -122.310920, 37.897851 ], [ -122.309546, 37.897851 ], [ -122.309418, 37.897309 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309546, 37.897851 ], [ -122.309418, 37.897309 ], [ -122.308345, 37.894431 ], [ -122.308259, 37.892297 ], [ -122.307916, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308517, 37.892399 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895684 ], [ -122.311478, 37.897648 ], [ -122.310920, 37.897851 ], [ -122.309546, 37.897851 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310534, 37.895819 ], [ -122.309718, 37.894465 ], [ -122.309160, 37.893144 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.888775 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.891247 ], [ -122.309031, 37.892094 ], [ -122.309246, 37.893076 ], [ -122.309546, 37.893855 ], [ -122.310019, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311563, 37.896835 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897546 ], [ -122.310534, 37.895819 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311864, 37.897546 ], [ -122.310534, 37.895819 ], [ -122.309718, 37.894465 ], [ -122.309160, 37.893144 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.888775 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.891247 ], [ -122.309031, 37.892094 ], [ -122.309246, 37.893076 ], [ -122.309546, 37.893855 ], [ -122.310019, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311563, 37.896835 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.894261 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892568 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.890875 ], [ -122.307272, 37.890130 ], [ -122.307529, 37.889520 ], [ -122.307916, 37.890976 ], [ -122.307658, 37.891688 ], [ -122.307572, 37.892263 ], [ -122.307529, 37.892636 ], [ -122.307615, 37.893313 ], [ -122.307787, 37.893990 ], [ -122.308302, 37.895244 ], [ -122.309375, 37.897885 ], [ -122.307701, 37.894261 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309375, 37.897885 ], [ -122.307701, 37.894261 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892568 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.890875 ], [ -122.307272, 37.890130 ], [ -122.307529, 37.889520 ], [ -122.307916, 37.890976 ], [ -122.307658, 37.891688 ], [ -122.307572, 37.892263 ], [ -122.307529, 37.892636 ], [ -122.307615, 37.893313 ], [ -122.307787, 37.893990 ], [ -122.308302, 37.895244 ], [ -122.309375, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306671, 37.892229 ], [ -122.306714, 37.892026 ], [ -122.306714, 37.891721 ], [ -122.306414, 37.890807 ], [ -122.306843, 37.890705 ], [ -122.307401, 37.889757 ], [ -122.307229, 37.890299 ], [ -122.307057, 37.891247 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892568 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894261 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.897987 ], [ -122.307229, 37.893753 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.897987 ], [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306671, 37.892229 ], [ -122.306714, 37.892026 ], [ -122.306714, 37.891721 ], [ -122.306414, 37.890807 ], [ -122.306843, 37.890705 ], [ -122.307401, 37.889757 ], [ -122.307229, 37.890299 ], [ -122.307057, 37.891247 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892568 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894261 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.897987 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.893720 ], [ -122.307572, 37.893144 ], [ -122.307529, 37.892636 ], [ -122.307658, 37.891688 ], [ -122.307916, 37.890976 ], [ -122.308259, 37.892196 ], [ -122.308044, 37.892162 ], [ -122.307873, 37.892297 ], [ -122.307830, 37.893042 ], [ -122.307873, 37.893652 ], [ -122.308302, 37.895244 ], [ -122.307701, 37.893720 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308302, 37.895244 ], [ -122.307701, 37.893720 ], [ -122.307572, 37.893144 ], [ -122.307529, 37.892636 ], [ -122.307658, 37.891688 ], [ -122.307916, 37.890976 ], [ -122.308259, 37.892196 ], [ -122.308044, 37.892162 ], [ -122.307873, 37.892297 ], [ -122.307830, 37.893042 ], [ -122.307873, 37.893652 ], [ -122.308302, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896700 ], [ -122.301135, 37.896700 ], [ -122.301650, 37.898528 ], [ -122.301006, 37.896700 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.898528 ], [ -122.301006, 37.896700 ], [ -122.301135, 37.896700 ], [ -122.301650, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.898325 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.300620, 37.898325 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301607, 37.898528 ], [ -122.300620, 37.898325 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896700 ], [ -122.301607, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300620, 37.898325 ], [ -122.300320, 37.898258 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.898325 ], [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300620, 37.898325 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.302637, 37.895684 ], [ -122.302036, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894532 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.891620 ], [ -122.303452, 37.890536 ], [ -122.303753, 37.890197 ], [ -122.303967, 37.890062 ], [ -122.304440, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.306714, 37.891721 ], [ -122.306714, 37.892026 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308989, 37.897987 ], [ -122.308817, 37.898054 ], [ -122.306199, 37.898258 ], [ -122.305341, 37.898427 ], [ -122.304611, 37.898427 ], [ -122.303753, 37.898528 ], [ -122.301650, 37.898528 ], [ -122.300920, 37.896022 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.898528 ], [ -122.300920, 37.896022 ], [ -122.302637, 37.895684 ], [ -122.302036, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894532 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.891620 ], [ -122.303452, 37.890536 ], [ -122.303753, 37.890197 ], [ -122.303967, 37.890062 ], [ -122.304440, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.306714, 37.891721 ], [ -122.306714, 37.892026 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308989, 37.897987 ], [ -122.308817, 37.898054 ], [ -122.306199, 37.898258 ], [ -122.305341, 37.898427 ], [ -122.304611, 37.898427 ], [ -122.303753, 37.898528 ], [ -122.301650, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891789 ], [ -122.303109, 37.891620 ], [ -122.303495, 37.892839 ], [ -122.303152, 37.893550 ], [ -122.303109, 37.894532 ], [ -122.302251, 37.891789 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.894532 ], [ -122.302251, 37.891789 ], [ -122.303109, 37.891620 ], [ -122.303495, 37.892839 ], [ -122.303152, 37.893550 ], [ -122.303109, 37.894532 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895684 ], [ -122.301779, 37.895853 ], [ -122.301178, 37.893990 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895853 ], [ -122.301178, 37.893990 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895684 ], [ -122.301779, 37.895853 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896700 ], [ -122.301006, 37.896700 ], [ -122.300792, 37.896056 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896700 ], [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896700 ], [ -122.301006, 37.896700 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895074 ], [ -122.300620, 37.895074 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ], [ -122.300491, 37.895074 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300491, 37.895074 ], [ -122.300620, 37.895074 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895277 ], [ -122.300491, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.301006, 37.896700 ], [ -122.300148, 37.896869 ], [ -122.299633, 37.895277 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895277 ], [ -122.300491, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.301006, 37.896700 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.895074 ], [ -122.300363, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896022 ], [ -122.300620, 37.895074 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.300620, 37.895074 ], [ -122.300363, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896022 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891958 ], [ -122.302251, 37.891789 ], [ -122.302852, 37.893652 ], [ -122.302036, 37.893821 ], [ -122.301435, 37.891958 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301435, 37.891958 ], [ -122.302251, 37.891789 ], [ -122.302852, 37.893652 ], [ -122.302036, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.301435, 37.891958 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.893990 ], [ -122.300577, 37.892128 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.300577, 37.892128 ], [ -122.301435, 37.891958 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.893990 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.300105, 37.893449 ], [ -122.300577, 37.894871 ], [ -122.300620, 37.895074 ], [ -122.300491, 37.895074 ], [ -122.299976, 37.893482 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895074 ], [ -122.299976, 37.893482 ], [ -122.300105, 37.893449 ], [ -122.300577, 37.894871 ], [ -122.300620, 37.895074 ], [ -122.300491, 37.895074 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.893449 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.893990 ], [ -122.300363, 37.894160 ], [ -122.300105, 37.893449 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300363, 37.894160 ], [ -122.300105, 37.893449 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.893990 ], [ -122.300363, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892331 ], [ -122.299719, 37.892297 ], [ -122.300105, 37.893449 ], [ -122.299976, 37.893482 ], [ -122.299590, 37.892331 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.299590, 37.892331 ], [ -122.299719, 37.892297 ], [ -122.300105, 37.893449 ], [ -122.299976, 37.893482 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327442, 37.889147 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327056, 37.888707 ], [ -122.325468, 37.888097 ], [ -122.324910, 37.887928 ], [ -122.324610, 37.887894 ], [ -122.322936, 37.888301 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889080 ], [ -122.322550, 37.889317 ], [ -122.322249, 37.889384 ], [ -122.321949, 37.889418 ], [ -122.321348, 37.889283 ], [ -122.320919, 37.889249 ], [ -122.319632, 37.889452 ], [ -122.317271, 37.889283 ], [ -122.316842, 37.888944 ], [ -122.316756, 37.888741 ], [ -122.316070, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316499, 37.886133 ], [ -122.316456, 37.885964 ], [ -122.315984, 37.885964 ], [ -122.316027, 37.885659 ], [ -122.316885, 37.885659 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885523 ], [ -122.316113, 37.885456 ], [ -122.315726, 37.885286 ], [ -122.315469, 37.884710 ], [ -122.315683, 37.884304 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315340, 37.884067 ], [ -122.315040, 37.883965 ], [ -122.314396, 37.883389 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313623, 37.882441 ], [ -122.313066, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327657, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889689 ], [ -122.327442, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889689 ], [ -122.327442, 37.889147 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327056, 37.888707 ], [ -122.325468, 37.888097 ], [ -122.324910, 37.887928 ], [ -122.324610, 37.887894 ], [ -122.322936, 37.888301 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889080 ], [ -122.322550, 37.889317 ], [ -122.322249, 37.889384 ], [ -122.321949, 37.889418 ], [ -122.321348, 37.889283 ], [ -122.320919, 37.889249 ], [ -122.319632, 37.889452 ], [ -122.317271, 37.889283 ], [ -122.316842, 37.888944 ], [ -122.316756, 37.888741 ], [ -122.316070, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316499, 37.886133 ], [ -122.316456, 37.885964 ], [ -122.315984, 37.885964 ], [ -122.316027, 37.885659 ], [ -122.316885, 37.885659 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885523 ], [ -122.316113, 37.885456 ], [ -122.315726, 37.885286 ], [ -122.315469, 37.884710 ], [ -122.315683, 37.884304 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315340, 37.884067 ], [ -122.315040, 37.883965 ], [ -122.314396, 37.883389 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313623, 37.882441 ], [ -122.313066, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327657, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889689 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.315812, 37.889520 ], [ -122.315598, 37.889655 ], [ -122.311263, 37.889452 ], [ -122.310190, 37.888538 ], [ -122.309804, 37.888064 ], [ -122.309375, 37.887691 ], [ -122.309289, 37.887894 ], [ -122.309246, 37.887860 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887183 ], [ -122.309546, 37.886980 ], [ -122.309546, 37.886472 ], [ -122.308903, 37.884033 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882306 ], [ -122.312465, 37.881391 ], [ -122.313066, 37.882204 ], [ -122.313623, 37.882441 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314396, 37.883389 ], [ -122.315040, 37.883965 ], [ -122.315340, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884304 ], [ -122.315469, 37.884710 ], [ -122.315726, 37.885286 ], [ -122.316113, 37.885456 ], [ -122.316027, 37.885523 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885659 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316499, 37.886133 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316070, 37.887928 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888944 ], [ -122.317271, 37.889283 ], [ -122.319632, 37.889452 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889283 ], [ -122.321949, 37.889418 ], [ -122.322249, 37.889384 ], [ -122.322550, 37.889317 ], [ -122.322850, 37.889080 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888301 ], [ -122.324610, 37.887894 ], [ -122.324910, 37.887928 ], [ -122.325468, 37.888097 ], [ -122.327056, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.889147 ], [ -122.327571, 37.889689 ], [ -122.315812, 37.889520 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889689 ], [ -122.315812, 37.889520 ], [ -122.315598, 37.889655 ], [ -122.311263, 37.889452 ], [ -122.310190, 37.888538 ], [ -122.309804, 37.888064 ], [ -122.309375, 37.887691 ], [ -122.309289, 37.887894 ], [ -122.309246, 37.887860 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887183 ], [ -122.309546, 37.886980 ], [ -122.309546, 37.886472 ], [ -122.308903, 37.884033 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882306 ], [ -122.312465, 37.881391 ], [ -122.313066, 37.882204 ], [ -122.313623, 37.882441 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314396, 37.883389 ], [ -122.315040, 37.883965 ], [ -122.315340, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884304 ], [ -122.315469, 37.884710 ], [ -122.315726, 37.885286 ], [ -122.316113, 37.885456 ], [ -122.316027, 37.885523 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885659 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316499, 37.886133 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316070, 37.887928 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888944 ], [ -122.317271, 37.889283 ], [ -122.319632, 37.889452 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889283 ], [ -122.321949, 37.889418 ], [ -122.322249, 37.889384 ], [ -122.322550, 37.889317 ], [ -122.322850, 37.889080 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888301 ], [ -122.324610, 37.887894 ], [ -122.324910, 37.887928 ], [ -122.325468, 37.888097 ], [ -122.327056, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.889147 ], [ -122.327571, 37.889689 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "GEOID10": "060014203003030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309632, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887894 ], [ -122.309375, 37.887691 ], [ -122.309804, 37.888064 ], [ -122.309804, 37.888131 ], [ -122.309632, 37.888030 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "GEOID10": "060014203003030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309804, 37.888131 ], [ -122.309632, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887894 ], [ -122.309375, 37.887691 ], [ -122.309804, 37.888064 ], [ -122.309804, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.308989, 37.888775 ], [ -122.309074, 37.887454 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.888775 ], [ -122.309074, 37.887454 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.308989, 37.888775 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.889215 ], [ -122.308559, 37.888301 ], [ -122.308559, 37.887556 ], [ -122.308645, 37.887352 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888775 ], [ -122.308345, 37.890096 ], [ -122.308345, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.890096 ], [ -122.308345, 37.889215 ], [ -122.308559, 37.888301 ], [ -122.308559, 37.887556 ], [ -122.308645, 37.887352 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888775 ], [ -122.308345, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890265 ], [ -122.306628, 37.890197 ], [ -122.306328, 37.890096 ], [ -122.306156, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890807 ], [ -122.306242, 37.890265 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890807 ], [ -122.306242, 37.890265 ], [ -122.306628, 37.890197 ], [ -122.306328, 37.890096 ], [ -122.306156, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890807 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.889926 ], [ -122.306328, 37.890096 ], [ -122.306628, 37.890197 ], [ -122.306242, 37.890265 ], [ -122.306156, 37.889926 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890265 ], [ -122.306156, 37.889926 ], [ -122.306328, 37.890096 ], [ -122.306628, 37.890197 ], [ -122.306242, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889520 ], [ -122.308517, 37.887657 ], [ -122.308559, 37.888301 ], [ -122.308388, 37.889012 ], [ -122.308345, 37.890096 ], [ -122.307916, 37.890976 ], [ -122.307529, 37.889520 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307916, 37.890976 ], [ -122.307529, 37.889520 ], [ -122.308517, 37.887657 ], [ -122.308559, 37.888301 ], [ -122.308388, 37.889012 ], [ -122.308345, 37.890096 ], [ -122.307916, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307229, 37.887217 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887352 ], [ -122.308602, 37.887454 ], [ -122.307701, 37.889181 ], [ -122.307229, 37.887217 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889181 ], [ -122.307229, 37.887217 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887352 ], [ -122.308602, 37.887454 ], [ -122.307701, 37.889181 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305856, 37.888978 ], [ -122.307315, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ], [ -122.305856, 37.888978 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306027, 37.889588 ], [ -122.305856, 37.888978 ], [ -122.307315, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305856, 37.888978 ], [ -122.304997, 37.889147 ], [ -122.304955, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304997, 37.889147 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305856, 37.888978 ], [ -122.304997, 37.889147 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.307315, 37.888639 ], [ -122.307315, 37.888673 ], [ -122.305856, 37.888978 ], [ -122.305813, 37.888910 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305856, 37.888978 ], [ -122.305813, 37.888910 ], [ -122.307315, 37.888639 ], [ -122.307315, 37.888673 ], [ -122.305856, 37.888978 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888267 ], [ -122.307143, 37.887962 ], [ -122.307315, 37.888639 ], [ -122.305813, 37.888910 ], [ -122.305598, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.305598, 37.888267 ], [ -122.307143, 37.887962 ], [ -122.307315, 37.888639 ], [ -122.305813, 37.888910 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306972, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.307229, 37.887217 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889520 ], [ -122.306972, 37.887488 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889520 ], [ -122.306972, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.307229, 37.887217 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889520 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308989, 37.887352 ], [ -122.309074, 37.887454 ], [ -122.308645, 37.887352 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308645, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308989, 37.887352 ], [ -122.309074, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308860, 37.886472 ], [ -122.309031, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309289, 37.887318 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.887352 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308989, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308860, 37.886472 ], [ -122.309031, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309289, 37.887318 ], [ -122.309074, 37.887454 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.886844 ], [ -122.309289, 37.886336 ], [ -122.309031, 37.885151 ], [ -122.308645, 37.883491 ], [ -122.308903, 37.884033 ], [ -122.309546, 37.886472 ], [ -122.309546, 37.887081 ], [ -122.309289, 37.887318 ], [ -122.309332, 37.886844 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309289, 37.887318 ], [ -122.309332, 37.886844 ], [ -122.309289, 37.886336 ], [ -122.309031, 37.885151 ], [ -122.308645, 37.883491 ], [ -122.308903, 37.884033 ], [ -122.309546, 37.886472 ], [ -122.309546, 37.887081 ], [ -122.309289, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887115 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886743 ], [ -122.307830, 37.882035 ], [ -122.308388, 37.882204 ], [ -122.308645, 37.883491 ], [ -122.309031, 37.885151 ], [ -122.308860, 37.886472 ], [ -122.308688, 37.887217 ], [ -122.308044, 37.887115 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308688, 37.887217 ], [ -122.308044, 37.887115 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886743 ], [ -122.307830, 37.882035 ], [ -122.308388, 37.882204 ], [ -122.308645, 37.883491 ], [ -122.309031, 37.885151 ], [ -122.308860, 37.886472 ], [ -122.308688, 37.887217 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308517, 37.887318 ], [ -122.307873, 37.887217 ], [ -122.307229, 37.887217 ], [ -122.307229, 37.887081 ], [ -122.308044, 37.887115 ], [ -122.308688, 37.887217 ], [ -122.308645, 37.887352 ], [ -122.308517, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887352 ], [ -122.308517, 37.887318 ], [ -122.307873, 37.887217 ], [ -122.307229, 37.887217 ], [ -122.307229, 37.887081 ], [ -122.308044, 37.887115 ], [ -122.308688, 37.887217 ], [ -122.308645, 37.887352 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305341, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.306070, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307014, 37.887522 ], [ -122.307143, 37.887962 ], [ -122.305598, 37.888267 ], [ -122.305341, 37.887488 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888267 ], [ -122.305341, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.306070, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307014, 37.887522 ], [ -122.307143, 37.887962 ], [ -122.305598, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307100, 37.886878 ], [ -122.306199, 37.883288 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881899 ], [ -122.307315, 37.881933 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882035 ], [ -122.307358, 37.886743 ], [ -122.307229, 37.887081 ], [ -122.307186, 37.887081 ], [ -122.307100, 37.886878 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.887081 ], [ -122.307100, 37.886878 ], [ -122.306199, 37.883288 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881899 ], [ -122.307315, 37.881933 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882035 ], [ -122.307358, 37.886743 ], [ -122.307229, 37.887081 ], [ -122.307186, 37.887081 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.303324, 37.889452 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.890841 ], [ -122.303109, 37.891620 ], [ -122.302465, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.891620 ], [ -122.302465, 37.889622 ], [ -122.303324, 37.889452 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.890841 ], [ -122.303109, 37.891620 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889452 ], [ -122.305856, 37.888978 ], [ -122.306027, 37.889588 ], [ -122.304182, 37.889994 ], [ -122.303753, 37.890197 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890367 ], [ -122.303324, 37.889452 ], [ -122.305856, 37.888978 ], [ -122.306027, 37.889588 ], [ -122.304182, 37.889994 ], [ -122.303753, 37.890197 ], [ -122.303581, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304997, 37.889147 ], [ -122.304139, 37.889283 ], [ -122.304139, 37.889249 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889283 ], [ -122.304139, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304997, 37.889147 ], [ -122.304139, 37.889283 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304482, 37.887522 ], [ -122.305341, 37.887488 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ], [ -122.304482, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304482, 37.887522 ], [ -122.305341, 37.887488 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887556 ], [ -122.304482, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304139, 37.889249 ], [ -122.303581, 37.887556 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889249 ], [ -122.303581, 37.887556 ], [ -122.304482, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304139, 37.889249 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889418 ], [ -122.304139, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303324, 37.889452 ], [ -122.303281, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889452 ], [ -122.303281, 37.889418 ], [ -122.304139, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303324, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889588 ], [ -122.303281, 37.889418 ], [ -122.303324, 37.889452 ], [ -122.302465, 37.889622 ], [ -122.302465, 37.889588 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.302465, 37.889588 ], [ -122.303281, 37.889418 ], [ -122.303324, 37.889452 ], [ -122.302465, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302723, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304139, 37.889249 ], [ -122.303281, 37.889418 ], [ -122.302723, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889418 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304139, 37.889249 ], [ -122.303281, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303109, 37.891620 ], [ -122.302251, 37.891789 ], [ -122.301650, 37.889791 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891789 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303109, 37.891620 ], [ -122.302251, 37.891789 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.302251, 37.891789 ], [ -122.301435, 37.891958 ], [ -122.300792, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891958 ], [ -122.300792, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.302251, 37.891789 ], [ -122.301435, 37.891958 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.891823 ], [ -122.299075, 37.890265 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892297 ], [ -122.299547, 37.891823 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892297 ], [ -122.299547, 37.891823 ], [ -122.299075, 37.890265 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.300792, 37.889960 ], [ -122.301435, 37.891958 ], [ -122.300577, 37.892128 ], [ -122.299933, 37.890130 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.299933, 37.890130 ], [ -122.300792, 37.889960 ], [ -122.301435, 37.891958 ], [ -122.300577, 37.892128 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301822, 37.887623 ], [ -122.302723, 37.887589 ], [ -122.303281, 37.889418 ], [ -122.302465, 37.889588 ], [ -122.301822, 37.887623 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889588 ], [ -122.301822, 37.887623 ], [ -122.302723, 37.887589 ], [ -122.303281, 37.889418 ], [ -122.302465, 37.889588 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300706, 37.887759 ], [ -122.301822, 37.887623 ], [ -122.302465, 37.889588 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ], [ -122.300706, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.300706, 37.887759 ], [ -122.301822, 37.887623 ], [ -122.302465, 37.889588 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "GEOID10": "060014203001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890096 ], [ -122.300792, 37.889926 ], [ -122.300792, 37.889960 ], [ -122.299933, 37.890130 ], [ -122.299933, 37.890096 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "GEOID10": "060014203001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.299933, 37.890096 ], [ -122.300792, 37.889926 ], [ -122.300792, 37.889960 ], [ -122.299933, 37.890130 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300062, 37.887725 ], [ -122.300706, 37.887759 ], [ -122.301650, 37.889791 ], [ -122.300792, 37.889960 ], [ -122.300062, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300706, 37.887759 ], [ -122.301650, 37.889791 ], [ -122.300792, 37.889960 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299204, 37.887759 ], [ -122.300062, 37.887725 ], [ -122.300792, 37.889926 ], [ -122.299933, 37.890096 ], [ -122.299204, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890096 ], [ -122.299204, 37.887759 ], [ -122.300062, 37.887725 ], [ -122.300792, 37.889926 ], [ -122.299933, 37.890096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302079, 37.887522 ], [ -122.305856, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307229, 37.887217 ], [ -122.305427, 37.887488 ], [ -122.302208, 37.887623 ], [ -122.302122, 37.887623 ], [ -122.302079, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302122, 37.887623 ], [ -122.302079, 37.887522 ], [ -122.305856, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307229, 37.887217 ], [ -122.305427, 37.887488 ], [ -122.302208, 37.887623 ], [ -122.302122, 37.887623 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300963, 37.887657 ], [ -122.300534, 37.886336 ], [ -122.302337, 37.886031 ], [ -122.304611, 37.885862 ], [ -122.304482, 37.885354 ], [ -122.306800, 37.885591 ], [ -122.307186, 37.887081 ], [ -122.305856, 37.887318 ], [ -122.302079, 37.887522 ], [ -122.302122, 37.887623 ], [ -122.300706, 37.887759 ], [ -122.300963, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300706, 37.887759 ], [ -122.300963, 37.887657 ], [ -122.300534, 37.886336 ], [ -122.302337, 37.886031 ], [ -122.304611, 37.885862 ], [ -122.304482, 37.885354 ], [ -122.306800, 37.885591 ], [ -122.307186, 37.887081 ], [ -122.305856, 37.887318 ], [ -122.302079, 37.887522 ], [ -122.302122, 37.887623 ], [ -122.300706, 37.887759 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.884744 ], [ -122.303624, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304611, 37.885862 ], [ -122.304225, 37.885896 ], [ -122.303925, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304225, 37.885896 ], [ -122.303925, 37.884744 ], [ -122.303624, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304611, 37.885862 ], [ -122.304225, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304482, 37.885354 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303452, 37.882881 ], [ -122.302637, 37.883085 ], [ -122.302380, 37.882509 ], [ -122.302766, 37.882475 ], [ -122.303324, 37.882306 ], [ -122.305255, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306800, 37.885591 ], [ -122.304482, 37.885354 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306800, 37.885591 ], [ -122.304482, 37.885354 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303452, 37.882881 ], [ -122.302637, 37.883085 ], [ -122.302380, 37.882509 ], [ -122.302766, 37.882475 ], [ -122.303324, 37.882306 ], [ -122.305255, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306800, 37.885591 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.883728 ], [ -122.303624, 37.883660 ], [ -122.304225, 37.885896 ], [ -122.303967, 37.885896 ], [ -122.303324, 37.883728 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303967, 37.885896 ], [ -122.303324, 37.883728 ], [ -122.303624, 37.883660 ], [ -122.304225, 37.885896 ], [ -122.303967, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.303967, 37.885896 ], [ -122.303452, 37.885964 ], [ -122.302980, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303452, 37.885964 ], [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.303967, 37.885896 ], [ -122.303452, 37.885964 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.884440 ], [ -122.299933, 37.884067 ], [ -122.299805, 37.884101 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.301006, 37.883423 ], [ -122.301006, 37.883356 ], [ -122.302079, 37.883119 ], [ -122.302637, 37.883085 ], [ -122.302980, 37.883796 ], [ -122.303452, 37.885964 ], [ -122.301822, 37.886099 ], [ -122.300534, 37.886336 ], [ -122.299933, 37.884440 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300534, 37.886336 ], [ -122.299933, 37.884440 ], [ -122.299933, 37.884067 ], [ -122.299805, 37.884101 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.301006, 37.883423 ], [ -122.301006, 37.883356 ], [ -122.302079, 37.883119 ], [ -122.302637, 37.883085 ], [ -122.302980, 37.883796 ], [ -122.303452, 37.885964 ], [ -122.301822, 37.886099 ], [ -122.300534, 37.886336 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302637, 37.883085 ], [ -122.303452, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302980, 37.883796 ], [ -122.302637, 37.883085 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.302637, 37.883085 ], [ -122.303452, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302980, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300363, 37.883254 ], [ -122.300277, 37.883119 ], [ -122.300234, 37.882881 ], [ -122.301092, 37.882780 ], [ -122.302337, 37.882509 ], [ -122.302637, 37.883085 ], [ -122.302079, 37.883119 ], [ -122.301006, 37.883356 ], [ -122.301006, 37.883423 ], [ -122.300363, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883423 ], [ -122.300363, 37.883254 ], [ -122.300277, 37.883119 ], [ -122.300234, 37.882881 ], [ -122.301092, 37.882780 ], [ -122.302337, 37.882509 ], [ -122.302637, 37.883085 ], [ -122.302079, 37.883119 ], [ -122.301006, 37.883356 ], [ -122.301006, 37.883423 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298474, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.299418, 37.898325 ], [ -122.298861, 37.898495 ], [ -122.298474, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298474, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.299418, 37.898325 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897411 ], [ -122.298474, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298045, 37.898766 ], [ -122.297616, 37.897411 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898766 ], [ -122.297616, 37.897411 ], [ -122.298474, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298045, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.297616, 37.897411 ], [ -122.298045, 37.898766 ], [ -122.297788, 37.898833 ], [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ], [ -122.297616, 37.897411 ], [ -122.298045, 37.898766 ], [ -122.297788, 37.898833 ], [ -122.297230, 37.898901 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.897783 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296243, 37.898935 ], [ -122.295728, 37.897783 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.898935 ], [ -122.295728, 37.897783 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296243, 37.898935 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895955 ], [ -122.297101, 37.895785 ], [ -122.297616, 37.897411 ], [ -122.296801, 37.897546 ], [ -122.296286, 37.895955 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895955 ], [ -122.297101, 37.895785 ], [ -122.297616, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896090 ], [ -122.296286, 37.895955 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ], [ -122.295427, 37.896090 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295942, 37.897750 ], [ -122.295427, 37.896090 ], [ -122.296286, 37.895955 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.294612, 37.897750 ], [ -122.295728, 37.897783 ], [ -122.296243, 37.898935 ], [ -122.294569, 37.898766 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.898935 ], [ -122.294569, 37.898766 ], [ -122.294612, 37.897750 ], [ -122.295728, 37.897783 ], [ -122.296243, 37.898935 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.299633, 37.895277 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895277 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297959, 37.895616 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298474, 37.897208 ], [ -122.297959, 37.895616 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298474, 37.897208 ], [ -122.297959, 37.895616 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298474, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299075, 37.893652 ], [ -122.299633, 37.895277 ], [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299075, 37.893652 ], [ -122.299633, 37.895277 ], [ -122.298775, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297101, 37.895785 ], [ -122.297959, 37.895616 ], [ -122.298474, 37.897208 ], [ -122.297616, 37.897411 ], [ -122.297101, 37.895785 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897411 ], [ -122.297101, 37.895785 ], [ -122.297959, 37.895616 ], [ -122.298474, 37.897208 ], [ -122.297616, 37.897411 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297444, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297959, 37.895616 ], [ -122.297444, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297959, 37.895616 ], [ -122.297444, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297959, 37.895616 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296586, 37.894126 ], [ -122.297444, 37.893957 ], [ -122.297959, 37.895616 ], [ -122.297101, 37.895785 ], [ -122.296586, 37.894126 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297101, 37.895785 ], [ -122.296586, 37.894126 ], [ -122.297444, 37.893957 ], [ -122.297959, 37.895616 ], [ -122.297101, 37.895785 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893652 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895074 ], [ -122.299633, 37.895277 ], [ -122.299075, 37.893652 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895277 ], [ -122.299075, 37.893652 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895074 ], [ -122.299633, 37.895277 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299075, 37.893652 ], [ -122.298560, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893652 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299075, 37.893652 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893652 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893652 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.892365 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297444, 37.893957 ], [ -122.296929, 37.892365 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297444, 37.893957 ], [ -122.296929, 37.892365 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297444, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.296586, 37.894126 ], [ -122.297101, 37.895785 ], [ -122.296286, 37.895955 ], [ -122.295771, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895955 ], [ -122.295771, 37.894295 ], [ -122.296586, 37.894126 ], [ -122.297101, 37.895785 ], [ -122.296286, 37.895955 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897783 ], [ -122.294655, 37.894532 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897783 ], [ -122.294655, 37.894532 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897783 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294612, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295728, 37.897783 ], [ -122.294612, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.897783 ], [ -122.294612, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295728, 37.897783 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895955 ], [ -122.295427, 37.896090 ], [ -122.294912, 37.894498 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896090 ], [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895955 ], [ -122.295427, 37.896090 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892704 ], [ -122.296071, 37.892534 ], [ -122.296586, 37.894126 ], [ -122.295771, 37.894295 ], [ -122.295256, 37.892704 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.295256, 37.892704 ], [ -122.296071, 37.892534 ], [ -122.296586, 37.894126 ], [ -122.295771, 37.894295 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892534 ], [ -122.296929, 37.892365 ], [ -122.297444, 37.893957 ], [ -122.296586, 37.894126 ], [ -122.296071, 37.892534 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296586, 37.894126 ], [ -122.296071, 37.892534 ], [ -122.296929, 37.892365 ], [ -122.297444, 37.893957 ], [ -122.296586, 37.894126 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892873 ], [ -122.295256, 37.892704 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ], [ -122.294354, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.294354, 37.892873 ], [ -122.295256, 37.892704 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.294354, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894532 ], [ -122.294140, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294140, 37.892873 ], [ -122.294354, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894532 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898664 ], [ -122.293754, 37.897716 ], [ -122.294612, 37.897750 ], [ -122.294569, 37.898766 ], [ -122.293711, 37.898664 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.293711, 37.898664 ], [ -122.293754, 37.897716 ], [ -122.294612, 37.897750 ], [ -122.294569, 37.898766 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.898427 ], [ -122.292852, 37.898393 ], [ -122.292852, 37.897716 ], [ -122.293754, 37.897716 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898664 ], [ -122.293196, 37.898427 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898664 ], [ -122.293196, 37.898427 ], [ -122.292852, 37.898393 ], [ -122.292852, 37.897716 ], [ -122.293754, 37.897716 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898664 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.292638, 37.897716 ], [ -122.292852, 37.897716 ], [ -122.292852, 37.898393 ], [ -122.292681, 37.898359 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898393 ], [ -122.292681, 37.898359 ], [ -122.292638, 37.897716 ], [ -122.292852, 37.897716 ], [ -122.292852, 37.898393 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897716 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.896734 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.897716 ], [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897716 ], [ -122.292638, 37.897716 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291994, 37.898258 ], [ -122.291608, 37.898122 ], [ -122.291737, 37.896700 ], [ -122.292681, 37.896734 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.898359 ], [ -122.291994, 37.898258 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.291994, 37.898258 ], [ -122.291608, 37.898122 ], [ -122.291737, 37.896700 ], [ -122.292681, 37.896734 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.898359 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.897953 ], [ -122.290750, 37.897919 ], [ -122.290835, 37.896666 ], [ -122.291737, 37.896700 ], [ -122.291608, 37.898122 ], [ -122.291093, 37.897953 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291608, 37.898122 ], [ -122.291093, 37.897953 ], [ -122.290750, 37.897919 ], [ -122.290835, 37.896666 ], [ -122.291737, 37.896700 ], [ -122.291608, 37.898122 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.897851 ], [ -122.289977, 37.896666 ], [ -122.290835, 37.896666 ], [ -122.290750, 37.897919 ], [ -122.289891, 37.897851 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290750, 37.897919 ], [ -122.289891, 37.897851 ], [ -122.289977, 37.896666 ], [ -122.290835, 37.896666 ], [ -122.290750, 37.897919 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.289977, 37.896666 ], [ -122.289891, 37.897851 ], [ -122.289033, 37.897885 ], [ -122.289119, 37.896632 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289033, 37.897885 ], [ -122.289119, 37.896632 ], [ -122.289977, 37.896666 ], [ -122.289891, 37.897851 ], [ -122.289033, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293754, 37.897716 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294612, 37.897750 ], [ -122.293754, 37.897716 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294612, 37.897750 ], [ -122.293754, 37.897716 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294612, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894871 ], [ -122.293882, 37.894702 ], [ -122.293839, 37.895311 ], [ -122.293754, 37.897716 ], [ -122.292852, 37.897716 ], [ -122.293024, 37.894871 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897716 ], [ -122.293024, 37.894871 ], [ -122.293882, 37.894702 ], [ -122.293839, 37.895311 ], [ -122.293754, 37.897716 ], [ -122.292852, 37.897716 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894871 ], [ -122.293024, 37.894871 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292767, 37.894871 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292767, 37.894871 ], [ -122.293024, 37.894871 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894702 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892839 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894871 ], [ -122.293110, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894871 ], [ -122.293110, 37.892839 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892839 ], [ -122.293110, 37.892839 ], [ -122.293024, 37.894871 ], [ -122.292767, 37.894871 ], [ -122.292852, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894871 ], [ -122.292852, 37.892839 ], [ -122.293110, 37.892839 ], [ -122.293024, 37.894871 ], [ -122.292767, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892839 ], [ -122.292852, 37.892839 ], [ -122.292767, 37.894871 ], [ -122.291822, 37.894871 ], [ -122.291908, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894871 ], [ -122.291908, 37.892839 ], [ -122.292852, 37.892839 ], [ -122.292767, 37.894871 ], [ -122.291822, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290063, 37.894803 ], [ -122.292767, 37.894871 ], [ -122.292681, 37.896734 ], [ -122.289977, 37.896666 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.289977, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290063, 37.894803 ], [ -122.292767, 37.894871 ], [ -122.292681, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894803 ], [ -122.289977, 37.896666 ], [ -122.289119, 37.896632 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896666 ], [ -122.289119, 37.896632 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894803 ], [ -122.289977, 37.896666 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894837 ], [ -122.291007, 37.892941 ], [ -122.291908, 37.892974 ], [ -122.291822, 37.894871 ], [ -122.290921, 37.894837 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894871 ], [ -122.290921, 37.894837 ], [ -122.291007, 37.892941 ], [ -122.291908, 37.892974 ], [ -122.291822, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894803 ], [ -122.290149, 37.892907 ], [ -122.291007, 37.892941 ], [ -122.290921, 37.894837 ], [ -122.290063, 37.894803 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894837 ], [ -122.290063, 37.894803 ], [ -122.290149, 37.892907 ], [ -122.291007, 37.892941 ], [ -122.290921, 37.894837 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.289290, 37.892907 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894803 ], [ -122.289205, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894803 ], [ -122.289205, 37.894769 ], [ -122.289290, 37.892907 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894803 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.289119, 37.896632 ], [ -122.289033, 37.897885 ], [ -122.288518, 37.897953 ], [ -122.288175, 37.898122 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.898122 ], [ -122.288218, 37.896598 ], [ -122.289119, 37.896632 ], [ -122.289033, 37.897885 ], [ -122.288518, 37.897953 ], [ -122.288175, 37.898122 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897817 ], [ -122.288175, 37.898122 ], [ -122.288132, 37.898156 ], [ -122.288175, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898156 ], [ -122.288175, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897817 ], [ -122.288175, 37.898122 ], [ -122.288132, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.288175, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287145, 37.898664 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.898664 ], [ -122.287273, 37.896564 ], [ -122.288175, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287145, 37.898664 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287145, 37.898156 ], [ -122.287145, 37.898664 ], [ -122.286973, 37.898732 ], [ -122.287016, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286973, 37.898732 ], [ -122.287016, 37.898156 ], [ -122.287145, 37.898156 ], [ -122.287145, 37.898664 ], [ -122.286973, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ], [ -122.287102, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287102, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289119, 37.896632 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289119, 37.896632 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "GEOID10": "060014201002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.896598 ], [ -122.288260, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "GEOID10": "060014201002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.288260, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.287359, 37.894736 ], [ -122.288260, 37.894736 ], [ -122.288175, 37.896598 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.287273, 37.896564 ], [ -122.287359, 37.894736 ], [ -122.288260, 37.894736 ], [ -122.288175, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287273, 37.896564 ], [ -122.287102, 37.896564 ], [ -122.287145, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896564 ], [ -122.287145, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287273, 37.896564 ], [ -122.287102, 37.896564 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894736 ], [ -122.288432, 37.892873 ], [ -122.289290, 37.892907 ], [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ], [ -122.288432, 37.892873 ], [ -122.289290, 37.892907 ], [ -122.289205, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.288432, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288260, 37.894736 ], [ -122.288346, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.894736 ], [ -122.288346, 37.892873 ], [ -122.288432, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288260, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892839 ], [ -122.288346, 37.892873 ], [ -122.288260, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287445, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894736 ], [ -122.287445, 37.892839 ], [ -122.288346, 37.892873 ], [ -122.288260, 37.894736 ], [ -122.287359, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892839 ], [ -122.287445, 37.892839 ], [ -122.287359, 37.894736 ], [ -122.287145, 37.894736 ], [ -122.287188, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894736 ], [ -122.287188, 37.892839 ], [ -122.287445, 37.892839 ], [ -122.287359, 37.894736 ], [ -122.287145, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.299547, 37.891823 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892331 ], [ -122.299418, 37.891823 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892331 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891823 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298946, 37.890299 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ], [ -122.298946, 37.890299 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.299075, 37.890265 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891823 ], [ -122.299418, 37.891823 ], [ -122.298946, 37.890299 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.298946, 37.890299 ], [ -122.299075, 37.890265 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891823 ], [ -122.299418, 37.891823 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.299290, 37.890197 ], [ -122.299933, 37.890096 ], [ -122.299933, 37.890130 ], [ -122.299333, 37.890265 ], [ -122.299075, 37.890265 ], [ -122.299032, 37.890197 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.890265 ], [ -122.299032, 37.890197 ], [ -122.299290, 37.890197 ], [ -122.299933, 37.890096 ], [ -122.299933, 37.890130 ], [ -122.299333, 37.890265 ], [ -122.299075, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "GEOID10": "060014205001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890265 ], [ -122.298946, 37.890231 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890333 ], [ -122.298045, 37.890333 ], [ -122.298045, 37.890265 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "GEOID10": "060014205001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298045, 37.890265 ], [ -122.298946, 37.890231 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890333 ], [ -122.298045, 37.890333 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298174, 37.890671 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298174, 37.890671 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890333 ], [ -122.298045, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ], [ -122.297144, 37.890333 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.297144, 37.890333 ], [ -122.298045, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.299204, 37.887759 ], [ -122.299933, 37.890096 ], [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ], [ -122.299204, 37.887759 ], [ -122.299933, 37.890096 ], [ -122.299032, 37.890197 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298131, 37.887793 ], [ -122.298260, 37.887759 ], [ -122.299075, 37.890265 ], [ -122.298946, 37.890299 ], [ -122.298131, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298131, 37.887793 ], [ -122.298260, 37.887759 ], [ -122.299075, 37.890265 ], [ -122.298946, 37.890299 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297831, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297788, 37.886743 ], [ -122.297788, 37.886675 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298045, 37.890265 ], [ -122.297831, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890265 ], [ -122.297831, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297788, 37.886743 ], [ -122.297788, 37.886675 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298045, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892196 ], [ -122.296929, 37.892365 ], [ -122.296286, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.892365 ], [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892196 ], [ -122.296929, 37.892365 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890468 ], [ -122.296286, 37.890434 ], [ -122.296929, 37.892365 ], [ -122.296071, 37.892534 ], [ -122.295427, 37.890468 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892534 ], [ -122.295427, 37.890468 ], [ -122.296286, 37.890434 ], [ -122.296929, 37.892365 ], [ -122.296071, 37.892534 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "GEOID10": "060014205001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.297144, 37.890333 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890401 ], [ -122.296286, 37.890434 ], [ -122.296286, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "GEOID10": "060014205001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.297144, 37.890333 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890401 ], [ -122.296286, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295599, 37.890468 ], [ -122.295384, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295599, 37.890468 ], [ -122.295384, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295599, 37.890468 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294526, 37.890536 ], [ -122.295427, 37.890468 ], [ -122.296071, 37.892534 ], [ -122.295256, 37.892704 ], [ -122.294526, 37.890536 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892704 ], [ -122.294526, 37.890536 ], [ -122.295427, 37.890468 ], [ -122.296071, 37.892534 ], [ -122.295256, 37.892704 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294526, 37.890536 ], [ -122.295256, 37.892704 ], [ -122.294354, 37.892873 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294526, 37.890536 ], [ -122.295256, 37.892704 ], [ -122.294354, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "GEOID10": "060014205001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294526, 37.890502 ], [ -122.295384, 37.890434 ], [ -122.295427, 37.890468 ], [ -122.294698, 37.890536 ], [ -122.294526, 37.890502 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "GEOID10": "060014205001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294698, 37.890536 ], [ -122.294526, 37.890502 ], [ -122.295384, 37.890434 ], [ -122.295427, 37.890468 ], [ -122.294698, 37.890536 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887081 ], [ -122.296929, 37.886878 ], [ -122.298045, 37.890265 ], [ -122.297144, 37.890333 ], [ -122.296114, 37.887081 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890333 ], [ -122.296114, 37.887081 ], [ -122.296929, 37.886878 ], [ -122.298045, 37.890265 ], [ -122.297144, 37.890333 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.296114, 37.887081 ], [ -122.297144, 37.890333 ], [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ], [ -122.296114, 37.887081 ], [ -122.297144, 37.890333 ], [ -122.296286, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294440, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295384, 37.890434 ], [ -122.294440, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.294440, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295384, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294440, 37.887386 ], [ -122.295384, 37.890434 ], [ -122.294526, 37.890502 ], [ -122.293582, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294526, 37.890502 ], [ -122.293582, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294440, 37.887386 ], [ -122.295384, 37.890434 ], [ -122.294526, 37.890502 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299590, 37.887488 ], [ -122.300191, 37.887623 ], [ -122.300963, 37.887657 ], [ -122.300706, 37.887759 ], [ -122.298260, 37.887759 ], [ -122.297916, 37.886709 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299590, 37.887488 ], [ -122.300191, 37.887623 ], [ -122.300963, 37.887657 ], [ -122.300706, 37.887759 ], [ -122.298260, 37.887759 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300191, 37.887623 ], [ -122.299590, 37.887488 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297273, 37.884609 ], [ -122.298303, 37.884406 ], [ -122.299933, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300148, 37.885117 ], [ -122.300963, 37.887657 ], [ -122.300191, 37.887623 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300963, 37.887657 ], [ -122.300191, 37.887623 ], [ -122.299590, 37.887488 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297273, 37.884609 ], [ -122.298303, 37.884406 ], [ -122.299933, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300148, 37.885117 ], [ -122.300963, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886844 ], [ -122.297616, 37.886675 ], [ -122.297788, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.296929, 37.886878 ], [ -122.296929, 37.886844 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886878 ], [ -122.296929, 37.886844 ], [ -122.297616, 37.886675 ], [ -122.297788, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.296929, 37.886878 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300234, 37.882881 ], [ -122.300320, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299805, 37.884101 ], [ -122.298303, 37.884406 ], [ -122.298002, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298303, 37.884406 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300234, 37.882881 ], [ -122.300320, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299805, 37.884101 ], [ -122.298303, 37.884406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297788, 37.886675 ], [ -122.297144, 37.884643 ], [ -122.297273, 37.884609 ], [ -122.297916, 37.886709 ], [ -122.297788, 37.886675 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886709 ], [ -122.297788, 37.886675 ], [ -122.297144, 37.884643 ], [ -122.297273, 37.884609 ], [ -122.297916, 37.886709 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.883525 ], [ -122.297788, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298303, 37.884406 ], [ -122.297273, 37.884609 ], [ -122.296929, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297273, 37.884609 ], [ -122.296929, 37.883525 ], [ -122.297788, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298303, 37.884406 ], [ -122.297273, 37.884609 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.296929, 37.886844 ], [ -122.296929, 37.886878 ], [ -122.296114, 37.887081 ], [ -122.296071, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887081 ], [ -122.296071, 37.886980 ], [ -122.296929, 37.886844 ], [ -122.296929, 37.886878 ], [ -122.296114, 37.887081 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887183 ], [ -122.296071, 37.886980 ], [ -122.296114, 37.887081 ], [ -122.295256, 37.887251 ], [ -122.295213, 37.887183 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.295213, 37.887183 ], [ -122.296071, 37.886980 ], [ -122.296114, 37.887081 ], [ -122.295256, 37.887251 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.295213, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294440, 37.887386 ], [ -122.294397, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294440, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295213, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294440, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293496, 37.884507 ], [ -122.294354, 37.884338 ], [ -122.295213, 37.887183 ], [ -122.294397, 37.887318 ], [ -122.293496, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293496, 37.884507 ], [ -122.294354, 37.884338 ], [ -122.295213, 37.887183 ], [ -122.294397, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.296886, 37.883830 ], [ -122.297788, 37.886675 ], [ -122.296929, 37.886844 ], [ -122.295985, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886844 ], [ -122.295985, 37.883999 ], [ -122.296886, 37.883830 ], [ -122.297788, 37.886675 ], [ -122.296929, 37.886844 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296929, 37.886844 ], [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296929, 37.886844 ], [ -122.296071, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883830 ], [ -122.297015, 37.883796 ], [ -122.297273, 37.884609 ], [ -122.297144, 37.884643 ], [ -122.296886, 37.883830 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.884643 ], [ -122.296886, 37.883830 ], [ -122.297015, 37.883796 ], [ -122.297273, 37.884609 ], [ -122.297144, 37.884643 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "GEOID10": "060014205002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.883525 ], [ -122.296929, 37.883525 ], [ -122.297015, 37.883796 ], [ -122.296886, 37.883830 ], [ -122.296758, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "GEOID10": "060014205002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883830 ], [ -122.296758, 37.883525 ], [ -122.296929, 37.883525 ], [ -122.297015, 37.883796 ], [ -122.296886, 37.883830 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.884338 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887183 ], [ -122.294354, 37.884338 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887183 ], [ -122.294354, 37.884338 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887183 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.882949 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294354, 37.884338 ], [ -122.293882, 37.882949 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.884338 ], [ -122.293882, 37.882949 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294354, 37.884338 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293839, 37.891992 ], [ -122.293153, 37.891044 ], [ -122.293196, 37.890604 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.293839, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293839, 37.891992 ], [ -122.293153, 37.891044 ], [ -122.293196, 37.890604 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892839 ], [ -122.293153, 37.891044 ], [ -122.293839, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293110, 37.892839 ], [ -122.293153, 37.891044 ], [ -122.293839, 37.891992 ], [ -122.294140, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890739 ], [ -122.293153, 37.891044 ], [ -122.293067, 37.892839 ], [ -122.292852, 37.892839 ], [ -122.292938, 37.890739 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892839 ], [ -122.292938, 37.890739 ], [ -122.293153, 37.891044 ], [ -122.293067, 37.892839 ], [ -122.292852, 37.892839 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890536 ], [ -122.294526, 37.890502 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293711, 37.890536 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293754, 37.890570 ], [ -122.293711, 37.890536 ], [ -122.294526, 37.890502 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890739 ], [ -122.292895, 37.890604 ], [ -122.293196, 37.890604 ], [ -122.293153, 37.891044 ], [ -122.292938, 37.890739 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293153, 37.891044 ], [ -122.292938, 37.890739 ], [ -122.292895, 37.890604 ], [ -122.293196, 37.890604 ], [ -122.293153, 37.891044 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "GEOID10": "060014206003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890570 ], [ -122.293410, 37.890536 ], [ -122.293625, 37.890536 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ], [ -122.292895, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "GEOID10": "060014206003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890604 ], [ -122.292895, 37.890570 ], [ -122.293410, 37.890536 ], [ -122.293625, 37.890536 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291951, 37.890671 ], [ -122.292895, 37.890604 ], [ -122.292852, 37.892839 ], [ -122.291908, 37.892839 ], [ -122.291951, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892839 ], [ -122.291951, 37.890671 ], [ -122.292895, 37.890604 ], [ -122.292852, 37.892839 ], [ -122.291908, 37.892839 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890570 ], [ -122.292895, 37.890604 ], [ -122.292724, 37.890638 ], [ -122.291908, 37.890638 ], [ -122.292895, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.292895, 37.890570 ], [ -122.292895, 37.890604 ], [ -122.292724, 37.890638 ], [ -122.291908, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.292724, 37.887759 ], [ -122.292724, 37.887657 ], [ -122.293582, 37.887657 ], [ -122.293582, 37.887522 ], [ -122.294526, 37.890502 ], [ -122.293711, 37.890536 ], [ -122.293625, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890536 ], [ -122.293625, 37.890434 ], [ -122.292724, 37.887759 ], [ -122.292724, 37.887657 ], [ -122.293582, 37.887657 ], [ -122.293582, 37.887522 ], [ -122.294526, 37.890502 ], [ -122.293711, 37.890536 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293153, 37.889825 ], [ -122.292466, 37.887725 ], [ -122.292724, 37.887657 ], [ -122.292724, 37.887759 ], [ -122.293582, 37.890333 ], [ -122.293153, 37.889825 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.890333 ], [ -122.293153, 37.889825 ], [ -122.292466, 37.887725 ], [ -122.292724, 37.887657 ], [ -122.292724, 37.887759 ], [ -122.293582, 37.890333 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890536 ], [ -122.292895, 37.890570 ], [ -122.292809, 37.890028 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293153, 37.889825 ], [ -122.293711, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.293625, 37.890536 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.293625, 37.890536 ], [ -122.292895, 37.890570 ], [ -122.292809, 37.890028 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293153, 37.889825 ], [ -122.293711, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890570 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.888064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.291093, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890570 ], [ -122.291908, 37.890638 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291093, 37.888064 ], [ -122.291093, 37.887996 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.291093, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291093, 37.888064 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291007, 37.892941 ], [ -122.291093, 37.890705 ], [ -122.291951, 37.890671 ], [ -122.291908, 37.892974 ], [ -122.291007, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892974 ], [ -122.291007, 37.892941 ], [ -122.291093, 37.890705 ], [ -122.291951, 37.890671 ], [ -122.291908, 37.892974 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290149, 37.892907 ], [ -122.290277, 37.890739 ], [ -122.291093, 37.890705 ], [ -122.291007, 37.892941 ], [ -122.290149, 37.892907 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291007, 37.892941 ], [ -122.290149, 37.892907 ], [ -122.290277, 37.890739 ], [ -122.291093, 37.890705 ], [ -122.291007, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.890671 ], [ -122.291951, 37.890671 ], [ -122.291093, 37.890705 ], [ -122.291093, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.890705 ], [ -122.291093, 37.890671 ], [ -122.291951, 37.890671 ], [ -122.291093, 37.890705 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289419, 37.890807 ], [ -122.290277, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892907 ], [ -122.289419, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892907 ], [ -122.289419, 37.890807 ], [ -122.290277, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892907 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288432, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288818, 37.891078 ], [ -122.288861, 37.890841 ], [ -122.289419, 37.890807 ], [ -122.289290, 37.892907 ], [ -122.288432, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892907 ], [ -122.288432, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288818, 37.891078 ], [ -122.288861, 37.890841 ], [ -122.289419, 37.890807 ], [ -122.289290, 37.892907 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.890671 ], [ -122.291093, 37.890705 ], [ -122.290792, 37.890739 ], [ -122.290106, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890739 ], [ -122.290106, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.890671 ], [ -122.291093, 37.890705 ], [ -122.290792, 37.890739 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "GEOID10": "060014206003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.291093, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290106, 37.888267 ], [ -122.290063, 37.888199 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "GEOID10": "060014206003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.290063, 37.888199 ], [ -122.291093, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290106, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890739 ], [ -122.289891, 37.890773 ], [ -122.289119, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.890773 ], [ -122.289119, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890739 ], [ -122.289891, 37.890773 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888876 ], [ -122.288260, 37.888673 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890739 ], [ -122.288861, 37.890841 ], [ -122.288260, 37.888876 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890841 ], [ -122.288260, 37.888876 ], [ -122.288260, 37.888673 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890739 ], [ -122.288861, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289119, 37.888470 ], [ -122.289119, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.289119, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289119, 37.888470 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.293496, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293582, 37.887522 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.887522 ], [ -122.292638, 37.884677 ], [ -122.293496, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293582, 37.887522 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "GEOID10": "060014206003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.292466, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.292123, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "GEOID10": "060014206003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292123, 37.887793 ], [ -122.292466, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884880 ], [ -122.292638, 37.884677 ], [ -122.293582, 37.887522 ], [ -122.293582, 37.887657 ], [ -122.292724, 37.887657 ], [ -122.291780, 37.884880 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292724, 37.887657 ], [ -122.291780, 37.884880 ], [ -122.292638, 37.884677 ], [ -122.293582, 37.887522 ], [ -122.293582, 37.887657 ], [ -122.292724, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291737, 37.884880 ], [ -122.291780, 37.884880 ], [ -122.292724, 37.887657 ], [ -122.292466, 37.887725 ], [ -122.291694, 37.885286 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292466, 37.887725 ], [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291737, 37.884880 ], [ -122.291780, 37.884880 ], [ -122.292724, 37.887657 ], [ -122.292466, 37.887725 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887725 ], [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887725 ], [ -122.292123, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293367, 37.884202 ], [ -122.292981, 37.883051 ], [ -122.293882, 37.882949 ], [ -122.294354, 37.884338 ], [ -122.293496, 37.884507 ], [ -122.293367, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293496, 37.884507 ], [ -122.293367, 37.884202 ], [ -122.292981, 37.883051 ], [ -122.293882, 37.882949 ], [ -122.294354, 37.884338 ], [ -122.293496, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292552, 37.884406 ], [ -122.292080, 37.883152 ], [ -122.292509, 37.883152 ], [ -122.292981, 37.883051 ], [ -122.293496, 37.884507 ], [ -122.292638, 37.884677 ], [ -122.292552, 37.884406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292552, 37.884406 ], [ -122.292080, 37.883152 ], [ -122.292509, 37.883152 ], [ -122.292981, 37.883051 ], [ -122.293496, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291265, 37.883254 ], [ -122.292080, 37.883152 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884880 ], [ -122.291265, 37.883254 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884880 ], [ -122.291265, 37.883254 ], [ -122.292080, 37.883152 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884880 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291093, 37.887996 ], [ -122.290192, 37.885219 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.887996 ], [ -122.290192, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291093, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885998 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ], [ -122.289333, 37.885998 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.289333, 37.885998 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885998 ], [ -122.289848, 37.884507 ], [ -122.290363, 37.885693 ], [ -122.291093, 37.887996 ], [ -122.290063, 37.888199 ], [ -122.289333, 37.885998 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.289333, 37.885998 ], [ -122.289848, 37.884507 ], [ -122.290363, 37.885693 ], [ -122.291093, 37.887996 ], [ -122.290063, 37.888199 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290406, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291179, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ], [ -122.290406, 37.883220 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.290406, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291179, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290835, 37.883322 ], [ -122.291093, 37.883254 ], [ -122.291265, 37.883254 ], [ -122.291780, 37.884880 ], [ -122.291522, 37.884914 ], [ -122.290835, 37.883322 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291522, 37.884914 ], [ -122.290835, 37.883322 ], [ -122.291093, 37.883254 ], [ -122.291265, 37.883254 ], [ -122.291780, 37.884880 ], [ -122.291522, 37.884914 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884507 ], [ -122.290320, 37.883051 ], [ -122.290320, 37.883220 ], [ -122.290406, 37.883220 ], [ -122.291179, 37.884981 ], [ -122.290192, 37.885219 ], [ -122.289848, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.289848, 37.884507 ], [ -122.290320, 37.883051 ], [ -122.290320, 37.883220 ], [ -122.290406, 37.883220 ], [ -122.291179, 37.884981 ], [ -122.290192, 37.885219 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885862 ], [ -122.289634, 37.884880 ], [ -122.289720, 37.884914 ], [ -122.289333, 37.885998 ], [ -122.289290, 37.885862 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885998 ], [ -122.289290, 37.885862 ], [ -122.289634, 37.884880 ], [ -122.289720, 37.884914 ], [ -122.289333, 37.885998 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.884710 ], [ -122.289333, 37.883288 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289720, 37.884914 ], [ -122.288775, 37.884710 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289720, 37.884914 ], [ -122.288775, 37.884710 ], [ -122.289333, 37.883288 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289720, 37.884914 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.883017 ], [ -122.295985, 37.883051 ], [ -122.296114, 37.883085 ], [ -122.296371, 37.883356 ], [ -122.296758, 37.883525 ], [ -122.296886, 37.883830 ], [ -122.295985, 37.883999 ], [ -122.295728, 37.883017 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883051 ], [ -122.296114, 37.883085 ], [ -122.296371, 37.883356 ], [ -122.296758, 37.883525 ], [ -122.296886, 37.883830 ], [ -122.295985, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294741, 37.882780 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ], [ -122.294741, 37.882780 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.294741, 37.882780 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "GEOID10": "060014201003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288432, 37.891484 ], [ -122.288775, 37.891044 ], [ -122.288775, 37.890841 ], [ -122.288861, 37.890841 ], [ -122.288818, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288432, 37.892873 ], [ -122.288346, 37.892873 ], [ -122.288432, 37.891484 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "GEOID10": "060014201003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.288432, 37.891484 ], [ -122.288775, 37.891044 ], [ -122.288775, 37.890841 ], [ -122.288861, 37.890841 ], [ -122.288818, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288432, 37.892873 ], [ -122.288346, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892839 ], [ -122.287531, 37.890909 ], [ -122.288775, 37.890841 ], [ -122.288775, 37.891044 ], [ -122.288432, 37.891484 ], [ -122.288346, 37.892873 ], [ -122.287445, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.287445, 37.892839 ], [ -122.287531, 37.890909 ], [ -122.288775, 37.890841 ], [ -122.288775, 37.891044 ], [ -122.288432, 37.891484 ], [ -122.288346, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890841 ], [ -122.287960, 37.890875 ], [ -122.287703, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.890875 ], [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890841 ], [ -122.287960, 37.890875 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890942 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891281 ], [ -122.287445, 37.892839 ], [ -122.287188, 37.892839 ], [ -122.287188, 37.890942 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892839 ], [ -122.287188, 37.890942 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891281 ], [ -122.287445, 37.892839 ], [ -122.287188, 37.892839 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "GEOID10": "060014206002017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890909 ], [ -122.287188, 37.890942 ], [ -122.286673, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "GEOID10": "060014206002017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890942 ], [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890909 ], [ -122.287188, 37.890942 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.286458, 37.890976 ], [ -122.285728, 37.891010 ], [ -122.285686, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.891010 ], [ -122.285686, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.286458, 37.890976 ], [ -122.285728, 37.891010 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890671 ], [ -122.288132, 37.888707 ], [ -122.288175, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288260, 37.888876 ], [ -122.288861, 37.890705 ], [ -122.288861, 37.890841 ], [ -122.288775, 37.890841 ], [ -122.288775, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890841 ], [ -122.288775, 37.890671 ], [ -122.288132, 37.888707 ], [ -122.288175, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288260, 37.888876 ], [ -122.288861, 37.890705 ], [ -122.288861, 37.890841 ], [ -122.288775, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288132, 37.888707 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888707 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.288947, 37.888436 ], [ -122.289119, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288260, 37.888673 ], [ -122.288303, 37.888572 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888673 ], [ -122.288303, 37.888572 ], [ -122.288947, 37.888436 ], [ -122.289119, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288260, 37.888673 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287316, 37.888910 ], [ -122.288175, 37.888606 ], [ -122.288132, 37.888707 ], [ -122.287102, 37.889080 ], [ -122.287102, 37.889012 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.287102, 37.889012 ], [ -122.287316, 37.888910 ], [ -122.288175, 37.888606 ], [ -122.288132, 37.888707 ], [ -122.287102, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287745, 37.890875 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287745, 37.890875 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286158, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889012 ], [ -122.286072, 37.888572 ], [ -122.286415, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.287273, 37.888233 ], [ -122.287102, 37.888843 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.889012 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.286072, 37.889012 ], [ -122.286072, 37.888572 ], [ -122.286415, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.287273, 37.888233 ], [ -122.287102, 37.888843 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285557, 37.890807 ], [ -122.285171, 37.889520 ], [ -122.285600, 37.889520 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ], [ -122.285171, 37.889520 ], [ -122.285600, 37.889520 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285686, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.285686, 37.890976 ], [ -122.285728, 37.891010 ], [ -122.284484, 37.891078 ], [ -122.284527, 37.891044 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.891078 ], [ -122.284527, 37.891044 ], [ -122.285686, 37.890976 ], [ -122.285728, 37.891010 ], [ -122.284484, 37.891078 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.890671 ], [ -122.284055, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889520 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.284484, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.284484, 37.890671 ], [ -122.284055, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889520 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284527, 37.891044 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "GEOID10": "060014206001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.284527, 37.891044 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891146 ], [ -122.283497, 37.891078 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "GEOID10": "060014206001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.284527, 37.891044 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891146 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889452 ], [ -122.282853, 37.889147 ], [ -122.283454, 37.889181 ], [ -122.284055, 37.889317 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891078 ], [ -122.282982, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.282982, 37.889452 ], [ -122.282853, 37.889147 ], [ -122.283454, 37.889181 ], [ -122.284055, 37.889317 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891078 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889452 ], [ -122.285600, 37.889452 ], [ -122.286158, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286029, 37.889452 ], [ -122.285171, 37.889520 ], [ -122.285213, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889520 ], [ -122.285213, 37.889452 ], [ -122.285600, 37.889452 ], [ -122.286158, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286029, 37.889452 ], [ -122.285171, 37.889520 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284999, 37.888639 ], [ -122.285171, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887623 ], [ -122.286072, 37.888572 ], [ -122.286072, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285213, 37.889452 ], [ -122.284999, 37.888639 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889452 ], [ -122.284999, 37.888639 ], [ -122.285171, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887623 ], [ -122.286072, 37.888572 ], [ -122.286072, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285213, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.285085, 37.887894 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285171, 37.887894 ], [ -122.284999, 37.888504 ], [ -122.285085, 37.889046 ], [ -122.285213, 37.889452 ], [ -122.285128, 37.889452 ], [ -122.284999, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889452 ], [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.285085, 37.887894 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285171, 37.887894 ], [ -122.284999, 37.888504 ], [ -122.285085, 37.889046 ], [ -122.285213, 37.889452 ], [ -122.285128, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284441, 37.889418 ], [ -122.284055, 37.889317 ], [ -122.284055, 37.889249 ], [ -122.284698, 37.889418 ], [ -122.285213, 37.889452 ], [ -122.285171, 37.889520 ], [ -122.284441, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889520 ], [ -122.284441, 37.889418 ], [ -122.284055, 37.889317 ], [ -122.284055, 37.889249 ], [ -122.284698, 37.889418 ], [ -122.285213, 37.889452 ], [ -122.285171, 37.889520 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284055, 37.889249 ], [ -122.284055, 37.889317 ], [ -122.283669, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284055, 37.889317 ], [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284055, 37.889249 ], [ -122.284055, 37.889317 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.889418 ], [ -122.283711, 37.889147 ], [ -122.283711, 37.888775 ], [ -122.284355, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285085, 37.887894 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285128, 37.889452 ], [ -122.284698, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889452 ], [ -122.284698, 37.889418 ], [ -122.283711, 37.889147 ], [ -122.283711, 37.888775 ], [ -122.284355, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285085, 37.887894 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285128, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283111, 37.889080 ], [ -122.282767, 37.889080 ], [ -122.282681, 37.888944 ], [ -122.282681, 37.888606 ], [ -122.283282, 37.886912 ], [ -122.283540, 37.886980 ], [ -122.284355, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889147 ], [ -122.283111, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889147 ], [ -122.283111, 37.889080 ], [ -122.282767, 37.889080 ], [ -122.282681, 37.888944 ], [ -122.282681, 37.888606 ], [ -122.283282, 37.886912 ], [ -122.283540, 37.886980 ], [ -122.284355, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889147 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885862 ], [ -122.289333, 37.885998 ], [ -122.288303, 37.888572 ], [ -122.288175, 37.888606 ], [ -122.289290, 37.885862 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.888606 ], [ -122.289290, 37.885862 ], [ -122.289333, 37.885998 ], [ -122.288303, 37.888572 ], [ -122.288175, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.888843 ], [ -122.287273, 37.888233 ], [ -122.287703, 37.887623 ], [ -122.288775, 37.884710 ], [ -122.289634, 37.884880 ], [ -122.289290, 37.885862 ], [ -122.288175, 37.888606 ], [ -122.287102, 37.889012 ], [ -122.287102, 37.888843 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287102, 37.888843 ], [ -122.287273, 37.888233 ], [ -122.287703, 37.887623 ], [ -122.288775, 37.884710 ], [ -122.289634, 37.884880 ], [ -122.289290, 37.885862 ], [ -122.288175, 37.888606 ], [ -122.287102, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.287960, 37.884507 ], [ -122.288775, 37.884710 ], [ -122.287703, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.286758, 37.887691 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287488, 37.887894 ], [ -122.286758, 37.887691 ], [ -122.287960, 37.884507 ], [ -122.288775, 37.884710 ], [ -122.287703, 37.887623 ], [ -122.287488, 37.887894 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286286, 37.886539 ], [ -122.286673, 37.885659 ], [ -122.287488, 37.885828 ], [ -122.287145, 37.886743 ], [ -122.286286, 37.886539 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.886743 ], [ -122.286286, 37.886539 ], [ -122.286673, 37.885659 ], [ -122.287488, 37.885828 ], [ -122.287145, 37.886743 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287831, 37.884169 ], [ -122.288089, 37.884270 ], [ -122.287488, 37.885828 ], [ -122.286758, 37.885659 ], [ -122.286673, 37.885659 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886539 ], [ -122.287145, 37.886743 ], [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287831, 37.884169 ], [ -122.288089, 37.884270 ], [ -122.287488, 37.885828 ], [ -122.286758, 37.885659 ], [ -122.286673, 37.885659 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886539 ], [ -122.287145, 37.886743 ], [ -122.286758, 37.887691 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289333, 37.883288 ], [ -122.288775, 37.884710 ], [ -122.287960, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.884710 ], [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289333, 37.883288 ], [ -122.288775, 37.884710 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ], [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ], [ -122.284355, 37.887149 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.284355, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285085, 37.885320 ], [ -122.285686, 37.883660 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ], [ -122.285686, 37.883660 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885523 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.884135 ], [ -122.285728, 37.883559 ], [ -122.285686, 37.883660 ], [ -122.284741, 37.884101 ], [ -122.284527, 37.884202 ], [ -122.284484, 37.884135 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.284484, 37.884135 ], [ -122.285728, 37.883559 ], [ -122.285686, 37.883660 ], [ -122.284741, 37.884101 ], [ -122.284527, 37.884202 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884372 ], [ -122.284527, 37.884202 ], [ -122.285686, 37.883660 ], [ -122.284570, 37.886709 ], [ -122.284355, 37.887149 ], [ -122.283540, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887149 ], [ -122.283540, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884372 ], [ -122.284527, 37.884202 ], [ -122.285686, 37.883660 ], [ -122.284570, 37.886709 ], [ -122.284355, 37.887149 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282681, 37.885998 ], [ -122.283196, 37.885388 ], [ -122.283282, 37.884778 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284527, 37.884372 ], [ -122.283840, 37.886235 ], [ -122.282681, 37.885998 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282681, 37.885998 ], [ -122.283196, 37.885388 ], [ -122.283282, 37.884778 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284527, 37.884372 ], [ -122.283840, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283368, 37.884677 ], [ -122.284484, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283883, 37.884541 ], [ -122.283411, 37.884744 ], [ -122.283368, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283411, 37.884744 ], [ -122.283368, 37.884677 ], [ -122.284484, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283883, 37.884541 ], [ -122.283411, 37.884744 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282596, 37.882746 ], [ -122.282767, 37.882543 ], [ -122.285385, 37.882441 ], [ -122.286072, 37.882475 ], [ -122.285728, 37.883559 ], [ -122.283154, 37.884778 ], [ -122.282424, 37.884981 ], [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282596, 37.882746 ], [ -122.282767, 37.882543 ], [ -122.285385, 37.882441 ], [ -122.286072, 37.882475 ], [ -122.285728, 37.883559 ], [ -122.283154, 37.884778 ], [ -122.282424, 37.884981 ], [ -122.281995, 37.884981 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "GEOID10": "060014206001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891146 ], [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "GEOID10": "060014206001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891146 ], [ -122.282424, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282381, 37.890807 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889249 ], [ -122.282853, 37.889181 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ], [ -122.282381, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.282381, 37.890807 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889249 ], [ -122.282853, 37.889181 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283282, 37.889147 ], [ -122.282853, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.283497, 37.889114 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ], [ -122.283282, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.283282, 37.889147 ], [ -122.282853, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.283497, 37.889114 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.282853, 37.889147 ], [ -122.282295, 37.889249 ], [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.282853, 37.889147 ], [ -122.282295, 37.889249 ], [ -122.281909, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886912 ], [ -122.282681, 37.888606 ], [ -122.282681, 37.888944 ], [ -122.282767, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886912 ], [ -122.282681, 37.888606 ], [ -122.282681, 37.888944 ], [ -122.282767, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886675 ], [ -122.282510, 37.886336 ], [ -122.282681, 37.885998 ], [ -122.283840, 37.886235 ], [ -122.283540, 37.886980 ], [ -122.282295, 37.886675 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886980 ], [ -122.282295, 37.886675 ], [ -122.282510, 37.886336 ], [ -122.282681, 37.885998 ], [ -122.283840, 37.886235 ], [ -122.283540, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281995, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282424, 37.884981 ], [ -122.283368, 37.884677 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885049 ], [ -122.282038, 37.885083 ], [ -122.281995, 37.885049 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885083 ], [ -122.281995, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282424, 37.884981 ], [ -122.283368, 37.884677 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885049 ], [ -122.282038, 37.885083 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287831, 37.884169 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287230, 37.882610 ], [ -122.288518, 37.883051 ], [ -122.288089, 37.884270 ], [ -122.287831, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288089, 37.884270 ], [ -122.287831, 37.884169 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287230, 37.882610 ], [ -122.288518, 37.883051 ], [ -122.288089, 37.884270 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286973, 37.882983 ], [ -122.287102, 37.882915 ], [ -122.287059, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ], [ -122.286973, 37.882983 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883999 ], [ -122.286973, 37.882983 ], [ -122.287102, 37.882915 ], [ -122.287059, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "GEOID10": "060014206001030", "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882881 ], [ -122.287145, 37.882577 ], [ -122.287230, 37.882610 ], [ -122.287188, 37.882678 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882881 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "GEOID10": "060014206001030", "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.882915 ], [ -122.287016, 37.882881 ], [ -122.287145, 37.882577 ], [ -122.287230, 37.882610 ], [ -122.287188, 37.882678 ], [ -122.287102, 37.882915 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883559 ], [ -122.287016, 37.882881 ], [ -122.287102, 37.882915 ], [ -122.285686, 37.883660 ], [ -122.285728, 37.883559 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.883660 ], [ -122.285728, 37.883559 ], [ -122.287016, 37.882881 ], [ -122.287102, 37.882915 ], [ -122.285686, 37.883660 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.882475 ], [ -122.286758, 37.882475 ], [ -122.287145, 37.882577 ], [ -122.287016, 37.882881 ], [ -122.285728, 37.883559 ], [ -122.286072, 37.882475 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883559 ], [ -122.286072, 37.882475 ], [ -122.286758, 37.882475 ], [ -122.287145, 37.882577 ], [ -122.287016, 37.882881 ], [ -122.285728, 37.883559 ] ] ] } } ] } ] } , @@ -2874,525 +2874,525 @@ , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 656, "y": 1581 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312551, 37.897123 ], [ -122.312529, 37.897021 ], [ -122.312443, 37.896937 ], [ -122.312143, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896717 ], [ -122.311585, 37.896480 ], [ -122.311585, 37.896293 ], [ -122.311521, 37.896175 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.895531 ], [ -122.311006, 37.895498 ], [ -122.310705, 37.895498 ], [ -122.310662, 37.895396 ], [ -122.310684, 37.895277 ], [ -122.310555, 37.895074 ], [ -122.310233, 37.894786 ], [ -122.310126, 37.894752 ], [ -122.309461, 37.893466 ], [ -122.309096, 37.892212 ], [ -122.309053, 37.891298 ], [ -122.309268, 37.889706 ], [ -122.309439, 37.889130 ], [ -122.309675, 37.888860 ], [ -122.309804, 37.888809 ], [ -122.309933, 37.888826 ], [ -122.310040, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310855, 37.889757 ], [ -122.310941, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890248 ], [ -122.311199, 37.890147 ], [ -122.311199, 37.889909 ], [ -122.311349, 37.889909 ], [ -122.311456, 37.889994 ], [ -122.311606, 37.890316 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891196 ], [ -122.313688, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892043 ], [ -122.314589, 37.892348 ], [ -122.314696, 37.892450 ], [ -122.314825, 37.892450 ], [ -122.314589, 37.892145 ], [ -122.314525, 37.891925 ], [ -122.314675, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315812, 37.891908 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891688 ], [ -122.315962, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317593, 37.890926 ], [ -122.318988, 37.890350 ], [ -122.319589, 37.890028 ], [ -122.319846, 37.889943 ], [ -122.322571, 37.889943 ], [ -122.322700, 37.889977 ], [ -122.322807, 37.890316 ], [ -122.323022, 37.890655 ], [ -122.323129, 37.890993 ], [ -122.323472, 37.891518 ], [ -122.323816, 37.892212 ], [ -122.323966, 37.892399 ], [ -122.324438, 37.892466 ], [ -122.324696, 37.892483 ], [ -122.324975, 37.892450 ], [ -122.325554, 37.892534 ], [ -122.325704, 37.892534 ], [ -122.325833, 37.892500 ], [ -122.325833, 37.892382 ], [ -122.325897, 37.892297 ], [ -122.325618, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325575, 37.891857 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890790 ], [ -122.326198, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.327313, 37.890790 ], [ -122.327378, 37.890892 ], [ -122.327399, 37.891467 ], [ -122.327507, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.890773 ], [ -122.327678, 37.890231 ], [ -122.327592, 37.889926 ], [ -122.327571, 37.889672 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312486, 37.897428 ], [ -122.312551, 37.897123 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312486, 37.897428 ], [ -122.312551, 37.897123 ], [ -122.312529, 37.897021 ], [ -122.312443, 37.896937 ], [ -122.312143, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896717 ], [ -122.311585, 37.896480 ], [ -122.311585, 37.896293 ], [ -122.311521, 37.896175 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.895531 ], [ -122.311006, 37.895498 ], [ -122.310705, 37.895498 ], [ -122.310662, 37.895396 ], [ -122.310684, 37.895277 ], [ -122.310555, 37.895074 ], [ -122.310233, 37.894786 ], [ -122.310126, 37.894752 ], [ -122.309461, 37.893466 ], [ -122.309096, 37.892212 ], [ -122.309053, 37.891298 ], [ -122.309268, 37.889706 ], [ -122.309439, 37.889130 ], [ -122.309675, 37.888860 ], [ -122.309804, 37.888809 ], [ -122.309933, 37.888826 ], [ -122.310040, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310855, 37.889757 ], [ -122.310941, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890248 ], [ -122.311199, 37.890147 ], [ -122.311199, 37.889909 ], [ -122.311349, 37.889909 ], [ -122.311456, 37.889994 ], [ -122.311606, 37.890316 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891196 ], [ -122.313688, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892043 ], [ -122.314589, 37.892348 ], [ -122.314696, 37.892450 ], [ -122.314825, 37.892450 ], [ -122.314589, 37.892145 ], [ -122.314525, 37.891925 ], [ -122.314675, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315812, 37.891908 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891688 ], [ -122.315962, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317593, 37.890926 ], [ -122.318988, 37.890350 ], [ -122.319589, 37.890028 ], [ -122.319846, 37.889943 ], [ -122.322571, 37.889943 ], [ -122.322700, 37.889977 ], [ -122.322807, 37.890316 ], [ -122.323022, 37.890655 ], [ -122.323129, 37.890993 ], [ -122.323472, 37.891518 ], [ -122.323816, 37.892212 ], [ -122.323966, 37.892399 ], [ -122.324438, 37.892466 ], [ -122.324696, 37.892483 ], [ -122.324975, 37.892450 ], [ -122.325554, 37.892534 ], [ -122.325704, 37.892534 ], [ -122.325833, 37.892500 ], [ -122.325833, 37.892382 ], [ -122.325897, 37.892297 ], [ -122.325618, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325575, 37.891857 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890790 ], [ -122.326198, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.327313, 37.890790 ], [ -122.327378, 37.890892 ], [ -122.327399, 37.891467 ], [ -122.327507, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.890773 ], [ -122.327678, 37.890231 ], [ -122.327592, 37.889926 ], [ -122.327571, 37.889672 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312486, 37.897428 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310662, 37.895752 ], [ -122.309997, 37.894769 ], [ -122.309525, 37.893855 ], [ -122.309225, 37.893059 ], [ -122.309096, 37.892585 ], [ -122.309010, 37.892077 ], [ -122.308967, 37.891721 ], [ -122.308989, 37.891247 ], [ -122.308881, 37.890485 ], [ -122.308967, 37.888775 ], [ -122.309225, 37.887843 ], [ -122.309804, 37.888131 ], [ -122.310190, 37.888521 ], [ -122.311242, 37.889452 ], [ -122.315598, 37.889639 ], [ -122.315791, 37.889520 ], [ -122.327592, 37.889672 ], [ -122.327571, 37.889791 ], [ -122.327678, 37.890231 ], [ -122.327614, 37.890773 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.891450 ], [ -122.327507, 37.891552 ], [ -122.327399, 37.891467 ], [ -122.327378, 37.890892 ], [ -122.327313, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.326198, 37.890790 ], [ -122.325811, 37.890790 ], [ -122.325640, 37.890841 ], [ -122.325575, 37.890942 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.891857 ], [ -122.325554, 37.892060 ], [ -122.325618, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325833, 37.892382 ], [ -122.325833, 37.892500 ], [ -122.325704, 37.892534 ], [ -122.325554, 37.892534 ], [ -122.324975, 37.892450 ], [ -122.324696, 37.892483 ], [ -122.323966, 37.892399 ], [ -122.323816, 37.892212 ], [ -122.323472, 37.891518 ], [ -122.323129, 37.890993 ], [ -122.323022, 37.890655 ], [ -122.322807, 37.890316 ], [ -122.322700, 37.889977 ], [ -122.322571, 37.889943 ], [ -122.319846, 37.889943 ], [ -122.319589, 37.890028 ], [ -122.318988, 37.890350 ], [ -122.317593, 37.890926 ], [ -122.316027, 37.891146 ], [ -122.315962, 37.891247 ], [ -122.315941, 37.891688 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891891 ], [ -122.315812, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.314675, 37.891874 ], [ -122.314525, 37.891925 ], [ -122.314589, 37.892145 ], [ -122.314825, 37.892450 ], [ -122.314696, 37.892450 ], [ -122.314589, 37.892348 ], [ -122.314396, 37.892043 ], [ -122.314267, 37.891958 ], [ -122.313688, 37.891891 ], [ -122.312722, 37.891196 ], [ -122.311692, 37.890401 ], [ -122.311606, 37.890316 ], [ -122.311456, 37.889994 ], [ -122.311349, 37.889909 ], [ -122.311199, 37.889909 ], [ -122.311199, 37.890147 ], [ -122.311134, 37.890248 ], [ -122.311006, 37.890197 ], [ -122.310941, 37.889859 ], [ -122.310855, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310040, 37.888910 ], [ -122.309933, 37.888826 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888860 ], [ -122.309439, 37.889130 ], [ -122.309268, 37.889706 ], [ -122.309053, 37.891298 ], [ -122.309096, 37.892212 ], [ -122.309461, 37.893466 ], [ -122.310126, 37.894752 ], [ -122.310233, 37.894786 ], [ -122.310555, 37.895074 ], [ -122.310684, 37.895277 ], [ -122.310662, 37.895396 ], [ -122.310705, 37.895498 ], [ -122.311006, 37.895498 ], [ -122.311134, 37.895531 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896175 ], [ -122.311585, 37.896293 ], [ -122.311585, 37.896480 ], [ -122.311521, 37.896717 ], [ -122.310662, 37.895752 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3009", "GEOID10": "060014203003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 265574, "AWATER10": 0, "INTPTLAT10": "+37.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311521, 37.896717 ], [ -122.310662, 37.895752 ], [ -122.309997, 37.894769 ], [ -122.309525, 37.893855 ], [ -122.309225, 37.893059 ], [ -122.309096, 37.892585 ], [ -122.309010, 37.892077 ], [ -122.308967, 37.891721 ], [ -122.308989, 37.891247 ], [ -122.308881, 37.890485 ], [ -122.308967, 37.888775 ], [ -122.309225, 37.887843 ], [ -122.309804, 37.888131 ], [ -122.310190, 37.888521 ], [ -122.311242, 37.889452 ], [ -122.315598, 37.889639 ], [ -122.315791, 37.889520 ], [ -122.327592, 37.889672 ], [ -122.327571, 37.889791 ], [ -122.327678, 37.890231 ], [ -122.327614, 37.890773 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.891450 ], [ -122.327507, 37.891552 ], [ -122.327399, 37.891467 ], [ -122.327378, 37.890892 ], [ -122.327313, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.326198, 37.890790 ], [ -122.325811, 37.890790 ], [ -122.325640, 37.890841 ], [ -122.325575, 37.890942 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.891857 ], [ -122.325554, 37.892060 ], [ -122.325618, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325833, 37.892382 ], [ -122.325833, 37.892500 ], [ -122.325704, 37.892534 ], [ -122.325554, 37.892534 ], [ -122.324975, 37.892450 ], [ -122.324696, 37.892483 ], [ -122.323966, 37.892399 ], [ -122.323816, 37.892212 ], [ -122.323472, 37.891518 ], [ -122.323129, 37.890993 ], [ -122.323022, 37.890655 ], [ -122.322807, 37.890316 ], [ -122.322700, 37.889977 ], [ -122.322571, 37.889943 ], [ -122.319846, 37.889943 ], [ -122.319589, 37.890028 ], [ -122.318988, 37.890350 ], [ -122.317593, 37.890926 ], [ -122.316027, 37.891146 ], [ -122.315962, 37.891247 ], [ -122.315941, 37.891688 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891891 ], [ -122.315812, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.314675, 37.891874 ], [ -122.314525, 37.891925 ], [ -122.314589, 37.892145 ], [ -122.314825, 37.892450 ], [ -122.314696, 37.892450 ], [ -122.314589, 37.892348 ], [ -122.314396, 37.892043 ], [ -122.314267, 37.891958 ], [ -122.313688, 37.891891 ], [ -122.312722, 37.891196 ], [ -122.311692, 37.890401 ], [ -122.311606, 37.890316 ], [ -122.311456, 37.889994 ], [ -122.311349, 37.889909 ], [ -122.311199, 37.889909 ], [ -122.311199, 37.890147 ], [ -122.311134, 37.890248 ], [ -122.311006, 37.890197 ], [ -122.310941, 37.889859 ], [ -122.310855, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310040, 37.888910 ], [ -122.309933, 37.888826 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888860 ], [ -122.309439, 37.889130 ], [ -122.309268, 37.889706 ], [ -122.309053, 37.891298 ], [ -122.309096, 37.892212 ], [ -122.309461, 37.893466 ], [ -122.310126, 37.894752 ], [ -122.310233, 37.894786 ], [ -122.310555, 37.895074 ], [ -122.310684, 37.895277 ], [ -122.310662, 37.895396 ], [ -122.310705, 37.895498 ], [ -122.311006, 37.895498 ], [ -122.311134, 37.895531 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896175 ], [ -122.311585, 37.896293 ], [ -122.311585, 37.896480 ], [ -122.311521, 37.896717 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311585, 37.896852 ], [ -122.311542, 37.896818 ], [ -122.312143, 37.896937 ], [ -122.312443, 37.896937 ], [ -122.312529, 37.897021 ], [ -122.312551, 37.897123 ], [ -122.312486, 37.897428 ], [ -122.312078, 37.897479 ], [ -122.311585, 37.896852 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311585, 37.896852 ], [ -122.311542, 37.896818 ], [ -122.312143, 37.896937 ], [ -122.312443, 37.896937 ], [ -122.312529, 37.897021 ], [ -122.312551, 37.897123 ], [ -122.312486, 37.897428 ], [ -122.312078, 37.897479 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.897800 ], [ -122.308280, 37.895227 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.893652 ], [ -122.307808, 37.892788 ], [ -122.307851, 37.892280 ], [ -122.308023, 37.892162 ], [ -122.308238, 37.892179 ], [ -122.308323, 37.893178 ], [ -122.308280, 37.893770 ], [ -122.308345, 37.894414 ], [ -122.309160, 37.896734 ], [ -122.309396, 37.897309 ], [ -122.309525, 37.897834 ], [ -122.309353, 37.897868 ], [ -122.309332, 37.897800 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3003", "GEOID10": "060014203003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18792, "AWATER10": 0, "INTPTLAT10": "+37.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309353, 37.897868 ], [ -122.309332, 37.897800 ], [ -122.308280, 37.895227 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.893652 ], [ -122.307808, 37.892788 ], [ -122.307851, 37.892280 ], [ -122.308023, 37.892162 ], [ -122.308238, 37.892179 ], [ -122.308323, 37.893178 ], [ -122.308280, 37.893770 ], [ -122.308345, 37.894414 ], [ -122.309160, 37.896734 ], [ -122.309396, 37.897309 ], [ -122.309525, 37.897834 ], [ -122.309353, 37.897868 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309933, 37.895667 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308495, 37.892382 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890079 ], [ -122.308967, 37.892551 ], [ -122.309139, 37.893127 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894820 ], [ -122.310512, 37.895802 ], [ -122.310941, 37.896412 ], [ -122.311864, 37.897529 ], [ -122.311478, 37.897631 ], [ -122.309933, 37.895667 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897631 ], [ -122.309933, 37.895667 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308495, 37.892382 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890079 ], [ -122.308967, 37.892551 ], [ -122.309139, 37.893127 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894820 ], [ -122.310512, 37.895802 ], [ -122.310941, 37.896412 ], [ -122.311864, 37.897529 ], [ -122.311478, 37.897631 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309396, 37.897309 ], [ -122.309160, 37.896734 ], [ -122.308345, 37.894414 ], [ -122.308280, 37.893770 ], [ -122.308323, 37.893178 ], [ -122.308259, 37.892297 ], [ -122.307894, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308495, 37.892382 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895667 ], [ -122.311478, 37.897631 ], [ -122.310898, 37.897834 ], [ -122.309525, 37.897834 ], [ -122.309396, 37.897309 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309525, 37.897834 ], [ -122.309396, 37.897309 ], [ -122.309160, 37.896734 ], [ -122.308345, 37.894414 ], [ -122.308280, 37.893770 ], [ -122.308323, 37.893178 ], [ -122.308259, 37.892297 ], [ -122.307894, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308495, 37.892382 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895667 ], [ -122.311478, 37.897631 ], [ -122.310898, 37.897834 ], [ -122.309525, 37.897834 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310941, 37.896412 ], [ -122.310512, 37.895802 ], [ -122.309697, 37.894465 ], [ -122.309418, 37.893889 ], [ -122.309139, 37.893127 ], [ -122.308710, 37.891603 ], [ -122.308345, 37.890079 ], [ -122.308967, 37.888775 ], [ -122.308881, 37.890485 ], [ -122.308989, 37.891247 ], [ -122.308967, 37.891721 ], [ -122.309010, 37.892077 ], [ -122.309096, 37.892585 ], [ -122.309225, 37.893059 ], [ -122.309525, 37.893855 ], [ -122.309997, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311542, 37.896818 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897529 ], [ -122.310941, 37.896412 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311864, 37.897529 ], [ -122.310941, 37.896412 ], [ -122.310512, 37.895802 ], [ -122.309697, 37.894465 ], [ -122.309418, 37.893889 ], [ -122.309139, 37.893127 ], [ -122.308710, 37.891603 ], [ -122.308345, 37.890079 ], [ -122.308967, 37.888775 ], [ -122.308881, 37.890485 ], [ -122.308989, 37.891247 ], [ -122.308967, 37.891721 ], [ -122.309010, 37.892077 ], [ -122.309096, 37.892585 ], [ -122.309225, 37.893059 ], [ -122.309525, 37.893855 ], [ -122.309997, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311542, 37.896818 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897529 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309289, 37.897783 ], [ -122.307701, 37.894244 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892551 ], [ -122.307014, 37.891925 ], [ -122.307079, 37.890875 ], [ -122.307250, 37.890130 ], [ -122.307529, 37.889503 ], [ -122.307894, 37.890976 ], [ -122.307658, 37.891671 ], [ -122.307572, 37.892246 ], [ -122.307529, 37.892619 ], [ -122.307594, 37.893296 ], [ -122.307787, 37.893974 ], [ -122.308280, 37.895227 ], [ -122.309353, 37.897868 ], [ -122.309289, 37.897783 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309353, 37.897868 ], [ -122.309289, 37.897783 ], [ -122.307701, 37.894244 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892551 ], [ -122.307014, 37.891925 ], [ -122.307079, 37.890875 ], [ -122.307250, 37.890130 ], [ -122.307529, 37.889503 ], [ -122.307894, 37.890976 ], [ -122.307658, 37.891671 ], [ -122.307572, 37.892246 ], [ -122.307529, 37.892619 ], [ -122.307594, 37.893296 ], [ -122.307787, 37.893974 ], [ -122.308280, 37.895227 ], [ -122.309353, 37.897868 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308602, 37.897157 ], [ -122.308495, 37.896835 ], [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306628, 37.892399 ], [ -122.306650, 37.892229 ], [ -122.306714, 37.892009 ], [ -122.306693, 37.891704 ], [ -122.306414, 37.890807 ], [ -122.306714, 37.890739 ], [ -122.306821, 37.890688 ], [ -122.307229, 37.889994 ], [ -122.307401, 37.889757 ], [ -122.307208, 37.890282 ], [ -122.307036, 37.891230 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892551 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894244 ], [ -122.309332, 37.897868 ], [ -122.309010, 37.897953 ], [ -122.308967, 37.897987 ], [ -122.308602, 37.897157 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308967, 37.897987 ], [ -122.308602, 37.897157 ], [ -122.308495, 37.896835 ], [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306628, 37.892399 ], [ -122.306650, 37.892229 ], [ -122.306714, 37.892009 ], [ -122.306693, 37.891704 ], [ -122.306414, 37.890807 ], [ -122.306714, 37.890739 ], [ -122.306821, 37.890688 ], [ -122.307229, 37.889994 ], [ -122.307401, 37.889757 ], [ -122.307208, 37.890282 ], [ -122.307036, 37.891230 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892551 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894244 ], [ -122.309332, 37.897868 ], [ -122.309010, 37.897953 ], [ -122.308967, 37.897987 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.893720 ], [ -122.307572, 37.893127 ], [ -122.307529, 37.892619 ], [ -122.307658, 37.891671 ], [ -122.307894, 37.890976 ], [ -122.308238, 37.892179 ], [ -122.308023, 37.892162 ], [ -122.307851, 37.892280 ], [ -122.307808, 37.893025 ], [ -122.307873, 37.893652 ], [ -122.308280, 37.895227 ], [ -122.307701, 37.893720 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308280, 37.895227 ], [ -122.307701, 37.893720 ], [ -122.307572, 37.893127 ], [ -122.307529, 37.892619 ], [ -122.307658, 37.891671 ], [ -122.307894, 37.890976 ], [ -122.308238, 37.892179 ], [ -122.308023, 37.892162 ], [ -122.307851, 37.892280 ], [ -122.307808, 37.893025 ], [ -122.307873, 37.893652 ], [ -122.308280, 37.895227 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301478, 37.898207 ], [ -122.300985, 37.896700 ], [ -122.301135, 37.896683 ], [ -122.301629, 37.898528 ], [ -122.301478, 37.898207 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301629, 37.898528 ], [ -122.301478, 37.898207 ], [ -122.300985, 37.896700 ], [ -122.301135, 37.896683 ], [ -122.301629, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.898308 ], [ -122.300127, 37.896869 ], [ -122.300985, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.301500, 37.898528 ], [ -122.300599, 37.898308 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301500, 37.898528 ], [ -122.300599, 37.898308 ], [ -122.300127, 37.896869 ], [ -122.300985, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.301500, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300298, 37.898241 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897055 ], [ -122.300127, 37.896869 ], [ -122.300599, 37.898308 ], [ -122.300298, 37.898241 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.898308 ], [ -122.300298, 37.898241 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897055 ], [ -122.300127, 37.896869 ], [ -122.300599, 37.898308 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301135, 37.896683 ], [ -122.300920, 37.896022 ], [ -122.302616, 37.895667 ], [ -122.302015, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894515 ], [ -122.303131, 37.894261 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.893533 ], [ -122.303302, 37.893144 ], [ -122.303495, 37.892839 ], [ -122.303088, 37.891603 ], [ -122.303324, 37.890841 ], [ -122.303452, 37.890536 ], [ -122.303560, 37.890350 ], [ -122.303731, 37.890180 ], [ -122.303967, 37.890045 ], [ -122.304418, 37.889909 ], [ -122.304933, 37.889825 ], [ -122.306027, 37.889588 ], [ -122.306693, 37.891704 ], [ -122.306714, 37.892009 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308495, 37.896835 ], [ -122.308602, 37.897157 ], [ -122.308967, 37.897987 ], [ -122.308795, 37.898037 ], [ -122.306199, 37.898241 ], [ -122.305341, 37.898427 ], [ -122.304590, 37.898427 ], [ -122.303731, 37.898528 ], [ -122.301629, 37.898528 ], [ -122.301135, 37.896683 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301629, 37.898528 ], [ -122.301135, 37.896683 ], [ -122.300920, 37.896022 ], [ -122.302616, 37.895667 ], [ -122.302015, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894515 ], [ -122.303131, 37.894261 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.893533 ], [ -122.303302, 37.893144 ], [ -122.303495, 37.892839 ], [ -122.303088, 37.891603 ], [ -122.303324, 37.890841 ], [ -122.303452, 37.890536 ], [ -122.303560, 37.890350 ], [ -122.303731, 37.890180 ], [ -122.303967, 37.890045 ], [ -122.304418, 37.889909 ], [ -122.304933, 37.889825 ], [ -122.306027, 37.889588 ], [ -122.306693, 37.891704 ], [ -122.306714, 37.892009 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308495, 37.896835 ], [ -122.308602, 37.897157 ], [ -122.308967, 37.897987 ], [ -122.308795, 37.898037 ], [ -122.306199, 37.898241 ], [ -122.305341, 37.898427 ], [ -122.304590, 37.898427 ], [ -122.303731, 37.898528 ], [ -122.301629, 37.898528 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303302, 37.893144 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.894261 ], [ -122.303109, 37.894515 ], [ -122.302251, 37.891772 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.894515 ], [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303302, 37.893144 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.894261 ], [ -122.303109, 37.894515 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.302015, 37.893821 ], [ -122.302616, 37.895667 ], [ -122.301779, 37.895836 ], [ -122.301178, 37.893990 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895836 ], [ -122.301178, 37.893990 ], [ -122.302015, 37.893821 ], [ -122.302616, 37.895667 ], [ -122.301779, 37.895836 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896683 ], [ -122.300985, 37.896700 ], [ -122.300792, 37.896056 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300985, 37.896700 ], [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896683 ], [ -122.300985, 37.896700 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300470, 37.895074 ], [ -122.300599, 37.895057 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ], [ -122.300470, 37.895074 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300470, 37.895074 ], [ -122.300599, 37.895057 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895260 ], [ -122.300470, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ], [ -122.299612, 37.895260 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300127, 37.896869 ], [ -122.299612, 37.895260 ], [ -122.300470, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.895057 ], [ -122.300341, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895836 ], [ -122.300920, 37.896022 ], [ -122.300599, 37.895057 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.300599, 37.895057 ], [ -122.300341, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895836 ], [ -122.300920, 37.896022 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891942 ], [ -122.302251, 37.891772 ], [ -122.302852, 37.893652 ], [ -122.302015, 37.893821 ], [ -122.301435, 37.891942 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302015, 37.893821 ], [ -122.301435, 37.891942 ], [ -122.302251, 37.891772 ], [ -122.302852, 37.893652 ], [ -122.302015, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892111 ], [ -122.301435, 37.891942 ], [ -122.302015, 37.893821 ], [ -122.301178, 37.893990 ], [ -122.300577, 37.892111 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.300577, 37.892111 ], [ -122.301435, 37.891942 ], [ -122.302015, 37.893821 ], [ -122.301178, 37.893990 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893466 ], [ -122.300084, 37.893432 ], [ -122.300556, 37.894871 ], [ -122.300599, 37.895057 ], [ -122.300470, 37.895074 ], [ -122.299955, 37.893466 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300470, 37.895074 ], [ -122.299955, 37.893466 ], [ -122.300084, 37.893432 ], [ -122.300556, 37.894871 ], [ -122.300599, 37.895057 ], [ -122.300470, 37.895074 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300084, 37.893432 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892111 ], [ -122.301178, 37.893990 ], [ -122.300341, 37.894160 ], [ -122.300084, 37.893432 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300341, 37.894160 ], [ -122.300084, 37.893432 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892111 ], [ -122.301178, 37.893990 ], [ -122.300341, 37.894160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892314 ], [ -122.299719, 37.892297 ], [ -122.300084, 37.893432 ], [ -122.299955, 37.893466 ], [ -122.299590, 37.892314 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893466 ], [ -122.299590, 37.892314 ], [ -122.299719, 37.892297 ], [ -122.300084, 37.893432 ], [ -122.299955, 37.893466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327442, 37.889130 ], [ -122.327571, 37.888690 ], [ -122.327421, 37.888622 ], [ -122.327034, 37.888690 ], [ -122.326713, 37.888589 ], [ -122.325447, 37.888081 ], [ -122.324910, 37.887911 ], [ -122.324610, 37.887877 ], [ -122.322936, 37.888284 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889063 ], [ -122.322764, 37.889164 ], [ -122.322528, 37.889300 ], [ -122.322249, 37.889384 ], [ -122.321928, 37.889401 ], [ -122.321649, 37.889368 ], [ -122.321348, 37.889266 ], [ -122.320919, 37.889249 ], [ -122.319610, 37.889435 ], [ -122.318945, 37.889384 ], [ -122.317808, 37.889351 ], [ -122.317250, 37.889283 ], [ -122.316842, 37.888927 ], [ -122.316756, 37.888741 ], [ -122.316585, 37.888589 ], [ -122.316048, 37.887911 ], [ -122.315834, 37.887386 ], [ -122.315898, 37.886810 ], [ -122.315876, 37.886573 ], [ -122.315941, 37.886235 ], [ -122.316477, 37.886116 ], [ -122.316456, 37.885947 ], [ -122.315984, 37.885947 ], [ -122.316027, 37.885659 ], [ -122.316864, 37.885642 ], [ -122.316864, 37.885760 ], [ -122.317035, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885506 ], [ -122.316091, 37.885439 ], [ -122.315705, 37.885269 ], [ -122.315447, 37.884710 ], [ -122.315469, 37.884592 ], [ -122.315619, 37.884406 ], [ -122.315662, 37.884287 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884016 ], [ -122.315319, 37.884067 ], [ -122.315018, 37.883965 ], [ -122.314589, 37.883525 ], [ -122.314374, 37.883373 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313602, 37.882424 ], [ -122.313044, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327635, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889672 ], [ -122.327442, 37.889130 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889672 ], [ -122.327442, 37.889130 ], [ -122.327571, 37.888690 ], [ -122.327421, 37.888622 ], [ -122.327034, 37.888690 ], [ -122.326713, 37.888589 ], [ -122.325447, 37.888081 ], [ -122.324910, 37.887911 ], [ -122.324610, 37.887877 ], [ -122.322936, 37.888284 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889063 ], [ -122.322764, 37.889164 ], [ -122.322528, 37.889300 ], [ -122.322249, 37.889384 ], [ -122.321928, 37.889401 ], [ -122.321649, 37.889368 ], [ -122.321348, 37.889266 ], [ -122.320919, 37.889249 ], [ -122.319610, 37.889435 ], [ -122.318945, 37.889384 ], [ -122.317808, 37.889351 ], [ -122.317250, 37.889283 ], [ -122.316842, 37.888927 ], [ -122.316756, 37.888741 ], [ -122.316585, 37.888589 ], [ -122.316048, 37.887911 ], [ -122.315834, 37.887386 ], [ -122.315898, 37.886810 ], [ -122.315876, 37.886573 ], [ -122.315941, 37.886235 ], [ -122.316477, 37.886116 ], [ -122.316456, 37.885947 ], [ -122.315984, 37.885947 ], [ -122.316027, 37.885659 ], [ -122.316864, 37.885642 ], [ -122.316864, 37.885760 ], [ -122.317035, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885506 ], [ -122.316091, 37.885439 ], [ -122.315705, 37.885269 ], [ -122.315447, 37.884710 ], [ -122.315469, 37.884592 ], [ -122.315619, 37.884406 ], [ -122.315662, 37.884287 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884016 ], [ -122.315319, 37.884067 ], [ -122.315018, 37.883965 ], [ -122.314589, 37.883525 ], [ -122.314374, 37.883373 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313602, 37.882424 ], [ -122.313044, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327635, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889672 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.315791, 37.889520 ], [ -122.315598, 37.889639 ], [ -122.311242, 37.889452 ], [ -122.310190, 37.888521 ], [ -122.309804, 37.888131 ], [ -122.309783, 37.888047 ], [ -122.309353, 37.887674 ], [ -122.309289, 37.887877 ], [ -122.309225, 37.887843 ], [ -122.309289, 37.887589 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887166 ], [ -122.309546, 37.886980 ], [ -122.309525, 37.886455 ], [ -122.308881, 37.884016 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882289 ], [ -122.312465, 37.881391 ], [ -122.313044, 37.882204 ], [ -122.313602, 37.882424 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314374, 37.883373 ], [ -122.314589, 37.883525 ], [ -122.315018, 37.883965 ], [ -122.315319, 37.884067 ], [ -122.315469, 37.884016 ], [ -122.315598, 37.884067 ], [ -122.315662, 37.884287 ], [ -122.315619, 37.884406 ], [ -122.315469, 37.884592 ], [ -122.315447, 37.884710 ], [ -122.315705, 37.885269 ], [ -122.316091, 37.885439 ], [ -122.316027, 37.885506 ], [ -122.317057, 37.885489 ], [ -122.317035, 37.885760 ], [ -122.316864, 37.885760 ], [ -122.316864, 37.885642 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885947 ], [ -122.316456, 37.885947 ], [ -122.316477, 37.886116 ], [ -122.315941, 37.886235 ], [ -122.315876, 37.886573 ], [ -122.315898, 37.886810 ], [ -122.315834, 37.887386 ], [ -122.316048, 37.887911 ], [ -122.316585, 37.888589 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888927 ], [ -122.317250, 37.889283 ], [ -122.317808, 37.889351 ], [ -122.318945, 37.889384 ], [ -122.319610, 37.889435 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889266 ], [ -122.321649, 37.889368 ], [ -122.321928, 37.889401 ], [ -122.322249, 37.889384 ], [ -122.322528, 37.889300 ], [ -122.322764, 37.889164 ], [ -122.322850, 37.889063 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888284 ], [ -122.324610, 37.887877 ], [ -122.324910, 37.887911 ], [ -122.325447, 37.888081 ], [ -122.326713, 37.888589 ], [ -122.327034, 37.888690 ], [ -122.327421, 37.888622 ], [ -122.327571, 37.888690 ], [ -122.327442, 37.889130 ], [ -122.327571, 37.889672 ], [ -122.315791, 37.889520 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889672 ], [ -122.315791, 37.889520 ], [ -122.315598, 37.889639 ], [ -122.311242, 37.889452 ], [ -122.310190, 37.888521 ], [ -122.309804, 37.888131 ], [ -122.309783, 37.888047 ], [ -122.309353, 37.887674 ], [ -122.309289, 37.887877 ], [ -122.309225, 37.887843 ], [ -122.309289, 37.887589 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887166 ], [ -122.309546, 37.886980 ], [ -122.309525, 37.886455 ], [ -122.308881, 37.884016 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882289 ], [ -122.312465, 37.881391 ], [ -122.313044, 37.882204 ], [ -122.313602, 37.882424 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314374, 37.883373 ], [ -122.314589, 37.883525 ], [ -122.315018, 37.883965 ], [ -122.315319, 37.884067 ], [ -122.315469, 37.884016 ], [ -122.315598, 37.884067 ], [ -122.315662, 37.884287 ], [ -122.315619, 37.884406 ], [ -122.315469, 37.884592 ], [ -122.315447, 37.884710 ], [ -122.315705, 37.885269 ], [ -122.316091, 37.885439 ], [ -122.316027, 37.885506 ], [ -122.317057, 37.885489 ], [ -122.317035, 37.885760 ], [ -122.316864, 37.885760 ], [ -122.316864, 37.885642 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885947 ], [ -122.316456, 37.885947 ], [ -122.316477, 37.886116 ], [ -122.315941, 37.886235 ], [ -122.315876, 37.886573 ], [ -122.315898, 37.886810 ], [ -122.315834, 37.887386 ], [ -122.316048, 37.887911 ], [ -122.316585, 37.888589 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888927 ], [ -122.317250, 37.889283 ], [ -122.317808, 37.889351 ], [ -122.318945, 37.889384 ], [ -122.319610, 37.889435 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889266 ], [ -122.321649, 37.889368 ], [ -122.321928, 37.889401 ], [ -122.322249, 37.889384 ], [ -122.322528, 37.889300 ], [ -122.322764, 37.889164 ], [ -122.322850, 37.889063 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888284 ], [ -122.324610, 37.887877 ], [ -122.324910, 37.887911 ], [ -122.325447, 37.888081 ], [ -122.326713, 37.888589 ], [ -122.327034, 37.888690 ], [ -122.327421, 37.888622 ], [ -122.327571, 37.888690 ], [ -122.327442, 37.889130 ], [ -122.327571, 37.889672 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "GEOID10": "060014203003030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309611, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887877 ], [ -122.309353, 37.887674 ], [ -122.309783, 37.888047 ], [ -122.309804, 37.888131 ], [ -122.309611, 37.888030 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "GEOID10": "060014203003030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309804, 37.888131 ], [ -122.309611, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887877 ], [ -122.309353, 37.887674 ], [ -122.309783, 37.888047 ], [ -122.309804, 37.888131 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309053, 37.887437 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.309096, 37.888385 ], [ -122.308967, 37.888775 ], [ -122.309053, 37.887437 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308967, 37.888775 ], [ -122.309053, 37.887437 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.309096, 37.888385 ], [ -122.308967, 37.888775 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.889215 ], [ -122.308366, 37.888995 ], [ -122.308538, 37.888284 ], [ -122.308495, 37.887640 ], [ -122.308538, 37.887556 ], [ -122.308624, 37.887335 ], [ -122.308881, 37.887420 ], [ -122.309053, 37.887437 ], [ -122.308967, 37.888775 ], [ -122.308345, 37.890079 ], [ -122.308345, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.890079 ], [ -122.308345, 37.889215 ], [ -122.308366, 37.888995 ], [ -122.308538, 37.888284 ], [ -122.308495, 37.887640 ], [ -122.308538, 37.887556 ], [ -122.308624, 37.887335 ], [ -122.308881, 37.887420 ], [ -122.309053, 37.887437 ], [ -122.308967, 37.888775 ], [ -122.308345, 37.890079 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890248 ], [ -122.306607, 37.890197 ], [ -122.306306, 37.890096 ], [ -122.306135, 37.889909 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889537 ], [ -122.306821, 37.890688 ], [ -122.306714, 37.890739 ], [ -122.306414, 37.890807 ], [ -122.306242, 37.890248 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890807 ], [ -122.306242, 37.890248 ], [ -122.306607, 37.890197 ], [ -122.306306, 37.890096 ], [ -122.306135, 37.889909 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889537 ], [ -122.306821, 37.890688 ], [ -122.306714, 37.890739 ], [ -122.306414, 37.890807 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306135, 37.889909 ], [ -122.306306, 37.890096 ], [ -122.306607, 37.890197 ], [ -122.306242, 37.890248 ], [ -122.306135, 37.889909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890248 ], [ -122.306135, 37.889909 ], [ -122.306306, 37.890096 ], [ -122.306607, 37.890197 ], [ -122.306242, 37.890248 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889503 ], [ -122.308323, 37.888047 ], [ -122.308495, 37.887640 ], [ -122.308538, 37.888284 ], [ -122.308366, 37.888995 ], [ -122.308323, 37.889520 ], [ -122.308345, 37.890079 ], [ -122.307894, 37.890976 ], [ -122.307529, 37.889503 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307894, 37.890976 ], [ -122.307529, 37.889503 ], [ -122.308323, 37.888047 ], [ -122.308495, 37.887640 ], [ -122.308538, 37.888284 ], [ -122.308366, 37.888995 ], [ -122.308323, 37.889520 ], [ -122.308345, 37.890079 ], [ -122.307894, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307208, 37.887200 ], [ -122.307851, 37.887200 ], [ -122.308130, 37.887234 ], [ -122.308624, 37.887335 ], [ -122.308581, 37.887454 ], [ -122.308323, 37.888047 ], [ -122.307701, 37.889181 ], [ -122.307208, 37.887200 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889181 ], [ -122.307208, 37.887200 ], [ -122.307851, 37.887200 ], [ -122.308130, 37.887234 ], [ -122.308624, 37.887335 ], [ -122.308581, 37.887454 ], [ -122.308323, 37.888047 ], [ -122.307701, 37.889181 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305834, 37.888961 ], [ -122.307293, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ], [ -122.305834, 37.888961 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306027, 37.889588 ], [ -122.305834, 37.888961 ], [ -122.307293, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305834, 37.888961 ], [ -122.304976, 37.889130 ], [ -122.304955, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304976, 37.889130 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305834, 37.888961 ], [ -122.304976, 37.889130 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.307293, 37.888622 ], [ -122.307293, 37.888673 ], [ -122.305834, 37.888961 ], [ -122.305813, 37.888910 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305834, 37.888961 ], [ -122.305813, 37.888910 ], [ -122.307293, 37.888622 ], [ -122.307293, 37.888673 ], [ -122.305834, 37.888961 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888250 ], [ -122.307122, 37.887945 ], [ -122.307293, 37.888622 ], [ -122.305813, 37.888910 ], [ -122.305598, 37.888250 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.305598, 37.888250 ], [ -122.307122, 37.887945 ], [ -122.307293, 37.888622 ], [ -122.305813, 37.888910 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307079, 37.887793 ], [ -122.307014, 37.887573 ], [ -122.306950, 37.887471 ], [ -122.306821, 37.887454 ], [ -122.306070, 37.887505 ], [ -122.305512, 37.887505 ], [ -122.305427, 37.887471 ], [ -122.306993, 37.887200 ], [ -122.307208, 37.887200 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889503 ], [ -122.307079, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889503 ], [ -122.307079, 37.887793 ], [ -122.307014, 37.887573 ], [ -122.306950, 37.887471 ], [ -122.306821, 37.887454 ], [ -122.306070, 37.887505 ], [ -122.305512, 37.887505 ], [ -122.305427, 37.887471 ], [ -122.306993, 37.887200 ], [ -122.307208, 37.887200 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889503 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308881, 37.887420 ], [ -122.308624, 37.887335 ], [ -122.308667, 37.887217 ], [ -122.308967, 37.887335 ], [ -122.309053, 37.887437 ], [ -122.308881, 37.887420 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309053, 37.887437 ], [ -122.308881, 37.887420 ], [ -122.308624, 37.887335 ], [ -122.308667, 37.887217 ], [ -122.308967, 37.887335 ], [ -122.309053, 37.887437 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308967, 37.887335 ], [ -122.308667, 37.887217 ], [ -122.308838, 37.886472 ], [ -122.309010, 37.885388 ], [ -122.309010, 37.885134 ], [ -122.309268, 37.886319 ], [ -122.309332, 37.886827 ], [ -122.309289, 37.887318 ], [ -122.309053, 37.887437 ], [ -122.308967, 37.887335 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309053, 37.887437 ], [ -122.308967, 37.887335 ], [ -122.308667, 37.887217 ], [ -122.308838, 37.886472 ], [ -122.309010, 37.885388 ], [ -122.309010, 37.885134 ], [ -122.309268, 37.886319 ], [ -122.309332, 37.886827 ], [ -122.309289, 37.887318 ], [ -122.309053, 37.887437 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.886827 ], [ -122.309268, 37.886319 ], [ -122.309010, 37.885134 ], [ -122.308645, 37.883491 ], [ -122.308881, 37.884016 ], [ -122.309525, 37.886455 ], [ -122.309525, 37.887064 ], [ -122.309461, 37.887166 ], [ -122.309289, 37.887318 ], [ -122.309332, 37.886827 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309289, 37.887318 ], [ -122.309332, 37.886827 ], [ -122.309268, 37.886319 ], [ -122.309010, 37.885134 ], [ -122.308645, 37.883491 ], [ -122.308881, 37.884016 ], [ -122.309525, 37.886455 ], [ -122.309525, 37.887064 ], [ -122.309461, 37.887166 ], [ -122.309289, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887098 ], [ -122.307401, 37.887064 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886726 ], [ -122.307572, 37.884169 ], [ -122.307830, 37.882018 ], [ -122.308366, 37.882187 ], [ -122.308645, 37.883491 ], [ -122.309010, 37.885134 ], [ -122.309010, 37.885388 ], [ -122.308838, 37.886472 ], [ -122.308667, 37.887217 ], [ -122.308044, 37.887098 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308667, 37.887217 ], [ -122.308044, 37.887098 ], [ -122.307401, 37.887064 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886726 ], [ -122.307572, 37.884169 ], [ -122.307830, 37.882018 ], [ -122.308366, 37.882187 ], [ -122.308645, 37.883491 ], [ -122.309010, 37.885134 ], [ -122.309010, 37.885388 ], [ -122.308838, 37.886472 ], [ -122.308667, 37.887217 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308517, 37.887318 ], [ -122.307851, 37.887200 ], [ -122.307208, 37.887200 ], [ -122.307229, 37.887081 ], [ -122.307401, 37.887064 ], [ -122.308044, 37.887098 ], [ -122.308667, 37.887217 ], [ -122.308624, 37.887335 ], [ -122.308517, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308624, 37.887335 ], [ -122.308517, 37.887318 ], [ -122.307851, 37.887200 ], [ -122.307208, 37.887200 ], [ -122.307229, 37.887081 ], [ -122.307401, 37.887064 ], [ -122.308044, 37.887098 ], [ -122.308667, 37.887217 ], [ -122.308624, 37.887335 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305341, 37.887471 ], [ -122.305427, 37.887471 ], [ -122.305512, 37.887505 ], [ -122.306070, 37.887505 ], [ -122.306907, 37.887454 ], [ -122.306993, 37.887522 ], [ -122.307122, 37.887945 ], [ -122.305598, 37.888250 ], [ -122.305341, 37.887471 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888250 ], [ -122.305341, 37.887471 ], [ -122.305427, 37.887471 ], [ -122.305512, 37.887505 ], [ -122.306070, 37.887505 ], [ -122.306907, 37.887454 ], [ -122.306993, 37.887522 ], [ -122.307122, 37.887945 ], [ -122.305598, 37.888250 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307100, 37.886878 ], [ -122.306800, 37.885591 ], [ -122.306178, 37.883271 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881882 ], [ -122.307315, 37.881916 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882018 ], [ -122.307572, 37.884169 ], [ -122.307358, 37.886726 ], [ -122.307229, 37.887081 ], [ -122.307165, 37.887081 ], [ -122.307100, 37.886878 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307165, 37.887081 ], [ -122.307100, 37.886878 ], [ -122.306800, 37.885591 ], [ -122.306178, 37.883271 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881882 ], [ -122.307315, 37.881916 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882018 ], [ -122.307572, 37.884169 ], [ -122.307358, 37.886726 ], [ -122.307229, 37.887081 ], [ -122.307165, 37.887081 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.303302, 37.889452 ], [ -122.303560, 37.890350 ], [ -122.303324, 37.890841 ], [ -122.303088, 37.891603 ], [ -122.302465, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303088, 37.891603 ], [ -122.302465, 37.889622 ], [ -122.303302, 37.889452 ], [ -122.303560, 37.890350 ], [ -122.303324, 37.890841 ], [ -122.303088, 37.891603 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303302, 37.889452 ], [ -122.305834, 37.888961 ], [ -122.306027, 37.889588 ], [ -122.304161, 37.889977 ], [ -122.303967, 37.890045 ], [ -122.303731, 37.890180 ], [ -122.303560, 37.890350 ], [ -122.303302, 37.889452 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303560, 37.890350 ], [ -122.303302, 37.889452 ], [ -122.305834, 37.888961 ], [ -122.306027, 37.889588 ], [ -122.304161, 37.889977 ], [ -122.303967, 37.890045 ], [ -122.303731, 37.890180 ], [ -122.303560, 37.890350 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304118, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304976, 37.889130 ], [ -122.304139, 37.889283 ], [ -122.304118, 37.889249 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889283 ], [ -122.304118, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304976, 37.889130 ], [ -122.304139, 37.889283 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304461, 37.887522 ], [ -122.305341, 37.887471 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ], [ -122.304461, 37.887522 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304461, 37.887522 ], [ -122.305341, 37.887471 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.887556 ], [ -122.304461, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304118, 37.889249 ], [ -122.303581, 37.887556 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304118, 37.889249 ], [ -122.303581, 37.887556 ], [ -122.304461, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304118, 37.889249 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889401 ], [ -122.304118, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303302, 37.889452 ], [ -122.303281, 37.889401 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303302, 37.889452 ], [ -122.303281, 37.889401 ], [ -122.304118, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303302, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302444, 37.889571 ], [ -122.303281, 37.889401 ], [ -122.303302, 37.889452 ], [ -122.302465, 37.889622 ], [ -122.302444, 37.889571 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.302444, 37.889571 ], [ -122.303281, 37.889401 ], [ -122.303302, 37.889452 ], [ -122.302465, 37.889622 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302701, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304118, 37.889249 ], [ -122.303281, 37.889401 ], [ -122.302701, 37.887589 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889401 ], [ -122.302701, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304118, 37.889249 ], [ -122.303281, 37.889401 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301714, 37.890113 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303088, 37.891603 ], [ -122.302251, 37.891772 ], [ -122.301714, 37.890113 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891772 ], [ -122.301714, 37.890113 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303088, 37.891603 ], [ -122.302251, 37.891772 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300770, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.301714, 37.890113 ], [ -122.302251, 37.891772 ], [ -122.301435, 37.891942 ], [ -122.300770, 37.889960 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891942 ], [ -122.300770, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.301714, 37.890113 ], [ -122.302251, 37.891772 ], [ -122.301435, 37.891942 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.891806 ], [ -122.299054, 37.890265 ], [ -122.299311, 37.890248 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892111 ], [ -122.299719, 37.892297 ], [ -122.299547, 37.891806 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892297 ], [ -122.299547, 37.891806 ], [ -122.299054, 37.890265 ], [ -122.299311, 37.890248 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892111 ], [ -122.299719, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.300770, 37.889960 ], [ -122.301435, 37.891942 ], [ -122.300577, 37.892111 ], [ -122.299933, 37.890130 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892111 ], [ -122.299933, 37.890130 ], [ -122.300770, 37.889960 ], [ -122.301435, 37.891942 ], [ -122.300577, 37.892111 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301822, 37.887623 ], [ -122.302701, 37.887589 ], [ -122.303281, 37.889401 ], [ -122.302444, 37.889571 ], [ -122.301822, 37.887623 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302444, 37.889571 ], [ -122.301822, 37.887623 ], [ -122.302701, 37.887589 ], [ -122.303281, 37.889401 ], [ -122.302444, 37.889571 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300684, 37.887742 ], [ -122.301822, 37.887623 ], [ -122.302444, 37.889571 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ], [ -122.300684, 37.887742 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.300684, 37.887742 ], [ -122.301822, 37.887623 ], [ -122.302444, 37.889571 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "GEOID10": "060014203001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299912, 37.890079 ], [ -122.300770, 37.889909 ], [ -122.300770, 37.889960 ], [ -122.300105, 37.890096 ], [ -122.299933, 37.890130 ], [ -122.299912, 37.890079 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "GEOID10": "060014203001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.299912, 37.890079 ], [ -122.300770, 37.889909 ], [ -122.300770, 37.889960 ], [ -122.300105, 37.890096 ], [ -122.299933, 37.890130 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300062, 37.887725 ], [ -122.300684, 37.887742 ], [ -122.301650, 37.889791 ], [ -122.300770, 37.889960 ], [ -122.300062, 37.887725 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300770, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300684, 37.887742 ], [ -122.301650, 37.889791 ], [ -122.300770, 37.889960 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299182, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.300770, 37.889909 ], [ -122.299912, 37.890079 ], [ -122.299182, 37.887742 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299912, 37.890079 ], [ -122.299182, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.300770, 37.889909 ], [ -122.299912, 37.890079 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302079, 37.887505 ], [ -122.305834, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307208, 37.887200 ], [ -122.306993, 37.887200 ], [ -122.305427, 37.887471 ], [ -122.302208, 37.887606 ], [ -122.302101, 37.887606 ], [ -122.302079, 37.887505 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302101, 37.887606 ], [ -122.302079, 37.887505 ], [ -122.305834, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307208, 37.887200 ], [ -122.306993, 37.887200 ], [ -122.305427, 37.887471 ], [ -122.302208, 37.887606 ], [ -122.302101, 37.887606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300963, 37.887657 ], [ -122.300513, 37.886319 ], [ -122.302337, 37.886031 ], [ -122.304590, 37.885845 ], [ -122.304482, 37.885337 ], [ -122.306800, 37.885591 ], [ -122.307165, 37.887081 ], [ -122.305834, 37.887318 ], [ -122.302079, 37.887505 ], [ -122.302101, 37.887606 ], [ -122.300684, 37.887742 ], [ -122.300963, 37.887657 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300684, 37.887742 ], [ -122.300963, 37.887657 ], [ -122.300513, 37.886319 ], [ -122.302337, 37.886031 ], [ -122.304590, 37.885845 ], [ -122.304482, 37.885337 ], [ -122.306800, 37.885591 ], [ -122.307165, 37.887081 ], [ -122.305834, 37.887318 ], [ -122.302079, 37.887505 ], [ -122.302101, 37.887606 ], [ -122.300684, 37.887742 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303903, 37.884744 ], [ -122.303603, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304525, 37.885473 ], [ -122.304590, 37.885845 ], [ -122.304225, 37.885879 ], [ -122.303903, 37.884744 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304225, 37.885879 ], [ -122.303903, 37.884744 ], [ -122.303603, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304525, 37.885473 ], [ -122.304590, 37.885845 ], [ -122.304225, 37.885879 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304482, 37.885337 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303431, 37.882881 ], [ -122.302938, 37.883017 ], [ -122.302616, 37.883068 ], [ -122.302444, 37.882763 ], [ -122.302358, 37.882509 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302959, 37.882407 ], [ -122.303131, 37.882323 ], [ -122.303324, 37.882289 ], [ -122.303967, 37.882255 ], [ -122.304525, 37.882272 ], [ -122.305233, 37.882221 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306800, 37.885591 ], [ -122.304482, 37.885337 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306800, 37.885591 ], [ -122.304482, 37.885337 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303431, 37.882881 ], [ -122.302938, 37.883017 ], [ -122.302616, 37.883068 ], [ -122.302444, 37.882763 ], [ -122.302358, 37.882509 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302959, 37.882407 ], [ -122.303131, 37.882323 ], [ -122.303324, 37.882289 ], [ -122.303967, 37.882255 ], [ -122.304525, 37.882272 ], [ -122.305233, 37.882221 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306800, 37.885591 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303903, 37.885659 ], [ -122.303302, 37.883711 ], [ -122.303603, 37.883660 ], [ -122.304225, 37.885879 ], [ -122.303946, 37.885896 ], [ -122.303903, 37.885659 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303946, 37.885896 ], [ -122.303903, 37.885659 ], [ -122.303302, 37.883711 ], [ -122.303603, 37.883660 ], [ -122.304225, 37.885879 ], [ -122.303946, 37.885896 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302959, 37.883796 ], [ -122.303302, 37.883711 ], [ -122.303903, 37.885659 ], [ -122.303946, 37.885896 ], [ -122.303431, 37.885947 ], [ -122.302959, 37.883796 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303431, 37.885947 ], [ -122.302959, 37.883796 ], [ -122.303302, 37.883711 ], [ -122.303903, 37.885659 ], [ -122.303946, 37.885896 ], [ -122.303431, 37.885947 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.884440 ], [ -122.299912, 37.884067 ], [ -122.299805, 37.884084 ], [ -122.299826, 37.883881 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.300534, 37.883288 ], [ -122.300663, 37.883356 ], [ -122.300856, 37.883406 ], [ -122.300985, 37.883406 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883356 ], [ -122.301114, 37.883356 ], [ -122.301414, 37.883271 ], [ -122.301607, 37.883254 ], [ -122.301650, 37.883220 ], [ -122.302079, 37.883119 ], [ -122.302616, 37.883068 ], [ -122.302959, 37.883796 ], [ -122.303431, 37.885947 ], [ -122.302508, 37.886014 ], [ -122.301800, 37.886099 ], [ -122.300513, 37.886319 ], [ -122.299933, 37.884440 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299933, 37.884440 ], [ -122.299912, 37.884067 ], [ -122.299805, 37.884084 ], [ -122.299826, 37.883881 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.300534, 37.883288 ], [ -122.300663, 37.883356 ], [ -122.300856, 37.883406 ], [ -122.300985, 37.883406 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883356 ], [ -122.301114, 37.883356 ], [ -122.301414, 37.883271 ], [ -122.301607, 37.883254 ], [ -122.301650, 37.883220 ], [ -122.302079, 37.883119 ], [ -122.302616, 37.883068 ], [ -122.302959, 37.883796 ], [ -122.303431, 37.885947 ], [ -122.302508, 37.886014 ], [ -122.301800, 37.886099 ], [ -122.300513, 37.886319 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302616, 37.883068 ], [ -122.302938, 37.883017 ], [ -122.303431, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302959, 37.883796 ], [ -122.302616, 37.883068 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302959, 37.883796 ], [ -122.302616, 37.883068 ], [ -122.302938, 37.883017 ], [ -122.303431, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302959, 37.883796 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.883356 ], [ -122.300534, 37.883288 ], [ -122.300341, 37.883254 ], [ -122.300298, 37.883220 ], [ -122.300277, 37.883119 ], [ -122.300212, 37.882881 ], [ -122.300642, 37.882814 ], [ -122.301092, 37.882780 ], [ -122.301908, 37.882577 ], [ -122.302337, 37.882509 ], [ -122.302616, 37.883068 ], [ -122.302079, 37.883119 ], [ -122.301650, 37.883220 ], [ -122.301607, 37.883254 ], [ -122.301414, 37.883271 ], [ -122.301114, 37.883356 ], [ -122.300985, 37.883356 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883406 ], [ -122.300856, 37.883406 ], [ -122.300663, 37.883356 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300856, 37.883406 ], [ -122.300663, 37.883356 ], [ -122.300534, 37.883288 ], [ -122.300341, 37.883254 ], [ -122.300298, 37.883220 ], [ -122.300277, 37.883119 ], [ -122.300212, 37.882881 ], [ -122.300642, 37.882814 ], [ -122.301092, 37.882780 ], [ -122.301908, 37.882577 ], [ -122.302337, 37.882509 ], [ -122.302616, 37.883068 ], [ -122.302079, 37.883119 ], [ -122.301650, 37.883220 ], [ -122.301607, 37.883254 ], [ -122.301414, 37.883271 ], [ -122.301114, 37.883356 ], [ -122.300985, 37.883356 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883406 ], [ -122.300856, 37.883406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.299290, 37.897055 ], [ -122.299719, 37.898291 ], [ -122.299397, 37.898325 ], [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299290, 37.897055 ], [ -122.299719, 37.898291 ], [ -122.299397, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898749 ], [ -122.297616, 37.897394 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898749 ], [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898749 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.297616, 37.897394 ], [ -122.298045, 37.898749 ], [ -122.297788, 37.898833 ], [ -122.297208, 37.898901 ], [ -122.296779, 37.897546 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297208, 37.898901 ], [ -122.296779, 37.897546 ], [ -122.297616, 37.897394 ], [ -122.298045, 37.898749 ], [ -122.297788, 37.898833 ], [ -122.297208, 37.898901 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.897767 ], [ -122.296779, 37.897546 ], [ -122.297208, 37.898901 ], [ -122.297015, 37.898935 ], [ -122.296221, 37.898935 ], [ -122.295706, 37.897767 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296221, 37.898935 ], [ -122.295706, 37.897767 ], [ -122.296779, 37.897546 ], [ -122.297208, 37.898901 ], [ -122.297015, 37.898935 ], [ -122.296221, 37.898935 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895938 ], [ -122.297080, 37.895768 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ], [ -122.296264, 37.895938 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.296264, 37.895938 ], [ -122.297080, 37.895768 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.896090 ], [ -122.296264, 37.895938 ], [ -122.296779, 37.897546 ], [ -122.295921, 37.897733 ], [ -122.295406, 37.896090 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295921, 37.897733 ], [ -122.295406, 37.896090 ], [ -122.296264, 37.895938 ], [ -122.296779, 37.897546 ], [ -122.295921, 37.897733 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898749 ], [ -122.294590, 37.897750 ], [ -122.295706, 37.897767 ], [ -122.296221, 37.898935 ], [ -122.295985, 37.898935 ], [ -122.294569, 37.898749 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.898935 ], [ -122.294569, 37.898749 ], [ -122.294590, 37.897750 ], [ -122.295706, 37.897767 ], [ -122.296221, 37.898935 ], [ -122.295985, 37.898935 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895430 ], [ -122.299612, 37.895260 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897055 ], [ -122.298775, 37.895430 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897055 ], [ -122.298775, 37.895430 ], [ -122.299612, 37.895260 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897055 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297938, 37.895599 ], [ -122.298775, 37.895430 ], [ -122.299290, 37.897055 ], [ -122.298453, 37.897208 ], [ -122.297938, 37.895599 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297938, 37.895599 ], [ -122.298775, 37.895430 ], [ -122.299290, 37.897055 ], [ -122.298453, 37.897208 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.299075, 37.893635 ], [ -122.299612, 37.895260 ], [ -122.298775, 37.895430 ], [ -122.298260, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895430 ], [ -122.298260, 37.893821 ], [ -122.299075, 37.893635 ], [ -122.299612, 37.895260 ], [ -122.298775, 37.895430 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895768 ], [ -122.297938, 37.895599 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ], [ -122.297080, 37.895768 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.297080, 37.895768 ], [ -122.297938, 37.895599 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297423, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895430 ], [ -122.297938, 37.895599 ], [ -122.297423, 37.893957 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297938, 37.895599 ], [ -122.297423, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895430 ], [ -122.297938, 37.895599 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296565, 37.894126 ], [ -122.297423, 37.893957 ], [ -122.297938, 37.895599 ], [ -122.297080, 37.895768 ], [ -122.296565, 37.894126 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895768 ], [ -122.296565, 37.894126 ], [ -122.297423, 37.893957 ], [ -122.297938, 37.895599 ], [ -122.297080, 37.895768 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893635 ], [ -122.299955, 37.893466 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895260 ], [ -122.299075, 37.893635 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895260 ], [ -122.299075, 37.893635 ], [ -122.299955, 37.893466 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895260 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892314 ], [ -122.299955, 37.893466 ], [ -122.299075, 37.893635 ], [ -122.298560, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893635 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892314 ], [ -122.299955, 37.893466 ], [ -122.299075, 37.893635 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892179 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893635 ], [ -122.298260, 37.893821 ], [ -122.297745, 37.892179 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892179 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893635 ], [ -122.298260, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.892348 ], [ -122.297745, 37.892179 ], [ -122.298260, 37.893821 ], [ -122.297423, 37.893957 ], [ -122.296908, 37.892348 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297423, 37.893957 ], [ -122.296908, 37.892348 ], [ -122.297745, 37.892179 ], [ -122.298260, 37.893821 ], [ -122.297423, 37.893957 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295749, 37.894295 ], [ -122.296565, 37.894126 ], [ -122.297080, 37.895768 ], [ -122.296264, 37.895938 ], [ -122.295749, 37.894295 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895938 ], [ -122.295749, 37.894295 ], [ -122.296565, 37.894126 ], [ -122.297080, 37.895768 ], [ -122.296264, 37.895938 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294891, 37.894482 ], [ -122.295921, 37.897733 ], [ -122.295749, 37.897767 ], [ -122.295706, 37.897767 ], [ -122.294655, 37.894532 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.897767 ], [ -122.294655, 37.894532 ], [ -122.294891, 37.894482 ], [ -122.295921, 37.897733 ], [ -122.295749, 37.897767 ], [ -122.295706, 37.897767 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294590, 37.897750 ], [ -122.294719, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295706, 37.897767 ], [ -122.294590, 37.897750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.897767 ], [ -122.294590, 37.897750 ], [ -122.294719, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295706, 37.897767 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294891, 37.894482 ], [ -122.295749, 37.894295 ], [ -122.296264, 37.895938 ], [ -122.295406, 37.896090 ], [ -122.294891, 37.894482 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.896090 ], [ -122.294891, 37.894482 ], [ -122.295749, 37.894295 ], [ -122.296264, 37.895938 ], [ -122.295406, 37.896090 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.892687 ], [ -122.296071, 37.892517 ], [ -122.296565, 37.894126 ], [ -122.295749, 37.894295 ], [ -122.295234, 37.892687 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295749, 37.894295 ], [ -122.295234, 37.892687 ], [ -122.296071, 37.892517 ], [ -122.296565, 37.894126 ], [ -122.295749, 37.894295 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892517 ], [ -122.296908, 37.892348 ], [ -122.297423, 37.893957 ], [ -122.296565, 37.894126 ], [ -122.296071, 37.892517 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296565, 37.894126 ], [ -122.296071, 37.892517 ], [ -122.296908, 37.892348 ], [ -122.297423, 37.893957 ], [ -122.296565, 37.894126 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892856 ], [ -122.295234, 37.892687 ], [ -122.295749, 37.894295 ], [ -122.294891, 37.894482 ], [ -122.294354, 37.892856 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294891, 37.894482 ], [ -122.294354, 37.892856 ], [ -122.295234, 37.892687 ], [ -122.295749, 37.894295 ], [ -122.294891, 37.894482 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294118, 37.892856 ], [ -122.294354, 37.892856 ], [ -122.294891, 37.894482 ], [ -122.294655, 37.894532 ], [ -122.294118, 37.892856 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294118, 37.892856 ], [ -122.294354, 37.892856 ], [ -122.294891, 37.894482 ], [ -122.294655, 37.894532 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293689, 37.898647 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898393 ], [ -122.293732, 37.897716 ], [ -122.294590, 37.897750 ], [ -122.294569, 37.898749 ], [ -122.293689, 37.898647 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898749 ], [ -122.293689, 37.898647 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898393 ], [ -122.293732, 37.897716 ], [ -122.294590, 37.897750 ], [ -122.294569, 37.898749 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.898630 ], [ -122.293196, 37.898427 ], [ -122.292831, 37.898376 ], [ -122.292852, 37.897699 ], [ -122.293732, 37.897716 ], [ -122.293711, 37.898393 ], [ -122.293668, 37.898528 ], [ -122.293689, 37.898647 ], [ -122.293582, 37.898630 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293689, 37.898647 ], [ -122.293582, 37.898630 ], [ -122.293196, 37.898427 ], [ -122.292831, 37.898376 ], [ -122.292852, 37.897699 ], [ -122.293732, 37.897716 ], [ -122.293711, 37.898393 ], [ -122.293668, 37.898528 ], [ -122.293689, 37.898647 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292659, 37.898342 ], [ -122.292659, 37.897987 ], [ -122.292616, 37.897699 ], [ -122.292852, 37.897699 ], [ -122.292831, 37.898376 ], [ -122.292659, 37.898342 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292831, 37.898376 ], [ -122.292659, 37.898342 ], [ -122.292659, 37.897987 ], [ -122.292616, 37.897699 ], [ -122.292852, 37.897699 ], [ -122.292831, 37.898376 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896717 ], [ -122.292917, 37.896734 ], [ -122.292852, 37.897699 ], [ -122.292616, 37.897699 ], [ -122.292681, 37.896717 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292616, 37.897699 ], [ -122.292681, 37.896717 ], [ -122.292917, 37.896734 ], [ -122.292852, 37.897699 ], [ -122.292616, 37.897699 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291994, 37.898241 ], [ -122.291608, 37.898105 ], [ -122.291715, 37.896700 ], [ -122.292681, 37.896717 ], [ -122.292616, 37.897699 ], [ -122.292659, 37.897987 ], [ -122.292659, 37.898342 ], [ -122.291994, 37.898241 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292659, 37.898342 ], [ -122.291994, 37.898241 ], [ -122.291608, 37.898105 ], [ -122.291715, 37.896700 ], [ -122.292681, 37.896717 ], [ -122.292616, 37.897699 ], [ -122.292659, 37.897987 ], [ -122.292659, 37.898342 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.897936 ], [ -122.290728, 37.897902 ], [ -122.290814, 37.896666 ], [ -122.291715, 37.896700 ], [ -122.291608, 37.898105 ], [ -122.291093, 37.897936 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291608, 37.898105 ], [ -122.291093, 37.897936 ], [ -122.290728, 37.897902 ], [ -122.290814, 37.896666 ], [ -122.291715, 37.896700 ], [ -122.291608, 37.898105 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897834 ], [ -122.289870, 37.897834 ], [ -122.289977, 37.896649 ], [ -122.290814, 37.896666 ], [ -122.290728, 37.897902 ], [ -122.290192, 37.897834 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290728, 37.897902 ], [ -122.290192, 37.897834 ], [ -122.289870, 37.897834 ], [ -122.289977, 37.896649 ], [ -122.290814, 37.896666 ], [ -122.290728, 37.897902 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.896615 ], [ -122.289977, 37.896649 ], [ -122.289870, 37.897834 ], [ -122.289484, 37.897834 ], [ -122.289011, 37.897885 ], [ -122.289097, 37.896615 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289011, 37.897885 ], [ -122.289097, 37.896615 ], [ -122.289977, 37.896649 ], [ -122.289870, 37.897834 ], [ -122.289484, 37.897834 ], [ -122.289011, 37.897885 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293732, 37.897716 ], [ -122.293882, 37.894685 ], [ -122.294397, 37.894566 ], [ -122.294719, 37.895379 ], [ -122.294590, 37.897750 ], [ -122.293732, 37.897716 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294590, 37.897750 ], [ -122.293732, 37.897716 ], [ -122.293882, 37.894685 ], [ -122.294397, 37.894566 ], [ -122.294719, 37.895379 ], [ -122.294590, 37.897750 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897699 ], [ -122.293003, 37.894871 ], [ -122.293882, 37.894685 ], [ -122.293839, 37.895294 ], [ -122.293732, 37.897716 ], [ -122.292852, 37.897699 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293732, 37.897716 ], [ -122.292852, 37.897699 ], [ -122.293003, 37.894871 ], [ -122.293882, 37.894685 ], [ -122.293839, 37.895294 ], [ -122.293732, 37.897716 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896717 ], [ -122.292745, 37.894871 ], [ -122.293003, 37.894871 ], [ -122.292917, 37.896734 ], [ -122.292681, 37.896717 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292917, 37.896734 ], [ -122.292681, 37.896717 ], [ -122.292745, 37.894871 ], [ -122.293003, 37.894871 ], [ -122.292917, 37.896734 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293947, 37.892856 ], [ -122.294118, 37.892856 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894685 ], [ -122.293947, 37.892856 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894685 ], [ -122.293947, 37.892856 ], [ -122.294118, 37.892856 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894685 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293088, 37.892839 ], [ -122.293947, 37.892856 ], [ -122.293882, 37.894685 ], [ -122.293003, 37.894871 ], [ -122.293088, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293003, 37.894871 ], [ -122.293088, 37.892839 ], [ -122.293947, 37.892856 ], [ -122.293882, 37.894685 ], [ -122.293003, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292831, 37.892822 ], [ -122.293088, 37.892839 ], [ -122.293003, 37.894871 ], [ -122.292745, 37.894871 ], [ -122.292831, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292745, 37.894871 ], [ -122.292831, 37.892822 ], [ -122.293088, 37.892839 ], [ -122.293003, 37.894871 ], [ -122.292745, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291801, 37.894854 ], [ -122.291887, 37.892822 ], [ -122.292831, 37.892822 ], [ -122.292745, 37.894871 ], [ -122.291801, 37.894854 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292745, 37.894871 ], [ -122.291801, 37.894854 ], [ -122.291887, 37.892822 ], [ -122.292831, 37.892822 ], [ -122.292745, 37.894871 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896649 ], [ -122.289999, 37.895836 ], [ -122.290063, 37.894786 ], [ -122.292745, 37.894871 ], [ -122.292681, 37.896717 ], [ -122.289977, 37.896649 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896717 ], [ -122.289977, 37.896649 ], [ -122.289999, 37.895836 ], [ -122.290063, 37.894786 ], [ -122.292745, 37.894871 ], [ -122.292681, 37.896717 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.896615 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894786 ], [ -122.289977, 37.896649 ], [ -122.289097, 37.896615 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896649 ], [ -122.289097, 37.896615 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894786 ], [ -122.289977, 37.896649 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894820 ], [ -122.290986, 37.892941 ], [ -122.291887, 37.892974 ], [ -122.291801, 37.894854 ], [ -122.290921, 37.894820 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291801, 37.894854 ], [ -122.290921, 37.894820 ], [ -122.290986, 37.892941 ], [ -122.291887, 37.892974 ], [ -122.291801, 37.894854 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894786 ], [ -122.290149, 37.892907 ], [ -122.290986, 37.892941 ], [ -122.290921, 37.894820 ], [ -122.290063, 37.894786 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894820 ], [ -122.290063, 37.894786 ], [ -122.290149, 37.892907 ], [ -122.290986, 37.892941 ], [ -122.290921, 37.894820 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.289290, 37.892890 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894786 ], [ -122.289205, 37.894769 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894786 ], [ -122.289205, 37.894769 ], [ -122.289290, 37.892890 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894786 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.289097, 37.896615 ], [ -122.289011, 37.897885 ], [ -122.288496, 37.897936 ], [ -122.288175, 37.898105 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.898105 ], [ -122.288218, 37.896598 ], [ -122.289097, 37.896615 ], [ -122.289011, 37.897885 ], [ -122.288496, 37.897936 ], [ -122.288175, 37.898105 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897800 ], [ -122.288175, 37.898105 ], [ -122.288110, 37.898156 ], [ -122.288153, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288110, 37.898156 ], [ -122.288153, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897800 ], [ -122.288175, 37.898105 ], [ -122.288110, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.288153, 37.896598 ], [ -122.288110, 37.898156 ], [ -122.287145, 37.898647 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.898647 ], [ -122.287273, 37.896564 ], [ -122.288153, 37.896598 ], [ -122.288110, 37.898156 ], [ -122.287145, 37.898647 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898139 ], [ -122.287145, 37.898139 ], [ -122.287188, 37.898156 ], [ -122.287145, 37.898647 ], [ -122.286952, 37.898715 ], [ -122.287016, 37.898139 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286952, 37.898715 ], [ -122.287016, 37.898139 ], [ -122.287145, 37.898139 ], [ -122.287188, 37.898156 ], [ -122.287145, 37.898647 ], [ -122.286952, 37.898715 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898139 ], [ -122.287080, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898139 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.898156 ], [ -122.287016, 37.898139 ], [ -122.287080, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289097, 37.896615 ], [ -122.288218, 37.896598 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.896615 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289097, 37.896615 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "GEOID10": "060014201002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288153, 37.896598 ], [ -122.288239, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "GEOID10": "060014201002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.896598 ], [ -122.288239, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288153, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896564 ], [ -122.287359, 37.894719 ], [ -122.288239, 37.894736 ], [ -122.288153, 37.896598 ], [ -122.287273, 37.896564 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.896598 ], [ -122.287273, 37.896564 ], [ -122.287359, 37.894719 ], [ -122.288239, 37.894736 ], [ -122.288153, 37.896598 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894719 ], [ -122.287359, 37.894719 ], [ -122.287273, 37.896564 ], [ -122.287080, 37.896564 ], [ -122.287145, 37.894719 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.896564 ], [ -122.287145, 37.894719 ], [ -122.287359, 37.894719 ], [ -122.287273, 37.896564 ], [ -122.287080, 37.896564 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894736 ], [ -122.288411, 37.892873 ], [ -122.289290, 37.892890 ], [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ], [ -122.288411, 37.892873 ], [ -122.289290, 37.892890 ], [ -122.289205, 37.894769 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892873 ], [ -122.288411, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288239, 37.894736 ], [ -122.288325, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.894736 ], [ -122.288325, 37.892873 ], [ -122.288411, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288239, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894719 ], [ -122.287445, 37.892822 ], [ -122.288325, 37.892873 ], [ -122.288239, 37.894736 ], [ -122.287359, 37.894719 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.894736 ], [ -122.287359, 37.894719 ], [ -122.287445, 37.892822 ], [ -122.288325, 37.892873 ], [ -122.288239, 37.894736 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892822 ], [ -122.287445, 37.892822 ], [ -122.287359, 37.894719 ], [ -122.287145, 37.894719 ], [ -122.287188, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894719 ], [ -122.287188, 37.892822 ], [ -122.287445, 37.892822 ], [ -122.287359, 37.894719 ], [ -122.287145, 37.894719 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.299547, 37.891806 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892314 ], [ -122.299418, 37.891823 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892314 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891806 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892314 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298946, 37.890282 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ], [ -122.298946, 37.890282 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890282 ], [ -122.299054, 37.890265 ], [ -122.299461, 37.891501 ], [ -122.299547, 37.891806 ], [ -122.299418, 37.891823 ], [ -122.298946, 37.890282 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.298946, 37.890282 ], [ -122.299054, 37.890265 ], [ -122.299461, 37.891501 ], [ -122.299547, 37.891806 ], [ -122.299418, 37.891823 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.299290, 37.890180 ], [ -122.299912, 37.890079 ], [ -122.299933, 37.890130 ], [ -122.299311, 37.890248 ], [ -122.299054, 37.890265 ], [ -122.299032, 37.890197 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299054, 37.890265 ], [ -122.299032, 37.890197 ], [ -122.299290, 37.890180 ], [ -122.299912, 37.890079 ], [ -122.299933, 37.890130 ], [ -122.299311, 37.890248 ], [ -122.299054, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "GEOID10": "060014205001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298024, 37.890265 ], [ -122.298925, 37.890214 ], [ -122.298946, 37.890282 ], [ -122.298517, 37.890316 ], [ -122.298045, 37.890333 ], [ -122.298024, 37.890265 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "GEOID10": "060014205001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298024, 37.890265 ], [ -122.298925, 37.890214 ], [ -122.298946, 37.890282 ], [ -122.298517, 37.890316 ], [ -122.298045, 37.890333 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298152, 37.890655 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892179 ], [ -122.297144, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892179 ], [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298152, 37.890655 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892179 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890316 ], [ -122.298024, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ], [ -122.297144, 37.890316 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.297144, 37.890316 ], [ -122.298024, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.299182, 37.887742 ], [ -122.299912, 37.890079 ], [ -122.299290, 37.890180 ], [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ], [ -122.299182, 37.887742 ], [ -122.299912, 37.890079 ], [ -122.299290, 37.890180 ], [ -122.299032, 37.890197 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298131, 37.887776 ], [ -122.298260, 37.887759 ], [ -122.299054, 37.890265 ], [ -122.298946, 37.890282 ], [ -122.298131, 37.887776 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890282 ], [ -122.298131, 37.887776 ], [ -122.298260, 37.887759 ], [ -122.299054, 37.890265 ], [ -122.298946, 37.890282 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297809, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297552, 37.886760 ], [ -122.297788, 37.886743 ], [ -122.297766, 37.886675 ], [ -122.297916, 37.886692 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887776 ], [ -122.298925, 37.890214 ], [ -122.298024, 37.890265 ], [ -122.297809, 37.889622 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298024, 37.890265 ], [ -122.297809, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297552, 37.886760 ], [ -122.297788, 37.886743 ], [ -122.297766, 37.886675 ], [ -122.297916, 37.886692 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887776 ], [ -122.298925, 37.890214 ], [ -122.298024, 37.890265 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890417 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892179 ], [ -122.296908, 37.892348 ], [ -122.296264, 37.890417 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.892348 ], [ -122.296264, 37.890417 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892179 ], [ -122.296908, 37.892348 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.890468 ], [ -122.296264, 37.890417 ], [ -122.296908, 37.892348 ], [ -122.296071, 37.892517 ], [ -122.295406, 37.890468 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892517 ], [ -122.295406, 37.890468 ], [ -122.296264, 37.890417 ], [ -122.296908, 37.892348 ], [ -122.296071, 37.892517 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "GEOID10": "060014205001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890367 ], [ -122.297144, 37.890316 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890384 ], [ -122.296264, 37.890417 ], [ -122.296264, 37.890367 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "GEOID10": "060014205001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890417 ], [ -122.296264, 37.890367 ], [ -122.297144, 37.890316 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890384 ], [ -122.296264, 37.890417 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.296264, 37.890367 ], [ -122.296264, 37.890417 ], [ -122.295578, 37.890468 ], [ -122.295406, 37.890468 ], [ -122.295384, 37.890434 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.890468 ], [ -122.295384, 37.890434 ], [ -122.296264, 37.890367 ], [ -122.296264, 37.890417 ], [ -122.295578, 37.890468 ], [ -122.295406, 37.890468 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890519 ], [ -122.295406, 37.890468 ], [ -122.296071, 37.892517 ], [ -122.295234, 37.892687 ], [ -122.294505, 37.890519 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.892687 ], [ -122.294505, 37.890519 ], [ -122.295406, 37.890468 ], [ -122.296071, 37.892517 ], [ -122.295234, 37.892687 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.294505, 37.890519 ], [ -122.295234, 37.892687 ], [ -122.294354, 37.892856 ], [ -122.293625, 37.890570 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892856 ], [ -122.293625, 37.890570 ], [ -122.294505, 37.890519 ], [ -122.295234, 37.892687 ], [ -122.294354, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "GEOID10": "060014205001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890485 ], [ -122.295384, 37.890434 ], [ -122.295406, 37.890468 ], [ -122.294698, 37.890519 ], [ -122.294505, 37.890519 ], [ -122.294505, 37.890485 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "GEOID10": "060014205001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890519 ], [ -122.294505, 37.890485 ], [ -122.295384, 37.890434 ], [ -122.295406, 37.890468 ], [ -122.294698, 37.890519 ], [ -122.294505, 37.890519 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296093, 37.887064 ], [ -122.296929, 37.886878 ], [ -122.298024, 37.890265 ], [ -122.297144, 37.890316 ], [ -122.296093, 37.887064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890316 ], [ -122.296093, 37.887064 ], [ -122.296929, 37.886878 ], [ -122.298024, 37.890265 ], [ -122.297144, 37.890316 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.887234 ], [ -122.296093, 37.887064 ], [ -122.297144, 37.890316 ], [ -122.296264, 37.890367 ], [ -122.295234, 37.887234 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890367 ], [ -122.295234, 37.887234 ], [ -122.296093, 37.887064 ], [ -122.297144, 37.890316 ], [ -122.296264, 37.890367 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294419, 37.887386 ], [ -122.295234, 37.887234 ], [ -122.296264, 37.890367 ], [ -122.295384, 37.890434 ], [ -122.294419, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.294419, 37.887386 ], [ -122.295234, 37.887234 ], [ -122.296264, 37.890367 ], [ -122.295384, 37.890434 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293561, 37.887505 ], [ -122.294397, 37.887318 ], [ -122.295384, 37.890434 ], [ -122.294505, 37.890485 ], [ -122.293561, 37.887505 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890485 ], [ -122.293561, 37.887505 ], [ -122.294397, 37.887318 ], [ -122.295384, 37.890434 ], [ -122.294505, 37.890485 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886692 ], [ -122.298152, 37.886743 ], [ -122.298410, 37.886844 ], [ -122.299311, 37.887352 ], [ -122.299569, 37.887471 ], [ -122.300169, 37.887606 ], [ -122.300577, 37.887623 ], [ -122.300684, 37.887657 ], [ -122.300963, 37.887657 ], [ -122.300684, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.298260, 37.887759 ], [ -122.297916, 37.886692 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.297916, 37.886692 ], [ -122.298152, 37.886743 ], [ -122.298410, 37.886844 ], [ -122.299311, 37.887352 ], [ -122.299569, 37.887471 ], [ -122.300169, 37.887606 ], [ -122.300577, 37.887623 ], [ -122.300684, 37.887657 ], [ -122.300963, 37.887657 ], [ -122.300684, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.298260, 37.887759 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.887623 ], [ -122.300169, 37.887606 ], [ -122.299569, 37.887471 ], [ -122.299311, 37.887352 ], [ -122.298410, 37.886844 ], [ -122.298152, 37.886743 ], [ -122.297916, 37.886692 ], [ -122.297251, 37.884592 ], [ -122.299912, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300127, 37.885117 ], [ -122.300963, 37.887657 ], [ -122.300684, 37.887657 ], [ -122.300577, 37.887623 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300684, 37.887657 ], [ -122.300577, 37.887623 ], [ -122.300169, 37.887606 ], [ -122.299569, 37.887471 ], [ -122.299311, 37.887352 ], [ -122.298410, 37.886844 ], [ -122.298152, 37.886743 ], [ -122.297916, 37.886692 ], [ -122.297251, 37.884592 ], [ -122.299912, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300127, 37.885117 ], [ -122.300963, 37.887657 ], [ -122.300684, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.886827 ], [ -122.297616, 37.886675 ], [ -122.297766, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.297552, 37.886760 ], [ -122.296929, 37.886878 ], [ -122.296908, 37.886827 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886878 ], [ -122.296908, 37.886827 ], [ -122.297616, 37.886675 ], [ -122.297766, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.297552, 37.886760 ], [ -122.296929, 37.886878 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298110, 37.883779 ], [ -122.298088, 37.883474 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300212, 37.882881 ], [ -122.300255, 37.883034 ], [ -122.300298, 37.883220 ], [ -122.300234, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299826, 37.883881 ], [ -122.299805, 37.884084 ], [ -122.298281, 37.884389 ], [ -122.298110, 37.883779 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298281, 37.884389 ], [ -122.298110, 37.883779 ], [ -122.298088, 37.883474 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300212, 37.882881 ], [ -122.300255, 37.883034 ], [ -122.300298, 37.883220 ], [ -122.300234, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299826, 37.883881 ], [ -122.299805, 37.884084 ], [ -122.298281, 37.884389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297766, 37.886675 ], [ -122.297122, 37.884626 ], [ -122.297251, 37.884592 ], [ -122.297916, 37.886692 ], [ -122.297766, 37.886675 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886692 ], [ -122.297766, 37.886675 ], [ -122.297122, 37.884626 ], [ -122.297251, 37.884592 ], [ -122.297916, 37.886692 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.883508 ], [ -122.297122, 37.883491 ], [ -122.297766, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298088, 37.883474 ], [ -122.298110, 37.883779 ], [ -122.298281, 37.884389 ], [ -122.297251, 37.884592 ], [ -122.296908, 37.883508 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297251, 37.884592 ], [ -122.296908, 37.883508 ], [ -122.297122, 37.883491 ], [ -122.297766, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298088, 37.883474 ], [ -122.298110, 37.883779 ], [ -122.298281, 37.884389 ], [ -122.297251, 37.884592 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.296908, 37.886827 ], [ -122.296929, 37.886878 ], [ -122.296093, 37.887064 ], [ -122.296071, 37.886980 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296093, 37.887064 ], [ -122.296071, 37.886980 ], [ -122.296908, 37.886827 ], [ -122.296929, 37.886878 ], [ -122.296093, 37.887064 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887166 ], [ -122.296071, 37.886980 ], [ -122.296093, 37.887064 ], [ -122.295234, 37.887234 ], [ -122.295213, 37.887166 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.887234 ], [ -122.295213, 37.887166 ], [ -122.296071, 37.886980 ], [ -122.296093, 37.887064 ], [ -122.295234, 37.887234 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.295213, 37.887166 ], [ -122.295234, 37.887234 ], [ -122.294419, 37.887386 ], [ -122.294397, 37.887318 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294419, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295213, 37.887166 ], [ -122.295234, 37.887234 ], [ -122.294419, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293475, 37.884507 ], [ -122.294333, 37.884321 ], [ -122.295213, 37.887166 ], [ -122.294397, 37.887318 ], [ -122.293475, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293475, 37.884507 ], [ -122.294333, 37.884321 ], [ -122.295213, 37.887166 ], [ -122.294397, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.296865, 37.883830 ], [ -122.297766, 37.886675 ], [ -122.297616, 37.886675 ], [ -122.296908, 37.886827 ], [ -122.295985, 37.883999 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.886827 ], [ -122.295985, 37.883999 ], [ -122.296865, 37.883830 ], [ -122.297766, 37.886675 ], [ -122.297616, 37.886675 ], [ -122.296908, 37.886827 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296908, 37.886827 ], [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296908, 37.886827 ], [ -122.296071, 37.886980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296865, 37.883830 ], [ -122.296994, 37.883796 ], [ -122.297251, 37.884592 ], [ -122.297122, 37.884626 ], [ -122.296865, 37.883830 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297122, 37.884626 ], [ -122.296865, 37.883830 ], [ -122.296994, 37.883796 ], [ -122.297251, 37.884592 ], [ -122.297122, 37.884626 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "GEOID10": "060014205002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.883525 ], [ -122.296908, 37.883508 ], [ -122.296994, 37.883796 ], [ -122.296865, 37.883830 ], [ -122.296758, 37.883525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "GEOID10": "060014205002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296865, 37.883830 ], [ -122.296758, 37.883525 ], [ -122.296908, 37.883508 ], [ -122.296994, 37.883796 ], [ -122.296865, 37.883830 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294333, 37.884321 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887166 ], [ -122.294333, 37.884321 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887166 ], [ -122.294333, 37.884321 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887166 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293861, 37.882949 ], [ -122.294011, 37.882915 ], [ -122.294376, 37.882763 ], [ -122.294719, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294333, 37.884321 ], [ -122.293861, 37.882949 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294333, 37.884321 ], [ -122.293861, 37.882949 ], [ -122.294011, 37.882915 ], [ -122.294376, 37.882763 ], [ -122.294719, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294333, 37.884321 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293839, 37.891992 ], [ -122.293153, 37.891027 ], [ -122.293174, 37.890587 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892856 ], [ -122.294118, 37.892856 ], [ -122.293839, 37.891992 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294118, 37.892856 ], [ -122.293839, 37.891992 ], [ -122.293153, 37.891027 ], [ -122.293174, 37.890587 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892856 ], [ -122.294118, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293088, 37.892839 ], [ -122.293153, 37.891027 ], [ -122.293839, 37.891992 ], [ -122.294118, 37.892856 ], [ -122.293088, 37.892839 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294118, 37.892856 ], [ -122.293088, 37.892839 ], [ -122.293153, 37.891027 ], [ -122.293839, 37.891992 ], [ -122.294118, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292831, 37.892822 ], [ -122.292917, 37.890722 ], [ -122.293153, 37.891027 ], [ -122.293088, 37.892839 ], [ -122.293046, 37.892839 ], [ -122.292831, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293046, 37.892839 ], [ -122.292831, 37.892822 ], [ -122.292917, 37.890722 ], [ -122.293153, 37.891027 ], [ -122.293088, 37.892839 ], [ -122.293046, 37.892839 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890519 ], [ -122.294505, 37.890485 ], [ -122.294505, 37.890519 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293711, 37.890519 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293754, 37.890570 ], [ -122.293711, 37.890519 ], [ -122.294505, 37.890485 ], [ -122.294505, 37.890519 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292917, 37.890722 ], [ -122.292895, 37.890604 ], [ -122.293174, 37.890587 ], [ -122.293153, 37.891027 ], [ -122.292917, 37.890722 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293153, 37.891027 ], [ -122.292917, 37.890722 ], [ -122.292895, 37.890604 ], [ -122.293174, 37.890587 ], [ -122.293153, 37.891027 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "GEOID10": "060014206003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890553 ], [ -122.293389, 37.890536 ], [ -122.293625, 37.890519 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ], [ -122.292895, 37.890553 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "GEOID10": "060014206003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890604 ], [ -122.292895, 37.890553 ], [ -122.293389, 37.890536 ], [ -122.293625, 37.890519 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291951, 37.891078 ], [ -122.291930, 37.890655 ], [ -122.292895, 37.890604 ], [ -122.292917, 37.891146 ], [ -122.292831, 37.892822 ], [ -122.291887, 37.892822 ], [ -122.291951, 37.891078 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291887, 37.892822 ], [ -122.291951, 37.891078 ], [ -122.291930, 37.890655 ], [ -122.292895, 37.890604 ], [ -122.292917, 37.891146 ], [ -122.292831, 37.892822 ], [ -122.291887, 37.892822 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890621 ], [ -122.292895, 37.890553 ], [ -122.292895, 37.890604 ], [ -122.292702, 37.890621 ], [ -122.291930, 37.890655 ], [ -122.291908, 37.890621 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291930, 37.890655 ], [ -122.291908, 37.890621 ], [ -122.292895, 37.890553 ], [ -122.292895, 37.890604 ], [ -122.292702, 37.890621 ], [ -122.291930, 37.890655 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890417 ], [ -122.293561, 37.890316 ], [ -122.292724, 37.887742 ], [ -122.292702, 37.887657 ], [ -122.293582, 37.887640 ], [ -122.293561, 37.887505 ], [ -122.294505, 37.890485 ], [ -122.293711, 37.890519 ], [ -122.293625, 37.890417 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890519 ], [ -122.293625, 37.890417 ], [ -122.293561, 37.890316 ], [ -122.292724, 37.887742 ], [ -122.292702, 37.887657 ], [ -122.293582, 37.887640 ], [ -122.293561, 37.887505 ], [ -122.294505, 37.890485 ], [ -122.293711, 37.890519 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293131, 37.889825 ], [ -122.292466, 37.887708 ], [ -122.292702, 37.887657 ], [ -122.292724, 37.887742 ], [ -122.293561, 37.890316 ], [ -122.293131, 37.889825 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293561, 37.890316 ], [ -122.293131, 37.889825 ], [ -122.292466, 37.887708 ], [ -122.292702, 37.887657 ], [ -122.292724, 37.887742 ], [ -122.293561, 37.890316 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890519 ], [ -122.292895, 37.890553 ], [ -122.292809, 37.890028 ], [ -122.292144, 37.887860 ], [ -122.292488, 37.887776 ], [ -122.293131, 37.889825 ], [ -122.293711, 37.890519 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.293625, 37.890519 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.293625, 37.890519 ], [ -122.292895, 37.890553 ], [ -122.292809, 37.890028 ], [ -122.292144, 37.887860 ], [ -122.292488, 37.887776 ], [ -122.293131, 37.889825 ], [ -122.293711, 37.890519 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.292144, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890553 ], [ -122.291908, 37.890621 ], [ -122.291093, 37.888064 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890621 ], [ -122.291093, 37.888064 ], [ -122.292144, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890553 ], [ -122.291908, 37.890621 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292144, 37.887860 ], [ -122.291093, 37.888064 ], [ -122.291071, 37.887996 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.291071, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292144, 37.887860 ], [ -122.291093, 37.888064 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290986, 37.892941 ], [ -122.291028, 37.892483 ], [ -122.291071, 37.890705 ], [ -122.291930, 37.890655 ], [ -122.291951, 37.891078 ], [ -122.291887, 37.892974 ], [ -122.290986, 37.892941 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291887, 37.892974 ], [ -122.290986, 37.892941 ], [ -122.291028, 37.892483 ], [ -122.291071, 37.890705 ], [ -122.291930, 37.890655 ], [ -122.291951, 37.891078 ], [ -122.291887, 37.892974 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290149, 37.892907 ], [ -122.290256, 37.890739 ], [ -122.291071, 37.890705 ], [ -122.291028, 37.892483 ], [ -122.290986, 37.892941 ], [ -122.290149, 37.892907 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290986, 37.892941 ], [ -122.290149, 37.892907 ], [ -122.290256, 37.890739 ], [ -122.291071, 37.890705 ], [ -122.291028, 37.892483 ], [ -122.290986, 37.892941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.890655 ], [ -122.291908, 37.890621 ], [ -122.291930, 37.890655 ], [ -122.291071, 37.890705 ], [ -122.291071, 37.890655 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.890705 ], [ -122.291071, 37.890655 ], [ -122.291908, 37.890621 ], [ -122.291930, 37.890655 ], [ -122.291071, 37.890705 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892890 ], [ -122.289398, 37.890790 ], [ -122.290256, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892890 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290149, 37.892907 ], [ -122.289290, 37.892890 ], [ -122.289398, 37.890790 ], [ -122.290256, 37.890739 ], [ -122.290149, 37.892907 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288411, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288797, 37.891078 ], [ -122.288861, 37.890824 ], [ -122.289398, 37.890790 ], [ -122.289290, 37.892890 ], [ -122.288411, 37.892873 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892890 ], [ -122.288411, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288797, 37.891078 ], [ -122.288861, 37.890824 ], [ -122.289398, 37.890790 ], [ -122.289290, 37.892890 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290084, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890621 ], [ -122.291071, 37.890655 ], [ -122.291071, 37.890705 ], [ -122.290792, 37.890722 ], [ -122.290084, 37.888267 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890722 ], [ -122.290084, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890621 ], [ -122.291071, 37.890655 ], [ -122.291071, 37.890705 ], [ -122.290792, 37.890722 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "GEOID10": "060014206003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.291071, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290084, 37.888267 ], [ -122.290063, 37.888199 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "GEOID10": "060014206003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290084, 37.888267 ], [ -122.290063, 37.888199 ], [ -122.291071, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290084, 37.888267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.290084, 37.888267 ], [ -122.290792, 37.890722 ], [ -122.289891, 37.890756 ], [ -122.289119, 37.888470 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.890756 ], [ -122.289119, 37.888470 ], [ -122.290084, 37.888267 ], [ -122.290792, 37.890722 ], [ -122.289891, 37.890756 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890688 ], [ -122.288239, 37.888860 ], [ -122.288239, 37.888656 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890722 ], [ -122.289891, 37.890756 ], [ -122.288861, 37.890824 ], [ -122.288861, 37.890688 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890824 ], [ -122.288861, 37.890688 ], [ -122.288239, 37.888860 ], [ -122.288239, 37.888656 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890722 ], [ -122.289891, 37.890756 ], [ -122.288861, 37.890824 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290084, 37.888267 ], [ -122.289119, 37.888470 ], [ -122.289097, 37.888402 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.289097, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290084, 37.888267 ], [ -122.289119, 37.888470 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.293475, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293561, 37.887505 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293561, 37.887505 ], [ -122.292638, 37.884677 ], [ -122.293475, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293561, 37.887505 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "GEOID10": "060014206003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.292466, 37.887708 ], [ -122.292488, 37.887776 ], [ -122.292144, 37.887860 ], [ -122.292123, 37.887793 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "GEOID10": "060014206003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292144, 37.887860 ], [ -122.292123, 37.887793 ], [ -122.292466, 37.887708 ], [ -122.292488, 37.887776 ], [ -122.292144, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884863 ], [ -122.292638, 37.884677 ], [ -122.293561, 37.887505 ], [ -122.293582, 37.887640 ], [ -122.292702, 37.887657 ], [ -122.291780, 37.884863 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292702, 37.887657 ], [ -122.291780, 37.884863 ], [ -122.292638, 37.884677 ], [ -122.293561, 37.887505 ], [ -122.293582, 37.887640 ], [ -122.292702, 37.887657 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291715, 37.884863 ], [ -122.291780, 37.884863 ], [ -122.292702, 37.887657 ], [ -122.292466, 37.887708 ], [ -122.291694, 37.885286 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292466, 37.887708 ], [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291715, 37.884863 ], [ -122.291780, 37.884863 ], [ -122.292702, 37.887657 ], [ -122.292466, 37.887708 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887708 ], [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887708 ], [ -122.292123, 37.887793 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293367, 37.884202 ], [ -122.292960, 37.883034 ], [ -122.293131, 37.883000 ], [ -122.293861, 37.882949 ], [ -122.294333, 37.884321 ], [ -122.293475, 37.884507 ], [ -122.293367, 37.884202 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293475, 37.884507 ], [ -122.293367, 37.884202 ], [ -122.292960, 37.883034 ], [ -122.293131, 37.883000 ], [ -122.293861, 37.882949 ], [ -122.294333, 37.884321 ], [ -122.293475, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292552, 37.884389 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883135 ], [ -122.292960, 37.883034 ], [ -122.293475, 37.884507 ], [ -122.292638, 37.884677 ], [ -122.292552, 37.884389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292552, 37.884389 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883135 ], [ -122.292960, 37.883034 ], [ -122.293475, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291265, 37.883237 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884863 ], [ -122.291265, 37.883237 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884863 ], [ -122.291265, 37.883237 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884863 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290363, 37.885693 ], [ -122.290170, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291071, 37.887996 ], [ -122.290363, 37.885693 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.887996 ], [ -122.290363, 37.885693 ], [ -122.290170, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291071, 37.887996 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885981 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ], [ -122.289333, 37.885981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.289333, 37.885981 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885981 ], [ -122.289848, 37.884507 ], [ -122.290041, 37.884897 ], [ -122.290363, 37.885693 ], [ -122.291071, 37.887996 ], [ -122.290063, 37.888199 ], [ -122.289333, 37.885981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.289333, 37.885981 ], [ -122.289848, 37.884507 ], [ -122.290041, 37.884897 ], [ -122.290363, 37.885693 ], [ -122.291071, 37.887996 ], [ -122.290063, 37.888199 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290943, 37.884372 ], [ -122.290385, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291157, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ], [ -122.290943, 37.884372 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.290943, 37.884372 ], [ -122.290385, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291157, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291372, 37.884490 ], [ -122.290835, 37.883322 ], [ -122.291071, 37.883254 ], [ -122.291265, 37.883237 ], [ -122.291780, 37.884863 ], [ -122.291522, 37.884914 ], [ -122.291372, 37.884490 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291522, 37.884914 ], [ -122.291372, 37.884490 ], [ -122.290835, 37.883322 ], [ -122.291071, 37.883254 ], [ -122.291265, 37.883237 ], [ -122.291780, 37.884863 ], [ -122.291522, 37.884914 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.884507 ], [ -122.290170, 37.883576 ], [ -122.290299, 37.883034 ], [ -122.290320, 37.883203 ], [ -122.290385, 37.883220 ], [ -122.290943, 37.884372 ], [ -122.291179, 37.884981 ], [ -122.290170, 37.885219 ], [ -122.289848, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290170, 37.885219 ], [ -122.289848, 37.884507 ], [ -122.290170, 37.883576 ], [ -122.290299, 37.883034 ], [ -122.290320, 37.883203 ], [ -122.290385, 37.883220 ], [ -122.290943, 37.884372 ], [ -122.291179, 37.884981 ], [ -122.290170, 37.885219 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289269, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289333, 37.885981 ], [ -122.289269, 37.885862 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885981 ], [ -122.289269, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289333, 37.885981 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289720, 37.884897 ], [ -122.288754, 37.884694 ], [ -122.289312, 37.883288 ], [ -122.289355, 37.883305 ], [ -122.289526, 37.883271 ], [ -122.289762, 37.883186 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883169 ], [ -122.290256, 37.883186 ], [ -122.290170, 37.883576 ], [ -122.289720, 37.884897 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.883017 ], [ -122.296093, 37.883068 ], [ -122.296243, 37.883186 ], [ -122.296371, 37.883339 ], [ -122.296715, 37.883525 ], [ -122.296758, 37.883525 ], [ -122.296865, 37.883830 ], [ -122.295985, 37.883999 ], [ -122.295706, 37.883017 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.295706, 37.883017 ], [ -122.296093, 37.883068 ], [ -122.296243, 37.883186 ], [ -122.296371, 37.883339 ], [ -122.296715, 37.883525 ], [ -122.296758, 37.883525 ], [ -122.296865, 37.883830 ], [ -122.295985, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294719, 37.882780 ], [ -122.295449, 37.882983 ], [ -122.295706, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ], [ -122.294719, 37.882780 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.294719, 37.882780 ], [ -122.295449, 37.882983 ], [ -122.295706, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "GEOID10": "060014201003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288411, 37.891484 ], [ -122.288496, 37.891332 ], [ -122.288754, 37.891027 ], [ -122.288775, 37.890824 ], [ -122.288861, 37.890824 ], [ -122.288797, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288411, 37.892873 ], [ -122.288325, 37.892873 ], [ -122.288411, 37.891484 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "GEOID10": "060014201003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892873 ], [ -122.288411, 37.891484 ], [ -122.288496, 37.891332 ], [ -122.288754, 37.891027 ], [ -122.288775, 37.890824 ], [ -122.288861, 37.890824 ], [ -122.288797, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288411, 37.892873 ], [ -122.288325, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892822 ], [ -122.287531, 37.890892 ], [ -122.288775, 37.890824 ], [ -122.288754, 37.891027 ], [ -122.288496, 37.891332 ], [ -122.288411, 37.891484 ], [ -122.288325, 37.892873 ], [ -122.287445, 37.892822 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892873 ], [ -122.287445, 37.892822 ], [ -122.287531, 37.890892 ], [ -122.288775, 37.890824 ], [ -122.288754, 37.891027 ], [ -122.288496, 37.891332 ], [ -122.288411, 37.891484 ], [ -122.288325, 37.892873 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890824 ], [ -122.287939, 37.890875 ], [ -122.287724, 37.890875 ], [ -122.287703, 37.890841 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287724, 37.890875 ], [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890824 ], [ -122.287939, 37.890875 ], [ -122.287724, 37.890875 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890926 ], [ -122.287531, 37.890892 ], [ -122.287467, 37.892433 ], [ -122.287445, 37.892822 ], [ -122.287188, 37.892822 ], [ -122.287188, 37.890926 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892822 ], [ -122.287188, 37.890926 ], [ -122.287531, 37.890892 ], [ -122.287467, 37.892433 ], [ -122.287445, 37.892822 ], [ -122.287188, 37.892822 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "GEOID10": "060014206002017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890892 ], [ -122.287188, 37.890926 ], [ -122.286651, 37.890942 ], [ -122.286651, 37.890909 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "GEOID10": "060014206002017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890942 ], [ -122.286651, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890892 ], [ -122.287188, 37.890926 ], [ -122.286651, 37.890942 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.286651, 37.890909 ], [ -122.286651, 37.890942 ], [ -122.286458, 37.890959 ], [ -122.285707, 37.891010 ], [ -122.285686, 37.890976 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285707, 37.891010 ], [ -122.285686, 37.890976 ], [ -122.286651, 37.890909 ], [ -122.286651, 37.890942 ], [ -122.286458, 37.890959 ], [ -122.285707, 37.891010 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890671 ], [ -122.288110, 37.888690 ], [ -122.288153, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288239, 37.888860 ], [ -122.288861, 37.890688 ], [ -122.288861, 37.890824 ], [ -122.288775, 37.890824 ], [ -122.288775, 37.890671 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890824 ], [ -122.288775, 37.890671 ], [ -122.288110, 37.888690 ], [ -122.288153, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288239, 37.888860 ], [ -122.288861, 37.890688 ], [ -122.288861, 37.890824 ], [ -122.288775, 37.890824 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.287381, 37.888944 ], [ -122.288110, 37.888690 ], [ -122.288775, 37.890671 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.287381, 37.888944 ], [ -122.288110, 37.888690 ], [ -122.288775, 37.890671 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.288926, 37.888436 ], [ -122.289097, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288239, 37.888656 ], [ -122.288303, 37.888572 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.888656 ], [ -122.288303, 37.888572 ], [ -122.288926, 37.888436 ], [ -122.289097, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288239, 37.888656 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.889012 ], [ -122.287316, 37.888893 ], [ -122.288153, 37.888606 ], [ -122.288110, 37.888690 ], [ -122.287381, 37.888944 ], [ -122.287102, 37.889080 ], [ -122.287080, 37.889012 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.287080, 37.889012 ], [ -122.287316, 37.888893 ], [ -122.288153, 37.888606 ], [ -122.288110, 37.888690 ], [ -122.287381, 37.888944 ], [ -122.287102, 37.889080 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889080 ], [ -122.287724, 37.890875 ], [ -122.287531, 37.890892 ], [ -122.287531, 37.890841 ], [ -122.286651, 37.890909 ], [ -122.286158, 37.889418 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889080 ], [ -122.287724, 37.890875 ], [ -122.287531, 37.890892 ], [ -122.287531, 37.890841 ], [ -122.286651, 37.890909 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286136, 37.889351 ], [ -122.286673, 37.889181 ], [ -122.287080, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286458, 37.889334 ], [ -122.286158, 37.889418 ], [ -122.286136, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286136, 37.889351 ], [ -122.286673, 37.889181 ], [ -122.287080, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286458, 37.889334 ], [ -122.286158, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286050, 37.888995 ], [ -122.286050, 37.888555 ], [ -122.286394, 37.887606 ], [ -122.287488, 37.887877 ], [ -122.287273, 37.888216 ], [ -122.287080, 37.888826 ], [ -122.287080, 37.889012 ], [ -122.286673, 37.889181 ], [ -122.286136, 37.889351 ], [ -122.286050, 37.888995 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286136, 37.889351 ], [ -122.286050, 37.888995 ], [ -122.286050, 37.888555 ], [ -122.286394, 37.887606 ], [ -122.287488, 37.887877 ], [ -122.287273, 37.888216 ], [ -122.287080, 37.888826 ], [ -122.287080, 37.889012 ], [ -122.286673, 37.889181 ], [ -122.286136, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285557, 37.890807 ], [ -122.285171, 37.889503 ], [ -122.285600, 37.889503 ], [ -122.286158, 37.889418 ], [ -122.286651, 37.890909 ], [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ], [ -122.285171, 37.889503 ], [ -122.285600, 37.889503 ], [ -122.286158, 37.889418 ], [ -122.286651, 37.890909 ], [ -122.285686, 37.890976 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284505, 37.891027 ], [ -122.285686, 37.890976 ], [ -122.285707, 37.891010 ], [ -122.284484, 37.891078 ], [ -122.284505, 37.891027 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.891078 ], [ -122.284505, 37.891027 ], [ -122.285686, 37.890976 ], [ -122.285707, 37.891010 ], [ -122.284484, 37.891078 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.890926 ], [ -122.284484, 37.890671 ], [ -122.284398, 37.890485 ], [ -122.284033, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889503 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284505, 37.891027 ], [ -122.284527, 37.890926 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284505, 37.891027 ], [ -122.284527, 37.890926 ], [ -122.284484, 37.890671 ], [ -122.284398, 37.890485 ], [ -122.284033, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889503 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284505, 37.891027 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "GEOID10": "060014206001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.284505, 37.891027 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891129 ], [ -122.283497, 37.891078 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "GEOID10": "060014206001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891129 ], [ -122.283497, 37.891078 ], [ -122.284505, 37.891027 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891129 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889435 ], [ -122.282896, 37.889215 ], [ -122.282832, 37.889147 ], [ -122.283454, 37.889164 ], [ -122.284033, 37.889317 ], [ -122.284398, 37.890485 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284505, 37.891027 ], [ -122.283497, 37.891078 ], [ -122.282982, 37.889435 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.282982, 37.889435 ], [ -122.282896, 37.889215 ], [ -122.282832, 37.889147 ], [ -122.283454, 37.889164 ], [ -122.284033, 37.889317 ], [ -122.284398, 37.890485 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284505, 37.891027 ], [ -122.283497, 37.891078 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889503 ], [ -122.285192, 37.889435 ], [ -122.285600, 37.889435 ], [ -122.286136, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286007, 37.889452 ], [ -122.285385, 37.889520 ], [ -122.285171, 37.889503 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889520 ], [ -122.285171, 37.889503 ], [ -122.285192, 37.889435 ], [ -122.285600, 37.889435 ], [ -122.286136, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286007, 37.889452 ], [ -122.285385, 37.889520 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285192, 37.889435 ], [ -122.285085, 37.889130 ], [ -122.284999, 37.888639 ], [ -122.285042, 37.888250 ], [ -122.285149, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286394, 37.887606 ], [ -122.286050, 37.888555 ], [ -122.286050, 37.888995 ], [ -122.286136, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285192, 37.889435 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889452 ], [ -122.285192, 37.889435 ], [ -122.285085, 37.889130 ], [ -122.284999, 37.888639 ], [ -122.285042, 37.888250 ], [ -122.285149, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286394, 37.887606 ], [ -122.286050, 37.888555 ], [ -122.286050, 37.888995 ], [ -122.286136, 37.889351 ], [ -122.285385, 37.889452 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.284956, 37.888233 ], [ -122.285063, 37.887877 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285149, 37.887894 ], [ -122.284999, 37.888487 ], [ -122.285063, 37.889029 ], [ -122.285192, 37.889435 ], [ -122.285106, 37.889435 ], [ -122.284999, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285106, 37.889435 ], [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.284956, 37.888233 ], [ -122.285063, 37.887877 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285149, 37.887894 ], [ -122.284999, 37.888487 ], [ -122.285063, 37.889029 ], [ -122.285192, 37.889435 ], [ -122.285106, 37.889435 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284741, 37.889486 ], [ -122.284441, 37.889418 ], [ -122.284033, 37.889317 ], [ -122.284033, 37.889232 ], [ -122.284698, 37.889401 ], [ -122.285192, 37.889435 ], [ -122.285171, 37.889503 ], [ -122.284741, 37.889486 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889503 ], [ -122.284741, 37.889486 ], [ -122.284441, 37.889418 ], [ -122.284033, 37.889317 ], [ -122.284033, 37.889232 ], [ -122.284698, 37.889401 ], [ -122.285192, 37.889435 ], [ -122.285171, 37.889503 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283647, 37.889215 ], [ -122.283669, 37.889130 ], [ -122.284033, 37.889232 ], [ -122.284033, 37.889317 ], [ -122.283647, 37.889215 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284033, 37.889317 ], [ -122.283647, 37.889215 ], [ -122.283669, 37.889130 ], [ -122.284033, 37.889232 ], [ -122.284033, 37.889317 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.889401 ], [ -122.283690, 37.889147 ], [ -122.283669, 37.888961 ], [ -122.283711, 37.888775 ], [ -122.284334, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285063, 37.887877 ], [ -122.284956, 37.888233 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285106, 37.889435 ], [ -122.284698, 37.889401 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285106, 37.889435 ], [ -122.284698, 37.889401 ], [ -122.283690, 37.889147 ], [ -122.283669, 37.888961 ], [ -122.283711, 37.888775 ], [ -122.284334, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285063, 37.887877 ], [ -122.284956, 37.888233 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285106, 37.889435 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283089, 37.889063 ], [ -122.282746, 37.889080 ], [ -122.282660, 37.888944 ], [ -122.282660, 37.888589 ], [ -122.283282, 37.886895 ], [ -122.283540, 37.886963 ], [ -122.284334, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889130 ], [ -122.283089, 37.889063 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889130 ], [ -122.283089, 37.889063 ], [ -122.282746, 37.889080 ], [ -122.282660, 37.888944 ], [ -122.282660, 37.888589 ], [ -122.283282, 37.886895 ], [ -122.283540, 37.886963 ], [ -122.284334, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889130 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.888284 ], [ -122.289269, 37.885862 ], [ -122.289333, 37.885981 ], [ -122.288303, 37.888572 ], [ -122.288153, 37.888606 ], [ -122.288325, 37.888284 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.888606 ], [ -122.288325, 37.888284 ], [ -122.289269, 37.885862 ], [ -122.289333, 37.885981 ], [ -122.288303, 37.888572 ], [ -122.288153, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.888826 ], [ -122.287273, 37.888216 ], [ -122.287338, 37.888081 ], [ -122.287595, 37.887776 ], [ -122.287681, 37.887623 ], [ -122.288561, 37.885286 ], [ -122.288754, 37.884694 ], [ -122.289612, 37.884880 ], [ -122.289269, 37.885862 ], [ -122.288325, 37.888284 ], [ -122.288153, 37.888606 ], [ -122.287617, 37.888775 ], [ -122.287080, 37.889012 ], [ -122.287080, 37.888826 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.889012 ], [ -122.287080, 37.888826 ], [ -122.287273, 37.888216 ], [ -122.287338, 37.888081 ], [ -122.287595, 37.887776 ], [ -122.287681, 37.887623 ], [ -122.288561, 37.885286 ], [ -122.288754, 37.884694 ], [ -122.289612, 37.884880 ], [ -122.289269, 37.885862 ], [ -122.288325, 37.888284 ], [ -122.288153, 37.888606 ], [ -122.287617, 37.888775 ], [ -122.287080, 37.889012 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.287037, 37.886912 ], [ -122.287488, 37.885828 ], [ -122.287960, 37.884507 ], [ -122.288754, 37.884694 ], [ -122.288561, 37.885286 ], [ -122.287681, 37.887623 ], [ -122.287595, 37.887776 ], [ -122.287488, 37.887877 ], [ -122.286758, 37.887691 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287488, 37.887877 ], [ -122.286758, 37.887691 ], [ -122.287037, 37.886912 ], [ -122.287488, 37.885828 ], [ -122.287960, 37.884507 ], [ -122.288754, 37.884694 ], [ -122.288561, 37.885286 ], [ -122.287681, 37.887623 ], [ -122.287595, 37.887776 ], [ -122.287488, 37.887877 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286286, 37.886523 ], [ -122.286544, 37.885794 ], [ -122.286651, 37.885642 ], [ -122.286737, 37.885642 ], [ -122.287488, 37.885828 ], [ -122.287123, 37.886726 ], [ -122.286286, 37.886523 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287123, 37.886726 ], [ -122.286286, 37.886523 ], [ -122.286544, 37.885794 ], [ -122.286651, 37.885642 ], [ -122.286737, 37.885642 ], [ -122.287488, 37.885828 ], [ -122.287123, 37.886726 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287188, 37.884101 ], [ -122.287810, 37.884169 ], [ -122.288067, 37.884253 ], [ -122.287488, 37.885828 ], [ -122.286737, 37.885642 ], [ -122.286651, 37.885642 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886523 ], [ -122.287123, 37.886726 ], [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287188, 37.884101 ], [ -122.287810, 37.884169 ], [ -122.288067, 37.884253 ], [ -122.287488, 37.885828 ], [ -122.286737, 37.885642 ], [ -122.286651, 37.885642 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886523 ], [ -122.287123, 37.886726 ], [ -122.286758, 37.887691 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289312, 37.883288 ], [ -122.288754, 37.884694 ], [ -122.287960, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288754, 37.884694 ], [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289312, 37.883288 ], [ -122.288754, 37.884694 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.286587, 37.883982 ], [ -122.286673, 37.883999 ], [ -122.286565, 37.884321 ], [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ], [ -122.286587, 37.883982 ], [ -122.286673, 37.883999 ], [ -122.286565, 37.884321 ], [ -122.286072, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284334, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ], [ -122.284334, 37.887149 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1012", "GEOID10": "060014206001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17780, "AWATER10": 0, "INTPTLAT10": "+37.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.284334, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285085, 37.885320 ], [ -122.285600, 37.883999 ], [ -122.285686, 37.883644 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883982 ], [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1018", "GEOID10": "060014206001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20717, "AWATER10": 0, "INTPTLAT10": "+37.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ], [ -122.285600, 37.883999 ], [ -122.285686, 37.883644 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883982 ], [ -122.285986, 37.885523 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284462, 37.884135 ], [ -122.285707, 37.883542 ], [ -122.285686, 37.883644 ], [ -122.284741, 37.884101 ], [ -122.284505, 37.884202 ], [ -122.284462, 37.884135 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284505, 37.884202 ], [ -122.284462, 37.884135 ], [ -122.285707, 37.883542 ], [ -122.285686, 37.883644 ], [ -122.284741, 37.884101 ], [ -122.284505, 37.884202 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886963 ], [ -122.283819, 37.886235 ], [ -122.284505, 37.884372 ], [ -122.284505, 37.884202 ], [ -122.285686, 37.883644 ], [ -122.285600, 37.883999 ], [ -122.284570, 37.886709 ], [ -122.284334, 37.887149 ], [ -122.283540, 37.886963 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284334, 37.887149 ], [ -122.283540, 37.886963 ], [ -122.283819, 37.886235 ], [ -122.284505, 37.884372 ], [ -122.284505, 37.884202 ], [ -122.285686, 37.883644 ], [ -122.285600, 37.883999 ], [ -122.284570, 37.886709 ], [ -122.284334, 37.887149 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282681, 37.885981 ], [ -122.283175, 37.885371 ], [ -122.283282, 37.884778 ], [ -122.283390, 37.884727 ], [ -122.283862, 37.884541 ], [ -122.284505, 37.884202 ], [ -122.284505, 37.884372 ], [ -122.283819, 37.886235 ], [ -122.282681, 37.885981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283819, 37.886235 ], [ -122.282681, 37.885981 ], [ -122.283175, 37.885371 ], [ -122.283282, 37.884778 ], [ -122.283390, 37.884727 ], [ -122.283862, 37.884541 ], [ -122.284505, 37.884202 ], [ -122.284505, 37.884372 ], [ -122.283819, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283347, 37.884677 ], [ -122.284462, 37.884135 ], [ -122.284505, 37.884202 ], [ -122.283862, 37.884541 ], [ -122.283390, 37.884727 ], [ -122.283347, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283390, 37.884727 ], [ -122.283347, 37.884677 ], [ -122.284462, 37.884135 ], [ -122.284505, 37.884202 ], [ -122.283862, 37.884541 ], [ -122.283390, 37.884727 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282016, 37.884185 ], [ -122.282574, 37.882729 ], [ -122.282767, 37.882543 ], [ -122.282810, 37.882509 ], [ -122.283025, 37.882526 ], [ -122.283690, 37.882492 ], [ -122.285085, 37.882475 ], [ -122.285385, 37.882441 ], [ -122.286050, 37.882458 ], [ -122.285836, 37.883034 ], [ -122.285707, 37.883542 ], [ -122.283797, 37.884473 ], [ -122.283132, 37.884761 ], [ -122.282424, 37.884965 ], [ -122.282124, 37.884998 ], [ -122.281995, 37.884981 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.884998 ], [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282016, 37.884185 ], [ -122.282574, 37.882729 ], [ -122.282767, 37.882543 ], [ -122.282810, 37.882509 ], [ -122.283025, 37.882526 ], [ -122.283690, 37.882492 ], [ -122.285085, 37.882475 ], [ -122.285385, 37.882441 ], [ -122.286050, 37.882458 ], [ -122.285836, 37.883034 ], [ -122.285707, 37.883542 ], [ -122.283797, 37.884473 ], [ -122.283132, 37.884761 ], [ -122.282424, 37.884965 ], [ -122.282124, 37.884998 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "GEOID10": "060014206001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891129 ], [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "GEOID10": "060014206001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891129 ], [ -122.282424, 37.891180 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282381, 37.890790 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889232 ], [ -122.282639, 37.889164 ], [ -122.282853, 37.889164 ], [ -122.282982, 37.889435 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ], [ -122.282381, 37.890790 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1005", "GEOID10": "060014206001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19453, "AWATER10": 0, "INTPTLAT10": "+37.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.282381, 37.890790 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889232 ], [ -122.282639, 37.889164 ], [ -122.282853, 37.889164 ], [ -122.282982, 37.889435 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283282, 37.889147 ], [ -122.282832, 37.889147 ], [ -122.282746, 37.889080 ], [ -122.283089, 37.889063 ], [ -122.283475, 37.889097 ], [ -122.283669, 37.889130 ], [ -122.283647, 37.889215 ], [ -122.283282, 37.889147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283647, 37.889215 ], [ -122.283282, 37.889147 ], [ -122.282832, 37.889147 ], [ -122.282746, 37.889080 ], [ -122.283089, 37.889063 ], [ -122.283475, 37.889097 ], [ -122.283669, 37.889130 ], [ -122.283647, 37.889215 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282746, 37.889080 ], [ -122.282832, 37.889147 ], [ -122.282295, 37.889232 ], [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282746, 37.889080 ], [ -122.282832, 37.889147 ], [ -122.282295, 37.889232 ], [ -122.281909, 37.889418 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281673, 37.888673 ], [ -122.281673, 37.888250 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886895 ], [ -122.282660, 37.888589 ], [ -122.282660, 37.888944 ], [ -122.282746, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ], [ -122.281673, 37.888673 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281673, 37.888673 ], [ -122.281673, 37.888250 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886895 ], [ -122.282660, 37.888589 ], [ -122.282660, 37.888944 ], [ -122.282746, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.886675 ], [ -122.282488, 37.886319 ], [ -122.282681, 37.885981 ], [ -122.283819, 37.886235 ], [ -122.283540, 37.886963 ], [ -122.282295, 37.886675 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886963 ], [ -122.282295, 37.886675 ], [ -122.282488, 37.886319 ], [ -122.282681, 37.885981 ], [ -122.283819, 37.886235 ], [ -122.283540, 37.886963 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281973, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282124, 37.884998 ], [ -122.282424, 37.884965 ], [ -122.282875, 37.884846 ], [ -122.283347, 37.884677 ], [ -122.283390, 37.884727 ], [ -122.282917, 37.884914 ], [ -122.282445, 37.885032 ], [ -122.282038, 37.885066 ], [ -122.281973, 37.885049 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885066 ], [ -122.281973, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282124, 37.884998 ], [ -122.282424, 37.884965 ], [ -122.282875, 37.884846 ], [ -122.283347, 37.884677 ], [ -122.283390, 37.884727 ], [ -122.282917, 37.884914 ], [ -122.282445, 37.885032 ], [ -122.282038, 37.885066 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287810, 37.884169 ], [ -122.287188, 37.884101 ], [ -122.286673, 37.883999 ], [ -122.287080, 37.882915 ], [ -122.287209, 37.882594 ], [ -122.287939, 37.882881 ], [ -122.288518, 37.883051 ], [ -122.288067, 37.884253 ], [ -122.287810, 37.884169 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288067, 37.884253 ], [ -122.287810, 37.884169 ], [ -122.287188, 37.884101 ], [ -122.286673, 37.883999 ], [ -122.287080, 37.882915 ], [ -122.287209, 37.882594 ], [ -122.287939, 37.882881 ], [ -122.288518, 37.883051 ], [ -122.288067, 37.884253 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883982 ], [ -122.286973, 37.882983 ], [ -122.287080, 37.882915 ], [ -122.287037, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883982 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.883999 ], [ -122.286587, 37.883982 ], [ -122.286973, 37.882983 ], [ -122.287080, 37.882915 ], [ -122.287037, 37.883051 ], [ -122.286673, 37.883999 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "GEOID10": "060014206001030", "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882864 ], [ -122.287123, 37.882560 ], [ -122.287209, 37.882594 ], [ -122.287188, 37.882661 ], [ -122.287080, 37.882915 ], [ -122.287016, 37.882864 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "GEOID10": "060014206001030", "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.882915 ], [ -122.287016, 37.882864 ], [ -122.287123, 37.882560 ], [ -122.287209, 37.882594 ], [ -122.287188, 37.882661 ], [ -122.287080, 37.882915 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285707, 37.883542 ], [ -122.287016, 37.882864 ], [ -122.287080, 37.882915 ], [ -122.285686, 37.883644 ], [ -122.285707, 37.883542 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.883644 ], [ -122.285707, 37.883542 ], [ -122.287016, 37.882864 ], [ -122.287080, 37.882915 ], [ -122.285686, 37.883644 ] ] ] } } , -{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285836, 37.883034 ], [ -122.286050, 37.882458 ], [ -122.286758, 37.882458 ], [ -122.287123, 37.882560 ], [ -122.287016, 37.882864 ], [ -122.285707, 37.883542 ], [ -122.285836, 37.883034 ] ] ] } } +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285707, 37.883542 ], [ -122.285836, 37.883034 ], [ -122.286050, 37.882458 ], [ -122.286758, 37.882458 ], [ -122.287123, 37.882560 ], [ -122.287016, 37.882864 ], [ -122.285707, 37.883542 ] ] ] } } ] } ] } ] } diff --git a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json index ba4da8c..cbeef22 100644 --- a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json +++ b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb.json @@ -12,15 +12,15 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "albania", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.126953, 42.423457 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.376809 ], [ 20.478516, 41.178654 ], [ 20.654297, 41.112469 ], [ 20.654297, 40.913513 ], [ 20.830078, 40.979898 ], [ 21.005859, 40.713956 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.513799 ], [ 20.654297, 40.178873 ], [ 20.214844, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.842286 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.511719, 40.178873 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.423828, 40.580585 ], [ 19.248047, 40.713956 ], [ 19.335938, 40.979898 ], [ 19.511719, 40.979898 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.423828, 41.640078 ], [ 19.599609, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.617791 ], [ 19.775391, 42.488302 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.617791 ], [ 19.775391, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.126953, 42.423457 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.376809 ], [ 20.478516, 41.178654 ], [ 20.654297, 41.112469 ], [ 20.654297, 40.913513 ], [ 20.830078, 40.979898 ], [ 21.005859, 40.713956 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.513799 ], [ 20.654297, 40.178873 ], [ 20.214844, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.842286 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.511719, 40.178873 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.423828, 40.580585 ], [ 19.248047, 40.713956 ], [ 19.335938, 40.979898 ], [ 19.511719, 40.979898 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.423828, 41.640078 ], [ 19.599609, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.617791 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "algeria", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.767578, 36.949892 ], [ 7.119141, 36.949892 ], [ 7.207031, 37.090240 ], [ 7.734375, 37.020098 ], [ 7.734375, 36.879621 ], [ 7.998047, 36.879621 ], [ 8.173828, 37.020098 ], [ 8.525391, 36.949892 ], [ 8.613281, 36.879621 ], [ 8.349609, 36.809285 ], [ 8.437500, 36.738884 ], [ 8.085938, 36.527295 ], [ 8.349609, 36.456636 ], [ 8.173828, 35.960223 ], [ 8.349609, 35.317366 ], [ 8.173828, 34.957995 ], [ 8.261719, 34.813803 ], [ 8.173828, 34.597042 ], [ 7.470703, 34.161818 ], [ 7.470703, 33.724340 ], [ 7.646484, 33.284620 ], [ 8.085938, 33.137551 ], [ 8.261719, 32.546813 ], [ 9.052734, 32.026706 ], [ 9.492188, 30.297018 ], [ 9.228516, 30.145127 ], [ 9.492188, 29.840644 ], [ 9.843750, 28.998532 ], [ 9.755859, 28.226970 ], [ 9.931641, 27.839076 ], [ 9.667969, 27.371767 ], [ 9.843750, 26.588527 ], [ 9.404297, 26.431228 ], [ 9.316406, 26.115986 ], [ 10.019531, 25.324167 ], [ 10.019531, 24.846565 ], [ 10.195312, 24.766785 ], [ 10.195312, 24.607069 ], [ 11.513672, 24.367114 ], [ 11.953125, 23.563987 ], [ 7.734375, 21.125498 ], [ 5.888672, 19.559790 ], [ 3.251953, 18.979026 ], [ 3.076172, 19.145168 ], [ 3.076172, 19.311143 ], [ 3.251953, 19.394068 ], [ 3.164062, 19.890723 ], [ 2.373047, 20.055931 ], [ 2.197266, 20.303418 ], [ 1.757812, 20.303418 ], [ 1.582031, 20.632784 ], [ 1.142578, 20.797201 ], [ 1.142578, 21.125498 ], [ 0.791016, 21.371244 ], [ -4.746094, 25.005973 ], [ -8.701172, 27.293689 ], [ -8.701172, 28.767659 ], [ -7.646484, 29.458731 ], [ -6.855469, 29.458731 ], [ -5.800781, 29.688053 ], [ -5.800781, 29.535230 ], [ -5.625000, 29.535230 ], [ -5.361328, 29.916852 ], [ -4.833984, 30.297018 ], [ -4.658203, 30.297018 ], [ -4.306641, 30.600094 ], [ -3.691406, 30.751278 ], [ -3.603516, 30.977609 ], [ -3.867188, 31.203405 ], [ -3.867188, 31.353637 ], [ -3.691406, 31.428663 ], [ -3.603516, 31.728167 ], [ -2.900391, 31.802893 ], [ -2.988281, 32.101190 ], [ -1.230469, 32.101190 ], [ -1.318359, 32.398516 ], [ -1.054688, 32.546813 ], [ -1.494141, 32.768800 ], [ -1.494141, 33.063924 ], [ -1.757812, 33.284620 ], [ -1.669922, 34.089061 ], [ -1.845703, 34.379713 ], [ -1.757812, 34.524661 ], [ -1.933594, 34.597042 ], [ -1.845703, 34.813803 ], [ -2.285156, 35.101934 ], [ -1.933594, 35.101934 ], [ -1.406250, 35.317366 ], [ -1.054688, 35.746512 ], [ -0.615234, 35.746512 ], [ -0.527344, 35.960223 ], [ -0.087891, 35.817813 ], [ 0.263672, 36.244273 ], [ 0.791016, 36.385913 ], [ 0.878906, 36.527295 ], [ 2.285156, 36.668419 ], [ 2.548828, 36.597889 ], [ 2.900391, 36.879621 ], [ 3.603516, 36.809285 ], [ 3.691406, 36.949892 ], [ 4.746094, 36.949892 ], [ 5.009766, 36.879621 ], [ 5.009766, 36.738884 ], [ 5.449219, 36.668419 ], [ 5.625000, 36.879621 ], [ 6.240234, 36.949892 ], [ 6.328125, 37.160317 ], [ 6.767578, 36.949892 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 37.160317 ], [ 6.767578, 36.949892 ], [ 7.119141, 36.949892 ], [ 7.207031, 37.090240 ], [ 7.734375, 37.020098 ], [ 7.734375, 36.879621 ], [ 7.998047, 36.879621 ], [ 8.173828, 37.020098 ], [ 8.525391, 36.949892 ], [ 8.613281, 36.879621 ], [ 8.349609, 36.809285 ], [ 8.437500, 36.738884 ], [ 8.085938, 36.527295 ], [ 8.349609, 36.456636 ], [ 8.173828, 35.960223 ], [ 8.349609, 35.317366 ], [ 8.173828, 34.957995 ], [ 8.261719, 34.813803 ], [ 8.173828, 34.597042 ], [ 7.470703, 34.161818 ], [ 7.470703, 33.724340 ], [ 7.646484, 33.284620 ], [ 8.085938, 33.137551 ], [ 8.261719, 32.546813 ], [ 9.052734, 32.026706 ], [ 9.492188, 30.297018 ], [ 9.228516, 30.145127 ], [ 9.492188, 29.840644 ], [ 9.843750, 28.998532 ], [ 9.755859, 28.226970 ], [ 9.931641, 27.839076 ], [ 9.667969, 27.371767 ], [ 9.843750, 26.588527 ], [ 9.404297, 26.431228 ], [ 9.316406, 26.115986 ], [ 10.019531, 25.324167 ], [ 10.019531, 24.846565 ], [ 10.195312, 24.766785 ], [ 10.195312, 24.607069 ], [ 11.513672, 24.367114 ], [ 11.953125, 23.563987 ], [ 7.734375, 21.125498 ], [ 5.888672, 19.559790 ], [ 3.251953, 18.979026 ], [ 3.076172, 19.145168 ], [ 3.076172, 19.311143 ], [ 3.251953, 19.394068 ], [ 3.164062, 19.890723 ], [ 2.373047, 20.055931 ], [ 2.197266, 20.303418 ], [ 1.757812, 20.303418 ], [ 1.582031, 20.632784 ], [ 1.142578, 20.797201 ], [ 1.142578, 21.125498 ], [ 0.791016, 21.371244 ], [ -4.746094, 25.005973 ], [ -8.701172, 27.293689 ], [ -8.701172, 28.767659 ], [ -7.646484, 29.458731 ], [ -6.855469, 29.458731 ], [ -5.800781, 29.688053 ], [ -5.800781, 29.535230 ], [ -5.625000, 29.535230 ], [ -5.361328, 29.916852 ], [ -4.833984, 30.297018 ], [ -4.658203, 30.297018 ], [ -4.306641, 30.600094 ], [ -3.691406, 30.751278 ], [ -3.603516, 30.977609 ], [ -3.867188, 31.203405 ], [ -3.867188, 31.353637 ], [ -3.691406, 31.428663 ], [ -3.603516, 31.728167 ], [ -2.900391, 31.802893 ], [ -2.988281, 32.101190 ], [ -1.230469, 32.101190 ], [ -1.318359, 32.398516 ], [ -1.054688, 32.546813 ], [ -1.494141, 32.768800 ], [ -1.494141, 33.063924 ], [ -1.757812, 33.284620 ], [ -1.669922, 34.089061 ], [ -1.845703, 34.379713 ], [ -1.757812, 34.524661 ], [ -1.933594, 34.597042 ], [ -1.845703, 34.813803 ], [ -2.285156, 35.101934 ], [ -1.933594, 35.101934 ], [ -1.406250, 35.317366 ], [ -1.054688, 35.746512 ], [ -0.615234, 35.746512 ], [ -0.527344, 35.960223 ], [ -0.087891, 35.817813 ], [ 0.263672, 36.244273 ], [ 0.791016, 36.385913 ], [ 0.878906, 36.527295 ], [ 2.285156, 36.668419 ], [ 2.548828, 36.597889 ], [ 2.900391, 36.879621 ], [ 3.603516, 36.809285 ], [ 3.691406, 36.949892 ], [ 4.746094, 36.949892 ], [ 5.009766, 36.879621 ], [ 5.009766, 36.738884 ], [ 5.449219, 36.668419 ], [ 5.625000, 36.879621 ], [ 6.240234, 36.949892 ], [ 6.328125, 37.160317 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "sweden", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.236328, 65.585720 ], [ 22.324219, 65.549367 ], [ 22.324219, 65.512963 ], [ 22.148438, 65.512963 ], [ 22.148438, 65.585720 ], [ 22.236328, 65.585720 ] ] ], [ [ [ 16.523438, 56.316537 ], [ 16.347656, 56.218923 ], [ 16.347656, 56.607885 ], [ 16.699219, 56.897004 ], [ 16.875000, 57.326521 ], [ 17.050781, 57.373938 ], [ 16.523438, 56.316537 ] ] ], [ [ [ 18.720703, 57.751076 ], [ 18.720703, 57.468589 ], [ 18.896484, 57.421294 ], [ 18.632812, 57.373938 ], [ 18.632812, 57.231503 ], [ 18.369141, 57.183902 ], [ 18.281250, 56.944974 ], [ 18.105469, 56.944974 ], [ 18.281250, 57.088515 ], [ 18.017578, 57.279043 ], [ 18.105469, 57.610107 ], [ 18.632812, 57.938183 ], [ 18.720703, 57.844751 ], [ 18.808594, 57.938183 ], [ 18.984375, 57.938183 ], [ 18.984375, 57.984808 ], [ 19.160156, 58.031372 ], [ 19.335938, 57.984808 ], [ 18.984375, 57.891497 ], [ 19.072266, 57.844751 ], [ 18.720703, 57.751076 ] ] ], [ [ [ 11.513672, 57.938183 ], [ 11.425781, 58.077876 ], [ 11.689453, 58.077876 ], [ 11.513672, 57.938183 ] ] ], [ [ [ 18.457031, 59.040555 ], [ 18.281250, 59.040555 ], [ 18.281250, 59.130863 ], [ 18.457031, 59.130863 ], [ 18.457031, 59.040555 ] ] ], [ [ [ 18.720703, 59.534318 ], [ 18.544922, 59.534318 ], [ 18.632812, 59.623325 ], [ 18.720703, 59.623325 ], [ 18.720703, 59.534318 ] ] ], [ [ [ 19.072266, 59.800634 ], [ 18.896484, 59.800634 ], [ 18.896484, 59.888937 ], [ 18.984375, 59.844815 ], [ 18.984375, 59.888937 ], [ 19.072266, 59.888937 ], [ 19.072266, 59.800634 ] ] ], [ [ [ 18.457031, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.500525 ], [ 18.457031, 60.500525 ], [ 18.457031, 60.413852 ] ] ], [ [ [ 20.917969, 63.665760 ], [ 20.742188, 63.665760 ], [ 20.742188, 63.743631 ], [ 20.917969, 63.743631 ], [ 20.917969, 63.665760 ] ] ], [ [ [ 18.632812, 59.355596 ], [ 18.457031, 59.355596 ], [ 18.369141, 59.445075 ], [ 18.632812, 59.355596 ] ] ], [ [ [ 18.193359, 59.445075 ], [ 18.281250, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.193359, 59.445075 ] ] ], [ [ [ 18.193359, 59.445075 ], [ 18.105469, 59.445075 ], [ 18.193359, 59.489726 ], [ 18.193359, 59.445075 ] ] ], [ [ [ 17.402344, 61.773123 ], [ 17.490234, 61.648162 ], [ 17.314453, 61.731526 ], [ 17.402344, 61.773123 ] ] ], [ [ [ 23.027344, 65.730626 ], [ 23.027344, 65.694476 ], [ 22.851562, 65.694476 ], [ 22.851562, 65.766727 ], [ 22.939453, 65.766727 ], [ 23.027344, 65.730626 ] ] ], [ [ [ 20.302734, 63.743631 ], [ 20.302734, 63.665760 ], [ 20.214844, 63.704722 ], [ 20.214844, 63.665760 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.423828, 63.587675 ], [ 19.335938, 63.548552 ], [ 19.511719, 63.509375 ], [ 19.511719, 63.430860 ], [ 19.335938, 63.509375 ], [ 18.984375, 63.194018 ], [ 18.896484, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.114638 ], [ 18.544922, 63.154355 ], [ 18.457031, 63.035039 ], [ 18.193359, 63.035039 ], [ 18.544922, 62.995158 ], [ 18.369141, 62.995158 ], [ 18.457031, 62.875188 ], [ 18.193359, 62.915233 ], [ 18.193359, 62.794935 ], [ 17.929688, 62.794935 ], [ 18.105469, 62.835089 ], [ 17.841797, 62.835089 ], [ 17.841797, 62.674143 ], [ 18.017578, 62.593341 ], [ 17.841797, 62.633770 ], [ 17.841797, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.666016, 62.471724 ], [ 17.490234, 62.471724 ], [ 17.402344, 62.552857 ], [ 17.314453, 62.512318 ], [ 17.314453, 62.349609 ], [ 17.578125, 62.267923 ], [ 17.314453, 62.021528 ], [ 17.314453, 61.731526 ], [ 17.226562, 61.731526 ], [ 17.050781, 61.648162 ], [ 17.050781, 61.396719 ], [ 17.226562, 61.312452 ], [ 17.050781, 61.312452 ], [ 17.226562, 61.058285 ], [ 17.138672, 60.930432 ], [ 17.314453, 60.802064 ], [ 17.138672, 60.716198 ], [ 17.314453, 60.630102 ], [ 17.578125, 60.673179 ], [ 17.666016, 60.500525 ], [ 17.929688, 60.630102 ], [ 18.105469, 60.413852 ], [ 18.544922, 60.283408 ], [ 18.281250, 60.326948 ], [ 18.369141, 60.196156 ], [ 18.544922, 60.196156 ], [ 18.544922, 60.108670 ], [ 18.720703, 60.152442 ], [ 18.720703, 60.020952 ], [ 18.808594, 60.108670 ], [ 18.984375, 59.888937 ], [ 18.896484, 59.888937 ], [ 18.720703, 59.800634 ], [ 19.072266, 59.756395 ], [ 18.632812, 59.712097 ], [ 18.720703, 59.667741 ], [ 18.632812, 59.623325 ], [ 18.544922, 59.623325 ], [ 18.544922, 59.534318 ], [ 18.369141, 59.489726 ], [ 18.017578, 59.489726 ], [ 18.017578, 59.400365 ], [ 17.929688, 59.445075 ], [ 18.017578, 59.355596 ], [ 18.105469, 59.355596 ], [ 18.105469, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.281250, 59.355596 ], [ 18.193359, 59.355596 ], [ 18.369141, 59.175928 ], [ 18.281250, 59.130863 ], [ 18.017578, 59.040555 ], [ 17.841797, 58.904646 ], [ 17.753906, 58.950008 ], [ 17.753906, 58.995311 ], [ 17.666016, 58.995311 ], [ 17.666016, 58.950008 ], [ 17.753906, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.859224 ], [ 17.402344, 58.904646 ], [ 17.314453, 58.768200 ], [ 16.962891, 58.768200 ], [ 17.138672, 58.722599 ], [ 16.962891, 58.722599 ], [ 16.875000, 58.631217 ], [ 16.171875, 58.676938 ], [ 16.787109, 58.631217 ], [ 16.699219, 58.585436 ], [ 16.875000, 58.493694 ], [ 16.347656, 58.493694 ], [ 16.699219, 58.447733 ], [ 16.611328, 58.309489 ], [ 16.787109, 58.355630 ], [ 16.787109, 58.170702 ], [ 16.611328, 58.217025 ], [ 16.699219, 57.891497 ], [ 16.435547, 58.031372 ], [ 16.611328, 57.797944 ], [ 16.523438, 57.844751 ], [ 16.699219, 57.704147 ], [ 16.523438, 57.751076 ], [ 16.611328, 57.657158 ], [ 16.435547, 57.657158 ], [ 16.611328, 57.562995 ], [ 16.611328, 57.421294 ], [ 16.435547, 57.326521 ], [ 16.523438, 57.088515 ], [ 16.347656, 57.040730 ], [ 16.435547, 56.800878 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 15.820312, 56.121060 ], [ 15.644531, 56.218923 ], [ 14.941406, 56.218923 ], [ 14.677734, 56.170023 ], [ 14.677734, 56.022948 ], [ 14.414062, 56.072035 ], [ 14.150391, 55.875311 ], [ 14.326172, 55.578345 ], [ 14.150391, 55.429013 ], [ 12.919922, 55.429013 ], [ 12.832031, 55.578345 ], [ 13.007812, 55.627996 ], [ 13.007812, 55.776573 ], [ 12.832031, 55.776573 ], [ 12.919922, 55.875311 ], [ 12.744141, 55.924586 ], [ 12.392578, 56.316537 ], [ 12.832031, 56.267761 ], [ 12.568359, 56.462490 ], [ 12.832031, 56.462490 ], [ 12.919922, 56.559482 ], [ 12.304688, 56.944974 ], [ 12.041016, 57.231503 ], [ 12.041016, 57.468589 ], [ 11.865234, 57.373938 ], [ 11.865234, 57.704147 ], [ 11.689453, 57.704147 ], [ 11.777344, 57.797944 ], [ 11.601562, 57.844751 ], [ 11.689453, 58.077876 ], [ 11.777344, 58.124320 ], [ 11.337891, 58.124320 ], [ 11.601562, 58.309489 ], [ 11.425781, 58.263287 ], [ 11.601562, 58.401712 ], [ 11.513672, 58.447733 ], [ 11.425781, 58.355630 ], [ 11.337891, 58.447733 ], [ 11.162109, 58.355630 ], [ 11.250000, 58.676938 ], [ 11.074219, 58.950008 ], [ 11.162109, 59.130863 ], [ 11.337891, 59.130863 ], [ 11.425781, 58.904646 ], [ 11.601562, 58.904646 ], [ 11.689453, 58.995311 ], [ 11.777344, 59.400365 ], [ 11.601562, 59.623325 ], [ 11.865234, 59.712097 ], [ 11.777344, 59.888937 ], [ 12.128906, 59.933000 ], [ 12.480469, 60.108670 ], [ 12.568359, 60.413852 ], [ 12.216797, 61.015725 ], [ 12.656250, 61.058285 ], [ 12.832031, 61.227957 ], [ 12.832031, 61.396719 ], [ 12.128906, 61.731526 ], [ 12.304688, 62.267923 ], [ 12.041016, 62.593341 ], [ 12.041016, 62.955223 ], [ 12.216797, 63.035039 ], [ 11.953125, 63.312683 ], [ 12.216797, 63.509375 ], [ 12.128906, 63.626745 ], [ 12.919922, 64.091408 ], [ 13.886719, 64.014496 ], [ 14.150391, 64.206377 ], [ 14.062500, 64.472794 ], [ 13.623047, 64.586185 ], [ 14.501953, 65.330178 ], [ 14.501953, 66.160511 ], [ 15.029297, 66.160511 ], [ 15.468750, 66.302205 ], [ 15.380859, 66.513260 ], [ 16.083984, 66.964476 ], [ 16.347656, 67.033163 ], [ 16.435547, 67.204032 ], [ 16.083984, 67.441229 ], [ 16.435547, 67.575717 ], [ 16.699219, 67.908619 ], [ 17.226562, 68.106102 ], [ 17.841797, 67.974634 ], [ 17.929688, 68.007571 ], [ 18.105469, 68.171555 ], [ 18.105469, 68.560384 ], [ 18.457031, 68.592487 ], [ 18.632812, 68.496040 ], [ 18.984375, 68.528235 ], [ 19.951172, 68.366801 ], [ 20.214844, 68.496040 ], [ 19.951172, 68.560384 ], [ 20.302734, 68.784144 ], [ 20.302734, 68.911005 ], [ 20.039062, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.917969, 68.974164 ], [ 20.830078, 68.911005 ], [ 21.181641, 68.847665 ], [ 21.445312, 68.688521 ], [ 21.708984, 68.592487 ], [ 21.884766, 68.592487 ], [ 21.972656, 68.496040 ], [ 22.500000, 68.463800 ], [ 23.027344, 68.301905 ], [ 23.115234, 68.138852 ], [ 23.291016, 68.171555 ], [ 23.291016, 68.073305 ], [ 23.642578, 67.974634 ], [ 23.466797, 67.908619 ], [ 23.378906, 67.474922 ], [ 23.730469, 67.441229 ], [ 23.554688, 67.135829 ], [ 23.994141, 66.826520 ], [ 23.818359, 66.757250 ], [ 23.818359, 66.583217 ], [ 23.554688, 66.443107 ], [ 23.642578, 66.231457 ], [ 23.994141, 66.089364 ], [ 24.082031, 65.802776 ], [ 23.994141, 65.838776 ], [ 23.906250, 65.766727 ], [ 23.730469, 65.838776 ], [ 23.378906, 65.838776 ], [ 23.378906, 65.766727 ], [ 23.291016, 65.838776 ], [ 23.115234, 65.838776 ], [ 23.203125, 65.766727 ], [ 23.027344, 65.730626 ], [ 23.027344, 65.766727 ], [ 22.939453, 65.766727 ], [ 22.763672, 65.874725 ], [ 22.587891, 65.910623 ], [ 22.675781, 65.766727 ], [ 22.324219, 65.874725 ], [ 22.324219, 65.766727 ], [ 22.148438, 65.766727 ], [ 22.236328, 65.730626 ], [ 22.148438, 65.658275 ], [ 22.236328, 65.622023 ], [ 22.324219, 65.658275 ], [ 22.412109, 65.549367 ], [ 22.324219, 65.549367 ], [ 22.324219, 65.585720 ], [ 22.236328, 65.585720 ], [ 21.708984, 65.730626 ], [ 22.148438, 65.549367 ], [ 21.796875, 65.549367 ], [ 21.972656, 65.512963 ], [ 21.884766, 65.403445 ], [ 21.445312, 65.403445 ], [ 21.621094, 65.256706 ], [ 21.269531, 65.403445 ], [ 21.181641, 65.366837 ], [ 21.533203, 65.256706 ], [ 21.533203, 65.072130 ], [ 21.357422, 65.035060 ], [ 21.357422, 64.960766 ], [ 21.181641, 64.960766 ], [ 21.093750, 64.848937 ], [ 21.005859, 64.886265 ], [ 21.005859, 64.811557 ], [ 21.269531, 64.811557 ], [ 21.269531, 64.699105 ], [ 21.093750, 64.699105 ], [ 21.269531, 64.586185 ], [ 21.445312, 64.623877 ], [ 21.533203, 64.548440 ], [ 21.445312, 64.548440 ], [ 21.533203, 64.434892 ], [ 21.357422, 64.358931 ], [ 21.269531, 64.396938 ], [ 21.269531, 64.320872 ], [ 21.005859, 64.244595 ], [ 20.654297, 63.821288 ], [ 20.566406, 63.860036 ], [ 20.390625, 63.704722 ], [ 20.302734, 63.743631 ] ], [ [ 17.841797, 62.995158 ], [ 17.666016, 63.035039 ], [ 17.841797, 62.955223 ], [ 17.841797, 62.995158 ] ], [ [ 18.896484, 63.273182 ], [ 18.720703, 63.273182 ], [ 18.896484, 63.233627 ], [ 18.896484, 63.273182 ] ], [ [ 11.865234, 58.355630 ], [ 11.601562, 58.309489 ], [ 11.777344, 58.263287 ], [ 11.865234, 58.355630 ] ], [ [ 17.666016, 58.995311 ], [ 17.753906, 59.130863 ], [ 17.578125, 59.085739 ], [ 17.578125, 58.995311 ], [ 17.666016, 58.995311 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.720703, 59.534318 ], [ 18.544922, 59.534318 ], [ 18.369141, 59.489726 ], [ 18.193359, 59.489726 ], [ 18.281250, 59.445075 ], [ 18.281250, 59.355596 ], [ 18.193359, 59.355596 ], [ 18.369141, 59.175928 ], [ 18.281250, 59.130863 ], [ 18.017578, 59.040555 ], [ 17.841797, 58.904646 ], [ 17.753906, 58.995311 ], [ 17.753906, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.859224 ], [ 17.402344, 58.904646 ], [ 17.314453, 58.768200 ], [ 16.962891, 58.768200 ], [ 17.138672, 58.722599 ], [ 16.962891, 58.722599 ], [ 16.875000, 58.631217 ], [ 16.787109, 58.631217 ], [ 16.699219, 58.585436 ], [ 16.875000, 58.493694 ], [ 16.347656, 58.493694 ], [ 16.699219, 58.447733 ], [ 16.611328, 58.309489 ], [ 16.787109, 58.355630 ], [ 16.787109, 58.170702 ], [ 16.611328, 58.217025 ], [ 16.699219, 57.891497 ], [ 16.435547, 58.031372 ], [ 16.699219, 57.751076 ], [ 16.699219, 57.704147 ], [ 16.523438, 57.751076 ], [ 16.611328, 57.657158 ], [ 16.435547, 57.657158 ], [ 16.611328, 57.562995 ], [ 16.611328, 57.421294 ], [ 16.435547, 57.326521 ], [ 16.523438, 57.088515 ], [ 16.347656, 57.040730 ], [ 16.435547, 56.800878 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 15.820312, 56.121060 ], [ 15.644531, 56.218923 ], [ 14.941406, 56.218923 ], [ 14.677734, 56.170023 ], [ 14.677734, 56.022948 ], [ 14.414062, 56.072035 ], [ 14.150391, 55.875311 ], [ 14.326172, 55.578345 ], [ 14.150391, 55.429013 ], [ 12.919922, 55.429013 ], [ 12.832031, 55.578345 ], [ 13.007812, 55.627996 ], [ 13.007812, 55.776573 ], [ 12.832031, 55.776573 ], [ 12.919922, 55.875311 ], [ 12.744141, 55.924586 ], [ 12.392578, 56.316537 ], [ 12.832031, 56.267761 ], [ 12.568359, 56.462490 ], [ 12.832031, 56.462490 ], [ 12.919922, 56.559482 ], [ 12.304688, 56.944974 ], [ 12.041016, 57.231503 ], [ 12.041016, 57.468589 ], [ 11.865234, 57.373938 ], [ 11.865234, 57.704147 ], [ 11.689453, 57.704147 ], [ 11.777344, 57.797944 ], [ 11.601562, 57.844751 ], [ 11.689453, 58.077876 ], [ 11.777344, 58.124320 ], [ 11.337891, 58.124320 ], [ 11.601562, 58.309489 ], [ 11.425781, 58.263287 ], [ 11.425781, 58.309489 ], [ 11.337891, 58.447733 ], [ 11.162109, 58.355630 ], [ 11.250000, 58.676938 ], [ 11.074219, 58.950008 ], [ 11.162109, 59.130863 ], [ 11.337891, 59.130863 ], [ 11.425781, 58.904646 ], [ 11.601562, 58.904646 ], [ 11.689453, 58.995311 ], [ 11.777344, 59.400365 ], [ 11.601562, 59.623325 ], [ 11.865234, 59.712097 ], [ 11.777344, 59.888937 ], [ 12.128906, 59.933000 ], [ 12.480469, 60.108670 ], [ 12.568359, 60.413852 ], [ 12.216797, 61.015725 ], [ 12.656250, 61.058285 ], [ 12.832031, 61.227957 ], [ 12.832031, 61.396719 ], [ 12.128906, 61.731526 ], [ 12.304688, 62.267923 ], [ 12.041016, 62.593341 ], [ 12.041016, 62.955223 ], [ 12.216797, 63.035039 ], [ 11.953125, 63.312683 ], [ 12.216797, 63.509375 ], [ 12.128906, 63.626745 ], [ 12.919922, 64.091408 ], [ 13.886719, 64.014496 ], [ 14.150391, 64.206377 ], [ 14.062500, 64.472794 ], [ 13.623047, 64.586185 ], [ 14.501953, 65.330178 ], [ 14.501953, 66.160511 ], [ 15.029297, 66.160511 ], [ 15.468750, 66.302205 ], [ 15.380859, 66.513260 ], [ 16.083984, 66.964476 ], [ 16.347656, 67.033163 ], [ 16.435547, 67.204032 ], [ 16.083984, 67.441229 ], [ 16.435547, 67.575717 ], [ 16.699219, 67.908619 ], [ 17.226562, 68.106102 ], [ 17.841797, 67.974634 ], [ 17.929688, 68.007571 ], [ 18.105469, 68.171555 ], [ 18.105469, 68.560384 ], [ 18.457031, 68.592487 ], [ 18.632812, 68.496040 ], [ 18.984375, 68.528235 ], [ 19.951172, 68.366801 ], [ 20.214844, 68.496040 ], [ 19.951172, 68.560384 ], [ 20.302734, 68.784144 ], [ 20.302734, 68.911005 ], [ 20.039062, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.917969, 68.974164 ], [ 20.830078, 68.911005 ], [ 21.181641, 68.847665 ], [ 21.445312, 68.688521 ], [ 21.708984, 68.592487 ], [ 21.884766, 68.592487 ], [ 21.972656, 68.496040 ], [ 22.500000, 68.463800 ], [ 23.027344, 68.301905 ], [ 23.115234, 68.138852 ], [ 23.291016, 68.171555 ], [ 23.291016, 68.073305 ], [ 23.642578, 67.974634 ], [ 23.466797, 67.908619 ], [ 23.378906, 67.474922 ], [ 23.730469, 67.441229 ], [ 23.554688, 67.135829 ], [ 23.994141, 66.826520 ], [ 23.818359, 66.757250 ], [ 23.818359, 66.583217 ], [ 23.554688, 66.443107 ], [ 23.642578, 66.231457 ], [ 23.994141, 66.089364 ], [ 24.082031, 65.802776 ], [ 23.994141, 65.838776 ], [ 23.906250, 65.766727 ], [ 23.730469, 65.838776 ], [ 23.378906, 65.838776 ], [ 23.378906, 65.766727 ], [ 23.291016, 65.838776 ], [ 23.115234, 65.838776 ], [ 23.203125, 65.766727 ], [ 23.027344, 65.730626 ], [ 23.027344, 65.694476 ], [ 22.851562, 65.694476 ], [ 22.851562, 65.766727 ], [ 22.939453, 65.766727 ], [ 22.763672, 65.874725 ], [ 22.587891, 65.910623 ], [ 22.675781, 65.766727 ], [ 22.324219, 65.874725 ], [ 22.324219, 65.766727 ], [ 22.148438, 65.766727 ], [ 22.236328, 65.730626 ], [ 22.148438, 65.658275 ], [ 22.236328, 65.622023 ], [ 22.324219, 65.694476 ], [ 22.412109, 65.549367 ], [ 22.324219, 65.585720 ], [ 22.324219, 65.512963 ], [ 22.148438, 65.512963 ], [ 22.148438, 65.549367 ], [ 21.796875, 65.549367 ], [ 21.972656, 65.512963 ], [ 21.884766, 65.403445 ], [ 21.445312, 65.403445 ], [ 21.621094, 65.256706 ], [ 21.269531, 65.403445 ], [ 21.181641, 65.366837 ], [ 21.533203, 65.256706 ], [ 21.533203, 65.072130 ], [ 21.357422, 65.035060 ], [ 21.357422, 64.960766 ], [ 21.181641, 64.960766 ], [ 21.093750, 64.848937 ], [ 21.005859, 64.886265 ], [ 21.005859, 64.811557 ], [ 21.269531, 64.811557 ], [ 21.269531, 64.699105 ], [ 21.093750, 64.699105 ], [ 21.269531, 64.586185 ], [ 21.445312, 64.623877 ], [ 21.533203, 64.548440 ], [ 21.445312, 64.548440 ], [ 21.533203, 64.434892 ], [ 21.357422, 64.358931 ], [ 21.269531, 64.396938 ], [ 21.269531, 64.320872 ], [ 21.005859, 64.244595 ], [ 20.654297, 63.821288 ], [ 20.566406, 63.860036 ], [ 20.390625, 63.704722 ], [ 20.302734, 63.782486 ], [ 20.302734, 63.665760 ], [ 20.214844, 63.743631 ], [ 20.214844, 63.665760 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.423828, 63.587675 ], [ 19.335938, 63.548552 ], [ 19.511719, 63.509375 ], [ 19.511719, 63.430860 ], [ 19.335938, 63.509375 ], [ 18.984375, 63.194018 ], [ 18.896484, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.114638 ], [ 18.544922, 63.154355 ], [ 18.457031, 63.035039 ], [ 18.193359, 63.035039 ], [ 18.369141, 62.995158 ], [ 18.457031, 62.875188 ], [ 18.193359, 62.915233 ], [ 18.193359, 62.794935 ], [ 17.929688, 62.794935 ], [ 18.105469, 62.835089 ], [ 17.841797, 62.835089 ], [ 17.841797, 62.674143 ], [ 18.017578, 62.593341 ], [ 17.841797, 62.633770 ], [ 17.841797, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.666016, 62.471724 ], [ 17.490234, 62.471724 ], [ 17.402344, 62.552857 ], [ 17.314453, 62.512318 ], [ 17.314453, 62.349609 ], [ 17.578125, 62.267923 ], [ 17.314453, 62.021528 ], [ 17.314453, 61.731526 ], [ 17.226562, 61.731526 ], [ 17.050781, 61.648162 ], [ 17.050781, 61.396719 ], [ 17.226562, 61.312452 ], [ 17.050781, 61.312452 ], [ 17.226562, 61.058285 ], [ 17.138672, 60.930432 ], [ 17.314453, 60.802064 ], [ 17.138672, 60.716198 ], [ 17.314453, 60.630102 ], [ 17.578125, 60.673179 ], [ 17.666016, 60.500525 ], [ 17.929688, 60.630102 ], [ 18.105469, 60.413852 ], [ 18.544922, 60.283408 ], [ 18.281250, 60.326948 ], [ 18.369141, 60.196156 ], [ 18.544922, 60.196156 ], [ 18.544922, 60.108670 ], [ 18.720703, 60.152442 ], [ 18.720703, 60.020952 ], [ 18.808594, 60.152442 ], [ 18.984375, 59.888937 ], [ 19.072266, 59.888937 ], [ 19.072266, 59.800634 ], [ 18.896484, 59.800634 ], [ 19.072266, 59.756395 ], [ 18.632812, 59.712097 ], [ 18.720703, 59.667741 ], [ 18.720703, 59.534318 ] ], [ [ 11.865234, 58.355630 ], [ 11.601562, 58.309489 ], [ 11.777344, 58.263287 ], [ 11.865234, 58.355630 ] ], [ [ 18.017578, 59.355596 ], [ 18.105469, 59.355596 ], [ 18.105469, 59.445075 ], [ 18.193359, 59.489726 ], [ 18.017578, 59.489726 ], [ 18.017578, 59.355596 ] ], [ [ 21.708984, 65.730626 ], [ 22.148438, 65.585720 ], [ 22.236328, 65.585720 ], [ 22.236328, 65.622023 ], [ 21.708984, 65.730626 ] ], [ [ 11.425781, 58.309489 ], [ 11.601562, 58.401712 ], [ 11.513672, 58.493694 ], [ 11.425781, 58.309489 ] ], [ [ 17.578125, 58.995311 ], [ 17.666016, 58.995311 ], [ 17.753906, 59.130863 ], [ 17.578125, 59.085739 ], [ 17.578125, 58.995311 ] ], [ [ 18.896484, 59.800634 ], [ 18.896484, 59.888937 ], [ 18.720703, 59.800634 ], [ 18.896484, 59.800634 ] ], [ [ 18.896484, 63.233627 ], [ 18.896484, 63.273182 ], [ 18.720703, 63.273182 ], [ 18.896484, 63.233627 ] ] ], [ [ [ 16.347656, 56.656226 ], [ 16.699219, 56.897004 ], [ 16.875000, 57.326521 ], [ 17.050781, 57.373938 ], [ 16.523438, 56.316537 ], [ 16.347656, 56.218923 ], [ 16.347656, 56.656226 ] ] ], [ [ [ 19.160156, 58.031372 ], [ 19.335938, 57.984808 ], [ 18.984375, 57.891497 ], [ 19.072266, 57.844751 ], [ 18.720703, 57.751076 ], [ 18.720703, 57.468589 ], [ 18.896484, 57.421294 ], [ 18.632812, 57.373938 ], [ 18.632812, 57.231503 ], [ 18.369141, 57.183902 ], [ 18.281250, 56.944974 ], [ 18.105469, 56.944974 ], [ 18.281250, 57.088515 ], [ 18.017578, 57.279043 ], [ 18.105469, 57.610107 ], [ 18.632812, 57.938183 ], [ 18.720703, 57.844751 ], [ 18.808594, 57.938183 ], [ 18.984375, 57.938183 ], [ 18.984375, 57.984808 ], [ 19.160156, 58.031372 ] ] ], [ [ [ 11.689453, 58.077876 ], [ 11.513672, 57.938183 ], [ 11.425781, 58.077876 ], [ 11.689453, 58.077876 ] ] ], [ [ [ 18.457031, 59.130863 ], [ 18.457031, 59.040555 ], [ 18.281250, 59.040555 ], [ 18.281250, 59.130863 ], [ 18.457031, 59.130863 ] ] ], [ [ [ 18.632812, 59.355596 ], [ 18.457031, 59.355596 ], [ 18.369141, 59.445075 ], [ 18.632812, 59.355596 ] ] ], [ [ [ 18.457031, 60.500525 ], [ 18.457031, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.500525 ], [ 18.457031, 60.500525 ] ] ], [ [ [ 20.917969, 63.743631 ], [ 20.917969, 63.665760 ], [ 20.742188, 63.665760 ], [ 20.742188, 63.743631 ], [ 20.917969, 63.743631 ] ] ], [ [ [ 17.314453, 61.731526 ], [ 17.402344, 61.773123 ], [ 17.490234, 61.648162 ], [ 17.314453, 61.731526 ] ] ] ] } } ] } ] } ] } diff --git a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json index 7f5663d..c444818 100644 --- a/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json +++ b/tests/named/out/-z0_-Lalgeria@tests%named%alg_-Lalbania@tests%named%alb_-lunified.json @@ -12,11 +12,11 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "unified", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.236328, 65.585720 ], [ 22.324219, 65.549367 ], [ 22.324219, 65.512963 ], [ 22.148438, 65.512963 ], [ 22.148438, 65.585720 ], [ 22.236328, 65.585720 ] ] ], [ [ [ 16.523438, 56.316537 ], [ 16.347656, 56.218923 ], [ 16.347656, 56.607885 ], [ 16.699219, 56.897004 ], [ 16.875000, 57.326521 ], [ 17.050781, 57.373938 ], [ 16.523438, 56.316537 ] ] ], [ [ [ 18.720703, 57.751076 ], [ 18.720703, 57.468589 ], [ 18.896484, 57.421294 ], [ 18.632812, 57.373938 ], [ 18.632812, 57.231503 ], [ 18.369141, 57.183902 ], [ 18.281250, 56.944974 ], [ 18.105469, 56.944974 ], [ 18.281250, 57.088515 ], [ 18.017578, 57.279043 ], [ 18.105469, 57.610107 ], [ 18.632812, 57.938183 ], [ 18.720703, 57.844751 ], [ 18.808594, 57.938183 ], [ 18.984375, 57.938183 ], [ 18.984375, 57.984808 ], [ 19.160156, 58.031372 ], [ 19.335938, 57.984808 ], [ 18.984375, 57.891497 ], [ 19.072266, 57.844751 ], [ 18.720703, 57.751076 ] ] ], [ [ [ 11.513672, 57.938183 ], [ 11.425781, 58.077876 ], [ 11.689453, 58.077876 ], [ 11.513672, 57.938183 ] ] ], [ [ [ 18.457031, 59.040555 ], [ 18.281250, 59.040555 ], [ 18.281250, 59.130863 ], [ 18.457031, 59.130863 ], [ 18.457031, 59.040555 ] ] ], [ [ [ 18.720703, 59.534318 ], [ 18.544922, 59.534318 ], [ 18.632812, 59.623325 ], [ 18.720703, 59.623325 ], [ 18.720703, 59.534318 ] ] ], [ [ [ 19.072266, 59.800634 ], [ 18.896484, 59.800634 ], [ 18.896484, 59.888937 ], [ 18.984375, 59.844815 ], [ 18.984375, 59.888937 ], [ 19.072266, 59.888937 ], [ 19.072266, 59.800634 ] ] ], [ [ [ 18.457031, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.500525 ], [ 18.457031, 60.500525 ], [ 18.457031, 60.413852 ] ] ], [ [ [ 20.917969, 63.665760 ], [ 20.742188, 63.665760 ], [ 20.742188, 63.743631 ], [ 20.917969, 63.743631 ], [ 20.917969, 63.665760 ] ] ], [ [ [ 18.632812, 59.355596 ], [ 18.457031, 59.355596 ], [ 18.369141, 59.445075 ], [ 18.632812, 59.355596 ] ] ], [ [ [ 18.193359, 59.445075 ], [ 18.281250, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.193359, 59.445075 ] ] ], [ [ [ 18.193359, 59.445075 ], [ 18.105469, 59.445075 ], [ 18.193359, 59.489726 ], [ 18.193359, 59.445075 ] ] ], [ [ [ 17.402344, 61.773123 ], [ 17.490234, 61.648162 ], [ 17.314453, 61.731526 ], [ 17.402344, 61.773123 ] ] ], [ [ [ 23.027344, 65.730626 ], [ 23.027344, 65.694476 ], [ 22.851562, 65.694476 ], [ 22.851562, 65.766727 ], [ 22.939453, 65.766727 ], [ 23.027344, 65.730626 ] ] ], [ [ [ 20.302734, 63.743631 ], [ 20.302734, 63.665760 ], [ 20.214844, 63.704722 ], [ 20.214844, 63.665760 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.423828, 63.587675 ], [ 19.335938, 63.548552 ], [ 19.511719, 63.509375 ], [ 19.511719, 63.430860 ], [ 19.335938, 63.509375 ], [ 18.984375, 63.194018 ], [ 18.896484, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.114638 ], [ 18.544922, 63.154355 ], [ 18.457031, 63.035039 ], [ 18.193359, 63.035039 ], [ 18.544922, 62.995158 ], [ 18.369141, 62.995158 ], [ 18.457031, 62.875188 ], [ 18.193359, 62.915233 ], [ 18.193359, 62.794935 ], [ 17.929688, 62.794935 ], [ 18.105469, 62.835089 ], [ 17.841797, 62.835089 ], [ 17.841797, 62.674143 ], [ 18.017578, 62.593341 ], [ 17.841797, 62.633770 ], [ 17.841797, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.666016, 62.471724 ], [ 17.490234, 62.471724 ], [ 17.402344, 62.552857 ], [ 17.314453, 62.512318 ], [ 17.314453, 62.349609 ], [ 17.578125, 62.267923 ], [ 17.314453, 62.021528 ], [ 17.314453, 61.731526 ], [ 17.226562, 61.731526 ], [ 17.050781, 61.648162 ], [ 17.050781, 61.396719 ], [ 17.226562, 61.312452 ], [ 17.050781, 61.312452 ], [ 17.226562, 61.058285 ], [ 17.138672, 60.930432 ], [ 17.314453, 60.802064 ], [ 17.138672, 60.716198 ], [ 17.314453, 60.630102 ], [ 17.578125, 60.673179 ], [ 17.666016, 60.500525 ], [ 17.929688, 60.630102 ], [ 18.105469, 60.413852 ], [ 18.544922, 60.283408 ], [ 18.281250, 60.326948 ], [ 18.369141, 60.196156 ], [ 18.544922, 60.196156 ], [ 18.544922, 60.108670 ], [ 18.720703, 60.152442 ], [ 18.720703, 60.020952 ], [ 18.808594, 60.108670 ], [ 18.984375, 59.888937 ], [ 18.896484, 59.888937 ], [ 18.720703, 59.800634 ], [ 19.072266, 59.756395 ], [ 18.632812, 59.712097 ], [ 18.720703, 59.667741 ], [ 18.632812, 59.623325 ], [ 18.544922, 59.623325 ], [ 18.544922, 59.534318 ], [ 18.369141, 59.489726 ], [ 18.017578, 59.489726 ], [ 18.017578, 59.400365 ], [ 17.929688, 59.445075 ], [ 18.017578, 59.355596 ], [ 18.105469, 59.355596 ], [ 18.105469, 59.445075 ], [ 18.281250, 59.400365 ], [ 18.281250, 59.355596 ], [ 18.193359, 59.355596 ], [ 18.369141, 59.175928 ], [ 18.281250, 59.130863 ], [ 18.017578, 59.040555 ], [ 17.841797, 58.904646 ], [ 17.753906, 58.950008 ], [ 17.753906, 58.995311 ], [ 17.666016, 58.995311 ], [ 17.666016, 58.950008 ], [ 17.753906, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.859224 ], [ 17.402344, 58.904646 ], [ 17.314453, 58.768200 ], [ 16.962891, 58.768200 ], [ 17.138672, 58.722599 ], [ 16.962891, 58.722599 ], [ 16.875000, 58.631217 ], [ 16.171875, 58.676938 ], [ 16.787109, 58.631217 ], [ 16.699219, 58.585436 ], [ 16.875000, 58.493694 ], [ 16.347656, 58.493694 ], [ 16.699219, 58.447733 ], [ 16.611328, 58.309489 ], [ 16.787109, 58.355630 ], [ 16.787109, 58.170702 ], [ 16.611328, 58.217025 ], [ 16.699219, 57.891497 ], [ 16.435547, 58.031372 ], [ 16.611328, 57.797944 ], [ 16.523438, 57.844751 ], [ 16.699219, 57.704147 ], [ 16.523438, 57.751076 ], [ 16.611328, 57.657158 ], [ 16.435547, 57.657158 ], [ 16.611328, 57.562995 ], [ 16.611328, 57.421294 ], [ 16.435547, 57.326521 ], [ 16.523438, 57.088515 ], [ 16.347656, 57.040730 ], [ 16.435547, 56.800878 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 15.820312, 56.121060 ], [ 15.644531, 56.218923 ], [ 14.941406, 56.218923 ], [ 14.677734, 56.170023 ], [ 14.677734, 56.022948 ], [ 14.414062, 56.072035 ], [ 14.150391, 55.875311 ], [ 14.326172, 55.578345 ], [ 14.150391, 55.429013 ], [ 12.919922, 55.429013 ], [ 12.832031, 55.578345 ], [ 13.007812, 55.627996 ], [ 13.007812, 55.776573 ], [ 12.832031, 55.776573 ], [ 12.919922, 55.875311 ], [ 12.744141, 55.924586 ], [ 12.392578, 56.316537 ], [ 12.832031, 56.267761 ], [ 12.568359, 56.462490 ], [ 12.832031, 56.462490 ], [ 12.919922, 56.559482 ], [ 12.304688, 56.944974 ], [ 12.041016, 57.231503 ], [ 12.041016, 57.468589 ], [ 11.865234, 57.373938 ], [ 11.865234, 57.704147 ], [ 11.689453, 57.704147 ], [ 11.777344, 57.797944 ], [ 11.601562, 57.844751 ], [ 11.689453, 58.077876 ], [ 11.777344, 58.124320 ], [ 11.337891, 58.124320 ], [ 11.601562, 58.309489 ], [ 11.425781, 58.263287 ], [ 11.601562, 58.401712 ], [ 11.513672, 58.447733 ], [ 11.425781, 58.355630 ], [ 11.337891, 58.447733 ], [ 11.162109, 58.355630 ], [ 11.250000, 58.676938 ], [ 11.074219, 58.950008 ], [ 11.162109, 59.130863 ], [ 11.337891, 59.130863 ], [ 11.425781, 58.904646 ], [ 11.601562, 58.904646 ], [ 11.689453, 58.995311 ], [ 11.777344, 59.400365 ], [ 11.601562, 59.623325 ], [ 11.865234, 59.712097 ], [ 11.777344, 59.888937 ], [ 12.128906, 59.933000 ], [ 12.480469, 60.108670 ], [ 12.568359, 60.413852 ], [ 12.216797, 61.015725 ], [ 12.656250, 61.058285 ], [ 12.832031, 61.227957 ], [ 12.832031, 61.396719 ], [ 12.128906, 61.731526 ], [ 12.304688, 62.267923 ], [ 12.041016, 62.593341 ], [ 12.041016, 62.955223 ], [ 12.216797, 63.035039 ], [ 11.953125, 63.312683 ], [ 12.216797, 63.509375 ], [ 12.128906, 63.626745 ], [ 12.919922, 64.091408 ], [ 13.886719, 64.014496 ], [ 14.150391, 64.206377 ], [ 14.062500, 64.472794 ], [ 13.623047, 64.586185 ], [ 14.501953, 65.330178 ], [ 14.501953, 66.160511 ], [ 15.029297, 66.160511 ], [ 15.468750, 66.302205 ], [ 15.380859, 66.513260 ], [ 16.083984, 66.964476 ], [ 16.347656, 67.033163 ], [ 16.435547, 67.204032 ], [ 16.083984, 67.441229 ], [ 16.435547, 67.575717 ], [ 16.699219, 67.908619 ], [ 17.226562, 68.106102 ], [ 17.841797, 67.974634 ], [ 17.929688, 68.007571 ], [ 18.105469, 68.171555 ], [ 18.105469, 68.560384 ], [ 18.457031, 68.592487 ], [ 18.632812, 68.496040 ], [ 18.984375, 68.528235 ], [ 19.951172, 68.366801 ], [ 20.214844, 68.496040 ], [ 19.951172, 68.560384 ], [ 20.302734, 68.784144 ], [ 20.302734, 68.911005 ], [ 20.039062, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.917969, 68.974164 ], [ 20.830078, 68.911005 ], [ 21.181641, 68.847665 ], [ 21.445312, 68.688521 ], [ 21.708984, 68.592487 ], [ 21.884766, 68.592487 ], [ 21.972656, 68.496040 ], [ 22.500000, 68.463800 ], [ 23.027344, 68.301905 ], [ 23.115234, 68.138852 ], [ 23.291016, 68.171555 ], [ 23.291016, 68.073305 ], [ 23.642578, 67.974634 ], [ 23.466797, 67.908619 ], [ 23.378906, 67.474922 ], [ 23.730469, 67.441229 ], [ 23.554688, 67.135829 ], [ 23.994141, 66.826520 ], [ 23.818359, 66.757250 ], [ 23.818359, 66.583217 ], [ 23.554688, 66.443107 ], [ 23.642578, 66.231457 ], [ 23.994141, 66.089364 ], [ 24.082031, 65.802776 ], [ 23.994141, 65.838776 ], [ 23.906250, 65.766727 ], [ 23.730469, 65.838776 ], [ 23.378906, 65.838776 ], [ 23.378906, 65.766727 ], [ 23.291016, 65.838776 ], [ 23.115234, 65.838776 ], [ 23.203125, 65.766727 ], [ 23.027344, 65.730626 ], [ 23.027344, 65.766727 ], [ 22.939453, 65.766727 ], [ 22.763672, 65.874725 ], [ 22.587891, 65.910623 ], [ 22.675781, 65.766727 ], [ 22.324219, 65.874725 ], [ 22.324219, 65.766727 ], [ 22.148438, 65.766727 ], [ 22.236328, 65.730626 ], [ 22.148438, 65.658275 ], [ 22.236328, 65.622023 ], [ 22.324219, 65.658275 ], [ 22.412109, 65.549367 ], [ 22.324219, 65.549367 ], [ 22.324219, 65.585720 ], [ 22.236328, 65.585720 ], [ 21.708984, 65.730626 ], [ 22.148438, 65.549367 ], [ 21.796875, 65.549367 ], [ 21.972656, 65.512963 ], [ 21.884766, 65.403445 ], [ 21.445312, 65.403445 ], [ 21.621094, 65.256706 ], [ 21.269531, 65.403445 ], [ 21.181641, 65.366837 ], [ 21.533203, 65.256706 ], [ 21.533203, 65.072130 ], [ 21.357422, 65.035060 ], [ 21.357422, 64.960766 ], [ 21.181641, 64.960766 ], [ 21.093750, 64.848937 ], [ 21.005859, 64.886265 ], [ 21.005859, 64.811557 ], [ 21.269531, 64.811557 ], [ 21.269531, 64.699105 ], [ 21.093750, 64.699105 ], [ 21.269531, 64.586185 ], [ 21.445312, 64.623877 ], [ 21.533203, 64.548440 ], [ 21.445312, 64.548440 ], [ 21.533203, 64.434892 ], [ 21.357422, 64.358931 ], [ 21.269531, 64.396938 ], [ 21.269531, 64.320872 ], [ 21.005859, 64.244595 ], [ 20.654297, 63.821288 ], [ 20.566406, 63.860036 ], [ 20.390625, 63.704722 ], [ 20.302734, 63.743631 ] ], [ [ 17.841797, 62.995158 ], [ 17.666016, 63.035039 ], [ 17.841797, 62.955223 ], [ 17.841797, 62.995158 ] ], [ [ 18.896484, 63.273182 ], [ 18.720703, 63.273182 ], [ 18.896484, 63.233627 ], [ 18.896484, 63.273182 ] ], [ [ 11.865234, 58.355630 ], [ 11.601562, 58.309489 ], [ 11.777344, 58.263287 ], [ 11.865234, 58.355630 ] ], [ [ 17.666016, 58.995311 ], [ 17.753906, 59.130863 ], [ 17.578125, 59.085739 ], [ 17.578125, 58.995311 ], [ 17.666016, 58.995311 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.720703, 59.534318 ], [ 18.544922, 59.534318 ], [ 18.369141, 59.489726 ], [ 18.193359, 59.489726 ], [ 18.281250, 59.445075 ], [ 18.281250, 59.355596 ], [ 18.193359, 59.355596 ], [ 18.369141, 59.175928 ], [ 18.281250, 59.130863 ], [ 18.017578, 59.040555 ], [ 17.841797, 58.904646 ], [ 17.753906, 58.995311 ], [ 17.753906, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.859224 ], [ 17.402344, 58.904646 ], [ 17.314453, 58.768200 ], [ 16.962891, 58.768200 ], [ 17.138672, 58.722599 ], [ 16.962891, 58.722599 ], [ 16.875000, 58.631217 ], [ 16.787109, 58.631217 ], [ 16.699219, 58.585436 ], [ 16.875000, 58.493694 ], [ 16.347656, 58.493694 ], [ 16.699219, 58.447733 ], [ 16.611328, 58.309489 ], [ 16.787109, 58.355630 ], [ 16.787109, 58.170702 ], [ 16.611328, 58.217025 ], [ 16.699219, 57.891497 ], [ 16.435547, 58.031372 ], [ 16.699219, 57.751076 ], [ 16.699219, 57.704147 ], [ 16.523438, 57.751076 ], [ 16.611328, 57.657158 ], [ 16.435547, 57.657158 ], [ 16.611328, 57.562995 ], [ 16.611328, 57.421294 ], [ 16.435547, 57.326521 ], [ 16.523438, 57.088515 ], [ 16.347656, 57.040730 ], [ 16.435547, 56.800878 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 15.820312, 56.121060 ], [ 15.644531, 56.218923 ], [ 14.941406, 56.218923 ], [ 14.677734, 56.170023 ], [ 14.677734, 56.022948 ], [ 14.414062, 56.072035 ], [ 14.150391, 55.875311 ], [ 14.326172, 55.578345 ], [ 14.150391, 55.429013 ], [ 12.919922, 55.429013 ], [ 12.832031, 55.578345 ], [ 13.007812, 55.627996 ], [ 13.007812, 55.776573 ], [ 12.832031, 55.776573 ], [ 12.919922, 55.875311 ], [ 12.744141, 55.924586 ], [ 12.392578, 56.316537 ], [ 12.832031, 56.267761 ], [ 12.568359, 56.462490 ], [ 12.832031, 56.462490 ], [ 12.919922, 56.559482 ], [ 12.304688, 56.944974 ], [ 12.041016, 57.231503 ], [ 12.041016, 57.468589 ], [ 11.865234, 57.373938 ], [ 11.865234, 57.704147 ], [ 11.689453, 57.704147 ], [ 11.777344, 57.797944 ], [ 11.601562, 57.844751 ], [ 11.689453, 58.077876 ], [ 11.777344, 58.124320 ], [ 11.337891, 58.124320 ], [ 11.601562, 58.309489 ], [ 11.425781, 58.263287 ], [ 11.425781, 58.309489 ], [ 11.337891, 58.447733 ], [ 11.162109, 58.355630 ], [ 11.250000, 58.676938 ], [ 11.074219, 58.950008 ], [ 11.162109, 59.130863 ], [ 11.337891, 59.130863 ], [ 11.425781, 58.904646 ], [ 11.601562, 58.904646 ], [ 11.689453, 58.995311 ], [ 11.777344, 59.400365 ], [ 11.601562, 59.623325 ], [ 11.865234, 59.712097 ], [ 11.777344, 59.888937 ], [ 12.128906, 59.933000 ], [ 12.480469, 60.108670 ], [ 12.568359, 60.413852 ], [ 12.216797, 61.015725 ], [ 12.656250, 61.058285 ], [ 12.832031, 61.227957 ], [ 12.832031, 61.396719 ], [ 12.128906, 61.731526 ], [ 12.304688, 62.267923 ], [ 12.041016, 62.593341 ], [ 12.041016, 62.955223 ], [ 12.216797, 63.035039 ], [ 11.953125, 63.312683 ], [ 12.216797, 63.509375 ], [ 12.128906, 63.626745 ], [ 12.919922, 64.091408 ], [ 13.886719, 64.014496 ], [ 14.150391, 64.206377 ], [ 14.062500, 64.472794 ], [ 13.623047, 64.586185 ], [ 14.501953, 65.330178 ], [ 14.501953, 66.160511 ], [ 15.029297, 66.160511 ], [ 15.468750, 66.302205 ], [ 15.380859, 66.513260 ], [ 16.083984, 66.964476 ], [ 16.347656, 67.033163 ], [ 16.435547, 67.204032 ], [ 16.083984, 67.441229 ], [ 16.435547, 67.575717 ], [ 16.699219, 67.908619 ], [ 17.226562, 68.106102 ], [ 17.841797, 67.974634 ], [ 17.929688, 68.007571 ], [ 18.105469, 68.171555 ], [ 18.105469, 68.560384 ], [ 18.457031, 68.592487 ], [ 18.632812, 68.496040 ], [ 18.984375, 68.528235 ], [ 19.951172, 68.366801 ], [ 20.214844, 68.496040 ], [ 19.951172, 68.560384 ], [ 20.302734, 68.784144 ], [ 20.302734, 68.911005 ], [ 20.039062, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.917969, 68.974164 ], [ 20.830078, 68.911005 ], [ 21.181641, 68.847665 ], [ 21.445312, 68.688521 ], [ 21.708984, 68.592487 ], [ 21.884766, 68.592487 ], [ 21.972656, 68.496040 ], [ 22.500000, 68.463800 ], [ 23.027344, 68.301905 ], [ 23.115234, 68.138852 ], [ 23.291016, 68.171555 ], [ 23.291016, 68.073305 ], [ 23.642578, 67.974634 ], [ 23.466797, 67.908619 ], [ 23.378906, 67.474922 ], [ 23.730469, 67.441229 ], [ 23.554688, 67.135829 ], [ 23.994141, 66.826520 ], [ 23.818359, 66.757250 ], [ 23.818359, 66.583217 ], [ 23.554688, 66.443107 ], [ 23.642578, 66.231457 ], [ 23.994141, 66.089364 ], [ 24.082031, 65.802776 ], [ 23.994141, 65.838776 ], [ 23.906250, 65.766727 ], [ 23.730469, 65.838776 ], [ 23.378906, 65.838776 ], [ 23.378906, 65.766727 ], [ 23.291016, 65.838776 ], [ 23.115234, 65.838776 ], [ 23.203125, 65.766727 ], [ 23.027344, 65.730626 ], [ 23.027344, 65.694476 ], [ 22.851562, 65.694476 ], [ 22.851562, 65.766727 ], [ 22.939453, 65.766727 ], [ 22.763672, 65.874725 ], [ 22.587891, 65.910623 ], [ 22.675781, 65.766727 ], [ 22.324219, 65.874725 ], [ 22.324219, 65.766727 ], [ 22.148438, 65.766727 ], [ 22.236328, 65.730626 ], [ 22.148438, 65.658275 ], [ 22.236328, 65.622023 ], [ 22.324219, 65.694476 ], [ 22.412109, 65.549367 ], [ 22.324219, 65.585720 ], [ 22.324219, 65.512963 ], [ 22.148438, 65.512963 ], [ 22.148438, 65.549367 ], [ 21.796875, 65.549367 ], [ 21.972656, 65.512963 ], [ 21.884766, 65.403445 ], [ 21.445312, 65.403445 ], [ 21.621094, 65.256706 ], [ 21.269531, 65.403445 ], [ 21.181641, 65.366837 ], [ 21.533203, 65.256706 ], [ 21.533203, 65.072130 ], [ 21.357422, 65.035060 ], [ 21.357422, 64.960766 ], [ 21.181641, 64.960766 ], [ 21.093750, 64.848937 ], [ 21.005859, 64.886265 ], [ 21.005859, 64.811557 ], [ 21.269531, 64.811557 ], [ 21.269531, 64.699105 ], [ 21.093750, 64.699105 ], [ 21.269531, 64.586185 ], [ 21.445312, 64.623877 ], [ 21.533203, 64.548440 ], [ 21.445312, 64.548440 ], [ 21.533203, 64.434892 ], [ 21.357422, 64.358931 ], [ 21.269531, 64.396938 ], [ 21.269531, 64.320872 ], [ 21.005859, 64.244595 ], [ 20.654297, 63.821288 ], [ 20.566406, 63.860036 ], [ 20.390625, 63.704722 ], [ 20.302734, 63.782486 ], [ 20.302734, 63.665760 ], [ 20.214844, 63.743631 ], [ 20.214844, 63.665760 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.423828, 63.587675 ], [ 19.335938, 63.548552 ], [ 19.511719, 63.509375 ], [ 19.511719, 63.430860 ], [ 19.335938, 63.509375 ], [ 18.984375, 63.194018 ], [ 18.896484, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.114638 ], [ 18.544922, 63.154355 ], [ 18.457031, 63.035039 ], [ 18.193359, 63.035039 ], [ 18.369141, 62.995158 ], [ 18.457031, 62.875188 ], [ 18.193359, 62.915233 ], [ 18.193359, 62.794935 ], [ 17.929688, 62.794935 ], [ 18.105469, 62.835089 ], [ 17.841797, 62.835089 ], [ 17.841797, 62.674143 ], [ 18.017578, 62.593341 ], [ 17.841797, 62.633770 ], [ 17.841797, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.666016, 62.471724 ], [ 17.490234, 62.471724 ], [ 17.402344, 62.552857 ], [ 17.314453, 62.512318 ], [ 17.314453, 62.349609 ], [ 17.578125, 62.267923 ], [ 17.314453, 62.021528 ], [ 17.314453, 61.731526 ], [ 17.226562, 61.731526 ], [ 17.050781, 61.648162 ], [ 17.050781, 61.396719 ], [ 17.226562, 61.312452 ], [ 17.050781, 61.312452 ], [ 17.226562, 61.058285 ], [ 17.138672, 60.930432 ], [ 17.314453, 60.802064 ], [ 17.138672, 60.716198 ], [ 17.314453, 60.630102 ], [ 17.578125, 60.673179 ], [ 17.666016, 60.500525 ], [ 17.929688, 60.630102 ], [ 18.105469, 60.413852 ], [ 18.544922, 60.283408 ], [ 18.281250, 60.326948 ], [ 18.369141, 60.196156 ], [ 18.544922, 60.196156 ], [ 18.544922, 60.108670 ], [ 18.720703, 60.152442 ], [ 18.720703, 60.020952 ], [ 18.808594, 60.152442 ], [ 18.984375, 59.888937 ], [ 19.072266, 59.888937 ], [ 19.072266, 59.800634 ], [ 18.896484, 59.800634 ], [ 19.072266, 59.756395 ], [ 18.632812, 59.712097 ], [ 18.720703, 59.667741 ], [ 18.720703, 59.534318 ] ], [ [ 11.865234, 58.355630 ], [ 11.601562, 58.309489 ], [ 11.777344, 58.263287 ], [ 11.865234, 58.355630 ] ], [ [ 18.017578, 59.355596 ], [ 18.105469, 59.355596 ], [ 18.105469, 59.445075 ], [ 18.193359, 59.489726 ], [ 18.017578, 59.489726 ], [ 18.017578, 59.355596 ] ], [ [ 21.708984, 65.730626 ], [ 22.148438, 65.585720 ], [ 22.236328, 65.585720 ], [ 22.236328, 65.622023 ], [ 21.708984, 65.730626 ] ], [ [ 11.425781, 58.309489 ], [ 11.601562, 58.401712 ], [ 11.513672, 58.493694 ], [ 11.425781, 58.309489 ] ], [ [ 17.578125, 58.995311 ], [ 17.666016, 58.995311 ], [ 17.753906, 59.130863 ], [ 17.578125, 59.085739 ], [ 17.578125, 58.995311 ] ], [ [ 18.896484, 59.800634 ], [ 18.896484, 59.888937 ], [ 18.720703, 59.800634 ], [ 18.896484, 59.800634 ] ], [ [ 18.896484, 63.233627 ], [ 18.896484, 63.273182 ], [ 18.720703, 63.273182 ], [ 18.896484, 63.233627 ] ] ], [ [ [ 16.347656, 56.656226 ], [ 16.699219, 56.897004 ], [ 16.875000, 57.326521 ], [ 17.050781, 57.373938 ], [ 16.523438, 56.316537 ], [ 16.347656, 56.218923 ], [ 16.347656, 56.656226 ] ] ], [ [ [ 19.160156, 58.031372 ], [ 19.335938, 57.984808 ], [ 18.984375, 57.891497 ], [ 19.072266, 57.844751 ], [ 18.720703, 57.751076 ], [ 18.720703, 57.468589 ], [ 18.896484, 57.421294 ], [ 18.632812, 57.373938 ], [ 18.632812, 57.231503 ], [ 18.369141, 57.183902 ], [ 18.281250, 56.944974 ], [ 18.105469, 56.944974 ], [ 18.281250, 57.088515 ], [ 18.017578, 57.279043 ], [ 18.105469, 57.610107 ], [ 18.632812, 57.938183 ], [ 18.720703, 57.844751 ], [ 18.808594, 57.938183 ], [ 18.984375, 57.938183 ], [ 18.984375, 57.984808 ], [ 19.160156, 58.031372 ] ] ], [ [ [ 11.689453, 58.077876 ], [ 11.513672, 57.938183 ], [ 11.425781, 58.077876 ], [ 11.689453, 58.077876 ] ] ], [ [ [ 18.457031, 59.130863 ], [ 18.457031, 59.040555 ], [ 18.281250, 59.040555 ], [ 18.281250, 59.130863 ], [ 18.457031, 59.130863 ] ] ], [ [ [ 18.632812, 59.355596 ], [ 18.457031, 59.355596 ], [ 18.369141, 59.445075 ], [ 18.632812, 59.355596 ] ] ], [ [ [ 18.457031, 60.500525 ], [ 18.457031, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.500525 ], [ 18.457031, 60.500525 ] ] ], [ [ [ 20.917969, 63.743631 ], [ 20.917969, 63.665760 ], [ 20.742188, 63.665760 ], [ 20.742188, 63.743631 ], [ 20.917969, 63.743631 ] ] ], [ [ [ 17.314453, 61.731526 ], [ 17.402344, 61.773123 ], [ 17.490234, 61.648162 ], [ 17.314453, 61.731526 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.126953, 42.423457 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.376809 ], [ 20.478516, 41.178654 ], [ 20.654297, 41.112469 ], [ 20.654297, 40.913513 ], [ 20.830078, 40.979898 ], [ 21.005859, 40.713956 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.513799 ], [ 20.654297, 40.178873 ], [ 20.214844, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.842286 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.511719, 40.178873 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.423828, 40.580585 ], [ 19.248047, 40.713956 ], [ 19.335938, 40.979898 ], [ 19.511719, 40.979898 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.423828, 41.640078 ], [ 19.599609, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.617791 ], [ 19.775391, 42.488302 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.617791 ], [ 19.775391, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.126953, 42.423457 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.376809 ], [ 20.478516, 41.178654 ], [ 20.654297, 41.112469 ], [ 20.654297, 40.913513 ], [ 20.830078, 40.979898 ], [ 21.005859, 40.713956 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.513799 ], [ 20.654297, 40.178873 ], [ 20.214844, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.842286 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.511719, 40.178873 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.423828, 40.580585 ], [ 19.248047, 40.713956 ], [ 19.335938, 40.979898 ], [ 19.511719, 40.979898 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.423828, 41.640078 ], [ 19.599609, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.617791 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.767578, 36.949892 ], [ 7.119141, 36.949892 ], [ 7.207031, 37.090240 ], [ 7.734375, 37.020098 ], [ 7.734375, 36.879621 ], [ 7.998047, 36.879621 ], [ 8.173828, 37.020098 ], [ 8.525391, 36.949892 ], [ 8.613281, 36.879621 ], [ 8.349609, 36.809285 ], [ 8.437500, 36.738884 ], [ 8.085938, 36.527295 ], [ 8.349609, 36.456636 ], [ 8.173828, 35.960223 ], [ 8.349609, 35.317366 ], [ 8.173828, 34.957995 ], [ 8.261719, 34.813803 ], [ 8.173828, 34.597042 ], [ 7.470703, 34.161818 ], [ 7.470703, 33.724340 ], [ 7.646484, 33.284620 ], [ 8.085938, 33.137551 ], [ 8.261719, 32.546813 ], [ 9.052734, 32.026706 ], [ 9.492188, 30.297018 ], [ 9.228516, 30.145127 ], [ 9.492188, 29.840644 ], [ 9.843750, 28.998532 ], [ 9.755859, 28.226970 ], [ 9.931641, 27.839076 ], [ 9.667969, 27.371767 ], [ 9.843750, 26.588527 ], [ 9.404297, 26.431228 ], [ 9.316406, 26.115986 ], [ 10.019531, 25.324167 ], [ 10.019531, 24.846565 ], [ 10.195312, 24.766785 ], [ 10.195312, 24.607069 ], [ 11.513672, 24.367114 ], [ 11.953125, 23.563987 ], [ 7.734375, 21.125498 ], [ 5.888672, 19.559790 ], [ 3.251953, 18.979026 ], [ 3.076172, 19.145168 ], [ 3.076172, 19.311143 ], [ 3.251953, 19.394068 ], [ 3.164062, 19.890723 ], [ 2.373047, 20.055931 ], [ 2.197266, 20.303418 ], [ 1.757812, 20.303418 ], [ 1.582031, 20.632784 ], [ 1.142578, 20.797201 ], [ 1.142578, 21.125498 ], [ 0.791016, 21.371244 ], [ -4.746094, 25.005973 ], [ -8.701172, 27.293689 ], [ -8.701172, 28.767659 ], [ -7.646484, 29.458731 ], [ -6.855469, 29.458731 ], [ -5.800781, 29.688053 ], [ -5.800781, 29.535230 ], [ -5.625000, 29.535230 ], [ -5.361328, 29.916852 ], [ -4.833984, 30.297018 ], [ -4.658203, 30.297018 ], [ -4.306641, 30.600094 ], [ -3.691406, 30.751278 ], [ -3.603516, 30.977609 ], [ -3.867188, 31.203405 ], [ -3.867188, 31.353637 ], [ -3.691406, 31.428663 ], [ -3.603516, 31.728167 ], [ -2.900391, 31.802893 ], [ -2.988281, 32.101190 ], [ -1.230469, 32.101190 ], [ -1.318359, 32.398516 ], [ -1.054688, 32.546813 ], [ -1.494141, 32.768800 ], [ -1.494141, 33.063924 ], [ -1.757812, 33.284620 ], [ -1.669922, 34.089061 ], [ -1.845703, 34.379713 ], [ -1.757812, 34.524661 ], [ -1.933594, 34.597042 ], [ -1.845703, 34.813803 ], [ -2.285156, 35.101934 ], [ -1.933594, 35.101934 ], [ -1.406250, 35.317366 ], [ -1.054688, 35.746512 ], [ -0.615234, 35.746512 ], [ -0.527344, 35.960223 ], [ -0.087891, 35.817813 ], [ 0.263672, 36.244273 ], [ 0.791016, 36.385913 ], [ 0.878906, 36.527295 ], [ 2.285156, 36.668419 ], [ 2.548828, 36.597889 ], [ 2.900391, 36.879621 ], [ 3.603516, 36.809285 ], [ 3.691406, 36.949892 ], [ 4.746094, 36.949892 ], [ 5.009766, 36.879621 ], [ 5.009766, 36.738884 ], [ 5.449219, 36.668419 ], [ 5.625000, 36.879621 ], [ 6.240234, 36.949892 ], [ 6.328125, 37.160317 ], [ 6.767578, 36.949892 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 37.160317 ], [ 6.767578, 36.949892 ], [ 7.119141, 36.949892 ], [ 7.207031, 37.090240 ], [ 7.734375, 37.020098 ], [ 7.734375, 36.879621 ], [ 7.998047, 36.879621 ], [ 8.173828, 37.020098 ], [ 8.525391, 36.949892 ], [ 8.613281, 36.879621 ], [ 8.349609, 36.809285 ], [ 8.437500, 36.738884 ], [ 8.085938, 36.527295 ], [ 8.349609, 36.456636 ], [ 8.173828, 35.960223 ], [ 8.349609, 35.317366 ], [ 8.173828, 34.957995 ], [ 8.261719, 34.813803 ], [ 8.173828, 34.597042 ], [ 7.470703, 34.161818 ], [ 7.470703, 33.724340 ], [ 7.646484, 33.284620 ], [ 8.085938, 33.137551 ], [ 8.261719, 32.546813 ], [ 9.052734, 32.026706 ], [ 9.492188, 30.297018 ], [ 9.228516, 30.145127 ], [ 9.492188, 29.840644 ], [ 9.843750, 28.998532 ], [ 9.755859, 28.226970 ], [ 9.931641, 27.839076 ], [ 9.667969, 27.371767 ], [ 9.843750, 26.588527 ], [ 9.404297, 26.431228 ], [ 9.316406, 26.115986 ], [ 10.019531, 25.324167 ], [ 10.019531, 24.846565 ], [ 10.195312, 24.766785 ], [ 10.195312, 24.607069 ], [ 11.513672, 24.367114 ], [ 11.953125, 23.563987 ], [ 7.734375, 21.125498 ], [ 5.888672, 19.559790 ], [ 3.251953, 18.979026 ], [ 3.076172, 19.145168 ], [ 3.076172, 19.311143 ], [ 3.251953, 19.394068 ], [ 3.164062, 19.890723 ], [ 2.373047, 20.055931 ], [ 2.197266, 20.303418 ], [ 1.757812, 20.303418 ], [ 1.582031, 20.632784 ], [ 1.142578, 20.797201 ], [ 1.142578, 21.125498 ], [ 0.791016, 21.371244 ], [ -4.746094, 25.005973 ], [ -8.701172, 27.293689 ], [ -8.701172, 28.767659 ], [ -7.646484, 29.458731 ], [ -6.855469, 29.458731 ], [ -5.800781, 29.688053 ], [ -5.800781, 29.535230 ], [ -5.625000, 29.535230 ], [ -5.361328, 29.916852 ], [ -4.833984, 30.297018 ], [ -4.658203, 30.297018 ], [ -4.306641, 30.600094 ], [ -3.691406, 30.751278 ], [ -3.603516, 30.977609 ], [ -3.867188, 31.203405 ], [ -3.867188, 31.353637 ], [ -3.691406, 31.428663 ], [ -3.603516, 31.728167 ], [ -2.900391, 31.802893 ], [ -2.988281, 32.101190 ], [ -1.230469, 32.101190 ], [ -1.318359, 32.398516 ], [ -1.054688, 32.546813 ], [ -1.494141, 32.768800 ], [ -1.494141, 33.063924 ], [ -1.757812, 33.284620 ], [ -1.669922, 34.089061 ], [ -1.845703, 34.379713 ], [ -1.757812, 34.524661 ], [ -1.933594, 34.597042 ], [ -1.845703, 34.813803 ], [ -2.285156, 35.101934 ], [ -1.933594, 35.101934 ], [ -1.406250, 35.317366 ], [ -1.054688, 35.746512 ], [ -0.615234, 35.746512 ], [ -0.527344, 35.960223 ], [ -0.087891, 35.817813 ], [ 0.263672, 36.244273 ], [ 0.791016, 36.385913 ], [ 0.878906, 36.527295 ], [ 2.285156, 36.668419 ], [ 2.548828, 36.597889 ], [ 2.900391, 36.879621 ], [ 3.603516, 36.809285 ], [ 3.691406, 36.949892 ], [ 4.746094, 36.949892 ], [ 5.009766, 36.879621 ], [ 5.009766, 36.738884 ], [ 5.449219, 36.668419 ], [ 5.625000, 36.879621 ], [ 6.240234, 36.949892 ], [ 6.328125, 37.160317 ] ] ] } } ] } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json index 76d2d1f..6f06400 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json @@ -12,4013 +12,4013 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ] ] ], [ [ [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ] ] ], [ [ [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ] ] ], [ [ [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ] ] ], [ [ [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ] ] ], [ [ [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.554498 ], [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ] ] ], [ [ [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ] ] ], [ [ [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ] ] ], [ [ [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ] ] ], [ [ [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ] ] ], [ [ [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ] ] ], [ [ [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ] ] ], [ [ [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ] ] ], [ [ [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.730469, 63.743631 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ], [ [ [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ] ] ], [ [ [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.865234, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ] ] ], [ [ [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ] ] ], [ [ [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ] ] ], [ [ [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ] ] ], [ [ [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ] ] ], [ [ [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.818359, 63.782486 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ] ] ], [ [ [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ] ] ], [ [ [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ] ] ], [ [ [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -70.664062, 41.508577 ], [ -71.191406, 41.508577 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.322266, 39.027719 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.947266, 32.101190 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.273714 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ] ] ], [ [ [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.631217 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ] ] ], [ [ [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ] ] ], [ [ [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ] ] ], [ [ [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ] ] ], [ [ [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ], [ [ [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -70.664062, 41.508577 ], [ -71.191406, 41.508577 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.322266, 39.027719 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.947266, 32.101190 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.273714 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ] ] ], [ [ [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.585436 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ] ] ], [ [ [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ] ] ], [ [ [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ] ] ], [ [ [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.873047, 32.546813 ], [ -111.093750, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -105.117188, 30.675715 ], [ -104.501953, 29.611670 ], [ -103.974609, 29.305561 ], [ -103.183594, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.840644 ], [ -100.986328, 29.382175 ], [ -100.195312, 28.149503 ], [ -99.580078, 27.605671 ], [ -99.052734, 26.431228 ], [ -97.558594, 25.878994 ], [ -97.207031, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.512557 ], [ -97.734375, 21.943046 ], [ -97.470703, 21.453069 ], [ -97.207031, 20.715015 ], [ -96.591797, 19.973349 ], [ -96.328125, 19.394068 ], [ -95.976562, 18.895893 ], [ -94.921875, 18.562947 ], [ -94.482422, 18.145852 ], [ -91.494141, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.615234, 19.890723 ], [ -90.527344, 20.715015 ], [ -90.351562, 21.043491 ], [ -88.593750, 21.534847 ], [ -87.099609, 21.616579 ], [ -86.835938, 21.371244 ], [ -86.923828, 20.879343 ], [ -87.451172, 20.303418 ], [ -87.626953, 19.725342 ], [ -87.451172, 19.476950 ], [ -87.890625, 18.312811 ], [ -88.154297, 18.562947 ], [ -88.505859, 18.562947 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.062312 ], [ -89.208984, 17.811456 ], [ -91.054688, 17.895114 ], [ -91.054688, 17.308688 ], [ -91.494141, 17.308688 ], [ -90.439453, 16.467695 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.114553 ], [ -92.285156, 14.604847 ], [ -93.427734, 15.623037 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.591797, 15.707663 ], [ -100.898438, 17.224758 ], [ -101.953125, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.974609, 18.812718 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.468750, 20.550509 ], [ -105.556641, 20.879343 ], [ -105.292969, 21.125498 ], [ -105.292969, 21.453069 ], [ -106.083984, 22.836946 ], [ -106.962891, 23.805450 ], [ -107.929688, 24.607069 ], [ -108.457031, 25.244696 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.878994 ], [ -109.335938, 26.509905 ], [ -109.863281, 26.745610 ], [ -110.478516, 27.215556 ], [ -110.654297, 27.916767 ], [ -111.181641, 27.994401 ], [ -112.236328, 28.998532 ], [ -112.324219, 29.305561 ], [ -112.851562, 30.069094 ], [ -113.203125, 30.826781 ], [ -113.203125, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.257812, 31.578535 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.221102 ], [ -113.291016, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -112.763672, 27.839076 ], [ -112.324219, 27.215556 ], [ -111.621094, 26.667096 ], [ -111.357422, 25.799891 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.511719, 23.241346 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.483401 ], [ -111.005859, 24.046464 ], [ -112.236328, 24.766785 ], [ -112.236328, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.824071 ], [ -113.642578, 26.667096 ], [ -113.906250, 26.902477 ], [ -114.521484, 27.215556 ], [ -115.136719, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.257812, 28.149503 ], [ -114.169922, 28.613459 ], [ -114.960938, 29.305561 ], [ -115.576172, 29.611670 ], [ -117.158203, 32.546813 ], [ -114.785156, 32.768800 ], [ -114.873047, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.785156, 32.768800 ], [ -114.873047, 32.546813 ], [ -111.093750, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -105.117188, 30.675715 ], [ -104.501953, 29.611670 ], [ -103.974609, 29.305561 ], [ -103.183594, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.840644 ], [ -100.986328, 29.382175 ], [ -100.195312, 28.149503 ], [ -99.580078, 27.605671 ], [ -99.052734, 26.431228 ], [ -97.558594, 25.878994 ], [ -97.207031, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.512557 ], [ -97.734375, 21.943046 ], [ -97.470703, 21.453069 ], [ -97.207031, 20.715015 ], [ -96.591797, 19.973349 ], [ -96.328125, 19.394068 ], [ -95.976562, 18.895893 ], [ -94.921875, 18.562947 ], [ -94.482422, 18.145852 ], [ -91.494141, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.615234, 19.890723 ], [ -90.527344, 20.715015 ], [ -90.351562, 21.043491 ], [ -88.593750, 21.534847 ], [ -87.099609, 21.616579 ], [ -86.835938, 21.371244 ], [ -86.923828, 20.879343 ], [ -87.451172, 20.303418 ], [ -87.626953, 19.725342 ], [ -87.451172, 19.476950 ], [ -87.890625, 18.312811 ], [ -88.154297, 18.562947 ], [ -88.505859, 18.562947 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.062312 ], [ -89.208984, 17.811456 ], [ -91.054688, 17.895114 ], [ -91.054688, 17.308688 ], [ -91.494141, 17.308688 ], [ -90.439453, 16.467695 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.114553 ], [ -92.285156, 14.604847 ], [ -93.427734, 15.623037 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.591797, 15.707663 ], [ -100.898438, 17.224758 ], [ -101.953125, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.974609, 18.812718 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.468750, 20.550509 ], [ -105.556641, 20.879343 ], [ -105.292969, 21.125498 ], [ -105.292969, 21.453069 ], [ -106.083984, 22.836946 ], [ -106.962891, 23.805450 ], [ -107.929688, 24.607069 ], [ -108.457031, 25.244696 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.878994 ], [ -109.335938, 26.509905 ], [ -109.863281, 26.745610 ], [ -110.478516, 27.215556 ], [ -110.654297, 27.916767 ], [ -111.181641, 27.994401 ], [ -112.236328, 28.998532 ], [ -112.324219, 29.305561 ], [ -112.851562, 30.069094 ], [ -113.203125, 30.826781 ], [ -113.203125, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.257812, 31.578535 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.221102 ], [ -113.291016, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -112.763672, 27.839076 ], [ -112.324219, 27.215556 ], [ -111.621094, 26.667096 ], [ -111.357422, 25.799891 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.511719, 23.241346 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.483401 ], [ -111.005859, 24.046464 ], [ -112.236328, 24.766785 ], [ -112.236328, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.824071 ], [ -113.642578, 26.667096 ], [ -113.906250, 26.902477 ], [ -114.521484, 27.215556 ], [ -115.136719, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.257812, 28.149503 ], [ -114.169922, 28.613459 ], [ -114.960938, 29.305561 ], [ -115.576172, 29.611670 ], [ -117.158203, 32.546813 ], [ -114.785156, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.208984, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.792254 ], [ -89.208984, 15.114553 ], [ -89.208984, 14.689881 ], [ -90.175781, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.318359, 14.008696 ], [ -92.285156, 14.604847 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.284185 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.439453, 16.467695 ], [ -91.494141, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.895114 ], [ -89.208984, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.054688, 17.895114 ], [ -89.208984, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.792254 ], [ -89.208984, 15.114553 ], [ -89.208984, 14.689881 ], [ -90.175781, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.318359, 14.008696 ], [ -92.285156, 14.604847 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.284185 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.439453, 16.467695 ], [ -91.494141, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.895114 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.607422, 24.367114 ], [ -77.607422, 23.805450 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ], [ -77.607422, 24.367114 ] ] ], [ [ [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ] ] ], [ [ [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.958984, 25.244696 ], [ -77.607422, 24.367114 ], [ -77.607422, 23.805450 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ] ] ], [ [ [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ] ] ], [ [ [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.154297, 18.396230 ], [ -88.417969, 16.551962 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.208984, 17.811456 ], [ -89.033203, 18.062312 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.562947 ], [ -88.154297, 18.396230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.505859, 18.562947 ], [ -88.154297, 18.396230 ], [ -88.417969, 16.551962 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.208984, 17.811456 ], [ -89.033203, 18.062312 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.349548 ], [ -88.505859, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.838080 ], [ -87.802734, 13.410994 ], [ -87.978516, 13.154376 ], [ -88.505859, 13.239945 ], [ -89.824219, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.384766, 14.434680 ], [ -89.121094, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -89.121094, 14.349548 ], [ -88.505859, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.838080 ], [ -87.802734, 13.410994 ], [ -87.978516, 13.154376 ], [ -88.505859, 13.239945 ], [ -89.824219, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.384766, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.876809 ], [ -83.232422, 15.029686 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.689881 ], [ -84.990234, 14.859850 ], [ -85.166016, 14.434680 ], [ -85.869141, 13.838080 ], [ -86.132812, 14.093957 ], [ -86.396484, 13.838080 ], [ -86.835938, 13.838080 ], [ -86.748047, 13.325485 ], [ -86.923828, 13.325485 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.539062, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.802734, 13.838080 ], [ -87.890625, 13.923404 ], [ -88.505859, 13.923404 ], [ -89.121094, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.208984, 14.689881 ], [ -89.208984, 15.114553 ], [ -88.242188, 15.792254 ], [ -87.978516, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ], [ -85.517578, 15.961329 ], [ -84.990234, 16.045813 ], [ -84.375000, 15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 16.045813 ], [ -84.375000, 15.876809 ], [ -83.232422, 15.029686 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.689881 ], [ -84.990234, 14.859850 ], [ -85.166016, 14.434680 ], [ -85.869141, 13.838080 ], [ -86.132812, 14.093957 ], [ -86.396484, 13.838080 ], [ -86.835938, 13.838080 ], [ -86.748047, 13.325485 ], [ -86.923828, 13.325485 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.539062, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.802734, 13.838080 ], [ -87.890625, 13.923404 ], [ -88.505859, 13.923404 ], [ -89.121094, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.208984, 14.689881 ], [ -89.208984, 15.114553 ], [ -88.242188, 15.792254 ], [ -87.978516, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ], [ -85.517578, 15.961329 ], [ -84.990234, 16.045813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.935547, 10.746969 ], [ -84.726562, 11.092166 ], [ -84.990234, 11.005904 ], [ -85.605469, 11.264612 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -86.923828, 13.325485 ], [ -86.748047, 13.325485 ], [ -86.835938, 13.838080 ], [ -86.396484, 13.838080 ], [ -86.132812, 14.093957 ], [ -85.869141, 13.838080 ], [ -85.166016, 14.434680 ], [ -84.990234, 14.859850 ], [ -84.462891, 14.689881 ], [ -83.496094, 15.029686 ], [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.935547, 10.746969 ], [ -84.726562, 11.092166 ], [ -84.990234, 11.005904 ], [ -85.605469, 11.264612 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -86.923828, 13.325485 ], [ -86.748047, 13.325485 ], [ -86.835938, 13.838080 ], [ -86.396484, 13.838080 ], [ -86.132812, 14.093957 ], [ -85.869141, 13.838080 ], [ -85.166016, 14.434680 ], [ -84.990234, 14.859850 ], [ -84.462891, 14.689881 ], [ -83.496094, 15.029686 ], [ -83.232422, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.683594, 23.160563 ], [ -79.716797, 22.836946 ], [ -79.365234, 22.431340 ], [ -78.398438, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.673828, 21.043491 ], [ -75.673828, 20.797201 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.355469, 20.055931 ], [ -74.970703, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.715015 ], [ -78.222656, 20.797201 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.365234, 21.616579 ], [ -80.244141, 21.861499 ], [ -80.595703, 22.105999 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.755921 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.111328, 21.943046 ], [ -84.550781, 21.861499 ], [ -84.990234, 21.943046 ], [ -84.462891, 22.268764 ], [ -84.287109, 22.593726 ], [ -83.847656, 22.836946 ], [ -82.353516, 23.241346 ], [ -80.683594, 23.160563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.353516, 23.241346 ], [ -80.683594, 23.160563 ], [ -79.716797, 22.836946 ], [ -79.365234, 22.431340 ], [ -78.398438, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.673828, 21.043491 ], [ -75.673828, 20.797201 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.355469, 20.055931 ], [ -74.970703, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.715015 ], [ -78.222656, 20.797201 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.365234, 21.616579 ], [ -80.244141, 21.861499 ], [ -80.595703, 22.105999 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.755921 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.111328, 21.943046 ], [ -84.550781, 21.861499 ], [ -84.990234, 21.943046 ], [ -84.462891, 22.268764 ], [ -84.287109, 22.593726 ], [ -83.847656, 22.836946 ], [ -82.353516, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 11.005904 ], [ -84.726562, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 11.005904 ], [ -83.408203, 10.401378 ], [ -82.617188, 9.622414 ], [ -82.968750, 9.535749 ], [ -82.968750, 9.102097 ], [ -82.792969, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.583984, 8.494105 ], [ -83.759766, 8.667918 ], [ -83.671875, 9.102097 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -84.990234, 10.141932 ], [ -84.990234, 9.882275 ], [ -85.166016, 9.622414 ], [ -85.341797, 9.882275 ], [ -85.693359, 9.968851 ], [ -85.869141, 10.141932 ], [ -85.693359, 10.833306 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.264612 ], [ -84.990234, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.264612 ], [ -84.990234, 11.005904 ], [ -84.726562, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 11.005904 ], [ -83.408203, 10.401378 ], [ -82.617188, 9.622414 ], [ -82.968750, 9.535749 ], [ -82.968750, 9.102097 ], [ -82.792969, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.583984, 8.494105 ], [ -83.759766, 8.667918 ], [ -83.671875, 9.102097 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -84.990234, 10.141932 ], [ -84.990234, 9.882275 ], [ -85.166016, 9.622414 ], [ -85.341797, 9.882275 ], [ -85.693359, 9.968851 ], [ -85.869141, 10.141932 ], [ -85.693359, 10.833306 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.264612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.134766, 9.275622 ], [ -77.431641, 8.754795 ], [ -77.519531, 8.581021 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.710992 ], [ -77.783203, 7.710992 ], [ -77.958984, 7.275292 ], [ -78.222656, 7.536764 ], [ -78.486328, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.486328, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.189453, 9.015302 ], [ -79.628906, 9.015302 ], [ -79.804688, 8.667918 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.146243 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -80.947266, 7.275292 ], [ -81.123047, 7.885147 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.320212 ], [ -82.880859, 8.146243 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.841651 ], [ -82.792969, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.535749 ], [ -82.617188, 9.622414 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.015302 ], [ -81.738281, 9.102097 ], [ -81.474609, 8.841651 ], [ -81.035156, 8.928487 ], [ -79.980469, 9.362353 ], [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ], [ -77.431641, 8.754795 ], [ -77.519531, 8.581021 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.710992 ], [ -77.783203, 7.710992 ], [ -77.958984, 7.275292 ], [ -78.222656, 7.536764 ], [ -78.486328, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.486328, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.189453, 9.015302 ], [ -79.628906, 9.015302 ], [ -79.804688, 8.667918 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.146243 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -80.947266, 7.275292 ], [ -81.123047, 7.885147 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.320212 ], [ -82.880859, 8.146243 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.841651 ], [ -82.792969, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.535749 ], [ -82.617188, 9.622414 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.015302 ], [ -81.738281, 9.102097 ], [ -81.474609, 8.841651 ], [ -81.035156, 8.928487 ], [ -79.980469, 9.362353 ], [ -79.628906, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.904297, 18.479609 ], [ -76.376953, 18.229351 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.255859, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.398438, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.562947 ], [ -76.904297, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.607422, 18.562947 ], [ -76.904297, 18.479609 ], [ -76.376953, 18.229351 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.255859, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.398438, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.396230 ], [ -71.718750, 18.062312 ], [ -72.421875, 18.229351 ], [ -73.476562, 18.229351 ], [ -74.003906, 18.062312 ], [ -74.531250, 18.396230 ], [ -74.443359, 18.729502 ], [ -72.773438, 18.479609 ], [ -72.421875, 18.729502 ], [ -72.861328, 19.145168 ], [ -72.861328, 19.559790 ], [ -73.476562, 19.642588 ], [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.396230 ], [ -71.718750, 18.062312 ], [ -72.421875, 18.229351 ], [ -73.476562, 18.229351 ], [ -74.003906, 18.062312 ], [ -74.531250, 18.396230 ], [ -74.443359, 18.729502 ], [ -72.773438, 18.479609 ], [ -72.421875, 18.729502 ], [ -72.861328, 19.145168 ], [ -72.861328, 19.559790 ], [ -73.476562, 19.642588 ], [ -73.212891, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.725342 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.394068 ], [ -69.257812, 19.062118 ], [ -68.818359, 19.062118 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.479609 ], [ -69.960938, 18.479609 ], [ -70.136719, 18.312811 ], [ -70.576172, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.015625, 18.312811 ], [ -71.455078, 17.644022 ], [ -71.718750, 17.811456 ], [ -71.718750, 18.396230 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.725342 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.394068 ], [ -69.257812, 19.062118 ], [ -68.818359, 19.062118 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.479609 ], [ -69.960938, 18.479609 ], [ -70.136719, 18.312811 ], [ -70.576172, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.015625, 18.312811 ], [ -71.455078, 17.644022 ], [ -71.718750, 17.811456 ], [ -71.718750, 18.396230 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.455078, 12.382928 ], [ -71.191406, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.178402 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.795678 ], [ -73.388672, 9.188870 ], [ -72.861328, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.509766, 8.407168 ], [ -72.509766, 7.449624 ], [ -72.246094, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.751953, 7.100893 ], [ -70.136719, 7.013668 ], [ -69.433594, 6.140555 ], [ -67.763672, 6.315299 ], [ -67.412109, 6.140555 ], [ -67.763672, 5.266008 ], [ -67.851562, 4.565474 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.899153 ], [ -67.236328, 2.284551 ], [ -66.884766, 1.318243 ], [ -67.148438, 1.142502 ], [ -67.324219, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.939453, 1.757537 ], [ -69.873047, 1.757537 ], [ -69.873047, 1.142502 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.615223 ], [ -69.521484, 0.790990 ], [ -70.048828, 0.615223 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.054628 ], [ -69.960938, -4.214943 ], [ -70.400391, -3.688855 ], [ -70.751953, -3.688855 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.196727 ], [ -71.455078, -2.284551 ], [ -71.806641, -2.108899 ], [ -72.333984, -2.372369 ], [ -73.125000, -2.284551 ], [ -73.740234, -1.230374 ], [ -74.179688, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, 0.000000 ], [ -75.410156, -0.087891 ], [ -76.376953, 0.439449 ], [ -76.640625, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.878872 ], [ -77.871094, 0.878872 ], [ -78.925781, 1.406109 ], [ -79.013672, 1.757537 ], [ -78.662109, 1.845384 ], [ -78.750000, 2.284551 ], [ -78.486328, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.740675 ], [ -77.607422, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.751896 ], [ -77.958984, 7.275292 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.710992 ], [ -77.255859, 7.972198 ], [ -77.519531, 8.581021 ], [ -77.431641, 8.754795 ], [ -76.904297, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.761719, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.970703, 11.092166 ], [ -74.355469, 11.178402 ], [ -74.267578, 11.350797 ], [ -73.476562, 11.264612 ], [ -72.246094, 12.039321 ], [ -71.806641, 12.468760 ], [ -71.455078, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.806641, 12.468760 ], [ -71.455078, 12.382928 ], [ -71.191406, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.178402 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.795678 ], [ -73.388672, 9.188870 ], [ -72.861328, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.509766, 8.407168 ], [ -72.509766, 7.449624 ], [ -72.246094, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.751953, 7.100893 ], [ -70.136719, 7.013668 ], [ -69.433594, 6.140555 ], [ -67.763672, 6.315299 ], [ -67.412109, 6.140555 ], [ -67.763672, 5.266008 ], [ -67.851562, 4.565474 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.899153 ], [ -67.236328, 2.284551 ], [ -66.884766, 1.318243 ], [ -67.148438, 1.142502 ], [ -67.324219, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.939453, 1.757537 ], [ -69.873047, 1.757537 ], [ -69.873047, 1.142502 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.615223 ], [ -69.521484, 0.790990 ], [ -70.048828, 0.615223 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.054628 ], [ -69.960938, -4.214943 ], [ -70.400391, -3.688855 ], [ -70.751953, -3.688855 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.196727 ], [ -71.455078, -2.284551 ], [ -71.806641, -2.108899 ], [ -72.333984, -2.372369 ], [ -73.125000, -2.284551 ], [ -73.740234, -1.230374 ], [ -74.179688, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, 0.000000 ], [ -75.410156, -0.087891 ], [ -76.376953, 0.439449 ], [ -76.640625, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.878872 ], [ -77.871094, 0.878872 ], [ -78.925781, 1.406109 ], [ -79.013672, 1.757537 ], [ -78.662109, 1.845384 ], [ -78.750000, 2.284551 ], [ -78.486328, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.740675 ], [ -77.607422, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.751896 ], [ -77.958984, 7.275292 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.710992 ], [ -77.255859, 7.972198 ], [ -77.519531, 8.581021 ], [ -77.431641, 8.754795 ], [ -76.904297, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.761719, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.970703, 11.092166 ], [ -74.355469, 11.178402 ], [ -74.267578, 11.350797 ], [ -73.476562, 11.264612 ], [ -72.246094, 12.039321 ], [ -71.806641, 12.468760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.830078, 18.479609 ], [ -65.654297, 18.229351 ], [ -65.917969, 17.978733 ], [ -67.236328, 17.978733 ], [ -67.324219, 18.396230 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ], [ -65.830078, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.357422, 18.562947 ], [ -65.830078, 18.479609 ], [ -65.654297, 18.229351 ], [ -65.917969, 17.978733 ], [ -67.236328, 17.978733 ], [ -67.324219, 18.396230 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.291016, 10.919618 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.742188, 10.228437 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.908203, 9.449062 ], [ -60.732422, 8.581021 ], [ -60.205078, 8.667918 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.380859, 7.100893 ], [ -61.171875, 6.751896 ], [ -61.171875, 6.315299 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -60.996094, 4.565474 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -64.687500, 4.214943 ], [ -64.863281, 4.127285 ], [ -64.423828, 3.864255 ], [ -64.423828, 3.162456 ], [ -64.335938, 2.547988 ], [ -63.457031, 2.460181 ], [ -63.369141, 2.284551 ], [ -64.160156, 1.933227 ], [ -64.248047, 1.493971 ], [ -65.390625, 1.142502 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.790990 ], [ -66.884766, 1.318243 ], [ -67.236328, 2.284551 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.763672, 5.266008 ], [ -67.412109, 6.140555 ], [ -67.763672, 6.315299 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -70.751953, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.246094, 7.362467 ], [ -72.509766, 7.449624 ], [ -72.509766, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -73.037109, 9.795678 ], [ -72.949219, 10.487812 ], [ -72.246094, 11.178402 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.609193 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.718750, 10.487812 ], [ -72.158203, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.188870 ], [ -71.103516, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.211180 ], [ -69.609375, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.211180 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.291016, 10.919618 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.742188, 10.228437 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.908203, 9.449062 ], [ -60.732422, 8.581021 ], [ -60.205078, 8.667918 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.380859, 7.100893 ], [ -61.171875, 6.751896 ], [ -61.171875, 6.315299 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -60.996094, 4.565474 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -64.687500, 4.214943 ], [ -64.863281, 4.127285 ], [ -64.423828, 3.864255 ], [ -64.423828, 3.162456 ], [ -64.335938, 2.547988 ], [ -63.457031, 2.460181 ], [ -63.369141, 2.284551 ], [ -64.160156, 1.933227 ], [ -64.248047, 1.493971 ], [ -65.390625, 1.142502 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.790990 ], [ -66.884766, 1.318243 ], [ -67.236328, 2.284551 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.763672, 5.266008 ], [ -67.412109, 6.140555 ], [ -67.763672, 6.315299 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -70.751953, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.246094, 7.362467 ], [ -72.509766, 7.449624 ], [ -72.509766, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -73.037109, 9.795678 ], [ -72.949219, 10.487812 ], [ -72.246094, 11.178402 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.609193 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.718750, 10.487812 ], [ -72.158203, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.188870 ], [ -71.103516, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.996094, 10.141932 ], [ -61.787109, 10.055403 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ], [ -61.787109, 10.055403 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, 8.059230 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.216797, 6.053161 ], [ -57.392578, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.919922, 4.653080 ], [ -58.095703, 4.127285 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.216797, 2.811371 ], [ -56.601562, 1.933227 ], [ -57.392578, 2.021065 ], [ -57.744141, 1.757537 ], [ -58.447266, 1.493971 ], [ -58.623047, 1.318243 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.845384 ], [ -60.029297, 2.811371 ], [ -59.853516, 3.688855 ], [ -59.589844, 4.039618 ], [ -59.853516, 4.477856 ], [ -60.117188, 4.653080 ], [ -60.029297, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.820312, 5.266008 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.315299 ], [ -61.171875, 6.751896 ], [ -60.380859, 7.100893 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ], [ -59.150391, 8.059230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.150391, 8.059230 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.216797, 6.053161 ], [ -57.392578, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.919922, 4.653080 ], [ -58.095703, 4.127285 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.216797, 2.811371 ], [ -56.601562, 1.933227 ], [ -57.392578, 2.021065 ], [ -57.744141, 1.757537 ], [ -58.447266, 1.493971 ], [ -58.623047, 1.318243 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.845384 ], [ -60.029297, 2.811371 ], [ -59.853516, 3.688855 ], [ -59.589844, 4.039618 ], [ -59.853516, 4.477856 ], [ -60.117188, 4.653080 ], [ -60.029297, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.820312, 5.266008 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.315299 ], [ -61.171875, 6.751896 ], [ -60.380859, 7.100893 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -55.107422, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.108899 ], [ -56.074219, 1.845384 ], [ -56.601562, 1.933227 ], [ -57.216797, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -58.095703, 4.127285 ], [ -57.919922, 4.653080 ], [ -57.919922, 4.828260 ], [ -57.392578, 5.090944 ], [ -57.216797, 6.053161 ], [ -55.986328, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.107422, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.107422, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -55.107422, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.108899 ], [ -56.074219, 1.845384 ], [ -56.601562, 1.933227 ], [ -57.216797, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -58.095703, 4.127285 ], [ -57.919922, 4.653080 ], [ -57.919922, 4.828260 ], [ -57.392578, 5.090944 ], [ -57.216797, 6.053161 ], [ -55.986328, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.107422, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.622978 ], [ -7.646484, 54.110943 ], [ -7.031250, 54.110943 ], [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ], [ -7.382812, 54.622978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.646484, 55.178868 ], [ -7.382812, 54.622978 ], [ -7.646484, 54.110943 ], [ -7.031250, 54.110943 ], [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.130859, 57.562995 ], [ -3.076172, 57.704147 ], [ -2.021484, 57.704147 ], [ -2.285156, 56.897004 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.673831 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 1.494141, 52.106505 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.548828, 50.513427 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -4.394531, 51.234407 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -5.712891, 56.316537 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.844751 ], [ -5.097656, 58.631217 ], [ -4.218750, 58.585436 ], [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ] ] ], [ [ [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ], [ -7.031250, 54.110943 ], [ -7.646484, 54.110943 ], [ -7.382812, 54.622978 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ], [ -3.076172, 57.704147 ], [ -2.021484, 57.704147 ], [ -2.285156, 56.897004 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.673831 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 1.494141, 52.106505 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.548828, 50.513427 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -4.394531, 51.234407 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -5.712891, 56.316537 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.844751 ], [ -5.097656, 58.631217 ], [ -4.218750, 58.585436 ], [ -3.076172, 58.676938 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ], [ -7.031250, 54.110943 ], [ -7.646484, 54.110943 ], [ -7.382812, 54.622978 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.653080 ], [ -51.679688, 4.214943 ], [ -52.558594, 2.547988 ], [ -52.998047, 2.196727 ], [ -53.437500, 2.108899 ], [ -53.613281, 2.372369 ], [ -53.789062, 2.460181 ], [ -54.140625, 2.108899 ], [ -54.580078, 2.372369 ], [ -54.052734, 3.688855 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 8.701172, 42.682435 ], [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ] ] ], [ [ [ 2.636719, 50.847573 ], [ 3.076172, 50.792047 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 4.746094, 50.007739 ], [ 5.625000, 49.553726 ], [ 5.888672, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.591797, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.382812, 47.635784 ], [ 7.119141, 47.457809 ], [ 6.679688, 47.576526 ], [ 6.767578, 47.338823 ], [ 5.976562, 46.739861 ], [ 5.976562, 46.316584 ], [ 6.416016, 46.437857 ], [ 6.767578, 46.012224 ], [ 6.767578, 45.767523 ], [ 7.031250, 45.336702 ], [ 6.679688, 45.089036 ], [ 6.943359, 44.276671 ], [ 7.470703, 44.150681 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 1.757812, 42.358544 ], [ 0.615234, 42.811522 ], [ 0.263672, 42.617791 ], [ -1.582031, 43.068888 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.285156, 47.100045 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.636719, 50.847573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.653080 ], [ -51.679688, 4.214943 ], [ -52.558594, 2.547988 ], [ -52.998047, 2.196727 ], [ -53.437500, 2.108899 ], [ -53.613281, 2.372369 ], [ -53.789062, 2.460181 ], [ -54.140625, 2.108899 ], [ -54.580078, 2.372369 ], [ -54.052734, 3.688855 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 8.701172, 42.682435 ], [ 9.316406, 43.068888 ] ] ], [ [ [ 2.460938, 51.179343 ], [ 2.636719, 50.847573 ], [ 3.076172, 50.792047 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 4.746094, 50.007739 ], [ 5.625000, 49.553726 ], [ 5.888672, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.591797, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.382812, 47.635784 ], [ 7.119141, 47.457809 ], [ 6.679688, 47.576526 ], [ 6.767578, 47.338823 ], [ 5.976562, 46.739861 ], [ 5.976562, 46.316584 ], [ 6.416016, 46.437857 ], [ 6.767578, 46.012224 ], [ 6.767578, 45.767523 ], [ 7.031250, 45.336702 ], [ 6.679688, 45.089036 ], [ 6.943359, 44.276671 ], [ 7.470703, 44.150681 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 1.757812, 42.358544 ], [ 0.615234, 42.811522 ], [ 0.263672, 42.617791 ], [ -1.582031, 43.068888 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.285156, 47.100045 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 23.402765 ], [ -12.919922, 23.322080 ], [ -13.183594, 22.836946 ], [ -13.007812, 21.371244 ], [ -16.875000, 21.371244 ], [ -17.138672, 21.043491 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.677734, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.974609, 23.725012 ], [ -12.568359, 24.846565 ], [ -12.041016, 25.958045 ], [ -11.953125, 23.402765 ] ] ], [ [ [ -11.777344, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.634766, 27.059126 ], [ -9.755859, 26.902477 ], [ -9.492188, 27.137368 ], [ -8.876953, 27.137368 ], [ -8.876953, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.958045 ], [ -12.041016, 25.958045 ], [ -12.041016, 26.037042 ], [ -11.777344, 26.115986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.041016, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.919922, 23.322080 ], [ -13.183594, 22.836946 ], [ -13.007812, 21.371244 ], [ -16.875000, 21.371244 ], [ -17.138672, 21.043491 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.677734, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.974609, 23.725012 ], [ -12.568359, 24.846565 ], [ -12.041016, 25.958045 ] ] ], [ [ [ -12.041016, 25.958045 ], [ -12.041016, 26.037042 ], [ -11.777344, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.634766, 27.059126 ], [ -9.755859, 26.902477 ], [ -9.492188, 27.137368 ], [ -8.876953, 27.137368 ], [ -8.876953, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.958045 ], [ -12.041016, 25.958045 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 41.836828 ], [ -7.470703, 41.836828 ], [ -7.294922, 41.967659 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.442726 ], [ -6.855469, 41.112469 ], [ -6.943359, 40.380028 ], [ -7.031250, 40.245992 ], [ -7.119141, 39.774769 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.095963 ], [ -7.382812, 38.410558 ], [ -7.031250, 38.134557 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.160317 ], [ -7.910156, 36.879621 ], [ -8.437500, 37.020098 ], [ -8.964844, 36.879621 ], [ -8.789062, 37.718590 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.580078, 38.754083 ], [ -9.492188, 39.436193 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.349609, 42.293564 ], [ -8.085938, 41.836828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.349609, 42.293564 ], [ -8.085938, 41.836828 ], [ -7.470703, 41.836828 ], [ -7.294922, 41.967659 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.442726 ], [ -6.855469, 41.112469 ], [ -6.943359, 40.380028 ], [ -7.031250, 40.245992 ], [ -7.119141, 39.774769 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.095963 ], [ -7.382812, 38.410558 ], [ -7.031250, 38.134557 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.160317 ], [ -7.910156, 36.879621 ], [ -8.437500, 37.020098 ], [ -8.964844, 36.879621 ], [ -8.789062, 37.718590 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.580078, 38.754083 ], [ -9.492188, 39.436193 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.349609, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.582031, 43.068888 ], [ 0.263672, 42.617791 ], [ 0.615234, 42.811522 ], [ 1.757812, 42.358544 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 2.021484, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.713956 ], [ 0.087891, 40.178873 ], [ -0.351562, 39.368279 ], [ 0.087891, 38.754083 ], [ -0.527344, 38.341656 ], [ -0.703125, 37.649034 ], [ -1.494141, 37.509726 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.009766, 36.385913 ], [ -5.449219, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.382812, 38.410558 ], [ -7.119141, 39.095963 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.774769 ], [ -7.031250, 40.245992 ], [ -6.943359, 40.380028 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.967659 ], [ -7.470703, 41.836828 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.582031, 43.068888 ], [ 0.263672, 42.617791 ], [ 0.615234, 42.811522 ], [ 1.757812, 42.358544 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 2.021484, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.713956 ], [ 0.087891, 40.178873 ], [ -0.351562, 39.368279 ], [ 0.087891, 38.754083 ], [ -0.527344, 38.341656 ], [ -0.703125, 37.649034 ], [ -1.494141, 37.509726 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.009766, 36.385913 ], [ -5.449219, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.382812, 38.410558 ], [ -7.119141, 39.095963 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.774769 ], [ -7.031250, 40.245992 ], [ -6.943359, 40.380028 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.967659 ], [ -7.470703, 41.836828 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.658203, 35.389050 ], [ -3.691406, 35.460670 ], [ -2.197266, 35.173808 ], [ -1.845703, 34.597042 ], [ -1.406250, 32.916485 ], [ -1.142578, 32.694866 ], [ -1.318359, 32.324276 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.921875, 30.524413 ], [ -5.273438, 30.069094 ], [ -7.119141, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.876953, 27.683528 ], [ -8.876953, 27.137368 ], [ -9.492188, 27.137368 ], [ -9.755859, 26.902477 ], [ -10.634766, 27.059126 ], [ -11.425781, 26.902477 ], [ -11.777344, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.568359, 24.846565 ], [ -13.974609, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.677734, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.611328, 22.187405 ], [ -16.347656, 22.755921 ], [ -16.347656, 23.079732 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.165173 ], [ -14.853516, 25.641526 ], [ -14.501953, 26.273714 ], [ -13.798828, 26.667096 ], [ -13.183594, 27.683528 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.986328, 28.844674 ], [ -10.458984, 29.152161 ], [ -9.580078, 29.993002 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.620870 ], [ -8.701172, 33.284620 ], [ -6.943359, 34.161818 ], [ -5.976562, 35.817813 ], [ -5.273438, 35.817813 ], [ -4.658203, 35.389050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.817813 ], [ -4.658203, 35.389050 ], [ -3.691406, 35.460670 ], [ -2.197266, 35.173808 ], [ -1.845703, 34.597042 ], [ -1.406250, 32.916485 ], [ -1.142578, 32.694866 ], [ -1.318359, 32.324276 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.921875, 30.524413 ], [ -5.273438, 30.069094 ], [ -7.119141, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.876953, 27.683528 ], [ -8.876953, 27.137368 ], [ -9.492188, 27.137368 ], [ -9.755859, 26.902477 ], [ -10.634766, 27.059126 ], [ -11.425781, 26.902477 ], [ -11.777344, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.568359, 24.846565 ], [ -13.974609, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.677734, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.611328, 22.187405 ], [ -16.347656, 22.755921 ], [ -16.347656, 23.079732 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.165173 ], [ -14.853516, 25.641526 ], [ -14.501953, 26.273714 ], [ -13.798828, 26.667096 ], [ -13.183594, 27.683528 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.986328, 28.844674 ], [ -10.458984, 29.152161 ], [ -9.580078, 29.993002 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.620870 ], [ -8.701172, 33.284620 ], [ -6.943359, 34.161818 ], [ -5.976562, 35.817813 ], [ -5.273438, 35.817813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.447266, 16.045813 ], [ -12.216797, 14.689881 ], [ -11.953125, 13.496473 ], [ -11.601562, 13.154376 ], [ -11.601562, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.568359, 12.382928 ], [ -13.271484, 12.640338 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.468760 ], [ -16.875000, 13.154376 ], [ -15.996094, 13.154376 ], [ -15.205078, 13.581921 ], [ -14.765625, 13.325485 ], [ -14.326172, 13.325485 ], [ -13.886719, 13.581921 ], [ -14.062500, 13.838080 ], [ -14.765625, 13.667338 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.644531, 13.667338 ], [ -16.787109, 13.667338 ], [ -17.138672, 14.434680 ], [ -17.666016, 14.774883 ], [ -17.226562, 14.944785 ], [ -16.523438, 16.214675 ], [ -16.171875, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.205078, 16.636192 ], [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ], [ -12.216797, 14.689881 ], [ -11.953125, 13.496473 ], [ -11.601562, 13.154376 ], [ -11.601562, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.568359, 12.382928 ], [ -13.271484, 12.640338 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.468760 ], [ -16.875000, 13.154376 ], [ -15.996094, 13.154376 ], [ -15.205078, 13.581921 ], [ -14.765625, 13.325485 ], [ -14.326172, 13.325485 ], [ -13.886719, 13.581921 ], [ -14.062500, 13.838080 ], [ -14.765625, 13.667338 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.644531, 13.667338 ], [ -16.787109, 13.667338 ], [ -17.138672, 14.434680 ], [ -17.666016, 14.774883 ], [ -17.226562, 14.944785 ], [ -16.523438, 16.214675 ], [ -16.171875, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.205078, 16.636192 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.765625, 13.667338 ], [ -14.062500, 13.838080 ], [ -13.886719, 13.581921 ], [ -14.326172, 13.325485 ], [ -14.765625, 13.325485 ], [ -15.205078, 13.581921 ], [ -15.996094, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.787109, 13.667338 ], [ -15.644531, 13.667338 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ], [ -14.765625, 13.667338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -14.765625, 13.667338 ], [ -14.062500, 13.838080 ], [ -13.886719, 13.581921 ], [ -14.326172, 13.325485 ], [ -14.765625, 13.325485 ], [ -15.205078, 13.581921 ], [ -15.996094, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.787109, 13.667338 ], [ -15.644531, 13.667338 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.886719, 12.211180 ], [ -13.798828, 11.867351 ], [ -14.414062, 11.523088 ], [ -14.765625, 11.609193 ], [ -15.205078, 11.092166 ], [ -15.732422, 11.523088 ], [ -16.171875, 11.609193 ], [ -16.699219, 12.468760 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.640338 ], [ -13.886719, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.640338 ], [ -13.886719, 12.211180 ], [ -13.798828, 11.867351 ], [ -14.414062, 11.523088 ], [ -14.765625, 11.609193 ], [ -15.205078, 11.092166 ], [ -15.732422, 11.523088 ], [ -16.171875, 11.609193 ], [ -16.699219, 12.468760 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.568359, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.601562, 12.468760 ], [ -11.513672, 12.125264 ], [ -11.074219, 12.297068 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.404297, 12.382928 ], [ -9.140625, 12.382928 ], [ -8.437500, 11.436955 ], [ -8.613281, 11.178402 ], [ -8.701172, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.349609, 10.833306 ], [ -8.349609, 10.574222 ], [ -8.085938, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -7.910156, 8.581021 ], [ -8.349609, 8.320212 ], [ -8.349609, 7.710992 ], [ -8.525391, 7.710992 ], [ -8.789062, 7.798079 ], [ -8.964844, 7.362467 ], [ -9.228516, 7.362467 ], [ -9.404297, 7.536764 ], [ -9.404297, 7.972198 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.407168 ], [ -10.634766, 9.275622 ], [ -11.162109, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.216797, 9.882275 ], [ -12.480469, 9.882275 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -14.150391, 9.968851 ], [ -14.589844, 10.228437 ], [ -14.765625, 10.660608 ], [ -15.205078, 11.092166 ], [ -14.765625, 11.609193 ], [ -14.414062, 11.523088 ], [ -13.798828, 11.867351 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.640338 ], [ -13.271484, 12.640338 ], [ -12.568359, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.271484, 12.640338 ], [ -12.568359, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.601562, 12.468760 ], [ -11.513672, 12.125264 ], [ -11.074219, 12.297068 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.404297, 12.382928 ], [ -9.140625, 12.382928 ], [ -8.437500, 11.436955 ], [ -8.613281, 11.178402 ], [ -8.701172, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.349609, 10.833306 ], [ -8.349609, 10.574222 ], [ -8.085938, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -7.910156, 8.581021 ], [ -8.349609, 8.320212 ], [ -8.349609, 7.710992 ], [ -8.525391, 7.710992 ], [ -8.789062, 7.798079 ], [ -8.964844, 7.362467 ], [ -9.228516, 7.362467 ], [ -9.404297, 7.536764 ], [ -9.404297, 7.972198 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.407168 ], [ -10.634766, 9.275622 ], [ -11.162109, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.216797, 9.882275 ], [ -12.480469, 9.882275 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -14.150391, 9.968851 ], [ -14.589844, 10.228437 ], [ -14.765625, 10.660608 ], [ -15.205078, 11.092166 ], [ -14.765625, 11.609193 ], [ -14.414062, 11.523088 ], [ -13.798828, 11.867351 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.640338 ], [ -13.271484, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.634766, 9.275622 ], [ -10.546875, 8.407168 ], [ -10.283203, 8.407168 ], [ -11.162109, 7.449624 ], [ -11.513672, 6.839170 ], [ -12.480469, 7.275292 ], [ -13.007812, 7.885147 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.480469, 9.882275 ], [ -12.216797, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.162109, 10.055403 ], [ -10.634766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.162109, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.546875, 8.407168 ], [ -10.283203, 8.407168 ], [ -11.162109, 7.449624 ], [ -11.513672, 6.839170 ], [ -12.480469, 7.275292 ], [ -13.007812, 7.885147 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.480469, 9.882275 ], [ -12.216797, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.162109, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.005973 ], [ -6.503906, 25.005973 ], [ -5.537109, 16.383391 ], [ -5.361328, 16.214675 ], [ -5.625000, 15.538376 ], [ -9.580078, 15.538376 ], [ -9.755859, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.722656, 15.199386 ], [ -11.425781, 15.453680 ], [ -11.689453, 15.453680 ], [ -11.865234, 14.859850 ], [ -12.216797, 14.689881 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -15.205078, 16.636192 ], [ -15.644531, 16.383391 ], [ -16.171875, 16.467695 ], [ -16.523438, 16.214675 ], [ -16.611328, 16.720385 ], [ -16.347656, 17.224758 ], [ -16.171875, 18.145852 ], [ -16.435547, 19.642588 ], [ -16.347656, 20.138470 ], [ -16.611328, 20.632784 ], [ -17.138672, 21.043491 ], [ -16.875000, 21.371244 ], [ -13.007812, 21.371244 ], [ -13.183594, 22.836946 ], [ -12.919922, 23.322080 ], [ -11.953125, 23.402765 ], [ -12.041016, 25.958045 ], [ -8.701172, 25.958045 ], [ -8.701172, 27.449790 ], [ -5.009766, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.449790 ], [ -5.009766, 25.005973 ], [ -6.503906, 25.005973 ], [ -5.537109, 16.383391 ], [ -5.361328, 16.214675 ], [ -5.625000, 15.538376 ], [ -9.580078, 15.538376 ], [ -9.755859, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.722656, 15.199386 ], [ -11.425781, 15.453680 ], [ -11.689453, 15.453680 ], [ -11.865234, 14.859850 ], [ -12.216797, 14.689881 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -15.205078, 16.636192 ], [ -15.644531, 16.383391 ], [ -16.171875, 16.467695 ], [ -16.523438, 16.214675 ], [ -16.611328, 16.720385 ], [ -16.347656, 17.224758 ], [ -16.171875, 18.145852 ], [ -16.435547, 19.642588 ], [ -16.347656, 20.138470 ], [ -16.611328, 20.632784 ], [ -17.138672, 21.043491 ], [ -16.875000, 21.371244 ], [ -13.007812, 21.371244 ], [ -13.183594, 22.836946 ], [ -12.919922, 23.322080 ], [ -11.953125, 23.402765 ], [ -12.041016, 25.958045 ], [ -8.701172, 25.958045 ], [ -8.701172, 27.449790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 20.632784 ], [ 2.021484, 20.220966 ], [ 3.076172, 19.725342 ], [ 3.076172, 19.062118 ], [ 4.218750, 19.228177 ], [ 4.218750, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.623037 ], [ 1.318359, 15.368950 ], [ 0.966797, 15.029686 ], [ -0.351562, 14.944785 ], [ -0.527344, 15.199386 ], [ -1.142578, 15.029686 ], [ -2.021484, 14.604847 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.164062, 13.581921 ], [ -3.603516, 13.410994 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.482422, 12.554564 ], [ -5.273438, 11.781325 ], [ -5.273438, 11.436955 ], [ -5.537109, 11.005904 ], [ -5.449219, 10.401378 ], [ -6.064453, 10.141932 ], [ -6.240234, 10.574222 ], [ -6.679688, 10.487812 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.228437 ], [ -7.910156, 10.314919 ], [ -8.085938, 10.228437 ], [ -8.349609, 10.574222 ], [ -8.349609, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.701172, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.436955 ], [ -9.140625, 12.382928 ], [ -9.404297, 12.382928 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -11.074219, 12.297068 ], [ -11.513672, 12.125264 ], [ -11.601562, 13.154376 ], [ -11.953125, 13.496473 ], [ -12.216797, 14.689881 ], [ -11.865234, 14.859850 ], [ -11.689453, 15.453680 ], [ -11.425781, 15.453680 ], [ -10.722656, 15.199386 ], [ -10.107422, 15.368950 ], [ -9.755859, 15.284185 ], [ -9.580078, 15.538376 ], [ -5.625000, 15.538376 ], [ -5.361328, 16.214675 ], [ -5.537109, 16.383391 ], [ -6.503906, 25.005973 ], [ -5.009766, 25.005973 ], [ 1.757812, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.005973 ], [ 1.757812, 20.632784 ], [ 2.021484, 20.220966 ], [ 3.076172, 19.725342 ], [ 3.076172, 19.062118 ], [ 4.218750, 19.228177 ], [ 4.218750, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.623037 ], [ 1.318359, 15.368950 ], [ 0.966797, 15.029686 ], [ -0.351562, 14.944785 ], [ -0.527344, 15.199386 ], [ -1.142578, 15.029686 ], [ -2.021484, 14.604847 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.164062, 13.581921 ], [ -3.603516, 13.410994 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.482422, 12.554564 ], [ -5.273438, 11.781325 ], [ -5.273438, 11.436955 ], [ -5.537109, 11.005904 ], [ -5.449219, 10.401378 ], [ -6.064453, 10.141932 ], [ -6.240234, 10.574222 ], [ -6.679688, 10.487812 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.228437 ], [ -7.910156, 10.314919 ], [ -8.085938, 10.228437 ], [ -8.349609, 10.574222 ], [ -8.349609, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.701172, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.436955 ], [ -9.140625, 12.382928 ], [ -9.404297, 12.382928 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -11.074219, 12.297068 ], [ -11.513672, 12.125264 ], [ -11.601562, 13.154376 ], [ -11.953125, 13.496473 ], [ -12.216797, 14.689881 ], [ -11.865234, 14.859850 ], [ -11.689453, 15.453680 ], [ -11.425781, 15.453680 ], [ -10.722656, 15.199386 ], [ -10.107422, 15.368950 ], [ -9.755859, 15.284185 ], [ -9.580078, 15.538376 ], [ -5.625000, 15.538376 ], [ -5.361328, 16.214675 ], [ -5.537109, 16.383391 ], [ -6.503906, 25.005973 ], [ -5.009766, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.351562, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.008696 ], [ 0.966797, 13.410994 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.609193 ], [ 1.230469, 11.178402 ], [ 0.878906, 11.005904 ], [ -0.439453, 11.178402 ], [ -0.791016, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -3.515625, 9.968851 ], [ -4.042969, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.833984, 9.882275 ], [ -5.009766, 10.228437 ], [ -5.449219, 10.401378 ], [ -5.537109, 11.005904 ], [ -5.273438, 11.436955 ], [ -5.273438, 11.781325 ], [ -4.482422, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.603516, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.604847 ], [ -1.142578, 15.029686 ], [ -0.527344, 15.199386 ], [ -0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.199386 ], [ -0.351562, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.008696 ], [ 0.966797, 13.410994 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.609193 ], [ 1.230469, 11.178402 ], [ 0.878906, 11.005904 ], [ -0.439453, 11.178402 ], [ -0.791016, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -3.515625, 9.968851 ], [ -4.042969, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.833984, 9.882275 ], [ -5.009766, 10.228437 ], [ -5.449219, 10.401378 ], [ -5.537109, 11.005904 ], [ -5.273438, 11.436955 ], [ -5.273438, 11.781325 ], [ -4.482422, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.603516, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.604847 ], [ -1.142578, 15.029686 ], [ -0.527344, 15.199386 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.404297, 7.972198 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.789062, 7.798079 ], [ -8.525391, 7.710992 ], [ -8.437500, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.646484, 5.790897 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.052734, 4.915833 ], [ -11.513672, 6.839170 ], [ -11.162109, 7.449624 ], [ -10.283203, 8.407168 ], [ -9.755859, 8.581021 ], [ -9.404297, 7.972198 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.404297, 7.972198 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.789062, 7.798079 ], [ -8.525391, 7.710992 ], [ -8.437500, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.646484, 5.790897 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.052734, 4.915833 ], [ -11.513672, 6.839170 ], [ -11.162109, 7.449624 ], [ -10.283203, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.141932 ], [ -5.449219, 10.401378 ], [ -5.009766, 10.228437 ], [ -4.833984, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.042969, 9.882275 ], [ -3.515625, 9.968851 ], [ -2.900391, 9.709057 ], [ -2.636719, 8.233237 ], [ -2.988281, 7.449624 ], [ -3.251953, 6.315299 ], [ -2.812500, 5.441022 ], [ -2.900391, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.888672, 5.003394 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.790897 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.437500, 6.926427 ], [ -8.525391, 7.449624 ], [ -8.525391, 7.710992 ], [ -8.349609, 7.710992 ], [ -8.349609, 8.320212 ], [ -7.910156, 8.581021 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.228437 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.240234, 10.574222 ], [ -6.064453, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.574222 ], [ -6.064453, 10.141932 ], [ -5.449219, 10.401378 ], [ -5.009766, 10.228437 ], [ -4.833984, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.042969, 9.882275 ], [ -3.515625, 9.968851 ], [ -2.900391, 9.709057 ], [ -2.636719, 8.233237 ], [ -2.988281, 7.449624 ], [ -3.251953, 6.315299 ], [ -2.812500, 5.441022 ], [ -2.900391, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.888672, 5.003394 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.790897 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.437500, 6.926427 ], [ -8.525391, 7.449624 ], [ -8.525391, 7.710992 ], [ -8.349609, 7.710992 ], [ -8.349609, 8.320212 ], [ -7.910156, 8.581021 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.228437 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.240234, 10.574222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.092166 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.754795 ], [ 0.703125, 8.320212 ], [ 0.439453, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -2.021484, 4.740675 ], [ -2.900391, 5.003394 ], [ -2.812500, 5.441022 ], [ -3.251953, 6.315299 ], [ -2.988281, 7.449624 ], [ -2.636719, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.988281, 11.005904 ], [ -0.791016, 11.005904 ], [ -0.439453, 11.178402 ], [ 0.000000, 11.092166 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.178402 ], [ 0.000000, 11.092166 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.754795 ], [ 0.703125, 8.320212 ], [ 0.439453, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -2.021484, 4.740675 ], [ -2.900391, 5.003394 ], [ -2.812500, 5.441022 ], [ -3.251953, 6.315299 ], [ -2.988281, 7.449624 ], [ -2.636719, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.988281, 11.005904 ], [ -0.791016, 11.005904 ], [ -0.439453, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.179688, -0.966751 ], [ -73.740234, -1.230374 ], [ -73.125000, -2.284551 ], [ -72.333984, -2.372369 ], [ -71.806641, -2.108899 ], [ -71.455078, -2.284551 ], [ -70.839844, -2.196727 ], [ -70.048828, -2.723583 ], [ -70.751953, -3.688855 ], [ -70.400391, -3.688855 ], [ -69.960938, -4.214943 ], [ -70.839844, -4.214943 ], [ -71.015625, -4.390229 ], [ -71.806641, -4.565474 ], [ -72.949219, -5.266008 ], [ -73.037109, -5.703448 ], [ -73.300781, -6.053161 ], [ -73.125000, -6.577303 ], [ -73.740234, -6.839170 ], [ -73.740234, -7.275292 ], [ -74.003906, -7.449624 ], [ -73.652344, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.300781, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.246094, -9.968851 ], [ -71.367188, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.609375, -10.919618 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.994141, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.455078, -17.727759 ], [ -71.542969, -17.308688 ], [ -73.476562, -16.299051 ], [ -76.025391, -14.604847 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.496473 ], [ -77.167969, -12.211180 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -80.947266, -5.615986 ], [ -81.474609, -4.653080 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -80.244141, -3.776559 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.390229 ], [ -79.277344, -4.915833 ], [ -78.662109, -4.477856 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.547988 ], [ -75.585938, -1.493971 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.087891 ], [ -75.146484, 0.000000 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, 0.000000 ], [ -74.443359, -0.527336 ], [ -74.179688, -0.966751 ], [ -73.740234, -1.230374 ], [ -73.125000, -2.284551 ], [ -72.333984, -2.372369 ], [ -71.806641, -2.108899 ], [ -71.455078, -2.284551 ], [ -70.839844, -2.196727 ], [ -70.048828, -2.723583 ], [ -70.751953, -3.688855 ], [ -70.400391, -3.688855 ], [ -69.960938, -4.214943 ], [ -70.839844, -4.214943 ], [ -71.015625, -4.390229 ], [ -71.806641, -4.565474 ], [ -72.949219, -5.266008 ], [ -73.037109, -5.703448 ], [ -73.300781, -6.053161 ], [ -73.125000, -6.577303 ], [ -73.740234, -6.839170 ], [ -73.740234, -7.275292 ], [ -74.003906, -7.449624 ], [ -73.652344, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.300781, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.246094, -9.968851 ], [ -71.367188, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.609375, -10.919618 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.994141, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.455078, -17.727759 ], [ -71.542969, -17.308688 ], [ -73.476562, -16.299051 ], [ -76.025391, -14.604847 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.496473 ], [ -77.167969, -12.211180 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -80.947266, -5.615986 ], [ -81.474609, -4.653080 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -80.244141, -3.776559 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.390229 ], [ -79.277344, -4.915833 ], [ -78.662109, -4.477856 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.547988 ], [ -75.585938, -1.493971 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.087891 ], [ -75.146484, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.589701 ], [ -68.642578, -54.826008 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.203125, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.028022 ], [ -73.300781, -53.956086 ], [ -74.707031, -52.802761 ], [ -73.916016, -53.014783 ], [ -72.509766, -53.696706 ], [ -71.191406, -54.059388 ], [ -70.664062, -53.592505 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -69.169922, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.818359, -20.303418 ], [ -68.291016, -21.453069 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.674847 ], [ -67.060547, -22.917923 ], [ -67.412109, -23.966176 ], [ -68.466797, -24.447150 ], [ -68.466797, -26.115986 ], [ -68.642578, -26.431228 ], [ -68.378906, -26.824071 ], [ -69.082031, -27.449790 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.305561 ], [ -69.960938, -30.297018 ], [ -70.576172, -31.353637 ], [ -70.136719, -33.063924 ], [ -69.873047, -33.211116 ], [ -69.873047, -34.161818 ], [ -70.400391, -35.101934 ], [ -70.400391, -35.960223 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.509726 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.982422, -40.780541 ], [ -71.806641, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.982422, -43.389082 ], [ -71.542969, -43.771094 ], [ -71.806641, -44.150681 ], [ -71.367188, -44.402392 ], [ -71.279297, -44.777936 ], [ -71.718750, -44.964798 ], [ -71.630859, -45.521744 ], [ -71.982422, -46.860191 ], [ -72.509766, -47.694974 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.476562, -49.267805 ], [ -73.388672, -50.345460 ], [ -73.037109, -50.736455 ], [ -72.333984, -50.625073 ], [ -72.333984, -51.399206 ], [ -71.982422, -51.998410 ], [ -69.521484, -52.106505 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.488046 ], [ -73.740234, -52.802761 ], [ -74.970703, -52.214339 ], [ -75.322266, -51.618017 ], [ -75.058594, -51.013755 ], [ -75.498047, -50.345460 ], [ -75.673828, -48.632909 ], [ -75.234375, -47.694974 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.740234, -39.909736 ], [ -73.300781, -39.232253 ], [ -73.564453, -38.272689 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.894531, -33.870416 ], [ -71.455078, -32.398516 ], [ -71.718750, -30.902225 ], [ -71.455078, -30.069094 ], [ -71.542969, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ], [ -69.169922, -18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ], [ -68.642578, -54.826008 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.203125, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.028022 ], [ -73.300781, -53.956086 ], [ -74.707031, -52.802761 ], [ -73.916016, -53.014783 ], [ -72.509766, -53.696706 ], [ -71.191406, -54.059388 ], [ -70.664062, -53.592505 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.169922, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.818359, -20.303418 ], [ -68.291016, -21.453069 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.674847 ], [ -67.060547, -22.917923 ], [ -67.412109, -23.966176 ], [ -68.466797, -24.447150 ], [ -68.466797, -26.115986 ], [ -68.642578, -26.431228 ], [ -68.378906, -26.824071 ], [ -69.082031, -27.449790 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.305561 ], [ -69.960938, -30.297018 ], [ -70.576172, -31.353637 ], [ -70.136719, -33.063924 ], [ -69.873047, -33.211116 ], [ -69.873047, -34.161818 ], [ -70.400391, -35.101934 ], [ -70.400391, -35.960223 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.509726 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.982422, -40.780541 ], [ -71.806641, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.982422, -43.389082 ], [ -71.542969, -43.771094 ], [ -71.806641, -44.150681 ], [ -71.367188, -44.402392 ], [ -71.279297, -44.777936 ], [ -71.718750, -44.964798 ], [ -71.630859, -45.521744 ], [ -71.982422, -46.860191 ], [ -72.509766, -47.694974 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.476562, -49.267805 ], [ -73.388672, -50.345460 ], [ -73.037109, -50.736455 ], [ -72.333984, -50.625073 ], [ -72.333984, -51.399206 ], [ -71.982422, -51.998410 ], [ -69.521484, -52.106505 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.488046 ], [ -73.740234, -52.802761 ], [ -74.970703, -52.214339 ], [ -75.322266, -51.618017 ], [ -75.058594, -51.013755 ], [ -75.498047, -50.345460 ], [ -75.673828, -48.632909 ], [ -75.234375, -47.694974 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.740234, -39.909736 ], [ -73.300781, -39.232253 ], [ -73.564453, -38.272689 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.894531, -33.870416 ], [ -71.455078, -32.398516 ], [ -71.718750, -30.902225 ], [ -71.455078, -30.069094 ], [ -71.542969, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478516, -11.523088 ], [ -64.335938, -12.382928 ], [ -63.281250, -12.554564 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.154376 ], [ -61.787109, -13.410994 ], [ -61.171875, -13.410994 ], [ -60.556641, -13.752725 ], [ -60.292969, -15.029686 ], [ -60.556641, -15.029686 ], [ -60.205078, -16.214675 ], [ -58.271484, -16.299051 ], [ -58.447266, -16.804541 ], [ -58.359375, -17.224758 ], [ -57.744141, -17.476432 ], [ -57.568359, -18.145852 ], [ -57.744141, -18.895893 ], [ -58.007812, -19.394068 ], [ -57.919922, -19.890723 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -59.150391, -19.311143 ], [ -60.117188, -19.311143 ], [ -61.787109, -19.559790 ], [ -62.314453, -20.468189 ], [ -62.314453, -21.043491 ], [ -62.753906, -22.187405 ], [ -62.929688, -22.024546 ], [ -64.072266, -21.943046 ], [ -64.423828, -22.755921 ], [ -65.039062, -22.024546 ], [ -66.357422, -21.779905 ], [ -67.148438, -22.674847 ], [ -67.851562, -22.836946 ], [ -68.291016, -21.453069 ], [ -68.818359, -20.303418 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.169922, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.994141, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.730469, -12.554564 ], [ -69.609375, -10.919618 ], [ -68.291016, -11.005904 ], [ -68.115234, -10.660608 ], [ -66.708984, -9.882275 ], [ -65.390625, -9.709057 ], [ -65.478516, -11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.709057 ], [ -65.478516, -11.523088 ], [ -64.335938, -12.382928 ], [ -63.281250, -12.554564 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.154376 ], [ -61.787109, -13.410994 ], [ -61.171875, -13.410994 ], [ -60.556641, -13.752725 ], [ -60.292969, -15.029686 ], [ -60.556641, -15.029686 ], [ -60.205078, -16.214675 ], [ -58.271484, -16.299051 ], [ -58.447266, -16.804541 ], [ -58.359375, -17.224758 ], [ -57.744141, -17.476432 ], [ -57.568359, -18.145852 ], [ -57.744141, -18.895893 ], [ -58.007812, -19.394068 ], [ -57.919922, -19.890723 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -59.150391, -19.311143 ], [ -60.117188, -19.311143 ], [ -61.787109, -19.559790 ], [ -62.314453, -20.468189 ], [ -62.314453, -21.043491 ], [ -62.753906, -22.187405 ], [ -62.929688, -22.024546 ], [ -64.072266, -21.943046 ], [ -64.423828, -22.755921 ], [ -65.039062, -22.024546 ], [ -66.357422, -21.779905 ], [ -67.148438, -22.674847 ], [ -67.851562, -22.836946 ], [ -68.291016, -21.453069 ], [ -68.818359, -20.303418 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.169922, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.994141, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.730469, -12.554564 ], [ -69.609375, -10.919618 ], [ -68.291016, -11.005904 ], [ -68.115234, -10.660608 ], [ -66.708984, -9.882275 ], [ -65.390625, -9.709057 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.029297, 5.090944 ], [ -60.117188, 4.653080 ], [ -59.853516, 4.477856 ], [ -59.589844, 4.039618 ], [ -59.853516, 3.688855 ], [ -60.029297, 2.811371 ], [ -59.677734, 1.845384 ], [ -59.062500, 1.318243 ], [ -58.623047, 1.318243 ], [ -58.447266, 1.493971 ], [ -57.744141, 1.757537 ], [ -57.392578, 2.021065 ], [ -56.074219, 1.845384 ], [ -55.986328, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.140625, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.613281, 2.372369 ], [ -53.437500, 2.108899 ], [ -52.998047, 2.196727 ], [ -52.558594, 2.547988 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.009766, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.472656, -2.108899 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.811371 ], [ -38.583984, -3.688855 ], [ -37.265625, -4.740675 ], [ -36.474609, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.244141, -5.441022 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.125264 ], [ -38.496094, -12.983148 ], [ -38.759766, -12.983148 ], [ -39.023438, -13.752725 ], [ -38.935547, -15.623037 ], [ -39.287109, -17.811456 ], [ -39.638672, -18.229351 ], [ -39.814453, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.861499 ], [ -41.835938, -22.350076 ], [ -42.011719, -22.917923 ], [ -43.154297, -22.917923 ], [ -44.648438, -23.322080 ], [ -45.439453, -23.725012 ], [ -46.494141, -24.046464 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.691406, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.955078, -28.613459 ], [ -49.658203, -29.152161 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.175612 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.701172, -33.137551 ], [ -53.261719, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.826781 ], [ -57.041016, -30.069094 ], [ -57.656250, -30.145127 ], [ -55.195312, -27.839076 ], [ -53.701172, -26.902477 ], [ -53.701172, -26.115986 ], [ -54.140625, -25.482951 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.527135 ], [ -54.316406, -23.966176 ], [ -54.667969, -23.805450 ], [ -55.107422, -23.966176 ], [ -55.458984, -23.885838 ], [ -55.634766, -22.593726 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.024546 ], [ -56.953125, -22.268764 ], [ -58.007812, -22.024546 ], [ -57.919922, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.919922, -19.890723 ], [ -58.007812, -19.394068 ], [ -57.744141, -18.895893 ], [ -57.568359, -18.145852 ], [ -57.744141, -17.476432 ], [ -58.359375, -17.224758 ], [ -58.447266, -16.804541 ], [ -58.271484, -16.299051 ], [ -60.205078, -16.214675 ], [ -60.556641, -15.029686 ], [ -60.292969, -15.029686 ], [ -60.556641, -13.752725 ], [ -61.171875, -13.410994 ], [ -61.787109, -13.410994 ], [ -62.138672, -13.154376 ], [ -62.841797, -12.983148 ], [ -63.281250, -12.554564 ], [ -64.335938, -12.382928 ], [ -65.478516, -11.523088 ], [ -65.390625, -9.709057 ], [ -66.708984, -9.882275 ], [ -68.115234, -10.660608 ], [ -68.291016, -11.005904 ], [ -69.609375, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.367188, -10.055403 ], [ -72.246094, -9.968851 ], [ -72.597656, -9.449062 ], [ -73.300781, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.652344, -8.407168 ], [ -74.003906, -7.449624 ], [ -73.740234, -7.275292 ], [ -73.740234, -6.839170 ], [ -73.125000, -6.577303 ], [ -73.300781, -6.053161 ], [ -73.037109, -5.703448 ], [ -72.949219, -5.266008 ], [ -71.806641, -4.565474 ], [ -71.015625, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.433594, -1.054628 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.615223 ], [ -69.521484, 0.790990 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.054628 ], [ -69.873047, 1.142502 ], [ -69.873047, 1.757537 ], [ -67.939453, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.324219, 1.757537 ], [ -67.148438, 1.142502 ], [ -66.884766, 1.318243 ], [ -66.357422, 0.790990 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.142502 ], [ -64.248047, 1.493971 ], [ -64.160156, 1.933227 ], [ -63.369141, 2.284551 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.547988 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.864255 ], [ -64.863281, 4.127285 ], [ -64.687500, 4.214943 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -60.996094, 4.565474 ], [ -60.644531, 5.003394 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ], [ -60.029297, 5.090944 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.292969, 5.266008 ], [ -60.029297, 5.090944 ], [ -60.117188, 4.653080 ], [ -59.853516, 4.477856 ], [ -59.589844, 4.039618 ], [ -59.853516, 3.688855 ], [ -60.029297, 2.811371 ], [ -59.677734, 1.845384 ], [ -59.062500, 1.318243 ], [ -58.623047, 1.318243 ], [ -58.447266, 1.493971 ], [ -57.744141, 1.757537 ], [ -57.392578, 2.021065 ], [ -56.074219, 1.845384 ], [ -55.986328, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.140625, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.613281, 2.372369 ], [ -53.437500, 2.108899 ], [ -52.998047, 2.196727 ], [ -52.558594, 2.547988 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.009766, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.472656, -2.108899 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.811371 ], [ -38.583984, -3.688855 ], [ -37.265625, -4.740675 ], [ -36.474609, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.244141, -5.441022 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.125264 ], [ -38.496094, -12.983148 ], [ -38.759766, -12.983148 ], [ -39.023438, -13.752725 ], [ -38.935547, -15.623037 ], [ -39.287109, -17.811456 ], [ -39.638672, -18.229351 ], [ -39.814453, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.861499 ], [ -41.835938, -22.350076 ], [ -42.011719, -22.917923 ], [ -43.154297, -22.917923 ], [ -44.648438, -23.322080 ], [ -45.439453, -23.725012 ], [ -46.494141, -24.046464 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.691406, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.955078, -28.613459 ], [ -49.658203, -29.152161 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.175612 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.701172, -33.137551 ], [ -53.261719, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.826781 ], [ -57.041016, -30.069094 ], [ -57.656250, -30.145127 ], [ -55.195312, -27.839076 ], [ -53.701172, -26.902477 ], [ -53.701172, -26.115986 ], [ -54.140625, -25.482951 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.527135 ], [ -54.316406, -23.966176 ], [ -54.667969, -23.805450 ], [ -55.107422, -23.966176 ], [ -55.458984, -23.885838 ], [ -55.634766, -22.593726 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.024546 ], [ -56.953125, -22.268764 ], [ -58.007812, -22.024546 ], [ -57.919922, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.919922, -19.890723 ], [ -58.007812, -19.394068 ], [ -57.744141, -18.895893 ], [ -57.568359, -18.145852 ], [ -57.744141, -17.476432 ], [ -58.359375, -17.224758 ], [ -58.447266, -16.804541 ], [ -58.271484, -16.299051 ], [ -60.205078, -16.214675 ], [ -60.556641, -15.029686 ], [ -60.292969, -15.029686 ], [ -60.556641, -13.752725 ], [ -61.171875, -13.410994 ], [ -61.787109, -13.410994 ], [ -62.138672, -13.154376 ], [ -62.841797, -12.983148 ], [ -63.281250, -12.554564 ], [ -64.335938, -12.382928 ], [ -65.478516, -11.523088 ], [ -65.390625, -9.709057 ], [ -66.708984, -9.882275 ], [ -68.115234, -10.660608 ], [ -68.291016, -11.005904 ], [ -69.609375, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.367188, -10.055403 ], [ -72.246094, -9.968851 ], [ -72.597656, -9.449062 ], [ -73.300781, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.652344, -8.407168 ], [ -74.003906, -7.449624 ], [ -73.740234, -7.275292 ], [ -73.740234, -6.839170 ], [ -73.125000, -6.577303 ], [ -73.300781, -6.053161 ], [ -73.037109, -5.703448 ], [ -72.949219, -5.266008 ], [ -71.806641, -4.565474 ], [ -71.015625, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.433594, -1.054628 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.615223 ], [ -69.521484, 0.790990 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.054628 ], [ -69.873047, 1.142502 ], [ -69.873047, 1.757537 ], [ -67.939453, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.324219, 1.757537 ], [ -67.148438, 1.142502 ], [ -66.884766, 1.318243 ], [ -66.357422, 0.790990 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.142502 ], [ -64.248047, 1.493971 ], [ -64.160156, 1.933227 ], [ -63.369141, 2.284551 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.547988 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.864255 ], [ -64.863281, 4.127285 ], [ -64.687500, 4.214943 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -60.996094, 4.565474 ], [ -60.644531, 5.003394 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.183594, -19.808054 ], [ -58.183594, -20.138470 ], [ -57.919922, -20.715015 ], [ -58.007812, -22.024546 ], [ -56.953125, -22.268764 ], [ -56.513672, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.593726 ], [ -55.458984, -23.885838 ], [ -55.107422, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -23.966176 ], [ -54.316406, -24.527135 ], [ -54.843750, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.656250, -25.562265 ], [ -57.832031, -25.085599 ], [ -58.886719, -24.766785 ], [ -60.029297, -23.966176 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -62.314453, -21.043491 ], [ -62.314453, -20.468189 ], [ -61.787109, -19.559790 ], [ -60.117188, -19.311143 ], [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.138470 ], [ -57.919922, -20.715015 ], [ -58.007812, -22.024546 ], [ -56.953125, -22.268764 ], [ -56.513672, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.593726 ], [ -55.458984, -23.885838 ], [ -55.107422, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -23.966176 ], [ -54.316406, -24.527135 ], [ -54.843750, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.656250, -25.562265 ], [ -57.832031, -25.085599 ], [ -58.886719, -24.766785 ], [ -60.029297, -23.966176 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -62.314453, -21.043491 ], [ -62.314453, -20.468189 ], [ -61.787109, -19.559790 ], [ -60.117188, -19.311143 ], [ -59.150391, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.763672, -53.800651 ], [ -66.533203, -54.418930 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -66.533203, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.826008 ], [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ] ] ], [ [ [ -65.039062, -22.024546 ], [ -64.423828, -22.755921 ], [ -64.072266, -21.943046 ], [ -62.929688, -22.024546 ], [ -60.908203, -23.805450 ], [ -60.029297, -23.966176 ], [ -58.886719, -24.766785 ], [ -57.832031, -25.085599 ], [ -57.656250, -25.562265 ], [ -58.623047, -27.059126 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.843750, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.482951 ], [ -53.701172, -26.115986 ], [ -53.701172, -26.902477 ], [ -55.195312, -27.839076 ], [ -57.656250, -30.145127 ], [ -58.183594, -32.026706 ], [ -58.183594, -32.990236 ], [ -58.359375, -33.211116 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.865234, -36.879621 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -61.259766, -38.891033 ], [ -62.402344, -38.822591 ], [ -62.138672, -39.368279 ], [ -62.402344, -40.111689 ], [ -62.226562, -40.647304 ], [ -62.753906, -40.979898 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -64.423828, -42.811522 ], [ -65.214844, -43.452919 ], [ -65.390625, -44.465151 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -66.621094, -46.980252 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -68.730469, -50.233152 ], [ -69.169922, -50.680797 ], [ -68.818359, -51.727028 ], [ -68.203125, -52.321911 ], [ -69.521484, -52.106505 ], [ -71.982422, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.625073 ], [ -73.037109, -50.736455 ], [ -73.388672, -50.345460 ], [ -73.476562, -49.267805 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.509766, -47.694974 ], [ -71.982422, -46.860191 ], [ -71.630859, -45.521744 ], [ -71.718750, -44.964798 ], [ -71.279297, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.150681 ], [ -71.542969, -43.771094 ], [ -71.982422, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.806641, -42.032974 ], [ -71.982422, -40.780541 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.191406, -37.509726 ], [ -71.191406, -36.597889 ], [ -70.400391, -35.960223 ], [ -70.400391, -35.101934 ], [ -69.873047, -34.161818 ], [ -69.873047, -33.211116 ], [ -70.136719, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.297018 ], [ -70.048828, -29.305561 ], [ -69.697266, -28.459033 ], [ -69.082031, -27.449790 ], [ -68.378906, -26.824071 ], [ -68.642578, -26.431228 ], [ -68.466797, -26.115986 ], [ -68.466797, -24.447150 ], [ -67.412109, -23.966176 ], [ -67.060547, -22.917923 ], [ -67.148438, -22.674847 ], [ -66.357422, -21.779905 ], [ -65.039062, -22.024546 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ], [ -66.533203, -54.418930 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -66.533203, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.826008 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -66.357422, -21.779905 ], [ -65.039062, -22.024546 ], [ -64.423828, -22.755921 ], [ -64.072266, -21.943046 ], [ -62.929688, -22.024546 ], [ -60.908203, -23.805450 ], [ -60.029297, -23.966176 ], [ -58.886719, -24.766785 ], [ -57.832031, -25.085599 ], [ -57.656250, -25.562265 ], [ -58.623047, -27.059126 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.843750, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.482951 ], [ -53.701172, -26.115986 ], [ -53.701172, -26.902477 ], [ -55.195312, -27.839076 ], [ -57.656250, -30.145127 ], [ -58.183594, -32.026706 ], [ -58.183594, -32.990236 ], [ -58.359375, -33.211116 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.865234, -36.879621 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -61.259766, -38.891033 ], [ -62.402344, -38.822591 ], [ -62.138672, -39.368279 ], [ -62.402344, -40.111689 ], [ -62.226562, -40.647304 ], [ -62.753906, -40.979898 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -64.423828, -42.811522 ], [ -65.214844, -43.452919 ], [ -65.390625, -44.465151 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -66.621094, -46.980252 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -68.730469, -50.233152 ], [ -69.169922, -50.680797 ], [ -68.818359, -51.727028 ], [ -68.203125, -52.321911 ], [ -69.521484, -52.106505 ], [ -71.982422, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.625073 ], [ -73.037109, -50.736455 ], [ -73.388672, -50.345460 ], [ -73.476562, -49.267805 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.509766, -47.694974 ], [ -71.982422, -46.860191 ], [ -71.630859, -45.521744 ], [ -71.718750, -44.964798 ], [ -71.279297, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.150681 ], [ -71.542969, -43.771094 ], [ -71.982422, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.806641, -42.032974 ], [ -71.982422, -40.780541 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.191406, -37.509726 ], [ -71.191406, -36.597889 ], [ -70.400391, -35.960223 ], [ -70.400391, -35.101934 ], [ -69.873047, -34.161818 ], [ -69.873047, -33.211116 ], [ -70.136719, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.297018 ], [ -70.048828, -29.305561 ], [ -69.697266, -28.459033 ], [ -69.082031, -27.449790 ], [ -68.378906, -26.824071 ], [ -68.642578, -26.431228 ], [ -68.466797, -26.115986 ], [ -68.466797, -24.447150 ], [ -67.412109, -23.966176 ], [ -67.060547, -22.917923 ], [ -67.148438, -22.674847 ], [ -66.357422, -21.779905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.826781 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.261719, -32.694866 ], [ -53.701172, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -55.722656, -34.741612 ], [ -56.250000, -34.813803 ], [ -57.216797, -34.379713 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.870416 ], [ -58.359375, -33.211116 ], [ -58.183594, -32.990236 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.145127 ], [ -57.041016, -30.069094 ], [ -55.986328, -30.826781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.041016, -30.069094 ], [ -55.986328, -30.826781 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.261719, -32.694866 ], [ -53.701172, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -55.722656, -34.741612 ], [ -56.250000, -34.813803 ], [ -57.216797, -34.379713 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.870416 ], [ -58.359375, -33.211116 ], [ -58.183594, -32.990236 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.145127 ], [ -57.041016, -30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -51.508742 ], [ -58.095703, -51.890054 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ], [ -58.095703, -51.890054 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.261719, -85.051129 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.231457 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.524614 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ] ] ], [ [ [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ] ] ], [ [ [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ] ] ], [ [ [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.532994 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.261719, -85.051129 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 152.753906, 58.904646 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ] ] ], [ [ [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ] ] ], [ [ [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ] ] ], [ [ [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ] ] ], [ [ [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ] ] ], [ [ [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ] ] ], [ [ [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ] ] ], [ [ [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 152.753906, 58.904646 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ] ] ], [ [ [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ] ] ], [ [ [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ] ] ], [ [ [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ], [ 29.355469, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.685547, 70.170201 ], [ 26.103516, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.911005 ], [ 22.324219, 68.847665 ], [ 21.181641, 69.380313 ], [ 20.566406, 69.131271 ], [ 19.951172, 69.068563 ], [ 19.863281, 68.431513 ], [ 17.929688, 68.592487 ], [ 17.666016, 68.040461 ], [ 16.699219, 68.040461 ], [ 15.029297, 66.196009 ], [ 13.535156, 64.811557 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.091408 ], [ 11.865234, 63.154355 ], [ 11.953125, 61.814664 ], [ 12.568359, 61.312452 ], [ 12.216797, 60.152442 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 5.273438, 59.667741 ], [ 4.921875, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.458984, 64.510643 ], [ 12.304688, 65.910623 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ] ] ], [ [ [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ] ] ], [ [ [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ], [ 29.355469, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.685547, 70.170201 ], [ 26.103516, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.911005 ], [ 22.324219, 68.847665 ], [ 21.181641, 69.380313 ], [ 20.566406, 69.131271 ], [ 19.951172, 69.068563 ], [ 19.863281, 68.431513 ], [ 17.929688, 68.592487 ], [ 17.666016, 68.040461 ], [ 16.699219, 68.040461 ], [ 15.029297, 66.196009 ], [ 13.535156, 64.811557 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.091408 ], [ 11.865234, 63.154355 ], [ 11.953125, 61.814664 ], [ 12.568359, 61.312452 ], [ 12.216797, 60.152442 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 5.273438, 59.667741 ], [ 4.921875, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.458984, 64.510643 ], [ 12.304688, 65.910623 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.986328, 55.379110 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ] ] ], [ [ [ 10.458984, 57.231503 ], [ 10.195312, 56.897004 ], [ 10.283203, 56.656226 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.121060 ], [ 10.283203, 56.218923 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 9.228516, 54.876607 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ], [ 10.458984, 57.231503 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.986328, 55.379110 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.458984, 57.231503 ], [ 10.195312, 56.897004 ], [ 10.283203, 56.656226 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.121060 ], [ 10.283203, 56.218923 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 9.228516, 54.876607 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.466797, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 17.753906, 60.673179 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.088515 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.568359, 56.316537 ], [ 11.777344, 57.468589 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.216797, 60.152442 ], [ 12.568359, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.865234, 63.154355 ], [ 12.568359, 64.091408 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.811557 ], [ 15.029297, 66.196009 ], [ 16.699219, 68.040461 ], [ 17.666016, 68.040461 ], [ 17.929688, 68.592487 ], [ 19.863281, 68.431513 ], [ 19.951172, 69.068563 ], [ 20.566406, 69.131271 ], [ 23.466797, 67.941650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 69.131271 ], [ 23.466797, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 17.753906, 60.673179 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.088515 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.568359, 56.316537 ], [ 11.777344, 57.468589 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.216797, 60.152442 ], [ 12.568359, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.865234, 63.154355 ], [ 12.568359, 64.091408 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.811557 ], [ 15.029297, 66.196009 ], [ 16.699219, 68.040461 ], [ 17.666016, 68.040461 ], [ 17.929688, 68.592487 ], [ 19.863281, 68.431513 ], [ 19.951172, 69.068563 ], [ 20.566406, 69.131271 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.855469, 53.488046 ], [ 7.031250, 53.173119 ], [ 6.767578, 52.268157 ], [ 6.503906, 51.890054 ], [ 5.976562, 51.890054 ], [ 6.152344, 50.847573 ], [ 5.537109, 51.069017 ], [ 4.921875, 51.508742 ], [ 4.042969, 51.289406 ], [ 3.251953, 51.399206 ], [ 3.779297, 51.672555 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.173119 ], [ 6.767578, 52.268157 ], [ 6.503906, 51.890054 ], [ 5.976562, 51.890054 ], [ 6.152344, 50.847573 ], [ 5.537109, 51.069017 ], [ 4.921875, 51.508742 ], [ 4.042969, 51.289406 ], [ 3.251953, 51.399206 ], [ 3.779297, 51.672555 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.537109, 51.069017 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.176898 ], [ 5.712891, 50.120578 ], [ 5.625000, 49.553726 ], [ 4.746094, 50.007739 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.042969, 51.289406 ], [ 4.921875, 51.508742 ], [ 5.537109, 51.069017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 5.537109, 51.069017 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.176898 ], [ 5.712891, 50.120578 ], [ 5.625000, 49.553726 ], [ 4.746094, 50.007739 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.042969, 51.289406 ], [ 4.921875, 51.508742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.951220 ], [ 6.152344, 49.496675 ], [ 5.888672, 49.496675 ], [ 5.625000, 49.553726 ], [ 5.712891, 50.120578 ], [ 5.976562, 50.176898 ], [ 6.240234, 49.951220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.176898 ], [ 6.240234, 49.951220 ], [ 6.152344, 49.496675 ], [ 5.888672, 49.496675 ], [ 5.625000, 49.553726 ], [ 5.712891, 50.120578 ], [ 5.976562, 50.176898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.622978 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.062500, 53.800651 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.014783 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.781436 ], [ 14.941406, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.238281, 51.124213 ], [ 13.974609, 50.958427 ], [ 13.271484, 50.736455 ], [ 12.919922, 50.513427 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.535156, 48.922499 ], [ 13.183594, 48.458352 ], [ 12.832031, 48.341646 ], [ 13.007812, 47.694974 ], [ 12.919922, 47.517201 ], [ 12.568359, 47.694974 ], [ 12.128906, 47.754098 ], [ 11.425781, 47.576526 ], [ 10.458984, 47.576526 ], [ 10.371094, 47.338823 ], [ 9.843750, 47.635784 ], [ 9.580078, 47.576526 ], [ 8.437500, 47.872144 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.591797, 49.210420 ], [ 6.152344, 49.496675 ], [ 6.240234, 49.951220 ], [ 5.976562, 50.176898 ], [ 6.152344, 50.847573 ], [ 5.976562, 51.890054 ], [ 6.503906, 51.890054 ], [ 6.767578, 52.268157 ], [ 7.031250, 53.173119 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.228516, 54.876607 ], [ 9.843750, 55.028022 ], [ 9.931641, 54.622978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 55.028022 ], [ 9.931641, 54.622978 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.062500, 53.800651 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.014783 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.781436 ], [ 14.941406, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.238281, 51.124213 ], [ 13.974609, 50.958427 ], [ 13.271484, 50.736455 ], [ 12.919922, 50.513427 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.535156, 48.922499 ], [ 13.183594, 48.458352 ], [ 12.832031, 48.341646 ], [ 13.007812, 47.694974 ], [ 12.919922, 47.517201 ], [ 12.568359, 47.694974 ], [ 12.128906, 47.754098 ], [ 11.425781, 47.576526 ], [ 10.458984, 47.576526 ], [ 10.371094, 47.338823 ], [ 9.843750, 47.635784 ], [ 9.580078, 47.576526 ], [ 8.437500, 47.872144 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.591797, 49.210420 ], [ 6.152344, 49.496675 ], [ 6.240234, 49.951220 ], [ 5.976562, 50.176898 ], [ 6.152344, 50.847573 ], [ 5.976562, 51.890054 ], [ 6.503906, 51.890054 ], [ 6.767578, 52.268157 ], [ 7.031250, 53.173119 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.228516, 54.876607 ], [ 9.843750, 55.028022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.576526 ], [ 9.404297, 47.159840 ], [ 9.931641, 46.980252 ], [ 10.371094, 46.920255 ], [ 10.283203, 46.498392 ], [ 9.843750, 46.316584 ], [ 9.140625, 46.498392 ], [ 8.964844, 46.073231 ], [ 8.437500, 46.012224 ], [ 8.261719, 46.195042 ], [ 7.734375, 45.828799 ], [ 7.207031, 45.828799 ], [ 6.767578, 46.012224 ], [ 6.416016, 46.437857 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.739861 ], [ 6.767578, 47.338823 ], [ 6.679688, 47.576526 ], [ 7.119141, 47.457809 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.437500, 47.872144 ], [ 9.580078, 47.576526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 47.872144 ], [ 9.580078, 47.576526 ], [ 9.404297, 47.159840 ], [ 9.931641, 46.980252 ], [ 10.371094, 46.920255 ], [ 10.283203, 46.498392 ], [ 9.843750, 46.316584 ], [ 9.140625, 46.498392 ], [ 8.964844, 46.073231 ], [ 8.437500, 46.012224 ], [ 8.261719, 46.195042 ], [ 7.734375, 45.828799 ], [ 7.207031, 45.828799 ], [ 6.767578, 46.012224 ], [ 6.416016, 46.437857 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.739861 ], [ 6.767578, 47.338823 ], [ 6.679688, 47.576526 ], [ 7.119141, 47.457809 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.437500, 47.872144 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.792047 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.457504 ], [ 16.699219, 50.233152 ], [ 16.787109, 50.513427 ], [ 17.490234, 50.401515 ], [ 17.578125, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.808594, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.105469, 49.325122 ], [ 18.017578, 49.095452 ], [ 17.841797, 48.922499 ], [ 17.490234, 48.806863 ], [ 17.050781, 48.864715 ], [ 16.875000, 48.632909 ], [ 16.435547, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.205078, 49.095452 ], [ 14.853516, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.535156, 48.922499 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 12.919922, 50.513427 ], [ 13.271484, 50.736455 ], [ 13.974609, 50.958427 ], [ 14.238281, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.941406, 51.124213 ], [ 15.468750, 50.792047 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.941406, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.457504 ], [ 16.699219, 50.233152 ], [ 16.787109, 50.513427 ], [ 17.490234, 50.401515 ], [ 17.578125, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.808594, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.105469, 49.325122 ], [ 18.017578, 49.095452 ], [ 17.841797, 48.922499 ], [ 17.490234, 48.806863 ], [ 17.050781, 48.864715 ], [ 16.875000, 48.632909 ], [ 16.435547, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.205078, 49.095452 ], [ 14.853516, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.535156, 48.922499 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 12.919922, 50.513427 ], [ 13.271484, 50.736455 ], [ 13.974609, 50.958427 ], [ 14.238281, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.941406, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.544922, 54.724620 ], [ 18.632812, 54.470038 ], [ 20.830078, 54.316523 ], [ 22.675781, 54.367759 ], [ 23.203125, 54.265224 ], [ 23.730469, 53.120405 ], [ 23.730469, 52.696361 ], [ 23.115234, 52.536273 ], [ 23.466797, 52.052490 ], [ 23.466797, 51.618017 ], [ 23.994141, 50.736455 ], [ 23.906250, 50.457504 ], [ 23.378906, 50.345460 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.533203, 49.496675 ], [ 20.830078, 49.382373 ], [ 20.390625, 49.439557 ], [ 19.775391, 49.267805 ], [ 19.248047, 49.610710 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.578125, 50.064192 ], [ 17.490234, 50.401515 ], [ 16.787109, 50.513427 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.457504 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.792047 ], [ 14.941406, 51.124213 ], [ 14.589844, 51.781436 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 53.014783 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ], [ 18.544922, 54.724620 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 54.876607 ], [ 18.544922, 54.724620 ], [ 18.632812, 54.470038 ], [ 20.830078, 54.316523 ], [ 22.675781, 54.367759 ], [ 23.203125, 54.265224 ], [ 23.730469, 53.120405 ], [ 23.730469, 52.696361 ], [ 23.115234, 52.536273 ], [ 23.466797, 52.052490 ], [ 23.466797, 51.618017 ], [ 23.994141, 50.736455 ], [ 23.906250, 50.457504 ], [ 23.378906, 50.345460 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.533203, 49.496675 ], [ 20.830078, 49.382373 ], [ 20.390625, 49.439557 ], [ 19.775391, 49.267805 ], [ 19.248047, 49.610710 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.578125, 50.064192 ], [ 17.490234, 50.401515 ], [ 16.787109, 50.513427 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.457504 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.792047 ], [ 14.941406, 51.124213 ], [ 14.589844, 51.781436 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 53.014783 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 48.748945 ], [ 16.435547, 48.806863 ], [ 16.875000, 48.632909 ], [ 16.875000, 48.516604 ], [ 16.962891, 48.166085 ], [ 16.875000, 47.754098 ], [ 16.259766, 47.754098 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.739861 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.304688, 46.800059 ], [ 12.128906, 47.159840 ], [ 11.162109, 46.980252 ], [ 10.986328, 46.800059 ], [ 9.931641, 46.980252 ], [ 9.404297, 47.159840 ], [ 9.580078, 47.576526 ], [ 9.843750, 47.635784 ], [ 10.371094, 47.338823 ], [ 10.458984, 47.576526 ], [ 11.425781, 47.576526 ], [ 12.128906, 47.754098 ], [ 12.568359, 47.694974 ], [ 12.919922, 47.517201 ], [ 13.007812, 47.694974 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.458352 ], [ 13.535156, 48.922499 ], [ 14.326172, 48.574790 ], [ 14.853516, 48.980217 ], [ 15.205078, 49.095452 ], [ 15.996094, 48.748945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.205078, 49.095452 ], [ 15.996094, 48.748945 ], [ 16.435547, 48.806863 ], [ 16.875000, 48.632909 ], [ 16.875000, 48.516604 ], [ 16.962891, 48.166085 ], [ 16.875000, 47.754098 ], [ 16.259766, 47.754098 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.739861 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.304688, 46.800059 ], [ 12.128906, 47.159840 ], [ 11.162109, 46.980252 ], [ 10.986328, 46.800059 ], [ 9.931641, 46.980252 ], [ 9.404297, 47.159840 ], [ 9.580078, 47.576526 ], [ 9.843750, 47.635784 ], [ 10.371094, 47.338823 ], [ 10.458984, 47.576526 ], [ 11.425781, 47.576526 ], [ 12.128906, 47.754098 ], [ 12.568359, 47.694974 ], [ 12.919922, 47.517201 ], [ 13.007812, 47.694974 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.458352 ], [ 13.535156, 48.922499 ], [ 14.326172, 48.574790 ], [ 14.853516, 48.980217 ], [ 15.205078, 49.095452 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.890008 ], [ 15.292969, 45.767523 ], [ 15.292969, 45.460131 ], [ 14.853516, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.326172, 45.521744 ], [ 13.710938, 45.521744 ], [ 13.886719, 45.644768 ], [ 13.623047, 46.073231 ], [ 13.798828, 46.558860 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.739861 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ], [ 16.523438, 46.558860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.558860 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.890008 ], [ 15.292969, 45.767523 ], [ 15.292969, 45.460131 ], [ 14.853516, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.326172, 45.521744 ], [ 13.710938, 45.521744 ], [ 13.886719, 45.644768 ], [ 13.623047, 46.073231 ], [ 13.798828, 46.558860 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.739861 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.117188, 37.509726 ], [ 15.292969, 37.160317 ], [ 15.029297, 36.668419 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.468750, 38.272689 ], [ 15.117188, 37.509726 ] ] ], [ [ [ 12.304688, 46.800059 ], [ 13.798828, 46.558860 ], [ 13.623047, 46.073231 ], [ 13.886719, 45.644768 ], [ 13.095703, 45.767523 ], [ 12.304688, 45.398450 ], [ 12.304688, 44.902578 ], [ 12.216797, 44.653024 ], [ 12.568359, 44.150681 ], [ 13.447266, 43.644026 ], [ 13.974609, 42.811522 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.083984, 41.771312 ], [ 15.820312, 41.574361 ], [ 17.490234, 40.913513 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.666016, 40.313043 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.611328, 38.891033 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.820312, 38.754083 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 14.941406, 40.178873 ], [ 14.677734, 40.647304 ], [ 13.974609, 40.847060 ], [ 13.623047, 41.244772 ], [ 12.832031, 41.310824 ], [ 11.162109, 42.358544 ], [ 10.458984, 42.940339 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 8.349609, 44.276671 ], [ 7.822266, 43.771094 ], [ 7.382812, 43.707594 ], [ 7.470703, 44.150681 ], [ 6.943359, 44.276671 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.336702 ], [ 6.767578, 45.767523 ], [ 6.767578, 46.012224 ], [ 7.207031, 45.828799 ], [ 7.734375, 45.828799 ], [ 8.261719, 46.195042 ], [ 8.437500, 46.012224 ], [ 8.964844, 46.073231 ], [ 9.140625, 46.498392 ], [ 9.843750, 46.316584 ], [ 10.283203, 46.498392 ], [ 10.371094, 46.920255 ], [ 10.986328, 46.800059 ], [ 11.162109, 46.980252 ], [ 12.128906, 47.159840 ], [ 12.304688, 46.800059 ] ] ], [ [ [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.300299 ], [ 8.789062, 38.959409 ], [ 8.349609, 39.232253 ], [ 8.349609, 40.380028 ], [ 8.085938, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.117188, 37.509726 ], [ 15.292969, 37.160317 ], [ 15.029297, 36.668419 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 12.128906, 47.159840 ], [ 12.304688, 46.800059 ], [ 13.798828, 46.558860 ], [ 13.623047, 46.073231 ], [ 13.886719, 45.644768 ], [ 13.095703, 45.767523 ], [ 12.304688, 45.398450 ], [ 12.304688, 44.902578 ], [ 12.216797, 44.653024 ], [ 12.568359, 44.150681 ], [ 13.447266, 43.644026 ], [ 13.974609, 42.811522 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.083984, 41.771312 ], [ 15.820312, 41.574361 ], [ 17.490234, 40.913513 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.666016, 40.313043 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.611328, 38.891033 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.820312, 38.754083 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 14.941406, 40.178873 ], [ 14.677734, 40.647304 ], [ 13.974609, 40.847060 ], [ 13.623047, 41.244772 ], [ 12.832031, 41.310824 ], [ 11.162109, 42.358544 ], [ 10.458984, 42.940339 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 8.349609, 44.276671 ], [ 7.822266, 43.771094 ], [ 7.382812, 43.707594 ], [ 7.470703, 44.150681 ], [ 6.943359, 44.276671 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.336702 ], [ 6.767578, 45.767523 ], [ 6.767578, 46.012224 ], [ 7.207031, 45.828799 ], [ 7.734375, 45.828799 ], [ 8.261719, 46.195042 ], [ 8.437500, 46.012224 ], [ 8.964844, 46.073231 ], [ 9.140625, 46.498392 ], [ 9.843750, 46.316584 ], [ 10.283203, 46.498392 ], [ 10.371094, 46.920255 ], [ 10.986328, 46.800059 ], [ 11.162109, 46.980252 ], [ 12.128906, 47.159840 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.300299 ], [ 8.789062, 38.959409 ], [ 8.349609, 39.232253 ], [ 8.349609, 40.380028 ], [ 8.085938, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.140625, 41.244772 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 46.012224 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.213004 ], [ 16.259766, 45.026950 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.666016, 43.068888 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.875000, 43.261206 ], [ 15.996094, 43.516689 ], [ 15.117188, 44.276671 ], [ 15.292969, 44.339565 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.853516, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.767523 ], [ 15.644531, 45.890008 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.213004 ], [ 16.259766, 45.026950 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.666016, 43.068888 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.875000, 43.261206 ], [ 15.996094, 43.516689 ], [ 15.117188, 44.276671 ], [ 15.292969, 44.339565 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.853516, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.767523 ], [ 15.644531, 45.890008 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 48.341646 ], [ 22.060547, 48.458352 ], [ 22.587891, 48.166085 ], [ 22.675781, 47.931066 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.511719, 46.195042 ], [ 18.369141, 45.767523 ], [ 17.578125, 46.012224 ], [ 16.523438, 46.558860 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.259766, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.962891, 48.166085 ], [ 17.841797, 47.813155 ], [ 18.632812, 47.931066 ], [ 18.720703, 48.107431 ], [ 20.214844, 48.341646 ], [ 20.390625, 48.574790 ], [ 20.742188, 48.632909 ], [ 21.796875, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 48.632909 ], [ 21.796875, 48.341646 ], [ 22.060547, 48.458352 ], [ 22.587891, 48.166085 ], [ 22.675781, 47.931066 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.511719, 46.195042 ], [ 18.369141, 45.767523 ], [ 17.578125, 46.012224 ], [ 16.523438, 46.558860 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.259766, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.962891, 48.166085 ], [ 17.841797, 47.813155 ], [ 18.632812, 47.931066 ], [ 18.720703, 48.107431 ], [ 20.214844, 48.341646 ], [ 20.390625, 48.574790 ], [ 20.742188, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 49.267805 ], [ 20.390625, 49.439557 ], [ 20.830078, 49.382373 ], [ 21.533203, 49.496675 ], [ 22.500000, 49.095452 ], [ 22.060547, 48.458352 ], [ 21.796875, 48.341646 ], [ 20.742188, 48.632909 ], [ 20.390625, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.687500, 48.224673 ], [ 19.599609, 48.283193 ], [ 18.720703, 48.107431 ], [ 18.632812, 47.931066 ], [ 17.841797, 47.813155 ], [ 17.402344, 47.872144 ], [ 16.962891, 48.166085 ], [ 16.875000, 48.516604 ], [ 17.050781, 48.864715 ], [ 17.490234, 48.806863 ], [ 17.841797, 48.922499 ], [ 18.017578, 49.095452 ], [ 18.105469, 49.325122 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.248047, 49.610710 ], [ 19.775391, 49.267805 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.248047, 49.610710 ], [ 19.775391, 49.267805 ], [ 20.390625, 49.439557 ], [ 20.830078, 49.382373 ], [ 21.533203, 49.496675 ], [ 22.500000, 49.095452 ], [ 22.060547, 48.458352 ], [ 21.796875, 48.341646 ], [ 20.742188, 48.632909 ], [ 20.390625, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.687500, 48.224673 ], [ 19.599609, 48.283193 ], [ 18.720703, 48.107431 ], [ 18.632812, 47.931066 ], [ 17.841797, 47.813155 ], [ 17.402344, 47.872144 ], [ 16.962891, 48.166085 ], [ 16.875000, 48.516604 ], [ 17.050781, 48.864715 ], [ 17.490234, 48.806863 ], [ 17.841797, 48.922499 ], [ 18.017578, 49.095452 ], [ 18.105469, 49.325122 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.248047, 49.610710 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.465151 ], [ 19.599609, 44.087585 ], [ 19.423828, 43.580391 ], [ 18.632812, 43.261206 ], [ 18.544922, 42.682435 ], [ 17.666016, 43.068888 ], [ 17.226562, 43.452919 ], [ 16.435547, 44.087585 ], [ 15.732422, 44.840291 ], [ 15.908203, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.274886 ], [ 17.841797, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.274886 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.465151 ], [ 19.599609, 44.087585 ], [ 19.423828, 43.580391 ], [ 18.632812, 43.261206 ], [ 18.544922, 42.682435 ], [ 17.666016, 43.068888 ], [ 17.226562, 43.452919 ], [ 16.435547, 44.087585 ], [ 15.732422, 44.840291 ], [ 15.908203, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.274886 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.553080 ], [ 20.039062, 42.617791 ], [ 20.478516, 42.228517 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.917969, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.566406, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.977120 ], [ 19.335938, 40.313043 ], [ 19.248047, 40.780541 ], [ 19.511719, 41.771312 ], [ 19.248047, 42.228517 ], [ 19.687500, 42.747012 ], [ 19.775391, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.747012 ], [ 19.775391, 42.553080 ], [ 20.039062, 42.617791 ], [ 20.478516, 42.228517 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.917969, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.566406, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.977120 ], [ 19.335938, 40.313043 ], [ 19.248047, 40.780541 ], [ 19.511719, 41.771312 ], [ 19.248047, 42.228517 ], [ 19.687500, 42.747012 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 42.032974 ], [ 22.939453, 41.376809 ], [ 22.587891, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.621094, 40.979898 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.654297, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.269531, 42.228517 ], [ 22.324219, 42.358544 ], [ 22.851562, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.358544 ], [ 22.851562, 42.032974 ], [ 22.939453, 41.376809 ], [ 22.587891, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.621094, 40.979898 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.654297, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.269531, 42.228517 ], [ 22.324219, 42.358544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.388672, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.003906, 66.964476 ], [ 30.146484, 65.838776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 29.970703, 63.587675 ], [ 31.464844, 62.875188 ], [ 31.113281, 62.390369 ], [ 28.037109, 60.543775 ], [ 26.191406, 60.457218 ], [ 24.433594, 60.064840 ], [ 22.851562, 59.888937 ], [ 22.236328, 60.413852 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.923542 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.818359, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.466797, 67.941650 ], [ 20.566406, 69.131271 ], [ 21.181641, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.911005 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.103516, 69.839622 ], [ 27.685547, 70.170201 ], [ 29.003906, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.685547, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.388672, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.003906, 66.964476 ], [ 30.146484, 65.838776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 29.970703, 63.587675 ], [ 31.464844, 62.875188 ], [ 31.113281, 62.390369 ], [ 28.037109, 60.543775 ], [ 26.191406, 60.457218 ], [ 24.433594, 60.064840 ], [ 22.851562, 59.888937 ], [ 22.236328, 60.413852 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.923542 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.818359, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.466797, 67.941650 ], [ 20.566406, 69.131271 ], [ 21.181641, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.911005 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.103516, 69.839622 ], [ 27.685547, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.279043 ], [ 27.773438, 56.800878 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.488281, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.785156, 56.413901 ], [ 23.818359, 56.316537 ], [ 22.148438, 56.365250 ], [ 21.005859, 56.072035 ], [ 21.005859, 56.800878 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 25.136719, 57.984808 ], [ 26.455078, 57.515823 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 26.455078, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.279043 ], [ 27.773438, 56.800878 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.488281, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.785156, 56.413901 ], [ 23.818359, 56.316537 ], [ 22.148438, 56.365250 ], [ 21.005859, 56.072035 ], [ 21.005859, 56.800878 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 59.489726 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.333984, 58.768200 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.515823 ], [ 26.455078, 57.515823 ], [ 25.136719, 57.984808 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 24.521484, 59.489726 ], [ 25.839844, 59.623325 ], [ 26.894531, 59.489726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.894531, 59.489726 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.333984, 58.768200 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.515823 ], [ 26.455078, 57.515823 ], [ 25.136719, 57.984808 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 24.521484, 59.489726 ], [ 25.839844, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.170023 ], [ 25.488281, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.542969, 55.178868 ], [ 25.751953, 54.876607 ], [ 25.488281, 54.316523 ], [ 24.433594, 53.956086 ], [ 23.466797, 53.956086 ], [ 23.203125, 54.265224 ], [ 22.675781, 54.367759 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.876607 ], [ 22.236328, 55.028022 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 22.148438, 56.365250 ], [ 23.818359, 56.316537 ], [ 24.785156, 56.413901 ], [ 24.960938, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 56.413901 ], [ 24.960938, 56.170023 ], [ 25.488281, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.542969, 55.178868 ], [ 25.751953, 54.876607 ], [ 25.488281, 54.316523 ], [ 24.433594, 53.956086 ], [ 23.466797, 53.956086 ], [ 23.203125, 54.265224 ], [ 22.675781, 54.367759 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.876607 ], [ 22.236328, 55.028022 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 22.148438, 56.365250 ], [ 23.818359, 56.316537 ], [ 24.785156, 56.413901 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.825973 ], [ 30.849609, 55.578345 ], [ 30.937500, 55.128649 ], [ 30.673828, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.728516, 54.007769 ], [ 31.728516, 53.800651 ], [ 32.343750, 53.644638 ], [ 32.607422, 53.383328 ], [ 32.255859, 53.173119 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.120405 ], [ 31.728516, 52.106505 ], [ 30.849609, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.498047, 51.344339 ], [ 30.146484, 51.454007 ], [ 29.179688, 51.399206 ], [ 28.916016, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.212891, 51.618017 ], [ 27.421875, 51.618017 ], [ 26.279297, 51.835778 ], [ 25.312500, 51.944265 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.466797, 51.618017 ], [ 23.466797, 52.052490 ], [ 23.115234, 52.536273 ], [ 23.730469, 52.696361 ], [ 23.730469, 53.120405 ], [ 23.466797, 53.488046 ], [ 23.466797, 53.956086 ], [ 24.433594, 53.956086 ], [ 25.488281, 54.316523 ], [ 25.751953, 54.876607 ], [ 26.542969, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.125000, 56.170023 ], [ 29.179688, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 56.170023 ], [ 29.179688, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.825973 ], [ 30.849609, 55.578345 ], [ 30.937500, 55.128649 ], [ 30.673828, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.728516, 54.007769 ], [ 31.728516, 53.800651 ], [ 32.343750, 53.644638 ], [ 32.607422, 53.383328 ], [ 32.255859, 53.173119 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.120405 ], [ 31.728516, 52.106505 ], [ 30.849609, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.498047, 51.344339 ], [ 30.146484, 51.454007 ], [ 29.179688, 51.399206 ], [ 28.916016, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.212891, 51.618017 ], [ 27.421875, 51.618017 ], [ 26.279297, 51.835778 ], [ 25.312500, 51.944265 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.466797, 51.618017 ], [ 23.466797, 52.052490 ], [ 23.115234, 52.536273 ], [ 23.730469, 52.696361 ], [ 23.730469, 53.120405 ], [ 23.466797, 53.488046 ], [ 23.466797, 53.956086 ], [ 24.433594, 53.956086 ], [ 25.488281, 54.316523 ], [ 25.751953, 54.876607 ], [ 26.542969, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.125000, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.166085 ], [ 28.125000, 46.860191 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.521744 ], [ 28.652344, 45.336702 ], [ 29.091797, 45.521744 ], [ 29.531250, 45.336702 ], [ 29.619141, 45.089036 ], [ 29.091797, 44.840291 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.158203, 44.213710 ], [ 26.015625, 43.961191 ], [ 25.488281, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.412109, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.715514 ], [ 22.060547, 44.527843 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.213004 ], [ 20.830078, 45.460131 ], [ 20.742188, 45.767523 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.931066 ], [ 23.115234, 48.107431 ], [ 24.345703, 47.989922 ], [ 24.785156, 47.754098 ], [ 25.136719, 47.931066 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.894531, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 48.224673 ], [ 26.894531, 48.166085 ], [ 28.125000, 46.860191 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.521744 ], [ 28.652344, 45.336702 ], [ 29.091797, 45.521744 ], [ 29.531250, 45.336702 ], [ 29.619141, 45.089036 ], [ 29.091797, 44.840291 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.158203, 44.213710 ], [ 26.015625, 43.961191 ], [ 25.488281, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.412109, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.715514 ], [ 22.060547, 44.527843 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.213004 ], [ 20.830078, 45.460131 ], [ 20.742188, 45.767523 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.931066 ], [ 23.115234, 48.107431 ], [ 24.345703, 47.989922 ], [ 24.785156, 47.754098 ], [ 25.136719, 47.931066 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.488281, 43.707594 ], [ 26.015625, 43.961191 ], [ 27.158203, 44.213710 ], [ 27.949219, 43.834527 ], [ 28.476562, 43.707594 ], [ 28.037109, 43.325178 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 27.070312, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.376809 ], [ 25.136719, 41.244772 ], [ 24.433594, 41.640078 ], [ 23.642578, 41.310824 ], [ 22.939453, 41.376809 ], [ 22.851562, 42.032974 ], [ 22.324219, 42.358544 ], [ 22.500000, 42.488302 ], [ 22.412109, 42.617791 ], [ 22.587891, 42.940339 ], [ 22.939453, 43.261206 ], [ 22.500000, 43.644026 ], [ 22.324219, 44.024422 ], [ 22.587891, 44.276671 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.587891, 44.276671 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.488281, 43.707594 ], [ 26.015625, 43.961191 ], [ 27.158203, 44.213710 ], [ 27.949219, 43.834527 ], [ 28.476562, 43.707594 ], [ 28.037109, 43.325178 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 27.070312, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.376809 ], [ 25.136719, 41.244772 ], [ 24.433594, 41.640078 ], [ 23.642578, 41.310824 ], [ 22.939453, 41.376809 ], [ 22.851562, 42.032974 ], [ 22.324219, 42.358544 ], [ 22.500000, 42.488302 ], [ 22.412109, 42.617791 ], [ 22.587891, 42.940339 ], [ 22.939453, 43.261206 ], [ 22.500000, 43.644026 ], [ 22.324219, 44.024422 ], [ 22.587891, 44.276671 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.212891, 48.166085 ], [ 28.652344, 48.166085 ], [ 29.091797, 47.872144 ], [ 29.003906, 47.517201 ], [ 29.355469, 47.398349 ], [ 29.531250, 46.980252 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.558860 ], [ 29.970703, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.091797, 46.437857 ], [ 29.003906, 46.558860 ], [ 28.828125, 46.498392 ], [ 28.916016, 46.316584 ], [ 28.476562, 45.644768 ], [ 28.212891, 45.521744 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.860191 ], [ 26.894531, 48.166085 ], [ 26.542969, 48.224673 ], [ 26.806641, 48.400032 ], [ 27.509766, 48.516604 ], [ 28.212891, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.516604 ], [ 28.212891, 48.166085 ], [ 28.652344, 48.166085 ], [ 29.091797, 47.872144 ], [ 29.003906, 47.517201 ], [ 29.355469, 47.398349 ], [ 29.531250, 46.980252 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.558860 ], [ 29.970703, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.091797, 46.437857 ], [ 29.003906, 46.558860 ], [ 28.828125, 46.498392 ], [ 28.916016, 46.316584 ], [ 28.476562, 45.644768 ], [ 28.212891, 45.521744 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.860191 ], [ 26.894531, 48.166085 ], [ 26.542969, 48.224673 ], [ 26.806641, 48.400032 ], [ 27.509766, 48.516604 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.564453, 51.454007 ], [ 28.916016, 51.618017 ], [ 29.179688, 51.399206 ], [ 30.146484, 51.454007 ], [ 30.498047, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.849609, 52.052490 ], [ 31.728516, 52.106505 ], [ 32.080078, 52.106505 ], [ 32.343750, 52.321911 ], [ 32.695312, 52.268157 ], [ 33.750000, 52.375599 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.618017 ], [ 34.189453, 51.289406 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.792047 ], [ 35.332031, 50.625073 ], [ 36.562500, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.951220 ], [ 38.583984, 49.951220 ], [ 39.990234, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.814453, 48.283193 ], [ 39.726562, 47.931066 ], [ 38.759766, 47.872144 ], [ 38.232422, 47.576526 ], [ 38.144531, 47.159840 ], [ 37.353516, 47.040182 ], [ 36.738281, 46.739861 ], [ 35.771484, 46.679594 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 35.507812, 45.460131 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 35.156250, 44.964798 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.890008 ], [ 33.222656, 46.134170 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 30.322266, 46.073231 ], [ 29.531250, 45.336702 ], [ 29.091797, 45.521744 ], [ 28.652344, 45.336702 ], [ 28.212891, 45.521744 ], [ 28.476562, 45.644768 ], [ 28.916016, 46.316584 ], [ 28.828125, 46.498392 ], [ 29.003906, 46.558860 ], [ 29.091797, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.970703, 46.437857 ], [ 29.794922, 46.558860 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.980252 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.166085 ], [ 28.212891, 48.166085 ], [ 27.509766, 48.516604 ], [ 26.806641, 48.400032 ], [ 26.542969, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.136719, 47.931066 ], [ 24.785156, 47.754098 ], [ 24.345703, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.931066 ], [ 22.587891, 48.166085 ], [ 22.060547, 48.458352 ], [ 22.500000, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.378906, 50.345460 ], [ 23.906250, 50.457504 ], [ 23.994141, 50.736455 ], [ 23.466797, 51.618017 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.944265 ], [ 26.279297, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.618017 ], [ 28.564453, 51.454007 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.375599 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.618017 ], [ 34.189453, 51.289406 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.792047 ], [ 35.332031, 50.625073 ], [ 36.562500, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.951220 ], [ 38.583984, 49.951220 ], [ 39.990234, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.814453, 48.283193 ], [ 39.726562, 47.931066 ], [ 38.759766, 47.872144 ], [ 38.232422, 47.576526 ], [ 38.144531, 47.159840 ], [ 37.353516, 47.040182 ], [ 36.738281, 46.739861 ], [ 35.771484, 46.679594 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 35.507812, 45.460131 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 35.156250, 44.964798 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.890008 ], [ 33.222656, 46.134170 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 30.322266, 46.073231 ], [ 29.531250, 45.336702 ], [ 29.091797, 45.521744 ], [ 28.652344, 45.336702 ], [ 28.212891, 45.521744 ], [ 28.476562, 45.644768 ], [ 28.916016, 46.316584 ], [ 28.828125, 46.498392 ], [ 29.003906, 46.558860 ], [ 29.091797, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.970703, 46.437857 ], [ 29.794922, 46.558860 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.980252 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.166085 ], [ 28.212891, 48.166085 ], [ 27.509766, 48.516604 ], [ 26.806641, 48.400032 ], [ 26.542969, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.136719, 47.931066 ], [ 24.785156, 47.754098 ], [ 24.345703, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.931066 ], [ 22.587891, 48.166085 ], [ 22.060547, 48.458352 ], [ 22.500000, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.378906, 50.345460 ], [ 23.906250, 50.457504 ], [ 23.994141, 50.736455 ], [ 23.466797, 51.618017 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.944265 ], [ 26.279297, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.916016, 51.618017 ], [ 29.179688, 51.399206 ], [ 30.146484, 51.454007 ], [ 30.498047, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.849609, 52.052490 ], [ 31.728516, 52.106505 ], [ 32.080078, 52.106505 ], [ 32.343750, 52.321911 ], [ 32.695312, 52.268157 ], [ 33.750000, 52.375599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 43.261206 ], [ 43.681641, 42.747012 ], [ 43.857422, 42.617791 ], [ 44.472656, 42.747012 ], [ 45.439453, 42.553080 ], [ 45.703125, 42.098222 ], [ 46.318359, 41.902277 ], [ 46.142578, 41.771312 ], [ 46.582031, 41.244772 ], [ 46.494141, 41.112469 ], [ 45.878906, 41.178654 ], [ 45.175781, 41.442726 ], [ 44.912109, 41.310824 ], [ 43.505859, 41.112469 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.574361 ], [ 41.660156, 41.967659 ], [ 41.396484, 42.682435 ], [ 40.869141, 43.068888 ], [ 40.253906, 43.133061 ], [ 39.902344, 43.452919 ], [ 39.990234, 43.580391 ], [ 42.363281, 43.261206 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.990234, 43.580391 ], [ 42.363281, 43.261206 ], [ 43.681641, 42.747012 ], [ 43.857422, 42.617791 ], [ 44.472656, 42.747012 ], [ 45.439453, 42.553080 ], [ 45.703125, 42.098222 ], [ 46.318359, 41.902277 ], [ 46.142578, 41.771312 ], [ 46.582031, 41.244772 ], [ 46.494141, 41.112469 ], [ 45.878906, 41.178654 ], [ 45.175781, 41.442726 ], [ 44.912109, 41.310824 ], [ 43.505859, 41.112469 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.574361 ], [ 41.660156, 41.967659 ], [ 41.396484, 42.682435 ], [ 40.869141, 43.068888 ], [ 40.253906, 43.133061 ], [ 39.902344, 43.452919 ], [ 39.990234, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.949892 ], [ 8.349609, 36.949892 ], [ 8.173828, 36.456636 ], [ 8.349609, 35.532226 ], [ 8.085938, 34.669359 ], [ 7.470703, 34.161818 ], [ 7.558594, 33.358062 ], [ 8.349609, 32.768800 ], [ 8.437500, 32.546813 ], [ 9.052734, 32.175612 ], [ 9.755859, 29.458731 ], [ 9.843750, 28.998532 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.761330 ], [ 9.580078, 27.215556 ], [ 9.667969, 26.588527 ], [ 9.316406, 26.115986 ], [ 9.843750, 25.403585 ], [ 9.931641, 25.005973 ], [ 10.283203, 24.447150 ], [ 10.722656, 24.607069 ], [ 11.513672, 24.126702 ], [ 11.953125, 23.483401 ], [ 8.525391, 21.616579 ], [ 5.625000, 19.642588 ], [ 4.218750, 19.228177 ], [ 3.076172, 19.062118 ], [ 3.076172, 19.725342 ], [ 2.021484, 20.220966 ], [ 1.757812, 20.632784 ], [ -8.701172, 27.449790 ], [ -8.701172, 28.844674 ], [ -7.119141, 29.611670 ], [ -5.273438, 30.069094 ], [ -4.921875, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.324276 ], [ -1.142578, 32.694866 ], [ -1.406250, 32.916485 ], [ -1.845703, 34.597042 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.175781, 35.889050 ], [ 0.439453, 36.315125 ], [ 1.406250, 36.668419 ], [ 4.746094, 36.879621 ], [ 5.273438, 36.738884 ], [ 6.240234, 37.160317 ], [ 7.294922, 37.160317 ], [ 7.734375, 36.949892 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.160317 ], [ 7.734375, 36.949892 ], [ 8.349609, 36.949892 ], [ 8.173828, 36.456636 ], [ 8.349609, 35.532226 ], [ 8.085938, 34.669359 ], [ 7.470703, 34.161818 ], [ 7.558594, 33.358062 ], [ 8.349609, 32.768800 ], [ 8.437500, 32.546813 ], [ 9.052734, 32.175612 ], [ 9.755859, 29.458731 ], [ 9.843750, 28.998532 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.761330 ], [ 9.580078, 27.215556 ], [ 9.667969, 26.588527 ], [ 9.316406, 26.115986 ], [ 9.843750, 25.403585 ], [ 9.931641, 25.005973 ], [ 10.283203, 24.447150 ], [ 10.722656, 24.607069 ], [ 11.513672, 24.126702 ], [ 11.953125, 23.483401 ], [ 8.525391, 21.616579 ], [ 5.625000, 19.642588 ], [ 4.218750, 19.228177 ], [ 3.076172, 19.062118 ], [ 3.076172, 19.725342 ], [ 2.021484, 20.220966 ], [ 1.757812, 20.632784 ], [ -8.701172, 27.449790 ], [ -8.701172, 28.844674 ], [ -7.119141, 29.611670 ], [ -5.273438, 30.069094 ], [ -4.921875, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.324276 ], [ -1.142578, 32.694866 ], [ -1.406250, 32.916485 ], [ -1.845703, 34.597042 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.175781, 35.889050 ], [ 0.439453, 36.315125 ], [ 1.406250, 36.668419 ], [ 4.746094, 36.879621 ], [ 5.273438, 36.738884 ], [ 6.240234, 37.160317 ], [ 7.294922, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.842674 ], [ 13.007812, 32.916485 ], [ 13.886719, 32.768800 ], [ 15.205078, 32.324276 ], [ 15.644531, 31.428663 ], [ 18.017578, 30.826781 ], [ 19.072266, 30.297018 ], [ 19.511719, 30.600094 ], [ 20.039062, 31.052934 ], [ 19.775391, 31.802893 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.768800 ], [ 21.533203, 32.916485 ], [ 22.851562, 32.694866 ], [ 23.203125, 32.249974 ], [ 24.873047, 31.952162 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.128199 ], [ 24.873047, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.305561 ], [ 24.960938, 20.055931 ], [ 23.818359, 20.055931 ], [ 23.818359, 19.642588 ], [ 15.820312, 23.483401 ], [ 14.765625, 22.917923 ], [ 14.062500, 22.512557 ], [ 13.535156, 23.079732 ], [ 11.953125, 23.483401 ], [ 11.513672, 24.126702 ], [ 10.722656, 24.607069 ], [ 10.283203, 24.447150 ], [ 9.931641, 25.005973 ], [ 9.843750, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.667969, 26.588527 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.998532 ], [ 9.404297, 30.372875 ], [ 9.931641, 30.600094 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.428663 ], [ 11.425781, 32.398516 ], [ 11.425781, 33.137551 ], [ 12.656250, 32.842674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.425781, 33.137551 ], [ 12.656250, 32.842674 ], [ 13.007812, 32.916485 ], [ 13.886719, 32.768800 ], [ 15.205078, 32.324276 ], [ 15.644531, 31.428663 ], [ 18.017578, 30.826781 ], [ 19.072266, 30.297018 ], [ 19.511719, 30.600094 ], [ 20.039062, 31.052934 ], [ 19.775391, 31.802893 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.768800 ], [ 21.533203, 32.916485 ], [ 22.851562, 32.694866 ], [ 23.203125, 32.249974 ], [ 24.873047, 31.952162 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.128199 ], [ 24.873047, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.305561 ], [ 24.960938, 20.055931 ], [ 23.818359, 20.055931 ], [ 23.818359, 19.642588 ], [ 15.820312, 23.483401 ], [ 14.765625, 22.917923 ], [ 14.062500, 22.512557 ], [ 13.535156, 23.079732 ], [ 11.953125, 23.483401 ], [ 11.513672, 24.126702 ], [ 10.722656, 24.607069 ], [ 10.283203, 24.447150 ], [ 9.931641, 25.005973 ], [ 9.843750, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.667969, 26.588527 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.998532 ], [ 9.404297, 30.372875 ], [ 9.931641, 30.600094 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.428663 ], [ 11.425781, 32.398516 ], [ 11.425781, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.535156, 23.079732 ], [ 14.062500, 22.512557 ], [ 14.765625, 22.917923 ], [ 15.029297, 21.371244 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.797201 ], [ 15.820312, 20.468189 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.978733 ], [ 15.205078, 16.636192 ], [ 13.886719, 15.707663 ], [ 13.535156, 14.434680 ], [ 13.886719, 14.008696 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.414062, 12.897489 ], [ 14.150391, 12.811801 ], [ 14.150391, 12.554564 ], [ 13.974609, 12.468760 ], [ 13.271484, 13.581921 ], [ 13.007812, 13.667338 ], [ 12.216797, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.634766, 13.325485 ], [ 10.107422, 13.325485 ], [ 9.492188, 12.897489 ], [ 8.964844, 12.897489 ], [ 7.734375, 13.410994 ], [ 7.294922, 13.154376 ], [ 6.767578, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.361328, 13.923404 ], [ 4.306641, 13.752725 ], [ 4.042969, 13.581921 ], [ 3.955078, 12.983148 ], [ 3.603516, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.297068 ], [ 2.460938, 12.297068 ], [ 2.109375, 11.953349 ], [ 2.109375, 12.640338 ], [ 0.966797, 12.897489 ], [ 0.966797, 13.410994 ], [ 0.351562, 14.008696 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.944785 ], [ 0.966797, 15.029686 ], [ 1.318359, 15.368950 ], [ 3.603516, 15.623037 ], [ 3.691406, 16.214675 ], [ 4.218750, 16.888660 ], [ 4.218750, 19.228177 ], [ 5.625000, 19.642588 ], [ 8.525391, 21.616579 ], [ 11.953125, 23.483401 ], [ 13.535156, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.953125, 23.483401 ], [ 13.535156, 23.079732 ], [ 14.062500, 22.512557 ], [ 14.765625, 22.917923 ], [ 15.029297, 21.371244 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.797201 ], [ 15.820312, 20.468189 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.978733 ], [ 15.205078, 16.636192 ], [ 13.886719, 15.707663 ], [ 13.535156, 14.434680 ], [ 13.886719, 14.008696 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.414062, 12.897489 ], [ 14.150391, 12.811801 ], [ 14.150391, 12.554564 ], [ 13.974609, 12.468760 ], [ 13.271484, 13.581921 ], [ 13.007812, 13.667338 ], [ 12.216797, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.634766, 13.325485 ], [ 10.107422, 13.325485 ], [ 9.492188, 12.897489 ], [ 8.964844, 12.897489 ], [ 7.734375, 13.410994 ], [ 7.294922, 13.154376 ], [ 6.767578, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.361328, 13.923404 ], [ 4.306641, 13.752725 ], [ 4.042969, 13.581921 ], [ 3.955078, 12.983148 ], [ 3.603516, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.297068 ], [ 2.460938, 12.297068 ], [ 2.109375, 11.953349 ], [ 2.109375, 12.640338 ], [ 0.966797, 12.897489 ], [ 0.966797, 13.410994 ], [ 0.351562, 14.008696 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.944785 ], [ 0.966797, 15.029686 ], [ 1.318359, 15.368950 ], [ 3.603516, 15.623037 ], [ 3.691406, 16.214675 ], [ 4.218750, 16.888660 ], [ 4.218750, 19.228177 ], [ 5.625000, 19.642588 ], [ 8.525391, 21.616579 ], [ 11.953125, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.703125, 10.487812 ], [ 1.406250, 9.882275 ], [ 1.406250, 9.362353 ], [ 1.582031, 9.188870 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.227934 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.439453, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.754795 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.092166 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.092166 ], [ 0.878906, 11.005904 ], [ 0.703125, 10.487812 ], [ 1.406250, 9.882275 ], [ 1.406250, 9.362353 ], [ 1.582031, 9.188870 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.227934 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.439453, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.754795 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.515625, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.515625, 10.401378 ], [ 3.691406, 10.141932 ], [ 2.900391, 9.188870 ], [ 2.636719, 8.581021 ], [ 2.636719, 6.315299 ], [ 1.845703, 6.227934 ], [ 1.582031, 6.839170 ], [ 1.582031, 9.188870 ], [ 1.406250, 9.362353 ], [ 1.406250, 9.882275 ], [ 0.703125, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.178402 ], [ 1.406250, 11.609193 ], [ 1.933594, 11.695273 ], [ 2.460938, 12.297068 ], [ 2.812500, 12.297068 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.297068 ], [ 3.603516, 11.695273 ], [ 3.515625, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.515625, 10.401378 ], [ 3.691406, 10.141932 ], [ 2.900391, 9.188870 ], [ 2.636719, 8.581021 ], [ 2.636719, 6.315299 ], [ 1.845703, 6.227934 ], [ 1.582031, 6.839170 ], [ 1.582031, 9.188870 ], [ 1.406250, 9.362353 ], [ 1.406250, 9.882275 ], [ 0.703125, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.178402 ], [ 1.406250, 11.609193 ], [ 1.933594, 11.695273 ], [ 2.460938, 12.297068 ], [ 2.812500, 12.297068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.416016, 13.496473 ], [ 6.767578, 13.154376 ], [ 7.294922, 13.154376 ], [ 7.734375, 13.410994 ], [ 8.964844, 12.897489 ], [ 9.492188, 12.897489 ], [ 10.107422, 13.325485 ], [ 10.634766, 13.325485 ], [ 10.986328, 13.410994 ], [ 12.216797, 13.068777 ], [ 13.007812, 13.667338 ], [ 13.271484, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.554564 ], [ 14.501953, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 11.689453, 7.013668 ], [ 10.986328, 6.664608 ], [ 10.458984, 7.100893 ], [ 10.107422, 7.100893 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.489983 ], [ 8.437500, 4.828260 ], [ 7.382812, 4.477856 ], [ 7.031250, 4.477856 ], [ 6.679688, 4.302591 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.581021 ], [ 2.900391, 9.188870 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.401378 ], [ 3.779297, 10.746969 ], [ 3.515625, 11.350797 ], [ 3.603516, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.042969, 13.581921 ], [ 4.306641, 13.752725 ], [ 5.361328, 13.923404 ], [ 6.416016, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.361328, 13.923404 ], [ 6.416016, 13.496473 ], [ 6.767578, 13.154376 ], [ 7.294922, 13.154376 ], [ 7.734375, 13.410994 ], [ 8.964844, 12.897489 ], [ 9.492188, 12.897489 ], [ 10.107422, 13.325485 ], [ 10.634766, 13.325485 ], [ 10.986328, 13.410994 ], [ 12.216797, 13.068777 ], [ 13.007812, 13.667338 ], [ 13.271484, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.554564 ], [ 14.501953, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 11.689453, 7.013668 ], [ 10.986328, 6.664608 ], [ 10.458984, 7.100893 ], [ 10.107422, 7.100893 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.489983 ], [ 8.437500, 4.828260 ], [ 7.382812, 4.477856 ], [ 7.031250, 4.477856 ], [ 6.679688, 4.302591 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.581021 ], [ 2.900391, 9.188870 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.401378 ], [ 3.779297, 10.746969 ], [ 3.515625, 11.350797 ], [ 3.603516, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.042969, 13.581921 ], [ 4.306641, 13.752725 ], [ 5.361328, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.142502 ], [ 9.492188, 1.054628 ], [ 9.228516, 1.230374 ], [ 9.580078, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.142502 ], [ 9.492188, 1.054628 ], [ 9.228516, 1.230374 ], [ 9.580078, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.642588 ], [ 23.818359, 15.623037 ], [ 22.939453, 15.707663 ], [ 22.236328, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.838080 ], [ 22.236328, 13.410994 ], [ 21.884766, 12.640338 ], [ 22.236328, 12.726084 ], [ 22.412109, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.436955 ], [ 22.851562, 11.178402 ], [ 22.148438, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.917969, 9.535749 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.972198 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.083984, 7.536764 ], [ 15.205078, 7.449624 ], [ 15.380859, 7.710992 ], [ 14.941406, 8.841651 ], [ 14.501953, 9.015302 ], [ 13.886719, 9.622414 ], [ 14.150391, 10.055403 ], [ 15.380859, 10.055403 ], [ 14.853516, 10.919618 ], [ 14.853516, 12.297068 ], [ 14.414062, 12.897489 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 14.008696 ], [ 13.535156, 14.434680 ], [ 13.886719, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.978733 ], [ 15.644531, 19.973349 ], [ 15.820312, 20.468189 ], [ 15.468750, 20.797201 ], [ 15.468750, 21.125498 ], [ 15.029297, 21.371244 ], [ 14.765625, 22.917923 ], [ 15.820312, 23.483401 ], [ 23.818359, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.483401 ], [ 23.818359, 19.642588 ], [ 23.818359, 15.623037 ], [ 22.939453, 15.707663 ], [ 22.236328, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.838080 ], [ 22.236328, 13.410994 ], [ 21.884766, 12.640338 ], [ 22.236328, 12.726084 ], [ 22.412109, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.436955 ], [ 22.851562, 11.178402 ], [ 22.148438, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.917969, 9.535749 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.972198 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.083984, 7.536764 ], [ 15.205078, 7.449624 ], [ 15.380859, 7.710992 ], [ 14.941406, 8.841651 ], [ 14.501953, 9.015302 ], [ 13.886719, 9.622414 ], [ 14.150391, 10.055403 ], [ 15.380859, 10.055403 ], [ 14.853516, 10.919618 ], [ 14.853516, 12.297068 ], [ 14.414062, 12.897489 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 14.008696 ], [ 13.535156, 14.434680 ], [ 13.886719, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.978733 ], [ 15.644531, 19.973349 ], [ 15.820312, 20.468189 ], [ 15.468750, 20.797201 ], [ 15.468750, 21.125498 ], [ 15.029297, 21.371244 ], [ 14.765625, 22.917923 ], [ 15.820312, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 12.297068 ], [ 14.853516, 10.919618 ], [ 15.380859, 10.055403 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 14.501953, 9.015302 ], [ 14.941406, 8.841651 ], [ 15.380859, 7.710992 ], [ 14.765625, 6.489983 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.074695 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.876953, 3.951941 ], [ 8.701172, 4.390229 ], [ 8.437500, 4.565474 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.458984, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.501953, 12.125264 ], [ 14.150391, 12.554564 ], [ 14.150391, 12.811801 ], [ 14.414062, 12.897489 ], [ 14.853516, 12.297068 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.853516, 12.297068 ], [ 14.853516, 10.919618 ], [ 15.380859, 10.055403 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 14.501953, 9.015302 ], [ 14.941406, 8.841651 ], [ 15.380859, 7.710992 ], [ 14.765625, 6.489983 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.074695 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.876953, 3.951941 ], [ 8.701172, 4.390229 ], [ 8.437500, 4.565474 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.458984, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.501953, 12.125264 ], [ 14.150391, 12.554564 ], [ 14.150391, 12.811801 ], [ 14.414062, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.746969 ], [ 23.466797, 10.141932 ], [ 23.378906, 9.275622 ], [ 23.378906, 9.015302 ], [ 25.048828, 7.885147 ], [ 25.048828, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.158203, 5.615986 ], [ 27.333984, 5.266008 ], [ 26.982422, 5.178482 ], [ 25.576172, 5.266008 ], [ 25.224609, 5.178482 ], [ 25.048828, 5.003394 ], [ 24.785156, 4.915833 ], [ 24.345703, 5.178482 ], [ 23.291016, 4.653080 ], [ 22.763672, 4.740675 ], [ 22.324219, 4.039618 ], [ 20.917969, 4.390229 ], [ 19.423828, 5.090944 ], [ 18.896484, 4.740675 ], [ 18.457031, 4.214943 ], [ 18.369141, 3.513421 ], [ 17.050781, 3.776559 ], [ 16.523438, 3.250209 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.074695 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.414062, 4.740675 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.489983 ], [ 15.205078, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.972198 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 20.917969, 9.535749 ], [ 21.708984, 10.574222 ], [ 22.148438, 11.005904 ], [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.466797, 10.141932 ], [ 23.378906, 9.275622 ], [ 23.378906, 9.015302 ], [ 25.048828, 7.885147 ], [ 25.048828, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.158203, 5.615986 ], [ 27.333984, 5.266008 ], [ 26.982422, 5.178482 ], [ 25.576172, 5.266008 ], [ 25.224609, 5.178482 ], [ 25.048828, 5.003394 ], [ 24.785156, 4.915833 ], [ 24.345703, 5.178482 ], [ 23.291016, 4.653080 ], [ 22.763672, 4.740675 ], [ 22.324219, 4.039618 ], [ 20.917969, 4.390229 ], [ 19.423828, 5.090944 ], [ 18.896484, 4.740675 ], [ 18.457031, 4.214943 ], [ 18.369141, 3.513421 ], [ 17.050781, 3.776559 ], [ 16.523438, 3.250209 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.074695 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.414062, 4.740675 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.489983 ], [ 15.205078, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.972198 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 20.917969, 9.535749 ], [ 21.708984, 10.574222 ], [ 22.148438, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.169922, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.664062, 35.245619 ], [ 26.279297, 35.317366 ], [ 26.103516, 35.029996 ], [ 24.697266, 34.957995 ], [ 24.697266, 35.101934 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ], [ 24.169922, 35.389050 ] ] ], [ [ [ 26.542969, 41.574361 ], [ 26.279297, 40.979898 ], [ 26.015625, 40.847060 ], [ 24.873047, 40.979898 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 23.291016, 39.977120 ], [ 22.763672, 40.513799 ], [ 22.587891, 40.313043 ], [ 22.763672, 39.707187 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 22.412109, 36.456636 ], [ 21.621094, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.566406, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.917969, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.621094, 40.979898 ], [ 21.972656, 41.178654 ], [ 22.587891, 41.178654 ], [ 22.675781, 41.310824 ], [ 23.642578, 41.310824 ], [ 24.433594, 41.640078 ], [ 25.136719, 41.244772 ], [ 26.103516, 41.376809 ], [ 26.103516, 41.836828 ], [ 26.542969, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.642578, 35.746512 ], [ 24.169922, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.664062, 35.245619 ], [ 26.279297, 35.317366 ], [ 26.103516, 35.029996 ], [ 24.697266, 34.957995 ], [ 24.697266, 35.101934 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.542969, 41.574361 ], [ 26.279297, 40.979898 ], [ 26.015625, 40.847060 ], [ 24.873047, 40.979898 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 23.291016, 39.977120 ], [ 22.763672, 40.513799 ], [ 22.587891, 40.313043 ], [ 22.763672, 39.707187 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 22.412109, 36.456636 ], [ 21.621094, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.566406, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.917969, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.621094, 40.979898 ], [ 21.972656, 41.178654 ], [ 22.587891, 41.178654 ], [ 22.675781, 41.310824 ], [ 23.642578, 41.310824 ], [ 24.433594, 41.640078 ], [ 25.136719, 41.244772 ], [ 26.103516, 41.376809 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.837891, 35.317366 ], [ 33.925781, 35.101934 ], [ 33.398438, 35.029996 ], [ 33.310547, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.837891, 35.317366 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.837891, 35.317366 ], [ 33.925781, 35.101934 ], [ 33.398438, 35.029996 ], [ 33.310547, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 35.029996 ], [ 33.925781, 35.101934 ], [ 33.925781, 35.029996 ], [ 32.958984, 34.597042 ], [ 32.431641, 34.741612 ], [ 32.255859, 35.173808 ], [ 33.310547, 35.173808 ], [ 33.398438, 35.029996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.310547, 35.173808 ], [ 33.398438, 35.029996 ], [ 33.925781, 35.101934 ], [ 33.925781, 35.029996 ], [ 32.958984, 34.597042 ], [ 32.431641, 34.741612 ], [ 32.255859, 35.173808 ], [ 33.310547, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.640625, 31.503629 ], [ 31.904297, 30.977609 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.189453, 31.278551 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.152161 ], [ 34.101562, 27.839076 ], [ 33.837891, 27.683528 ], [ 33.134766, 28.459033 ], [ 32.343750, 29.916852 ], [ 32.255859, 29.764377 ], [ 32.695312, 28.767659 ], [ 34.101562, 26.194877 ], [ 34.716797, 25.085599 ], [ 35.683594, 23.966176 ], [ 35.419922, 23.805450 ], [ 35.507812, 23.160563 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.305561 ], [ 24.697266, 30.069094 ], [ 24.873047, 30.675715 ], [ 24.785156, 31.128199 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.653381 ], [ 28.828125, 30.902225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.653381 ], [ 28.828125, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.640625, 31.503629 ], [ 31.904297, 30.977609 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.189453, 31.278551 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.152161 ], [ 34.101562, 27.839076 ], [ 33.837891, 27.683528 ], [ 33.134766, 28.459033 ], [ 32.343750, 29.916852 ], [ 32.255859, 29.764377 ], [ 32.695312, 28.767659 ], [ 34.101562, 26.194877 ], [ 34.716797, 25.085599 ], [ 35.683594, 23.966176 ], [ 35.419922, 23.805450 ], [ 35.507812, 23.160563 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.305561 ], [ 24.697266, 30.069094 ], [ 24.873047, 30.675715 ], [ 24.785156, 31.128199 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.653381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.826172, 41.376809 ], [ 38.320312, 40.979898 ], [ 39.462891, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.484375, 41.574361 ], [ 42.539062, 41.640078 ], [ 43.505859, 41.112469 ], [ 43.681641, 40.780541 ], [ 43.593750, 40.313043 ], [ 44.384766, 40.044438 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.384766, 38.341656 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.230328 ], [ 44.208984, 37.020098 ], [ 43.857422, 37.300275 ], [ 42.714844, 37.439974 ], [ 42.275391, 37.230328 ], [ 40.605469, 37.160317 ], [ 39.462891, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.949892 ], [ 37.001953, 36.668419 ], [ 36.738281, 36.879621 ], [ 36.650391, 36.315125 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 31.640625, 36.668419 ], [ 30.585938, 36.738884 ], [ 30.322266, 36.315125 ], [ 29.619141, 36.173357 ], [ 28.652344, 36.738884 ], [ 27.597656, 36.668419 ], [ 26.982422, 37.718590 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.771312 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ] ] ], [ [ [ 27.949219, 42.032974 ], [ 28.037109, 41.640078 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.597656, 41.046217 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.979898 ], [ 26.542969, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.070312, 42.163403 ], [ 27.949219, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ], [ 38.320312, 40.979898 ], [ 39.462891, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.484375, 41.574361 ], [ 42.539062, 41.640078 ], [ 43.505859, 41.112469 ], [ 43.681641, 40.780541 ], [ 43.593750, 40.313043 ], [ 44.384766, 40.044438 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.384766, 38.341656 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.230328 ], [ 44.208984, 37.020098 ], [ 43.857422, 37.300275 ], [ 42.714844, 37.439974 ], [ 42.275391, 37.230328 ], [ 40.605469, 37.160317 ], [ 39.462891, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.949892 ], [ 37.001953, 36.668419 ], [ 36.738281, 36.879621 ], [ 36.650391, 36.315125 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 31.640625, 36.668419 ], [ 30.585938, 36.738884 ], [ 30.322266, 36.315125 ], [ 29.619141, 36.173357 ], [ 28.652344, 36.738884 ], [ 27.597656, 36.668419 ], [ 26.982422, 37.718590 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.771312 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ] ] ], [ [ [ 27.070312, 42.163403 ], [ 27.949219, 42.032974 ], [ 28.037109, 41.640078 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.597656, 41.046217 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.979898 ], [ 26.542969, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.070312, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 34.597042 ], [ 36.562500, 34.234512 ], [ 36.035156, 33.870416 ], [ 35.771484, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.419922, 33.137551 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.943360 ], [ 35.947266, 34.669359 ], [ 36.386719, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.947266, 34.669359 ], [ 36.386719, 34.597042 ], [ 36.562500, 34.234512 ], [ 36.035156, 33.870416 ], [ 35.771484, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.419922, 33.137551 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.943360 ], [ 35.947266, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.668419 ], [ 41.220703, 36.385913 ], [ 41.308594, 35.675147 ], [ 40.957031, 34.452218 ], [ 38.759766, 33.431441 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.768800 ], [ 36.035156, 33.870416 ], [ 36.562500, 34.234512 ], [ 36.386719, 34.597042 ], [ 35.947266, 34.669359 ], [ 35.859375, 35.460670 ], [ 36.123047, 35.889050 ], [ 36.650391, 36.315125 ], [ 36.738281, 36.879621 ], [ 37.001953, 36.668419 ], [ 38.144531, 36.949892 ], [ 38.671875, 36.738884 ], [ 39.462891, 36.738884 ], [ 40.605469, 37.160317 ], [ 42.275391, 37.230328 ], [ 41.835938, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.275391, 37.230328 ], [ 41.835938, 36.668419 ], [ 41.220703, 36.385913 ], [ 41.308594, 35.675147 ], [ 40.957031, 34.452218 ], [ 38.759766, 33.431441 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.768800 ], [ 36.035156, 33.870416 ], [ 36.562500, 34.234512 ], [ 36.386719, 34.597042 ], [ 35.947266, 34.669359 ], [ 35.859375, 35.460670 ], [ 36.123047, 35.889050 ], [ 36.650391, 36.315125 ], [ 36.738281, 36.879621 ], [ 37.001953, 36.668419 ], [ 38.144531, 36.949892 ], [ 38.671875, 36.738884 ], [ 39.462891, 36.738884 ], [ 40.605469, 37.160317 ], [ 42.275391, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 37.300275 ], [ 44.208984, 37.020098 ], [ 44.736328, 37.230328 ], [ 45.351562, 36.031332 ], [ 46.054688, 35.746512 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.813803 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.063924 ], [ 47.285156, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.524413 ], [ 48.515625, 29.993002 ], [ 47.285156, 30.069094 ], [ 46.494141, 29.152161 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.203405 ], [ 40.341797, 31.952162 ], [ 39.111328, 32.175612 ], [ 38.759766, 33.431441 ], [ 40.957031, 34.452218 ], [ 41.308594, 35.675147 ], [ 41.220703, 36.385913 ], [ 41.835938, 36.668419 ], [ 42.275391, 37.230328 ], [ 42.714844, 37.439974 ], [ 43.857422, 37.300275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.714844, 37.439974 ], [ 43.857422, 37.300275 ], [ 44.208984, 37.020098 ], [ 44.736328, 37.230328 ], [ 45.351562, 36.031332 ], [ 46.054688, 35.746512 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.813803 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.063924 ], [ 47.285156, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.524413 ], [ 48.515625, 29.993002 ], [ 47.285156, 30.069094 ], [ 46.494141, 29.152161 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.203405 ], [ 40.341797, 31.952162 ], [ 39.111328, 32.175612 ], [ 38.759766, 33.431441 ], [ 40.957031, 34.452218 ], [ 41.308594, 35.675147 ], [ 41.220703, 36.385913 ], [ 41.835938, 36.668419 ], [ 42.275391, 37.230328 ], [ 42.714844, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.683594, 32.768800 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.892578, 31.877558 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.332031, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.892578, 31.877558 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.332031, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.771484, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.332031, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.892578, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.877558 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.332031, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.892578, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 32.175612 ], [ 38.935547, 32.026706 ], [ 37.001953, 31.578535 ], [ 37.968750, 30.524413 ], [ 37.617188, 30.372875 ], [ 37.441406, 30.069094 ], [ 36.738281, 29.916852 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.768800 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.431441 ], [ 39.111328, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.431441 ], [ 39.111328, 32.175612 ], [ 38.935547, 32.026706 ], [ 37.001953, 31.578535 ], [ 37.968750, 30.524413 ], [ 37.617188, 30.372875 ], [ 37.441406, 30.069094 ], [ 36.738281, 29.916852 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.768800 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.431441 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.043491 ], [ 36.914062, 20.879343 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.062312 ], [ 37.880859, 17.476432 ], [ 37.089844, 17.308688 ], [ 36.826172, 16.972741 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.210938, 13.581921 ], [ 35.859375, 12.640338 ], [ 35.244141, 12.125264 ], [ 34.716797, 10.919618 ], [ 34.189453, 10.660608 ], [ 33.925781, 9.535749 ], [ 33.750000, 9.535749 ], [ 33.662109, 10.401378 ], [ 33.134766, 10.746969 ], [ 33.046875, 11.523088 ], [ 33.134766, 12.211180 ], [ 32.695312, 12.297068 ], [ 32.607422, 12.039321 ], [ 31.992188, 12.039321 ], [ 32.255859, 11.695273 ], [ 32.343750, 11.092166 ], [ 31.289062, 9.882275 ], [ 30.761719, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.531250, 10.141932 ], [ 29.443359, 9.795678 ], [ 28.916016, 9.622414 ], [ 28.916016, 9.449062 ], [ 27.949219, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.709057 ], [ 26.718750, 9.535749 ], [ 26.455078, 9.622414 ], [ 25.751953, 10.487812 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.818359, 8.667918 ], [ 23.378906, 9.015302 ], [ 23.378906, 9.275622 ], [ 23.466797, 10.141932 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.436955 ], [ 22.500000, 11.695273 ], [ 22.412109, 12.297068 ], [ 22.236328, 12.726084 ], [ 21.884766, 12.640338 ], [ 22.236328, 13.410994 ], [ 22.148438, 13.838080 ], [ 22.500000, 14.093957 ], [ 22.236328, 14.349548 ], [ 22.939453, 15.707663 ], [ 23.818359, 15.623037 ], [ 23.818359, 20.055931 ], [ 24.960938, 20.055931 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 36.914062, 20.879343 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.062312 ], [ 37.880859, 17.476432 ], [ 37.089844, 17.308688 ], [ 36.826172, 16.972741 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.210938, 13.581921 ], [ 35.859375, 12.640338 ], [ 35.244141, 12.125264 ], [ 34.716797, 10.919618 ], [ 34.189453, 10.660608 ], [ 33.925781, 9.535749 ], [ 33.750000, 9.535749 ], [ 33.662109, 10.401378 ], [ 33.134766, 10.746969 ], [ 33.046875, 11.523088 ], [ 33.134766, 12.211180 ], [ 32.695312, 12.297068 ], [ 32.607422, 12.039321 ], [ 31.992188, 12.039321 ], [ 32.255859, 11.695273 ], [ 32.343750, 11.092166 ], [ 31.289062, 9.882275 ], [ 30.761719, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.531250, 10.141932 ], [ 29.443359, 9.795678 ], [ 28.916016, 9.622414 ], [ 28.916016, 9.449062 ], [ 27.949219, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.709057 ], [ 26.718750, 9.535749 ], [ 26.455078, 9.622414 ], [ 25.751953, 10.487812 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.818359, 8.667918 ], [ 23.378906, 9.015302 ], [ 23.378906, 9.275622 ], [ 23.466797, 10.141932 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.436955 ], [ 22.500000, 11.695273 ], [ 22.412109, 12.297068 ], [ 22.236328, 12.726084 ], [ 21.884766, 12.640338 ], [ 22.236328, 13.410994 ], [ 22.148438, 13.838080 ], [ 22.500000, 14.093957 ], [ 22.236328, 14.349548 ], [ 22.939453, 15.707663 ], [ 23.818359, 15.623037 ], [ 23.818359, 20.055931 ], [ 24.960938, 20.055931 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.134766, 12.211180 ], [ 33.046875, 11.523088 ], [ 33.134766, 10.746969 ], [ 33.662109, 10.401378 ], [ 33.750000, 9.535749 ], [ 33.925781, 9.535749 ], [ 33.925781, 8.754795 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 32.871094, 7.798079 ], [ 33.486328, 7.798079 ], [ 34.013672, 7.275292 ], [ 34.189453, 6.839170 ], [ 34.628906, 6.664608 ], [ 35.244141, 5.528511 ], [ 33.310547, 3.864255 ], [ 32.607422, 3.864255 ], [ 31.816406, 3.601142 ], [ 31.201172, 3.864255 ], [ 30.761719, 3.513421 ], [ 29.882812, 4.214943 ], [ 29.707031, 4.653080 ], [ 29.091797, 4.390229 ], [ 28.652344, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.477856 ], [ 27.158203, 5.615986 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.048828, 7.536764 ], [ 25.048828, 7.885147 ], [ 23.818359, 8.667918 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.487812 ], [ 26.455078, 9.622414 ], [ 26.718750, 9.535749 ], [ 27.070312, 9.709057 ], [ 27.773438, 9.622414 ], [ 27.949219, 9.449062 ], [ 28.916016, 9.449062 ], [ 28.916016, 9.622414 ], [ 29.443359, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.970703, 10.314919 ], [ 30.761719, 9.709057 ], [ 31.289062, 9.882275 ], [ 32.343750, 11.092166 ], [ 32.255859, 11.695273 ], [ 31.992188, 12.039321 ], [ 32.607422, 12.039321 ], [ 32.695312, 12.297068 ], [ 33.134766, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, 12.297068 ], [ 33.134766, 12.211180 ], [ 33.046875, 11.523088 ], [ 33.134766, 10.746969 ], [ 33.662109, 10.401378 ], [ 33.750000, 9.535749 ], [ 33.925781, 9.535749 ], [ 33.925781, 8.754795 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 32.871094, 7.798079 ], [ 33.486328, 7.798079 ], [ 34.013672, 7.275292 ], [ 34.189453, 6.839170 ], [ 34.628906, 6.664608 ], [ 35.244141, 5.528511 ], [ 33.310547, 3.864255 ], [ 32.607422, 3.864255 ], [ 31.816406, 3.601142 ], [ 31.201172, 3.864255 ], [ 30.761719, 3.513421 ], [ 29.882812, 4.214943 ], [ 29.707031, 4.653080 ], [ 29.091797, 4.390229 ], [ 28.652344, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.477856 ], [ 27.158203, 5.615986 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.048828, 7.536764 ], [ 25.048828, 7.885147 ], [ 23.818359, 8.667918 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.487812 ], [ 26.455078, 9.622414 ], [ 26.718750, 9.535749 ], [ 27.070312, 9.709057 ], [ 27.773438, 9.622414 ], [ 27.949219, 9.449062 ], [ 28.916016, 9.449062 ], [ 28.916016, 9.622414 ], [ 29.443359, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.970703, 10.314919 ], [ 30.761719, 9.709057 ], [ 31.289062, 9.882275 ], [ 32.343750, 11.092166 ], [ 32.255859, 11.695273 ], [ 31.992188, 12.039321 ], [ 32.607422, 12.039321 ], [ 32.695312, 12.297068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.601142 ], [ 34.980469, 1.933227 ], [ 33.837891, 0.175781 ], [ 33.837891, -0.878872 ], [ 31.816406, -0.966751 ], [ 30.761719, -0.966751 ], [ 29.794922, -1.406109 ], [ 29.531250, -1.318243 ], [ 29.531250, -0.527336 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.615223 ], [ 30.410156, 1.669686 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.372369 ], [ 30.761719, 3.513421 ], [ 31.201172, 3.864255 ], [ 31.816406, 3.601142 ], [ 32.607422, 3.864255 ], [ 33.310547, 3.864255 ], [ 33.925781, 4.302591 ], [ 34.453125, 3.601142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 4.302591 ], [ 34.453125, 3.601142 ], [ 34.980469, 1.933227 ], [ 33.837891, 0.175781 ], [ 33.837891, -0.878872 ], [ 31.816406, -0.966751 ], [ 30.761719, -0.966751 ], [ 29.794922, -1.406109 ], [ 29.531250, -1.318243 ], [ 29.531250, -0.527336 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.615223 ], [ 30.410156, 1.669686 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.372369 ], [ 30.761719, 3.513421 ], [ 31.201172, 3.864255 ], [ 31.816406, 3.601142 ], [ 32.607422, 3.864255 ], [ 33.310547, 3.864255 ], [ 33.925781, 4.302591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.935547, 16.888660 ], [ 39.199219, 15.961329 ], [ 41.132812, 14.519780 ], [ 42.539062, 13.068777 ], [ 43.066406, 12.726084 ], [ 42.714844, 12.468760 ], [ 42.275391, 12.554564 ], [ 40.869141, 14.179186 ], [ 39.990234, 14.519780 ], [ 39.287109, 14.604847 ], [ 39.023438, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 15.029686 ], [ 37.529297, 14.264383 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.826172, 16.972741 ], [ 37.089844, 17.308688 ], [ 37.880859, 17.476432 ], [ 38.408203, 18.062312 ], [ 38.935547, 16.888660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.062312 ], [ 38.935547, 16.888660 ], [ 39.199219, 15.961329 ], [ 41.132812, 14.519780 ], [ 42.539062, 13.068777 ], [ 43.066406, 12.726084 ], [ 42.714844, 12.468760 ], [ 42.275391, 12.554564 ], [ 40.869141, 14.179186 ], [ 39.990234, 14.519780 ], [ 39.287109, 14.604847 ], [ 39.023438, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 15.029686 ], [ 37.529297, 14.264383 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.826172, 16.972741 ], [ 37.089844, 17.308688 ], [ 37.880859, 17.476432 ], [ 38.408203, 18.062312 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.468760 ], [ 43.242188, 12.039321 ], [ 42.714844, 11.781325 ], [ 43.066406, 11.523088 ], [ 42.714844, 11.005904 ], [ 42.539062, 11.178402 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.695273 ], [ 42.275391, 12.554564 ], [ 42.714844, 12.468760 ], [ 43.066406, 12.726084 ], [ 43.242188, 12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.242188, 12.468760 ], [ 43.242188, 12.039321 ], [ 42.714844, 11.781325 ], [ 43.066406, 11.523088 ], [ 42.714844, 11.005904 ], [ 42.539062, 11.178402 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.695273 ], [ 42.275391, 12.554564 ], [ 42.714844, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 5.353521 ], [ 35.771484, 4.828260 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.056641, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.693359, 4.302591 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.790990 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.021065 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.726562, -3.601142 ], [ 39.550781, -4.302591 ], [ 39.199219, -4.653080 ], [ 37.705078, -3.601142 ], [ 37.617188, -3.074695 ], [ 33.837891, -0.878872 ], [ 33.837891, 0.175781 ], [ 34.980469, 1.933227 ], [ 34.453125, 3.601142 ], [ 33.925781, 4.302591 ], [ 35.244141, 5.528511 ], [ 35.771484, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.244141, 5.528511 ], [ 35.771484, 5.353521 ], [ 35.771484, 4.828260 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.056641, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.693359, 4.302591 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.790990 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.021065 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.726562, -3.601142 ], [ 39.550781, -4.302591 ], [ 39.199219, -4.653080 ], [ 37.705078, -3.601142 ], [ 37.617188, -3.074695 ], [ 33.837891, -0.878872 ], [ 33.837891, 0.175781 ], [ 34.980469, 1.933227 ], [ 34.453125, 3.601142 ], [ 33.925781, 4.302591 ], [ 35.244141, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.023438, 14.774883 ], [ 39.287109, 14.604847 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.179186 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.660156, 11.695273 ], [ 41.748047, 11.092166 ], [ 42.539062, 11.178402 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 46.933594, 8.059230 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 42.714844, 4.302591 ], [ 42.099609, 4.302591 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.771484, 4.828260 ], [ 35.771484, 5.353521 ], [ 35.244141, 5.528511 ], [ 34.628906, 6.664608 ], [ 34.189453, 6.839170 ], [ 34.013672, 7.275292 ], [ 33.486328, 7.798079 ], [ 32.871094, 7.798079 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.925781, 8.754795 ], [ 33.925781, 9.622414 ], [ 34.189453, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.640338 ], [ 36.210938, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 15.029686 ], [ 38.496094, 14.519780 ], [ 39.023438, 14.774883 ], [ 39.287109, 14.604847 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.179186 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.660156, 11.695273 ], [ 41.748047, 11.092166 ], [ 42.539062, 11.178402 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 46.933594, 8.059230 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 42.714844, 4.302591 ], [ 42.099609, 4.302591 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.771484, 4.828260 ], [ 35.771484, 5.353521 ], [ 35.244141, 5.528511 ], [ 34.628906, 6.664608 ], [ 34.189453, 6.839170 ], [ 34.013672, 7.275292 ], [ 33.486328, 7.798079 ], [ 32.871094, 7.798079 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.925781, 8.754795 ], [ 33.925781, 9.622414 ], [ 34.189453, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.640338 ], [ 36.210938, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.103516, 54.162434 ], [ 72.158203, 54.418930 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.540307 ], [ 74.355469, 53.592505 ], [ 76.816406, 54.521081 ], [ 76.464844, 54.213861 ], [ 77.783203, 53.435719 ], [ 79.980469, 50.903033 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.847573 ], [ 83.320312, 51.124213 ], [ 83.847656, 50.903033 ], [ 84.375000, 50.345460 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.724479 ], [ 86.748047, 49.837982 ], [ 87.275391, 49.267805 ], [ 86.572266, 48.574790 ], [ 85.693359, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.078125, 47.040182 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.583290 ], [ 81.914062, 45.336702 ], [ 79.892578, 44.964798 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.553080 ], [ 79.101562, 42.875964 ], [ 75.937500, 43.004647 ], [ 75.585938, 42.940339 ], [ 74.179688, 43.325178 ], [ 73.564453, 43.133061 ], [ 73.476562, 42.553080 ], [ 71.806641, 42.875964 ], [ 71.103516, 42.747012 ], [ 70.927734, 42.293564 ], [ 70.312500, 42.098222 ], [ 68.994141, 41.442726 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 67.939453, 41.178654 ], [ 66.708984, 41.178654 ], [ 66.445312, 42.032974 ], [ 66.005859, 42.032974 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.771094 ], [ 61.962891, 43.516689 ], [ 60.996094, 44.465151 ], [ 58.447266, 45.644768 ], [ 55.898438, 45.026950 ], [ 55.898438, 41.310824 ], [ 55.371094, 41.310824 ], [ 54.667969, 42.098222 ], [ 54.052734, 42.358544 ], [ 52.910156, 42.163403 ], [ 52.470703, 41.836828 ], [ 52.382812, 42.032974 ], [ 52.646484, 42.488302 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.087585 ], [ 50.273438, 44.339565 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.119141, 45.460131 ], [ 52.998047, 45.274886 ], [ 53.173828, 46.255847 ], [ 52.998047, 46.860191 ], [ 52.031250, 46.860191 ], [ 51.152344, 47.100045 ], [ 50.009766, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.515625, 46.619261 ], [ 48.691406, 47.100045 ], [ 47.988281, 47.754098 ], [ 47.285156, 47.754098 ], [ 46.406250, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.669922, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.515625, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.712891, 51.727028 ], [ 52.294922, 51.727028 ], [ 55.634766, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.589844, 50.569283 ], [ 59.853516, 50.847573 ], [ 61.259766, 50.847573 ], [ 61.523438, 51.289406 ], [ 59.941406, 51.998410 ], [ 60.908203, 52.482780 ], [ 60.732422, 52.749594 ], [ 61.699219, 53.014783 ], [ 60.908203, 53.696706 ], [ 61.435547, 54.007769 ], [ 65.126953, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.115234, 54.977614 ], [ 68.994141, 55.429013 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.994141, 55.429013 ], [ 70.839844, 55.178868 ], [ 71.103516, 54.162434 ], [ 72.158203, 54.418930 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.540307 ], [ 74.355469, 53.592505 ], [ 76.816406, 54.521081 ], [ 76.464844, 54.213861 ], [ 77.783203, 53.435719 ], [ 79.980469, 50.903033 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.847573 ], [ 83.320312, 51.124213 ], [ 83.847656, 50.903033 ], [ 84.375000, 50.345460 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.724479 ], [ 86.748047, 49.837982 ], [ 87.275391, 49.267805 ], [ 86.572266, 48.574790 ], [ 85.693359, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.078125, 47.040182 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.583290 ], [ 81.914062, 45.336702 ], [ 79.892578, 44.964798 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.553080 ], [ 79.101562, 42.875964 ], [ 75.937500, 43.004647 ], [ 75.585938, 42.940339 ], [ 74.179688, 43.325178 ], [ 73.564453, 43.133061 ], [ 73.476562, 42.553080 ], [ 71.806641, 42.875964 ], [ 71.103516, 42.747012 ], [ 70.927734, 42.293564 ], [ 70.312500, 42.098222 ], [ 68.994141, 41.442726 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 67.939453, 41.178654 ], [ 66.708984, 41.178654 ], [ 66.445312, 42.032974 ], [ 66.005859, 42.032974 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.771094 ], [ 61.962891, 43.516689 ], [ 60.996094, 44.465151 ], [ 58.447266, 45.644768 ], [ 55.898438, 45.026950 ], [ 55.898438, 41.310824 ], [ 55.371094, 41.310824 ], [ 54.667969, 42.098222 ], [ 54.052734, 42.358544 ], [ 52.910156, 42.163403 ], [ 52.470703, 41.836828 ], [ 52.382812, 42.032974 ], [ 52.646484, 42.488302 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.087585 ], [ 50.273438, 44.339565 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.119141, 45.460131 ], [ 52.998047, 45.274886 ], [ 53.173828, 46.255847 ], [ 52.998047, 46.860191 ], [ 52.031250, 46.860191 ], [ 51.152344, 47.100045 ], [ 50.009766, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.515625, 46.619261 ], [ 48.691406, 47.100045 ], [ 47.988281, 47.754098 ], [ 47.285156, 47.754098 ], [ 46.406250, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.669922, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.515625, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.712891, 51.727028 ], [ 52.294922, 51.727028 ], [ 55.634766, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.589844, 50.569283 ], [ 59.853516, 50.847573 ], [ 61.259766, 50.847573 ], [ 61.523438, 51.289406 ], [ 59.941406, 51.998410 ], [ 60.908203, 52.482780 ], [ 60.732422, 52.749594 ], [ 61.699219, 53.014783 ], [ 60.908203, 53.696706 ], [ 61.435547, 54.007769 ], [ 65.126953, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.115234, 54.977614 ], [ 68.994141, 55.429013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.996094, 44.465151 ], [ 61.962891, 43.516689 ], [ 64.863281, 43.771094 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.708984, 41.178654 ], [ 67.939453, 41.178654 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.994141, 41.442726 ], [ 70.312500, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.191406, 42.228517 ], [ 70.400391, 41.574361 ], [ 71.103516, 41.178654 ], [ 71.806641, 41.442726 ], [ 73.037109, 40.913513 ], [ 71.718750, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.400391, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.780541 ], [ 68.994141, 40.111689 ], [ 68.466797, 39.571822 ], [ 67.675781, 39.639538 ], [ 67.412109, 39.164141 ], [ 68.115234, 38.959409 ], [ 68.378906, 38.203655 ], [ 67.763672, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.445312, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.959409 ], [ 62.314453, 40.111689 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.310824 ], [ 60.380859, 41.244772 ], [ 60.029297, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.811522 ], [ 57.744141, 42.228517 ], [ 56.865234, 41.836828 ], [ 57.041016, 41.376809 ], [ 55.898438, 41.310824 ], [ 55.898438, 45.026950 ], [ 58.447266, 45.644768 ], [ 60.996094, 44.465151 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.447266, 45.644768 ], [ 60.996094, 44.465151 ], [ 61.962891, 43.516689 ], [ 64.863281, 43.771094 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.708984, 41.178654 ], [ 67.939453, 41.178654 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.994141, 41.442726 ], [ 70.312500, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.191406, 42.228517 ], [ 70.400391, 41.574361 ], [ 71.103516, 41.178654 ], [ 71.806641, 41.442726 ], [ 73.037109, 40.913513 ], [ 71.718750, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.400391, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.780541 ], [ 68.994141, 40.111689 ], [ 68.466797, 39.571822 ], [ 67.675781, 39.639538 ], [ 67.412109, 39.164141 ], [ 68.115234, 38.959409 ], [ 68.378906, 38.203655 ], [ 67.763672, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.445312, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.959409 ], [ 62.314453, 40.111689 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.310824 ], [ 60.380859, 41.244772 ], [ 60.029297, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.811522 ], [ 57.744141, 42.228517 ], [ 56.865234, 41.836828 ], [ 57.041016, 41.376809 ], [ 55.898438, 41.310824 ], [ 55.898438, 45.026950 ], [ 58.447266, 45.644768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.585938, 42.940339 ], [ 75.937500, 43.004647 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.553080 ], [ 80.244141, 42.358544 ], [ 80.068359, 42.163403 ], [ 78.486328, 41.640078 ], [ 78.134766, 41.244772 ], [ 76.904297, 41.112469 ], [ 76.464844, 40.446947 ], [ 75.410156, 40.580585 ], [ 74.707031, 40.380028 ], [ 73.740234, 39.909736 ], [ 73.916016, 39.707187 ], [ 73.652344, 39.436193 ], [ 71.718750, 39.300299 ], [ 70.488281, 39.639538 ], [ 69.433594, 39.571822 ], [ 69.521484, 40.111689 ], [ 70.576172, 39.977120 ], [ 70.927734, 40.245992 ], [ 71.718750, 40.178873 ], [ 73.037109, 40.913513 ], [ 71.806641, 41.442726 ], [ 71.103516, 41.178654 ], [ 70.400391, 41.574361 ], [ 71.191406, 42.228517 ], [ 70.927734, 42.293564 ], [ 71.103516, 42.747012 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.553080 ], [ 73.564453, 43.133061 ], [ 74.179688, 43.325178 ], [ 75.585938, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.585938, 42.940339 ], [ 75.937500, 43.004647 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.553080 ], [ 80.244141, 42.358544 ], [ 80.068359, 42.163403 ], [ 78.486328, 41.640078 ], [ 78.134766, 41.244772 ], [ 76.904297, 41.112469 ], [ 76.464844, 40.446947 ], [ 75.410156, 40.580585 ], [ 74.707031, 40.380028 ], [ 73.740234, 39.909736 ], [ 73.916016, 39.707187 ], [ 73.652344, 39.436193 ], [ 71.718750, 39.300299 ], [ 70.488281, 39.639538 ], [ 69.433594, 39.571822 ], [ 69.521484, 40.111689 ], [ 70.576172, 39.977120 ], [ 70.927734, 40.245992 ], [ 71.718750, 40.178873 ], [ 73.037109, 40.913513 ], [ 71.806641, 41.442726 ], [ 71.103516, 41.178654 ], [ 70.400391, 41.574361 ], [ 71.191406, 42.228517 ], [ 70.927734, 42.293564 ], [ 71.103516, 42.747012 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.553080 ], [ 73.564453, 43.133061 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 41.046217 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.527344, 39.909736 ], [ 46.406250, 39.504041 ], [ 46.494141, 38.822591 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.774769 ], [ 44.736328, 39.774769 ], [ 44.384766, 40.044438 ], [ 43.593750, 40.313043 ], [ 43.681641, 40.780541 ], [ 43.505859, 41.112469 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.046217 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 41.310824 ], [ 45.175781, 41.046217 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.527344, 39.909736 ], [ 46.406250, 39.504041 ], [ 46.494141, 38.822591 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.774769 ], [ 44.736328, 39.774769 ], [ 44.384766, 40.044438 ], [ 43.593750, 40.313043 ], [ 43.681641, 40.780541 ], [ 43.505859, 41.112469 ], [ 44.912109, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.900391, 41.442726 ], [ 48.515625, 41.836828 ], [ 49.570312, 40.580585 ], [ 50.009766, 40.580585 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 49.218750, 39.095963 ], [ 48.779297, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.571822 ], [ 46.494141, 38.822591 ], [ 46.406250, 39.504041 ], [ 45.527344, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.847060 ], [ 45.175781, 41.046217 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.442726 ], [ 45.878906, 41.178654 ], [ 46.494141, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.142578, 41.771312 ], [ 46.318359, 41.902277 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.736328, 39.774769 ], [ 45.000000, 39.774769 ], [ 45.263672, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.318359, 41.902277 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.900391, 41.442726 ], [ 48.515625, 41.836828 ], [ 49.570312, 40.580585 ], [ 50.009766, 40.580585 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 49.218750, 39.095963 ], [ 48.779297, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.571822 ], [ 46.494141, 38.822591 ], [ 46.406250, 39.504041 ], [ 45.527344, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.847060 ], [ 45.175781, 41.046217 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.442726 ], [ 45.878906, 41.178654 ], [ 46.494141, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.142578, 41.771312 ], [ 46.318359, 41.902277 ] ] ], [ [ [ 45.000000, 39.774769 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.736328, 39.774769 ], [ 45.000000, 39.774769 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.822591 ], [ 47.636719, 39.571822 ], [ 47.988281, 39.639538 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.130859, 37.649034 ], [ 50.097656, 37.439974 ], [ 50.800781, 36.879621 ], [ 52.207031, 36.738884 ], [ 53.789062, 37.020098 ], [ 53.876953, 37.230328 ], [ 54.755859, 37.439974 ], [ 55.458984, 37.996163 ], [ 56.162109, 37.996163 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.065392 ], [ 58.359375, 37.579413 ], [ 59.150391, 37.439974 ], [ 60.292969, 36.597889 ], [ 61.083984, 36.527295 ], [ 61.171875, 35.675147 ], [ 60.468750, 33.724340 ], [ 60.908203, 33.578015 ], [ 60.468750, 32.990236 ], [ 60.820312, 32.249974 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.428663 ], [ 61.699219, 30.751278 ], [ 60.820312, 29.840644 ], [ 61.699219, 28.767659 ], [ 62.666016, 28.304381 ], [ 62.753906, 27.449790 ], [ 63.193359, 27.293689 ], [ 63.281250, 26.824071 ], [ 61.787109, 26.273714 ], [ 61.435547, 25.085599 ], [ 57.392578, 25.799891 ], [ 56.953125, 26.980829 ], [ 56.425781, 27.215556 ], [ 55.722656, 26.980829 ], [ 54.667969, 26.509905 ], [ 53.437500, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.916767 ], [ 50.097656, 30.221102 ], [ 49.570312, 29.993002 ], [ 48.867188, 30.372875 ], [ 48.515625, 29.993002 ], [ 47.988281, 30.524413 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.812500, 31.728167 ], [ 47.285156, 32.472695 ], [ 46.054688, 33.063924 ], [ 45.351562, 34.016242 ], [ 45.615234, 34.813803 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.746512 ], [ 45.351562, 36.031332 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.341656 ], [ 44.033203, 39.436193 ], [ 44.736328, 39.774769 ], [ 44.912109, 39.368279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.736328, 39.774769 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.822591 ], [ 47.636719, 39.571822 ], [ 47.988281, 39.639538 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.130859, 37.649034 ], [ 50.097656, 37.439974 ], [ 50.800781, 36.879621 ], [ 52.207031, 36.738884 ], [ 53.789062, 37.020098 ], [ 53.876953, 37.230328 ], [ 54.755859, 37.439974 ], [ 55.458984, 37.996163 ], [ 56.162109, 37.996163 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.065392 ], [ 58.359375, 37.579413 ], [ 59.150391, 37.439974 ], [ 60.292969, 36.597889 ], [ 61.083984, 36.527295 ], [ 61.171875, 35.675147 ], [ 60.468750, 33.724340 ], [ 60.908203, 33.578015 ], [ 60.468750, 32.990236 ], [ 60.820312, 32.249974 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.428663 ], [ 61.699219, 30.751278 ], [ 60.820312, 29.840644 ], [ 61.699219, 28.767659 ], [ 62.666016, 28.304381 ], [ 62.753906, 27.449790 ], [ 63.193359, 27.293689 ], [ 63.281250, 26.824071 ], [ 61.787109, 26.273714 ], [ 61.435547, 25.085599 ], [ 57.392578, 25.799891 ], [ 56.953125, 26.980829 ], [ 56.425781, 27.215556 ], [ 55.722656, 26.980829 ], [ 54.667969, 26.509905 ], [ 53.437500, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.916767 ], [ 50.097656, 30.221102 ], [ 49.570312, 29.993002 ], [ 48.867188, 30.372875 ], [ 48.515625, 29.993002 ], [ 47.988281, 30.524413 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.812500, 31.728167 ], [ 47.285156, 32.472695 ], [ 46.054688, 33.063924 ], [ 45.351562, 34.016242 ], [ 45.615234, 34.813803 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.746512 ], [ 45.351562, 36.031332 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.341656 ], [ 44.033203, 39.436193 ], [ 44.736328, 39.774769 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.900391, 29.993002 ], [ 48.339844, 28.613459 ], [ 47.636719, 28.536275 ], [ 47.373047, 29.075375 ], [ 46.494141, 29.152161 ], [ 47.285156, 30.069094 ], [ 47.900391, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.900391, 29.993002 ], [ 48.339844, 28.613459 ], [ 47.636719, 28.536275 ], [ 47.373047, 29.075375 ], [ 46.494141, 29.152161 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.341797, 31.952162 ], [ 41.835938, 31.203405 ], [ 44.648438, 29.228890 ], [ 47.373047, 29.075375 ], [ 47.636719, 28.536275 ], [ 48.339844, 28.613459 ], [ 48.779297, 27.761330 ], [ 49.218750, 27.527758 ], [ 49.394531, 27.137368 ], [ 50.097656, 26.745610 ], [ 50.097656, 25.958045 ], [ 50.185547, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.064453, 24.607069 ], [ 51.328125, 24.686952 ], [ 51.943359, 23.079732 ], [ 54.931641, 22.512557 ], [ 55.195312, 22.755921 ], [ 55.634766, 22.024546 ], [ 54.931641, 20.055931 ], [ 51.943359, 19.062118 ], [ 49.042969, 18.646245 ], [ 48.164062, 18.229351 ], [ 47.460938, 17.140790 ], [ 46.933594, 16.972741 ], [ 46.669922, 17.308688 ], [ 46.318359, 17.308688 ], [ 45.175781, 17.476432 ], [ 43.769531, 17.392579 ], [ 43.330078, 17.644022 ], [ 43.066406, 17.140790 ], [ 43.154297, 16.720385 ], [ 42.714844, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.275391, 17.140790 ], [ 42.187500, 17.476432 ], [ 41.748047, 17.895114 ], [ 41.220703, 18.729502 ], [ 40.869141, 19.559790 ], [ 40.166016, 20.220966 ], [ 39.726562, 20.385825 ], [ 39.111328, 21.371244 ], [ 39.023438, 22.593726 ], [ 38.408203, 23.725012 ], [ 37.968750, 24.126702 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.878994 ], [ 36.210938, 26.588527 ], [ 35.068359, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.892578, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.916852 ], [ 37.441406, 30.069094 ], [ 37.617188, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.578535 ], [ 38.935547, 32.026706 ], [ 39.111328, 32.175612 ], [ 40.341797, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 32.175612 ], [ 40.341797, 31.952162 ], [ 41.835938, 31.203405 ], [ 44.648438, 29.228890 ], [ 47.373047, 29.075375 ], [ 47.636719, 28.536275 ], [ 48.339844, 28.613459 ], [ 48.779297, 27.761330 ], [ 49.218750, 27.527758 ], [ 49.394531, 27.137368 ], [ 50.097656, 26.745610 ], [ 50.097656, 25.958045 ], [ 50.185547, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.064453, 24.607069 ], [ 51.328125, 24.686952 ], [ 51.943359, 23.079732 ], [ 54.931641, 22.512557 ], [ 55.195312, 22.755921 ], [ 55.634766, 22.024546 ], [ 54.931641, 20.055931 ], [ 51.943359, 19.062118 ], [ 49.042969, 18.646245 ], [ 48.164062, 18.229351 ], [ 47.460938, 17.140790 ], [ 46.933594, 16.972741 ], [ 46.669922, 17.308688 ], [ 46.318359, 17.308688 ], [ 45.175781, 17.476432 ], [ 43.769531, 17.392579 ], [ 43.330078, 17.644022 ], [ 43.066406, 17.140790 ], [ 43.154297, 16.720385 ], [ 42.714844, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.275391, 17.140790 ], [ 42.187500, 17.476432 ], [ 41.748047, 17.895114 ], [ 41.220703, 18.729502 ], [ 40.869141, 19.559790 ], [ 40.166016, 20.220966 ], [ 39.726562, 20.385825 ], [ 39.111328, 21.371244 ], [ 39.023438, 22.593726 ], [ 38.408203, 23.725012 ], [ 37.968750, 24.126702 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.878994 ], [ 36.210938, 26.588527 ], [ 35.068359, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.892578, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.916852 ], [ 37.441406, 30.069094 ], [ 37.617188, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.578535 ], [ 38.935547, 32.026706 ], [ 39.111328, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.503906, 25.878994 ], [ 51.591797, 25.244696 ], [ 51.328125, 24.686952 ], [ 51.064453, 24.607069 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.240234, 26.115986 ], [ 51.503906, 25.878994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.240234, 26.115986 ], [ 51.503906, 25.878994 ], [ 51.591797, 25.244696 ], [ 51.328125, 24.686952 ], [ 51.064453, 24.607069 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.240234, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.722656, 24.287027 ], [ 55.898438, 24.206890 ], [ 55.458984, 23.966176 ], [ 55.458984, 23.563987 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 51.679688, 24.367114 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.722656, 24.287027 ], [ 55.898438, 24.206890 ], [ 55.458984, 23.966176 ], [ 55.458984, 23.563987 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 51.679688, 24.367114 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, 42.163403 ], [ 54.052734, 42.358544 ], [ 54.667969, 42.098222 ], [ 55.371094, 41.310824 ], [ 57.041016, 41.376809 ], [ 56.865234, 41.836828 ], [ 57.744141, 42.228517 ], [ 58.623047, 42.811522 ], [ 59.941406, 42.228517 ], [ 60.029297, 41.442726 ], [ 60.380859, 41.244772 ], [ 61.523438, 41.310824 ], [ 61.875000, 41.112469 ], [ 62.314453, 40.111689 ], [ 64.160156, 38.959409 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.445312, 37.370157 ], [ 66.181641, 37.439974 ], [ 65.742188, 37.718590 ], [ 65.566406, 37.370157 ], [ 64.687500, 37.160317 ], [ 64.511719, 36.315125 ], [ 63.896484, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.929688, 35.460670 ], [ 62.226562, 35.317366 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 60.292969, 36.597889 ], [ 59.150391, 37.439974 ], [ 58.359375, 37.579413 ], [ 57.304688, 38.065392 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.996163 ], [ 55.458984, 37.996163 ], [ 54.755859, 37.439974 ], [ 53.876953, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.244772 ], [ 52.470703, 41.836828 ], [ 52.910156, 42.163403 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.811522 ], [ 59.941406, 42.228517 ], [ 60.029297, 41.442726 ], [ 60.380859, 41.244772 ], [ 61.523438, 41.310824 ], [ 61.875000, 41.112469 ], [ 62.314453, 40.111689 ], [ 64.160156, 38.959409 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.445312, 37.370157 ], [ 66.181641, 37.439974 ], [ 65.742188, 37.718590 ], [ 65.566406, 37.370157 ], [ 64.687500, 37.160317 ], [ 64.511719, 36.315125 ], [ 63.896484, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.929688, 35.460670 ], [ 62.226562, 35.317366 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 60.292969, 36.597889 ], [ 59.150391, 37.439974 ], [ 58.359375, 37.579413 ], [ 57.304688, 38.065392 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.996163 ], [ 55.458984, 37.996163 ], [ 54.755859, 37.439974 ], [ 53.876953, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.178654 ], [ 52.470703, 41.836828 ], [ 52.910156, 42.163403 ], [ 54.052734, 42.358544 ], [ 54.667969, 42.098222 ], [ 55.371094, 41.310824 ], [ 57.041016, 41.376809 ], [ 56.865234, 41.836828 ], [ 57.744141, 42.228517 ], [ 58.623047, 42.811522 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 49.570312, 14.774883 ], [ 48.603516, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.285156, 13.667338 ], [ 45.615234, 13.325485 ], [ 44.912109, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 43.154297, 13.239945 ], [ 43.242188, 13.838080 ], [ 42.890625, 14.859850 ], [ 42.539062, 15.284185 ], [ 42.802734, 15.284185 ], [ 42.626953, 15.792254 ], [ 42.802734, 15.961329 ], [ 42.714844, 16.383391 ], [ 43.154297, 16.720385 ], [ 43.066406, 17.140790 ], [ 43.330078, 17.644022 ], [ 43.769531, 17.392579 ], [ 45.175781, 17.476432 ], [ 46.318359, 17.308688 ], [ 46.669922, 17.308688 ], [ 46.933594, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.229351 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 49.570312, 14.774883 ], [ 48.603516, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.285156, 13.667338 ], [ 45.615234, 13.325485 ], [ 44.912109, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 43.154297, 13.239945 ], [ 43.242188, 13.838080 ], [ 42.890625, 14.859850 ], [ 42.539062, 15.284185 ], [ 42.802734, 15.284185 ], [ 42.626953, 15.792254 ], [ 42.802734, 15.961329 ], [ 42.714844, 16.383391 ], [ 43.154297, 16.720385 ], [ 43.066406, 17.140790 ], [ 43.330078, 17.644022 ], [ 43.769531, 17.392579 ], [ 45.175781, 17.476432 ], [ 46.318359, 17.308688 ], [ 46.669922, 17.308688 ], [ 46.933594, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.229351 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.777344, 24.287027 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.644524 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.350076 ], [ 59.238281, 21.453069 ], [ 58.798828, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.550509 ], [ 57.744141, 20.303418 ], [ 57.656250, 19.808054 ], [ 57.744141, 19.145168 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.646245 ], [ 56.425781, 18.145852 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.308688 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.525391, 16.720385 ], [ 53.085938, 16.720385 ], [ 51.943359, 19.062118 ], [ 54.931641, 20.055931 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.755921 ], [ 55.195312, 23.160563 ], [ 55.458984, 23.563987 ], [ 55.458984, 23.966176 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.287027 ], [ 55.810547, 24.926295 ], [ 56.337891, 24.926295 ], [ 56.777344, 24.287027 ] ] ], [ [ [ 56.425781, 26.352498 ], [ 56.337891, 25.958045 ], [ 56.250000, 25.720735 ], [ 55.986328, 26.115986 ], [ 56.337891, 26.431228 ], [ 56.425781, 26.352498 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.337891, 24.926295 ], [ 56.777344, 24.287027 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.644524 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.350076 ], [ 59.238281, 21.453069 ], [ 58.798828, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.550509 ], [ 57.744141, 20.303418 ], [ 57.656250, 19.808054 ], [ 57.744141, 19.145168 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.646245 ], [ 56.425781, 18.145852 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.308688 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.525391, 16.720385 ], [ 53.085938, 16.720385 ], [ 51.943359, 19.062118 ], [ 54.931641, 20.055931 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.755921 ], [ 55.195312, 23.160563 ], [ 55.458984, 23.563987 ], [ 55.458984, 23.966176 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.287027 ], [ 55.810547, 24.926295 ], [ 56.337891, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.425781, 26.352498 ], [ 56.337891, 25.958045 ], [ 56.250000, 25.720735 ], [ 55.986328, 26.115986 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 11.350797 ], [ 43.593750, 10.919618 ], [ 44.033203, 10.487812 ], [ 44.560547, 10.487812 ], [ 46.582031, 10.833306 ], [ 48.339844, 11.436955 ], [ 48.867188, 11.436955 ], [ 48.867188, 9.535749 ], [ 47.724609, 8.059230 ], [ 46.933594, 8.059230 ], [ 43.593750, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.066406, 11.523088 ], [ 43.417969, 11.350797 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 11.523088 ], [ 43.417969, 11.350797 ], [ 43.593750, 10.919618 ], [ 44.033203, 10.487812 ], [ 44.560547, 10.487812 ], [ 46.582031, 10.833306 ], [ 48.339844, 11.436955 ], [ 48.867188, 11.436955 ], [ 48.867188, 9.535749 ], [ 47.724609, 8.059230 ], [ 46.933594, 8.059230 ], [ 43.593750, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.066406, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 10.660608 ], [ 50.009766, 8.146243 ], [ 48.515625, 5.353521 ], [ 46.494141, 2.899153 ], [ 43.066406, 0.351560 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.790990 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.302591 ], [ 42.714844, 4.302591 ], [ 43.593750, 5.003394 ], [ 44.912109, 5.003394 ], [ 47.724609, 8.059230 ], [ 48.867188, 9.535749 ], [ 48.867188, 11.436955 ], [ 49.658203, 11.609193 ], [ 50.185547, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.064453, 12.039321 ], [ 50.976562, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.064453, 12.039321 ], [ 50.976562, 10.660608 ], [ 50.009766, 8.146243 ], [ 48.515625, 5.353521 ], [ 46.494141, 2.899153 ], [ 43.066406, 0.351560 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.790990 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.302591 ], [ 42.714844, 4.302591 ], [ 43.593750, 5.003394 ], [ 44.912109, 5.003394 ], [ 47.724609, 8.059230 ], [ 48.867188, 9.535749 ], [ 48.867188, 11.436955 ], [ 49.658203, 11.609193 ], [ 50.185547, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.064453, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.400391, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 70.488281, 39.639538 ], [ 71.718750, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.179688, 38.616870 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 72.597656, 37.090240 ], [ 71.806641, 36.738884 ], [ 71.367188, 37.090240 ], [ 71.455078, 37.926868 ], [ 71.191406, 37.996163 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 70.312500, 38.203655 ], [ 70.048828, 37.649034 ], [ 69.433594, 37.649034 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.090240 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 68.994141, 40.111689 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 70.488281, 39.639538 ], [ 71.718750, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.179688, 38.616870 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 72.597656, 37.090240 ], [ 71.806641, 36.738884 ], [ 71.367188, 37.090240 ], [ 71.455078, 37.926868 ], [ 71.191406, 37.996163 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 70.312500, 38.203655 ], [ 70.048828, 37.649034 ], [ 69.433594, 37.649034 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.090240 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 68.994141, 40.111689 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.279297, 38.272689 ], [ 71.191406, 37.996163 ], [ 71.455078, 37.926868 ], [ 71.367188, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.090240 ], [ 73.212891, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.003906, 36.879621 ], [ 71.806641, 36.527295 ], [ 71.191406, 36.102376 ], [ 71.542969, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.103516, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.873047, 34.089061 ], [ 70.312500, 33.431441 ], [ 69.609375, 33.137551 ], [ 69.257812, 32.546813 ], [ 69.257812, 31.952162 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.653381 ], [ 67.675781, 31.353637 ], [ 66.884766, 31.353637 ], [ 66.357422, 30.751278 ], [ 66.269531, 29.916852 ], [ 65.039062, 29.535230 ], [ 64.335938, 29.611670 ], [ 64.072266, 29.382175 ], [ 63.544922, 29.535230 ], [ 62.490234, 29.382175 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.249974 ], [ 60.468750, 32.990236 ], [ 60.908203, 33.578015 ], [ 60.468750, 33.724340 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.317366 ], [ 62.929688, 35.460670 ], [ 63.193359, 35.889050 ], [ 63.896484, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.687500, 37.160317 ], [ 65.566406, 37.370157 ], [ 65.742188, 37.718590 ], [ 66.181641, 37.439974 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.090240 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.433594, 37.649034 ], [ 70.048828, 37.649034 ], [ 70.312500, 38.203655 ], [ 70.751953, 38.548165 ], [ 71.279297, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.751953, 38.548165 ], [ 71.279297, 38.272689 ], [ 71.191406, 37.996163 ], [ 71.455078, 37.926868 ], [ 71.367188, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.090240 ], [ 73.212891, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.003906, 36.879621 ], [ 71.806641, 36.527295 ], [ 71.191406, 36.102376 ], [ 71.542969, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.103516, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.873047, 34.089061 ], [ 70.312500, 33.431441 ], [ 69.609375, 33.137551 ], [ 69.257812, 32.546813 ], [ 69.257812, 31.952162 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.653381 ], [ 67.675781, 31.353637 ], [ 66.884766, 31.353637 ], [ 66.357422, 30.751278 ], [ 66.269531, 29.916852 ], [ 65.039062, 29.535230 ], [ 64.335938, 29.611670 ], [ 64.072266, 29.382175 ], [ 63.544922, 29.535230 ], [ 62.490234, 29.382175 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.249974 ], [ 60.468750, 32.990236 ], [ 60.908203, 33.578015 ], [ 60.468750, 33.724340 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.317366 ], [ 62.929688, 35.460670 ], [ 63.193359, 35.889050 ], [ 63.896484, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.687500, 37.160317 ], [ 65.566406, 37.370157 ], [ 65.742188, 37.718590 ], [ 66.181641, 37.439974 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.090240 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.433594, 37.649034 ], [ 70.048828, 37.649034 ], [ 70.312500, 38.203655 ], [ 70.751953, 38.548165 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.849609, 36.668419 ], [ 76.113281, 35.960223 ], [ 77.783203, 35.532226 ], [ 76.816406, 34.669359 ], [ 75.673828, 34.524661 ], [ 74.179688, 34.813803 ], [ 73.740234, 34.379713 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.324276 ], [ 74.355469, 31.728167 ], [ 74.355469, 31.052934 ], [ 73.388672, 29.993002 ], [ 72.773438, 28.998532 ], [ 71.718750, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.433594, 26.980829 ], [ 70.136719, 26.509905 ], [ 70.224609, 25.799891 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.115234, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.060547, 24.686952 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 63.193359, 27.293689 ], [ 62.753906, 27.449790 ], [ 62.666016, 28.304381 ], [ 61.699219, 28.767659 ], [ 60.820312, 29.840644 ], [ 62.490234, 29.382175 ], [ 63.544922, 29.535230 ], [ 64.072266, 29.382175 ], [ 64.335938, 29.611670 ], [ 65.039062, 29.535230 ], [ 66.269531, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.884766, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.763672, 31.653381 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.257812, 31.952162 ], [ 69.257812, 32.546813 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.431441 ], [ 69.873047, 34.089061 ], [ 70.839844, 34.016242 ], [ 71.103516, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.542969, 35.173808 ], [ 71.191406, 36.102376 ], [ 71.806641, 36.527295 ], [ 74.003906, 36.879621 ], [ 75.146484, 37.160317 ], [ 75.849609, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.849609, 36.668419 ], [ 76.113281, 35.960223 ], [ 77.783203, 35.532226 ], [ 76.816406, 34.669359 ], [ 75.673828, 34.524661 ], [ 74.179688, 34.813803 ], [ 73.740234, 34.379713 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.324276 ], [ 74.355469, 31.728167 ], [ 74.355469, 31.052934 ], [ 73.388672, 29.993002 ], [ 72.773438, 28.998532 ], [ 71.718750, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.433594, 26.980829 ], [ 70.136719, 26.509905 ], [ 70.224609, 25.799891 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.115234, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.060547, 24.686952 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 63.193359, 27.293689 ], [ 62.753906, 27.449790 ], [ 62.666016, 28.304381 ], [ 61.699219, 28.767659 ], [ 60.820312, 29.840644 ], [ 62.490234, 29.382175 ], [ 63.544922, 29.535230 ], [ 64.072266, 29.382175 ], [ 64.335938, 29.611670 ], [ 65.039062, 29.535230 ], [ 66.269531, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.884766, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.763672, 31.653381 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.257812, 31.952162 ], [ 69.257812, 32.546813 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.431441 ], [ 69.873047, 34.089061 ], [ 70.839844, 34.016242 ], [ 71.103516, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.542969, 35.173808 ], [ 71.191406, 36.102376 ], [ 71.806641, 36.527295 ], [ 74.003906, 36.879621 ], [ 75.146484, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 83.320312, 29.535230 ], [ 83.847656, 29.382175 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.690588 ], [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 27.449790 ], [ 88.154297, 26.824071 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.166016, 26.745610 ], [ 84.638672, 27.293689 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 80.419922, 29.764377 ], [ 81.474609, 30.448674 ], [ 82.265625, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.474609, 30.448674 ], [ 82.265625, 30.145127 ], [ 83.320312, 29.535230 ], [ 83.847656, 29.382175 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.690588 ], [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 27.449790 ], [ 88.154297, 26.824071 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.166016, 26.745610 ], [ 84.638672, 27.293689 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 80.419922, 29.764377 ], [ 81.474609, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.837891, 34.379713 ], [ 78.750000, 33.578015 ], [ 79.189453, 33.063924 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.620870 ], [ 78.662109, 31.578535 ], [ 81.035156, 30.221102 ], [ 80.419922, 29.764377 ], [ 80.068359, 28.844674 ], [ 83.232422, 27.371767 ], [ 84.638672, 27.293689 ], [ 85.166016, 26.745610 ], [ 87.187500, 26.431228 ], [ 87.978516, 26.431228 ], [ 88.154297, 26.824071 ], [ 87.978516, 27.449790 ], [ 88.066406, 27.916767 ], [ 88.681641, 28.149503 ], [ 88.769531, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.902477 ], [ 92.021484, 27.527758 ], [ 91.669922, 27.839076 ], [ 92.460938, 27.916767 ], [ 93.339844, 28.690588 ], [ 94.482422, 29.305561 ], [ 95.361328, 29.075375 ], [ 96.064453, 29.458731 ], [ 96.503906, 28.844674 ], [ 96.240234, 28.459033 ], [ 97.294922, 28.304381 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.761330 ], [ 97.119141, 27.137368 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.097656, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.482422, 24.686952 ], [ 94.042969, 23.885838 ], [ 93.251953, 24.126702 ], [ 93.251953, 23.079732 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.350076 ], [ 92.636719, 22.105999 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.563987 ], [ 91.406250, 24.126702 ], [ 91.845703, 24.206890 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.324167 ], [ 89.824219, 26.037042 ], [ 89.296875, 26.037042 ], [ 88.505859, 26.509905 ], [ 88.154297, 25.799891 ], [ 88.857422, 25.244696 ], [ 88.242188, 24.926295 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.287027 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.945312, 22.105999 ], [ 88.857422, 21.698265 ], [ 86.923828, 21.534847 ], [ 87.011719, 20.797201 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.636192 ], [ 80.771484, 15.961329 ], [ 80.244141, 15.961329 ], [ 79.980469, 15.199386 ], [ 80.244141, 13.068777 ], [ 79.804688, 12.125264 ], [ 79.804688, 10.401378 ], [ 79.277344, 10.314919 ], [ 78.837891, 9.622414 ], [ 79.189453, 9.275622 ], [ 78.222656, 9.015302 ], [ 77.871094, 8.320212 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.673828, 11.350797 ], [ 74.794922, 12.811801 ], [ 74.443359, 14.689881 ], [ 73.476562, 16.045813 ], [ 72.773438, 19.228177 ], [ 72.773438, 20.468189 ], [ 72.597656, 21.371244 ], [ 71.103516, 20.797201 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.224609, 25.799891 ], [ 70.136719, 26.509905 ], [ 69.433594, 26.980829 ], [ 70.576172, 27.994401 ], [ 71.718750, 27.916767 ], [ 72.773438, 28.998532 ], [ 73.388672, 29.993002 ], [ 74.355469, 31.052934 ], [ 74.355469, 31.728167 ], [ 75.234375, 32.324276 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.379713 ], [ 74.179688, 34.813803 ], [ 75.673828, 34.524661 ], [ 76.816406, 34.669359 ], [ 77.783203, 35.532226 ], [ 78.837891, 34.379713 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.783203, 35.532226 ], [ 78.837891, 34.379713 ], [ 78.750000, 33.578015 ], [ 79.189453, 33.063924 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.620870 ], [ 78.662109, 31.578535 ], [ 81.035156, 30.221102 ], [ 80.419922, 29.764377 ], [ 80.068359, 28.844674 ], [ 83.232422, 27.371767 ], [ 84.638672, 27.293689 ], [ 85.166016, 26.745610 ], [ 87.187500, 26.431228 ], [ 87.978516, 26.431228 ], [ 88.154297, 26.824071 ], [ 87.978516, 27.449790 ], [ 88.066406, 27.916767 ], [ 88.681641, 28.149503 ], [ 88.769531, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.902477 ], [ 92.021484, 27.527758 ], [ 91.669922, 27.839076 ], [ 92.460938, 27.916767 ], [ 93.339844, 28.690588 ], [ 94.482422, 29.305561 ], [ 95.361328, 29.075375 ], [ 96.064453, 29.458731 ], [ 96.503906, 28.844674 ], [ 96.240234, 28.459033 ], [ 97.294922, 28.304381 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.761330 ], [ 97.119141, 27.137368 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.097656, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.482422, 24.686952 ], [ 94.042969, 23.885838 ], [ 93.251953, 24.126702 ], [ 93.251953, 23.079732 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.350076 ], [ 92.636719, 22.105999 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.563987 ], [ 91.406250, 24.126702 ], [ 91.845703, 24.206890 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.324167 ], [ 89.824219, 26.037042 ], [ 89.296875, 26.037042 ], [ 88.505859, 26.509905 ], [ 88.154297, 25.799891 ], [ 88.857422, 25.244696 ], [ 88.242188, 24.926295 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.287027 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.945312, 22.105999 ], [ 88.857422, 21.698265 ], [ 86.923828, 21.534847 ], [ 87.011719, 20.797201 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.636192 ], [ 80.771484, 15.961329 ], [ 80.244141, 15.961329 ], [ 79.980469, 15.199386 ], [ 80.244141, 13.068777 ], [ 79.804688, 12.125264 ], [ 79.804688, 10.401378 ], [ 79.277344, 10.314919 ], [ 78.837891, 9.622414 ], [ 79.189453, 9.275622 ], [ 78.222656, 9.015302 ], [ 77.871094, 8.320212 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.673828, 11.350797 ], [ 74.794922, 12.811801 ], [ 74.443359, 14.689881 ], [ 73.476562, 16.045813 ], [ 72.773438, 19.228177 ], [ 72.773438, 20.468189 ], [ 72.597656, 21.371244 ], [ 71.103516, 20.797201 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.224609, 25.799891 ], [ 70.136719, 26.509905 ], [ 69.433594, 26.980829 ], [ 70.576172, 27.994401 ], [ 71.718750, 27.916767 ], [ 72.773438, 28.998532 ], [ 73.388672, 29.993002 ], [ 74.355469, 31.052934 ], [ 74.355469, 31.728167 ], [ 75.234375, 32.324276 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.379713 ], [ 74.179688, 34.813803 ], [ 75.673828, 34.524661 ], [ 76.816406, 34.669359 ], [ 77.783203, 35.532226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.053161 ], [ 79.804688, 6.839170 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.053161 ], [ 79.804688, 6.839170 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.931641, 51.672555 ], [ 102.041016, 51.289406 ], [ 102.216797, 50.513427 ], [ 103.623047, 50.120578 ], [ 105.820312, 50.457504 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.837982 ], [ 108.457031, 49.325122 ], [ 109.335938, 49.325122 ], [ 110.654297, 49.152970 ], [ 111.533203, 49.382373 ], [ 112.851562, 49.553726 ], [ 114.345703, 50.289339 ], [ 114.960938, 50.176898 ], [ 115.400391, 49.837982 ], [ 116.630859, 49.894634 ], [ 115.400391, 48.166085 ], [ 115.664062, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.246094, 47.754098 ], [ 118.037109, 48.107431 ], [ 118.828125, 47.754098 ], [ 119.707031, 47.100045 ], [ 119.619141, 46.739861 ], [ 118.828125, 46.860191 ], [ 117.333984, 46.679594 ], [ 116.630859, 46.437857 ], [ 115.927734, 45.767523 ], [ 114.433594, 45.398450 ], [ 113.378906, 44.840291 ], [ 111.796875, 45.151053 ], [ 111.269531, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.452919 ], [ 110.390625, 42.875964 ], [ 109.160156, 42.553080 ], [ 107.666016, 42.488302 ], [ 106.083984, 42.163403 ], [ 104.941406, 41.640078 ], [ 104.501953, 41.967659 ], [ 103.271484, 41.967659 ], [ 101.777344, 42.553080 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.382812, 42.811522 ], [ 96.328125, 42.747012 ], [ 95.712891, 43.325178 ], [ 95.273438, 44.276671 ], [ 94.658203, 44.402392 ], [ 93.427734, 45.026950 ], [ 90.878906, 45.336702 ], [ 90.527344, 45.767523 ], [ 90.966797, 46.920255 ], [ 90.263672, 47.694974 ], [ 88.769531, 48.107431 ], [ 87.978516, 48.632909 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.847573 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.513427 ], [ 94.746094, 50.064192 ], [ 95.800781, 50.007739 ], [ 97.207031, 49.781264 ], [ 98.173828, 50.457504 ], [ 97.822266, 51.013755 ], [ 98.789062, 52.052490 ], [ 99.931641, 51.672555 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.789062, 52.052490 ], [ 99.931641, 51.672555 ], [ 102.041016, 51.289406 ], [ 102.216797, 50.513427 ], [ 103.623047, 50.120578 ], [ 105.820312, 50.457504 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.837982 ], [ 108.457031, 49.325122 ], [ 109.335938, 49.325122 ], [ 110.654297, 49.152970 ], [ 111.533203, 49.382373 ], [ 112.851562, 49.553726 ], [ 114.345703, 50.289339 ], [ 114.960938, 50.176898 ], [ 115.400391, 49.837982 ], [ 116.630859, 49.894634 ], [ 115.400391, 48.166085 ], [ 115.664062, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.246094, 47.754098 ], [ 118.037109, 48.107431 ], [ 118.828125, 47.754098 ], [ 119.707031, 47.100045 ], [ 119.619141, 46.739861 ], [ 118.828125, 46.860191 ], [ 117.333984, 46.679594 ], [ 116.630859, 46.437857 ], [ 115.927734, 45.767523 ], [ 114.433594, 45.398450 ], [ 113.378906, 44.840291 ], [ 111.796875, 45.151053 ], [ 111.269531, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.452919 ], [ 110.390625, 42.875964 ], [ 109.160156, 42.553080 ], [ 107.666016, 42.488302 ], [ 106.083984, 42.163403 ], [ 104.941406, 41.640078 ], [ 104.501953, 41.967659 ], [ 103.271484, 41.967659 ], [ 101.777344, 42.553080 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.382812, 42.811522 ], [ 96.328125, 42.747012 ], [ 95.712891, 43.325178 ], [ 95.273438, 44.276671 ], [ 94.658203, 44.402392 ], [ 93.427734, 45.026950 ], [ 90.878906, 45.336702 ], [ 90.527344, 45.767523 ], [ 90.966797, 46.920255 ], [ 90.263672, 47.694974 ], [ 88.769531, 48.107431 ], [ 87.978516, 48.632909 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.847573 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.513427 ], [ 94.746094, 50.064192 ], [ 95.800781, 50.007739 ], [ 97.207031, 49.781264 ], [ 98.173828, 50.457504 ], [ 97.822266, 51.013755 ], [ 98.789062, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.839076 ], [ 92.021484, 27.527758 ], [ 92.021484, 26.902477 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.769531, 27.137368 ], [ 88.769531, 27.371767 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.839076 ], [ 92.021484, 27.527758 ], [ 92.021484, 26.902477 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.769531, 27.137368 ], [ 88.769531, 27.371767 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.296875, 26.037042 ], [ 89.824219, 26.037042 ], [ 89.912109, 25.324167 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.845703, 24.206890 ], [ 91.406250, 24.126702 ], [ 91.142578, 23.563987 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.105999 ], [ 92.636719, 21.371244 ], [ 92.285156, 21.534847 ], [ 92.285156, 20.715015 ], [ 92.021484, 21.207459 ], [ 91.757812, 22.187405 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.527344, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.105999 ], [ 89.648438, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.287027 ], [ 88.066406, 24.527135 ], [ 88.242188, 24.926295 ], [ 88.857422, 25.244696 ], [ 88.154297, 25.799891 ], [ 88.505859, 26.509905 ], [ 89.296875, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.505859, 26.509905 ], [ 89.296875, 26.037042 ], [ 89.824219, 26.037042 ], [ 89.912109, 25.324167 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.845703, 24.206890 ], [ 91.406250, 24.126702 ], [ 91.142578, 23.563987 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.105999 ], [ 92.636719, 21.371244 ], [ 92.285156, 21.534847 ], [ 92.285156, 20.715015 ], [ 92.021484, 21.207459 ], [ 91.757812, 22.187405 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.527344, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.105999 ], [ 89.648438, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.287027 ], [ 88.066406, 24.527135 ], [ 88.242188, 24.926295 ], [ 88.857422, 25.244696 ], [ 88.154297, 25.799891 ], [ 88.505859, 26.509905 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ] ] ], [ [ [ 124.980469, 53.173119 ], [ 125.859375, 52.802761 ], [ 127.265625, 50.792047 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 133.330078, 48.224673 ], [ 135.000000, 48.516604 ], [ 134.472656, 47.635784 ], [ 134.033203, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.220703, 44.150681 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 127.265625, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.123047, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.962891, 21.861499 ], [ 106.523438, 22.268764 ], [ 106.699219, 22.836946 ], [ 105.732422, 22.998852 ], [ 105.292969, 23.402765 ], [ 104.414062, 22.836946 ], [ 102.656250, 22.755921 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 98.173828, 27.761330 ], [ 97.910156, 28.381735 ], [ 97.294922, 28.304381 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 93.339844, 28.690588 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.839076 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 88.066406, 27.916767 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.690588 ], [ 84.199219, 28.844674 ], [ 83.847656, 29.382175 ], [ 83.320312, 29.535230 ], [ 82.265625, 30.145127 ], [ 81.474609, 30.448674 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.750000, 33.578015 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 75.849609, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 74.179688, 38.616870 ], [ 73.916016, 38.548165 ], [ 73.652344, 39.436193 ], [ 73.916016, 39.707187 ], [ 73.740234, 39.909736 ], [ 74.707031, 40.380028 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 78.486328, 41.640078 ], [ 80.068359, 42.163403 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.275391, 49.267805 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 88.769531, 48.107431 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 94.658203, 44.402392 ], [ 95.273438, 44.276671 ], [ 95.712891, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.382812, 42.811522 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.777344, 42.553080 ], [ 103.271484, 41.967659 ], [ 104.501953, 41.967659 ], [ 104.941406, 41.640078 ], [ 106.083984, 42.163403 ], [ 107.666016, 42.488302 ], [ 109.160156, 42.553080 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.452919 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 114.433594, 45.398450 ], [ 115.927734, 45.767523 ], [ 116.630859, 46.437857 ], [ 117.333984, 46.679594 ], [ 118.828125, 46.860191 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 116.279297, 47.872144 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 119.267578, 50.625073 ], [ 120.146484, 51.672555 ], [ 120.673828, 51.998410 ], [ 120.673828, 52.536273 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 122.167969, 53.435719 ], [ 123.486328, 53.488046 ], [ 124.980469, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 123.486328, 53.488046 ], [ 124.980469, 53.173119 ], [ 125.859375, 52.802761 ], [ 127.265625, 50.792047 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 133.330078, 48.224673 ], [ 135.000000, 48.516604 ], [ 134.472656, 47.635784 ], [ 134.033203, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.220703, 44.150681 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 127.265625, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.123047, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.962891, 21.861499 ], [ 106.523438, 22.268764 ], [ 106.699219, 22.836946 ], [ 105.732422, 22.998852 ], [ 105.292969, 23.402765 ], [ 104.414062, 22.836946 ], [ 102.656250, 22.755921 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 98.173828, 27.761330 ], [ 97.910156, 28.381735 ], [ 97.294922, 28.304381 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 93.339844, 28.690588 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.839076 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 88.066406, 27.916767 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.690588 ], [ 84.199219, 28.844674 ], [ 83.847656, 29.382175 ], [ 83.320312, 29.535230 ], [ 82.265625, 30.145127 ], [ 81.474609, 30.448674 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.750000, 33.578015 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 75.849609, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 74.179688, 38.616870 ], [ 73.916016, 38.548165 ], [ 73.652344, 39.436193 ], [ 73.916016, 39.707187 ], [ 73.740234, 39.909736 ], [ 74.707031, 40.380028 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 78.486328, 41.640078 ], [ 80.068359, 42.163403 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.275391, 49.267805 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 88.769531, 48.107431 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 94.658203, 44.402392 ], [ 95.273438, 44.276671 ], [ 95.712891, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.382812, 42.811522 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.777344, 42.553080 ], [ 103.271484, 41.967659 ], [ 104.501953, 41.967659 ], [ 104.941406, 41.640078 ], [ 106.083984, 42.163403 ], [ 107.666016, 42.488302 ], [ 109.160156, 42.553080 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.452919 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 114.433594, 45.398450 ], [ 115.927734, 45.767523 ], [ 116.630859, 46.437857 ], [ 117.333984, 46.679594 ], [ 118.828125, 46.860191 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 116.279297, 47.872144 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 119.267578, 50.625073 ], [ 120.146484, 51.672555 ], [ 120.673828, 51.998410 ], [ 120.673828, 52.536273 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 122.167969, 53.435719 ], [ 123.486328, 53.488046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.173828, 27.761330 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.958045 ], [ 97.646484, 25.085599 ], [ 97.558594, 23.966176 ], [ 98.613281, 24.126702 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.998852 ], [ 99.228516, 22.187405 ], [ 100.371094, 21.616579 ], [ 101.074219, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.283203, 20.797201 ], [ 100.107422, 20.468189 ], [ 99.492188, 20.220966 ], [ 98.876953, 19.808054 ], [ 98.173828, 19.725342 ], [ 97.734375, 18.646245 ], [ 97.294922, 18.479609 ], [ 97.822266, 17.644022 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.368950 ], [ 98.173828, 15.199386 ], [ 98.349609, 14.689881 ], [ 99.052734, 13.838080 ], [ 99.140625, 12.811801 ], [ 99.580078, 11.953349 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.746969 ], [ 98.701172, 11.523088 ], [ 98.349609, 12.039321 ], [ 98.437500, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.482422, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.603516, 19.808054 ], [ 93.076172, 19.890723 ], [ 92.285156, 20.715015 ], [ 92.285156, 21.534847 ], [ 92.636719, 21.371244 ], [ 92.636719, 22.105999 ], [ 93.164062, 22.350076 ], [ 92.988281, 22.755921 ], [ 93.251953, 23.079732 ], [ 93.251953, 24.126702 ], [ 94.042969, 23.885838 ], [ 94.482422, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.097656, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.137368 ], [ 97.031250, 27.761330 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.304381 ], [ 97.910156, 28.381735 ], [ 98.173828, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.381735 ], [ 98.173828, 27.761330 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.958045 ], [ 97.646484, 25.085599 ], [ 97.558594, 23.966176 ], [ 98.613281, 24.126702 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.998852 ], [ 99.228516, 22.187405 ], [ 100.371094, 21.616579 ], [ 101.074219, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.283203, 20.797201 ], [ 100.107422, 20.468189 ], [ 99.492188, 20.220966 ], [ 98.876953, 19.808054 ], [ 98.173828, 19.725342 ], [ 97.734375, 18.646245 ], [ 97.294922, 18.479609 ], [ 97.822266, 17.644022 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.368950 ], [ 98.173828, 15.199386 ], [ 98.349609, 14.689881 ], [ 99.052734, 13.838080 ], [ 99.140625, 12.811801 ], [ 99.580078, 11.953349 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.746969 ], [ 98.701172, 11.523088 ], [ 98.349609, 12.039321 ], [ 98.437500, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.482422, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.603516, 19.808054 ], [ 93.076172, 19.890723 ], [ 92.285156, 20.715015 ], [ 92.285156, 21.534847 ], [ 92.636719, 21.371244 ], [ 92.636719, 22.105999 ], [ 93.164062, 22.350076 ], [ 92.988281, 22.755921 ], [ 93.251953, 23.079732 ], [ 93.251953, 24.126702 ], [ 94.042969, 23.885838 ], [ 94.482422, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.097656, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.137368 ], [ 97.031250, 27.761330 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.304381 ], [ 97.910156, 28.381735 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 106.523438, 16.636192 ], [ 107.226562, 15.961329 ], [ 107.490234, 15.284185 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.468750, 14.774883 ], [ 105.556641, 15.623037 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.476432 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 102.919922, 17.978733 ], [ 102.392578, 17.978733 ], [ 102.041016, 18.145852 ], [ 100.986328, 17.560247 ], [ 100.986328, 18.479609 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.468189 ], [ 100.283203, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ], [ 103.183594, 20.797201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.512557 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 106.523438, 16.636192 ], [ 107.226562, 15.961329 ], [ 107.490234, 15.284185 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.468750, 14.774883 ], [ 105.556641, 15.623037 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.476432 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 102.919922, 17.978733 ], [ 102.392578, 17.978733 ], [ 102.041016, 18.145852 ], [ 100.986328, 17.560247 ], [ 100.986328, 18.479609 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.468189 ], [ 100.283203, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.138470 ], [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 18.479609 ], [ 100.986328, 17.560247 ], [ 102.041016, 18.145852 ], [ 102.392578, 17.978733 ], [ 102.919922, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 104.677734, 17.476432 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.623037 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 104.238281, 14.434680 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.601562, 12.726084 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.931641, 12.382928 ], [ 99.140625, 9.968851 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 100.195312, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.878332 ], [ 101.074219, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.195312, 6.664608 ], [ 100.019531, 6.489983 ], [ 99.667969, 6.926427 ], [ 99.492188, 7.362467 ], [ 98.437500, 8.407168 ], [ 98.261719, 7.798079 ], [ 98.085938, 8.407168 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.953349 ], [ 99.140625, 12.811801 ], [ 99.052734, 13.838080 ], [ 98.349609, 14.689881 ], [ 98.173828, 15.199386 ], [ 98.525391, 15.368950 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.644022 ], [ 97.294922, 18.479609 ], [ 97.734375, 18.646245 ], [ 98.173828, 19.725342 ], [ 98.876953, 19.808054 ], [ 99.492188, 20.220966 ], [ 100.107422, 20.468189 ], [ 100.546875, 20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.468189 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 18.479609 ], [ 100.986328, 17.560247 ], [ 102.041016, 18.145852 ], [ 102.392578, 17.978733 ], [ 102.919922, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 104.677734, 17.476432 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.623037 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 104.238281, 14.434680 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.601562, 12.726084 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.931641, 12.382928 ], [ 99.140625, 9.968851 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 100.195312, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.878332 ], [ 101.074219, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.195312, 6.664608 ], [ 100.019531, 6.489983 ], [ 99.667969, 6.926427 ], [ 99.492188, 7.362467 ], [ 98.437500, 8.407168 ], [ 98.261719, 7.798079 ], [ 98.085938, 8.407168 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.953349 ], [ 99.140625, 12.811801 ], [ 99.052734, 13.838080 ], [ 98.349609, 14.689881 ], [ 98.173828, 15.199386 ], [ 98.525391, 15.368950 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.644022 ], [ 97.294922, 18.479609 ], [ 97.734375, 18.646245 ], [ 98.173828, 19.725342 ], [ 98.876953, 19.808054 ], [ 99.492188, 20.220966 ], [ 100.107422, 20.468189 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.732422, 22.998852 ], [ 106.699219, 22.836946 ], [ 106.523438, 22.268764 ], [ 106.962891, 21.861499 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.820312, 19.808054 ], [ 105.644531, 19.062118 ], [ 107.314453, 16.720385 ], [ 108.193359, 16.130262 ], [ 108.808594, 15.284185 ], [ 109.248047, 13.496473 ], [ 109.160156, 11.695273 ], [ 108.281250, 11.092166 ], [ 107.138672, 10.401378 ], [ 106.347656, 9.535749 ], [ 105.117188, 8.667918 ], [ 104.765625, 9.275622 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 105.117188, 10.919618 ], [ 106.171875, 11.005904 ], [ 105.732422, 11.609193 ], [ 107.490234, 12.382928 ], [ 107.578125, 13.581921 ], [ 107.314453, 14.264383 ], [ 107.490234, 15.284185 ], [ 107.226562, 15.961329 ], [ 106.523438, 16.636192 ], [ 105.029297, 18.729502 ], [ 103.886719, 19.311143 ], [ 104.150391, 19.642588 ], [ 104.765625, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.512557 ], [ 102.656250, 22.755921 ], [ 104.414062, 22.836946 ], [ 105.292969, 23.402765 ], [ 105.732422, 22.998852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.402765 ], [ 105.732422, 22.998852 ], [ 106.699219, 22.836946 ], [ 106.523438, 22.268764 ], [ 106.962891, 21.861499 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.820312, 19.808054 ], [ 105.644531, 19.062118 ], [ 107.314453, 16.720385 ], [ 108.193359, 16.130262 ], [ 108.808594, 15.284185 ], [ 109.248047, 13.496473 ], [ 109.160156, 11.695273 ], [ 108.281250, 11.092166 ], [ 107.138672, 10.401378 ], [ 106.347656, 9.535749 ], [ 105.117188, 8.667918 ], [ 104.765625, 9.275622 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 105.117188, 10.919618 ], [ 106.171875, 11.005904 ], [ 105.732422, 11.609193 ], [ 107.490234, 12.382928 ], [ 107.578125, 13.581921 ], [ 107.314453, 14.264383 ], [ 107.490234, 15.284185 ], [ 107.226562, 15.961329 ], [ 106.523438, 16.636192 ], [ 105.029297, 18.729502 ], [ 103.886719, 19.311143 ], [ 104.150391, 19.642588 ], [ 104.765625, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.512557 ], [ 102.656250, 22.755921 ], [ 104.414062, 22.836946 ], [ 105.292969, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.314453, 14.264383 ], [ 107.578125, 13.581921 ], [ 107.490234, 12.382928 ], [ 105.732422, 11.609193 ], [ 106.171875, 11.005904 ], [ 105.117188, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.447266, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.919922, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.349548 ], [ 105.996094, 13.923404 ], [ 106.435547, 14.604847 ], [ 107.314453, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 14.604847 ], [ 107.314453, 14.264383 ], [ 107.578125, 13.581921 ], [ 107.490234, 12.382928 ], [ 105.732422, 11.609193 ], [ 106.171875, 11.005904 ], [ 105.117188, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.447266, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.919922, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.349548 ], [ 105.996094, 13.923404 ], [ 106.435547, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.597656, 6.489983 ], [ 117.685547, 6.053161 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.090944 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 117.861328, 4.214943 ], [ 116.982422, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.488281, 3.250209 ], [ 115.048828, 2.899153 ], [ 114.609375, 1.493971 ], [ 113.730469, 1.230374 ], [ 112.851562, 1.581830 ], [ 112.324219, 1.493971 ], [ 111.796875, 0.966751 ], [ 111.093750, 1.054628 ], [ 110.478516, 0.790990 ], [ 109.775391, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 114.609375, 4.039618 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.400391, 5.528511 ], [ 116.191406, 6.227934 ], [ 116.718750, 6.926427 ], [ 117.070312, 7.013668 ], [ 117.597656, 6.489983 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.074219, 5.703448 ], [ 101.777344, 5.878332 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.915833 ], [ 103.271484, 3.776559 ], [ 103.447266, 2.811371 ], [ 103.798828, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 101.250000, 3.337954 ], [ 100.634766, 3.951941 ], [ 100.546875, 4.828260 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.019531, 6.489983 ], [ 100.195312, 6.664608 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.070312, 7.013668 ], [ 117.597656, 6.489983 ], [ 117.685547, 6.053161 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.090944 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 117.861328, 4.214943 ], [ 116.982422, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.488281, 3.250209 ], [ 115.048828, 2.899153 ], [ 114.609375, 1.493971 ], [ 113.730469, 1.230374 ], [ 112.851562, 1.581830 ], [ 112.324219, 1.493971 ], [ 111.796875, 0.966751 ], [ 111.093750, 1.054628 ], [ 110.478516, 0.790990 ], [ 109.775391, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 114.609375, 4.039618 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.400391, 5.528511 ], [ 116.191406, 6.227934 ], [ 116.718750, 6.926427 ], [ 117.070312, 7.013668 ] ] ], [ [ [ 100.195312, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.074219, 5.703448 ], [ 101.777344, 5.878332 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.915833 ], [ 103.271484, 3.776559 ], [ 103.447266, 2.811371 ], [ 103.798828, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 101.250000, 3.337954 ], [ 100.634766, 3.951941 ], [ 100.546875, 4.828260 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.019531, 6.489983 ], [ 100.195312, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.904297, 25.005973 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.146484, 22.836946 ], [ 120.058594, 23.563987 ], [ 120.673828, 24.607069 ], [ 121.464844, 25.324167 ], [ 121.904297, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.904297, 25.005973 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.146484, 22.836946 ], [ 120.058594, 23.563987 ], [ 120.673828, 24.607069 ], [ 121.464844, 25.324167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.605469, 42.423457 ], [ 130.693359, 42.228517 ], [ 130.341797, 42.293564 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 129.111328, 40.713956 ], [ 128.583984, 40.245992 ], [ 127.880859, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.441406, 39.368279 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 128.144531, 38.410558 ], [ 127.001953, 38.272689 ], [ 126.650391, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.123047, 37.788081 ], [ 125.683594, 37.996163 ], [ 125.507812, 37.788081 ], [ 125.244141, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.628906, 38.134557 ], [ 124.980469, 38.616870 ], [ 125.156250, 38.685510 ], [ 125.068359, 38.891033 ], [ 125.332031, 39.436193 ], [ 125.244141, 39.571822 ], [ 124.716797, 39.707187 ], [ 124.189453, 39.977120 ], [ 125.068359, 40.580585 ], [ 126.123047, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.265625, 41.508577 ], [ 128.144531, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.550781, 42.488302 ], [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 130.693359, 42.228517 ], [ 130.341797, 42.293564 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 129.111328, 40.713956 ], [ 128.583984, 40.245992 ], [ 127.880859, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.441406, 39.368279 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 128.144531, 38.410558 ], [ 127.001953, 38.272689 ], [ 126.650391, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.123047, 37.788081 ], [ 125.683594, 37.996163 ], [ 125.507812, 37.788081 ], [ 125.244141, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.628906, 38.134557 ], [ 124.980469, 38.616870 ], [ 125.156250, 38.685510 ], [ 125.068359, 38.891033 ], [ 125.332031, 39.436193 ], [ 125.244141, 39.571822 ], [ 124.716797, 39.707187 ], [ 124.189453, 39.977120 ], [ 125.068359, 40.580585 ], [ 126.123047, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.265625, 41.508577 ], [ 128.144531, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.550781, 42.488302 ], [ 129.990234, 43.004647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 128.144531, 34.957995 ], [ 127.353516, 34.524661 ], [ 126.474609, 34.452218 ], [ 126.298828, 34.957995 ], [ 126.474609, 35.746512 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.857507 ], [ 127.001953, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 128.144531, 34.957995 ], [ 127.353516, 34.524661 ], [ 126.474609, 34.452218 ], [ 126.298828, 34.957995 ], [ 126.474609, 35.746512 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.857507 ], [ 127.001953, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.320312, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.595703, 6.053161 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 123.925781, 6.926427 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 123.222656, 7.449624 ], [ 122.783203, 7.536764 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.275292 ], [ 122.255859, 8.059230 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 124.541016, 8.581021 ], [ 124.716797, 9.015302 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ] ] ], [ [ [ 118.916016, 10.401378 ], [ 119.443359, 11.350797 ], [ 119.619141, 10.574222 ], [ 119.003906, 10.055403 ], [ 118.476562, 9.362353 ], [ 117.246094, 8.494105 ], [ 117.597656, 9.102097 ], [ 118.916016, 10.401378 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.783203, 10.314919 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.398438, 10.487812 ], [ 124.013672, 11.264612 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.716797, 10.919618 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.436955 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ], [ 125.156250, 12.554564 ] ] ], [ [ [ 122.431641, 11.609193 ], [ 123.046875, 11.609193 ], [ 123.046875, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ], [ 122.431641, 11.609193 ] ] ], [ [ [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ] ] ], [ [ [ 121.904297, 18.229351 ], [ 122.167969, 18.479609 ], [ 122.255859, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.431641, 17.140790 ], [ 122.167969, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.199386 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.264383 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.838080 ], [ 123.837891, 13.239945 ], [ 124.101562, 13.068777 ], [ 124.013672, 12.554564 ], [ 123.222656, 13.068777 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.923404 ], [ 120.673828, 14.349548 ], [ 120.937500, 14.604847 ], [ 120.673828, 14.774883 ], [ 120.498047, 14.434680 ], [ 120.058594, 15.029686 ], [ 119.882812, 15.453680 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.322266, 17.644022 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ], [ 121.904297, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.595703, 6.053161 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 123.925781, 6.926427 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 123.222656, 7.449624 ], [ 122.783203, 7.536764 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.275292 ], [ 122.255859, 8.059230 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 124.541016, 8.581021 ], [ 124.716797, 9.015302 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ] ] ], [ [ [ 119.443359, 11.436955 ], [ 119.619141, 10.574222 ], [ 119.003906, 10.055403 ], [ 118.476562, 9.362353 ], [ 117.158203, 8.407168 ], [ 117.597656, 9.102097 ], [ 118.916016, 10.401378 ], [ 119.443359, 11.436955 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.783203, 10.314919 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.310547, 10.314919 ], [ 124.013672, 11.264612 ] ] ], [ [ [ 124.189453, 12.640338 ], [ 125.156250, 12.554564 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.716797, 10.919618 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.436955 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ] ] ], [ [ [ 121.816406, 11.953349 ], [ 122.431641, 11.609193 ], [ 123.046875, 11.609193 ], [ 123.046875, 11.178402 ], [ 122.871094, 10.919618 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ] ] ], [ [ [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ] ] ], [ [ [ 121.289062, 18.562947 ], [ 121.904297, 18.229351 ], [ 122.167969, 18.479609 ], [ 122.255859, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.431641, 17.140790 ], [ 122.167969, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.199386 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.264383 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.838080 ], [ 123.837891, 13.239945 ], [ 124.101562, 13.068777 ], [ 124.013672, 12.554564 ], [ 123.222656, 13.068777 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.923404 ], [ 120.673828, 14.349548 ], [ 120.937500, 14.604847 ], [ 120.673828, 14.774883 ], [ 120.498047, 14.434680 ], [ 120.058594, 15.029686 ], [ 119.882812, 15.453680 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.322266, 17.644022 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.609375, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ], [ 115.312500, 4.390229 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.400391, 5.528511 ], [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.609375, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.855469, 40.044438 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.537109, 36.385913 ], [ 140.712891, 35.889050 ], [ 140.185547, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.099609, 33.943360 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.358062 ], [ 130.341797, 33.651208 ], [ 130.869141, 34.234512 ], [ 131.835938, 34.813803 ], [ 132.539062, 35.460670 ], [ 134.560547, 35.746512 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ], [ 141.855469, 40.044438 ] ] ], [ [ [ 134.560547, 34.161818 ], [ 134.736328, 33.870416 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 133.242188, 33.358062 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.363281, 33.504759 ], [ 132.890625, 34.089061 ], [ 133.417969, 34.016242 ], [ 133.857422, 34.379713 ], [ 134.560547, 34.161818 ] ] ], [ [ [ 143.085938, 44.527843 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.943359, 45.583290 ], [ 143.085938, 44.527843 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.442726 ], [ 141.855469, 40.044438 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.537109, 36.385913 ], [ 140.712891, 35.889050 ], [ 140.185547, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.099609, 33.943360 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.358062 ], [ 130.341797, 33.651208 ], [ 130.869141, 34.234512 ], [ 131.835938, 34.813803 ], [ 132.539062, 35.460670 ], [ 134.560547, 35.746512 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ] ] ], [ [ [ 133.857422, 34.379713 ], [ 134.560547, 34.161818 ], [ 134.736328, 33.870416 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 133.242188, 33.358062 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.363281, 33.504759 ], [ 132.890625, 34.089061 ], [ 133.417969, 34.016242 ], [ 133.857422, 34.379713 ] ] ], [ [ [ 141.943359, 45.583290 ], [ 143.085938, 44.527843 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.943359, 45.583290 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.560247 ], [ 178.505859, -18.145852 ], [ 177.890625, -18.229351 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.644022 ], [ 177.626953, -17.308688 ], [ 178.066406, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.560247 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -180.000000, -16.467695 ], [ -180.000000, -16.045813 ], [ -179.824219, -15.961329 ], [ -180.000000, -16.467695 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.560247 ], [ 178.505859, -18.145852 ], [ 177.890625, -18.229351 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.644022 ], [ 177.626953, -17.308688 ], [ 178.066406, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.284551 ], [ 12.919922, 1.845384 ], [ 13.271484, 1.318243 ], [ 13.974609, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.798828, 0.087891 ], [ 14.238281, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.238281, -1.933227 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.372369 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.460181 ], [ 11.425781, -2.723583 ], [ 11.777344, -3.425692 ], [ 11.074219, -3.951941 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.054628 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.439449 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.142502 ], [ 11.250000, 2.284551 ], [ 11.689453, 2.372369 ], [ 12.304688, 2.196727 ], [ 12.919922, 2.372369 ], [ 13.007812, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.372369 ], [ 13.007812, 2.284551 ], [ 12.919922, 1.845384 ], [ 13.271484, 1.318243 ], [ 13.974609, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.798828, 0.087891 ], [ 14.238281, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.238281, -1.933227 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.372369 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.460181 ], [ 11.425781, -2.723583 ], [ 11.777344, -3.425692 ], [ 11.074219, -3.951941 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.054628 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.439449 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.142502 ], [ 11.250000, 2.284551 ], [ 11.689453, 2.372369 ], [ 12.304688, 2.196727 ], [ 12.919922, 2.372369 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 3.513421 ], [ 18.369141, 2.986927 ], [ 17.841797, 1.757537 ], [ 17.753906, 0.351560 ], [ 17.490234, -0.703107 ], [ 16.347656, -1.669686 ], [ 15.908203, -2.635789 ], [ 15.996094, -3.513421 ], [ 14.501953, -4.915833 ], [ 14.150391, -4.740675 ], [ 14.062500, -4.477856 ], [ 13.535156, -4.477856 ], [ 13.183594, -4.828260 ], [ 12.919922, -4.740675 ], [ 12.568359, -4.390229 ], [ 11.865234, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.777344, -3.425692 ], [ 11.425781, -2.723583 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.372369 ], [ 13.974609, -2.460181 ], [ 14.238281, -1.933227 ], [ 14.414062, -1.318243 ], [ 14.238281, -0.527336 ], [ 13.798828, 0.087891 ], [ 14.238281, 1.230374 ], [ 13.974609, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.919922, 1.845384 ], [ 13.007812, 2.284551 ], [ 14.326172, 2.284551 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.250209 ], [ 17.050781, 3.776559 ], [ 18.369141, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.050781, 3.776559 ], [ 18.369141, 3.513421 ], [ 18.369141, 2.986927 ], [ 17.841797, 1.757537 ], [ 17.753906, 0.351560 ], [ 17.490234, -0.703107 ], [ 16.347656, -1.669686 ], [ 15.908203, -2.635789 ], [ 15.996094, -3.513421 ], [ 14.501953, -4.915833 ], [ 14.150391, -4.740675 ], [ 14.062500, -4.477856 ], [ 13.535156, -4.477856 ], [ 13.183594, -4.828260 ], [ 12.919922, -4.740675 ], [ 12.568359, -4.390229 ], [ 11.865234, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.777344, -3.425692 ], [ 11.425781, -2.723583 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.372369 ], [ 13.974609, -2.460181 ], [ 14.238281, -1.933227 ], [ 14.414062, -1.318243 ], [ 14.238281, -0.527336 ], [ 13.798828, 0.087891 ], [ 14.238281, 1.230374 ], [ 13.974609, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.919922, 1.845384 ], [ 13.007812, 2.284551 ], [ 14.326172, 2.284551 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.250209 ], [ 17.050781, 3.776559 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.477856 ], [ 28.388672, 4.302591 ], [ 28.652344, 4.477856 ], [ 29.091797, 4.390229 ], [ 29.707031, 4.653080 ], [ 29.882812, 4.214943 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.113281, 2.284551 ], [ 30.410156, 1.669686 ], [ 29.794922, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.179688, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.443359, -5.353521 ], [ 29.355469, -5.878332 ], [ 29.619141, -6.489983 ], [ 30.146484, -7.013668 ], [ 30.673828, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.916016, -8.320212 ], [ 28.652344, -8.494105 ], [ 28.388672, -9.102097 ], [ 28.652344, -9.535749 ], [ 28.300781, -11.781325 ], [ 29.267578, -12.297068 ], [ 29.531250, -12.125264 ], [ 29.619141, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.211180 ], [ 27.333984, -12.125264 ], [ 27.158203, -11.523088 ], [ 26.542969, -11.867351 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.264612 ], [ 24.257812, -11.178402 ], [ 24.169922, -10.919618 ], [ 23.378906, -10.833306 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.882275 ], [ 21.796875, -9.449062 ], [ 21.796875, -8.841651 ], [ 21.884766, -8.233237 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.039062, -6.926427 ], [ 19.951172, -7.100893 ], [ 19.335938, -7.100893 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.798079 ], [ 17.402344, -8.059230 ], [ 16.787109, -7.188101 ], [ 16.259766, -5.790897 ], [ 13.359375, -5.790897 ], [ 12.304688, -6.053161 ], [ 12.128906, -5.703448 ], [ 12.392578, -5.615986 ], [ 12.392578, -5.178482 ], [ 12.568359, -4.915833 ], [ 12.919922, -4.740675 ], [ 13.183594, -4.828260 ], [ 13.535156, -4.477856 ], [ 14.062500, -4.477856 ], [ 14.150391, -4.740675 ], [ 14.501953, -4.915833 ], [ 15.996094, -3.513421 ], [ 15.908203, -2.635789 ], [ 16.347656, -1.669686 ], [ 17.490234, -0.703107 ], [ 17.753906, 0.351560 ], [ 17.841797, 1.757537 ], [ 18.369141, 2.986927 ], [ 18.457031, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.423828, 5.090944 ], [ 20.917969, 4.390229 ], [ 22.324219, 4.039618 ], [ 22.763672, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.345703, 5.178482 ], [ 24.785156, 4.915833 ], [ 25.048828, 5.003394 ], [ 25.224609, 5.178482 ], [ 25.576172, 5.266008 ], [ 26.982422, 5.178482 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.477856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.477856 ], [ 28.388672, 4.302591 ], [ 28.652344, 4.477856 ], [ 29.091797, 4.390229 ], [ 29.707031, 4.653080 ], [ 29.882812, 4.214943 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.113281, 2.284551 ], [ 30.410156, 1.669686 ], [ 29.794922, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.179688, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.443359, -5.353521 ], [ 29.355469, -5.878332 ], [ 29.619141, -6.489983 ], [ 30.146484, -7.013668 ], [ 30.673828, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.916016, -8.320212 ], [ 28.652344, -8.494105 ], [ 28.388672, -9.102097 ], [ 28.652344, -9.535749 ], [ 28.300781, -11.781325 ], [ 29.267578, -12.297068 ], [ 29.531250, -12.125264 ], [ 29.619141, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.211180 ], [ 27.333984, -12.125264 ], [ 27.158203, -11.523088 ], [ 26.542969, -11.867351 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.264612 ], [ 24.257812, -11.178402 ], [ 24.169922, -10.919618 ], [ 23.378906, -10.833306 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.882275 ], [ 21.796875, -9.449062 ], [ 21.796875, -8.841651 ], [ 21.884766, -8.233237 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.039062, -6.926427 ], [ 19.951172, -7.100893 ], [ 19.335938, -7.100893 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.798079 ], [ 17.402344, -8.059230 ], [ 16.787109, -7.188101 ], [ 16.259766, -5.790897 ], [ 13.359375, -5.790897 ], [ 12.304688, -6.053161 ], [ 12.128906, -5.703448 ], [ 12.392578, -5.615986 ], [ 12.392578, -5.178482 ], [ 12.568359, -4.915833 ], [ 12.919922, -4.740675 ], [ 13.183594, -4.828260 ], [ 13.535156, -4.477856 ], [ 14.062500, -4.477856 ], [ 14.150391, -4.740675 ], [ 14.501953, -4.915833 ], [ 15.996094, -3.513421 ], [ 15.908203, -2.635789 ], [ 16.347656, -1.669686 ], [ 17.490234, -0.703107 ], [ 17.753906, 0.351560 ], [ 17.841797, 1.757537 ], [ 18.369141, 2.986927 ], [ 18.457031, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.423828, 5.090944 ], [ 20.917969, 4.390229 ], [ 22.324219, 4.039618 ], [ 22.763672, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.345703, 5.178482 ], [ 24.785156, 4.915833 ], [ 25.048828, 5.003394 ], [ 25.224609, 5.178482 ], [ 25.576172, 5.266008 ], [ 26.982422, 5.178482 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.787109, -7.188101 ], [ 17.402344, -8.059230 ], [ 18.457031, -7.798079 ], [ 18.984375, -7.972198 ], [ 19.335938, -7.100893 ], [ 19.951172, -7.100893 ], [ 20.039062, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.884766, -8.233237 ], [ 21.796875, -8.841651 ], [ 21.796875, -9.449062 ], [ 22.148438, -9.882275 ], [ 22.148438, -11.005904 ], [ 23.378906, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.178402 ], [ 23.818359, -11.695273 ], [ 23.994141, -12.125264 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.896484, -17.727759 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 12.744141, -16.888660 ], [ 11.689453, -17.224758 ], [ 11.601562, -16.636192 ], [ 12.128906, -14.434680 ], [ 12.656250, -13.068777 ], [ 13.623047, -11.953349 ], [ 13.710938, -11.264612 ], [ 13.623047, -10.660608 ], [ 13.359375, -10.314919 ], [ 12.832031, -9.102097 ], [ 13.183594, -8.494105 ], [ 12.656250, -6.926427 ], [ 12.216797, -6.227934 ], [ 12.304688, -6.053161 ], [ 13.359375, -5.790897 ], [ 16.259766, -5.790897 ], [ 16.787109, -7.188101 ] ] ], [ [ [ 12.919922, -4.740675 ], [ 12.392578, -5.178482 ], [ 12.392578, -5.615986 ], [ 12.128906, -5.703448 ], [ 11.865234, -5.003394 ], [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.259766, -5.790897 ], [ 16.787109, -7.188101 ], [ 17.402344, -8.059230 ], [ 18.457031, -7.798079 ], [ 18.984375, -7.972198 ], [ 19.335938, -7.100893 ], [ 19.951172, -7.100893 ], [ 20.039062, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.884766, -8.233237 ], [ 21.796875, -8.841651 ], [ 21.796875, -9.449062 ], [ 22.148438, -9.882275 ], [ 22.148438, -11.005904 ], [ 23.378906, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.178402 ], [ 23.818359, -11.695273 ], [ 23.994141, -12.125264 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.896484, -17.727759 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 12.744141, -16.888660 ], [ 11.689453, -17.224758 ], [ 11.601562, -16.636192 ], [ 12.128906, -14.434680 ], [ 12.656250, -13.068777 ], [ 13.623047, -11.953349 ], [ 13.710938, -11.264612 ], [ 13.623047, -10.660608 ], [ 13.359375, -10.314919 ], [ 12.832031, -9.102097 ], [ 13.183594, -8.494105 ], [ 12.656250, -6.926427 ], [ 12.216797, -6.227934 ], [ 12.304688, -6.053161 ], [ 13.359375, -5.790897 ], [ 16.259766, -5.790897 ] ] ], [ [ [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ], [ 12.392578, -5.178482 ], [ 12.392578, -5.615986 ], [ 12.128906, -5.703448 ], [ 11.865234, -5.003394 ], [ 12.568359, -4.390229 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.974609, -17.392579 ], [ 18.193359, -17.308688 ], [ 18.896484, -17.727759 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.224758 ], [ 24.609375, -17.308688 ], [ 25.048828, -17.560247 ], [ 24.433594, -17.811456 ], [ 24.169922, -17.811456 ], [ 23.554688, -18.229351 ], [ 23.115234, -17.811456 ], [ 21.621094, -18.145852 ], [ 20.830078, -18.229351 ], [ 20.830078, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.921631 ], [ 18.457031, -28.998532 ], [ 17.314453, -28.767659 ], [ 17.138672, -28.304381 ], [ 16.787109, -28.071980 ], [ 16.259766, -28.536275 ], [ 15.556641, -27.761330 ], [ 15.205078, -27.059126 ], [ 14.326172, -23.805450 ], [ 14.238281, -22.105999 ], [ 13.271484, -20.797201 ], [ 12.568359, -18.979026 ], [ 11.777344, -18.062312 ], [ 11.689453, -17.224758 ], [ 12.744141, -16.888660 ], [ 13.447266, -16.888660 ], [ 13.974609, -17.392579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.888660 ], [ 13.974609, -17.392579 ], [ 18.193359, -17.308688 ], [ 18.896484, -17.727759 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.224758 ], [ 24.609375, -17.308688 ], [ 25.048828, -17.560247 ], [ 24.433594, -17.811456 ], [ 24.169922, -17.811456 ], [ 23.554688, -18.229351 ], [ 23.115234, -17.811456 ], [ 21.621094, -18.145852 ], [ 20.830078, -18.229351 ], [ 20.830078, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.921631 ], [ 18.457031, -28.998532 ], [ 17.314453, -28.767659 ], [ 17.138672, -28.304381 ], [ 16.787109, -28.071980 ], [ 16.259766, -28.536275 ], [ 15.556641, -27.761330 ], [ 15.205078, -27.059126 ], [ 14.326172, -23.805450 ], [ 14.238281, -22.105999 ], [ 13.271484, -20.797201 ], [ 12.568359, -18.979026 ], [ 11.777344, -18.062312 ], [ 11.689453, -17.224758 ], [ 12.744141, -16.888660 ], [ 13.447266, -16.888660 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, -1.669686 ], [ 30.673828, -2.284551 ], [ 30.410156, -2.372369 ], [ 29.882812, -2.284551 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.179688, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.531250, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.054628 ], [ 30.761719, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.054628 ], [ 30.761719, -1.669686 ], [ 30.673828, -2.284551 ], [ 30.410156, -2.372369 ], [ 29.882812, -2.284551 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.179688, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.531250, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.054628 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -2.372369 ], [ 30.673828, -3.337954 ], [ 29.707031, -4.390229 ], [ 29.267578, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.882812, -2.284551 ], [ 30.410156, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.882812, -2.284551 ], [ 30.410156, -2.372369 ], [ 30.673828, -3.337954 ], [ 29.707031, -4.390229 ], [ 29.267578, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.882812, -2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, -9.188870 ], [ 33.222656, -9.622414 ], [ 33.398438, -10.487812 ], [ 33.046875, -11.523088 ], [ 33.222656, -12.382928 ], [ 32.958984, -12.726084 ], [ 32.607422, -13.667338 ], [ 33.134766, -13.923404 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.453680 ], [ 29.443359, -15.623037 ], [ 28.916016, -15.961329 ], [ 28.740234, -16.383391 ], [ 28.388672, -16.467695 ], [ 26.982422, -17.895114 ], [ 25.224609, -17.727759 ], [ 24.609375, -17.308688 ], [ 23.994141, -17.224758 ], [ 23.203125, -17.476432 ], [ 21.884766, -16.045813 ], [ 21.884766, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.125264 ], [ 23.818359, -11.695273 ], [ 23.994141, -11.178402 ], [ 23.906250, -10.919618 ], [ 24.169922, -10.919618 ], [ 24.257812, -11.178402 ], [ 25.400391, -11.264612 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.867351 ], [ 27.158203, -11.523088 ], [ 27.333984, -12.125264 ], [ 28.125000, -12.211180 ], [ 28.916016, -13.239945 ], [ 29.619141, -13.239945 ], [ 29.531250, -12.125264 ], [ 29.267578, -12.297068 ], [ 28.300781, -11.781325 ], [ 28.652344, -9.535749 ], [ 28.388672, -9.102097 ], [ 28.652344, -8.494105 ], [ 30.322266, -8.233237 ], [ 32.695312, -9.188870 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.695312, -9.188870 ], [ 33.222656, -9.622414 ], [ 33.398438, -10.487812 ], [ 33.046875, -11.523088 ], [ 33.222656, -12.382928 ], [ 32.958984, -12.726084 ], [ 32.607422, -13.667338 ], [ 33.134766, -13.923404 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.453680 ], [ 29.443359, -15.623037 ], [ 28.916016, -15.961329 ], [ 28.740234, -16.383391 ], [ 28.388672, -16.467695 ], [ 26.982422, -17.895114 ], [ 25.224609, -17.727759 ], [ 24.609375, -17.308688 ], [ 23.994141, -17.224758 ], [ 23.203125, -17.476432 ], [ 21.884766, -16.045813 ], [ 21.884766, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.125264 ], [ 23.818359, -11.695273 ], [ 23.994141, -11.178402 ], [ 23.906250, -10.919618 ], [ 24.169922, -10.919618 ], [ 24.257812, -11.178402 ], [ 25.400391, -11.264612 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.867351 ], [ 27.158203, -11.523088 ], [ 27.333984, -12.125264 ], [ 28.125000, -12.211180 ], [ 28.916016, -13.239945 ], [ 29.619141, -13.239945 ], [ 29.531250, -12.125264 ], [ 29.267578, -12.297068 ], [ 28.300781, -11.781325 ], [ 28.652344, -9.535749 ], [ 28.388672, -9.102097 ], [ 28.652344, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.113281, -15.792254 ], [ 31.552734, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.255859, -16.383391 ], [ 32.783203, -16.636192 ], [ 32.783203, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.695312, -19.642588 ], [ 32.607422, -20.303418 ], [ 32.431641, -20.385825 ], [ 32.167969, -21.043491 ], [ 31.113281, -22.187405 ], [ 30.585938, -22.105999 ], [ 30.322266, -22.268764 ], [ 29.355469, -22.024546 ], [ 28.740234, -21.616579 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.797201 ], [ 27.685547, -20.468189 ], [ 27.246094, -20.385825 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.388672, -16.467695 ], [ 28.740234, -16.383391 ], [ 28.916016, -15.961329 ], [ 29.443359, -15.623037 ], [ 30.234375, -15.453680 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 30.322266, -15.876809 ], [ 31.113281, -15.792254 ], [ 31.552734, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.255859, -16.383391 ], [ 32.783203, -16.636192 ], [ 32.783203, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.695312, -19.642588 ], [ 32.607422, -20.303418 ], [ 32.431641, -20.385825 ], [ 32.167969, -21.043491 ], [ 31.113281, -22.187405 ], [ 30.585938, -22.105999 ], [ 30.322266, -22.268764 ], [ 29.355469, -22.024546 ], [ 28.740234, -21.616579 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.797201 ], [ 27.685547, -20.468189 ], [ 27.246094, -20.385825 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.388672, -16.467695 ], [ 28.740234, -16.383391 ], [ 28.916016, -15.961329 ], [ 29.443359, -15.623037 ], [ 30.234375, -15.453680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.617188, -3.074695 ], [ 37.705078, -3.601142 ], [ 39.199219, -4.653080 ], [ 38.671875, -5.878332 ], [ 38.759766, -6.402648 ], [ 39.375000, -6.839170 ], [ 39.462891, -7.013668 ], [ 39.111328, -7.623887 ], [ 39.111328, -8.407168 ], [ 39.902344, -10.055403 ], [ 40.253906, -10.314919 ], [ 39.462891, -10.833306 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.523088 ], [ 36.474609, -11.695273 ], [ 35.244141, -11.436955 ], [ 34.541016, -11.436955 ], [ 34.277344, -10.141932 ], [ 33.662109, -9.362353 ], [ 32.695312, -9.188870 ], [ 30.673828, -8.320212 ], [ 30.146484, -7.013668 ], [ 29.619141, -6.489983 ], [ 29.355469, -5.878332 ], [ 29.443359, -5.353521 ], [ 29.267578, -4.477856 ], [ 29.707031, -4.390229 ], [ 30.673828, -3.337954 ], [ 30.410156, -2.372369 ], [ 30.673828, -2.284551 ], [ 30.761719, -1.669686 ], [ 30.410156, -1.054628 ], [ 30.761719, -0.966751 ], [ 33.837891, -0.878872 ], [ 37.617188, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.837891, -0.878872 ], [ 37.617188, -3.074695 ], [ 37.705078, -3.601142 ], [ 39.199219, -4.653080 ], [ 38.671875, -5.878332 ], [ 38.759766, -6.402648 ], [ 39.375000, -6.839170 ], [ 39.462891, -7.013668 ], [ 39.111328, -7.623887 ], [ 39.111328, -8.407168 ], [ 39.902344, -10.055403 ], [ 40.253906, -10.314919 ], [ 39.462891, -10.833306 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.523088 ], [ 36.474609, -11.695273 ], [ 35.244141, -11.436955 ], [ 34.541016, -11.436955 ], [ 34.277344, -10.141932 ], [ 33.662109, -9.362353 ], [ 32.695312, -9.188870 ], [ 30.673828, -8.320212 ], [ 30.146484, -7.013668 ], [ 29.619141, -6.489983 ], [ 29.355469, -5.878332 ], [ 29.443359, -5.353521 ], [ 29.267578, -4.477856 ], [ 29.707031, -4.390229 ], [ 30.673828, -3.337954 ], [ 30.410156, -2.372369 ], [ 30.673828, -2.284551 ], [ 30.761719, -1.669686 ], [ 30.410156, -1.054628 ], [ 30.761719, -0.966751 ], [ 33.837891, -0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.662109, -9.362353 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.436955 ], [ 34.277344, -12.211180 ], [ 34.541016, -13.496473 ], [ 34.892578, -13.496473 ], [ 35.244141, -13.838080 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.045813 ], [ 34.980469, -16.720385 ], [ 34.365234, -16.130262 ], [ 34.277344, -15.453680 ], [ 34.453125, -14.944785 ], [ 34.453125, -14.604847 ], [ 34.013672, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.607422, -13.667338 ], [ 32.958984, -12.726084 ], [ 33.222656, -12.382928 ], [ 33.046875, -11.523088 ], [ 33.398438, -10.487812 ], [ 33.222656, -9.622414 ], [ 32.695312, -9.188870 ], [ 33.662109, -9.362353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, -9.188870 ], [ 33.662109, -9.362353 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.436955 ], [ 34.277344, -12.211180 ], [ 34.541016, -13.496473 ], [ 34.892578, -13.496473 ], [ 35.244141, -13.838080 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.045813 ], [ 34.980469, -16.720385 ], [ 34.365234, -16.130262 ], [ 34.277344, -15.453680 ], [ 34.453125, -14.944785 ], [ 34.453125, -14.604847 ], [ 34.013672, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.607422, -13.667338 ], [ 32.958984, -12.726084 ], [ 33.222656, -12.382928 ], [ 33.046875, -11.523088 ], [ 33.398438, -10.487812 ], [ 33.222656, -9.622414 ], [ 32.695312, -9.188870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.746969 ], [ 40.517578, -14.179186 ], [ 40.693359, -14.689881 ], [ 40.078125, -16.045813 ], [ 39.375000, -16.720385 ], [ 37.353516, -17.560247 ], [ 36.210938, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.476950 ], [ 34.716797, -19.725342 ], [ 34.628906, -20.468189 ], [ 35.156250, -21.207459 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.024546 ], [ 35.507812, -22.998852 ], [ 35.332031, -23.483401 ], [ 35.595703, -23.644524 ], [ 35.419922, -24.046464 ], [ 34.980469, -24.447150 ], [ 32.958984, -25.324167 ], [ 32.519531, -25.720735 ], [ 32.607422, -26.115986 ], [ 32.871094, -26.194877 ], [ 32.783203, -26.667096 ], [ 31.992188, -26.667096 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.113281, -22.187405 ], [ 32.167969, -21.043491 ], [ 32.431641, -20.385825 ], [ 32.607422, -20.303418 ], [ 32.695312, -19.642588 ], [ 32.607422, -19.394068 ], [ 32.783203, -17.978733 ], [ 32.783203, -16.636192 ], [ 32.255859, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.552734, -16.045813 ], [ 31.113281, -15.792254 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.134766, -13.923404 ], [ 33.750000, -14.434680 ], [ 34.013672, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.453125, -14.944785 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.130262 ], [ 34.980469, -16.720385 ], [ 35.332031, -16.045813 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.838080 ], [ 34.892578, -13.496473 ], [ 34.541016, -13.496473 ], [ 34.277344, -12.211180 ], [ 34.541016, -11.436955 ], [ 35.244141, -11.436955 ], [ 36.474609, -11.695273 ], [ 37.441406, -11.523088 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.462891, -10.833306 ], [ 40.253906, -10.314919 ], [ 40.429688, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, -10.314919 ], [ 40.429688, -10.746969 ], [ 40.517578, -14.179186 ], [ 40.693359, -14.689881 ], [ 40.078125, -16.045813 ], [ 39.375000, -16.720385 ], [ 37.353516, -17.560247 ], [ 36.210938, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.476950 ], [ 34.716797, -19.725342 ], [ 34.628906, -20.468189 ], [ 35.156250, -21.207459 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.024546 ], [ 35.507812, -22.998852 ], [ 35.332031, -23.483401 ], [ 35.595703, -23.644524 ], [ 35.419922, -24.046464 ], [ 34.980469, -24.447150 ], [ 32.958984, -25.324167 ], [ 32.519531, -25.720735 ], [ 32.607422, -26.115986 ], [ 32.871094, -26.194877 ], [ 32.783203, -26.667096 ], [ 31.992188, -26.667096 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.113281, -22.187405 ], [ 32.167969, -21.043491 ], [ 32.431641, -20.385825 ], [ 32.607422, -20.303418 ], [ 32.695312, -19.642588 ], [ 32.607422, -19.394068 ], [ 32.783203, -17.978733 ], [ 32.783203, -16.636192 ], [ 32.255859, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.552734, -16.045813 ], [ 31.113281, -15.792254 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.134766, -13.923404 ], [ 33.750000, -14.434680 ], [ 34.013672, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.453125, -14.944785 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.130262 ], [ 34.980469, -16.720385 ], [ 35.332031, -16.045813 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.838080 ], [ 34.892578, -13.496473 ], [ 34.541016, -13.496473 ], [ 34.277344, -12.211180 ], [ 34.541016, -11.436955 ], [ 35.244141, -11.436955 ], [ 36.474609, -11.695273 ], [ 37.441406, -11.523088 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.462891, -10.833306 ], [ 40.253906, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.224609, -17.727759 ], [ 25.576172, -18.479609 ], [ 26.103516, -19.228177 ], [ 27.246094, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.797201 ], [ 27.949219, -21.453069 ], [ 28.740234, -21.616579 ], [ 29.355469, -22.024546 ], [ 27.949219, -22.755921 ], [ 27.070312, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 24.960938, -25.641526 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 22.763672, -25.482951 ], [ 22.500000, -25.958045 ], [ 21.533203, -26.667096 ], [ 20.830078, -26.824071 ], [ 20.654297, -26.431228 ], [ 20.742188, -25.799891 ], [ 20.126953, -24.846565 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.779905 ], [ 20.830078, -21.779905 ], [ 20.830078, -18.229351 ], [ 21.621094, -18.145852 ], [ 23.115234, -17.811456 ], [ 23.554688, -18.229351 ], [ 24.169922, -17.811456 ], [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 25.576172, -18.479609 ], [ 26.103516, -19.228177 ], [ 27.246094, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.797201 ], [ 27.949219, -21.453069 ], [ 28.740234, -21.616579 ], [ 29.355469, -22.024546 ], [ 27.949219, -22.755921 ], [ 27.070312, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 24.960938, -25.641526 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 22.763672, -25.482951 ], [ 22.500000, -25.958045 ], [ 21.533203, -26.667096 ], [ 20.830078, -26.824071 ], [ 20.654297, -26.431228 ], [ 20.742188, -25.799891 ], [ 20.126953, -24.846565 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.779905 ], [ 20.830078, -21.779905 ], [ 20.830078, -18.229351 ], [ 21.621094, -18.145852 ], [ 23.115234, -17.811456 ], [ 23.554688, -18.229351 ], [ 24.169922, -17.811456 ], [ 25.048828, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.585938, -22.105999 ], [ 31.113281, -22.187405 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.352498 ], [ 30.673828, -26.667096 ], [ 31.201172, -27.215556 ], [ 31.816406, -27.137368 ], [ 31.992188, -26.667096 ], [ 32.783203, -26.667096 ], [ 32.431641, -28.226970 ], [ 32.167969, -28.690588 ], [ 31.464844, -29.228890 ], [ 30.849609, -29.840644 ], [ 29.970703, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.367188, -33.578015 ], [ 25.839844, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.724340 ], [ 24.609375, -33.943360 ], [ 23.554688, -33.724340 ], [ 22.939453, -33.870416 ], [ 22.500000, -33.797409 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.379713 ], [ 20.039062, -34.741612 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.808594, -34.379713 ], [ 18.369141, -33.943360 ], [ 18.369141, -34.089061 ], [ 18.193359, -33.797409 ], [ 18.193359, -33.211116 ], [ 17.841797, -32.546813 ], [ 18.193359, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.259766, -28.536275 ], [ 16.787109, -28.071980 ], [ 17.138672, -28.304381 ], [ 17.314453, -28.767659 ], [ 18.457031, -28.998532 ], [ 18.984375, -28.921631 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.846565 ], [ 20.742188, -25.799891 ], [ 20.654297, -26.431228 ], [ 20.830078, -26.824071 ], [ 21.533203, -26.667096 ], [ 22.500000, -25.958045 ], [ 22.763672, -25.482951 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 24.960938, -25.641526 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.070312, -23.563987 ], [ 27.949219, -22.755921 ], [ 29.355469, -22.024546 ], [ 29.794922, -22.024546 ], [ 30.322266, -22.268764 ] ], [ [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.685547, -30.600094 ], [ 28.037109, -30.524413 ], [ 28.212891, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.267578, -29.228890 ], [ 28.916016, -28.921631 ], [ 28.476562, -28.613459 ], [ 28.037109, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.794922, -22.024546 ], [ 30.322266, -22.268764 ], [ 30.585938, -22.105999 ], [ 31.113281, -22.187405 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.352498 ], [ 30.673828, -26.667096 ], [ 31.201172, -27.215556 ], [ 31.816406, -27.137368 ], [ 31.992188, -26.667096 ], [ 32.783203, -26.667096 ], [ 32.431641, -28.226970 ], [ 32.167969, -28.690588 ], [ 31.464844, -29.228890 ], [ 30.849609, -29.840644 ], [ 29.970703, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.367188, -33.578015 ], [ 25.839844, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.724340 ], [ 24.609375, -33.943360 ], [ 23.554688, -33.724340 ], [ 22.939453, -33.870416 ], [ 22.500000, -33.797409 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.379713 ], [ 20.039062, -34.741612 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.808594, -34.379713 ], [ 18.369141, -33.943360 ], [ 18.369141, -34.089061 ], [ 18.193359, -33.797409 ], [ 18.193359, -33.211116 ], [ 17.841797, -32.546813 ], [ 18.193359, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.259766, -28.536275 ], [ 16.787109, -28.071980 ], [ 17.138672, -28.304381 ], [ 17.314453, -28.767659 ], [ 18.457031, -28.998532 ], [ 18.984375, -28.921631 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.846565 ], [ 20.742188, -25.799891 ], [ 20.654297, -26.431228 ], [ 20.830078, -26.824071 ], [ 21.533203, -26.667096 ], [ 22.500000, -25.958045 ], [ 22.763672, -25.482951 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 24.960938, -25.641526 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.070312, -23.563987 ], [ 27.949219, -22.755921 ], [ 29.355469, -22.024546 ], [ 29.794922, -22.024546 ] ], [ [ 28.476562, -28.613459 ], [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.685547, -30.600094 ], [ 28.037109, -30.524413 ], [ 28.212891, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.267578, -29.228890 ], [ 28.916016, -28.921631 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.799891 ], [ 31.992188, -26.667096 ], [ 31.816406, -27.137368 ], [ 31.201172, -27.215556 ], [ 30.673828, -26.667096 ], [ 30.673828, -26.352498 ], [ 31.025391, -25.720735 ], [ 31.289062, -25.641526 ], [ 31.816406, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, -25.641526 ], [ 31.816406, -25.799891 ], [ 31.992188, -26.667096 ], [ 31.816406, -27.137368 ], [ 31.201172, -27.215556 ], [ 30.673828, -26.667096 ], [ 30.673828, -26.352498 ], [ 31.025391, -25.720735 ], [ 31.289062, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.916016, -28.921631 ], [ 29.267578, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.212891, -30.221102 ], [ 28.037109, -30.524413 ], [ 27.685547, -30.600094 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.476562, -28.613459 ], [ 28.916016, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, -28.613459 ], [ 28.916016, -28.921631 ], [ 29.267578, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.212891, -30.221102 ], [ 28.037109, -30.524413 ], [ 27.685547, -30.600094 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.482422, -12.468760 ], [ 50.009766, -13.496473 ], [ 50.185547, -14.689881 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.623037 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.368950 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.383391 ], [ 49.746094, -16.804541 ], [ 49.482422, -17.056785 ], [ 49.394531, -17.895114 ], [ 47.021484, -24.926295 ], [ 45.351562, -25.562265 ], [ 44.033203, -24.926295 ], [ 43.681641, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.289374 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.296875, -20.055931 ], [ 44.384766, -19.394068 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.804541 ], [ 44.384766, -16.214675 ], [ 44.912109, -16.130262 ], [ 45.791016, -15.792254 ], [ 46.230469, -15.707663 ], [ 47.636719, -14.519780 ], [ 47.988281, -14.008696 ], [ 47.812500, -13.581921 ], [ 48.251953, -13.752725 ], [ 48.779297, -13.068777 ], [ 48.779297, -12.468760 ], [ 49.130859, -12.039321 ], [ 49.482422, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.130859, -12.039321 ], [ 49.482422, -12.468760 ], [ 50.009766, -13.496473 ], [ 50.185547, -14.689881 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.623037 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.368950 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.383391 ], [ 49.746094, -16.804541 ], [ 49.482422, -17.056785 ], [ 49.394531, -17.895114 ], [ 47.021484, -24.926295 ], [ 45.351562, -25.562265 ], [ 44.033203, -24.926295 ], [ 43.681641, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.289374 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.296875, -20.055931 ], [ 44.384766, -19.394068 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.804541 ], [ 44.384766, -16.214675 ], [ 44.912109, -16.130262 ], [ 45.791016, -15.792254 ], [ 46.230469, -15.707663 ], [ 47.636719, -14.519780 ], [ 47.988281, -14.008696 ], [ 47.812500, -13.581921 ], [ 48.251953, -13.752725 ], [ 48.779297, -13.068777 ], [ 48.779297, -12.468760 ], [ 49.130859, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ] ] ], [ [ [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ] ] ], [ [ [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ] ] ], [ [ [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ] ] ], [ [ [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ] ] ], [ [ [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ] ] ], [ [ [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ] ] ], [ [ [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 109.775391, 1.406109 ], [ 110.478516, 0.790990 ], [ 111.093750, 1.054628 ], [ 111.796875, 0.966751 ], [ 112.324219, 1.493971 ], [ 112.851562, 1.581830 ], [ 113.730469, 1.230374 ], [ 114.609375, 1.493971 ], [ 115.048828, 2.899153 ], [ 115.488281, 3.250209 ], [ 115.839844, 4.390229 ], [ 116.982422, 4.390229 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ] ] ], [ [ [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ] ] ], [ [ [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ] ] ], [ [ [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ] ] ], [ [ [ 116.982422, 4.390229 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 109.775391, 1.406109 ], [ 110.478516, 0.790990 ], [ 111.093750, 1.054628 ], [ 111.796875, 0.966751 ], [ 112.324219, 1.493971 ], [ 112.851562, 1.581830 ], [ 113.730469, 1.230374 ], [ 114.609375, 1.493971 ], [ 115.048828, 2.899153 ], [ 115.488281, 3.250209 ], [ 115.839844, 4.390229 ], [ 116.982422, 4.390229 ] ] ], [ [ [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ] ] ], [ [ [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ] ] ], [ [ [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.358544 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 145.371094, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 114.169922, -22.512557 ], [ 114.609375, -21.779905 ], [ 115.400391, -21.453069 ], [ 115.927734, -21.043491 ], [ 116.630859, -20.632784 ], [ 117.158203, -20.550509 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.303418 ], [ 118.828125, -20.220966 ], [ 118.916016, -19.973349 ], [ 119.179688, -19.890723 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.646245 ], [ 122.167969, -18.145852 ], [ 122.255859, -17.224758 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.551962 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.604847 ], [ 125.595703, -14.434680 ], [ 125.683594, -14.179186 ], [ 126.123047, -14.264383 ], [ 126.123047, -14.093957 ], [ 127.001953, -13.752725 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 129.814453, -13.581921 ], [ 130.253906, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.468760 ], [ 131.220703, -12.125264 ], [ 131.660156, -12.297068 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 131.748047, -11.264612 ], [ 132.275391, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.505859, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.867351 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 136.230469, -13.239945 ], [ 135.878906, -13.239945 ], [ 136.054688, -13.667338 ], [ 135.351562, -14.689881 ], [ 135.439453, -14.944785 ], [ 136.230469, -15.538376 ], [ 137.021484, -15.792254 ], [ 138.251953, -16.804541 ], [ 138.515625, -16.804541 ], [ 139.042969, -17.056785 ], [ 139.218750, -17.308688 ], [ 140.185547, -17.644022 ], [ 140.800781, -17.308688 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.591797, -12.897489 ], [ 141.767578, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.470703, -10.660608 ], [ 142.734375, -11.092166 ], [ 142.822266, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.297068 ], [ 143.437500, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 145.195312, -15.368950 ], [ 145.458984, -16.214675 ], [ 145.634766, -16.720385 ], [ 145.810547, -16.888660 ], [ 146.074219, -17.727759 ], [ 145.986328, -18.229351 ], [ 146.337891, -18.895893 ], [ 147.392578, -19.476950 ], [ 148.798828, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.238281, -21.207459 ], [ 149.677734, -22.268764 ], [ 150.029297, -22.105999 ], [ 150.468750, -22.512557 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.017578, -27.215556 ], [ 153.544922, -28.071980 ], [ 153.457031, -28.921631 ], [ 153.017578, -30.297018 ], [ 153.017578, -30.902225 ], [ 152.402344, -32.546813 ], [ 151.699219, -32.990236 ], [ 150.996094, -34.307144 ], [ 150.644531, -35.101934 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.090240 ], [ 149.941406, -37.370157 ], [ 149.414062, -37.718590 ], [ 148.271484, -37.788081 ], [ 147.304688, -38.203655 ], [ 146.250000, -39.027719 ], [ 145.458984, -38.548165 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 144.404297, -38.065392 ], [ 143.525391, -38.754083 ], [ 140.625000, -37.996163 ], [ 139.921875, -37.370157 ], [ 139.570312, -36.102376 ], [ 139.042969, -35.675147 ], [ 138.076172, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.285156, -34.669359 ], [ 137.460938, -34.089061 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 136.933594, -33.724340 ], [ 136.318359, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.175781, -33.943360 ], [ 134.560547, -33.211116 ], [ 134.033203, -32.842674 ], [ 134.208984, -32.546813 ], [ 132.978516, -31.952162 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.428663 ], [ 129.462891, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.175612 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.916485 ], [ 124.013672, -33.431441 ], [ 123.574219, -33.870416 ], [ 122.167969, -33.943360 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.452218 ], [ 119.003906, -34.452218 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 115.488281, -34.379713 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.488281, -33.431441 ], [ 115.664062, -33.211116 ], [ 115.751953, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 114.960938, -29.458731 ], [ 114.609375, -28.767659 ], [ 114.609375, -28.459033 ], [ 114.169922, -28.071980 ], [ 113.994141, -27.293689 ], [ 113.466797, -26.509905 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 113.906250, -25.878994 ], [ 114.169922, -26.273714 ], [ 114.169922, -25.720735 ], [ 113.378906, -24.367114 ], [ 113.818359, -22.998852 ], [ 113.730469, -22.431340 ], [ 114.082031, -21.779905 ], [ 114.169922, -22.512557 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.358544 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 145.371094, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ] ] ], [ [ [ 142.470703, -10.660608 ], [ 142.734375, -11.092166 ], [ 142.822266, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.297068 ], [ 143.437500, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 145.195312, -15.368950 ], [ 145.458984, -16.214675 ], [ 145.634766, -16.720385 ], [ 145.810547, -16.888660 ], [ 146.074219, -17.727759 ], [ 145.986328, -18.229351 ], [ 146.337891, -18.895893 ], [ 147.392578, -19.476950 ], [ 148.798828, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.238281, -21.207459 ], [ 149.677734, -22.268764 ], [ 150.029297, -22.105999 ], [ 150.468750, -22.512557 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.017578, -27.215556 ], [ 153.544922, -28.071980 ], [ 153.457031, -28.921631 ], [ 153.017578, -30.297018 ], [ 153.017578, -30.902225 ], [ 152.402344, -32.546813 ], [ 151.699219, -32.990236 ], [ 150.996094, -34.307144 ], [ 150.644531, -35.101934 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.090240 ], [ 149.941406, -37.370157 ], [ 149.414062, -37.718590 ], [ 148.271484, -37.788081 ], [ 147.304688, -38.203655 ], [ 146.250000, -39.027719 ], [ 145.458984, -38.548165 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 144.404297, -38.065392 ], [ 143.525391, -38.754083 ], [ 140.625000, -37.996163 ], [ 139.921875, -37.370157 ], [ 139.570312, -36.102376 ], [ 139.042969, -35.675147 ], [ 138.076172, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.285156, -34.669359 ], [ 137.460938, -34.089061 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 136.933594, -33.724340 ], [ 136.318359, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.175781, -33.943360 ], [ 134.560547, -33.211116 ], [ 134.033203, -32.842674 ], [ 134.208984, -32.546813 ], [ 132.978516, -31.952162 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.428663 ], [ 129.462891, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.175612 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.916485 ], [ 124.013672, -33.431441 ], [ 123.574219, -33.870416 ], [ 122.167969, -33.943360 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.452218 ], [ 119.003906, -34.452218 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 115.488281, -34.379713 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.488281, -33.431441 ], [ 115.664062, -33.211116 ], [ 115.751953, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 114.960938, -29.458731 ], [ 114.609375, -28.767659 ], [ 114.609375, -28.459033 ], [ 114.169922, -28.071980 ], [ 113.994141, -27.293689 ], [ 113.466797, -26.509905 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 113.906250, -25.878994 ], [ 114.169922, -26.273714 ], [ 114.169922, -25.720735 ], [ 113.378906, -24.367114 ], [ 113.818359, -22.998852 ], [ 113.730469, -22.431340 ], [ 114.082031, -21.698265 ], [ 114.169922, -22.512557 ], [ 114.609375, -21.779905 ], [ 115.400391, -21.453069 ], [ 115.927734, -21.043491 ], [ 116.630859, -20.632784 ], [ 117.158203, -20.550509 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.303418 ], [ 118.828125, -20.220966 ], [ 118.916016, -19.973349 ], [ 119.179688, -19.890723 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.646245 ], [ 122.167969, -18.145852 ], [ 122.255859, -17.224758 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.551962 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.604847 ], [ 125.595703, -14.434680 ], [ 125.683594, -14.179186 ], [ 126.123047, -14.264383 ], [ 126.123047, -14.093957 ], [ 127.001953, -13.752725 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 129.814453, -13.581921 ], [ 130.253906, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.468760 ], [ 131.220703, -12.125264 ], [ 131.660156, -12.297068 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 131.748047, -11.264612 ], [ 132.275391, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.505859, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.867351 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 136.230469, -13.239945 ], [ 135.878906, -13.239945 ], [ 136.054688, -13.667338 ], [ 135.351562, -14.689881 ], [ 135.439453, -14.944785 ], [ 136.230469, -15.538376 ], [ 137.021484, -15.792254 ], [ 138.251953, -16.804541 ], [ 138.515625, -16.804541 ], [ 139.042969, -17.056785 ], [ 139.218750, -17.308688 ], [ 140.185547, -17.644022 ], [ 140.800781, -17.308688 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.591797, -12.897489 ], [ 141.767578, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.470703, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.580078, -3.776559 ], [ 145.810547, -4.828260 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 148.007812, -7.972198 ], [ 148.710938, -9.102097 ], [ 149.238281, -9.015302 ], [ 149.238281, -9.449062 ], [ 150.029297, -9.622414 ], [ 149.677734, -9.795678 ], [ 150.732422, -10.228437 ], [ 150.644531, -10.574222 ], [ 149.941406, -10.574222 ], [ 149.765625, -10.314919 ], [ 147.832031, -10.055403 ], [ 146.513672, -8.928487 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ] ] ], [ [ [ 154.687500, -5.266008 ], [ 155.478516, -6.140555 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.566406, -6.839170 ], [ 155.126953, -6.489983 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.090944 ], [ 154.599609, -5.003394 ], [ 154.687500, -5.266008 ] ] ], [ [ [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.790897 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.271484, -5.703448 ], [ 148.359375, -5.353521 ], [ 149.238281, -5.528511 ], [ 149.765625, -5.441022 ], [ 149.941406, -5.003394 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ], [ 152.314453, -4.302591 ] ] ], [ [ [ 152.226562, -3.162456 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -2.986927 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ], [ 145.810547, -4.828260 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 148.007812, -7.972198 ], [ 148.710938, -9.102097 ], [ 149.238281, -9.015302 ], [ 149.238281, -9.449062 ], [ 150.029297, -9.622414 ], [ 149.677734, -9.795678 ], [ 150.732422, -10.228437 ], [ 150.644531, -10.574222 ], [ 149.941406, -10.574222 ], [ 149.765625, -10.314919 ], [ 147.832031, -10.055403 ], [ 146.513672, -8.928487 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.547988 ] ] ], [ [ [ 154.599609, -5.003394 ], [ 154.687500, -5.266008 ], [ 155.478516, -6.140555 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.566406, -6.839170 ], [ 155.126953, -6.489983 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.090944 ], [ 154.599609, -5.003394 ] ] ], [ [ [ 152.050781, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.790897 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.271484, -5.703448 ], [ 148.359375, -5.353521 ], [ 149.238281, -5.528511 ], [ 149.765625, -5.441022 ], [ 149.941406, -5.003394 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.162456 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -2.986927 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ] ] ], [ [ [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.630859, -9.535749 ], [ 161.455078, -9.709057 ], [ 160.751953, -8.841651 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.536764 ], [ 159.609375, -7.972198 ], [ 159.873047, -8.320212 ], [ 159.873047, -8.494105 ], [ 158.203125, -7.362467 ], [ 158.291016, -7.275292 ], [ 158.818359, -7.536764 ] ] ], [ [ [ 157.060547, -7.013668 ], [ 157.500000, -7.275292 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.100893 ], [ 156.445312, -6.751896 ], [ 156.533203, -6.577303 ], [ 157.060547, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ] ] ], [ [ [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.188870 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 161.279297, -9.102097 ], [ 161.630859, -9.535749 ], [ 161.455078, -9.709057 ], [ 160.751953, -8.841651 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 158.291016, -7.275292 ], [ 158.818359, -7.536764 ], [ 159.609375, -7.972198 ], [ 159.873047, -8.320212 ], [ 159.873047, -8.494105 ], [ 158.203125, -7.362467 ], [ 158.291016, -7.275292 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.060547, -7.013668 ], [ 157.500000, -7.275292 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.100893 ], [ 156.445312, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -16.130262 ], [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ] ] ], [ [ [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.728516, -15.623037 ], [ 166.640625, -15.368950 ], [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -16.130262 ], [ 167.167969, -15.876809 ] ] ], [ [ [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.728516, -15.623037 ], [ 166.640625, -15.368950 ], [ 166.552734, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.091797, -20.385825 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.091797, -20.385825 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 173.144531, -42.940339 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.695312, -46.255847 ], [ 166.640625, -46.195042 ], [ 166.464844, -45.828799 ], [ 166.992188, -45.089036 ], [ 168.222656, -44.087585 ], [ 168.925781, -43.897892 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.705729 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ] ] ], [ [ [ 173.496094, -34.957995 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.781250, -36.738884 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 177.363281, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.842286 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.990234, -41.376809 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 173.847656, -39.095963 ], [ 174.550781, -38.754083 ], [ 174.726562, -37.996163 ], [ 174.638672, -37.370157 ], [ 174.287109, -36.668419 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ], [ 173.496094, -34.957995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 173.144531, -42.940339 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.695312, -46.255847 ], [ 166.640625, -46.195042 ], [ 166.464844, -45.828799 ], [ 166.992188, -45.089036 ], [ 168.222656, -44.087585 ], [ 168.925781, -43.897892 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.705729 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ] ] ], [ [ [ 172.968750, -34.379713 ], [ 173.496094, -34.957995 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.781250, -36.738884 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 177.363281, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.842286 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.990234, -41.376809 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 173.847656, -39.095963 ], [ 174.550781, -38.754083 ], [ 174.726562, -37.996163 ], [ 174.638672, -37.370157 ], [ 174.287109, -36.668419 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.387695, 3.513421 ], [ -67.368164, 3.513421 ], [ -67.324219, 3.337954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.368164, 3.513421 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.387695, 3.513421 ], [ -67.368164, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.513421 ], [ -64.423828, 3.513421 ], [ -64.423828, 3.162456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.423828, 3.513421 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.513421 ], [ -64.423828, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.513421 ], [ -57.744141, 3.513421 ], [ -57.612305, 3.337954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.744141, 3.513421 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.513421 ], [ -57.744141, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -57.744141, 3.513421 ], [ -54.096680, 3.513421 ], [ -54.272461, 2.767478 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.096680, 3.513421 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -57.744141, 3.513421 ], [ -54.096680, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.096680, 3.513421 ], [ -52.119141, 3.513421 ], [ -52.558594, 2.547988 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.119141, 3.513421 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.096680, 3.513421 ], [ -52.119141, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.053203 ], [ -72.290039, -54.470038 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.872070, -53.041213 ], [ -72.465820, -53.696706 ], [ -71.147461, -54.059388 ], [ -70.620117, -53.592505 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -69.125977, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.038086, -27.488781 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -71.147461, -37.544577 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -71.938477, -46.860191 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -69.521484, -52.133488 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -69.960938, -52.536273 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -73.740234, -52.829321 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -71.894531, -33.906896 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.751953, -25.681137 ], [ -70.092773, -21.371244 ], [ -70.180664, -19.725342 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ], [ -69.125977, -18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.053203 ], [ -72.290039, -54.470038 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.872070, -53.041213 ], [ -72.465820, -53.696706 ], [ -71.147461, -54.059388 ], [ -70.620117, -53.592505 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.125977, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.038086, -27.488781 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -71.147461, -37.544577 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -71.938477, -46.860191 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -69.521484, -52.133488 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -69.960938, -52.536273 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -73.740234, -52.829321 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -71.894531, -33.906896 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.751953, -25.681137 ], [ -70.092773, -21.371244 ], [ -70.180664, -19.725342 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478516, -10.487812 ], [ -65.346680, -10.876465 ], [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.743164, -13.453737 ], [ -61.127930, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.468750, -14.349548 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.403320, -16.846605 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.700195, -18.937464 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -60.073242, -19.311143 ], [ -61.787109, -19.601194 ], [ -62.270508, -20.509355 ], [ -62.314453, -21.043491 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.247070, -21.493964 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.125977, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.818359, -11.005904 ], [ -68.291016, -11.005904 ], [ -68.071289, -10.703792 ], [ -67.192383, -10.271681 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.478516, -10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.478516, -10.487812 ], [ -65.346680, -10.876465 ], [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.743164, -13.453737 ], [ -61.127930, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.468750, -14.349548 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.403320, -16.846605 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.700195, -18.937464 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -60.073242, -19.311143 ], [ -61.787109, -19.601194 ], [ -62.270508, -20.509355 ], [ -62.314453, -21.043491 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.247070, -21.493964 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.125977, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.818359, -11.005904 ], [ -68.291016, -11.005904 ], [ -68.071289, -10.703792 ], [ -67.192383, -10.271681 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.119141, 3.513421 ], [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.119141, 3.513421 ], [ -51.064453, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.138470 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.634293 ], [ -55.546875, -23.563987 ], [ -55.415039, -23.926013 ], [ -55.063477, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.316406, -24.567108 ], [ -54.667969, -25.720735 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -57.612305, -27.371767 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -58.842773, -24.766785 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -62.314453, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.601194 ], [ -60.073242, -19.311143 ], [ -59.150391, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.073242, -19.311143 ], [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.138470 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.634293 ], [ -55.546875, -23.563987 ], [ -55.415039, -23.926013 ], [ -55.063477, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.316406, -24.567108 ], [ -54.667969, -25.720735 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -57.612305, -27.371767 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -58.842773, -24.766785 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -62.314453, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.601194 ], [ -60.073242, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ] ] ], [ [ [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.864510 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.528806 ], [ -173.144531, -84.115970 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.807617, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.631968 ], [ -59.589844, -80.035262 ] ] ], [ [ [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ] ] ], [ [ [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ] ] ], [ [ [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.807617, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ] ] ], [ [ [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ] ] ], [ [ [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ] ] ], [ [ [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ] ] ], [ [ [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ] ] ], [ [ [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ] ] ], [ [ [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ] ] ], [ [ [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ] ] ], [ [ [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ] ] ], [ [ [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ] ] ], [ [ [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ] ] ], [ [ [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.818359, 63.763065 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ] ] ], [ [ [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ] ] ], [ [ [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ] ] ], [ [ [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ] ] ], [ [ [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ] ] ], [ [ [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ] ] ], [ [ [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ] ] ], [ [ [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ] ] ], [ [ [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ] ] ], [ [ [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ] ] ], [ [ [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ] ] ], [ [ [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.945312, 15.919074 ], [ -88.637695, 15.707663 ], [ -88.549805, 15.876809 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.368950 ], [ -89.165039, 15.072124 ], [ -89.252930, 14.902322 ], [ -89.165039, 14.689881 ], [ -89.384766, 14.434680 ], [ -89.604492, 14.392118 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.131836, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.274414, 13.966054 ], [ -91.713867, 14.136576 ], [ -92.241211, 14.562318 ], [ -92.241211, 14.859850 ], [ -92.109375, 15.072124 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.509833 ], [ -90.747070, 16.720385 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.945312, 15.919074 ], [ -88.637695, 15.707663 ], [ -88.549805, 15.876809 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.368950 ], [ -89.165039, 15.072124 ], [ -89.252930, 14.902322 ], [ -89.165039, 14.689881 ], [ -89.384766, 14.434680 ], [ -89.604492, 14.392118 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.131836, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.274414, 13.966054 ], [ -91.713867, 14.136576 ], [ -92.241211, 14.562318 ], [ -92.241211, 14.859850 ], [ -92.109375, 15.072124 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.509833 ], [ -90.747070, 16.720385 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ] ] ], [ [ [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ] ] ], [ [ [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ] ] ], [ [ [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.330078, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.154297, 18.104087 ], [ -88.286133, 17.685895 ], [ -88.198242, 17.518344 ], [ -88.330078, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.551962 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.256867 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.978733 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.521283 ], [ -88.330078, 18.521283 ], [ -88.330078, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.330078, 18.521283 ], [ -88.330078, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.154297, 18.104087 ], [ -88.286133, 17.685895 ], [ -88.198242, 17.518344 ], [ -88.330078, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.551962 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.256867 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.978733 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.521283 ], [ -88.330078, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.549805, 14.008696 ], [ -88.505859, 13.880746 ], [ -88.066406, 13.966054 ], [ -87.890625, 13.923404 ], [ -87.758789, 13.795406 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.539201 ], [ -90.131836, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.604492, 14.392118 ], [ -89.384766, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.549805, 14.008696 ], [ -88.505859, 13.880746 ], [ -88.066406, 13.966054 ], [ -87.890625, 13.923404 ], [ -87.758789, 13.795406 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.539201 ], [ -90.131836, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.604492, 14.392118 ], [ -89.384766, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.473633, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.876809 ], [ -83.803711, 15.453680 ], [ -83.452148, 15.284185 ], [ -83.188477, 15.029686 ], [ -83.496094, 15.029686 ], [ -83.671875, 14.902322 ], [ -83.979492, 14.774883 ], [ -84.243164, 14.774883 ], [ -84.462891, 14.647368 ], [ -84.682617, 14.689881 ], [ -84.858398, 14.859850 ], [ -84.946289, 14.817371 ], [ -85.078125, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.392118 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.352539, 13.795406 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -86.923828, 13.282719 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.025966 ], [ -87.495117, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.758789, 13.795406 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.880746 ], [ -88.549805, 14.008696 ], [ -89.077148, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.252930, 14.902322 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.368950 ], [ -88.242188, 15.749963 ], [ -88.154297, 15.707663 ], [ -87.934570, 15.876809 ], [ -87.626953, 15.919074 ], [ -87.539062, 15.834536 ], [ -87.407227, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.132812, 15.919074 ], [ -86.044922, 16.045813 ], [ -85.473633, 15.919074 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.044922, 16.045813 ], [ -85.473633, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.876809 ], [ -83.803711, 15.453680 ], [ -83.452148, 15.284185 ], [ -83.188477, 15.029686 ], [ -83.496094, 15.029686 ], [ -83.671875, 14.902322 ], [ -83.979492, 14.774883 ], [ -84.243164, 14.774883 ], [ -84.462891, 14.647368 ], [ -84.682617, 14.689881 ], [ -84.858398, 14.859850 ], [ -84.946289, 14.817371 ], [ -85.078125, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.392118 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.352539, 13.795406 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -86.923828, 13.282719 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.025966 ], [ -87.495117, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.758789, 13.795406 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.880746 ], [ -88.549805, 14.008696 ], [ -89.077148, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.252930, 14.902322 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.368950 ], [ -88.242188, 15.749963 ], [ -88.154297, 15.707663 ], [ -87.934570, 15.876809 ], [ -87.626953, 15.919074 ], [ -87.539062, 15.834536 ], [ -87.407227, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.132812, 15.919074 ], [ -86.044922, 16.045813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.689881 ], [ -83.188477, 14.349548 ], [ -83.452148, 14.008696 ], [ -83.540039, 13.581921 ], [ -83.583984, 13.154376 ], [ -83.496094, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.759766, 11.910354 ], [ -83.671875, 11.652236 ], [ -83.891602, 11.393879 ], [ -83.847656, 11.135287 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.199219, 10.833306 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.946289, 10.962764 ], [ -85.605469, 11.221510 ], [ -85.737305, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.168226 ], [ -87.670898, 12.940322 ], [ -87.583008, 13.068777 ], [ -87.407227, 12.940322 ], [ -87.319336, 13.025966 ], [ -87.011719, 13.025966 ], [ -86.923828, 13.282719 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.352539, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -85.166016, 14.392118 ], [ -85.166016, 14.562318 ], [ -85.078125, 14.562318 ], [ -84.946289, 14.817371 ], [ -84.858398, 14.859850 ], [ -84.682617, 14.689881 ], [ -84.462891, 14.647368 ], [ -84.243164, 14.774883 ], [ -83.979492, 14.774883 ], [ -83.671875, 14.902322 ], [ -83.496094, 15.029686 ], [ -83.188477, 15.029686 ], [ -83.320312, 14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.188477, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.188477, 14.349548 ], [ -83.452148, 14.008696 ], [ -83.540039, 13.581921 ], [ -83.583984, 13.154376 ], [ -83.496094, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.759766, 11.910354 ], [ -83.671875, 11.652236 ], [ -83.891602, 11.393879 ], [ -83.847656, 11.135287 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.199219, 10.833306 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.946289, 10.962764 ], [ -85.605469, 11.221510 ], [ -85.737305, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.168226 ], [ -87.670898, 12.940322 ], [ -87.583008, 13.068777 ], [ -87.407227, 12.940322 ], [ -87.319336, 13.025966 ], [ -87.011719, 13.025966 ], [ -86.923828, 13.282719 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.352539, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -85.166016, 14.392118 ], [ -85.166016, 14.562318 ], [ -85.078125, 14.562318 ], [ -84.946289, 14.817371 ], [ -84.858398, 14.859850 ], [ -84.682617, 14.689881 ], [ -84.462891, 14.647368 ], [ -84.243164, 14.774883 ], [ -83.979492, 14.774883 ], [ -83.671875, 14.902322 ], [ -83.496094, 15.029686 ], [ -83.188477, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.639648, 23.120154 ], [ -79.716797, 22.796439 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.248422 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.673828, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -77.519531, 20.673905 ], [ -78.178711, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.321289, 21.575719 ], [ -80.244141, 21.861499 ], [ -80.551758, 22.065278 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.067383, 21.943046 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.228090 ], [ -84.243164, 22.593726 ], [ -83.803711, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ], [ -79.716797, 22.796439 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.248422 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.673828, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -77.519531, 20.673905 ], [ -78.178711, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.321289, 21.575719 ], [ -80.244141, 21.861499 ], [ -80.551758, 22.065278 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.067383, 21.943046 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.228090 ], [ -84.243164, 22.593726 ], [ -83.803711, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.309570, 23.200961 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.946289, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -83.408203, 10.401378 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.968750, 9.102097 ], [ -82.749023, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.836914, 8.667918 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.627930, 8.841651 ], [ -83.671875, 9.058702 ], [ -83.935547, 9.318990 ], [ -84.682617, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.946289, 9.838979 ], [ -85.122070, 9.579084 ], [ -85.341797, 9.838979 ], [ -85.693359, 9.968851 ], [ -85.825195, 10.141932 ], [ -85.825195, 10.444598 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ], [ -84.946289, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.221510 ], [ -84.946289, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -83.408203, 10.401378 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.968750, 9.102097 ], [ -82.749023, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.836914, 8.667918 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.627930, 8.841651 ], [ -83.671875, 9.058702 ], [ -83.935547, 9.318990 ], [ -84.682617, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.946289, 9.838979 ], [ -85.122070, 9.579084 ], [ -85.341797, 9.838979 ], [ -85.693359, 9.968851 ], [ -85.825195, 10.141932 ], [ -85.825195, 10.444598 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.057617, 9.579084 ], [ -79.101562, 9.492408 ], [ -78.530273, 9.449062 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.222656, 7.536764 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.145508, 9.015302 ], [ -79.584961, 8.971897 ], [ -79.760742, 8.624472 ], [ -80.200195, 8.363693 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.210938, 7.667441 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.397461, 8.320212 ], [ -82.836914, 8.320212 ], [ -82.880859, 8.102739 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.667918 ], [ -82.880859, 8.841651 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.232249 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.738281, 9.058702 ], [ -81.474609, 8.798225 ], [ -80.991211, 8.885072 ], [ -80.551758, 9.145486 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.057617, 9.579084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.057617, 9.579084 ], [ -79.101562, 9.492408 ], [ -78.530273, 9.449062 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.222656, 7.536764 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.145508, 9.015302 ], [ -79.584961, 8.971897 ], [ -79.760742, 8.624472 ], [ -80.200195, 8.363693 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.210938, 7.667441 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.397461, 8.320212 ], [ -82.836914, 8.320212 ], [ -82.880859, 8.102739 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.667918 ], [ -82.880859, 8.841651 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.232249 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.738281, 9.058702 ], [ -81.474609, 8.798225 ], [ -80.991211, 8.885072 ], [ -80.551758, 9.145486 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ], [ -76.376953, 18.187607 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.211914, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.827148, 18.562947 ], [ -77.607422, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.827148, 18.562947 ], [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ], [ -76.376953, 18.187607 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.211914, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.827148, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.354526 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ], [ -72.597656, 19.890723 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.932041 ], [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.354526 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.818359, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.437925 ], [ -69.653320, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.271086 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.015625, 18.312811 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.354526 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.818359, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.437925 ], [ -69.653320, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.271086 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.015625, 18.312811 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.354526 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.785156, -3.513421 ], [ -70.576172, -3.513421 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.785156, -3.513421 ], [ -70.576172, -3.513421 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.790141 ], [ -61.127930, 10.919618 ], [ -60.908203, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.127930, 10.919618 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.790141 ], [ -61.127930, 10.919618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.987305, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.987305, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.457504 ], [ 3.515625, 43.197167 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.457504 ], [ 3.515625, 43.197167 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 25.918526 ], [ -11.997070, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.590820, 27.019984 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.448242, 27.098254 ], [ -8.833008, 27.137368 ], [ -8.833008, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ], [ -11.997070, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.590820, 27.019984 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.448242, 27.098254 ], [ -8.833008, 27.137368 ], [ -8.833008, 27.683528 ], [ -8.701172, 27.683528 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.041992, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.294922, 41.934977 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -6.899414, 40.346544 ], [ -7.031250, 40.212441 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.207031, 37.822802 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.920898, 36.879621 ], [ -8.789062, 37.683820 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -8.833008, 41.211722 ], [ -9.008789, 41.574361 ], [ -9.052734, 41.902277 ], [ -8.701172, 42.163403 ], [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.294922, 41.934977 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -6.899414, 40.346544 ], [ -7.031250, 40.212441 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.207031, 37.822802 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.920898, 36.879621 ], [ -8.789062, 37.683820 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -8.833008, 41.211722 ], [ -9.008789, 41.574361 ], [ -9.052734, 41.902277 ], [ -8.701172, 42.163403 ], [ -8.305664, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.341226 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -12.128906, 14.008696 ], [ -11.953125, 13.453737 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.557617, 12.468760 ], [ -11.689453, 12.425848 ], [ -12.216797, 12.468760 ], [ -12.304688, 12.382928 ], [ -12.524414, 12.340002 ], [ -13.227539, 12.597455 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.732422, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.539201 ], [ -14.721680, 13.325485 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.414062, 13.667338 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -15.424805, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.743164, 13.624633 ], [ -17.138672, 14.392118 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.743164, 15.623037 ], [ -16.479492, 16.172473 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.161133, 16.594081 ], [ -14.589844, 16.636192 ], [ -14.106445, 16.341226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -14.106445, 16.341226 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -12.128906, 14.008696 ], [ -11.953125, 13.453737 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.557617, 12.468760 ], [ -11.689453, 12.425848 ], [ -12.216797, 12.468760 ], [ -12.304688, 12.382928 ], [ -12.524414, 12.340002 ], [ -13.227539, 12.597455 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.732422, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.539201 ], [ -14.721680, 13.325485 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.414062, 13.667338 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -15.424805, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.743164, 13.624633 ], [ -17.138672, 14.392118 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.743164, 15.623037 ], [ -16.479492, 16.172473 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.161133, 16.594081 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.721680, 13.667338 ], [ -14.414062, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.325485 ], [ -15.161133, 13.539201 ], [ -15.512695, 13.282719 ], [ -15.732422, 13.282719 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ], [ -15.117188, 13.880746 ], [ -14.721680, 13.667338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.880746 ], [ -14.721680, 13.667338 ], [ -14.414062, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.325485 ], [ -15.161133, 13.539201 ], [ -15.512695, 13.282719 ], [ -15.732422, 13.282719 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ], [ -15.117188, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.524414, 12.340002 ], [ -12.304688, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.689453, 12.425848 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.337891, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.898438, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.931641, 12.082296 ], [ -9.360352, 12.340002 ], [ -9.140625, 12.340002 ], [ -8.920898, 12.125264 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.613281, 11.178402 ], [ -8.657227, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.305664, 10.833306 ], [ -8.349609, 10.531020 ], [ -8.041992, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -8.085938, 9.405710 ], [ -7.866211, 8.581021 ], [ -8.217773, 8.494105 ], [ -8.305664, 8.320212 ], [ -8.261719, 8.146243 ], [ -8.305664, 7.710992 ], [ -8.481445, 7.710992 ], [ -8.745117, 7.754537 ], [ -8.964844, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.360352, 7.928675 ], [ -9.755859, 8.581021 ], [ -10.019531, 8.450639 ], [ -10.546875, 8.363693 ], [ -10.502930, 8.754795 ], [ -10.678711, 9.015302 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.172852, 9.882275 ], [ -12.436523, 9.838979 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -13.710938, 9.535749 ], [ -14.106445, 9.925566 ], [ -14.589844, 10.228437 ], [ -14.721680, 10.660608 ], [ -14.853516, 10.919618 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -14.414062, 11.523088 ], [ -14.150391, 11.695273 ], [ -13.930664, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.168226 ], [ -13.754883, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.597455 ], [ -12.524414, 12.340002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.597455 ], [ -12.524414, 12.340002 ], [ -12.304688, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.689453, 12.425848 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.337891, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.898438, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.931641, 12.082296 ], [ -9.360352, 12.340002 ], [ -9.140625, 12.340002 ], [ -8.920898, 12.125264 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.613281, 11.178402 ], [ -8.657227, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.305664, 10.833306 ], [ -8.349609, 10.531020 ], [ -8.041992, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -8.085938, 9.405710 ], [ -7.866211, 8.581021 ], [ -8.217773, 8.494105 ], [ -8.305664, 8.320212 ], [ -8.261719, 8.146243 ], [ -8.305664, 7.710992 ], [ -8.481445, 7.710992 ], [ -8.745117, 7.754537 ], [ -8.964844, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.360352, 7.928675 ], [ -9.755859, 8.581021 ], [ -10.019531, 8.450639 ], [ -10.546875, 8.363693 ], [ -10.502930, 8.754795 ], [ -10.678711, 9.015302 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.172852, 9.882275 ], [ -12.436523, 9.838979 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -13.710938, 9.535749 ], [ -14.106445, 9.925566 ], [ -14.589844, 10.228437 ], [ -14.721680, 10.660608 ], [ -14.853516, 10.919618 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -14.414062, 11.523088 ], [ -14.150391, 11.695273 ], [ -13.930664, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.168226 ], [ -13.754883, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.634766, 9.275622 ], [ -10.678711, 9.015302 ], [ -10.502930, 8.754795 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.144499 ], [ -11.469727, 6.795535 ], [ -11.733398, 6.882800 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.841615 ], [ -13.139648, 8.189742 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.172852, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.678711, 9.015302 ], [ -10.502930, 8.754795 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.144499 ], [ -11.469727, 6.795535 ], [ -11.733398, 6.882800 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.841615 ], [ -13.139648, 8.189742 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.172852, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.678711, 15.156974 ], [ -11.381836, 15.411319 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.341226 ], [ -14.589844, 16.636192 ], [ -15.161133, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.567383, 16.678293 ], [ -16.303711, 17.182779 ], [ -16.171875, 18.145852 ], [ -16.391602, 19.601194 ], [ -16.303711, 20.097206 ], [ -16.567383, 20.591652 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.678711, 15.156974 ], [ -11.381836, 15.411319 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.341226 ], [ -14.589844, 16.636192 ], [ -15.161133, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.567383, 16.678293 ], [ -16.303711, 17.182779 ], [ -16.171875, 18.145852 ], [ -16.391602, 19.601194 ], [ -16.303711, 20.097206 ], [ -16.567383, 20.591652 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 3.515625, 19.103648 ], [ 3.515625, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ], [ 0.000000, 21.820708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 3.515625, 19.103648 ], [ 3.515625, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.360352, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.964844, 7.318882 ], [ -8.745117, 7.754537 ], [ -8.481445, 7.710992 ], [ -8.525391, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.602539, 5.747174 ], [ -7.558594, 5.353521 ], [ -7.646484, 5.222247 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.008789, 4.872048 ], [ -9.931641, 5.615986 ], [ -10.766602, 6.184246 ], [ -11.469727, 6.795535 ], [ -11.206055, 7.144499 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ], [ -9.360352, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.360352, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.964844, 7.318882 ], [ -8.745117, 7.754537 ], [ -8.481445, 7.710992 ], [ -8.525391, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.602539, 5.747174 ], [ -7.558594, 5.353521 ], [ -7.646484, 5.222247 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.008789, 4.872048 ], [ -9.931641, 5.615986 ], [ -10.766602, 6.184246 ], [ -11.469727, 6.795535 ], [ -11.206055, 7.144499 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.000000, 10.962764 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ], [ 0.000000, 10.962764 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.222656, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.222656, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.576172, -3.513421 ], [ -78.222656, -3.513421 ], [ -77.871094, -2.986927 ] ] ], [ [ [ -80.288086, -3.513421 ], [ -80.463867, -3.513421 ], [ -80.332031, -3.381824 ], [ -80.288086, -3.513421 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.332031, -3.381824 ], [ -80.288086, -3.513421 ], [ -80.463867, -3.513421 ], [ -80.332031, -3.381824 ] ] ], [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.576172, -3.513421 ], [ -78.222656, -3.513421 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.344339 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.481383 ], [ 3.515625, 51.344339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.481383 ], [ 3.515625, 51.344339 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.344339 ], [ 3.515625, 50.457504 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.344339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.295898, 51.371780 ], [ 3.515625, 51.344339 ], [ 3.515625, 50.457504 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 19.103648 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.515625, 36.809285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.738302 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.515625, 15.580711 ], [ 3.515625, 11.738302 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.580711 ], [ 3.515625, 11.738302 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.515625, 15.580711 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.962764 ], [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.962764 ], [ 0.000000, 11.049038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.738302 ], [ 3.515625, 9.838979 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ], [ 3.515625, 11.738302 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.254128 ], [ 3.515625, 11.738302 ], [ 3.515625, 9.838979 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.515625, 9.838979 ], [ 3.515625, 6.271618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.838979 ], [ 3.515625, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.515625, 9.838979 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.249023, 3.513421 ], [ 15.380859, 3.337954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 3.513421 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.249023, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.249023, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.523438, 3.206333 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 3.513421 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.249023, 3.513421 ], [ 16.875000, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.000000 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 34.453125, 3.513421 ], [ 35.024414, 1.933227 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.000000 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.550781, 3.425692 ], [ 39.594727, 3.513421 ], [ 41.528320, 3.513421 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.453125, 3.513421 ], [ 38.847656, 3.513421 ], [ 39.550781, 3.425692 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.528320, 3.513421 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.453125, 3.513421 ], [ 38.847656, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.594727, 3.513421 ], [ 41.528320, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.550781, 3.425692 ], [ 38.847656, 3.513421 ], [ 39.594727, 3.513421 ], [ 39.550781, 3.425692 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.594727, 3.513421 ], [ 39.550781, 3.425692 ], [ 38.847656, 3.513421 ], [ 39.594727, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 41.528320, 3.513421 ], [ 47.109375, 3.513421 ], [ 46.538086, 2.899153 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 3.513421 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 41.528320, 3.513421 ], [ 47.109375, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.334961, 3.513421 ], [ 115.576172, 3.513421 ], [ 115.488281, 3.206333 ] ] ], [ [ [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 101.030273, 3.513421 ], [ 103.359375, 3.513421 ], [ 103.491211, 2.811371 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.576172, 3.513421 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.334961, 3.513421 ], [ 115.576172, 3.513421 ] ] ], [ [ [ 103.359375, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 101.030273, 3.513421 ], [ 103.359375, 3.513421 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 16.875000, 3.513421 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 16.875000, 3.513421 ], [ 18.413086, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, -6.620957 ], [ 16.831055, -7.188101 ], [ 17.446289, -8.059230 ], [ 18.105469, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 19.995117, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.928711, -8.276727 ], [ 21.796875, -8.885072 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 22.368164, -10.962764 ], [ 22.807617, -11.005904 ], [ 23.422852, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.221510 ], [ 23.862305, -11.695273 ], [ 24.038086, -12.168226 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 12.788086, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 11.777344, -15.792254 ], [ 12.084961, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 13.666992, -10.703792 ], [ 13.359375, -10.358151 ], [ 12.832031, -9.145486 ], [ 12.919922, -8.928487 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ], [ 16.567383, -6.620957 ] ] ], [ [ [ 12.963867, -4.740675 ], [ 12.612305, -4.959615 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.303711, -5.834616 ], [ 16.567383, -6.620957 ], [ 16.831055, -7.188101 ], [ 17.446289, -8.059230 ], [ 18.105469, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 19.995117, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.928711, -8.276727 ], [ 21.796875, -8.885072 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 22.368164, -10.962764 ], [ 22.807617, -11.005904 ], [ 23.422852, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.221510 ], [ 23.862305, -11.695273 ], [ 24.038086, -12.168226 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 12.788086, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 11.777344, -15.792254 ], [ 12.084961, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 13.666992, -10.703792 ], [ 13.359375, -10.358151 ], [ 12.832031, -9.145486 ], [ 12.919922, -8.928487 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.959615 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.018555, -17.392579 ], [ 14.194336, -17.350638 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 24.653320, -17.350638 ], [ 25.048828, -17.560247 ], [ 25.048828, -17.644022 ], [ 24.477539, -17.853290 ], [ 24.213867, -17.853290 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 21.621094, -18.187607 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 17.182617, -28.343065 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.600586, -27.800210 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.370117, -22.634293 ], [ 14.238281, -22.105999 ], [ 13.842773, -21.698265 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 12.788086, -16.930705 ], [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ], [ 14.194336, -17.350638 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 24.653320, -17.350638 ], [ 25.048828, -17.560247 ], [ 25.048828, -17.644022 ], [ 24.477539, -17.853290 ], [ 24.213867, -17.853290 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 21.621094, -18.187607 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 17.182617, -28.343065 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.600586, -27.800210 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.370117, -22.634293 ], [ 14.238281, -22.105999 ], [ 13.842773, -21.698265 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 12.788086, -16.930705 ], [ 13.447266, -16.930705 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.717773, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.167969, -8.928487 ], [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.310547, -10.790141 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.958984, -12.768946 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 29.487305, -15.623037 ], [ 28.916016, -16.003576 ], [ 28.784180, -16.383391 ], [ 28.432617, -16.467695 ], [ 27.597656, -17.266728 ], [ 27.026367, -17.936929 ], [ 26.674805, -17.936929 ], [ 26.367188, -17.811456 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.994141, -17.266728 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.038086, -12.168226 ], [ 23.862305, -11.695273 ], [ 23.994141, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 24.741211, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 28.959961, -8.363693 ], [ 30.322266, -8.233237 ], [ 30.717773, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 30.717773, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.167969, -8.928487 ], [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.310547, -10.790141 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.958984, -12.768946 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 29.487305, -15.623037 ], [ 28.916016, -16.003576 ], [ 28.784180, -16.383391 ], [ 28.432617, -16.467695 ], [ 27.597656, -17.266728 ], [ 27.026367, -17.936929 ], [ 26.674805, -17.936929 ], [ 26.367188, -17.811456 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.994141, -17.266728 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.038086, -12.168226 ], [ 23.862305, -11.695273 ], [ 23.994141, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 24.741211, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 28.959961, -8.363693 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 31.596680, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.299805, -16.383391 ], [ 32.827148, -16.678293 ], [ 32.827148, -17.978733 ], [ 32.651367, -18.646245 ], [ 32.607422, -19.394068 ], [ 32.739258, -19.683970 ], [ 32.651367, -20.303418 ], [ 32.475586, -20.385825 ], [ 32.211914, -21.084500 ], [ 31.157227, -22.228090 ], [ 30.629883, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.065278 ], [ 29.399414, -22.065278 ], [ 28.784180, -21.616579 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.838278 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.839844, -18.687879 ], [ 25.620117, -18.521283 ], [ 25.224609, -17.727759 ], [ 26.367188, -17.811456 ], [ 26.674805, -17.936929 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.266728 ], [ 28.432617, -16.467695 ], [ 28.784180, -16.383391 ], [ 28.916016, -16.003576 ], [ 29.487305, -15.623037 ], [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 31.596680, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.299805, -16.383391 ], [ 32.827148, -16.678293 ], [ 32.827148, -17.978733 ], [ 32.651367, -18.646245 ], [ 32.607422, -19.394068 ], [ 32.739258, -19.683970 ], [ 32.651367, -20.303418 ], [ 32.475586, -20.385825 ], [ 32.211914, -21.084500 ], [ 31.157227, -22.228090 ], [ 30.629883, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.065278 ], [ 29.399414, -22.065278 ], [ 28.784180, -21.616579 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.838278 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.839844, -18.687879 ], [ 25.620117, -18.521283 ], [ 25.224609, -17.727759 ], [ 26.367188, -17.811456 ], [ 26.674805, -17.936929 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.266728 ], [ 28.432617, -16.467695 ], [ 28.784180, -16.383391 ], [ 28.916016, -16.003576 ], [ 29.487305, -15.623037 ], [ 30.234375, -15.496032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 34.892578, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.277344, -15.453680 ], [ 34.497070, -14.987240 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.750000, -14.434680 ], [ 33.178711, -13.966054 ], [ 32.651367, -13.710035 ], [ 32.958984, -12.768946 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.310547, -10.790141 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 34.892578, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.277344, -15.453680 ], [ 34.497070, -14.987240 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.750000, -14.434680 ], [ 33.178711, -13.966054 ], [ 32.651367, -13.710035 ], [ 32.958984, -12.768946 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.310547, -10.790141 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.746969 ], [ 40.429688, -11.738302 ], [ 40.517578, -12.597455 ], [ 40.561523, -14.179186 ], [ 40.737305, -14.689881 ], [ 40.473633, -15.368950 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 36.254883, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.518375 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.156250, -21.248422 ], [ 35.332031, -21.820708 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.507812, -23.039298 ], [ 35.332031, -23.523700 ], [ 35.595703, -23.684774 ], [ 35.419922, -24.086589 ], [ 35.024414, -24.447150 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.211914, -21.084500 ], [ 32.475586, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.739258, -19.683970 ], [ 32.607422, -19.394068 ], [ 32.651367, -18.646245 ], [ 32.827148, -17.978733 ], [ 32.827148, -16.678293 ], [ 32.299805, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.596680, -16.045813 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 33.750000, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -14.987240 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.892578, -13.539201 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 35.288086, -11.436955 ], [ 36.474609, -11.695273 ], [ 36.738281, -11.566144 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.738302 ], [ 40.517578, -12.597455 ], [ 40.561523, -14.179186 ], [ 40.737305, -14.689881 ], [ 40.473633, -15.368950 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 36.254883, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.518375 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.156250, -21.248422 ], [ 35.332031, -21.820708 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.507812, -23.039298 ], [ 35.332031, -23.523700 ], [ 35.595703, -23.684774 ], [ 35.419922, -24.086589 ], [ 35.024414, -24.447150 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.211914, -21.084500 ], [ 32.475586, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.739258, -19.683970 ], [ 32.607422, -19.394068 ], [ 32.651367, -18.646245 ], [ 32.827148, -17.978733 ], [ 32.827148, -16.678293 ], [ 32.299805, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.596680, -16.045813 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 33.750000, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -14.987240 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.892578, -13.539201 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 35.288086, -11.436955 ], [ 36.474609, -11.695273 ], [ 36.738281, -11.566144 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.224609, -17.727759 ], [ 25.620117, -18.521283 ], [ 25.839844, -18.687879 ], [ 26.147461, -19.269665 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.838278 ], [ 27.993164, -21.453069 ], [ 28.784180, -21.616579 ], [ 29.399414, -22.065278 ], [ 27.993164, -22.796439 ], [ 27.114258, -23.563987 ], [ 26.762695, -24.206890 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.681137 ], [ 24.169922, -25.641526 ], [ 23.730469, -25.363882 ], [ 23.291016, -25.244696 ], [ 22.807617, -25.482951 ], [ 22.543945, -25.958045 ], [ 22.104492, -26.273714 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.839449 ], [ 20.126953, -24.886436 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 21.621094, -18.187607 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 24.213867, -17.853290 ], [ 24.477539, -17.853290 ], [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 25.620117, -18.521283 ], [ 25.839844, -18.687879 ], [ 26.147461, -19.269665 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.838278 ], [ 27.993164, -21.453069 ], [ 28.784180, -21.616579 ], [ 29.399414, -22.065278 ], [ 27.993164, -22.796439 ], [ 27.114258, -23.563987 ], [ 26.762695, -24.206890 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.681137 ], [ 24.169922, -25.641526 ], [ 23.730469, -25.363882 ], [ 23.291016, -25.244696 ], [ 22.807617, -25.482951 ], [ 22.543945, -25.958045 ], [ 22.104492, -26.273714 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.839449 ], [ 20.126953, -24.886436 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 21.621094, -18.187607 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 24.213867, -17.853290 ], [ 24.477539, -17.853290 ], [ 25.048828, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.629883, -22.146708 ], [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -25.997550 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.563477, -27.449790 ], [ 32.431641, -28.265682 ], [ 32.167969, -28.729130 ], [ 31.508789, -29.228890 ], [ 31.289062, -29.382175 ], [ 30.893555, -29.878755 ], [ 30.585938, -30.410782 ], [ 30.014648, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.760882 ], [ 24.653320, -33.979809 ], [ 23.554688, -33.760882 ], [ 22.983398, -33.906896 ], [ 22.543945, -33.833920 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.415973 ], [ 20.039062, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.852539, -34.415973 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.833920 ], [ 18.237305, -33.247876 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 17.534180, -30.713504 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.182617, -28.343065 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.886436 ], [ 20.742188, -25.839449 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 22.104492, -26.273714 ], [ 22.543945, -25.958045 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.244696 ], [ 23.730469, -25.363882 ], [ 24.169922, -25.641526 ], [ 25.004883, -25.681137 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 26.762695, -24.206890 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.399414, -22.065278 ], [ 29.838867, -22.065278 ], [ 30.322266, -22.268764 ] ], [ [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.081055, -30.524413 ], [ 28.256836, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.065278 ], [ 30.322266, -22.268764 ], [ 30.629883, -22.146708 ], [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -25.997550 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.563477, -27.449790 ], [ 32.431641, -28.265682 ], [ 32.167969, -28.729130 ], [ 31.508789, -29.228890 ], [ 31.289062, -29.382175 ], [ 30.893555, -29.878755 ], [ 30.585938, -30.410782 ], [ 30.014648, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.760882 ], [ 24.653320, -33.979809 ], [ 23.554688, -33.760882 ], [ 22.983398, -33.906896 ], [ 22.543945, -33.833920 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.415973 ], [ 20.039062, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.852539, -34.415973 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.833920 ], [ 18.237305, -33.247876 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 17.534180, -30.713504 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.182617, -28.343065 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.886436 ], [ 20.742188, -25.839449 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 22.104492, -26.273714 ], [ 22.543945, -25.958045 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.244696 ], [ 23.730469, -25.363882 ], [ 24.169922, -25.641526 ], [ 25.004883, -25.681137 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 26.762695, -24.206890 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.399414, -22.065278 ], [ 29.838867, -22.065278 ] ], [ [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.081055, -30.524413 ], [ 28.256836, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 30.673828, -26.391870 ], [ 30.937500, -25.997550 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 30.673828, -26.391870 ], [ 30.937500, -25.997550 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.256836, -30.221102 ], [ 28.081055, -30.524413 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.256836, -30.221102 ], [ 28.081055, -30.524413 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 48.515625, -20.468189 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 48.515625, -20.468189 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ] ] ], [ [ [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ] ] ], [ [ [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ] ] ], [ [ [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ] ] ], [ [ [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ] ] ], [ [ [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ], [ 99.667969, 3.206333 ] ] ], [ [ [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ] ] ], [ [ [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.576172, 3.513421 ], [ 117.465820, 3.513421 ], [ 117.290039, 3.250209 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ] ] ], [ [ [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 117.465820, 3.513421 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.576172, 3.513421 ], [ 117.465820, 3.513421 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.309570, -8.363693 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.362353 ], [ 125.068359, -9.058702 ], [ 124.936523, -8.885072 ], [ 125.068359, -8.624472 ], [ 125.903320, -8.407168 ], [ 126.606445, -8.363693 ], [ 126.914062, -8.233237 ], [ 127.309570, -8.363693 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.309570, -8.363693 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.362353 ], [ 125.068359, -9.058702 ], [ 124.936523, -8.885072 ], [ 125.068359, -8.624472 ], [ 125.903320, -8.407168 ], [ 126.606445, -8.363693 ], [ 126.914062, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ] ] ], [ [ [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ] ] ], [ [ [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ] ] ], [ [ [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ] ] ], [ [ [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ] ] ], [ [ [ 160.356445, -9.362353 ], [ 160.664062, -9.579084 ], [ 160.839844, -9.838979 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.752370 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.751953, -8.885072 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.536764 ], [ 159.609375, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.554688, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.334961, -7.318882 ], [ 158.818359, -7.536764 ] ] ], [ [ [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.144499 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ], [ 160.664062, -9.579084 ], [ 160.839844, -9.838979 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.752370 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.883789, -8.276727 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.751953, -8.885072 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ] ] ], [ [ [ 158.334961, -7.318882 ], [ 158.818359, -7.536764 ], [ 159.609375, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.554688, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.334961, -7.318882 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.144499 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.167969, -16.130262 ], [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ] ] ], [ [ [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.580711 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.368950 ], [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.167969, -16.130262 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.580711 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.368950 ], [ 166.596680, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.014648, -20.427013 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.794922, -21.125498 ], [ 164.135742, -20.427013 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ], [ 165.014648, -20.427013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.097206 ], [ 165.014648, -20.427013 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.794922, -21.125498 ], [ 164.135742, -20.427013 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.738528 ], [ 173.188477, -42.940339 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 171.166992, -44.871443 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 168.925781, -43.929550 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.738528 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.242188, -38.582526 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 175.034180, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.726562, -37.996163 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.287109, -36.527295 ], [ 173.803711, -36.102376 ], [ 173.012695, -35.209722 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.738528 ], [ 173.188477, -42.940339 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 171.166992, -44.871443 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 168.925781, -43.929550 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.738528 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.242188, -38.582526 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 175.034180, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.726562, -37.996163 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.287109, -36.527295 ], [ 173.803711, -36.102376 ], [ 173.012695, -35.209722 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.515625, 50.317408 ], [ -3.515625, 51.426614 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.454007 ], [ -3.515625, 53.435719 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ] ] ], [ [ [ -3.032227, 58.654085 ], [ -3.515625, 58.147519 ], [ -3.515625, 58.608334 ], [ -3.032227, 58.654085 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 57.633640 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.515625, 50.317408 ], [ -3.515625, 51.426614 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.454007 ], [ -3.515625, 53.435719 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ] ] ], [ [ [ -3.515625, 58.147519 ], [ -3.515625, 58.608334 ], [ -3.032227, 58.654085 ], [ -3.515625, 58.147519 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.893615 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.893615 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.484812 ], [ -1.933594, 43.452919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.484812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.515625, 31.690782 ], [ -3.515625, 35.389050 ], [ -2.636719, 35.209722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 35.389050 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.515625, 31.690782 ], [ -3.515625, 35.389050 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.515625, 13.368243 ], [ -3.515625, 24.086589 ], [ 0.000000, 21.820708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 24.086589 ], [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.515625, 13.368243 ], [ -3.515625, 24.086589 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.515625, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.515625, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 9.925566 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.000000, 10.962764 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ], [ 0.000000, 10.962764 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ] ] ], [ [ [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ] ] ], [ [ [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ] ] ], [ [ [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ] ] ], [ [ [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ] ] ], [ [ [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ] ] ], [ [ [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ] ] ], [ [ [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ] ] ], [ [ [ 10.502930, 57.231503 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ], [ 10.502930, 57.231503 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.502930, 57.231503 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ], [ 21.972656, 68.624544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.610352, 69.115611 ], [ 21.972656, 68.624544 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.922935 ], [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ], [ 6.240234, 49.922935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.020508, 50.148746 ], [ 6.240234, 49.922935 ], [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.754240 ], [ 14.985352, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.282227, 51.124213 ], [ 14.018555, 50.930738 ], [ 13.315430, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.216797, 50.289339 ], [ 12.392578, 49.979488 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.579102, 48.893615 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.312428 ], [ 13.007812, 47.665387 ], [ 12.919922, 47.487513 ], [ 12.612305, 47.694974 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 9.580078, 47.546872 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 6.240234, 49.922935 ], [ 6.020508, 50.148746 ], [ 6.152344, 50.819818 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.754240 ], [ 14.985352, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.282227, 51.124213 ], [ 14.018555, 50.930738 ], [ 13.315430, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.216797, 50.289339 ], [ 12.392578, 49.979488 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.579102, 48.893615 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.312428 ], [ 13.007812, 47.665387 ], [ 12.919922, 47.487513 ], [ 12.612305, 47.694974 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 9.580078, 47.546872 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 6.240234, 49.922935 ], [ 6.020508, 50.148746 ], [ 6.152344, 50.819818 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.546872 ], [ 9.624023, 47.368594 ], [ 9.448242, 47.129951 ], [ 9.931641, 46.950262 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.250977, 45.798170 ], [ 6.811523, 46.012224 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 7.163086, 47.457809 ], [ 7.426758, 47.635784 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ], [ 9.624023, 47.368594 ], [ 9.448242, 47.129951 ], [ 9.931641, 46.950262 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.250977, 45.798170 ], [ 6.811523, 46.012224 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 7.163086, 47.457809 ], [ 7.426758, 47.635784 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.296472 ], [ 18.061523, 49.066668 ], [ 17.885742, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 16.479492, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.249023, 49.066668 ], [ 14.897461, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.579102, 48.893615 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.979488 ], [ 12.216797, 50.289339 ], [ 12.963867, 50.485474 ], [ 13.315430, 50.736455 ], [ 14.018555, 50.930738 ], [ 14.282227, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.296472 ], [ 18.061523, 49.066668 ], [ 17.885742, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 16.479492, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.249023, 49.066668 ], [ 14.897461, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.579102, 48.893615 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.979488 ], [ 12.216797, 50.289339 ], [ 12.963867, 50.485474 ], [ 13.315430, 50.736455 ], [ 14.018555, 50.930738 ], [ 14.282227, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.985352, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.342149 ], [ 23.203125, 54.239551 ], [ 23.466797, 53.930220 ], [ 23.510742, 53.488046 ], [ 23.774414, 53.094024 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.466797, 52.025459 ], [ 23.510742, 51.590723 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.342149 ], [ 23.203125, 54.239551 ], [ 23.466797, 53.930220 ], [ 23.510742, 53.488046 ], [ 23.774414, 53.094024 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.466797, 52.025459 ], [ 23.510742, 51.590723 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.875000, 48.487486 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 16.171875, 46.860191 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 13.798828, 46.528635 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 10.415039, 46.920255 ], [ 9.931641, 46.950262 ], [ 9.448242, 47.129951 ], [ 9.624023, 47.368594 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.612305, 47.694974 ], [ 12.919922, 47.487513 ], [ 13.007812, 47.665387 ], [ 12.875977, 48.312428 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 14.897461, 48.980217 ], [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.875000, 48.487486 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 16.171875, 46.860191 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 13.798828, 46.528635 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 10.415039, 46.920255 ], [ 9.931641, 46.950262 ], [ 9.448242, 47.129951 ], [ 9.624023, 47.368594 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.612305, 47.694974 ], [ 12.919922, 47.487513 ], [ 13.007812, 47.665387 ], [ 12.875977, 48.312428 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 14.897461, 48.980217 ], [ 15.249023, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.859412 ], [ 15.292969, 45.736860 ], [ 15.292969, 45.460131 ], [ 14.897461, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.709736 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ], [ 16.523438, 46.528635 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.859412 ], [ 15.292969, 45.736860 ], [ 15.292969, 45.460131 ], [ 14.897461, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.709736 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.117188, 37.474858 ], [ 15.292969, 37.160317 ], [ 15.073242, 36.633162 ], [ 14.326172, 37.020098 ], [ 13.798828, 37.125286 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.512695, 38.238180 ], [ 15.117188, 37.474858 ] ] ], [ [ [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.348633, 44.902578 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.238180 ], [ 15.864258, 38.754083 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 14.985352, 40.178873 ], [ 14.677734, 40.613952 ], [ 14.018555, 40.813809 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 12.084961, 41.705729 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.667969, 44.056012 ], [ 8.876953, 44.370987 ], [ 8.393555, 44.245199 ], [ 7.822266, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.736860 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ] ] ], [ [ [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.349609, 40.380028 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.117188, 37.474858 ], [ 15.292969, 37.160317 ], [ 15.073242, 36.633162 ], [ 14.326172, 37.020098 ], [ 13.798828, 37.125286 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.348633, 44.902578 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.238180 ], [ 15.864258, 38.754083 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 14.985352, 40.178873 ], [ 14.677734, 40.613952 ], [ 14.018555, 40.813809 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 12.084961, 41.705729 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.667969, 44.056012 ], [ 8.876953, 44.370987 ], [ 8.393555, 44.245199 ], [ 7.822266, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.736860 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ] ] ], [ [ [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.349609, 40.380028 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.621094, 47.010226 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.875000, 46.407564 ], [ 16.523438, 46.528635 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.446289, 47.872144 ], [ 17.841797, 47.783635 ], [ 18.676758, 47.901614 ], [ 18.764648, 48.107431 ], [ 19.160156, 48.136767 ], [ 19.643555, 48.283193 ], [ 19.731445, 48.224673 ], [ 20.214844, 48.341646 ], [ 20.434570, 48.574790 ], [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.621094, 47.010226 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.875000, 46.407564 ], [ 16.523438, 46.528635 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.446289, 47.872144 ], [ 17.841797, 47.783635 ], [ 18.676758, 47.901614 ], [ 18.764648, 48.107431 ], [ 19.160156, 48.136767 ], [ 19.643555, 48.283193 ], [ 19.731445, 48.224673 ], [ 20.214844, 48.341646 ], [ 20.434570, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.060547, 48.429201 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 20.434570, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.731445, 48.224673 ], [ 19.643555, 48.283193 ], [ 19.160156, 48.136767 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.841797, 47.783635 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.487486 ], [ 17.094727, 48.835797 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.922499 ], [ 17.885742, 49.009051 ], [ 18.061523, 49.066668 ], [ 18.149414, 49.296472 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.060547, 48.429201 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 20.434570, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.731445, 48.224673 ], [ 19.643555, 48.283193 ], [ 19.160156, 48.136767 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.841797, 47.783635 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.487486 ], [ 17.094727, 48.835797 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.922499 ], [ 17.885742, 49.009051 ], [ 18.061523, 49.066668 ], [ 18.149414, 49.296472 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.291992, 49.582226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 19.204102, 43.548548 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.270508, 43.452919 ], [ 16.875000, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.215820, 44.370987 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.243953 ], [ 17.841797, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.243953 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 19.204102, 43.548548 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.270508, 43.452919 ], [ 16.875000, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.215820, 44.370987 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.243953 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 43.229195 ], [ 19.951172, 43.133061 ], [ 20.302734, 42.908160 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.967659 ], [ 18.852539, 42.293564 ], [ 18.413086, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.599609, 43.229195 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.548548 ], [ 19.599609, 43.229195 ], [ 19.951172, 43.133061 ], [ 20.302734, 42.908160 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.967659 ], [ 18.852539, 42.293564 ], [ 18.413086, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.433780 ], [ 22.631836, 44.245199 ], [ 22.368164, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.229195 ], [ 22.587891, 42.908160 ], [ 22.412109, 42.585444 ], [ 22.543945, 42.488302 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.752930, 42.714732 ], [ 21.621094, 42.682435 ], [ 20.786133, 43.293200 ], [ 20.610352, 43.229195 ], [ 20.478516, 42.908160 ], [ 20.214844, 42.843751 ], [ 20.302734, 42.908160 ], [ 19.951172, 43.133061 ], [ 19.599609, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.433780 ], [ 22.631836, 44.245199 ], [ 22.368164, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.229195 ], [ 22.587891, 42.908160 ], [ 22.412109, 42.585444 ], [ 22.543945, 42.488302 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.752930, 42.714732 ], [ 21.621094, 42.682435 ], [ 20.786133, 43.293200 ], [ 20.610352, 43.229195 ], [ 20.478516, 42.908160 ], [ 20.214844, 42.843751 ], [ 20.302734, 42.908160 ], [ 19.951172, 43.133061 ], [ 19.599609, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 42.682435 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.326062 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.258789, 42.326062 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.610352, 43.229195 ], [ 20.786133, 43.293200 ], [ 21.621094, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 43.293200 ], [ 21.621094, 42.682435 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.326062 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.258789, 42.326062 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.610352, 43.229195 ], [ 20.786133, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.520700 ], [ 20.039062, 42.617791 ], [ 20.258789, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.961914, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.943436 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.738528 ], [ 19.335938, 41.902277 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ], [ 19.775391, 42.520700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.714732 ], [ 19.775391, 42.520700 ], [ 20.039062, 42.617791 ], [ 20.258789, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.961914, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.943436 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.738528 ], [ 19.335938, 41.902277 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.719727, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.016602, 41.178654 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 42.065607 ], [ 21.313477, 42.228517 ], [ 21.884766, 42.326062 ], [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.719727, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.016602, 41.178654 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 42.065607 ], [ 21.313477, 42.228517 ], [ 21.884766, 42.326062 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.904910 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.904910 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.576172, 57.868132 ], [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 27.817383, 56.776808 ], [ 28.168945, 56.170023 ], [ 27.070312, 55.801281 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 23.862305, 56.292157 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ], [ 25.576172, 57.868132 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 25.576172, 57.868132 ], [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 27.817383, 56.776808 ], [ 28.168945, 56.170023 ], [ 27.070312, 55.801281 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 23.862305, 56.292157 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.576172, 57.868132 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 24.565430, 59.467408 ], [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.576172, 57.868132 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 24.565430, 59.467408 ], [ 25.839844, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.876607 ], [ 22.280273, 55.028022 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.292157 ], [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.876607 ], [ 22.280273, 55.028022 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.292157 ], [ 24.829102, 56.389584 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.937500, 55.103516 ], [ 30.717773, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.094024 ], [ 31.508789, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 30.146484, 51.426614 ], [ 29.223633, 51.371780 ], [ 28.959961, 51.618017 ], [ 28.608398, 51.454007 ], [ 28.212891, 51.590723 ], [ 27.421875, 51.618017 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.466797, 52.025459 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.774414, 53.094024 ], [ 23.510742, 53.488046 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 27.070312, 55.801281 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.937500, 55.103516 ], [ 30.717773, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.094024 ], [ 31.508789, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 30.146484, 51.426614 ], [ 29.223633, 51.371780 ], [ 28.959961, 51.618017 ], [ 28.608398, 51.454007 ], [ 28.212891, 51.590723 ], [ 27.421875, 51.618017 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.466797, 52.025459 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.774414, 53.094024 ], [ 23.510742, 53.488046 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 27.070312, 55.801281 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.125000, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.652344, 45.305803 ], [ 29.135742, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.202148, 44.182204 ], [ 26.059570, 43.961191 ], [ 25.532227, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 47.010226 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 23.730469, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.180664, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.586914, 48.224673 ], [ 26.894531, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.586914, 48.224673 ], [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.125000, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.652344, 45.305803 ], [ 29.135742, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.202148, 44.182204 ], [ 26.059570, 43.961191 ], [ 25.532227, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 47.010226 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 23.730469, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.180664, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.586914, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.532227, 43.707594 ], [ 26.059570, 43.961191 ], [ 27.202148, 44.182204 ], [ 27.949219, 43.834527 ], [ 28.520508, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.488302 ], [ 22.412109, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.532227, 43.707594 ], [ 26.059570, 43.961191 ], [ 27.202148, 44.182204 ], [ 27.949219, 43.834527 ], [ 28.520508, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.488302 ], [ 22.412109, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.166085 ], [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 29.531250, 46.950262 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.377254 ], [ 29.135742, 46.407564 ], [ 29.047852, 46.528635 ], [ 28.828125, 46.468133 ], [ 28.916016, 46.286224 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.614037 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.377254 ], [ 28.125000, 46.830134 ], [ 26.894531, 48.136767 ], [ 26.586914, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.487486 ], [ 28.256836, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.487486 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 29.531250, 46.950262 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.377254 ], [ 29.135742, 46.407564 ], [ 29.047852, 46.528635 ], [ 28.828125, 46.468133 ], [ 28.916016, 46.286224 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.614037 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.377254 ], [ 28.125000, 46.830134 ], [ 26.894531, 48.136767 ], [ 26.586914, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.487486 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.375977, 50.792047 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 38.583984, 49.951220 ], [ 40.034180, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 37.397461, 47.040182 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.575195, 45.305803 ], [ 29.135742, 45.490946 ], [ 28.652344, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.614037 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.286224 ], [ 28.828125, 46.468133 ], [ 29.047852, 46.528635 ], [ 29.135742, 46.407564 ], [ 29.750977, 46.377254 ], [ 30.014648, 46.437857 ], [ 29.794922, 46.528635 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.950262 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.487486 ], [ 26.850586, 48.370848 ], [ 26.586914, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.180664, 47.901614 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.730469, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.590723 ], [ 28.608398, 51.454007 ], [ 28.959961, 51.618017 ], [ 29.223633, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.375977, 50.792047 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 38.583984, 49.951220 ], [ 40.034180, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 37.397461, 47.040182 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.575195, 45.305803 ], [ 29.135742, 45.490946 ], [ 28.652344, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.614037 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.286224 ], [ 28.828125, 46.468133 ], [ 29.047852, 46.528635 ], [ 29.135742, 46.407564 ], [ 29.750977, 46.377254 ], [ 30.014648, 46.437857 ], [ 29.794922, 46.528635 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.950262 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.487486 ], [ 26.850586, 48.370848 ], [ 26.586914, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.180664, 47.901614 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.730469, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.590723 ], [ 28.608398, 51.454007 ], [ 28.959961, 51.618017 ], [ 29.223633, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.348763 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.363281, 43.229195 ], [ 43.725586, 42.747012 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 46.494141, 41.079351 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 44.956055, 41.277806 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.036776 ], [ 40.297852, 43.133061 ], [ 39.946289, 43.452919 ], [ 40.034180, 43.580391 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.034180, 43.580391 ], [ 40.913086, 43.389082 ], [ 42.363281, 43.229195 ], [ 43.725586, 42.747012 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 46.494141, 41.079351 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 44.956055, 41.277806 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.036776 ], [ 40.297852, 43.133061 ], [ 39.946289, 43.452919 ], [ 40.034180, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.690782 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.690782 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.805745 ], [ 13.051758, 32.879587 ], [ 13.886719, 32.731841 ], [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 16.611328, 31.203405 ], [ 18.017578, 30.789037 ], [ 19.072266, 30.297018 ], [ 19.555664, 30.562261 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 23.598633, 32.212801 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.931641, 24.966140 ], [ 9.887695, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.624023, 27.176469 ], [ 9.755859, 27.722436 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.458731 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.101190 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.051758, 32.879587 ], [ 13.886719, 32.731841 ], [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 16.611328, 31.203405 ], [ 18.017578, 30.789037 ], [ 19.072266, 30.297018 ], [ 19.555664, 30.562261 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 23.598633, 32.212801 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.931641, 24.966140 ], [ 9.887695, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.624023, 27.176469 ], [ 9.755859, 27.722436 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.458731 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.101190 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.962764 ], [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.962764 ], [ 0.000000, 11.049038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.543945, 14.944785 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 22.016602, 12.983148 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.456055, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.393879 ], [ 22.851562, 11.178402 ], [ 22.192383, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.102097 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.928675 ], [ 16.699219, 7.536764 ], [ 16.435547, 7.754537 ], [ 16.259766, 7.754537 ], [ 16.083984, 7.536764 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 14.501953, 8.971897 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.941406, 11.566144 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.644531, 19.973349 ], [ 15.864258, 20.427013 ], [ 15.468750, 20.756114 ], [ 15.468750, 21.084500 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.543945, 14.944785 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 22.016602, 12.983148 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.456055, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.393879 ], [ 22.851562, 11.178402 ], [ 22.192383, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.102097 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.928675 ], [ 16.699219, 7.536764 ], [ 16.435547, 7.754537 ], [ 16.259766, 7.754537 ], [ 16.083984, 7.536764 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 14.501953, 8.971897 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.941406, 11.566144 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.644531, 19.973349 ], [ 15.864258, 20.427013 ], [ 15.468750, 20.756114 ], [ 15.468750, 21.084500 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.213867, 35.389050 ], [ 25.004883, 35.460670 ], [ 25.751953, 35.389050 ], [ 25.708008, 35.209722 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ] ] ], [ [ [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.015625, 40.847060 ], [ 25.444336, 40.880295 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.510742, 38.513788 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.961914, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.016602, 41.178654 ], [ 22.587891, 41.145570 ], [ 22.719727, 41.310824 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ], [ 25.004883, 35.460670 ], [ 25.751953, 35.389050 ], [ 25.708008, 35.209722 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.015625, 40.847060 ], [ 25.444336, 40.880295 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.510742, 38.513788 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.961914, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.016602, 41.178654 ], [ 22.587891, 41.145570 ], [ 22.719727, 41.310824 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.442383, 35.029996 ], [ 33.837891, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.969727, 34.994004 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.354492, 35.173808 ], [ 33.442383, 35.029996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.354492, 35.173808 ], [ 33.442383, 35.029996 ], [ 33.837891, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.969727, 34.994004 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.354492, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.872070, 30.902225 ], [ 29.663086, 31.203405 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.381735 ], [ 34.145508, 27.839076 ], [ 33.881836, 27.683528 ], [ 33.134766, 28.420391 ], [ 32.387695, 29.878755 ], [ 32.299805, 29.764377 ], [ 32.695312, 28.729130 ], [ 33.310547, 27.722436 ], [ 34.101562, 26.155438 ], [ 34.760742, 25.045792 ], [ 35.683594, 23.966176 ], [ 35.463867, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.650391, 22.228090 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ], [ 29.663086, 31.203405 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.381735 ], [ 34.145508, 27.839076 ], [ 33.881836, 27.683528 ], [ 33.134766, 28.420391 ], [ 32.387695, 29.878755 ], [ 32.299805, 29.764377 ], [ 32.695312, 28.729130 ], [ 33.310547, 27.722436 ], [ 34.101562, 26.155438 ], [ 34.760742, 25.045792 ], [ 35.683594, 23.966176 ], [ 35.463867, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.650391, 22.228090 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 39.506836, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.725586, 40.747257 ], [ 43.637695, 40.279526 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 42.319336, 37.230328 ], [ 41.176758, 37.090240 ], [ 40.649414, 37.125286 ], [ 39.506836, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ] ] ], [ [ [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 39.506836, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.725586, 40.747257 ], [ 43.637695, 40.279526 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 42.319336, 37.230328 ], [ 41.176758, 37.090240 ], [ 40.649414, 37.125286 ], [ 39.506836, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ] ] ], [ [ [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.284620 ], [ 35.419922, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.284620 ], [ 35.419922, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.123047, 35.853440 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 38.671875, 36.738884 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 41.176758, 37.090240 ], [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.123047, 35.853440 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 38.671875, 36.738884 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 41.176758, 37.090240 ], [ 42.319336, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.914868 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.914868 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 32.879587 ], [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 34.541016, 31.578535 ], [ 34.453125, 31.615966 ], [ 34.716797, 32.101190 ], [ 34.936523, 32.842674 ], [ 35.068359, 33.100745 ], [ 35.419922, 33.100745 ], [ 35.551758, 33.284620 ], [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 34.541016, 31.578535 ], [ 34.453125, 31.615966 ], [ 34.716797, 32.101190 ], [ 34.936523, 32.842674 ], [ 35.068359, 33.100745 ], [ 35.419922, 33.100745 ], [ 35.551758, 33.284620 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.936523, 31.653381 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.936523, 31.653381 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 38.979492, 32.026706 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.661133, 30.372875 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.936523, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.375977, 31.503629 ], [ 35.507812, 31.802893 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ], [ 38.979492, 32.026706 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.661133, 30.372875 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.936523, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.375977, 31.503629 ], [ 35.507812, 31.802893 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.043491 ], [ 36.958008, 20.838278 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 37.133789, 17.266728 ], [ 36.826172, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.125264 ], [ 34.804688, 11.350797 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.793945, 9.492408 ], [ 33.837891, 10.012130 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.046875, 11.480025 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.816406, 10.574222 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.575195, 10.098670 ], [ 29.487305, 9.795678 ], [ 28.959961, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 26.455078, 9.579084 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.838979 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.456055, 12.297068 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.983148 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.543945, 14.944785 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 36.958008, 20.838278 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 37.133789, 17.266728 ], [ 36.826172, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.125264 ], [ 34.804688, 11.350797 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.793945, 9.492408 ], [ 33.837891, 10.012130 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.046875, 11.480025 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.816406, 10.574222 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.575195, 10.098670 ], [ 29.487305, 9.795678 ], [ 28.959961, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 26.455078, 9.579084 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.838979 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.456055, 12.297068 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.983148 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.543945, 14.944785 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.178711, 12.211180 ], [ 33.046875, 11.480025 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.837891, 10.012130 ], [ 33.793945, 9.492408 ], [ 33.925781, 9.492408 ], [ 33.969727, 8.711359 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.672852, 6.620957 ], [ 35.288086, 5.528511 ], [ 33.969727, 4.258768 ], [ 33.354492, 3.820408 ], [ 32.651367, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.926758, 4.214943 ], [ 29.707031, 4.609278 ], [ 29.135742, 4.390229 ], [ 28.696289, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.795898, 7.013668 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.838979 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.455078, 9.579084 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.959961, 9.622414 ], [ 29.487305, 9.795678 ], [ 29.575195, 10.098670 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 31.816406, 10.574222 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ], [ 33.046875, 11.480025 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.837891, 10.012130 ], [ 33.793945, 9.492408 ], [ 33.925781, 9.492408 ], [ 33.969727, 8.711359 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.672852, 6.620957 ], [ 35.288086, 5.528511 ], [ 33.969727, 4.258768 ], [ 33.354492, 3.820408 ], [ 32.651367, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.926758, 4.214943 ], [ 29.707031, 4.609278 ], [ 29.135742, 4.390229 ], [ 28.696289, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.795898, 7.013668 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.838979 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.455078, 9.579084 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.959961, 9.622414 ], [ 29.487305, 9.795678 ], [ 29.575195, 10.098670 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 31.816406, 10.574222 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.000000 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.000000 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.979492, 16.846605 ], [ 39.243164, 15.961329 ], [ 39.770508, 15.453680 ], [ 41.176758, 14.519780 ], [ 42.583008, 13.025966 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 41.967773, 12.897489 ], [ 41.572266, 13.453737 ], [ 41.132812, 13.795406 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.331055, 14.562318 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.738281, 16.299051 ], [ 36.826172, 16.972741 ], [ 37.133789, 17.266728 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ], [ 38.979492, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.020528 ], [ 38.979492, 16.846605 ], [ 39.243164, 15.961329 ], [ 39.770508, 15.453680 ], [ 41.176758, 14.519780 ], [ 42.583008, 13.025966 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 41.967773, 12.897489 ], [ 41.572266, 13.453737 ], [ 41.132812, 13.795406 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.331055, 14.562318 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.738281, 16.299051 ], [ 36.826172, 16.972741 ], [ 37.133789, 17.266728 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.286133, 12.425848 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 42.539062, 11.135287 ], [ 42.275391, 11.049038 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ], [ 43.286133, 12.425848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.286133, 12.425848 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 42.539062, 11.135287 ], [ 42.275391, 11.049038 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.902344, -3.513421 ], [ 37.705078, -3.513421 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.902344, -3.513421 ], [ 37.705078, -3.513421 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 63.149414, 43.675818 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.356445, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.971680, 40.245992 ], [ 70.576172, 40.245992 ], [ 70.444336, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.994141, 40.111689 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.925229 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 57.744141, 42.195969 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 63.149414, 43.675818 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.356445, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.971680, 40.245992 ], [ 70.576172, 40.245992 ], [ 70.444336, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.994141, 40.111689 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.925229 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 57.744141, 42.195969 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 41.013066 ], [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.010742, 39.639538 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.334297 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.740986 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.279526 ], [ 43.725586, 40.747257 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.013066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.277806 ], [ 45.175781, 41.013066 ], [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.010742, 39.639538 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.334297 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.740986 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.279526 ], [ 43.725586, 40.747257 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.944336, 41.409776 ], [ 48.559570, 41.836828 ], [ 49.086914, 41.310824 ], [ 49.614258, 40.580585 ], [ 50.053711, 40.547200 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 47.680664, 39.537940 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 46.010742, 39.639538 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 45.175781, 41.013066 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 45.922852, 41.145570 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.362305, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.944336, 41.409776 ], [ 48.559570, 41.836828 ], [ 49.086914, 41.310824 ], [ 49.614258, 40.580585 ], [ 50.053711, 40.547200 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 47.680664, 39.537940 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 46.010742, 39.639538 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 45.175781, 41.013066 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 45.922852, 41.145570 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.788345 ], [ 47.680664, 39.537940 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.162109, 37.961523 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.030786 ], [ 58.403320, 37.544577 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.820312, 32.212801 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 58.491211, 25.641526 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.844674 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.736328, 37.195331 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ], [ 44.912109, 39.368279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.740986 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.788345 ], [ 47.680664, 39.537940 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.162109, 37.961523 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.030786 ], [ 58.403320, 37.544577 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.820312, 32.212801 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 58.491211, 25.641526 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.844674 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.736328, 37.195331 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.944336, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.343875 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.343875 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.766602, 24.287027 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 55.502930, 23.563987 ], [ 55.195312, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.723633, 24.327077 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.766602, 24.287027 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 55.502930, 23.563987 ], [ 55.195312, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.723633, 24.327077 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.925229 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 66.181641, 37.405074 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.940430, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.961523 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 57.744141, 42.195969 ], [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.925229 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 66.181641, 37.405074 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.940430, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.961523 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 57.744141, 42.195969 ], [ 58.623047, 42.779275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.961329 ], [ 52.163086, 15.623037 ], [ 51.152344, 15.199386 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 48.208008, 13.966054 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.325485 ], [ 45.395508, 13.068777 ], [ 45.131836, 12.983148 ], [ 44.956055, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.198242, 13.239945 ], [ 43.242188, 13.795406 ], [ 43.066406, 14.093957 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.670898, 15.749963 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 44.033203, 17.434511 ], [ 45.175781, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.266728 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.961329 ], [ 52.163086, 15.623037 ], [ 51.152344, 15.199386 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 48.208008, 13.966054 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.325485 ], [ 45.395508, 13.068777 ], [ 45.131836, 12.983148 ], [ 44.956055, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.198242, 13.239945 ], [ 43.242188, 13.795406 ], [ 43.066406, 14.093957 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.670898, 15.749963 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 44.033203, 17.434511 ], [ 45.175781, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.266728 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.821289, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.095703, 23.765237 ], [ 58.710938, 23.604262 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.553147 ], [ 59.765625, 22.350076 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 19.766704 ], [ 57.788086, 19.103648 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.469727, 18.104087 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.239258, 17.644022 ], [ 55.239258, 17.266728 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.715390 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.563987 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.766602, 24.287027 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ], [ 56.821289, 24.246965 ] ] ], [ [ [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.821289, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.095703, 23.765237 ], [ 58.710938, 23.604262 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.553147 ], [ 59.765625, 22.350076 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 19.766704 ], [ 57.788086, 19.103648 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.469727, 18.104087 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.239258, 17.644022 ], [ 55.239258, 17.266728 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.715390 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.563987 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.766602, 24.287027 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.307708 ], [ 43.637695, 10.876465 ], [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 45.527344, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 47.988281, 11.221510 ], [ 48.339844, 11.393879 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 43.286133, 9.579084 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ], [ 43.461914, 11.307708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.110352, 11.480025 ], [ 43.461914, 11.307708 ], [ 43.637695, 10.876465 ], [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 45.527344, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 47.988281, 11.221510 ], [ 48.339844, 11.393879 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 43.286133, 9.579084 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.262695, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.262695, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.323242, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.499023, 37.926868 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.158203, 36.949892 ], [ 72.597656, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.916016, 37.439974 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.575195, 37.055177 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.738884 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.455078, 35.675147 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 63.544922, 29.496988 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.212801 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 63.940430, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 66.181641, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.268555, 37.753344 ], [ 70.356445, 38.169114 ], [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.499023, 37.926868 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.158203, 36.949892 ], [ 72.597656, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.916016, 37.439974 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.575195, 37.055177 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.738884 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.455078, 35.675147 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 63.544922, 29.496988 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.212801 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 63.940430, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 66.181641, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.268555, 37.753344 ], [ 70.356445, 38.169114 ], [ 70.795898, 38.513788 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.998532 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.244696 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 63.544922, 29.496988 ], [ 64.116211, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.147461, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.455078, 35.675147 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 72.905273, 36.738884 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.055177 ], [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.998532 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.244696 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 63.544922, 29.496988 ], [ 64.116211, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.147461, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.455078, 35.675147 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 72.905273, 36.738884 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.055177 ], [ 75.146484, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.309570, 30.145127 ], [ 83.320312, 29.496988 ], [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.781250, 28.226970 ], [ 86.923828, 27.994401 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 81.958008, 27.955591 ], [ 81.035156, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ], [ 82.309570, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.448674 ], [ 82.309570, 30.145127 ], [ 83.320312, 29.496988 ], [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.781250, 28.226970 ], [ 86.923828, 27.994401 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 81.958008, 27.955591 ], [ 81.035156, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.815430, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 91.186523, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 88.813477, 27.332735 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 91.186523, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 88.813477, 27.332735 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.037042 ], [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 90.834961, 25.165173 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.739091 ], [ 91.801758, 22.187405 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.065278 ], [ 89.692383, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.286133, 24.886436 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ], [ 89.340820, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.470573 ], [ 89.340820, 26.037042 ], [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 90.834961, 25.165173 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.739091 ], [ 91.801758, 22.187405 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.065278 ], [ 89.692383, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.286133, 24.886436 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ] ] ], [ [ [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.217773, 27.761330 ], [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 97.822266, 17.602139 ], [ 98.481445, 16.846605 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 98.393555, 14.647368 ], [ 99.096680, 13.838080 ], [ 99.184570, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.008789, 10.962764 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.467695 ], [ 95.361328, 15.749963 ], [ 94.790039, 15.834536 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.032227, 22.715390 ], [ 93.251953, 23.079732 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 94.526367, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.217773, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.217773, 27.761330 ], [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 97.822266, 17.602139 ], [ 98.481445, 16.846605 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 98.393555, 14.647368 ], [ 99.096680, 13.838080 ], [ 99.184570, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.008789, 10.962764 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.467695 ], [ 95.361328, 15.749963 ], [ 94.790039, 15.834536 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.032227, 22.715390 ], [ 93.251953, 23.079732 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 94.526367, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 106.523438, 16.636192 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.030273, 18.437925 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ], [ 102.744141, 21.698265 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.471955 ], [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 106.523438, 16.636192 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.030273, 18.437925 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 18.437925 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.392578, 17.936929 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 104.238281, 14.434680 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.239258, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.882800 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 99.667969, 6.882800 ], [ 99.492188, 7.362467 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.217773, 9.015302 ], [ 98.525391, 9.968851 ], [ 99.008789, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.184570, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.393555, 14.647368 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 98.481445, 16.846605 ], [ 97.822266, 17.602139 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 99.536133, 20.220966 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 18.437925 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.392578, 17.936929 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 104.238281, 14.434680 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.239258, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.882800 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 99.667969, 6.882800 ], [ 99.492188, 7.362467 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.217773, 9.015302 ], [ 98.525391, 9.968851 ], [ 99.008789, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.184570, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.393555, 14.647368 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 98.481445, 16.846605 ], [ 97.822266, 17.602139 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 99.536133, 20.220966 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.237305, 16.088042 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 108.325195, 11.049038 ], [ 107.182617, 10.401378 ], [ 106.391602, 9.535749 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.578125, 13.539201 ], [ 107.358398, 14.221789 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 106.523438, 16.636192 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.150391, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.237305, 16.088042 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 108.325195, 11.049038 ], [ 107.182617, 10.401378 ], [ 106.391602, 9.535749 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.578125, 13.539201 ], [ 107.358398, 14.221789 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 106.523438, 16.636192 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.150391, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 103.051758, 11.178402 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.306969 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 103.051758, 11.178402 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.306969 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.717773, 21.983801 ], [ 120.190430, 22.836946 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.567108 ], [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.717773, 21.983801 ], [ 120.190430, 22.836946 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.567108 ], [ 121.464844, 25.324167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.967659 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 129.155273, 40.680638 ], [ 128.627930, 40.212441 ], [ 127.924805, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.485352, 39.334297 ], [ 127.353516, 39.232253 ], [ 127.749023, 39.061849 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 126.210938, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.961523 ], [ 125.551758, 37.753344 ], [ 125.244141, 37.683820 ], [ 125.200195, 37.857507 ], [ 124.672852, 38.134557 ], [ 124.980469, 38.582526 ], [ 125.200195, 38.685510 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.288086, 39.571822 ], [ 124.716797, 39.673370 ], [ 124.233398, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.967659 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 129.155273, 40.680638 ], [ 128.627930, 40.212441 ], [ 127.924805, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.485352, 39.334297 ], [ 127.353516, 39.232253 ], [ 127.749023, 39.061849 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 126.210938, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.961523 ], [ 125.551758, 37.753344 ], [ 125.244141, 37.683820 ], [ 125.200195, 37.857507 ], [ 124.672852, 38.134557 ], [ 124.980469, 38.582526 ], [ 125.200195, 38.685510 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.288086, 39.571822 ], [ 124.716797, 39.673370 ], [ 124.233398, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 128.144531, 34.921971 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.342773, 34.957995 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 128.144531, 34.921971 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.342773, 34.957995 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ] ] ], [ [ [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.202148, 8.450639 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ] ] ], [ [ [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ] ] ], [ [ [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ] ] ], [ [ [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ] ] ], [ [ [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ] ] ], [ [ [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ] ] ], [ [ [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.158203, 8.407168 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ] ] ], [ [ [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ] ] ], [ [ [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ] ] ], [ [ [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ] ] ], [ [ [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ] ] ], [ [ [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 114.565430, 4.915833 ], [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 114.565430, 4.915833 ], [ 115.444336, 5.484768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.777716 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ] ] ], [ [ [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ] ] ], [ [ [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.635742, 44.777936 ], [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.777716 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.635742, 44.777936 ], [ 141.943359, 45.552525 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.689453, -3.513421 ], [ 10.590820, -3.513421 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.689453, -3.513421 ], [ 10.590820, -3.513421 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 11.689453, -3.513421 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 11.689453, -3.513421 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 30.541992, -3.513421 ], [ 29.267578, -3.513421 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 30.541992, -3.513421 ], [ 29.267578, -3.513421 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.661133, -3.074695 ], [ 37.705078, -3.513421 ], [ 30.541992, -3.513421 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.705078, -3.513421 ], [ 30.541992, -3.513421 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.221680, -3.425692 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 140.976562, -3.513421 ], [ 132.714844, -3.513421 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ] ] ], [ [ [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.322266, -3.513421 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ] ] ], [ [ [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.235352, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 140.976562, -3.513421 ], [ 132.714844, -3.513421 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.235352, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.322266, -3.513421 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -3.513421 ], [ 140.976562, -3.513421 ], [ 140.976562, -2.591889 ], [ 143.437500, -3.513421 ] ] ], [ [ [ 152.226562, -3.206333 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 143.437500, -3.513421 ], [ 140.976562, -3.513421 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.664960 ], [ -88.242188, 17.581194 ], [ -88.242188, 17.350638 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.664960 ], [ -88.242188, 17.581194 ], [ -88.242188, 17.350638 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.175771 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.175771 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 13.923404 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.242188, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.728814 ], [ -88.242188, 13.923404 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ], [ [ [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ] ] ], [ [ [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ] ] ], [ [ [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ], [ [ [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.695312, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.695312, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ], [ -62.600098, -65.856756 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.622070, -65.802776 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.684082, 1.757537 ], [ -67.829590, 1.757537 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ] ] ], [ [ [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ], [ -66.884766, 1.274309 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.829590, 1.757537 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.684082, 1.757537 ], [ -67.829590, 1.757537 ] ] ], [ [ [ -67.038574, 1.757537 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.038574, 1.757537 ], [ -64.138184, 1.757537 ], [ -64.204102, 1.493971 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.138184, 1.757537 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.038574, 1.757537 ], [ -64.138184, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.611816, 1.757537 ], [ -57.590332, 1.757537 ], [ -57.678223, 1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.590332, 1.757537 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.611816, 1.757537 ], [ -57.590332, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.590332, 1.757537 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.829590, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.829590, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.590332, 1.757537 ], [ -49.987793, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.448242, -25.145285 ], [ -54.645996, -25.720735 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.448242, -25.145285 ], [ -54.645996, -25.720735 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ] ] ], [ [ [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ] ] ], [ [ [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ] ] ], [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.757812, 14.200488 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.757812, 14.200488 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ] ] ], [ [ [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ] ] ], [ [ [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ] ] ], [ [ [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ] ] ], [ [ [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.166504, 15.008464 ], [ -83.254395, 14.902322 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.430176, 13.987376 ], [ -83.540039, 13.581921 ], [ -83.562012, 13.132979 ], [ -83.518066, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.737793, 11.910354 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.825684, 11.113727 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.199219, 10.811724 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.146746 ], [ -87.187500, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.319336, 13.004558 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.715332, 13.966054 ], [ -85.166016, 14.370834 ], [ -85.166016, 14.562318 ], [ -85.056152, 14.562318 ], [ -84.946289, 14.796128 ], [ -84.836426, 14.838612 ], [ -84.660645, 14.668626 ], [ -84.462891, 14.626109 ], [ -84.243164, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.649902, 14.881087 ], [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ], [ -83.254395, 14.902322 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.430176, 13.987376 ], [ -83.540039, 13.581921 ], [ -83.562012, 13.132979 ], [ -83.518066, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.737793, 11.910354 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.825684, 11.113727 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.199219, 10.811724 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.146746 ], [ -87.187500, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.319336, 13.004558 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.715332, 13.966054 ], [ -85.166016, 14.370834 ], [ -85.166016, 14.562318 ], [ -85.056152, 14.562318 ], [ -84.946289, 14.796128 ], [ -84.836426, 14.838612 ], [ -84.660645, 14.668626 ], [ -84.462891, 14.626109 ], [ -84.243164, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.649902, 14.881087 ], [ -83.496094, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.651855, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.287598, 23.200961 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.287598, 23.200961 ], [ -81.408691, 23.120154 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.651855, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.287598, 23.200961 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.836914, 8.646196 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.605957, 8.841651 ], [ -83.649902, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.803223, 10.444598 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.836914, 8.646196 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.605957, 8.841651 ], [ -83.649902, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.803223, 10.444598 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.542117 ], [ -77.585449, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.542117 ], [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.542117 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ], [ -72.597656, 19.890723 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.932041 ], [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.631348, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.631348, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.499512, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.499512, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -61.105957, 10.898042 ], [ -60.908203, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.745531 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.745531 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -8.349609, 54.673831 ], [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -8.349609, 54.673831 ], [ -7.580566, 55.141210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ] ] ], [ [ [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 1.757812, 42.374778 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 1.757812, 50.986099 ], [ 1.757812, 42.374778 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ] ] ], [ [ [ 1.757812, 50.986099 ], [ 1.757812, 42.374778 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 1.757812, 50.986099 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.185059, 37.805444 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.789062, 40.763901 ], [ -8.811035, 41.195190 ], [ -9.008789, 41.557922 ], [ -9.052734, 41.885921 ], [ -8.679199, 42.147114 ], [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.185059, 37.805444 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.789062, 40.763901 ], [ -8.811035, 41.195190 ], [ -9.008789, 41.557922 ], [ -9.052734, 41.885921 ], [ -8.679199, 42.147114 ], [ -8.283691, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -3.427734, 36.668419 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -3.427734, 36.668419 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.320139 ], [ -13.447266, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 14.008696 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.535645, 12.447305 ], [ -11.667480, 12.404389 ], [ -12.216797, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.533115 ], [ -16.149902, 12.554564 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.710449, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.392090, 13.645987 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.721191, 15.623037 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ], [ -14.106445, 16.320139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.615138 ], [ -14.106445, 16.320139 ], [ -13.447266, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 14.008696 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.535645, 12.447305 ], [ -11.667480, 12.404389 ], [ -12.216797, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.533115 ], [ -16.149902, 12.554564 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.710449, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.392090, 13.645987 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.721191, 15.623037 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.699707, 13.645987 ], [ -14.392090, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.710449, 13.282719 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ], [ -14.392090, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.710449, 13.282719 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.216797, 12.468760 ], [ -11.667480, 12.404389 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.315918, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.876465, 12.189704 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.909668, 12.060809 ], [ -9.580078, 12.211180 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.920898, 12.103781 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.844238, 8.581021 ], [ -8.217773, 8.472372 ], [ -8.305664, 8.320212 ], [ -8.239746, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.019531, 8.428904 ], [ -10.524902, 8.363693 ], [ -10.502930, 8.733077 ], [ -10.656738, 8.993600 ], [ -10.634766, 9.275622 ], [ -10.854492, 9.709057 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.612305, 9.622414 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.514079 ], [ -14.084473, 9.903921 ], [ -14.348145, 10.033767 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -14.853516, 10.898042 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -14.128418, 11.695273 ], [ -13.908691, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.732910, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.216797, 12.468760 ], [ -11.667480, 12.404389 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.315918, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.876465, 12.189704 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.909668, 12.060809 ], [ -9.580078, 12.211180 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.920898, 12.103781 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.844238, 8.581021 ], [ -8.217773, 8.472372 ], [ -8.305664, 8.320212 ], [ -8.239746, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.019531, 8.428904 ], [ -10.524902, 8.363693 ], [ -10.502930, 8.733077 ], [ -10.656738, 8.993600 ], [ -10.634766, 9.275622 ], [ -10.854492, 9.709057 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.612305, 9.622414 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.514079 ], [ -14.084473, 9.903921 ], [ -14.348145, 10.033767 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -14.853516, 10.898042 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -14.128418, 11.695273 ], [ -13.908691, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.732910, 12.254128 ], [ -13.710938, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.854492, 9.709057 ], [ -10.634766, 9.275622 ], [ -10.656738, 8.993600 ], [ -10.502930, 8.733077 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.950437 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.122696 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.139648, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.612305, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.854492, 9.709057 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.854492, 9.709057 ], [ -10.634766, 9.275622 ], [ -10.656738, 8.993600 ], [ -10.502930, 8.733077 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.950437 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.122696 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.139648, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.612305, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.320139 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.259766, 19.103648 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.320139 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.259766, 19.103648 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.368950 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.580078, 12.211180 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.368950 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.580078, 12.211180 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 1.757812, 12.726084 ], [ 1.757812, 11.609193 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 1.757812, 12.726084 ], [ 1.757812, 11.609193 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.503418, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.558594, 5.331644 ], [ -7.646484, 5.200365 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -9.931641, 5.594118 ], [ -10.766602, 6.162401 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.122696 ], [ -11.162109, 7.406048 ], [ -10.700684, 7.950437 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.503418, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.558594, 5.331644 ], [ -7.646484, 5.200365 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -9.931641, 5.594118 ], [ -10.766602, 6.162401 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.122696 ], [ -11.162109, 7.406048 ], [ -10.700684, 7.950437 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.559294 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 5.003394 ], [ -4.020996, 5.200365 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.536621, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.646484, 5.200365 ], [ -7.558594, 5.331644 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.239746, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.472372 ], [ -7.844238, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -8.041992, 10.206813 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.422988 ], [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 5.003394 ], [ -4.020996, 5.200365 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.536621, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.646484, 5.200365 ], [ -7.558594, 5.331644 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.239746, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.472372 ], [ -7.844238, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -8.041992, 10.206813 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.422988 ], [ -6.218262, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -75.761719, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -75.761719, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.388672, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.388672, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.499512, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.499512, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 1.757812, 36.650793 ], [ 1.757812, 20.653346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.650793 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 1.757812, 36.650793 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 12.726084 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.368950 ], [ 1.757812, 12.726084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.368950 ], [ 1.757812, 12.726084 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.368950 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.757812, 6.446318 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.757812, 6.446318 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 6.446318 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.757812, 11.609193 ], [ 1.757812, 6.446318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.609193 ], [ 1.757812, 6.446318 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.757812, 11.609193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.764299 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ] ] ], [ [ [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.764299 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ] ] ], [ [ [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.742188, 65.802776 ], [ -24.147949, 65.802776 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.742188, 65.802776 ] ] ], [ [ [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.802776 ], [ -20.390625, 65.802776 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.416748 ], [ -20.742188, 65.802776 ], [ -24.147949, 65.802776 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.802776 ], [ -20.390625, 65.802776 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ], [ [ [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ] ] ], [ [ [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.695801, 1.757537 ], [ 34.936523, 1.757537 ], [ 34.650879, 1.186439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.936523, 1.757537 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.695801, 1.757537 ], [ 34.936523, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 34.936523, 1.757537 ], [ 40.979004, 1.757537 ], [ 40.979004, -0.856902 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 1.757537 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 34.936523, 1.757537 ], [ 40.979004, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 1.757537 ], [ 45.109863, 1.757537 ], [ 44.055176, 1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.109863, 1.757537 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 1.757537 ], [ 45.109863, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 1.757537 ], [ 13.029785, 1.757537 ], [ 13.271484, 1.318243 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.029785, 1.757537 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 1.757537 ], [ 13.029785, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.930176, 1.735574 ], [ 15.930176, 1.757537 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 13.029785, 1.757537 ], [ 15.842285, 1.757537 ], [ 15.930176, 1.735574 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 13.029785, 1.757537 ], [ 15.842285, 1.757537 ], [ 15.930176, 1.735574 ], [ 15.930176, 1.757537 ], [ 17.885742, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 30.695801, 1.757537 ], [ 30.454102, 1.603794 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.695801, 1.757537 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 30.695801, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, -6.620957 ], [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.160156, -7.732765 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 22.390137, -10.984335 ], [ 22.829590, -11.005904 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 12.194824, -17.098792 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 11.777344, -15.792254 ], [ 12.106934, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.722168, -13.132979 ], [ 13.293457, -12.468760 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 12.722168, -5.943900 ], [ 13.007812, -5.965754 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ], [ 16.567383, -6.620957 ] ] ], [ [ [ 12.985840, -4.762573 ], [ 12.612305, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.304688, -4.587376 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.856475 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.160156, -7.732765 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 22.390137, -10.984335 ], [ 22.829590, -11.005904 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 12.194824, -17.098792 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 11.777344, -15.792254 ], [ 12.106934, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.722168, -13.132979 ], [ 13.293457, -12.468760 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 12.722168, -5.943900 ], [ 13.007812, -5.965754 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.304688, -4.587376 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 14.194336, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 23.203125, -17.518344 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 25.070801, -17.644022 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.819824, -28.844674 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.985352, -26.115986 ], [ 14.721680, -25.383735 ], [ 14.392090, -23.845650 ], [ 14.370117, -22.654572 ], [ 14.238281, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.337402, -20.858812 ], [ 12.810059, -19.663280 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.194824, -17.098792 ], [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 14.194336, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 23.203125, -17.518344 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 25.070801, -17.644022 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.819824, -28.844674 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.985352, -26.115986 ], [ 14.721680, -25.383735 ], [ 14.392090, -23.845650 ], [ 14.370117, -22.654572 ], [ 14.238281, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.337402, -20.858812 ], [ 12.810059, -19.663280 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.194824, -17.098792 ], [ 12.810059, -16.930705 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.320212 ], [ 31.157227, -8.581021 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.026367, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.367188, -17.832374 ], [ 25.246582, -17.727759 ], [ 25.070801, -17.644022 ], [ 25.070801, -17.560247 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 24.763184, -11.221510 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.520508, -12.683215 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 28.981934, -8.385431 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.320212 ], [ 31.157227, -8.581021 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.026367, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.367188, -17.832374 ], [ 25.246582, -17.727759 ], [ 25.070801, -17.644022 ], [ 25.070801, -17.560247 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 24.763184, -11.221510 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.520508, -12.683215 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 28.981934, -8.385431 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.085640 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.521283 ], [ 25.246582, -17.727759 ], [ 26.367188, -17.832374 ], [ 26.696777, -17.957832 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.085640 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.521283 ], [ 25.246582, -17.727759 ], [ 26.367188, -17.832374 ], [ 26.696777, -17.957832 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 33.200684, -13.966054 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.310547, -10.790141 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 33.200684, -13.966054 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.310547, -10.790141 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 25.839844, -18.708692 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.784668, -24.226929 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 24.499512, -17.874203 ], [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 25.839844, -18.708692 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.784668, -24.226929 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 24.499512, -17.874203 ], [ 25.070801, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ] ], [ [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ] ], [ [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.839449 ], [ 31.970215, -26.273714 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.017298 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 31.970215, -26.273714 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.017298 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.526367, -12.468760 ], [ 49.790039, -12.876070 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.526855, -23.765237 ], [ 47.087402, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.483398, -15.961329 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 46.867676, -15.199386 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.876070 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.526855, -23.765237 ], [ 47.087402, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.483398, -15.961329 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 46.867676, -15.199386 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ], [ -1.120605, 54.635697 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ] ] ], [ [ [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.293200 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.676454 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.710273 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.293200 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.676454 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.710273 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -1.757812, 37.107765 ], [ -1.757812, 43.293200 ], [ -1.516113, 43.036776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 43.293200 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -1.757812, 37.107765 ], [ -1.757812, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -1.757812, 32.212801 ], [ -1.757812, 34.143635 ], [ -1.735840, 33.925130 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 34.143635 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -1.757812, 32.212801 ], [ -1.757812, 34.143635 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -1.757812, 14.689881 ], [ -1.757812, 22.938160 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 22.938160 ], [ 0.000000, 21.800308 ], [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -1.757812, 14.689881 ], [ -1.757812, 22.938160 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -1.757812, 11.005904 ], [ -1.757812, 14.689881 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -1.757812, 11.005904 ], [ -1.757812, 14.689881 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 15.996094, 67.204032 ], [ 15.380859, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 67.204032 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 15.996094, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ] ] ], [ [ [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ] ] ], [ [ [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.387508 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.387508 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.414551, 49.979488 ], [ 12.502441, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.414551, 49.979488 ], [ 12.502441, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.431713 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.466797, 53.917281 ], [ 23.510742, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 22.543945, 49.095452 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 16.347656, 54.521081 ], [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.431713 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.466797, 53.917281 ], [ 23.510742, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 22.543945, 49.095452 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 16.347656, 54.521081 ], [ 17.622070, 54.863963 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.860191 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 10.437012, 46.905246 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.624023, 47.353711 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.860191 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 10.437012, 46.905246 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.624023, 47.353711 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.666504, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 12.084961, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.689941, 44.040219 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ] ] ], [ [ [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.666504, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 12.084961, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.689941, 44.040219 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.621094, 46.995241 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.875000, 46.392411 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.468262, 47.872144 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 19.160156, 48.122101 ], [ 19.643555, 48.268569 ], [ 19.753418, 48.210032 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.621094, 46.995241 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.875000, 46.392411 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.468262, 47.872144 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 19.160156, 48.122101 ], [ 19.643555, 48.268569 ], [ 19.753418, 48.210032 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 19.160156, 48.122101 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.009051 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 19.160156, 48.122101 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.009051 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 19.204102, 43.532620 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.896973, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.237793, 44.355278 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 19.204102, 43.532620 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.896973, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.237793, 44.355278 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 43.357138 ], [ 19.621582, 43.229195 ], [ 19.951172, 43.117024 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 19.160156, 41.967659 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.698730, 43.213183 ], [ 19.028320, 43.436966 ], [ 19.204102, 43.532620 ], [ 19.467773, 43.357138 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.532620 ], [ 19.467773, 43.357138 ], [ 19.621582, 43.229195 ], [ 19.951172, 43.117024 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 19.160156, 41.967659 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.698730, 43.213183 ], [ 19.028320, 43.436966 ], [ 19.204102, 43.532620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.555176, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.643066, 42.439674 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 21.423340, 42.875964 ], [ 21.269531, 42.924252 ], [ 21.137695, 43.068888 ], [ 20.939941, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.951172, 43.117024 ], [ 19.621582, 43.229195 ], [ 19.467773, 43.357138 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.555176, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.643066, 42.439674 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 21.423340, 42.875964 ], [ 21.269531, 42.924252 ], [ 21.137695, 43.068888 ], [ 20.939941, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.951172, 43.117024 ], [ 19.621582, 43.229195 ], [ 19.467773, 43.357138 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.939941, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.924252 ], [ 21.423340, 42.875964 ], [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.643066, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ], [ 20.939941, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.939941, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.924252 ], [ 21.423340, 42.875964 ], [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.643066, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.741699, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.741699, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.856443 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ], [ 25.598145, 57.856443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.856443 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.856443 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.856443 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.530762, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.530762, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.916504, 48.136767 ], [ 27.224121, 47.827908 ], [ 27.531738, 47.413220 ], [ 28.125000, 46.815099 ], [ 28.146973, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.245199 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 23.752441, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ], [ 26.916504, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.136767 ], [ 27.224121, 47.827908 ], [ 27.531738, 47.413220 ], [ 28.125000, 46.815099 ], [ 28.146973, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.245199 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 23.752441, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.146973, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.531738, 47.413220 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.146973, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.531738, 47.413220 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.056152, 43.564472 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 11.513672, 13.346865 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 13.293457, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.941895, 9.427387 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 12.062988, 7.819847 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.746582, 7.885147 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.208008, 9.449062 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 11.513672, 13.346865 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 13.293457, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.941895, 9.427387 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 12.062988, 7.819847 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.746582, 7.885147 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.208008, 9.449062 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 22.016602, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 18.369141, 8.298470 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.435547, 7.754537 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 15.117188, 8.385431 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 14.611816, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.941406, 11.566144 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 22.016602, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 18.369141, 8.298470 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.435547, 7.754537 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 15.117188, 8.385431 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 14.611816, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.941406, 11.566144 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 25.795898, 6.991859 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 26.389160, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.697754, 4.653080 ], [ 22.390137, 4.039618 ], [ 21.643066, 4.236856 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.797852, 3.579213 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.886230, 2.569939 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.462896 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.369141, 8.298470 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 19.072266, 9.080400 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 25.795898, 6.991859 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 26.389160, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.697754, 4.653080 ], [ 22.390137, 4.039618 ], [ 21.643066, 4.236856 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.797852, 3.579213 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.886230, 2.569939 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.462896 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.369141, 8.298470 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 19.072266, 9.080400 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.004883, 35.442771 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 25.444336, 40.863680 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 23.510742, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.004883, 35.442771 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 25.444336, 40.863680 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 23.510742, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.442383, 35.101934 ], [ 33.464355, 35.012002 ], [ 33.508301, 35.047987 ], [ 33.662109, 35.029996 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 32.717285, 35.155846 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ], [ 33.442383, 35.101934 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.173808 ], [ 33.442383, 35.101934 ], [ 33.464355, 35.012002 ], [ 33.508301, 35.047987 ], [ 33.662109, 35.029996 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 32.717285, 35.155846 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.443848, 31.334871 ], [ 28.894043, 30.883369 ], [ 29.663086, 31.203405 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.362402 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 33.332520, 27.702984 ], [ 34.101562, 26.155438 ], [ 34.453125, 25.601902 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.672363, 22.207749 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ], [ 27.443848, 31.334871 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.477051, 31.597253 ], [ 27.443848, 31.334871 ], [ 28.894043, 30.883369 ], [ 29.663086, 31.203405 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.362402 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 33.332520, 27.702984 ], [ 34.101562, 26.155438 ], [ 34.453125, 25.601902 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.672363, 22.207749 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.198730, 37.090240 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ] ] ], [ [ [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.198730, 37.090240 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ] ] ], [ [ [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 41.198730, 37.090240 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 41.198730, 37.090240 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.375977, 31.503629 ], [ 35.529785, 31.784217 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.375977, 31.503629 ], [ 35.529785, 31.784217 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.991699, 4.258768 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.355957, 5.244128 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.991859 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.817329 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 25.949707, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 31.838379, 10.552622 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.991699, 4.258768 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.355957, 5.244128 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.991859 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.817329 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 25.949707, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 31.838379, 10.552622 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 39.792480, 15.453680 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 41.989746, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.738281, 16.299051 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 39.792480, 15.453680 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 41.989746, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.738281, 16.299051 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 42.297363, 11.049038 ], [ 41.748047, 11.070603 ], [ 41.726074, 11.372339 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 42.297363, 11.049038 ], [ 41.748047, 11.070603 ], [ 41.726074, 11.372339 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 41.440430, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 41.440430, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 41.989746, 12.876070 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.726074, 11.372339 ], [ 41.748047, 11.070603 ], [ 42.297363, 11.049038 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.557417 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.649902, 3.623071 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 41.989746, 12.876070 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.726074, 11.372339 ], [ 41.748047, 11.070603 ], [ 42.297363, 11.049038 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.557417 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.649902, 3.623071 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 63.171387, 43.659924 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.993652, 40.245992 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 63.171387, 43.659924 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.993652, 40.245992 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.032715, 39.639538 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.334297 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.032715, 39.639538 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.334297 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.108887, 41.294317 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 46.032715, 39.639538 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 45.725098, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.108887, 41.294317 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 46.032715, 39.639538 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 45.725098, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.966309, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.324720 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.324720 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 55.217285, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.613770, 24.026397 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 55.217285, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.613770, 24.026397 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.052246, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.152344, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.966054 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 46.713867, 13.410994 ], [ 45.856934, 13.368243 ], [ 45.615234, 13.304103 ], [ 45.395508, 13.047372 ], [ 45.131836, 12.961736 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 43.066406, 14.072645 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.197754, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.152344, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.966054 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 46.713867, 13.410994 ], [ 45.856934, 13.368243 ], [ 45.615234, 13.304103 ], [ 45.395508, 13.047372 ], [ 45.131836, 12.961736 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 43.066406, 14.072645 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.197754, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.117676, 23.765237 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.117676, 23.765237 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 48.010254, 11.199957 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 48.471680, 8.841651 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 43.286133, 9.557417 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 48.010254, 11.199957 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 48.471680, 8.841651 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 43.286133, 9.557417 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.180176, 36.949892 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.575195, 37.037640 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.721274 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.477051, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 60.798340, 34.415973 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 67.060547, 37.370157 ], [ 67.829590, 37.160317 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.180176, 36.949892 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.575195, 37.037640 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.721274 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.477051, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 60.798340, 34.415973 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 67.060547, 37.370157 ], [ 67.829590, 37.160317 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.091797, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.224820 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.477051, 35.657296 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 72.905273, 36.721274 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.037640 ], [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.091797, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.224820 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.477051, 35.657296 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 72.905273, 36.721274 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.037640 ], [ 75.146484, 37.142803 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 86.022949, 26.647459 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.979980, 27.936181 ], [ 81.057129, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.101074, 30.202114 ], [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 86.022949, 26.647459 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.979980, 27.936181 ], [ 81.057129, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.101074, 30.202114 ], [ 81.518555, 30.429730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 91.757812, 26.843677 ], [ 91.757812, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ] ] ], [ [ [ 91.757812, 23.200961 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.757812, 24.126702 ], [ 91.757812, 23.200961 ] ] ], [ [ [ 91.757812, 27.800210 ], [ 91.757812, 27.741885 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.800210 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 26.843677 ], [ 91.757812, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 91.757812, 26.843677 ] ] ], [ [ [ 91.757812, 24.126702 ], [ 91.757812, 23.200961 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.757812, 24.126702 ] ] ], [ [ [ 91.757812, 27.741885 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.800210 ], [ 91.757812, 27.741885 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.741885 ], [ 91.757812, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.741885 ], [ 91.757812, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.000000, 25.264568 ], [ 90.856934, 25.145285 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.126702 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.757812, 23.200961 ], [ 91.757812, 22.309426 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.000000, 25.264568 ], [ 90.856934, 25.145285 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.126702 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.757812, 23.200961 ], [ 91.757812, 22.309426 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.182037 ], [ 91.757812, 27.800210 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.182037 ], [ 91.757812, 27.800210 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.326172, -1.757537 ], [ 9.162598, -1.757537 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.326172, -1.757537 ], [ 9.162598, -1.757537 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.757537 ], [ 14.326172, -1.757537 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.757537 ], [ 14.326172, -1.757537 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.783691, -1.757537 ], [ 29.267578, -1.757537 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.783691, -1.757537 ], [ 29.267578, -1.757537 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.310059, -1.757537 ], [ 30.783691, -1.757537 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ], [ 35.310059, -1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 35.310059, -1.757537 ], [ 30.783691, -1.757537 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.804688, 65.802776 ], [ 30.190430, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ] ] ], [ [ [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ], [ [ [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.804688, 65.802776 ], [ 30.190430, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ] ] ], [ [ [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ], [ [ [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ] ] ], [ [ [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.110204 ] ] ], [ [ [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ] ] ], [ [ [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ] ] ], [ [ [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.651855, -67.204032 ], [ 120.849609, -67.187000 ] ] ], [ [ [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ] ] ], [ [ [ 92.592773, -67.187000 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ] ] ], [ [ [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ] ] ], [ [ [ 99.382324, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ] ] ], [ [ [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ] ] ], [ [ [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.651855, -67.204032 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.390625, 1.669686 ], [ 110.764160, 1.757537 ], [ 114.719238, 1.757537 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.709473, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ] ] ], [ [ [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.172363, 1.757537 ], [ 104.238281, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.719238, 1.757537 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.709473, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.764160, 1.757537 ], [ 114.719238, 1.757537 ] ] ], [ [ [ 104.172363, 1.757537 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.172363, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ] ] ], [ [ [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ] ] ], [ [ [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ] ] ], [ [ [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ] ] ], [ [ [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.719238, 1.757537 ], [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ] ] ], [ [ [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ] ] ], [ [ [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.719238, 1.757537 ], [ 117.949219, 1.757537 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.068359, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.628418, -8.385431 ], [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.068359, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.628418, -8.385431 ], [ 126.936035, -8.254983 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ] ] ], [ [ [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.325195, -29.439598 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.325195, -29.439598 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ] ] ], [ [ [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ] ] ], [ [ [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.384032 ], [ 160.686035, -9.600750 ], [ 160.839844, -9.860628 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ], [ 160.686035, -9.600750 ], [ 160.839844, -9.860628 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.992188, -15.601875 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.992188, -15.601875 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.117840 ], [ 165.014648, -20.447602 ], [ 165.761719, -21.063997 ], [ 166.596680, -21.698265 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.454102, -21.677848 ], [ 164.816895, -21.145992 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ], [ 165.014648, -20.447602 ], [ 165.761719, -21.063997 ], [ 166.596680, -21.698265 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.454102, -21.677848 ], [ 164.816895, -21.145992 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.839449 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ] ] ], [ [ [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ] ] ], [ [ [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 25.839449 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.839449 ] ] ], [ [ [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ] ] ], [ [ [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.760320 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.000000, 25.264568 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.242188, 24.447150 ], [ 88.242188, 24.766785 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.760320 ], [ 88.242188, 25.839449 ], [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.000000, 25.264568 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.242188, 24.447150 ], [ 88.242188, 24.766785 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.760320 ], [ 88.242188, 25.839449 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.975586, 21.759500 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ] ] ], [ [ [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.975586, 21.759500 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.701172, 26.745610 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 99.975586, 21.759500 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.481445, 16.846605 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.756348, 14.838612 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.446622 ], [ 95.361328, 15.728814 ], [ 94.790039, 15.813396 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.701172, 26.745610 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 99.975586, 21.759500 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.481445, 16.846605 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.756348, 14.838612 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.446622 ], [ 95.361328, 15.728814 ], [ 94.790039, 15.813396 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.677848 ], [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ], [ 102.744141, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.150879, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.239746, 8.993600 ], [ 98.547363, 9.947209 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.206543, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 98.481445, 16.846605 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.239746, 8.993600 ], [ 98.547363, 9.947209 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.206543, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 98.481445, 16.846605 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.951320 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.497092 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 127.770996, 39.061849 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.980469, 37.961523 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.951320 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.497092 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 127.770996, 39.061849 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.980469, 37.961523 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 127.770996, 38.307181 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 127.770996, 38.307181 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ] ] ], [ [ [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ] ] ], [ [ [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ] ] ], [ [ [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ] ] ], [ [ [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ] ] ], [ [ [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 114.587402, 4.915833 ], [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 114.587402, 4.915833 ], [ 115.444336, 5.462896 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ] ] ], [ [ [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ] ] ], [ [ [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.657715, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.657715, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.816406, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.816406, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ] ] ], [ [ [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.916260, -79.004962 ], [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ] ] ], [ [ [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.916260, -79.004962 ], [ -159.576416, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.314941, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.314941, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -162.894287, 66.861082 ], [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -140.998535, 66.861082 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.990234, 66.861082 ], [ -175.023193, 66.587583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.990234, 66.861082 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.607378 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.607378 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.685303, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ] ] ], [ [ [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.416926 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.416926 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.211426, 41.640078 ], [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.211426, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.978733 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.978733 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.093339 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.093339 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.121094, 17.978733 ], [ -89.121094, 15.887376 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.978733 ], [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.121094, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.370834 ], [ -89.121094, 13.400307 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.121094, 14.370834 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.121094, 14.370834 ], [ -89.121094, 13.400307 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -89.121094, 15.093339 ], [ -89.121094, 14.370834 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.093339 ], [ -89.121094, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -89.121094, 15.093339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.078079 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.078079 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.078079 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.078079 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.017224 ], [ -89.121094, 76.462920 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ], [ [ [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -89.121094, 77.017224 ], [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.017224 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ], [ [ [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.326660, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.326660, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ] ] ], [ [ [ -44.121094, -80.184334 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ], [ -44.121094, -80.184334 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.184334 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.365639 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.961914, -66.160511 ], [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.365639 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.961914, -66.160511 ], [ -62.171631, -66.160511 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ] ] ], [ [ [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.236328, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.236328, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ], [ -77.980957, 0.878872 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.980957, 0.878872 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ], [ -77.980957, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.817627, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.817627, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.211058 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.211058 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.437256, -25.155229 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.437256, -25.155229 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.817627, -41.640078 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.817627, -41.640078 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ] ] ], [ [ [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ] ] ], [ [ [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.077486 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.077486 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ] ] ], [ [ [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ] ] ], [ [ [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ] ] ], [ [ [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ] ] ], [ [ [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.693359, 15.961329 ], [ -85.451660, 15.887376 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.528809, 15.866242 ], [ -84.375000, 15.845105 ], [ -84.067383, 15.654776 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.704346, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.528320, 13.784737 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -88.846436, 14.147229 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ], [ -85.693359, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.011963, 16.014136 ], [ -85.693359, 15.961329 ], [ -85.451660, 15.887376 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.528809, 15.866242 ], [ -84.375000, 15.845105 ], [ -84.067383, 15.654776 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.704346, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.528320, 13.784737 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -88.846436, 14.147229 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.628662, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.288330, 22.400872 ], [ -78.354492, 22.512557 ], [ -78.002930, 22.278931 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.293113 ], [ -74.300537, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.640869, 19.880392 ], [ -76.333008, 19.963023 ], [ -77.761230, 19.859727 ], [ -77.091064, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.145752, 20.745840 ], [ -78.486328, 21.033237 ], [ -78.728027, 21.606365 ], [ -79.288330, 21.565502 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.044913 ], [ -81.826172, 22.197577 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.644432 ], [ -82.781982, 22.695120 ], [ -83.496094, 22.177232 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.810508 ], [ -84.979248, 21.902278 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.988738 ], [ -82.518311, 23.079732 ], [ -82.276611, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.276611, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.628662, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.288330, 22.400872 ], [ -78.354492, 22.512557 ], [ -78.002930, 22.278931 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.293113 ], [ -74.300537, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.640869, 19.880392 ], [ -76.333008, 19.963023 ], [ -77.761230, 19.859727 ], [ -77.091064, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.145752, 20.745840 ], [ -78.486328, 21.033237 ], [ -78.728027, 21.606365 ], [ -79.288330, 21.565502 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.044913 ], [ -81.826172, 22.197577 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.644432 ], [ -82.781982, 22.695120 ], [ -83.496094, 22.177232 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.810508 ], [ -84.979248, 21.902278 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.988738 ], [ -82.518311, 23.079732 ], [ -82.276611, 23.190863 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -83.023682, 10.001310 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -83.023682, 10.001310 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.574463, 18.500447 ], [ -76.904297, 18.406655 ], [ -76.365967, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.772217, 17.863747 ], [ -78.343506, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.531700 ], [ -77.574463, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.531700 ], [ -77.574463, 18.500447 ], [ -76.904297, 18.406655 ], [ -76.365967, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.772217, 17.863747 ], [ -78.343506, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.531700 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.224609, 19.632240 ], [ -69.960938, 19.652934 ], [ -69.774170, 19.300775 ], [ -69.224854, 19.321511 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.989415 ], [ -68.323975, 18.615013 ], [ -68.697510, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.631348, 18.385805 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.675049, 18.427502 ], [ -71.004639, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.663818, 17.759150 ], [ -71.718750, 18.051867 ], [ -71.696777, 18.323240 ], [ -71.949463, 18.625425 ], [ -71.707764, 18.791918 ], [ -71.630859, 19.176301 ], [ -71.718750, 19.715000 ], [ -71.597900, 19.890723 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.597900, 19.890723 ], [ -70.806885, 19.880392 ], [ -70.224609, 19.632240 ], [ -69.960938, 19.652934 ], [ -69.774170, 19.300775 ], [ -69.224854, 19.321511 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.989415 ], [ -68.323975, 18.615013 ], [ -68.697510, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.631348, 18.385805 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.675049, 18.427502 ], [ -71.004639, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.663818, 17.759150 ], [ -71.718750, 18.051867 ], [ -71.696777, 18.323240 ], [ -71.949463, 18.625425 ], [ -71.707764, 18.791918 ], [ -71.630859, 19.176301 ], [ -71.718750, 19.715000 ], [ -71.597900, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.499512, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.499512, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.004837 ], [ -58.491211, 7.351571 ], [ -58.458252, 6.839170 ], [ -58.084717, 6.817353 ], [ -57.150879, 5.976680 ], [ -57.315674, 5.080001 ], [ -57.919922, 4.817312 ], [ -57.864990, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.778451 ], [ -56.546631, 1.900286 ], [ -56.788330, 1.867345 ], [ -57.337646, 1.955187 ], [ -57.667236, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.436279, 1.472006 ], [ -58.546143, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.985352, 2.756504 ], [ -59.820557, 3.612107 ], [ -59.545898, 3.962901 ], [ -59.776611, 4.434044 ], [ -60.117188, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.255068 ], [ -60.743408, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.303955, 7.046379 ], [ -60.644531, 7.416942 ], [ -60.556641, 7.787194 ], [ -59.765625, 8.374562 ], [ -59.106445, 8.004837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.374562 ], [ -59.106445, 8.004837 ], [ -58.491211, 7.351571 ], [ -58.458252, 6.839170 ], [ -58.084717, 6.817353 ], [ -57.150879, 5.976680 ], [ -57.315674, 5.080001 ], [ -57.919922, 4.817312 ], [ -57.864990, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.778451 ], [ -56.546631, 1.900286 ], [ -56.788330, 1.867345 ], [ -57.337646, 1.955187 ], [ -57.667236, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.436279, 1.472006 ], [ -58.546143, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.985352, 2.756504 ], [ -59.820557, 3.612107 ], [ -59.545898, 3.962901 ], [ -59.776611, 4.434044 ], [ -60.117188, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.255068 ], [ -60.743408, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.303955, 7.046379 ], [ -60.644531, 7.416942 ], [ -60.556641, 7.787194 ], [ -59.765625, 8.374562 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.245361, -0.878872 ], [ -80.584717, -0.878872 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.245361, -0.878872 ], [ -80.584717, -0.878872 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.212646, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.212646, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -47.834473, -0.571280 ], [ -46.790771, -0.878872 ], [ -48.186035, -0.878872 ], [ -47.834473, -0.571280 ] ] ], [ [ [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.499512, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.499512, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ], [ [ [ -46.790771, -0.878872 ], [ -48.186035, -0.878872 ], [ -47.834473, -0.571280 ], [ -46.790771, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -82.100830, 66.861082 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -61.864014, 66.861082 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.360596, 66.861082 ], [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.360596, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.357422, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.907249 ], [ -90.516357, 73.858452 ] ] ], [ [ [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ] ] ], [ [ [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.596680, 79.335219 ], [ -76.915283, 79.325049 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.878906, 76.232138 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.357422, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -90.878906, 73.907249 ], [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.907249 ] ] ], [ [ [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ] ] ], [ [ [ -76.596680, 79.335219 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.596680, 79.335219 ] ] ], [ [ [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ] ] ], [ [ [ -90.878906, 76.232138 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.232138 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.445068, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.445068, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.004962 ], [ -68.708496, 79.004962 ], [ -67.445068, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ], [ -68.708496, 79.004962 ], [ -67.445068, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ] ] ], [ [ [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ], [ -43.494873, -79.084302 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -42.791748, -82.063963 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -43.516846, -82.000000 ], [ -45.878906, -81.786210 ] ] ], [ [ [ -43.560791, -79.004962 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.113037, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ] ] ], [ [ [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.113037, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ], [ -45.000000, -1.504954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.878906, -1.186439 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.635310 ], [ -14.051514, 13.795406 ], [ -13.853760, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.150146, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.699463, 13.272026 ], [ -15.941162, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.633545, 13.624633 ], [ -15.402832, 13.870080 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.635310 ], [ -14.051514, 13.795406 ], [ -13.853760, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.150146, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.699463, 13.272026 ], [ -15.941162, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.633545, 13.624633 ], [ -15.402832, 13.870080 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.205811, 12.468760 ], [ -11.667480, 12.393659 ], [ -11.524658, 12.447305 ], [ -11.458740, 12.082296 ], [ -11.304932, 12.082296 ], [ -11.041260, 12.221918 ], [ -10.876465, 12.178965 ], [ -10.601807, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.898682, 12.060809 ], [ -9.569092, 12.200442 ], [ -9.338379, 12.340002 ], [ -9.129639, 12.318536 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.382568, 11.393879 ], [ -8.591309, 11.146066 ], [ -8.624268, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.800933 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.239746, 10.131117 ], [ -8.316650, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.461506 ], [ -8.305664, 8.320212 ], [ -8.228760, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.448486, 7.689217 ], [ -8.723145, 7.721878 ], [ -8.931885, 7.318882 ], [ -9.217529, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.548430 ], [ -10.019531, 8.428904 ], [ -10.239258, 8.407168 ], [ -10.513916, 8.352823 ], [ -10.502930, 8.722218 ], [ -10.656738, 8.982749 ], [ -10.623779, 9.275622 ], [ -10.843506, 9.698228 ], [ -11.118164, 10.055403 ], [ -11.920166, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.722168, 9.351513 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.503244 ], [ -14.084473, 9.893099 ], [ -14.337158, 10.022948 ], [ -14.589844, 10.217625 ], [ -14.699707, 10.660608 ], [ -14.842529, 10.887254 ], [ -15.139160, 11.049038 ], [ -14.688721, 11.533852 ], [ -14.392090, 11.512322 ], [ -14.128418, 11.684514 ], [ -13.908691, 11.684514 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.254128 ], [ -13.710938, 12.586732 ], [ -13.227539, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.205811, 12.468760 ], [ -11.667480, 12.393659 ], [ -11.524658, 12.447305 ], [ -11.458740, 12.082296 ], [ -11.304932, 12.082296 ], [ -11.041260, 12.221918 ], [ -10.876465, 12.178965 ], [ -10.601807, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.898682, 12.060809 ], [ -9.569092, 12.200442 ], [ -9.338379, 12.340002 ], [ -9.129639, 12.318536 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.382568, 11.393879 ], [ -8.591309, 11.146066 ], [ -8.624268, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.800933 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.239746, 10.131117 ], [ -8.316650, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.461506 ], [ -8.305664, 8.320212 ], [ -8.228760, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.448486, 7.689217 ], [ -8.723145, 7.721878 ], [ -8.931885, 7.318882 ], [ -9.217529, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.548430 ], [ -10.019531, 8.428904 ], [ -10.239258, 8.407168 ], [ -10.513916, 8.352823 ], [ -10.502930, 8.722218 ], [ -10.656738, 8.982749 ], [ -10.623779, 9.275622 ], [ -10.843506, 9.698228 ], [ -11.118164, 10.055403 ], [ -11.920166, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.722168, 9.351513 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.503244 ], [ -14.084473, 9.893099 ], [ -14.337158, 10.022948 ], [ -14.589844, 10.217625 ], [ -14.699707, 10.660608 ], [ -14.842529, 10.887254 ], [ -15.139160, 11.049038 ], [ -14.688721, 11.533852 ], [ -14.392090, 11.512322 ], [ -14.128418, 11.684514 ], [ -13.908691, 11.684514 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.254128 ], [ -13.710938, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.966013 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ 0.000000, 21.800308 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.966013 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.878906, 13.475106 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.878906, 13.475106 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.217529, 7.318882 ], [ -8.931885, 7.318882 ], [ -8.723145, 7.721878 ], [ -8.448486, 7.689217 ], [ -8.492432, 7.406048 ], [ -8.393555, 6.915521 ], [ -8.613281, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.580566, 5.714380 ], [ -7.547607, 5.320705 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.839207 ], [ -9.920654, 5.594118 ], [ -10.766602, 6.151478 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.111795 ], [ -11.151123, 7.406048 ], [ -10.700684, 7.939556 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.548430 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.548430 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.217529, 7.318882 ], [ -8.931885, 7.318882 ], [ -8.723145, 7.721878 ], [ -8.448486, 7.689217 ], [ -8.492432, 7.406048 ], [ -8.393555, 6.915521 ], [ -8.613281, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.580566, 5.714380 ], [ -7.547607, 5.320705 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.839207 ], [ -9.920654, 5.594118 ], [ -10.766602, 6.151478 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.111795 ], [ -11.151123, 7.406048 ], [ -10.700684, 7.939556 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.548430 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.867403 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.867403 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.430122 ], [ 0.878906, 21.227942 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.430122 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.430122 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 13.475106 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.966013 ], [ 0.878906, 13.475106 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.966013 ], [ 0.878906, 13.475106 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.878906, 10.941192 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.878906, 10.941192 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.368958 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.941192 ], [ 0.878906, 10.368958 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.941192 ], [ 0.878906, 10.368958 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.941192 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.980713, 66.861082 ], [ -34.211426, 66.683436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.980713, 66.861082 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.980713, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.965346 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.965346 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.688955 ], [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.688955 ], [ 0.878906, 49.979488 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -6.899414, 40.313043 ], [ -8.931885, 40.313043 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -6.899414, 40.313043 ], [ -8.931885, 40.313043 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 0.878906, 42.730874 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -6.899414, 40.313043 ], [ -6.866455, 40.338170 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 0.878906, 42.730874 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -6.899414, 40.313043 ], [ -6.866455, 40.338170 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.815430, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.815430, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.555176, 66.160511 ], [ -23.763428, 66.160511 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -21.555176, 66.160511 ] ] ], [ [ [ -18.544922, 66.160511 ], [ -19.390869, 66.160511 ], [ -19.061279, 66.280118 ], [ -18.544922, 66.160511 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.622803, 66.160511 ], [ -17.303467, 66.160511 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.555176, 66.160511 ], [ -23.763428, 66.160511 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -18.544922, 66.160511 ], [ -19.390869, 66.160511 ], [ -19.061279, 66.280118 ], [ -18.544922, 66.160511 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.622803, 66.160511 ], [ -17.303467, 66.160511 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.767713 ], [ 45.878906, -79.335219 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.767713 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.767713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.442139, 0.878872 ], [ 40.979004, 0.878872 ], [ 40.979004, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.878872 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.442139, 0.878872 ], [ 40.979004, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 0.878872 ], [ 43.846436, 0.878872 ], [ 43.132324, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.846436, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 0.878872 ], [ 43.846436, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.448242, 0.878872 ], [ 14.150391, 0.878872 ], [ 13.842773, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.150391, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.448242, 0.878872 ], [ 14.150391, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.150391, 0.878872 ], [ 17.764893, 0.878872 ], [ 17.819824, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.764893, 0.878872 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.150391, 0.878872 ], [ 17.764893, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.878872 ], [ 29.992676, 0.878872 ], [ 29.871826, 0.604237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.992676, 0.878872 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.878872 ], [ 29.992676, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ] ] ], [ [ [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ] ], [ [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ] ], [ [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.827393, -25.839449 ], [ 31.981201, -26.283565 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ], [ 31.981201, -26.283565 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.970947, -28.950476 ], [ 29.322510, -29.248063 ], [ 29.014893, -29.735762 ], [ 28.839111, -30.069094 ], [ 28.289795, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.740479, -30.637912 ], [ 26.993408, -29.869229 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.844674 ], [ 28.531494, -28.642389 ], [ 28.970947, -28.950476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.531494, -28.642389 ], [ 28.970947, -28.950476 ], [ 29.322510, -29.248063 ], [ 29.014893, -29.735762 ], [ 28.839111, -30.069094 ], [ 28.289795, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.740479, -30.637912 ], [ 26.993408, -29.869229 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.844674 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -25.363882 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.781682 ], [ 45.878906, -25.363882 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.781682 ], [ 45.878906, -25.363882 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.781682 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.745117, 41.640078 ], [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.745117, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -0.878906, 10.962764 ], [ -0.878906, 15.029686 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -0.878906, 10.962764 ], [ -0.878906, 15.029686 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -0.878906, 5.123772 ], [ -0.878906, 10.962764 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -0.878906, 5.123772 ], [ -0.878906, 10.962764 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ] ] ], [ [ [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.205811, 41.640078 ], [ 16.018066, 41.640078 ], [ 15.886230, 41.541478 ] ] ], [ [ [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 16.018066, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.205811, 41.640078 ], [ 16.018066, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.500488, 41.640078 ], [ 20.456543, 41.516804 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.500488, 41.640078 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.500488, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.500488, 41.640078 ], [ 22.917480, 41.640078 ], [ 22.950439, 41.343825 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 41.640078 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.500488, 41.640078 ], [ 22.917480, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.103516, 41.640078 ], [ 26.103516, 41.335576 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 41.640078 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.103516, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.583252, 41.640078 ], [ 45.878906, 41.640078 ], [ 45.878906, 41.162114 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.583252, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.878906, 22.370396 ], [ -0.878906, 35.773258 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.878906, 22.370396 ], [ -0.878906, 35.773258 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ], [ 23.829346, 19.580493 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.853271, 23.412847 ], [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.700105 ], [ 15.270996, 7.427837 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.700105 ], [ 15.270996, 7.427837 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.543701, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.389893, 9.275622 ], [ 23.455811, 8.961045 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.830731 ], [ 25.114746, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.954827 ], [ 27.213135, 5.561315 ], [ 27.366943, 5.244128 ], [ 27.037354, 5.134715 ], [ 26.400146, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.125732, 4.937724 ], [ 24.796143, 4.904887 ], [ 24.400635, 5.112830 ], [ 23.291016, 4.620229 ], [ 22.840576, 4.718778 ], [ 22.697754, 4.642130 ], [ 22.401123, 4.039618 ], [ 21.654053, 4.225900 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.718778 ], [ 18.533936, 4.203986 ], [ 18.446045, 3.513421 ], [ 17.808838, 3.568248 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.206333 ], [ 16.007080, 2.273573 ], [ 15.897217, 2.558963 ], [ 15.853271, 3.019841 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.853293 ], [ 14.941406, 4.214943 ], [ 14.468994, 4.740675 ], [ 14.556885, 5.036227 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.765625, 6.413566 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.504089 ], [ 16.281738, 7.754537 ], [ 16.446533, 7.743651 ], [ 16.699219, 7.514981 ], [ 17.962646, 7.896030 ], [ 18.380127, 8.287599 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.993600 ], [ 19.083252, 9.080400 ], [ 20.050049, 9.015302 ], [ 20.994873, 9.481572 ], [ 21.719971, 10.574222 ], [ 22.225342, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.543701, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.389893, 9.275622 ], [ 23.455811, 8.961045 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.830731 ], [ 25.114746, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.954827 ], [ 27.213135, 5.561315 ], [ 27.366943, 5.244128 ], [ 27.037354, 5.134715 ], [ 26.400146, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.125732, 4.937724 ], [ 24.796143, 4.904887 ], [ 24.400635, 5.112830 ], [ 23.291016, 4.620229 ], [ 22.840576, 4.718778 ], [ 22.697754, 4.642130 ], [ 22.401123, 4.039618 ], [ 21.654053, 4.225900 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.718778 ], [ 18.533936, 4.203986 ], [ 18.446045, 3.513421 ], [ 17.808838, 3.568248 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.206333 ], [ 16.007080, 2.273573 ], [ 15.897217, 2.558963 ], [ 15.853271, 3.019841 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.853293 ], [ 14.941406, 4.214943 ], [ 14.468994, 4.740675 ], [ 14.556885, 5.036227 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.765625, 6.413566 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.504089 ], [ 16.281738, 7.754537 ], [ 16.446533, 7.743651 ], [ 16.699219, 7.514981 ], [ 17.962646, 7.896030 ], [ 18.380127, 8.287599 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.993600 ], [ 19.083252, 9.080400 ], [ 20.050049, 9.015302 ], [ 20.994873, 9.481572 ], [ 21.719971, 10.574222 ], [ 22.225342, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.103516, 41.640078 ], [ 26.455078, 41.640078 ], [ 26.597900, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ] ] ], [ [ [ 26.455078, 41.640078 ], [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.103516, 41.640078 ], [ 26.455078, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.673096, 35.021000 ], [ 33.519287, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.673096, 35.021000 ], [ 33.519287, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.519287, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.519287, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.156982, 41.640078 ], [ 36.156006, 41.640078 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.103027, 41.640078 ], [ 28.114014, 41.623655 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.156006, 41.640078 ], [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.156982, 41.640078 ], [ 36.156006, 41.640078 ] ] ], [ [ [ 28.103027, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.103027, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.773258 ], [ 45.878906, 34.912962 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 45.878906, 33.330528 ], [ 45.878906, 29.132970 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.773258 ], [ 45.878906, 34.912962 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 45.878906, 33.330528 ], [ 45.878906, 29.132970 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 32.870360 ], [ 35.694580, 32.722599 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ], [ 35.694580, 32.722599 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.386963, 31.494262 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.625321 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.178223, 32.537552 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.537552 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.386963, 31.494262 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.625321 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.178223, 32.537552 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.878872 ], [ 29.575195, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.878872 ], [ 29.575195, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.846605 ], [ 39.265137, 15.929638 ], [ 39.803467, 15.443091 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.769775, 12.458033 ], [ 42.341309, 12.543840 ], [ 42.000732, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.125922 ], [ 40.023193, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.743011 ], [ 38.507080, 14.509144 ], [ 37.902832, 14.966013 ], [ 37.584229, 14.221789 ], [ 36.419678, 14.424040 ], [ 36.320801, 14.827991 ], [ 36.749268, 16.299051 ], [ 36.848145, 16.962233 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.846605 ], [ 39.265137, 15.929638 ], [ 39.803467, 15.443091 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.769775, 12.458033 ], [ 42.341309, 12.543840 ], [ 42.000732, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.125922 ], [ 40.023193, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.743011 ], [ 38.507080, 14.509144 ], [ 37.902832, 14.966013 ], [ 37.584229, 14.221789 ], [ 36.419678, 14.424040 ], [ 36.320801, 14.827991 ], [ 36.749268, 16.299051 ], [ 36.848145, 16.962233 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.737061, 11.361568 ], [ 41.660156, 11.641476 ], [ 41.989746, 12.103781 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.737061, 11.361568 ], [ 41.660156, 11.641476 ], [ 41.989746, 12.103781 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.000977, -0.878872 ], [ 33.892822, -0.878872 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.000977, -0.878872 ], [ 33.892822, -0.878872 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.878906, 8.396300 ], [ 45.878906, 5.987607 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.878906, 8.396300 ], [ 45.878906, 5.987607 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.212441 ], [ 45.604248, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.121537 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.212441 ], [ 45.604248, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.121537 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 45.878906, 39.121537 ], [ 45.878906, 38.796908 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ], [ [ [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ] ] ], [ [ [ 45.878906, 39.732538 ], [ 45.604248, 39.901309 ], [ 45.878906, 40.212441 ], [ 45.878906, 39.732538 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 45.878906, 39.121537 ], [ 45.878906, 38.796908 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ], [ 45.878906, 40.229218 ] ] ], [ [ [ 45.878906, 40.212441 ], [ 45.878906, 39.732538 ], [ 45.604248, 39.901309 ], [ 45.878906, 40.212441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ] ] ], [ [ [ 45.878906, 33.330528 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ], [ 45.878906, 33.330528 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ] ] ], [ [ [ 45.878906, 34.912962 ], [ 45.878906, 33.330528 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.396300 ], [ 45.000000, 8.711359 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.923584, 10.022948 ], [ 42.550049, 10.574222 ], [ 42.769775, 10.930405 ], [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.396300 ], [ 45.000000, 8.711359 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.923584, 10.022948 ], [ 42.550049, 10.574222 ], [ 42.769775, 10.930405 ], [ 43.143311, 11.469258 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 2.317483 ], [ 45.560303, 2.054003 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.066650, -0.878872 ], [ 41.000977, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.878906, 5.987607 ], [ 45.878906, 2.317483 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.987607 ], [ 45.878906, 2.317483 ], [ 45.560303, 2.054003 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.066650, -0.878872 ], [ 41.000977, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.878906, 5.987607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.811035, -0.878872 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.811035, -0.878872 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 17.325439, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 17.325439, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -0.878872 ], [ 17.325439, -0.878872 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -0.878872 ], [ 17.325439, -0.878872 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.688955 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.688955 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.110840, 66.861082 ], [ 41.121826, 66.791909 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.110840, 66.861082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ], [ 15.380859, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.699463, 66.861082 ], [ 15.380859, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ] ] ], [ [ [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ] ] ], [ [ [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.699463, 66.861082 ], [ 23.554688, 66.861082 ], [ 23.554688, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.699463, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.790039, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.380502 ], [ 3.120117, 50.785102 ], [ 2.647705, 50.798991 ], [ 2.504883, 51.151786 ], [ 3.306885, 51.351201 ], [ 4.042969, 51.268789 ], [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.790039, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.380502 ], [ 3.120117, 50.785102 ], [ 2.647705, 50.798991 ], [ 2.504883, 51.151786 ], [ 3.306885, 51.351201 ], [ 4.042969, 51.268789 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.845164 ], [ 16.556396, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.314941, 45.736860 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.403076, 45.467836 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.019853 ], [ 13.798828, 46.513516 ], [ 14.622803, 46.437857 ], [ 15.128174, 46.664517 ], [ 16.007080, 46.687131 ], [ 16.193848, 46.852678 ], [ 16.369629, 46.845164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.852678 ], [ 16.369629, 46.845164 ], [ 16.556396, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.314941, 45.736860 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.403076, 45.467836 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.019853 ], [ 13.798828, 46.513516 ], [ 14.622803, 46.437857 ], [ 15.128174, 46.664517 ], [ 16.007080, 46.687131 ], [ 16.193848, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.777832, 40.313043 ], [ 8.382568, 40.313043 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.391113, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.864014, 40.446947 ], [ 16.776123, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.777832, 40.313043 ], [ 8.382568, 40.313043 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.391113, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.864014, 40.446947 ], [ 16.776123, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.708740, 47.886881 ], [ 22.093506, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.588623, 46.172223 ], [ 18.819580, 45.912944 ], [ 18.446045, 45.759859 ], [ 17.622070, 45.958788 ], [ 16.875000, 46.384833 ], [ 16.556396, 46.505954 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.852678 ], [ 16.523438, 47.502359 ], [ 16.336670, 47.717154 ], [ 16.896973, 47.717154 ], [ 16.973877, 48.129434 ], [ 17.479248, 47.872144 ], [ 17.852783, 47.761484 ], [ 18.687744, 47.886881 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.654541, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.334343 ], [ 20.467529, 48.567520 ], [ 20.797119, 48.625647 ], [ 21.862793, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.708740, 47.886881 ], [ 22.093506, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.588623, 46.172223 ], [ 18.819580, 45.912944 ], [ 18.446045, 45.759859 ], [ 17.622070, 45.958788 ], [ 16.875000, 46.384833 ], [ 16.556396, 46.505954 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.852678 ], [ 16.523438, 47.502359 ], [ 16.336670, 47.717154 ], [ 16.896973, 47.717154 ], [ 16.973877, 48.129434 ], [ 17.479248, 47.872144 ], [ 17.852783, 47.761484 ], [ 18.687744, 47.886881 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.654541, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.334343 ], [ 20.467529, 48.567520 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.852783, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.995361, 44.863656 ], [ 19.357910, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.572432 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.205176 ], [ 18.555908, 42.650122 ], [ 17.666016, 43.028745 ], [ 17.292480, 43.452919 ], [ 16.907959, 43.667872 ], [ 16.446533, 44.048116 ], [ 16.237793, 44.355278 ], [ 15.743408, 44.824708 ], [ 15.952148, 45.236218 ], [ 16.314697, 45.011419 ], [ 16.534424, 45.213004 ], [ 16.995850, 45.236218 ], [ 17.852783, 45.073521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.995850, 45.236218 ], [ 17.852783, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.995361, 44.863656 ], [ 19.357910, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.572432 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.205176 ], [ 18.555908, 42.650122 ], [ 17.666016, 43.028745 ], [ 17.292480, 43.452919 ], [ 16.907959, 43.667872 ], [ 16.446533, 44.048116 ], [ 16.237793, 44.355278 ], [ 15.743408, 44.824708 ], [ 15.952148, 45.236218 ], [ 16.314697, 45.011419 ], [ 16.534424, 45.213004 ], [ 16.995850, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.357138 ], [ 19.621582, 43.221190 ], [ 19.951172, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.061035, 42.593533 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.959490 ], [ 18.874512, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.698730, 43.205176 ], [ 19.028320, 43.436966 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.357138 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.357138 ], [ 19.621582, 43.221190 ], [ 19.951172, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.061035, 42.593533 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.959490 ], [ 18.874512, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.698730, 43.205176 ], [ 19.028320, 43.436966 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.950928, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.916206 ], [ 21.434326, 42.867912 ], [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.654053, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.346436, 42.212245 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ], [ 20.950928, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.950928, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.916206 ], [ 21.434326, 42.867912 ], [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.654053, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.346436, 42.212245 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.643311, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.643311, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.346436, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.346436, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.135742, 66.861082 ], [ 29.498291, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.135742, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.135742, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.450660 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.305160 ], [ 27.410889, 58.728302 ], [ 27.707520, 57.792089 ], [ 27.279053, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.850598 ], [ 25.158691, 57.973157 ], [ 24.312744, 57.797944 ], [ 24.422607, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.192812 ], [ 24.598389, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.938477, 59.450660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.450660 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.305160 ], [ 27.410889, 58.728302 ], [ 27.707520, 57.792089 ], [ 27.279053, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.850598 ], [ 25.158691, 57.973157 ], [ 24.312744, 57.797944 ], [ 24.422607, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.192812 ], [ 24.598389, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.795105 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.750732, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.783447, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.398682, 53.618579 ], [ 32.684326, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.300049, 53.074228 ], [ 31.530762, 52.742943 ], [ 31.783447, 52.106505 ], [ 30.926514, 52.045734 ], [ 30.618896, 51.828988 ], [ 30.552979, 51.323747 ], [ 30.146484, 51.419764 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.433464 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.597548 ], [ 26.334229, 51.835778 ], [ 25.323486, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.521729, 51.583897 ], [ 23.499756, 52.025459 ], [ 23.192139, 52.489470 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.521729, 53.474970 ], [ 23.477783, 53.917281 ], [ 24.444580, 53.910810 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.851315 ], [ 26.586914, 55.172594 ], [ 26.488037, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.795105 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.750732, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.783447, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.398682, 53.618579 ], [ 32.684326, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.300049, 53.074228 ], [ 31.530762, 52.742943 ], [ 31.783447, 52.106505 ], [ 30.926514, 52.045734 ], [ 30.618896, 51.828988 ], [ 30.552979, 51.323747 ], [ 30.146484, 51.419764 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.433464 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.597548 ], [ 26.334229, 51.835778 ], [ 25.323486, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.521729, 51.583897 ], [ 23.499756, 52.025459 ], [ 23.192139, 52.489470 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.521729, 53.474970 ], [ 23.477783, 53.917281 ], [ 24.444580, 53.910810 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.851315 ], [ 26.586914, 55.172594 ], [ 26.488037, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.916504, 48.129434 ], [ 27.224121, 47.827908 ], [ 27.542725, 47.405785 ], [ 28.125000, 46.815099 ], [ 28.157959, 46.377254 ], [ 28.048096, 45.951150 ], [ 28.223877, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.597168, 45.298075 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.553467, 43.707594 ], [ 27.960205, 43.818675 ], [ 27.235107, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.093018, 43.747289 ], [ 23.323975, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.467041, 44.410240 ], [ 22.697754, 44.582643 ], [ 22.456055, 44.707706 ], [ 22.137451, 44.480830 ], [ 21.555176, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.421588 ], [ 20.753174, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.093506, 47.672786 ], [ 22.708740, 47.886881 ], [ 23.137207, 48.100095 ], [ 23.752441, 47.989922 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.938721, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ], [ 26.916504, 48.129434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.129434 ], [ 27.224121, 47.827908 ], [ 27.542725, 47.405785 ], [ 28.125000, 46.815099 ], [ 28.157959, 46.377254 ], [ 28.048096, 45.951150 ], [ 28.223877, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.597168, 45.298075 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.553467, 43.707594 ], [ 27.960205, 43.818675 ], [ 27.235107, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.093018, 43.747289 ], [ 23.323975, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.467041, 44.410240 ], [ 22.697754, 44.582643 ], [ 22.456055, 44.707706 ], [ 22.137451, 44.480830 ], [ 21.555176, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.421588 ], [ 20.753174, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.093506, 47.672786 ], [ 22.708740, 47.886881 ], [ 23.137207, 48.100095 ], [ 23.752441, 47.989922 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.938721, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.663330, 48.122101 ], [ 29.113770, 47.850031 ], [ 29.047852, 47.517201 ], [ 29.410400, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.827881, 46.528635 ], [ 30.014648, 46.430285 ], [ 29.750977, 46.354511 ], [ 29.168701, 46.384833 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.445427 ], [ 28.927002, 46.263443 ], [ 28.652344, 45.943511 ], [ 28.476562, 45.598666 ], [ 28.223877, 45.490946 ], [ 28.048096, 45.951150 ], [ 28.157959, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.542725, 47.405785 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.129434 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.520752, 48.472921 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.472921 ], [ 28.256836, 48.158757 ], [ 28.663330, 48.122101 ], [ 29.113770, 47.850031 ], [ 29.047852, 47.517201 ], [ 29.410400, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.827881, 46.528635 ], [ 30.014648, 46.430285 ], [ 29.750977, 46.354511 ], [ 29.168701, 46.384833 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.445427 ], [ 28.927002, 46.263443 ], [ 28.652344, 45.943511 ], [ 28.476562, 45.598666 ], [ 28.223877, 45.490946 ], [ 28.048096, 45.951150 ], [ 28.157959, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.542725, 47.405785 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.129434 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.520752, 48.472921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.169922, 40.313043 ], [ 22.972412, 40.313043 ], [ 22.807617, 40.480381 ], [ 22.664795, 40.313043 ], [ 20.643311, 40.313043 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.169922, 40.313043 ], [ 22.972412, 40.313043 ], [ 22.807617, 40.480381 ], [ 22.664795, 40.313043 ], [ 20.643311, 40.313043 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 43.659668, 40.313043 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 43.659668, 40.313043 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.162114 ], [ 45.878906, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ], [ 45.878906, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.849854, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.353027, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.421143 ], [ 43.692627, 66.160511 ], [ 41.319580, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.011230, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 39.353027, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.849854, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.353027, 66.160511 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.011230, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.319580, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.692627, 66.160511 ], [ 41.319580, 66.160511 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.885254, 79.335219 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 19.885254, 79.335219 ], [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.885254, 79.335219 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.498291, 66.513260 ], [ 29.849854, 66.160511 ], [ 23.763428, 66.160511 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.498291, 66.513260 ], [ 29.849854, 66.160511 ], [ 23.763428, 66.160511 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.577145 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.473145, -66.861082 ], [ 87.747803, -66.513260 ] ] ], [ [ [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ] ] ], [ [ [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.473145, -66.861082 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.140790 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.140790 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.317871, 41.640078 ], [ 47.977295, 41.409776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.317871, 41.640078 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.317871, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ], [ 46.636963, 41.186922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.444678 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ] ] ], [ [ [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.376772 ], [ 44.417725, 38.281313 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.376772 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.376772 ] ] ], [ [ [ 44.121094, 39.444678 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.444678 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.966309, 29.983487 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 44.121094, 29.611670 ], [ 44.121094, 37.134045 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.966309, 29.983487 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 44.121094, 29.611670 ], [ 44.121094, 37.134045 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.037003 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.037003 ], [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.037003 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ] ] ], [ [ [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.953369, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ] ] ], [ [ [ 55.953369, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.953369, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 69.543457, 41.640078 ], [ 70.565186, 41.640078 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 60.040283, 41.640078 ], [ 66.588135, 41.640078 ], [ 66.708984, 41.170384 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.953369, 41.640078 ], [ 56.986084, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.565186, 41.640078 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 60.040283, 41.640078 ], [ 66.588135, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 69.543457, 41.640078 ], [ 70.565186, 41.640078 ] ] ], [ [ [ 56.986084, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.953369, 41.640078 ], [ 56.986084, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 70.565186, 41.640078 ], [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 70.565186, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 44.121094, 40.103286 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 44.121094, 40.103286 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.317871, 41.640078 ], [ 48.746338, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.219482, 41.640078 ], [ 46.889648, 41.640078 ], [ 47.373047, 41.219986 ] ] ], [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.746338, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.219482, 41.640078 ], [ 46.889648, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.317871, 41.640078 ], [ 48.746338, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.376772 ], [ 44.121094, 39.444678 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.376772 ], [ 44.121094, 39.444678 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.966309, 29.983487 ], [ 48.175049, 29.535230 ], [ 48.087158, 29.315141 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.526622 ], [ 47.449951, 29.008140 ], [ 46.560059, 29.104177 ], [ 47.296143, 30.059586 ], [ 47.966309, 29.983487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.296143, 30.059586 ], [ 47.966309, 29.983487 ], [ 48.175049, 29.535230 ], [ 48.087158, 29.315141 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.526622 ], [ 47.449951, 29.008140 ], [ 46.560059, 29.104177 ], [ 47.296143, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.424029 ], [ 44.121094, 29.611670 ], [ 44.703369, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.611670 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.424029 ], [ 44.121094, 29.611670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.580811, 25.809782 ], [ 51.602783, 25.224820 ], [ 51.383057, 24.637031 ], [ 51.108398, 24.557116 ], [ 50.800781, 24.756808 ], [ 50.734863, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.580811, 25.809782 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.580811, 25.809782 ], [ 51.602783, 25.224820 ], [ 51.383057, 24.637031 ], [ 51.108398, 24.557116 ], [ 50.800781, 24.756808 ], [ 50.734863, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.613770, 24.016362 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.613770, 24.016362 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.063232, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.040283, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ] ] ], [ [ [ 52.558594, 41.640078 ], [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.558594, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.040283, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.040283, 41.640078 ] ] ], [ [ [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.558594, 41.640078 ], [ 52.877197, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.778320, 17.350638 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 44.121094, 12.597455 ], [ 44.121094, 17.424029 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ], [ 52.778320, 17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.010190 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 44.121094, 12.597455 ], [ 44.121094, 17.424029 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.933105, 10.984335 ], [ 48.933105, 9.459899 ], [ 48.482666, 8.841651 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 45.000000, 8.711359 ], [ 44.121094, 9.037003 ], [ 44.121094, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.459899 ], [ 48.482666, 8.841651 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 45.000000, 8.711359 ], [ 44.121094, 9.037003 ], [ 44.121094, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 45.000000, 1.680667 ], [ 44.121094, 1.098565 ], [ 44.121094, 4.981505 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 45.000000, 1.680667 ], [ 44.121094, 1.098565 ], [ 44.121094, 4.981505 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 86.022949, 26.637639 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.101074, 30.192618 ], [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 86.022949, 26.637639 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.101074, 30.192618 ], [ 81.518555, 30.429730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 90.878906, 26.843677 ], [ 90.878906, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 90.878906, 26.843677 ], [ 90.878906, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.843677 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.843677 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 90.878906, 25.145285 ], [ 90.878906, 22.796439 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 90.878906, 25.145285 ], [ 90.878906, 22.796439 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 28.062286 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.340332, 66.670387 ], [ 47.713623, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ], [ 90.878906, 50.394512 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.394512 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ], [ 47.713623, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 42.609706 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 42.609706 ], [ 44.527588, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.059326, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.059326, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 74.652100, 40.313043 ], [ 72.059326, 40.313043 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 74.652100, 40.313043 ], [ 72.059326, 40.313043 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.317383, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.317383, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.543213, 40.313043 ], [ 69.114990, 40.313043 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.543213, 40.313043 ], [ 69.114990, 40.313043 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.000000, 47.776252 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 90.878906, 50.394512 ], [ 90.878906, 46.995241 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ] ] ], [ [ [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.626806 ], [ 90.878906, 45.367584 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.995241 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 90.878906, 50.394512 ], [ 90.878906, 46.995241 ] ] ], [ [ [ 90.878906, 46.626806 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.626806 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.626806 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.652100, 40.313043 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.626806 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.652100, 40.313043 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.875541 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.011685 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.674916 ], [ 90.878906, 66.160511 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 75.674916 ], [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.875541 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.011685 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.674916 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.918457, -66.861082 ], [ 110.225830, -66.696478 ] ] ], [ [ [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ] ] ], [ [ [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.918457, -66.861082 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.511475, 0.780005 ], [ 110.379639, 0.878872 ], [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.379639, 0.878872 ], [ 110.841064, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ] ] ], [ [ [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.377197, 0.878872 ], [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.718262, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.377197, 0.878872 ], [ 124.793701, 0.878872 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 118.718262, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.718262, 0.878872 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 135.878906, -14.051331 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.822823 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 135.878906, -14.051331 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.822823 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.990619 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.990619 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.990619 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.990619 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.121094, 22.044913 ], [ 89.121094, 26.145576 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.121094, 26.145576 ], [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.121094, 22.044913 ], [ 89.121094, 26.145576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.683350, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ] ] ], [ [ [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.144531, 41.640078 ], [ 128.199463, 41.467428 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 126.683350, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.683350, 41.640078 ] ] ], [ [ [ 128.144531, 41.640078 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.144531, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.986816, 7.917793 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.986816, 7.917793 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.556396, 22.228090 ], [ 107.039795, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.710205, 20.704739 ], [ 105.875244, 19.756364 ], [ 105.655518, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.324951, 13.432367 ], [ 109.193115, 11.673755 ], [ 108.358154, 11.016689 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.150146, 8.602747 ], [ 104.787598, 9.243093 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.194092, 10.898042 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.576907 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.211139 ], [ 107.556152, 15.209988 ], [ 107.303467, 15.919074 ], [ 106.545410, 16.604610 ], [ 105.084229, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.183350, 19.632240 ], [ 104.820557, 19.890723 ], [ 104.425049, 20.766387 ], [ 103.194580, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.161865, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.502197, 22.705255 ], [ 104.468994, 22.826820 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.556396, 22.228090 ], [ 107.039795, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.710205, 20.704739 ], [ 105.875244, 19.756364 ], [ 105.655518, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.324951, 13.432367 ], [ 109.193115, 11.673755 ], [ 108.358154, 11.016689 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.150146, 8.602747 ], [ 104.787598, 9.243093 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.194092, 10.898042 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.576907 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.211139 ], [ 107.556152, 15.209988 ], [ 107.303467, 15.919074 ], [ 106.545410, 16.604610 ], [ 105.084229, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.183350, 19.632240 ], [ 104.820557, 19.890723 ], [ 104.425049, 20.766387 ], [ 103.194580, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.161865, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.502197, 22.705255 ], [ 104.468994, 22.826820 ], [ 105.325928, 23.352343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ] ] ], [ [ [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.144531, 41.640078 ], [ 129.693604, 41.640078 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.683350, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.693604, 41.640078 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.683350, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.144531, 41.640078 ], [ 129.693604, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.439974 ], [ 129.451904, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.177490, 34.894942 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.551514, 35.692995 ], [ 126.112061, 36.730080 ], [ 126.859131, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.848833 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.264063 ], [ 127.770996, 38.307181 ], [ 128.199463, 38.376115 ], [ 128.342285, 38.616870 ], [ 129.210205, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.210205, 37.439974 ], [ 129.451904, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.177490, 34.894942 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.551514, 35.692995 ], [ 126.112061, 36.730080 ], [ 126.859131, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.848833 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.264063 ], [ 127.770996, 38.307181 ], [ 128.199463, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ] ] ], [ [ [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ] ] ], [ [ [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.324501 ], [ 114.862061, 4.357366 ], [ 114.653320, 4.017699 ], [ 114.202881, 4.532618 ], [ 114.598389, 4.904887 ], [ 115.444336, 5.451959 ], [ 115.345459, 4.324501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.451959 ], [ 115.345459, 4.324501 ], [ 114.862061, 4.357366 ], [ 114.653320, 4.017699 ], [ 114.202881, 4.532618 ], [ 114.598389, 4.904887 ], [ 115.444336, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.814209, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.882324, -0.878872 ], [ 123.332520, -0.615223 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.122559, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.313965, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.814209, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.122559, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.313965, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 123.288574, -0.878872 ], [ 121.882324, -0.878872 ], [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.315988 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.315988 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.738770, 40.313043 ], [ 122.025146, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.738770, 40.313043 ], [ 122.025146, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.781738, 40.313043 ], [ 124.738770, 40.313043 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.781738, 40.313043 ], [ 124.738770, 40.313043 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.986084, 79.335219 ], [ 102.216797, 79.335219 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 102.216797, 79.335219 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.986084, 79.335219 ], [ 102.216797, 79.335219 ] ] ], [ [ [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.361328, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.361328, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.966797, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 144.722900, -66.861082 ], [ 140.097656, -66.861082 ], [ 140.800781, -66.813547 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ] ] ], [ [ [ 144.371338, -66.835165 ], [ 144.722900, -66.861082 ], [ 140.097656, -66.861082 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.087581 ], [ 134.143066, -1.142502 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.217012 ], [ 134.121094, -6.107784 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.087581 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.087581 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.217012 ], [ 134.121094, -6.107784 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ] ] ], [ [ [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ] ] ], [ [ [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ] ] ], [ [ [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.454346, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.454102, -20.797201 ], [ 165.772705, -21.074249 ], [ 166.596680, -21.698265 ], [ 167.113037, -22.156883 ], [ 166.739502, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.465088, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.157715, -20.437308 ], [ 164.025879, -20.097206 ], [ 164.454346, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.454346, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.454102, -20.797201 ], [ 165.772705, -21.074249 ], [ 166.596680, -21.698265 ], [ 167.113037, -22.156883 ], [ 166.739502, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.465088, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.157715, -20.437308 ], [ 164.025879, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.640078 ], [ 171.749268, -41.640078 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.319824, -41.640078 ], [ 175.198975, -41.640078 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.640078 ], [ 171.749268, -41.640078 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.319824, -41.640078 ], [ 175.198975, -41.640078 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ] ] ], [ [ [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -162.306519, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ], [ [ [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ], [ [ [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ] ] ], [ [ [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ] ] ], [ [ [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.830811, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ] ] ], [ [ [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ] ] ], [ [ [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ] ] ], [ [ [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ] ] ], [ [ [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ] ] ], [ [ [ -112.500000, 78.559399 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ] ] ], [ [ [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -72.853361 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ] ] ], [ [ [ -89.560547, 14.376155 ], [ -89.560547, 14.301647 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.237762 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ], [ -89.560547, 14.301647 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ] ] ], [ [ [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ] ] ], [ [ [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.992089 ], [ -89.560547, 71.223149 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -89.560547, 72.993696 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.993696 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ] ] ], [ [ [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ] ] ], [ [ [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ] ] ], [ [ [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ] ] ], [ [ [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ] ] ], [ [ [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ] ] ], [ [ [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ] ] ], [ [ [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ] ] ], [ [ [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ] ] ], [ [ [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ] ] ], [ [ [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ] ] ], [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ] ] ], [ [ [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ] ] ], [ [ [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ] ] ], [ [ [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ] ] ], [ [ [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ] ] ], [ [ [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ] ] ], [ [ [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ] ] ], [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ] ] ], [ [ [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ] ] ], [ [ [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ] ] ], [ [ [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ] ] ], [ [ [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ] ] ], [ [ [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ] ] ], [ [ [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ] ] ], [ [ [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ] ] ], [ [ [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ] ] ], [ [ [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ] ] ], [ [ [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ], [ [ [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.068237, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ] ] ], [ [ [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ] ] ], [ [ [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ] ] ], [ [ [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ] ] ], [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ] ] ], [ [ [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ] ] ], [ [ [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ] ] ], [ [ [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ] ] ], [ [ [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ] ] ], [ [ [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ] ] ], [ [ [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ] ] ], [ [ [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ] ] ], [ [ [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ] ] ], [ [ [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ] ] ], [ [ [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ] ] ], [ [ [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 40.984497, -0.439449 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ] ] ], [ [ [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.061761 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.934245 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.061761 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.934245 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.012939, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ], [ [ [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ] ] ], [ [ [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ] ] ], [ [ [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ] ] ], [ [ [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ] ] ], [ [ [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ] ] ], [ [ [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ] ] ], [ [ [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ], [ [ [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ] ] ], [ [ [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ] ] ], [ [ [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ] ] ], [ [ [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ] ] ], [ [ [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ] ] ], [ [ [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ] ] ], [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ] ] ], [ [ [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ] ] ], [ [ [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ] ] ], [ [ [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ] ] ], [ [ [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ] ] ], [ [ [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ] ] ], [ [ [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ] ] ], [ [ [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ] ] ], [ [ [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ] ] ], [ [ [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ] ] ], [ [ [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ] ] ], [ [ [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.012085, 21.534847 ], [ 102.815552, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.012085, 21.534847 ], [ 102.815552, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ] ] ], [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ] ] ], [ [ [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ] ] ], [ [ [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ] ] ], [ [ [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ] ] ], [ [ [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ] ] ], [ [ [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ] ] ], [ [ [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ] ] ], [ [ [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ] ] ], [ [ [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ] ] ], [ [ [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ] ] ], [ [ [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ] ] ], [ [ [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ] ] ], [ [ [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ] ] ], [ [ [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ] ] ], [ [ [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ] ] ], [ [ [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ] ] ], [ [ [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ] ] ], [ [ [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ] ] ], [ [ [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ] ] ], [ [ [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ] ] ], [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ] ] ], [ [ [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } ] } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json index 765f03b..cae5a50 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json @@ -12,2575 +12,2575 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ] ] ], [ [ [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ] ] ], [ [ [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ] ] ], [ [ [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ] ] ], [ [ [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ] ] ], [ [ [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.554498 ], [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ] ] ], [ [ [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ] ] ], [ [ [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ] ] ], [ [ [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ] ] ], [ [ [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ] ] ], [ [ [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ] ] ], [ [ [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ] ] ], [ [ [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ] ] ], [ [ [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.730469, 63.743631 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ], [ [ [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ] ] ], [ [ [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.865234, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ] ] ], [ [ [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ] ] ], [ [ [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ] ] ], [ [ [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ] ] ], [ [ [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ] ] ], [ [ [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.818359, 63.782486 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ] ] ], [ [ [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.400391, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 70.488281, 39.639538 ], [ 71.718750, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.179688, 38.616870 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 72.597656, 37.090240 ], [ 71.806641, 36.738884 ], [ 71.367188, 37.090240 ], [ 71.455078, 37.926868 ], [ 71.191406, 37.996163 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 70.312500, 38.203655 ], [ 70.048828, 37.649034 ], [ 69.433594, 37.649034 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.090240 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 68.994141, 40.111689 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 70.488281, 39.639538 ], [ 71.718750, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.179688, 38.616870 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 72.597656, 37.090240 ], [ 71.806641, 36.738884 ], [ 71.367188, 37.090240 ], [ 71.455078, 37.926868 ], [ 71.191406, 37.996163 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 70.312500, 38.203655 ], [ 70.048828, 37.649034 ], [ 69.433594, 37.649034 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.090240 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 68.994141, 40.111689 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.528806 ], [ -173.144531, -84.115970 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.807617, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.631968 ], [ -59.589844, -80.035262 ] ] ], [ [ [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ] ] ], [ [ [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ] ] ], [ [ [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.807617, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ] ] ], [ [ [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ] ] ], [ [ [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ] ] ], [ [ [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ] ] ], [ [ [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ] ] ], [ [ [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ] ] ], [ [ [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ] ] ], [ [ [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ] ] ], [ [ [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ] ] ], [ [ [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ] ] ], [ [ [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ] ] ], [ [ [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.818359, 63.763065 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.222656, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.222656, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ] ] ], [ [ [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.202148, 8.450639 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ] ] ], [ [ [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ] ] ], [ [ [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ] ] ], [ [ [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ] ] ], [ [ [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ] ] ], [ [ [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ] ] ], [ [ [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.158203, 8.407168 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ] ] ], [ [ [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ] ] ], [ [ [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ] ] ], [ [ [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ] ] ], [ [ [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ] ] ], [ [ [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ], [ [ [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ] ] ], [ [ [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ] ] ], [ [ [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ], [ [ [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.695312, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.695312, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ], [ -62.600098, -65.856756 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.622070, -65.802776 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ] ] ], [ [ [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ] ] ], [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ] ] ], [ [ [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ] ] ], [ [ [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ] ] ], [ [ [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ] ] ], [ [ [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ] ] ], [ [ [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 1.757812, 12.726084 ], [ 1.757812, 11.609193 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 1.757812, 12.726084 ], [ 1.757812, 11.609193 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -75.761719, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -75.761719, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.764299 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ] ] ], [ [ [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.764299 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ] ] ], [ [ [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ], [ [ [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ] ] ], [ [ [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 34.936523, 1.757537 ], [ 40.979004, 1.757537 ], [ 40.979004, -0.856902 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 1.757537 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 34.936523, 1.757537 ], [ 40.979004, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ], [ -1.120605, 54.635697 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -1.757812, 11.005904 ], [ -1.757812, 14.689881 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -1.757812, 11.005904 ], [ -1.757812, 14.689881 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ] ] ], [ [ [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ] ] ], [ [ [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 41.440430, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 41.440430, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.110204 ] ] ], [ [ [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ] ] ], [ [ [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ] ] ], [ [ [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.651855, -67.204032 ], [ 120.849609, -67.187000 ] ] ], [ [ [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ] ] ], [ [ [ 92.592773, -67.187000 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ] ] ], [ [ [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ] ] ], [ [ [ 99.382324, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ] ] ], [ [ [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ] ] ], [ [ [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.651855, -67.204032 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ] ] ], [ [ [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ] ] ], [ [ [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ] ] ], [ [ [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ] ] ], [ [ [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.719238, 1.757537 ], [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ] ] ], [ [ [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ] ] ], [ [ [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.719238, 1.757537 ], [ 117.949219, 1.757537 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ] ] ], [ [ [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ] ] ], [ [ [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ] ] ], [ [ [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ] ] ], [ [ [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ] ] ], [ [ [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.816406, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.816406, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ] ] ], [ [ [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.916260, -79.004962 ], [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ] ] ], [ [ [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.916260, -79.004962 ], [ -159.576416, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.314941, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.314941, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -162.894287, 66.861082 ], [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -140.998535, 66.861082 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.607378 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.607378 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.685303, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ] ] ], [ [ [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.416926 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.416926 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.211426, 41.640078 ], [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.211426, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.978733 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.978733 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.370834 ], [ -89.121094, 13.400307 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.121094, 14.370834 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.121094, 14.370834 ], [ -89.121094, 13.400307 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.078079 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.078079 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.078079 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.078079 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.017224 ], [ -89.121094, 76.462920 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ], [ [ [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -89.121094, 77.017224 ], [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.017224 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ], [ [ [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.326660, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.326660, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ] ] ], [ [ [ -44.121094, -80.184334 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ], [ -44.121094, -80.184334 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.184334 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.365639 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.961914, -66.160511 ], [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.365639 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.961914, -66.160511 ], [ -62.171631, -66.160511 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.236328, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.236328, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ], [ -77.980957, 0.878872 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.980957, 0.878872 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ], [ -77.980957, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.817627, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.817627, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.211058 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.211058 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ] ] ], [ [ [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ] ] ], [ [ [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ] ] ], [ [ [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ] ] ], [ [ [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ] ] ], [ [ [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ] ] ], [ [ [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.245361, -0.878872 ], [ -80.584717, -0.878872 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.245361, -0.878872 ], [ -80.584717, -0.878872 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -47.834473, -0.571280 ], [ -46.790771, -0.878872 ], [ -48.186035, -0.878872 ], [ -47.834473, -0.571280 ] ] ], [ [ [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.499512, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.499512, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ], [ [ [ -46.790771, -0.878872 ], [ -48.186035, -0.878872 ], [ -47.834473, -0.571280 ], [ -46.790771, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -82.100830, 66.861082 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -61.864014, 66.861082 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.360596, 66.861082 ], [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.360596, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.357422, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.907249 ], [ -90.516357, 73.858452 ] ] ], [ [ [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ] ] ], [ [ [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.596680, 79.335219 ], [ -76.915283, 79.325049 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.878906, 76.232138 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.357422, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -90.878906, 73.907249 ], [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.907249 ] ] ], [ [ [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ] ] ], [ [ [ -76.596680, 79.335219 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.596680, 79.335219 ] ] ], [ [ [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ] ] ], [ [ [ -90.878906, 76.232138 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.232138 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.445068, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.445068, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.004962 ], [ -68.708496, 79.004962 ], [ -67.445068, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ], [ -68.708496, 79.004962 ], [ -67.445068, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ] ] ], [ [ [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ], [ -43.494873, -79.084302 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -42.791748, -82.063963 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -43.516846, -82.000000 ], [ -45.878906, -81.786210 ] ] ], [ [ [ -43.560791, -79.004962 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.113037, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ] ] ], [ [ [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.113037, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ], [ -45.000000, -1.504954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.878906, -1.186439 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.878906, 13.475106 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.878906, 13.475106 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.878906, 10.941192 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.878906, 10.941192 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.980713, 66.861082 ], [ -34.211426, 66.683436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.980713, 66.861082 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.980713, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.965346 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.965346 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.688955 ], [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.688955 ], [ 0.878906, 49.979488 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -6.899414, 40.313043 ], [ -8.931885, 40.313043 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -6.899414, 40.313043 ], [ -8.931885, 40.313043 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.815430, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.815430, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.555176, 66.160511 ], [ -23.763428, 66.160511 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -21.555176, 66.160511 ] ] ], [ [ [ -18.544922, 66.160511 ], [ -19.390869, 66.160511 ], [ -19.061279, 66.280118 ], [ -18.544922, 66.160511 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.622803, 66.160511 ], [ -17.303467, 66.160511 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.555176, 66.160511 ], [ -23.763428, 66.160511 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -18.544922, 66.160511 ], [ -19.390869, 66.160511 ], [ -19.061279, 66.280118 ], [ -18.544922, 66.160511 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.622803, 66.160511 ], [ -17.303467, 66.160511 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.767713 ], [ 45.878906, -79.335219 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.767713 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.767713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.442139, 0.878872 ], [ 40.979004, 0.878872 ], [ 40.979004, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.878872 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.442139, 0.878872 ], [ 40.979004, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.150391, 0.878872 ], [ 17.764893, 0.878872 ], [ 17.819824, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.764893, 0.878872 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.150391, 0.878872 ], [ 17.764893, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ] ] ], [ [ [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ] ], [ [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ] ], [ [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -25.363882 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.781682 ], [ 45.878906, -25.363882 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.781682 ], [ 45.878906, -25.363882 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.781682 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.745117, 41.640078 ], [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.745117, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -0.878906, 10.962764 ], [ -0.878906, 15.029686 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -0.878906, 10.962764 ], [ -0.878906, 15.029686 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.500488, 41.640078 ], [ 20.456543, 41.516804 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.500488, 41.640078 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.500488, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.103516, 41.640078 ], [ 26.103516, 41.335576 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 41.640078 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.103516, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.700105 ], [ 15.270996, 7.427837 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.700105 ], [ 15.270996, 7.427837 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.673096, 35.021000 ], [ 33.519287, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.673096, 35.021000 ], [ 33.519287, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 32.870360 ], [ 35.694580, 32.722599 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ], [ 35.694580, 32.722599 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.878872 ], [ 29.575195, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.878872 ], [ 29.575195, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.000977, -0.878872 ], [ 33.892822, -0.878872 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.000977, -0.878872 ], [ 33.892822, -0.878872 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.212441 ], [ 45.604248, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.121537 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.212441 ], [ 45.604248, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.121537 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ] ] ], [ [ [ 45.878906, 33.330528 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ], [ 45.878906, 33.330528 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ] ] ], [ [ [ 45.878906, 34.912962 ], [ 45.878906, 33.330528 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 17.325439, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 17.325439, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.688955 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.688955 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ], [ 15.380859, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.699463, 66.861082 ], [ 15.380859, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ] ] ], [ [ [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ] ] ], [ [ [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.643311, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.643311, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 43.659668, 40.313043 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 43.659668, 40.313043 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.885254, 79.335219 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 19.885254, 79.335219 ], [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.885254, 79.335219 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.473145, -66.861082 ], [ 87.747803, -66.513260 ] ] ], [ [ [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ] ] ], [ [ [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.473145, -66.861082 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.140790 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.140790 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ] ] ], [ [ [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.953369, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ] ] ], [ [ [ 55.953369, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.953369, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 70.565186, 41.640078 ], [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 70.565186, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 44.121094, 40.103286 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 44.121094, 40.103286 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.376772 ], [ 44.121094, 39.444678 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.376772 ], [ 44.121094, 39.444678 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.424029 ], [ 44.121094, 29.611670 ], [ 44.703369, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.611670 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.424029 ], [ 44.121094, 29.611670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.040283, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ] ] ], [ [ [ 52.558594, 41.640078 ], [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.558594, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.040283, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.040283, 41.640078 ] ] ], [ [ [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.558594, 41.640078 ], [ 52.877197, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.843677 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.843677 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 28.062286 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 74.652100, 40.313043 ], [ 72.059326, 40.313043 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 74.652100, 40.313043 ], [ 72.059326, 40.313043 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.543213, 40.313043 ], [ 69.114990, 40.313043 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.543213, 40.313043 ], [ 69.114990, 40.313043 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.000000, 47.776252 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 90.878906, 50.394512 ], [ 90.878906, 46.995241 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ] ] ], [ [ [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.626806 ], [ 90.878906, 45.367584 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.995241 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 90.878906, 50.394512 ], [ 90.878906, 46.995241 ] ] ], [ [ [ 90.878906, 46.626806 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.626806 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.626806 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.652100, 40.313043 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.626806 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.652100, 40.313043 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.918457, -66.861082 ], [ 110.225830, -66.696478 ] ] ], [ [ [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ] ] ], [ [ [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.918457, -66.861082 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ] ] ], [ [ [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.377197, 0.878872 ], [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.718262, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.377197, 0.878872 ], [ 124.793701, 0.878872 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 118.718262, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.718262, 0.878872 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 135.878906, -14.051331 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.822823 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 135.878906, -14.051331 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.822823 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.990619 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.990619 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.683350, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ] ] ], [ [ [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.144531, 41.640078 ], [ 128.199463, 41.467428 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 126.683350, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.683350, 41.640078 ] ] ], [ [ [ 128.144531, 41.640078 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.144531, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ] ] ], [ [ [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ] ] ], [ [ [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.814209, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.882324, -0.878872 ], [ 123.332520, -0.615223 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.122559, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.313965, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.814209, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.122559, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.313965, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 123.288574, -0.878872 ], [ 121.882324, -0.878872 ], [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.738770, 40.313043 ], [ 122.025146, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.738770, 40.313043 ], [ 122.025146, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.966797, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 144.722900, -66.861082 ], [ 140.097656, -66.861082 ], [ 140.800781, -66.813547 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ] ] ], [ [ [ 144.371338, -66.835165 ], [ 144.722900, -66.861082 ], [ 140.097656, -66.861082 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.087581 ], [ 134.143066, -1.142502 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.217012 ], [ 134.121094, -6.107784 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.087581 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.087581 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.217012 ], [ 134.121094, -6.107784 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ] ] ], [ [ [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ] ] ], [ [ [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.640078 ], [ 171.749268, -41.640078 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.319824, -41.640078 ], [ 175.198975, -41.640078 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.640078 ], [ 171.749268, -41.640078 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.319824, -41.640078 ], [ 175.198975, -41.640078 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ] ] ], [ [ [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -162.306519, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ], [ [ [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ], [ [ [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ] ] ], [ [ [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ] ] ], [ [ [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.830811, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ] ] ], [ [ [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ] ] ], [ [ [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ] ] ], [ [ [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ] ] ], [ [ [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ] ] ], [ [ [ -112.500000, 78.559399 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ] ] ], [ [ [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -72.853361 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ] ] ], [ [ [ -89.560547, 14.376155 ], [ -89.560547, 14.301647 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.237762 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ], [ -89.560547, 14.301647 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ] ] ], [ [ [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ] ] ], [ [ [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.992089 ], [ -89.560547, 71.223149 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -89.560547, 72.993696 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.993696 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ] ] ], [ [ [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ] ] ], [ [ [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ] ] ], [ [ [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ] ] ], [ [ [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ] ] ], [ [ [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ] ] ], [ [ [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ] ] ], [ [ [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ] ] ], [ [ [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ] ] ], [ [ [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ] ] ], [ [ [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ] ] ], [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ] ] ], [ [ [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ] ] ], [ [ [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ] ] ], [ [ [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ] ] ], [ [ [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ] ] ], [ [ [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ] ] ], [ [ [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ] ] ], [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ] ] ], [ [ [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ] ] ], [ [ [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ] ] ], [ [ [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ] ] ], [ [ [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ] ] ], [ [ [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ] ] ], [ [ [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ] ] ], [ [ [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ] ] ], [ [ [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ] ] ], [ [ [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ] ] ], [ [ [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ], [ [ [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.068237, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ] ] ], [ [ [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ] ] ], [ [ [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ] ] ], [ [ [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ] ] ], [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ] ] ], [ [ [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ] ] ], [ [ [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ] ] ], [ [ [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ] ] ], [ [ [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ] ] ], [ [ [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ] ] ], [ [ [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ] ] ], [ [ [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ] ] ], [ [ [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ] ] ], [ [ [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ] ] ], [ [ [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ] ] ], [ [ [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 40.984497, -0.439449 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ] ] ], [ [ [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.061761 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.934245 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.061761 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.934245 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.012939, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ], [ [ [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ] ] ], [ [ [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ] ] ], [ [ [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ] ] ], [ [ [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ] ] ], [ [ [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ] ] ], [ [ [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ] ] ], [ [ [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ], [ [ [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ] ] ], [ [ [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ] ] ], [ [ [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ] ] ], [ [ [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ] ] ], [ [ [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ] ] ], [ [ [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ] ] ], [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ] ] ], [ [ [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ] ] ], [ [ [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ] ] ], [ [ [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ] ] ], [ [ [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ] ] ], [ [ [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ] ] ], [ [ [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ] ] ], [ [ [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ] ] ], [ [ [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ] ] ], [ [ [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ] ] ], [ [ [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ] ] ], [ [ [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.012085, 21.534847 ], [ 102.815552, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.012085, 21.534847 ], [ 102.815552, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ] ] ], [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ] ] ], [ [ [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ] ] ], [ [ [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ] ] ], [ [ [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ] ] ], [ [ [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ] ] ], [ [ [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ] ] ], [ [ [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ] ] ], [ [ [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ] ] ], [ [ [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ] ] ], [ [ [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ] ] ], [ [ [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ] ] ], [ [ [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ] ] ], [ [ [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ] ] ], [ [ [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ] ] ], [ [ [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ] ] ], [ [ [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ] ] ], [ [ [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ] ] ], [ [ [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ] ] ], [ [ [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ] ] ], [ [ [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ] ] ], [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ] ] ], [ [ [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } ] } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json index 3191de9..c98f012 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json @@ -12,4081 +12,4081 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.937500, 69.162558 ], [ -135.000000, 69.162558 ], [ -135.000000, 69.657086 ], [ -130.781250, 69.657086 ], [ -130.781250, 70.140364 ], [ -129.375000, 70.140364 ], [ -129.375000, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.162558 ] ] ], [ [ [ -139.218750, 69.162558 ], [ -140.625000, 69.162558 ], [ -140.625000, 69.657086 ], [ -139.218750, 69.657086 ], [ -139.218750, 69.162558 ] ] ], [ [ [ -106.875000, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 71.074056 ], [ -104.062500, 71.074056 ], [ -104.062500, 70.612614 ], [ -102.656250, 70.612614 ], [ -102.656250, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -102.656250, 69.657086 ], [ -102.656250, 69.162558 ], [ -116.718750, 69.162558 ], [ -116.718750, 70.140364 ], [ -113.906250, 70.140364 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 71.074056 ], [ -119.531250, 71.074056 ], [ -119.531250, 71.965388 ], [ -120.937500, 71.965388 ], [ -120.937500, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.524909 ], [ -126.562500, 71.524909 ], [ -126.562500, 71.965388 ], [ -125.156250, 71.965388 ], [ -125.156250, 73.226700 ], [ -123.750000, 73.226700 ], [ -123.750000, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.402163 ], [ -119.531250, 74.402163 ], [ -119.531250, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.627789 ], [ -115.312500, 73.627789 ], [ -115.312500, 73.226700 ], [ -113.906250, 73.226700 ], [ -113.906250, 72.816074 ], [ -112.500000, 72.816074 ], [ -112.500000, 72.395706 ], [ -109.687500, 72.395706 ], [ -109.687500, 71.965388 ], [ -108.281250, 71.965388 ], [ -108.281250, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 72.816074 ] ], [ [ -118.125000, 71.965388 ], [ -118.125000, 72.395706 ], [ -119.531250, 72.395706 ], [ -119.531250, 71.965388 ], [ -118.125000, 71.965388 ] ], [ [ -116.718750, 73.226700 ], [ -116.718750, 72.816074 ], [ -115.312500, 72.816074 ], [ -115.312500, 73.226700 ], [ -116.718750, 73.226700 ] ] ], [ [ [ -98.437500, 71.074056 ], [ -99.843750, 71.074056 ], [ -99.843750, 71.524909 ], [ -101.250000, 71.524909 ], [ -101.250000, 71.965388 ], [ -102.656250, 71.965388 ], [ -102.656250, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 73.627789 ], [ -98.437500, 73.627789 ], [ -98.437500, 71.074056 ] ] ], [ [ [ -111.093750, 76.516819 ], [ -108.281250, 76.516819 ], [ -108.281250, 75.845169 ], [ -105.468750, 75.845169 ], [ -105.468750, 75.140778 ], [ -106.875000, 75.140778 ], [ -106.875000, 74.775843 ], [ -109.687500, 74.775843 ], [ -109.687500, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.093750, 74.775843 ], [ -111.093750, 75.140778 ], [ -118.125000, 75.140778 ], [ -118.125000, 75.497157 ], [ -116.718750, 75.497157 ], [ -116.718750, 76.184995 ], [ -112.500000, 76.184995 ], [ -112.500000, 75.845169 ], [ -111.093750, 75.845169 ], [ -111.093750, 76.516819 ] ], [ [ -111.093750, 75.497157 ], [ -109.687500, 75.497157 ], [ -109.687500, 75.845169 ], [ -111.093750, 75.845169 ], [ -111.093750, 75.497157 ] ] ], [ [ [ -98.437500, 74.775843 ], [ -101.250000, 74.775843 ], [ -101.250000, 75.497157 ], [ -102.656250, 75.497157 ], [ -102.656250, 76.184995 ], [ -99.843750, 76.184995 ], [ -99.843750, 76.516819 ], [ -98.437500, 76.516819 ], [ -98.437500, 74.775843 ] ] ], [ [ [ -116.718750, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 75.845169 ], [ -122.343750, 75.845169 ], [ -122.343750, 76.516819 ], [ -120.937500, 76.516819 ], [ -120.937500, 77.157163 ], [ -119.531250, 77.157163 ], [ -119.531250, 77.466028 ], [ -116.718750, 77.466028 ], [ -116.718750, 76.516819 ] ] ], [ [ [ -109.687500, 77.466028 ], [ -113.906250, 77.466028 ], [ -113.906250, 77.767582 ], [ -112.500000, 77.767582 ], [ -112.500000, 78.061989 ], [ -109.687500, 78.061989 ], [ -109.687500, 77.466028 ] ] ], [ [ [ -104.062500, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.630006 ], [ -99.843750, 78.630006 ], [ -99.843750, 77.767582 ], [ -101.250000, 77.767582 ], [ -101.250000, 78.061989 ], [ -102.656250, 78.061989 ], [ -102.656250, 78.349411 ], [ -104.062500, 78.349411 ], [ -104.062500, 78.630006 ], [ -105.468750, 78.630006 ], [ -105.468750, 79.171335 ], [ -104.062500, 79.171335 ], [ -104.062500, 78.903929 ] ] ], [ [ [ -109.687500, 78.349411 ], [ -112.500000, 78.349411 ], [ -112.500000, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.349411 ] ] ], [ [ [ -106.875000, 73.226700 ], [ -106.875000, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 73.226700 ], [ -106.875000, 73.226700 ] ] ], [ [ [ -104.062500, 73.226700 ], [ -104.062500, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 73.226700 ], [ -104.062500, 73.226700 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -139.218750, 69.657086 ], [ -139.218750, 69.162558 ], [ -140.625000, 69.162558 ], [ -140.625000, 69.657086 ], [ -139.218750, 69.657086 ] ] ], [ [ [ -119.531250, 74.402163 ], [ -119.531250, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.627789 ], [ -115.312500, 73.627789 ], [ -115.312500, 73.226700 ], [ -113.906250, 73.226700 ], [ -113.906250, 72.816074 ], [ -112.500000, 72.816074 ], [ -112.500000, 72.395706 ], [ -109.687500, 72.395706 ], [ -109.687500, 71.965388 ], [ -108.281250, 71.965388 ], [ -108.281250, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 71.074056 ], [ -104.062500, 71.074056 ], [ -104.062500, 70.612614 ], [ -102.656250, 70.612614 ], [ -102.656250, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -102.656250, 69.657086 ], [ -102.656250, 69.162558 ], [ -116.718750, 69.162558 ], [ -116.718750, 70.140364 ], [ -113.906250, 70.140364 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 71.074056 ], [ -119.531250, 71.074056 ], [ -119.531250, 71.965388 ], [ -120.937500, 71.965388 ], [ -120.937500, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.524909 ], [ -126.562500, 71.524909 ], [ -126.562500, 71.965388 ], [ -125.156250, 71.965388 ], [ -125.156250, 73.226700 ], [ -123.750000, 73.226700 ], [ -123.750000, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.402163 ], [ -119.531250, 74.402163 ] ], [ [ -118.125000, 71.965388 ], [ -118.125000, 72.395706 ], [ -119.531250, 72.395706 ], [ -119.531250, 71.965388 ], [ -118.125000, 71.965388 ] ], [ [ -115.312500, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 72.816074 ], [ -115.312500, 72.816074 ], [ -115.312500, 73.226700 ] ] ], [ [ [ -129.375000, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.162558 ], [ -135.000000, 69.162558 ], [ -135.000000, 69.657086 ], [ -130.781250, 69.657086 ], [ -130.781250, 70.140364 ], [ -129.375000, 70.140364 ], [ -129.375000, 69.657086 ] ] ], [ [ [ -98.437500, 73.627789 ], [ -98.437500, 71.074056 ], [ -99.843750, 71.074056 ], [ -99.843750, 71.524909 ], [ -101.250000, 71.524909 ], [ -101.250000, 71.965388 ], [ -102.656250, 71.965388 ], [ -102.656250, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 73.627789 ], [ -98.437500, 73.627789 ] ] ], [ [ [ -105.468750, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 73.226700 ] ] ], [ [ [ -111.093750, 75.845169 ], [ -111.093750, 76.516819 ], [ -108.281250, 76.516819 ], [ -108.281250, 75.845169 ], [ -105.468750, 75.845169 ], [ -105.468750, 75.140778 ], [ -106.875000, 75.140778 ], [ -106.875000, 74.775843 ], [ -109.687500, 74.775843 ], [ -109.687500, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.093750, 74.775843 ], [ -111.093750, 75.140778 ], [ -118.125000, 75.140778 ], [ -118.125000, 75.497157 ], [ -116.718750, 75.497157 ], [ -116.718750, 76.184995 ], [ -112.500000, 76.184995 ], [ -112.500000, 75.845169 ], [ -111.093750, 75.845169 ] ], [ [ -111.093750, 75.845169 ], [ -111.093750, 75.497157 ], [ -109.687500, 75.497157 ], [ -109.687500, 75.845169 ], [ -111.093750, 75.845169 ] ] ], [ [ [ -99.843750, 76.184995 ], [ -98.437500, 74.775843 ], [ -101.250000, 74.775843 ], [ -101.250000, 75.497157 ], [ -102.656250, 75.497157 ], [ -102.656250, 76.184995 ], [ -99.843750, 76.184995 ] ] ], [ [ [ -116.718750, 77.466028 ], [ -116.718750, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 75.845169 ], [ -122.343750, 75.845169 ], [ -122.343750, 76.516819 ], [ -120.937500, 76.516819 ], [ -120.937500, 77.157163 ], [ -119.531250, 77.157163 ], [ -119.531250, 77.466028 ], [ -116.718750, 77.466028 ] ] ], [ [ [ -109.687500, 78.061989 ], [ -109.687500, 77.466028 ], [ -113.906250, 77.466028 ], [ -113.906250, 77.767582 ], [ -112.500000, 77.767582 ], [ -112.500000, 78.061989 ], [ -109.687500, 78.061989 ] ] ], [ [ [ -104.062500, 79.171335 ], [ -104.062500, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.630006 ], [ -99.843750, 78.630006 ], [ -99.843750, 77.767582 ], [ -101.250000, 77.767582 ], [ -101.250000, 78.061989 ], [ -102.656250, 78.061989 ], [ -102.656250, 78.349411 ], [ -104.062500, 78.349411 ], [ -104.062500, 78.630006 ], [ -105.468750, 78.630006 ], [ -105.468750, 79.171335 ], [ -104.062500, 79.171335 ] ] ], [ [ [ -109.687500, 78.630006 ], [ -109.687500, 78.349411 ], [ -112.500000, 78.349411 ], [ -112.500000, 78.630006 ], [ -109.687500, 78.630006 ] ] ], [ [ [ -105.468750, 73.226700 ], [ -104.062500, 73.226700 ], [ -104.062500, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 73.226700 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 74.019543 ], [ -90.000000, 73.226700 ], [ -91.406250, 73.226700 ], [ -91.406250, 72.816074 ], [ -92.812500, 72.816074 ], [ -92.812500, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.524909 ], [ -92.812500, 71.524909 ], [ -92.812500, 70.612614 ], [ -91.406250, 70.612614 ], [ -91.406250, 69.657086 ], [ -90.000000, 69.657086 ], [ -90.000000, 69.162558 ], [ -98.437500, 69.162558 ], [ -98.437500, 69.657086 ], [ -97.031250, 69.657086 ], [ -97.031250, 71.074056 ], [ -98.437500, 71.074056 ], [ -98.437500, 72.395706 ], [ -97.031250, 72.395706 ], [ -97.031250, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 74.019543 ], [ -90.000000, 74.019543 ] ] ], [ [ [ -80.156250, 73.627789 ], [ -78.750000, 73.627789 ], [ -78.750000, 73.226700 ], [ -75.937500, 73.226700 ], [ -75.937500, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 71.965388 ], [ -78.750000, 71.965388 ], [ -78.750000, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 71.965388 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -71.718750, 71.524909 ], [ -71.718750, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.140364 ], [ -67.500000, 70.140364 ], [ -67.500000, 69.162558 ], [ -77.343750, 69.162558 ], [ -77.343750, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.162558 ], [ -85.781250, 69.162558 ], [ -85.781250, 69.657086 ], [ -84.375000, 69.657086 ], [ -84.375000, 70.140364 ], [ -88.593750, 70.140364 ], [ -88.593750, 71.074056 ], [ -90.000000, 71.074056 ], [ -90.000000, 73.226700 ], [ -88.593750, 73.226700 ], [ -88.593750, 73.627789 ], [ -85.781250, 73.627789 ], [ -85.781250, 73.226700 ], [ -87.187500, 73.226700 ], [ -87.187500, 72.816074 ], [ -84.375000, 72.816074 ], [ -84.375000, 73.226700 ], [ -80.156250, 73.226700 ], [ -80.156250, 73.627789 ] ] ], [ [ [ -80.156250, 74.402163 ], [ -92.812500, 74.402163 ], [ -92.812500, 75.845169 ], [ -94.218750, 75.845169 ], [ -94.218750, 76.184995 ], [ -95.625000, 76.184995 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.218750, 77.157163 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.497157 ], [ -84.375000, 75.497157 ], [ -84.375000, 75.845169 ], [ -81.562500, 75.845169 ], [ -81.562500, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.402163 ] ] ], [ [ [ -94.218750, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -95.625000, 75.140778 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ], [ -94.218750, 74.775843 ] ] ], [ [ [ -97.031250, 75.497157 ], [ -98.437500, 75.497157 ], [ -98.437500, 75.845169 ], [ -97.031250, 75.845169 ], [ -97.031250, 75.497157 ] ] ], [ [ [ -94.218750, 78.349411 ], [ -94.218750, 79.171335 ], [ -92.812500, 79.171335 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -95.625000, 80.415707 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.308321 ], [ -92.812500, 81.308321 ], [ -92.812500, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 81.308321 ], [ -91.406250, 81.308321 ], [ -91.406250, 81.923186 ], [ -90.000000, 81.923186 ], [ -90.000000, 82.118384 ], [ -87.187500, 82.118384 ], [ -87.187500, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.676285 ], [ -84.375000, 82.676285 ], [ -84.375000, 82.494824 ], [ -82.968750, 82.494824 ], [ -82.968750, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 83.026219 ], [ -78.750000, 83.026219 ], [ -78.750000, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -73.125000, 83.026219 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.026219 ], [ -66.093750, 83.026219 ], [ -66.093750, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.676285 ], [ -61.875000, 82.676285 ], [ -61.875000, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -64.687500, 81.923186 ], [ -64.687500, 81.723188 ], [ -66.093750, 81.723188 ], [ -66.093750, 81.093214 ], [ -67.500000, 81.093214 ], [ -67.500000, 80.647035 ], [ -68.906250, 80.647035 ], [ -68.906250, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.718750, 79.935918 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.432371 ], [ -77.343750, 79.432371 ], [ -77.343750, 79.171335 ], [ -75.937500, 79.171335 ], [ -75.937500, 77.767582 ], [ -77.343750, 77.767582 ], [ -77.343750, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.157163 ], [ -80.156250, 77.157163 ], [ -80.156250, 76.840816 ], [ -77.343750, 76.840816 ], [ -77.343750, 76.516819 ], [ -78.750000, 76.516819 ], [ -78.750000, 76.184995 ], [ -87.187500, 76.184995 ], [ -87.187500, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.840816 ], [ -87.187500, 76.840816 ], [ -87.187500, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 78.061989 ], [ -88.593750, 78.061989 ], [ -88.593750, 78.349411 ], [ -94.218750, 78.349411 ] ], [ [ -84.375000, 77.466028 ], [ -84.375000, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 77.466028 ], [ -84.375000, 77.466028 ] ], [ [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -87.187500, 78.349411 ], [ -87.187500, 78.630006 ], [ -88.593750, 78.630006 ] ], [ [ -85.781250, 78.630006 ], [ -85.781250, 79.171335 ], [ -87.187500, 79.171335 ], [ -87.187500, 78.630006 ], [ -85.781250, 78.630006 ] ], [ [ -81.562500, 80.178713 ], [ -81.562500, 80.415707 ], [ -87.187500, 80.415707 ], [ -87.187500, 80.178713 ], [ -81.562500, 80.178713 ] ] ], [ [ [ -98.437500, 78.903929 ], [ -97.031250, 78.903929 ], [ -97.031250, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.466028 ], [ -97.031250, 77.466028 ], [ -97.031250, 77.767582 ], [ -98.437500, 77.767582 ], [ -98.437500, 78.903929 ] ] ], [ [ [ -97.031250, 73.627789 ], [ -97.031250, 73.226700 ], [ -98.437500, 73.226700 ], [ -98.437500, 73.627789 ], [ -97.031250, 73.627789 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.156250, 73.226700 ], [ -80.156250, 73.627789 ], [ -78.750000, 73.627789 ], [ -78.750000, 73.226700 ], [ -75.937500, 73.226700 ], [ -75.937500, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 71.965388 ], [ -78.750000, 71.965388 ], [ -78.750000, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 71.965388 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -71.718750, 71.524909 ], [ -71.718750, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.140364 ], [ -67.500000, 70.140364 ], [ -67.500000, 69.162558 ], [ -77.343750, 69.162558 ], [ -77.343750, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.162558 ], [ -85.781250, 69.162558 ], [ -85.781250, 69.657086 ], [ -84.375000, 69.657086 ], [ -84.375000, 70.140364 ], [ -88.593750, 70.140364 ], [ -88.593750, 71.074056 ], [ -90.000000, 71.074056 ], [ -90.000000, 73.226700 ], [ -88.593750, 73.226700 ], [ -88.593750, 73.627789 ], [ -85.781250, 73.627789 ], [ -85.781250, 73.226700 ], [ -87.187500, 73.226700 ], [ -87.187500, 72.816074 ], [ -84.375000, 72.816074 ], [ -84.375000, 73.226700 ], [ -80.156250, 73.226700 ] ] ], [ [ [ -97.031250, 73.226700 ], [ -98.437500, 73.226700 ], [ -98.437500, 73.627789 ], [ -97.031250, 73.627789 ], [ -97.031250, 73.226700 ] ] ], [ [ [ -94.218750, 77.157163 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.497157 ], [ -84.375000, 75.497157 ], [ -84.375000, 75.845169 ], [ -81.562500, 75.845169 ], [ -81.562500, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.402163 ], [ -92.812500, 74.402163 ], [ -92.812500, 75.845169 ], [ -94.218750, 75.845169 ], [ -94.218750, 76.184995 ], [ -95.625000, 76.184995 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.218750, 77.157163 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -95.625000, 75.140778 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -97.031250, 75.845169 ], [ -97.031250, 75.497157 ], [ -98.437500, 75.497157 ], [ -98.437500, 75.845169 ], [ -97.031250, 75.845169 ] ] ], [ [ [ -88.593750, 80.415707 ], [ -88.593750, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 81.308321 ], [ -91.406250, 81.308321 ], [ -91.406250, 81.923186 ], [ -90.000000, 81.923186 ], [ -90.000000, 82.118384 ], [ -87.187500, 82.118384 ], [ -87.187500, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.676285 ], [ -84.375000, 82.676285 ], [ -84.375000, 82.494824 ], [ -82.968750, 82.494824 ], [ -82.968750, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 83.026219 ], [ -78.750000, 83.026219 ], [ -78.750000, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -73.125000, 83.026219 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.026219 ], [ -66.093750, 83.026219 ], [ -66.093750, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.676285 ], [ -61.875000, 82.676285 ], [ -61.875000, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -64.687500, 81.923186 ], [ -64.687500, 81.723188 ], [ -66.093750, 81.723188 ], [ -66.093750, 81.093214 ], [ -67.500000, 81.093214 ], [ -67.500000, 80.647035 ], [ -68.906250, 80.647035 ], [ -68.906250, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.718750, 79.935918 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.432371 ], [ -77.343750, 79.432371 ], [ -77.343750, 79.171335 ], [ -75.937500, 79.171335 ], [ -75.937500, 77.767582 ], [ -77.343750, 77.767582 ], [ -77.343750, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.157163 ], [ -80.156250, 77.157163 ], [ -80.156250, 76.840816 ], [ -77.343750, 76.840816 ], [ -77.343750, 76.516819 ], [ -78.750000, 76.516819 ], [ -78.750000, 76.184995 ], [ -87.187500, 76.184995 ], [ -87.187500, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.840816 ], [ -87.187500, 76.840816 ], [ -87.187500, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 78.061989 ], [ -88.593750, 78.061989 ], [ -88.593750, 78.349411 ], [ -94.218750, 78.349411 ], [ -94.218750, 79.171335 ], [ -92.812500, 79.171335 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -95.625000, 80.415707 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.308321 ], [ -92.812500, 81.308321 ], [ -92.812500, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.415707 ], [ -88.593750, 80.415707 ] ], [ [ -87.187500, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -87.187500, 78.349411 ], [ -87.187500, 78.630006 ] ], [ [ -85.781250, 78.630006 ], [ -85.781250, 79.171335 ], [ -87.187500, 79.171335 ], [ -87.187500, 78.630006 ], [ -85.781250, 78.630006 ] ], [ [ -85.781250, 77.767582 ], [ -85.781250, 77.466028 ], [ -84.375000, 77.466028 ], [ -84.375000, 77.767582 ], [ -85.781250, 77.767582 ] ], [ [ -87.187500, 80.415707 ], [ -87.187500, 80.178713 ], [ -81.562500, 80.178713 ], [ -81.562500, 80.415707 ], [ -87.187500, 80.415707 ] ] ], [ [ [ -97.031250, 78.903929 ], [ -97.031250, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.466028 ], [ -97.031250, 77.466028 ], [ -97.031250, 77.767582 ], [ -98.437500, 77.767582 ], [ -98.437500, 78.903929 ], [ -97.031250, 78.903929 ] ] ], [ [ [ -94.218750, 71.524909 ], [ -92.812500, 71.524909 ], [ -92.812500, 70.612614 ], [ -91.406250, 70.612614 ], [ -91.406250, 69.657086 ], [ -90.000000, 69.657086 ], [ -90.000000, 69.162558 ], [ -98.437500, 69.162558 ], [ -98.437500, 69.657086 ], [ -97.031250, 69.657086 ], [ -97.031250, 71.074056 ], [ -98.437500, 71.074056 ], [ -98.437500, 72.395706 ], [ -97.031250, 72.395706 ], [ -97.031250, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 74.019543 ], [ -90.000000, 74.019543 ], [ -90.000000, 73.226700 ], [ -91.406250, 73.226700 ], [ -91.406250, 72.816074 ], [ -92.812500, 72.816074 ], [ -92.812500, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.524909 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -129.375000, 52.482780 ], [ -129.375000, 53.330873 ], [ -130.781250, 53.330873 ], [ -130.781250, 54.977614 ], [ -129.375000, 54.977614 ], [ -129.375000, 55.776573 ], [ -132.187500, 55.776573 ], [ -132.187500, 57.326521 ], [ -133.593750, 57.326521 ], [ -133.593750, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 58.813742 ], [ -137.812500, 58.813742 ], [ -137.812500, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 68.656555 ], [ -135.000000, 68.656555 ], [ -135.000000, 69.162558 ], [ -118.125000, 69.162558 ], [ -118.125000, 68.656555 ], [ -115.312500, 68.656555 ], [ -115.312500, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -106.875000, 69.162558 ], [ -106.875000, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.138852 ], [ -102.656250, 68.138852 ], [ -102.656250, 67.609221 ], [ -98.437500, 67.609221 ], [ -98.437500, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 68.138852 ], [ -94.218750, 68.138852 ], [ -94.218750, 69.162558 ], [ -90.000000, 69.162558 ], [ -90.000000, 68.656555 ], [ -88.593750, 68.656555 ], [ -88.593750, 67.067433 ], [ -87.187500, 67.067433 ], [ -87.187500, 67.609221 ], [ -85.781250, 67.609221 ], [ -85.781250, 69.162558 ], [ -84.375000, 69.162558 ], [ -84.375000, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.548552 ], [ -91.406250, 63.548552 ], [ -91.406250, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 61.606396 ], [ -94.218750, 61.606396 ], [ -94.218750, 58.813742 ], [ -92.812500, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -91.406250, 56.559482 ], [ -88.593750, 56.559482 ], [ -88.593750, 55.776573 ], [ -85.781250, 55.776573 ], [ -85.781250, 54.977614 ], [ -84.375000, 54.977614 ], [ -84.375000, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.989922 ], [ -94.218750, 47.989922 ], [ -94.218750, 49.837982 ], [ -95.625000, 49.837982 ], [ -95.625000, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 47.989922 ], [ -125.156250, 47.989922 ], [ -125.156250, 48.922499 ], [ -126.562500, 48.922499 ], [ -126.562500, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ] ] ], [ [ [ -132.187500, 53.330873 ], [ -133.593750, 53.330873 ], [ -133.593750, 54.162434 ], [ -132.187500, 54.162434 ], [ -132.187500, 53.330873 ] ] ], [ [ [ -84.375000, 62.915233 ], [ -85.781250, 62.915233 ], [ -85.781250, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 62.915233 ] ] ], [ [ [ -95.625000, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 68.656555 ] ] ], [ [ [ -102.656250, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 69.162558 ], [ -102.656250, 69.162558 ], [ -102.656250, 68.656555 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ], [ -129.375000, 53.330873 ], [ -130.781250, 53.330873 ], [ -130.781250, 54.977614 ], [ -129.375000, 54.977614 ], [ -129.375000, 55.776573 ], [ -132.187500, 55.776573 ], [ -132.187500, 57.326521 ], [ -133.593750, 57.326521 ], [ -133.593750, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 58.813742 ], [ -137.812500, 58.813742 ], [ -137.812500, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 68.656555 ], [ -135.000000, 68.656555 ], [ -135.000000, 69.162558 ], [ -118.125000, 69.162558 ], [ -118.125000, 68.656555 ], [ -115.312500, 68.656555 ], [ -115.312500, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -106.875000, 69.162558 ], [ -106.875000, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.138852 ], [ -102.656250, 68.138852 ], [ -102.656250, 67.609221 ], [ -98.437500, 67.609221 ], [ -98.437500, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 68.138852 ], [ -94.218750, 68.138852 ], [ -94.218750, 69.162558 ], [ -90.000000, 69.162558 ], [ -90.000000, 68.656555 ], [ -88.593750, 68.656555 ], [ -88.593750, 67.067433 ], [ -87.187500, 67.067433 ], [ -87.187500, 67.609221 ], [ -85.781250, 67.609221 ], [ -85.781250, 69.162558 ], [ -84.375000, 69.162558 ], [ -84.375000, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.548552 ], [ -91.406250, 63.548552 ], [ -91.406250, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 61.606396 ], [ -94.218750, 61.606396 ], [ -94.218750, 58.813742 ], [ -92.812500, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -91.406250, 56.559482 ], [ -88.593750, 56.559482 ], [ -88.593750, 55.776573 ], [ -85.781250, 55.776573 ], [ -85.781250, 54.977614 ], [ -84.375000, 54.977614 ], [ -84.375000, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.989922 ], [ -94.218750, 47.989922 ], [ -94.218750, 49.837982 ], [ -95.625000, 49.837982 ], [ -95.625000, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 47.989922 ], [ -125.156250, 47.989922 ], [ -125.156250, 48.922499 ], [ -126.562500, 48.922499 ], [ -126.562500, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 52.482780 ] ] ], [ [ [ -132.187500, 54.162434 ], [ -132.187500, 53.330873 ], [ -133.593750, 53.330873 ], [ -133.593750, 54.162434 ], [ -132.187500, 54.162434 ] ] ], [ [ [ -102.656250, 69.162558 ], [ -102.656250, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 69.162558 ], [ -102.656250, 69.162558 ] ] ], [ [ [ -95.625000, 69.162558 ], [ -95.625000, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 69.162558 ], [ -95.625000, 69.162558 ] ] ], [ [ [ -85.781250, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 62.915233 ], [ -85.781250, 62.915233 ], [ -85.781250, 65.366837 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.937500, 45.089036 ], [ -75.937500, 44.087585 ], [ -78.750000, 44.087585 ], [ -78.750000, 42.032974 ], [ -82.968750, 42.032974 ], [ -82.968750, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 54.977614 ], [ -82.968750, 54.977614 ], [ -82.968750, 53.330873 ], [ -81.562500, 53.330873 ], [ -81.562500, 51.618017 ], [ -78.750000, 51.618017 ], [ -78.750000, 54.162434 ], [ -80.156250, 54.162434 ], [ -80.156250, 54.977614 ], [ -77.343750, 54.977614 ], [ -77.343750, 55.776573 ], [ -75.937500, 55.776573 ], [ -75.937500, 57.326521 ], [ -77.343750, 57.326521 ], [ -77.343750, 58.077876 ], [ -78.750000, 58.077876 ], [ -78.750000, 58.813742 ], [ -77.343750, 58.813742 ], [ -77.343750, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 60.930432 ], [ -68.906250, 60.930432 ], [ -68.906250, 60.239811 ], [ -70.312500, 60.239811 ], [ -70.312500, 59.534318 ], [ -68.906250, 59.534318 ], [ -68.906250, 58.077876 ], [ -66.093750, 58.077876 ], [ -66.093750, 58.813742 ], [ -64.687500, 58.813742 ], [ -64.687500, 59.534318 ], [ -63.281250, 59.534318 ], [ -63.281250, 58.813742 ], [ -61.875000, 58.813742 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.250000, 54.162434 ], [ -56.250000, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 50.736455 ], [ -59.062500, 50.736455 ], [ -59.062500, 49.837982 ], [ -63.281250, 49.837982 ], [ -63.281250, 50.736455 ], [ -64.687500, 50.736455 ], [ -64.687500, 49.837982 ], [ -67.500000, 49.837982 ], [ -67.500000, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 47.989922 ], [ -70.312500, 47.989922 ], [ -70.312500, 45.089036 ], [ -75.937500, 45.089036 ] ] ], [ [ [ -52.031250, 47.989922 ], [ -52.031250, 47.040182 ], [ -53.437500, 47.040182 ], [ -53.437500, 47.989922 ], [ -52.031250, 47.989922 ] ] ], [ [ [ -56.250000, 48.922499 ], [ -53.437500, 48.922499 ], [ -53.437500, 47.989922 ], [ -54.843750, 47.989922 ], [ -54.843750, 47.040182 ], [ -56.250000, 47.040182 ], [ -56.250000, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 48.922499 ] ] ], [ [ [ -74.531250, 68.656555 ], [ -75.937500, 68.656555 ], [ -75.937500, 69.162558 ], [ -67.500000, 69.162558 ], [ -67.500000, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.609221 ], [ -64.687500, 67.609221 ], [ -64.687500, 67.067433 ], [ -61.875000, 67.067433 ], [ -61.875000, 65.366837 ], [ -63.281250, 65.366837 ], [ -63.281250, 64.774125 ], [ -64.687500, 64.774125 ], [ -64.687500, 65.946472 ], [ -66.093750, 65.946472 ], [ -66.093750, 66.513260 ], [ -67.500000, 66.513260 ], [ -67.500000, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.168107 ], [ -64.687500, 64.168107 ], [ -64.687500, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.267923 ], [ -66.093750, 62.267923 ], [ -66.093750, 61.606396 ], [ -68.906250, 61.606396 ], [ -68.906250, 62.267923 ], [ -71.718750, 62.267923 ], [ -71.718750, 63.548552 ], [ -73.125000, 63.548552 ], [ -73.125000, 64.168107 ], [ -78.750000, 64.168107 ], [ -78.750000, 64.774125 ], [ -77.343750, 64.774125 ], [ -77.343750, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 66.513260 ], [ -73.125000, 66.513260 ], [ -73.125000, 68.138852 ], [ -74.531250, 68.138852 ], [ -74.531250, 68.656555 ] ] ], [ [ [ -81.562500, 62.267923 ], [ -82.968750, 62.267923 ], [ -82.968750, 62.915233 ], [ -81.562500, 62.915233 ], [ -81.562500, 62.267923 ] ] ], [ [ [ -64.687500, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 47.040182 ], [ -68.906250, 47.040182 ], [ -68.906250, 47.989922 ], [ -66.093750, 47.989922 ], [ -66.093750, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 46.073231 ], [ -60.468750, 46.073231 ], [ -60.468750, 45.089036 ], [ -63.281250, 45.089036 ], [ -63.281250, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 45.089036 ] ] ], [ [ [ -81.562500, 69.162558 ], [ -81.562500, 66.513260 ], [ -84.375000, 66.513260 ], [ -84.375000, 69.162558 ], [ -81.562500, 69.162558 ] ] ], [ [ [ -82.968750, 64.774125 ], [ -82.968750, 64.168107 ], [ -80.156250, 64.168107 ], [ -80.156250, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 64.774125 ], [ -82.968750, 64.774125 ] ] ], [ [ [ -64.687500, 43.068888 ], [ -66.093750, 43.068888 ], [ -66.093750, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.068888 ] ] ], [ [ [ -74.531250, 67.067433 ], [ -77.343750, 67.067433 ], [ -77.343750, 68.138852 ], [ -74.531250, 68.138852 ], [ -74.531250, 67.067433 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, 45.089036 ], [ -75.937500, 45.089036 ], [ -75.937500, 44.087585 ], [ -78.750000, 44.087585 ], [ -78.750000, 42.032974 ], [ -82.968750, 42.032974 ], [ -82.968750, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 54.977614 ], [ -82.968750, 54.977614 ], [ -82.968750, 53.330873 ], [ -81.562500, 53.330873 ], [ -81.562500, 51.618017 ], [ -78.750000, 51.618017 ], [ -78.750000, 54.162434 ], [ -80.156250, 54.162434 ], [ -80.156250, 54.977614 ], [ -77.343750, 54.977614 ], [ -77.343750, 55.776573 ], [ -75.937500, 55.776573 ], [ -75.937500, 57.326521 ], [ -77.343750, 57.326521 ], [ -77.343750, 58.077876 ], [ -78.750000, 58.077876 ], [ -78.750000, 58.813742 ], [ -77.343750, 58.813742 ], [ -77.343750, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 60.930432 ], [ -68.906250, 60.930432 ], [ -68.906250, 60.239811 ], [ -70.312500, 60.239811 ], [ -70.312500, 59.534318 ], [ -68.906250, 59.534318 ], [ -68.906250, 58.077876 ], [ -66.093750, 58.077876 ], [ -66.093750, 58.813742 ], [ -64.687500, 58.813742 ], [ -64.687500, 59.534318 ], [ -63.281250, 59.534318 ], [ -63.281250, 58.813742 ], [ -61.875000, 58.813742 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.250000, 54.162434 ], [ -56.250000, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 50.736455 ], [ -59.062500, 50.736455 ], [ -59.062500, 49.837982 ], [ -63.281250, 49.837982 ], [ -63.281250, 50.736455 ], [ -64.687500, 50.736455 ], [ -64.687500, 49.837982 ], [ -67.500000, 49.837982 ], [ -67.500000, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 47.989922 ], [ -70.312500, 47.989922 ], [ -70.312500, 45.089036 ] ] ], [ [ [ -64.687500, 44.087585 ], [ -64.687500, 43.068888 ], [ -66.093750, 43.068888 ], [ -66.093750, 44.087585 ], [ -64.687500, 44.087585 ] ] ], [ [ [ -67.500000, 69.162558 ], [ -67.500000, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.609221 ], [ -64.687500, 67.609221 ], [ -64.687500, 67.067433 ], [ -61.875000, 67.067433 ], [ -61.875000, 65.366837 ], [ -63.281250, 65.366837 ], [ -63.281250, 64.774125 ], [ -64.687500, 64.774125 ], [ -64.687500, 65.946472 ], [ -66.093750, 65.946472 ], [ -66.093750, 66.513260 ], [ -67.500000, 66.513260 ], [ -67.500000, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.168107 ], [ -64.687500, 64.168107 ], [ -64.687500, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.267923 ], [ -66.093750, 62.267923 ], [ -66.093750, 61.606396 ], [ -68.906250, 61.606396 ], [ -68.906250, 62.267923 ], [ -71.718750, 62.267923 ], [ -71.718750, 63.548552 ], [ -73.125000, 63.548552 ], [ -73.125000, 64.168107 ], [ -78.750000, 64.168107 ], [ -78.750000, 64.774125 ], [ -77.343750, 64.774125 ], [ -77.343750, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 66.513260 ], [ -73.125000, 66.513260 ], [ -73.125000, 68.138852 ], [ -74.531250, 68.138852 ], [ -74.531250, 68.656555 ], [ -75.937500, 68.656555 ], [ -75.937500, 69.162558 ], [ -67.500000, 69.162558 ] ] ], [ [ [ -81.562500, 62.915233 ], [ -81.562500, 62.267923 ], [ -82.968750, 62.267923 ], [ -82.968750, 62.915233 ], [ -81.562500, 62.915233 ] ] ], [ [ [ -82.968750, 64.774125 ], [ -82.968750, 64.168107 ], [ -80.156250, 64.168107 ], [ -80.156250, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 64.774125 ], [ -82.968750, 64.774125 ] ] ], [ [ [ -81.562500, 66.513260 ], [ -84.375000, 66.513260 ], [ -84.375000, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 66.513260 ] ] ], [ [ [ -74.531250, 68.138852 ], [ -74.531250, 67.067433 ], [ -77.343750, 67.067433 ], [ -77.343750, 68.138852 ], [ -74.531250, 68.138852 ] ] ], [ [ [ -68.906250, 47.989922 ], [ -66.093750, 47.989922 ], [ -66.093750, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 46.073231 ], [ -60.468750, 46.073231 ], [ -60.468750, 45.089036 ], [ -63.281250, 45.089036 ], [ -63.281250, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 47.040182 ], [ -68.906250, 47.040182 ], [ -68.906250, 47.989922 ] ] ], [ [ [ -53.437500, 47.989922 ], [ -52.031250, 47.989922 ], [ -52.031250, 47.040182 ], [ -53.437500, 47.040182 ], [ -53.437500, 47.989922 ] ] ], [ [ [ -57.656250, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 48.922499 ], [ -53.437500, 48.922499 ], [ -53.437500, 47.989922 ], [ -54.843750, 47.989922 ], [ -54.843750, 47.040182 ], [ -56.250000, 47.040182 ], [ -56.250000, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.736455 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -154.687500, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ], [ -154.687500, 20.632784 ], [ -154.687500, 19.311143 ] ] ], [ [ [ -165.937500, 62.267923 ], [ -164.531250, 62.267923 ], [ -164.531250, 62.915233 ], [ -161.718750, 62.915233 ], [ -161.718750, 63.548552 ], [ -160.312500, 63.548552 ], [ -160.312500, 64.774125 ], [ -163.125000, 64.774125 ], [ -163.125000, 64.168107 ], [ -165.937500, 64.168107 ], [ -165.937500, 64.774125 ], [ -167.343750, 64.774125 ], [ -167.343750, 65.366837 ], [ -168.750000, 65.366837 ], [ -168.750000, 65.946472 ], [ -164.531250, 65.946472 ], [ -164.531250, 66.513260 ], [ -163.125000, 66.513260 ], [ -163.125000, 67.067433 ], [ -164.531250, 67.067433 ], [ -164.531250, 67.609221 ], [ -165.937500, 67.609221 ], [ -165.937500, 68.656555 ], [ -164.531250, 68.656555 ], [ -164.531250, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.657086 ], [ -161.718750, 69.657086 ], [ -161.718750, 70.140364 ], [ -160.312500, 70.140364 ], [ -160.312500, 70.612614 ], [ -157.500000, 70.612614 ], [ -157.500000, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.612614 ], [ -149.062500, 70.612614 ], [ -149.062500, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 60.239811 ], [ -139.218750, 60.239811 ], [ -139.218750, 59.534318 ], [ -142.031250, 59.534318 ], [ -142.031250, 60.239811 ], [ -149.062500, 60.239811 ], [ -149.062500, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 58.813742 ], [ -151.875000, 58.813742 ], [ -151.875000, 60.239811 ], [ -153.281250, 60.239811 ], [ -153.281250, 59.534318 ], [ -154.687500, 59.534318 ], [ -154.687500, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.077876 ], [ -154.687500, 58.077876 ], [ -154.687500, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.559482 ], [ -157.500000, 56.559482 ], [ -157.500000, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.813742 ], [ -158.906250, 58.813742 ], [ -158.906250, 58.077876 ], [ -160.312500, 58.077876 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -164.531250, 59.534318 ], [ -164.531250, 60.239811 ], [ -165.937500, 60.239811 ], [ -165.937500, 62.267923 ] ] ], [ [ [ -153.281250, 58.077876 ], [ -151.875000, 58.077876 ], [ -151.875000, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 58.077876 ] ] ], [ [ [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.548552 ], [ -168.750000, 63.548552 ], [ -168.750000, 62.915233 ] ] ], [ [ [ -164.531250, 54.162434 ], [ -164.531250, 54.977614 ], [ -163.125000, 54.977614 ], [ -163.125000, 54.162434 ], [ -164.531250, 54.162434 ] ] ], [ [ [ -129.375000, 54.977614 ], [ -132.187500, 54.977614 ], [ -132.187500, 55.776573 ], [ -129.375000, 55.776573 ], [ -129.375000, 54.977614 ] ] ], [ [ [ -133.593750, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -133.593750, 56.559482 ], [ -133.593750, 57.326521 ] ] ], [ [ [ -160.312500, 54.977614 ], [ -161.718750, 54.977614 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 54.977614 ] ] ], [ [ [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 56.559482 ] ] ], [ [ [ -136.406250, 58.813742 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -133.593750, 58.813742 ], [ -133.593750, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.813742 ], [ -136.406250, 58.813742 ] ] ], [ [ [ -137.812500, 59.534318 ], [ -137.812500, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.534318 ], [ -137.812500, 59.534318 ] ] ], [ [ [ -165.937500, 59.534318 ], [ -167.343750, 59.534318 ], [ -167.343750, 60.239811 ], [ -165.937500, 60.239811 ], [ -165.937500, 59.534318 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -154.687500, 20.632784 ], [ -154.687500, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ], [ -154.687500, 20.632784 ] ] ], [ [ [ -163.125000, 54.977614 ], [ -163.125000, 54.162434 ], [ -164.531250, 54.162434 ], [ -164.531250, 54.977614 ], [ -163.125000, 54.977614 ] ] ], [ [ [ -132.187500, 55.776573 ], [ -129.375000, 55.776573 ], [ -129.375000, 54.977614 ], [ -132.187500, 54.977614 ], [ -132.187500, 55.776573 ] ] ], [ [ [ -160.312500, 55.776573 ], [ -160.312500, 54.977614 ], [ -161.718750, 54.977614 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ] ] ], [ [ [ -139.218750, 59.534318 ], [ -142.031250, 59.534318 ], [ -142.031250, 60.239811 ], [ -149.062500, 60.239811 ], [ -149.062500, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 58.813742 ], [ -151.875000, 58.813742 ], [ -151.875000, 60.239811 ], [ -153.281250, 60.239811 ], [ -153.281250, 59.534318 ], [ -154.687500, 59.534318 ], [ -154.687500, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.077876 ], [ -154.687500, 58.077876 ], [ -154.687500, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.559482 ], [ -157.500000, 56.559482 ], [ -157.500000, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.813742 ], [ -158.906250, 58.813742 ], [ -158.906250, 58.077876 ], [ -160.312500, 58.077876 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -164.531250, 59.534318 ], [ -164.531250, 60.239811 ], [ -165.937500, 60.239811 ], [ -165.937500, 62.267923 ], [ -164.531250, 62.267923 ], [ -164.531250, 62.915233 ], [ -161.718750, 62.915233 ], [ -161.718750, 63.548552 ], [ -160.312500, 63.548552 ], [ -160.312500, 64.774125 ], [ -163.125000, 64.774125 ], [ -163.125000, 64.168107 ], [ -165.937500, 64.168107 ], [ -165.937500, 64.774125 ], [ -167.343750, 64.774125 ], [ -167.343750, 65.366837 ], [ -168.750000, 65.366837 ], [ -168.750000, 65.946472 ], [ -164.531250, 65.946472 ], [ -164.531250, 66.513260 ], [ -163.125000, 66.513260 ], [ -163.125000, 67.067433 ], [ -164.531250, 67.067433 ], [ -164.531250, 67.609221 ], [ -165.937500, 67.609221 ], [ -165.937500, 68.656555 ], [ -164.531250, 68.656555 ], [ -164.531250, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.657086 ], [ -161.718750, 69.657086 ], [ -161.718750, 70.140364 ], [ -160.312500, 70.140364 ], [ -160.312500, 70.612614 ], [ -157.500000, 70.612614 ], [ -157.500000, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.612614 ], [ -149.062500, 70.612614 ], [ -149.062500, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 60.239811 ], [ -139.218750, 60.239811 ], [ -139.218750, 59.534318 ] ] ], [ [ [ -133.593750, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -133.593750, 56.559482 ], [ -133.593750, 57.326521 ] ] ], [ [ [ -165.937500, 60.239811 ], [ -165.937500, 59.534318 ], [ -167.343750, 59.534318 ], [ -167.343750, 60.239811 ], [ -165.937500, 60.239811 ] ] ], [ [ [ -168.750000, 63.548552 ], [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.548552 ], [ -168.750000, 63.548552 ] ] ], [ [ [ -154.687500, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ] ] ], [ [ [ -153.281250, 58.077876 ], [ -151.875000, 58.077876 ], [ -151.875000, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 58.077876 ] ] ], [ [ [ -137.812500, 58.813742 ], [ -136.406250, 58.813742 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -133.593750, 58.813742 ], [ -133.593750, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.813742 ] ] ], [ [ [ -139.218750, 59.534318 ], [ -137.812500, 59.534318 ], [ -137.812500, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.534318 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 46.073231 ], [ -82.968750, 46.073231 ], [ -82.968750, 42.032974 ], [ -78.750000, 42.032974 ], [ -78.750000, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 44.087585 ], [ -70.312500, 44.087585 ], [ -70.312500, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 34.307144 ], [ -78.750000, 34.307144 ], [ -78.750000, 31.952162 ], [ -81.562500, 31.952162 ], [ -81.562500, 28.304381 ], [ -80.156250, 28.304381 ], [ -80.156250, 24.527135 ], [ -81.562500, 24.527135 ], [ -81.562500, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.218750, 29.535230 ], [ -94.218750, 28.304381 ], [ -97.031250, 28.304381 ], [ -97.031250, 25.799891 ], [ -99.843750, 25.799891 ], [ -99.843750, 28.304381 ], [ -101.250000, 28.304381 ], [ -101.250000, 29.535230 ], [ -105.468750, 29.535230 ], [ -105.468750, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 30.751278 ], [ -113.906250, 30.751278 ], [ -113.906250, 31.952162 ], [ -116.718750, 31.952162 ], [ -116.718750, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -122.343750, 35.460670 ], [ -122.343750, 37.718590 ], [ -123.750000, 37.718590 ], [ -123.750000, 42.032974 ], [ -125.156250, 42.032974 ], [ -125.156250, 43.068888 ], [ -123.750000, 43.068888 ], [ -123.750000, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.922499 ], [ -95.625000, 48.922499 ], [ -95.625000, 49.837982 ], [ -94.218750, 49.837982 ], [ -94.218750, 47.989922 ], [ -85.781250, 47.989922 ], [ -85.781250, 47.040182 ], [ -84.375000, 47.040182 ], [ -84.375000, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.218750, 49.837982 ], [ -94.218750, 47.989922 ], [ -85.781250, 47.989922 ], [ -85.781250, 47.040182 ], [ -84.375000, 47.040182 ], [ -84.375000, 46.073231 ], [ -82.968750, 46.073231 ], [ -82.968750, 42.032974 ], [ -78.750000, 42.032974 ], [ -78.750000, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 44.087585 ], [ -70.312500, 44.087585 ], [ -70.312500, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 34.307144 ], [ -78.750000, 34.307144 ], [ -78.750000, 31.952162 ], [ -81.562500, 31.952162 ], [ -81.562500, 28.304381 ], [ -80.156250, 28.304381 ], [ -80.156250, 24.527135 ], [ -81.562500, 24.527135 ], [ -81.562500, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.218750, 29.535230 ], [ -94.218750, 28.304381 ], [ -97.031250, 28.304381 ], [ -97.031250, 25.799891 ], [ -99.843750, 25.799891 ], [ -99.843750, 28.304381 ], [ -101.250000, 28.304381 ], [ -101.250000, 29.535230 ], [ -105.468750, 29.535230 ], [ -105.468750, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 30.751278 ], [ -113.906250, 30.751278 ], [ -113.906250, 31.952162 ], [ -116.718750, 31.952162 ], [ -116.718750, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -122.343750, 35.460670 ], [ -122.343750, 37.718590 ], [ -123.750000, 37.718590 ], [ -123.750000, 42.032974 ], [ -125.156250, 42.032974 ], [ -125.156250, 43.068888 ], [ -123.750000, 43.068888 ], [ -123.750000, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.922499 ], [ -95.625000, 48.922499 ], [ -95.625000, 49.837982 ], [ -94.218750, 49.837982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.406250, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 16.636192 ], [ -95.625000, 16.636192 ], [ -95.625000, 15.284185 ], [ -98.437500, 15.284185 ], [ -98.437500, 16.636192 ], [ -101.250000, 16.636192 ], [ -101.250000, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 23.241346 ], [ -108.281250, 23.241346 ], [ -108.281250, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 30.751278 ], [ -108.281250, 30.751278 ], [ -108.281250, 31.952162 ], [ -105.468750, 31.952162 ], [ -105.468750, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 23.241346 ], [ -98.437500, 23.241346 ], [ -98.437500, 21.943046 ], [ -97.031250, 21.943046 ], [ -97.031250, 19.311143 ], [ -95.625000, 19.311143 ], [ -95.625000, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 15.284185 ] ] ], [ [ [ -112.500000, 24.527135 ], [ -112.500000, 25.799891 ], [ -113.906250, 25.799891 ], [ -113.906250, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 24.527135 ], [ -112.500000, 24.527135 ] ] ], [ [ [ -116.718750, 30.751278 ], [ -116.718750, 31.952162 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ], [ -116.718750, 30.751278 ] ] ], [ [ [ -91.406250, 19.311143 ], [ -90.000000, 19.311143 ], [ -90.000000, 20.632784 ], [ -88.593750, 20.632784 ], [ -88.593750, 21.943046 ], [ -87.187500, 21.943046 ], [ -87.187500, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 19.311143 ] ] ], [ [ [ -109.687500, 24.527135 ], [ -109.687500, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 24.527135 ], [ -109.687500, 24.527135 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.468750, 31.952162 ], [ -105.468750, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 23.241346 ], [ -98.437500, 23.241346 ], [ -98.437500, 21.943046 ], [ -97.031250, 21.943046 ], [ -97.031250, 19.311143 ], [ -95.625000, 19.311143 ], [ -95.625000, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 16.636192 ], [ -95.625000, 16.636192 ], [ -95.625000, 15.284185 ], [ -98.437500, 15.284185 ], [ -98.437500, 16.636192 ], [ -101.250000, 16.636192 ], [ -101.250000, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 23.241346 ], [ -108.281250, 23.241346 ], [ -108.281250, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 30.751278 ], [ -108.281250, 30.751278 ], [ -108.281250, 31.952162 ], [ -105.468750, 31.952162 ] ] ], [ [ [ -87.187500, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 19.311143 ], [ -90.000000, 19.311143 ], [ -90.000000, 20.632784 ], [ -88.593750, 20.632784 ], [ -88.593750, 21.943046 ], [ -87.187500, 21.943046 ], [ -87.187500, 17.978733 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 25.799891 ], [ -113.906250, 25.799891 ], [ -113.906250, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 24.527135 ] ] ], [ [ [ -115.312500, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.952162 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -109.687500, 24.527135 ], [ -109.687500, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 24.527135 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 13.923404 ], [ -92.812500, 13.923404 ], [ -92.812500, 15.284185 ], [ -91.406250, 15.284185 ], [ -91.406250, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 17.978733 ], [ -88.593750, 13.923404 ], [ -92.812500, 13.923404 ], [ -92.812500, 15.284185 ], [ -91.406250, 15.284185 ], [ -91.406250, 17.978733 ], [ -88.593750, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.406250, 82.676285 ], [ -45.000000, 82.676285 ], [ -45.000000, 83.026219 ], [ -43.593750, 83.026219 ], [ -43.593750, 83.194896 ], [ -39.375000, 83.194896 ], [ -39.375000, 83.359511 ], [ -37.968750, 83.359511 ], [ -37.968750, 83.520162 ], [ -35.156250, 83.520162 ], [ -35.156250, 83.676943 ], [ -32.343750, 83.676943 ], [ -32.343750, 83.520162 ], [ -26.718750, 83.520162 ], [ -26.718750, 83.359511 ], [ -25.312500, 83.359511 ], [ -25.312500, 83.194896 ], [ -23.906250, 83.194896 ], [ -23.906250, 82.853382 ], [ -22.500000, 82.853382 ], [ -22.500000, 82.676285 ], [ -21.093750, 82.676285 ], [ -21.093750, 82.494824 ], [ -22.500000, 82.494824 ], [ -22.500000, 82.308893 ], [ -28.125000, 82.308893 ], [ -28.125000, 81.923186 ], [ -26.718750, 81.923186 ], [ -26.718750, 81.723188 ], [ -23.906250, 81.723188 ], [ -23.906250, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.308321 ], [ -21.093750, 81.308321 ], [ -21.093750, 81.518272 ], [ -18.281250, 81.518272 ], [ -18.281250, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.093214 ], [ -14.062500, 81.093214 ], [ -14.062500, 80.872827 ], [ -15.468750, 80.872827 ], [ -15.468750, 80.647035 ], [ -16.875000, 80.647035 ], [ -16.875000, 80.178713 ], [ -18.281250, 80.178713 ], [ -18.281250, 78.903929 ], [ -19.687500, 78.903929 ], [ -19.687500, 77.157163 ], [ -18.281250, 77.157163 ], [ -18.281250, 76.840816 ], [ -19.687500, 76.840816 ], [ -19.687500, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.184995 ], [ -19.687500, 76.184995 ], [ -19.687500, 75.140778 ], [ -21.093750, 75.140778 ], [ -21.093750, 74.775843 ], [ -19.687500, 74.775843 ], [ -19.687500, 74.402163 ], [ -21.093750, 74.402163 ], [ -21.093750, 73.226700 ], [ -23.906250, 73.226700 ], [ -23.906250, 72.816074 ], [ -22.500000, 72.816074 ], [ -22.500000, 72.395706 ], [ -25.312500, 72.395706 ], [ -25.312500, 71.965388 ], [ -23.906250, 71.965388 ], [ -23.906250, 71.524909 ], [ -22.500000, 71.524909 ], [ -22.500000, 71.074056 ], [ -21.093750, 71.074056 ], [ -21.093750, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 68.656555 ], [ -28.125000, 68.656555 ], [ -28.125000, 68.138852 ], [ -32.343750, 68.138852 ], [ -32.343750, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 65.946472 ], [ -37.968750, 65.946472 ], [ -37.968750, 65.366837 ], [ -39.375000, 65.366837 ], [ -39.375000, 64.774125 ], [ -40.781250, 64.774125 ], [ -40.781250, 62.915233 ], [ -42.187500, 62.915233 ], [ -42.187500, 60.239811 ], [ -46.406250, 60.239811 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 62.267923 ], [ -50.625000, 62.267923 ], [ -50.625000, 62.915233 ], [ -52.031250, 62.915233 ], [ -52.031250, 65.366837 ], [ -53.437500, 65.366837 ], [ -53.437500, 68.138852 ], [ -52.031250, 68.138852 ], [ -52.031250, 68.656555 ], [ -50.625000, 68.656555 ], [ -50.625000, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.162558 ], [ -54.843750, 69.162558 ], [ -54.843750, 70.612614 ], [ -53.437500, 70.612614 ], [ -53.437500, 71.524909 ], [ -56.250000, 71.524909 ], [ -56.250000, 71.965388 ], [ -54.843750, 71.965388 ], [ -54.843750, 73.226700 ], [ -56.250000, 73.226700 ], [ -56.250000, 74.019543 ], [ -57.656250, 74.019543 ], [ -57.656250, 74.775843 ], [ -59.062500, 74.775843 ], [ -59.062500, 75.497157 ], [ -60.468750, 75.497157 ], [ -60.468750, 75.845169 ], [ -61.875000, 75.845169 ], [ -61.875000, 76.184995 ], [ -70.312500, 76.184995 ], [ -70.312500, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.767582 ], [ -73.125000, 77.767582 ], [ -73.125000, 78.349411 ], [ -71.718750, 78.349411 ], [ -71.718750, 78.630006 ], [ -68.906250, 78.630006 ], [ -68.906250, 78.903929 ], [ -67.500000, 78.903929 ], [ -67.500000, 79.171335 ], [ -66.093750, 79.171335 ], [ -66.093750, 79.432371 ], [ -64.687500, 79.432371 ], [ -64.687500, 79.687184 ], [ -66.093750, 79.687184 ], [ -66.093750, 79.935918 ], [ -67.500000, 79.935918 ], [ -67.500000, 80.415707 ], [ -66.093750, 80.415707 ], [ -66.093750, 80.872827 ], [ -64.687500, 80.872827 ], [ -64.687500, 81.093214 ], [ -63.281250, 81.093214 ], [ -63.281250, 81.308321 ], [ -61.875000, 81.308321 ], [ -61.875000, 81.518272 ], [ -63.281250, 81.518272 ], [ -63.281250, 81.723188 ], [ -61.875000, 81.723188 ], [ -61.875000, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.308893 ], [ -49.218750, 82.308893 ], [ -49.218750, 82.118384 ], [ -47.812500, 82.118384 ], [ -47.812500, 81.923186 ], [ -46.406250, 81.923186 ], [ -46.406250, 82.676285 ] ], [ [ -46.406250, 81.723188 ], [ -45.000000, 81.723188 ], [ -45.000000, 81.923186 ], [ -46.406250, 81.923186 ], [ -46.406250, 81.723188 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.406250, 81.923186 ], [ -46.406250, 82.676285 ], [ -45.000000, 82.676285 ], [ -45.000000, 83.026219 ], [ -43.593750, 83.026219 ], [ -43.593750, 83.194896 ], [ -39.375000, 83.194896 ], [ -39.375000, 83.359511 ], [ -37.968750, 83.359511 ], [ -37.968750, 83.520162 ], [ -35.156250, 83.520162 ], [ -35.156250, 83.676943 ], [ -32.343750, 83.676943 ], [ -32.343750, 83.520162 ], [ -26.718750, 83.520162 ], [ -26.718750, 83.359511 ], [ -25.312500, 83.359511 ], [ -25.312500, 83.194896 ], [ -23.906250, 83.194896 ], [ -23.906250, 82.853382 ], [ -22.500000, 82.853382 ], [ -22.500000, 82.676285 ], [ -21.093750, 82.676285 ], [ -21.093750, 82.494824 ], [ -22.500000, 82.494824 ], [ -22.500000, 82.308893 ], [ -28.125000, 82.308893 ], [ -28.125000, 81.923186 ], [ -26.718750, 81.923186 ], [ -26.718750, 81.723188 ], [ -23.906250, 81.723188 ], [ -23.906250, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.308321 ], [ -21.093750, 81.308321 ], [ -21.093750, 81.518272 ], [ -18.281250, 81.518272 ], [ -18.281250, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.093214 ], [ -14.062500, 81.093214 ], [ -14.062500, 80.872827 ], [ -15.468750, 80.872827 ], [ -15.468750, 80.647035 ], [ -16.875000, 80.647035 ], [ -16.875000, 80.178713 ], [ -18.281250, 80.178713 ], [ -18.281250, 78.903929 ], [ -19.687500, 78.903929 ], [ -19.687500, 77.157163 ], [ -18.281250, 77.157163 ], [ -18.281250, 76.840816 ], [ -19.687500, 76.840816 ], [ -19.687500, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.184995 ], [ -19.687500, 76.184995 ], [ -19.687500, 75.140778 ], [ -21.093750, 75.140778 ], [ -21.093750, 74.775843 ], [ -19.687500, 74.775843 ], [ -19.687500, 74.402163 ], [ -21.093750, 74.402163 ], [ -21.093750, 73.226700 ], [ -23.906250, 73.226700 ], [ -23.906250, 72.816074 ], [ -22.500000, 72.816074 ], [ -22.500000, 72.395706 ], [ -25.312500, 72.395706 ], [ -25.312500, 71.965388 ], [ -23.906250, 71.965388 ], [ -23.906250, 71.524909 ], [ -22.500000, 71.524909 ], [ -22.500000, 71.074056 ], [ -21.093750, 71.074056 ], [ -21.093750, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 68.656555 ], [ -28.125000, 68.656555 ], [ -28.125000, 68.138852 ], [ -32.343750, 68.138852 ], [ -32.343750, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 65.946472 ], [ -37.968750, 65.946472 ], [ -37.968750, 65.366837 ], [ -39.375000, 65.366837 ], [ -39.375000, 64.774125 ], [ -40.781250, 64.774125 ], [ -40.781250, 62.915233 ], [ -42.187500, 62.915233 ], [ -42.187500, 60.239811 ], [ -46.406250, 60.239811 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 62.267923 ], [ -50.625000, 62.267923 ], [ -50.625000, 62.915233 ], [ -52.031250, 62.915233 ], [ -52.031250, 65.366837 ], [ -53.437500, 65.366837 ], [ -53.437500, 68.138852 ], [ -52.031250, 68.138852 ], [ -52.031250, 68.656555 ], [ -50.625000, 68.656555 ], [ -50.625000, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.162558 ], [ -54.843750, 69.162558 ], [ -54.843750, 70.612614 ], [ -53.437500, 70.612614 ], [ -53.437500, 71.524909 ], [ -56.250000, 71.524909 ], [ -56.250000, 71.965388 ], [ -54.843750, 71.965388 ], [ -54.843750, 73.226700 ], [ -56.250000, 73.226700 ], [ -56.250000, 74.019543 ], [ -57.656250, 74.019543 ], [ -57.656250, 74.775843 ], [ -59.062500, 74.775843 ], [ -59.062500, 75.497157 ], [ -60.468750, 75.497157 ], [ -60.468750, 75.845169 ], [ -61.875000, 75.845169 ], [ -61.875000, 76.184995 ], [ -70.312500, 76.184995 ], [ -70.312500, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.767582 ], [ -73.125000, 77.767582 ], [ -73.125000, 78.349411 ], [ -71.718750, 78.349411 ], [ -71.718750, 78.630006 ], [ -68.906250, 78.630006 ], [ -68.906250, 78.903929 ], [ -67.500000, 78.903929 ], [ -67.500000, 79.171335 ], [ -66.093750, 79.171335 ], [ -66.093750, 79.432371 ], [ -64.687500, 79.432371 ], [ -64.687500, 79.687184 ], [ -66.093750, 79.687184 ], [ -66.093750, 79.935918 ], [ -67.500000, 79.935918 ], [ -67.500000, 80.415707 ], [ -66.093750, 80.415707 ], [ -66.093750, 80.872827 ], [ -64.687500, 80.872827 ], [ -64.687500, 81.093214 ], [ -63.281250, 81.093214 ], [ -63.281250, 81.308321 ], [ -61.875000, 81.308321 ], [ -61.875000, 81.518272 ], [ -63.281250, 81.518272 ], [ -63.281250, 81.723188 ], [ -61.875000, 81.723188 ], [ -61.875000, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.308893 ], [ -49.218750, 82.308893 ], [ -49.218750, 82.118384 ], [ -47.812500, 82.118384 ], [ -47.812500, 81.923186 ], [ -46.406250, 81.923186 ] ], [ [ -46.406250, 81.923186 ], [ -46.406250, 81.723188 ], [ -45.000000, 81.723188 ], [ -45.000000, 81.923186 ], [ -46.406250, 81.923186 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.750000, 24.527135 ], [ -78.750000, 27.059126 ], [ -77.343750, 27.059126 ], [ -77.343750, 24.527135 ], [ -78.750000, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 24.527135 ], [ -78.750000, 24.527135 ], [ -78.750000, 27.059126 ], [ -77.343750, 27.059126 ], [ -77.343750, 24.527135 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.187500, 12.554564 ], [ -88.593750, 12.554564 ], [ -88.593750, 13.923404 ], [ -87.187500, 13.923404 ], [ -87.187500, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.187500, 13.923404 ], [ -87.187500, 12.554564 ], [ -88.593750, 12.554564 ], [ -88.593750, 13.923404 ], [ -87.187500, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 15.284185 ], [ -84.375000, 15.284185 ], [ -84.375000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.284185 ], [ -84.375000, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 15.284185 ], [ -84.375000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 12.554564 ], [ -84.375000, 12.554564 ], [ -84.375000, 11.178402 ], [ -87.187500, 11.178402 ], [ -87.187500, 13.923404 ], [ -84.375000, 13.923404 ], [ -84.375000, 15.284185 ], [ -82.968750, 15.284185 ], [ -82.968750, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 15.284185 ], [ -82.968750, 12.554564 ], [ -84.375000, 12.554564 ], [ -84.375000, 11.178402 ], [ -87.187500, 11.178402 ], [ -87.187500, 13.923404 ], [ -84.375000, 13.923404 ], [ -84.375000, 15.284185 ], [ -82.968750, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.562500, 23.241346 ], [ -80.156250, 23.241346 ], [ -80.156250, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 23.241346 ] ] ], [ [ [ -78.750000, 20.632784 ], [ -78.750000, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 20.632784 ], [ -78.750000, 20.632784 ] ] ], [ [ [ -84.375000, 21.943046 ], [ -84.375000, 23.241346 ], [ -82.968750, 23.241346 ], [ -82.968750, 21.943046 ], [ -84.375000, 21.943046 ] ] ], [ [ [ -74.531250, 20.632784 ], [ -74.531250, 19.311143 ], [ -77.343750, 19.311143 ], [ -77.343750, 20.632784 ], [ -74.531250, 20.632784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.156250, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 23.241346 ], [ -80.156250, 23.241346 ], [ -80.156250, 21.943046 ] ] ], [ [ [ -82.968750, 23.241346 ], [ -82.968750, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 23.241346 ], [ -82.968750, 23.241346 ] ] ], [ [ [ -77.343750, 20.632784 ], [ -74.531250, 20.632784 ], [ -74.531250, 19.311143 ], [ -77.343750, 19.311143 ], [ -77.343750, 20.632784 ] ] ], [ [ [ -78.750000, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.943046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 8.407168 ], [ -84.375000, 8.407168 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -82.968750, 11.178402 ], [ -82.968750, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 11.178402 ], [ -82.968750, 8.407168 ], [ -84.375000, 8.407168 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -82.968750, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.343750, 8.407168 ], [ -77.343750, 7.013668 ], [ -78.750000, 7.013668 ], [ -78.750000, 8.407168 ], [ -77.343750, 8.407168 ] ] ], [ [ [ -80.156250, 7.013668 ], [ -81.562500, 7.013668 ], [ -81.562500, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ] ] ], [ [ [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -81.562500, 9.795678 ], [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ] ] ], [ [ [ -80.156250, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 9.795678 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -81.562500, 9.795678 ], [ -81.562500, 8.407168 ] ] ], [ [ [ -78.750000, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 8.407168 ] ] ], [ [ [ -81.562500, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ], [ -81.562500, 7.013668 ], [ -81.562500, 8.407168 ] ] ], [ [ [ -78.750000, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.013668 ], [ -78.750000, 7.013668 ], [ -78.750000, 8.407168 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 17.978733 ], [ -71.718750, 17.978733 ], [ -71.718750, 19.311143 ], [ -68.906250, 19.311143 ], [ -68.906250, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 19.311143 ], [ -68.906250, 17.978733 ], [ -71.718750, 17.978733 ], [ -71.718750, 19.311143 ], [ -68.906250, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 5.615986 ], [ -67.500000, 5.615986 ], [ -67.500000, 1.406109 ], [ -68.906250, 1.406109 ], [ -68.906250, -2.811371 ], [ -73.125000, -2.811371 ], [ -73.125000, -1.406109 ], [ -74.531250, -1.406109 ], [ -74.531250, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 1.406109 ], [ -78.750000, 1.406109 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 11.178402 ], [ -73.125000, 11.178402 ], [ -73.125000, 8.407168 ], [ -71.718750, 8.407168 ], [ -71.718750, 7.013668 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125000, 11.178402 ], [ -73.125000, 8.407168 ], [ -71.718750, 8.407168 ], [ -71.718750, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 5.615986 ], [ -67.500000, 5.615986 ], [ -67.500000, 1.406109 ], [ -68.906250, 1.406109 ], [ -68.906250, -2.811371 ], [ -73.125000, -2.811371 ], [ -73.125000, -1.406109 ], [ -74.531250, -1.406109 ], [ -74.531250, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 1.406109 ], [ -78.750000, 1.406109 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 11.178402 ], [ -73.125000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.281250, 2.811371 ], [ -63.281250, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 5.615986 ], [ -70.312500, 5.615986 ], [ -70.312500, 7.013668 ], [ -71.718750, 7.013668 ], [ -71.718750, 8.407168 ], [ -73.125000, 8.407168 ], [ -73.125000, 11.178402 ], [ -66.093750, 11.178402 ], [ -66.093750, 9.795678 ], [ -64.687500, 9.795678 ], [ -64.687500, 11.178402 ], [ -61.875000, 11.178402 ], [ -61.875000, 9.795678 ], [ -60.468750, 9.795678 ], [ -60.468750, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875000, 11.178402 ], [ -61.875000, 9.795678 ], [ -60.468750, 9.795678 ], [ -60.468750, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.281250, 2.811371 ], [ -63.281250, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 5.615986 ], [ -70.312500, 5.615986 ], [ -70.312500, 7.013668 ], [ -71.718750, 7.013668 ], [ -71.718750, 8.407168 ], [ -73.125000, 8.407168 ], [ -71.718750, 11.178402 ], [ -66.093750, 11.178402 ], [ -66.093750, 9.795678 ], [ -64.687500, 9.795678 ], [ -64.687500, 11.178402 ], [ -61.875000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 11.178402 ], [ -60.468750, 11.178402 ], [ -60.468750, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 11.178402 ], [ -60.468750, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 11.178402 ], [ -60.468750, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 7.013668 ], [ -57.656250, 7.013668 ], [ -57.656250, 1.406109 ], [ -59.062500, 1.406109 ], [ -59.062500, 2.811371 ], [ -60.468750, 2.811371 ], [ -60.468750, 8.407168 ], [ -59.062500, 8.407168 ], [ -59.062500, 7.013668 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 8.407168 ], [ -59.062500, 7.013668 ], [ -57.656250, 7.013668 ], [ -57.656250, 1.406109 ], [ -59.062500, 1.406109 ], [ -59.062500, 2.811371 ], [ -60.468750, 2.811371 ], [ -60.468750, 8.407168 ], [ -59.062500, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.437500, 2.811371 ], [ -56.250000, 2.811371 ], [ -56.250000, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 5.615986 ], [ -53.437500, 5.615986 ], [ -53.437500, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.437500, 5.615986 ], [ -53.437500, 2.811371 ], [ -56.250000, 2.811371 ], [ -56.250000, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 5.615986 ], [ -53.437500, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 65.946472 ], [ -15.468750, 65.946472 ], [ -15.468750, 66.513260 ], [ -14.062500, 66.513260 ], [ -14.062500, 64.774125 ], [ -15.468750, 64.774125 ], [ -15.468750, 63.548552 ], [ -22.500000, 63.548552 ], [ -22.500000, 64.168107 ], [ -23.906250, 64.168107 ], [ -23.906250, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -22.500000, 65.946472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 66.513260 ], [ -22.500000, 65.946472 ], [ -15.468750, 65.946472 ], [ -14.062500, 66.513260 ], [ -14.062500, 64.774125 ], [ -15.468750, 64.774125 ], [ -15.468750, 63.548552 ], [ -22.500000, 63.548552 ], [ -22.500000, 64.168107 ], [ -23.906250, 64.168107 ], [ -23.906250, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625000, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.977614 ], [ -7.031250, 54.977614 ], [ -7.031250, 54.162434 ], [ -5.625000, 54.162434 ], [ -5.625000, 52.482780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.977614 ], [ -7.031250, 54.162434 ], [ -5.625000, 54.162434 ], [ -5.625000, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.977614 ], [ -7.031250, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 58.077876 ], [ -4.218750, 58.077876 ], [ -4.218750, 57.326521 ], [ -1.406250, 57.326521 ], [ -1.406250, 56.559482 ], [ -2.812500, 56.559482 ], [ -2.812500, 55.776573 ], [ -1.406250, 55.776573 ], [ -1.406250, 54.162434 ], [ 0.000000, 54.162434 ], [ 0.000000, 52.482780 ], [ 1.406250, 52.482780 ], [ 1.406250, 50.736455 ], [ -2.812500, 50.736455 ], [ -2.812500, 49.837982 ], [ -5.625000, 49.837982 ], [ -5.625000, 50.736455 ], [ -4.218750, 50.736455 ], [ -4.218750, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -4.218750, 54.162434 ], [ -4.218750, 55.776573 ], [ -5.625000, 55.776573 ], [ -5.625000, 58.813742 ], [ -2.812500, 58.813742 ], [ -2.812500, 58.077876 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 58.813742 ], [ -2.812500, 58.077876 ], [ -4.218750, 58.077876 ], [ -4.218750, 57.326521 ], [ -1.406250, 57.326521 ], [ -1.406250, 56.559482 ], [ -2.812500, 56.559482 ], [ -2.812500, 55.776573 ], [ -1.406250, 55.776573 ], [ -1.406250, 54.162434 ], [ 0.000000, 54.162434 ], [ 0.000000, 52.482780 ], [ 1.406250, 52.482780 ], [ 1.406250, 50.736455 ], [ -2.812500, 50.736455 ], [ -2.812500, 49.837982 ], [ -5.625000, 49.837982 ], [ -5.625000, 50.736455 ], [ -4.218750, 50.736455 ], [ -4.218750, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -4.218750, 54.162434 ], [ -4.218750, 55.776573 ], [ -5.625000, 55.776573 ], [ -5.625000, 58.813742 ], [ -2.812500, 58.813742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.437500, 4.214943 ], [ -52.031250, 4.214943 ], [ -52.031250, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 4.214943 ] ] ], [ [ [ 9.843750, 40.979898 ], [ 8.437500, 40.979898 ], [ 8.437500, 43.068888 ], [ 9.843750, 43.068888 ], [ 9.843750, 40.979898 ] ] ], [ [ [ 8.437500, 47.989922 ], [ 7.031250, 47.989922 ], [ 7.031250, 47.040182 ], [ 5.625000, 47.040182 ], [ 5.625000, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.032974 ], [ 0.000000, 42.032974 ], [ 0.000000, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 46.073231 ], [ -2.812500, 46.073231 ], [ -2.812500, 47.989922 ], [ -4.218750, 47.989922 ], [ -4.218750, 48.922499 ], [ 1.406250, 48.922499 ], [ 1.406250, 50.736455 ], [ 4.218750, 50.736455 ], [ 4.218750, 49.837982 ], [ 5.625000, 49.837982 ], [ 5.625000, 48.922499 ], [ 8.437500, 48.922499 ], [ 8.437500, 47.989922 ] ] ], [ [ [ -53.437500, 1.406109 ], [ -54.843750, 1.406109 ], [ -54.843750, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.437500, 2.811371 ], [ -53.437500, 1.406109 ], [ -54.843750, 1.406109 ], [ -54.843750, 2.811371 ], [ -53.437500, 2.811371 ] ] ], [ [ [ -52.031250, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 4.214943 ], [ -52.031250, 4.214943 ], [ -52.031250, 2.811371 ] ] ], [ [ [ 9.843750, 43.068888 ], [ 9.843750, 40.979898 ], [ 8.437500, 40.979898 ], [ 8.437500, 43.068888 ], [ 9.843750, 43.068888 ] ] ], [ [ [ 4.218750, 50.736455 ], [ 4.218750, 49.837982 ], [ 5.625000, 49.837982 ], [ 5.625000, 48.922499 ], [ 8.437500, 48.922499 ], [ 8.437500, 47.989922 ], [ 7.031250, 47.989922 ], [ 7.031250, 47.040182 ], [ 5.625000, 47.040182 ], [ 5.625000, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.032974 ], [ 0.000000, 42.032974 ], [ 0.000000, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 46.073231 ], [ -2.812500, 46.073231 ], [ -2.812500, 47.989922 ], [ -4.218750, 47.989922 ], [ -4.218750, 48.922499 ], [ 1.406250, 48.922499 ], [ 1.406250, 50.736455 ], [ 4.218750, 50.736455 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.437500, 27.059126 ], [ -8.437500, 25.799891 ], [ -11.250000, 25.799891 ], [ -11.250000, 27.059126 ], [ -8.437500, 27.059126 ] ] ], [ [ [ -12.656250, 24.527135 ], [ -11.250000, 24.527135 ], [ -11.250000, 23.241346 ], [ -12.656250, 23.241346 ], [ -12.656250, 24.527135 ] ] ], [ [ [ -12.656250, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.241346 ], [ -12.656250, 23.241346 ], [ -12.656250, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.656250, 23.241346 ], [ -12.656250, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.241346 ], [ -12.656250, 23.241346 ] ] ], [ [ [ -12.656250, 24.527135 ], [ -11.250000, 24.527135 ], [ -11.250000, 23.241346 ], [ -12.656250, 23.241346 ], [ -12.656250, 24.527135 ] ] ], [ [ [ -8.437500, 25.799891 ], [ -11.250000, 25.799891 ], [ -11.250000, 27.059126 ], [ -8.437500, 27.059126 ], [ -8.437500, 25.799891 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 36.597889 ], [ -8.437500, 36.597889 ], [ -8.437500, 37.718590 ], [ -9.843750, 37.718590 ], [ -9.843750, 39.909736 ], [ -8.437500, 39.909736 ], [ -8.437500, 42.032974 ], [ -7.031250, 42.032974 ], [ -7.031250, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 42.032974 ], [ -7.031250, 36.597889 ], [ -8.437500, 36.597889 ], [ -8.437500, 37.718590 ], [ -9.843750, 37.718590 ], [ -9.843750, 39.909736 ], [ -8.437500, 39.909736 ], [ -8.437500, 42.032974 ], [ -7.031250, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 42.032974 ], [ 2.812500, 42.032974 ], [ 2.812500, 40.979898 ], [ 1.406250, 40.979898 ], [ 1.406250, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 36.597889 ], [ -7.031250, 36.597889 ], [ -7.031250, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 43.068888 ], [ 0.000000, 43.068888 ], [ 0.000000, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 43.068888 ], [ 0.000000, 42.032974 ], [ 2.812500, 42.032974 ], [ 2.812500, 40.979898 ], [ 1.406250, 40.979898 ], [ 1.406250, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 36.597889 ], [ -7.031250, 36.597889 ], [ -7.031250, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 43.068888 ], [ 0.000000, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 31.952162 ], [ -4.218750, 31.952162 ], [ -4.218750, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 28.304381 ], [ -8.437500, 28.304381 ], [ -8.437500, 27.059126 ], [ -11.250000, 27.059126 ], [ -11.250000, 25.799891 ], [ -12.656250, 25.799891 ], [ -12.656250, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 23.241346 ], [ -15.468750, 23.241346 ], [ -15.468750, 25.799891 ], [ -14.062500, 25.799891 ], [ -14.062500, 27.059126 ], [ -12.656250, 27.059126 ], [ -12.656250, 28.304381 ], [ -9.843750, 28.304381 ], [ -9.843750, 33.137551 ], [ -7.031250, 33.137551 ], [ -7.031250, 34.307144 ], [ -5.625000, 34.307144 ], [ -5.625000, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 34.307144 ], [ -1.406250, 34.307144 ], [ -1.406250, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 35.460670 ], [ -2.812500, 34.307144 ], [ -1.406250, 34.307144 ], [ -1.406250, 31.952162 ], [ -4.218750, 31.952162 ], [ -4.218750, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 28.304381 ], [ -8.437500, 28.304381 ], [ -8.437500, 27.059126 ], [ -11.250000, 27.059126 ], [ -11.250000, 25.799891 ], [ -12.656250, 25.799891 ], [ -12.656250, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 23.241346 ], [ -15.468750, 23.241346 ], [ -15.468750, 25.799891 ], [ -14.062500, 25.799891 ], [ -14.062500, 27.059126 ], [ -12.656250, 27.059126 ], [ -12.656250, 28.304381 ], [ -9.843750, 28.304381 ], [ -9.843750, 33.137551 ], [ -7.031250, 33.137551 ], [ -7.031250, 34.307144 ], [ -5.625000, 35.460670 ], [ -2.812500, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.656250, 13.923404 ], [ -11.250000, 13.923404 ], [ -11.250000, 12.554564 ], [ -15.468750, 12.554564 ], [ -15.468750, 13.923404 ], [ -18.281250, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 16.636192 ], [ -14.062500, 16.636192 ], [ -14.062500, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 16.636192 ], [ -14.062500, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 13.923404 ], [ -11.250000, 13.923404 ], [ -11.250000, 12.554564 ], [ -15.468750, 12.554564 ], [ -15.468750, 13.923404 ], [ -18.281250, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 16.636192 ], [ -14.062500, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 13.923404 ], [ -15.468750, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.923404 ], [ -15.468750, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 11.178402 ], [ -16.875000, 11.178402 ], [ -16.875000, 12.554564 ], [ -14.062500, 12.554564 ], [ -14.062500, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 12.554564 ], [ -14.062500, 11.178402 ], [ -16.875000, 11.178402 ], [ -16.875000, 12.554564 ], [ -14.062500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 11.178402 ], [ -9.843750, 11.178402 ], [ -9.843750, 12.554564 ], [ -8.437500, 12.554564 ], [ -8.437500, 7.013668 ], [ -9.843750, 7.013668 ], [ -9.843750, 8.407168 ], [ -11.250000, 8.407168 ], [ -11.250000, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 8.407168 ], [ -14.062500, 8.407168 ], [ -14.062500, 12.554564 ], [ -11.250000, 12.554564 ], [ -11.250000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 12.554564 ], [ -8.437500, 7.013668 ], [ -9.843750, 7.013668 ], [ -9.843750, 8.407168 ], [ -11.250000, 8.407168 ], [ -11.250000, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 8.407168 ], [ -14.062500, 8.407168 ], [ -14.062500, 12.554564 ], [ -11.250000, 12.554564 ], [ -11.250000, 11.178402 ], [ -9.843750, 11.178402 ], [ -9.843750, 12.554564 ], [ -8.437500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 9.795678 ], [ -11.250000, 9.795678 ], [ -11.250000, 7.013668 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 9.795678 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 9.795678 ], [ -11.250000, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625000, 15.284185 ], [ -14.062500, 15.284185 ], [ -14.062500, 16.636192 ], [ -15.468750, 16.636192 ], [ -15.468750, 17.978733 ], [ -16.875000, 17.978733 ], [ -16.875000, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 23.241346 ], [ -11.250000, 23.241346 ], [ -11.250000, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.799891 ], [ -7.031250, 25.799891 ], [ -7.031250, 21.943046 ], [ -5.625000, 21.943046 ], [ -5.625000, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 25.799891 ], [ -7.031250, 21.943046 ], [ -5.625000, 21.943046 ], [ -5.625000, 15.284185 ], [ -14.062500, 15.284185 ], [ -14.062500, 16.636192 ], [ -15.468750, 16.636192 ], [ -15.468750, 17.978733 ], [ -16.875000, 17.978733 ], [ -16.875000, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 23.241346 ], [ -11.250000, 23.241346 ], [ -11.250000, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.799891 ], [ -7.031250, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.218750, 23.241346 ], [ -1.406250, 23.241346 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 13.923404 ], [ -4.218750, 13.923404 ], [ -4.218750, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 12.554564 ], [ -9.843750, 12.554564 ], [ -9.843750, 11.178402 ], [ -11.250000, 11.178402 ], [ -11.250000, 13.923404 ], [ -12.656250, 13.923404 ], [ -12.656250, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 21.943046 ], [ -7.031250, 21.943046 ], [ -7.031250, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.218750, 24.527135 ], [ -4.218750, 23.241346 ], [ -1.406250, 23.241346 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 13.923404 ], [ -4.218750, 13.923404 ], [ -4.218750, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 12.554564 ], [ -9.843750, 12.554564 ], [ -9.843750, 11.178402 ], [ -11.250000, 11.178402 ], [ -11.250000, 13.923404 ], [ -12.656250, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 21.943046 ], [ -7.031250, 21.943046 ], [ -7.031250, 24.527135 ], [ -4.218750, 24.527135 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.406250, 12.554564 ], [ 2.812500, 12.554564 ], [ 2.812500, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 11.178402 ], [ -4.218750, 11.178402 ], [ -4.218750, 13.923404 ], [ -1.406250, 13.923404 ], [ -1.406250, 15.284185 ], [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 1.406250, 13.923404 ], [ 1.406250, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 1.406250, 13.923404 ], [ 1.406250, 12.554564 ], [ 2.812500, 12.554564 ], [ 2.812500, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 11.178402 ], [ -4.218750, 11.178402 ], [ -4.218750, 13.923404 ], [ -1.406250, 13.923404 ], [ -1.406250, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 5.615986 ], [ -7.031250, 5.615986 ], [ -7.031250, 4.214943 ], [ -9.843750, 4.214943 ], [ -9.843750, 5.615986 ], [ -11.250000, 5.615986 ], [ -11.250000, 8.407168 ], [ -9.843750, 8.407168 ], [ -9.843750, 7.013668 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 5.615986 ], [ -7.031250, 5.615986 ], [ -7.031250, 4.214943 ], [ -9.843750, 4.214943 ], [ -9.843750, 5.615986 ], [ -11.250000, 5.615986 ], [ -11.250000, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 5.615986 ], [ -5.625000, 5.615986 ], [ -5.625000, 4.214943 ], [ -7.031250, 4.214943 ], [ -7.031250, 5.615986 ], [ -8.437500, 5.615986 ], [ -8.437500, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 9.795678 ], [ -2.812500, 5.615986 ], [ -5.625000, 5.615986 ], [ -5.625000, 4.214943 ], [ -7.031250, 4.214943 ], [ -7.031250, 5.615986 ], [ -8.437500, 5.615986 ], [ -8.437500, 9.795678 ], [ -2.812500, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 8.407168 ], [ 1.406250, 8.407168 ], [ 1.406250, 7.013668 ], [ 0.000000, 7.013668 ], [ 0.000000, 5.615986 ], [ -1.406250, 5.615986 ], [ -1.406250, 4.214943 ], [ -2.812500, 4.214943 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ], [ 0.000000, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 8.407168 ], [ 1.406250, 8.407168 ], [ 1.406250, 7.013668 ], [ 0.000000, 7.013668 ], [ 0.000000, 5.615986 ], [ -1.406250, 5.615986 ], [ -1.406250, 4.214943 ], [ -2.812500, 4.214943 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -5.615986 ], [ -80.156250, -5.615986 ], [ -80.156250, 1.406109 ], [ -77.343750, 1.406109 ], [ -77.343750, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 1.406109 ], [ -77.343750, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -4.214943 ], [ -78.750000, -4.214943 ], [ -80.156250, -5.615986 ], [ -80.156250, 1.406109 ], [ -77.343750, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.312500, -4.214943 ], [ -71.718750, -4.214943 ], [ -71.718750, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -74.531250, -7.013668 ], [ -74.531250, -8.407168 ], [ -73.125000, -8.407168 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -68.906250, -11.178402 ], [ -68.906250, -17.978733 ], [ -73.125000, -17.978733 ], [ -73.125000, -16.636192 ], [ -75.937500, -16.636192 ], [ -75.937500, -13.923404 ], [ -77.343750, -13.923404 ], [ -77.343750, -11.178402 ], [ -78.750000, -11.178402 ], [ -78.750000, -8.407168 ], [ -80.156250, -8.407168 ], [ -80.156250, -7.013668 ], [ -81.562500, -7.013668 ], [ -81.562500, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -5.615986 ], [ -78.750000, -5.615986 ], [ -78.750000, -4.214943 ], [ -77.343750, -4.214943 ], [ -77.343750, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ], [ -74.531250, -1.406109 ], [ -73.125000, -1.406109 ], [ -73.125000, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.531250, 0.000000 ], [ -74.531250, -1.406109 ], [ -73.125000, -1.406109 ], [ -73.125000, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.718750, -4.214943 ], [ -71.718750, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -74.531250, -7.013668 ], [ -74.531250, -8.407168 ], [ -73.125000, -8.407168 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -68.906250, -11.178402 ], [ -68.906250, -17.978733 ], [ -73.125000, -17.978733 ], [ -73.125000, -16.636192 ], [ -75.937500, -16.636192 ], [ -75.937500, -13.923404 ], [ -77.343750, -13.923404 ], [ -77.343750, -11.178402 ], [ -78.750000, -11.178402 ], [ -78.750000, -8.407168 ], [ -80.156250, -8.407168 ], [ -80.156250, -7.013668 ], [ -81.562500, -7.013668 ], [ -81.562500, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -5.615986 ], [ -78.750000, -5.615986 ], [ -78.750000, -4.214943 ], [ -77.343750, -4.214943 ], [ -77.343750, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -36.597889 ], [ -71.718750, -36.597889 ], [ -71.718750, -48.922499 ], [ -73.125000, -48.922499 ], [ -73.125000, -50.736455 ], [ -71.718750, -50.736455 ], [ -71.718750, -52.482780 ], [ -70.312500, -52.482780 ], [ -70.312500, -53.330873 ], [ -68.906250, -53.330873 ], [ -68.906250, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -55.776573 ], [ -70.312500, -55.776573 ], [ -70.312500, -54.977614 ], [ -71.718750, -54.977614 ], [ -71.718750, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -52.482780 ], [ -75.937500, -52.482780 ], [ -75.937500, -51.618017 ], [ -74.531250, -51.618017 ], [ -74.531250, -50.736455 ], [ -75.937500, -50.736455 ], [ -75.937500, -48.922499 ], [ -74.531250, -48.922499 ], [ -74.531250, -44.087585 ], [ -73.125000, -44.087585 ], [ -73.125000, -43.068888 ], [ -74.531250, -43.068888 ], [ -74.531250, -40.979898 ], [ -73.125000, -40.979898 ], [ -73.125000, -35.460670 ], [ -71.718750, -35.460670 ], [ -71.718750, -28.304381 ], [ -70.312500, -28.304381 ], [ -70.312500, -36.597889 ] ] ], [ [ [ -70.312500, -17.978733 ], [ -68.906250, -17.978733 ], [ -68.906250, -23.241346 ], [ -67.500000, -23.241346 ], [ -67.500000, -24.527135 ], [ -68.906250, -24.527135 ], [ -68.906250, -28.304381 ], [ -70.312500, -28.304381 ], [ -70.312500, -17.978733 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -28.304381 ], [ -70.312500, -36.597889 ], [ -71.718750, -36.597889 ], [ -71.718750, -48.922499 ], [ -73.125000, -48.922499 ], [ -73.125000, -50.736455 ], [ -71.718750, -50.736455 ], [ -71.718750, -52.482780 ], [ -70.312500, -52.482780 ], [ -70.312500, -53.330873 ], [ -68.906250, -53.330873 ], [ -68.906250, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -55.776573 ], [ -70.312500, -55.776573 ], [ -70.312500, -54.977614 ], [ -71.718750, -54.977614 ], [ -71.718750, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -52.482780 ], [ -75.937500, -52.482780 ], [ -75.937500, -51.618017 ], [ -74.531250, -51.618017 ], [ -74.531250, -50.736455 ], [ -75.937500, -50.736455 ], [ -75.937500, -48.922499 ], [ -74.531250, -48.922499 ], [ -74.531250, -44.087585 ], [ -73.125000, -44.087585 ], [ -73.125000, -43.068888 ], [ -74.531250, -43.068888 ], [ -74.531250, -40.979898 ], [ -73.125000, -40.979898 ], [ -73.125000, -35.460670 ], [ -71.718750, -35.460670 ], [ -71.718750, -28.304381 ], [ -70.312500, -28.304381 ] ] ], [ [ [ -68.906250, -23.241346 ], [ -67.500000, -23.241346 ], [ -67.500000, -24.527135 ], [ -68.906250, -24.527135 ], [ -68.906250, -28.304381 ], [ -70.312500, -28.304381 ], [ -70.312500, -17.978733 ], [ -68.906250, -17.978733 ], [ -68.906250, -23.241346 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, -11.178402 ], [ -66.093750, -11.178402 ], [ -66.093750, -12.554564 ], [ -61.875000, -12.554564 ], [ -61.875000, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -16.636192 ], [ -57.656250, -16.636192 ], [ -57.656250, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -23.241346 ], [ -68.906250, -23.241346 ], [ -68.906250, -11.178402 ], [ -67.500000, -11.178402 ], [ -67.500000, -9.795678 ], [ -64.687500, -9.795678 ], [ -64.687500, -11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, -9.795678 ], [ -64.687500, -11.178402 ], [ -66.093750, -11.178402 ], [ -66.093750, -12.554564 ], [ -61.875000, -12.554564 ], [ -61.875000, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -16.636192 ], [ -57.656250, -16.636192 ], [ -57.656250, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -23.241346 ], [ -68.906250, -23.241346 ], [ -68.906250, -11.178402 ], [ -67.500000, -11.178402 ], [ -67.500000, -9.795678 ], [ -64.687500, -9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -39.375000, -4.214943 ], [ -36.562500, -4.214943 ], [ -36.562500, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -11.178402 ], [ -36.562500, -11.178402 ], [ -36.562500, -12.554564 ], [ -39.375000, -12.554564 ], [ -39.375000, -20.632784 ], [ -40.781250, -20.632784 ], [ -40.781250, -21.943046 ], [ -42.187500, -21.943046 ], [ -42.187500, -23.241346 ], [ -45.000000, -23.241346 ], [ -45.000000, -24.527135 ], [ -47.812500, -24.527135 ], [ -47.812500, -28.304381 ], [ -49.218750, -28.304381 ], [ -49.218750, -30.751278 ], [ -50.625000, -30.751278 ], [ -50.625000, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -34.307144 ], [ -53.437500, -34.307144 ], [ -53.437500, -31.952162 ], [ -56.250000, -31.952162 ], [ -56.250000, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -29.535230 ], [ -56.250000, -29.535230 ], [ -56.250000, -28.304381 ], [ -54.843750, -28.304381 ], [ -54.843750, -27.059126 ], [ -53.437500, -27.059126 ], [ -53.437500, -25.799891 ], [ -54.843750, -25.799891 ], [ -54.843750, -23.241346 ], [ -56.250000, -23.241346 ], [ -56.250000, -21.943046 ], [ -57.656250, -21.943046 ], [ -57.656250, -16.636192 ], [ -60.468750, -16.636192 ], [ -60.468750, -13.923404 ], [ -61.875000, -13.923404 ], [ -61.875000, -12.554564 ], [ -66.093750, -12.554564 ], [ -66.093750, -11.178402 ], [ -64.687500, -11.178402 ], [ -64.687500, -9.795678 ], [ -67.500000, -9.795678 ], [ -67.500000, -11.178402 ], [ -70.312500, -11.178402 ], [ -70.312500, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -8.407168 ], [ -74.531250, -8.407168 ], [ -74.531250, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -71.718750, -5.615986 ], [ -71.718750, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -68.906250, -2.811371 ], [ -68.906250, 1.406109 ], [ -63.281250, 1.406109 ], [ -63.281250, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 4.214943 ], [ -60.468750, 4.214943 ], [ -60.468750, 2.811371 ], [ -59.062500, 2.811371 ], [ -59.062500, 1.406109 ], [ -56.250000, 1.406109 ], [ -56.250000, 2.811371 ], [ -54.843750, 2.811371 ], [ -54.843750, 1.406109 ], [ -53.437500, 1.406109 ], [ -53.437500, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 4.214943 ], [ -50.625000, 4.214943 ], [ -50.625000, 0.000000 ], [ -49.218750, 0.000000 ], [ -49.218750, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.811371 ], [ -39.375000, -2.811371 ], [ -39.375000, -4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625000, 4.214943 ], [ -50.625000, 0.000000 ], [ -49.218750, 0.000000 ], [ -49.218750, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.811371 ], [ -39.375000, -2.811371 ], [ -39.375000, -4.214943 ], [ -36.562500, -4.214943 ], [ -36.562500, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -11.178402 ], [ -36.562500, -11.178402 ], [ -36.562500, -12.554564 ], [ -39.375000, -12.554564 ], [ -39.375000, -20.632784 ], [ -40.781250, -20.632784 ], [ -40.781250, -21.943046 ], [ -42.187500, -21.943046 ], [ -42.187500, -23.241346 ], [ -45.000000, -23.241346 ], [ -45.000000, -24.527135 ], [ -47.812500, -24.527135 ], [ -47.812500, -28.304381 ], [ -49.218750, -28.304381 ], [ -49.218750, -30.751278 ], [ -50.625000, -30.751278 ], [ -50.625000, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -34.307144 ], [ -53.437500, -34.307144 ], [ -53.437500, -31.952162 ], [ -56.250000, -31.952162 ], [ -56.250000, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -29.535230 ], [ -56.250000, -29.535230 ], [ -56.250000, -28.304381 ], [ -54.843750, -28.304381 ], [ -54.843750, -27.059126 ], [ -53.437500, -27.059126 ], [ -53.437500, -25.799891 ], [ -54.843750, -25.799891 ], [ -54.843750, -23.241346 ], [ -56.250000, -23.241346 ], [ -56.250000, -21.943046 ], [ -57.656250, -21.943046 ], [ -57.656250, -16.636192 ], [ -60.468750, -16.636192 ], [ -60.468750, -13.923404 ], [ -61.875000, -13.923404 ], [ -61.875000, -12.554564 ], [ -66.093750, -12.554564 ], [ -66.093750, -11.178402 ], [ -64.687500, -11.178402 ], [ -64.687500, -9.795678 ], [ -67.500000, -9.795678 ], [ -67.500000, -11.178402 ], [ -70.312500, -11.178402 ], [ -70.312500, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -8.407168 ], [ -74.531250, -8.407168 ], [ -74.531250, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -71.718750, -5.615986 ], [ -71.718750, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -68.906250, -2.811371 ], [ -68.906250, 1.406109 ], [ -63.281250, 1.406109 ], [ -63.281250, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 4.214943 ], [ -60.468750, 4.214943 ], [ -60.468750, 2.811371 ], [ -59.062500, 2.811371 ], [ -59.062500, 1.406109 ], [ -56.250000, 1.406109 ], [ -56.250000, 2.811371 ], [ -54.843750, 2.811371 ], [ -54.843750, 1.406109 ], [ -53.437500, 1.406109 ], [ -53.437500, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 4.214943 ], [ -50.625000, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, -23.241346 ], [ -54.843750, -23.241346 ], [ -54.843750, -27.059126 ], [ -57.656250, -27.059126 ], [ -57.656250, -24.527135 ], [ -60.468750, -24.527135 ], [ -60.468750, -23.241346 ], [ -63.281250, -23.241346 ], [ -63.281250, -21.943046 ], [ -61.875000, -21.943046 ], [ -61.875000, -19.311143 ], [ -57.656250, -19.311143 ], [ -57.656250, -21.943046 ], [ -56.250000, -21.943046 ], [ -56.250000, -23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -19.311143 ], [ -57.656250, -21.943046 ], [ -56.250000, -21.943046 ], [ -56.250000, -23.241346 ], [ -54.843750, -23.241346 ], [ -54.843750, -27.059126 ], [ -57.656250, -27.059126 ], [ -57.656250, -24.527135 ], [ -60.468750, -24.527135 ], [ -60.468750, -23.241346 ], [ -63.281250, -23.241346 ], [ -63.281250, -21.943046 ], [ -61.875000, -21.943046 ], [ -61.875000, -19.311143 ], [ -57.656250, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.093750, -54.977614 ], [ -68.906250, -54.977614 ], [ -68.906250, -54.162434 ], [ -66.093750, -54.162434 ], [ -66.093750, -54.977614 ] ] ], [ [ [ -54.843750, -28.304381 ], [ -56.250000, -28.304381 ], [ -56.250000, -29.535230 ], [ -57.656250, -29.535230 ], [ -57.656250, -34.307144 ], [ -59.062500, -34.307144 ], [ -59.062500, -35.460670 ], [ -57.656250, -35.460670 ], [ -57.656250, -36.597889 ], [ -56.250000, -36.597889 ], [ -56.250000, -37.718590 ], [ -57.656250, -37.718590 ], [ -57.656250, -38.822591 ], [ -61.875000, -38.822591 ], [ -61.875000, -40.979898 ], [ -64.687500, -40.979898 ], [ -64.687500, -42.032974 ], [ -63.281250, -42.032974 ], [ -63.281250, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -45.089036 ], [ -67.500000, -45.089036 ], [ -67.500000, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -49.837982 ], [ -68.906250, -49.837982 ], [ -68.906250, -52.482780 ], [ -71.718750, -52.482780 ], [ -71.718750, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -48.922499 ], [ -71.718750, -48.922499 ], [ -71.718750, -36.597889 ], [ -70.312500, -36.597889 ], [ -70.312500, -28.304381 ], [ -68.906250, -28.304381 ], [ -68.906250, -24.527135 ], [ -67.500000, -24.527135 ], [ -67.500000, -23.241346 ], [ -66.093750, -23.241346 ], [ -66.093750, -21.943046 ], [ -63.281250, -21.943046 ], [ -63.281250, -23.241346 ], [ -60.468750, -23.241346 ], [ -60.468750, -24.527135 ], [ -57.656250, -24.527135 ], [ -57.656250, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -28.304381 ] ] ], [ [ [ -54.843750, -25.799891 ], [ -53.437500, -25.799891 ], [ -53.437500, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.093750, -54.162434 ], [ -66.093750, -54.977614 ], [ -68.906250, -54.977614 ], [ -68.906250, -54.162434 ], [ -66.093750, -54.162434 ] ] ], [ [ [ -63.281250, -21.943046 ], [ -63.281250, -23.241346 ], [ -60.468750, -23.241346 ], [ -60.468750, -24.527135 ], [ -57.656250, -24.527135 ], [ -57.656250, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -28.304381 ], [ -56.250000, -28.304381 ], [ -56.250000, -29.535230 ], [ -57.656250, -29.535230 ], [ -57.656250, -34.307144 ], [ -59.062500, -34.307144 ], [ -59.062500, -35.460670 ], [ -57.656250, -35.460670 ], [ -57.656250, -36.597889 ], [ -56.250000, -36.597889 ], [ -56.250000, -37.718590 ], [ -57.656250, -37.718590 ], [ -57.656250, -38.822591 ], [ -61.875000, -38.822591 ], [ -61.875000, -40.979898 ], [ -64.687500, -40.979898 ], [ -64.687500, -42.032974 ], [ -63.281250, -42.032974 ], [ -63.281250, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -45.089036 ], [ -67.500000, -45.089036 ], [ -67.500000, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -49.837982 ], [ -68.906250, -49.837982 ], [ -68.906250, -52.482780 ], [ -71.718750, -52.482780 ], [ -71.718750, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -48.922499 ], [ -71.718750, -48.922499 ], [ -71.718750, -36.597889 ], [ -70.312500, -36.597889 ], [ -70.312500, -28.304381 ], [ -68.906250, -28.304381 ], [ -68.906250, -24.527135 ], [ -67.500000, -24.527135 ], [ -67.500000, -23.241346 ], [ -66.093750, -23.241346 ], [ -66.093750, -21.943046 ], [ -63.281250, -21.943046 ] ] ], [ [ [ -53.437500, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.799891 ], [ -53.437500, -25.799891 ], [ -53.437500, -27.059126 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -35.460670 ], [ -56.250000, -35.460670 ], [ -56.250000, -34.307144 ], [ -57.656250, -34.307144 ], [ -57.656250, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, -30.751278 ], [ -56.250000, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -35.460670 ], [ -56.250000, -35.460670 ], [ -56.250000, -34.307144 ], [ -57.656250, -34.307144 ], [ -57.656250, -30.751278 ], [ -56.250000, -30.751278 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -52.482780 ], [ -61.875000, -52.482780 ], [ -61.875000, -51.618017 ], [ -57.656250, -51.618017 ], [ -57.656250, -52.482780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -51.618017 ], [ -57.656250, -52.482780 ], [ -60.468750, -52.482780 ], [ -61.875000, -51.618017 ], [ -57.656250, -51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -167.343750, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.170970 ], [ -161.718750, -85.170970 ], [ -161.718750, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.402036 ], [ -156.093750, -85.402036 ], [ -156.093750, -85.170970 ], [ -151.875000, -85.170970 ], [ -151.875000, -85.287916 ], [ -150.468750, -85.287916 ], [ -150.468750, -85.513398 ], [ -149.062500, -85.513398 ], [ -149.062500, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.405941 ], [ -178.593750, -84.405941 ], [ -178.593750, -84.267172 ], [ -175.781250, -84.267172 ], [ -175.781250, -84.405941 ], [ -172.968750, -84.405941 ], [ -172.968750, -84.124973 ], [ -171.562500, -84.124973 ], [ -171.562500, -83.979259 ], [ -168.750000, -83.979259 ], [ -168.750000, -84.405941 ], [ -167.343750, -84.405941 ], [ -167.343750, -84.673513 ] ] ], [ [ [ -146.250000, -85.402036 ], [ -146.250000, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -143.437500, -85.170970 ], [ -143.437500, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.405941 ], [ -150.468750, -84.405941 ], [ -150.468750, -83.829945 ], [ -153.281250, -83.829945 ], [ -153.281250, -81.923186 ], [ -154.687500, -81.923186 ], [ -154.687500, -81.518272 ], [ -156.093750, -81.518272 ], [ -156.093750, -81.308321 ], [ -157.500000, -81.308321 ], [ -157.500000, -81.093214 ], [ -151.875000, -81.093214 ], [ -151.875000, -81.308321 ], [ -149.062500, -81.308321 ], [ -149.062500, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.647035 ], [ -146.250000, -80.647035 ], [ -146.250000, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -151.875000, -79.432371 ], [ -151.875000, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -157.500000, -78.630006 ], [ -157.500000, -77.466028 ], [ -158.906250, -77.466028 ], [ -158.906250, -76.840816 ], [ -157.500000, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.157163 ], [ -149.062500, -77.157163 ], [ -149.062500, -76.840816 ], [ -147.656250, -76.840816 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.497157 ], [ -142.031250, -75.497157 ], [ -142.031250, -75.140778 ], [ -137.812500, -75.140778 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.402163 ], [ -115.312500, -74.402163 ], [ -115.312500, -74.019543 ], [ -113.906250, -74.019543 ], [ -113.906250, -74.402163 ], [ -112.500000, -74.402163 ], [ -112.500000, -74.775843 ], [ -108.281250, -74.775843 ], [ -108.281250, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -101.250000, -74.775843 ], [ -101.250000, -74.019543 ], [ -102.656250, -74.019543 ], [ -102.656250, -73.226700 ], [ -104.062500, -73.226700 ], [ -104.062500, -72.816074 ], [ -98.437500, -72.816074 ], [ -98.437500, -73.627789 ], [ -95.625000, -73.627789 ], [ -95.625000, -85.622069 ], [ -147.656250, -85.622069 ], [ -147.656250, -85.402036 ], [ -146.250000, -85.402036 ] ] ], [ [ [ -161.718750, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -78.903929 ], [ -158.906250, -78.903929 ], [ -158.906250, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -163.125000, -79.432371 ], [ -163.125000, -78.349411 ], [ -161.718750, -78.349411 ], [ -161.718750, -78.630006 ] ] ], [ [ [ -118.125000, -74.019543 ], [ -122.343750, -74.019543 ], [ -122.343750, -73.627789 ], [ -118.125000, -73.627789 ], [ -118.125000, -74.019543 ] ] ], [ [ [ -125.156250, -74.019543 ], [ -126.562500, -74.019543 ], [ -126.562500, -73.627789 ], [ -125.156250, -73.627789 ], [ -125.156250, -74.019543 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -102.656250, -72.395706 ], [ -102.656250, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -168.750000, -83.979259 ], [ -168.750000, -84.405941 ], [ -167.343750, -84.405941 ], [ -167.343750, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.170970 ], [ -161.718750, -85.170970 ], [ -161.718750, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.402036 ], [ -156.093750, -85.402036 ], [ -156.093750, -85.170970 ], [ -151.875000, -85.170970 ], [ -151.875000, -85.287916 ], [ -150.468750, -85.287916 ], [ -150.468750, -85.513398 ], [ -149.062500, -85.513398 ], [ -149.062500, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.405941 ], [ -178.593750, -84.405941 ], [ -178.593750, -84.267172 ], [ -175.781250, -84.267172 ], [ -175.781250, -84.405941 ], [ -172.968750, -84.405941 ], [ -172.968750, -84.124973 ], [ -171.562500, -84.124973 ], [ -171.562500, -83.979259 ], [ -168.750000, -83.979259 ] ] ], [ [ [ -98.437500, -73.627789 ], [ -95.625000, -73.627789 ], [ -95.625000, -85.622069 ], [ -147.656250, -85.622069 ], [ -147.656250, -85.402036 ], [ -146.250000, -85.402036 ], [ -146.250000, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -143.437500, -85.170970 ], [ -143.437500, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.405941 ], [ -150.468750, -84.405941 ], [ -150.468750, -83.829945 ], [ -153.281250, -83.829945 ], [ -153.281250, -81.923186 ], [ -154.687500, -81.923186 ], [ -154.687500, -81.518272 ], [ -156.093750, -81.518272 ], [ -156.093750, -81.308321 ], [ -157.500000, -81.308321 ], [ -157.500000, -81.093214 ], [ -151.875000, -81.093214 ], [ -151.875000, -81.308321 ], [ -149.062500, -81.308321 ], [ -149.062500, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.647035 ], [ -146.250000, -80.647035 ], [ -146.250000, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -151.875000, -79.432371 ], [ -151.875000, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -157.500000, -78.630006 ], [ -157.500000, -77.466028 ], [ -158.906250, -77.466028 ], [ -158.906250, -76.840816 ], [ -157.500000, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.157163 ], [ -149.062500, -77.157163 ], [ -149.062500, -76.840816 ], [ -147.656250, -76.840816 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.497157 ], [ -142.031250, -75.497157 ], [ -142.031250, -75.140778 ], [ -137.812500, -75.140778 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.402163 ], [ -115.312500, -74.402163 ], [ -115.312500, -74.019543 ], [ -113.906250, -74.019543 ], [ -113.906250, -74.402163 ], [ -112.500000, -74.402163 ], [ -112.500000, -74.775843 ], [ -108.281250, -74.775843 ], [ -108.281250, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -101.250000, -74.775843 ], [ -101.250000, -74.019543 ], [ -102.656250, -74.019543 ], [ -102.656250, -73.226700 ], [ -104.062500, -73.226700 ], [ -104.062500, -72.816074 ], [ -98.437500, -72.816074 ], [ -98.437500, -73.627789 ] ] ], [ [ [ -161.718750, -78.349411 ], [ -161.718750, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -78.903929 ], [ -158.906250, -78.903929 ], [ -158.906250, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -163.125000, -79.432371 ], [ -163.125000, -78.349411 ], [ -161.718750, -78.349411 ] ] ], [ [ [ -118.125000, -73.627789 ], [ -118.125000, -74.019543 ], [ -122.343750, -74.019543 ], [ -122.343750, -73.627789 ], [ -118.125000, -73.627789 ] ] ], [ [ [ -125.156250, -73.627789 ], [ -125.156250, -74.019543 ], [ -126.562500, -74.019543 ], [ -126.562500, -73.627789 ], [ -125.156250, -73.627789 ] ] ], [ [ [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ], [ -102.656250, -72.395706 ], [ -102.656250, -71.965388 ], [ -97.031250, -71.965388 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -59.062500, -80.415707 ], [ -60.468750, -80.415707 ], [ -60.468750, -81.093214 ], [ -61.875000, -81.093214 ], [ -61.875000, -80.872827 ], [ -66.093750, -80.872827 ], [ -66.093750, -80.178713 ], [ -64.687500, -80.178713 ], [ -64.687500, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.178713 ], [ -60.468750, -80.178713 ], [ -60.468750, -79.935918 ], [ -59.062500, -79.935918 ], [ -59.062500, -80.415707 ] ] ], [ [ [ -45.000000, -78.349411 ], [ -43.593750, -78.349411 ], [ -43.593750, -80.178713 ], [ -45.000000, -80.178713 ], [ -45.000000, -80.647035 ], [ -46.406250, -80.647035 ], [ -46.406250, -80.872827 ], [ -47.812500, -80.872827 ], [ -47.812500, -81.093214 ], [ -53.437500, -81.093214 ], [ -53.437500, -80.872827 ], [ -54.843750, -80.872827 ], [ -54.843750, -80.415707 ], [ -53.437500, -80.415707 ], [ -53.437500, -80.178713 ], [ -52.031250, -80.178713 ], [ -52.031250, -79.935918 ], [ -50.625000, -79.935918 ], [ -50.625000, -79.171335 ], [ -49.218750, -79.171335 ], [ -49.218750, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.349411 ] ] ], [ [ [ -63.281250, -65.946472 ], [ -61.875000, -65.946472 ], [ -61.875000, -66.513260 ], [ -63.281250, -66.513260 ], [ -63.281250, -67.067433 ], [ -64.687500, -67.067433 ], [ -64.687500, -67.609221 ], [ -66.093750, -67.609221 ], [ -66.093750, -68.138852 ], [ -64.687500, -68.138852 ], [ -64.687500, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -70.140364 ], [ -61.875000, -70.140364 ], [ -61.875000, -72.395706 ], [ -60.468750, -72.395706 ], [ -60.468750, -74.019543 ], [ -61.875000, -74.019543 ], [ -61.875000, -74.402163 ], [ -63.281250, -74.402163 ], [ -63.281250, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.497157 ], [ -66.093750, -75.497157 ], [ -66.093750, -75.845169 ], [ -68.906250, -75.845169 ], [ -68.906250, -76.184995 ], [ -70.312500, -76.184995 ], [ -70.312500, -76.516819 ], [ -74.531250, -76.516819 ], [ -74.531250, -76.840816 ], [ -77.343750, -76.840816 ], [ -77.343750, -77.157163 ], [ -75.937500, -77.157163 ], [ -75.937500, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.767582 ], [ -73.125000, -77.767582 ], [ -73.125000, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.349411 ], [ -77.343750, -78.349411 ], [ -77.343750, -79.687184 ], [ -75.937500, -79.687184 ], [ -75.937500, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.872827 ], [ -70.312500, -80.872827 ], [ -70.312500, -81.308321 ], [ -67.500000, -81.308321 ], [ -67.500000, -81.518272 ], [ -66.093750, -81.518272 ], [ -66.093750, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.923186 ], [ -61.875000, -81.923186 ], [ -61.875000, -82.308893 ], [ -59.062500, -82.308893 ], [ -59.062500, -83.026219 ], [ -57.656250, -83.026219 ], [ -57.656250, -82.853382 ], [ -56.250000, -82.853382 ], [ -56.250000, -82.676285 ], [ -54.843750, -82.676285 ], [ -54.843750, -82.494824 ], [ -53.437500, -82.494824 ], [ -53.437500, -82.118384 ], [ -52.031250, -82.118384 ], [ -52.031250, -81.923186 ], [ -49.218750, -81.923186 ], [ -49.218750, -81.723188 ], [ -47.812500, -81.723188 ], [ -47.812500, -81.923186 ], [ -45.000000, -81.923186 ], [ -45.000000, -82.118384 ], [ -42.187500, -82.118384 ], [ -42.187500, -81.518272 ], [ -40.781250, -81.518272 ], [ -40.781250, -81.308321 ], [ -36.562500, -81.308321 ], [ -36.562500, -81.093214 ], [ -33.750000, -81.093214 ], [ -33.750000, -80.872827 ], [ -29.531250, -80.872827 ], [ -29.531250, -80.647035 ], [ -28.125000, -80.647035 ], [ -28.125000, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.171335 ], [ -30.937500, -79.171335 ], [ -30.937500, -79.432371 ], [ -36.562500, -79.432371 ], [ -36.562500, -78.903929 ], [ -35.156250, -78.903929 ], [ -35.156250, -78.061989 ], [ -33.750000, -78.061989 ], [ -33.750000, -77.767582 ], [ -30.937500, -77.767582 ], [ -30.937500, -77.466028 ], [ -29.531250, -77.466028 ], [ -29.531250, -76.516819 ], [ -25.312500, -76.516819 ], [ -25.312500, -76.184995 ], [ -22.500000, -76.184995 ], [ -22.500000, -85.622069 ], [ -95.625000, -85.622069 ], [ -95.625000, -73.627789 ], [ -94.218750, -73.627789 ], [ -94.218750, -73.226700 ], [ -90.000000, -73.226700 ], [ -90.000000, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -74.019543 ], [ -80.156250, -74.019543 ], [ -80.156250, -73.627789 ], [ -77.343750, -73.627789 ], [ -77.343750, -74.019543 ], [ -74.531250, -74.019543 ], [ -74.531250, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.226700 ], [ -68.906250, -73.226700 ], [ -68.906250, -72.816074 ], [ -67.500000, -72.816074 ], [ -67.500000, -71.074056 ], [ -68.906250, -71.074056 ], [ -68.906250, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -71.074056 ], [ -71.718750, -71.074056 ], [ -71.718750, -69.162558 ], [ -70.312500, -69.162558 ], [ -70.312500, -69.657086 ], [ -68.906250, -69.657086 ], [ -68.906250, -69.162558 ], [ -67.500000, -69.162558 ], [ -67.500000, -67.067433 ], [ -66.093750, -67.067433 ], [ -66.093750, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -65.366837 ], [ -63.281250, -65.366837 ], [ -63.281250, -65.946472 ] ] ], [ [ [ -57.656250, -63.548552 ], [ -57.656250, -64.168107 ], [ -59.062500, -64.168107 ], [ -59.062500, -63.548552 ], [ -57.656250, -63.548552 ] ] ], [ [ [ -61.875000, -65.366837 ], [ -63.281250, -65.366837 ], [ -63.281250, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -65.366837 ] ] ], [ [ [ -61.875000, -64.168107 ], [ -60.468750, -64.168107 ], [ -60.468750, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.168107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, -69.162558 ], [ -67.500000, -67.067433 ], [ -66.093750, -67.067433 ], [ -66.093750, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -65.366837 ], [ -63.281250, -65.366837 ], [ -63.281250, -65.946472 ], [ -61.875000, -65.946472 ], [ -61.875000, -66.513260 ], [ -63.281250, -66.513260 ], [ -63.281250, -67.067433 ], [ -64.687500, -67.067433 ], [ -64.687500, -67.609221 ], [ -66.093750, -67.609221 ], [ -66.093750, -68.138852 ], [ -64.687500, -68.138852 ], [ -64.687500, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -70.140364 ], [ -61.875000, -70.140364 ], [ -61.875000, -72.395706 ], [ -60.468750, -72.395706 ], [ -60.468750, -74.019543 ], [ -61.875000, -74.019543 ], [ -61.875000, -74.402163 ], [ -63.281250, -74.402163 ], [ -63.281250, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.497157 ], [ -66.093750, -75.497157 ], [ -66.093750, -75.845169 ], [ -68.906250, -75.845169 ], [ -68.906250, -76.184995 ], [ -70.312500, -76.184995 ], [ -70.312500, -76.516819 ], [ -74.531250, -76.516819 ], [ -74.531250, -76.840816 ], [ -77.343750, -76.840816 ], [ -77.343750, -77.157163 ], [ -75.937500, -77.157163 ], [ -75.937500, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.767582 ], [ -73.125000, -77.767582 ], [ -73.125000, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.349411 ], [ -77.343750, -78.349411 ], [ -77.343750, -79.687184 ], [ -75.937500, -79.687184 ], [ -75.937500, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.872827 ], [ -70.312500, -80.872827 ], [ -70.312500, -81.308321 ], [ -67.500000, -81.308321 ], [ -67.500000, -81.518272 ], [ -66.093750, -81.518272 ], [ -66.093750, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.923186 ], [ -61.875000, -81.923186 ], [ -61.875000, -82.308893 ], [ -59.062500, -82.308893 ], [ -59.062500, -83.026219 ], [ -57.656250, -83.026219 ], [ -57.656250, -82.853382 ], [ -56.250000, -82.853382 ], [ -56.250000, -82.676285 ], [ -54.843750, -82.676285 ], [ -54.843750, -82.494824 ], [ -53.437500, -82.494824 ], [ -53.437500, -82.118384 ], [ -52.031250, -82.118384 ], [ -52.031250, -81.923186 ], [ -49.218750, -81.923186 ], [ -49.218750, -81.723188 ], [ -47.812500, -81.723188 ], [ -47.812500, -81.923186 ], [ -45.000000, -81.923186 ], [ -45.000000, -82.118384 ], [ -42.187500, -82.118384 ], [ -42.187500, -81.518272 ], [ -40.781250, -81.518272 ], [ -40.781250, -81.308321 ], [ -36.562500, -81.308321 ], [ -36.562500, -81.093214 ], [ -33.750000, -81.093214 ], [ -33.750000, -80.872827 ], [ -29.531250, -80.872827 ], [ -29.531250, -80.647035 ], [ -28.125000, -80.647035 ], [ -28.125000, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.171335 ], [ -30.937500, -79.171335 ], [ -30.937500, -79.432371 ], [ -36.562500, -79.432371 ], [ -36.562500, -78.903929 ], [ -35.156250, -78.903929 ], [ -35.156250, -78.061989 ], [ -33.750000, -78.061989 ], [ -33.750000, -77.767582 ], [ -30.937500, -77.767582 ], [ -30.937500, -77.466028 ], [ -29.531250, -77.466028 ], [ -29.531250, -76.516819 ], [ -25.312500, -76.516819 ], [ -25.312500, -76.184995 ], [ -22.500000, -76.184995 ], [ -22.500000, -85.622069 ], [ -95.625000, -85.622069 ], [ -95.625000, -73.627789 ], [ -94.218750, -73.627789 ], [ -94.218750, -73.226700 ], [ -90.000000, -73.226700 ], [ -90.000000, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -74.019543 ], [ -80.156250, -74.019543 ], [ -80.156250, -73.627789 ], [ -77.343750, -73.627789 ], [ -77.343750, -74.019543 ], [ -74.531250, -74.019543 ], [ -74.531250, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.226700 ], [ -68.906250, -73.226700 ], [ -68.906250, -72.816074 ], [ -67.500000, -72.816074 ], [ -67.500000, -71.074056 ], [ -68.906250, -71.074056 ], [ -68.906250, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -71.074056 ], [ -71.718750, -71.074056 ], [ -71.718750, -69.162558 ], [ -67.500000, -69.162558 ] ] ], [ [ [ -59.062500, -79.935918 ], [ -59.062500, -80.415707 ], [ -60.468750, -80.415707 ], [ -60.468750, -81.093214 ], [ -61.875000, -81.093214 ], [ -61.875000, -80.872827 ], [ -66.093750, -80.872827 ], [ -66.093750, -80.178713 ], [ -64.687500, -80.178713 ], [ -64.687500, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.178713 ], [ -60.468750, -80.178713 ], [ -60.468750, -79.935918 ], [ -59.062500, -79.935918 ] ] ], [ [ [ -45.000000, -78.061989 ], [ -45.000000, -78.349411 ], [ -43.593750, -78.349411 ], [ -43.593750, -80.178713 ], [ -45.000000, -80.178713 ], [ -45.000000, -80.647035 ], [ -46.406250, -80.647035 ], [ -46.406250, -80.872827 ], [ -47.812500, -80.872827 ], [ -47.812500, -81.093214 ], [ -53.437500, -81.093214 ], [ -53.437500, -80.872827 ], [ -54.843750, -80.872827 ], [ -54.843750, -80.415707 ], [ -53.437500, -80.415707 ], [ -53.437500, -80.178713 ], [ -52.031250, -80.178713 ], [ -52.031250, -79.935918 ], [ -50.625000, -79.935918 ], [ -50.625000, -79.171335 ], [ -49.218750, -79.171335 ], [ -49.218750, -78.061989 ], [ -45.000000, -78.061989 ] ] ], [ [ [ -61.875000, -64.774125 ], [ -61.875000, -65.366837 ], [ -63.281250, -65.366837 ], [ -63.281250, -64.774125 ], [ -61.875000, -64.774125 ] ] ], [ [ [ -60.468750, -64.168107 ], [ -60.468750, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.168107 ], [ -60.468750, -64.168107 ] ] ], [ [ [ -57.656250, -64.168107 ], [ -59.062500, -64.168107 ], [ -59.062500, -63.548552 ], [ -57.656250, -63.548552 ], [ -57.656250, -64.168107 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.656250, -67.067433 ], [ 59.062500, -67.067433 ], [ 59.062500, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -68.138852 ], [ 63.281250, -68.138852 ], [ 63.281250, -67.609221 ], [ 67.500000, -67.609221 ], [ 67.500000, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -68.656555 ], [ 70.312500, -68.656555 ], [ 70.312500, -69.657086 ], [ 68.906250, -69.657086 ], [ 68.906250, -70.140364 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -72.395706 ], [ 71.718750, -72.395706 ], [ 71.718750, -71.524909 ], [ 73.125000, -71.524909 ], [ 73.125000, -70.140364 ], [ 74.531250, -70.140364 ], [ 74.531250, -69.657086 ], [ 78.750000, -69.657086 ], [ 78.750000, -68.138852 ], [ 81.562500, -68.138852 ], [ 81.562500, -67.609221 ], [ 82.968750, -67.609221 ], [ 82.968750, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 95.625000, -67.067433 ], [ 95.625000, -67.609221 ], [ 97.031250, -67.609221 ], [ 97.031250, -67.067433 ], [ 101.250000, -67.067433 ], [ 101.250000, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -67.067433 ], [ 109.687500, -67.067433 ], [ 109.687500, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.513260 ], [ 116.718750, -66.513260 ], [ 116.718750, -67.067433 ], [ 122.343750, -67.067433 ], [ 122.343750, -66.513260 ], [ 135.000000, -66.513260 ], [ 135.000000, -65.946472 ], [ 136.406250, -65.946472 ], [ 136.406250, -67.067433 ], [ 146.250000, -67.067433 ], [ 146.250000, -68.138852 ], [ 149.062500, -68.138852 ], [ 149.062500, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -69.162558 ], [ 157.500000, -69.162558 ], [ 157.500000, -69.657086 ], [ 158.906250, -69.657086 ], [ 158.906250, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.612614 ], [ 167.343750, -70.612614 ], [ 167.343750, -71.074056 ], [ 170.156250, -71.074056 ], [ 170.156250, -71.524909 ], [ 171.562500, -71.524909 ], [ 171.562500, -72.395706 ], [ 170.156250, -72.395706 ], [ 170.156250, -73.627789 ], [ 167.343750, -73.627789 ], [ 167.343750, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -75.140778 ], [ 164.531250, -75.140778 ], [ 164.531250, -75.845169 ], [ 163.125000, -75.845169 ], [ 163.125000, -77.466028 ], [ 164.531250, -77.466028 ], [ 164.531250, -78.349411 ], [ 165.937500, -78.349411 ], [ 165.937500, -78.630006 ], [ 167.343750, -78.630006 ], [ 167.343750, -78.903929 ], [ 164.531250, -78.903929 ], [ 164.531250, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.432371 ], [ 160.312500, -79.432371 ], [ 160.312500, -81.093214 ], [ 161.718750, -81.093214 ], [ 161.718750, -81.923186 ], [ 163.125000, -81.923186 ], [ 163.125000, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -83.194896 ], [ 167.343750, -83.194896 ], [ 167.343750, -83.359511 ], [ 168.750000, -83.359511 ], [ 168.750000, -83.829945 ], [ 170.156250, -83.829945 ], [ 170.156250, -83.979259 ], [ 172.968750, -83.979259 ], [ 172.968750, -84.405941 ], [ 174.375000, -84.405941 ], [ 174.375000, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 178.593750, -84.405941 ], [ 178.593750, -84.541361 ], [ 180.000000, -84.541361 ], [ 180.000000, -85.622069 ], [ -22.500000, -85.622069 ], [ -22.500000, -76.184995 ], [ -21.093750, -76.184995 ], [ -21.093750, -75.845169 ], [ -18.281250, -75.845169 ], [ -18.281250, -75.497157 ], [ -16.875000, -75.497157 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.395706 ], [ -11.250000, -72.395706 ], [ -11.250000, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.074056 ], [ 0.000000, -71.074056 ], [ 0.000000, -71.524909 ], [ 1.406250, -71.524909 ], [ 1.406250, -71.074056 ], [ 5.625000, -71.074056 ], [ 5.625000, -70.612614 ], [ 7.031250, -70.612614 ], [ 7.031250, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.612614 ], [ 12.656250, -70.612614 ], [ 12.656250, -70.140364 ], [ 14.062500, -70.140364 ], [ 14.062500, -70.612614 ], [ 15.468750, -70.612614 ], [ 15.468750, -70.140364 ], [ 18.281250, -70.140364 ], [ 18.281250, -69.657086 ], [ 19.687500, -69.657086 ], [ 19.687500, -70.140364 ], [ 21.093750, -70.140364 ], [ 21.093750, -70.612614 ], [ 28.125000, -70.612614 ], [ 28.125000, -70.140364 ], [ 30.937500, -70.140364 ], [ 30.937500, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.162558 ], [ 33.750000, -69.162558 ], [ 33.750000, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 36.562500, -69.162558 ], [ 36.562500, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.162558 ], [ 42.187500, -69.162558 ], [ 42.187500, -68.656555 ], [ 43.593750, -68.656555 ], [ 43.593750, -68.138852 ], [ 46.406250, -68.138852 ], [ 46.406250, -67.609221 ], [ 49.218750, -67.609221 ], [ 49.218750, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 52.031250, -66.513260 ], [ 52.031250, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.513260 ], [ 57.656250, -66.513260 ], [ 57.656250, -67.067433 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.406250, -65.946472 ], [ 136.406250, -67.067433 ], [ 146.250000, -67.067433 ], [ 146.250000, -68.138852 ], [ 149.062500, -68.138852 ], [ 149.062500, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -69.162558 ], [ 157.500000, -69.162558 ], [ 157.500000, -69.657086 ], [ 158.906250, -69.657086 ], [ 158.906250, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.612614 ], [ 167.343750, -70.612614 ], [ 167.343750, -71.074056 ], [ 170.156250, -71.074056 ], [ 170.156250, -71.524909 ], [ 171.562500, -71.524909 ], [ 171.562500, -72.395706 ], [ 170.156250, -72.395706 ], [ 170.156250, -73.627789 ], [ 167.343750, -73.627789 ], [ 167.343750, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -75.140778 ], [ 164.531250, -75.140778 ], [ 164.531250, -75.845169 ], [ 163.125000, -75.845169 ], [ 163.125000, -77.466028 ], [ 164.531250, -77.466028 ], [ 164.531250, -78.349411 ], [ 165.937500, -78.349411 ], [ 165.937500, -78.630006 ], [ 167.343750, -78.630006 ], [ 167.343750, -78.903929 ], [ 164.531250, -78.903929 ], [ 164.531250, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.432371 ], [ 160.312500, -79.432371 ], [ 160.312500, -81.093214 ], [ 161.718750, -81.093214 ], [ 161.718750, -81.923186 ], [ 163.125000, -81.923186 ], [ 163.125000, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -83.194896 ], [ 167.343750, -83.194896 ], [ 167.343750, -83.359511 ], [ 168.750000, -83.359511 ], [ 168.750000, -83.829945 ], [ 170.156250, -83.829945 ], [ 170.156250, -83.979259 ], [ 172.968750, -83.979259 ], [ 172.968750, -84.405941 ], [ 174.375000, -84.405941 ], [ 174.375000, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 178.593750, -84.405941 ], [ 178.593750, -84.541361 ], [ 180.000000, -84.541361 ], [ 180.000000, -85.622069 ], [ -22.500000, -85.622069 ], [ -22.500000, -76.184995 ], [ -21.093750, -76.184995 ], [ -21.093750, -75.845169 ], [ -18.281250, -75.845169 ], [ -18.281250, -75.497157 ], [ -16.875000, -75.497157 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.395706 ], [ -11.250000, -72.395706 ], [ -11.250000, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.074056 ], [ 0.000000, -71.074056 ], [ 0.000000, -71.524909 ], [ 1.406250, -71.524909 ], [ 1.406250, -71.074056 ], [ 5.625000, -71.074056 ], [ 5.625000, -70.612614 ], [ 7.031250, -70.612614 ], [ 7.031250, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.612614 ], [ 12.656250, -70.612614 ], [ 12.656250, -70.140364 ], [ 14.062500, -70.140364 ], [ 14.062500, -70.612614 ], [ 15.468750, -70.612614 ], [ 15.468750, -70.140364 ], [ 18.281250, -70.140364 ], [ 18.281250, -69.657086 ], [ 19.687500, -69.657086 ], [ 19.687500, -70.140364 ], [ 21.093750, -70.140364 ], [ 21.093750, -70.612614 ], [ 28.125000, -70.612614 ], [ 28.125000, -70.140364 ], [ 30.937500, -70.140364 ], [ 30.937500, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.162558 ], [ 33.750000, -69.162558 ], [ 33.750000, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 36.562500, -69.162558 ], [ 36.562500, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.162558 ], [ 42.187500, -69.162558 ], [ 42.187500, -68.656555 ], [ 43.593750, -68.656555 ], [ 43.593750, -68.138852 ], [ 46.406250, -68.138852 ], [ 46.406250, -67.609221 ], [ 49.218750, -67.609221 ], [ 49.218750, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 52.031250, -66.513260 ], [ 52.031250, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.513260 ], [ 57.656250, -66.513260 ], [ 57.656250, -67.067433 ], [ 59.062500, -67.067433 ], [ 59.062500, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -68.138852 ], [ 63.281250, -68.138852 ], [ 63.281250, -67.609221 ], [ 67.500000, -67.609221 ], [ 67.500000, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -68.656555 ], [ 70.312500, -68.656555 ], [ 70.312500, -69.657086 ], [ 68.906250, -69.657086 ], [ 68.906250, -70.140364 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -72.395706 ], [ 71.718750, -72.395706 ], [ 71.718750, -71.524909 ], [ 73.125000, -71.524909 ], [ 73.125000, -70.140364 ], [ 74.531250, -70.140364 ], [ 74.531250, -69.657086 ], [ 78.750000, -69.657086 ], [ 78.750000, -68.138852 ], [ 81.562500, -68.138852 ], [ 81.562500, -67.609221 ], [ 82.968750, -67.609221 ], [ 82.968750, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 95.625000, -67.067433 ], [ 95.625000, -67.609221 ], [ 97.031250, -67.609221 ], [ 97.031250, -67.067433 ], [ 101.250000, -67.067433 ], [ 101.250000, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -67.067433 ], [ 109.687500, -67.067433 ], [ 109.687500, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.513260 ], [ 116.718750, -66.513260 ], [ 116.718750, -67.067433 ], [ 122.343750, -67.067433 ], [ 122.343750, -66.513260 ], [ 135.000000, -66.513260 ], [ 135.000000, -65.946472 ], [ 136.406250, -65.946472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 75.937500, 54.162434 ], [ 75.937500, 53.330873 ], [ 73.125000, 53.330873 ], [ 73.125000, 54.162434 ], [ 70.312500, 54.162434 ], [ 70.312500, 54.977614 ], [ 66.093750, 54.977614 ], [ 66.093750, 54.162434 ], [ 61.875000, 54.162434 ], [ 61.875000, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 51.618017 ], [ 61.875000, 51.618017 ], [ 61.875000, 50.736455 ], [ 52.031250, 50.736455 ], [ 52.031250, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 49.837982 ], [ 46.406250, 49.837982 ], [ 46.406250, 47.989922 ], [ 47.812500, 47.989922 ], [ 47.812500, 47.040182 ], [ 49.218750, 47.040182 ], [ 49.218750, 46.073231 ], [ 47.812500, 46.073231 ], [ 47.812500, 45.089036 ], [ 46.406250, 45.089036 ], [ 46.406250, 44.087585 ], [ 47.812500, 44.087585 ], [ 47.812500, 42.032974 ], [ 49.218750, 42.032974 ], [ 49.218750, 40.979898 ], [ 46.406250, 40.979898 ], [ 46.406250, 42.032974 ], [ 45.000000, 42.032974 ], [ 45.000000, 43.068888 ], [ 39.375000, 43.068888 ], [ 39.375000, 44.087585 ], [ 37.968750, 44.087585 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 49.837982 ], [ 35.156250, 49.837982 ], [ 35.156250, 51.618017 ], [ 33.750000, 51.618017 ], [ 33.750000, 52.482780 ], [ 30.937500, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 58.077876 ], [ 26.718750, 58.077876 ], [ 26.718750, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 29.531250, 59.534318 ], [ 29.531250, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.930432 ], [ 29.531250, 60.930432 ], [ 29.531250, 61.606396 ], [ 30.937500, 61.606396 ], [ 30.937500, 62.915233 ], [ 29.531250, 62.915233 ], [ 29.531250, 63.548552 ], [ 30.937500, 63.548552 ], [ 30.937500, 64.168107 ], [ 29.531250, 64.168107 ], [ 29.531250, 67.609221 ], [ 28.125000, 67.609221 ], [ 28.125000, 69.162558 ], [ 30.937500, 69.162558 ], [ 30.937500, 69.657086 ], [ 33.750000, 69.657086 ], [ 33.750000, 69.162558 ], [ 36.562500, 69.162558 ], [ 36.562500, 68.656555 ], [ 39.375000, 68.656555 ], [ 39.375000, 68.138852 ], [ 40.781250, 68.138852 ], [ 40.781250, 66.513260 ], [ 39.375000, 66.513260 ], [ 39.375000, 65.946472 ], [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 64.774125 ], [ 39.375000, 64.774125 ], [ 39.375000, 65.366837 ], [ 40.781250, 65.366837 ], [ 40.781250, 65.946472 ], [ 42.187500, 65.946472 ], [ 42.187500, 66.513260 ], [ 43.593750, 66.513260 ], [ 43.593750, 65.946472 ], [ 45.000000, 65.946472 ], [ 45.000000, 66.513260 ], [ 47.812500, 66.513260 ], [ 47.812500, 67.609221 ], [ 50.625000, 67.609221 ], [ 50.625000, 68.138852 ], [ 53.437500, 68.138852 ], [ 53.437500, 68.656555 ], [ 59.062500, 68.656555 ], [ 59.062500, 68.138852 ], [ 60.468750, 68.138852 ], [ 60.468750, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.162558 ], [ 64.687500, 69.162558 ], [ 64.687500, 68.656555 ], [ 67.500000, 68.656555 ], [ 67.500000, 70.140364 ], [ 66.093750, 70.140364 ], [ 66.093750, 71.074056 ], [ 67.500000, 71.074056 ], [ 67.500000, 71.524909 ], [ 68.906250, 71.524909 ], [ 68.906250, 72.816074 ], [ 73.125000, 72.816074 ], [ 73.125000, 71.965388 ], [ 71.718750, 71.965388 ], [ 71.718750, 71.074056 ], [ 73.125000, 71.074056 ], [ 73.125000, 71.524909 ], [ 74.531250, 71.524909 ], [ 74.531250, 72.395706 ], [ 75.937500, 72.395706 ], [ 75.937500, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.395706 ], [ 80.156250, 72.395706 ], [ 80.156250, 50.736455 ], [ 78.750000, 50.736455 ], [ 78.750000, 52.482780 ], [ 77.343750, 52.482780 ], [ 77.343750, 54.162434 ], [ 75.937500, 54.162434 ] ], [ [ 35.156250, 66.513260 ], [ 33.750000, 66.513260 ], [ 33.750000, 65.946472 ], [ 35.156250, 65.946472 ], [ 35.156250, 66.513260 ] ], [ [ 67.500000, 68.138852 ], [ 68.906250, 68.138852 ], [ 68.906250, 68.656555 ], [ 67.500000, 68.656555 ], [ 67.500000, 68.138852 ] ], [ [ 73.125000, 70.140364 ], [ 74.531250, 70.140364 ], [ 74.531250, 71.074056 ], [ 73.125000, 71.074056 ], [ 73.125000, 70.140364 ] ], [ [ 71.718750, 67.067433 ], [ 71.718750, 65.946472 ], [ 73.125000, 65.946472 ], [ 73.125000, 66.513260 ], [ 74.531250, 66.513260 ], [ 74.531250, 69.162558 ], [ 73.125000, 69.162558 ], [ 73.125000, 67.067433 ], [ 71.718750, 67.067433 ] ] ], [ [ [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 22.500000, 54.977614 ], [ 22.500000, 54.162434 ] ] ], [ [ [ -178.593750, 68.138852 ], [ -177.187500, 68.138852 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.067433 ], [ -171.562500, 67.067433 ], [ -171.562500, 66.513260 ], [ -170.156250, 66.513260 ], [ -170.156250, 65.366837 ], [ -172.968750, 65.366837 ], [ -172.968750, 64.168107 ], [ -174.375000, 64.168107 ], [ -174.375000, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 68.656555 ], [ -178.593750, 68.656555 ], [ -178.593750, 68.138852 ] ] ], [ [ [ -178.593750, 70.612614 ], [ -180.000000, 70.612614 ], [ -180.000000, 71.524909 ], [ -178.593750, 71.524909 ], [ -178.593750, 70.612614 ] ] ], [ [ [ 68.906250, 76.184995 ], [ 67.500000, 76.184995 ], [ 67.500000, 75.845169 ], [ 64.687500, 75.845169 ], [ 64.687500, 75.497157 ], [ 63.281250, 75.497157 ], [ 63.281250, 75.140778 ], [ 61.875000, 75.140778 ], [ 61.875000, 74.775843 ], [ 60.468750, 74.775843 ], [ 60.468750, 74.402163 ], [ 59.062500, 74.402163 ], [ 59.062500, 73.627789 ], [ 57.656250, 73.627789 ], [ 57.656250, 72.816074 ], [ 56.250000, 72.816074 ], [ 56.250000, 72.395706 ], [ 54.843750, 72.395706 ], [ 54.843750, 71.965388 ], [ 56.250000, 71.965388 ], [ 56.250000, 71.074056 ], [ 57.656250, 71.074056 ], [ 57.656250, 70.612614 ], [ 53.437500, 70.612614 ], [ 53.437500, 71.074056 ], [ 52.031250, 71.074056 ], [ 52.031250, 72.816074 ], [ 53.437500, 72.816074 ], [ 53.437500, 73.226700 ], [ 54.843750, 73.226700 ], [ 54.843750, 74.402163 ], [ 56.250000, 74.402163 ], [ 56.250000, 75.140778 ], [ 57.656250, 75.140778 ], [ 57.656250, 75.497157 ], [ 59.062500, 75.497157 ], [ 59.062500, 75.845169 ], [ 60.468750, 75.845169 ], [ 60.468750, 76.184995 ], [ 63.281250, 76.184995 ], [ 63.281250, 76.516819 ], [ 66.093750, 76.516819 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ], [ 67.500000, 76.516819 ], [ 68.906250, 76.516819 ], [ 68.906250, 76.184995 ] ] ], [ [ [ 47.812500, 80.647035 ], [ 50.625000, 80.647035 ], [ 50.625000, 80.415707 ], [ 49.218750, 80.415707 ], [ 49.218750, 79.935918 ], [ 46.406250, 79.935918 ], [ 46.406250, 80.872827 ], [ 47.812500, 80.872827 ], [ 47.812500, 80.647035 ] ] ], [ [ [ 43.593750, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.609221 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 68.138852 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.125000, 53.330873 ], [ 73.125000, 54.162434 ], [ 70.312500, 54.162434 ], [ 70.312500, 54.977614 ], [ 66.093750, 54.977614 ], [ 66.093750, 54.162434 ], [ 61.875000, 54.162434 ], [ 61.875000, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 51.618017 ], [ 61.875000, 51.618017 ], [ 61.875000, 50.736455 ], [ 52.031250, 50.736455 ], [ 52.031250, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 49.837982 ], [ 46.406250, 49.837982 ], [ 46.406250, 47.989922 ], [ 47.812500, 47.989922 ], [ 47.812500, 47.040182 ], [ 49.218750, 47.040182 ], [ 49.218750, 46.073231 ], [ 47.812500, 46.073231 ], [ 47.812500, 45.089036 ], [ 46.406250, 45.089036 ], [ 46.406250, 44.087585 ], [ 47.812500, 44.087585 ], [ 47.812500, 42.032974 ], [ 49.218750, 42.032974 ], [ 49.218750, 40.979898 ], [ 46.406250, 40.979898 ], [ 46.406250, 42.032974 ], [ 45.000000, 42.032974 ], [ 45.000000, 43.068888 ], [ 39.375000, 43.068888 ], [ 39.375000, 44.087585 ], [ 37.968750, 44.087585 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 49.837982 ], [ 35.156250, 49.837982 ], [ 35.156250, 51.618017 ], [ 33.750000, 51.618017 ], [ 33.750000, 52.482780 ], [ 30.937500, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 58.077876 ], [ 26.718750, 58.077876 ], [ 26.718750, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 29.531250, 59.534318 ], [ 29.531250, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.930432 ], [ 29.531250, 60.930432 ], [ 29.531250, 61.606396 ], [ 30.937500, 61.606396 ], [ 30.937500, 62.915233 ], [ 29.531250, 62.915233 ], [ 29.531250, 63.548552 ], [ 30.937500, 63.548552 ], [ 30.937500, 64.168107 ], [ 29.531250, 64.168107 ], [ 29.531250, 67.609221 ], [ 28.125000, 67.609221 ], [ 28.125000, 69.162558 ], [ 30.937500, 69.162558 ], [ 30.937500, 69.657086 ], [ 33.750000, 69.657086 ], [ 33.750000, 69.162558 ], [ 36.562500, 69.162558 ], [ 36.562500, 68.656555 ], [ 39.375000, 68.656555 ], [ 39.375000, 68.138852 ], [ 40.781250, 68.138852 ], [ 40.781250, 66.513260 ], [ 39.375000, 66.513260 ], [ 39.375000, 65.946472 ], [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 64.774125 ], [ 39.375000, 64.774125 ], [ 39.375000, 65.366837 ], [ 40.781250, 65.366837 ], [ 40.781250, 65.946472 ], [ 42.187500, 65.946472 ], [ 42.187500, 66.513260 ], [ 43.593750, 66.513260 ], [ 43.593750, 65.946472 ], [ 45.000000, 65.946472 ], [ 45.000000, 66.513260 ], [ 47.812500, 66.513260 ], [ 47.812500, 67.609221 ], [ 50.625000, 67.609221 ], [ 50.625000, 68.138852 ], [ 53.437500, 68.138852 ], [ 53.437500, 68.656555 ], [ 59.062500, 68.656555 ], [ 59.062500, 68.138852 ], [ 60.468750, 68.138852 ], [ 60.468750, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.162558 ], [ 64.687500, 69.162558 ], [ 64.687500, 68.656555 ], [ 67.500000, 68.656555 ], [ 67.500000, 70.140364 ], [ 66.093750, 70.140364 ], [ 66.093750, 71.074056 ], [ 67.500000, 71.074056 ], [ 67.500000, 71.524909 ], [ 68.906250, 71.524909 ], [ 68.906250, 72.816074 ], [ 73.125000, 72.816074 ], [ 73.125000, 71.965388 ], [ 71.718750, 71.965388 ], [ 71.718750, 71.074056 ], [ 73.125000, 71.074056 ], [ 73.125000, 71.524909 ], [ 74.531250, 71.524909 ], [ 74.531250, 72.395706 ], [ 75.937500, 72.395706 ], [ 75.937500, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.395706 ], [ 80.156250, 72.395706 ], [ 80.156250, 50.736455 ], [ 78.750000, 50.736455 ], [ 78.750000, 52.482780 ], [ 77.343750, 52.482780 ], [ 77.343750, 53.330873 ], [ 73.125000, 53.330873 ] ], [ [ 73.125000, 69.162558 ], [ 73.125000, 67.067433 ], [ 71.718750, 67.067433 ], [ 71.718750, 65.946472 ], [ 73.125000, 65.946472 ], [ 73.125000, 66.513260 ], [ 74.531250, 66.513260 ], [ 74.531250, 69.162558 ], [ 73.125000, 69.162558 ] ], [ [ 35.156250, 65.946472 ], [ 35.156250, 66.513260 ], [ 33.750000, 66.513260 ], [ 33.750000, 65.946472 ], [ 35.156250, 65.946472 ] ], [ [ 67.500000, 68.656555 ], [ 67.500000, 68.138852 ], [ 68.906250, 68.138852 ], [ 68.906250, 68.656555 ], [ 67.500000, 68.656555 ] ], [ [ 73.125000, 71.074056 ], [ 73.125000, 70.140364 ], [ 74.531250, 70.140364 ], [ 74.531250, 71.074056 ], [ 73.125000, 71.074056 ] ] ], [ [ [ 22.500000, 54.977614 ], [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 22.500000, 54.977614 ] ] ], [ [ [ -178.593750, 68.656555 ], [ -178.593750, 68.138852 ], [ -177.187500, 68.138852 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.067433 ], [ -171.562500, 67.067433 ], [ -171.562500, 66.513260 ], [ -170.156250, 66.513260 ], [ -170.156250, 65.366837 ], [ -172.968750, 65.366837 ], [ -172.968750, 64.168107 ], [ -174.375000, 64.168107 ], [ -174.375000, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 68.656555 ], [ -178.593750, 68.656555 ] ] ], [ [ [ -178.593750, 71.524909 ], [ -178.593750, 70.612614 ], [ -180.000000, 70.612614 ], [ -180.000000, 71.524909 ], [ -178.593750, 71.524909 ] ] ], [ [ [ 67.500000, 76.840816 ], [ 67.500000, 76.516819 ], [ 68.906250, 76.516819 ], [ 68.906250, 76.184995 ], [ 67.500000, 76.184995 ], [ 67.500000, 75.845169 ], [ 64.687500, 75.845169 ], [ 64.687500, 75.497157 ], [ 63.281250, 75.497157 ], [ 63.281250, 75.140778 ], [ 61.875000, 75.140778 ], [ 61.875000, 74.775843 ], [ 60.468750, 74.775843 ], [ 60.468750, 74.402163 ], [ 59.062500, 74.402163 ], [ 59.062500, 73.627789 ], [ 57.656250, 73.627789 ], [ 57.656250, 72.816074 ], [ 56.250000, 72.816074 ], [ 56.250000, 72.395706 ], [ 54.843750, 72.395706 ], [ 54.843750, 71.965388 ], [ 56.250000, 71.965388 ], [ 56.250000, 71.074056 ], [ 57.656250, 70.612614 ], [ 53.437500, 70.612614 ], [ 53.437500, 71.074056 ], [ 52.031250, 71.074056 ], [ 52.031250, 72.816074 ], [ 53.437500, 72.816074 ], [ 53.437500, 73.226700 ], [ 54.843750, 73.226700 ], [ 54.843750, 74.402163 ], [ 56.250000, 74.402163 ], [ 56.250000, 75.140778 ], [ 57.656250, 75.140778 ], [ 57.656250, 75.497157 ], [ 59.062500, 75.497157 ], [ 59.062500, 75.845169 ], [ 60.468750, 75.845169 ], [ 60.468750, 76.184995 ], [ 63.281250, 76.184995 ], [ 63.281250, 76.516819 ], [ 66.093750, 76.516819 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ] ] ], [ [ [ 47.812500, 80.872827 ], [ 47.812500, 80.647035 ], [ 50.625000, 80.647035 ], [ 50.625000, 80.415707 ], [ 49.218750, 80.415707 ], [ 49.218750, 79.935918 ], [ 46.406250, 79.935918 ], [ 46.406250, 80.872827 ], [ 47.812500, 80.872827 ] ] ], [ [ [ 45.000000, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.609221 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.875000, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.840816 ], [ 111.093750, 76.840816 ], [ 111.093750, 76.516819 ], [ 112.500000, 76.516819 ], [ 112.500000, 76.184995 ], [ 113.906250, 76.184995 ], [ 113.906250, 75.140778 ], [ 112.500000, 75.140778 ], [ 112.500000, 74.775843 ], [ 111.093750, 74.775843 ], [ 111.093750, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.019543 ], [ 111.093750, 74.019543 ], [ 111.093750, 73.627789 ], [ 118.125000, 73.627789 ], [ 118.125000, 73.226700 ], [ 120.937500, 73.226700 ], [ 120.937500, 72.816074 ], [ 123.750000, 72.816074 ], [ 123.750000, 73.627789 ], [ 126.562500, 73.627789 ], [ 126.562500, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.816074 ], [ 129.375000, 72.816074 ], [ 129.375000, 71.965388 ], [ 127.968750, 71.965388 ], [ 127.968750, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 70.612614 ], [ 130.781250, 70.612614 ], [ 130.781250, 71.074056 ], [ 132.187500, 71.074056 ], [ 132.187500, 71.524909 ], [ 139.218750, 71.524909 ], [ 139.218750, 72.395706 ], [ 140.625000, 72.395706 ], [ 140.625000, 72.816074 ], [ 143.437500, 72.816074 ], [ 143.437500, 72.395706 ], [ 149.062500, 72.395706 ], [ 149.062500, 71.965388 ], [ 150.468750, 71.965388 ], [ 150.468750, 71.074056 ], [ 151.875000, 71.074056 ], [ 151.875000, 70.612614 ], [ 156.093750, 70.612614 ], [ 156.093750, 71.074056 ], [ 158.906250, 71.074056 ], [ 158.906250, 70.612614 ], [ 160.312500, 70.612614 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 167.343750, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 68.656555 ], [ 170.156250, 68.656555 ], [ 170.156250, 69.657086 ], [ 175.781250, 69.657086 ], [ 175.781250, 69.162558 ], [ 180.000000, 69.162558 ], [ 180.000000, 65.946472 ], [ 80.156250, 65.946472 ], [ 80.156250, 73.627789 ], [ 87.187500, 73.627789 ], [ 87.187500, 74.019543 ], [ 85.781250, 74.019543 ], [ 85.781250, 74.775843 ], [ 87.187500, 74.775843 ], [ 87.187500, 75.140778 ], [ 90.000000, 75.140778 ], [ 90.000000, 75.497157 ], [ 92.812500, 75.497157 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.840816 ], [ 102.656250, 76.840816 ], [ 102.656250, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.157163 ], [ 104.062500, 77.157163 ], [ 104.062500, 76.840816 ], [ 106.875000, 76.840816 ], [ 106.875000, 76.516819 ] ] ], [ [ [ 180.000000, 70.612614 ], [ 178.593750, 70.612614 ], [ 178.593750, 71.074056 ], [ 180.000000, 71.074056 ], [ 180.000000, 70.612614 ] ] ], [ [ [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.627789 ], [ 143.437500, 73.627789 ], [ 143.437500, 73.226700 ] ] ], [ [ [ 147.656250, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.775843 ], [ 146.250000, 74.775843 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ], [ 147.656250, 75.140778 ] ] ], [ [ [ 143.437500, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 74.775843 ], [ 136.406250, 74.775843 ], [ 136.406250, 75.497157 ], [ 137.812500, 75.497157 ], [ 137.812500, 75.845169 ], [ 139.218750, 75.845169 ], [ 139.218750, 76.184995 ], [ 142.031250, 76.184995 ], [ 142.031250, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.497157 ] ] ], [ [ [ 105.468750, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.630006 ], [ 101.250000, 78.630006 ], [ 101.250000, 79.171335 ], [ 102.656250, 79.171335 ], [ 102.656250, 78.903929 ], [ 104.062500, 78.903929 ], [ 104.062500, 78.630006 ], [ 105.468750, 78.630006 ], [ 105.468750, 78.349411 ] ] ], [ [ [ 97.031250, 80.647035 ], [ 98.437500, 80.647035 ], [ 98.437500, 80.178713 ], [ 99.843750, 80.178713 ], [ 99.843750, 78.630006 ], [ 97.031250, 78.630006 ], [ 97.031250, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 79.171335 ], [ 92.812500, 79.171335 ], [ 92.812500, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.415707 ], [ 92.812500, 80.415707 ], [ 92.812500, 80.872827 ], [ 94.218750, 80.872827 ], [ 94.218750, 81.093214 ], [ 97.031250, 81.093214 ], [ 97.031250, 80.647035 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 77.466028 ], [ 105.468750, 77.157163 ], [ 104.062500, 77.157163 ], [ 104.062500, 76.840816 ], [ 106.875000, 76.840816 ], [ 106.875000, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.840816 ], [ 111.093750, 76.840816 ], [ 111.093750, 76.516819 ], [ 112.500000, 76.516819 ], [ 112.500000, 76.184995 ], [ 113.906250, 76.184995 ], [ 113.906250, 75.140778 ], [ 112.500000, 75.140778 ], [ 112.500000, 74.775843 ], [ 111.093750, 74.775843 ], [ 111.093750, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.019543 ], [ 111.093750, 74.019543 ], [ 111.093750, 73.627789 ], [ 118.125000, 73.627789 ], [ 118.125000, 73.226700 ], [ 120.937500, 73.226700 ], [ 120.937500, 72.816074 ], [ 123.750000, 72.816074 ], [ 123.750000, 73.627789 ], [ 126.562500, 73.627789 ], [ 126.562500, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.816074 ], [ 129.375000, 72.816074 ], [ 129.375000, 71.965388 ], [ 127.968750, 71.965388 ], [ 127.968750, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 70.612614 ], [ 130.781250, 70.612614 ], [ 130.781250, 71.074056 ], [ 132.187500, 71.074056 ], [ 132.187500, 71.524909 ], [ 139.218750, 71.524909 ], [ 139.218750, 72.395706 ], [ 140.625000, 72.395706 ], [ 140.625000, 72.816074 ], [ 143.437500, 72.816074 ], [ 143.437500, 72.395706 ], [ 149.062500, 72.395706 ], [ 149.062500, 71.965388 ], [ 150.468750, 71.965388 ], [ 150.468750, 71.074056 ], [ 151.875000, 71.074056 ], [ 151.875000, 70.612614 ], [ 156.093750, 70.612614 ], [ 156.093750, 71.074056 ], [ 158.906250, 71.074056 ], [ 158.906250, 70.612614 ], [ 160.312500, 70.612614 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 167.343750, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 68.656555 ], [ 170.156250, 68.656555 ], [ 170.156250, 69.657086 ], [ 175.781250, 69.657086 ], [ 175.781250, 69.162558 ], [ 180.000000, 69.162558 ], [ 180.000000, 65.946472 ], [ 80.156250, 65.946472 ], [ 80.156250, 73.627789 ], [ 87.187500, 73.627789 ], [ 87.187500, 74.019543 ], [ 85.781250, 74.019543 ], [ 85.781250, 74.775843 ], [ 87.187500, 74.775843 ], [ 87.187500, 75.140778 ], [ 90.000000, 75.140778 ], [ 90.000000, 75.497157 ], [ 92.812500, 75.497157 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.840816 ], [ 102.656250, 76.840816 ], [ 102.656250, 77.466028 ], [ 105.468750, 77.466028 ] ] ], [ [ [ 180.000000, 71.074056 ], [ 180.000000, 70.612614 ], [ 178.593750, 70.612614 ], [ 178.593750, 71.074056 ], [ 180.000000, 71.074056 ] ] ], [ [ [ 142.031250, 73.627789 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.627789 ], [ 142.031250, 73.627789 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 147.656250, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.775843 ], [ 146.250000, 74.775843 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ 142.031250, 76.184995 ], [ 142.031250, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 74.775843 ], [ 136.406250, 74.775843 ], [ 136.406250, 75.497157 ], [ 137.812500, 75.497157 ], [ 137.812500, 75.845169 ], [ 139.218750, 75.845169 ], [ 139.218750, 76.184995 ], [ 142.031250, 76.184995 ] ] ], [ [ [ 99.843750, 78.630006 ], [ 97.031250, 78.630006 ], [ 97.031250, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 79.171335 ], [ 92.812500, 79.171335 ], [ 92.812500, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.415707 ], [ 92.812500, 80.415707 ], [ 92.812500, 80.872827 ], [ 94.218750, 80.872827 ], [ 94.218750, 81.093214 ], [ 97.031250, 81.093214 ], [ 97.031250, 80.647035 ], [ 98.437500, 80.647035 ], [ 98.437500, 80.178713 ], [ 99.843750, 80.178713 ], [ 99.843750, 78.630006 ] ] ], [ [ [ 99.843750, 78.630006 ], [ 101.250000, 78.630006 ], [ 101.250000, 79.171335 ], [ 102.656250, 79.171335 ], [ 102.656250, 78.903929 ], [ 104.062500, 78.903929 ], [ 104.062500, 78.630006 ], [ 105.468750, 78.630006 ], [ 105.468750, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.630006 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, 49.837982 ], [ 144.843750, 49.837982 ], [ 144.843750, 48.922499 ], [ 143.437500, 48.922499 ], [ 143.437500, 47.989922 ], [ 142.031250, 47.989922 ], [ 142.031250, 51.618017 ], [ 140.625000, 51.618017 ], [ 140.625000, 47.040182 ], [ 139.218750, 47.040182 ], [ 139.218750, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.089036 ], [ 136.406250, 45.089036 ], [ 136.406250, 44.087585 ], [ 135.000000, 44.087585 ], [ 135.000000, 43.068888 ], [ 132.187500, 43.068888 ], [ 132.187500, 42.032974 ], [ 130.781250, 42.032974 ], [ 130.781250, 45.089036 ], [ 133.593750, 45.089036 ], [ 133.593750, 47.040182 ], [ 135.000000, 47.040182 ], [ 135.000000, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.922499 ], [ 129.375000, 48.922499 ], [ 129.375000, 49.837982 ], [ 127.968750, 49.837982 ], [ 127.968750, 50.736455 ], [ 126.562500, 50.736455 ], [ 126.562500, 52.482780 ], [ 125.156250, 52.482780 ], [ 125.156250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 51.618017 ], [ 119.531250, 51.618017 ], [ 119.531250, 49.837982 ], [ 112.500000, 49.837982 ], [ 112.500000, 48.922499 ], [ 108.281250, 48.922499 ], [ 108.281250, 49.837982 ], [ 102.656250, 49.837982 ], [ 102.656250, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 49.837982 ], [ 94.218750, 49.837982 ], [ 94.218750, 50.736455 ], [ 91.406250, 50.736455 ], [ 91.406250, 49.837982 ], [ 88.593750, 49.837982 ], [ 88.593750, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.837982 ], [ 84.375000, 49.837982 ], [ 84.375000, 50.736455 ], [ 80.156250, 50.736455 ], [ 80.156250, 65.946472 ], [ 180.000000, 65.946472 ], [ 180.000000, 64.774125 ], [ 177.187500, 64.774125 ], [ 177.187500, 64.168107 ], [ 178.593750, 64.168107 ], [ 178.593750, 62.915233 ], [ 180.000000, 62.915233 ], [ 180.000000, 62.267923 ], [ 177.187500, 62.267923 ], [ 177.187500, 61.606396 ], [ 174.375000, 61.606396 ], [ 174.375000, 60.930432 ], [ 171.562500, 60.930432 ], [ 171.562500, 60.239811 ], [ 170.156250, 60.239811 ], [ 170.156250, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.813742 ], [ 161.718750, 58.813742 ], [ 161.718750, 57.326521 ], [ 163.125000, 57.326521 ], [ 163.125000, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.162434 ], [ 160.312500, 54.162434 ], [ 160.312500, 53.330873 ], [ 158.906250, 53.330873 ], [ 158.906250, 50.736455 ], [ 156.093750, 50.736455 ], [ 156.093750, 57.326521 ], [ 157.500000, 57.326521 ], [ 157.500000, 58.077876 ], [ 158.906250, 58.077876 ], [ 158.906250, 58.813742 ], [ 160.312500, 58.813742 ], [ 160.312500, 59.534318 ], [ 161.718750, 59.534318 ], [ 161.718750, 60.239811 ], [ 160.312500, 60.239811 ], [ 160.312500, 60.930432 ], [ 158.906250, 60.930432 ], [ 158.906250, 61.606396 ], [ 156.093750, 61.606396 ], [ 156.093750, 60.239811 ], [ 154.687500, 60.239811 ], [ 154.687500, 58.813742 ], [ 151.875000, 58.813742 ], [ 151.875000, 59.534318 ], [ 150.468750, 59.534318 ], [ 150.468750, 58.813742 ], [ 146.250000, 58.813742 ], [ 146.250000, 59.534318 ], [ 144.843750, 59.534318 ], [ 144.843750, 58.813742 ], [ 142.031250, 58.813742 ], [ 142.031250, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 55.776573 ], [ 136.406250, 55.776573 ], [ 136.406250, 54.162434 ], [ 139.218750, 54.162434 ], [ 139.218750, 53.330873 ], [ 143.437500, 53.330873 ], [ 143.437500, 49.837982 ] ], [ [ 164.531250, 61.606396 ], [ 164.531250, 62.267923 ], [ 163.125000, 62.267923 ], [ 163.125000, 61.606396 ], [ 164.531250, 61.606396 ] ], [ [ 163.125000, 60.239811 ], [ 163.125000, 60.930432 ], [ 161.718750, 60.930432 ], [ 161.718750, 60.239811 ], [ 163.125000, 60.239811 ] ] ], [ [ [ 143.437500, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.073231 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, 53.330873 ], [ 143.437500, 49.837982 ], [ 144.843750, 49.837982 ], [ 144.843750, 48.922499 ], [ 143.437500, 48.922499 ], [ 143.437500, 47.989922 ], [ 142.031250, 47.989922 ], [ 142.031250, 51.618017 ], [ 140.625000, 51.618017 ], [ 140.625000, 47.040182 ], [ 139.218750, 47.040182 ], [ 139.218750, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.089036 ], [ 136.406250, 45.089036 ], [ 136.406250, 44.087585 ], [ 135.000000, 44.087585 ], [ 135.000000, 43.068888 ], [ 132.187500, 43.068888 ], [ 132.187500, 42.032974 ], [ 130.781250, 42.032974 ], [ 130.781250, 45.089036 ], [ 133.593750, 45.089036 ], [ 133.593750, 47.040182 ], [ 135.000000, 47.040182 ], [ 135.000000, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.922499 ], [ 129.375000, 48.922499 ], [ 129.375000, 49.837982 ], [ 127.968750, 49.837982 ], [ 127.968750, 50.736455 ], [ 126.562500, 50.736455 ], [ 126.562500, 52.482780 ], [ 125.156250, 52.482780 ], [ 125.156250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 51.618017 ], [ 119.531250, 51.618017 ], [ 119.531250, 49.837982 ], [ 112.500000, 49.837982 ], [ 112.500000, 48.922499 ], [ 108.281250, 48.922499 ], [ 108.281250, 49.837982 ], [ 102.656250, 49.837982 ], [ 102.656250, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 49.837982 ], [ 94.218750, 49.837982 ], [ 94.218750, 50.736455 ], [ 91.406250, 50.736455 ], [ 91.406250, 49.837982 ], [ 88.593750, 49.837982 ], [ 88.593750, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.837982 ], [ 84.375000, 49.837982 ], [ 84.375000, 50.736455 ], [ 80.156250, 50.736455 ], [ 80.156250, 65.946472 ], [ 180.000000, 65.946472 ], [ 180.000000, 64.774125 ], [ 177.187500, 64.774125 ], [ 177.187500, 64.168107 ], [ 178.593750, 64.168107 ], [ 178.593750, 62.915233 ], [ 180.000000, 62.915233 ], [ 180.000000, 62.267923 ], [ 177.187500, 62.267923 ], [ 177.187500, 61.606396 ], [ 174.375000, 61.606396 ], [ 174.375000, 60.930432 ], [ 171.562500, 60.930432 ], [ 171.562500, 60.239811 ], [ 170.156250, 60.239811 ], [ 170.156250, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.813742 ], [ 161.718750, 58.813742 ], [ 161.718750, 57.326521 ], [ 163.125000, 57.326521 ], [ 163.125000, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.162434 ], [ 160.312500, 54.162434 ], [ 160.312500, 53.330873 ], [ 158.906250, 53.330873 ], [ 158.906250, 50.736455 ], [ 156.093750, 50.736455 ], [ 156.093750, 57.326521 ], [ 157.500000, 57.326521 ], [ 157.500000, 58.077876 ], [ 158.906250, 58.077876 ], [ 158.906250, 58.813742 ], [ 160.312500, 58.813742 ], [ 160.312500, 59.534318 ], [ 161.718750, 59.534318 ], [ 161.718750, 60.239811 ], [ 160.312500, 60.239811 ], [ 160.312500, 60.930432 ], [ 158.906250, 60.930432 ], [ 158.906250, 61.606396 ], [ 156.093750, 61.606396 ], [ 156.093750, 60.239811 ], [ 154.687500, 60.239811 ], [ 154.687500, 58.813742 ], [ 151.875000, 58.813742 ], [ 151.875000, 59.534318 ], [ 150.468750, 59.534318 ], [ 150.468750, 58.813742 ], [ 146.250000, 58.813742 ], [ 146.250000, 59.534318 ], [ 144.843750, 59.534318 ], [ 144.843750, 58.813742 ], [ 142.031250, 58.813742 ], [ 142.031250, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 55.776573 ], [ 136.406250, 55.776573 ], [ 136.406250, 54.162434 ], [ 139.218750, 54.162434 ], [ 139.218750, 53.330873 ], [ 143.437500, 53.330873 ] ], [ [ 163.125000, 60.239811 ], [ 163.125000, 60.930432 ], [ 161.718750, 60.930432 ], [ 161.718750, 60.239811 ], [ 163.125000, 60.239811 ] ], [ [ 163.125000, 62.267923 ], [ 163.125000, 61.606396 ], [ 164.531250, 61.606396 ], [ 164.531250, 62.267923 ], [ 163.125000, 62.267923 ] ] ], [ [ [ 142.031250, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 47.040182 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.687500, 69.657086 ], [ 21.093750, 69.657086 ], [ 21.093750, 70.140364 ], [ 22.500000, 70.140364 ], [ 22.500000, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 71.074056 ], [ 28.125000, 71.074056 ], [ 28.125000, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.140364 ], [ 29.531250, 70.140364 ], [ 29.531250, 69.657086 ], [ 26.718750, 69.657086 ], [ 26.718750, 69.162558 ], [ 25.312500, 69.162558 ], [ 25.312500, 68.656555 ], [ 21.093750, 68.656555 ], [ 21.093750, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 69.657086 ] ] ], [ [ [ 30.937500, 69.657086 ], [ 30.937500, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.657086 ], [ 30.937500, 69.657086 ] ] ], [ [ [ 18.281250, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.630006 ], [ 19.687500, 78.630006 ], [ 19.687500, 78.061989 ], [ 18.281250, 78.061989 ], [ 18.281250, 77.157163 ], [ 16.875000, 77.157163 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 77.157163 ], [ 14.062500, 77.157163 ], [ 14.062500, 77.767582 ], [ 12.656250, 77.767582 ], [ 12.656250, 78.349411 ], [ 11.250000, 78.349411 ], [ 11.250000, 79.171335 ], [ 9.843750, 79.171335 ], [ 9.843750, 79.687184 ], [ 15.468750, 79.687184 ], [ 15.468750, 79.935918 ], [ 16.875000, 79.935918 ], [ 16.875000, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.432371 ] ] ], [ [ [ 22.500000, 78.061989 ], [ 23.906250, 78.061989 ], [ 23.906250, 77.767582 ], [ 25.312500, 77.767582 ], [ 25.312500, 77.466028 ], [ 21.093750, 77.466028 ], [ 21.093750, 78.349411 ], [ 22.500000, 78.349411 ], [ 22.500000, 78.061989 ] ] ], [ [ [ 25.312500, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 79.687184 ], [ 25.312500, 79.687184 ], [ 25.312500, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.935918 ], [ 18.281250, 79.935918 ], [ 18.281250, 80.178713 ], [ 16.875000, 80.178713 ], [ 16.875000, 80.415707 ], [ 19.687500, 80.415707 ], [ 19.687500, 80.647035 ], [ 21.093750, 80.647035 ], [ 21.093750, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.178713 ] ] ], [ [ [ 15.468750, 65.366837 ], [ 14.062500, 65.366837 ], [ 14.062500, 64.168107 ], [ 12.656250, 64.168107 ], [ 12.656250, 63.548552 ], [ 11.250000, 63.548552 ], [ 11.250000, 62.267923 ], [ 12.656250, 62.267923 ], [ 12.656250, 59.534318 ], [ 11.250000, 59.534318 ], [ 11.250000, 58.813742 ], [ 8.437500, 58.813742 ], [ 8.437500, 58.077876 ], [ 5.625000, 58.077876 ], [ 5.625000, 62.915233 ], [ 8.437500, 62.915233 ], [ 8.437500, 64.168107 ], [ 9.843750, 64.168107 ], [ 9.843750, 64.774125 ], [ 11.250000, 64.774125 ], [ 11.250000, 65.366837 ], [ 12.656250, 65.366837 ], [ 12.656250, 66.513260 ], [ 14.062500, 66.513260 ], [ 14.062500, 67.609221 ], [ 15.468750, 67.609221 ], [ 15.468750, 65.366837 ] ] ], [ [ [ 16.875000, 67.609221 ], [ 15.468750, 67.609221 ], [ 15.468750, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 67.609221 ] ] ], [ [ [ 18.281250, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 68.656555 ], [ 18.281250, 68.656555 ], [ 18.281250, 68.138852 ] ] ], [ [ [ 19.687500, 68.656555 ], [ 18.281250, 68.656555 ], [ 18.281250, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.656555 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 67.609221 ], [ 15.468750, 65.366837 ], [ 14.062500, 65.366837 ], [ 14.062500, 64.168107 ], [ 12.656250, 64.168107 ], [ 12.656250, 63.548552 ], [ 11.250000, 63.548552 ], [ 11.250000, 62.267923 ], [ 12.656250, 62.267923 ], [ 12.656250, 59.534318 ], [ 11.250000, 59.534318 ], [ 11.250000, 58.813742 ], [ 8.437500, 58.813742 ], [ 8.437500, 58.077876 ], [ 5.625000, 58.077876 ], [ 5.625000, 62.915233 ], [ 8.437500, 62.915233 ], [ 8.437500, 64.168107 ], [ 9.843750, 64.168107 ], [ 9.843750, 64.774125 ], [ 11.250000, 64.774125 ], [ 11.250000, 65.366837 ], [ 12.656250, 65.366837 ], [ 12.656250, 66.513260 ], [ 14.062500, 66.513260 ], [ 14.062500, 67.609221 ], [ 15.468750, 67.609221 ] ] ], [ [ [ 16.875000, 68.138852 ], [ 16.875000, 67.609221 ], [ 15.468750, 67.609221 ], [ 15.468750, 68.138852 ], [ 16.875000, 68.138852 ] ] ], [ [ [ 18.281250, 68.656555 ], [ 18.281250, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 68.656555 ], [ 18.281250, 68.656555 ] ] ], [ [ [ 29.531250, 69.657086 ], [ 26.718750, 69.657086 ], [ 26.718750, 69.162558 ], [ 25.312500, 69.162558 ], [ 25.312500, 68.656555 ], [ 21.093750, 68.656555 ], [ 21.093750, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 69.657086 ], [ 21.093750, 69.657086 ], [ 21.093750, 70.140364 ], [ 22.500000, 70.140364 ], [ 22.500000, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 71.074056 ], [ 28.125000, 71.074056 ], [ 28.125000, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.140364 ], [ 29.531250, 70.140364 ], [ 29.531250, 69.657086 ] ] ], [ [ [ 19.687500, 68.656555 ], [ 18.281250, 68.656555 ], [ 18.281250, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.656555 ] ] ], [ [ [ 16.875000, 79.935918 ], [ 16.875000, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.630006 ], [ 19.687500, 78.630006 ], [ 19.687500, 78.061989 ], [ 18.281250, 78.061989 ], [ 18.281250, 77.157163 ], [ 16.875000, 77.157163 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 77.157163 ], [ 14.062500, 77.157163 ], [ 14.062500, 77.767582 ], [ 12.656250, 77.767582 ], [ 12.656250, 78.349411 ], [ 11.250000, 78.349411 ], [ 11.250000, 79.171335 ], [ 9.843750, 79.171335 ], [ 9.843750, 79.687184 ], [ 15.468750, 79.687184 ], [ 15.468750, 79.935918 ], [ 16.875000, 79.935918 ] ] ], [ [ [ 22.500000, 78.349411 ], [ 22.500000, 78.061989 ], [ 23.906250, 78.061989 ], [ 23.906250, 77.767582 ], [ 25.312500, 77.767582 ], [ 25.312500, 77.466028 ], [ 21.093750, 77.466028 ], [ 21.093750, 78.349411 ], [ 22.500000, 78.349411 ] ] ], [ [ [ 21.093750, 80.647035 ], [ 21.093750, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 79.687184 ], [ 25.312500, 79.687184 ], [ 25.312500, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.935918 ], [ 18.281250, 79.935918 ], [ 18.281250, 80.178713 ], [ 16.875000, 80.178713 ], [ 16.875000, 80.415707 ], [ 19.687500, 80.415707 ], [ 19.687500, 80.647035 ], [ 21.093750, 80.647035 ] ] ], [ [ [ 29.531250, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.657086 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 54.977614 ] ] ], [ [ [ 9.843750, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 55.776573 ], [ 9.843750, 55.776573 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 56.559482 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.250000, 55.776573 ], [ 9.843750, 55.776573 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 55.776573 ] ] ], [ [ [ 11.250000, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.776573 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 68.138852 ], [ 23.906250, 68.138852 ], [ 23.906250, 65.946472 ], [ 22.500000, 65.946472 ], [ 22.500000, 65.366837 ], [ 21.093750, 65.366837 ], [ 21.093750, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.267923 ], [ 16.875000, 62.267923 ], [ 16.875000, 60.930432 ], [ 18.281250, 60.930432 ], [ 18.281250, 58.813742 ], [ 16.875000, 58.813742 ], [ 16.875000, 56.559482 ], [ 15.468750, 56.559482 ], [ 15.468750, 55.776573 ], [ 14.062500, 55.776573 ], [ 14.062500, 54.977614 ], [ 12.656250, 54.977614 ], [ 12.656250, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 59.534318 ], [ 12.656250, 59.534318 ], [ 12.656250, 62.267923 ], [ 11.250000, 62.267923 ], [ 11.250000, 63.548552 ], [ 12.656250, 63.548552 ], [ 12.656250, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 65.366837 ], [ 15.468750, 65.366837 ], [ 15.468750, 67.609221 ], [ 16.875000, 67.609221 ], [ 16.875000, 68.138852 ], [ 18.281250, 68.138852 ], [ 18.281250, 68.656555 ], [ 19.687500, 68.656555 ], [ 19.687500, 69.162558 ], [ 21.093750, 69.162558 ], [ 21.093750, 68.656555 ], [ 22.500000, 68.656555 ], [ 22.500000, 68.138852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 69.162558 ], [ 21.093750, 68.656555 ], [ 22.500000, 68.656555 ], [ 22.500000, 68.138852 ], [ 23.906250, 68.138852 ], [ 23.906250, 65.946472 ], [ 22.500000, 65.946472 ], [ 22.500000, 65.366837 ], [ 21.093750, 65.366837 ], [ 21.093750, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.267923 ], [ 16.875000, 62.267923 ], [ 16.875000, 60.930432 ], [ 18.281250, 60.930432 ], [ 18.281250, 58.813742 ], [ 16.875000, 58.813742 ], [ 16.875000, 56.559482 ], [ 15.468750, 56.559482 ], [ 15.468750, 55.776573 ], [ 14.062500, 55.776573 ], [ 14.062500, 54.977614 ], [ 12.656250, 54.977614 ], [ 12.656250, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 59.534318 ], [ 12.656250, 59.534318 ], [ 12.656250, 62.267923 ], [ 11.250000, 62.267923 ], [ 11.250000, 63.548552 ], [ 12.656250, 63.548552 ], [ 12.656250, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 65.366837 ], [ 15.468750, 65.366837 ], [ 15.468750, 67.609221 ], [ 16.875000, 67.609221 ], [ 16.875000, 68.138852 ], [ 18.281250, 68.138852 ], [ 18.281250, 68.656555 ], [ 19.687500, 68.656555 ], [ 19.687500, 69.162558 ], [ 21.093750, 69.162558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 51.618017 ], [ 4.218750, 51.618017 ], [ 4.218750, 53.330873 ], [ 7.031250, 53.330873 ], [ 7.031250, 51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.330873 ], [ 7.031250, 51.618017 ], [ 4.218750, 51.618017 ], [ 4.218750, 53.330873 ], [ 7.031250, 53.330873 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 49.837982 ], [ 4.218750, 49.837982 ], [ 4.218750, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 5.625000, 51.618017 ], [ 5.625000, 49.837982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.618017 ], [ 5.625000, 49.837982 ], [ 4.218750, 49.837982 ], [ 4.218750, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 5.625000, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.162434 ], [ 14.062500, 54.162434 ], [ 14.062500, 50.736455 ], [ 12.656250, 50.736455 ], [ 12.656250, 48.922499 ], [ 14.062500, 48.922499 ], [ 14.062500, 47.989922 ], [ 8.437500, 47.989922 ], [ 8.437500, 48.922499 ], [ 5.625000, 48.922499 ], [ 5.625000, 51.618017 ], [ 7.031250, 51.618017 ], [ 7.031250, 53.330873 ], [ 8.437500, 53.330873 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 14.062500, 54.162434 ], [ 14.062500, 50.736455 ], [ 12.656250, 50.736455 ], [ 12.656250, 48.922499 ], [ 14.062500, 48.922499 ], [ 14.062500, 47.989922 ], [ 8.437500, 47.989922 ], [ 8.437500, 48.922499 ], [ 5.625000, 48.922499 ], [ 5.625000, 51.618017 ], [ 7.031250, 51.618017 ], [ 7.031250, 53.330873 ], [ 8.437500, 53.330873 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 46.073231 ], [ 5.625000, 46.073231 ], [ 5.625000, 47.040182 ], [ 7.031250, 47.040182 ], [ 7.031250, 47.989922 ], [ 9.843750, 47.989922 ], [ 9.843750, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 47.989922 ], [ 9.843750, 46.073231 ], [ 5.625000, 46.073231 ], [ 5.625000, 47.040182 ], [ 7.031250, 47.040182 ], [ 7.031250, 47.989922 ], [ 9.843750, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 50.736455 ], [ 16.875000, 50.736455 ], [ 16.875000, 49.837982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 50.736455 ], [ 16.875000, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 50.736455 ], [ 16.875000, 50.736455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 52.482780 ], [ 22.500000, 52.482780 ], [ 22.500000, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 19.687500, 48.922499 ], [ 19.687500, 49.837982 ], [ 16.875000, 49.837982 ], [ 16.875000, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 54.162434 ], [ 23.906250, 54.162434 ], [ 23.906250, 52.482780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 54.162434 ], [ 23.906250, 52.482780 ], [ 22.500000, 52.482780 ], [ 22.500000, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 19.687500, 48.922499 ], [ 19.687500, 49.837982 ], [ 16.875000, 49.837982 ], [ 16.875000, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 54.162434 ], [ 23.906250, 54.162434 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 47.040182 ], [ 15.468750, 47.040182 ], [ 15.468750, 46.073231 ], [ 12.656250, 46.073231 ], [ 12.656250, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 47.989922 ], [ 14.062500, 47.989922 ], [ 14.062500, 48.922499 ], [ 16.875000, 48.922499 ], [ 16.875000, 47.040182 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 48.922499 ], [ 16.875000, 47.040182 ], [ 15.468750, 47.040182 ], [ 15.468750, 46.073231 ], [ 12.656250, 46.073231 ], [ 12.656250, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 47.989922 ], [ 14.062500, 47.989922 ], [ 14.062500, 48.922499 ], [ 16.875000, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 47.040182 ] ] ], [ [ [ 15.468750, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 45.089036 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 46.073231 ], [ 15.468750, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 46.073231 ], [ 15.468750, 46.073231 ] ] ], [ [ [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 46.073231 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 36.597889 ], [ 12.656250, 36.597889 ], [ 12.656250, 37.718590 ], [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ] ] ], [ [ [ 12.656250, 44.087585 ], [ 14.062500, 44.087585 ], [ 14.062500, 42.032974 ], [ 15.468750, 42.032974 ], [ 15.468750, 40.979898 ], [ 16.875000, 40.979898 ], [ 16.875000, 37.718590 ], [ 15.468750, 37.718590 ], [ 15.468750, 39.909736 ], [ 14.062500, 39.909736 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 42.032974 ], [ 9.843750, 42.032974 ], [ 9.843750, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 46.073231 ], [ 9.843750, 46.073231 ], [ 9.843750, 47.040182 ], [ 12.656250, 47.040182 ], [ 12.656250, 44.087585 ] ] ], [ [ [ 9.843750, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.843750, 40.979898 ], [ 9.843750, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ], [ 12.656250, 36.597889 ], [ 12.656250, 37.718590 ], [ 15.468750, 37.718590 ] ] ], [ [ [ 12.656250, 47.040182 ], [ 12.656250, 44.087585 ], [ 14.062500, 44.087585 ], [ 14.062500, 42.032974 ], [ 15.468750, 42.032974 ], [ 15.468750, 40.979898 ], [ 16.875000, 40.979898 ], [ 16.875000, 37.718590 ], [ 15.468750, 37.718590 ], [ 15.468750, 39.909736 ], [ 14.062500, 39.909736 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 42.032974 ], [ 9.843750, 42.032974 ], [ 9.843750, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 46.073231 ], [ 9.843750, 46.073231 ], [ 9.843750, 47.040182 ], [ 12.656250, 47.040182 ] ] ], [ [ [ 9.843750, 40.979898 ], [ 9.843750, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.843750, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 43.068888 ], [ 15.468750, 44.087585 ], [ 16.875000, 44.087585 ], [ 16.875000, 43.068888 ], [ 15.468750, 43.068888 ] ] ], [ [ [ 18.281250, 46.073231 ], [ 18.281250, 45.089036 ], [ 15.468750, 45.089036 ], [ 15.468750, 46.073231 ], [ 18.281250, 46.073231 ] ] ], [ [ [ 18.281250, 43.068888 ], [ 18.281250, 42.032974 ], [ 16.875000, 42.032974 ], [ 16.875000, 43.068888 ], [ 18.281250, 43.068888 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 43.068888 ], [ 15.468750, 43.068888 ], [ 15.468750, 44.087585 ], [ 16.875000, 44.087585 ], [ 16.875000, 43.068888 ] ] ], [ [ [ 18.281250, 45.089036 ], [ 15.468750, 45.089036 ], [ 15.468750, 46.073231 ], [ 18.281250, 46.073231 ], [ 18.281250, 45.089036 ] ] ], [ [ [ 16.875000, 43.068888 ], [ 18.281250, 43.068888 ], [ 18.281250, 42.032974 ], [ 16.875000, 42.032974 ], [ 16.875000, 43.068888 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 47.040182 ], [ 21.093750, 47.040182 ], [ 21.093750, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 47.040182 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 47.989922 ], [ 22.500000, 47.040182 ], [ 21.093750, 47.040182 ], [ 21.093750, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 47.989922 ], [ 22.500000, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 18.281250, 48.922499 ], [ 18.281250, 49.837982 ], [ 19.687500, 49.837982 ], [ 19.687500, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 49.837982 ], [ 19.687500, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 18.281250, 48.922499 ], [ 18.281250, 49.837982 ], [ 19.687500, 49.837982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 44.087585 ], [ 15.468750, 44.087585 ], [ 15.468750, 45.089036 ], [ 19.687500, 45.089036 ], [ 19.687500, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 45.089036 ], [ 19.687500, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 44.087585 ], [ 15.468750, 44.087585 ], [ 15.468750, 45.089036 ], [ 19.687500, 45.089036 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.068888 ], [ 19.687500, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 43.068888 ], [ 19.687500, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 45.089036 ], [ 18.281250, 45.089036 ], [ 18.281250, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 44.087585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 46.073231 ], [ 21.093750, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 45.089036 ], [ 18.281250, 45.089036 ], [ 18.281250, 46.073231 ], [ 21.093750, 46.073231 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 42.032974 ], [ 19.687500, 42.032974 ], [ 19.687500, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.032974 ], [ 19.687500, 42.032974 ], [ 19.687500, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 39.909736 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 39.909736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 42.032974 ], [ 21.093750, 39.909736 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.032974 ], [ 21.093750, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.032974 ], [ 22.500000, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 42.032974 ], [ 22.500000, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, 63.548552 ], [ 29.531250, 63.548552 ], [ 29.531250, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 60.930432 ], [ 28.125000, 60.930432 ], [ 28.125000, 60.239811 ], [ 23.906250, 60.239811 ], [ 23.906250, 59.534318 ], [ 22.500000, 59.534318 ], [ 22.500000, 60.239811 ], [ 21.093750, 60.239811 ], [ 21.093750, 62.915233 ], [ 22.500000, 62.915233 ], [ 22.500000, 63.548552 ], [ 23.906250, 63.548552 ], [ 23.906250, 64.168107 ], [ 25.312500, 64.168107 ], [ 25.312500, 65.366837 ], [ 23.906250, 65.366837 ], [ 23.906250, 68.138852 ], [ 22.500000, 68.138852 ], [ 22.500000, 68.656555 ], [ 25.312500, 68.656555 ], [ 25.312500, 69.162558 ], [ 26.718750, 69.162558 ], [ 26.718750, 69.657086 ], [ 29.531250, 69.657086 ], [ 29.531250, 69.162558 ], [ 28.125000, 69.162558 ], [ 28.125000, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 64.168107 ], [ 30.937500, 64.168107 ], [ 30.937500, 63.548552 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 69.657086 ], [ 28.125000, 69.162558 ], [ 28.125000, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 64.168107 ], [ 30.937500, 64.168107 ], [ 30.937500, 63.548552 ], [ 29.531250, 63.548552 ], [ 29.531250, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 60.930432 ], [ 28.125000, 60.930432 ], [ 28.125000, 60.239811 ], [ 23.906250, 60.239811 ], [ 23.906250, 59.534318 ], [ 22.500000, 59.534318 ], [ 22.500000, 60.239811 ], [ 21.093750, 60.239811 ], [ 21.093750, 62.915233 ], [ 22.500000, 62.915233 ], [ 22.500000, 63.548552 ], [ 23.906250, 63.548552 ], [ 23.906250, 64.168107 ], [ 25.312500, 64.168107 ], [ 25.312500, 65.366837 ], [ 23.906250, 65.366837 ], [ 23.906250, 68.138852 ], [ 22.500000, 68.138852 ], [ 22.500000, 68.656555 ], [ 25.312500, 68.656555 ], [ 25.312500, 69.162558 ], [ 26.718750, 69.162558 ], [ 26.718750, 69.657086 ], [ 29.531250, 69.657086 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.559482 ], [ 22.500000, 56.559482 ], [ 22.500000, 55.776573 ], [ 21.093750, 55.776573 ], [ 21.093750, 57.326521 ], [ 23.906250, 57.326521 ], [ 23.906250, 58.077876 ], [ 25.312500, 58.077876 ], [ 25.312500, 57.326521 ], [ 28.125000, 57.326521 ], [ 28.125000, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 58.077876 ], [ 25.312500, 57.326521 ], [ 28.125000, 57.326521 ], [ 28.125000, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.559482 ], [ 22.500000, 56.559482 ], [ 21.093750, 55.776573 ], [ 21.093750, 57.326521 ], [ 23.906250, 57.326521 ], [ 23.906250, 58.077876 ], [ 25.312500, 58.077876 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 58.813742 ], [ 26.718750, 58.813742 ], [ 26.718750, 58.077876 ], [ 28.125000, 58.077876 ], [ 28.125000, 57.326521 ], [ 25.312500, 57.326521 ], [ 25.312500, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.906250, 59.534318 ], [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 26.718750, 58.813742 ], [ 26.718750, 58.077876 ], [ 28.125000, 58.077876 ], [ 28.125000, 57.326521 ], [ 25.312500, 57.326521 ], [ 25.312500, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.906250, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 54.977614 ], [ 25.312500, 54.977614 ], [ 25.312500, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.776573 ], [ 22.500000, 55.776573 ], [ 22.500000, 56.559482 ], [ 25.312500, 56.559482 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.559482 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ], [ 25.312500, 54.977614 ], [ 25.312500, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.776573 ], [ 22.500000, 55.776573 ], [ 22.500000, 56.559482 ], [ 25.312500, 56.559482 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 53.330873 ], [ 30.937500, 53.330873 ], [ 30.937500, 52.482780 ], [ 32.343750, 52.482780 ], [ 32.343750, 51.618017 ], [ 22.500000, 51.618017 ], [ 22.500000, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.776573 ], [ 30.937500, 55.776573 ], [ 30.937500, 54.162434 ], [ 32.343750, 54.162434 ], [ 32.343750, 53.330873 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, 55.776573 ], [ 30.937500, 54.162434 ], [ 32.343750, 54.162434 ], [ 32.343750, 53.330873 ], [ 30.937500, 53.330873 ], [ 30.937500, 52.482780 ], [ 32.343750, 52.482780 ], [ 32.343750, 51.618017 ], [ 22.500000, 51.618017 ], [ 22.500000, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.776573 ], [ 30.937500, 55.776573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.087585 ], [ 21.093750, 44.087585 ], [ 21.093750, 47.040182 ], [ 22.500000, 47.040182 ], [ 22.500000, 47.989922 ], [ 26.718750, 47.989922 ], [ 26.718750, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 47.989922 ], [ 26.718750, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.087585 ], [ 21.093750, 44.087585 ], [ 21.093750, 47.040182 ], [ 22.500000, 47.989922 ], [ 26.718750, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 44.087585 ], [ 28.125000, 44.087585 ], [ 28.125000, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 44.087585 ], [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 44.087585 ], [ 28.125000, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 46.073231 ], [ 28.125000, 46.073231 ], [ 28.125000, 47.040182 ], [ 26.718750, 47.040182 ], [ 26.718750, 47.989922 ], [ 29.531250, 47.989922 ], [ 29.531250, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 47.989922 ], [ 29.531250, 46.073231 ], [ 28.125000, 46.073231 ], [ 28.125000, 47.040182 ], [ 26.718750, 47.989922 ], [ 29.531250, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 49.837982 ], [ 39.375000, 49.837982 ], [ 39.375000, 47.989922 ], [ 37.968750, 47.989922 ], [ 37.968750, 47.040182 ], [ 35.156250, 47.040182 ], [ 35.156250, 44.087585 ], [ 33.750000, 44.087585 ], [ 33.750000, 46.073231 ], [ 32.343750, 46.073231 ], [ 32.343750, 47.040182 ], [ 30.937500, 47.040182 ], [ 30.937500, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 46.073231 ], [ 29.531250, 46.073231 ], [ 29.531250, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 49.837982 ], [ 23.906250, 49.837982 ], [ 23.906250, 51.618017 ], [ 32.343750, 51.618017 ], [ 32.343750, 52.482780 ], [ 33.750000, 52.482780 ], [ 33.750000, 51.618017 ], [ 35.156250, 51.618017 ], [ 35.156250, 49.837982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.482780 ], [ 33.750000, 51.618017 ], [ 35.156250, 51.618017 ], [ 35.156250, 49.837982 ], [ 39.375000, 49.837982 ], [ 39.375000, 47.989922 ], [ 37.968750, 47.989922 ], [ 37.968750, 47.040182 ], [ 35.156250, 47.040182 ], [ 35.156250, 44.087585 ], [ 33.750000, 44.087585 ], [ 33.750000, 46.073231 ], [ 32.343750, 46.073231 ], [ 32.343750, 47.040182 ], [ 30.937500, 47.040182 ], [ 30.937500, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 46.073231 ], [ 29.531250, 46.073231 ], [ 29.531250, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 49.837982 ], [ 23.906250, 49.837982 ], [ 23.906250, 51.618017 ], [ 32.343750, 51.618017 ], [ 32.343750, 52.482780 ], [ 33.750000, 52.482780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 40.979898 ], [ 42.187500, 40.979898 ], [ 42.187500, 42.032974 ], [ 40.781250, 42.032974 ], [ 40.781250, 43.068888 ], [ 45.000000, 43.068888 ], [ 45.000000, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 43.068888 ], [ 45.000000, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 40.979898 ], [ 42.187500, 40.979898 ], [ 42.187500, 42.032974 ], [ 40.781250, 42.032974 ], [ 40.781250, 43.068888 ], [ 45.000000, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 31.952162 ], [ 9.843750, 31.952162 ], [ 9.843750, 30.751278 ], [ 8.437500, 30.751278 ], [ 8.437500, 33.137551 ], [ 7.031250, 33.137551 ], [ 7.031250, 34.307144 ], [ 8.437500, 34.307144 ], [ 8.437500, 36.597889 ], [ 11.250000, 36.597889 ], [ 11.250000, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 36.597889 ], [ 11.250000, 31.952162 ], [ 9.843750, 31.952162 ], [ 9.843750, 30.751278 ], [ 8.437500, 30.751278 ], [ 8.437500, 33.137551 ], [ 7.031250, 33.137551 ], [ 7.031250, 34.307144 ], [ 8.437500, 34.307144 ], [ 8.437500, 36.597889 ], [ 11.250000, 36.597889 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 34.307144 ], [ 7.031250, 34.307144 ], [ 7.031250, 33.137551 ], [ 8.437500, 33.137551 ], [ 8.437500, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 24.527135 ], [ 11.250000, 24.527135 ], [ 11.250000, 21.943046 ], [ 8.437500, 21.943046 ], [ 8.437500, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 19.311143 ], [ 1.406250, 19.311143 ], [ 1.406250, 20.632784 ], [ 0.000000, 20.632784 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 23.241346 ], [ -4.218750, 23.241346 ], [ -4.218750, 24.527135 ], [ -7.031250, 24.527135 ], [ -7.031250, 25.799891 ], [ -8.437500, 25.799891 ], [ -8.437500, 28.304381 ], [ -7.031250, 28.304381 ], [ -7.031250, 29.535230 ], [ -4.218750, 29.535230 ], [ -4.218750, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 34.307144 ], [ -2.812500, 34.307144 ], [ -2.812500, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.597889 ], [ 8.437500, 36.597889 ], [ 8.437500, 34.307144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 36.597889 ], [ 8.437500, 34.307144 ], [ 7.031250, 34.307144 ], [ 7.031250, 33.137551 ], [ 8.437500, 33.137551 ], [ 8.437500, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 24.527135 ], [ 11.250000, 24.527135 ], [ 11.250000, 21.943046 ], [ 8.437500, 21.943046 ], [ 8.437500, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 19.311143 ], [ 1.406250, 19.311143 ], [ 1.406250, 20.632784 ], [ 0.000000, 20.632784 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 23.241346 ], [ -4.218750, 23.241346 ], [ -4.218750, 24.527135 ], [ -7.031250, 24.527135 ], [ -7.031250, 25.799891 ], [ -8.437500, 25.799891 ], [ -8.437500, 28.304381 ], [ -7.031250, 28.304381 ], [ -7.031250, 29.535230 ], [ -4.218750, 29.535230 ], [ -4.218750, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 34.307144 ], [ -2.812500, 34.307144 ], [ -2.812500, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.597889 ], [ 8.437500, 36.597889 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 30.751278 ], [ 19.687500, 30.751278 ], [ 19.687500, 31.952162 ], [ 21.093750, 31.952162 ], [ 21.093750, 33.137551 ], [ 22.500000, 33.137551 ], [ 22.500000, 31.952162 ], [ 25.312500, 31.952162 ], [ 25.312500, 20.632784 ], [ 23.906250, 20.632784 ], [ 23.906250, 19.311143 ], [ 22.500000, 19.311143 ], [ 22.500000, 20.632784 ], [ 19.687500, 20.632784 ], [ 19.687500, 21.943046 ], [ 16.875000, 21.943046 ], [ 16.875000, 23.241346 ], [ 15.468750, 23.241346 ], [ 15.468750, 21.943046 ], [ 14.062500, 21.943046 ], [ 14.062500, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 31.952162 ], [ 11.250000, 31.952162 ], [ 11.250000, 33.137551 ], [ 14.062500, 33.137551 ], [ 14.062500, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 33.137551 ], [ 22.500000, 31.952162 ], [ 25.312500, 31.952162 ], [ 25.312500, 20.632784 ], [ 23.906250, 20.632784 ], [ 23.906250, 19.311143 ], [ 22.500000, 19.311143 ], [ 22.500000, 20.632784 ], [ 19.687500, 20.632784 ], [ 19.687500, 21.943046 ], [ 16.875000, 21.943046 ], [ 16.875000, 23.241346 ], [ 15.468750, 23.241346 ], [ 15.468750, 21.943046 ], [ 14.062500, 21.943046 ], [ 14.062500, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 31.952162 ], [ 11.250000, 31.952162 ], [ 11.250000, 33.137551 ], [ 14.062500, 33.137551 ], [ 14.062500, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 30.751278 ], [ 19.687500, 30.751278 ], [ 19.687500, 31.952162 ], [ 21.093750, 31.952162 ], [ 21.093750, 33.137551 ], [ 22.500000, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 15.284185 ], [ 14.062500, 15.284185 ], [ 14.062500, 12.554564 ], [ 11.250000, 12.554564 ], [ 11.250000, 13.923404 ], [ 9.843750, 13.923404 ], [ 9.843750, 12.554564 ], [ 7.031250, 12.554564 ], [ 7.031250, 13.923404 ], [ 4.218750, 13.923404 ], [ 4.218750, 11.178402 ], [ 2.812500, 11.178402 ], [ 2.812500, 12.554564 ], [ 1.406250, 12.554564 ], [ 1.406250, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 15.284185 ], [ 4.218750, 15.284185 ], [ 4.218750, 19.311143 ], [ 7.031250, 19.311143 ], [ 7.031250, 20.632784 ], [ 8.437500, 20.632784 ], [ 8.437500, 21.943046 ], [ 11.250000, 21.943046 ], [ 11.250000, 23.241346 ], [ 14.062500, 23.241346 ], [ 14.062500, 21.943046 ], [ 15.468750, 21.943046 ], [ 15.468750, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 23.241346 ], [ 14.062500, 21.943046 ], [ 15.468750, 21.943046 ], [ 15.468750, 15.284185 ], [ 14.062500, 15.284185 ], [ 14.062500, 12.554564 ], [ 11.250000, 12.554564 ], [ 11.250000, 13.923404 ], [ 9.843750, 13.923404 ], [ 9.843750, 12.554564 ], [ 7.031250, 12.554564 ], [ 7.031250, 13.923404 ], [ 4.218750, 13.923404 ], [ 4.218750, 11.178402 ], [ 2.812500, 11.178402 ], [ 2.812500, 12.554564 ], [ 1.406250, 12.554564 ], [ 1.406250, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 15.284185 ], [ 4.218750, 15.284185 ], [ 4.218750, 19.311143 ], [ 7.031250, 19.311143 ], [ 7.031250, 20.632784 ], [ 8.437500, 20.632784 ], [ 8.437500, 21.943046 ], [ 11.250000, 21.943046 ], [ 11.250000, 23.241346 ], [ 14.062500, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.000000, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 8.407168 ], [ 0.000000, 8.407168 ], [ 0.000000, 11.178402 ] ] ], [ [ [ 0.000000, 5.615986 ], [ 0.000000, 7.013668 ], [ 1.406250, 7.013668 ], [ 1.406250, 5.615986 ], [ 0.000000, 5.615986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.406250, 7.013668 ], [ 1.406250, 5.615986 ], [ 0.000000, 5.615986 ], [ 0.000000, 7.013668 ], [ 1.406250, 7.013668 ] ] ], [ [ [ 1.406250, 8.407168 ], [ 0.000000, 8.407168 ], [ 0.000000, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 8.407168 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.218750, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 5.615986 ], [ 1.406250, 5.615986 ], [ 1.406250, 11.178402 ], [ 4.218750, 11.178402 ], [ 4.218750, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.218750, 11.178402 ], [ 4.218750, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 5.615986 ], [ 1.406250, 5.615986 ], [ 1.406250, 11.178402 ], [ 4.218750, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 9.795678 ], [ 12.656250, 9.795678 ], [ 12.656250, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 5.615986 ], [ 2.812500, 5.615986 ], [ 2.812500, 9.795678 ], [ 4.218750, 9.795678 ], [ 4.218750, 13.923404 ], [ 7.031250, 13.923404 ], [ 7.031250, 12.554564 ], [ 9.843750, 12.554564 ], [ 9.843750, 13.923404 ], [ 11.250000, 13.923404 ], [ 11.250000, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 13.923404 ], [ 11.250000, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 9.795678 ], [ 12.656250, 9.795678 ], [ 12.656250, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 5.615986 ], [ 2.812500, 5.615986 ], [ 2.812500, 9.795678 ], [ 4.218750, 9.795678 ], [ 4.218750, 13.923404 ], [ 7.031250, 13.923404 ], [ 7.031250, 12.554564 ], [ 9.843750, 12.554564 ], [ 9.843750, 13.923404 ], [ 11.250000, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.811371 ], [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.811371 ], [ 11.250000, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 21.943046 ], [ 19.687500, 21.943046 ], [ 19.687500, 20.632784 ], [ 22.500000, 20.632784 ], [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 11.178402 ], [ 21.093750, 11.178402 ], [ 21.093750, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.013668 ], [ 15.468750, 7.013668 ], [ 15.468750, 8.407168 ], [ 14.062500, 8.407168 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 15.284185 ], [ 15.468750, 15.284185 ], [ 15.468750, 23.241346 ], [ 16.875000, 23.241346 ], [ 16.875000, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 23.241346 ], [ 16.875000, 21.943046 ], [ 19.687500, 21.943046 ], [ 19.687500, 20.632784 ], [ 22.500000, 20.632784 ], [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 11.178402 ], [ 21.093750, 11.178402 ], [ 21.093750, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.013668 ], [ 15.468750, 7.013668 ], [ 15.468750, 8.407168 ], [ 14.062500, 8.407168 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 15.284185 ], [ 15.468750, 15.284185 ], [ 15.468750, 23.241346 ], [ 16.875000, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.062500, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 5.615986 ], [ 14.062500, 5.615986 ], [ 14.062500, 4.214943 ], [ 15.468750, 4.214943 ], [ 15.468750, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 2.811371 ], [ 9.843750, 2.811371 ], [ 9.843750, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.843750, 5.615986 ], [ 9.843750, 7.013668 ], [ 12.656250, 7.013668 ], [ 12.656250, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 8.407168 ] ] ], [ [ [ 14.062500, 12.554564 ], [ 15.468750, 12.554564 ], [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.062500, 9.795678 ], [ 14.062500, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 5.615986 ], [ 14.062500, 5.615986 ], [ 14.062500, 4.214943 ], [ 15.468750, 4.214943 ], [ 15.468750, 1.406109 ], [ 14.062500, 2.811371 ], [ 9.843750, 2.811371 ], [ 9.843750, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.843750, 5.615986 ], [ 9.843750, 7.013668 ], [ 12.656250, 7.013668 ], [ 12.656250, 9.795678 ], [ 14.062500, 9.795678 ] ] ], [ [ [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 12.554564 ], [ 15.468750, 12.554564 ], [ 15.468750, 9.795678 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 7.013668 ], [ 26.718750, 7.013668 ], [ 26.718750, 5.615986 ], [ 25.312500, 5.615986 ], [ 25.312500, 4.214943 ], [ 16.875000, 4.214943 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 4.214943 ], [ 14.062500, 4.214943 ], [ 14.062500, 5.615986 ], [ 15.468750, 5.615986 ], [ 15.468750, 7.013668 ], [ 18.281250, 7.013668 ], [ 18.281250, 8.407168 ], [ 21.093750, 8.407168 ], [ 21.093750, 11.178402 ], [ 22.500000, 11.178402 ], [ 22.500000, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 8.407168 ], [ 25.312500, 8.407168 ], [ 25.312500, 7.013668 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 11.178402 ], [ 22.500000, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 8.407168 ], [ 25.312500, 8.407168 ], [ 25.312500, 7.013668 ], [ 26.718750, 7.013668 ], [ 26.718750, 5.615986 ], [ 25.312500, 5.615986 ], [ 25.312500, 4.214943 ], [ 16.875000, 4.214943 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 4.214943 ], [ 14.062500, 4.214943 ], [ 14.062500, 5.615986 ], [ 15.468750, 7.013668 ], [ 18.281250, 7.013668 ], [ 18.281250, 8.407168 ], [ 21.093750, 8.407168 ], [ 21.093750, 11.178402 ], [ 22.500000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 39.909736 ], [ 22.500000, 39.909736 ], [ 22.500000, 38.822591 ], [ 23.906250, 38.822591 ], [ 23.906250, 37.718590 ], [ 22.500000, 37.718590 ], [ 22.500000, 36.597889 ], [ 21.093750, 36.597889 ], [ 21.093750, 38.822591 ], [ 19.687500, 38.822591 ], [ 19.687500, 39.909736 ], [ 21.093750, 39.909736 ], [ 21.093750, 40.979898 ], [ 23.906250, 40.979898 ], [ 23.906250, 39.909736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 40.979898 ], [ 23.906250, 39.909736 ], [ 22.500000, 39.909736 ], [ 22.500000, 38.822591 ], [ 23.906250, 38.822591 ], [ 23.906250, 37.718590 ], [ 22.500000, 37.718590 ], [ 22.500000, 36.597889 ], [ 21.093750, 36.597889 ], [ 21.093750, 38.822591 ], [ 19.687500, 38.822591 ], [ 19.687500, 39.909736 ], [ 21.093750, 39.909736 ], [ 21.093750, 40.979898 ], [ 23.906250, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 34.307144 ], [ 32.343750, 34.307144 ], [ 32.343750, 35.460670 ], [ 33.750000, 35.460670 ], [ 33.750000, 34.307144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 35.460670 ], [ 33.750000, 34.307144 ], [ 32.343750, 34.307144 ], [ 32.343750, 35.460670 ], [ 33.750000, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 28.304381 ], [ 33.750000, 28.304381 ], [ 33.750000, 25.799891 ], [ 35.156250, 25.799891 ], [ 35.156250, 21.943046 ], [ 25.312500, 21.943046 ], [ 25.312500, 31.952162 ], [ 26.718750, 31.952162 ], [ 26.718750, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.952162 ], [ 32.343750, 31.952162 ], [ 32.343750, 30.751278 ], [ 33.750000, 30.751278 ], [ 33.750000, 29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 31.952162 ], [ 32.343750, 30.751278 ], [ 33.750000, 30.751278 ], [ 33.750000, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 28.304381 ], [ 33.750000, 28.304381 ], [ 33.750000, 25.799891 ], [ 35.156250, 25.799891 ], [ 35.156250, 21.943046 ], [ 25.312500, 21.943046 ], [ 25.312500, 31.952162 ], [ 26.718750, 31.952162 ], [ 26.718750, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.952162 ], [ 32.343750, 31.952162 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.593750, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 36.597889 ], [ 43.593750, 36.597889 ], [ 43.593750, 37.718590 ], [ 42.187500, 37.718590 ], [ 42.187500, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 35.460670 ], [ 35.156250, 35.460670 ], [ 35.156250, 36.597889 ], [ 26.718750, 36.597889 ], [ 26.718750, 39.909736 ], [ 28.125000, 39.909736 ], [ 28.125000, 40.979898 ], [ 32.343750, 40.979898 ], [ 32.343750, 42.032974 ], [ 35.156250, 42.032974 ], [ 35.156250, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 38.822591 ] ] ], [ [ [ 28.125000, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 40.979898 ], [ 32.343750, 40.979898 ], [ 32.343750, 42.032974 ], [ 35.156250, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 36.597889 ], [ 43.593750, 36.597889 ], [ 43.593750, 37.718590 ], [ 42.187500, 37.718590 ], [ 42.187500, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 35.460670 ], [ 35.156250, 35.460670 ], [ 35.156250, 36.597889 ], [ 26.718750, 36.597889 ], [ 26.718750, 39.909736 ], [ 28.125000, 39.909736 ], [ 28.125000, 40.979898 ] ] ], [ [ [ 28.125000, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 34.307144 ], [ 36.562500, 34.307144 ], [ 36.562500, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.307144 ], [ 36.562500, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 34.307144 ], [ 36.562500, 34.307144 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 33.137551 ], [ 39.375000, 33.137551 ], [ 39.375000, 31.952162 ], [ 35.156250, 31.952162 ], [ 35.156250, 33.137551 ], [ 36.562500, 33.137551 ], [ 36.562500, 36.597889 ], [ 40.781250, 36.597889 ], [ 40.781250, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 36.597889 ], [ 40.781250, 33.137551 ], [ 39.375000, 33.137551 ], [ 39.375000, 31.952162 ], [ 35.156250, 31.952162 ], [ 35.156250, 33.137551 ], [ 36.562500, 33.137551 ], [ 36.562500, 36.597889 ], [ 40.781250, 36.597889 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 35.460670 ], [ 46.406250, 35.460670 ], [ 46.406250, 34.307144 ], [ 45.000000, 34.307144 ], [ 45.000000, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 29.535230 ], [ 42.187500, 29.535230 ], [ 42.187500, 30.751278 ], [ 40.781250, 30.751278 ], [ 40.781250, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 33.137551 ], [ 40.781250, 33.137551 ], [ 40.781250, 36.597889 ], [ 42.187500, 36.597889 ], [ 42.187500, 37.718590 ], [ 43.593750, 37.718590 ], [ 43.593750, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 37.718590 ], [ 43.593750, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 35.460670 ], [ 46.406250, 35.460670 ], [ 46.406250, 34.307144 ], [ 45.000000, 34.307144 ], [ 45.000000, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 29.535230 ], [ 42.187500, 29.535230 ], [ 42.187500, 30.751278 ], [ 40.781250, 30.751278 ], [ 40.781250, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 33.137551 ], [ 40.781250, 33.137551 ], [ 40.781250, 36.597889 ], [ 42.187500, 36.597889 ], [ 42.187500, 37.718590 ], [ 43.593750, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 29.535230 ], [ 33.750000, 29.535230 ], [ 33.750000, 30.751278 ], [ 35.156250, 30.751278 ], [ 35.156250, 29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 30.751278 ], [ 35.156250, 29.535230 ], [ 33.750000, 29.535230 ], [ 33.750000, 30.751278 ], [ 35.156250, 30.751278 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 31.952162 ], [ 36.562500, 31.952162 ], [ 36.562500, 30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 31.952162 ], [ 36.562500, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 31.952162 ], [ 36.562500, 31.952162 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 17.978733 ], [ 37.968750, 17.978733 ], [ 37.968750, 16.636192 ], [ 36.562500, 16.636192 ], [ 36.562500, 12.554564 ], [ 35.156250, 12.554564 ], [ 35.156250, 11.178402 ], [ 33.750000, 11.178402 ], [ 33.750000, 12.554564 ], [ 32.343750, 12.554564 ], [ 32.343750, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 9.795678 ], [ 22.500000, 9.795678 ], [ 22.500000, 15.284185 ], [ 23.906250, 15.284185 ], [ 23.906250, 20.632784 ], [ 25.312500, 20.632784 ], [ 25.312500, 21.943046 ], [ 36.562500, 21.943046 ], [ 36.562500, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 21.943046 ], [ 36.562500, 17.978733 ], [ 37.968750, 17.978733 ], [ 37.968750, 16.636192 ], [ 36.562500, 16.636192 ], [ 36.562500, 12.554564 ], [ 35.156250, 12.554564 ], [ 35.156250, 11.178402 ], [ 33.750000, 11.178402 ], [ 33.750000, 12.554564 ], [ 32.343750, 12.554564 ], [ 32.343750, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 9.795678 ], [ 22.500000, 9.795678 ], [ 22.500000, 15.284185 ], [ 23.906250, 15.284185 ], [ 23.906250, 20.632784 ], [ 25.312500, 20.632784 ], [ 25.312500, 21.943046 ], [ 36.562500, 21.943046 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 7.013668 ], [ 35.156250, 7.013668 ], [ 35.156250, 4.214943 ], [ 30.937500, 4.214943 ], [ 30.937500, 2.811371 ], [ 29.531250, 2.811371 ], [ 29.531250, 4.214943 ], [ 26.718750, 4.214943 ], [ 26.718750, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 9.795678 ], [ 32.343750, 9.795678 ], [ 32.343750, 12.554564 ], [ 33.750000, 12.554564 ], [ 33.750000, 7.013668 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 12.554564 ], [ 33.750000, 7.013668 ], [ 35.156250, 7.013668 ], [ 35.156250, 4.214943 ], [ 30.937500, 4.214943 ], [ 30.937500, 2.811371 ], [ 29.531250, 2.811371 ], [ 29.531250, 4.214943 ], [ 26.718750, 4.214943 ], [ 26.718750, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 9.795678 ], [ 32.343750, 9.795678 ], [ 32.343750, 12.554564 ], [ 33.750000, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 4.214943 ], [ 35.156250, 4.214943 ], [ 35.156250, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 4.214943 ], [ 35.156250, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 4.214943 ], [ 35.156250, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 16.636192 ], [ 39.375000, 16.636192 ], [ 39.375000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 16.636192 ], [ 39.375000, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 16.636192 ], [ 39.375000, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 11.178402 ], [ 42.187500, 11.178402 ], [ 42.187500, 12.554564 ], [ 43.593750, 12.554564 ], [ 43.593750, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 12.554564 ], [ 43.593750, 11.178402 ], [ 42.187500, 11.178402 ], [ 42.187500, 12.554564 ], [ 43.593750, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.968750, 2.811371 ], [ 39.375000, 2.811371 ], [ 39.375000, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -2.811371 ], [ 35.156250, -2.811371 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 35.156250, 0.000000 ], [ 35.156250, 4.214943 ], [ 37.968750, 4.214943 ], [ 37.968750, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 4.214943 ], [ 40.781250, 2.811371 ], [ 40.781250, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -2.811371 ], [ 35.156250, -2.811371 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 35.156250, 0.000000 ], [ 35.156250, 4.214943 ], [ 37.968750, 4.214943 ], [ 37.968750, 2.811371 ], [ 39.375000, 2.811371 ], [ 39.375000, 4.214943 ], [ 42.187500, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 5.615986 ], [ 43.593750, 5.615986 ], [ 43.593750, 4.214943 ], [ 39.375000, 4.214943 ], [ 39.375000, 2.811371 ], [ 37.968750, 2.811371 ], [ 37.968750, 4.214943 ], [ 35.156250, 4.214943 ], [ 35.156250, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 12.554564 ], [ 36.562500, 12.554564 ], [ 36.562500, 13.923404 ], [ 42.187500, 13.923404 ], [ 42.187500, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 13.923404 ], [ 42.187500, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 5.615986 ], [ 43.593750, 5.615986 ], [ 43.593750, 4.214943 ], [ 39.375000, 4.214943 ], [ 39.375000, 2.811371 ], [ 37.968750, 2.811371 ], [ 37.968750, 4.214943 ], [ 35.156250, 4.214943 ], [ 35.156250, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 12.554564 ], [ 36.562500, 13.923404 ], [ 42.187500, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 52.482780 ], [ 78.750000, 50.736455 ], [ 84.375000, 50.736455 ], [ 84.375000, 49.837982 ], [ 87.187500, 49.837982 ], [ 87.187500, 47.989922 ], [ 85.781250, 47.989922 ], [ 85.781250, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 44.087585 ], [ 81.562500, 44.087585 ], [ 81.562500, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.032974 ], [ 78.750000, 42.032974 ], [ 78.750000, 43.068888 ], [ 73.125000, 43.068888 ], [ 73.125000, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 40.979898 ], [ 66.093750, 40.979898 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 44.087585 ], [ 63.281250, 44.087585 ], [ 63.281250, 43.068888 ], [ 60.468750, 43.068888 ], [ 60.468750, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 40.979898 ], [ 54.843750, 40.979898 ], [ 54.843750, 42.032974 ], [ 52.031250, 42.032974 ], [ 52.031250, 43.068888 ], [ 50.625000, 43.068888 ], [ 50.625000, 45.089036 ], [ 53.437500, 45.089036 ], [ 53.437500, 47.040182 ], [ 50.625000, 47.040182 ], [ 50.625000, 46.073231 ], [ 49.218750, 46.073231 ], [ 49.218750, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 49.837982 ], [ 49.218750, 49.837982 ], [ 49.218750, 50.736455 ], [ 50.625000, 50.736455 ], [ 50.625000, 51.618017 ], [ 52.031250, 51.618017 ], [ 52.031250, 50.736455 ], [ 61.875000, 50.736455 ], [ 61.875000, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 52.482780 ], [ 61.875000, 52.482780 ], [ 61.875000, 54.162434 ], [ 66.093750, 54.162434 ], [ 66.093750, 54.977614 ], [ 70.312500, 54.977614 ], [ 70.312500, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 53.330873 ], [ 75.937500, 53.330873 ], [ 75.937500, 54.162434 ], [ 77.343750, 54.162434 ], [ 77.343750, 52.482780 ], [ 78.750000, 52.482780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.343750, 53.330873 ], [ 77.343750, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 50.736455 ], [ 84.375000, 50.736455 ], [ 84.375000, 49.837982 ], [ 87.187500, 49.837982 ], [ 87.187500, 47.989922 ], [ 85.781250, 47.989922 ], [ 85.781250, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 44.087585 ], [ 81.562500, 44.087585 ], [ 81.562500, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.032974 ], [ 78.750000, 42.032974 ], [ 78.750000, 43.068888 ], [ 73.125000, 43.068888 ], [ 73.125000, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 40.979898 ], [ 66.093750, 40.979898 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 44.087585 ], [ 63.281250, 44.087585 ], [ 63.281250, 43.068888 ], [ 60.468750, 43.068888 ], [ 60.468750, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 40.979898 ], [ 54.843750, 40.979898 ], [ 54.843750, 42.032974 ], [ 52.031250, 42.032974 ], [ 52.031250, 43.068888 ], [ 50.625000, 43.068888 ], [ 50.625000, 45.089036 ], [ 53.437500, 45.089036 ], [ 53.437500, 47.040182 ], [ 50.625000, 47.040182 ], [ 50.625000, 46.073231 ], [ 49.218750, 46.073231 ], [ 49.218750, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 49.837982 ], [ 49.218750, 49.837982 ], [ 49.218750, 50.736455 ], [ 50.625000, 50.736455 ], [ 50.625000, 51.618017 ], [ 52.031250, 51.618017 ], [ 52.031250, 50.736455 ], [ 61.875000, 50.736455 ], [ 61.875000, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 52.482780 ], [ 61.875000, 52.482780 ], [ 61.875000, 54.162434 ], [ 66.093750, 54.162434 ], [ 66.093750, 54.977614 ], [ 70.312500, 54.977614 ], [ 70.312500, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 53.330873 ], [ 77.343750, 53.330873 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 64.687500, 37.718590 ], [ 64.687500, 38.822591 ], [ 61.875000, 38.822591 ], [ 61.875000, 40.979898 ], [ 60.468750, 40.979898 ], [ 60.468750, 42.032974 ], [ 56.250000, 42.032974 ], [ 56.250000, 45.089036 ], [ 60.468750, 45.089036 ], [ 60.468750, 43.068888 ], [ 63.281250, 43.068888 ], [ 63.281250, 44.087585 ], [ 64.687500, 44.087585 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 39.909736 ], [ 67.500000, 39.909736 ], [ 67.500000, 37.718590 ], [ 64.687500, 37.718590 ] ] ], [ [ [ 73.125000, 39.909736 ], [ 70.312500, 39.909736 ], [ 70.312500, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 39.909736 ] ] ], [ [ [ 68.906250, 37.718590 ], [ 68.906250, 36.597889 ], [ 67.500000, 36.597889 ], [ 67.500000, 37.718590 ], [ 68.906250, 37.718590 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.906250, 40.979898 ], [ 68.906250, 39.909736 ], [ 67.500000, 39.909736 ], [ 67.500000, 37.718590 ], [ 64.687500, 37.718590 ], [ 64.687500, 38.822591 ], [ 61.875000, 38.822591 ], [ 61.875000, 40.979898 ], [ 60.468750, 40.979898 ], [ 60.468750, 42.032974 ], [ 56.250000, 42.032974 ], [ 56.250000, 45.089036 ], [ 60.468750, 45.089036 ], [ 60.468750, 43.068888 ], [ 63.281250, 43.068888 ], [ 63.281250, 44.087585 ], [ 64.687500, 44.087585 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 40.979898 ], [ 68.906250, 40.979898 ] ] ], [ [ [ 67.500000, 37.718590 ], [ 68.906250, 37.718590 ], [ 68.906250, 36.597889 ], [ 67.500000, 36.597889 ], [ 67.500000, 37.718590 ] ] ], [ [ [ 70.312500, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 39.909736 ], [ 70.312500, 39.909736 ], [ 70.312500, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.125000, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 42.032974 ], [ 73.125000, 42.032974 ], [ 73.125000, 43.068888 ], [ 78.750000, 43.068888 ], [ 78.750000, 40.979898 ], [ 77.343750, 40.979898 ], [ 77.343750, 39.909736 ], [ 73.125000, 39.909736 ], [ 73.125000, 40.979898 ] ] ], [ [ [ 73.125000, 38.822591 ], [ 70.312500, 38.822591 ], [ 70.312500, 39.909736 ], [ 73.125000, 39.909736 ], [ 73.125000, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.125000, 39.909736 ], [ 73.125000, 38.822591 ], [ 70.312500, 38.822591 ], [ 70.312500, 39.909736 ], [ 73.125000, 39.909736 ] ] ], [ [ [ 78.750000, 40.979898 ], [ 77.343750, 40.979898 ], [ 77.343750, 39.909736 ], [ 73.125000, 39.909736 ], [ 73.125000, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 42.032974 ], [ 73.125000, 42.032974 ], [ 73.125000, 43.068888 ], [ 78.750000, 43.068888 ], [ 78.750000, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 45.000000, 40.979898 ], [ 45.000000, 39.909736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 40.979898 ], [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 45.000000, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 40.979898 ], [ 50.625000, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 37.718590 ], [ 47.812500, 37.718590 ], [ 47.812500, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 40.979898 ], [ 50.625000, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 38.822591 ], [ 45.000000, 40.979898 ], [ 50.625000, 40.979898 ], [ 50.625000, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 37.718590 ], [ 47.812500, 37.718590 ], [ 47.812500, 38.822591 ], [ 45.000000, 38.822591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.812500, 38.822591 ], [ 47.812500, 37.718590 ], [ 50.625000, 37.718590 ], [ 50.625000, 36.597889 ], [ 53.437500, 36.597889 ], [ 53.437500, 37.718590 ], [ 59.062500, 37.718590 ], [ 59.062500, 36.597889 ], [ 60.468750, 36.597889 ], [ 60.468750, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 34.307144 ], [ 60.468750, 34.307144 ], [ 60.468750, 31.952162 ], [ 61.875000, 31.952162 ], [ 61.875000, 28.304381 ], [ 63.281250, 28.304381 ], [ 63.281250, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 24.527135 ], [ 59.062500, 24.527135 ], [ 59.062500, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 27.059126 ], [ 52.031250, 27.059126 ], [ 52.031250, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 31.952162 ], [ 46.406250, 31.952162 ], [ 46.406250, 33.137551 ], [ 45.000000, 33.137551 ], [ 45.000000, 34.307144 ], [ 46.406250, 34.307144 ], [ 46.406250, 35.460670 ], [ 45.000000, 35.460670 ], [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ] ] ], [ [ [ 43.593750, 38.822591 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 38.822591 ], [ 43.593750, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 37.718590 ], [ 50.625000, 37.718590 ], [ 50.625000, 36.597889 ], [ 52.031250, 36.597889 ], [ 53.437500, 37.718590 ], [ 59.062500, 37.718590 ], [ 59.062500, 36.597889 ], [ 60.468750, 36.597889 ], [ 60.468750, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 34.307144 ], [ 60.468750, 34.307144 ], [ 60.468750, 31.952162 ], [ 61.875000, 31.952162 ], [ 61.875000, 28.304381 ], [ 63.281250, 28.304381 ], [ 63.281250, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 24.527135 ], [ 59.062500, 24.527135 ], [ 59.062500, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 27.059126 ], [ 52.031250, 27.059126 ], [ 52.031250, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 31.952162 ], [ 46.406250, 31.952162 ], [ 46.406250, 33.137551 ], [ 45.000000, 33.137551 ], [ 45.000000, 34.307144 ], [ 46.406250, 34.307144 ], [ 46.406250, 35.460670 ], [ 45.000000, 35.460670 ], [ 45.000000, 38.822591 ] ] ], [ [ [ 45.000000, 38.822591 ], [ 43.593750, 38.822591 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 38.822591 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 28.304381 ], [ 49.218750, 28.304381 ], [ 49.218750, 27.059126 ], [ 50.625000, 27.059126 ], [ 50.625000, 24.527135 ], [ 52.031250, 24.527135 ], [ 52.031250, 21.943046 ], [ 56.250000, 21.943046 ], [ 56.250000, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 19.311143 ], [ 52.031250, 19.311143 ], [ 52.031250, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 16.636192 ], [ 45.000000, 16.636192 ], [ 45.000000, 17.978733 ], [ 43.593750, 17.978733 ], [ 43.593750, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.978733 ], [ 40.781250, 17.978733 ], [ 40.781250, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 21.943046 ], [ 37.968750, 21.943046 ], [ 37.968750, 24.527135 ], [ 36.562500, 24.527135 ], [ 36.562500, 27.059126 ], [ 35.156250, 27.059126 ], [ 35.156250, 29.535230 ], [ 37.968750, 29.535230 ], [ 37.968750, 30.751278 ], [ 36.562500, 30.751278 ], [ 36.562500, 31.952162 ], [ 40.781250, 31.952162 ], [ 40.781250, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 28.304381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 31.952162 ], [ 40.781250, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 28.304381 ], [ 49.218750, 28.304381 ], [ 49.218750, 27.059126 ], [ 50.625000, 27.059126 ], [ 50.625000, 24.527135 ], [ 52.031250, 24.527135 ], [ 52.031250, 21.943046 ], [ 56.250000, 21.943046 ], [ 56.250000, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 19.311143 ], [ 52.031250, 19.311143 ], [ 52.031250, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 16.636192 ], [ 45.000000, 16.636192 ], [ 45.000000, 17.978733 ], [ 43.593750, 17.978733 ], [ 43.593750, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.978733 ], [ 40.781250, 17.978733 ], [ 40.781250, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 21.943046 ], [ 37.968750, 21.943046 ], [ 37.968750, 24.527135 ], [ 36.562500, 24.527135 ], [ 36.562500, 27.059126 ], [ 35.156250, 27.059126 ], [ 35.156250, 29.535230 ], [ 37.968750, 29.535230 ], [ 37.968750, 30.751278 ], [ 36.562500, 30.751278 ], [ 36.562500, 31.952162 ], [ 40.781250, 31.952162 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 24.527135 ], [ 50.625000, 24.527135 ], [ 50.625000, 25.799891 ], [ 52.031250, 25.799891 ], [ 52.031250, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 25.799891 ], [ 52.031250, 24.527135 ], [ 50.625000, 24.527135 ], [ 50.625000, 25.799891 ], [ 52.031250, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 25.799891 ] ] ], [ [ [ 54.843750, 21.943046 ], [ 52.031250, 21.943046 ], [ 52.031250, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, 24.527135 ], [ 54.843750, 21.943046 ], [ 52.031250, 21.943046 ], [ 52.031250, 24.527135 ], [ 54.843750, 24.527135 ] ] ], [ [ [ 56.250000, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 24.527135 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.875000, 38.822591 ], [ 64.687500, 38.822591 ], [ 64.687500, 37.718590 ], [ 66.093750, 37.718590 ], [ 66.093750, 36.597889 ], [ 64.687500, 36.597889 ], [ 64.687500, 35.460670 ], [ 60.468750, 35.460670 ], [ 60.468750, 36.597889 ], [ 59.062500, 36.597889 ], [ 59.062500, 37.718590 ], [ 53.437500, 37.718590 ], [ 53.437500, 40.979898 ], [ 52.031250, 40.979898 ], [ 52.031250, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 40.979898 ], [ 56.250000, 40.979898 ], [ 56.250000, 42.032974 ], [ 60.468750, 42.032974 ], [ 60.468750, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 38.822591 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.468750, 42.032974 ], [ 60.468750, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 38.822591 ], [ 64.687500, 38.822591 ], [ 64.687500, 37.718590 ], [ 66.093750, 37.718590 ], [ 66.093750, 36.597889 ], [ 64.687500, 36.597889 ], [ 64.687500, 35.460670 ], [ 60.468750, 35.460670 ], [ 60.468750, 36.597889 ], [ 59.062500, 36.597889 ], [ 59.062500, 37.718590 ], [ 53.437500, 37.718590 ], [ 53.437500, 40.979898 ], [ 52.031250, 40.979898 ], [ 52.031250, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 40.979898 ], [ 56.250000, 40.979898 ], [ 56.250000, 42.032974 ], [ 60.468750, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 16.636192 ], [ 47.812500, 16.636192 ], [ 47.812500, 17.978733 ], [ 53.437500, 17.978733 ], [ 53.437500, 16.636192 ], [ 52.031250, 16.636192 ], [ 52.031250, 15.284185 ], [ 49.218750, 15.284185 ], [ 49.218750, 13.923404 ], [ 45.000000, 13.923404 ], [ 45.000000, 12.554564 ], [ 43.593750, 12.554564 ], [ 43.593750, 15.284185 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 43.593750, 16.636192 ], [ 43.593750, 17.978733 ], [ 45.000000, 17.978733 ], [ 45.000000, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.437500, 17.978733 ], [ 53.437500, 16.636192 ], [ 52.031250, 16.636192 ], [ 52.031250, 15.284185 ], [ 49.218750, 15.284185 ], [ 49.218750, 13.923404 ], [ 45.000000, 13.923404 ], [ 45.000000, 12.554564 ], [ 43.593750, 12.554564 ], [ 43.593750, 15.284185 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 43.593750, 16.636192 ], [ 43.593750, 17.978733 ], [ 45.000000, 17.978733 ], [ 45.000000, 16.636192 ], [ 47.812500, 16.636192 ], [ 47.812500, 17.978733 ], [ 53.437500, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 20.632784 ], [ 57.656250, 20.632784 ], [ 57.656250, 17.978733 ], [ 54.843750, 17.978733 ], [ 54.843750, 16.636192 ], [ 53.437500, 16.636192 ], [ 53.437500, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 19.311143 ], [ 54.843750, 19.311143 ], [ 54.843750, 20.632784 ], [ 56.250000, 20.632784 ], [ 56.250000, 21.943046 ], [ 54.843750, 21.943046 ], [ 54.843750, 24.527135 ], [ 56.250000, 24.527135 ], [ 56.250000, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 24.527135 ], [ 56.250000, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 20.632784 ], [ 57.656250, 20.632784 ], [ 57.656250, 17.978733 ], [ 54.843750, 17.978733 ], [ 54.843750, 16.636192 ], [ 53.437500, 16.636192 ], [ 53.437500, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 19.311143 ], [ 54.843750, 19.311143 ], [ 54.843750, 20.632784 ], [ 56.250000, 20.632784 ], [ 56.250000, 21.943046 ], [ 54.843750, 21.943046 ], [ 54.843750, 24.527135 ], [ 56.250000, 24.527135 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 9.795678 ], [ 45.000000, 11.178402 ], [ 49.218750, 11.178402 ], [ 49.218750, 8.407168 ], [ 43.593750, 8.407168 ], [ 43.593750, 9.795678 ], [ 45.000000, 9.795678 ] ] ], [ [ [ 42.187500, 9.795678 ], [ 42.187500, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 9.795678 ], [ 42.187500, 9.795678 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.593750, 9.795678 ], [ 45.000000, 9.795678 ], [ 45.000000, 11.178402 ], [ 49.218750, 11.178402 ], [ 49.218750, 8.407168 ], [ 43.593750, 8.407168 ], [ 43.593750, 9.795678 ] ] ], [ [ [ 43.593750, 9.795678 ], [ 42.187500, 9.795678 ], [ 42.187500, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 9.795678 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 7.013668 ], [ 49.218750, 7.013668 ], [ 49.218750, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 1.406109 ], [ 43.593750, 1.406109 ], [ 43.593750, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 42.187500, 2.811371 ], [ 42.187500, 4.214943 ], [ 43.593750, 4.214943 ], [ 43.593750, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 7.013668 ], [ 47.812500, 7.013668 ], [ 47.812500, 8.407168 ], [ 49.218750, 8.407168 ], [ 49.218750, 11.178402 ], [ 50.625000, 11.178402 ], [ 50.625000, 7.013668 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 11.178402 ], [ 50.625000, 7.013668 ], [ 49.218750, 7.013668 ], [ 49.218750, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 1.406109 ], [ 43.593750, 1.406109 ], [ 43.593750, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 42.187500, 2.811371 ], [ 42.187500, 4.214943 ], [ 43.593750, 4.214943 ], [ 43.593750, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 7.013668 ], [ 47.812500, 7.013668 ], [ 47.812500, 8.407168 ], [ 49.218750, 8.407168 ], [ 49.218750, 11.178402 ], [ 50.625000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 38.822591 ], [ 74.531250, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.125000, 37.718590 ], [ 73.125000, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 38.822591 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 40.979898 ], [ 70.312500, 38.822591 ], [ 74.531250, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.125000, 37.718590 ], [ 73.125000, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.979898 ], [ 70.312500, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.312500, 34.307144 ], [ 70.312500, 31.952162 ], [ 67.500000, 31.952162 ], [ 67.500000, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 61.875000, 29.535230 ], [ 61.875000, 31.952162 ], [ 60.468750, 31.952162 ], [ 60.468750, 34.307144 ], [ 61.875000, 34.307144 ], [ 61.875000, 35.460670 ], [ 64.687500, 35.460670 ], [ 64.687500, 36.597889 ], [ 66.093750, 36.597889 ], [ 66.093750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 36.597889 ], [ 68.906250, 36.597889 ], [ 68.906250, 37.718590 ], [ 71.718750, 37.718590 ], [ 71.718750, 34.307144 ], [ 70.312500, 34.307144 ] ] ], [ [ [ 73.125000, 37.718590 ], [ 74.531250, 37.718590 ], [ 74.531250, 36.597889 ], [ 73.125000, 36.597889 ], [ 73.125000, 37.718590 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.718750, 34.307144 ], [ 70.312500, 34.307144 ], [ 70.312500, 31.952162 ], [ 67.500000, 31.952162 ], [ 67.500000, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 61.875000, 29.535230 ], [ 61.875000, 31.952162 ], [ 60.468750, 31.952162 ], [ 60.468750, 34.307144 ], [ 61.875000, 35.460670 ], [ 64.687500, 35.460670 ], [ 64.687500, 36.597889 ], [ 66.093750, 36.597889 ], [ 66.093750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 36.597889 ], [ 68.906250, 36.597889 ], [ 68.906250, 37.718590 ], [ 71.718750, 37.718590 ], [ 71.718750, 34.307144 ] ] ], [ [ [ 74.531250, 36.597889 ], [ 73.125000, 36.597889 ], [ 73.125000, 37.718590 ], [ 74.531250, 37.718590 ], [ 74.531250, 36.597889 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 63.281250, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 30.751278 ], [ 67.500000, 30.751278 ], [ 67.500000, 31.952162 ], [ 70.312500, 31.952162 ], [ 70.312500, 34.307144 ], [ 71.718750, 34.307144 ], [ 71.718750, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 35.460670 ], [ 77.343750, 35.460670 ], [ 77.343750, 34.307144 ], [ 73.125000, 34.307144 ], [ 73.125000, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 28.304381 ], [ 70.312500, 28.304381 ], [ 70.312500, 24.527135 ], [ 68.906250, 24.527135 ], [ 68.906250, 23.241346 ], [ 67.500000, 23.241346 ], [ 67.500000, 24.527135 ], [ 66.093750, 24.527135 ], [ 66.093750, 25.799891 ], [ 63.281250, 25.799891 ], [ 63.281250, 28.304381 ] ] ], [ [ [ 63.281250, 24.527135 ], [ 61.875000, 24.527135 ], [ 61.875000, 25.799891 ], [ 63.281250, 25.799891 ], [ 63.281250, 24.527135 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 75.937500, 36.597889 ], [ 75.937500, 35.460670 ], [ 77.343750, 35.460670 ], [ 77.343750, 34.307144 ], [ 73.125000, 34.307144 ], [ 73.125000, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 28.304381 ], [ 70.312500, 28.304381 ], [ 70.312500, 24.527135 ], [ 68.906250, 24.527135 ], [ 68.906250, 23.241346 ], [ 67.500000, 23.241346 ], [ 67.500000, 24.527135 ], [ 66.093750, 24.527135 ], [ 66.093750, 25.799891 ], [ 63.281250, 25.799891 ], [ 63.281250, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 30.751278 ], [ 67.500000, 30.751278 ], [ 67.500000, 31.952162 ], [ 70.312500, 31.952162 ], [ 70.312500, 34.307144 ], [ 71.718750, 34.307144 ], [ 71.718750, 36.597889 ], [ 75.937500, 36.597889 ] ] ], [ [ [ 63.281250, 25.799891 ], [ 63.281250, 24.527135 ], [ 61.875000, 24.527135 ], [ 61.875000, 25.799891 ], [ 63.281250, 25.799891 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375000, 28.304381 ], [ 88.593750, 28.304381 ], [ 88.593750, 25.799891 ], [ 85.781250, 25.799891 ], [ 85.781250, 27.059126 ], [ 81.562500, 27.059126 ], [ 81.562500, 28.304381 ], [ 80.156250, 28.304381 ], [ 80.156250, 29.535230 ], [ 84.375000, 29.535230 ], [ 84.375000, 28.304381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375000, 29.535230 ], [ 84.375000, 28.304381 ], [ 88.593750, 28.304381 ], [ 88.593750, 25.799891 ], [ 85.781250, 25.799891 ], [ 85.781250, 27.059126 ], [ 81.562500, 27.059126 ], [ 81.562500, 28.304381 ], [ 80.156250, 28.304381 ], [ 80.156250, 29.535230 ], [ 84.375000, 29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.593750, 21.943046 ], [ 87.187500, 21.943046 ], [ 87.187500, 19.311143 ], [ 84.375000, 19.311143 ], [ 84.375000, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 16.636192 ], [ 81.562500, 16.636192 ], [ 81.562500, 15.284185 ], [ 80.156250, 15.284185 ], [ 80.156250, 9.795678 ], [ 78.750000, 9.795678 ], [ 78.750000, 8.407168 ], [ 75.937500, 8.407168 ], [ 75.937500, 11.178402 ], [ 74.531250, 11.178402 ], [ 74.531250, 15.284185 ], [ 73.125000, 15.284185 ], [ 73.125000, 20.632784 ], [ 68.906250, 20.632784 ], [ 68.906250, 24.527135 ], [ 70.312500, 24.527135 ], [ 70.312500, 28.304381 ], [ 73.125000, 28.304381 ], [ 73.125000, 29.535230 ], [ 74.531250, 29.535230 ], [ 74.531250, 33.137551 ], [ 73.125000, 33.137551 ], [ 73.125000, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 30.751278 ], [ 81.562500, 30.751278 ], [ 81.562500, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 28.304381 ], [ 81.562500, 28.304381 ], [ 81.562500, 27.059126 ], [ 85.781250, 27.059126 ], [ 85.781250, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 21.943046 ] ] ], [ [ [ 88.593750, 27.059126 ], [ 91.406250, 27.059126 ], [ 91.406250, 28.304381 ], [ 94.218750, 28.304381 ], [ 94.218750, 29.535230 ], [ 95.625000, 29.535230 ], [ 95.625000, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.059126 ], [ 95.625000, 27.059126 ], [ 95.625000, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 24.527135 ], [ 90.000000, 24.527135 ], [ 90.000000, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 27.059126 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.750000, 34.307144 ], [ 78.750000, 30.751278 ], [ 81.562500, 30.751278 ], [ 81.562500, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 28.304381 ], [ 81.562500, 28.304381 ], [ 81.562500, 27.059126 ], [ 85.781250, 27.059126 ], [ 85.781250, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 21.943046 ], [ 87.187500, 21.943046 ], [ 87.187500, 19.311143 ], [ 84.375000, 19.311143 ], [ 84.375000, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 16.636192 ], [ 81.562500, 16.636192 ], [ 81.562500, 15.284185 ], [ 80.156250, 15.284185 ], [ 80.156250, 9.795678 ], [ 78.750000, 9.795678 ], [ 78.750000, 8.407168 ], [ 75.937500, 8.407168 ], [ 75.937500, 11.178402 ], [ 74.531250, 11.178402 ], [ 74.531250, 15.284185 ], [ 73.125000, 15.284185 ], [ 73.125000, 20.632784 ], [ 68.906250, 20.632784 ], [ 68.906250, 24.527135 ], [ 70.312500, 24.527135 ], [ 70.312500, 28.304381 ], [ 73.125000, 28.304381 ], [ 73.125000, 29.535230 ], [ 74.531250, 29.535230 ], [ 74.531250, 33.137551 ], [ 73.125000, 33.137551 ], [ 73.125000, 34.307144 ], [ 78.750000, 34.307144 ] ] ], [ [ [ 95.625000, 29.535230 ], [ 95.625000, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.059126 ], [ 95.625000, 27.059126 ], [ 95.625000, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 24.527135 ], [ 90.000000, 24.527135 ], [ 90.000000, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 27.059126 ], [ 91.406250, 27.059126 ], [ 91.406250, 28.304381 ], [ 94.218750, 28.304381 ], [ 94.218750, 29.535230 ], [ 95.625000, 29.535230 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 5.615986 ], [ 80.156250, 5.615986 ], [ 80.156250, 8.407168 ], [ 81.562500, 8.407168 ], [ 81.562500, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 8.407168 ], [ 81.562500, 5.615986 ], [ 80.156250, 5.615986 ], [ 80.156250, 8.407168 ], [ 81.562500, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.281250, 48.922499 ], [ 112.500000, 48.922499 ], [ 112.500000, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 47.989922 ], [ 119.531250, 47.989922 ], [ 119.531250, 47.040182 ], [ 116.718750, 47.040182 ], [ 116.718750, 46.073231 ], [ 115.312500, 46.073231 ], [ 115.312500, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 42.032974 ], [ 97.031250, 42.032974 ], [ 97.031250, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 44.087585 ], [ 92.812500, 44.087585 ], [ 92.812500, 45.089036 ], [ 90.000000, 45.089036 ], [ 90.000000, 46.073231 ], [ 91.406250, 46.073231 ], [ 91.406250, 47.040182 ], [ 90.000000, 47.040182 ], [ 90.000000, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 49.837982 ], [ 91.406250, 49.837982 ], [ 91.406250, 50.736455 ], [ 94.218750, 50.736455 ], [ 94.218750, 49.837982 ], [ 98.437500, 49.837982 ], [ 98.437500, 51.618017 ], [ 102.656250, 51.618017 ], [ 102.656250, 49.837982 ], [ 108.281250, 49.837982 ], [ 108.281250, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.656250, 51.618017 ], [ 102.656250, 49.837982 ], [ 108.281250, 49.837982 ], [ 108.281250, 48.922499 ], [ 112.500000, 48.922499 ], [ 112.500000, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 47.989922 ], [ 119.531250, 47.989922 ], [ 119.531250, 47.040182 ], [ 116.718750, 47.040182 ], [ 116.718750, 46.073231 ], [ 115.312500, 46.073231 ], [ 115.312500, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 42.032974 ], [ 97.031250, 42.032974 ], [ 97.031250, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 44.087585 ], [ 92.812500, 44.087585 ], [ 92.812500, 45.089036 ], [ 90.000000, 45.089036 ], [ 90.000000, 46.073231 ], [ 91.406250, 46.073231 ], [ 91.406250, 47.040182 ], [ 90.000000, 47.040182 ], [ 90.000000, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 49.837982 ], [ 91.406250, 49.837982 ], [ 91.406250, 50.736455 ], [ 94.218750, 50.736455 ], [ 94.218750, 49.837982 ], [ 98.437500, 49.837982 ], [ 98.437500, 51.618017 ], [ 102.656250, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 27.059126 ], [ 90.000000, 27.059126 ], [ 90.000000, 28.304381 ], [ 91.406250, 28.304381 ], [ 91.406250, 27.059126 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 28.304381 ], [ 91.406250, 27.059126 ], [ 90.000000, 27.059126 ], [ 90.000000, 28.304381 ], [ 91.406250, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.812500, 23.241346 ], [ 92.812500, 20.632784 ], [ 91.406250, 20.632784 ], [ 91.406250, 23.241346 ], [ 92.812500, 23.241346 ] ] ], [ [ [ 90.000000, 24.527135 ], [ 91.406250, 24.527135 ], [ 91.406250, 23.241346 ], [ 90.000000, 23.241346 ], [ 90.000000, 21.943046 ], [ 88.593750, 21.943046 ], [ 88.593750, 25.799891 ], [ 90.000000, 25.799891 ], [ 90.000000, 24.527135 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 23.241346 ], [ 90.000000, 23.241346 ], [ 90.000000, 21.943046 ], [ 88.593750, 21.943046 ], [ 88.593750, 25.799891 ], [ 90.000000, 25.799891 ], [ 90.000000, 24.527135 ], [ 91.406250, 24.527135 ], [ 91.406250, 23.241346 ] ] ], [ [ [ 91.406250, 23.241346 ], [ 92.812500, 23.241346 ], [ 92.812500, 20.632784 ], [ 91.406250, 20.632784 ], [ 91.406250, 23.241346 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.687500, 19.311143 ], [ 109.687500, 21.943046 ], [ 106.875000, 21.943046 ], [ 106.875000, 23.241346 ], [ 102.656250, 23.241346 ], [ 102.656250, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 28.304381 ], [ 95.625000, 28.304381 ], [ 95.625000, 29.535230 ], [ 94.218750, 29.535230 ], [ 94.218750, 28.304381 ], [ 90.000000, 28.304381 ], [ 90.000000, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 28.304381 ], [ 84.375000, 28.304381 ], [ 84.375000, 29.535230 ], [ 81.562500, 29.535230 ], [ 81.562500, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 34.307144 ], [ 77.343750, 34.307144 ], [ 77.343750, 35.460670 ], [ 75.937500, 35.460670 ], [ 75.937500, 36.597889 ], [ 74.531250, 36.597889 ], [ 74.531250, 38.822591 ], [ 73.125000, 38.822591 ], [ 73.125000, 39.909736 ], [ 77.343750, 39.909736 ], [ 77.343750, 40.979898 ], [ 78.750000, 40.979898 ], [ 78.750000, 42.032974 ], [ 80.156250, 42.032974 ], [ 80.156250, 43.068888 ], [ 81.562500, 43.068888 ], [ 81.562500, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 45.089036 ], [ 82.968750, 45.089036 ], [ 82.968750, 47.040182 ], [ 85.781250, 47.040182 ], [ 85.781250, 47.989922 ], [ 87.187500, 47.989922 ], [ 87.187500, 48.922499 ], [ 88.593750, 48.922499 ], [ 88.593750, 47.989922 ], [ 90.000000, 47.989922 ], [ 90.000000, 47.040182 ], [ 91.406250, 47.040182 ], [ 91.406250, 46.073231 ], [ 90.000000, 46.073231 ], [ 90.000000, 45.089036 ], [ 92.812500, 45.089036 ], [ 92.812500, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 43.068888 ], [ 97.031250, 43.068888 ], [ 97.031250, 42.032974 ], [ 111.093750, 42.032974 ], [ 111.093750, 43.068888 ], [ 112.500000, 43.068888 ], [ 112.500000, 45.089036 ], [ 115.312500, 45.089036 ], [ 115.312500, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.989922 ], [ 116.718750, 47.989922 ], [ 116.718750, 49.837982 ], [ 119.531250, 49.837982 ], [ 119.531250, 51.618017 ], [ 120.937500, 51.618017 ], [ 120.937500, 53.330873 ], [ 125.156250, 53.330873 ], [ 125.156250, 52.482780 ], [ 126.562500, 52.482780 ], [ 126.562500, 50.736455 ], [ 127.968750, 50.736455 ], [ 127.968750, 49.837982 ], [ 129.375000, 49.837982 ], [ 129.375000, 48.922499 ], [ 130.781250, 48.922499 ], [ 130.781250, 47.989922 ], [ 135.000000, 47.989922 ], [ 135.000000, 47.040182 ], [ 133.593750, 47.040182 ], [ 133.593750, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 40.979898 ], [ 125.156250, 40.979898 ], [ 125.156250, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 38.822591 ], [ 120.937500, 38.822591 ], [ 120.937500, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 38.822591 ], [ 118.125000, 38.822591 ], [ 118.125000, 37.718590 ], [ 119.531250, 37.718590 ], [ 119.531250, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 31.952162 ], [ 122.343750, 31.952162 ], [ 122.343750, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 29.535230 ], [ 122.343750, 29.535230 ], [ 122.343750, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 25.799891 ], [ 119.531250, 25.799891 ], [ 119.531250, 24.527135 ], [ 118.125000, 24.527135 ], [ 118.125000, 23.241346 ], [ 115.312500, 23.241346 ], [ 115.312500, 21.943046 ], [ 111.093750, 21.943046 ], [ 111.093750, 19.311143 ], [ 109.687500, 19.311143 ] ] ], [ [ [ 109.687500, 17.978733 ], [ 108.281250, 17.978733 ], [ 108.281250, 19.311143 ], [ 109.687500, 19.311143 ], [ 109.687500, 17.978733 ] ] ], [ [ [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 37.718590 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.687500, 19.311143 ], [ 109.687500, 17.978733 ], [ 108.281250, 17.978733 ], [ 108.281250, 19.311143 ], [ 109.687500, 19.311143 ] ] ], [ [ [ 111.093750, 19.311143 ], [ 109.687500, 19.311143 ], [ 109.687500, 21.943046 ], [ 106.875000, 21.943046 ], [ 106.875000, 23.241346 ], [ 102.656250, 23.241346 ], [ 102.656250, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 28.304381 ], [ 95.625000, 28.304381 ], [ 95.625000, 29.535230 ], [ 94.218750, 29.535230 ], [ 94.218750, 28.304381 ], [ 90.000000, 28.304381 ], [ 90.000000, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 28.304381 ], [ 84.375000, 28.304381 ], [ 84.375000, 29.535230 ], [ 81.562500, 29.535230 ], [ 81.562500, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 34.307144 ], [ 77.343750, 34.307144 ], [ 77.343750, 35.460670 ], [ 75.937500, 35.460670 ], [ 75.937500, 36.597889 ], [ 74.531250, 36.597889 ], [ 74.531250, 38.822591 ], [ 73.125000, 38.822591 ], [ 73.125000, 39.909736 ], [ 77.343750, 39.909736 ], [ 77.343750, 40.979898 ], [ 78.750000, 40.979898 ], [ 78.750000, 42.032974 ], [ 80.156250, 42.032974 ], [ 80.156250, 43.068888 ], [ 81.562500, 43.068888 ], [ 81.562500, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 45.089036 ], [ 82.968750, 45.089036 ], [ 82.968750, 47.040182 ], [ 85.781250, 47.040182 ], [ 85.781250, 47.989922 ], [ 87.187500, 47.989922 ], [ 87.187500, 48.922499 ], [ 88.593750, 48.922499 ], [ 88.593750, 47.989922 ], [ 90.000000, 47.989922 ], [ 90.000000, 47.040182 ], [ 91.406250, 47.040182 ], [ 91.406250, 46.073231 ], [ 90.000000, 46.073231 ], [ 90.000000, 45.089036 ], [ 92.812500, 45.089036 ], [ 92.812500, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 43.068888 ], [ 97.031250, 43.068888 ], [ 97.031250, 42.032974 ], [ 111.093750, 42.032974 ], [ 111.093750, 43.068888 ], [ 112.500000, 43.068888 ], [ 112.500000, 45.089036 ], [ 115.312500, 45.089036 ], [ 115.312500, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.989922 ], [ 116.718750, 47.989922 ], [ 116.718750, 49.837982 ], [ 119.531250, 49.837982 ], [ 119.531250, 51.618017 ], [ 120.937500, 51.618017 ], [ 120.937500, 53.330873 ], [ 125.156250, 53.330873 ], [ 125.156250, 52.482780 ], [ 126.562500, 52.482780 ], [ 126.562500, 50.736455 ], [ 127.968750, 50.736455 ], [ 127.968750, 49.837982 ], [ 129.375000, 49.837982 ], [ 129.375000, 48.922499 ], [ 130.781250, 48.922499 ], [ 130.781250, 47.989922 ], [ 135.000000, 47.989922 ], [ 135.000000, 47.040182 ], [ 133.593750, 47.040182 ], [ 133.593750, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 40.979898 ], [ 125.156250, 40.979898 ], [ 125.156250, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 38.822591 ], [ 120.937500, 38.822591 ], [ 120.937500, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 38.822591 ], [ 118.125000, 38.822591 ], [ 118.125000, 37.718590 ], [ 119.531250, 37.718590 ], [ 119.531250, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 31.952162 ], [ 122.343750, 31.952162 ], [ 122.343750, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 29.535230 ], [ 122.343750, 29.535230 ], [ 122.343750, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 25.799891 ], [ 119.531250, 25.799891 ], [ 119.531250, 24.527135 ], [ 118.125000, 24.527135 ], [ 118.125000, 23.241346 ], [ 115.312500, 23.241346 ], [ 115.312500, 21.943046 ], [ 111.093750, 21.943046 ], [ 111.093750, 19.311143 ] ] ], [ [ [ 122.343750, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 36.597889 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.843750, 21.943046 ], [ 101.250000, 21.943046 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 19.311143 ], [ 98.437500, 19.311143 ], [ 98.437500, 15.284185 ], [ 94.218750, 15.284185 ], [ 94.218750, 19.311143 ], [ 92.812500, 19.311143 ], [ 92.812500, 23.241346 ], [ 94.218750, 23.241346 ], [ 94.218750, 24.527135 ], [ 95.625000, 24.527135 ], [ 95.625000, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 98.437500, 28.304381 ], [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 21.943046 ] ] ], [ [ [ 99.843750, 13.923404 ], [ 99.843750, 11.178402 ], [ 98.437500, 11.178402 ], [ 98.437500, 13.923404 ], [ 99.843750, 13.923404 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 13.923404 ], [ 99.843750, 13.923404 ], [ 99.843750, 11.178402 ], [ 98.437500, 11.178402 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 21.943046 ], [ 101.250000, 21.943046 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 19.311143 ], [ 98.437500, 19.311143 ], [ 98.437500, 15.284185 ], [ 94.218750, 15.284185 ], [ 94.218750, 19.311143 ], [ 92.812500, 19.311143 ], [ 92.812500, 23.241346 ], [ 94.218750, 23.241346 ], [ 94.218750, 24.527135 ], [ 95.625000, 24.527135 ], [ 95.625000, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 98.437500, 28.304381 ], [ 98.437500, 23.241346 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.062500, 16.636192 ], [ 104.062500, 17.978733 ], [ 101.250000, 17.978733 ], [ 101.250000, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 20.632784 ], [ 104.062500, 20.632784 ], [ 104.062500, 19.311143 ], [ 105.468750, 19.311143 ], [ 105.468750, 16.636192 ], [ 104.062500, 16.636192 ] ] ], [ [ [ 106.875000, 16.636192 ], [ 106.875000, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 16.636192 ], [ 106.875000, 16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 16.636192 ], [ 104.062500, 16.636192 ], [ 104.062500, 17.978733 ], [ 101.250000, 17.978733 ], [ 101.250000, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 20.632784 ], [ 104.062500, 20.632784 ], [ 104.062500, 19.311143 ], [ 105.468750, 19.311143 ], [ 105.468750, 16.636192 ] ] ], [ [ [ 105.468750, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 16.636192 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 19.311143 ], [ 99.843750, 19.311143 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 19.311143 ] ] ], [ [ [ 101.250000, 7.013668 ], [ 101.250000, 5.615986 ], [ 99.843750, 5.615986 ], [ 99.843750, 7.013668 ], [ 101.250000, 7.013668 ] ] ], [ [ [ 98.437500, 7.013668 ], [ 98.437500, 11.178402 ], [ 99.843750, 11.178402 ], [ 99.843750, 7.013668 ], [ 98.437500, 7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.843750, 7.013668 ], [ 98.437500, 7.013668 ], [ 98.437500, 11.178402 ], [ 99.843750, 11.178402 ], [ 99.843750, 7.013668 ] ] ], [ [ [ 98.437500, 13.923404 ], [ 98.437500, 19.311143 ], [ 99.843750, 19.311143 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.923404 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 99.843750, 7.013668 ], [ 101.250000, 7.013668 ], [ 101.250000, 5.615986 ], [ 99.843750, 5.615986 ], [ 99.843750, 7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.687500, 13.923404 ], [ 109.687500, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 9.795678 ], [ 106.875000, 9.795678 ], [ 106.875000, 8.407168 ], [ 105.468750, 8.407168 ], [ 105.468750, 11.178402 ], [ 106.875000, 11.178402 ], [ 106.875000, 12.554564 ], [ 108.281250, 12.554564 ], [ 108.281250, 13.923404 ], [ 109.687500, 13.923404 ] ] ], [ [ [ 104.062500, 20.632784 ], [ 102.656250, 20.632784 ], [ 102.656250, 23.241346 ], [ 106.875000, 23.241346 ], [ 106.875000, 21.943046 ], [ 108.281250, 21.943046 ], [ 108.281250, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 20.632784 ] ] ], [ [ [ 105.468750, 16.636192 ], [ 105.468750, 17.978733 ], [ 106.875000, 17.978733 ], [ 106.875000, 16.636192 ], [ 105.468750, 16.636192 ] ] ], [ [ [ 108.281250, 16.636192 ], [ 108.281250, 13.923404 ], [ 106.875000, 13.923404 ], [ 106.875000, 16.636192 ], [ 108.281250, 16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 108.281250, 13.923404 ], [ 109.687500, 13.923404 ], [ 109.687500, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 9.795678 ], [ 106.875000, 9.795678 ], [ 106.875000, 8.407168 ], [ 105.468750, 8.407168 ], [ 105.468750, 11.178402 ], [ 106.875000, 11.178402 ], [ 106.875000, 12.554564 ], [ 108.281250, 12.554564 ], [ 108.281250, 13.923404 ] ] ], [ [ [ 104.062500, 19.311143 ], [ 104.062500, 20.632784 ], [ 102.656250, 20.632784 ], [ 102.656250, 23.241346 ], [ 106.875000, 23.241346 ], [ 106.875000, 21.943046 ], [ 108.281250, 21.943046 ], [ 108.281250, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 19.311143 ], [ 104.062500, 19.311143 ] ] ], [ [ [ 106.875000, 16.636192 ], [ 108.281250, 16.636192 ], [ 108.281250, 13.923404 ], [ 106.875000, 13.923404 ], [ 106.875000, 16.636192 ] ] ], [ [ [ 106.875000, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 17.978733 ], [ 106.875000, 17.978733 ], [ 106.875000, 16.636192 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.281250, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 11.178402 ], [ 105.468750, 11.178402 ], [ 105.468750, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 13.923404 ], [ 108.281250, 13.923404 ], [ 108.281250, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.281250, 13.923404 ], [ 108.281250, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 11.178402 ], [ 105.468750, 11.178402 ], [ 105.468750, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 13.923404 ], [ 108.281250, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.656250, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 101.250000, 1.406109 ], [ 101.250000, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 5.615986 ], [ 102.656250, 5.615986 ], [ 102.656250, 2.811371 ] ] ], [ [ [ 115.312500, 5.615986 ], [ 116.718750, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.125000, 7.013668 ], [ 118.125000, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ] ] ], [ [ [ 115.312500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.906250, 2.811371 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.656250, 5.615986 ], [ 102.656250, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 101.250000, 1.406109 ], [ 101.250000, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 5.615986 ], [ 102.656250, 5.615986 ] ] ], [ [ [ 115.312500, 4.214943 ], [ 115.312500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.906250, 2.811371 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.718750, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.125000, 7.013668 ], [ 118.125000, 4.214943 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.937500, 24.527135 ], [ 122.343750, 24.527135 ], [ 122.343750, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 24.527135 ] ] ], [ [ [ 120.937500, 21.943046 ], [ 119.531250, 21.943046 ], [ 119.531250, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.937500, 23.241346 ], [ 120.937500, 21.943046 ], [ 119.531250, 21.943046 ], [ 119.531250, 23.241346 ], [ 120.937500, 23.241346 ] ] ], [ [ [ 122.343750, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 24.527135 ], [ 122.343750, 24.527135 ], [ 122.343750, 23.241346 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 39.909736 ], [ 127.968750, 39.909736 ], [ 127.968750, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 40.979898 ], [ 127.968750, 40.979898 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ], [ 129.375000, 39.909736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 42.032974 ], [ 129.375000, 39.909736 ], [ 127.968750, 39.909736 ], [ 127.968750, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 40.979898 ], [ 127.968750, 40.979898 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 35.460670 ], [ 127.968750, 35.460670 ], [ 127.968750, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 37.718590 ], [ 129.375000, 37.718590 ], [ 129.375000, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 37.718590 ], [ 129.375000, 35.460670 ], [ 127.968750, 35.460670 ], [ 127.968750, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 37.718590 ], [ 129.375000, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.750000, 11.178402 ], [ 123.750000, 8.407168 ], [ 125.156250, 8.407168 ], [ 125.156250, 9.795678 ], [ 126.562500, 9.795678 ], [ 126.562500, 5.615986 ], [ 123.750000, 5.615986 ], [ 123.750000, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 11.178402 ], [ 123.750000, 11.178402 ] ] ], [ [ [ 125.156250, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 11.178402 ] ] ], [ [ [ 119.531250, 16.636192 ], [ 120.937500, 16.636192 ], [ 120.937500, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.284185 ], [ 120.937500, 15.284185 ], [ 120.937500, 13.923404 ], [ 119.531250, 13.923404 ], [ 119.531250, 16.636192 ] ] ], [ [ [ 123.750000, 12.554564 ], [ 122.343750, 12.554564 ], [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.343750, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 8.407168 ], [ 125.156250, 8.407168 ], [ 125.156250, 9.795678 ], [ 126.562500, 9.795678 ], [ 126.562500, 5.615986 ], [ 123.750000, 5.615986 ], [ 123.750000, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 11.178402 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 119.531250, 13.923404 ], [ 119.531250, 16.636192 ], [ 120.937500, 16.636192 ], [ 120.937500, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.284185 ], [ 120.937500, 15.284185 ], [ 120.937500, 13.923404 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ], [ 122.343750, 12.554564 ], [ 122.343750, 13.923404 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.593750, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 35.460670 ], [ 135.000000, 36.597889 ], [ 139.218750, 36.597889 ], [ 139.218750, 38.822591 ], [ 140.625000, 38.822591 ], [ 140.625000, 39.909736 ], [ 139.218750, 39.909736 ], [ 139.218750, 40.979898 ], [ 142.031250, 40.979898 ], [ 142.031250, 37.718590 ], [ 140.625000, 37.718590 ], [ 140.625000, 34.307144 ], [ 137.812500, 34.307144 ], [ 137.812500, 33.137551 ], [ 133.593750, 33.137551 ], [ 133.593750, 34.307144 ] ] ], [ [ [ 144.843750, 43.068888 ], [ 143.437500, 43.068888 ], [ 143.437500, 42.032974 ], [ 139.218750, 42.032974 ], [ 139.218750, 43.068888 ], [ 142.031250, 43.068888 ], [ 142.031250, 44.087585 ], [ 144.843750, 44.087585 ], [ 144.843750, 43.068888 ] ] ], [ [ [ 132.187500, 31.952162 ], [ 129.375000, 31.952162 ], [ 129.375000, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 31.952162 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.187500, 33.137551 ], [ 132.187500, 31.952162 ], [ 129.375000, 31.952162 ], [ 129.375000, 33.137551 ], [ 132.187500, 33.137551 ] ] ], [ [ [ 133.593750, 33.137551 ], [ 133.593750, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 35.460670 ], [ 135.000000, 36.597889 ], [ 139.218750, 36.597889 ], [ 139.218750, 38.822591 ], [ 140.625000, 38.822591 ], [ 140.625000, 39.909736 ], [ 139.218750, 39.909736 ], [ 139.218750, 40.979898 ], [ 142.031250, 40.979898 ], [ 142.031250, 38.822591 ], [ 140.625000, 37.718590 ], [ 140.625000, 34.307144 ], [ 137.812500, 34.307144 ], [ 137.812500, 33.137551 ], [ 133.593750, 33.137551 ] ] ], [ [ [ 144.843750, 44.087585 ], [ 144.843750, 43.068888 ], [ 143.437500, 43.068888 ], [ 143.437500, 42.032974 ], [ 139.218750, 42.032974 ], [ 139.218750, 43.068888 ], [ 142.031250, 43.068888 ], [ 142.031250, 44.087585 ], [ 144.843750, 44.087585 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -4.214943 ], [ 9.843750, -4.214943 ], [ 9.843750, -2.811371 ], [ 8.437500, -2.811371 ], [ 8.437500, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.811371 ], [ 12.656250, 2.811371 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.811371 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -4.214943 ], [ 9.843750, -4.214943 ], [ 9.843750, -2.811371 ], [ 8.437500, -2.811371 ], [ 8.437500, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.811371 ], [ 12.656250, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 1.406109 ], [ 15.468750, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 4.214943 ], [ 18.281250, 4.214943 ], [ 18.281250, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -2.811371 ], [ 15.468750, -2.811371 ], [ 15.468750, -5.615986 ], [ 14.062500, -5.615986 ], [ 14.062500, -4.214943 ], [ 12.656250, -4.214943 ], [ 12.656250, -5.615986 ], [ 11.250000, -5.615986 ], [ 11.250000, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, 1.406109 ], [ 15.468750, 1.406109 ] ] ], [ [ [ 12.656250, 1.406109 ], [ 12.656250, 2.811371 ], [ 14.062500, 2.811371 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.062500, 1.406109 ], [ 15.468750, 1.406109 ], [ 15.468750, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 4.214943 ], [ 18.281250, 4.214943 ], [ 18.281250, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -2.811371 ], [ 15.468750, -2.811371 ], [ 15.468750, -5.615986 ], [ 14.062500, -5.615986 ], [ 14.062500, -4.214943 ], [ 12.656250, -4.214943 ], [ 12.656250, -5.615986 ], [ 11.250000, -5.615986 ], [ 11.250000, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, 1.406109 ] ] ], [ [ [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.811371 ], [ 14.062500, 2.811371 ], [ 14.062500, 1.406109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.312500, -12.554564 ], [ 25.312500, -11.178402 ], [ 22.500000, -11.178402 ], [ 22.500000, -8.407168 ], [ 21.093750, -8.407168 ], [ 21.093750, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -8.407168 ], [ 16.875000, -8.407168 ], [ 16.875000, -5.615986 ], [ 15.468750, -5.615986 ], [ 15.468750, -2.811371 ], [ 16.875000, -2.811371 ], [ 16.875000, -1.406109 ], [ 18.281250, -1.406109 ], [ 18.281250, 4.214943 ], [ 25.312500, 4.214943 ], [ 25.312500, 5.615986 ], [ 26.718750, 5.615986 ], [ 26.718750, 4.214943 ], [ 29.531250, 4.214943 ], [ 29.531250, 2.811371 ], [ 30.937500, 2.811371 ], [ 30.937500, 1.406109 ], [ 29.531250, 1.406109 ], [ 29.531250, -8.407168 ], [ 28.125000, -8.407168 ], [ 28.125000, -12.554564 ], [ 25.312500, -12.554564 ] ] ], [ [ [ 12.656250, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -5.615986 ], [ 12.656250, -5.615986 ], [ 12.656250, -4.214943 ] ] ], [ [ [ 29.531250, -12.554564 ], [ 29.531250, -13.923404 ], [ 28.125000, -13.923404 ], [ 28.125000, -12.554564 ], [ 29.531250, -12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, -12.554564 ], [ 25.312500, -12.554564 ], [ 25.312500, -11.178402 ], [ 22.500000, -11.178402 ], [ 22.500000, -8.407168 ], [ 21.093750, -8.407168 ], [ 21.093750, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -8.407168 ], [ 16.875000, -8.407168 ], [ 16.875000, -5.615986 ], [ 15.468750, -5.615986 ], [ 15.468750, -2.811371 ], [ 16.875000, -2.811371 ], [ 16.875000, -1.406109 ], [ 18.281250, -1.406109 ], [ 18.281250, 4.214943 ], [ 25.312500, 4.214943 ], [ 25.312500, 5.615986 ], [ 26.718750, 5.615986 ], [ 26.718750, 4.214943 ], [ 29.531250, 4.214943 ], [ 29.531250, 2.811371 ], [ 30.937500, 2.811371 ], [ 30.937500, 1.406109 ], [ 29.531250, 1.406109 ], [ 29.531250, -8.407168 ], [ 28.125000, -8.407168 ], [ 28.125000, -12.554564 ] ] ], [ [ [ 14.062500, -5.615986 ], [ 12.656250, -5.615986 ], [ 12.656250, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -5.615986 ] ] ], [ [ [ 28.125000, -12.554564 ], [ 29.531250, -12.554564 ], [ 29.531250, -13.923404 ], [ 28.125000, -13.923404 ], [ 28.125000, -12.554564 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -12.554564 ], [ 22.500000, -12.554564 ], [ 22.500000, -17.978733 ], [ 14.062500, -17.978733 ], [ 14.062500, -16.636192 ], [ 11.250000, -16.636192 ], [ 11.250000, -15.284185 ], [ 12.656250, -15.284185 ], [ 12.656250, -12.554564 ], [ 14.062500, -12.554564 ], [ 14.062500, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -5.615986 ], [ 16.875000, -5.615986 ], [ 16.875000, -8.407168 ], [ 19.687500, -8.407168 ], [ 19.687500, -7.013668 ], [ 21.093750, -7.013668 ], [ 21.093750, -8.407168 ], [ 22.500000, -8.407168 ], [ 22.500000, -11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, -5.615986 ], [ 16.875000, -8.407168 ], [ 19.687500, -8.407168 ], [ 19.687500, -7.013668 ], [ 21.093750, -7.013668 ], [ 21.093750, -8.407168 ], [ 22.500000, -8.407168 ], [ 22.500000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -12.554564 ], [ 22.500000, -12.554564 ], [ 22.500000, -17.978733 ], [ 14.062500, -17.978733 ], [ 14.062500, -16.636192 ], [ 11.250000, -16.636192 ], [ 11.250000, -15.284185 ], [ 12.656250, -15.284185 ], [ 12.656250, -12.554564 ], [ 14.062500, -12.554564 ], [ 14.062500, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -5.615986 ], [ 16.875000, -5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, -17.978733 ], [ 21.093750, -17.978733 ], [ 21.093750, -21.943046 ], [ 19.687500, -21.943046 ], [ 19.687500, -29.535230 ], [ 18.281250, -29.535230 ], [ 18.281250, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -25.799891 ], [ 14.062500, -25.799891 ], [ 14.062500, -21.943046 ], [ 12.656250, -21.943046 ], [ 12.656250, -19.311143 ], [ 11.250000, -19.311143 ], [ 11.250000, -16.636192 ], [ 14.062500, -16.636192 ], [ 14.062500, -17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, -16.636192 ], [ 14.062500, -17.978733 ], [ 21.093750, -17.978733 ], [ 21.093750, -21.943046 ], [ 19.687500, -21.943046 ], [ 19.687500, -29.535230 ], [ 18.281250, -29.535230 ], [ 18.281250, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -25.799891 ], [ 14.062500, -25.799891 ], [ 14.062500, -21.943046 ], [ 12.656250, -21.943046 ], [ 12.656250, -19.311143 ], [ 11.250000, -19.311143 ], [ 11.250000, -16.636192 ], [ 14.062500, -16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 29.531250, -2.811371 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ], [ 30.937500, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.811371 ], [ 29.531250, -2.811371 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -2.811371 ], [ 30.937500, -2.811371 ], [ 30.937500, -4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 30.937500, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -2.811371 ], [ 30.937500, -2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -8.407168 ], [ 32.343750, -8.407168 ], [ 32.343750, -9.795678 ], [ 33.750000, -9.795678 ], [ 33.750000, -12.554564 ], [ 32.343750, -12.554564 ], [ 32.343750, -15.284185 ], [ 29.531250, -15.284185 ], [ 29.531250, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -12.554564 ], [ 23.906250, -12.554564 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -12.554564 ], [ 28.125000, -12.554564 ], [ 28.125000, -8.407168 ] ], [ [ 28.125000, -13.923404 ], [ 29.531250, -13.923404 ], [ 29.531250, -12.554564 ], [ 28.125000, -12.554564 ], [ 28.125000, -13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -12.554564 ], [ 28.125000, -8.407168 ], [ 32.343750, -8.407168 ], [ 32.343750, -9.795678 ], [ 33.750000, -9.795678 ], [ 33.750000, -12.554564 ], [ 32.343750, -12.554564 ], [ 32.343750, -15.284185 ], [ 29.531250, -15.284185 ], [ 29.531250, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -12.554564 ], [ 23.906250, -12.554564 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -12.554564 ], [ 28.125000, -12.554564 ] ], [ [ 28.125000, -12.554564 ], [ 28.125000, -13.923404 ], [ 29.531250, -13.923404 ], [ 29.531250, -12.554564 ], [ 28.125000, -12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.311143 ], [ 25.312500, -19.311143 ], [ 25.312500, -17.978733 ], [ 28.125000, -17.978733 ], [ 28.125000, -16.636192 ], [ 29.531250, -16.636192 ], [ 29.531250, -15.284185 ], [ 30.937500, -15.284185 ], [ 30.937500, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -15.284185 ], [ 30.937500, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.311143 ], [ 25.312500, -19.311143 ], [ 25.312500, -17.978733 ], [ 28.125000, -17.978733 ], [ 28.125000, -16.636192 ], [ 29.531250, -16.636192 ], [ 29.531250, -15.284185 ], [ 30.937500, -15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, -9.795678 ], [ 40.781250, -9.795678 ], [ 40.781250, -11.178402 ], [ 33.750000, -11.178402 ], [ 33.750000, -9.795678 ], [ 32.343750, -9.795678 ], [ 32.343750, -8.407168 ], [ 29.531250, -8.407168 ], [ 29.531250, -4.214943 ], [ 30.937500, -4.214943 ], [ 30.937500, -1.406109 ], [ 35.156250, -1.406109 ], [ 35.156250, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -4.214943 ], [ 39.375000, -4.214943 ], [ 39.375000, -9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, -1.406109 ], [ 35.156250, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -4.214943 ], [ 39.375000, -4.214943 ], [ 39.375000, -9.795678 ], [ 40.781250, -9.795678 ], [ 40.781250, -11.178402 ], [ 33.750000, -11.178402 ], [ 33.750000, -9.795678 ], [ 32.343750, -9.795678 ], [ 32.343750, -8.407168 ], [ 29.531250, -8.407168 ], [ 29.531250, -4.214943 ], [ 30.937500, -4.214943 ], [ 30.937500, -1.406109 ], [ 35.156250, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, -11.178402 ], [ 35.156250, -11.178402 ], [ 35.156250, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -11.178402 ] ] ], [ [ [ 35.156250, -13.923404 ], [ 35.156250, -16.636192 ], [ 33.750000, -16.636192 ], [ 33.750000, -13.923404 ], [ 35.156250, -13.923404 ] ] ], [ [ [ 33.750000, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -13.923404 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -16.636192 ], [ 33.750000, -16.636192 ], [ 33.750000, -13.923404 ] ] ], [ [ [ 35.156250, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -11.178402 ], [ 35.156250, -11.178402 ], [ 35.156250, -12.554564 ] ] ], [ [ [ 33.750000, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -13.923404 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, -16.636192 ], [ 37.968750, -16.636192 ], [ 37.968750, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -24.527135 ], [ 33.750000, -24.527135 ], [ 33.750000, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -23.241346 ], [ 30.937500, -23.241346 ], [ 30.937500, -21.943046 ], [ 32.343750, -21.943046 ], [ 32.343750, -16.636192 ], [ 30.937500, -16.636192 ], [ 30.937500, -15.284185 ], [ 32.343750, -15.284185 ], [ 32.343750, -13.923404 ], [ 33.750000, -13.923404 ], [ 33.750000, -12.554564 ], [ 35.156250, -12.554564 ], [ 35.156250, -11.178402 ], [ 40.781250, -11.178402 ], [ 40.781250, -16.636192 ] ], [ [ 35.156250, -16.636192 ], [ 35.156250, -13.923404 ], [ 33.750000, -13.923404 ], [ 33.750000, -16.636192 ], [ 35.156250, -16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -13.923404 ], [ 35.156250, -11.178402 ], [ 40.781250, -11.178402 ], [ 40.781250, -16.636192 ], [ 37.968750, -16.636192 ], [ 37.968750, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -24.527135 ], [ 33.750000, -24.527135 ], [ 33.750000, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -23.241346 ], [ 30.937500, -23.241346 ], [ 30.937500, -21.943046 ], [ 32.343750, -21.943046 ], [ 32.343750, -16.636192 ], [ 30.937500, -16.636192 ], [ 30.937500, -15.284185 ], [ 32.343750, -15.284185 ], [ 32.343750, -13.923404 ], [ 33.750000, -13.923404 ] ], [ [ 33.750000, -13.923404 ], [ 33.750000, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -13.923404 ], [ 33.750000, -13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -23.241346 ], [ 26.718750, -23.241346 ], [ 26.718750, -24.527135 ], [ 25.312500, -24.527135 ], [ 25.312500, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -27.059126 ], [ 21.093750, -27.059126 ], [ 21.093750, -25.799891 ], [ 19.687500, -25.799891 ], [ 19.687500, -21.943046 ], [ 21.093750, -21.943046 ], [ 21.093750, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -19.311143 ], [ 26.718750, -19.311143 ], [ 26.718750, -20.632784 ], [ 28.125000, -20.632784 ], [ 28.125000, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 25.312500, -19.311143 ], [ 26.718750, -19.311143 ], [ 26.718750, -20.632784 ], [ 28.125000, -20.632784 ], [ 28.125000, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -23.241346 ], [ 26.718750, -23.241346 ], [ 26.718750, -24.527135 ], [ 25.312500, -24.527135 ], [ 25.312500, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -27.059126 ], [ 21.093750, -27.059126 ], [ 21.093750, -25.799891 ], [ 19.687500, -25.799891 ], [ 19.687500, -21.943046 ], [ 21.093750, -21.943046 ], [ 21.093750, -17.978733 ], [ 25.312500, -17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -29.535230 ], [ 30.937500, -29.535230 ], [ 30.937500, -30.751278 ], [ 29.531250, -30.751278 ], [ 29.531250, -33.137551 ], [ 25.312500, -33.137551 ], [ 25.312500, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -31.952162 ], [ 16.875000, -31.952162 ], [ 16.875000, -28.304381 ], [ 18.281250, -28.304381 ], [ 18.281250, -29.535230 ], [ 19.687500, -29.535230 ], [ 19.687500, -25.799891 ], [ 21.093750, -25.799891 ], [ 21.093750, -27.059126 ], [ 22.500000, -27.059126 ], [ 22.500000, -25.799891 ], [ 25.312500, -25.799891 ], [ 25.312500, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.241346 ], [ 29.531250, -23.241346 ], [ 29.531250, -21.943046 ], [ 30.937500, -21.943046 ], [ 30.937500, -23.241346 ], [ 32.343750, -23.241346 ], [ 32.343750, -25.799891 ] ], [ [ 26.718750, -29.535230 ], [ 26.718750, -30.751278 ], [ 29.531250, -30.751278 ], [ 29.531250, -29.535230 ], [ 26.718750, -29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -21.943046 ], [ 30.937500, -23.241346 ], [ 32.343750, -23.241346 ], [ 32.343750, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -29.535230 ], [ 30.937500, -29.535230 ], [ 30.937500, -30.751278 ], [ 29.531250, -30.751278 ], [ 29.531250, -33.137551 ], [ 25.312500, -33.137551 ], [ 25.312500, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -31.952162 ], [ 16.875000, -31.952162 ], [ 16.875000, -28.304381 ], [ 18.281250, -28.304381 ], [ 18.281250, -29.535230 ], [ 19.687500, -29.535230 ], [ 19.687500, -25.799891 ], [ 21.093750, -25.799891 ], [ 21.093750, -27.059126 ], [ 22.500000, -27.059126 ], [ 22.500000, -25.799891 ], [ 25.312500, -25.799891 ], [ 25.312500, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.241346 ], [ 29.531250, -23.241346 ], [ 29.531250, -21.943046 ], [ 30.937500, -21.943046 ] ], [ [ 29.531250, -30.751278 ], [ 29.531250, -29.535230 ], [ 26.718750, -29.535230 ], [ 26.718750, -30.751278 ], [ 29.531250, -30.751278 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -27.059126 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, -25.799891 ], [ 32.343750, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ], [ 32.343750, -25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -30.751278 ], [ 26.718750, -30.751278 ], [ 26.718750, -29.535230 ], [ 29.531250, -29.535230 ], [ 29.531250, -30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -29.535230 ], [ 29.531250, -30.751278 ], [ 26.718750, -30.751278 ], [ 26.718750, -29.535230 ], [ 29.531250, -29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, -16.636192 ], [ 49.218750, -16.636192 ], [ 49.218750, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -24.527135 ], [ 46.406250, -24.527135 ], [ 46.406250, -25.799891 ], [ 43.593750, -25.799891 ], [ 43.593750, -20.632784 ], [ 45.000000, -20.632784 ], [ 45.000000, -19.311143 ], [ 43.593750, -19.311143 ], [ 43.593750, -17.978733 ], [ 45.000000, -17.978733 ], [ 45.000000, -16.636192 ], [ 46.406250, -16.636192 ], [ 46.406250, -15.284185 ], [ 47.812500, -15.284185 ], [ 47.812500, -13.923404 ], [ 50.625000, -13.923404 ], [ 50.625000, -16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, -13.923404 ], [ 50.625000, -16.636192 ], [ 49.218750, -16.636192 ], [ 49.218750, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -24.527135 ], [ 46.406250, -24.527135 ], [ 46.406250, -25.799891 ], [ 43.593750, -25.799891 ], [ 43.593750, -20.632784 ], [ 45.000000, -20.632784 ], [ 45.000000, -19.311143 ], [ 43.593750, -19.311143 ], [ 43.593750, -17.978733 ], [ 45.000000, -17.978733 ], [ 45.000000, -16.636192 ], [ 46.406250, -16.636192 ], [ 46.406250, -15.284185 ], [ 47.812500, -15.284185 ], [ 47.812500, -13.923404 ], [ 50.625000, -13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ], [ 70.312500, -49.837982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, -48.922499 ], [ 70.312500, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, -7.013668 ], [ 105.468750, -5.615986 ], [ 106.875000, -5.615986 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ] ] ], [ [ [ 140.625000, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -5.615986 ], [ 136.406250, -5.615986 ], [ 136.406250, -4.214943 ], [ 132.187500, -4.214943 ], [ 132.187500, -1.406109 ], [ 133.593750, -1.406109 ], [ 133.593750, -2.811371 ], [ 137.812500, -2.811371 ], [ 137.812500, -1.406109 ], [ 139.218750, -1.406109 ], [ 139.218750, -2.811371 ], [ 140.625000, -2.811371 ], [ 140.625000, -8.407168 ] ] ], [ [ [ 135.000000, -7.013668 ], [ 133.593750, -7.013668 ], [ 133.593750, -5.615986 ], [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ] ] ], [ [ [ 123.750000, -4.214943 ], [ 123.750000, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.214943 ], [ 123.750000, -4.214943 ] ] ], [ [ [ 120.937500, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.811371 ] ] ], [ [ [ 99.843750, 4.214943 ], [ 99.843750, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -2.811371 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 102.656250, -5.615986 ], [ 102.656250, -4.214943 ], [ 101.250000, -4.214943 ], [ 101.250000, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, 0.000000 ], [ 98.437500, 0.000000 ], [ 98.437500, 1.406109 ], [ 97.031250, 1.406109 ], [ 97.031250, 4.214943 ], [ 99.843750, 4.214943 ] ] ], [ [ [ 130.781250, -4.214943 ], [ 129.375000, -4.214943 ], [ 129.375000, -2.811371 ], [ 130.781250, -2.811371 ], [ 130.781250, -4.214943 ] ] ], [ [ [ 118.125000, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -4.214943 ], [ 113.906250, -4.214943 ], [ 113.906250, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, 1.406109 ], [ 115.312500, 1.406109 ], [ 115.312500, 4.214943 ], [ 118.125000, 4.214943 ], [ 118.125000, -1.406109 ] ] ], [ [ [ 129.375000, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, 1.406109 ], [ 129.375000, 1.406109 ], [ 129.375000, 0.000000 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 125.156250, 0.000000 ], [ 120.937500, 0.000000 ], [ 120.937500, 1.406109 ], [ 125.156250, 1.406109 ] ] ], [ [ [ 112.500000, -7.013668 ], [ 112.500000, -8.407168 ], [ 106.875000, -8.407168 ], [ 106.875000, -7.013668 ], [ 112.500000, -7.013668 ] ] ], [ [ [ 95.625000, 4.214943 ], [ 95.625000, 5.615986 ], [ 97.031250, 5.615986 ], [ 97.031250, 4.214943 ], [ 95.625000, 4.214943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.031250, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -2.811371 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 102.656250, -5.615986 ], [ 102.656250, -4.214943 ], [ 101.250000, -4.214943 ], [ 101.250000, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, 0.000000 ], [ 98.437500, 0.000000 ], [ 98.437500, 1.406109 ], [ 97.031250, 1.406109 ], [ 97.031250, 4.214943 ] ] ], [ [ [ 139.218750, -1.406109 ], [ 139.218750, -2.811371 ], [ 140.625000, -2.811371 ], [ 140.625000, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -5.615986 ], [ 136.406250, -5.615986 ], [ 136.406250, -4.214943 ], [ 132.187500, -4.214943 ], [ 132.187500, -1.406109 ], [ 133.593750, -1.406109 ], [ 133.593750, -2.811371 ], [ 137.812500, -2.811371 ], [ 137.812500, -1.406109 ], [ 139.218750, -1.406109 ] ] ], [ [ [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ], [ 133.593750, -7.013668 ], [ 133.593750, -5.615986 ], [ 135.000000, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 130.781250, -2.811371 ], [ 130.781250, -4.214943 ], [ 129.375000, -4.214943 ], [ 129.375000, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 118.125000, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -4.214943 ], [ 113.906250, -4.214943 ], [ 113.906250, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, 1.406109 ], [ 115.312500, 1.406109 ], [ 115.312500, 4.214943 ], [ 118.125000, 4.214943 ] ] ], [ [ [ 129.375000, 1.406109 ], [ 129.375000, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, 1.406109 ], [ 129.375000, 1.406109 ] ] ], [ [ [ 125.156250, 0.000000 ], [ 120.937500, 0.000000 ], [ 120.937500, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 0.000000 ] ] ], [ [ [ 106.875000, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -8.407168 ], [ 106.875000, -8.407168 ], [ 106.875000, -7.013668 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 106.875000, -5.615986 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 123.750000, -4.214943 ], [ 123.750000, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 97.031250, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 5.615986 ], [ 97.031250, 5.615986 ], [ 97.031250, 4.214943 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.562500, -9.795678 ], [ 125.156250, -9.795678 ], [ 125.156250, -8.407168 ], [ 126.562500, -8.407168 ], [ 126.562500, -9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.156250, -8.407168 ], [ 126.562500, -8.407168 ], [ 126.562500, -9.795678 ], [ 125.156250, -9.795678 ], [ 125.156250, -8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.656250, -44.087585 ], [ 146.250000, -44.087585 ], [ 146.250000, -43.068888 ], [ 144.843750, -43.068888 ], [ 144.843750, -40.979898 ], [ 147.656250, -40.979898 ], [ 147.656250, -44.087585 ] ] ], [ [ [ 136.406250, -16.636192 ], [ 139.218750, -16.636192 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -16.636192 ], [ 142.031250, -16.636192 ], [ 142.031250, -11.178402 ], [ 143.437500, -11.178402 ], [ 143.437500, -13.923404 ], [ 144.843750, -13.923404 ], [ 144.843750, -16.636192 ], [ 146.250000, -16.636192 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 150.468750, -21.943046 ], [ 150.468750, -24.527135 ], [ 151.875000, -24.527135 ], [ 151.875000, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -34.307144 ], [ 150.468750, -34.307144 ], [ 150.468750, -37.718590 ], [ 147.656250, -37.718590 ], [ 147.656250, -38.822591 ], [ 140.625000, -38.822591 ], [ 140.625000, -37.718590 ], [ 139.218750, -37.718590 ], [ 139.218750, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -35.460670 ], [ 135.000000, -35.460670 ], [ 135.000000, -33.137551 ], [ 133.593750, -33.137551 ], [ 133.593750, -31.952162 ], [ 126.562500, -31.952162 ], [ 126.562500, -33.137551 ], [ 123.750000, -33.137551 ], [ 123.750000, -34.307144 ], [ 118.125000, -34.307144 ], [ 118.125000, -35.460670 ], [ 115.312500, -35.460670 ], [ 115.312500, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -20.632784 ], [ 120.937500, -20.632784 ], [ 120.937500, -19.311143 ], [ 122.343750, -19.311143 ], [ 122.343750, -16.636192 ], [ 123.750000, -16.636192 ], [ 123.750000, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -13.923404 ], [ 127.968750, -13.923404 ], [ 127.968750, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -13.923404 ], [ 130.781250, -13.923404 ], [ 130.781250, -12.554564 ], [ 132.187500, -12.554564 ], [ 132.187500, -11.178402 ], [ 133.593750, -11.178402 ], [ 133.593750, -12.554564 ], [ 136.406250, -12.554564 ], [ 136.406250, -16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.656250, -40.979898 ], [ 147.656250, -44.087585 ], [ 146.250000, -44.087585 ], [ 146.250000, -43.068888 ], [ 144.843750, -43.068888 ], [ 144.843750, -40.979898 ], [ 147.656250, -40.979898 ] ] ], [ [ [ 143.437500, -11.178402 ], [ 143.437500, -13.923404 ], [ 144.843750, -13.923404 ], [ 144.843750, -16.636192 ], [ 146.250000, -16.636192 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 150.468750, -21.943046 ], [ 150.468750, -24.527135 ], [ 151.875000, -24.527135 ], [ 151.875000, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -34.307144 ], [ 150.468750, -34.307144 ], [ 150.468750, -37.718590 ], [ 147.656250, -37.718590 ], [ 147.656250, -38.822591 ], [ 140.625000, -38.822591 ], [ 140.625000, -37.718590 ], [ 139.218750, -37.718590 ], [ 139.218750, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -35.460670 ], [ 135.000000, -35.460670 ], [ 135.000000, -33.137551 ], [ 133.593750, -33.137551 ], [ 133.593750, -31.952162 ], [ 126.562500, -31.952162 ], [ 126.562500, -33.137551 ], [ 123.750000, -33.137551 ], [ 123.750000, -34.307144 ], [ 118.125000, -34.307144 ], [ 118.125000, -35.460670 ], [ 115.312500, -35.460670 ], [ 115.312500, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -20.632784 ], [ 120.937500, -20.632784 ], [ 120.937500, -19.311143 ], [ 122.343750, -19.311143 ], [ 122.343750, -16.636192 ], [ 123.750000, -16.636192 ], [ 123.750000, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -13.923404 ], [ 127.968750, -13.923404 ], [ 127.968750, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -13.923404 ], [ 130.781250, -13.923404 ], [ 130.781250, -12.554564 ], [ 132.187500, -12.554564 ], [ 132.187500, -11.178402 ], [ 133.593750, -11.178402 ], [ 133.593750, -12.554564 ], [ 136.406250, -12.554564 ], [ 136.406250, -16.636192 ], [ 139.218750, -16.636192 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -16.636192 ], [ 142.031250, -16.636192 ], [ 142.031250, -11.178402 ], [ 143.437500, -11.178402 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -4.214943 ], [ 146.250000, -4.214943 ], [ 146.250000, -5.615986 ], [ 147.656250, -5.615986 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.795678 ], [ 140.625000, -9.795678 ], [ 140.625000, -2.811371 ], [ 143.437500, -2.811371 ], [ 143.437500, -4.214943 ] ] ], [ [ [ 156.093750, -7.013668 ], [ 154.687500, -7.013668 ], [ 154.687500, -5.615986 ], [ 156.093750, -5.615986 ], [ 156.093750, -7.013668 ] ] ], [ [ [ 150.468750, -7.013668 ], [ 149.062500, -7.013668 ], [ 149.062500, -5.615986 ], [ 150.468750, -5.615986 ], [ 150.468750, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -2.811371 ], [ 143.437500, -4.214943 ], [ 146.250000, -4.214943 ], [ 146.250000, -5.615986 ], [ 147.656250, -5.615986 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.795678 ], [ 140.625000, -9.795678 ], [ 140.625000, -2.811371 ], [ 143.437500, -2.811371 ] ] ], [ [ [ 156.093750, -5.615986 ], [ 156.093750, -7.013668 ], [ 154.687500, -7.013668 ], [ 154.687500, -5.615986 ], [ 156.093750, -5.615986 ] ] ], [ [ [ 150.468750, -5.615986 ], [ 150.468750, -7.013668 ], [ 149.062500, -7.013668 ], [ 149.062500, -5.615986 ], [ 150.468750, -5.615986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -20.632784 ], [ 165.937500, -20.632784 ], [ 165.937500, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.937500, -20.632784 ], [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -20.632784 ], [ 165.937500, -20.632784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -43.068888 ], [ 172.968750, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -47.040182 ], [ 167.343750, -47.040182 ], [ 167.343750, -45.089036 ], [ 168.750000, -45.089036 ], [ 168.750000, -44.087585 ], [ 170.156250, -44.087585 ], [ 170.156250, -43.068888 ], [ 171.562500, -43.068888 ], [ 171.562500, -40.979898 ], [ 174.375000, -40.979898 ], [ 174.375000, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -38.822591 ], [ 177.187500, -38.822591 ], [ 177.187500, -40.979898 ], [ 175.781250, -40.979898 ], [ 175.781250, -42.032974 ], [ 174.375000, -42.032974 ], [ 174.375000, -43.068888 ], [ 172.968750, -43.068888 ] ] ], [ [ [ 172.968750, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ], [ 172.968750, -36.597889 ], [ 172.968750, -35.460670 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.375000, -42.032974 ], [ 174.375000, -43.068888 ], [ 172.968750, -43.068888 ], [ 172.968750, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -47.040182 ], [ 167.343750, -47.040182 ], [ 167.343750, -45.089036 ], [ 168.750000, -45.089036 ], [ 168.750000, -44.087585 ], [ 170.156250, -44.087585 ], [ 170.156250, -43.068888 ], [ 171.562500, -43.068888 ], [ 171.562500, -40.979898 ], [ 174.375000, -40.979898 ], [ 174.375000, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -38.822591 ], [ 177.187500, -38.822591 ], [ 177.187500, -40.979898 ], [ 175.781250, -40.979898 ], [ 175.781250, -42.032974 ], [ 174.375000, -42.032974 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 172.968750, -36.597889 ], [ 172.968750, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -75.234375, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 3.513421 ], [ -67.500000, 3.513421 ], [ -67.500000, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 3.513421 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -74.531250, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 3.513421 ], [ -67.500000, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 0.703107 ], [ -66.796875, 0.703107 ], [ -66.796875, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 3.513421 ], [ -64.687500, 3.513421 ], [ -64.687500, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, 3.513421 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 0.703107 ], [ -66.796875, 0.703107 ], [ -66.796875, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 3.513421 ], [ -64.687500, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 3.513421 ], [ -56.953125, 3.513421 ], [ -56.953125, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 3.513421 ], [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 3.513421 ], [ -56.953125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 3.513421 ], [ -54.140625, 3.513421 ], [ -54.140625, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 3.513421 ], [ -54.140625, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 3.513421 ], [ -54.140625, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.031250, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 2.108899 ], [ -54.140625, 2.108899 ], [ -54.140625, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.031250, 3.513421 ], [ -52.031250, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 2.108899 ], [ -54.140625, 2.108899 ], [ -54.140625, 3.513421 ], [ -52.031250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -78.750000, -3.513421 ], [ -78.750000, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -3.513421 ], [ -79.453125, -3.513421 ], [ -79.453125, -2.811371 ], [ -80.859375, -2.811371 ], [ -80.859375, -0.703107 ], [ -80.156250, -0.703107 ], [ -80.156250, 0.703107 ], [ -77.343750, 0.703107 ], [ -77.343750, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 0.703107 ], [ -77.343750, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -78.750000, -3.513421 ], [ -78.750000, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -3.513421 ], [ -79.453125, -3.513421 ], [ -79.453125, -2.811371 ], [ -80.859375, -2.811371 ], [ -80.859375, -0.703107 ], [ -80.156250, -0.703107 ], [ -80.156250, 0.703107 ], [ -77.343750, 0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.015625, -4.214943 ], [ -71.015625, -4.915833 ], [ -71.718750, -4.915833 ], [ -71.718750, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -73.828125, -7.013668 ], [ -73.828125, -9.102097 ], [ -73.125000, -9.102097 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -69.609375, -11.178402 ], [ -69.609375, -11.867351 ], [ -68.906250, -11.867351 ], [ -68.906250, -15.961329 ], [ -69.609375, -15.961329 ], [ -69.609375, -16.636192 ], [ -68.906250, -16.636192 ], [ -68.906250, -17.308688 ], [ -69.609375, -17.308688 ], [ -69.609375, -18.646245 ], [ -71.718750, -18.646245 ], [ -71.718750, -17.308688 ], [ -73.125000, -17.308688 ], [ -73.125000, -16.636192 ], [ -73.828125, -16.636192 ], [ -73.828125, -15.961329 ], [ -75.234375, -15.961329 ], [ -75.234375, -15.284185 ], [ -75.937500, -15.284185 ], [ -75.937500, -14.604847 ], [ -76.640625, -14.604847 ], [ -76.640625, -13.923404 ], [ -75.937500, -13.923404 ], [ -75.937500, -13.239945 ], [ -77.343750, -13.239945 ], [ -77.343750, -11.867351 ], [ -78.046875, -11.867351 ], [ -78.046875, -9.795678 ], [ -78.750000, -9.795678 ], [ -78.750000, -8.407168 ], [ -79.453125, -8.407168 ], [ -79.453125, -7.013668 ], [ -80.859375, -7.013668 ], [ -80.859375, -5.615986 ], [ -81.562500, -5.615986 ], [ -81.562500, -4.915833 ], [ -80.859375, -4.915833 ], [ -80.859375, -4.214943 ], [ -79.453125, -4.214943 ], [ -79.453125, -4.915833 ], [ -78.750000, -4.915833 ], [ -78.750000, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, -2.108899 ], [ -75.234375, -2.108899 ], [ -75.234375, -0.703107 ], [ -73.828125, -0.703107 ], [ -73.828125, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -0.703107 ], [ -73.828125, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.015625, -4.214943 ], [ -71.015625, -4.915833 ], [ -71.718750, -4.915833 ], [ -71.718750, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -73.828125, -7.013668 ], [ -73.828125, -9.102097 ], [ -73.125000, -9.102097 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -69.609375, -11.178402 ], [ -69.609375, -11.867351 ], [ -68.906250, -11.867351 ], [ -68.906250, -15.961329 ], [ -69.609375, -15.961329 ], [ -69.609375, -16.636192 ], [ -68.906250, -16.636192 ], [ -69.609375, -17.308688 ], [ -69.609375, -18.646245 ], [ -71.718750, -18.646245 ], [ -71.718750, -17.308688 ], [ -73.125000, -17.308688 ], [ -73.125000, -16.636192 ], [ -73.828125, -16.636192 ], [ -73.828125, -15.961329 ], [ -75.234375, -15.961329 ], [ -75.234375, -15.284185 ], [ -75.937500, -15.284185 ], [ -75.937500, -14.604847 ], [ -76.640625, -14.604847 ], [ -76.640625, -13.923404 ], [ -75.937500, -13.923404 ], [ -75.937500, -13.239945 ], [ -77.343750, -13.239945 ], [ -77.343750, -11.867351 ], [ -78.046875, -11.867351 ], [ -78.046875, -9.795678 ], [ -78.750000, -9.795678 ], [ -78.750000, -8.407168 ], [ -79.453125, -8.407168 ], [ -79.453125, -7.013668 ], [ -80.859375, -7.013668 ], [ -80.859375, -5.615986 ], [ -81.562500, -5.615986 ], [ -81.562500, -4.915833 ], [ -80.859375, -4.915833 ], [ -80.859375, -4.214943 ], [ -79.453125, -4.214943 ], [ -79.453125, -4.915833 ], [ -78.750000, -4.915833 ], [ -78.750000, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, -2.108899 ], [ -75.234375, -2.108899 ], [ -75.234375, -0.703107 ], [ -73.828125, -0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.234375, -52.482780 ], [ -75.234375, -49.382373 ], [ -75.937500, -49.382373 ], [ -75.937500, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.517201 ], [ -73.828125, -47.517201 ], [ -73.828125, -47.040182 ], [ -75.234375, -47.040182 ], [ -75.234375, -46.073231 ], [ -74.531250, -46.073231 ], [ -74.531250, -44.590467 ], [ -73.125000, -44.590467 ], [ -73.125000, -43.580391 ], [ -72.421875, -43.580391 ], [ -72.421875, -43.068888 ], [ -71.718750, -43.068888 ], [ -71.718750, -44.590467 ], [ -71.015625, -44.590467 ], [ -71.015625, -45.089036 ], [ -71.718750, -45.089036 ], [ -71.718750, -47.517201 ], [ -72.421875, -47.517201 ], [ -72.421875, -49.382373 ], [ -73.125000, -49.382373 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -52.052490 ], [ -69.609375, -52.052490 ], [ -69.609375, -52.482780 ], [ -68.906250, -52.482780 ], [ -68.906250, -54.977614 ], [ -66.796875, -54.977614 ], [ -66.796875, -55.379110 ], [ -67.500000, -55.379110 ], [ -67.500000, -55.776573 ], [ -68.906250, -55.776573 ], [ -68.906250, -55.379110 ], [ -71.015625, -55.379110 ], [ -71.015625, -54.977614 ], [ -72.421875, -54.977614 ], [ -72.421875, -54.572062 ], [ -73.125000, -54.572062 ], [ -73.125000, -54.162434 ], [ -73.828125, -54.162434 ], [ -73.828125, -53.330873 ], [ -74.531250, -53.330873 ], [ -74.531250, -52.482780 ], [ -75.234375, -52.482780 ] ], [ [ -72.421875, -54.162434 ], [ -70.312500, -54.162434 ], [ -70.312500, -52.908902 ], [ -71.015625, -52.908902 ], [ -71.015625, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -54.162434 ] ] ], [ [ [ -72.421875, -53.330873 ], [ -72.421875, -53.748711 ], [ -73.125000, -53.748711 ], [ -73.125000, -53.330873 ], [ -72.421875, -53.330873 ] ] ], [ [ [ -68.906250, -19.311143 ], [ -68.203125, -19.311143 ], [ -68.203125, -19.973349 ], [ -68.906250, -19.973349 ], [ -68.906250, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -21.943046 ], [ -67.500000, -21.943046 ], [ -67.500000, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -23.885838 ], [ -67.500000, -23.885838 ], [ -67.500000, -24.527135 ], [ -68.203125, -24.527135 ], [ -68.203125, -26.431228 ], [ -68.906250, -26.431228 ], [ -68.906250, -27.059126 ], [ -68.203125, -27.059126 ], [ -68.203125, -27.683528 ], [ -68.906250, -27.683528 ], [ -68.906250, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.921631 ], [ -70.312500, -28.921631 ], [ -70.312500, -30.145127 ], [ -69.609375, -30.145127 ], [ -69.609375, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -33.137551 ], [ -69.609375, -33.137551 ], [ -69.609375, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -38.822591 ], [ -71.718750, -38.822591 ], [ -71.718750, -42.032974 ], [ -72.421875, -42.032974 ], [ -72.421875, -42.553080 ], [ -73.125000, -42.553080 ], [ -73.125000, -43.068888 ], [ -73.828125, -43.068888 ], [ -73.828125, -43.580391 ], [ -74.531250, -43.580391 ], [ -74.531250, -42.553080 ], [ -73.828125, -42.553080 ], [ -73.828125, -39.909736 ], [ -73.125000, -39.909736 ], [ -73.125000, -38.822591 ], [ -73.828125, -38.822591 ], [ -73.828125, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.597889 ], [ -72.421875, -36.597889 ], [ -72.421875, -34.885931 ], [ -71.718750, -34.885931 ], [ -71.718750, -28.304381 ], [ -71.015625, -28.304381 ], [ -71.015625, -25.165173 ], [ -70.312500, -25.165173 ], [ -70.312500, -18.646245 ], [ -69.609375, -18.646245 ], [ -69.609375, -17.978733 ], [ -68.906250, -17.978733 ], [ -68.906250, -19.311143 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.531250, -52.482780 ], [ -75.234375, -52.482780 ], [ -75.234375, -49.382373 ], [ -75.937500, -49.382373 ], [ -75.937500, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.517201 ], [ -73.828125, -47.517201 ], [ -73.828125, -47.040182 ], [ -75.234375, -47.040182 ], [ -75.234375, -46.073231 ], [ -74.531250, -46.073231 ], [ -74.531250, -44.590467 ], [ -73.125000, -44.590467 ], [ -73.125000, -43.580391 ], [ -72.421875, -43.580391 ], [ -72.421875, -43.068888 ], [ -71.718750, -43.068888 ], [ -71.718750, -44.590467 ], [ -71.015625, -44.590467 ], [ -71.015625, -45.089036 ], [ -71.718750, -45.089036 ], [ -71.718750, -47.517201 ], [ -72.421875, -47.517201 ], [ -72.421875, -49.382373 ], [ -73.125000, -49.382373 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -52.052490 ], [ -69.609375, -52.052490 ], [ -69.609375, -52.482780 ], [ -68.906250, -52.482780 ], [ -68.906250, -54.977614 ], [ -66.796875, -54.977614 ], [ -66.796875, -55.379110 ], [ -67.500000, -55.379110 ], [ -67.500000, -55.776573 ], [ -68.906250, -55.776573 ], [ -68.906250, -55.379110 ], [ -71.015625, -55.379110 ], [ -71.015625, -54.977614 ], [ -72.421875, -54.977614 ], [ -72.421875, -54.572062 ], [ -73.125000, -54.572062 ], [ -73.125000, -54.162434 ], [ -73.828125, -54.162434 ], [ -73.828125, -53.330873 ], [ -74.531250, -53.330873 ], [ -74.531250, -52.482780 ] ], [ [ -72.421875, -53.748711 ], [ -72.421875, -54.162434 ], [ -70.312500, -54.162434 ], [ -70.312500, -52.908902 ], [ -71.015625, -52.908902 ], [ -71.015625, -53.748711 ], [ -72.421875, -53.748711 ] ], [ [ -72.421875, -53.748711 ], [ -72.421875, -53.330873 ], [ -73.125000, -53.330873 ], [ -73.125000, -53.748711 ], [ -72.421875, -53.748711 ] ] ], [ [ [ -68.906250, -17.978733 ], [ -68.906250, -19.311143 ], [ -68.203125, -19.311143 ], [ -68.203125, -19.973349 ], [ -68.906250, -19.973349 ], [ -68.906250, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -21.943046 ], [ -67.500000, -21.943046 ], [ -67.500000, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -23.885838 ], [ -67.500000, -23.885838 ], [ -67.500000, -24.527135 ], [ -68.203125, -24.527135 ], [ -68.203125, -26.431228 ], [ -68.906250, -26.431228 ], [ -68.906250, -27.059126 ], [ -68.203125, -27.059126 ], [ -68.203125, -27.683528 ], [ -68.906250, -27.683528 ], [ -68.906250, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.921631 ], [ -70.312500, -28.921631 ], [ -70.312500, -30.145127 ], [ -69.609375, -30.145127 ], [ -69.609375, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -33.137551 ], [ -69.609375, -33.137551 ], [ -69.609375, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -38.822591 ], [ -71.718750, -38.822591 ], [ -71.718750, -42.032974 ], [ -72.421875, -42.032974 ], [ -72.421875, -42.553080 ], [ -73.125000, -42.553080 ], [ -73.125000, -43.068888 ], [ -73.828125, -43.068888 ], [ -73.828125, -43.580391 ], [ -74.531250, -43.580391 ], [ -74.531250, -42.553080 ], [ -73.828125, -42.553080 ], [ -73.828125, -39.909736 ], [ -73.125000, -39.909736 ], [ -73.125000, -38.822591 ], [ -73.828125, -38.822591 ], [ -73.828125, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.597889 ], [ -72.421875, -36.597889 ], [ -72.421875, -34.885931 ], [ -71.718750, -34.885931 ], [ -71.718750, -28.304381 ], [ -71.015625, -28.304381 ], [ -71.015625, -25.165173 ], [ -70.312500, -25.165173 ], [ -70.312500, -18.646245 ], [ -69.609375, -18.646245 ], [ -69.609375, -17.978733 ], [ -68.906250, -17.978733 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -17.308688 ], [ -57.656250, -17.308688 ], [ -57.656250, -19.973349 ], [ -59.062500, -19.973349 ], [ -59.062500, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -19.973349 ], [ -62.578125, -19.973349 ], [ -62.578125, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.593726 ], [ -64.687500, -22.593726 ], [ -64.687500, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -22.593726 ], [ -67.500000, -22.593726 ], [ -67.500000, -21.943046 ], [ -68.203125, -21.943046 ], [ -68.203125, -21.289374 ], [ -68.906250, -21.289374 ], [ -68.906250, -19.973349 ], [ -68.203125, -19.973349 ], [ -68.203125, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.308688 ], [ -68.906250, -17.308688 ], [ -68.906250, -16.636192 ], [ -69.609375, -16.636192 ], [ -69.609375, -15.961329 ], [ -68.906250, -15.961329 ], [ -68.906250, -11.867351 ], [ -69.609375, -11.867351 ], [ -69.609375, -11.178402 ], [ -68.203125, -11.178402 ], [ -68.203125, -10.487812 ], [ -66.796875, -10.487812 ], [ -66.796875, -9.795678 ], [ -65.390625, -9.795678 ], [ -65.390625, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -13.239945 ], [ -61.171875, -13.239945 ], [ -61.171875, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -15.961329 ], [ -59.765625, -15.961329 ], [ -59.765625, -16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.795678 ], [ -65.390625, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -13.239945 ], [ -61.171875, -13.239945 ], [ -61.171875, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -15.961329 ], [ -59.765625, -15.961329 ], [ -59.765625, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -17.308688 ], [ -57.656250, -17.308688 ], [ -57.656250, -19.973349 ], [ -59.062500, -19.973349 ], [ -59.062500, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -19.973349 ], [ -62.578125, -19.973349 ], [ -62.578125, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.593726 ], [ -64.687500, -22.593726 ], [ -64.687500, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -22.593726 ], [ -67.500000, -22.593726 ], [ -67.500000, -21.943046 ], [ -68.203125, -21.943046 ], [ -68.203125, -21.289374 ], [ -68.906250, -21.289374 ], [ -68.906250, -19.973349 ], [ -68.203125, -19.973349 ], [ -68.203125, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.308688 ], [ -68.906250, -17.308688 ], [ -68.906250, -16.636192 ], [ -69.609375, -16.636192 ], [ -69.609375, -15.961329 ], [ -68.906250, -15.961329 ], [ -68.906250, -11.867351 ], [ -69.609375, -11.867351 ], [ -69.609375, -11.178402 ], [ -68.203125, -11.178402 ], [ -68.203125, -10.487812 ], [ -66.796875, -10.487812 ], [ -66.796875, -9.795678 ], [ -65.390625, -9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625000, 1.406109 ], [ -49.921875, 1.406109 ], [ -49.921875, 0.000000 ], [ -48.515625, 0.000000 ], [ -48.515625, -1.406109 ], [ -47.812500, -1.406109 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.811371 ], [ -43.593750, -2.811371 ], [ -43.593750, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -4.214943 ], [ -37.968750, -4.214943 ], [ -37.968750, -4.915833 ], [ -35.859375, -4.915833 ], [ -35.859375, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -7.013668 ], [ -34.453125, -7.013668 ], [ -34.453125, -8.407168 ], [ -35.156250, -8.407168 ], [ -35.156250, -9.795678 ], [ -35.859375, -9.795678 ], [ -35.859375, -10.487812 ], [ -36.562500, -10.487812 ], [ -36.562500, -11.178402 ], [ -37.265625, -11.178402 ], [ -37.265625, -11.867351 ], [ -37.968750, -11.867351 ], [ -37.968750, -12.554564 ], [ -38.671875, -12.554564 ], [ -38.671875, -16.636192 ], [ -39.375000, -16.636192 ], [ -39.375000, -18.646245 ], [ -40.078125, -18.646245 ], [ -40.078125, -19.973349 ], [ -40.781250, -19.973349 ], [ -40.781250, -22.593726 ], [ -41.484375, -22.593726 ], [ -41.484375, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.885838 ], [ -46.406250, -23.885838 ], [ -46.406250, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -25.165173 ], [ -47.812500, -25.165173 ], [ -47.812500, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -28.921631 ], [ -49.921875, -28.921631 ], [ -49.921875, -30.145127 ], [ -50.625000, -30.145127 ], [ -50.625000, -31.353637 ], [ -51.328125, -31.353637 ], [ -51.328125, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -32.546813 ], [ -52.734375, -32.546813 ], [ -52.734375, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -31.952162 ], [ -54.843750, -31.952162 ], [ -54.843750, -31.353637 ], [ -55.546875, -31.353637 ], [ -55.546875, -30.751278 ], [ -56.953125, -30.751278 ], [ -56.953125, -29.535230 ], [ -56.250000, -29.535230 ], [ -56.250000, -28.921631 ], [ -55.546875, -28.921631 ], [ -55.546875, -28.304381 ], [ -54.843750, -28.304381 ], [ -54.843750, -27.683528 ], [ -53.437500, -27.683528 ], [ -53.437500, -26.431228 ], [ -54.140625, -26.431228 ], [ -54.140625, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -22.593726 ], [ -57.656250, -22.593726 ], [ -57.656250, -20.632784 ], [ -58.359375, -20.632784 ], [ -58.359375, -19.973349 ], [ -57.656250, -19.973349 ], [ -57.656250, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.636192 ], [ -59.765625, -16.636192 ], [ -59.765625, -15.961329 ], [ -60.468750, -15.961329 ], [ -60.468750, -13.923404 ], [ -61.171875, -13.923404 ], [ -61.171875, -13.239945 ], [ -63.281250, -13.239945 ], [ -63.281250, -12.554564 ], [ -65.390625, -12.554564 ], [ -65.390625, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -10.487812 ], [ -68.203125, -10.487812 ], [ -68.203125, -11.178402 ], [ -70.312500, -11.178402 ], [ -70.312500, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -9.102097 ], [ -73.828125, -9.102097 ], [ -73.828125, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -71.718750, -5.615986 ], [ -71.718750, -4.915833 ], [ -71.015625, -4.915833 ], [ -71.015625, -4.214943 ], [ -69.609375, -4.214943 ], [ -69.609375, -0.703107 ], [ -70.312500, -0.703107 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 3.513421 ], [ -59.765625, 3.513421 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 3.513421 ], [ -51.328125, 3.513421 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.328125, 3.513421 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 1.406109 ], [ -49.921875, 1.406109 ], [ -49.921875, 0.000000 ], [ -48.515625, 0.000000 ], [ -48.515625, -1.406109 ], [ -47.812500, -1.406109 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.811371 ], [ -43.593750, -2.811371 ], [ -43.593750, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -4.214943 ], [ -37.968750, -4.214943 ], [ -37.968750, -4.915833 ], [ -35.859375, -4.915833 ], [ -35.859375, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -7.013668 ], [ -34.453125, -7.013668 ], [ -34.453125, -8.407168 ], [ -35.156250, -8.407168 ], [ -35.156250, -9.795678 ], [ -35.859375, -9.795678 ], [ -35.859375, -10.487812 ], [ -36.562500, -10.487812 ], [ -36.562500, -11.178402 ], [ -37.265625, -11.178402 ], [ -37.265625, -11.867351 ], [ -37.968750, -11.867351 ], [ -37.968750, -12.554564 ], [ -38.671875, -12.554564 ], [ -38.671875, -16.636192 ], [ -39.375000, -16.636192 ], [ -39.375000, -18.646245 ], [ -40.078125, -18.646245 ], [ -40.078125, -19.973349 ], [ -40.781250, -19.973349 ], [ -40.781250, -22.593726 ], [ -41.484375, -22.593726 ], [ -41.484375, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.885838 ], [ -46.406250, -23.885838 ], [ -46.406250, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -25.165173 ], [ -47.812500, -25.165173 ], [ -47.812500, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -28.921631 ], [ -49.921875, -28.921631 ], [ -49.921875, -30.145127 ], [ -50.625000, -30.145127 ], [ -50.625000, -31.353637 ], [ -51.328125, -31.353637 ], [ -51.328125, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -32.546813 ], [ -52.734375, -32.546813 ], [ -52.734375, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -31.952162 ], [ -54.843750, -31.952162 ], [ -54.843750, -31.353637 ], [ -55.546875, -31.353637 ], [ -55.546875, -30.751278 ], [ -56.953125, -30.751278 ], [ -56.953125, -29.535230 ], [ -56.250000, -29.535230 ], [ -56.250000, -28.921631 ], [ -55.546875, -28.921631 ], [ -55.546875, -28.304381 ], [ -54.843750, -28.304381 ], [ -54.843750, -27.683528 ], [ -53.437500, -27.683528 ], [ -53.437500, -26.431228 ], [ -54.140625, -26.431228 ], [ -54.140625, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -22.593726 ], [ -57.656250, -22.593726 ], [ -57.656250, -20.632784 ], [ -58.359375, -20.632784 ], [ -58.359375, -19.973349 ], [ -57.656250, -19.973349 ], [ -57.656250, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.636192 ], [ -59.765625, -16.636192 ], [ -59.765625, -15.961329 ], [ -60.468750, -15.961329 ], [ -60.468750, -13.923404 ], [ -61.171875, -13.923404 ], [ -61.171875, -13.239945 ], [ -63.281250, -13.239945 ], [ -63.281250, -12.554564 ], [ -65.390625, -12.554564 ], [ -65.390625, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -10.487812 ], [ -68.203125, -10.487812 ], [ -68.203125, -11.178402 ], [ -70.312500, -11.178402 ], [ -70.312500, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -9.102097 ], [ -73.828125, -9.102097 ], [ -73.828125, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -71.718750, -5.615986 ], [ -71.718750, -4.915833 ], [ -71.015625, -4.915833 ], [ -71.015625, -4.214943 ], [ -69.609375, -4.214943 ], [ -69.609375, -0.703107 ], [ -70.312500, -0.703107 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 3.513421 ], [ -59.765625, 3.513421 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 3.513421 ], [ -51.328125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -20.632784 ], [ -57.656250, -20.632784 ], [ -57.656250, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.885838 ], [ -54.140625, -23.885838 ], [ -54.140625, -25.799891 ], [ -54.843750, -25.799891 ], [ -54.843750, -27.059126 ], [ -55.546875, -27.059126 ], [ -55.546875, -27.683528 ], [ -58.359375, -27.683528 ], [ -58.359375, -26.431228 ], [ -57.656250, -26.431228 ], [ -57.656250, -25.165173 ], [ -59.062500, -25.165173 ], [ -59.062500, -24.527135 ], [ -59.765625, -24.527135 ], [ -59.765625, -23.885838 ], [ -61.875000, -23.885838 ], [ -61.875000, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -19.973349 ], [ -61.875000, -19.973349 ], [ -61.875000, -19.311143 ], [ -59.062500, -19.311143 ], [ -59.062500, -19.973349 ], [ -58.359375, -19.973349 ], [ -58.359375, -20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.973349 ], [ -58.359375, -19.973349 ], [ -58.359375, -20.632784 ], [ -57.656250, -20.632784 ], [ -57.656250, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.885838 ], [ -54.140625, -23.885838 ], [ -54.140625, -25.799891 ], [ -54.843750, -25.799891 ], [ -54.843750, -27.059126 ], [ -55.546875, -27.059126 ], [ -55.546875, -27.683528 ], [ -58.359375, -27.683528 ], [ -58.359375, -26.431228 ], [ -57.656250, -26.431228 ], [ -57.656250, -25.165173 ], [ -59.062500, -25.165173 ], [ -59.062500, -24.527135 ], [ -59.765625, -24.527135 ], [ -59.765625, -23.885838 ], [ -61.171875, -23.885838 ], [ -62.578125, -22.593726 ], [ -62.578125, -19.973349 ], [ -61.875000, -19.973349 ], [ -61.875000, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, -53.330873 ], [ -67.500000, -53.330873 ], [ -67.500000, -54.162434 ], [ -66.796875, -54.162434 ], [ -66.796875, -54.572062 ], [ -65.390625, -54.572062 ], [ -65.390625, -55.379110 ], [ -66.796875, -55.379110 ], [ -66.796875, -54.977614 ], [ -68.906250, -54.977614 ], [ -68.906250, -52.908902 ], [ -68.203125, -52.908902 ], [ -68.203125, -53.330873 ] ] ], [ [ [ -61.875000, -23.885838 ], [ -59.765625, -23.885838 ], [ -59.765625, -24.527135 ], [ -59.062500, -24.527135 ], [ -59.062500, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -27.683528 ], [ -55.546875, -27.683528 ], [ -55.546875, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -26.431228 ], [ -53.437500, -26.431228 ], [ -53.437500, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -31.353637 ], [ -58.359375, -31.353637 ], [ -58.359375, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.460670 ], [ -56.953125, -35.460670 ], [ -56.953125, -36.031332 ], [ -57.656250, -36.031332 ], [ -57.656250, -36.597889 ], [ -56.953125, -36.597889 ], [ -56.953125, -37.718590 ], [ -57.656250, -37.718590 ], [ -57.656250, -38.822591 ], [ -62.578125, -38.822591 ], [ -62.578125, -39.368279 ], [ -61.875000, -39.368279 ], [ -61.875000, -39.909736 ], [ -62.578125, -39.909736 ], [ -62.578125, -40.446947 ], [ -61.875000, -40.446947 ], [ -61.875000, -40.979898 ], [ -65.390625, -40.979898 ], [ -65.390625, -41.508577 ], [ -64.687500, -41.508577 ], [ -64.687500, -42.553080 ], [ -63.281250, -42.553080 ], [ -63.281250, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.580391 ], [ -65.390625, -43.580391 ], [ -65.390625, -45.089036 ], [ -66.796875, -45.089036 ], [ -66.796875, -45.583290 ], [ -67.500000, -45.583290 ], [ -67.500000, -46.558860 ], [ -66.796875, -46.558860 ], [ -66.796875, -47.040182 ], [ -65.390625, -47.040182 ], [ -65.390625, -47.517201 ], [ -66.093750, -47.517201 ], [ -66.093750, -48.458352 ], [ -66.796875, -48.458352 ], [ -66.796875, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -50.289339 ], [ -68.906250, -50.289339 ], [ -68.906250, -52.052490 ], [ -68.203125, -52.052490 ], [ -68.203125, -52.482780 ], [ -69.609375, -52.482780 ], [ -69.609375, -52.052490 ], [ -72.421875, -52.052490 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -49.382373 ], [ -72.421875, -49.382373 ], [ -72.421875, -47.517201 ], [ -71.718750, -47.517201 ], [ -71.718750, -45.089036 ], [ -71.015625, -45.089036 ], [ -71.015625, -44.590467 ], [ -71.718750, -44.590467 ], [ -71.718750, -43.068888 ], [ -72.421875, -43.068888 ], [ -72.421875, -42.032974 ], [ -71.718750, -42.032974 ], [ -71.718750, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -36.597889 ], [ -70.312500, -36.597889 ], [ -70.312500, -34.885931 ], [ -69.609375, -34.885931 ], [ -69.609375, -33.137551 ], [ -70.312500, -33.137551 ], [ -70.312500, -30.751278 ], [ -69.609375, -30.751278 ], [ -69.609375, -30.145127 ], [ -70.312500, -30.145127 ], [ -70.312500, -28.921631 ], [ -69.609375, -28.921631 ], [ -69.609375, -28.304381 ], [ -68.906250, -28.304381 ], [ -68.906250, -27.683528 ], [ -68.203125, -27.683528 ], [ -68.203125, -27.059126 ], [ -68.906250, -27.059126 ], [ -68.906250, -26.431228 ], [ -68.203125, -26.431228 ], [ -68.203125, -24.527135 ], [ -67.500000, -24.527135 ], [ -67.500000, -23.885838 ], [ -66.796875, -23.885838 ], [ -66.796875, -22.593726 ], [ -66.093750, -22.593726 ], [ -66.093750, -21.943046 ], [ -64.687500, -21.943046 ], [ -64.687500, -22.593726 ], [ -63.984375, -22.593726 ], [ -63.984375, -21.943046 ], [ -62.578125, -21.943046 ], [ -62.578125, -22.593726 ], [ -61.875000, -22.593726 ], [ -61.875000, -23.885838 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, -52.908902 ], [ -68.203125, -53.330873 ], [ -67.500000, -53.330873 ], [ -67.500000, -54.162434 ], [ -66.796875, -54.162434 ], [ -66.796875, -54.572062 ], [ -65.390625, -54.572062 ], [ -65.390625, -55.379110 ], [ -66.796875, -55.379110 ], [ -66.796875, -54.977614 ], [ -68.906250, -54.977614 ], [ -68.906250, -52.908902 ], [ -68.203125, -52.908902 ] ] ], [ [ [ -62.578125, -21.943046 ], [ -62.578125, -22.593726 ], [ -61.875000, -22.593726 ], [ -61.875000, -23.885838 ], [ -59.765625, -23.885838 ], [ -59.765625, -24.527135 ], [ -59.062500, -24.527135 ], [ -59.062500, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -27.683528 ], [ -55.546875, -27.683528 ], [ -55.546875, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -26.431228 ], [ -53.437500, -26.431228 ], [ -53.437500, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -31.353637 ], [ -58.359375, -31.353637 ], [ -58.359375, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.460670 ], [ -56.953125, -35.460670 ], [ -56.953125, -36.031332 ], [ -57.656250, -36.031332 ], [ -57.656250, -36.597889 ], [ -56.953125, -36.597889 ], [ -56.953125, -37.718590 ], [ -57.656250, -37.718590 ], [ -57.656250, -38.822591 ], [ -62.578125, -38.822591 ], [ -62.578125, -39.368279 ], [ -61.875000, -39.368279 ], [ -61.875000, -39.909736 ], [ -62.578125, -39.909736 ], [ -62.578125, -40.446947 ], [ -61.875000, -40.446947 ], [ -61.875000, -40.979898 ], [ -65.390625, -40.979898 ], [ -65.390625, -41.508577 ], [ -64.687500, -41.508577 ], [ -64.687500, -42.553080 ], [ -63.281250, -42.553080 ], [ -63.281250, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.580391 ], [ -65.390625, -43.580391 ], [ -65.390625, -45.089036 ], [ -66.796875, -45.089036 ], [ -66.796875, -45.583290 ], [ -67.500000, -45.583290 ], [ -67.500000, -46.558860 ], [ -66.796875, -46.558860 ], [ -66.796875, -47.040182 ], [ -65.390625, -47.040182 ], [ -65.390625, -47.517201 ], [ -66.093750, -47.517201 ], [ -66.093750, -48.458352 ], [ -66.796875, -48.458352 ], [ -66.796875, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -50.289339 ], [ -68.906250, -50.289339 ], [ -68.906250, -52.052490 ], [ -68.203125, -52.052490 ], [ -68.203125, -52.482780 ], [ -69.609375, -52.482780 ], [ -69.609375, -52.052490 ], [ -72.421875, -52.052490 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -49.382373 ], [ -72.421875, -49.382373 ], [ -72.421875, -47.517201 ], [ -71.718750, -47.517201 ], [ -71.718750, -45.089036 ], [ -71.015625, -45.089036 ], [ -71.015625, -44.590467 ], [ -71.718750, -44.590467 ], [ -71.718750, -43.068888 ], [ -72.421875, -43.068888 ], [ -72.421875, -42.032974 ], [ -71.718750, -42.032974 ], [ -71.718750, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -36.597889 ], [ -70.312500, -36.597889 ], [ -70.312500, -34.885931 ], [ -69.609375, -34.885931 ], [ -69.609375, -33.137551 ], [ -70.312500, -33.137551 ], [ -70.312500, -30.751278 ], [ -69.609375, -30.751278 ], [ -69.609375, -30.145127 ], [ -70.312500, -30.145127 ], [ -70.312500, -28.921631 ], [ -69.609375, -28.921631 ], [ -69.609375, -28.304381 ], [ -68.906250, -28.304381 ], [ -68.906250, -27.683528 ], [ -68.203125, -27.683528 ], [ -68.203125, -27.059126 ], [ -68.906250, -27.059126 ], [ -68.906250, -26.431228 ], [ -68.203125, -26.431228 ], [ -68.203125, -24.527135 ], [ -67.500000, -24.527135 ], [ -67.500000, -23.885838 ], [ -66.796875, -23.885838 ], [ -66.796875, -22.593726 ], [ -66.093750, -22.593726 ], [ -66.093750, -21.943046 ], [ -64.687500, -21.943046 ], [ -64.687500, -22.593726 ], [ -63.984375, -22.593726 ], [ -63.984375, -21.943046 ], [ -62.578125, -21.943046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -34.307144 ], [ -54.140625, -34.307144 ], [ -54.140625, -34.885931 ], [ -56.953125, -34.885931 ], [ -56.953125, -34.307144 ], [ -58.359375, -34.307144 ], [ -58.359375, -31.353637 ], [ -57.656250, -31.353637 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ], [ -56.953125, -30.751278 ], [ -55.546875, -30.751278 ], [ -55.546875, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.751278 ], [ -55.546875, -30.751278 ], [ -55.546875, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -34.307144 ], [ -54.140625, -34.307144 ], [ -54.140625, -34.885931 ], [ -56.953125, -34.885931 ], [ -56.953125, -34.307144 ], [ -58.359375, -34.307144 ], [ -58.359375, -31.353637 ], [ -57.656250, -31.353637 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -52.052490 ], [ -59.765625, -52.052490 ], [ -59.765625, -52.482780 ], [ -61.171875, -52.482780 ], [ -61.171875, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -51.618017 ], [ -57.656250, -51.618017 ], [ -57.656250, -52.052490 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -51.618017 ], [ -57.656250, -52.052490 ], [ -59.765625, -52.052490 ], [ -59.765625, -52.482780 ], [ -61.171875, -52.482780 ], [ -61.171875, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -51.618017 ], [ -57.656250, -51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -167.343750, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.051129 ], [ -162.421875, -85.051129 ], [ -162.421875, -85.111416 ], [ -161.718750, -85.111416 ], [ -161.718750, -85.170970 ], [ -161.015625, -85.170970 ], [ -161.015625, -85.229801 ], [ -159.609375, -85.229801 ], [ -159.609375, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.474065 ], [ -179.296875, -84.474065 ], [ -179.296875, -84.196507 ], [ -178.593750, -84.196507 ], [ -178.593750, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.474065 ], [ -177.187500, -84.474065 ], [ -177.187500, -84.336980 ], [ -176.484375, -84.336980 ], [ -176.484375, -84.196507 ], [ -175.781250, -84.196507 ], [ -175.781250, -84.267172 ], [ -175.078125, -84.267172 ], [ -175.078125, -84.474065 ], [ -173.671875, -84.474065 ], [ -173.671875, -84.267172 ], [ -172.968750, -84.267172 ], [ -172.968750, -84.052561 ], [ -171.562500, -84.052561 ], [ -171.562500, -83.979259 ], [ -169.453125, -83.979259 ], [ -169.453125, -84.124973 ], [ -168.750000, -84.124973 ], [ -168.750000, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.607840 ] ] ], [ [ [ -152.578125, -85.287916 ], [ -151.171875, -85.287916 ], [ -151.171875, -85.345325 ], [ -156.796875, -85.345325 ], [ -156.796875, -85.229801 ], [ -156.093750, -85.229801 ], [ -156.093750, -85.170970 ], [ -153.984375, -85.170970 ], [ -153.984375, -85.229801 ], [ -152.578125, -85.229801 ], [ -152.578125, -85.287916 ] ] ], [ [ [ -153.281250, -81.201420 ], [ -153.281250, -81.093214 ], [ -151.171875, -81.093214 ], [ -151.171875, -81.308321 ], [ -149.765625, -81.308321 ], [ -149.765625, -81.201420 ], [ -149.062500, -81.201420 ], [ -149.062500, -81.093214 ], [ -148.359375, -81.093214 ], [ -148.359375, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.760615 ], [ -146.953125, -80.760615 ], [ -146.953125, -80.532071 ], [ -146.250000, -80.532071 ], [ -146.250000, -80.178713 ], [ -146.953125, -80.178713 ], [ -146.953125, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.812302 ], [ -148.359375, -79.812302 ], [ -148.359375, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -149.765625, -79.432371 ], [ -149.765625, -79.302640 ], [ -153.281250, -79.302640 ], [ -153.281250, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -156.796875, -78.630006 ], [ -156.796875, -78.490552 ], [ -157.500000, -78.490552 ], [ -157.500000, -78.206563 ], [ -158.203125, -78.206563 ], [ -158.203125, -77.157163 ], [ -157.500000, -77.157163 ], [ -157.500000, -77.312520 ], [ -155.390625, -77.312520 ], [ -155.390625, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.312520 ], [ -149.765625, -77.312520 ], [ -149.765625, -76.999935 ], [ -149.062500, -76.999935 ], [ -149.062500, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.320025 ], [ -144.140625, -75.320025 ], [ -144.140625, -75.497157 ], [ -142.734375, -75.497157 ], [ -142.734375, -75.320025 ], [ -141.328125, -75.320025 ], [ -141.328125, -75.140778 ], [ -138.515625, -75.140778 ], [ -138.515625, -74.959392 ], [ -137.812500, -74.959392 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.590108 ], [ -135.703125, -74.590108 ], [ -135.703125, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.590108 ], [ -119.531250, -74.590108 ], [ -119.531250, -74.402163 ], [ -118.828125, -74.402163 ], [ -118.828125, -74.211983 ], [ -115.312500, -74.211983 ], [ -115.312500, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.824820 ], [ -113.203125, -73.824820 ], [ -113.203125, -74.590108 ], [ -112.500000, -74.590108 ], [ -112.500000, -74.775843 ], [ -111.796875, -74.775843 ], [ -111.796875, -74.590108 ], [ -110.390625, -74.590108 ], [ -110.390625, -74.959392 ], [ -108.984375, -74.959392 ], [ -108.984375, -75.140778 ], [ -104.765625, -75.140778 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.320025 ], [ -100.546875, -75.320025 ], [ -100.546875, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.402163 ], [ -101.250000, -74.402163 ], [ -101.250000, -74.211983 ], [ -102.656250, -74.211983 ], [ -102.656250, -74.019543 ], [ -103.359375, -74.019543 ], [ -103.359375, -72.816074 ], [ -99.140625, -72.816074 ], [ -99.140625, -73.022592 ], [ -98.437500, -73.022592 ], [ -98.437500, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.627789 ], [ -94.921875, -73.627789 ], [ -94.921875, -73.428424 ], [ -93.515625, -73.428424 ], [ -93.515625, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.428424 ], [ -90.000000, -73.428424 ], [ -90.000000, -73.022592 ], [ -89.296875, -73.022592 ], [ -89.296875, -85.345325 ], [ -145.546875, -85.345325 ], [ -145.546875, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -144.140625, -85.170970 ], [ -144.140625, -85.111416 ], [ -143.437500, -85.111416 ], [ -143.437500, -84.802474 ], [ -142.734375, -84.802474 ], [ -142.734375, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.474065 ], [ -148.359375, -84.474065 ], [ -148.359375, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.196507 ], [ -150.468750, -84.196507 ], [ -150.468750, -84.052561 ], [ -151.171875, -84.052561 ], [ -151.171875, -83.905058 ], [ -151.875000, -83.905058 ], [ -151.875000, -83.829945 ], [ -152.578125, -83.829945 ], [ -152.578125, -83.753911 ], [ -153.281250, -83.753911 ], [ -153.281250, -82.676285 ], [ -152.578125, -82.676285 ], [ -152.578125, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.923186 ], [ -153.984375, -81.923186 ], [ -153.984375, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.621352 ], [ -155.390625, -81.621352 ], [ -155.390625, -81.413933 ], [ -156.093750, -81.413933 ], [ -156.093750, -81.201420 ], [ -153.281250, -81.201420 ] ] ], [ [ [ -160.312500, -78.903929 ], [ -159.609375, -78.903929 ], [ -159.609375, -79.302640 ], [ -158.906250, -79.302640 ], [ -158.906250, -79.560546 ], [ -159.609375, -79.560546 ], [ -159.609375, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -162.421875, -79.432371 ], [ -162.421875, -79.171335 ], [ -163.125000, -79.171335 ], [ -163.125000, -78.767792 ], [ -163.828125, -78.767792 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.490552 ], [ -163.125000, -78.206563 ], [ -162.421875, -78.206563 ], [ -162.421875, -78.349411 ], [ -161.015625, -78.349411 ], [ -161.015625, -78.490552 ], [ -160.312500, -78.490552 ], [ -160.312500, -78.903929 ] ] ], [ [ [ -120.937500, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -74.019543 ], [ -121.640625, -74.019543 ], [ -121.640625, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.428424 ], [ -120.937500, -73.428424 ], [ -120.937500, -73.627789 ] ] ], [ [ [ -125.859375, -73.627789 ], [ -124.453125, -73.627789 ], [ -124.453125, -73.824820 ], [ -126.562500, -73.824820 ], [ -126.562500, -73.627789 ], [ -127.265625, -73.627789 ], [ -127.265625, -73.428424 ], [ -125.859375, -73.428424 ], [ -125.859375, -73.627789 ] ] ], [ [ [ -101.953125, -72.395706 ], [ -101.953125, -72.181804 ], [ -102.656250, -72.181804 ], [ -102.656250, -71.965388 ], [ -101.953125, -71.965388 ], [ -101.953125, -71.746432 ], [ -100.546875, -71.746432 ], [ -100.546875, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ], [ -101.953125, -72.395706 ] ] ], [ [ [ -156.796875, -81.201420 ], [ -156.796875, -81.093214 ], [ -156.093750, -81.093214 ], [ -156.093750, -81.201420 ], [ -156.796875, -81.201420 ] ] ], [ [ [ -96.328125, -72.395706 ], [ -96.328125, -72.607120 ], [ -97.031250, -72.607120 ], [ -97.031250, -72.395706 ], [ -96.328125, -72.395706 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.453125, -83.979259 ], [ -169.453125, -84.124973 ], [ -168.750000, -84.124973 ], [ -168.750000, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.051129 ], [ -162.421875, -85.051129 ], [ -162.421875, -85.111416 ], [ -161.718750, -85.111416 ], [ -161.718750, -85.170970 ], [ -161.015625, -85.170970 ], [ -161.015625, -85.229801 ], [ -159.609375, -85.229801 ], [ -159.609375, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.474065 ], [ -179.296875, -84.474065 ], [ -179.296875, -84.196507 ], [ -178.593750, -84.196507 ], [ -178.593750, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.474065 ], [ -177.187500, -84.474065 ], [ -177.187500, -84.336980 ], [ -176.484375, -84.336980 ], [ -176.484375, -84.196507 ], [ -175.781250, -84.196507 ], [ -175.781250, -84.267172 ], [ -175.078125, -84.267172 ], [ -175.078125, -84.474065 ], [ -173.671875, -84.474065 ], [ -173.671875, -84.267172 ], [ -172.968750, -84.267172 ], [ -172.968750, -84.052561 ], [ -171.562500, -84.052561 ], [ -171.562500, -83.979259 ], [ -169.453125, -83.979259 ] ] ], [ [ [ -153.984375, -85.229801 ], [ -152.578125, -85.229801 ], [ -152.578125, -85.287916 ], [ -151.171875, -85.287916 ], [ -151.171875, -85.345325 ], [ -156.796875, -85.345325 ], [ -156.796875, -85.229801 ], [ -156.093750, -85.229801 ], [ -156.093750, -85.170970 ], [ -153.984375, -85.170970 ], [ -153.984375, -85.229801 ] ] ], [ [ [ -156.093750, -81.201420 ], [ -153.281250, -81.201420 ], [ -153.281250, -81.093214 ], [ -151.171875, -81.093214 ], [ -151.171875, -81.308321 ], [ -149.765625, -81.308321 ], [ -149.765625, -81.201420 ], [ -149.062500, -81.201420 ], [ -149.062500, -81.093214 ], [ -148.359375, -81.093214 ], [ -148.359375, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.760615 ], [ -146.953125, -80.760615 ], [ -146.953125, -80.532071 ], [ -146.250000, -80.532071 ], [ -146.250000, -80.178713 ], [ -146.953125, -80.178713 ], [ -146.953125, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.812302 ], [ -148.359375, -79.812302 ], [ -148.359375, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -149.765625, -79.432371 ], [ -149.765625, -79.302640 ], [ -153.281250, -79.302640 ], [ -153.281250, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -156.796875, -78.630006 ], [ -156.796875, -78.490552 ], [ -157.500000, -78.490552 ], [ -157.500000, -78.206563 ], [ -158.203125, -78.206563 ], [ -158.203125, -77.157163 ], [ -157.500000, -77.157163 ], [ -157.500000, -77.312520 ], [ -155.390625, -77.312520 ], [ -155.390625, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.312520 ], [ -149.765625, -77.312520 ], [ -149.765625, -76.999935 ], [ -149.062500, -76.999935 ], [ -149.062500, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.320025 ], [ -144.140625, -75.320025 ], [ -144.140625, -75.497157 ], [ -142.734375, -75.497157 ], [ -142.734375, -75.320025 ], [ -141.328125, -75.320025 ], [ -141.328125, -75.140778 ], [ -138.515625, -75.140778 ], [ -138.515625, -74.959392 ], [ -137.812500, -74.959392 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.590108 ], [ -135.703125, -74.590108 ], [ -135.703125, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.590108 ], [ -119.531250, -74.590108 ], [ -119.531250, -74.402163 ], [ -118.828125, -74.402163 ], [ -118.828125, -74.211983 ], [ -115.312500, -74.211983 ], [ -115.312500, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.824820 ], [ -113.203125, -73.824820 ], [ -113.203125, -74.590108 ], [ -112.500000, -74.590108 ], [ -112.500000, -74.775843 ], [ -111.796875, -74.775843 ], [ -111.796875, -74.590108 ], [ -110.390625, -74.590108 ], [ -110.390625, -74.959392 ], [ -108.984375, -74.959392 ], [ -108.984375, -75.140778 ], [ -104.765625, -75.140778 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.320025 ], [ -100.546875, -75.320025 ], [ -100.546875, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.402163 ], [ -101.250000, -74.402163 ], [ -101.250000, -74.211983 ], [ -102.656250, -74.211983 ], [ -102.656250, -74.019543 ], [ -103.359375, -74.019543 ], [ -103.359375, -72.816074 ], [ -99.140625, -72.816074 ], [ -99.140625, -73.022592 ], [ -98.437500, -73.022592 ], [ -98.437500, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.627789 ], [ -94.921875, -73.627789 ], [ -94.921875, -73.428424 ], [ -93.515625, -73.428424 ], [ -93.515625, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.428424 ], [ -90.000000, -73.428424 ], [ -90.000000, -73.022592 ], [ -89.296875, -73.022592 ], [ -89.296875, -85.345325 ], [ -145.546875, -85.345325 ], [ -145.546875, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -144.140625, -85.170970 ], [ -144.140625, -85.111416 ], [ -143.437500, -85.111416 ], [ -143.437500, -84.802474 ], [ -142.734375, -84.802474 ], [ -142.734375, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.474065 ], [ -148.359375, -84.474065 ], [ -148.359375, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.196507 ], [ -150.468750, -84.196507 ], [ -150.468750, -84.052561 ], [ -151.171875, -84.052561 ], [ -151.171875, -83.905058 ], [ -151.875000, -83.905058 ], [ -151.875000, -83.829945 ], [ -152.578125, -83.829945 ], [ -152.578125, -83.753911 ], [ -153.281250, -83.753911 ], [ -153.281250, -82.676285 ], [ -152.578125, -82.676285 ], [ -152.578125, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.923186 ], [ -153.984375, -81.923186 ], [ -153.984375, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.621352 ], [ -155.390625, -81.621352 ], [ -155.390625, -81.413933 ], [ -156.093750, -81.413933 ], [ -156.093750, -81.201420 ] ] ], [ [ [ -162.421875, -78.206563 ], [ -162.421875, -78.349411 ], [ -161.015625, -78.349411 ], [ -161.015625, -78.490552 ], [ -160.312500, -78.490552 ], [ -160.312500, -78.903929 ], [ -159.609375, -78.903929 ], [ -159.609375, -79.302640 ], [ -158.906250, -79.302640 ], [ -158.906250, -79.560546 ], [ -159.609375, -79.560546 ], [ -159.609375, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -162.421875, -79.432371 ], [ -162.421875, -79.171335 ], [ -163.125000, -79.171335 ], [ -163.125000, -78.767792 ], [ -163.828125, -78.767792 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.490552 ], [ -163.125000, -78.206563 ], [ -162.421875, -78.206563 ] ] ], [ [ [ -120.937500, -73.428424 ], [ -120.937500, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -74.019543 ], [ -121.640625, -74.019543 ], [ -121.640625, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.428424 ], [ -120.937500, -73.428424 ] ] ], [ [ [ -125.859375, -73.428424 ], [ -125.859375, -73.627789 ], [ -124.453125, -73.627789 ], [ -124.453125, -73.824820 ], [ -126.562500, -73.824820 ], [ -126.562500, -73.627789 ], [ -127.265625, -73.627789 ], [ -127.265625, -73.428424 ], [ -125.859375, -73.428424 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.181804 ], [ -102.656250, -72.181804 ], [ -102.656250, -71.965388 ], [ -101.953125, -71.965388 ], [ -101.953125, -71.746432 ], [ -100.546875, -71.746432 ], [ -100.546875, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ] ] ], [ [ [ -156.093750, -81.201420 ], [ -156.796875, -81.201420 ], [ -156.796875, -81.093214 ], [ -156.093750, -81.093214 ], [ -156.093750, -81.201420 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -96.328125, -72.395706 ], [ -96.328125, -72.607120 ], [ -97.031250, -72.607120 ], [ -97.031250, -72.395706 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -19.687500, -75.672197 ], [ -18.984375, -75.672197 ], [ -18.984375, -75.497157 ], [ -18.281250, -75.497157 ], [ -18.281250, -75.320025 ], [ -17.578125, -75.320025 ], [ -17.578125, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.428424 ], [ -15.468750, -73.428424 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -73.022592 ], [ -13.359375, -73.022592 ], [ -13.359375, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.607120 ], [ -11.953125, -72.607120 ], [ -11.953125, -72.181804 ], [ -11.250000, -72.181804 ], [ -11.250000, -71.524909 ], [ -10.546875, -71.524909 ], [ -10.546875, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.524909 ], [ -8.437500, -71.524909 ], [ -8.437500, -71.746432 ], [ -7.734375, -71.746432 ], [ -7.734375, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.300793 ], [ -0.703125, -71.300793 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 2.109375, -71.300793 ], [ 2.109375, -71.074056 ], [ 3.515625, -71.074056 ], [ 3.515625, -75.845169 ], [ -19.687500, -75.845169 ], [ -19.687500, -75.672197 ] ] ], [ [ [ -61.875000, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -66.231457 ], [ -61.875000, -66.231457 ], [ -61.875000, -66.513260 ], [ -63.984375, -66.513260 ], [ -63.984375, -67.067433 ], [ -64.687500, -67.067433 ], [ -64.687500, -67.339861 ], [ -65.390625, -67.339861 ], [ -65.390625, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -69.411242 ], [ -62.578125, -69.411242 ], [ -62.578125, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.844673 ], [ -61.171875, -70.844673 ], [ -61.171875, -73.022592 ], [ -60.468750, -73.022592 ], [ -60.468750, -73.428424 ], [ -61.171875, -73.428424 ], [ -61.171875, -74.211983 ], [ -61.875000, -74.211983 ], [ -61.875000, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.775843 ], [ -63.984375, -74.775843 ], [ -63.984375, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.672197 ], [ -66.093750, -75.672197 ], [ -66.093750, -75.845169 ], [ -89.296875, -75.845169 ], [ -89.296875, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.226700 ], [ -85.078125, -73.226700 ], [ -85.078125, -73.428424 ], [ -83.671875, -73.428424 ], [ -83.671875, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.428424 ], [ -78.046875, -73.428424 ], [ -78.046875, -73.627789 ], [ -76.640625, -73.627789 ], [ -76.640625, -73.824820 ], [ -75.937500, -73.824820 ], [ -75.937500, -74.019543 ], [ -75.234375, -74.019543 ], [ -75.234375, -73.824820 ], [ -73.828125, -73.824820 ], [ -73.828125, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.428424 ], [ -71.718750, -73.428424 ], [ -71.718750, -73.226700 ], [ -68.906250, -73.226700 ], [ -68.906250, -73.022592 ], [ -68.203125, -73.022592 ], [ -68.203125, -72.607120 ], [ -67.500000, -72.607120 ], [ -67.500000, -72.181804 ], [ -66.796875, -72.181804 ], [ -66.796875, -71.965388 ], [ -67.500000, -71.965388 ], [ -67.500000, -71.074056 ], [ -68.203125, -71.074056 ], [ -68.203125, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.395706 ], [ -69.609375, -72.395706 ], [ -69.609375, -72.607120 ], [ -72.421875, -72.607120 ], [ -72.421875, -72.395706 ], [ -71.718750, -72.395706 ], [ -71.718750, -72.181804 ], [ -73.125000, -72.181804 ], [ -73.125000, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -72.181804 ], [ -75.234375, -72.181804 ], [ -75.234375, -71.746432 ], [ -74.531250, -71.746432 ], [ -74.531250, -71.524909 ], [ -73.828125, -71.524909 ], [ -73.828125, -71.300793 ], [ -72.421875, -71.300793 ], [ -72.421875, -71.074056 ], [ -71.718750, -71.074056 ], [ -71.718750, -69.162558 ], [ -71.015625, -69.162558 ], [ -71.015625, -68.911005 ], [ -70.312500, -68.911005 ], [ -70.312500, -69.162558 ], [ -69.609375, -69.162558 ], [ -69.609375, -69.900118 ], [ -68.906250, -69.900118 ], [ -68.906250, -70.844673 ], [ -68.203125, -70.844673 ], [ -68.203125, -68.911005 ], [ -67.500000, -68.911005 ], [ -67.500000, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.093750, -66.513260 ], [ -66.093750, -66.231457 ], [ -65.390625, -66.231457 ], [ -65.390625, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -65.366837 ], [ -63.984375, -65.366837 ], [ -63.984375, -65.072130 ], [ -63.281250, -65.072130 ], [ -63.281250, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -65.072130 ] ] ], [ [ [ -59.062500, -63.860036 ], [ -59.062500, -63.548552 ], [ -58.359375, -63.548552 ], [ -58.359375, -63.233627 ], [ -57.656250, -63.233627 ], [ -57.656250, -63.548552 ], [ -56.953125, -63.548552 ], [ -56.953125, -63.860036 ], [ -57.656250, -63.860036 ], [ -57.656250, -64.168107 ], [ -58.359375, -64.168107 ], [ -58.359375, -64.472794 ], [ -59.765625, -64.472794 ], [ -59.765625, -63.860036 ], [ -59.062500, -63.860036 ] ] ], [ [ [ -61.171875, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.774125 ] ] ], [ [ [ -61.171875, -64.168107 ], [ -60.468750, -64.168107 ], [ -60.468750, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.168107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.875000, -64.774125 ], [ -61.875000, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -66.231457 ], [ -61.875000, -66.231457 ], [ -61.875000, -66.513260 ], [ -63.984375, -66.513260 ], [ -63.984375, -67.067433 ], [ -64.687500, -67.067433 ], [ -64.687500, -67.339861 ], [ -65.390625, -67.339861 ], [ -65.390625, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -69.411242 ], [ -62.578125, -69.411242 ], [ -62.578125, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.844673 ], [ -61.171875, -70.844673 ], [ -61.171875, -73.022592 ], [ -60.468750, -73.022592 ], [ -60.468750, -73.428424 ], [ -61.171875, -73.428424 ], [ -61.171875, -74.211983 ], [ -61.875000, -74.211983 ], [ -61.875000, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.775843 ], [ -63.984375, -74.775843 ], [ -63.984375, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.672197 ], [ -66.093750, -75.672197 ], [ -66.093750, -75.845169 ], [ -89.296875, -75.845169 ], [ -89.296875, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.226700 ], [ -85.078125, -73.226700 ], [ -85.078125, -73.428424 ], [ -83.671875, -73.428424 ], [ -83.671875, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.428424 ], [ -78.046875, -73.428424 ], [ -78.046875, -73.627789 ], [ -76.640625, -73.627789 ], [ -76.640625, -73.824820 ], [ -75.937500, -73.824820 ], [ -75.937500, -74.019543 ], [ -75.234375, -74.019543 ], [ -75.234375, -73.824820 ], [ -73.828125, -73.824820 ], [ -73.828125, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.428424 ], [ -71.718750, -73.428424 ], [ -71.718750, -73.226700 ], [ -68.906250, -73.226700 ], [ -68.906250, -73.022592 ], [ -68.203125, -73.022592 ], [ -68.203125, -72.607120 ], [ -67.500000, -72.607120 ], [ -67.500000, -72.181804 ], [ -66.796875, -72.181804 ], [ -66.796875, -71.965388 ], [ -67.500000, -71.965388 ], [ -67.500000, -71.074056 ], [ -68.203125, -71.074056 ], [ -68.203125, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.395706 ], [ -69.609375, -72.395706 ], [ -69.609375, -72.607120 ], [ -72.421875, -72.607120 ], [ -72.421875, -72.395706 ], [ -71.718750, -72.395706 ], [ -71.718750, -72.181804 ], [ -73.125000, -72.181804 ], [ -73.125000, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -72.181804 ], [ -75.234375, -72.181804 ], [ -75.234375, -71.746432 ], [ -74.531250, -71.746432 ], [ -74.531250, -71.524909 ], [ -73.828125, -71.524909 ], [ -73.828125, -71.300793 ], [ -72.421875, -71.300793 ], [ -72.421875, -71.074056 ], [ -71.718750, -71.074056 ], [ -71.718750, -69.162558 ], [ -71.015625, -69.162558 ], [ -71.015625, -68.911005 ], [ -70.312500, -68.911005 ], [ -70.312500, -69.162558 ], [ -69.609375, -69.162558 ], [ -69.609375, -69.900118 ], [ -68.906250, -69.900118 ], [ -68.906250, -70.612614 ], [ -68.203125, -70.844673 ], [ -68.203125, -68.911005 ], [ -67.500000, -68.911005 ], [ -67.500000, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.093750, -66.513260 ], [ -66.093750, -66.231457 ], [ -65.390625, -66.231457 ], [ -65.390625, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -65.366837 ], [ -63.984375, -65.366837 ], [ -63.984375, -65.072130 ], [ -63.281250, -65.072130 ], [ -63.281250, -64.774125 ], [ -61.875000, -64.774125 ] ] ], [ [ [ 3.515625, -75.845169 ], [ -19.687500, -75.845169 ], [ -19.687500, -75.672197 ], [ -18.984375, -75.672197 ], [ -18.984375, -75.497157 ], [ -18.281250, -75.497157 ], [ -18.281250, -75.320025 ], [ -17.578125, -75.320025 ], [ -17.578125, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.428424 ], [ -15.468750, -73.428424 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -73.022592 ], [ -13.359375, -73.022592 ], [ -13.359375, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.607120 ], [ -11.953125, -72.607120 ], [ -11.953125, -72.181804 ], [ -11.250000, -72.181804 ], [ -11.250000, -71.524909 ], [ -10.546875, -71.524909 ], [ -10.546875, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.524909 ], [ -8.437500, -71.524909 ], [ -8.437500, -71.746432 ], [ -7.734375, -71.746432 ], [ -7.734375, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.300793 ], [ -0.703125, -71.300793 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 2.109375, -71.300793 ], [ 2.109375, -71.074056 ], [ 3.515625, -71.074056 ], [ 3.515625, -75.845169 ] ] ], [ [ [ -61.171875, -64.472794 ], [ -61.171875, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.472794 ], [ -61.171875, -64.472794 ] ] ], [ [ [ -59.765625, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -63.548552 ], [ -58.359375, -63.548552 ], [ -58.359375, -63.233627 ], [ -57.656250, -63.233627 ], [ -57.656250, -63.548552 ], [ -56.953125, -63.548552 ], [ -56.953125, -63.860036 ], [ -57.656250, -63.860036 ], [ -57.656250, -64.168107 ], [ -58.359375, -64.168107 ], [ -58.359375, -64.472794 ], [ -59.765625, -64.472794 ], [ -59.765625, -63.860036 ] ] ], [ [ [ -60.468750, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.168107 ], [ -60.468750, -64.168107 ], [ -60.468750, -64.472794 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.000000, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -82.021378 ], [ -43.593750, -82.021378 ], [ -43.593750, -82.118384 ], [ -42.890625, -82.118384 ], [ -42.890625, -81.923186 ], [ -42.187500, -81.923186 ], [ -42.187500, -81.621352 ], [ -41.484375, -81.621352 ], [ -41.484375, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.308321 ], [ -37.265625, -81.308321 ], [ -37.265625, -81.201420 ], [ -36.562500, -81.201420 ], [ -36.562500, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.760615 ], [ -30.937500, -80.760615 ], [ -30.937500, -80.647035 ], [ -29.531250, -80.647035 ], [ -29.531250, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.302640 ], [ -32.343750, -79.302640 ], [ -32.343750, -79.432371 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.206563 ], [ -35.156250, -78.206563 ], [ -35.156250, -78.061989 ], [ -33.750000, -78.061989 ], [ -33.750000, -77.915669 ], [ -33.046875, -77.915669 ], [ -33.046875, -77.767582 ], [ -32.343750, -77.767582 ], [ -32.343750, -77.617709 ], [ -31.640625, -77.617709 ], [ -31.640625, -77.466028 ], [ -30.937500, -77.466028 ], [ -30.937500, -77.312520 ], [ -30.234375, -77.312520 ], [ -30.234375, -77.157163 ], [ -29.531250, -77.157163 ], [ -29.531250, -76.840816 ], [ -28.828125, -76.840816 ], [ -28.828125, -76.679785 ], [ -27.421875, -76.679785 ], [ -27.421875, -76.516819 ], [ -26.015625, -76.516819 ], [ -26.015625, -76.351896 ], [ -23.906250, -76.351896 ], [ -23.906250, -76.184995 ], [ -21.796875, -76.184995 ], [ -21.796875, -76.016094 ], [ -21.093750, -76.016094 ], [ -21.093750, -75.845169 ], [ 3.515625, -75.845169 ], [ 3.515625, -85.345325 ], [ -89.296875, -85.345325 ], [ -89.296875, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -76.016094 ], [ -68.203125, -76.016094 ], [ -68.203125, -76.184995 ], [ -69.609375, -76.184995 ], [ -69.609375, -76.516819 ], [ -70.312500, -76.516819 ], [ -70.312500, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.999935 ], [ -76.640625, -76.999935 ], [ -76.640625, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.937500, -78.206563 ], [ -75.937500, -78.061989 ], [ -76.640625, -78.061989 ], [ -76.640625, -78.206563 ], [ -77.343750, -78.206563 ], [ -77.343750, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.302640 ], [ -77.343750, -79.302640 ], [ -77.343750, -79.560546 ], [ -76.640625, -79.560546 ], [ -76.640625, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.983688 ], [ -70.312500, -80.983688 ], [ -70.312500, -81.093214 ], [ -69.609375, -81.093214 ], [ -69.609375, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.308321 ], [ -68.203125, -81.308321 ], [ -68.203125, -81.413933 ], [ -66.796875, -81.413933 ], [ -66.796875, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.621352 ], [ -63.984375, -81.621352 ], [ -63.984375, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.823794 ], [ -62.578125, -81.823794 ], [ -62.578125, -82.021378 ], [ -61.875000, -82.021378 ], [ -61.875000, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.402423 ], [ -59.765625, -82.402423 ], [ -59.765625, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -83.026219 ], [ -58.359375, -83.026219 ], [ -58.359375, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -82.940327 ], [ -56.953125, -82.940327 ], [ -56.953125, -82.853382 ], [ -56.250000, -82.853382 ], [ -56.250000, -82.676285 ], [ -55.546875, -82.676285 ], [ -55.546875, -82.586106 ], [ -54.843750, -82.586106 ], [ -54.843750, -82.402423 ], [ -54.140625, -82.402423 ], [ -54.140625, -82.308893 ], [ -53.437500, -82.308893 ], [ -53.437500, -82.214217 ], [ -52.734375, -82.214217 ], [ -52.734375, -82.118384 ], [ -51.328125, -82.118384 ], [ -51.328125, -82.021378 ], [ -50.625000, -82.021378 ], [ -50.625000, -81.823794 ], [ -49.921875, -81.823794 ], [ -49.921875, -81.723188 ], [ -46.406250, -81.723188 ], [ -46.406250, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.923186 ] ] ], [ [ [ -60.468750, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -80.760615 ], [ -60.468750, -80.760615 ], [ -60.468750, -80.983688 ], [ -61.875000, -80.983688 ], [ -61.875000, -80.872827 ], [ -64.687500, -80.872827 ], [ -64.687500, -80.760615 ], [ -65.390625, -80.760615 ], [ -65.390625, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.297927 ], [ -63.281250, -80.297927 ], [ -63.281250, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.178713 ], [ -61.171875, -80.178713 ], [ -61.171875, -79.812302 ], [ -60.468750, -79.812302 ], [ -60.468750, -79.935918 ] ] ], [ [ [ -45.000000, -78.206563 ], [ -44.296875, -78.206563 ], [ -44.296875, -78.490552 ], [ -43.593750, -78.490552 ], [ -43.593750, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.297927 ], [ -45.000000, -80.297927 ], [ -45.000000, -80.415707 ], [ -45.703125, -80.415707 ], [ -45.703125, -80.647035 ], [ -46.406250, -80.647035 ], [ -46.406250, -80.760615 ], [ -47.812500, -80.760615 ], [ -47.812500, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.983688 ], [ -53.437500, -80.983688 ], [ -53.437500, -80.760615 ], [ -54.140625, -80.760615 ], [ -54.140625, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.058050 ], [ -52.031250, -80.058050 ], [ -52.031250, -79.812302 ], [ -51.328125, -79.812302 ], [ -51.328125, -79.432371 ], [ -50.625000, -79.432371 ], [ -50.625000, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.630006 ], [ -49.218750, -78.630006 ], [ -49.218750, -78.349411 ], [ -48.515625, -78.349411 ], [ -48.515625, -78.061989 ], [ -47.109375, -78.061989 ], [ -47.109375, -77.915669 ], [ -45.703125, -77.915669 ], [ -45.703125, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.206563 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.515625, -75.845169 ], [ 3.515625, -85.345325 ], [ -89.296875, -85.345325 ], [ -89.296875, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -76.016094 ], [ -68.203125, -76.016094 ], [ -68.203125, -76.184995 ], [ -69.609375, -76.184995 ], [ -69.609375, -76.516819 ], [ -70.312500, -76.516819 ], [ -70.312500, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.999935 ], [ -76.640625, -76.999935 ], [ -76.640625, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.937500, -78.206563 ], [ -75.937500, -78.061989 ], [ -76.640625, -78.061989 ], [ -76.640625, -78.206563 ], [ -77.343750, -78.206563 ], [ -77.343750, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.302640 ], [ -77.343750, -79.302640 ], [ -77.343750, -79.560546 ], [ -76.640625, -79.560546 ], [ -76.640625, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.983688 ], [ -70.312500, -80.983688 ], [ -70.312500, -81.093214 ], [ -69.609375, -81.093214 ], [ -69.609375, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.308321 ], [ -68.203125, -81.308321 ], [ -68.203125, -81.413933 ], [ -66.796875, -81.413933 ], [ -66.796875, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.621352 ], [ -63.984375, -81.621352 ], [ -63.984375, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.823794 ], [ -62.578125, -81.823794 ], [ -62.578125, -82.021378 ], [ -61.875000, -82.021378 ], [ -61.875000, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.402423 ], [ -59.765625, -82.402423 ], [ -59.765625, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -83.026219 ], [ -58.359375, -83.026219 ], [ -58.359375, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -82.940327 ], [ -56.953125, -82.940327 ], [ -56.953125, -82.853382 ], [ -56.250000, -82.853382 ], [ -56.250000, -82.676285 ], [ -55.546875, -82.676285 ], [ -55.546875, -82.586106 ], [ -54.843750, -82.586106 ], [ -54.843750, -82.402423 ], [ -54.140625, -82.402423 ], [ -54.140625, -82.308893 ], [ -53.437500, -82.308893 ], [ -53.437500, -82.214217 ], [ -52.734375, -82.214217 ], [ -52.734375, -82.118384 ], [ -51.328125, -82.118384 ], [ -51.328125, -82.021378 ], [ -50.625000, -82.021378 ], [ -50.625000, -81.823794 ], [ -49.921875, -81.823794 ], [ -49.921875, -81.723188 ], [ -46.406250, -81.723188 ], [ -46.406250, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -82.021378 ], [ -43.593750, -82.021378 ], [ -43.593750, -82.118384 ], [ -42.890625, -82.118384 ], [ -42.890625, -81.923186 ], [ -42.187500, -81.923186 ], [ -42.187500, -81.621352 ], [ -41.484375, -81.621352 ], [ -41.484375, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.308321 ], [ -37.265625, -81.308321 ], [ -37.265625, -81.201420 ], [ -36.562500, -81.201420 ], [ -36.562500, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.760615 ], [ -30.937500, -80.760615 ], [ -30.937500, -80.647035 ], [ -29.531250, -80.647035 ], [ -29.531250, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.302640 ], [ -32.343750, -79.302640 ], [ -32.343750, -79.432371 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.206563 ], [ -35.156250, -78.206563 ], [ -35.156250, -78.061989 ], [ -33.750000, -78.061989 ], [ -33.750000, -77.915669 ], [ -33.046875, -77.915669 ], [ -33.046875, -77.767582 ], [ -32.343750, -77.767582 ], [ -32.343750, -77.617709 ], [ -31.640625, -77.617709 ], [ -31.640625, -77.466028 ], [ -30.937500, -77.466028 ], [ -30.937500, -77.312520 ], [ -30.234375, -77.312520 ], [ -30.234375, -77.157163 ], [ -29.531250, -77.157163 ], [ -29.531250, -76.840816 ], [ -28.828125, -76.840816 ], [ -28.828125, -76.679785 ], [ -27.421875, -76.679785 ], [ -27.421875, -76.516819 ], [ -26.015625, -76.516819 ], [ -26.015625, -76.351896 ], [ -23.906250, -76.351896 ], [ -23.906250, -76.184995 ], [ -21.796875, -76.184995 ], [ -21.796875, -76.016094 ], [ -21.093750, -76.016094 ], [ -21.093750, -75.845169 ], [ 3.515625, -75.845169 ] ] ], [ [ [ -60.468750, -79.812302 ], [ -59.765625, -79.935918 ], [ -59.765625, -80.760615 ], [ -60.468750, -80.760615 ], [ -60.468750, -80.983688 ], [ -61.875000, -80.983688 ], [ -61.875000, -80.872827 ], [ -64.687500, -80.872827 ], [ -64.687500, -80.760615 ], [ -65.390625, -80.760615 ], [ -65.390625, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.297927 ], [ -63.281250, -80.297927 ], [ -63.281250, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.178713 ], [ -61.171875, -80.178713 ], [ -61.171875, -79.812302 ], [ -60.468750, -79.812302 ] ] ], [ [ [ -45.703125, -77.915669 ], [ -45.703125, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.206563 ], [ -44.296875, -78.206563 ], [ -44.296875, -78.490552 ], [ -43.593750, -78.490552 ], [ -43.593750, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.297927 ], [ -45.000000, -80.297927 ], [ -45.000000, -80.415707 ], [ -45.703125, -80.415707 ], [ -45.703125, -80.647035 ], [ -46.406250, -80.647035 ], [ -46.406250, -80.760615 ], [ -47.812500, -80.760615 ], [ -47.812500, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.983688 ], [ -53.437500, -80.983688 ], [ -53.437500, -80.760615 ], [ -54.140625, -80.760615 ], [ -54.140625, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.058050 ], [ -52.031250, -80.058050 ], [ -52.031250, -79.812302 ], [ -51.328125, -79.812302 ], [ -51.328125, -79.432371 ], [ -50.625000, -79.432371 ], [ -50.625000, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.630006 ], [ -49.218750, -78.630006 ], [ -49.218750, -78.349411 ], [ -48.515625, -78.349411 ], [ -48.515625, -78.061989 ], [ -47.109375, -78.061989 ], [ -47.109375, -77.915669 ], [ -45.703125, -77.915669 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -97.031250, 69.411242 ], [ -99.140625, 69.411242 ], [ -99.140625, 69.900118 ], [ -97.031250, 69.900118 ], [ -97.031250, 69.411242 ] ] ], [ [ [ -126.562500, 69.657086 ], [ -125.859375, 69.657086 ], [ -125.859375, 69.411242 ], [ -132.187500, 69.411242 ], [ -132.187500, 69.657086 ], [ -131.484375, 69.657086 ], [ -131.484375, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 70.140364 ], [ -127.968750, 70.140364 ], [ -127.968750, 70.377854 ], [ -127.265625, 70.377854 ], [ -127.265625, 70.140364 ], [ -126.562500, 70.140364 ], [ -126.562500, 69.657086 ] ] ], [ [ [ -125.156250, 69.900118 ], [ -124.453125, 69.900118 ], [ -124.453125, 69.411242 ], [ -125.156250, 69.411242 ], [ -125.156250, 69.900118 ] ] ], [ [ [ -120.937500, 69.411242 ], [ -123.046875, 69.411242 ], [ -123.046875, 69.657086 ], [ -122.343750, 69.657086 ], [ -122.343750, 69.900118 ], [ -121.640625, 69.900118 ], [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.411242 ] ] ], [ [ [ -140.625000, 69.411242 ], [ -141.328125, 69.411242 ], [ -141.328125, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 69.411242 ] ] ], [ [ [ -117.421875, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.428424 ], [ -115.312500, 73.428424 ], [ -115.312500, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.816074 ], [ -118.828125, 72.816074 ], [ -118.828125, 72.607120 ], [ -119.531250, 72.607120 ], [ -119.531250, 72.181804 ], [ -120.234375, 72.181804 ], [ -120.234375, 71.074056 ], [ -121.640625, 71.074056 ], [ -121.640625, 70.844673 ], [ -123.046875, 70.844673 ], [ -123.046875, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.300793 ], [ -124.453125, 71.300793 ], [ -124.453125, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.746432 ], [ -125.859375, 71.746432 ], [ -125.859375, 72.181804 ], [ -125.156250, 72.181804 ], [ -125.156250, 73.022592 ], [ -124.453125, 73.022592 ], [ -124.453125, 73.428424 ], [ -123.750000, 73.428424 ], [ -123.750000, 73.627789 ], [ -124.453125, 73.627789 ], [ -124.453125, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.211983 ], [ -123.046875, 74.211983 ], [ -123.046875, 74.402163 ], [ -121.640625, 74.402163 ], [ -121.640625, 74.211983 ], [ -117.421875, 74.211983 ], [ -117.421875, 74.019543 ] ] ], [ [ [ -97.734375, 73.627789 ], [ -97.734375, 73.824820 ], [ -97.031250, 73.824820 ], [ -97.031250, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 72.816074 ], [ -97.031250, 72.816074 ], [ -97.031250, 71.524909 ], [ -97.734375, 71.524909 ], [ -97.734375, 71.300793 ], [ -99.140625, 71.300793 ], [ -99.140625, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.746432 ], [ -100.546875, 71.746432 ], [ -100.546875, 71.965388 ], [ -101.250000, 71.965388 ], [ -101.250000, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.816074 ], [ -101.953125, 72.816074 ], [ -101.953125, 72.607120 ], [ -100.546875, 72.607120 ], [ -100.546875, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.627789 ], [ -97.734375, 73.627789 ] ] ], [ [ [ -104.765625, 72.181804 ], [ -104.765625, 70.844673 ], [ -103.359375, 70.844673 ], [ -103.359375, 70.612614 ], [ -102.656250, 70.612614 ], [ -102.656250, 70.377854 ], [ -101.953125, 70.377854 ], [ -101.953125, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.657086 ], [ -117.421875, 69.657086 ], [ -117.421875, 69.900118 ], [ -116.718750, 69.900118 ], [ -116.718750, 70.140364 ], [ -112.500000, 70.140364 ], [ -112.500000, 70.377854 ], [ -113.906250, 70.377854 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -117.421875, 70.844673 ], [ -117.421875, 71.074056 ], [ -116.015625, 71.074056 ], [ -116.015625, 71.300793 ], [ -118.828125, 71.300793 ], [ -118.828125, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.965388 ], [ -118.828125, 71.965388 ], [ -118.828125, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.607120 ], [ -117.421875, 72.607120 ], [ -117.421875, 72.816074 ], [ -116.015625, 72.816074 ], [ -116.015625, 73.022592 ], [ -113.906250, 73.022592 ], [ -113.906250, 72.816074 ], [ -111.796875, 72.816074 ], [ -111.796875, 72.395706 ], [ -110.390625, 72.395706 ], [ -110.390625, 72.816074 ], [ -108.984375, 72.816074 ], [ -108.984375, 72.181804 ], [ -108.281250, 72.181804 ], [ -108.281250, 71.746432 ], [ -107.578125, 71.746432 ], [ -107.578125, 72.395706 ], [ -108.281250, 72.395706 ], [ -108.281250, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 73.428424 ], [ -104.765625, 73.428424 ], [ -104.765625, 73.022592 ], [ -105.468750, 73.022592 ], [ -105.468750, 72.181804 ], [ -104.765625, 72.181804 ] ], [ [ -114.609375, 72.816074 ], [ -114.609375, 72.607120 ], [ -113.906250, 72.607120 ], [ -113.906250, 72.816074 ], [ -114.609375, 72.816074 ] ] ], [ [ [ -117.421875, 74.959392 ], [ -117.421875, 75.320025 ], [ -116.718750, 75.320025 ], [ -116.718750, 75.845169 ], [ -116.015625, 75.845169 ], [ -116.015625, 76.351896 ], [ -113.906250, 76.351896 ], [ -113.906250, 76.184995 ], [ -112.500000, 76.184995 ], [ -112.500000, 76.016094 ], [ -111.796875, 76.016094 ], [ -111.796875, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.497157 ], [ -108.984375, 75.497157 ], [ -108.984375, 75.672197 ], [ -109.687500, 75.672197 ], [ -109.687500, 76.016094 ], [ -110.390625, 76.016094 ], [ -110.390625, 76.516819 ], [ -109.687500, 76.516819 ], [ -109.687500, 76.679785 ], [ -108.281250, 76.679785 ], [ -108.281250, 76.016094 ], [ -107.578125, 76.016094 ], [ -107.578125, 75.845169 ], [ -106.875000, 75.845169 ], [ -106.875000, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.171875, 75.672197 ], [ -105.468750, 75.672197 ], [ -105.468750, 75.140778 ], [ -106.171875, 75.140778 ], [ -106.171875, 74.959392 ], [ -107.578125, 74.959392 ], [ -107.578125, 74.775843 ], [ -109.687500, 74.775843 ], [ -109.687500, 74.590108 ], [ -111.093750, 74.590108 ], [ -111.093750, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.959392 ], [ -117.421875, 74.959392 ] ], [ [ -111.796875, 74.959392 ], [ -111.796875, 75.140778 ], [ -113.203125, 75.140778 ], [ -113.203125, 74.959392 ], [ -111.796875, 74.959392 ] ] ], [ [ [ -97.734375, 75.320025 ], [ -98.437500, 75.320025 ], [ -98.437500, 74.959392 ], [ -100.546875, 74.959392 ], [ -100.546875, 75.672197 ], [ -101.250000, 75.672197 ], [ -101.250000, 75.497157 ], [ -102.656250, 75.497157 ], [ -102.656250, 76.351896 ], [ -100.546875, 76.351896 ], [ -100.546875, 76.516819 ], [ -98.437500, 76.516819 ], [ -98.437500, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.320025 ] ] ], [ [ [ -116.015625, 76.679785 ], [ -116.718750, 76.679785 ], [ -116.718750, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 76.016094 ], [ -120.234375, 76.016094 ], [ -120.234375, 75.845169 ], [ -122.343750, 75.845169 ], [ -122.343750, 76.016094 ], [ -123.046875, 76.016094 ], [ -123.046875, 76.184995 ], [ -122.343750, 76.184995 ], [ -122.343750, 76.516819 ], [ -121.640625, 76.516819 ], [ -121.640625, 76.679785 ], [ -120.937500, 76.679785 ], [ -120.937500, 76.840816 ], [ -120.234375, 76.840816 ], [ -120.234375, 77.157163 ], [ -119.531250, 77.157163 ], [ -119.531250, 77.312520 ], [ -118.828125, 77.312520 ], [ -118.828125, 77.466028 ], [ -116.015625, 77.466028 ], [ -116.015625, 76.679785 ] ] ], [ [ [ -109.687500, 77.915669 ], [ -110.390625, 77.915669 ], [ -110.390625, 77.617709 ], [ -111.093750, 77.617709 ], [ -111.093750, 77.466028 ], [ -112.500000, 77.466028 ], [ -112.500000, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.915669 ], [ -112.500000, 77.915669 ], [ -112.500000, 78.061989 ], [ -109.687500, 78.061989 ], [ -109.687500, 77.915669 ] ] ], [ [ [ -97.031250, 77.915669 ], [ -98.437500, 77.915669 ], [ -98.437500, 78.767792 ], [ -97.031250, 78.767792 ], [ -97.031250, 77.915669 ] ] ], [ [ [ -99.843750, 77.915669 ], [ -101.250000, 77.915669 ], [ -101.250000, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -104.062500, 78.490552 ], [ -104.062500, 78.630006 ], [ -104.765625, 78.630006 ], [ -104.765625, 78.767792 ], [ -105.468750, 78.767792 ], [ -105.468750, 79.302640 ], [ -104.765625, 79.302640 ], [ -104.765625, 79.171335 ], [ -103.359375, 79.171335 ], [ -103.359375, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.767792 ], [ -100.546875, 78.767792 ], [ -100.546875, 78.490552 ], [ -99.843750, 78.490552 ], [ -99.843750, 77.915669 ] ] ], [ [ [ -109.687500, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.349411 ], [ -112.500000, 78.349411 ], [ -112.500000, 78.630006 ], [ -111.796875, 78.630006 ], [ -111.796875, 78.767792 ], [ -111.093750, 78.767792 ], [ -111.093750, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.490552 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.625000, 69.657086 ], [ -140.625000, 69.411242 ], [ -141.328125, 69.411242 ], [ -141.328125, 69.657086 ], [ -140.625000, 69.657086 ] ] ], [ [ [ -105.468750, 72.181804 ], [ -104.765625, 72.181804 ], [ -104.765625, 70.844673 ], [ -103.359375, 70.844673 ], [ -103.359375, 70.612614 ], [ -102.656250, 70.612614 ], [ -102.656250, 70.377854 ], [ -101.953125, 70.377854 ], [ -101.953125, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.657086 ], [ -117.421875, 69.657086 ], [ -117.421875, 69.900118 ], [ -116.718750, 69.900118 ], [ -116.718750, 70.140364 ], [ -112.500000, 70.140364 ], [ -112.500000, 70.377854 ], [ -113.906250, 70.377854 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -117.421875, 70.844673 ], [ -117.421875, 71.074056 ], [ -116.015625, 71.074056 ], [ -116.015625, 71.300793 ], [ -118.828125, 71.300793 ], [ -118.828125, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.965388 ], [ -118.828125, 71.965388 ], [ -118.828125, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.607120 ], [ -117.421875, 72.607120 ], [ -117.421875, 72.816074 ], [ -116.015625, 72.816074 ], [ -116.015625, 73.022592 ], [ -113.906250, 73.022592 ], [ -113.906250, 72.816074 ], [ -111.796875, 72.816074 ], [ -111.796875, 72.395706 ], [ -110.390625, 72.395706 ], [ -110.390625, 72.816074 ], [ -108.984375, 72.816074 ], [ -108.984375, 72.181804 ], [ -108.281250, 72.181804 ], [ -108.281250, 71.746432 ], [ -107.578125, 71.746432 ], [ -107.578125, 72.395706 ], [ -108.281250, 72.395706 ], [ -108.281250, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 73.428424 ], [ -104.765625, 73.428424 ], [ -104.765625, 73.022592 ], [ -105.468750, 73.022592 ], [ -105.468750, 72.181804 ] ], [ [ -113.906250, 72.816074 ], [ -114.609375, 72.816074 ], [ -114.609375, 72.607120 ], [ -113.906250, 72.607120 ], [ -113.906250, 72.816074 ] ] ], [ [ [ -127.265625, 70.140364 ], [ -126.562500, 70.140364 ], [ -126.562500, 69.657086 ], [ -125.859375, 69.657086 ], [ -125.859375, 69.411242 ], [ -132.187500, 69.411242 ], [ -132.187500, 69.657086 ], [ -131.484375, 69.657086 ], [ -131.484375, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 70.140364 ], [ -127.968750, 70.140364 ], [ -127.968750, 70.377854 ], [ -127.265625, 70.377854 ], [ -127.265625, 70.140364 ] ] ], [ [ [ -124.453125, 69.411242 ], [ -125.156250, 69.411242 ], [ -125.156250, 69.900118 ], [ -124.453125, 69.900118 ], [ -124.453125, 69.411242 ] ] ], [ [ [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.411242 ], [ -123.046875, 69.411242 ], [ -123.046875, 69.657086 ], [ -122.343750, 69.657086 ], [ -122.343750, 69.900118 ], [ -121.640625, 69.900118 ], [ -121.640625, 69.657086 ] ] ], [ [ [ -97.031250, 69.900118 ], [ -99.140625, 69.411242 ], [ -99.140625, 69.900118 ], [ -97.031250, 69.900118 ] ] ], [ [ [ -97.031250, 73.824820 ], [ -97.031250, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 72.816074 ], [ -97.031250, 72.816074 ], [ -97.031250, 71.524909 ], [ -97.734375, 71.524909 ], [ -97.734375, 71.300793 ], [ -99.140625, 71.300793 ], [ -99.140625, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.746432 ], [ -100.546875, 71.746432 ], [ -100.546875, 71.965388 ], [ -101.250000, 71.965388 ], [ -101.250000, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.816074 ], [ -101.953125, 72.816074 ], [ -101.953125, 72.607120 ], [ -100.546875, 72.607120 ], [ -100.546875, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.627789 ], [ -97.734375, 73.627789 ], [ -97.734375, 73.824820 ], [ -97.031250, 73.824820 ] ] ], [ [ [ -108.281250, 76.679785 ], [ -108.281250, 76.016094 ], [ -107.578125, 76.016094 ], [ -107.578125, 75.845169 ], [ -106.875000, 75.845169 ], [ -106.875000, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.171875, 75.672197 ], [ -105.468750, 75.672197 ], [ -105.468750, 75.140778 ], [ -106.171875, 75.140778 ], [ -106.171875, 74.959392 ], [ -107.578125, 74.959392 ], [ -107.578125, 74.775843 ], [ -109.687500, 74.775843 ], [ -109.687500, 74.590108 ], [ -111.093750, 74.590108 ], [ -111.093750, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.959392 ], [ -117.421875, 74.959392 ], [ -117.421875, 75.320025 ], [ -116.718750, 75.320025 ], [ -116.718750, 75.845169 ], [ -116.015625, 75.845169 ], [ -116.015625, 76.351896 ], [ -113.906250, 76.351896 ], [ -113.906250, 76.184995 ], [ -112.500000, 76.184995 ], [ -112.500000, 76.016094 ], [ -111.796875, 76.016094 ], [ -111.796875, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.497157 ], [ -108.984375, 75.497157 ], [ -108.984375, 75.672197 ], [ -109.687500, 75.672197 ], [ -109.687500, 76.016094 ], [ -110.390625, 76.016094 ], [ -110.390625, 76.516819 ], [ -109.687500, 76.516819 ], [ -109.687500, 76.679785 ], [ -108.281250, 76.679785 ] ], [ [ -113.203125, 75.140778 ], [ -113.203125, 74.959392 ], [ -111.796875, 74.959392 ], [ -111.796875, 75.140778 ], [ -113.203125, 75.140778 ] ] ], [ [ [ -98.437500, 76.516819 ], [ -98.437500, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.320025 ], [ -98.437500, 75.320025 ], [ -98.437500, 74.959392 ], [ -100.546875, 74.959392 ], [ -100.546875, 75.672197 ], [ -101.250000, 75.672197 ], [ -101.250000, 75.497157 ], [ -102.656250, 75.497157 ], [ -102.656250, 76.351896 ], [ -100.546875, 76.351896 ], [ -100.546875, 76.516819 ], [ -98.437500, 76.516819 ] ] ], [ [ [ -116.015625, 77.466028 ], [ -116.015625, 76.679785 ], [ -116.718750, 76.679785 ], [ -116.718750, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 76.016094 ], [ -120.234375, 76.016094 ], [ -120.234375, 75.845169 ], [ -122.343750, 75.845169 ], [ -122.343750, 76.016094 ], [ -123.046875, 76.016094 ], [ -123.046875, 76.184995 ], [ -122.343750, 76.184995 ], [ -122.343750, 76.516819 ], [ -121.640625, 76.516819 ], [ -121.640625, 76.679785 ], [ -120.937500, 76.679785 ], [ -120.937500, 76.840816 ], [ -120.234375, 76.840816 ], [ -120.234375, 77.157163 ], [ -119.531250, 77.157163 ], [ -119.531250, 77.312520 ], [ -118.828125, 77.312520 ], [ -118.828125, 77.466028 ], [ -116.015625, 77.466028 ] ] ], [ [ [ -109.687500, 78.061989 ], [ -109.687500, 77.915669 ], [ -110.390625, 77.915669 ], [ -110.390625, 77.617709 ], [ -111.093750, 77.617709 ], [ -111.093750, 77.466028 ], [ -112.500000, 77.466028 ], [ -112.500000, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.915669 ], [ -112.500000, 77.915669 ], [ -112.500000, 78.061989 ], [ -109.687500, 78.061989 ] ] ], [ [ [ -97.031250, 78.767792 ], [ -97.031250, 77.915669 ], [ -98.437500, 77.915669 ], [ -98.437500, 78.767792 ], [ -97.031250, 78.767792 ] ] ], [ [ [ -104.765625, 79.302640 ], [ -104.765625, 79.171335 ], [ -103.359375, 79.171335 ], [ -103.359375, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.767792 ], [ -100.546875, 78.767792 ], [ -100.546875, 78.490552 ], [ -99.843750, 78.490552 ], [ -99.843750, 77.915669 ], [ -101.250000, 77.915669 ], [ -101.250000, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -104.062500, 78.490552 ], [ -104.062500, 78.630006 ], [ -104.765625, 78.630006 ], [ -104.765625, 78.767792 ], [ -105.468750, 78.767792 ], [ -105.468750, 79.302640 ], [ -104.765625, 79.302640 ] ] ], [ [ [ -111.093750, 78.767792 ], [ -111.093750, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.349411 ], [ -112.500000, 78.349411 ], [ -112.500000, 78.630006 ], [ -111.796875, 78.630006 ], [ -111.796875, 78.767792 ], [ -111.093750, 78.767792 ] ] ], [ [ [ -117.421875, 72.816074 ], [ -118.828125, 72.816074 ], [ -118.828125, 72.607120 ], [ -119.531250, 72.607120 ], [ -119.531250, 72.181804 ], [ -120.234375, 72.181804 ], [ -120.234375, 71.074056 ], [ -121.640625, 71.074056 ], [ -121.640625, 70.844673 ], [ -123.046875, 70.844673 ], [ -123.046875, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.300793 ], [ -124.453125, 71.300793 ], [ -124.453125, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.746432 ], [ -125.859375, 71.746432 ], [ -125.859375, 72.181804 ], [ -125.156250, 72.181804 ], [ -125.156250, 73.022592 ], [ -124.453125, 73.022592 ], [ -124.453125, 73.428424 ], [ -123.750000, 73.428424 ], [ -123.750000, 73.627789 ], [ -124.453125, 73.627789 ], [ -124.453125, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.211983 ], [ -123.046875, 74.211983 ], [ -123.046875, 74.402163 ], [ -121.640625, 74.402163 ], [ -121.640625, 74.211983 ], [ -117.421875, 74.211983 ], [ -117.421875, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.428424 ], [ -115.312500, 73.428424 ], [ -115.312500, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.816074 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.781250, 77.915669 ], [ -86.484375, 77.915669 ], [ -86.484375, 78.206563 ], [ -87.890625, 78.206563 ], [ -87.890625, 78.490552 ], [ -87.187500, 78.490552 ], [ -87.187500, 78.767792 ], [ -86.484375, 78.767792 ], [ -86.484375, 78.903929 ], [ -85.078125, 78.903929 ], [ -85.078125, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 80.297927 ], [ -86.484375, 80.297927 ], [ -86.484375, 80.178713 ], [ -84.375000, 80.178713 ], [ -84.375000, 80.058050 ], [ -82.968750, 80.058050 ], [ -82.968750, 80.178713 ], [ -82.265625, 80.178713 ], [ -82.265625, 80.297927 ], [ -81.562500, 80.297927 ], [ -81.562500, 80.415707 ], [ -83.671875, 80.415707 ], [ -83.671875, 80.532071 ], [ -88.593750, 80.532071 ], [ -88.593750, 80.760615 ], [ -89.296875, 80.760615 ], [ -89.296875, 81.093214 ], [ -90.000000, 81.093214 ], [ -90.000000, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.406250, 81.413933 ], [ -91.406250, 81.923186 ], [ -90.703125, 81.923186 ], [ -90.703125, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.118384 ], [ -87.890625, 82.118384 ], [ -87.890625, 82.214217 ], [ -87.187500, 82.214217 ], [ -87.187500, 82.402423 ], [ -86.484375, 82.402423 ], [ -86.484375, 82.586106 ], [ -84.375000, 82.586106 ], [ -84.375000, 82.494824 ], [ -83.671875, 82.494824 ], [ -83.671875, 82.308893 ], [ -82.968750, 82.308893 ], [ -82.968750, 82.586106 ], [ -82.265625, 82.586106 ], [ -82.265625, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 82.940327 ], [ -80.859375, 82.940327 ], [ -80.859375, 83.026219 ], [ -79.453125, 83.026219 ], [ -79.453125, 83.111071 ], [ -77.343750, 83.111071 ], [ -77.343750, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -74.531250, 83.026219 ], [ -74.531250, 83.111071 ], [ -73.125000, 83.111071 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.111071 ], [ -67.500000, 83.111071 ], [ -67.500000, 83.026219 ], [ -65.390625, 83.026219 ], [ -65.390625, 82.940327 ], [ -63.984375, 82.940327 ], [ -63.984375, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.586106 ], [ -61.875000, 82.586106 ], [ -61.875000, 82.308893 ], [ -62.578125, 82.308893 ], [ -62.578125, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -63.984375, 81.923186 ], [ -63.984375, 81.823794 ], [ -65.390625, 81.823794 ], [ -65.390625, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.621352 ], [ -67.500000, 81.621352 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -65.390625, 81.413933 ], [ -66.093750, 81.413933 ], [ -66.093750, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 80.983688 ], [ -67.500000, 80.983688 ], [ -67.500000, 80.760615 ], [ -68.906250, 80.760615 ], [ -68.906250, 80.647035 ], [ -69.609375, 80.647035 ], [ -69.609375, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.812302 ], [ -71.718750, 79.812302 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.560546 ], [ -73.828125, 79.560546 ], [ -73.828125, 79.432371 ], [ -74.531250, 79.432371 ], [ -74.531250, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.171335 ], [ -75.234375, 79.171335 ], [ -75.234375, 79.038437 ], [ -75.937500, 79.038437 ], [ -75.937500, 78.767792 ], [ -75.234375, 78.767792 ], [ -75.234375, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.206563 ], [ -76.640625, 78.206563 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.312520 ], [ -78.750000, 77.312520 ], [ -78.750000, 77.157163 ], [ -87.890625, 77.157163 ], [ -87.890625, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.915669 ], [ -87.890625, 77.915669 ], [ -87.890625, 77.767582 ], [ -87.187500, 77.767582 ], [ -87.187500, 77.617709 ], [ -85.781250, 77.617709 ], [ -85.781250, 77.915669 ] ], [ [ -85.781250, 77.466028 ], [ -85.078125, 77.466028 ], [ -85.078125, 77.617709 ], [ -85.781250, 77.617709 ], [ -85.781250, 77.466028 ] ] ], [ [ [ -94.218750, 77.617709 ], [ -93.515625, 77.617709 ], [ -93.515625, 77.466028 ], [ -95.625000, 77.466028 ], [ -95.625000, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ] ] ], [ [ [ -96.328125, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.915669 ], [ -97.031250, 77.915669 ], [ -97.031250, 78.630006 ], [ -96.328125, 78.630006 ], [ -96.328125, 78.349411 ] ] ], [ [ [ -88.593750, 80.297927 ], [ -87.890625, 80.297927 ], [ -87.890625, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.171335 ], [ -86.484375, 79.171335 ], [ -86.484375, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 78.903929 ], [ -87.890625, 78.903929 ], [ -87.890625, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -89.296875, 78.349411 ], [ -89.296875, 78.206563 ], [ -92.109375, 78.206563 ], [ -92.109375, 78.349411 ], [ -93.515625, 78.349411 ], [ -93.515625, 78.630006 ], [ -94.218750, 78.630006 ], [ -94.218750, 79.171335 ], [ -93.515625, 79.171335 ], [ -93.515625, 79.302640 ], [ -92.812500, 79.302640 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.560546 ], [ -96.328125, 79.560546 ], [ -96.328125, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -96.328125, 80.415707 ], [ -96.328125, 80.760615 ], [ -95.625000, 80.760615 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.093214 ], [ -94.921875, 81.093214 ], [ -94.921875, 81.201420 ], [ -92.812500, 81.201420 ], [ -92.812500, 81.308321 ], [ -92.109375, 81.308321 ], [ -92.109375, 80.983688 ], [ -91.406250, 80.983688 ], [ -91.406250, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.297927 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.781250, 77.617709 ], [ -85.781250, 77.915669 ], [ -86.484375, 77.915669 ], [ -86.484375, 78.206563 ], [ -87.890625, 78.206563 ], [ -87.890625, 78.490552 ], [ -87.187500, 78.490552 ], [ -87.187500, 78.767792 ], [ -86.484375, 78.767792 ], [ -86.484375, 78.903929 ], [ -85.078125, 78.903929 ], [ -85.078125, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 80.297927 ], [ -86.484375, 80.297927 ], [ -86.484375, 80.178713 ], [ -84.375000, 80.178713 ], [ -84.375000, 80.058050 ], [ -82.968750, 80.058050 ], [ -82.968750, 80.178713 ], [ -82.265625, 80.178713 ], [ -82.265625, 80.297927 ], [ -81.562500, 80.297927 ], [ -81.562500, 80.415707 ], [ -83.671875, 80.415707 ], [ -83.671875, 80.532071 ], [ -88.593750, 80.532071 ], [ -88.593750, 80.760615 ], [ -89.296875, 80.760615 ], [ -89.296875, 81.093214 ], [ -90.000000, 81.093214 ], [ -90.000000, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.406250, 81.413933 ], [ -91.406250, 81.923186 ], [ -90.703125, 81.923186 ], [ -90.703125, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.118384 ], [ -87.890625, 82.118384 ], [ -87.890625, 82.214217 ], [ -87.187500, 82.214217 ], [ -87.187500, 82.402423 ], [ -86.484375, 82.402423 ], [ -86.484375, 82.586106 ], [ -84.375000, 82.586106 ], [ -84.375000, 82.494824 ], [ -83.671875, 82.494824 ], [ -83.671875, 82.308893 ], [ -82.968750, 82.308893 ], [ -82.968750, 82.586106 ], [ -82.265625, 82.586106 ], [ -82.265625, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 82.940327 ], [ -80.859375, 82.940327 ], [ -80.859375, 83.026219 ], [ -79.453125, 83.026219 ], [ -79.453125, 83.111071 ], [ -77.343750, 83.111071 ], [ -77.343750, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -74.531250, 83.026219 ], [ -74.531250, 83.111071 ], [ -73.125000, 83.111071 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.111071 ], [ -67.500000, 83.111071 ], [ -67.500000, 83.026219 ], [ -65.390625, 83.026219 ], [ -65.390625, 82.940327 ], [ -63.984375, 82.940327 ], [ -63.984375, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.586106 ], [ -61.875000, 82.586106 ], [ -61.875000, 82.308893 ], [ -62.578125, 82.308893 ], [ -62.578125, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -63.984375, 81.923186 ], [ -63.984375, 81.823794 ], [ -65.390625, 81.823794 ], [ -65.390625, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.621352 ], [ -67.500000, 81.621352 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -65.390625, 81.413933 ], [ -66.093750, 81.413933 ], [ -66.093750, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 80.983688 ], [ -67.500000, 80.983688 ], [ -67.500000, 80.760615 ], [ -68.906250, 80.760615 ], [ -68.906250, 80.647035 ], [ -69.609375, 80.647035 ], [ -69.609375, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.812302 ], [ -71.718750, 79.812302 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.560546 ], [ -73.828125, 79.560546 ], [ -73.828125, 79.432371 ], [ -74.531250, 79.432371 ], [ -74.531250, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.171335 ], [ -75.234375, 79.171335 ], [ -75.234375, 79.038437 ], [ -75.937500, 79.038437 ], [ -75.937500, 78.767792 ], [ -75.234375, 78.767792 ], [ -75.234375, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.206563 ], [ -76.640625, 78.206563 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.312520 ], [ -78.750000, 77.312520 ], [ -78.750000, 77.157163 ], [ -87.890625, 77.157163 ], [ -87.890625, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.915669 ], [ -87.890625, 77.915669 ], [ -87.890625, 77.767582 ], [ -87.187500, 77.767582 ], [ -87.187500, 77.617709 ], [ -85.781250, 77.617709 ] ], [ [ -85.781250, 77.617709 ], [ -85.781250, 77.466028 ], [ -85.078125, 77.466028 ], [ -85.078125, 77.617709 ], [ -85.781250, 77.617709 ] ] ], [ [ [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -93.515625, 77.617709 ], [ -93.515625, 77.466028 ], [ -95.625000, 77.466028 ], [ -95.625000, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -94.218750, 77.767582 ] ] ], [ [ [ -96.328125, 78.630006 ], [ -96.328125, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.915669 ], [ -97.031250, 77.915669 ], [ -97.031250, 78.630006 ], [ -96.328125, 78.630006 ] ] ], [ [ [ -92.109375, 81.308321 ], [ -92.109375, 80.983688 ], [ -91.406250, 80.983688 ], [ -91.406250, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.297927 ], [ -87.890625, 80.297927 ], [ -87.890625, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.171335 ], [ -86.484375, 79.171335 ], [ -86.484375, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 78.903929 ], [ -87.890625, 78.903929 ], [ -87.890625, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -89.296875, 78.349411 ], [ -89.296875, 78.206563 ], [ -92.109375, 78.206563 ], [ -92.109375, 78.349411 ], [ -93.515625, 78.349411 ], [ -93.515625, 78.630006 ], [ -94.218750, 78.630006 ], [ -94.218750, 79.171335 ], [ -93.515625, 79.171335 ], [ -93.515625, 79.302640 ], [ -92.812500, 79.302640 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.560546 ], [ -96.328125, 79.560546 ], [ -96.328125, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -96.328125, 80.415707 ], [ -96.328125, 80.760615 ], [ -95.625000, 80.760615 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.093214 ], [ -94.921875, 81.093214 ], [ -94.921875, 81.201420 ], [ -92.812500, 81.201420 ], [ -92.812500, 81.308321 ], [ -92.109375, 81.308321 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -96.328125, 69.411242 ], [ -97.031250, 69.411242 ], [ -97.031250, 69.657086 ], [ -96.328125, 69.657086 ], [ -96.328125, 69.411242 ] ] ], [ [ [ -92.812500, 70.844673 ], [ -92.109375, 70.844673 ], [ -92.109375, 70.377854 ], [ -91.406250, 70.377854 ], [ -91.406250, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.411242 ], [ -95.625000, 69.411242 ], [ -95.625000, 69.900118 ], [ -96.328125, 69.900118 ], [ -96.328125, 71.300793 ], [ -95.625000, 71.300793 ], [ -95.625000, 71.746432 ], [ -94.218750, 71.746432 ], [ -94.218750, 71.524909 ], [ -93.515625, 71.524909 ], [ -93.515625, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 70.844673 ] ] ], [ [ [ -87.187500, 70.140364 ], [ -87.187500, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 72.607120 ], [ -89.296875, 72.607120 ], [ -89.296875, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.627789 ], [ -86.484375, 73.824820 ], [ -85.781250, 73.824820 ], [ -85.781250, 73.428424 ], [ -86.484375, 73.428424 ], [ -86.484375, 72.816074 ], [ -85.781250, 72.816074 ], [ -85.781250, 73.022592 ], [ -85.078125, 73.022592 ], [ -85.078125, 73.428424 ], [ -83.671875, 73.428424 ], [ -83.671875, 73.627789 ], [ -82.265625, 73.627789 ], [ -82.265625, 73.428424 ], [ -81.562500, 73.428424 ], [ -81.562500, 73.022592 ], [ -80.859375, 73.022592 ], [ -80.859375, 71.965388 ], [ -80.156250, 71.965388 ], [ -80.156250, 72.181804 ], [ -78.750000, 72.181804 ], [ -78.750000, 72.607120 ], [ -77.343750, 72.607120 ], [ -77.343750, 72.395706 ], [ -76.640625, 72.395706 ], [ -76.640625, 72.181804 ], [ -75.937500, 72.181804 ], [ -75.937500, 71.965388 ], [ -75.234375, 71.965388 ], [ -75.234375, 71.746432 ], [ -74.531250, 71.746432 ], [ -74.531250, 71.524909 ], [ -73.828125, 71.524909 ], [ -73.828125, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 70.844673 ], [ -70.312500, 70.844673 ], [ -70.312500, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.377854 ], [ -68.203125, 70.377854 ], [ -68.203125, 69.900118 ], [ -67.500000, 69.900118 ], [ -67.500000, 69.411242 ], [ -77.343750, 69.411242 ], [ -77.343750, 69.657086 ], [ -78.046875, 69.657086 ], [ -78.046875, 69.900118 ], [ -80.156250, 69.900118 ], [ -80.156250, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.411242 ], [ -85.781250, 69.411242 ], [ -85.781250, 70.140364 ], [ -87.187500, 70.140364 ] ], [ [ -83.671875, 69.900118 ], [ -84.375000, 69.900118 ], [ -84.375000, 69.657086 ], [ -83.671875, 69.657086 ], [ -83.671875, 69.900118 ] ] ], [ [ [ -92.109375, 73.824820 ], [ -90.703125, 73.824820 ], [ -90.703125, 73.627789 ], [ -91.406250, 73.627789 ], [ -91.406250, 73.226700 ], [ -92.109375, 73.226700 ], [ -92.109375, 72.816074 ], [ -93.515625, 72.816074 ], [ -93.515625, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.965388 ], [ -95.625000, 71.965388 ], [ -95.625000, 72.395706 ], [ -96.328125, 72.395706 ], [ -96.328125, 72.181804 ], [ -97.031250, 72.181804 ], [ -97.031250, 72.607120 ], [ -96.328125, 72.607120 ], [ -96.328125, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.824820 ], [ -94.921875, 73.824820 ], [ -94.921875, 74.019543 ], [ -94.218750, 74.019543 ], [ -94.218750, 74.211983 ], [ -93.515625, 74.211983 ], [ -93.515625, 74.019543 ], [ -92.109375, 74.019543 ], [ -92.109375, 73.824820 ] ] ], [ [ [ -78.046875, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.022592 ], [ -76.640625, 73.022592 ], [ -76.640625, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.627789 ], [ -80.156250, 73.627789 ], [ -80.156250, 73.824820 ], [ -79.453125, 73.824820 ], [ -79.453125, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.428424 ] ] ], [ [ [ -80.859375, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.402163 ], [ -82.968750, 74.402163 ], [ -82.968750, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.590108 ], [ -91.406250, 74.590108 ], [ -91.406250, 74.775843 ], [ -92.109375, 74.775843 ], [ -92.109375, 74.959392 ], [ -92.812500, 74.959392 ], [ -92.812500, 75.845169 ], [ -93.515625, 75.845169 ], [ -93.515625, 76.184995 ], [ -94.218750, 76.184995 ], [ -94.218750, 76.351896 ], [ -95.625000, 76.351896 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.921875, 77.157163 ], [ -94.921875, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 76.679785 ], [ -90.703125, 76.679785 ], [ -90.703125, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.497157 ], [ -85.078125, 75.497157 ], [ -85.078125, 75.672197 ], [ -83.671875, 75.672197 ], [ -83.671875, 75.845169 ], [ -82.265625, 75.845169 ], [ -82.265625, 75.672197 ], [ -80.859375, 75.672197 ], [ -80.859375, 75.497157 ] ] ], [ [ [ -93.515625, 74.775843 ], [ -94.218750, 74.775843 ], [ -94.218750, 74.590108 ], [ -96.328125, 74.590108 ], [ -96.328125, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.320025 ], [ -95.625000, 75.320025 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ], [ -94.218750, 75.140778 ], [ -93.515625, 75.140778 ], [ -93.515625, 74.775843 ] ] ], [ [ [ -78.046875, 76.679785 ], [ -78.750000, 76.679785 ], [ -78.750000, 76.516819 ], [ -79.453125, 76.516819 ], [ -79.453125, 76.351896 ], [ -80.156250, 76.351896 ], [ -80.156250, 76.184995 ], [ -81.562500, 76.184995 ], [ -81.562500, 76.351896 ], [ -82.968750, 76.351896 ], [ -82.968750, 76.516819 ], [ -83.671875, 76.516819 ], [ -83.671875, 76.351896 ], [ -89.296875, 76.351896 ], [ -89.296875, 76.999935 ], [ -87.890625, 76.999935 ], [ -87.890625, 77.157163 ], [ -79.453125, 77.157163 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.679785 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -96.328125, 69.657086 ], [ -96.328125, 69.411242 ], [ -97.031250, 69.411242 ], [ -97.031250, 69.657086 ], [ -96.328125, 69.657086 ] ] ], [ [ [ -94.218750, 71.746432 ], [ -94.218750, 71.524909 ], [ -93.515625, 71.524909 ], [ -93.515625, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 70.844673 ], [ -92.109375, 70.844673 ], [ -92.109375, 70.377854 ], [ -91.406250, 70.377854 ], [ -91.406250, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.411242 ], [ -95.625000, 69.411242 ], [ -95.625000, 69.900118 ], [ -96.328125, 69.900118 ], [ -96.328125, 71.300793 ], [ -95.625000, 71.300793 ], [ -95.625000, 71.746432 ], [ -94.218750, 71.746432 ] ] ], [ [ [ -85.781250, 70.140364 ], [ -87.187500, 70.140364 ], [ -87.187500, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 72.607120 ], [ -89.296875, 72.607120 ], [ -89.296875, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.627789 ], [ -86.484375, 73.824820 ], [ -85.781250, 73.824820 ], [ -85.781250, 73.428424 ], [ -86.484375, 73.428424 ], [ -86.484375, 72.816074 ], [ -85.781250, 72.816074 ], [ -85.781250, 73.022592 ], [ -85.078125, 73.022592 ], [ -85.078125, 73.428424 ], [ -83.671875, 73.428424 ], [ -83.671875, 73.627789 ], [ -82.265625, 73.627789 ], [ -82.265625, 73.428424 ], [ -81.562500, 73.428424 ], [ -81.562500, 73.022592 ], [ -80.859375, 73.022592 ], [ -80.859375, 71.965388 ], [ -80.156250, 71.965388 ], [ -80.156250, 72.181804 ], [ -78.750000, 72.181804 ], [ -78.750000, 72.607120 ], [ -77.343750, 72.607120 ], [ -77.343750, 72.395706 ], [ -76.640625, 72.395706 ], [ -76.640625, 72.181804 ], [ -75.937500, 72.181804 ], [ -75.937500, 71.965388 ], [ -75.234375, 71.965388 ], [ -75.234375, 71.746432 ], [ -74.531250, 71.746432 ], [ -74.531250, 71.524909 ], [ -73.828125, 71.524909 ], [ -73.828125, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 70.844673 ], [ -70.312500, 70.844673 ], [ -70.312500, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.377854 ], [ -68.203125, 70.377854 ], [ -68.203125, 69.900118 ], [ -67.500000, 69.900118 ], [ -67.500000, 69.411242 ], [ -77.343750, 69.411242 ], [ -77.343750, 69.657086 ], [ -78.046875, 69.657086 ], [ -78.046875, 69.900118 ], [ -80.156250, 69.900118 ], [ -80.156250, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.411242 ], [ -85.781250, 69.411242 ], [ -85.781250, 70.140364 ] ], [ [ -84.375000, 69.900118 ], [ -84.375000, 69.657086 ], [ -83.671875, 69.657086 ], [ -83.671875, 69.900118 ], [ -84.375000, 69.900118 ] ] ], [ [ [ -93.515625, 74.211983 ], [ -93.515625, 74.019543 ], [ -92.109375, 74.019543 ], [ -92.109375, 73.824820 ], [ -90.703125, 73.824820 ], [ -90.703125, 73.627789 ], [ -91.406250, 73.627789 ], [ -91.406250, 73.226700 ], [ -92.109375, 73.226700 ], [ -92.109375, 72.816074 ], [ -93.515625, 72.816074 ], [ -93.515625, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.965388 ], [ -95.625000, 71.965388 ], [ -95.625000, 72.395706 ], [ -96.328125, 72.395706 ], [ -96.328125, 72.181804 ], [ -97.031250, 72.181804 ], [ -97.031250, 72.607120 ], [ -96.328125, 72.607120 ], [ -96.328125, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.824820 ], [ -94.921875, 73.824820 ], [ -94.921875, 74.019543 ], [ -94.218750, 74.019543 ], [ -94.218750, 74.211983 ], [ -93.515625, 74.211983 ] ] ], [ [ [ -79.453125, 73.824820 ], [ -79.453125, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.022592 ], [ -76.640625, 73.022592 ], [ -76.640625, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.627789 ], [ -80.156250, 73.627789 ], [ -80.156250, 73.824820 ], [ -79.453125, 73.824820 ] ] ], [ [ [ -94.921875, 77.157163 ], [ -94.921875, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 76.679785 ], [ -90.703125, 76.679785 ], [ -90.703125, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.497157 ], [ -85.078125, 75.497157 ], [ -85.078125, 75.672197 ], [ -83.671875, 75.672197 ], [ -83.671875, 75.845169 ], [ -82.265625, 75.845169 ], [ -82.265625, 75.672197 ], [ -80.859375, 75.672197 ], [ -80.859375, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.402163 ], [ -82.968750, 74.402163 ], [ -82.968750, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.590108 ], [ -91.406250, 74.590108 ], [ -91.406250, 74.775843 ], [ -92.109375, 74.775843 ], [ -92.109375, 74.959392 ], [ -92.812500, 74.959392 ], [ -92.812500, 75.845169 ], [ -93.515625, 75.845169 ], [ -93.515625, 76.184995 ], [ -94.218750, 76.184995 ], [ -94.218750, 76.351896 ], [ -95.625000, 76.351896 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.921875, 77.157163 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 75.140778 ], [ -93.515625, 75.140778 ], [ -93.515625, 74.775843 ], [ -94.218750, 74.775843 ], [ -94.218750, 74.590108 ], [ -96.328125, 74.590108 ], [ -96.328125, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.320025 ], [ -95.625000, 75.320025 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -79.453125, 77.157163 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.679785 ], [ -78.750000, 76.679785 ], [ -78.750000, 76.516819 ], [ -79.453125, 76.516819 ], [ -79.453125, 76.351896 ], [ -80.156250, 76.351896 ], [ -80.156250, 76.184995 ], [ -81.562500, 76.184995 ], [ -81.562500, 76.351896 ], [ -82.968750, 76.351896 ], [ -82.968750, 76.516819 ], [ -83.671875, 76.516819 ], [ -83.671875, 76.351896 ], [ -89.296875, 76.351896 ], [ -89.296875, 76.999935 ], [ -87.890625, 76.999935 ], [ -87.890625, 77.157163 ], [ -79.453125, 77.157163 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.859375, 48.922499 ], [ -125.859375, 49.382373 ], [ -127.265625, 49.382373 ], [ -127.265625, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 50.289339 ], [ -128.671875, 50.289339 ], [ -128.671875, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ], [ -129.375000, 53.748711 ], [ -130.781250, 53.748711 ], [ -130.781250, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 55.776573 ], [ -130.781250, 55.776573 ], [ -130.781250, 56.170023 ], [ -131.484375, 56.170023 ], [ -131.484375, 56.559482 ], [ -132.187500, 56.559482 ], [ -132.187500, 57.326521 ], [ -132.890625, 57.326521 ], [ -132.890625, 58.077876 ], [ -133.593750, 58.077876 ], [ -133.593750, 58.447733 ], [ -134.296875, 58.447733 ], [ -134.296875, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 58.813742 ], [ -137.812500, 58.813742 ], [ -137.812500, 59.175928 ], [ -138.515625, 59.175928 ], [ -138.515625, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 59.888937 ], [ -139.921875, 59.888937 ], [ -139.921875, 60.239811 ], [ -141.328125, 60.239811 ], [ -141.328125, 69.411242 ], [ -139.218750, 69.411242 ], [ -139.218750, 69.162558 ], [ -138.515625, 69.162558 ], [ -138.515625, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 69.162558 ], [ -135.703125, 69.162558 ], [ -135.703125, 69.411242 ], [ -120.234375, 69.411242 ], [ -120.234375, 69.162558 ], [ -118.828125, 69.162558 ], [ -118.828125, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 67.609221 ], [ -111.796875, 67.609221 ], [ -111.796875, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.609221 ], [ -108.984375, 67.609221 ], [ -108.984375, 67.339861 ], [ -108.281250, 67.339861 ], [ -108.281250, 67.609221 ], [ -107.578125, 67.609221 ], [ -107.578125, 67.875541 ], [ -108.281250, 67.875541 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.399180 ], [ -108.281250, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.399180 ], [ -104.765625, 68.399180 ], [ -104.765625, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 67.875541 ], [ -101.953125, 67.875541 ], [ -101.953125, 67.609221 ], [ -99.843750, 67.609221 ], [ -99.843750, 67.875541 ], [ -98.437500, 67.875541 ], [ -98.437500, 68.399180 ], [ -97.031250, 68.399180 ], [ -97.031250, 68.138852 ], [ -96.328125, 68.138852 ], [ -96.328125, 67.609221 ], [ -95.625000, 67.609221 ], [ -95.625000, 68.138852 ], [ -94.921875, 68.138852 ], [ -94.921875, 68.656555 ], [ -94.218750, 68.656555 ], [ -94.218750, 69.162558 ], [ -94.921875, 69.162558 ], [ -94.921875, 69.411242 ], [ -90.703125, 69.411242 ], [ -90.703125, 68.399180 ], [ -90.000000, 68.399180 ], [ -90.000000, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 68.656555 ], [ -87.890625, 68.656555 ], [ -87.890625, 68.138852 ], [ -88.593750, 68.138852 ], [ -88.593750, 67.609221 ], [ -87.890625, 67.609221 ], [ -87.890625, 67.067433 ], [ -87.187500, 67.067433 ], [ -87.187500, 67.339861 ], [ -86.484375, 67.339861 ], [ -86.484375, 68.399180 ], [ -85.781250, 68.399180 ], [ -85.781250, 65.658275 ], [ -86.484375, 65.658275 ], [ -86.484375, 65.072130 ], [ -87.187500, 65.072130 ], [ -87.187500, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.860036 ], [ -90.703125, 63.860036 ], [ -90.703125, 62.915233 ], [ -92.109375, 62.915233 ], [ -92.109375, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 61.606396 ], [ -93.515625, 61.606396 ], [ -93.515625, 60.930432 ], [ -94.218750, 60.930432 ], [ -94.218750, 60.586967 ], [ -94.921875, 60.586967 ], [ -94.921875, 58.813742 ], [ -93.515625, 58.813742 ], [ -93.515625, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.326521 ], [ -92.109375, 57.326521 ], [ -92.109375, 56.944974 ], [ -89.296875, 56.944974 ], [ -89.296875, 56.559482 ], [ -87.890625, 56.559482 ], [ -87.890625, 56.170023 ], [ -87.187500, 56.170023 ], [ -87.187500, 55.776573 ], [ -85.781250, 55.776573 ], [ -85.781250, 47.040182 ], [ -86.484375, 47.040182 ], [ -86.484375, 47.517201 ], [ -87.187500, 47.517201 ], [ -87.187500, 47.989922 ], [ -92.812500, 47.989922 ], [ -92.812500, 48.458352 ], [ -94.921875, 48.458352 ], [ -94.921875, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 49.382373 ], [ -125.156250, 49.382373 ], [ -125.156250, 48.922499 ], [ -125.859375, 48.922499 ] ] ], [ [ [ -132.890625, 52.482780 ], [ -132.890625, 54.162434 ], [ -131.484375, 54.162434 ], [ -131.484375, 53.330873 ], [ -132.187500, 53.330873 ], [ -132.187500, 52.482780 ], [ -132.890625, 52.482780 ] ] ], [ [ [ -85.781250, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 65.072130 ], [ -85.781250, 65.072130 ], [ -85.781250, 63.548552 ] ] ], [ [ [ -99.843750, 69.162558 ], [ -99.843750, 69.411242 ], [ -96.328125, 69.411242 ], [ -96.328125, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 68.911005 ], [ -96.328125, 68.911005 ], [ -96.328125, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 68.911005 ], [ -99.140625, 68.911005 ], [ -99.140625, 69.162558 ], [ -99.843750, 69.162558 ] ] ], [ [ [ -106.875000, 69.162558 ], [ -106.875000, 68.911005 ], [ -108.281250, 68.911005 ], [ -108.281250, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 69.162558 ], [ -116.718750, 69.162558 ], [ -116.718750, 69.411242 ], [ -102.656250, 69.411242 ], [ -102.656250, 69.162558 ], [ -101.953125, 69.162558 ], [ -101.953125, 68.911005 ], [ -102.656250, 68.911005 ], [ -102.656250, 68.656555 ], [ -104.062500, 68.656555 ], [ -104.062500, 68.911005 ], [ -105.468750, 68.911005 ], [ -105.468750, 69.162558 ], [ -106.875000, 69.162558 ] ] ], [ [ [ -123.750000, 48.922499 ], [ -123.750000, 48.458352 ], [ -125.156250, 48.458352 ], [ -125.156250, 48.922499 ], [ -123.750000, 48.922499 ] ] ], [ [ [ -131.484375, 52.482780 ], [ -131.484375, 52.052490 ], [ -132.187500, 52.052490 ], [ -132.187500, 52.482780 ], [ -131.484375, 52.482780 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -108.281250, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.399180 ], [ -104.765625, 68.399180 ], [ -104.765625, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 67.875541 ], [ -101.953125, 67.875541 ], [ -101.953125, 67.609221 ], [ -99.843750, 67.609221 ], [ -99.843750, 67.875541 ], [ -98.437500, 67.875541 ], [ -98.437500, 68.399180 ], [ -97.031250, 68.399180 ], [ -97.031250, 68.138852 ], [ -96.328125, 68.138852 ], [ -96.328125, 67.609221 ], [ -95.625000, 67.609221 ], [ -95.625000, 68.138852 ], [ -94.921875, 68.138852 ], [ -94.921875, 68.656555 ], [ -94.218750, 68.656555 ], [ -94.218750, 69.162558 ], [ -94.921875, 69.162558 ], [ -94.921875, 69.411242 ], [ -90.703125, 69.411242 ], [ -90.703125, 68.399180 ], [ -90.000000, 68.399180 ], [ -90.000000, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 68.656555 ], [ -87.890625, 68.656555 ], [ -87.890625, 68.138852 ], [ -88.593750, 68.138852 ], [ -88.593750, 67.609221 ], [ -87.890625, 67.609221 ], [ -87.890625, 67.067433 ], [ -87.187500, 67.067433 ], [ -87.187500, 67.339861 ], [ -86.484375, 67.339861 ], [ -86.484375, 68.399180 ], [ -85.781250, 68.399180 ], [ -85.781250, 65.658275 ], [ -86.484375, 65.658275 ], [ -86.484375, 65.072130 ], [ -87.187500, 65.072130 ], [ -87.187500, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.860036 ], [ -90.703125, 63.860036 ], [ -90.703125, 62.915233 ], [ -92.109375, 62.915233 ], [ -92.109375, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 61.606396 ], [ -93.515625, 61.606396 ], [ -93.515625, 60.930432 ], [ -94.218750, 60.930432 ], [ -94.218750, 60.586967 ], [ -94.921875, 60.586967 ], [ -94.921875, 58.813742 ], [ -93.515625, 58.813742 ], [ -93.515625, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.326521 ], [ -92.109375, 57.326521 ], [ -92.109375, 56.944974 ], [ -89.296875, 56.944974 ], [ -89.296875, 56.559482 ], [ -87.890625, 56.559482 ], [ -87.890625, 56.170023 ], [ -87.187500, 56.170023 ], [ -87.187500, 55.776573 ], [ -85.781250, 55.776573 ], [ -85.781250, 47.040182 ], [ -86.484375, 47.040182 ], [ -86.484375, 47.517201 ], [ -87.187500, 47.517201 ], [ -87.187500, 47.989922 ], [ -92.812500, 47.989922 ], [ -92.812500, 48.458352 ], [ -94.921875, 48.458352 ], [ -94.921875, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 49.382373 ], [ -125.156250, 49.382373 ], [ -125.156250, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.382373 ], [ -127.265625, 49.382373 ], [ -127.265625, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 50.289339 ], [ -128.671875, 50.289339 ], [ -128.671875, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ], [ -129.375000, 53.748711 ], [ -130.781250, 53.748711 ], [ -130.781250, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 55.776573 ], [ -130.781250, 55.776573 ], [ -130.781250, 56.170023 ], [ -131.484375, 56.170023 ], [ -131.484375, 56.559482 ], [ -132.187500, 56.559482 ], [ -132.187500, 57.326521 ], [ -132.890625, 57.326521 ], [ -132.890625, 58.077876 ], [ -133.593750, 58.077876 ], [ -133.593750, 58.447733 ], [ -134.296875, 58.447733 ], [ -134.296875, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 58.813742 ], [ -137.812500, 58.813742 ], [ -137.812500, 59.175928 ], [ -138.515625, 59.175928 ], [ -138.515625, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 59.888937 ], [ -139.921875, 59.888937 ], [ -139.921875, 60.239811 ], [ -141.328125, 60.239811 ], [ -141.328125, 69.411242 ], [ -139.218750, 69.411242 ], [ -139.218750, 69.162558 ], [ -138.515625, 69.162558 ], [ -138.515625, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 69.162558 ], [ -135.703125, 69.162558 ], [ -135.703125, 69.411242 ], [ -120.234375, 69.411242 ], [ -120.234375, 69.162558 ], [ -118.828125, 69.162558 ], [ -118.828125, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 67.609221 ], [ -111.796875, 67.609221 ], [ -111.796875, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.609221 ], [ -108.984375, 67.609221 ], [ -108.984375, 67.339861 ], [ -108.281250, 67.339861 ], [ -108.281250, 67.609221 ], [ -107.578125, 67.609221 ], [ -107.578125, 67.875541 ], [ -108.281250, 67.875541 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.399180 ], [ -108.281250, 68.656555 ] ] ], [ [ [ -132.187500, 52.482780 ], [ -132.890625, 52.482780 ], [ -132.890625, 54.162434 ], [ -131.484375, 54.162434 ], [ -131.484375, 53.330873 ], [ -132.187500, 53.330873 ], [ -132.187500, 52.482780 ] ] ], [ [ [ -96.328125, 69.411242 ], [ -96.328125, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 68.911005 ], [ -96.328125, 68.911005 ], [ -96.328125, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 68.911005 ], [ -99.140625, 68.911005 ], [ -99.140625, 69.162558 ], [ -99.843750, 69.162558 ], [ -99.843750, 69.411242 ], [ -96.328125, 69.411242 ] ] ], [ [ [ -125.156250, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 48.458352 ], [ -125.156250, 48.458352 ], [ -125.156250, 48.922499 ] ] ], [ [ [ -132.187500, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.052490 ], [ -132.187500, 52.052490 ], [ -132.187500, 52.482780 ] ] ], [ [ [ -86.484375, 65.072130 ], [ -85.781250, 65.072130 ], [ -85.781250, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 65.072130 ] ] ], [ [ [ -108.281250, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 69.162558 ], [ -116.718750, 69.162558 ], [ -116.718750, 69.411242 ], [ -102.656250, 69.411242 ], [ -102.656250, 69.162558 ], [ -101.953125, 69.162558 ], [ -101.953125, 68.911005 ], [ -102.656250, 68.911005 ], [ -102.656250, 68.656555 ], [ -104.062500, 68.656555 ], [ -104.062500, 68.911005 ], [ -105.468750, 68.911005 ], [ -105.468750, 69.162558 ], [ -106.875000, 69.162558 ], [ -106.875000, 68.911005 ], [ -108.281250, 68.911005 ], [ -108.281250, 68.656555 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.265625, 69.411242 ], [ -82.265625, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 68.399180 ], [ -82.265625, 68.399180 ], [ -82.265625, 67.875541 ], [ -81.562500, 67.875541 ], [ -81.562500, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.513260 ], [ -83.671875, 66.513260 ], [ -83.671875, 66.231457 ], [ -85.781250, 66.231457 ], [ -85.781250, 69.411242 ], [ -82.265625, 69.411242 ] ] ], [ [ [ -79.453125, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 62.267923 ], [ -79.453125, 62.267923 ], [ -79.453125, 61.606396 ] ] ], [ [ [ -63.281250, 66.791909 ], [ -61.875000, 66.791909 ], [ -61.875000, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.658275 ], [ -63.281250, 65.658275 ], [ -63.281250, 65.072130 ], [ -65.390625, 65.072130 ], [ -65.390625, 65.658275 ], [ -66.093750, 65.658275 ], [ -66.093750, 66.231457 ], [ -68.203125, 66.231457 ], [ -68.203125, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.072130 ], [ -66.796875, 65.072130 ], [ -66.796875, 64.774125 ], [ -65.390625, 64.774125 ], [ -65.390625, 63.860036 ], [ -64.687500, 63.860036 ], [ -64.687500, 62.593341 ], [ -66.093750, 62.593341 ], [ -66.093750, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.233627 ], [ -68.203125, 63.233627 ], [ -68.203125, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.267923 ], [ -66.093750, 62.267923 ], [ -66.093750, 61.938950 ], [ -68.203125, 61.938950 ], [ -68.203125, 62.267923 ], [ -69.609375, 62.267923 ], [ -69.609375, 62.593341 ], [ -71.015625, 62.593341 ], [ -71.015625, 62.915233 ], [ -71.718750, 62.915233 ], [ -71.718750, 63.233627 ], [ -72.421875, 63.233627 ], [ -72.421875, 63.860036 ], [ -73.125000, 63.860036 ], [ -73.125000, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.472794 ], [ -75.937500, 64.472794 ], [ -75.937500, 64.168107 ], [ -78.750000, 64.168107 ], [ -78.750000, 64.774125 ], [ -78.046875, 64.774125 ], [ -78.046875, 65.366837 ], [ -73.828125, 65.366837 ], [ -73.828125, 65.658275 ], [ -74.531250, 65.658275 ], [ -74.531250, 65.946472 ], [ -73.828125, 65.946472 ], [ -73.828125, 66.513260 ], [ -73.125000, 66.513260 ], [ -73.125000, 67.067433 ], [ -72.421875, 67.067433 ], [ -72.421875, 67.339861 ], [ -73.125000, 67.339861 ], [ -73.125000, 68.138852 ], [ -73.828125, 68.138852 ], [ -73.828125, 68.399180 ], [ -74.531250, 68.399180 ], [ -74.531250, 68.656555 ], [ -75.937500, 68.656555 ], [ -75.937500, 69.162558 ], [ -76.640625, 69.162558 ], [ -76.640625, 69.411242 ], [ -66.796875, 69.411242 ], [ -66.796875, 68.911005 ], [ -68.203125, 68.911005 ], [ -68.203125, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.875541 ], [ -64.687500, 67.875541 ], [ -64.687500, 67.609221 ], [ -63.984375, 67.609221 ], [ -63.984375, 67.067433 ], [ -63.281250, 67.067433 ], [ -63.281250, 66.791909 ] ] ], [ [ [ -81.562500, 62.267923 ], [ -83.671875, 62.267923 ], [ -83.671875, 62.593341 ], [ -82.968750, 62.593341 ], [ -82.968750, 62.915233 ], [ -81.562500, 62.915233 ], [ -81.562500, 62.267923 ] ] ], [ [ [ -75.234375, 67.067433 ], [ -76.640625, 67.067433 ], [ -76.640625, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.875541 ], [ -76.640625, 67.875541 ], [ -76.640625, 68.138852 ], [ -75.234375, 68.138852 ], [ -75.234375, 67.067433 ] ] ], [ [ [ -68.203125, 58.447733 ], [ -67.500000, 58.447733 ], [ -67.500000, 58.077876 ], [ -66.796875, 58.077876 ], [ -66.796875, 58.447733 ], [ -66.093750, 58.447733 ], [ -66.093750, 59.175928 ], [ -65.390625, 59.175928 ], [ -65.390625, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.175928 ], [ -63.281250, 59.175928 ], [ -63.281250, 58.447733 ], [ -62.578125, 58.447733 ], [ -62.578125, 57.704147 ], [ -61.875000, 57.704147 ], [ -61.875000, 57.326521 ], [ -76.640625, 57.326521 ], [ -76.640625, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -78.046875, 58.077876 ], [ -78.046875, 58.447733 ], [ -78.750000, 58.447733 ], [ -78.750000, 58.813742 ], [ -78.046875, 58.813742 ], [ -78.046875, 59.534318 ], [ -77.343750, 59.534318 ], [ -77.343750, 60.239811 ], [ -78.046875, 60.239811 ], [ -78.046875, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.015625, 61.270233 ], [ -71.015625, 60.930432 ], [ -69.609375, 60.930432 ], [ -69.609375, 58.813742 ], [ -68.203125, 58.813742 ], [ -68.203125, 58.447733 ] ] ], [ [ [ -85.078125, 65.658275 ], [ -85.078125, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 63.860036 ], [ -80.156250, 63.860036 ], [ -80.156250, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.860036 ], [ -83.671875, 63.860036 ], [ -83.671875, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 62.915233 ], [ -85.781250, 62.915233 ], [ -85.781250, 65.658275 ], [ -85.078125, 65.658275 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.125000, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.015625, 61.270233 ], [ -71.015625, 60.930432 ], [ -69.609375, 60.930432 ], [ -69.609375, 58.813742 ], [ -68.203125, 58.813742 ], [ -68.203125, 58.447733 ], [ -67.500000, 58.447733 ], [ -67.500000, 58.077876 ], [ -66.796875, 58.077876 ], [ -66.796875, 58.447733 ], [ -66.093750, 58.447733 ], [ -66.093750, 59.175928 ], [ -65.390625, 59.175928 ], [ -65.390625, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.175928 ], [ -63.281250, 59.175928 ], [ -63.281250, 58.447733 ], [ -62.578125, 58.447733 ], [ -62.578125, 57.704147 ], [ -61.875000, 57.704147 ], [ -61.875000, 57.326521 ], [ -76.640625, 57.326521 ], [ -76.640625, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -78.046875, 58.077876 ], [ -78.046875, 58.447733 ], [ -78.750000, 58.447733 ], [ -78.750000, 58.813742 ], [ -78.046875, 58.813742 ], [ -78.046875, 59.534318 ], [ -77.343750, 59.534318 ], [ -77.343750, 60.239811 ], [ -78.046875, 60.239811 ], [ -78.046875, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.938950 ] ] ], [ [ [ -79.453125, 62.267923 ], [ -79.453125, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 62.267923 ], [ -79.453125, 62.267923 ] ] ], [ [ [ -66.796875, 69.411242 ], [ -66.796875, 68.911005 ], [ -68.203125, 68.911005 ], [ -68.203125, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.875541 ], [ -64.687500, 67.875541 ], [ -64.687500, 67.609221 ], [ -63.984375, 67.609221 ], [ -63.984375, 67.067433 ], [ -63.281250, 67.067433 ], [ -63.281250, 66.791909 ], [ -61.875000, 66.791909 ], [ -61.875000, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.658275 ], [ -63.281250, 65.658275 ], [ -63.281250, 65.072130 ], [ -65.390625, 65.072130 ], [ -65.390625, 65.658275 ], [ -66.093750, 65.658275 ], [ -66.093750, 66.231457 ], [ -68.203125, 66.231457 ], [ -68.203125, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.072130 ], [ -66.796875, 65.072130 ], [ -66.796875, 64.774125 ], [ -65.390625, 64.774125 ], [ -65.390625, 63.860036 ], [ -64.687500, 63.860036 ], [ -64.687500, 62.593341 ], [ -66.093750, 62.593341 ], [ -66.093750, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.233627 ], [ -68.203125, 63.233627 ], [ -68.203125, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.267923 ], [ -66.093750, 62.267923 ], [ -66.093750, 61.938950 ], [ -68.203125, 61.938950 ], [ -68.203125, 62.267923 ], [ -69.609375, 62.267923 ], [ -69.609375, 62.593341 ], [ -71.015625, 62.593341 ], [ -71.015625, 62.915233 ], [ -71.718750, 62.915233 ], [ -71.718750, 63.233627 ], [ -72.421875, 63.233627 ], [ -72.421875, 63.860036 ], [ -73.125000, 63.860036 ], [ -73.125000, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.472794 ], [ -75.937500, 64.472794 ], [ -75.937500, 64.168107 ], [ -78.750000, 64.168107 ], [ -78.750000, 64.774125 ], [ -78.046875, 64.774125 ], [ -78.046875, 65.366837 ], [ -73.828125, 65.366837 ], [ -73.828125, 65.658275 ], [ -74.531250, 65.658275 ], [ -74.531250, 65.946472 ], [ -73.828125, 65.946472 ], [ -73.828125, 66.513260 ], [ -73.125000, 66.513260 ], [ -73.125000, 67.067433 ], [ -72.421875, 67.067433 ], [ -72.421875, 67.339861 ], [ -73.125000, 67.339861 ], [ -73.125000, 68.138852 ], [ -73.828125, 68.138852 ], [ -73.828125, 68.399180 ], [ -74.531250, 68.399180 ], [ -74.531250, 68.656555 ], [ -75.937500, 68.656555 ], [ -75.937500, 69.162558 ], [ -66.796875, 69.411242 ] ] ], [ [ [ -81.562500, 62.915233 ], [ -81.562500, 62.267923 ], [ -83.671875, 62.267923 ], [ -83.671875, 62.593341 ], [ -82.968750, 62.593341 ], [ -82.968750, 62.915233 ], [ -81.562500, 62.915233 ] ] ], [ [ [ -85.078125, 65.658275 ], [ -85.078125, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 63.860036 ], [ -80.156250, 63.860036 ], [ -80.156250, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.860036 ], [ -83.671875, 63.860036 ], [ -83.671875, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 62.915233 ], [ -85.781250, 62.915233 ], [ -85.781250, 65.658275 ], [ -85.078125, 65.658275 ] ] ], [ [ [ -82.265625, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 68.399180 ], [ -82.265625, 68.399180 ], [ -82.265625, 67.875541 ], [ -81.562500, 67.875541 ], [ -81.562500, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.513260 ], [ -83.671875, 66.513260 ], [ -83.671875, 66.231457 ], [ -85.781250, 66.231457 ], [ -85.781250, 69.411242 ], [ -82.265625, 69.411242 ], [ -82.265625, 69.162558 ] ] ], [ [ [ -75.234375, 68.138852 ], [ -75.234375, 67.067433 ], [ -76.640625, 67.067433 ], [ -76.640625, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.875541 ], [ -76.640625, 67.875541 ], [ -76.640625, 68.138852 ], [ -75.234375, 68.138852 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.984375, 48.922499 ], [ -63.984375, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.390625, 47.989922 ], [ -65.390625, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 45.583290 ], [ -61.875000, 45.583290 ], [ -61.875000, 46.073231 ], [ -61.171875, 46.073231 ], [ -61.171875, 46.558860 ], [ -60.468750, 46.558860 ], [ -60.468750, 46.073231 ], [ -59.765625, 46.073231 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.590467 ], [ -63.281250, 44.590467 ], [ -63.281250, 44.087585 ], [ -63.984375, 44.087585 ], [ -63.984375, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.590467 ], [ -64.687500, 44.590467 ], [ -64.687500, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 46.558860 ], [ -70.312500, 46.558860 ], [ -70.312500, 45.089036 ], [ -74.531250, 45.089036 ], [ -74.531250, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.580391 ], [ -79.453125, 43.580391 ], [ -79.453125, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.553080 ], [ -80.156250, 42.553080 ], [ -80.156250, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 41.508577 ], [ -82.968750, 41.508577 ], [ -82.968750, 42.553080 ], [ -82.265625, 42.553080 ], [ -82.265625, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 46.558860 ], [ -85.078125, 46.558860 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 55.379110 ], [ -83.671875, 55.379110 ], [ -83.671875, 54.977614 ], [ -82.265625, 54.977614 ], [ -82.265625, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 51.618017 ], [ -80.859375, 51.618017 ], [ -80.859375, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.453125, 53.330873 ], [ -79.453125, 54.162434 ], [ -80.156250, 54.162434 ], [ -80.156250, 54.572062 ], [ -78.750000, 54.572062 ], [ -78.750000, 54.977614 ], [ -78.046875, 54.977614 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 57.326521 ], [ -61.875000, 57.326521 ], [ -61.875000, 56.944974 ], [ -61.171875, 56.944974 ], [ -61.171875, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.379110 ], [ -59.062500, 55.379110 ], [ -59.062500, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.330873 ], [ -55.546875, 53.330873 ], [ -55.546875, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 51.179343 ], [ -59.062500, 51.179343 ], [ -59.062500, 50.736455 ], [ -59.765625, 50.736455 ], [ -59.765625, 50.289339 ], [ -66.093750, 50.289339 ], [ -66.093750, 49.837982 ], [ -66.796875, 49.837982 ], [ -66.796875, 49.382373 ], [ -67.500000, 49.382373 ], [ -67.500000, 48.922499 ], [ -63.984375, 48.922499 ] ], [ [ -69.609375, 47.989922 ], [ -69.609375, 47.517201 ], [ -68.906250, 47.517201 ], [ -68.906250, 47.989922 ], [ -69.609375, 47.989922 ] ], [ [ -68.203125, 48.922499 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.922499 ], [ -68.203125, 48.922499 ] ] ], [ [ [ -61.875000, 46.073231 ], [ -63.984375, 46.073231 ], [ -63.984375, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.073231 ] ] ], [ [ [ -55.546875, 49.382373 ], [ -53.437500, 49.382373 ], [ -53.437500, 47.989922 ], [ -52.734375, 47.989922 ], [ -52.734375, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -55.546875, 47.040182 ], [ -55.546875, 47.517201 ], [ -59.765625, 47.517201 ], [ -59.765625, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 48.458352 ], [ -58.359375, 48.458352 ], [ -58.359375, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 51.179343 ], [ -55.546875, 51.179343 ], [ -55.546875, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.289339 ], [ -56.953125, 50.289339 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ] ] ], [ [ [ -62.578125, 49.837982 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 48.922499 ], [ -63.281250, 48.922499 ], [ -63.281250, 49.382373 ], [ -64.687500, 49.382373 ], [ -64.687500, 49.837982 ], [ -62.578125, 49.837982 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.875000, 46.073231 ], [ -61.171875, 46.073231 ], [ -61.171875, 46.558860 ], [ -60.468750, 46.558860 ], [ -60.468750, 46.073231 ], [ -59.765625, 46.073231 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.590467 ], [ -63.281250, 44.590467 ], [ -63.281250, 44.087585 ], [ -63.984375, 44.087585 ], [ -63.984375, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.590467 ], [ -64.687500, 44.590467 ], [ -64.687500, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 46.558860 ], [ -70.312500, 46.558860 ], [ -70.312500, 45.089036 ], [ -74.531250, 45.089036 ], [ -74.531250, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.580391 ], [ -79.453125, 43.580391 ], [ -79.453125, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.553080 ], [ -80.156250, 42.553080 ], [ -80.156250, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 41.508577 ], [ -82.968750, 41.508577 ], [ -82.968750, 42.553080 ], [ -82.265625, 42.553080 ], [ -82.265625, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 46.558860 ], [ -85.078125, 46.558860 ], [ -85.078125, 47.040182 ], [ -85.781250, 55.379110 ], [ -83.671875, 55.379110 ], [ -83.671875, 54.977614 ], [ -82.265625, 54.977614 ], [ -82.265625, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 51.618017 ], [ -80.859375, 51.618017 ], [ -80.859375, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.453125, 53.330873 ], [ -79.453125, 54.162434 ], [ -80.156250, 54.162434 ], [ -80.156250, 54.572062 ], [ -78.750000, 54.572062 ], [ -78.750000, 54.977614 ], [ -78.046875, 54.977614 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 57.326521 ], [ -61.875000, 57.326521 ], [ -61.875000, 56.944974 ], [ -61.171875, 56.944974 ], [ -61.171875, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.379110 ], [ -59.062500, 55.379110 ], [ -59.062500, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.330873 ], [ -55.546875, 53.330873 ], [ -55.546875, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 51.179343 ], [ -59.062500, 51.179343 ], [ -59.062500, 50.736455 ], [ -59.765625, 50.736455 ], [ -59.765625, 50.289339 ], [ -66.093750, 50.289339 ], [ -66.093750, 49.837982 ], [ -66.796875, 49.837982 ], [ -66.796875, 49.382373 ], [ -67.500000, 49.382373 ], [ -67.500000, 48.922499 ], [ -63.984375, 48.922499 ], [ -63.984375, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.390625, 47.989922 ], [ -65.390625, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 45.583290 ], [ -61.875000, 45.583290 ], [ -61.875000, 46.073231 ] ], [ [ -67.500000, 48.922499 ], [ -68.203125, 48.922499 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.922499 ] ] ], [ [ [ -55.546875, 51.179343 ], [ -55.546875, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.289339 ], [ -56.953125, 50.289339 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.437500, 49.382373 ], [ -53.437500, 47.989922 ], [ -52.734375, 47.989922 ], [ -52.734375, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -55.546875, 47.040182 ], [ -55.546875, 47.517201 ], [ -59.765625, 47.517201 ], [ -59.765625, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 48.458352 ], [ -58.359375, 48.458352 ], [ -58.359375, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 51.179343 ], [ -55.546875, 51.179343 ] ] ], [ [ [ -62.578125, 49.837982 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 48.922499 ], [ -63.281250, 48.922499 ], [ -63.281250, 49.382373 ], [ -64.687500, 49.382373 ], [ -64.687500, 49.837982 ], [ -62.578125, 49.837982 ] ] ], [ [ [ -61.875000, 46.073231 ], [ -63.984375, 46.073231 ], [ -63.984375, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.073231 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.390625, 18.646245 ], [ -156.093750, 18.646245 ], [ -156.093750, 19.973349 ], [ -155.390625, 19.973349 ], [ -155.390625, 18.646245 ] ] ], [ [ [ -124.453125, 47.989922 ], [ -123.750000, 47.989922 ], [ -123.750000, 47.040182 ], [ -124.453125, 47.040182 ], [ -124.453125, 47.989922 ] ] ], [ [ [ -166.640625, 64.472794 ], [ -166.640625, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -168.046875, 65.366837 ], [ -168.046875, 65.658275 ], [ -166.640625, 65.658275 ], [ -166.640625, 65.946472 ], [ -165.937500, 65.946472 ], [ -165.937500, 66.231457 ], [ -164.531250, 66.231457 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 65.946472 ], [ -162.421875, 65.946472 ], [ -162.421875, 66.231457 ], [ -161.718750, 66.231457 ], [ -161.718750, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 67.339861 ], [ -164.531250, 67.339861 ], [ -164.531250, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.138852 ], [ -166.640625, 68.138852 ], [ -166.640625, 68.656555 ], [ -165.937500, 68.656555 ], [ -165.937500, 68.911005 ], [ -163.828125, 68.911005 ], [ -163.828125, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.900118 ], [ -162.421875, 69.900118 ], [ -162.421875, 70.140364 ], [ -161.718750, 70.140364 ], [ -161.718750, 70.377854 ], [ -160.312500, 70.377854 ], [ -160.312500, 70.612614 ], [ -158.906250, 70.612614 ], [ -158.906250, 70.844673 ], [ -157.500000, 70.844673 ], [ -157.500000, 71.074056 ], [ -155.390625, 71.074056 ], [ -155.390625, 70.844673 ], [ -154.687500, 70.844673 ], [ -154.687500, 70.612614 ], [ -153.984375, 70.612614 ], [ -153.984375, 70.844673 ], [ -151.875000, 70.844673 ], [ -151.875000, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.140364 ], [ -145.546875, 70.140364 ], [ -145.546875, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.657086 ], [ -141.328125, 69.657086 ], [ -141.328125, 60.239811 ], [ -139.921875, 60.239811 ], [ -139.921875, 59.888937 ], [ -139.218750, 59.888937 ], [ -139.218750, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.813742 ], [ -137.109375, 58.813742 ], [ -137.109375, 59.175928 ], [ -136.406250, 59.175928 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.704147 ], [ -134.296875, 57.704147 ], [ -134.296875, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.447733 ], [ -138.515625, 58.447733 ], [ -138.515625, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.175928 ], [ -139.921875, 59.175928 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.888937 ], [ -142.031250, 59.888937 ], [ -142.031250, 60.239811 ], [ -142.734375, 60.239811 ], [ -142.734375, 59.888937 ], [ -144.843750, 59.888937 ], [ -144.843750, 60.239811 ], [ -146.250000, 60.239811 ], [ -146.250000, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.534318 ], [ -153.281250, 59.534318 ], [ -153.281250, 59.175928 ], [ -153.984375, 59.175928 ], [ -153.984375, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 57.704147 ], [ -155.390625, 57.704147 ], [ -155.390625, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 55.776573 ], [ -158.906250, 55.776573 ], [ -158.906250, 55.379110 ], [ -161.015625, 55.379110 ], [ -161.015625, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.572062 ], [ -163.828125, 54.572062 ], [ -163.828125, 54.977614 ], [ -163.125000, 54.977614 ], [ -163.125000, 55.379110 ], [ -161.718750, 55.379110 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.944974 ], [ -158.203125, 56.944974 ], [ -158.203125, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.447733 ], [ -160.312500, 58.447733 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -162.421875, 59.534318 ], [ -162.421875, 59.888937 ], [ -164.531250, 59.888937 ], [ -164.531250, 60.239811 ], [ -165.234375, 60.239811 ], [ -165.234375, 61.270233 ], [ -165.937500, 61.270233 ], [ -165.937500, 62.267923 ], [ -165.234375, 62.267923 ], [ -165.234375, 62.915233 ], [ -164.531250, 62.915233 ], [ -164.531250, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 62.915233 ], [ -163.125000, 62.915233 ], [ -163.125000, 63.233627 ], [ -162.421875, 63.233627 ], [ -162.421875, 63.548552 ], [ -161.015625, 63.548552 ], [ -161.015625, 64.168107 ], [ -161.718750, 64.168107 ], [ -161.718750, 64.472794 ], [ -166.640625, 64.472794 ] ], [ [ -151.875000, 60.586967 ], [ -151.875000, 60.239811 ], [ -151.171875, 60.239811 ], [ -151.171875, 60.586967 ], [ -151.875000, 60.586967 ] ], [ [ -150.468750, 60.586967 ], [ -150.468750, 60.930432 ], [ -151.171875, 60.930432 ], [ -151.171875, 60.586967 ], [ -150.468750, 60.586967 ] ], [ [ -161.015625, 64.472794 ], [ -161.015625, 64.774125 ], [ -161.718750, 64.774125 ], [ -161.718750, 64.472794 ], [ -161.015625, 64.472794 ] ] ], [ [ [ -151.875000, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 56.944974 ], [ -153.281250, 56.944974 ], [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ], [ -153.984375, 57.326521 ], [ -153.984375, 57.704147 ], [ -153.281250, 57.704147 ], [ -153.281250, 58.077876 ], [ -152.578125, 58.077876 ], [ -152.578125, 57.704147 ], [ -151.875000, 57.704147 ], [ -151.875000, 57.326521 ] ] ], [ [ [ -165.937500, 59.888937 ], [ -167.343750, 59.888937 ], [ -167.343750, 60.239811 ], [ -165.937500, 60.239811 ], [ -165.937500, 59.888937 ] ] ], [ [ [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.233627 ], [ -171.562500, 63.233627 ], [ -171.562500, 63.548552 ], [ -169.453125, 63.548552 ], [ -169.453125, 63.233627 ] ] ], [ [ [ -124.453125, 39.909736 ], [ -124.453125, 44.087585 ], [ -123.750000, 44.087585 ], [ -123.750000, 39.909736 ], [ -124.453125, 39.909736 ] ] ], [ [ [ -131.484375, 56.559482 ], [ -131.484375, 56.170023 ], [ -130.781250, 56.170023 ], [ -130.781250, 55.776573 ], [ -130.078125, 55.776573 ], [ -130.078125, 54.977614 ], [ -130.781250, 54.977614 ], [ -130.781250, 55.379110 ], [ -132.187500, 55.379110 ], [ -132.187500, 56.559482 ], [ -131.484375, 56.559482 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.390625, 19.973349 ], [ -155.390625, 18.646245 ], [ -156.093750, 18.646245 ], [ -156.093750, 19.973349 ], [ -155.390625, 19.973349 ] ] ], [ [ [ -123.750000, 44.087585 ], [ -123.750000, 39.909736 ], [ -124.453125, 39.909736 ], [ -124.453125, 44.087585 ], [ -123.750000, 44.087585 ] ] ], [ [ [ -123.750000, 47.040182 ], [ -124.453125, 47.040182 ], [ -124.453125, 47.989922 ], [ -123.750000, 47.989922 ], [ -123.750000, 47.040182 ] ] ], [ [ [ -153.984375, 57.704147 ], [ -155.390625, 57.704147 ], [ -155.390625, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 55.776573 ], [ -158.906250, 55.776573 ], [ -158.906250, 55.379110 ], [ -161.015625, 55.379110 ], [ -161.015625, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.572062 ], [ -163.828125, 54.572062 ], [ -163.828125, 54.977614 ], [ -163.125000, 54.977614 ], [ -163.125000, 55.379110 ], [ -161.718750, 55.379110 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.944974 ], [ -158.203125, 56.944974 ], [ -158.203125, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.447733 ], [ -160.312500, 58.447733 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -162.421875, 59.534318 ], [ -162.421875, 59.888937 ], [ -164.531250, 59.888937 ], [ -164.531250, 60.239811 ], [ -165.234375, 60.239811 ], [ -165.234375, 61.270233 ], [ -165.937500, 61.270233 ], [ -165.937500, 62.267923 ], [ -165.234375, 62.267923 ], [ -165.234375, 62.915233 ], [ -164.531250, 62.915233 ], [ -164.531250, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 62.915233 ], [ -163.125000, 62.915233 ], [ -163.125000, 63.233627 ], [ -162.421875, 63.233627 ], [ -162.421875, 63.548552 ], [ -161.015625, 63.548552 ], [ -161.015625, 64.168107 ], [ -161.718750, 64.168107 ], [ -161.718750, 64.472794 ], [ -166.640625, 64.472794 ], [ -166.640625, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -168.046875, 65.366837 ], [ -168.046875, 65.658275 ], [ -166.640625, 65.658275 ], [ -166.640625, 65.946472 ], [ -165.937500, 65.946472 ], [ -165.937500, 66.231457 ], [ -164.531250, 66.231457 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 65.946472 ], [ -162.421875, 65.946472 ], [ -162.421875, 66.231457 ], [ -161.718750, 66.231457 ], [ -161.718750, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 67.339861 ], [ -164.531250, 67.339861 ], [ -164.531250, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.138852 ], [ -166.640625, 68.138852 ], [ -166.640625, 68.656555 ], [ -165.937500, 68.656555 ], [ -165.937500, 68.911005 ], [ -163.828125, 68.911005 ], [ -163.828125, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.900118 ], [ -162.421875, 69.900118 ], [ -162.421875, 70.140364 ], [ -161.718750, 70.140364 ], [ -161.718750, 70.377854 ], [ -160.312500, 70.377854 ], [ -160.312500, 70.612614 ], [ -158.906250, 70.612614 ], [ -158.906250, 70.844673 ], [ -157.500000, 70.844673 ], [ -157.500000, 71.074056 ], [ -155.390625, 71.074056 ], [ -155.390625, 70.844673 ], [ -154.687500, 70.844673 ], [ -154.687500, 70.612614 ], [ -153.984375, 70.612614 ], [ -153.984375, 70.844673 ], [ -151.875000, 70.844673 ], [ -151.875000, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.140364 ], [ -145.546875, 70.140364 ], [ -145.546875, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.657086 ], [ -141.328125, 69.657086 ], [ -141.328125, 60.239811 ], [ -139.921875, 60.239811 ], [ -139.921875, 59.888937 ], [ -139.218750, 59.888937 ], [ -139.218750, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.813742 ], [ -137.109375, 58.813742 ], [ -137.109375, 59.175928 ], [ -136.406250, 59.175928 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.704147 ], [ -134.296875, 57.704147 ], [ -134.296875, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.447733 ], [ -138.515625, 58.447733 ], [ -138.515625, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.175928 ], [ -139.921875, 59.175928 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.888937 ], [ -142.031250, 59.888937 ], [ -142.031250, 60.239811 ], [ -142.734375, 60.239811 ], [ -142.734375, 59.888937 ], [ -144.843750, 59.888937 ], [ -144.843750, 60.239811 ], [ -146.250000, 60.239811 ], [ -146.250000, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.534318 ], [ -153.281250, 59.534318 ], [ -153.281250, 59.175928 ], [ -153.984375, 59.175928 ], [ -153.984375, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 57.704147 ] ], [ [ -151.171875, 60.586967 ], [ -151.875000, 60.586967 ], [ -151.875000, 60.239811 ], [ -151.171875, 60.239811 ], [ -151.171875, 60.586967 ] ], [ [ -151.171875, 60.930432 ], [ -151.171875, 60.586967 ], [ -150.468750, 60.586967 ], [ -150.468750, 60.930432 ], [ -151.171875, 60.930432 ] ], [ [ -161.718750, 64.774125 ], [ -161.718750, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.774125 ], [ -161.718750, 64.774125 ] ] ], [ [ [ -165.937500, 60.239811 ], [ -165.937500, 59.888937 ], [ -167.343750, 59.888937 ], [ -167.343750, 60.239811 ], [ -165.937500, 60.239811 ] ] ], [ [ [ -169.453125, 63.548552 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.233627 ], [ -170.859375, 63.233627 ], [ -171.562500, 63.548552 ], [ -169.453125, 63.548552 ] ] ], [ [ [ -132.187500, 56.559482 ], [ -131.484375, 56.559482 ], [ -131.484375, 56.170023 ], [ -130.781250, 56.170023 ], [ -130.781250, 55.776573 ], [ -130.078125, 55.776573 ], [ -130.078125, 54.977614 ], [ -130.781250, 54.977614 ], [ -130.781250, 55.379110 ], [ -132.187500, 55.379110 ], [ -132.187500, 56.559482 ] ] ], [ [ [ -153.984375, 57.704147 ], [ -153.281250, 57.704147 ], [ -153.281250, 58.077876 ], [ -152.578125, 58.077876 ], [ -152.578125, 57.704147 ], [ -151.875000, 57.704147 ], [ -151.875000, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 56.944974 ], [ -153.281250, 56.944974 ], [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ], [ -153.984375, 57.326521 ], [ -153.984375, 57.704147 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.484375, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.558860 ], [ -84.375000, 46.558860 ], [ -84.375000, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 45.583290 ], [ -82.265625, 45.583290 ], [ -82.265625, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 41.508577 ], [ -81.562500, 41.508577 ], [ -81.562500, 42.032974 ], [ -80.156250, 42.032974 ], [ -80.156250, 42.553080 ], [ -78.750000, 42.553080 ], [ -78.750000, 43.068888 ], [ -79.453125, 43.068888 ], [ -79.453125, 43.580391 ], [ -76.640625, 43.580391 ], [ -76.640625, 44.087585 ], [ -75.234375, 44.087585 ], [ -75.234375, 44.590467 ], [ -74.531250, 44.590467 ], [ -74.531250, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 46.558860 ], [ -69.609375, 46.558860 ], [ -69.609375, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 45.089036 ], [ -66.796875, 45.089036 ], [ -66.796875, 44.087585 ], [ -68.906250, 44.087585 ], [ -68.906250, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.068888 ], [ -71.015625, 43.068888 ], [ -71.015625, 42.032974 ], [ -69.609375, 42.032974 ], [ -69.609375, 41.508577 ], [ -72.421875, 41.508577 ], [ -72.421875, 40.979898 ], [ -71.718750, 40.979898 ], [ -71.718750, 40.446947 ], [ -73.828125, 40.446947 ], [ -73.828125, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 38.822591 ], [ -76.640625, 38.822591 ], [ -76.640625, 37.160317 ], [ -75.937500, 37.160317 ], [ -75.937500, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.307144 ], [ -77.343750, 34.307144 ], [ -77.343750, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.137551 ], [ -79.453125, 33.137551 ], [ -79.453125, 32.546813 ], [ -80.156250, 32.546813 ], [ -80.156250, 31.952162 ], [ -80.859375, 31.952162 ], [ -80.859375, 31.353637 ], [ -81.562500, 31.353637 ], [ -81.562500, 29.535230 ], [ -80.859375, 29.535230 ], [ -80.859375, 27.683528 ], [ -80.156250, 27.683528 ], [ -80.156250, 25.165173 ], [ -81.562500, 25.165173 ], [ -81.562500, 25.799891 ], [ -82.265625, 25.799891 ], [ -82.265625, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 30.145127 ], [ -84.375000, 30.145127 ], [ -84.375000, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.145127 ], [ -89.296875, 30.145127 ], [ -89.296875, 28.921631 ], [ -91.406250, 28.921631 ], [ -91.406250, 29.535230 ], [ -94.921875, 29.535230 ], [ -94.921875, 28.921631 ], [ -95.625000, 28.921631 ], [ -95.625000, 28.304381 ], [ -96.328125, 28.304381 ], [ -96.328125, 27.683528 ], [ -97.031250, 27.683528 ], [ -97.031250, 25.799891 ], [ -99.140625, 25.799891 ], [ -99.140625, 27.059126 ], [ -99.843750, 27.059126 ], [ -99.843750, 28.304381 ], [ -100.546875, 28.304381 ], [ -100.546875, 28.921631 ], [ -101.250000, 28.921631 ], [ -101.250000, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 28.921631 ], [ -104.062500, 28.921631 ], [ -104.062500, 29.535230 ], [ -104.765625, 29.535230 ], [ -104.765625, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 31.353637 ], [ -112.500000, 31.353637 ], [ -112.500000, 31.952162 ], [ -114.609375, 31.952162 ], [ -114.609375, 32.546813 ], [ -117.421875, 32.546813 ], [ -117.421875, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 33.724340 ], [ -118.828125, 33.724340 ], [ -118.828125, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -121.640625, 35.460670 ], [ -121.640625, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.718590 ], [ -123.046875, 37.718590 ], [ -123.046875, 38.272689 ], [ -123.750000, 38.272689 ], [ -123.750000, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.343750, 47.517201 ], [ -122.343750, 48.458352 ], [ -123.046875, 48.458352 ], [ -123.046875, 48.922499 ], [ -94.921875, 48.922499 ], [ -94.921875, 48.458352 ], [ -92.812500, 48.458352 ], [ -92.812500, 47.989922 ], [ -87.187500, 47.989922 ], [ -87.187500, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.040182 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.921875, 48.922499 ], [ -94.921875, 48.458352 ], [ -92.812500, 48.458352 ], [ -92.812500, 47.989922 ], [ -87.187500, 47.989922 ], [ -87.187500, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.558860 ], [ -84.375000, 46.558860 ], [ -84.375000, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 45.583290 ], [ -82.265625, 45.583290 ], [ -82.265625, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 41.508577 ], [ -81.562500, 41.508577 ], [ -81.562500, 42.032974 ], [ -80.156250, 42.032974 ], [ -80.156250, 42.553080 ], [ -78.750000, 42.553080 ], [ -78.750000, 43.068888 ], [ -79.453125, 43.068888 ], [ -79.453125, 43.580391 ], [ -76.640625, 43.580391 ], [ -76.640625, 44.087585 ], [ -75.234375, 44.087585 ], [ -75.234375, 44.590467 ], [ -74.531250, 44.590467 ], [ -74.531250, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 46.558860 ], [ -69.609375, 46.558860 ], [ -69.609375, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 45.089036 ], [ -66.796875, 45.089036 ], [ -66.796875, 44.087585 ], [ -68.906250, 44.087585 ], [ -68.906250, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.068888 ], [ -71.015625, 43.068888 ], [ -71.015625, 42.032974 ], [ -69.609375, 42.032974 ], [ -69.609375, 41.508577 ], [ -72.421875, 41.508577 ], [ -72.421875, 40.979898 ], [ -71.718750, 40.979898 ], [ -71.718750, 40.446947 ], [ -73.828125, 40.446947 ], [ -73.828125, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 38.822591 ], [ -76.640625, 38.822591 ], [ -76.640625, 37.160317 ], [ -75.937500, 37.160317 ], [ -75.937500, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.307144 ], [ -77.343750, 34.307144 ], [ -77.343750, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.137551 ], [ -79.453125, 33.137551 ], [ -79.453125, 32.546813 ], [ -80.156250, 32.546813 ], [ -80.156250, 31.952162 ], [ -80.859375, 31.952162 ], [ -80.859375, 31.353637 ], [ -81.562500, 31.353637 ], [ -81.562500, 29.535230 ], [ -80.859375, 29.535230 ], [ -80.859375, 27.683528 ], [ -80.156250, 27.683528 ], [ -80.156250, 25.165173 ], [ -81.562500, 25.165173 ], [ -81.562500, 25.799891 ], [ -82.265625, 25.799891 ], [ -82.265625, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 30.145127 ], [ -84.375000, 30.145127 ], [ -84.375000, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.145127 ], [ -89.296875, 30.145127 ], [ -89.296875, 28.921631 ], [ -91.406250, 28.921631 ], [ -91.406250, 29.535230 ], [ -94.921875, 29.535230 ], [ -94.921875, 28.921631 ], [ -95.625000, 28.921631 ], [ -95.625000, 28.304381 ], [ -96.328125, 28.304381 ], [ -96.328125, 27.683528 ], [ -97.031250, 27.683528 ], [ -97.031250, 25.799891 ], [ -99.140625, 25.799891 ], [ -99.140625, 27.059126 ], [ -99.843750, 27.059126 ], [ -99.843750, 28.304381 ], [ -100.546875, 28.304381 ], [ -100.546875, 28.921631 ], [ -101.250000, 28.921631 ], [ -101.250000, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 28.921631 ], [ -104.062500, 28.921631 ], [ -104.062500, 29.535230 ], [ -104.765625, 29.535230 ], [ -104.765625, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 31.353637 ], [ -112.500000, 31.353637 ], [ -112.500000, 31.952162 ], [ -114.609375, 31.952162 ], [ -114.609375, 32.546813 ], [ -117.421875, 32.546813 ], [ -117.421875, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 33.724340 ], [ -118.828125, 33.724340 ], [ -118.828125, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -121.640625, 35.460670 ], [ -121.640625, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.718590 ], [ -123.046875, 37.718590 ], [ -123.046875, 38.272689 ], [ -123.750000, 38.272689 ], [ -123.750000, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.343750, 47.517201 ], [ -122.343750, 48.458352 ], [ -123.046875, 48.458352 ], [ -123.046875, 48.922499 ], [ -94.921875, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.468750, 30.751278 ], [ -104.765625, 30.751278 ], [ -104.765625, 29.535230 ], [ -104.062500, 29.535230 ], [ -104.062500, 28.921631 ], [ -102.656250, 28.921631 ], [ -102.656250, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 27.059126 ], [ -99.140625, 27.059126 ], [ -99.140625, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 25.165173 ], [ -97.734375, 25.165173 ], [ -97.734375, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.973349 ], [ -96.328125, 19.973349 ], [ -96.328125, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 17.978733 ], [ -93.515625, 17.978733 ], [ -93.515625, 18.646245 ], [ -90.703125, 18.646245 ], [ -90.703125, 20.632784 ], [ -90.000000, 20.632784 ], [ -90.000000, 21.289374 ], [ -86.484375, 21.289374 ], [ -86.484375, 20.632784 ], [ -87.187500, 20.632784 ], [ -87.187500, 19.973349 ], [ -87.890625, 19.973349 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 17.978733 ], [ -90.703125, 17.978733 ], [ -90.703125, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 15.961329 ], [ -91.406250, 15.961329 ], [ -91.406250, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 14.604847 ], [ -93.515625, 14.604847 ], [ -93.515625, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 15.961329 ], [ -99.140625, 15.961329 ], [ -99.140625, 16.636192 ], [ -100.546875, 16.636192 ], [ -100.546875, 17.308688 ], [ -101.953125, 17.308688 ], [ -101.953125, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 18.646245 ], [ -104.765625, 18.646245 ], [ -104.765625, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 23.241346 ], [ -106.875000, 23.241346 ], [ -106.875000, 23.885838 ], [ -107.578125, 23.885838 ], [ -107.578125, 24.527135 ], [ -108.281250, 24.527135 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 26.431228 ], [ -110.390625, 26.431228 ], [ -110.390625, 27.683528 ], [ -111.796875, 27.683528 ], [ -111.796875, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 30.145127 ], [ -113.203125, 30.145127 ], [ -113.203125, 31.353637 ], [ -114.609375, 31.353637 ], [ -114.609375, 29.535230 ], [ -116.015625, 29.535230 ], [ -116.015625, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.952162 ], [ -117.421875, 31.952162 ], [ -117.421875, 32.546813 ], [ -114.609375, 32.546813 ], [ -114.609375, 31.952162 ], [ -112.500000, 31.952162 ], [ -112.500000, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.952162 ], [ -106.171875, 31.952162 ], [ -106.171875, 31.353637 ], [ -105.468750, 31.353637 ], [ -105.468750, 30.751278 ] ] ], [ [ [ -111.796875, 26.431228 ], [ -111.796875, 25.799891 ], [ -111.093750, 25.799891 ], [ -111.093750, 24.527135 ], [ -110.390625, 24.527135 ], [ -110.390625, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 22.593726 ], [ -110.390625, 22.593726 ], [ -110.390625, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 23.885838 ], [ -111.796875, 23.885838 ], [ -111.796875, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 26.431228 ], [ -111.796875, 26.431228 ] ] ], [ [ [ -113.906250, 26.431228 ], [ -113.906250, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 27.683528 ], [ -113.906250, 27.683528 ], [ -113.906250, 28.921631 ], [ -113.203125, 28.921631 ], [ -113.203125, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 26.431228 ], [ -113.906250, 26.431228 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.609375, 32.546813 ], [ -114.609375, 31.952162 ], [ -112.500000, 31.952162 ], [ -112.500000, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.952162 ], [ -106.171875, 31.952162 ], [ -106.171875, 31.353637 ], [ -105.468750, 31.353637 ], [ -105.468750, 30.751278 ], [ -104.765625, 30.751278 ], [ -104.765625, 29.535230 ], [ -104.062500, 29.535230 ], [ -104.062500, 28.921631 ], [ -102.656250, 28.921631 ], [ -102.656250, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 27.059126 ], [ -99.140625, 27.059126 ], [ -99.140625, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 25.165173 ], [ -97.734375, 25.165173 ], [ -97.734375, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.973349 ], [ -96.328125, 19.973349 ], [ -96.328125, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 17.978733 ], [ -93.515625, 17.978733 ], [ -93.515625, 18.646245 ], [ -90.703125, 18.646245 ], [ -90.703125, 20.632784 ], [ -90.000000, 20.632784 ], [ -90.000000, 21.289374 ], [ -86.484375, 21.289374 ], [ -86.484375, 20.632784 ], [ -87.187500, 20.632784 ], [ -87.187500, 19.973349 ], [ -87.890625, 19.973349 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 17.978733 ], [ -90.703125, 17.978733 ], [ -90.703125, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 15.961329 ], [ -91.406250, 15.961329 ], [ -91.406250, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 14.604847 ], [ -93.515625, 14.604847 ], [ -93.515625, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 15.961329 ], [ -99.140625, 15.961329 ], [ -99.140625, 16.636192 ], [ -100.546875, 16.636192 ], [ -100.546875, 17.308688 ], [ -101.953125, 17.308688 ], [ -101.953125, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 18.646245 ], [ -104.765625, 18.646245 ], [ -104.765625, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 23.241346 ], [ -106.875000, 23.241346 ], [ -106.875000, 23.885838 ], [ -107.578125, 23.885838 ], [ -107.578125, 24.527135 ], [ -108.281250, 24.527135 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 26.431228 ], [ -110.390625, 26.431228 ], [ -110.390625, 27.683528 ], [ -111.796875, 27.683528 ], [ -111.796875, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 30.145127 ], [ -113.203125, 30.145127 ], [ -113.203125, 31.353637 ], [ -114.609375, 31.353637 ], [ -114.609375, 29.535230 ], [ -116.015625, 29.535230 ], [ -116.015625, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.952162 ], [ -117.421875, 31.952162 ], [ -117.421875, 32.546813 ], [ -114.609375, 32.546813 ] ] ], [ [ [ -112.500000, 26.431228 ], [ -111.796875, 26.431228 ], [ -111.796875, 25.799891 ], [ -111.093750, 25.799891 ], [ -111.093750, 24.527135 ], [ -110.390625, 24.527135 ], [ -110.390625, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 22.593726 ], [ -110.390625, 22.593726 ], [ -110.390625, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 23.885838 ], [ -111.796875, 23.885838 ], [ -111.796875, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 26.431228 ] ] ], [ [ [ -112.500000, 26.431228 ], [ -113.906250, 26.431228 ], [ -113.906250, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 27.683528 ], [ -113.906250, 27.683528 ], [ -113.906250, 28.921631 ], [ -113.203125, 28.921631 ], [ -113.203125, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.890625, 15.284185 ], [ -89.296875, 15.284185 ], [ -89.296875, 13.923404 ], [ -92.109375, 13.923404 ], [ -92.109375, 15.284185 ], [ -91.406250, 15.284185 ], [ -91.406250, 15.961329 ], [ -90.703125, 15.961329 ], [ -90.703125, 16.636192 ], [ -91.406250, 16.636192 ], [ -91.406250, 17.308688 ], [ -90.703125, 17.308688 ], [ -90.703125, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 15.961329 ], [ -87.890625, 15.961329 ], [ -87.890625, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 15.961329 ], [ -87.890625, 15.961329 ], [ -87.890625, 15.284185 ], [ -89.296875, 15.284185 ], [ -89.296875, 13.923404 ], [ -92.109375, 13.923404 ], [ -92.109375, 15.284185 ], [ -91.406250, 15.284185 ], [ -91.406250, 15.961329 ], [ -90.703125, 15.961329 ], [ -90.703125, 16.636192 ], [ -91.406250, 16.636192 ], [ -91.406250, 17.308688 ], [ -90.703125, 17.308688 ], [ -90.703125, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.093750, 81.308321 ], [ -21.093750, 81.413933 ], [ -20.390625, 81.413933 ], [ -20.390625, 81.518272 ], [ -19.687500, 81.518272 ], [ -19.687500, 81.621352 ], [ -18.281250, 81.621352 ], [ -18.281250, 81.723188 ], [ -16.875000, 81.723188 ], [ -16.875000, 81.823794 ], [ -14.062500, 81.823794 ], [ -14.062500, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.518272 ], [ -11.953125, 81.518272 ], [ -11.953125, 81.201420 ], [ -12.656250, 81.201420 ], [ -12.656250, 81.093214 ], [ -13.359375, 81.093214 ], [ -13.359375, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.760615 ], [ -14.765625, 80.760615 ], [ -14.765625, 80.647035 ], [ -15.468750, 80.647035 ], [ -15.468750, 80.532071 ], [ -16.171875, 80.532071 ], [ -16.171875, 80.415707 ], [ -16.875000, 80.415707 ], [ -16.875000, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.178713 ], [ -17.578125, 80.178713 ], [ -17.578125, 79.935918 ], [ -18.281250, 79.935918 ], [ -18.281250, 79.560546 ], [ -18.984375, 79.560546 ], [ -18.984375, 79.038437 ], [ -19.687500, 79.038437 ], [ -19.687500, 77.466028 ], [ -18.984375, 77.466028 ], [ -18.984375, 77.157163 ], [ -18.281250, 77.157163 ], [ -18.281250, 76.999935 ], [ -19.687500, 76.999935 ], [ -19.687500, 76.840816 ], [ -21.093750, 76.840816 ], [ -21.093750, 76.679785 ], [ -21.796875, 76.679785 ], [ -21.796875, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.351896 ], [ -20.390625, 76.351896 ], [ -20.390625, 76.016094 ], [ -19.687500, 76.016094 ], [ -19.687500, 75.140778 ], [ -20.390625, 75.140778 ], [ -20.390625, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.211983 ], [ -21.796875, 74.211983 ], [ -21.796875, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.627789 ], [ -21.093750, 73.627789 ], [ -21.093750, 73.226700 ], [ -23.906250, 73.226700 ], [ -23.906250, 73.022592 ], [ -23.203125, 73.022592 ], [ -23.203125, 72.607120 ], [ -22.500000, 72.607120 ], [ -22.500000, 72.181804 ], [ -23.203125, 72.181804 ], [ -23.203125, 71.965388 ], [ -22.500000, 71.965388 ], [ -22.500000, 71.524909 ], [ -21.796875, 71.524909 ], [ -21.796875, 70.377854 ], [ -23.906250, 70.377854 ], [ -23.906250, 70.612614 ], [ -24.609375, 70.612614 ], [ -24.609375, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.377854 ], [ -26.015625, 70.377854 ], [ -26.015625, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 68.911005 ], [ -26.015625, 68.911005 ], [ -26.015625, 68.656555 ], [ -26.718750, 68.656555 ], [ -26.718750, 68.399180 ], [ -28.828125, 68.399180 ], [ -28.828125, 68.138852 ], [ -31.640625, 68.138852 ], [ -31.640625, 67.875541 ], [ -32.343750, 67.875541 ], [ -32.343750, 67.609221 ], [ -33.046875, 67.609221 ], [ -33.046875, 67.339861 ], [ -33.750000, 67.339861 ], [ -33.750000, 66.791909 ], [ -34.453125, 66.791909 ], [ -34.453125, 66.513260 ], [ -35.156250, 66.513260 ], [ -35.156250, 66.231457 ], [ -35.859375, 66.231457 ], [ -35.859375, 65.946472 ], [ -37.265625, 65.946472 ], [ -37.265625, 65.658275 ], [ -38.671875, 65.658275 ], [ -38.671875, 65.366837 ], [ -40.078125, 65.366837 ], [ -40.078125, 65.072130 ], [ -40.781250, 65.072130 ], [ -40.781250, 63.860036 ], [ -41.484375, 63.860036 ], [ -41.484375, 63.233627 ], [ -42.187500, 63.233627 ], [ -42.187500, 62.593341 ], [ -42.890625, 62.593341 ], [ -42.890625, 62.267923 ], [ -42.187500, 62.267923 ], [ -42.187500, 61.270233 ], [ -42.890625, 61.270233 ], [ -42.890625, 60.586967 ], [ -43.593750, 60.586967 ], [ -43.593750, 59.888937 ], [ -45.703125, 59.888937 ], [ -45.703125, 60.586967 ], [ -46.406250, 60.586967 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 61.606396 ], [ -49.921875, 61.606396 ], [ -49.921875, 62.593341 ], [ -50.625000, 62.593341 ], [ -50.625000, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.860036 ], [ -52.031250, 63.860036 ], [ -52.031250, 65.366837 ], [ -52.734375, 65.366837 ], [ -52.734375, 65.946472 ], [ -53.437500, 65.946472 ], [ -53.437500, 66.791909 ], [ -54.140625, 66.791909 ], [ -54.140625, 67.339861 ], [ -53.437500, 67.339861 ], [ -53.437500, 67.875541 ], [ -52.734375, 67.875541 ], [ -52.734375, 68.399180 ], [ -51.328125, 68.399180 ], [ -51.328125, 69.411242 ], [ -50.625000, 69.411242 ], [ -50.625000, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.162558 ], [ -54.140625, 69.162558 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.411242 ], [ -54.843750, 70.612614 ], [ -54.140625, 70.612614 ], [ -54.140625, 70.844673 ], [ -52.734375, 70.844673 ], [ -52.734375, 71.074056 ], [ -53.437500, 71.074056 ], [ -53.437500, 71.300793 ], [ -54.843750, 71.300793 ], [ -54.843750, 71.524909 ], [ -55.546875, 71.524909 ], [ -55.546875, 72.181804 ], [ -54.843750, 72.181804 ], [ -54.843750, 72.816074 ], [ -55.546875, 72.816074 ], [ -55.546875, 73.226700 ], [ -56.250000, 73.226700 ], [ -56.250000, 73.824820 ], [ -56.953125, 73.824820 ], [ -56.953125, 74.402163 ], [ -57.656250, 74.402163 ], [ -57.656250, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.497157 ], [ -59.062500, 75.497157 ], [ -59.062500, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.184995 ], [ -66.796875, 76.184995 ], [ -66.796875, 76.016094 ], [ -68.906250, 76.016094 ], [ -68.906250, 76.184995 ], [ -69.609375, 76.184995 ], [ -69.609375, 76.351896 ], [ -70.312500, 76.351896 ], [ -70.312500, 76.679785 ], [ -71.015625, 76.679785 ], [ -71.015625, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 76.999935 ], [ -70.312500, 76.999935 ], [ -70.312500, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.312520 ], [ -68.203125, 77.312520 ], [ -68.203125, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.617709 ], [ -71.718750, 77.617709 ], [ -71.718750, 77.767582 ], [ -72.421875, 77.767582 ], [ -72.421875, 77.915669 ], [ -73.125000, 77.915669 ], [ -73.125000, 78.490552 ], [ -72.421875, 78.490552 ], [ -72.421875, 78.630006 ], [ -71.015625, 78.630006 ], [ -71.015625, 78.767792 ], [ -69.609375, 78.767792 ], [ -69.609375, 78.903929 ], [ -68.906250, 78.903929 ], [ -68.906250, 79.038437 ], [ -67.500000, 79.038437 ], [ -67.500000, 79.171335 ], [ -66.796875, 79.171335 ], [ -66.796875, 79.302640 ], [ -65.390625, 79.302640 ], [ -65.390625, 79.812302 ], [ -66.796875, 79.812302 ], [ -66.796875, 79.935918 ], [ -68.203125, 79.935918 ], [ -68.203125, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.647035 ], [ -66.093750, 80.647035 ], [ -66.093750, 80.872827 ], [ -65.390625, 80.872827 ], [ -65.390625, 80.983688 ], [ -64.687500, 80.983688 ], [ -64.687500, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.201420 ], [ -62.578125, 81.201420 ], [ -62.578125, 81.723188 ], [ -61.875000, 81.723188 ], [ -61.875000, 81.823794 ], [ -61.171875, 81.823794 ], [ -61.171875, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.021378 ], [ -59.062500, 82.021378 ], [ -59.062500, 82.118384 ], [ -57.656250, 82.118384 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.118384 ], [ -51.328125, 82.118384 ], [ -51.328125, 82.308893 ], [ -49.921875, 82.308893 ], [ -49.921875, 82.214217 ], [ -49.218750, 82.214217 ], [ -49.218750, 82.118384 ], [ -48.515625, 82.118384 ], [ -48.515625, 82.021378 ], [ -46.406250, 82.021378 ], [ -46.406250, 82.118384 ], [ -47.109375, 82.118384 ], [ -47.109375, 82.586106 ], [ -46.406250, 82.586106 ], [ -46.406250, 82.765373 ], [ -45.703125, 82.765373 ], [ -45.703125, 82.853382 ], [ -45.000000, 82.853382 ], [ -45.000000, 82.940327 ], [ -44.296875, 82.940327 ], [ -44.296875, 83.111071 ], [ -43.593750, 83.111071 ], [ -43.593750, 83.194896 ], [ -40.078125, 83.194896 ], [ -40.078125, 83.277705 ], [ -39.375000, 83.277705 ], [ -39.375000, 83.440326 ], [ -38.671875, 83.440326 ], [ -38.671875, 83.520162 ], [ -37.265625, 83.520162 ], [ -37.265625, 83.599031 ], [ -35.859375, 83.599031 ], [ -35.859375, 83.676943 ], [ -33.750000, 83.676943 ], [ -33.750000, 83.599031 ], [ -29.531250, 83.599031 ], [ -29.531250, 83.520162 ], [ -27.421875, 83.520162 ], [ -27.421875, 83.440326 ], [ -26.718750, 83.440326 ], [ -26.718750, 83.359511 ], [ -26.015625, 83.359511 ], [ -26.015625, 83.277705 ], [ -25.312500, 83.277705 ], [ -25.312500, 83.194896 ], [ -24.609375, 83.194896 ], [ -24.609375, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.586106 ], [ -21.796875, 82.586106 ], [ -21.796875, 82.402423 ], [ -22.500000, 82.402423 ], [ -22.500000, 82.308893 ], [ -28.828125, 82.308893 ], [ -28.828125, 82.214217 ], [ -31.640625, 82.214217 ], [ -31.640625, 82.021378 ], [ -29.531250, 82.021378 ], [ -29.531250, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.923186 ], [ -25.312500, 81.923186 ], [ -25.312500, 81.823794 ], [ -23.906250, 81.823794 ], [ -23.906250, 82.021378 ], [ -22.500000, 82.021378 ], [ -22.500000, 81.823794 ], [ -21.796875, 81.823794 ], [ -21.796875, 81.518272 ], [ -22.500000, 81.518272 ], [ -22.500000, 81.308321 ], [ -21.093750, 81.308321 ] ], [ [ -52.031250, 70.612614 ], [ -52.031250, 70.844673 ], [ -52.734375, 70.844673 ], [ -52.734375, 70.612614 ], [ -52.031250, 70.612614 ] ], [ [ -23.203125, 81.308321 ], [ -23.203125, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.308321 ], [ -23.203125, 81.308321 ] ], [ [ -23.203125, 72.395706 ], [ -24.609375, 72.395706 ], [ -24.609375, 72.181804 ], [ -23.203125, 72.181804 ], [ -23.203125, 72.395706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -23.203125, 72.181804 ], [ -23.203125, 71.965388 ], [ -22.500000, 71.965388 ], [ -22.500000, 71.524909 ], [ -21.796875, 71.524909 ], [ -21.796875, 70.377854 ], [ -23.906250, 70.377854 ], [ -23.906250, 70.612614 ], [ -24.609375, 70.612614 ], [ -24.609375, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.377854 ], [ -26.015625, 70.377854 ], [ -26.015625, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 68.911005 ], [ -26.015625, 68.911005 ], [ -26.015625, 68.656555 ], [ -26.718750, 68.656555 ], [ -26.718750, 68.399180 ], [ -28.828125, 68.399180 ], [ -28.828125, 68.138852 ], [ -31.640625, 68.138852 ], [ -31.640625, 67.875541 ], [ -32.343750, 67.875541 ], [ -32.343750, 67.609221 ], [ -33.046875, 67.609221 ], [ -33.046875, 67.339861 ], [ -33.750000, 67.339861 ], [ -33.750000, 66.791909 ], [ -34.453125, 66.791909 ], [ -34.453125, 66.513260 ], [ -35.156250, 66.513260 ], [ -35.156250, 66.231457 ], [ -35.859375, 66.231457 ], [ -35.859375, 65.946472 ], [ -37.265625, 65.946472 ], [ -37.265625, 65.658275 ], [ -38.671875, 65.658275 ], [ -38.671875, 65.366837 ], [ -40.078125, 65.366837 ], [ -40.078125, 65.072130 ], [ -40.781250, 65.072130 ], [ -40.781250, 63.860036 ], [ -41.484375, 63.860036 ], [ -41.484375, 63.233627 ], [ -42.187500, 63.233627 ], [ -42.187500, 62.593341 ], [ -42.890625, 62.593341 ], [ -42.890625, 62.267923 ], [ -42.187500, 62.267923 ], [ -42.187500, 61.270233 ], [ -42.890625, 61.270233 ], [ -42.890625, 60.586967 ], [ -43.593750, 60.586967 ], [ -43.593750, 59.888937 ], [ -45.703125, 59.888937 ], [ -45.703125, 60.586967 ], [ -46.406250, 60.586967 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 61.606396 ], [ -49.921875, 61.606396 ], [ -49.921875, 62.593341 ], [ -50.625000, 62.593341 ], [ -50.625000, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.860036 ], [ -52.031250, 63.860036 ], [ -52.031250, 65.366837 ], [ -52.734375, 65.366837 ], [ -52.734375, 65.946472 ], [ -53.437500, 65.946472 ], [ -53.437500, 66.791909 ], [ -54.140625, 66.791909 ], [ -54.140625, 67.339861 ], [ -53.437500, 67.339861 ], [ -53.437500, 67.875541 ], [ -52.734375, 67.875541 ], [ -52.734375, 68.399180 ], [ -51.328125, 68.399180 ], [ -51.328125, 69.411242 ], [ -50.625000, 69.411242 ], [ -50.625000, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.162558 ], [ -54.140625, 69.162558 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.411242 ], [ -54.843750, 70.612614 ], [ -54.140625, 70.612614 ], [ -54.140625, 70.844673 ], [ -52.734375, 70.844673 ], [ -52.734375, 71.074056 ], [ -53.437500, 71.074056 ], [ -53.437500, 71.300793 ], [ -54.843750, 71.300793 ], [ -54.843750, 71.524909 ], [ -55.546875, 71.524909 ], [ -55.546875, 72.181804 ], [ -54.843750, 72.181804 ], [ -54.843750, 72.816074 ], [ -55.546875, 72.816074 ], [ -55.546875, 73.226700 ], [ -56.250000, 73.226700 ], [ -56.250000, 73.824820 ], [ -56.953125, 73.824820 ], [ -56.953125, 74.402163 ], [ -57.656250, 74.402163 ], [ -57.656250, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.497157 ], [ -59.062500, 75.497157 ], [ -59.062500, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.184995 ], [ -66.796875, 76.184995 ], [ -66.796875, 76.016094 ], [ -68.906250, 76.016094 ], [ -68.906250, 76.184995 ], [ -69.609375, 76.184995 ], [ -69.609375, 76.351896 ], [ -70.312500, 76.351896 ], [ -70.312500, 76.679785 ], [ -71.015625, 76.679785 ], [ -71.015625, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 76.999935 ], [ -70.312500, 76.999935 ], [ -70.312500, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.312520 ], [ -68.203125, 77.312520 ], [ -68.203125, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.617709 ], [ -71.718750, 77.617709 ], [ -71.718750, 77.767582 ], [ -72.421875, 77.767582 ], [ -72.421875, 77.915669 ], [ -73.125000, 77.915669 ], [ -73.125000, 78.490552 ], [ -72.421875, 78.490552 ], [ -72.421875, 78.630006 ], [ -71.015625, 78.630006 ], [ -71.015625, 78.767792 ], [ -69.609375, 78.767792 ], [ -69.609375, 78.903929 ], [ -68.906250, 78.903929 ], [ -68.906250, 79.038437 ], [ -67.500000, 79.038437 ], [ -67.500000, 79.171335 ], [ -66.796875, 79.171335 ], [ -66.796875, 79.302640 ], [ -65.390625, 79.302640 ], [ -65.390625, 79.812302 ], [ -66.796875, 79.812302 ], [ -66.796875, 79.935918 ], [ -68.203125, 79.935918 ], [ -68.203125, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.647035 ], [ -66.093750, 80.647035 ], [ -66.093750, 80.872827 ], [ -65.390625, 80.872827 ], [ -65.390625, 80.983688 ], [ -64.687500, 80.983688 ], [ -64.687500, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.201420 ], [ -62.578125, 81.201420 ], [ -62.578125, 81.723188 ], [ -61.875000, 81.723188 ], [ -61.875000, 81.823794 ], [ -61.171875, 81.823794 ], [ -61.171875, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.021378 ], [ -59.062500, 82.021378 ], [ -59.062500, 82.118384 ], [ -57.656250, 82.118384 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.118384 ], [ -51.328125, 82.118384 ], [ -51.328125, 82.308893 ], [ -49.921875, 82.308893 ], [ -49.921875, 82.214217 ], [ -49.218750, 82.214217 ], [ -49.218750, 82.118384 ], [ -48.515625, 82.118384 ], [ -48.515625, 82.021378 ], [ -46.406250, 82.021378 ], [ -46.406250, 82.118384 ], [ -47.109375, 82.118384 ], [ -47.109375, 82.586106 ], [ -46.406250, 82.586106 ], [ -46.406250, 82.765373 ], [ -45.703125, 82.765373 ], [ -45.703125, 82.853382 ], [ -45.000000, 82.853382 ], [ -45.000000, 82.940327 ], [ -44.296875, 82.940327 ], [ -44.296875, 83.111071 ], [ -43.593750, 83.111071 ], [ -43.593750, 83.194896 ], [ -40.078125, 83.194896 ], [ -40.078125, 83.277705 ], [ -39.375000, 83.277705 ], [ -39.375000, 83.440326 ], [ -38.671875, 83.440326 ], [ -38.671875, 83.520162 ], [ -37.265625, 83.520162 ], [ -37.265625, 83.599031 ], [ -35.859375, 83.599031 ], [ -35.859375, 83.676943 ], [ -33.750000, 83.676943 ], [ -33.750000, 83.599031 ], [ -29.531250, 83.599031 ], [ -29.531250, 83.520162 ], [ -27.421875, 83.520162 ], [ -27.421875, 83.440326 ], [ -26.718750, 83.440326 ], [ -26.718750, 83.359511 ], [ -26.015625, 83.359511 ], [ -26.015625, 83.277705 ], [ -25.312500, 83.277705 ], [ -25.312500, 83.194896 ], [ -24.609375, 83.194896 ], [ -24.609375, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.586106 ], [ -21.796875, 82.586106 ], [ -21.796875, 82.402423 ], [ -22.500000, 82.402423 ], [ -22.500000, 82.308893 ], [ -28.828125, 82.308893 ], [ -28.828125, 82.214217 ], [ -31.640625, 82.214217 ], [ -31.640625, 82.021378 ], [ -29.531250, 82.021378 ], [ -29.531250, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.923186 ], [ -25.312500, 81.923186 ], [ -25.312500, 81.823794 ], [ -23.906250, 81.823794 ], [ -23.906250, 82.021378 ], [ -22.500000, 82.021378 ], [ -22.500000, 81.823794 ], [ -21.796875, 81.823794 ], [ -21.796875, 81.518272 ], [ -22.500000, 81.518272 ], [ -22.500000, 81.308321 ], [ -21.093750, 81.308321 ], [ -21.093750, 81.413933 ], [ -20.390625, 81.413933 ], [ -20.390625, 81.518272 ], [ -19.687500, 81.518272 ], [ -19.687500, 81.621352 ], [ -18.281250, 81.621352 ], [ -18.281250, 81.723188 ], [ -16.875000, 81.723188 ], [ -16.875000, 81.823794 ], [ -14.062500, 81.823794 ], [ -14.062500, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.518272 ], [ -11.953125, 81.518272 ], [ -11.953125, 81.201420 ], [ -12.656250, 81.201420 ], [ -12.656250, 81.093214 ], [ -13.359375, 81.093214 ], [ -13.359375, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.760615 ], [ -14.765625, 80.760615 ], [ -14.765625, 80.647035 ], [ -15.468750, 80.647035 ], [ -15.468750, 80.532071 ], [ -16.171875, 80.532071 ], [ -16.171875, 80.415707 ], [ -16.875000, 80.415707 ], [ -16.875000, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.178713 ], [ -17.578125, 80.178713 ], [ -17.578125, 79.935918 ], [ -18.281250, 79.935918 ], [ -18.281250, 79.560546 ], [ -18.984375, 79.560546 ], [ -18.984375, 79.038437 ], [ -19.687500, 79.038437 ], [ -19.687500, 77.466028 ], [ -18.984375, 77.466028 ], [ -18.984375, 77.157163 ], [ -18.281250, 77.157163 ], [ -18.281250, 76.999935 ], [ -19.687500, 76.999935 ], [ -19.687500, 76.840816 ], [ -21.093750, 76.840816 ], [ -21.093750, 76.679785 ], [ -21.796875, 76.679785 ], [ -21.796875, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.351896 ], [ -20.390625, 76.351896 ], [ -20.390625, 76.016094 ], [ -19.687500, 76.016094 ], [ -19.687500, 75.140778 ], [ -20.390625, 75.140778 ], [ -20.390625, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.211983 ], [ -21.796875, 74.211983 ], [ -21.796875, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.627789 ], [ -21.093750, 73.627789 ], [ -21.093750, 73.226700 ], [ -23.906250, 73.226700 ], [ -23.906250, 73.022592 ], [ -23.203125, 73.022592 ], [ -23.203125, 72.607120 ], [ -22.500000, 72.607120 ], [ -22.500000, 72.181804 ], [ -23.203125, 72.181804 ] ], [ [ -22.500000, 81.308321 ], [ -23.203125, 81.308321 ], [ -23.203125, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.308321 ] ], [ [ -52.734375, 70.844673 ], [ -52.734375, 70.612614 ], [ -52.031250, 70.612614 ], [ -52.031250, 70.844673 ], [ -52.734375, 70.844673 ] ], [ [ -23.203125, 72.181804 ], [ -23.203125, 72.395706 ], [ -24.609375, 72.395706 ], [ -24.609375, 72.181804 ], [ -23.203125, 72.181804 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.343750, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.527135 ], [ -77.343750, 24.527135 ], [ -77.343750, 23.885838 ] ] ], [ [ [ -78.046875, 26.431228 ], [ -78.750000, 26.431228 ], [ -78.750000, 27.059126 ], [ -78.046875, 27.059126 ], [ -78.046875, 26.431228 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.343750, 24.527135 ], [ -77.343750, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.527135 ], [ -77.343750, 24.527135 ] ] ], [ [ [ -78.750000, 26.431228 ], [ -78.750000, 27.059126 ], [ -78.046875, 27.059126 ], [ -77.343750, 26.431228 ], [ -78.750000, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.593750, 17.308688 ], [ -87.890625, 17.308688 ], [ -87.890625, 16.636192 ], [ -88.593750, 16.636192 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 17.308688 ] ] ], [ [ [ -88.593750, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 18.646245 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.593750, 17.978733 ], [ -88.593750, 17.308688 ], [ -87.890625, 17.308688 ], [ -87.890625, 16.636192 ], [ -88.593750, 16.636192 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.593750, 17.978733 ] ] ], [ [ [ -87.890625, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 17.978733 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.890625, 13.239945 ], [ -90.000000, 13.239945 ], [ -90.000000, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -90.000000, 13.239945 ], [ -90.000000, 13.923404 ], [ -87.890625, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.671875, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 13.923404 ], [ -86.484375, 13.923404 ], [ -86.484375, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -89.296875, 13.923404 ], [ -89.296875, 15.284185 ], [ -87.890625, 15.284185 ], [ -87.890625, 15.961329 ], [ -84.375000, 15.961329 ], [ -84.375000, 15.284185 ], [ -83.671875, 15.284185 ], [ -83.671875, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.284185 ], [ -83.671875, 15.284185 ], [ -83.671875, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 13.923404 ], [ -86.484375, 13.923404 ], [ -86.484375, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -89.296875, 13.923404 ], [ -89.296875, 15.284185 ], [ -87.890625, 15.284185 ], [ -87.890625, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 13.923404 ], [ -83.671875, 13.923404 ], [ -83.671875, 10.487812 ], [ -84.375000, 10.487812 ], [ -84.375000, 11.178402 ], [ -86.484375, 11.178402 ], [ -86.484375, 11.867351 ], [ -87.187500, 11.867351 ], [ -87.187500, 12.554564 ], [ -87.890625, 12.554564 ], [ -87.890625, 13.239945 ], [ -86.484375, 13.239945 ], [ -86.484375, 13.923404 ], [ -85.078125, 13.923404 ], [ -85.078125, 14.604847 ], [ -83.671875, 14.604847 ], [ -83.671875, 15.284185 ], [ -82.968750, 15.284185 ], [ -82.968750, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 15.284185 ], [ -82.968750, 13.923404 ], [ -83.671875, 13.923404 ], [ -83.671875, 10.487812 ], [ -84.375000, 10.487812 ], [ -84.375000, 11.178402 ], [ -86.484375, 11.178402 ], [ -86.484375, 11.867351 ], [ -87.187500, 11.867351 ], [ -87.187500, 12.554564 ], [ -87.890625, 12.554564 ], [ -87.890625, 13.239945 ], [ -86.484375, 13.239945 ], [ -86.484375, 13.923404 ], [ -85.078125, 13.923404 ], [ -85.078125, 14.604847 ], [ -83.671875, 14.604847 ], [ -83.671875, 15.284185 ], [ -82.968750, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.968750, 23.241346 ], [ -80.859375, 23.241346 ], [ -80.859375, 22.593726 ], [ -78.046875, 22.593726 ], [ -78.046875, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.289374 ], [ -75.937500, 21.289374 ], [ -75.937500, 20.632784 ], [ -75.234375, 20.632784 ], [ -75.234375, 19.973349 ], [ -77.343750, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.289374 ], [ -80.156250, 21.289374 ], [ -80.156250, 21.943046 ], [ -82.265625, 21.943046 ], [ -82.265625, 22.593726 ], [ -82.968750, 22.593726 ], [ -82.968750, 23.241346 ] ] ], [ [ [ -82.968750, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 22.593726 ], [ -82.968750, 22.593726 ], [ -82.968750, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.968750, 22.593726 ], [ -82.968750, 23.241346 ], [ -80.859375, 23.241346 ], [ -80.859375, 22.593726 ], [ -78.046875, 22.593726 ], [ -78.046875, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.289374 ], [ -75.937500, 21.289374 ], [ -75.937500, 20.632784 ], [ -75.234375, 20.632784 ], [ -75.234375, 19.973349 ], [ -77.343750, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.289374 ], [ -80.156250, 21.289374 ], [ -80.156250, 21.943046 ], [ -82.265625, 21.943046 ], [ -82.265625, 22.593726 ], [ -82.968750, 22.593726 ] ] ], [ [ [ -82.968750, 22.593726 ], [ -82.968750, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 22.593726 ], [ -82.968750, 22.593726 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 10.487812 ], [ -83.671875, 10.487812 ], [ -83.671875, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -84.375000, 9.102097 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -84.375000, 11.178402 ], [ -84.375000, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 11.178402 ], [ -84.375000, 10.487812 ], [ -83.671875, 10.487812 ], [ -83.671875, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -84.375000, 9.102097 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -84.375000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ], [ -80.859375, 7.013668 ], [ -80.859375, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -82.265625, 9.795678 ], [ -82.265625, 9.102097 ], [ -79.453125, 9.102097 ], [ -79.453125, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 9.102097 ], [ -78.046875, 9.102097 ], [ -78.046875, 8.407168 ] ] ], [ [ [ -77.343750, 8.407168 ], [ -77.343750, 7.710992 ], [ -78.046875, 7.710992 ], [ -78.046875, 8.407168 ], [ -77.343750, 8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ], [ -80.859375, 7.013668 ], [ -80.859375, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -82.265625, 9.795678 ], [ -82.265625, 9.102097 ], [ -79.453125, 9.102097 ], [ -79.453125, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 9.102097 ], [ -78.046875, 9.102097 ], [ -78.046875, 8.407168 ] ] ], [ [ [ -78.046875, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.710992 ], [ -78.046875, 7.710992 ], [ -78.046875, 8.407168 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.640625, 17.978733 ], [ -78.046875, 17.978733 ], [ -78.046875, 18.646245 ], [ -76.640625, 18.646245 ], [ -76.640625, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.640625, 18.646245 ], [ -76.640625, 17.978733 ], [ -78.046875, 17.978733 ], [ -78.046875, 18.646245 ], [ -76.640625, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 17.978733 ], [ -74.531250, 17.978733 ], [ -74.531250, 18.646245 ], [ -73.125000, 18.646245 ], [ -73.125000, 19.973349 ], [ -71.718750, 19.973349 ], [ -71.718750, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.973349 ], [ -71.718750, 17.978733 ], [ -74.531250, 17.978733 ], [ -74.531250, 18.646245 ], [ -73.125000, 18.646245 ], [ -73.125000, 19.973349 ], [ -71.718750, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.015625, 19.311143 ], [ -68.906250, 19.311143 ], [ -68.906250, 18.646245 ], [ -69.609375, 18.646245 ], [ -69.609375, 17.978733 ], [ -71.015625, 17.978733 ], [ -71.015625, 17.308688 ], [ -71.718750, 17.308688 ], [ -71.718750, 19.973349 ], [ -71.015625, 19.973349 ], [ -71.015625, 19.311143 ] ] ], [ [ [ -68.203125, 18.646245 ], [ -68.203125, 17.978733 ], [ -68.906250, 17.978733 ], [ -68.906250, 18.646245 ], [ -68.203125, 18.646245 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.906250, 18.646245 ], [ -69.609375, 18.646245 ], [ -69.609375, 17.978733 ], [ -71.015625, 17.978733 ], [ -71.015625, 17.308688 ], [ -71.718750, 17.308688 ], [ -71.718750, 19.973349 ], [ -71.015625, 19.973349 ], [ -71.015625, 19.311143 ], [ -68.906250, 19.311143 ], [ -68.906250, 18.646245 ] ] ], [ [ [ -68.906250, 18.646245 ], [ -68.203125, 18.646245 ], [ -68.203125, 17.978733 ], [ -68.906250, 17.978733 ], [ -68.906250, 18.646245 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -72.421875, 10.487812 ], [ -73.125000, 10.487812 ], [ -73.125000, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 6.315299 ], [ -67.500000, 6.315299 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -75.234375, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 9.795678 ], [ -75.234375, 9.795678 ], [ -75.234375, 11.178402 ], [ -72.421875, 11.178402 ], [ -72.421875, 10.487812 ] ] ], [ [ [ -72.421875, 11.867351 ], [ -71.718750, 11.867351 ], [ -71.718750, 11.178402 ], [ -72.421875, 11.178402 ], [ -72.421875, 11.867351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -72.421875, 11.178402 ], [ -72.421875, 10.487812 ], [ -73.125000, 10.487812 ], [ -73.125000, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 6.315299 ], [ -67.500000, 6.315299 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -74.531250, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 9.795678 ], [ -75.234375, 9.795678 ], [ -75.234375, 11.178402 ], [ -72.421875, 11.178402 ] ] ], [ [ [ -71.718750, 11.178402 ], [ -72.421875, 11.178402 ], [ -72.421875, 11.867351 ], [ -71.718750, 11.867351 ], [ -71.718750, 11.178402 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, 17.978733 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ], [ -66.093750, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, 18.646245 ], [ -66.093750, 17.978733 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.203125, 10.487812 ], [ -65.390625, 10.487812 ], [ -65.390625, 9.795678 ], [ -63.984375, 9.795678 ], [ -63.984375, 10.487812 ], [ -62.578125, 10.487812 ], [ -62.578125, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 9.102097 ], [ -61.171875, 9.102097 ], [ -61.171875, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 7.013668 ], [ -61.171875, 7.013668 ], [ -61.171875, 4.915833 ], [ -60.468750, 4.915833 ], [ -60.468750, 4.214943 ], [ -62.578125, 4.214943 ], [ -62.578125, 3.513421 ], [ -63.984375, 3.513421 ], [ -63.984375, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 0.703107 ], [ -66.796875, 0.703107 ], [ -66.796875, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 6.315299 ], [ -70.312500, 6.315299 ], [ -70.312500, 7.013668 ], [ -72.421875, 7.013668 ], [ -72.421875, 8.407168 ], [ -73.125000, 8.407168 ], [ -73.125000, 10.487812 ], [ -72.421875, 10.487812 ], [ -72.421875, 11.178402 ], [ -71.718750, 11.178402 ], [ -71.718750, 11.867351 ], [ -71.015625, 11.867351 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.867351 ], [ -69.609375, 11.867351 ], [ -69.609375, 11.178402 ], [ -68.203125, 11.178402 ], [ -68.203125, 10.487812 ] ], [ [ -72.421875, 9.795678 ], [ -72.421875, 9.102097 ], [ -71.015625, 9.102097 ], [ -71.015625, 10.487812 ], [ -71.718750, 10.487812 ], [ -71.718750, 9.795678 ], [ -72.421875, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 11.178402 ], [ -71.718750, 11.867351 ], [ -71.015625, 11.867351 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.867351 ], [ -69.609375, 11.867351 ], [ -69.609375, 11.178402 ], [ -68.203125, 11.178402 ], [ -68.203125, 10.487812 ], [ -65.390625, 10.487812 ], [ -65.390625, 9.795678 ], [ -63.984375, 9.795678 ], [ -63.984375, 10.487812 ], [ -62.578125, 10.487812 ], [ -62.578125, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 9.102097 ], [ -61.171875, 9.102097 ], [ -61.171875, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 7.013668 ], [ -61.171875, 7.013668 ], [ -61.171875, 4.915833 ], [ -60.468750, 4.915833 ], [ -60.468750, 4.214943 ], [ -62.578125, 4.214943 ], [ -62.578125, 3.513421 ], [ -63.984375, 3.513421 ], [ -63.984375, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 0.703107 ], [ -66.796875, 0.703107 ], [ -66.796875, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 6.315299 ], [ -70.312500, 6.315299 ], [ -70.312500, 7.013668 ], [ -72.421875, 7.013668 ], [ -72.421875, 8.407168 ], [ -73.125000, 8.407168 ], [ -73.125000, 10.487812 ], [ -72.421875, 10.487812 ], [ -72.421875, 11.178402 ], [ -71.718750, 11.178402 ] ], [ [ -71.718750, 10.487812 ], [ -71.718750, 9.795678 ], [ -72.421875, 9.795678 ], [ -72.421875, 9.102097 ], [ -71.015625, 9.102097 ], [ -71.015625, 10.487812 ], [ -71.718750, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 10.487812 ], [ -61.171875, 10.487812 ], [ -61.171875, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, 10.487812 ], [ -61.171875, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 10.487812 ], [ -61.171875, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, 6.315299 ], [ -56.953125, 6.315299 ], [ -56.953125, 5.615986 ], [ -57.656250, 5.615986 ], [ -57.656250, 4.214943 ], [ -58.359375, 4.214943 ], [ -58.359375, 3.513421 ], [ -56.953125, 3.513421 ], [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 4.915833 ], [ -61.171875, 4.915833 ], [ -61.171875, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.710992 ], [ -59.062500, 7.710992 ], [ -59.062500, 7.013668 ], [ -58.359375, 7.013668 ], [ -58.359375, 6.315299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 7.710992 ], [ -59.062500, 7.013668 ], [ -58.359375, 7.013668 ], [ -58.359375, 6.315299 ], [ -56.953125, 6.315299 ], [ -56.953125, 5.615986 ], [ -57.656250, 5.615986 ], [ -57.656250, 4.214943 ], [ -58.359375, 4.214943 ], [ -58.359375, 3.513421 ], [ -56.953125, 3.513421 ], [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 4.915833 ], [ -61.171875, 4.915833 ], [ -61.171875, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.710992 ], [ -59.062500, 7.710992 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 3.513421 ], [ -58.359375, 3.513421 ], [ -58.359375, 4.214943 ], [ -57.656250, 4.214943 ], [ -57.656250, 5.615986 ], [ -54.140625, 5.615986 ], [ -54.140625, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 5.615986 ], [ -54.140625, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 3.513421 ], [ -58.359375, 3.513421 ], [ -58.359375, 4.214943 ], [ -57.656250, 4.214943 ], [ -57.656250, 5.615986 ], [ -54.140625, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.093750, 65.658275 ], [ -19.687500, 65.658275 ], [ -19.687500, 65.946472 ], [ -16.875000, 65.946472 ], [ -16.875000, 66.231457 ], [ -16.171875, 66.231457 ], [ -16.171875, 66.513260 ], [ -14.765625, 66.513260 ], [ -14.765625, 65.658275 ], [ -14.062500, 65.658275 ], [ -14.062500, 65.072130 ], [ -13.359375, 65.072130 ], [ -13.359375, 64.774125 ], [ -14.062500, 64.774125 ], [ -14.062500, 64.472794 ], [ -14.765625, 64.472794 ], [ -14.765625, 64.168107 ], [ -15.468750, 64.168107 ], [ -15.468750, 63.860036 ], [ -16.875000, 63.860036 ], [ -16.875000, 63.548552 ], [ -21.796875, 63.548552 ], [ -21.796875, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -21.796875, 64.168107 ], [ -21.796875, 64.472794 ], [ -23.203125, 64.472794 ], [ -23.203125, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 65.658275 ], [ -24.609375, 65.658275 ], [ -24.609375, 65.946472 ], [ -23.906250, 65.946472 ], [ -23.906250, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.513260 ], [ -21.796875, 66.513260 ], [ -21.796875, 66.231457 ], [ -21.093750, 66.231457 ], [ -21.093750, 65.658275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.765625, 66.513260 ], [ -14.765625, 65.658275 ], [ -14.062500, 65.658275 ], [ -14.062500, 65.072130 ], [ -13.359375, 65.072130 ], [ -13.359375, 64.774125 ], [ -14.062500, 64.774125 ], [ -14.062500, 64.472794 ], [ -14.765625, 64.472794 ], [ -14.765625, 64.168107 ], [ -15.468750, 64.168107 ], [ -15.468750, 63.860036 ], [ -16.875000, 63.860036 ], [ -16.875000, 63.548552 ], [ -21.796875, 63.548552 ], [ -21.796875, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -21.796875, 64.168107 ], [ -21.796875, 64.472794 ], [ -23.203125, 64.472794 ], [ -23.203125, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 65.658275 ], [ -24.609375, 65.658275 ], [ -24.609375, 65.946472 ], [ -23.906250, 65.946472 ], [ -23.906250, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.513260 ], [ -21.796875, 66.513260 ], [ -21.796875, 66.231457 ], [ -21.093750, 66.231457 ], [ -21.093750, 65.658275 ], [ -19.687500, 65.658275 ], [ -19.687500, 65.946472 ], [ -16.875000, 65.946472 ], [ -16.875000, 66.231457 ], [ -16.171875, 66.231457 ], [ -16.171875, 66.513260 ], [ -14.765625, 66.513260 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 52.052490 ], [ -9.140625, 52.052490 ], [ -9.140625, 53.330873 ], [ -9.843750, 53.330873 ], [ -9.843750, 53.748711 ], [ -9.140625, 53.748711 ], [ -9.140625, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.572062 ], [ -7.031250, 54.572062 ], [ -7.031250, 53.748711 ], [ -6.328125, 53.748711 ], [ -6.328125, 52.482780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.572062 ], [ -7.031250, 54.162434 ], [ -6.328125, 53.748711 ], [ -6.328125, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 52.052490 ], [ -9.140625, 52.052490 ], [ -9.140625, 53.330873 ], [ -9.843750, 53.330873 ], [ -9.843750, 53.748711 ], [ -9.140625, 53.748711 ], [ -9.140625, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.572062 ], [ -7.031250, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.406250, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.289339 ], [ -4.218750, 50.289339 ], [ -4.218750, 49.837982 ], [ -5.625000, 49.837982 ], [ -5.625000, 50.289339 ], [ -4.921875, 50.289339 ], [ -4.921875, 50.736455 ], [ -4.218750, 50.736455 ], [ -4.218750, 51.179343 ], [ -3.515625, 51.179343 ], [ -3.515625, 51.618017 ], [ -4.921875, 51.618017 ], [ -4.921875, 52.052490 ], [ -4.218750, 52.052490 ], [ -4.218750, 52.482780 ], [ -4.921875, 52.482780 ], [ -4.921875, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 54.572062 ], [ -4.921875, 54.572062 ], [ -4.921875, 55.379110 ], [ -5.625000, 55.379110 ], [ -5.625000, 56.559482 ], [ -6.328125, 56.559482 ], [ -6.328125, 57.326521 ], [ -5.625000, 57.326521 ], [ -5.625000, 58.077876 ], [ -4.921875, 58.077876 ], [ -4.921875, 58.447733 ], [ -3.515625, 58.447733 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 56.170023 ], [ -2.812500, 56.170023 ], [ -2.812500, 55.776573 ], [ -2.109375, 55.776573 ], [ -2.109375, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ 0.703125, 51.618017 ], [ 0.703125, 51.179343 ], [ 1.406250, 51.179343 ], [ 1.406250, 50.736455 ] ] ], [ [ [ -5.625000, 54.572062 ], [ -5.625000, 54.162434 ], [ -6.328125, 54.162434 ], [ -6.328125, 53.748711 ], [ -7.031250, 53.748711 ], [ -7.031250, 54.572062 ], [ -5.625000, 54.572062 ] ] ], [ [ [ -7.734375, 54.572062 ], [ -7.734375, 54.977614 ], [ -7.031250, 54.977614 ], [ -7.031250, 54.572062 ], [ -7.734375, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.447733 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 56.170023 ], [ -2.812500, 56.170023 ], [ -2.812500, 55.776573 ], [ -2.109375, 55.776573 ], [ -2.109375, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ 0.703125, 51.618017 ], [ 0.703125, 51.179343 ], [ 1.406250, 51.179343 ], [ 1.406250, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.289339 ], [ -4.218750, 50.289339 ], [ -4.218750, 49.837982 ], [ -5.625000, 49.837982 ], [ -5.625000, 50.289339 ], [ -4.921875, 50.289339 ], [ -4.921875, 50.736455 ], [ -4.218750, 50.736455 ], [ -4.218750, 51.179343 ], [ -3.515625, 51.179343 ], [ -3.515625, 51.618017 ], [ -4.921875, 51.618017 ], [ -4.921875, 52.052490 ], [ -4.218750, 52.052490 ], [ -4.218750, 52.482780 ], [ -4.921875, 52.482780 ], [ -4.921875, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 54.572062 ], [ -4.921875, 54.572062 ], [ -4.921875, 55.379110 ], [ -5.625000, 55.379110 ], [ -5.625000, 56.559482 ], [ -6.328125, 56.559482 ], [ -6.328125, 57.326521 ], [ -5.625000, 57.326521 ], [ -5.625000, 58.077876 ], [ -4.921875, 58.077876 ], [ -4.921875, 58.447733 ], [ -3.515625, 58.447733 ] ] ], [ [ [ -7.031250, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.162434 ], [ -6.328125, 54.162434 ], [ -6.328125, 53.748711 ], [ -7.031250, 53.748711 ], [ -7.031250, 54.572062 ] ] ], [ [ [ -7.031250, 54.572062 ], [ -7.734375, 54.572062 ], [ -7.734375, 54.977614 ], [ -7.031250, 54.977614 ], [ -7.031250, 54.572062 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.734375, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 2.108899 ], [ -54.140625, 2.108899 ], [ -54.140625, 5.615986 ], [ -52.734375, 5.615986 ], [ -52.734375, 4.915833 ] ] ], [ [ [ 2.812500, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.553080 ], [ -1.406250, 42.553080 ], [ -1.406250, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -4.218750, 47.517201 ], [ -4.218750, 47.989922 ], [ -4.921875, 47.989922 ], [ -4.921875, 48.458352 ], [ -3.515625, 48.458352 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.458352 ], [ -1.406250, 48.458352 ], [ -1.406250, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ 0.000000, 49.382373 ], [ 0.000000, 49.837982 ], [ 1.406250, 49.837982 ], [ 1.406250, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.289339 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.734375, 5.615986 ], [ -52.734375, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 2.108899 ], [ -54.140625, 2.108899 ], [ -54.140625, 5.615986 ], [ -52.734375, 5.615986 ] ] ], [ [ [ 2.812500, 50.736455 ], [ 2.812500, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.553080 ], [ -1.406250, 42.553080 ], [ -1.406250, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -4.218750, 47.517201 ], [ -4.218750, 47.989922 ], [ -4.921875, 47.989922 ], [ -4.921875, 48.458352 ], [ -3.515625, 48.458352 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.458352 ], [ -1.406250, 48.458352 ], [ -1.406250, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ 0.000000, 49.382373 ], [ 0.000000, 49.837982 ], [ 1.406250, 49.837982 ], [ 1.406250, 50.736455 ], [ 2.812500, 50.736455 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.656250, 21.289374 ], [ -14.765625, 21.289374 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.885838 ], [ -12.656250, 23.885838 ], [ -12.656250, 25.165173 ], [ -11.953125, 25.165173 ], [ -11.953125, 23.241346 ], [ -12.656250, 23.241346 ], [ -12.656250, 22.593726 ], [ -13.359375, 22.593726 ], [ -13.359375, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 21.289374 ] ] ], [ [ [ -11.250000, 26.431228 ], [ -11.250000, 27.059126 ], [ -9.140625, 27.059126 ], [ -9.140625, 27.683528 ], [ -8.437500, 27.683528 ], [ -8.437500, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.431228 ], [ -11.250000, 26.431228 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.165173 ], [ -11.953125, 23.241346 ], [ -12.656250, 23.241346 ], [ -12.656250, 22.593726 ], [ -13.359375, 22.593726 ], [ -13.359375, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 21.289374 ], [ -14.765625, 21.289374 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.885838 ], [ -12.656250, 23.885838 ], [ -12.656250, 25.165173 ], [ -11.953125, 25.165173 ] ] ], [ [ [ -8.437500, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.431228 ], [ -11.250000, 26.431228 ], [ -11.250000, 27.059126 ], [ -9.140625, 27.059126 ], [ -9.140625, 27.683528 ], [ -8.437500, 27.683528 ], [ -8.437500, 25.799891 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 37.160317 ], [ -7.734375, 37.160317 ], [ -7.734375, 36.597889 ], [ -9.140625, 36.597889 ], [ -9.140625, 37.160317 ], [ -8.437500, 37.160317 ], [ -8.437500, 37.718590 ], [ -9.140625, 37.718590 ], [ -9.140625, 38.272689 ], [ -9.843750, 38.272689 ], [ -9.843750, 38.822591 ], [ -9.140625, 38.822591 ], [ -9.140625, 40.446947 ], [ -8.437500, 40.446947 ], [ -8.437500, 40.979898 ], [ -9.140625, 40.979898 ], [ -9.140625, 42.032974 ], [ -6.328125, 42.032974 ], [ -6.328125, 40.979898 ], [ -7.031250, 40.979898 ], [ -7.031250, 39.368279 ], [ -7.734375, 39.368279 ], [ -7.734375, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 42.032974 ], [ -6.328125, 40.979898 ], [ -7.031250, 40.979898 ], [ -7.031250, 39.368279 ], [ -7.734375, 39.368279 ], [ -7.734375, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 37.160317 ], [ -7.734375, 37.160317 ], [ -7.734375, 36.597889 ], [ -9.140625, 36.597889 ], [ -9.140625, 37.160317 ], [ -8.437500, 37.160317 ], [ -8.437500, 37.718590 ], [ -9.140625, 37.718590 ], [ -9.140625, 38.272689 ], [ -9.843750, 38.272689 ], [ -9.843750, 38.822591 ], [ -9.140625, 38.822591 ], [ -9.140625, 40.446947 ], [ -8.437500, 40.446947 ], [ -8.437500, 40.979898 ], [ -9.140625, 40.979898 ], [ -9.140625, 42.032974 ], [ -6.328125, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 38.272689 ], [ -0.703125, 38.272689 ], [ -0.703125, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 37.160317 ], [ -2.109375, 37.160317 ], [ -2.109375, 36.597889 ], [ -4.921875, 36.597889 ], [ -4.921875, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 37.160317 ], [ -7.031250, 37.160317 ], [ -7.031250, 38.822591 ], [ -7.734375, 38.822591 ], [ -7.734375, 39.368279 ], [ -7.031250, 39.368279 ], [ -7.031250, 40.979898 ], [ -6.328125, 40.979898 ], [ -6.328125, 42.032974 ], [ -9.140625, 42.032974 ], [ -9.140625, 43.068888 ], [ -7.734375, 43.068888 ], [ -7.734375, 43.580391 ], [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 38.272689 ], [ -0.703125, 38.272689 ], [ -0.703125, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 37.160317 ], [ -2.109375, 37.160317 ], [ -2.109375, 36.597889 ], [ -4.921875, 36.597889 ], [ -4.921875, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 37.160317 ], [ -7.031250, 37.160317 ], [ -7.031250, 38.822591 ], [ -7.734375, 38.822591 ], [ -7.734375, 39.368279 ], [ -7.031250, 39.368279 ], [ -7.031250, 40.979898 ], [ -6.328125, 40.979898 ], [ -6.328125, 42.032974 ], [ -9.140625, 42.032974 ], [ -9.140625, 43.068888 ], [ -7.734375, 43.068888 ], [ -7.734375, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 31.353637 ], [ -3.515625, 31.353637 ], [ -3.515625, 30.751278 ], [ -4.921875, 30.751278 ], [ -4.921875, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 27.683528 ], [ -9.140625, 27.683528 ], [ -9.140625, 27.059126 ], [ -11.250000, 27.059126 ], [ -11.250000, 26.431228 ], [ -11.953125, 26.431228 ], [ -11.953125, 25.165173 ], [ -12.656250, 25.165173 ], [ -12.656250, 23.885838 ], [ -14.062500, 23.885838 ], [ -14.062500, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.943046 ], [ -16.171875, 21.943046 ], [ -16.171875, 23.885838 ], [ -15.468750, 23.885838 ], [ -15.468750, 24.527135 ], [ -14.765625, 24.527135 ], [ -14.765625, 26.431228 ], [ -14.062500, 26.431228 ], [ -14.062500, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.683528 ], [ -12.656250, 27.683528 ], [ -12.656250, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 31.353637 ], [ -9.140625, 31.353637 ], [ -9.140625, 32.546813 ], [ -8.437500, 32.546813 ], [ -8.437500, 33.137551 ], [ -7.734375, 33.137551 ], [ -7.734375, 33.724340 ], [ -7.031250, 33.724340 ], [ -7.031250, 34.307144 ], [ -6.328125, 34.307144 ], [ -6.328125, 35.460670 ], [ -5.625000, 35.460670 ], [ -5.625000, 36.031332 ], [ -4.921875, 36.031332 ], [ -4.921875, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 36.031332 ], [ -4.921875, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 31.353637 ], [ -3.515625, 31.353637 ], [ -3.515625, 30.751278 ], [ -4.921875, 30.751278 ], [ -4.921875, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 27.683528 ], [ -9.140625, 27.683528 ], [ -9.140625, 27.059126 ], [ -11.250000, 27.059126 ], [ -11.250000, 26.431228 ], [ -11.953125, 26.431228 ], [ -11.953125, 25.165173 ], [ -12.656250, 25.165173 ], [ -12.656250, 23.885838 ], [ -14.062500, 23.885838 ], [ -14.062500, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.943046 ], [ -16.171875, 21.943046 ], [ -16.171875, 23.885838 ], [ -15.468750, 23.885838 ], [ -15.468750, 24.527135 ], [ -14.765625, 24.527135 ], [ -14.765625, 26.431228 ], [ -14.062500, 26.431228 ], [ -14.062500, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.683528 ], [ -12.656250, 27.683528 ], [ -12.656250, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 31.353637 ], [ -9.140625, 31.353637 ], [ -9.140625, 32.546813 ], [ -8.437500, 32.546813 ], [ -8.437500, 33.137551 ], [ -7.734375, 33.137551 ], [ -7.734375, 33.724340 ], [ -7.031250, 33.724340 ], [ -7.031250, 34.307144 ], [ -6.328125, 34.307144 ], [ -6.328125, 35.460670 ], [ -5.625000, 35.460670 ], [ -5.625000, 36.031332 ], [ -4.921875, 36.031332 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.656250, 14.604847 ], [ -11.953125, 14.604847 ], [ -11.953125, 13.239945 ], [ -11.250000, 13.239945 ], [ -11.250000, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -14.062500, 13.239945 ], [ -14.062500, 13.923404 ], [ -16.875000, 13.923404 ], [ -16.875000, 15.284185 ], [ -16.171875, 15.284185 ], [ -16.171875, 16.636192 ], [ -14.062500, 16.636192 ], [ -14.062500, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 16.636192 ], [ -14.062500, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 14.604847 ], [ -11.953125, 14.604847 ], [ -11.953125, 13.239945 ], [ -11.250000, 13.239945 ], [ -11.250000, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -14.062500, 13.239945 ], [ -14.062500, 13.923404 ], [ -16.875000, 13.923404 ], [ -16.875000, 15.284185 ], [ -16.171875, 15.284185 ], [ -16.171875, 16.636192 ], [ -14.062500, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.923404 ], [ -14.062500, 13.923404 ], [ -14.062500, 13.239945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 13.923404 ], [ -14.062500, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.923404 ], [ -14.062500, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 11.178402 ], [ -16.171875, 11.178402 ], [ -16.171875, 11.867351 ], [ -16.875000, 11.867351 ], [ -16.875000, 12.554564 ], [ -14.062500, 12.554564 ], [ -14.062500, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 12.554564 ], [ -14.062500, 11.178402 ], [ -16.171875, 11.178402 ], [ -16.171875, 11.867351 ], [ -16.875000, 11.867351 ], [ -16.875000, 12.554564 ], [ -14.062500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 11.867351 ], [ -8.437500, 11.867351 ], [ -8.437500, 10.487812 ], [ -7.734375, 10.487812 ], [ -7.734375, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 9.102097 ], [ -7.734375, 9.102097 ], [ -7.734375, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 7.013668 ], [ -9.140625, 7.013668 ], [ -9.140625, 7.710992 ], [ -9.843750, 7.710992 ], [ -9.843750, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 9.102097 ], [ -13.359375, 9.102097 ], [ -13.359375, 9.795678 ], [ -14.765625, 9.795678 ], [ -14.765625, 11.178402 ], [ -14.062500, 11.178402 ], [ -14.062500, 12.554564 ], [ -11.250000, 12.554564 ], [ -11.250000, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 12.554564 ], [ -11.250000, 11.867351 ], [ -8.437500, 11.867351 ], [ -8.437500, 10.487812 ], [ -7.734375, 10.487812 ], [ -7.734375, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 9.102097 ], [ -7.734375, 9.102097 ], [ -7.734375, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 7.013668 ], [ -9.140625, 7.013668 ], [ -9.140625, 7.710992 ], [ -9.843750, 7.710992 ], [ -9.843750, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 9.102097 ], [ -13.359375, 9.102097 ], [ -13.359375, 9.795678 ], [ -14.765625, 9.795678 ], [ -14.765625, 11.178402 ], [ -14.062500, 11.178402 ], [ -14.062500, 12.554564 ], [ -11.250000, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.546875, 7.710992 ], [ -11.250000, 7.710992 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 7.710992 ], [ -13.359375, 7.710992 ], [ -13.359375, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.795678 ], [ -10.546875, 9.795678 ], [ -10.546875, 7.710992 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.546875, 9.795678 ], [ -10.546875, 7.710992 ], [ -11.250000, 7.710992 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 7.710992 ], [ -13.359375, 7.710992 ], [ -13.359375, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.795678 ], [ -10.546875, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -16.171875, 19.973349 ], [ -16.875000, 19.973349 ], [ -16.875000, 21.289374 ], [ -12.656250, 21.289374 ], [ -12.656250, 21.943046 ], [ -13.359375, 21.943046 ], [ -13.359375, 22.593726 ], [ -12.656250, 22.593726 ], [ -12.656250, 23.241346 ], [ -11.953125, 23.241346 ], [ -11.953125, 25.799891 ], [ -8.437500, 25.799891 ], [ -8.437500, 27.059126 ], [ -7.734375, 27.059126 ], [ -7.734375, 26.431228 ], [ -6.328125, 26.431228 ], [ -6.328125, 25.799891 ], [ -5.625000, 25.799891 ], [ -5.625000, 25.165173 ], [ -6.328125, 25.165173 ], [ -6.328125, 22.593726 ], [ -5.625000, 22.593726 ], [ -5.625000, 15.284185 ], [ -11.953125, 15.284185 ], [ -11.953125, 14.604847 ], [ -12.656250, 14.604847 ], [ -12.656250, 15.284185 ], [ -13.359375, 15.284185 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.636192 ], [ -16.171875, 16.636192 ], [ -16.171875, 19.973349 ] ] ], [ [ [ -16.171875, 15.961329 ], [ -16.875000, 15.961329 ], [ -16.875000, 16.636192 ], [ -16.171875, 16.636192 ], [ -16.171875, 15.961329 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.734375, 27.059126 ], [ -7.734375, 26.431228 ], [ -6.328125, 26.431228 ], [ -6.328125, 25.799891 ], [ -5.625000, 25.799891 ], [ -5.625000, 25.165173 ], [ -6.328125, 25.165173 ], [ -6.328125, 22.593726 ], [ -5.625000, 22.593726 ], [ -5.625000, 15.284185 ], [ -11.953125, 15.284185 ], [ -11.953125, 14.604847 ], [ -12.656250, 14.604847 ], [ -12.656250, 15.284185 ], [ -13.359375, 15.284185 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.636192 ], [ -16.171875, 16.636192 ], [ -16.171875, 19.973349 ], [ -16.875000, 19.973349 ], [ -16.875000, 21.289374 ], [ -12.656250, 21.289374 ], [ -12.656250, 21.943046 ], [ -13.359375, 21.943046 ], [ -13.359375, 22.593726 ], [ -12.656250, 22.593726 ], [ -12.656250, 23.241346 ], [ -11.953125, 23.241346 ], [ -11.953125, 25.799891 ], [ -8.437500, 25.799891 ], [ -8.437500, 27.059126 ], [ -7.734375, 27.059126 ] ] ], [ [ [ -16.171875, 16.636192 ], [ -16.171875, 15.961329 ], [ -16.875000, 15.961329 ], [ -16.875000, 16.636192 ], [ -16.171875, 16.636192 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 23.885838 ], [ -2.812500, 23.885838 ], [ -2.812500, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.632784 ], [ 2.109375, 20.632784 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 3.515625, 19.311143 ], [ 3.515625, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.604847 ], [ -0.703125, 14.604847 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -7.734375, 9.795678 ], [ -7.734375, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 11.867351 ], [ -11.250000, 11.867351 ], [ -11.250000, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 22.593726 ], [ -6.328125, 22.593726 ], [ -6.328125, 25.165173 ], [ -4.921875, 25.165173 ], [ -4.921875, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.165173 ], [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 23.885838 ], [ -2.812500, 23.885838 ], [ -2.812500, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.632784 ], [ 2.109375, 20.632784 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 3.515625, 19.311143 ], [ 3.515625, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.604847 ], [ -0.703125, 14.604847 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -7.734375, 9.795678 ], [ -7.734375, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 11.867351 ], [ -11.250000, 11.867351 ], [ -11.250000, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 22.593726 ], [ -6.328125, 22.593726 ], [ -6.328125, 25.165173 ], [ -4.921875, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -4.921875, 11.178402 ], [ -4.921875, 11.867351 ], [ -4.218750, 11.867351 ], [ -4.218750, 13.239945 ], [ -2.812500, 13.239945 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ], [ -0.703125, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -4.921875, 11.178402 ], [ -4.921875, 11.867351 ], [ -4.218750, 11.867351 ], [ -4.218750, 13.239945 ], [ -2.812500, 13.239945 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.140625, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 6.315299 ], [ -7.734375, 6.315299 ], [ -7.734375, 4.214943 ], [ -9.140625, 4.214943 ], [ -9.140625, 4.915833 ], [ -9.843750, 4.915833 ], [ -9.843750, 5.615986 ], [ -10.546875, 5.615986 ], [ -10.546875, 6.315299 ], [ -11.250000, 6.315299 ], [ -11.250000, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.407168 ], [ -9.843750, 8.407168 ], [ -9.843750, 7.710992 ], [ -9.140625, 7.710992 ], [ -9.140625, 7.013668 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 7.710992 ], [ -9.140625, 7.710992 ], [ -9.140625, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 6.315299 ], [ -7.734375, 6.315299 ], [ -7.734375, 4.214943 ], [ -9.140625, 4.214943 ], [ -9.140625, 4.915833 ], [ -9.843750, 4.915833 ], [ -9.843750, 5.615986 ], [ -10.546875, 5.615986 ], [ -10.546875, 6.315299 ], [ -11.250000, 6.315299 ], [ -11.250000, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -6.328125, 4.915833 ], [ -6.328125, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 9.102097 ], [ -8.437500, 9.102097 ], [ -8.437500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 10.487812 ], [ -4.921875, 10.487812 ], [ -4.921875, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 7.013668 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 10.487812 ], [ -4.921875, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 6.315299 ], [ -2.812500, 4.915833 ], [ -6.328125, 4.915833 ], [ -6.328125, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 9.102097 ], [ -8.437500, 9.102097 ], [ -8.437500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 10.487812 ], [ -4.921875, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.515625, 5.615986 ], [ -3.515625, 7.013668 ], [ -2.812500, 7.013668 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.515625, 5.615986 ], [ -3.515625, 7.013668 ], [ -2.812500, 7.013668 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -79.453125, -3.513421 ], [ -79.453125, -2.811371 ], [ -80.859375, -2.811371 ], [ -80.859375, -0.703107 ], [ -80.156250, -0.703107 ], [ -80.156250, 0.703107 ], [ -77.343750, 0.703107 ], [ -77.343750, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 0.703107 ], [ -77.343750, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -79.453125, -3.513421 ], [ -79.453125, -2.811371 ], [ -80.859375, -2.811371 ], [ -80.859375, -0.703107 ], [ -80.156250, -0.703107 ], [ -80.156250, 0.703107 ], [ -77.343750, 0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, -2.108899 ], [ -75.234375, -2.108899 ], [ -75.234375, -0.703107 ], [ -73.828125, -0.703107 ], [ -73.828125, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -0.703107 ], [ -73.828125, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, -2.108899 ], [ -75.234375, -2.108899 ], [ -75.234375, -0.703107 ], [ -73.828125, -0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625000, 1.406109 ], [ -49.921875, 1.406109 ], [ -49.921875, 0.000000 ], [ -48.515625, 0.000000 ], [ -48.515625, -1.406109 ], [ -47.812500, -1.406109 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.811371 ], [ -43.593750, -2.811371 ], [ -43.593750, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -69.609375, -3.513421 ], [ -69.609375, -0.703107 ], [ -70.312500, -0.703107 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 4.214943 ], [ -63.984375, 4.214943 ], [ -63.984375, 3.513421 ], [ -62.578125, 3.513421 ], [ -62.578125, 4.214943 ], [ -60.468750, 4.214943 ], [ -60.468750, 4.915833 ], [ -59.765625, 4.915833 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 3.513421 ], [ -51.328125, 3.513421 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 4.915833 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 3.513421 ], [ -51.328125, 3.513421 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 1.406109 ], [ -49.921875, 1.406109 ], [ -49.921875, 0.000000 ], [ -48.515625, 0.000000 ], [ -48.515625, -1.406109 ], [ -47.812500, -1.406109 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.811371 ], [ -43.593750, -2.811371 ], [ -43.593750, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -69.609375, -3.513421 ], [ -69.609375, -0.703107 ], [ -70.312500, -0.703107 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 4.214943 ], [ -63.984375, 4.214943 ], [ -63.984375, 3.513421 ], [ -62.578125, 3.513421 ], [ -62.578125, 4.214943 ], [ -60.468750, 4.214943 ], [ -60.468750, 4.915833 ], [ -59.765625, 4.915833 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.296875, 68.656555 ], [ -179.296875, 68.399180 ], [ -178.593750, 68.399180 ], [ -178.593750, 68.138852 ], [ -177.890625, 68.138852 ], [ -177.890625, 67.875541 ], [ -177.187500, 67.875541 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.339861 ], [ -175.078125, 67.339861 ], [ -175.078125, 66.231457 ], [ -174.375000, 66.231457 ], [ -174.375000, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 65.946472 ], [ -170.156250, 65.946472 ], [ -170.156250, 65.658275 ], [ -170.859375, 65.658275 ], [ -170.859375, 65.366837 ], [ -172.265625, 65.366837 ], [ -172.265625, 64.168107 ], [ -173.671875, 64.168107 ], [ -173.671875, 64.472794 ], [ -174.375000, 64.472794 ], [ -174.375000, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 65.072130 ], [ -176.484375, 65.072130 ], [ -176.484375, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 68.656555 ], [ -179.296875, 68.656555 ] ] ], [ [ [ -179.296875, 71.300793 ], [ -177.890625, 71.300793 ], [ -177.890625, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.296875, 71.524909 ], [ -179.296875, 71.300793 ] ] ], [ [ [ -179.296875, 65.658275 ], [ -179.296875, 65.072130 ], [ -180.000000, 65.072130 ], [ -180.000000, 65.658275 ], [ -179.296875, 65.658275 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.296875, 68.656555 ], [ -179.296875, 68.399180 ], [ -178.593750, 68.399180 ], [ -178.593750, 68.138852 ], [ -177.890625, 68.138852 ], [ -177.890625, 67.875541 ], [ -177.187500, 67.875541 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.339861 ], [ -175.078125, 67.339861 ], [ -175.078125, 66.231457 ], [ -174.375000, 66.231457 ], [ -174.375000, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 65.946472 ], [ -170.156250, 65.946472 ], [ -170.156250, 65.658275 ], [ -170.859375, 65.658275 ], [ -170.859375, 65.366837 ], [ -172.265625, 65.366837 ], [ -172.265625, 64.168107 ], [ -173.671875, 64.168107 ], [ -173.671875, 64.472794 ], [ -174.375000, 64.472794 ], [ -174.375000, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 65.072130 ], [ -176.484375, 65.072130 ], [ -176.484375, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 68.656555 ], [ -179.296875, 68.656555 ] ] ], [ [ [ -180.000000, 65.658275 ], [ -179.296875, 65.658275 ], [ -179.296875, 65.072130 ], [ -180.000000, 65.072130 ], [ -180.000000, 65.658275 ] ] ], [ [ [ -179.296875, 71.524909 ], [ -179.296875, 71.300793 ], [ -177.890625, 71.300793 ], [ -177.890625, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.296875, 71.524909 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 50.289339 ], [ 2.812500, 50.289339 ], [ 2.812500, 51.179343 ], [ 3.515625, 51.179343 ], [ 3.515625, 50.289339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.179343 ], [ 3.515625, 50.289339 ], [ 2.812500, 50.289339 ], [ 2.812500, 51.179343 ], [ 3.515625, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -2.812500, 23.241346 ], [ -2.812500, 23.885838 ], [ -4.218750, 23.885838 ], [ -4.218750, 24.527135 ], [ -4.921875, 24.527135 ], [ -4.921875, 25.165173 ], [ -5.625000, 25.165173 ], [ -5.625000, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 26.431228 ], [ -7.734375, 26.431228 ], [ -7.734375, 27.059126 ], [ -8.437500, 27.059126 ], [ -8.437500, 28.921631 ], [ -7.031250, 28.921631 ], [ -7.031250, 29.535230 ], [ -4.921875, 29.535230 ], [ -4.921875, 30.751278 ], [ -3.515625, 30.751278 ], [ -3.515625, 31.353637 ], [ -2.812500, 31.353637 ], [ -2.812500, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -1.406250, 34.885931 ], [ -1.406250, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.031332 ], [ 1.406250, 36.031332 ], [ 1.406250, 36.597889 ], [ 3.515625, 36.597889 ], [ 3.515625, 19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.597889 ], [ 3.515625, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -2.812500, 23.241346 ], [ -2.812500, 23.885838 ], [ -4.218750, 23.885838 ], [ -4.218750, 24.527135 ], [ -4.921875, 24.527135 ], [ -4.921875, 25.165173 ], [ -5.625000, 25.165173 ], [ -5.625000, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 26.431228 ], [ -7.734375, 26.431228 ], [ -7.734375, 27.059126 ], [ -8.437500, 27.059126 ], [ -8.437500, 28.921631 ], [ -7.031250, 28.921631 ], [ -7.031250, 29.535230 ], [ -4.921875, 29.535230 ], [ -4.921875, 30.751278 ], [ -3.515625, 30.751278 ], [ -3.515625, 31.353637 ], [ -2.812500, 31.353637 ], [ -2.812500, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -1.406250, 34.885931 ], [ -1.406250, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.031332 ], [ 1.406250, 36.031332 ], [ 1.406250, 36.597889 ], [ 3.515625, 36.597889 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 0.703125, 12.554564 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 14.604847 ], [ 0.703125, 14.604847 ], [ 0.703125, 15.284185 ], [ 3.515625, 15.284185 ], [ 3.515625, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.284185 ], [ 3.515625, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 0.703125, 12.554564 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 14.604847 ], [ 0.703125, 14.604847 ], [ 0.703125, 15.284185 ], [ 3.515625, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 5.615986 ], [ 0.703125, 5.615986 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ] ] ], [ [ [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 0.000000, 10.487812 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 5.615986 ], [ 0.703125, 5.615986 ], [ 0.703125, 10.487812 ] ] ], [ [ [ 0.703125, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.867351 ], [ 3.515625, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 3.515625, 11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.515625, 9.102097 ], [ 3.515625, 6.315299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.102097 ], [ 3.515625, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.515625, 9.102097 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.953125, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -68.138852 ], [ 63.281250, -68.138852 ], [ 63.281250, -67.609221 ], [ 66.093750, -67.609221 ], [ 66.093750, -67.875541 ], [ 68.906250, -67.875541 ], [ 68.906250, -68.399180 ], [ 69.609375, -68.399180 ], [ 69.609375, -69.900118 ], [ 68.906250, -69.900118 ], [ 68.906250, -70.140364 ], [ 68.203125, -70.140364 ], [ 68.203125, -70.377854 ], [ 67.500000, -70.377854 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -71.300793 ], [ 68.203125, -71.300793 ], [ 68.203125, -71.965388 ], [ 68.906250, -71.965388 ], [ 68.906250, -72.181804 ], [ 71.015625, -72.181804 ], [ 71.015625, -71.965388 ], [ 71.718750, -71.965388 ], [ 71.718750, -71.300793 ], [ 72.421875, -71.300793 ], [ 72.421875, -70.844673 ], [ 73.125000, -70.844673 ], [ 73.125000, -70.140364 ], [ 73.828125, -70.140364 ], [ 73.828125, -69.900118 ], [ 74.531250, -69.900118 ], [ 74.531250, -69.657086 ], [ 77.343750, -69.657086 ], [ 77.343750, -69.411242 ], [ 78.046875, -69.411242 ], [ 78.046875, -68.911005 ], [ 78.750000, -68.911005 ], [ 78.750000, -68.656555 ], [ 79.453125, -68.656555 ], [ 79.453125, -68.399180 ], [ 80.156250, -68.399180 ], [ 80.156250, -68.138852 ], [ 80.859375, -68.138852 ], [ 80.859375, -67.875541 ], [ 81.562500, -67.875541 ], [ 81.562500, -67.609221 ], [ 82.265625, -67.609221 ], [ 82.265625, -67.339861 ], [ 85.781250, -67.339861 ], [ 85.781250, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 90.000000, -67.067433 ], [ 90.000000, -67.339861 ], [ 91.406250, -67.339861 ], [ 91.406250, -67.067433 ], [ 92.812500, -67.067433 ], [ 92.812500, -67.339861 ], [ 94.218750, -67.339861 ], [ 94.218750, -67.067433 ], [ 94.921875, -67.067433 ], [ 94.921875, -67.339861 ], [ 99.843750, -67.339861 ], [ 99.843750, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.300793 ], [ -0.703125, -71.300793 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 2.109375, -71.300793 ], [ 2.109375, -71.074056 ], [ 4.218750, -71.074056 ], [ 4.218750, -70.844673 ], [ 4.921875, -70.844673 ], [ 4.921875, -70.612614 ], [ 6.328125, -70.612614 ], [ 6.328125, -70.377854 ], [ 7.031250, -70.377854 ], [ 7.031250, -70.140364 ], [ 10.546875, -70.140364 ], [ 10.546875, -70.844673 ], [ 11.953125, -70.844673 ], [ 11.953125, -70.377854 ], [ 12.656250, -70.377854 ], [ 12.656250, -70.140364 ], [ 14.765625, -70.140364 ], [ 14.765625, -70.377854 ], [ 16.171875, -70.377854 ], [ 16.171875, -70.140364 ], [ 16.875000, -70.140364 ], [ 16.875000, -69.900118 ], [ 20.390625, -69.900118 ], [ 20.390625, -70.140364 ], [ 21.796875, -70.140364 ], [ 21.796875, -70.612614 ], [ 24.609375, -70.612614 ], [ 24.609375, -70.377854 ], [ 28.828125, -70.377854 ], [ 28.828125, -70.140364 ], [ 30.234375, -70.140364 ], [ 30.234375, -69.900118 ], [ 30.937500, -69.900118 ], [ 30.937500, -69.657086 ], [ 33.046875, -69.657086 ], [ 33.046875, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.411242 ], [ 37.968750, -69.411242 ], [ 37.968750, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.411242 ], [ 40.078125, -69.411242 ], [ 40.078125, -69.162558 ], [ 40.781250, -69.162558 ], [ 40.781250, -68.911005 ], [ 42.187500, -68.911005 ], [ 42.187500, -68.656555 ], [ 42.890625, -68.656555 ], [ 42.890625, -68.399180 ], [ 44.296875, -68.399180 ], [ 44.296875, -68.138852 ], [ 45.703125, -68.138852 ], [ 45.703125, -67.875541 ], [ 46.406250, -67.875541 ], [ 46.406250, -67.609221 ], [ 48.515625, -67.609221 ], [ 48.515625, -67.339861 ], [ 49.218750, -67.339861 ], [ 49.218750, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 52.031250, -66.513260 ], [ 52.031250, -66.231457 ], [ 52.734375, -66.231457 ], [ 52.734375, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.231457 ], [ 56.953125, -66.231457 ], [ 56.953125, -67.067433 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.546875, -70.140364 ], [ 10.546875, -70.844673 ], [ 4.218750, -71.074056 ], [ 4.218750, -70.844673 ], [ 4.921875, -70.844673 ], [ 4.921875, -70.612614 ], [ 6.328125, -70.612614 ], [ 6.328125, -70.377854 ], [ 7.031250, -70.377854 ], [ 7.031250, -70.140364 ], [ 10.546875, -70.140364 ] ] ], [ [ [ 20.390625, -69.900118 ], [ 20.390625, -70.140364 ], [ 21.796875, -70.140364 ], [ 21.796875, -70.377854 ], [ 11.953125, -70.844673 ], [ 11.953125, -70.377854 ], [ 12.656250, -70.377854 ], [ 12.656250, -70.140364 ], [ 14.765625, -70.140364 ], [ 14.765625, -70.377854 ], [ 16.171875, -70.377854 ], [ 16.171875, -70.140364 ], [ 16.875000, -70.140364 ], [ 16.875000, -69.900118 ], [ 20.390625, -69.900118 ] ] ], [ [ [ 39.375000, -69.657086 ], [ 39.375000, -69.411242 ], [ 40.078125, -69.411242 ], [ 40.078125, -69.162558 ], [ 40.781250, -69.162558 ], [ 40.781250, -68.911005 ], [ 42.187500, -68.911005 ], [ 42.187500, -68.656555 ], [ 42.890625, -68.656555 ], [ 42.890625, -68.399180 ], [ 44.296875, -68.399180 ], [ 44.296875, -68.138852 ], [ 45.703125, -68.138852 ], [ 45.703125, -67.875541 ], [ 46.406250, -67.875541 ], [ 46.406250, -67.609221 ], [ 48.515625, -67.609221 ], [ 48.515625, -67.339861 ], [ 49.218750, -67.339861 ], [ 49.218750, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 52.031250, -66.513260 ], [ 52.031250, -66.231457 ], [ 52.734375, -66.231457 ], [ 52.734375, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.231457 ], [ 56.953125, -66.231457 ], [ 56.953125, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -68.138852 ], [ 63.281250, -68.138852 ], [ 63.281250, -67.609221 ], [ 66.093750, -67.609221 ], [ 66.093750, -67.875541 ], [ 68.906250, -67.875541 ], [ 68.906250, -68.399180 ], [ 69.609375, -68.399180 ], [ 69.609375, -68.656555 ], [ 39.375000, -69.657086 ] ] ], [ [ [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 90.000000, -67.067433 ], [ 90.000000, -67.339861 ], [ 91.406250, -67.339861 ], [ 91.406250, -67.067433 ], [ 92.812500, -67.067433 ], [ 92.812500, -67.339861 ], [ 94.218750, -67.339861 ], [ 94.218750, -67.067433 ], [ 94.921875, -67.067433 ], [ 94.921875, -67.339861 ], [ 99.843750, -67.339861 ], [ 80.859375, -68.138852 ], [ 80.859375, -67.875541 ], [ 81.562500, -67.875541 ], [ 81.562500, -67.609221 ], [ 82.265625, -67.609221 ], [ 82.265625, -67.339861 ], [ 85.781250, -67.339861 ], [ 85.781250, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ] ] ], [ [ [ 39.375000, -69.657086 ], [ 30.234375, -70.140364 ], [ 30.234375, -69.900118 ], [ 30.937500, -69.900118 ], [ 30.937500, -69.657086 ], [ 33.046875, -69.657086 ], [ 33.046875, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.411242 ], [ 37.968750, -69.411242 ], [ 37.968750, -69.657086 ], [ 39.375000, -69.657086 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.062500, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -67.067433 ], [ 108.984375, -67.067433 ], [ 108.984375, -66.791909 ], [ 111.093750, -66.791909 ], [ 111.093750, -66.513260 ], [ 111.796875, -66.513260 ], [ 111.796875, -66.231457 ], [ 113.906250, -66.231457 ], [ 113.906250, -65.946472 ], [ 114.609375, -65.946472 ], [ 114.609375, -66.791909 ], [ 117.421875, -66.791909 ], [ 117.421875, -67.067433 ], [ 118.828125, -67.067433 ], [ 118.828125, -67.339861 ], [ 120.937500, -67.339861 ], [ 120.937500, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.791909 ], [ 122.343750, -66.791909 ], [ 122.343750, -66.513260 ], [ 124.453125, -66.513260 ], [ 124.453125, -66.791909 ], [ 125.859375, -66.791909 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.791909 ], [ 129.375000, -66.791909 ], [ 129.375000, -66.513260 ], [ 133.593750, -66.513260 ], [ 133.593750, -66.231457 ], [ 135.000000, -66.231457 ], [ 135.000000, -65.658275 ], [ 135.703125, -65.658275 ], [ 135.703125, -66.231457 ], [ 136.406250, -66.231457 ], [ 136.406250, -67.067433 ], [ 138.515625, -67.067433 ], [ 138.515625, -66.791909 ], [ 145.546875, -66.791909 ], [ 145.546875, -67.067433 ], [ 146.250000, -67.067433 ], [ 146.250000, -67.875541 ], [ 146.953125, -67.875541 ], [ 146.953125, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.656555 ], [ 151.171875, -68.656555 ], [ 151.171875, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.411242 ], [ 158.203125, -69.411242 ], [ 158.203125, -69.657086 ], [ 158.906250, -69.657086 ], [ 158.906250, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.140364 ], [ 161.015625, -70.140364 ], [ 161.015625, -70.377854 ], [ 161.718750, -70.377854 ], [ 161.718750, -70.844673 ], [ 167.343750, -70.844673 ], [ 167.343750, -71.074056 ], [ 168.750000, -71.074056 ], [ 168.750000, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -72.607120 ], [ 170.156250, -72.607120 ], [ 170.156250, -73.022592 ], [ 169.453125, -73.022592 ], [ 169.453125, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -74.019543 ], [ 167.343750, -74.019543 ], [ 167.343750, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -74.959392 ], [ 165.234375, -74.959392 ], [ 165.234375, -75.320025 ], [ 164.531250, -75.320025 ], [ 164.531250, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -76.516819 ], [ 163.125000, -76.516819 ], [ 163.125000, -76.840816 ], [ 163.828125, -76.840816 ], [ 163.828125, -77.617709 ], [ 164.531250, -77.617709 ], [ 164.531250, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.349411 ], [ 166.640625, -78.349411 ], [ 166.640625, -78.630006 ], [ 167.343750, -78.630006 ], [ 167.343750, -78.767792 ], [ 166.640625, -78.767792 ], [ 166.640625, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -79.038437 ], [ 164.531250, -79.038437 ], [ 164.531250, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.432371 ], [ 161.015625, -79.432371 ], [ 161.015625, -80.415707 ], [ 160.312500, -80.415707 ], [ 160.312500, -80.760615 ], [ 159.609375, -80.760615 ], [ 159.609375, -81.093214 ], [ 160.312500, -81.093214 ], [ 160.312500, -81.308321 ], [ 161.015625, -81.308321 ], [ 161.015625, -81.518272 ], [ 161.718750, -81.518272 ], [ 161.718750, -81.923186 ], [ 162.421875, -81.923186 ], [ 162.421875, -82.118384 ], [ 163.125000, -82.118384 ], [ 163.125000, -82.308893 ], [ 163.828125, -82.308893 ], [ 163.828125, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.676285 ], [ 165.234375, -82.676285 ], [ 165.234375, -82.765373 ], [ 165.937500, -82.765373 ], [ 165.937500, -82.940327 ], [ 166.640625, -82.940327 ], [ 166.640625, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.194896 ], [ 168.046875, -83.194896 ], [ 168.046875, -83.359511 ], [ 168.750000, -83.359511 ], [ 168.750000, -83.599031 ], [ 169.453125, -83.599031 ], [ 169.453125, -83.905058 ], [ 170.156250, -83.905058 ], [ 170.156250, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -84.052561 ], [ 172.265625, -84.052561 ], [ 172.265625, -84.267172 ], [ 172.968750, -84.267172 ], [ 172.968750, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.267172 ], [ 175.078125, -84.267172 ], [ 175.078125, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.593750, -84.474065 ], [ 178.593750, -84.541361 ], [ 179.296875, -84.541361 ], [ 179.296875, -84.673513 ], [ 180.000000, -84.673513 ], [ 180.000000, -85.345325 ], [ 99.843750, -85.345325 ], [ 99.843750, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.946472 ], [ 102.656250, -65.946472 ], [ 102.656250, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.231457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.658275 ], [ 135.703125, -66.231457 ], [ 136.406250, -66.231457 ], [ 136.406250, -67.067433 ], [ 138.515625, -67.067433 ], [ 138.515625, -66.791909 ], [ 145.546875, -66.791909 ], [ 145.546875, -67.067433 ], [ 146.250000, -67.067433 ], [ 146.250000, -67.875541 ], [ 146.953125, -67.875541 ], [ 146.953125, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.656555 ], [ 151.171875, -68.656555 ], [ 151.171875, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.411242 ], [ 158.203125, -69.411242 ], [ 158.203125, -69.657086 ], [ 158.906250, -69.657086 ], [ 158.906250, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.140364 ], [ 161.015625, -70.140364 ], [ 161.015625, -70.377854 ], [ 161.718750, -70.377854 ], [ 161.718750, -70.844673 ], [ 167.343750, -70.844673 ], [ 167.343750, -71.074056 ], [ 168.750000, -71.074056 ], [ 168.750000, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -72.607120 ], [ 170.156250, -72.607120 ], [ 170.156250, -73.022592 ], [ 169.453125, -73.022592 ], [ 169.453125, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -74.019543 ], [ 167.343750, -74.019543 ], [ 167.343750, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -74.959392 ], [ 165.234375, -74.959392 ], [ 165.234375, -75.320025 ], [ 164.531250, -75.320025 ], [ 164.531250, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -76.516819 ], [ 163.125000, -76.516819 ], [ 163.125000, -76.840816 ], [ 163.828125, -76.840816 ], [ 163.828125, -77.617709 ], [ 164.531250, -77.617709 ], [ 164.531250, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.349411 ], [ 166.640625, -78.349411 ], [ 166.640625, -78.630006 ], [ 167.343750, -78.630006 ], [ 167.343750, -78.767792 ], [ 166.640625, -78.767792 ], [ 166.640625, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -79.038437 ], [ 164.531250, -79.038437 ], [ 164.531250, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.432371 ], [ 161.015625, -79.432371 ], [ 161.015625, -80.415707 ], [ 160.312500, -80.415707 ], [ 160.312500, -80.760615 ], [ 159.609375, -80.760615 ], [ 159.609375, -81.093214 ], [ 160.312500, -81.093214 ], [ 160.312500, -81.308321 ], [ 161.015625, -81.308321 ], [ 161.015625, -81.518272 ], [ 161.718750, -81.518272 ], [ 161.718750, -81.923186 ], [ 162.421875, -81.923186 ], [ 162.421875, -82.118384 ], [ 163.125000, -82.118384 ], [ 163.125000, -82.308893 ], [ 163.828125, -82.308893 ], [ 163.828125, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.676285 ], [ 165.234375, -82.676285 ], [ 165.234375, -82.765373 ], [ 165.937500, -82.765373 ], [ 165.937500, -82.940327 ], [ 166.640625, -82.940327 ], [ 166.640625, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.194896 ], [ 168.046875, -83.194896 ], [ 168.046875, -83.359511 ], [ 168.750000, -83.359511 ], [ 168.750000, -83.599031 ], [ 169.453125, -83.599031 ], [ 169.453125, -83.905058 ], [ 170.156250, -83.905058 ], [ 170.156250, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -84.052561 ], [ 172.265625, -84.052561 ], [ 172.265625, -84.267172 ], [ 172.968750, -84.267172 ], [ 172.968750, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.267172 ], [ 175.078125, -84.267172 ], [ 175.078125, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.593750, -84.474065 ], [ 178.593750, -84.541361 ], [ 179.296875, -84.541361 ], [ 179.296875, -84.673513 ], [ 180.000000, -84.673513 ], [ 180.000000, -85.345325 ], [ 99.843750, -85.345325 ], [ 99.843750, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.946472 ], [ 102.656250, -65.946472 ], [ 102.656250, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -67.067433 ], [ 108.984375, -67.067433 ], [ 108.984375, -66.791909 ], [ 111.093750, -66.791909 ], [ 111.093750, -66.513260 ], [ 111.796875, -66.513260 ], [ 111.796875, -66.231457 ], [ 113.906250, -66.231457 ], [ 113.906250, -65.946472 ], [ 114.609375, -65.946472 ], [ 114.609375, -66.791909 ], [ 117.421875, -66.791909 ], [ 117.421875, -67.067433 ], [ 118.828125, -67.067433 ], [ 118.828125, -67.339861 ], [ 120.937500, -67.339861 ], [ 120.937500, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.791909 ], [ 122.343750, -66.791909 ], [ 122.343750, -66.513260 ], [ 124.453125, -66.513260 ], [ 124.453125, -66.791909 ], [ 125.859375, -66.791909 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.791909 ], [ 129.375000, -66.791909 ], [ 129.375000, -66.513260 ], [ 133.593750, -66.513260 ], [ 133.593750, -66.231457 ], [ 135.000000, -66.231457 ], [ 135.000000, -65.658275 ], [ 135.703125, -65.658275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 2.108899 ], [ 11.250000, 2.108899 ], [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.108899 ] ] ], [ [ [ 9.843750, 0.703107 ], [ 9.140625, 0.703107 ], [ 9.140625, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 0.703107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 1.406109 ], [ 9.843750, 0.703107 ], [ 9.140625, 0.703107 ], [ 9.140625, 1.406109 ], [ 9.843750, 1.406109 ] ] ], [ [ [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.108899 ], [ 11.250000, 2.108899 ], [ 11.250000, 1.406109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 1.406109 ], [ 15.468750, 1.406109 ], [ 15.468750, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 3.513421 ], [ 15.468750, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 3.513421 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 16.875000, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.453125, 1.406109 ], [ 34.453125, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -0.703107 ], [ 30.937500, -0.703107 ], [ 30.937500, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 3.513421 ], [ 34.453125, 3.513421 ], [ 34.453125, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 34.453125, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.453125, 1.406109 ], [ 34.453125, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -0.703107 ], [ 30.937500, -0.703107 ], [ 30.937500, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -4.214943 ], [ 39.375000, -4.214943 ], [ 39.375000, -4.915833 ], [ 38.671875, -4.915833 ], [ 38.671875, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 34.453125, -2.108899 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 34.453125, 0.000000 ], [ 34.453125, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.453125, 2.108899 ], [ 34.453125, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -4.214943 ], [ 39.375000, -4.214943 ], [ 39.375000, -4.915833 ], [ 38.671875, -4.915833 ], [ 38.671875, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 34.453125, -2.108899 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 34.453125, 0.000000 ], [ 34.453125, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.453125, 2.108899 ], [ 34.453125, 3.513421 ], [ 41.484375, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 3.513421 ], [ 47.109375, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 47.109375, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ] ] ], [ [ [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 103.359375, 3.513421 ], [ 103.359375, 2.811371 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 115.312500, 3.513421 ] ] ], [ [ [ 103.359375, 3.513421 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 103.359375, 3.513421 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.978733 ], [ 177.890625, -17.978733 ], [ 177.890625, -17.308688 ], [ 178.593750, -17.308688 ], [ 178.593750, -17.978733 ] ] ], [ [ [ 179.296875, -17.308688 ], [ 178.593750, -17.308688 ], [ 178.593750, -16.636192 ], [ 179.296875, -16.636192 ], [ 179.296875, -17.308688 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.308688 ], [ 178.593750, -17.978733 ], [ 177.890625, -17.978733 ], [ 177.890625, -17.308688 ], [ 178.593750, -17.308688 ] ] ], [ [ [ 179.296875, -16.636192 ], [ 179.296875, -17.308688 ], [ 178.593750, -17.308688 ], [ 178.593750, -16.636192 ], [ 179.296875, -16.636192 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, -1.406109 ], [ 14.765625, -1.406109 ], [ 14.765625, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.811371 ], [ 13.359375, -2.811371 ], [ 13.359375, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -3.513421 ], [ 11.953125, -3.513421 ], [ 11.953125, -4.214943 ], [ 10.546875, -4.214943 ], [ 10.546875, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.108899 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.108899 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -1.406109 ], [ 14.765625, -1.406109 ], [ 14.765625, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.811371 ], [ 13.359375, -2.811371 ], [ 13.359375, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -3.513421 ], [ 11.953125, -3.513421 ], [ 11.953125, -4.214943 ], [ 10.546875, -4.214943 ], [ 10.546875, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 1.406109 ], [ 17.578125, 1.406109 ], [ 17.578125, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -3.513421 ], [ 15.468750, -3.513421 ], [ 15.468750, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.214943 ], [ 13.359375, -4.214943 ], [ 13.359375, -4.915833 ], [ 11.250000, -4.915833 ], [ 11.250000, -4.214943 ], [ 11.953125, -4.214943 ], [ 11.953125, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.811371 ], [ 12.656250, -2.811371 ], [ 12.656250, -2.108899 ], [ 13.359375, -2.108899 ], [ 13.359375, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, -2.108899 ], [ 14.765625, -2.108899 ], [ 14.765625, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 1.406109 ], [ 16.171875, 1.406109 ], [ 16.171875, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ], [ 18.281250, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 1.406109 ], [ 17.578125, 1.406109 ], [ 17.578125, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -3.513421 ], [ 15.468750, -3.513421 ], [ 15.468750, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.214943 ], [ 13.359375, -4.214943 ], [ 13.359375, -4.915833 ], [ 11.250000, -4.915833 ], [ 11.250000, -4.214943 ], [ 11.953125, -4.214943 ], [ 11.953125, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.811371 ], [ 12.656250, -2.811371 ], [ 12.656250, -2.108899 ], [ 13.359375, -2.108899 ], [ 13.359375, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, -2.108899 ], [ 14.765625, -2.108899 ], [ 14.765625, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 1.406109 ], [ 16.171875, 1.406109 ], [ 16.171875, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.421875, -12.554564 ], [ 27.421875, -11.867351 ], [ 25.312500, -11.867351 ], [ 25.312500, -11.178402 ], [ 22.500000, -11.178402 ], [ 22.500000, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -7.710992 ], [ 18.281250, -7.710992 ], [ 18.281250, -8.407168 ], [ 16.875000, -8.407168 ], [ 16.875000, -6.315299 ], [ 16.171875, -6.315299 ], [ 16.171875, -5.615986 ], [ 13.359375, -5.615986 ], [ 13.359375, -6.315299 ], [ 11.953125, -6.315299 ], [ 11.953125, -5.615986 ], [ 12.656250, -5.615986 ], [ 12.656250, -4.915833 ], [ 13.359375, -4.915833 ], [ 13.359375, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -4.915833 ], [ 15.468750, -4.915833 ], [ 15.468750, -3.513421 ], [ 16.171875, -3.513421 ], [ 16.171875, -1.406109 ], [ 17.578125, -1.406109 ], [ 17.578125, 1.406109 ], [ 18.281250, 1.406109 ], [ 18.281250, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.531250, 0.703107 ], [ 29.531250, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.513421 ], [ 29.531250, -3.513421 ], [ 29.531250, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.710992 ], [ 30.937500, -7.710992 ], [ 30.937500, -8.407168 ], [ 28.828125, -8.407168 ], [ 28.828125, -9.102097 ], [ 28.125000, -9.102097 ], [ 28.125000, -9.795678 ], [ 28.828125, -9.795678 ], [ 28.828125, -11.178402 ], [ 28.125000, -11.178402 ], [ 28.125000, -11.867351 ], [ 28.828125, -11.867351 ], [ 28.828125, -12.554564 ], [ 27.421875, -12.554564 ] ] ], [ [ [ 29.531250, -12.554564 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.554564 ], [ 29.531250, -12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.828125, -12.554564 ], [ 27.421875, -12.554564 ], [ 27.421875, -11.867351 ], [ 25.312500, -11.867351 ], [ 25.312500, -11.178402 ], [ 22.500000, -11.178402 ], [ 22.500000, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -7.710992 ], [ 18.281250, -7.710992 ], [ 18.281250, -8.407168 ], [ 16.875000, -8.407168 ], [ 16.875000, -6.315299 ], [ 16.171875, -6.315299 ], [ 16.171875, -5.615986 ], [ 13.359375, -5.615986 ], [ 13.359375, -6.315299 ], [ 11.953125, -6.315299 ], [ 11.953125, -5.615986 ], [ 12.656250, -5.615986 ], [ 12.656250, -4.915833 ], [ 13.359375, -4.915833 ], [ 13.359375, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -4.915833 ], [ 15.468750, -4.915833 ], [ 15.468750, -3.513421 ], [ 16.171875, -3.513421 ], [ 16.171875, -1.406109 ], [ 17.578125, -1.406109 ], [ 17.578125, 1.406109 ], [ 18.281250, 1.406109 ], [ 18.281250, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.531250, 0.703107 ], [ 29.531250, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.513421 ], [ 29.531250, -3.513421 ], [ 29.531250, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.710992 ], [ 30.937500, -7.710992 ], [ 30.937500, -8.407168 ], [ 28.828125, -8.407168 ], [ 28.828125, -9.102097 ], [ 28.125000, -9.102097 ], [ 28.125000, -9.795678 ], [ 28.828125, -9.795678 ], [ 28.828125, -11.178402 ], [ 28.125000, -11.178402 ], [ 28.125000, -11.867351 ], [ 28.828125, -11.867351 ], [ 28.828125, -12.554564 ] ] ], [ [ [ 28.828125, -12.554564 ], [ 29.531250, -12.554564 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.554564 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, -8.407168 ], [ 18.281250, -8.407168 ], [ 18.281250, -7.710992 ], [ 19.687500, -7.710992 ], [ 19.687500, -7.013668 ], [ 21.796875, -7.013668 ], [ 21.796875, -9.795678 ], [ 22.500000, -9.795678 ], [ 22.500000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -13.239945 ], [ 21.796875, -13.239945 ], [ 21.796875, -16.636192 ], [ 22.500000, -16.636192 ], [ 22.500000, -17.978733 ], [ 18.281250, -17.978733 ], [ 18.281250, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.636192 ], [ 12.656250, -16.636192 ], [ 12.656250, -17.308688 ], [ 11.953125, -17.308688 ], [ 11.953125, -13.923404 ], [ 12.656250, -13.923404 ], [ 12.656250, -13.239945 ], [ 13.359375, -13.239945 ], [ 13.359375, -11.867351 ], [ 14.062500, -11.867351 ], [ 14.062500, -11.178402 ], [ 13.359375, -11.178402 ], [ 13.359375, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -9.102097 ], [ 13.359375, -9.102097 ], [ 13.359375, -8.407168 ], [ 12.656250, -8.407168 ], [ 12.656250, -7.013668 ], [ 11.953125, -7.013668 ], [ 11.953125, -6.315299 ], [ 13.359375, -6.315299 ], [ 13.359375, -5.615986 ], [ 16.171875, -5.615986 ], [ 16.171875, -6.315299 ], [ 16.875000, -6.315299 ], [ 16.875000, -8.407168 ] ] ], [ [ [ 12.656250, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -5.615986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.615986 ], [ 16.171875, -6.315299 ], [ 16.875000, -6.315299 ], [ 16.875000, -8.407168 ], [ 18.281250, -8.407168 ], [ 18.281250, -7.710992 ], [ 19.687500, -7.710992 ], [ 19.687500, -7.013668 ], [ 21.796875, -7.013668 ], [ 21.796875, -9.795678 ], [ 22.500000, -9.795678 ], [ 22.500000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -13.239945 ], [ 21.796875, -13.239945 ], [ 21.796875, -16.636192 ], [ 22.500000, -16.636192 ], [ 22.500000, -17.978733 ], [ 18.281250, -17.978733 ], [ 18.281250, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.636192 ], [ 12.656250, -16.636192 ], [ 12.656250, -17.308688 ], [ 11.953125, -17.308688 ], [ 11.953125, -13.923404 ], [ 12.656250, -13.923404 ], [ 12.656250, -13.239945 ], [ 13.359375, -13.239945 ], [ 13.359375, -11.867351 ], [ 14.062500, -11.867351 ], [ 14.062500, -11.178402 ], [ 13.359375, -11.178402 ], [ 13.359375, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -9.102097 ], [ 13.359375, -9.102097 ], [ 13.359375, -8.407168 ], [ 12.656250, -8.407168 ], [ 12.656250, -7.013668 ], [ 11.953125, -7.013668 ], [ 11.953125, -6.315299 ], [ 13.359375, -6.315299 ], [ 13.359375, -5.615986 ], [ 16.171875, -5.615986 ] ] ], [ [ [ 12.656250, -4.915833 ], [ 12.656250, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 12.656250, -4.915833 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.281250, -17.978733 ], [ 21.093750, -17.978733 ], [ 21.093750, -21.943046 ], [ 19.687500, -21.943046 ], [ 19.687500, -28.921631 ], [ 16.875000, -28.921631 ], [ 16.875000, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -27.059126 ], [ 14.765625, -27.059126 ], [ 14.765625, -24.527135 ], [ 14.062500, -24.527135 ], [ 14.062500, -21.289374 ], [ 13.359375, -21.289374 ], [ 13.359375, -20.632784 ], [ 12.656250, -20.632784 ], [ 12.656250, -18.646245 ], [ 11.953125, -18.646245 ], [ 11.953125, -17.308688 ], [ 12.656250, -17.308688 ], [ 12.656250, -16.636192 ], [ 13.359375, -16.636192 ], [ 13.359375, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.978733 ] ] ], [ [ [ 22.500000, -17.308688 ], [ 25.312500, -17.308688 ], [ 25.312500, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -17.308688 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.359375, -16.636192 ], [ 13.359375, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.978733 ], [ 21.093750, -17.978733 ], [ 21.093750, -21.943046 ], [ 19.687500, -21.943046 ], [ 19.687500, -28.921631 ], [ 16.875000, -28.921631 ], [ 16.875000, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -27.059126 ], [ 14.765625, -27.059126 ], [ 14.765625, -24.527135 ], [ 14.062500, -24.527135 ], [ 14.062500, -21.289374 ], [ 13.359375, -21.289374 ], [ 13.359375, -20.632784 ], [ 12.656250, -20.632784 ], [ 12.656250, -18.646245 ], [ 11.953125, -18.646245 ], [ 11.953125, -17.308688 ], [ 12.656250, -17.308688 ], [ 12.656250, -16.636192 ], [ 13.359375, -16.636192 ] ] ], [ [ [ 25.312500, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -17.308688 ], [ 25.312500, -17.308688 ], [ 25.312500, -17.978733 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.108899 ], [ 30.234375, -2.108899 ], [ 30.234375, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ], [ 30.234375, -2.108899 ], [ 30.234375, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 30.937500, -2.811371 ], [ 30.937500, -3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 30.937500, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 30.937500, -2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -11.867351 ], [ 28.125000, -11.867351 ], [ 28.125000, -11.178402 ], [ 28.828125, -11.178402 ], [ 28.828125, -9.795678 ], [ 28.125000, -9.795678 ], [ 28.125000, -9.102097 ], [ 28.828125, -9.102097 ], [ 28.828125, -8.407168 ], [ 30.937500, -8.407168 ], [ 30.937500, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -13.239945 ], [ 32.343750, -13.239945 ], [ 32.343750, -14.604847 ], [ 30.234375, -14.604847 ], [ 30.234375, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.636192 ], [ 21.796875, -16.636192 ], [ 21.796875, -13.239945 ], [ 23.906250, -13.239945 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.554564 ], [ 28.828125, -12.554564 ], [ 28.828125, -11.867351 ] ], [ [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.554564 ], [ 28.828125, -12.554564 ], [ 28.828125, -13.239945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -12.554564 ], [ 28.828125, -11.867351 ], [ 28.125000, -11.867351 ], [ 28.125000, -11.178402 ], [ 28.828125, -11.178402 ], [ 28.828125, -9.795678 ], [ 28.125000, -9.795678 ], [ 28.125000, -9.102097 ], [ 28.828125, -9.102097 ], [ 28.828125, -8.407168 ], [ 30.937500, -8.407168 ], [ 30.937500, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -13.239945 ], [ 32.343750, -13.239945 ], [ 32.343750, -14.604847 ], [ 30.234375, -14.604847 ], [ 30.234375, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.636192 ], [ 21.796875, -16.636192 ], [ 21.796875, -13.239945 ], [ 23.906250, -13.239945 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.554564 ], [ 28.828125, -12.554564 ] ], [ [ 28.828125, -12.554564 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.554564 ], [ 28.828125, -12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, -18.646245 ], [ 32.343750, -18.646245 ], [ 32.343750, -19.973349 ], [ 33.046875, -19.973349 ], [ 33.046875, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -21.943046 ], [ 30.937500, -21.943046 ], [ 30.937500, -22.593726 ], [ 29.531250, -22.593726 ], [ 29.531250, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -21.289374 ], [ 27.421875, -21.289374 ], [ 27.421875, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.973349 ], [ 26.015625, -19.973349 ], [ 26.015625, -18.646245 ], [ 25.312500, -18.646245 ], [ 25.312500, -17.978733 ], [ 27.421875, -17.978733 ], [ 27.421875, -17.308688 ], [ 28.125000, -17.308688 ], [ 28.125000, -16.636192 ], [ 28.828125, -16.636192 ], [ 28.828125, -15.961329 ], [ 31.640625, -15.961329 ], [ 31.640625, -16.636192 ], [ 33.046875, -16.636192 ], [ 33.046875, -18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -15.961329 ], [ 31.640625, -16.636192 ], [ 33.046875, -16.636192 ], [ 33.046875, -18.646245 ], [ 32.343750, -18.646245 ], [ 32.343750, -19.973349 ], [ 33.046875, -19.973349 ], [ 33.046875, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -21.943046 ], [ 30.937500, -21.943046 ], [ 30.937500, -22.593726 ], [ 29.531250, -22.593726 ], [ 29.531250, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -21.289374 ], [ 27.421875, -21.289374 ], [ 27.421875, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.973349 ], [ 26.015625, -19.973349 ], [ 26.015625, -18.646245 ], [ 25.312500, -18.646245 ], [ 25.312500, -17.978733 ], [ 27.421875, -17.978733 ], [ 27.421875, -17.308688 ], [ 28.125000, -17.308688 ], [ 28.125000, -16.636192 ], [ 28.828125, -16.636192 ], [ 28.828125, -15.961329 ], [ 31.640625, -15.961329 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -4.214943 ], [ 38.671875, -4.214943 ], [ 38.671875, -4.915833 ], [ 39.375000, -4.915833 ], [ 39.375000, -5.615986 ], [ 38.671875, -5.615986 ], [ 38.671875, -7.013668 ], [ 39.375000, -7.013668 ], [ 39.375000, -9.795678 ], [ 40.078125, -9.795678 ], [ 40.078125, -11.178402 ], [ 37.968750, -11.178402 ], [ 37.968750, -11.867351 ], [ 35.156250, -11.867351 ], [ 35.156250, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.487812 ], [ 33.750000, -10.487812 ], [ 33.750000, -9.102097 ], [ 30.937500, -9.102097 ], [ 30.937500, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -7.013668 ], [ 29.531250, -7.013668 ], [ 29.531250, -4.214943 ], [ 30.234375, -4.214943 ], [ 30.234375, -3.513421 ], [ 30.937500, -3.513421 ], [ 30.937500, -2.811371 ], [ 30.234375, -2.811371 ], [ 30.234375, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -0.703107 ], [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -4.214943 ], [ 38.671875, -4.214943 ], [ 38.671875, -4.915833 ], [ 39.375000, -4.915833 ], [ 39.375000, -5.615986 ], [ 38.671875, -5.615986 ], [ 38.671875, -7.013668 ], [ 39.375000, -7.013668 ], [ 39.375000, -9.795678 ], [ 40.078125, -9.795678 ], [ 40.078125, -11.178402 ], [ 37.968750, -11.178402 ], [ 37.968750, -11.867351 ], [ 35.156250, -11.867351 ], [ 35.156250, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.487812 ], [ 33.750000, -10.487812 ], [ 33.750000, -9.102097 ], [ 30.937500, -9.102097 ], [ 30.937500, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -7.013668 ], [ 29.531250, -7.013668 ], [ 29.531250, -4.214943 ], [ 30.234375, -4.214943 ], [ 30.234375, -3.513421 ], [ 30.937500, -3.513421 ], [ 30.937500, -2.811371 ], [ 30.234375, -2.811371 ], [ 30.234375, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, -14.604847 ], [ 35.859375, -14.604847 ], [ 35.859375, -15.961329 ], [ 35.156250, -15.961329 ], [ 35.156250, -16.636192 ], [ 34.453125, -16.636192 ], [ 34.453125, -14.604847 ], [ 33.046875, -14.604847 ], [ 33.046875, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -13.239945 ], [ 33.046875, -13.239945 ], [ 33.046875, -9.102097 ], [ 33.750000, -9.102097 ], [ 33.750000, -10.487812 ], [ 34.453125, -10.487812 ], [ 34.453125, -13.239945 ], [ 35.156250, -13.239945 ], [ 35.156250, -14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -9.102097 ], [ 33.750000, -9.795678 ], [ 34.453125, -10.487812 ], [ 34.453125, -13.239945 ], [ 35.156250, -13.239945 ], [ 35.156250, -14.604847 ], [ 35.859375, -14.604847 ], [ 35.859375, -15.961329 ], [ 35.156250, -15.961329 ], [ 35.156250, -16.636192 ], [ 34.453125, -16.636192 ], [ 34.453125, -14.604847 ], [ 33.046875, -14.604847 ], [ 33.046875, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -13.239945 ], [ 33.046875, -13.239945 ], [ 33.046875, -9.102097 ], [ 33.750000, -9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, -23.241346 ], [ 35.156250, -23.241346 ], [ 35.156250, -24.527135 ], [ 34.453125, -24.527135 ], [ 34.453125, -25.165173 ], [ 33.046875, -25.165173 ], [ 33.046875, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -26.431228 ], [ 31.640625, -26.431228 ], [ 31.640625, -23.241346 ], [ 30.937500, -23.241346 ], [ 30.937500, -21.943046 ], [ 32.343750, -21.943046 ], [ 32.343750, -20.632784 ], [ 33.046875, -20.632784 ], [ 33.046875, -19.973349 ], [ 32.343750, -19.973349 ], [ 32.343750, -18.646245 ], [ 33.046875, -18.646245 ], [ 33.046875, -16.636192 ], [ 31.640625, -16.636192 ], [ 31.640625, -15.961329 ], [ 30.234375, -15.961329 ], [ 30.234375, -14.604847 ], [ 32.343750, -14.604847 ], [ 32.343750, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -14.604847 ], [ 35.156250, -14.604847 ], [ 35.156250, -13.239945 ], [ 34.453125, -13.239945 ], [ 34.453125, -11.178402 ], [ 35.156250, -11.178402 ], [ 35.156250, -11.867351 ], [ 37.968750, -11.867351 ], [ 37.968750, -11.178402 ], [ 40.078125, -11.178402 ], [ 40.078125, -10.487812 ], [ 40.781250, -10.487812 ], [ 40.781250, -15.961329 ], [ 40.078125, -15.961329 ], [ 40.078125, -16.636192 ], [ 39.375000, -16.636192 ], [ 39.375000, -17.308688 ], [ 37.265625, -17.308688 ], [ 37.265625, -17.978733 ], [ 36.562500, -17.978733 ], [ 36.562500, -18.646245 ], [ 35.859375, -18.646245 ], [ 35.859375, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -19.973349 ], [ 34.453125, -19.973349 ], [ 34.453125, -21.289374 ], [ 35.156250, -21.289374 ], [ 35.156250, -21.943046 ], [ 35.859375, -21.943046 ], [ 35.859375, -23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, -10.487812 ], [ 40.781250, -15.961329 ], [ 40.078125, -15.961329 ], [ 40.078125, -16.636192 ], [ 39.375000, -16.636192 ], [ 39.375000, -17.308688 ], [ 37.265625, -17.308688 ], [ 37.265625, -17.978733 ], [ 36.562500, -17.978733 ], [ 36.562500, -18.646245 ], [ 35.859375, -18.646245 ], [ 35.859375, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -19.973349 ], [ 34.453125, -19.973349 ], [ 34.453125, -21.289374 ], [ 35.156250, -21.289374 ], [ 35.156250, -21.943046 ], [ 35.859375, -21.943046 ], [ 35.859375, -23.241346 ], [ 35.156250, -23.241346 ], [ 35.156250, -24.527135 ], [ 34.453125, -24.527135 ], [ 34.453125, -25.165173 ], [ 33.046875, -25.165173 ], [ 33.046875, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -26.431228 ], [ 31.640625, -26.431228 ], [ 31.640625, -23.241346 ], [ 30.937500, -23.241346 ], [ 30.937500, -21.943046 ], [ 32.343750, -21.943046 ], [ 32.343750, -20.632784 ], [ 33.046875, -20.632784 ], [ 33.046875, -19.973349 ], [ 32.343750, -19.973349 ], [ 32.343750, -18.646245 ], [ 33.046875, -18.646245 ], [ 33.046875, -16.636192 ], [ 31.640625, -16.636192 ], [ 31.640625, -15.961329 ], [ 30.234375, -15.961329 ], [ 30.234375, -14.604847 ], [ 32.343750, -14.604847 ], [ 32.343750, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -14.604847 ], [ 35.156250, -14.604847 ], [ 35.156250, -13.239945 ], [ 34.453125, -13.239945 ], [ 34.453125, -11.178402 ], [ 35.156250, -11.178402 ], [ 35.156250, -11.867351 ], [ 37.968750, -11.867351 ], [ 37.968750, -11.178402 ], [ 40.078125, -11.178402 ], [ 40.078125, -10.487812 ], [ 40.781250, -10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -22.593726 ], [ 28.125000, -22.593726 ], [ 28.125000, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -24.527135 ], [ 26.015625, -24.527135 ], [ 26.015625, -25.799891 ], [ 23.906250, -25.799891 ], [ 23.906250, -25.165173 ], [ 23.203125, -25.165173 ], [ 23.203125, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -26.431228 ], [ 21.796875, -26.431228 ], [ 21.796875, -27.059126 ], [ 20.390625, -27.059126 ], [ 20.390625, -26.431228 ], [ 21.093750, -26.431228 ], [ 21.093750, -25.799891 ], [ 20.390625, -25.799891 ], [ 20.390625, -25.165173 ], [ 19.687500, -25.165173 ], [ 19.687500, -21.943046 ], [ 21.093750, -21.943046 ], [ 21.093750, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -18.646245 ], [ 26.015625, -18.646245 ], [ 26.015625, -19.973349 ], [ 26.718750, -19.973349 ], [ 26.718750, -20.632784 ], [ 27.421875, -20.632784 ], [ 27.421875, -21.289374 ], [ 28.125000, -21.289374 ], [ 28.125000, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -22.593726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 25.312500, -18.646245 ], [ 26.015625, -18.646245 ], [ 26.015625, -19.973349 ], [ 26.718750, -19.973349 ], [ 26.718750, -20.632784 ], [ 27.421875, -20.632784 ], [ 27.421875, -21.289374 ], [ 28.125000, -21.289374 ], [ 28.125000, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -22.593726 ], [ 28.125000, -22.593726 ], [ 28.125000, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -24.527135 ], [ 26.015625, -24.527135 ], [ 26.015625, -25.799891 ], [ 23.906250, -25.799891 ], [ 23.906250, -25.165173 ], [ 23.203125, -25.165173 ], [ 23.203125, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -26.431228 ], [ 21.796875, -26.431228 ], [ 21.796875, -27.059126 ], [ 20.390625, -27.059126 ], [ 20.390625, -26.431228 ], [ 21.093750, -26.431228 ], [ 21.093750, -25.799891 ], [ 20.390625, -25.799891 ], [ 20.390625, -25.165173 ], [ 19.687500, -25.165173 ], [ 19.687500, -21.943046 ], [ 21.093750, -21.943046 ], [ 21.093750, -17.978733 ], [ 25.312500, -17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.343750, -29.535230 ], [ 31.640625, -29.535230 ], [ 31.640625, -30.145127 ], [ 30.937500, -30.145127 ], [ 30.937500, -30.751278 ], [ 30.234375, -30.751278 ], [ 30.234375, -31.952162 ], [ 28.828125, -31.952162 ], [ 28.828125, -32.546813 ], [ 28.125000, -32.546813 ], [ 28.125000, -33.137551 ], [ 27.421875, -33.137551 ], [ 27.421875, -33.724340 ], [ 22.500000, -33.724340 ], [ 22.500000, -34.307144 ], [ 20.390625, -34.307144 ], [ 20.390625, -34.885931 ], [ 18.984375, -34.885931 ], [ 18.984375, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -33.137551 ], [ 17.578125, -33.137551 ], [ 17.578125, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.353637 ], [ 17.578125, -31.353637 ], [ 17.578125, -30.751278 ], [ 16.875000, -30.751278 ], [ 16.875000, -29.535230 ], [ 16.171875, -29.535230 ], [ 16.171875, -28.304381 ], [ 16.875000, -28.304381 ], [ 16.875000, -28.921631 ], [ 19.687500, -28.921631 ], [ 19.687500, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -25.799891 ], [ 21.093750, -25.799891 ], [ 21.093750, -26.431228 ], [ 20.390625, -26.431228 ], [ 20.390625, -27.059126 ], [ 21.796875, -27.059126 ], [ 21.796875, -26.431228 ], [ 22.500000, -26.431228 ], [ 22.500000, -25.799891 ], [ 23.203125, -25.799891 ], [ 23.203125, -25.165173 ], [ 23.906250, -25.165173 ], [ 23.906250, -25.799891 ], [ 26.015625, -25.799891 ], [ 26.015625, -24.527135 ], [ 27.421875, -24.527135 ], [ 27.421875, -23.241346 ], [ 28.125000, -23.241346 ], [ 28.125000, -22.593726 ], [ 30.937500, -22.593726 ], [ 30.937500, -23.241346 ], [ 31.640625, -23.241346 ], [ 31.640625, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -29.535230 ] ], [ [ 28.125000, -28.921631 ], [ 28.125000, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -30.145127 ], [ 26.718750, -30.145127 ], [ 26.718750, -30.751278 ], [ 28.125000, -30.751278 ], [ 28.125000, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -28.921631 ], [ 28.125000, -28.921631 ] ] ], [ [ [ 32.343750, -26.431228 ], [ 33.046875, -26.431228 ], [ 33.046875, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -26.431228 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 30.937500, -22.593726 ], [ 30.937500, -23.241346 ], [ 31.640625, -23.241346 ], [ 31.640625, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -29.535230 ], [ 31.640625, -29.535230 ], [ 31.640625, -30.145127 ], [ 30.937500, -30.145127 ], [ 30.937500, -30.751278 ], [ 30.234375, -30.751278 ], [ 30.234375, -31.952162 ], [ 28.828125, -31.952162 ], [ 28.828125, -32.546813 ], [ 28.125000, -32.546813 ], [ 28.125000, -33.137551 ], [ 27.421875, -33.137551 ], [ 27.421875, -33.724340 ], [ 22.500000, -33.724340 ], [ 22.500000, -34.307144 ], [ 20.390625, -34.307144 ], [ 20.390625, -34.885931 ], [ 18.984375, -34.885931 ], [ 18.984375, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -33.137551 ], [ 17.578125, -33.137551 ], [ 17.578125, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.353637 ], [ 17.578125, -31.353637 ], [ 17.578125, -30.751278 ], [ 16.875000, -30.751278 ], [ 16.875000, -29.535230 ], [ 16.171875, -29.535230 ], [ 16.171875, -28.304381 ], [ 16.875000, -28.304381 ], [ 16.875000, -28.921631 ], [ 19.687500, -28.921631 ], [ 19.687500, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -25.799891 ], [ 21.093750, -25.799891 ], [ 21.093750, -26.431228 ], [ 20.390625, -26.431228 ], [ 20.390625, -27.059126 ], [ 21.796875, -27.059126 ], [ 21.796875, -26.431228 ], [ 22.500000, -26.431228 ], [ 22.500000, -25.799891 ], [ 23.203125, -25.799891 ], [ 23.203125, -25.165173 ], [ 23.906250, -25.165173 ], [ 23.906250, -25.799891 ], [ 26.015625, -25.799891 ], [ 26.015625, -24.527135 ], [ 27.421875, -24.527135 ], [ 27.421875, -23.241346 ], [ 28.125000, -23.241346 ], [ 28.125000, -22.593726 ], [ 30.937500, -22.593726 ] ], [ [ 28.125000, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -30.145127 ], [ 26.718750, -30.145127 ], [ 26.718750, -30.751278 ], [ 28.125000, -30.751278 ], [ 28.125000, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -29.535230 ] ] ], [ [ [ 33.046875, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -26.431228 ], [ 33.046875, -26.431228 ], [ 33.046875, -27.059126 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -26.431228 ], [ 32.343750, -26.431228 ], [ 32.343750, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ], [ 31.640625, -25.799891 ], [ 31.640625, -26.431228 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -25.799891 ], [ 31.640625, -26.431228 ], [ 32.343750, -26.431228 ], [ 32.343750, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ], [ 31.640625, -25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.751278 ], [ 26.718750, -30.751278 ], [ 26.718750, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -29.535230 ], [ 28.125000, -29.535230 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.921631 ], [ 28.828125, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.751278 ], [ 26.718750, -30.751278 ], [ 26.718750, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -29.535230 ], [ 28.125000, -29.535230 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -17.308688 ], [ 49.218750, -17.308688 ], [ 49.218750, -19.973349 ], [ 48.515625, -19.973349 ], [ 48.515625, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -24.527135 ], [ 47.109375, -24.527135 ], [ 47.109375, -25.165173 ], [ 46.406250, -25.165173 ], [ 46.406250, -25.799891 ], [ 45.000000, -25.799891 ], [ 45.000000, -25.165173 ], [ 43.593750, -25.165173 ], [ 43.593750, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -15.961329 ], [ 47.109375, -15.961329 ], [ 47.109375, -15.284185 ], [ 47.812500, -15.284185 ], [ 47.812500, -13.923404 ], [ 48.515625, -13.923404 ], [ 48.515625, -12.554564 ], [ 49.921875, -12.554564 ], [ 49.921875, -15.284185 ], [ 50.625000, -15.284185 ], [ 50.625000, -15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.921875, -12.554564 ], [ 49.921875, -15.284185 ], [ 50.625000, -15.284185 ], [ 50.625000, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -17.308688 ], [ 49.218750, -17.308688 ], [ 49.218750, -19.973349 ], [ 48.515625, -19.973349 ], [ 48.515625, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -24.527135 ], [ 47.109375, -24.527135 ], [ 47.109375, -25.165173 ], [ 46.406250, -25.165173 ], [ 46.406250, -25.799891 ], [ 45.000000, -25.799891 ], [ 45.000000, -25.165173 ], [ 43.593750, -25.165173 ], [ 43.593750, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -15.961329 ], [ 47.109375, -15.961329 ], [ 47.109375, -15.284185 ], [ 47.812500, -15.284185 ], [ 47.812500, -13.923404 ], [ 48.515625, -13.923404 ], [ 48.515625, -12.554564 ], [ 49.921875, -12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ], [ 70.312500, -49.837982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, -48.922499 ], [ 70.312500, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.937500, -10.487812 ], [ 118.828125, -10.487812 ], [ 118.828125, -9.795678 ], [ 120.937500, -9.795678 ], [ 120.937500, -10.487812 ] ] ], [ [ [ 125.156250, -9.795678 ], [ 124.453125, -9.795678 ], [ 124.453125, -10.487812 ], [ 123.750000, -10.487812 ], [ 123.750000, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -9.795678 ] ] ], [ [ [ 118.828125, -9.102097 ], [ 117.421875, -9.102097 ], [ 117.421875, -8.407168 ], [ 118.828125, -8.407168 ], [ 118.828125, -9.102097 ] ] ], [ [ [ 122.343750, -9.102097 ], [ 120.234375, -9.102097 ], [ 120.234375, -8.407168 ], [ 122.343750, -8.407168 ], [ 122.343750, -9.102097 ] ] ], [ [ [ 139.921875, -2.811371 ], [ 141.328125, -2.811371 ], [ 141.328125, -9.102097 ], [ 139.921875, -9.102097 ], [ 139.921875, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -6.315299 ], [ 137.812500, -6.315299 ], [ 137.812500, -5.615986 ], [ 137.109375, -5.615986 ], [ 137.109375, -4.915833 ], [ 135.703125, -4.915833 ], [ 135.703125, -4.214943 ], [ 132.890625, -4.214943 ], [ 132.890625, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 133.593750, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -0.703107 ], [ 134.296875, -0.703107 ], [ 134.296875, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 139.921875, -2.108899 ], [ 139.921875, -2.811371 ] ] ], [ [ [ 108.281250, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.407168 ], [ 109.687500, -8.407168 ], [ 109.687500, -7.710992 ], [ 106.875000, -7.710992 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -6.315299 ], [ 106.171875, -6.315299 ], [ 106.171875, -5.615986 ], [ 107.578125, -5.615986 ], [ 107.578125, -6.315299 ], [ 108.281250, -6.315299 ], [ 108.281250, -7.013668 ] ] ], [ [ [ 135.000000, -7.013668 ], [ 134.296875, -7.013668 ], [ 134.296875, -5.615986 ], [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ] ] ], [ [ [ 120.234375, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ], [ 123.046875, -4.214943 ], [ 123.046875, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, -1.406109 ] ] ], [ [ [ 99.843750, 2.811371 ], [ 100.546875, 2.811371 ], [ 100.546875, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -1.406109 ], [ 104.062500, -1.406109 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.811371 ], [ 106.171875, -2.811371 ], [ 106.171875, -4.915833 ], [ 105.468750, -4.915833 ], [ 105.468750, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -4.915833 ], [ 102.656250, -4.915833 ], [ 102.656250, -4.214943 ], [ 101.953125, -4.214943 ], [ 101.953125, -3.513421 ], [ 101.250000, -3.513421 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, -0.703107 ], [ 99.140625, -0.703107 ], [ 99.140625, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 99.843750, 3.513421 ], [ 99.843750, 2.811371 ] ] ], [ [ [ 118.828125, 0.703107 ], [ 118.125000, 0.703107 ], [ 118.125000, 0.000000 ], [ 117.421875, 0.000000 ], [ 117.421875, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -3.513421 ], [ 116.015625, -3.513421 ], [ 116.015625, -4.214943 ], [ 114.609375, -4.214943 ], [ 114.609375, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -2.811371 ], [ 110.390625, -2.811371 ], [ 110.390625, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 1.406109 ], [ 109.687500, 1.406109 ], [ 109.687500, 0.703107 ], [ 112.500000, 0.703107 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 2.108899 ], [ 115.312500, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 118.125000, 2.811371 ], [ 118.125000, 1.406109 ], [ 118.828125, 1.406109 ], [ 118.828125, 0.703107 ] ] ], [ [ [ 130.781250, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 130.781250, -2.811371 ], [ 130.781250, -3.513421 ] ] ], [ [ [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.000000 ], [ 127.265625, 0.000000 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ] ] ], [ [ [ 124.453125, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, 0.703107 ], [ 124.453125, 0.703107 ], [ 124.453125, 0.000000 ] ] ], [ [ [ 120.234375, 0.703107 ], [ 120.937500, 0.703107 ], [ 120.937500, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, 0.703107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.937500, -9.795678 ], [ 120.937500, -10.487812 ], [ 118.828125, -10.487812 ], [ 118.828125, -9.795678 ], [ 120.937500, -9.795678 ] ] ], [ [ [ 125.156250, -9.102097 ], [ 125.156250, -9.795678 ], [ 124.453125, -9.795678 ], [ 124.453125, -10.487812 ], [ 123.750000, -10.487812 ], [ 123.750000, -9.102097 ], [ 125.156250, -9.102097 ] ] ], [ [ [ 118.828125, -8.407168 ], [ 118.828125, -9.102097 ], [ 117.421875, -9.102097 ], [ 117.421875, -8.407168 ], [ 118.828125, -8.407168 ] ] ], [ [ [ 122.343750, -8.407168 ], [ 122.343750, -9.102097 ], [ 120.234375, -9.102097 ], [ 120.234375, -8.407168 ], [ 122.343750, -8.407168 ] ] ], [ [ [ 134.296875, -0.703107 ], [ 134.296875, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 139.921875, -2.108899 ], [ 139.921875, -2.811371 ], [ 141.328125, -2.811371 ], [ 141.328125, -9.102097 ], [ 139.921875, -9.102097 ], [ 139.921875, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -6.315299 ], [ 137.812500, -6.315299 ], [ 137.812500, -5.615986 ], [ 137.109375, -5.615986 ], [ 137.109375, -4.915833 ], [ 135.703125, -4.915833 ], [ 135.703125, -4.214943 ], [ 132.890625, -4.214943 ], [ 132.890625, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 133.593750, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -0.703107 ], [ 134.296875, -0.703107 ] ] ], [ [ [ 107.578125, -5.615986 ], [ 107.578125, -6.315299 ], [ 108.281250, -6.315299 ], [ 108.281250, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.407168 ], [ 109.687500, -8.407168 ], [ 109.687500, -7.710992 ], [ 106.875000, -7.710992 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -6.315299 ], [ 106.171875, -6.315299 ], [ 106.171875, -5.615986 ], [ 107.578125, -5.615986 ] ] ], [ [ [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ], [ 134.296875, -7.013668 ], [ 134.296875, -5.615986 ], [ 135.000000, -5.615986 ] ] ], [ [ [ 120.234375, 0.000000 ], [ 120.234375, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ], [ 123.046875, -4.214943 ], [ 123.046875, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, 0.000000 ], [ 120.234375, 0.000000 ] ] ], [ [ [ 106.171875, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -4.915833 ], [ 102.656250, -4.915833 ], [ 102.656250, -4.214943 ], [ 101.953125, -4.214943 ], [ 101.953125, -3.513421 ], [ 101.250000, -3.513421 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, -0.703107 ], [ 99.140625, -0.703107 ], [ 99.140625, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 99.843750, 3.513421 ], [ 99.843750, 2.811371 ], [ 100.546875, 2.811371 ], [ 100.546875, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -1.406109 ], [ 104.062500, -1.406109 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.811371 ], [ 106.171875, -2.811371 ], [ 106.171875, -5.615986 ] ] ], [ [ [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 118.125000, 2.811371 ], [ 118.125000, 1.406109 ], [ 118.828125, 1.406109 ], [ 118.828125, 0.703107 ], [ 118.125000, 0.703107 ], [ 118.125000, 0.000000 ], [ 117.421875, 0.000000 ], [ 117.421875, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -3.513421 ], [ 116.015625, -3.513421 ], [ 116.015625, -4.214943 ], [ 114.609375, -4.214943 ], [ 114.609375, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -2.811371 ], [ 110.390625, -2.811371 ], [ 110.390625, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 1.406109 ], [ 109.687500, 1.406109 ], [ 109.687500, 0.703107 ], [ 112.500000, 0.703107 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 2.108899 ], [ 115.312500, 3.513421 ], [ 117.421875, 3.513421 ] ] ], [ [ [ 130.781250, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 124.453125, 0.703107 ], [ 124.453125, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, 0.703107 ], [ 124.453125, 0.703107 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.000000 ], [ 127.265625, 0.000000 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 120.937500, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, 0.703107 ], [ 120.937500, 0.703107 ], [ 120.937500, 0.000000 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -8.407168 ], [ 127.265625, -8.407168 ], [ 127.265625, -9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.407168 ], [ 127.265625, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -8.407168 ], [ 127.265625, -8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.359375, -43.068888 ], [ 147.656250, -43.068888 ], [ 147.656250, -43.580391 ], [ 146.250000, -43.580391 ], [ 146.250000, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -40.979898 ], [ 148.359375, -40.979898 ], [ 148.359375, -43.068888 ] ] ], [ [ [ 135.000000, -11.867351 ], [ 135.000000, -12.554564 ], [ 135.703125, -12.554564 ], [ 135.703125, -11.867351 ], [ 136.406250, -11.867351 ], [ 136.406250, -13.239945 ], [ 135.703125, -13.239945 ], [ 135.703125, -15.284185 ], [ 136.406250, -15.284185 ], [ 136.406250, -15.961329 ], [ 137.812500, -15.961329 ], [ 137.812500, -16.636192 ], [ 138.515625, -16.636192 ], [ 138.515625, -17.308688 ], [ 139.218750, -17.308688 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -17.308688 ], [ 141.328125, -17.308688 ], [ 141.328125, -15.961329 ], [ 142.031250, -15.961329 ], [ 142.031250, -15.284185 ], [ 141.328125, -15.284185 ], [ 141.328125, -13.239945 ], [ 142.031250, -13.239945 ], [ 142.031250, -11.178402 ], [ 142.734375, -11.178402 ], [ 142.734375, -11.867351 ], [ 143.437500, -11.867351 ], [ 143.437500, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -15.284185 ], [ 145.546875, -15.284185 ], [ 145.546875, -17.308688 ], [ 146.250000, -17.308688 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -19.973349 ], [ 148.359375, -19.973349 ], [ 148.359375, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 149.765625, -21.943046 ], [ 149.765625, -22.593726 ], [ 150.468750, -22.593726 ], [ 150.468750, -23.241346 ], [ 151.171875, -23.241346 ], [ 151.171875, -23.885838 ], [ 151.875000, -23.885838 ], [ 151.875000, -25.165173 ], [ 152.578125, -25.165173 ], [ 152.578125, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -31.353637 ], [ 152.578125, -31.353637 ], [ 152.578125, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.885931 ], [ 150.468750, -34.885931 ], [ 150.468750, -36.031332 ], [ 149.765625, -36.031332 ], [ 149.765625, -37.718590 ], [ 148.359375, -37.718590 ], [ 148.359375, -38.272689 ], [ 147.656250, -38.272689 ], [ 147.656250, -38.822591 ], [ 144.843750, -38.822591 ], [ 144.843750, -38.272689 ], [ 144.140625, -38.272689 ], [ 144.140625, -38.822591 ], [ 142.734375, -38.822591 ], [ 142.734375, -38.272689 ], [ 140.625000, -38.272689 ], [ 140.625000, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.460670 ], [ 138.515625, -35.460670 ], [ 138.515625, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -33.724340 ], [ 137.109375, -33.724340 ], [ 137.109375, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -34.885931 ], [ 135.000000, -34.885931 ], [ 135.000000, -33.724340 ], [ 134.296875, -33.724340 ], [ 134.296875, -32.546813 ], [ 132.890625, -32.546813 ], [ 132.890625, -31.952162 ], [ 131.484375, -31.952162 ], [ 131.484375, -31.353637 ], [ 129.375000, -31.353637 ], [ 129.375000, -31.952162 ], [ 127.968750, -31.952162 ], [ 127.968750, -32.546813 ], [ 125.156250, -32.546813 ], [ 125.156250, -33.137551 ], [ 124.453125, -33.137551 ], [ 124.453125, -33.724340 ], [ 120.234375, -33.724340 ], [ 120.234375, -34.307144 ], [ 118.828125, -34.307144 ], [ 118.828125, -34.885931 ], [ 115.312500, -34.885931 ], [ 115.312500, -33.724340 ], [ 116.015625, -33.724340 ], [ 116.015625, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -29.535230 ], [ 114.609375, -29.535230 ], [ 114.609375, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -27.059126 ], [ 113.203125, -27.059126 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -24.527135 ], [ 113.203125, -24.527135 ], [ 113.203125, -23.885838 ], [ 113.906250, -23.885838 ], [ 113.906250, -22.593726 ], [ 114.609375, -22.593726 ], [ 114.609375, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -21.289374 ], [ 116.718750, -21.289374 ], [ 116.718750, -20.632784 ], [ 118.828125, -20.632784 ], [ 118.828125, -19.973349 ], [ 121.640625, -19.973349 ], [ 121.640625, -18.646245 ], [ 122.343750, -18.646245 ], [ 122.343750, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.636192 ], [ 124.453125, -16.636192 ], [ 124.453125, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -14.604847 ], [ 125.859375, -14.604847 ], [ 125.859375, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.604847 ], [ 128.671875, -14.604847 ], [ 128.671875, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -14.604847 ], [ 130.078125, -14.604847 ], [ 130.078125, -13.239945 ], [ 130.781250, -13.239945 ], [ 130.781250, -12.554564 ], [ 132.890625, -12.554564 ], [ 132.890625, -11.867351 ], [ 135.000000, -11.867351 ] ] ], [ [ [ 137.812500, -35.460670 ], [ 137.109375, -35.460670 ], [ 137.109375, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -35.460670 ] ] ], [ [ [ 131.484375, -11.867351 ], [ 131.484375, -11.178402 ], [ 132.890625, -11.178402 ], [ 132.890625, -11.867351 ], [ 131.484375, -11.867351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.359375, -40.979898 ], [ 148.359375, -43.068888 ], [ 147.656250, -43.068888 ], [ 147.656250, -43.580391 ], [ 146.250000, -43.580391 ], [ 146.250000, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -41.508577 ], [ 144.843750, -40.979898 ], [ 148.359375, -40.979898 ] ] ], [ [ [ 132.890625, -11.867351 ], [ 135.000000, -11.867351 ], [ 135.000000, -12.554564 ], [ 135.703125, -12.554564 ], [ 135.703125, -11.867351 ], [ 136.406250, -11.867351 ], [ 136.406250, -13.239945 ], [ 135.703125, -13.239945 ], [ 135.703125, -15.284185 ], [ 136.406250, -15.284185 ], [ 136.406250, -15.961329 ], [ 137.812500, -15.961329 ], [ 137.812500, -16.636192 ], [ 138.515625, -16.636192 ], [ 138.515625, -17.308688 ], [ 139.218750, -17.308688 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -17.308688 ], [ 141.328125, -17.308688 ], [ 141.328125, -15.961329 ], [ 142.031250, -15.961329 ], [ 142.031250, -15.284185 ], [ 141.328125, -15.284185 ], [ 141.328125, -13.239945 ], [ 142.031250, -13.239945 ], [ 142.031250, -11.178402 ], [ 142.734375, -11.178402 ], [ 142.734375, -11.867351 ], [ 143.437500, -11.867351 ], [ 143.437500, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -15.284185 ], [ 145.546875, -15.284185 ], [ 145.546875, -17.308688 ], [ 146.250000, -17.308688 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -19.973349 ], [ 148.359375, -19.973349 ], [ 148.359375, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 149.765625, -21.943046 ], [ 149.765625, -22.593726 ], [ 150.468750, -22.593726 ], [ 150.468750, -23.241346 ], [ 151.171875, -23.241346 ], [ 151.171875, -23.885838 ], [ 151.875000, -23.885838 ], [ 151.875000, -25.165173 ], [ 152.578125, -25.165173 ], [ 152.578125, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -31.353637 ], [ 152.578125, -31.353637 ], [ 152.578125, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.885931 ], [ 150.468750, -34.885931 ], [ 150.468750, -36.031332 ], [ 149.765625, -36.031332 ], [ 149.765625, -37.718590 ], [ 148.359375, -37.718590 ], [ 148.359375, -38.272689 ], [ 147.656250, -38.272689 ], [ 147.656250, -38.822591 ], [ 144.843750, -38.822591 ], [ 144.843750, -38.272689 ], [ 144.140625, -38.272689 ], [ 144.140625, -38.822591 ], [ 142.734375, -38.822591 ], [ 142.734375, -38.272689 ], [ 140.625000, -38.272689 ], [ 140.625000, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.460670 ], [ 138.515625, -35.460670 ], [ 138.515625, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -33.724340 ], [ 137.109375, -33.724340 ], [ 137.109375, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -34.885931 ], [ 135.000000, -34.885931 ], [ 135.000000, -33.724340 ], [ 134.296875, -33.724340 ], [ 134.296875, -32.546813 ], [ 132.890625, -32.546813 ], [ 132.890625, -31.952162 ], [ 131.484375, -31.952162 ], [ 131.484375, -31.353637 ], [ 129.375000, -31.353637 ], [ 129.375000, -31.952162 ], [ 127.968750, -31.952162 ], [ 127.968750, -32.546813 ], [ 125.156250, -32.546813 ], [ 125.156250, -33.137551 ], [ 124.453125, -33.137551 ], [ 124.453125, -33.724340 ], [ 120.234375, -33.724340 ], [ 120.234375, -34.307144 ], [ 118.828125, -34.307144 ], [ 118.828125, -34.885931 ], [ 115.312500, -34.885931 ], [ 115.312500, -33.724340 ], [ 116.015625, -33.724340 ], [ 116.015625, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -29.535230 ], [ 114.609375, -29.535230 ], [ 114.609375, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -27.059126 ], [ 113.203125, -27.059126 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -24.527135 ], [ 113.203125, -24.527135 ], [ 113.203125, -23.885838 ], [ 113.906250, -23.885838 ], [ 113.906250, -22.593726 ], [ 114.609375, -22.593726 ], [ 114.609375, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -21.289374 ], [ 116.718750, -21.289374 ], [ 116.718750, -20.632784 ], [ 118.828125, -20.632784 ], [ 118.828125, -19.973349 ], [ 121.640625, -19.973349 ], [ 121.640625, -18.646245 ], [ 122.343750, -18.646245 ], [ 122.343750, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.636192 ], [ 124.453125, -16.636192 ], [ 124.453125, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -14.604847 ], [ 125.859375, -14.604847 ], [ 125.859375, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.604847 ], [ 128.671875, -14.604847 ], [ 128.671875, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -14.604847 ], [ 130.078125, -14.604847 ], [ 130.078125, -13.239945 ], [ 130.781250, -13.239945 ], [ 130.781250, -12.554564 ], [ 132.890625, -12.554564 ], [ 132.890625, -11.867351 ] ] ], [ [ [ 137.812500, -34.885931 ], [ 137.812500, -35.460670 ], [ 137.109375, -35.460670 ], [ 137.109375, -34.885931 ], [ 137.812500, -34.885931 ] ] ], [ [ [ 132.890625, -11.867351 ], [ 131.484375, -11.867351 ], [ 131.484375, -11.178402 ], [ 132.890625, -11.178402 ], [ 132.890625, -11.867351 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.140625, -7.710992 ], [ 144.140625, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.102097 ], [ 141.328125, -9.102097 ], [ 141.328125, -3.513421 ], [ 144.843750, -3.513421 ], [ 144.843750, -4.214943 ], [ 145.546875, -4.214943 ], [ 145.546875, -5.615986 ], [ 146.250000, -5.615986 ], [ 146.250000, -6.315299 ], [ 147.656250, -6.315299 ], [ 147.656250, -7.013668 ], [ 146.953125, -7.013668 ], [ 146.953125, -7.710992 ], [ 148.359375, -7.710992 ], [ 148.359375, -8.407168 ], [ 149.062500, -8.407168 ], [ 149.062500, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -10.487812 ], [ 147.656250, -10.487812 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 144.843750, -8.407168 ], [ 144.843750, -7.710992 ], [ 144.140625, -7.710992 ] ] ], [ [ [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ], [ 155.390625, -5.615986 ], [ 155.390625, -6.315299 ], [ 154.687500, -6.315299 ] ] ], [ [ [ 153.281250, -4.915833 ], [ 152.578125, -4.915833 ], [ 152.578125, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -4.915833 ], [ 151.875000, -4.915833 ], [ 151.875000, -4.214943 ], [ 153.281250, -4.214943 ], [ 153.281250, -4.915833 ] ] ], [ [ [ 151.171875, -2.811371 ], [ 151.875000, -2.811371 ], [ 151.875000, -3.513421 ], [ 151.171875, -3.513421 ], [ 151.171875, -2.811371 ] ] ], [ [ [ 156.093750, -6.315299 ], [ 156.093750, -7.013668 ], [ 155.390625, -7.013668 ], [ 155.390625, -6.315299 ], [ 156.093750, -6.315299 ] ] ], [ [ [ 151.171875, -6.315299 ], [ 148.359375, -6.315299 ], [ 148.359375, -5.615986 ], [ 149.765625, -5.615986 ], [ 149.765625, -4.915833 ], [ 150.468750, -4.915833 ], [ 150.468750, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -6.315299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -3.513421 ], [ 144.843750, -4.214943 ], [ 145.546875, -4.214943 ], [ 145.546875, -5.615986 ], [ 146.250000, -5.615986 ], [ 146.250000, -6.315299 ], [ 147.656250, -6.315299 ], [ 147.656250, -7.013668 ], [ 146.953125, -7.013668 ], [ 146.953125, -7.710992 ], [ 148.359375, -7.710992 ], [ 148.359375, -8.407168 ], [ 149.062500, -8.407168 ], [ 149.062500, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -10.487812 ], [ 147.656250, -10.487812 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 144.843750, -8.407168 ], [ 144.843750, -7.710992 ], [ 144.140625, -7.710992 ], [ 144.140625, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.102097 ], [ 141.328125, -9.102097 ], [ 141.328125, -3.513421 ], [ 144.843750, -3.513421 ] ] ], [ [ [ 155.390625, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ], [ 155.390625, -5.615986 ], [ 155.390625, -6.315299 ] ] ], [ [ [ 150.468750, -4.915833 ], [ 150.468750, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -6.315299 ], [ 148.359375, -6.315299 ], [ 148.359375, -5.615986 ], [ 149.765625, -5.615986 ], [ 149.765625, -4.915833 ], [ 150.468750, -4.915833 ] ] ], [ [ [ 153.281250, -4.214943 ], [ 153.281250, -4.915833 ], [ 152.578125, -4.915833 ], [ 152.578125, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -4.915833 ], [ 151.875000, -4.915833 ], [ 151.875000, -4.214943 ], [ 153.281250, -4.214943 ] ] ], [ [ [ 151.875000, -3.513421 ], [ 151.171875, -3.513421 ], [ 151.171875, -2.811371 ], [ 151.875000, -2.811371 ], [ 151.875000, -3.513421 ] ] ], [ [ [ 155.390625, -6.315299 ], [ 156.093750, -6.315299 ], [ 156.093750, -7.013668 ], [ 155.390625, -7.013668 ], [ 155.390625, -6.315299 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 160.312500, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 160.312500, -9.102097 ], [ 160.312500, -9.795678 ] ] ], [ [ [ 161.015625, -9.102097 ], [ 160.312500, -9.102097 ], [ 160.312500, -8.407168 ], [ 161.015625, -8.407168 ], [ 161.015625, -9.102097 ] ] ], [ [ [ 159.609375, -8.407168 ], [ 158.906250, -8.407168 ], [ 158.906250, -7.710992 ], [ 159.609375, -7.710992 ], [ 159.609375, -8.407168 ] ] ], [ [ [ 157.500000, -7.710992 ], [ 156.796875, -7.710992 ], [ 156.796875, -7.013668 ], [ 157.500000, -7.013668 ], [ 157.500000, -7.710992 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 160.312500, -9.102097 ], [ 160.312500, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 160.312500, -9.102097 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -9.102097 ], [ 160.312500, -9.102097 ], [ 160.312500, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 159.609375, -7.710992 ], [ 159.609375, -8.407168 ], [ 158.906250, -8.407168 ], [ 158.906250, -7.710992 ], [ 159.609375, -7.710992 ] ] ], [ [ [ 157.500000, -7.013668 ], [ 157.500000, -7.710992 ], [ 156.796875, -7.710992 ], [ 156.796875, -7.013668 ], [ 157.500000, -7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.343750, -15.961329 ], [ 166.640625, -15.961329 ], [ 166.640625, -14.604847 ], [ 167.343750, -14.604847 ], [ 167.343750, -15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.343750, -14.604847 ], [ 167.343750, -15.961329 ], [ 166.640625, -15.961329 ], [ 166.640625, -15.284185 ], [ 167.343750, -14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.531250, -21.943046 ], [ 164.531250, -21.289374 ], [ 163.828125, -21.289374 ], [ 163.828125, -19.973349 ], [ 164.531250, -19.973349 ], [ 164.531250, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ] ] ], [ [ [ 167.343750, -21.943046 ], [ 167.343750, -22.593726 ], [ 165.937500, -22.593726 ], [ 165.937500, -21.943046 ], [ 167.343750, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -21.289374 ], [ 163.828125, -21.289374 ], [ 163.828125, -19.973349 ], [ 164.531250, -19.973349 ], [ 164.531250, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.943046 ] ] ], [ [ [ 165.937500, -21.943046 ], [ 167.343750, -21.943046 ], [ 167.343750, -22.593726 ], [ 165.937500, -22.593726 ], [ 165.937500, -21.943046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.375000, -42.032974 ], [ 173.671875, -42.032974 ], [ 173.671875, -42.553080 ], [ 172.968750, -42.553080 ], [ 172.968750, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -44.590467 ], [ 170.859375, -44.590467 ], [ 170.859375, -46.558860 ], [ 168.046875, -46.558860 ], [ 168.046875, -46.073231 ], [ 166.640625, -46.073231 ], [ 166.640625, -45.583290 ], [ 167.343750, -45.583290 ], [ 167.343750, -44.590467 ], [ 168.046875, -44.590467 ], [ 168.046875, -44.087585 ], [ 169.453125, -44.087585 ], [ 169.453125, -43.580391 ], [ 170.859375, -43.580391 ], [ 170.859375, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -41.508577 ], [ 172.265625, -41.508577 ], [ 172.265625, -40.979898 ], [ 172.968750, -40.979898 ], [ 172.968750, -41.508577 ], [ 174.375000, -41.508577 ], [ 174.375000, -42.032974 ] ] ], [ [ [ 175.781250, -36.597889 ], [ 175.781250, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -39.368279 ], [ 177.187500, -39.368279 ], [ 177.187500, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.979898 ], [ 175.781250, -40.979898 ], [ 175.781250, -41.508577 ], [ 174.375000, -41.508577 ], [ 174.375000, -40.979898 ], [ 175.078125, -40.979898 ], [ 175.078125, -39.909736 ], [ 173.671875, -39.909736 ], [ 173.671875, -39.368279 ], [ 174.375000, -39.368279 ], [ 174.375000, -38.822591 ], [ 175.078125, -38.822591 ], [ 175.078125, -37.718590 ], [ 174.375000, -37.718590 ], [ 174.375000, -36.597889 ], [ 175.781250, -36.597889 ] ] ], [ [ [ 173.671875, -36.597889 ], [ 173.671875, -36.031332 ], [ 172.968750, -36.031332 ], [ 172.968750, -34.885931 ], [ 173.671875, -34.885931 ], [ 173.671875, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ], [ 173.671875, -36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.979898 ], [ 172.968750, -41.508577 ], [ 174.375000, -41.508577 ], [ 174.375000, -42.032974 ], [ 173.671875, -42.032974 ], [ 173.671875, -42.553080 ], [ 172.968750, -42.553080 ], [ 172.968750, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -44.590467 ], [ 170.859375, -44.590467 ], [ 170.859375, -46.558860 ], [ 168.046875, -46.558860 ], [ 168.046875, -46.073231 ], [ 166.640625, -46.073231 ], [ 166.640625, -45.583290 ], [ 167.343750, -45.583290 ], [ 167.343750, -44.590467 ], [ 168.046875, -44.590467 ], [ 168.046875, -44.087585 ], [ 169.453125, -44.087585 ], [ 169.453125, -43.580391 ], [ 170.859375, -43.580391 ], [ 170.859375, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -41.508577 ], [ 172.265625, -41.508577 ], [ 172.265625, -40.979898 ], [ 172.968750, -40.979898 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 175.781250, -36.597889 ], [ 175.781250, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -39.368279 ], [ 177.187500, -39.368279 ], [ 177.187500, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.979898 ], [ 175.781250, -40.979898 ], [ 175.781250, -41.508577 ], [ 174.375000, -41.508577 ], [ 174.375000, -40.979898 ], [ 175.078125, -40.979898 ], [ 175.078125, -39.909736 ], [ 173.671875, -39.909736 ], [ 173.671875, -39.368279 ], [ 174.375000, -39.368279 ], [ 174.375000, -38.822591 ], [ 175.078125, -38.822591 ], [ 175.078125, -37.718590 ], [ 174.375000, -37.718590 ], [ 174.375000, -36.597889 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 173.671875, -36.597889 ], [ 173.671875, -36.031332 ], [ 172.968750, -36.031332 ], [ 172.968750, -34.885931 ], [ 173.671875, -34.885931 ], [ 173.671875, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 56.170023 ], [ -2.812500, 56.170023 ], [ -2.812500, 55.776573 ], [ -2.109375, 55.776573 ], [ -2.109375, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ 0.703125, 51.618017 ], [ 0.703125, 51.179343 ], [ 1.406250, 51.179343 ], [ 1.406250, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 57.704147 ], [ -2.109375, 56.170023 ], [ -2.812500, 56.170023 ], [ -2.812500, 55.776573 ], [ -2.109375, 55.776573 ], [ -2.109375, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ 0.703125, 51.618017 ], [ 0.703125, 51.179343 ], [ 1.406250, 51.179343 ], [ 1.406250, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 41.508577 ], [ 8.437500, 41.508577 ], [ 8.437500, 42.553080 ], [ 9.843750, 42.553080 ], [ 9.843750, 41.508577 ] ] ], [ [ [ 4.921875, 49.382373 ], [ 7.031250, 49.382373 ], [ 7.031250, 48.922499 ], [ 8.437500, 48.922499 ], [ 8.437500, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 47.517201 ], [ 7.031250, 47.517201 ], [ 7.031250, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 44.087585 ], [ 7.734375, 44.087585 ], [ 7.734375, 43.068888 ], [ 4.921875, 43.068888 ], [ 4.921875, 43.580391 ], [ 4.218750, 43.580391 ], [ 4.218750, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.553080 ], [ -1.406250, 42.553080 ], [ -1.406250, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.458352 ], [ -1.406250, 48.458352 ], [ -1.406250, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ 0.000000, 49.382373 ], [ 0.000000, 49.837982 ], [ 1.406250, 49.837982 ], [ 1.406250, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.382373 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 42.553080 ], [ 9.843750, 41.508577 ], [ 8.437500, 41.508577 ], [ 8.437500, 42.553080 ], [ 9.843750, 42.553080 ] ] ], [ [ [ 2.812500, 50.736455 ], [ 2.812500, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.382373 ], [ 7.031250, 49.382373 ], [ 7.031250, 48.922499 ], [ 8.437500, 48.922499 ], [ 8.437500, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 47.517201 ], [ 7.031250, 47.517201 ], [ 7.031250, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 44.087585 ], [ 7.734375, 44.087585 ], [ 7.734375, 43.068888 ], [ 4.921875, 43.068888 ], [ 4.921875, 43.580391 ], [ 4.218750, 43.580391 ], [ 4.218750, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.553080 ], [ -1.406250, 42.553080 ], [ -1.406250, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.458352 ], [ -1.406250, 48.458352 ], [ -1.406250, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ 0.000000, 49.382373 ], [ 0.000000, 49.837982 ], [ 1.406250, 49.837982 ], [ 1.406250, 50.736455 ], [ 2.812500, 50.736455 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 38.272689 ], [ -0.703125, 38.272689 ], [ -0.703125, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 37.160317 ], [ -2.109375, 37.160317 ], [ -2.109375, 36.597889 ], [ -3.515625, 36.597889 ], [ -3.515625, 43.580391 ], [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 38.272689 ], [ -0.703125, 38.272689 ], [ -0.703125, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 37.160317 ], [ -2.109375, 37.160317 ], [ -2.109375, 36.597889 ], [ -3.515625, 36.597889 ], [ -3.515625, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 31.952162 ], [ -3.515625, 31.952162 ], [ -3.515625, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 31.952162 ], [ -3.515625, 31.952162 ], [ -3.515625, 35.460670 ], [ -2.812500, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.632784 ], [ 2.109375, 20.632784 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.604847 ], [ -0.703125, 14.604847 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.239945 ], [ -3.515625, 13.239945 ], [ -3.515625, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.632784 ], [ 2.109375, 20.632784 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.604847 ], [ -0.703125, 14.604847 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.239945 ], [ -3.515625, 13.239945 ], [ -3.515625, 23.241346 ], [ -2.109375, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -3.515625, 9.795678 ], [ -3.515625, 13.239945 ], [ -2.812500, 13.239945 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ], [ -0.703125, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -3.515625, 9.795678 ], [ -3.515625, 13.239945 ], [ -2.812500, 13.239945 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.812500, 9.795678 ], [ -2.812500, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 9.795678 ], [ -2.812500, 9.795678 ] ] ], [ [ [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.515625, 4.915833 ], [ -3.515625, 5.615986 ], [ -2.812500, 5.615986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.515625, 4.915833 ], [ -3.515625, 5.615986 ] ] ], [ [ [ -2.812500, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.515625, 5.615986 ], [ -3.515625, 7.013668 ], [ -2.812500, 7.013668 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.515625, 5.615986 ], [ -3.515625, 7.013668 ], [ -2.812500, 7.013668 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.453125, 69.162558 ], [ 36.562500, 69.162558 ], [ 36.562500, 68.911005 ], [ 37.265625, 68.911005 ], [ 37.265625, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.138852 ], [ 39.375000, 68.138852 ], [ 39.375000, 67.875541 ], [ 40.078125, 67.875541 ], [ 40.078125, 67.609221 ], [ 40.781250, 67.609221 ], [ 40.781250, 66.513260 ], [ 40.078125, 66.513260 ], [ 40.078125, 65.946472 ], [ 37.265625, 65.946472 ], [ 37.265625, 66.231457 ], [ 35.859375, 66.231457 ], [ 35.859375, 66.513260 ], [ 34.453125, 66.513260 ], [ 34.453125, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.513260 ], [ 33.046875, 66.513260 ], [ 33.046875, 66.231457 ], [ 34.453125, 66.231457 ], [ 34.453125, 65.946472 ], [ 30.234375, 65.946472 ], [ 30.234375, 66.231457 ], [ 29.531250, 66.231457 ], [ 29.531250, 66.791909 ], [ 28.828125, 66.791909 ], [ 28.828125, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.339861 ], [ 30.234375, 67.339861 ], [ 30.234375, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 67.875541 ], [ 28.828125, 67.875541 ], [ 28.828125, 68.138852 ], [ 28.125000, 68.138852 ], [ 28.125000, 68.656555 ], [ 28.828125, 68.656555 ], [ 28.828125, 69.162558 ], [ 30.234375, 69.162558 ], [ 30.234375, 69.411242 ], [ 30.937500, 69.411242 ], [ 30.937500, 69.657086 ], [ 33.046875, 69.657086 ], [ 33.046875, 69.411242 ], [ 34.453125, 69.411242 ], [ 34.453125, 69.162558 ] ] ], [ [ [ 43.593750, 65.946472 ], [ 41.484375, 65.946472 ], [ 41.484375, 66.231457 ], [ 42.187500, 66.231457 ], [ 42.187500, 66.513260 ], [ 42.890625, 66.513260 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 65.946472 ] ] ], [ [ [ 80.156250, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 72.181804 ], [ 80.859375, 72.181804 ], [ 80.859375, 73.627789 ], [ 82.265625, 73.627789 ], [ 82.265625, 73.824820 ], [ 85.781250, 73.824820 ], [ 85.781250, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.211983 ], [ 85.781250, 74.211983 ], [ 85.781250, 74.590108 ], [ 86.484375, 74.590108 ], [ 86.484375, 74.959392 ], [ 87.187500, 74.959392 ], [ 87.187500, 75.140778 ], [ 89.296875, 75.140778 ], [ 89.296875, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.672197 ], [ 92.109375, 75.672197 ], [ 92.109375, 75.845169 ], [ 93.515625, 75.845169 ], [ 93.515625, 65.946472 ], [ 44.296875, 65.946472 ], [ 44.296875, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 67.609221 ], [ 44.296875, 67.609221 ], [ 44.296875, 68.138852 ], [ 43.593750, 68.138852 ], [ 43.593750, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.875541 ], [ 47.109375, 67.875541 ], [ 47.109375, 67.609221 ], [ 45.703125, 67.609221 ], [ 45.703125, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.609221 ], [ 49.218750, 67.609221 ], [ 49.218750, 67.875541 ], [ 50.625000, 67.875541 ], [ 50.625000, 68.138852 ], [ 51.328125, 68.138852 ], [ 51.328125, 68.399180 ], [ 52.734375, 68.399180 ], [ 52.734375, 68.656555 ], [ 53.437500, 68.656555 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 54.140625, 68.399180 ], [ 53.437500, 68.399180 ], [ 53.437500, 68.138852 ], [ 55.546875, 68.138852 ], [ 55.546875, 68.399180 ], [ 58.359375, 68.399180 ], [ 58.359375, 68.656555 ], [ 59.765625, 68.656555 ], [ 59.765625, 68.399180 ], [ 60.468750, 68.399180 ], [ 60.468750, 68.656555 ], [ 61.171875, 68.656555 ], [ 61.171875, 68.911005 ], [ 60.468750, 68.911005 ], [ 60.468750, 69.162558 ], [ 59.765625, 69.162558 ], [ 59.765625, 69.657086 ], [ 60.468750, 69.657086 ], [ 60.468750, 69.900118 ], [ 61.171875, 69.900118 ], [ 61.171875, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.411242 ], [ 63.984375, 69.411242 ], [ 63.984375, 69.162558 ], [ 64.687500, 69.162558 ], [ 64.687500, 68.911005 ], [ 65.390625, 68.911005 ], [ 65.390625, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.138852 ], [ 68.203125, 68.138852 ], [ 68.203125, 68.399180 ], [ 68.906250, 68.399180 ], [ 68.906250, 68.911005 ], [ 68.203125, 68.911005 ], [ 68.203125, 69.411242 ], [ 66.796875, 69.411242 ], [ 66.796875, 69.657086 ], [ 67.500000, 69.657086 ], [ 67.500000, 70.140364 ], [ 66.796875, 70.140364 ], [ 66.796875, 71.300793 ], [ 67.500000, 71.300793 ], [ 67.500000, 71.746432 ], [ 68.203125, 71.746432 ], [ 68.203125, 72.395706 ], [ 68.906250, 72.395706 ], [ 68.906250, 72.816074 ], [ 69.609375, 72.816074 ], [ 69.609375, 73.022592 ], [ 70.312500, 73.022592 ], [ 70.312500, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.395706 ], [ 73.125000, 72.395706 ], [ 73.125000, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.524909 ], [ 71.718750, 71.524909 ], [ 71.718750, 71.074056 ], [ 72.421875, 71.074056 ], [ 72.421875, 70.612614 ], [ 73.125000, 70.612614 ], [ 73.125000, 69.657086 ], [ 72.421875, 69.657086 ], [ 72.421875, 68.656555 ], [ 73.125000, 68.656555 ], [ 73.125000, 68.399180 ], [ 73.828125, 68.399180 ], [ 73.828125, 67.875541 ], [ 73.125000, 67.875541 ], [ 73.125000, 67.339861 ], [ 72.421875, 67.339861 ], [ 72.421875, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.231457 ], [ 73.125000, 66.231457 ], [ 73.125000, 66.513260 ], [ 73.828125, 66.513260 ], [ 73.828125, 67.067433 ], [ 74.531250, 67.067433 ], [ 74.531250, 67.609221 ], [ 75.234375, 67.609221 ], [ 75.234375, 68.138852 ], [ 74.531250, 68.138852 ], [ 74.531250, 68.656555 ], [ 75.234375, 68.656555 ], [ 75.234375, 68.911005 ], [ 73.828125, 68.911005 ], [ 73.828125, 70.140364 ], [ 74.531250, 70.140364 ], [ 74.531250, 70.844673 ], [ 73.828125, 70.844673 ], [ 73.828125, 71.300793 ], [ 73.125000, 71.300793 ], [ 73.125000, 71.524909 ], [ 73.828125, 71.524909 ], [ 73.828125, 71.746432 ], [ 74.531250, 71.746432 ], [ 74.531250, 71.965388 ], [ 75.234375, 71.965388 ], [ 75.234375, 72.395706 ], [ 74.531250, 72.395706 ], [ 74.531250, 72.816074 ], [ 75.234375, 72.816074 ], [ 75.234375, 72.607120 ], [ 75.937500, 72.607120 ], [ 75.937500, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.181804 ], [ 78.750000, 72.181804 ], [ 78.750000, 72.395706 ], [ 79.453125, 72.395706 ], [ 79.453125, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 71.965388 ] ], [ [ 75.234375, 71.746432 ], [ 75.234375, 71.074056 ], [ 76.640625, 71.074056 ], [ 76.640625, 71.524909 ], [ 75.937500, 71.524909 ], [ 75.937500, 71.746432 ], [ 75.234375, 71.746432 ] ] ], [ [ [ 68.906250, 76.351896 ], [ 68.203125, 76.351896 ], [ 68.203125, 76.016094 ], [ 66.796875, 76.016094 ], [ 66.796875, 75.845169 ], [ 65.390625, 75.845169 ], [ 65.390625, 75.672197 ], [ 64.687500, 75.672197 ], [ 64.687500, 75.497157 ], [ 63.281250, 75.497157 ], [ 63.281250, 75.320025 ], [ 61.875000, 75.320025 ], [ 61.875000, 75.140778 ], [ 61.171875, 75.140778 ], [ 61.171875, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.775843 ], [ 59.765625, 74.775843 ], [ 59.765625, 74.590108 ], [ 59.062500, 74.590108 ], [ 59.062500, 74.402163 ], [ 58.359375, 74.402163 ], [ 58.359375, 74.019543 ], [ 57.656250, 74.019543 ], [ 57.656250, 73.627789 ], [ 56.953125, 73.627789 ], [ 56.953125, 73.022592 ], [ 56.250000, 73.022592 ], [ 56.250000, 72.607120 ], [ 55.546875, 72.607120 ], [ 55.546875, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.074056 ], [ 56.953125, 71.074056 ], [ 56.953125, 70.612614 ], [ 54.843750, 70.612614 ], [ 54.843750, 70.844673 ], [ 53.437500, 70.844673 ], [ 53.437500, 71.300793 ], [ 52.031250, 71.300793 ], [ 52.031250, 71.524909 ], [ 51.328125, 71.524909 ], [ 51.328125, 71.965388 ], [ 52.734375, 71.965388 ], [ 52.734375, 73.022592 ], [ 53.437500, 73.022592 ], [ 53.437500, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.627789 ], [ 53.437500, 73.824820 ], [ 54.140625, 73.824820 ], [ 54.140625, 74.019543 ], [ 54.843750, 74.019543 ], [ 54.843750, 74.211983 ], [ 55.546875, 74.211983 ], [ 55.546875, 74.402163 ], [ 56.250000, 74.402163 ], [ 56.250000, 74.775843 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.320025 ], [ 56.953125, 75.320025 ], [ 56.953125, 75.497157 ], [ 57.656250, 75.497157 ], [ 57.656250, 75.672197 ], [ 58.359375, 75.672197 ], [ 58.359375, 75.845169 ], [ 59.765625, 75.845169 ], [ 59.765625, 76.016094 ], [ 61.171875, 76.016094 ], [ 61.171875, 76.184995 ], [ 62.578125, 76.184995 ], [ 62.578125, 76.351896 ], [ 63.984375, 76.351896 ], [ 63.984375, 76.516819 ], [ 65.390625, 76.516819 ], [ 65.390625, 76.679785 ], [ 66.093750, 76.679785 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ], [ 67.500000, 76.999935 ], [ 68.203125, 76.999935 ], [ 68.203125, 76.679785 ], [ 68.906250, 76.679785 ], [ 68.906250, 76.351896 ] ] ], [ [ [ 92.109375, 80.415707 ], [ 92.109375, 80.647035 ], [ 92.812500, 80.647035 ], [ 92.812500, 80.872827 ], [ 93.515625, 80.872827 ], [ 93.515625, 79.812302 ], [ 92.812500, 79.812302 ], [ 92.812500, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.415707 ], [ 92.109375, 80.415707 ] ] ], [ [ [ 51.328125, 80.415707 ], [ 49.921875, 80.415707 ], [ 49.921875, 80.297927 ], [ 49.218750, 80.297927 ], [ 49.218750, 80.178713 ], [ 48.515625, 80.178713 ], [ 48.515625, 80.058050 ], [ 47.109375, 80.058050 ], [ 47.109375, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.415707 ], [ 47.109375, 80.415707 ], [ 47.109375, 80.532071 ], [ 45.703125, 80.532071 ], [ 45.703125, 80.647035 ], [ 46.406250, 80.647035 ], [ 46.406250, 80.760615 ], [ 48.515625, 80.760615 ], [ 48.515625, 80.647035 ], [ 49.218750, 80.647035 ], [ 49.218750, 80.760615 ], [ 50.625000, 80.760615 ], [ 50.625000, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.415707 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.078125, 65.946472 ], [ 37.265625, 65.946472 ], [ 37.265625, 66.231457 ], [ 35.859375, 66.231457 ], [ 35.859375, 66.513260 ], [ 34.453125, 66.513260 ], [ 34.453125, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.513260 ], [ 33.046875, 66.513260 ], [ 33.046875, 66.231457 ], [ 34.453125, 66.231457 ], [ 34.453125, 65.946472 ], [ 30.234375, 65.946472 ], [ 30.234375, 66.231457 ], [ 29.531250, 66.231457 ], [ 29.531250, 66.791909 ], [ 28.828125, 66.791909 ], [ 28.828125, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.339861 ], [ 30.234375, 67.339861 ], [ 30.234375, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 67.875541 ], [ 28.828125, 67.875541 ], [ 28.828125, 68.138852 ], [ 28.125000, 68.138852 ], [ 28.125000, 68.656555 ], [ 28.828125, 68.656555 ], [ 28.828125, 69.162558 ], [ 30.234375, 69.162558 ], [ 30.234375, 69.411242 ], [ 30.937500, 69.411242 ], [ 30.937500, 69.657086 ], [ 33.046875, 69.657086 ], [ 33.046875, 69.411242 ], [ 34.453125, 69.411242 ], [ 34.453125, 69.162558 ], [ 36.562500, 69.162558 ], [ 36.562500, 68.911005 ], [ 37.265625, 68.911005 ], [ 37.265625, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.138852 ], [ 39.375000, 68.138852 ], [ 39.375000, 67.875541 ], [ 40.078125, 67.875541 ], [ 40.078125, 67.609221 ], [ 40.781250, 67.609221 ], [ 40.781250, 66.513260 ], [ 40.078125, 66.513260 ], [ 40.078125, 65.946472 ] ] ], [ [ [ 93.515625, 65.946472 ], [ 44.296875, 65.946472 ], [ 44.296875, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 67.609221 ], [ 44.296875, 67.609221 ], [ 44.296875, 68.138852 ], [ 43.593750, 68.138852 ], [ 43.593750, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.875541 ], [ 47.109375, 67.875541 ], [ 47.109375, 67.609221 ], [ 45.703125, 67.609221 ], [ 45.703125, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.609221 ], [ 49.218750, 67.609221 ], [ 49.218750, 67.875541 ], [ 50.625000, 67.875541 ], [ 50.625000, 68.138852 ], [ 51.328125, 68.138852 ], [ 51.328125, 68.399180 ], [ 52.734375, 68.399180 ], [ 52.734375, 68.656555 ], [ 53.437500, 68.656555 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 54.140625, 68.399180 ], [ 53.437500, 68.399180 ], [ 53.437500, 68.138852 ], [ 55.546875, 68.138852 ], [ 55.546875, 68.399180 ], [ 58.359375, 68.399180 ], [ 58.359375, 68.656555 ], [ 59.765625, 68.656555 ], [ 59.765625, 68.399180 ], [ 60.468750, 68.399180 ], [ 60.468750, 68.656555 ], [ 61.171875, 68.656555 ], [ 61.171875, 68.911005 ], [ 60.468750, 68.911005 ], [ 60.468750, 69.162558 ], [ 59.765625, 69.162558 ], [ 59.765625, 69.657086 ], [ 60.468750, 69.657086 ], [ 60.468750, 69.900118 ], [ 61.171875, 69.900118 ], [ 61.171875, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.411242 ], [ 63.984375, 69.411242 ], [ 63.984375, 69.162558 ], [ 64.687500, 69.162558 ], [ 64.687500, 68.911005 ], [ 65.390625, 68.911005 ], [ 65.390625, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.138852 ], [ 68.203125, 68.138852 ], [ 68.203125, 68.399180 ], [ 68.906250, 68.399180 ], [ 68.906250, 68.911005 ], [ 68.203125, 68.911005 ], [ 68.203125, 69.411242 ], [ 66.796875, 69.411242 ], [ 66.796875, 69.657086 ], [ 67.500000, 69.657086 ], [ 67.500000, 70.140364 ], [ 66.796875, 70.140364 ], [ 66.796875, 71.300793 ], [ 67.500000, 71.300793 ], [ 67.500000, 71.746432 ], [ 68.203125, 71.746432 ], [ 68.203125, 72.395706 ], [ 68.906250, 72.395706 ], [ 68.906250, 72.816074 ], [ 69.609375, 72.816074 ], [ 69.609375, 73.022592 ], [ 70.312500, 73.022592 ], [ 70.312500, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.395706 ], [ 73.125000, 72.395706 ], [ 73.125000, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.524909 ], [ 71.718750, 71.524909 ], [ 71.718750, 71.074056 ], [ 72.421875, 71.074056 ], [ 72.421875, 70.612614 ], [ 73.125000, 70.612614 ], [ 73.125000, 69.657086 ], [ 72.421875, 69.657086 ], [ 72.421875, 68.656555 ], [ 73.125000, 68.656555 ], [ 73.125000, 68.399180 ], [ 73.828125, 68.399180 ], [ 73.828125, 67.875541 ], [ 73.125000, 67.875541 ], [ 73.125000, 67.339861 ], [ 72.421875, 67.339861 ], [ 72.421875, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.231457 ], [ 73.125000, 66.231457 ], [ 73.125000, 66.513260 ], [ 73.828125, 66.513260 ], [ 73.828125, 67.067433 ], [ 74.531250, 67.067433 ], [ 74.531250, 67.609221 ], [ 75.234375, 67.609221 ], [ 75.234375, 68.138852 ], [ 74.531250, 68.138852 ], [ 74.531250, 68.656555 ], [ 75.234375, 68.656555 ], [ 75.234375, 68.911005 ], [ 73.828125, 68.911005 ], [ 73.828125, 70.140364 ], [ 74.531250, 70.140364 ], [ 74.531250, 70.844673 ], [ 73.828125, 70.844673 ], [ 73.828125, 71.300793 ], [ 73.125000, 71.300793 ], [ 73.125000, 71.524909 ], [ 73.828125, 71.524909 ], [ 73.828125, 71.746432 ], [ 74.531250, 71.746432 ], [ 74.531250, 71.965388 ], [ 75.234375, 71.965388 ], [ 75.234375, 72.395706 ], [ 74.531250, 72.395706 ], [ 74.531250, 72.816074 ], [ 75.234375, 72.816074 ], [ 75.234375, 72.607120 ], [ 75.937500, 72.607120 ], [ 75.937500, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.181804 ], [ 78.750000, 72.181804 ], [ 78.750000, 72.395706 ], [ 79.453125, 72.395706 ], [ 79.453125, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 72.181804 ], [ 80.859375, 72.181804 ], [ 80.859375, 73.627789 ], [ 82.265625, 73.627789 ], [ 82.265625, 73.824820 ], [ 85.781250, 73.824820 ], [ 85.781250, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.211983 ], [ 85.781250, 74.211983 ], [ 85.781250, 74.590108 ], [ 86.484375, 74.590108 ], [ 86.484375, 74.959392 ], [ 87.187500, 74.959392 ], [ 87.187500, 75.140778 ], [ 89.296875, 75.140778 ], [ 89.296875, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.672197 ], [ 92.109375, 75.672197 ], [ 92.109375, 75.845169 ], [ 93.515625, 75.845169 ], [ 93.515625, 65.946472 ] ], [ [ 75.937500, 71.746432 ], [ 75.234375, 71.746432 ], [ 75.234375, 71.074056 ], [ 76.640625, 71.074056 ], [ 76.640625, 71.524909 ], [ 75.937500, 71.524909 ], [ 75.937500, 71.746432 ] ] ], [ [ [ 68.203125, 76.999935 ], [ 68.203125, 76.679785 ], [ 68.906250, 76.679785 ], [ 68.906250, 76.351896 ], [ 68.203125, 76.351896 ], [ 68.203125, 76.016094 ], [ 66.796875, 76.016094 ], [ 66.796875, 75.845169 ], [ 65.390625, 75.845169 ], [ 65.390625, 75.672197 ], [ 64.687500, 75.672197 ], [ 64.687500, 75.497157 ], [ 63.281250, 75.497157 ], [ 63.281250, 75.320025 ], [ 61.875000, 75.320025 ], [ 61.875000, 75.140778 ], [ 61.171875, 75.140778 ], [ 61.171875, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.775843 ], [ 59.765625, 74.775843 ], [ 59.765625, 74.590108 ], [ 59.062500, 74.590108 ], [ 59.062500, 74.402163 ], [ 58.359375, 74.402163 ], [ 58.359375, 74.019543 ], [ 57.656250, 74.019543 ], [ 57.656250, 73.627789 ], [ 56.953125, 73.627789 ], [ 56.953125, 73.022592 ], [ 56.250000, 73.022592 ], [ 56.250000, 72.607120 ], [ 55.546875, 72.607120 ], [ 55.546875, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.074056 ], [ 56.953125, 71.074056 ], [ 56.953125, 70.612614 ], [ 54.843750, 70.612614 ], [ 54.843750, 70.844673 ], [ 53.437500, 70.844673 ], [ 53.437500, 71.300793 ], [ 52.031250, 71.300793 ], [ 52.031250, 71.524909 ], [ 51.328125, 71.524909 ], [ 51.328125, 71.965388 ], [ 52.734375, 71.965388 ], [ 52.734375, 73.022592 ], [ 53.437500, 73.022592 ], [ 53.437500, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.627789 ], [ 53.437500, 73.824820 ], [ 54.140625, 73.824820 ], [ 54.140625, 74.019543 ], [ 54.843750, 74.019543 ], [ 54.843750, 74.211983 ], [ 55.546875, 74.211983 ], [ 55.546875, 74.402163 ], [ 56.250000, 74.402163 ], [ 56.250000, 74.775843 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.320025 ], [ 56.953125, 75.320025 ], [ 56.953125, 75.497157 ], [ 57.656250, 75.497157 ], [ 57.656250, 75.672197 ], [ 58.359375, 75.672197 ], [ 58.359375, 75.845169 ], [ 59.765625, 75.845169 ], [ 59.765625, 76.016094 ], [ 61.171875, 76.016094 ], [ 61.171875, 76.184995 ], [ 62.578125, 76.184995 ], [ 62.578125, 76.351896 ], [ 63.984375, 76.351896 ], [ 63.984375, 76.516819 ], [ 65.390625, 76.516819 ], [ 65.390625, 76.679785 ], [ 66.093750, 76.679785 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ], [ 67.500000, 76.999935 ], [ 68.203125, 76.999935 ] ] ], [ [ [ 93.515625, 80.872827 ], [ 93.515625, 79.812302 ], [ 92.812500, 79.812302 ], [ 92.812500, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.415707 ], [ 92.109375, 80.415707 ], [ 92.109375, 80.647035 ], [ 92.812500, 80.647035 ], [ 92.812500, 80.872827 ], [ 93.515625, 80.872827 ] ] ], [ [ [ 50.625000, 80.760615 ], [ 50.625000, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.415707 ], [ 49.921875, 80.415707 ], [ 49.921875, 80.297927 ], [ 49.218750, 80.297927 ], [ 49.218750, 80.178713 ], [ 48.515625, 80.178713 ], [ 48.515625, 80.058050 ], [ 47.109375, 80.058050 ], [ 47.109375, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.415707 ], [ 47.109375, 80.415707 ], [ 47.109375, 80.532071 ], [ 45.703125, 80.532071 ], [ 45.703125, 80.647035 ], [ 46.406250, 80.647035 ], [ 46.406250, 80.760615 ], [ 48.515625, 80.760615 ], [ 48.515625, 80.647035 ], [ 49.218750, 80.647035 ], [ 49.218750, 80.760615 ], [ 50.625000, 80.760615 ] ] ], [ [ [ 41.484375, 65.946472 ], [ 41.484375, 66.231457 ], [ 42.187500, 66.231457 ], [ 42.187500, 66.513260 ], [ 42.890625, 66.513260 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 65.946472 ], [ 41.484375, 65.946472 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 83.671875, 50.289339 ], [ 83.671875, 50.736455 ], [ 80.156250, 50.736455 ], [ 80.156250, 51.179343 ], [ 79.453125, 51.179343 ], [ 79.453125, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.908902 ], [ 78.046875, 52.908902 ], [ 78.046875, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.640625, 53.748711 ], [ 76.640625, 54.162434 ], [ 75.234375, 54.162434 ], [ 75.234375, 53.748711 ], [ 74.531250, 53.748711 ], [ 74.531250, 53.330873 ], [ 73.125000, 53.330873 ], [ 73.125000, 53.748711 ], [ 73.828125, 53.748711 ], [ 73.828125, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.977614 ], [ 69.609375, 54.977614 ], [ 69.609375, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 54.977614 ], [ 67.500000, 54.977614 ], [ 67.500000, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.162434 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.330873 ], [ 61.875000, 53.330873 ], [ 61.875000, 52.908902 ], [ 60.468750, 52.908902 ], [ 60.468750, 52.482780 ], [ 61.171875, 52.482780 ], [ 61.171875, 52.052490 ], [ 59.765625, 52.052490 ], [ 59.765625, 51.618017 ], [ 61.171875, 51.618017 ], [ 61.171875, 51.179343 ], [ 61.875000, 51.179343 ], [ 61.875000, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 51.179343 ], [ 56.953125, 51.179343 ], [ 56.953125, 50.736455 ], [ 54.843750, 50.736455 ], [ 54.843750, 51.179343 ], [ 52.734375, 51.179343 ], [ 52.734375, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.179343 ], [ 49.218750, 51.179343 ], [ 49.218750, 50.736455 ], [ 48.515625, 50.736455 ], [ 48.515625, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.382373 ], [ 46.406250, 49.382373 ], [ 46.406250, 48.922499 ], [ 47.109375, 48.922499 ], [ 47.109375, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.517201 ], [ 47.812500, 47.517201 ], [ 47.812500, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 46.558860 ], [ 49.218750, 46.558860 ], [ 49.218750, 46.073231 ], [ 48.515625, 46.073231 ], [ 48.515625, 45.583290 ], [ 47.812500, 45.583290 ], [ 47.812500, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.406250, 44.590467 ], [ 46.406250, 44.087585 ], [ 47.109375, 44.087585 ], [ 47.109375, 43.580391 ], [ 47.812500, 43.580391 ], [ 47.812500, 42.553080 ], [ 48.515625, 42.553080 ], [ 48.515625, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 40.979898 ], [ 47.109375, 40.979898 ], [ 47.109375, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.553080 ], [ 42.187500, 42.553080 ], [ 42.187500, 43.068888 ], [ 40.781250, 43.068888 ], [ 40.781250, 43.580391 ], [ 38.671875, 43.580391 ], [ 38.671875, 44.087585 ], [ 37.265625, 44.087585 ], [ 37.265625, 44.590467 ], [ 36.562500, 44.590467 ], [ 36.562500, 45.089036 ], [ 37.265625, 45.089036 ], [ 37.265625, 45.583290 ], [ 37.968750, 45.583290 ], [ 37.968750, 46.558860 ], [ 39.375000, 46.558860 ], [ 39.375000, 47.040182 ], [ 37.968750, 47.040182 ], [ 37.968750, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.989922 ], [ 40.078125, 47.989922 ], [ 40.078125, 48.458352 ], [ 39.375000, 48.458352 ], [ 39.375000, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.382373 ], [ 38.671875, 49.382373 ], [ 38.671875, 49.837982 ], [ 37.265625, 49.837982 ], [ 37.265625, 50.289339 ], [ 35.156250, 50.289339 ], [ 35.156250, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 55.379110 ], [ 30.234375, 55.379110 ], [ 30.234375, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 56.944974 ], [ 27.421875, 56.944974 ], [ 27.421875, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 28.828125, 59.534318 ], [ 28.828125, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.586967 ], [ 28.828125, 60.586967 ], [ 28.828125, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.938950 ], [ 30.937500, 61.938950 ], [ 30.937500, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 64.472794 ], [ 29.531250, 64.472794 ], [ 29.531250, 65.366837 ], [ 30.234375, 65.366837 ], [ 30.234375, 65.946472 ], [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 63.860036 ], [ 37.265625, 63.860036 ], [ 37.265625, 64.472794 ], [ 36.562500, 64.472794 ], [ 36.562500, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.472794 ], [ 40.781250, 64.472794 ], [ 40.781250, 65.072130 ], [ 40.078125, 65.072130 ], [ 40.078125, 65.366837 ], [ 40.781250, 65.366837 ], [ 40.781250, 65.946472 ], [ 93.515625, 65.946472 ], [ 93.515625, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 49.837982 ], [ 89.296875, 49.837982 ], [ 89.296875, 49.382373 ], [ 86.484375, 49.382373 ], [ 86.484375, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.289339 ], [ 83.671875, 50.289339 ] ] ], [ [ [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 22.500000, 54.977614 ], [ 22.500000, 54.162434 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 63.860036 ], [ 37.265625, 63.860036 ], [ 37.265625, 64.472794 ], [ 36.562500, 64.472794 ], [ 36.562500, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.472794 ], [ 40.781250, 64.472794 ], [ 40.781250, 65.072130 ], [ 40.078125, 65.072130 ], [ 40.078125, 65.366837 ], [ 40.781250, 65.366837 ], [ 93.515625, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 49.837982 ], [ 89.296875, 49.837982 ], [ 89.296875, 49.382373 ], [ 86.484375, 49.382373 ], [ 86.484375, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.289339 ], [ 83.671875, 50.289339 ], [ 83.671875, 50.736455 ], [ 80.156250, 50.736455 ], [ 80.156250, 51.179343 ], [ 79.453125, 51.179343 ], [ 79.453125, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.908902 ], [ 78.046875, 52.908902 ], [ 78.046875, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.640625, 53.748711 ], [ 76.640625, 54.162434 ], [ 75.234375, 54.162434 ], [ 75.234375, 53.748711 ], [ 74.531250, 53.748711 ], [ 74.531250, 53.330873 ], [ 73.125000, 53.330873 ], [ 73.125000, 53.748711 ], [ 73.828125, 53.748711 ], [ 73.828125, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.977614 ], [ 69.609375, 54.977614 ], [ 69.609375, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 54.977614 ], [ 67.500000, 54.977614 ], [ 67.500000, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.162434 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.330873 ], [ 61.875000, 53.330873 ], [ 61.875000, 52.908902 ], [ 60.468750, 52.908902 ], [ 60.468750, 52.482780 ], [ 61.171875, 52.482780 ], [ 61.171875, 52.052490 ], [ 59.765625, 52.052490 ], [ 59.765625, 51.618017 ], [ 61.171875, 51.618017 ], [ 61.171875, 51.179343 ], [ 61.875000, 51.179343 ], [ 61.875000, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 51.179343 ], [ 56.953125, 51.179343 ], [ 56.953125, 50.736455 ], [ 54.843750, 50.736455 ], [ 54.843750, 51.179343 ], [ 52.734375, 51.179343 ], [ 52.734375, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.179343 ], [ 49.218750, 51.179343 ], [ 49.218750, 50.736455 ], [ 48.515625, 50.736455 ], [ 48.515625, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.382373 ], [ 46.406250, 49.382373 ], [ 46.406250, 48.922499 ], [ 47.109375, 48.922499 ], [ 47.109375, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.517201 ], [ 47.812500, 47.517201 ], [ 47.812500, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 46.558860 ], [ 49.218750, 46.558860 ], [ 49.218750, 46.073231 ], [ 48.515625, 46.073231 ], [ 48.515625, 45.583290 ], [ 47.812500, 45.583290 ], [ 47.812500, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.406250, 44.590467 ], [ 46.406250, 44.087585 ], [ 47.109375, 44.087585 ], [ 47.109375, 43.580391 ], [ 47.812500, 43.580391 ], [ 47.812500, 42.553080 ], [ 48.515625, 42.553080 ], [ 48.515625, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 40.979898 ], [ 47.109375, 40.979898 ], [ 47.109375, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.553080 ], [ 42.187500, 42.553080 ], [ 42.187500, 43.068888 ], [ 40.781250, 43.068888 ], [ 40.781250, 43.580391 ], [ 38.671875, 43.580391 ], [ 38.671875, 44.087585 ], [ 37.265625, 44.087585 ], [ 37.265625, 44.590467 ], [ 36.562500, 44.590467 ], [ 36.562500, 45.089036 ], [ 37.265625, 45.089036 ], [ 37.265625, 45.583290 ], [ 37.968750, 45.583290 ], [ 37.968750, 46.558860 ], [ 39.375000, 46.558860 ], [ 39.375000, 47.040182 ], [ 37.968750, 47.040182 ], [ 37.968750, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.989922 ], [ 40.078125, 47.989922 ], [ 40.078125, 48.458352 ], [ 39.375000, 48.458352 ], [ 39.375000, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.382373 ], [ 38.671875, 49.382373 ], [ 38.671875, 49.837982 ], [ 37.265625, 49.837982 ], [ 37.265625, 50.289339 ], [ 35.156250, 50.289339 ], [ 35.156250, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 55.379110 ], [ 30.234375, 55.379110 ], [ 30.234375, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 56.944974 ], [ 27.421875, 56.944974 ], [ 27.421875, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 28.828125, 59.534318 ], [ 28.828125, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.586967 ], [ 28.828125, 60.586967 ], [ 28.828125, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.938950 ], [ 30.937500, 61.938950 ], [ 30.937500, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 64.472794 ], [ 29.531250, 64.472794 ], [ 29.531250, 65.366837 ], [ 30.234375, 65.366837 ], [ 30.234375, 65.946472 ], [ 35.156250, 65.946472 ] ] ], [ [ [ 22.500000, 54.977614 ], [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 22.500000, 54.977614 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 77.312520 ], [ 106.171875, 77.312520 ], [ 106.171875, 77.157163 ], [ 105.468750, 77.157163 ], [ 105.468750, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.679785 ], [ 107.578125, 76.679785 ], [ 107.578125, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.775843 ], [ 111.796875, 74.775843 ], [ 111.796875, 74.590108 ], [ 111.093750, 74.590108 ], [ 111.093750, 74.402163 ], [ 110.390625, 74.402163 ], [ 110.390625, 74.211983 ], [ 109.687500, 74.211983 ], [ 109.687500, 74.019543 ], [ 110.390625, 74.019543 ], [ 110.390625, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 115.312500, 73.627789 ], [ 115.312500, 73.824820 ], [ 116.718750, 73.824820 ], [ 116.718750, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 123.750000, 73.824820 ], [ 123.750000, 73.627789 ], [ 127.265625, 73.627789 ], [ 127.265625, 73.428424 ], [ 127.968750, 73.428424 ], [ 127.968750, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.607120 ], [ 129.375000, 72.607120 ], [ 129.375000, 72.181804 ], [ 128.671875, 72.181804 ], [ 128.671875, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 71.074056 ], [ 130.781250, 71.074056 ], [ 130.781250, 70.844673 ], [ 131.484375, 70.844673 ], [ 131.484375, 71.300793 ], [ 132.187500, 71.300793 ], [ 132.187500, 71.524909 ], [ 132.890625, 71.524909 ], [ 132.890625, 71.300793 ], [ 134.296875, 71.300793 ], [ 134.296875, 71.524909 ], [ 137.109375, 71.524909 ], [ 137.109375, 71.300793 ], [ 138.515625, 71.300793 ], [ 138.515625, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.965388 ], [ 139.218750, 71.965388 ], [ 139.218750, 72.395706 ], [ 139.921875, 72.395706 ], [ 139.921875, 72.607120 ], [ 140.625000, 72.607120 ], [ 140.625000, 72.816074 ], [ 142.031250, 72.816074 ], [ 142.031250, 72.607120 ], [ 144.843750, 72.607120 ], [ 144.843750, 72.395706 ], [ 147.656250, 72.395706 ], [ 147.656250, 72.181804 ], [ 149.765625, 72.181804 ], [ 149.765625, 71.746432 ], [ 150.468750, 71.746432 ], [ 150.468750, 71.300793 ], [ 151.171875, 71.300793 ], [ 151.171875, 71.074056 ], [ 152.578125, 71.074056 ], [ 152.578125, 70.844673 ], [ 155.390625, 70.844673 ], [ 155.390625, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 69.411242 ], [ 162.421875, 69.411242 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.411242 ], [ 167.343750, 69.411242 ], [ 167.343750, 69.657086 ], [ 168.046875, 69.657086 ], [ 168.046875, 69.411242 ], [ 168.750000, 69.411242 ], [ 168.750000, 68.911005 ], [ 169.453125, 68.911005 ], [ 169.453125, 68.656555 ], [ 170.859375, 68.656555 ], [ 170.859375, 69.162558 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 171.562500, 70.140364 ], [ 171.562500, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 65.658275 ], [ 93.515625, 65.658275 ], [ 93.515625, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.016094 ], [ 97.734375, 76.016094 ], [ 97.734375, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.351896 ], [ 100.546875, 76.351896 ], [ 100.546875, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.999935 ], [ 101.953125, 76.999935 ], [ 101.953125, 77.312520 ], [ 102.656250, 77.312520 ], [ 102.656250, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.312520 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 179.296875, 71.074056 ], [ 179.296875, 71.300793 ], [ 180.000000, 71.300793 ], [ 180.000000, 70.844673 ] ] ], [ [ [ 142.734375, 73.428424 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 139.921875, 73.226700 ], [ 139.921875, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.824820 ], [ 142.031250, 73.824820 ], [ 142.031250, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.428424 ] ] ], [ [ [ 141.328125, 75.845169 ], [ 142.734375, 75.845169 ], [ 142.734375, 75.672197 ], [ 144.140625, 75.672197 ], [ 144.140625, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 75.140778 ], [ 144.140625, 75.140778 ], [ 144.140625, 74.775843 ], [ 140.625000, 74.775843 ], [ 140.625000, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.672197 ], [ 137.812500, 75.672197 ], [ 137.812500, 76.016094 ], [ 138.515625, 76.016094 ], [ 138.515625, 76.184995 ], [ 139.218750, 76.184995 ], [ 139.218750, 76.016094 ], [ 141.328125, 76.016094 ], [ 141.328125, 75.845169 ] ] ], [ [ [ 146.953125, 75.320025 ], [ 149.062500, 75.320025 ], [ 149.062500, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.959392 ], [ 149.765625, 74.959392 ], [ 149.765625, 74.775843 ], [ 146.953125, 74.775843 ], [ 146.953125, 74.959392 ], [ 146.250000, 74.959392 ], [ 146.250000, 75.497157 ], [ 146.953125, 75.497157 ], [ 146.953125, 75.320025 ] ] ], [ [ [ 103.359375, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.468750, 78.767792 ], [ 105.468750, 78.490552 ], [ 104.765625, 78.490552 ], [ 104.765625, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.206563 ], [ 102.656250, 78.206563 ], [ 102.656250, 78.061989 ], [ 100.546875, 78.061989 ], [ 100.546875, 77.915669 ], [ 99.140625, 77.915669 ], [ 99.140625, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.490552 ], [ 100.546875, 78.490552 ], [ 100.546875, 78.903929 ], [ 101.250000, 78.903929 ], [ 101.250000, 79.171335 ], [ 101.953125, 79.171335 ], [ 101.953125, 79.302640 ], [ 102.656250, 79.302640 ], [ 102.656250, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.038437 ] ] ], [ [ [ 97.031250, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.297927 ], [ 99.140625, 80.297927 ], [ 99.140625, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 78.903929 ], [ 99.140625, 78.903929 ], [ 99.140625, 78.767792 ], [ 96.328125, 78.767792 ], [ 96.328125, 78.903929 ], [ 94.921875, 78.903929 ], [ 94.921875, 79.038437 ], [ 94.218750, 79.038437 ], [ 94.218750, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 80.983688 ], [ 94.218750, 80.983688 ], [ 94.218750, 81.093214 ], [ 96.328125, 81.093214 ], [ 96.328125, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.760615 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.765625, 77.617709 ], [ 104.765625, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.312520 ], [ 106.171875, 77.312520 ], [ 106.171875, 77.157163 ], [ 105.468750, 77.157163 ], [ 105.468750, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.679785 ], [ 107.578125, 76.679785 ], [ 107.578125, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.775843 ], [ 111.796875, 74.775843 ], [ 111.796875, 74.590108 ], [ 111.093750, 74.590108 ], [ 111.093750, 74.402163 ], [ 110.390625, 74.402163 ], [ 110.390625, 74.211983 ], [ 109.687500, 74.211983 ], [ 109.687500, 74.019543 ], [ 110.390625, 74.019543 ], [ 110.390625, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 115.312500, 73.627789 ], [ 115.312500, 73.824820 ], [ 116.718750, 73.824820 ], [ 116.718750, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 123.750000, 73.824820 ], [ 123.750000, 73.627789 ], [ 127.265625, 73.627789 ], [ 127.265625, 73.428424 ], [ 127.968750, 73.428424 ], [ 127.968750, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.607120 ], [ 129.375000, 72.607120 ], [ 129.375000, 72.181804 ], [ 128.671875, 72.181804 ], [ 128.671875, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 71.074056 ], [ 130.781250, 71.074056 ], [ 130.781250, 70.844673 ], [ 131.484375, 70.844673 ], [ 131.484375, 71.300793 ], [ 132.187500, 71.300793 ], [ 132.187500, 71.524909 ], [ 132.890625, 71.524909 ], [ 132.890625, 71.300793 ], [ 134.296875, 71.300793 ], [ 134.296875, 71.524909 ], [ 137.109375, 71.524909 ], [ 137.109375, 71.300793 ], [ 138.515625, 71.300793 ], [ 138.515625, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.965388 ], [ 139.218750, 71.965388 ], [ 139.218750, 72.395706 ], [ 139.921875, 72.395706 ], [ 139.921875, 72.607120 ], [ 140.625000, 72.607120 ], [ 140.625000, 72.816074 ], [ 142.031250, 72.816074 ], [ 142.031250, 72.607120 ], [ 144.843750, 72.607120 ], [ 144.843750, 72.395706 ], [ 147.656250, 72.395706 ], [ 147.656250, 72.181804 ], [ 149.765625, 72.181804 ], [ 149.765625, 71.746432 ], [ 150.468750, 71.746432 ], [ 150.468750, 71.300793 ], [ 151.171875, 71.300793 ], [ 151.171875, 71.074056 ], [ 152.578125, 71.074056 ], [ 152.578125, 70.844673 ], [ 155.390625, 70.844673 ], [ 155.390625, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 69.411242 ], [ 162.421875, 69.411242 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.411242 ], [ 167.343750, 69.411242 ], [ 167.343750, 69.657086 ], [ 168.046875, 69.657086 ], [ 168.046875, 69.411242 ], [ 168.750000, 69.411242 ], [ 168.750000, 68.911005 ], [ 169.453125, 68.911005 ], [ 169.453125, 68.656555 ], [ 170.859375, 68.656555 ], [ 170.859375, 69.162558 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 171.562500, 70.140364 ], [ 171.562500, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 65.658275 ], [ 93.515625, 65.658275 ], [ 93.515625, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.016094 ], [ 97.734375, 76.016094 ], [ 97.734375, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.351896 ], [ 100.546875, 76.351896 ], [ 100.546875, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.999935 ], [ 101.953125, 76.999935 ], [ 101.953125, 77.312520 ], [ 102.656250, 77.312520 ], [ 102.656250, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.617709 ], [ 104.765625, 77.617709 ] ] ], [ [ [ 180.000000, 71.300793 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 179.296875, 71.074056 ], [ 179.296875, 71.300793 ], [ 180.000000, 71.300793 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 142.031250, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.428424 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 139.921875, 73.226700 ], [ 139.921875, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.824820 ], [ 142.031250, 73.824820 ] ] ], [ [ [ 139.218750, 76.184995 ], [ 139.218750, 76.016094 ], [ 141.328125, 76.016094 ], [ 141.328125, 75.845169 ], [ 142.734375, 75.845169 ], [ 142.734375, 75.672197 ], [ 144.140625, 75.672197 ], [ 144.140625, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 75.140778 ], [ 144.140625, 75.140778 ], [ 144.140625, 74.775843 ], [ 140.625000, 74.775843 ], [ 140.625000, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.672197 ], [ 137.812500, 75.672197 ], [ 137.812500, 76.016094 ], [ 138.515625, 76.016094 ], [ 138.515625, 76.184995 ], [ 139.218750, 76.184995 ] ] ], [ [ [ 146.953125, 75.497157 ], [ 146.953125, 75.320025 ], [ 149.062500, 75.320025 ], [ 149.062500, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.959392 ], [ 149.765625, 74.959392 ], [ 149.765625, 74.775843 ], [ 146.953125, 74.775843 ], [ 146.953125, 74.959392 ], [ 146.250000, 74.959392 ], [ 146.250000, 75.497157 ], [ 146.953125, 75.497157 ] ] ], [ [ [ 102.656250, 79.302640 ], [ 102.656250, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.468750, 78.767792 ], [ 105.468750, 78.490552 ], [ 104.765625, 78.490552 ], [ 104.765625, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.206563 ], [ 102.656250, 78.206563 ], [ 102.656250, 78.061989 ], [ 100.546875, 78.061989 ], [ 100.546875, 77.915669 ], [ 99.140625, 77.915669 ], [ 99.140625, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.490552 ], [ 100.546875, 78.490552 ], [ 100.546875, 78.903929 ], [ 101.250000, 78.903929 ], [ 101.250000, 79.171335 ], [ 101.953125, 79.171335 ], [ 101.953125, 79.302640 ], [ 102.656250, 79.302640 ] ] ], [ [ [ 96.328125, 81.093214 ], [ 96.328125, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.297927 ], [ 99.140625, 80.297927 ], [ 99.140625, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 78.903929 ], [ 99.140625, 78.903929 ], [ 99.140625, 78.767792 ], [ 96.328125, 78.767792 ], [ 96.328125, 78.903929 ], [ 94.921875, 78.903929 ], [ 94.921875, 79.038437 ], [ 94.218750, 79.038437 ], [ 94.218750, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 80.983688 ], [ 94.218750, 80.983688 ], [ 94.218750, 81.093214 ], [ 96.328125, 81.093214 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 144.843750, 49.382373 ], [ 144.843750, 48.922499 ], [ 143.437500, 48.922499 ], [ 143.437500, 48.458352 ], [ 142.734375, 48.458352 ], [ 142.734375, 47.517201 ], [ 143.437500, 47.517201 ], [ 143.437500, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 51.179343 ], [ 141.328125, 51.179343 ], [ 141.328125, 51.618017 ], [ 140.625000, 51.618017 ], [ 140.625000, 48.922499 ], [ 139.921875, 48.922499 ], [ 139.921875, 47.989922 ], [ 139.218750, 47.989922 ], [ 139.218750, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 45.583290 ], [ 137.812500, 45.583290 ], [ 137.812500, 45.089036 ], [ 137.109375, 45.089036 ], [ 137.109375, 44.590467 ], [ 136.406250, 44.590467 ], [ 136.406250, 44.087585 ], [ 135.703125, 44.087585 ], [ 135.703125, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.068888 ], [ 134.296875, 43.068888 ], [ 134.296875, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 43.068888 ], [ 131.484375, 43.068888 ], [ 131.484375, 44.590467 ], [ 130.781250, 44.590467 ], [ 130.781250, 45.089036 ], [ 132.890625, 45.089036 ], [ 132.890625, 45.583290 ], [ 133.593750, 45.583290 ], [ 133.593750, 46.558860 ], [ 134.296875, 46.558860 ], [ 134.296875, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.922499 ], [ 129.375000, 48.922499 ], [ 129.375000, 49.382373 ], [ 127.968750, 49.382373 ], [ 127.968750, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 51.179343 ], [ 126.562500, 51.179343 ], [ 126.562500, 52.052490 ], [ 125.859375, 52.052490 ], [ 125.859375, 52.908902 ], [ 125.156250, 52.908902 ], [ 125.156250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 52.482780 ], [ 120.937500, 52.482780 ], [ 120.937500, 51.618017 ], [ 120.234375, 51.618017 ], [ 120.234375, 51.179343 ], [ 119.531250, 51.179343 ], [ 119.531250, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 49.382373 ], [ 116.718750, 49.382373 ], [ 116.718750, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 49.382373 ], [ 111.796875, 49.382373 ], [ 111.796875, 48.922499 ], [ 109.687500, 48.922499 ], [ 109.687500, 49.382373 ], [ 107.578125, 49.382373 ], [ 107.578125, 49.837982 ], [ 106.875000, 49.837982 ], [ 106.875000, 50.289339 ], [ 101.953125, 50.289339 ], [ 101.953125, 51.179343 ], [ 100.546875, 51.179343 ], [ 100.546875, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 51.179343 ], [ 97.734375, 51.179343 ], [ 97.734375, 50.736455 ], [ 98.437500, 50.736455 ], [ 98.437500, 49.837982 ], [ 94.218750, 49.837982 ], [ 94.218750, 50.289339 ], [ 93.515625, 50.289339 ], [ 93.515625, 65.658275 ], [ 180.000000, 65.658275 ], [ 180.000000, 64.774125 ], [ 179.296875, 64.774125 ], [ 179.296875, 64.472794 ], [ 177.187500, 64.472794 ], [ 177.187500, 64.168107 ], [ 178.593750, 64.168107 ], [ 178.593750, 62.915233 ], [ 179.296875, 62.915233 ], [ 179.296875, 62.267923 ], [ 177.890625, 62.267923 ], [ 177.890625, 62.593341 ], [ 177.187500, 62.593341 ], [ 177.187500, 62.267923 ], [ 176.484375, 62.267923 ], [ 176.484375, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.606396 ], [ 173.671875, 61.606396 ], [ 173.671875, 61.270233 ], [ 172.968750, 61.270233 ], [ 172.968750, 60.930432 ], [ 172.265625, 60.930432 ], [ 172.265625, 60.586967 ], [ 171.562500, 60.586967 ], [ 171.562500, 60.239811 ], [ 170.859375, 60.239811 ], [ 170.859375, 59.888937 ], [ 169.453125, 59.888937 ], [ 169.453125, 60.239811 ], [ 167.343750, 60.239811 ], [ 167.343750, 59.888937 ], [ 163.828125, 59.888937 ], [ 163.828125, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.813742 ], [ 162.421875, 58.813742 ], [ 162.421875, 58.077876 ], [ 161.718750, 58.077876 ], [ 161.718750, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.421875, 56.170023 ], [ 162.421875, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.977614 ], [ 162.421875, 54.977614 ], [ 162.421875, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.162434 ], [ 160.312500, 54.162434 ], [ 160.312500, 53.330873 ], [ 159.609375, 53.330873 ], [ 159.609375, 52.908902 ], [ 158.203125, 52.908902 ], [ 158.203125, 51.618017 ], [ 157.500000, 51.618017 ], [ 157.500000, 51.179343 ], [ 156.093750, 51.179343 ], [ 156.093750, 54.162434 ], [ 155.390625, 54.162434 ], [ 155.390625, 56.170023 ], [ 156.093750, 56.170023 ], [ 156.093750, 56.944974 ], [ 156.796875, 56.944974 ], [ 156.796875, 57.704147 ], [ 158.203125, 57.704147 ], [ 158.203125, 58.077876 ], [ 158.906250, 58.077876 ], [ 158.906250, 58.447733 ], [ 159.609375, 58.447733 ], [ 159.609375, 58.813742 ], [ 160.312500, 58.813742 ], [ 160.312500, 59.175928 ], [ 161.015625, 59.175928 ], [ 161.015625, 59.888937 ], [ 161.718750, 59.888937 ], [ 161.718750, 60.239811 ], [ 162.421875, 60.239811 ], [ 162.421875, 60.586967 ], [ 163.125000, 60.586967 ], [ 163.125000, 60.930432 ], [ 163.828125, 60.930432 ], [ 163.828125, 61.938950 ], [ 164.531250, 61.938950 ], [ 164.531250, 62.593341 ], [ 163.125000, 62.593341 ], [ 163.125000, 61.938950 ], [ 162.421875, 61.938950 ], [ 162.421875, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.586967 ], [ 160.312500, 60.586967 ], [ 160.312500, 61.270233 ], [ 159.609375, 61.270233 ], [ 159.609375, 61.606396 ], [ 158.203125, 61.606396 ], [ 158.203125, 61.270233 ], [ 156.796875, 61.270233 ], [ 156.796875, 60.930432 ], [ 156.093750, 60.930432 ], [ 156.093750, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.239811 ], [ 154.687500, 60.239811 ], [ 154.687500, 59.888937 ], [ 153.984375, 59.888937 ], [ 153.984375, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.534318 ], [ 149.765625, 59.175928 ], [ 142.031250, 59.175928 ], [ 142.031250, 58.813742 ], [ 141.328125, 58.813742 ], [ 141.328125, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.704147 ], [ 139.921875, 57.704147 ], [ 139.921875, 56.944974 ], [ 139.218750, 56.944974 ], [ 139.218750, 56.559482 ], [ 138.515625, 56.559482 ], [ 138.515625, 56.170023 ], [ 137.812500, 56.170023 ], [ 137.812500, 55.776573 ], [ 137.109375, 55.776573 ], [ 137.109375, 55.379110 ], [ 136.406250, 55.379110 ], [ 136.406250, 54.977614 ], [ 135.703125, 54.977614 ], [ 135.703125, 54.572062 ], [ 136.406250, 54.572062 ], [ 136.406250, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 53.748711 ], [ 138.515625, 53.748711 ], [ 138.515625, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 52.908902 ], [ 141.328125, 52.908902 ], [ 141.328125, 52.482780 ], [ 142.031250, 52.482780 ], [ 142.031250, 53.330873 ], [ 143.437500, 53.330873 ], [ 143.437500, 50.289339 ] ] ], [ [ [ 142.031250, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.748711 ], [ 142.031250, 53.748711 ], [ 142.031250, 54.162434 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, 53.330873 ], [ 143.437500, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 144.843750, 49.382373 ], [ 144.843750, 48.922499 ], [ 143.437500, 48.922499 ], [ 143.437500, 48.458352 ], [ 142.734375, 48.458352 ], [ 142.734375, 47.517201 ], [ 143.437500, 47.517201 ], [ 143.437500, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 51.179343 ], [ 141.328125, 51.179343 ], [ 141.328125, 51.618017 ], [ 140.625000, 51.618017 ], [ 140.625000, 48.922499 ], [ 139.921875, 48.922499 ], [ 139.921875, 47.989922 ], [ 139.218750, 47.989922 ], [ 139.218750, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 45.583290 ], [ 137.812500, 45.583290 ], [ 137.812500, 45.089036 ], [ 137.109375, 45.089036 ], [ 137.109375, 44.590467 ], [ 136.406250, 44.590467 ], [ 136.406250, 44.087585 ], [ 135.703125, 44.087585 ], [ 135.703125, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.068888 ], [ 134.296875, 43.068888 ], [ 134.296875, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 43.068888 ], [ 131.484375, 43.068888 ], [ 131.484375, 44.590467 ], [ 130.781250, 44.590467 ], [ 130.781250, 45.089036 ], [ 132.890625, 45.089036 ], [ 132.890625, 45.583290 ], [ 133.593750, 45.583290 ], [ 133.593750, 46.558860 ], [ 134.296875, 46.558860 ], [ 134.296875, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.922499 ], [ 129.375000, 48.922499 ], [ 129.375000, 49.382373 ], [ 127.968750, 49.382373 ], [ 127.968750, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 51.179343 ], [ 126.562500, 51.179343 ], [ 126.562500, 52.052490 ], [ 125.859375, 52.052490 ], [ 125.859375, 52.908902 ], [ 125.156250, 52.908902 ], [ 125.156250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 52.482780 ], [ 120.937500, 52.482780 ], [ 120.937500, 51.618017 ], [ 120.234375, 51.618017 ], [ 120.234375, 51.179343 ], [ 119.531250, 51.179343 ], [ 119.531250, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 49.382373 ], [ 116.718750, 49.382373 ], [ 116.718750, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 49.382373 ], [ 111.796875, 49.382373 ], [ 111.796875, 48.922499 ], [ 109.687500, 48.922499 ], [ 109.687500, 49.382373 ], [ 107.578125, 49.382373 ], [ 107.578125, 49.837982 ], [ 106.875000, 49.837982 ], [ 106.875000, 50.289339 ], [ 101.953125, 50.289339 ], [ 101.953125, 51.179343 ], [ 100.546875, 51.179343 ], [ 100.546875, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 51.179343 ], [ 97.734375, 51.179343 ], [ 97.734375, 50.736455 ], [ 98.437500, 50.736455 ], [ 98.437500, 49.837982 ], [ 94.218750, 49.837982 ], [ 94.218750, 50.289339 ], [ 93.515625, 50.289339 ], [ 93.515625, 65.658275 ], [ 180.000000, 65.658275 ], [ 180.000000, 64.774125 ], [ 179.296875, 64.774125 ], [ 179.296875, 64.472794 ], [ 177.187500, 64.472794 ], [ 177.187500, 64.168107 ], [ 178.593750, 64.168107 ], [ 178.593750, 62.915233 ], [ 179.296875, 62.915233 ], [ 179.296875, 62.267923 ], [ 177.890625, 62.267923 ], [ 177.890625, 62.593341 ], [ 177.187500, 62.593341 ], [ 177.187500, 62.267923 ], [ 176.484375, 62.267923 ], [ 176.484375, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.606396 ], [ 173.671875, 61.606396 ], [ 173.671875, 61.270233 ], [ 172.968750, 61.270233 ], [ 172.968750, 60.930432 ], [ 172.265625, 60.930432 ], [ 172.265625, 60.586967 ], [ 171.562500, 60.586967 ], [ 171.562500, 60.239811 ], [ 170.859375, 60.239811 ], [ 170.859375, 59.888937 ], [ 169.453125, 59.888937 ], [ 169.453125, 60.239811 ], [ 167.343750, 60.239811 ], [ 167.343750, 59.888937 ], [ 163.828125, 59.888937 ], [ 163.828125, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.813742 ], [ 162.421875, 58.813742 ], [ 162.421875, 58.077876 ], [ 161.718750, 58.077876 ], [ 161.718750, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.421875, 56.170023 ], [ 162.421875, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.977614 ], [ 162.421875, 54.977614 ], [ 162.421875, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.162434 ], [ 160.312500, 54.162434 ], [ 160.312500, 53.330873 ], [ 159.609375, 53.330873 ], [ 159.609375, 52.908902 ], [ 158.203125, 52.908902 ], [ 158.203125, 51.618017 ], [ 157.500000, 51.618017 ], [ 157.500000, 51.179343 ], [ 156.093750, 51.179343 ], [ 156.093750, 54.162434 ], [ 155.390625, 54.162434 ], [ 155.390625, 56.170023 ], [ 156.093750, 56.170023 ], [ 156.093750, 56.944974 ], [ 156.796875, 56.944974 ], [ 156.796875, 57.704147 ], [ 158.203125, 57.704147 ], [ 158.203125, 58.077876 ], [ 158.906250, 58.077876 ], [ 158.906250, 58.447733 ], [ 159.609375, 58.447733 ], [ 159.609375, 58.813742 ], [ 160.312500, 58.813742 ], [ 160.312500, 59.175928 ], [ 161.015625, 59.175928 ], [ 161.015625, 59.888937 ], [ 161.718750, 59.888937 ], [ 161.718750, 60.239811 ], [ 162.421875, 60.239811 ], [ 162.421875, 60.586967 ], [ 163.125000, 60.586967 ], [ 163.125000, 60.930432 ], [ 163.828125, 60.930432 ], [ 163.828125, 61.938950 ], [ 164.531250, 61.938950 ], [ 164.531250, 62.593341 ], [ 163.125000, 62.593341 ], [ 163.125000, 61.938950 ], [ 162.421875, 61.938950 ], [ 162.421875, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.586967 ], [ 160.312500, 60.586967 ], [ 160.312500, 61.270233 ], [ 159.609375, 61.270233 ], [ 159.609375, 61.606396 ], [ 158.203125, 61.606396 ], [ 158.203125, 61.270233 ], [ 156.796875, 61.270233 ], [ 156.796875, 60.930432 ], [ 156.093750, 60.930432 ], [ 156.093750, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.239811 ], [ 154.687500, 60.239811 ], [ 154.687500, 59.888937 ], [ 153.984375, 59.888937 ], [ 153.984375, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.534318 ], [ 149.765625, 59.175928 ], [ 142.031250, 59.175928 ], [ 142.031250, 58.813742 ], [ 141.328125, 58.813742 ], [ 141.328125, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.704147 ], [ 139.921875, 57.704147 ], [ 139.921875, 56.944974 ], [ 139.218750, 56.944974 ], [ 139.218750, 56.559482 ], [ 138.515625, 56.559482 ], [ 138.515625, 56.170023 ], [ 137.812500, 56.170023 ], [ 137.812500, 55.776573 ], [ 137.109375, 55.776573 ], [ 137.109375, 55.379110 ], [ 136.406250, 55.379110 ], [ 136.406250, 54.977614 ], [ 135.703125, 54.977614 ], [ 135.703125, 54.572062 ], [ 136.406250, 54.572062 ], [ 136.406250, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 53.748711 ], [ 138.515625, 53.748711 ], [ 138.515625, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 52.908902 ], [ 141.328125, 52.908902 ], [ 141.328125, 52.482780 ], [ 142.031250, 52.482780 ], [ 142.031250, 53.330873 ], [ 143.437500, 53.330873 ] ] ], [ [ [ 142.734375, 53.748711 ], [ 142.031250, 53.748711 ], [ 142.031250, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.748711 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.531250, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.377854 ], [ 31.640625, 70.377854 ], [ 31.640625, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 69.900118 ], [ 30.937500, 69.900118 ], [ 30.937500, 69.411242 ], [ 30.234375, 69.411242 ], [ 30.234375, 69.162558 ], [ 28.828125, 69.162558 ], [ 28.828125, 69.657086 ], [ 28.125000, 69.657086 ], [ 28.125000, 69.900118 ], [ 26.015625, 69.900118 ], [ 26.015625, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.656555 ], [ 23.906250, 68.656555 ], [ 23.906250, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.399180 ], [ 17.578125, 68.399180 ], [ 17.578125, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 67.609221 ], [ 16.171875, 67.609221 ], [ 16.171875, 67.067433 ], [ 15.468750, 67.067433 ], [ 15.468750, 66.513260 ], [ 14.765625, 66.513260 ], [ 14.765625, 65.658275 ], [ 14.062500, 65.658275 ], [ 14.062500, 65.072130 ], [ 13.359375, 65.072130 ], [ 13.359375, 64.472794 ], [ 14.062500, 64.472794 ], [ 14.062500, 64.168107 ], [ 12.656250, 64.168107 ], [ 12.656250, 63.548552 ], [ 11.953125, 63.548552 ], [ 11.953125, 61.606396 ], [ 12.656250, 61.606396 ], [ 12.656250, 60.586967 ], [ 11.953125, 60.586967 ], [ 11.953125, 59.888937 ], [ 11.250000, 59.888937 ], [ 11.250000, 59.175928 ], [ 9.843750, 59.175928 ], [ 9.843750, 58.813742 ], [ 9.140625, 58.813742 ], [ 9.140625, 58.447733 ], [ 8.437500, 58.447733 ], [ 8.437500, 58.077876 ], [ 5.625000, 58.077876 ], [ 5.625000, 60.586967 ], [ 4.921875, 60.586967 ], [ 4.921875, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.593341 ], [ 6.328125, 62.593341 ], [ 6.328125, 62.915233 ], [ 7.734375, 62.915233 ], [ 7.734375, 63.233627 ], [ 8.437500, 63.233627 ], [ 8.437500, 63.548552 ], [ 9.140625, 63.548552 ], [ 9.140625, 63.860036 ], [ 9.843750, 63.860036 ], [ 9.843750, 64.168107 ], [ 10.546875, 64.168107 ], [ 10.546875, 64.472794 ], [ 11.250000, 64.472794 ], [ 11.250000, 65.072130 ], [ 11.953125, 65.072130 ], [ 11.953125, 65.658275 ], [ 12.656250, 65.658275 ], [ 12.656250, 66.231457 ], [ 13.359375, 66.231457 ], [ 13.359375, 66.791909 ], [ 14.062500, 66.791909 ], [ 14.062500, 67.339861 ], [ 14.765625, 67.339861 ], [ 14.765625, 67.875541 ], [ 15.468750, 67.875541 ], [ 15.468750, 68.399180 ], [ 16.171875, 68.399180 ], [ 16.171875, 68.656555 ], [ 16.875000, 68.656555 ], [ 16.875000, 68.911005 ], [ 17.578125, 68.911005 ], [ 17.578125, 69.411242 ], [ 18.281250, 69.411242 ], [ 18.281250, 69.657086 ], [ 18.984375, 69.657086 ], [ 18.984375, 69.900118 ], [ 20.390625, 69.900118 ], [ 20.390625, 70.140364 ], [ 23.203125, 70.140364 ], [ 23.203125, 70.377854 ], [ 23.906250, 70.377854 ], [ 23.906250, 70.844673 ], [ 24.609375, 70.844673 ], [ 24.609375, 71.074056 ], [ 28.125000, 71.074056 ], [ 28.125000, 70.844673 ], [ 29.531250, 70.844673 ], [ 29.531250, 70.612614 ] ] ], [ [ [ 18.281250, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.302640 ], [ 20.390625, 79.302640 ], [ 20.390625, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.903929 ], [ 21.796875, 78.903929 ], [ 21.796875, 78.767792 ], [ 20.390625, 78.767792 ], [ 20.390625, 78.630006 ], [ 18.984375, 78.630006 ], [ 18.984375, 78.206563 ], [ 18.281250, 78.206563 ], [ 18.281250, 77.617709 ], [ 17.578125, 77.617709 ], [ 17.578125, 77.157163 ], [ 16.875000, 77.157163 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 76.999935 ], [ 14.765625, 76.999935 ], [ 14.765625, 77.157163 ], [ 14.062500, 77.157163 ], [ 14.062500, 77.466028 ], [ 14.765625, 77.466028 ], [ 14.765625, 77.767582 ], [ 14.062500, 77.767582 ], [ 14.062500, 77.915669 ], [ 13.359375, 77.915669 ], [ 13.359375, 78.206563 ], [ 12.656250, 78.206563 ], [ 12.656250, 78.490552 ], [ 11.953125, 78.490552 ], [ 11.953125, 78.767792 ], [ 11.250000, 78.767792 ], [ 11.250000, 79.302640 ], [ 10.546875, 79.302640 ], [ 10.546875, 79.687184 ], [ 11.250000, 79.687184 ], [ 11.250000, 79.812302 ], [ 12.656250, 79.812302 ], [ 12.656250, 79.935918 ], [ 13.359375, 79.935918 ], [ 13.359375, 79.812302 ], [ 14.062500, 79.812302 ], [ 14.062500, 79.687184 ], [ 15.468750, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ], [ 16.875000, 79.935918 ], [ 17.578125, 79.935918 ], [ 17.578125, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.560546 ] ] ], [ [ [ 21.093750, 77.767582 ], [ 21.093750, 78.206563 ], [ 21.796875, 78.206563 ], [ 21.796875, 78.349411 ], [ 23.203125, 78.349411 ], [ 23.203125, 77.915669 ], [ 24.609375, 77.915669 ], [ 24.609375, 77.767582 ], [ 23.906250, 77.767582 ], [ 23.906250, 77.617709 ], [ 23.203125, 77.617709 ], [ 23.203125, 77.466028 ], [ 21.093750, 77.466028 ], [ 21.093750, 77.617709 ], [ 20.390625, 77.617709 ], [ 20.390625, 77.767582 ], [ 21.093750, 77.767582 ] ] ], [ [ [ 25.312500, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 79.935918 ], [ 26.718750, 79.935918 ], [ 26.718750, 79.687184 ], [ 26.015625, 79.687184 ], [ 26.015625, 79.560546 ], [ 25.312500, 79.560546 ], [ 25.312500, 79.432371 ], [ 21.093750, 79.432371 ], [ 21.093750, 79.560546 ], [ 20.390625, 79.560546 ], [ 20.390625, 79.687184 ], [ 19.687500, 79.687184 ], [ 19.687500, 79.812302 ], [ 18.281250, 79.812302 ], [ 18.281250, 80.058050 ], [ 17.578125, 80.058050 ], [ 17.578125, 80.297927 ], [ 18.281250, 80.297927 ], [ 18.281250, 80.415707 ], [ 19.687500, 80.415707 ], [ 19.687500, 80.532071 ], [ 21.093750, 80.532071 ], [ 21.093750, 80.415707 ], [ 22.500000, 80.415707 ], [ 22.500000, 80.532071 ], [ 24.609375, 80.532071 ], [ 24.609375, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.297927 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.074056 ], [ 28.125000, 70.844673 ], [ 29.531250, 70.844673 ], [ 29.531250, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.377854 ], [ 31.640625, 70.377854 ], [ 31.640625, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 69.900118 ], [ 30.937500, 69.900118 ], [ 30.937500, 69.411242 ], [ 30.234375, 69.411242 ], [ 30.234375, 69.162558 ], [ 28.828125, 69.162558 ], [ 28.828125, 69.657086 ], [ 28.125000, 69.657086 ], [ 28.125000, 69.900118 ], [ 26.015625, 69.900118 ], [ 26.015625, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.656555 ], [ 23.906250, 68.656555 ], [ 23.906250, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.399180 ], [ 17.578125, 68.399180 ], [ 17.578125, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 67.609221 ], [ 16.171875, 67.609221 ], [ 16.171875, 67.067433 ], [ 15.468750, 67.067433 ], [ 15.468750, 66.513260 ], [ 14.765625, 66.513260 ], [ 14.765625, 65.658275 ], [ 14.062500, 65.658275 ], [ 14.062500, 65.072130 ], [ 13.359375, 65.072130 ], [ 13.359375, 64.472794 ], [ 14.062500, 64.472794 ], [ 14.062500, 64.168107 ], [ 12.656250, 64.168107 ], [ 12.656250, 63.548552 ], [ 11.953125, 63.548552 ], [ 11.953125, 61.606396 ], [ 12.656250, 61.606396 ], [ 12.656250, 60.586967 ], [ 11.953125, 60.586967 ], [ 11.953125, 59.888937 ], [ 11.250000, 59.888937 ], [ 11.250000, 59.175928 ], [ 9.843750, 59.175928 ], [ 9.843750, 58.813742 ], [ 9.140625, 58.813742 ], [ 9.140625, 58.447733 ], [ 8.437500, 58.447733 ], [ 8.437500, 58.077876 ], [ 5.625000, 58.077876 ], [ 5.625000, 60.586967 ], [ 4.921875, 60.586967 ], [ 4.921875, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.593341 ], [ 6.328125, 62.593341 ], [ 6.328125, 62.915233 ], [ 7.734375, 62.915233 ], [ 7.734375, 63.233627 ], [ 8.437500, 63.233627 ], [ 8.437500, 63.548552 ], [ 9.140625, 63.548552 ], [ 9.140625, 63.860036 ], [ 9.843750, 63.860036 ], [ 9.843750, 64.168107 ], [ 10.546875, 64.168107 ], [ 10.546875, 64.472794 ], [ 11.250000, 64.472794 ], [ 11.250000, 65.072130 ], [ 11.953125, 65.072130 ], [ 11.953125, 65.658275 ], [ 12.656250, 65.658275 ], [ 12.656250, 66.231457 ], [ 13.359375, 66.231457 ], [ 13.359375, 66.791909 ], [ 14.062500, 66.791909 ], [ 14.062500, 67.339861 ], [ 14.765625, 67.339861 ], [ 14.765625, 67.875541 ], [ 15.468750, 67.875541 ], [ 15.468750, 68.399180 ], [ 16.171875, 68.399180 ], [ 16.171875, 68.656555 ], [ 16.875000, 68.656555 ], [ 16.875000, 68.911005 ], [ 17.578125, 68.911005 ], [ 17.578125, 69.411242 ], [ 18.281250, 69.411242 ], [ 18.281250, 69.657086 ], [ 18.984375, 69.657086 ], [ 18.984375, 69.900118 ], [ 20.390625, 69.900118 ], [ 20.390625, 70.140364 ], [ 23.203125, 70.140364 ], [ 23.203125, 70.377854 ], [ 23.906250, 70.377854 ], [ 23.906250, 70.844673 ], [ 24.609375, 70.844673 ], [ 24.609375, 71.074056 ], [ 28.125000, 71.074056 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 16.875000, 79.935918 ], [ 17.578125, 79.935918 ], [ 17.578125, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.302640 ], [ 20.390625, 79.302640 ], [ 20.390625, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.903929 ], [ 21.796875, 78.903929 ], [ 21.796875, 78.767792 ], [ 20.390625, 78.767792 ], [ 20.390625, 78.630006 ], [ 18.984375, 78.630006 ], [ 18.984375, 78.206563 ], [ 18.281250, 78.206563 ], [ 18.281250, 77.617709 ], [ 17.578125, 77.617709 ], [ 17.578125, 77.157163 ], [ 16.875000, 77.157163 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 76.999935 ], [ 14.765625, 76.999935 ], [ 14.765625, 77.157163 ], [ 14.062500, 77.157163 ], [ 14.062500, 77.466028 ], [ 14.765625, 77.466028 ], [ 14.765625, 77.767582 ], [ 14.062500, 77.767582 ], [ 14.062500, 77.915669 ], [ 13.359375, 77.915669 ], [ 13.359375, 78.206563 ], [ 12.656250, 78.206563 ], [ 12.656250, 78.490552 ], [ 11.953125, 78.490552 ], [ 11.953125, 78.767792 ], [ 11.250000, 78.767792 ], [ 11.250000, 79.302640 ], [ 10.546875, 79.302640 ], [ 10.546875, 79.687184 ], [ 11.250000, 79.687184 ], [ 11.250000, 79.812302 ], [ 12.656250, 79.812302 ], [ 12.656250, 79.935918 ], [ 13.359375, 79.935918 ], [ 13.359375, 79.812302 ], [ 14.062500, 79.812302 ], [ 14.062500, 79.687184 ], [ 15.468750, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 23.203125, 78.349411 ], [ 23.203125, 77.915669 ], [ 24.609375, 77.915669 ], [ 24.609375, 77.767582 ], [ 23.906250, 77.767582 ], [ 23.906250, 77.617709 ], [ 23.203125, 77.617709 ], [ 23.203125, 77.466028 ], [ 21.093750, 77.466028 ], [ 21.093750, 77.617709 ], [ 20.390625, 77.617709 ], [ 20.390625, 77.767582 ], [ 21.093750, 77.767582 ], [ 21.093750, 78.206563 ], [ 21.796875, 78.206563 ], [ 21.796875, 78.349411 ], [ 23.203125, 78.349411 ] ] ], [ [ [ 24.609375, 80.532071 ], [ 24.609375, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 79.935918 ], [ 26.718750, 79.935918 ], [ 26.718750, 79.687184 ], [ 26.015625, 79.687184 ], [ 26.015625, 79.560546 ], [ 25.312500, 79.560546 ], [ 25.312500, 79.432371 ], [ 21.093750, 79.432371 ], [ 21.093750, 79.560546 ], [ 20.390625, 79.560546 ], [ 20.390625, 79.687184 ], [ 19.687500, 79.687184 ], [ 19.687500, 79.812302 ], [ 18.281250, 79.812302 ], [ 18.281250, 80.058050 ], [ 17.578125, 80.058050 ], [ 17.578125, 80.297927 ], [ 18.281250, 80.297927 ], [ 18.281250, 80.415707 ], [ 19.687500, 80.415707 ], [ 19.687500, 80.532071 ], [ 21.093750, 80.532071 ], [ 21.093750, 80.415707 ], [ 22.500000, 80.415707 ], [ 22.500000, 80.532071 ], [ 24.609375, 80.532071 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.379110 ], [ 11.953125, 55.379110 ], [ 11.953125, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 55.379110 ] ] ], [ [ [ 10.546875, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 56.170023 ], [ 10.546875, 56.170023 ], [ 10.546875, 55.776573 ], [ 9.843750, 55.776573 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 56.944974 ], [ 9.140625, 56.944974 ], [ 9.140625, 57.326521 ], [ 10.546875, 57.326521 ], [ 10.546875, 56.559482 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.776573 ], [ 12.656250, 55.379110 ], [ 11.953125, 55.379110 ], [ 11.953125, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.776573 ], [ 12.656250, 55.776573 ] ] ], [ [ [ 10.546875, 57.326521 ], [ 10.546875, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 56.170023 ], [ 10.546875, 56.170023 ], [ 10.546875, 55.776573 ], [ 9.843750, 55.776573 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 56.944974 ], [ 9.140625, 56.944974 ], [ 9.140625, 57.326521 ], [ 10.546875, 57.326521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 67.875541 ], [ 23.203125, 67.875541 ], [ 23.203125, 67.067433 ], [ 23.906250, 67.067433 ], [ 23.906250, 65.658275 ], [ 22.500000, 65.658275 ], [ 22.500000, 65.366837 ], [ 21.796875, 65.366837 ], [ 21.796875, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.168107 ], [ 20.390625, 64.168107 ], [ 20.390625, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.593341 ], [ 17.578125, 62.593341 ], [ 17.578125, 61.938950 ], [ 16.875000, 61.938950 ], [ 16.875000, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.239811 ], [ 18.984375, 60.239811 ], [ 18.984375, 59.888937 ], [ 18.281250, 59.888937 ], [ 18.281250, 59.175928 ], [ 17.578125, 59.175928 ], [ 17.578125, 58.813742 ], [ 16.875000, 58.813742 ], [ 16.875000, 57.704147 ], [ 16.171875, 57.704147 ], [ 16.171875, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.765625, 55.776573 ], [ 14.062500, 55.776573 ], [ 14.062500, 55.379110 ], [ 12.656250, 55.379110 ], [ 12.656250, 56.559482 ], [ 11.953125, 56.559482 ], [ 11.953125, 58.077876 ], [ 11.250000, 58.077876 ], [ 11.250000, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 60.586967 ], [ 12.656250, 60.586967 ], [ 12.656250, 61.606396 ], [ 11.953125, 61.606396 ], [ 11.953125, 63.548552 ], [ 12.656250, 63.548552 ], [ 12.656250, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 64.472794 ], [ 13.359375, 64.472794 ], [ 13.359375, 65.072130 ], [ 14.062500, 65.072130 ], [ 14.062500, 65.658275 ], [ 14.765625, 65.658275 ], [ 14.765625, 66.513260 ], [ 15.468750, 66.513260 ], [ 15.468750, 67.067433 ], [ 16.171875, 67.067433 ], [ 16.171875, 67.609221 ], [ 16.875000, 67.609221 ], [ 16.875000, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.399180 ], [ 19.687500, 68.399180 ], [ 19.687500, 69.162558 ], [ 20.390625, 69.162558 ], [ 20.390625, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 67.875541 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 69.162558 ], [ 20.390625, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 67.875541 ], [ 23.203125, 67.875541 ], [ 23.203125, 67.067433 ], [ 23.906250, 67.067433 ], [ 23.906250, 65.658275 ], [ 22.500000, 65.658275 ], [ 22.500000, 65.366837 ], [ 21.796875, 65.366837 ], [ 21.796875, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.168107 ], [ 20.390625, 64.168107 ], [ 20.390625, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.593341 ], [ 17.578125, 62.593341 ], [ 17.578125, 61.938950 ], [ 16.875000, 61.938950 ], [ 16.875000, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.239811 ], [ 18.984375, 60.239811 ], [ 18.984375, 59.888937 ], [ 18.281250, 59.888937 ], [ 18.281250, 59.175928 ], [ 17.578125, 59.175928 ], [ 17.578125, 58.813742 ], [ 16.875000, 58.813742 ], [ 16.875000, 57.704147 ], [ 16.171875, 57.704147 ], [ 16.171875, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.765625, 55.776573 ], [ 14.062500, 55.776573 ], [ 14.062500, 55.379110 ], [ 12.656250, 55.379110 ], [ 12.656250, 56.559482 ], [ 11.953125, 56.559482 ], [ 11.953125, 58.077876 ], [ 11.250000, 58.077876 ], [ 11.250000, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 60.586967 ], [ 12.656250, 60.586967 ], [ 12.656250, 61.606396 ], [ 11.953125, 61.606396 ], [ 11.953125, 63.548552 ], [ 12.656250, 63.548552 ], [ 12.656250, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 64.472794 ], [ 13.359375, 64.472794 ], [ 13.359375, 65.072130 ], [ 14.062500, 65.072130 ], [ 14.062500, 65.658275 ], [ 14.765625, 65.658275 ], [ 14.765625, 66.513260 ], [ 15.468750, 66.513260 ], [ 15.468750, 67.067433 ], [ 16.171875, 67.067433 ], [ 16.171875, 67.609221 ], [ 16.875000, 67.609221 ], [ 16.875000, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.399180 ], [ 19.687500, 68.399180 ], [ 19.687500, 69.162558 ], [ 20.390625, 69.162558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 52.052490 ], [ 6.328125, 52.052490 ], [ 6.328125, 50.736455 ], [ 5.625000, 50.736455 ], [ 5.625000, 51.179343 ], [ 3.515625, 51.179343 ], [ 3.515625, 51.618017 ], [ 4.218750, 51.618017 ], [ 4.218750, 52.482780 ], [ 4.921875, 52.482780 ], [ 4.921875, 52.908902 ], [ 6.328125, 52.908902 ], [ 6.328125, 53.330873 ], [ 7.031250, 53.330873 ], [ 7.031250, 52.052490 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.330873 ], [ 7.031250, 52.052490 ], [ 6.328125, 52.052490 ], [ 6.328125, 50.736455 ], [ 5.625000, 50.736455 ], [ 5.625000, 51.179343 ], [ 3.515625, 51.179343 ], [ 3.515625, 51.618017 ], [ 4.218750, 51.618017 ], [ 4.218750, 52.482780 ], [ 4.921875, 52.482780 ], [ 4.921875, 52.908902 ], [ 6.328125, 52.908902 ], [ 6.328125, 53.330873 ], [ 7.031250, 53.330873 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 50.736455 ], [ 6.328125, 50.736455 ], [ 6.328125, 50.289339 ], [ 5.625000, 50.289339 ], [ 5.625000, 49.382373 ], [ 4.921875, 49.382373 ], [ 4.921875, 49.837982 ], [ 3.515625, 49.837982 ], [ 3.515625, 50.289339 ], [ 2.812500, 50.289339 ], [ 2.812500, 51.179343 ], [ 5.625000, 51.179343 ], [ 5.625000, 50.736455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.179343 ], [ 5.625000, 50.736455 ], [ 6.328125, 50.736455 ], [ 6.328125, 50.289339 ], [ 5.625000, 50.289339 ], [ 5.625000, 49.382373 ], [ 4.921875, 49.382373 ], [ 4.921875, 49.837982 ], [ 3.515625, 49.837982 ], [ 3.515625, 50.289339 ], [ 2.812500, 50.289339 ], [ 2.812500, 51.179343 ], [ 5.625000, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 50.289339 ], [ 6.328125, 50.289339 ], [ 6.328125, 49.382373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 50.289339 ], [ 6.328125, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 50.289339 ], [ 6.328125, 50.289339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 52.482780 ], [ 14.765625, 52.482780 ], [ 14.765625, 51.179343 ], [ 14.062500, 51.179343 ], [ 14.062500, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.289339 ], [ 11.953125, 50.289339 ], [ 11.953125, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 49.382373 ], [ 13.359375, 49.382373 ], [ 13.359375, 48.458352 ], [ 12.656250, 48.458352 ], [ 12.656250, 47.989922 ], [ 13.359375, 47.989922 ], [ 13.359375, 47.517201 ], [ 7.734375, 47.517201 ], [ 7.734375, 48.458352 ], [ 8.437500, 48.458352 ], [ 8.437500, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 52.052490 ], [ 7.031250, 52.052490 ], [ 7.031250, 53.748711 ], [ 7.734375, 53.748711 ], [ 7.734375, 53.330873 ], [ 8.437500, 53.330873 ], [ 8.437500, 53.748711 ], [ 9.140625, 53.748711 ], [ 9.140625, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 13.359375, 54.162434 ], [ 13.359375, 53.748711 ], [ 14.062500, 53.748711 ], [ 14.062500, 52.482780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 13.359375, 54.162434 ], [ 13.359375, 53.748711 ], [ 14.062500, 53.748711 ], [ 14.062500, 52.482780 ], [ 14.765625, 52.482780 ], [ 14.765625, 51.179343 ], [ 14.062500, 51.179343 ], [ 14.062500, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.289339 ], [ 11.953125, 50.289339 ], [ 11.953125, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 49.382373 ], [ 13.359375, 49.382373 ], [ 13.359375, 48.458352 ], [ 12.656250, 48.458352 ], [ 12.656250, 47.989922 ], [ 13.359375, 47.989922 ], [ 13.359375, 47.517201 ], [ 7.734375, 47.517201 ], [ 7.734375, 48.458352 ], [ 8.437500, 48.458352 ], [ 8.437500, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 52.052490 ], [ 7.031250, 52.052490 ], [ 7.031250, 53.748711 ], [ 7.734375, 53.748711 ], [ 7.734375, 53.330873 ], [ 8.437500, 53.330873 ], [ 8.437500, 53.748711 ], [ 9.140625, 53.748711 ], [ 9.140625, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.546875, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 46.073231 ], [ 6.328125, 46.073231 ], [ 6.328125, 47.040182 ], [ 7.031250, 47.040182 ], [ 7.031250, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.040182 ], [ 10.546875, 47.040182 ], [ 10.546875, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 47.517201 ], [ 9.843750, 47.040182 ], [ 10.546875, 47.040182 ], [ 10.546875, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 46.073231 ], [ 6.328125, 46.073231 ], [ 6.328125, 47.040182 ], [ 7.031250, 47.040182 ], [ 7.031250, 47.517201 ], [ 9.843750, 47.517201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 48.922499 ], [ 16.875000, 48.922499 ], [ 16.875000, 48.458352 ], [ 16.171875, 48.458352 ], [ 16.171875, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 48.458352 ], [ 13.359375, 48.458352 ], [ 13.359375, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 49.837982 ], [ 11.953125, 49.837982 ], [ 11.953125, 50.289339 ], [ 13.359375, 50.289339 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 51.179343 ], [ 14.765625, 51.179343 ], [ 14.765625, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 51.179343 ], [ 14.765625, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 48.922499 ], [ 16.875000, 48.922499 ], [ 16.875000, 48.458352 ], [ 16.171875, 48.458352 ], [ 16.171875, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 48.458352 ], [ 13.359375, 48.458352 ], [ 13.359375, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 49.837982 ], [ 11.953125, 49.837982 ], [ 11.953125, 50.289339 ], [ 13.359375, 50.289339 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 51.179343 ], [ 14.765625, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 52.908902 ], [ 23.906250, 52.908902 ], [ 23.906250, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 21.796875, 48.922499 ], [ 21.796875, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.837982 ], [ 17.578125, 49.837982 ], [ 17.578125, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 14.765625, 50.736455 ], [ 14.765625, 52.482780 ], [ 14.062500, 52.482780 ], [ 14.062500, 53.748711 ], [ 14.765625, 53.748711 ], [ 14.765625, 54.162434 ], [ 16.171875, 54.162434 ], [ 16.171875, 54.572062 ], [ 19.687500, 54.572062 ], [ 19.687500, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 52.908902 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 54.572062 ], [ 19.687500, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 52.908902 ], [ 23.906250, 52.908902 ], [ 23.906250, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 21.796875, 48.922499 ], [ 21.796875, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.837982 ], [ 17.578125, 49.837982 ], [ 17.578125, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 14.765625, 50.736455 ], [ 14.765625, 52.482780 ], [ 14.062500, 52.482780 ], [ 14.062500, 53.748711 ], [ 14.765625, 53.748711 ], [ 14.765625, 54.162434 ], [ 16.171875, 54.162434 ], [ 16.171875, 54.572062 ], [ 19.687500, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.558860 ], [ 11.953125, 46.558860 ], [ 11.953125, 47.040182 ], [ 11.250000, 47.040182 ], [ 11.250000, 46.558860 ], [ 10.546875, 46.558860 ], [ 10.546875, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 47.517201 ], [ 13.359375, 47.517201 ], [ 13.359375, 47.989922 ], [ 12.656250, 47.989922 ], [ 12.656250, 48.458352 ], [ 14.765625, 48.458352 ], [ 14.765625, 48.922499 ], [ 16.171875, 48.922499 ], [ 16.171875, 48.458352 ], [ 16.875000, 48.458352 ], [ 16.875000, 47.040182 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 48.922499 ], [ 16.875000, 48.458352 ], [ 16.875000, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.558860 ], [ 11.953125, 46.558860 ], [ 11.953125, 47.040182 ], [ 11.250000, 47.040182 ], [ 11.250000, 46.558860 ], [ 10.546875, 46.558860 ], [ 10.546875, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 47.517201 ], [ 13.359375, 47.517201 ], [ 13.359375, 47.989922 ], [ 12.656250, 47.989922 ], [ 12.656250, 48.458352 ], [ 14.765625, 48.458352 ], [ 14.765625, 48.922499 ], [ 16.171875, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.073231 ], [ 14.062500, 46.073231 ], [ 14.062500, 46.558860 ], [ 16.875000, 46.558860 ], [ 16.875000, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.558860 ], [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 45.583290 ], [ 13.359375, 45.583290 ], [ 14.062500, 46.558860 ], [ 16.875000, 46.558860 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, 38.822591 ], [ 15.468750, 38.822591 ], [ 15.468750, 39.909736 ], [ 14.765625, 39.909736 ], [ 14.765625, 40.446947 ], [ 14.062500, 40.446947 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 44.087585 ], [ 8.437500, 44.087585 ], [ 8.437500, 43.580391 ], [ 7.734375, 43.580391 ], [ 7.734375, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 45.583290 ], [ 8.437500, 45.583290 ], [ 8.437500, 46.073231 ], [ 10.546875, 46.073231 ], [ 10.546875, 46.558860 ], [ 11.250000, 46.558860 ], [ 11.250000, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.073231 ], [ 13.359375, 46.073231 ], [ 13.359375, 45.583290 ], [ 12.656250, 45.583290 ], [ 12.656250, 44.590467 ], [ 11.953125, 44.590467 ], [ 11.953125, 44.087585 ], [ 12.656250, 44.087585 ], [ 12.656250, 43.580391 ], [ 13.359375, 43.580391 ], [ 13.359375, 43.068888 ], [ 14.062500, 43.068888 ], [ 14.062500, 42.032974 ], [ 16.171875, 42.032974 ], [ 16.171875, 40.979898 ], [ 17.578125, 40.979898 ], [ 17.578125, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 39.909736 ], [ 16.171875, 39.909736 ], [ 16.171875, 39.368279 ], [ 16.875000, 39.368279 ], [ 16.875000, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 38.822591 ] ] ], [ [ [ 9.140625, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.368279 ], [ 9.140625, 39.368279 ], [ 9.140625, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.140625, 40.979898 ], [ 9.140625, 40.446947 ] ] ], [ [ [ 18.281250, 40.446947 ], [ 18.281250, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.446947 ], [ 18.281250, 40.446947 ] ] ], [ [ [ 16.171875, 37.718590 ], [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ], [ 14.062500, 36.597889 ], [ 14.062500, 37.160317 ], [ 12.656250, 37.160317 ], [ 12.656250, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 37.718590 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, 38.272689 ], [ 16.171875, 37.718590 ], [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ], [ 14.062500, 36.597889 ], [ 14.062500, 37.160317 ], [ 12.656250, 37.160317 ], [ 12.656250, 38.272689 ], [ 16.171875, 38.272689 ] ] ], [ [ [ 17.578125, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 39.909736 ], [ 16.171875, 39.909736 ], [ 16.171875, 39.368279 ], [ 16.875000, 39.368279 ], [ 16.875000, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 38.822591 ], [ 15.468750, 38.822591 ], [ 15.468750, 39.909736 ], [ 14.765625, 39.909736 ], [ 14.765625, 40.446947 ], [ 14.062500, 40.446947 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 44.087585 ], [ 8.437500, 44.087585 ], [ 8.437500, 43.580391 ], [ 7.734375, 43.580391 ], [ 7.734375, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 45.583290 ], [ 8.437500, 45.583290 ], [ 8.437500, 46.073231 ], [ 10.546875, 46.073231 ], [ 10.546875, 46.558860 ], [ 11.250000, 46.558860 ], [ 11.250000, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.073231 ], [ 13.359375, 46.073231 ], [ 13.359375, 45.583290 ], [ 12.656250, 45.583290 ], [ 12.656250, 44.590467 ], [ 11.953125, 44.590467 ], [ 11.953125, 44.087585 ], [ 12.656250, 44.087585 ], [ 12.656250, 43.580391 ], [ 13.359375, 43.580391 ], [ 13.359375, 43.068888 ], [ 14.062500, 43.068888 ], [ 14.062500, 42.032974 ], [ 16.171875, 42.032974 ], [ 16.171875, 40.979898 ], [ 17.578125, 40.979898 ], [ 17.578125, 40.446947 ] ] ], [ [ [ 9.140625, 40.979898 ], [ 9.140625, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.368279 ], [ 9.140625, 39.368279 ], [ 9.140625, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.140625, 40.979898 ] ] ], [ [ [ 17.578125, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.446947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 43.580391 ], [ 15.468750, 44.087585 ], [ 14.765625, 44.087585 ], [ 14.765625, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.590467 ], [ 13.359375, 44.590467 ], [ 13.359375, 45.583290 ], [ 15.468750, 45.583290 ], [ 15.468750, 46.073231 ], [ 17.578125, 46.073231 ], [ 17.578125, 45.583290 ], [ 18.984375, 45.583290 ], [ 18.984375, 45.089036 ], [ 16.171875, 45.089036 ], [ 16.171875, 43.580391 ], [ 15.468750, 43.580391 ] ] ], [ [ [ 17.578125, 43.580391 ], [ 17.578125, 43.068888 ], [ 16.171875, 43.068888 ], [ 16.171875, 43.580391 ], [ 17.578125, 43.580391 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, 43.580391 ], [ 15.468750, 43.580391 ], [ 15.468750, 44.087585 ], [ 14.765625, 44.087585 ], [ 14.765625, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.590467 ], [ 13.359375, 44.590467 ], [ 13.359375, 45.583290 ], [ 15.468750, 45.583290 ], [ 15.468750, 46.073231 ], [ 17.578125, 46.073231 ], [ 17.578125, 45.583290 ], [ 18.984375, 45.583290 ], [ 18.984375, 45.089036 ], [ 16.171875, 45.089036 ], [ 16.171875, 43.580391 ] ] ], [ [ [ 16.171875, 43.580391 ], [ 17.578125, 43.580391 ], [ 17.578125, 43.068888 ], [ 16.171875, 43.068888 ], [ 16.171875, 43.580391 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 47.517201 ], [ 21.796875, 47.517201 ], [ 21.796875, 46.558860 ], [ 21.093750, 46.558860 ], [ 21.093750, 46.073231 ], [ 18.984375, 46.073231 ], [ 18.984375, 45.583290 ], [ 17.578125, 45.583290 ], [ 17.578125, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.558860 ], [ 16.171875, 46.558860 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 47.989922 ], [ 20.390625, 47.989922 ], [ 20.390625, 48.458352 ], [ 21.796875, 48.458352 ], [ 21.796875, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 47.517201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 48.458352 ], [ 21.796875, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 47.517201 ], [ 21.796875, 47.517201 ], [ 21.796875, 46.558860 ], [ 21.093750, 46.558860 ], [ 21.093750, 46.073231 ], [ 18.984375, 46.073231 ], [ 18.984375, 45.583290 ], [ 17.578125, 45.583290 ], [ 17.578125, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.558860 ], [ 16.171875, 46.558860 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 47.989922 ], [ 20.390625, 47.989922 ], [ 20.390625, 48.458352 ], [ 21.796875, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 18.281250, 48.922499 ], [ 18.281250, 49.382373 ], [ 21.796875, 49.382373 ], [ 21.796875, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 49.382373 ], [ 21.796875, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 17.578125, 48.922499 ], [ 18.281250, 49.382373 ], [ 21.796875, 49.382373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.580391 ], [ 18.984375, 43.580391 ], [ 18.984375, 42.553080 ], [ 17.578125, 42.553080 ], [ 17.578125, 43.580391 ], [ 16.171875, 43.580391 ], [ 16.171875, 45.089036 ], [ 19.687500, 45.089036 ], [ 19.687500, 44.590467 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 45.089036 ], [ 19.687500, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.580391 ], [ 18.984375, 43.580391 ], [ 18.984375, 42.553080 ], [ 17.578125, 42.553080 ], [ 17.578125, 43.580391 ], [ 16.171875, 43.580391 ], [ 16.171875, 45.089036 ], [ 19.687500, 45.089036 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.068888 ], [ 20.390625, 43.068888 ], [ 20.390625, 42.553080 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 42.553080 ], [ 18.984375, 42.553080 ], [ 18.984375, 43.580391 ], [ 19.687500, 43.580391 ], [ 19.687500, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.580391 ], [ 19.687500, 43.068888 ], [ 20.390625, 43.068888 ], [ 20.390625, 42.553080 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 42.553080 ], [ 18.984375, 42.553080 ], [ 18.984375, 43.580391 ], [ 19.687500, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.553080 ], [ 21.093750, 42.553080 ], [ 21.093750, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 44.087585 ], [ 18.984375, 44.087585 ], [ 18.984375, 44.590467 ], [ 19.687500, 44.590467 ], [ 19.687500, 45.089036 ], [ 18.984375, 45.089036 ], [ 18.984375, 46.073231 ], [ 20.390625, 46.073231 ], [ 20.390625, 45.583290 ], [ 21.093750, 45.583290 ], [ 21.093750, 45.089036 ], [ 21.796875, 45.089036 ], [ 21.796875, 44.590467 ], [ 22.500000, 44.590467 ], [ 22.500000, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 46.073231 ], [ 20.390625, 45.583290 ], [ 21.093750, 45.583290 ], [ 21.093750, 45.089036 ], [ 21.796875, 45.089036 ], [ 21.796875, 44.590467 ], [ 22.500000, 44.590467 ], [ 22.500000, 42.553080 ], [ 21.093750, 42.553080 ], [ 21.093750, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 44.087585 ], [ 18.984375, 44.087585 ], [ 18.984375, 44.590467 ], [ 19.687500, 44.590467 ], [ 19.687500, 45.089036 ], [ 18.984375, 45.089036 ], [ 18.984375, 46.073231 ], [ 20.390625, 46.073231 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 40.446947 ], [ 20.390625, 40.446947 ], [ 20.390625, 39.368279 ], [ 19.687500, 39.368279 ], [ 19.687500, 40.446947 ], [ 18.984375, 40.446947 ], [ 18.984375, 40.979898 ], [ 19.687500, 40.979898 ], [ 19.687500, 42.553080 ], [ 20.390625, 42.553080 ], [ 20.390625, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 40.446947 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 42.553080 ], [ 20.390625, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 40.446947 ], [ 20.390625, 40.446947 ], [ 20.390625, 39.368279 ], [ 19.687500, 39.368279 ], [ 19.687500, 40.446947 ], [ 18.984375, 40.446947 ], [ 18.984375, 40.979898 ], [ 19.687500, 40.979898 ], [ 19.687500, 42.553080 ], [ 20.390625, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 41.508577 ], [ 22.500000, 41.508577 ], [ 22.500000, 40.979898 ], [ 20.390625, 40.979898 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.032974 ], [ 21.796875, 42.553080 ], [ 22.500000, 42.553080 ], [ 22.500000, 42.032974 ], [ 23.203125, 42.032974 ], [ 23.203125, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.553080 ], [ 22.500000, 42.032974 ], [ 23.203125, 42.032974 ], [ 23.203125, 41.508577 ], [ 22.500000, 41.508577 ], [ 22.500000, 40.979898 ], [ 20.390625, 40.979898 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.032974 ], [ 21.796875, 42.553080 ], [ 22.500000, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, 63.233627 ], [ 30.937500, 63.233627 ], [ 30.937500, 62.915233 ], [ 31.640625, 62.915233 ], [ 31.640625, 62.593341 ], [ 30.937500, 62.593341 ], [ 30.937500, 61.938950 ], [ 30.234375, 61.938950 ], [ 30.234375, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 61.270233 ], [ 28.828125, 61.270233 ], [ 28.828125, 60.586967 ], [ 26.015625, 60.586967 ], [ 26.015625, 60.239811 ], [ 25.312500, 60.239811 ], [ 25.312500, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 21.093750, 60.239811 ], [ 21.093750, 60.930432 ], [ 21.796875, 60.930432 ], [ 21.796875, 61.938950 ], [ 21.093750, 61.938950 ], [ 21.093750, 62.915233 ], [ 21.796875, 62.915233 ], [ 21.796875, 63.548552 ], [ 22.500000, 63.548552 ], [ 22.500000, 63.860036 ], [ 23.203125, 63.860036 ], [ 23.203125, 64.168107 ], [ 23.906250, 64.168107 ], [ 23.906250, 64.472794 ], [ 24.609375, 64.472794 ], [ 24.609375, 64.774125 ], [ 25.312500, 64.774125 ], [ 25.312500, 65.658275 ], [ 23.906250, 65.658275 ], [ 23.906250, 67.067433 ], [ 23.203125, 67.067433 ], [ 23.203125, 67.875541 ], [ 22.500000, 67.875541 ], [ 22.500000, 68.399180 ], [ 21.796875, 68.399180 ], [ 21.796875, 68.656555 ], [ 21.093750, 68.656555 ], [ 21.093750, 68.911005 ], [ 20.390625, 68.911005 ], [ 20.390625, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 23.906250, 68.911005 ], [ 23.906250, 68.656555 ], [ 25.312500, 68.656555 ], [ 25.312500, 68.911005 ], [ 26.015625, 68.911005 ], [ 26.015625, 69.900118 ], [ 28.125000, 69.900118 ], [ 28.125000, 69.657086 ], [ 28.828125, 69.657086 ], [ 28.828125, 68.656555 ], [ 28.125000, 68.656555 ], [ 28.125000, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.609221 ], [ 30.234375, 67.609221 ], [ 30.234375, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.067433 ], [ 28.828125, 67.067433 ], [ 28.828125, 66.791909 ], [ 29.531250, 66.791909 ], [ 29.531250, 66.231457 ], [ 30.234375, 66.231457 ], [ 30.234375, 65.366837 ], [ 29.531250, 65.366837 ], [ 29.531250, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 63.233627 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 69.900118 ], [ 28.125000, 69.657086 ], [ 28.828125, 69.657086 ], [ 28.828125, 68.656555 ], [ 28.125000, 68.656555 ], [ 28.125000, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.609221 ], [ 30.234375, 67.609221 ], [ 30.234375, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.067433 ], [ 28.828125, 67.067433 ], [ 28.828125, 66.791909 ], [ 29.531250, 66.791909 ], [ 29.531250, 66.231457 ], [ 30.234375, 66.231457 ], [ 30.234375, 65.366837 ], [ 29.531250, 65.366837 ], [ 29.531250, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 63.233627 ], [ 30.937500, 63.233627 ], [ 30.937500, 62.915233 ], [ 31.640625, 62.915233 ], [ 31.640625, 62.593341 ], [ 30.937500, 62.593341 ], [ 30.937500, 61.938950 ], [ 30.234375, 61.938950 ], [ 30.234375, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 61.270233 ], [ 28.828125, 61.270233 ], [ 28.828125, 60.586967 ], [ 26.015625, 60.586967 ], [ 26.015625, 60.239811 ], [ 25.312500, 60.239811 ], [ 25.312500, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 21.093750, 60.239811 ], [ 21.093750, 60.930432 ], [ 21.796875, 60.930432 ], [ 21.796875, 61.938950 ], [ 21.093750, 61.938950 ], [ 21.093750, 62.915233 ], [ 21.796875, 62.915233 ], [ 21.796875, 63.548552 ], [ 22.500000, 63.548552 ], [ 22.500000, 63.860036 ], [ 23.203125, 63.860036 ], [ 23.203125, 64.168107 ], [ 23.906250, 64.168107 ], [ 23.906250, 64.472794 ], [ 24.609375, 64.472794 ], [ 24.609375, 64.774125 ], [ 25.312500, 64.774125 ], [ 25.312500, 65.658275 ], [ 23.906250, 65.658275 ], [ 23.906250, 67.067433 ], [ 23.203125, 67.067433 ], [ 23.203125, 67.875541 ], [ 22.500000, 67.875541 ], [ 22.500000, 68.399180 ], [ 21.796875, 68.399180 ], [ 21.796875, 68.656555 ], [ 21.093750, 68.656555 ], [ 21.093750, 68.911005 ], [ 20.390625, 68.911005 ], [ 20.390625, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 23.906250, 68.911005 ], [ 23.906250, 68.656555 ], [ 25.312500, 68.656555 ], [ 25.312500, 68.911005 ], [ 26.015625, 68.911005 ], [ 26.015625, 69.900118 ], [ 28.125000, 69.900118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 56.944974 ], [ 28.125000, 56.944974 ], [ 28.125000, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.170023 ], [ 21.093750, 56.170023 ], [ 21.093750, 56.944974 ], [ 21.796875, 56.944974 ], [ 21.796875, 57.326521 ], [ 23.203125, 57.326521 ], [ 23.203125, 56.944974 ], [ 23.906250, 56.944974 ], [ 23.906250, 57.326521 ], [ 24.609375, 57.326521 ], [ 24.609375, 57.704147 ], [ 25.312500, 57.704147 ], [ 25.312500, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 56.944974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 57.704147 ], [ 25.312500, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 56.944974 ], [ 28.125000, 56.944974 ], [ 28.125000, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.170023 ], [ 21.093750, 56.170023 ], [ 21.093750, 56.944974 ], [ 21.796875, 56.944974 ], [ 21.796875, 57.326521 ], [ 23.203125, 57.326521 ], [ 23.203125, 56.944974 ], [ 23.906250, 56.944974 ], [ 23.906250, 57.326521 ], [ 24.609375, 57.326521 ], [ 24.609375, 57.704147 ], [ 25.312500, 57.704147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 57.326521 ], [ 25.312500, 57.326521 ], [ 25.312500, 57.704147 ], [ 24.609375, 57.704147 ], [ 24.609375, 58.077876 ], [ 23.203125, 58.077876 ], [ 23.203125, 59.175928 ], [ 24.609375, 59.175928 ], [ 24.609375, 59.534318 ], [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 57.326521 ], [ 25.312500, 57.326521 ], [ 25.312500, 58.077876 ], [ 24.609375, 57.704147 ], [ 24.609375, 58.077876 ], [ 23.203125, 58.077876 ], [ 23.203125, 59.175928 ], [ 24.609375, 59.175928 ], [ 24.609375, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.572062 ], [ 25.312500, 54.572062 ], [ 25.312500, 53.748711 ], [ 23.203125, 53.748711 ], [ 23.203125, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 56.170023 ], [ 25.312500, 56.170023 ], [ 25.312500, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.170023 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.572062 ], [ 25.312500, 54.572062 ], [ 25.312500, 53.748711 ], [ 23.203125, 53.748711 ], [ 23.203125, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 56.170023 ], [ 25.312500, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, 53.748711 ], [ 32.343750, 53.748711 ], [ 32.343750, 53.330873 ], [ 31.640625, 53.330873 ], [ 31.640625, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.179343 ], [ 28.828125, 51.179343 ], [ 28.828125, 51.618017 ], [ 25.312500, 51.618017 ], [ 25.312500, 52.052490 ], [ 24.609375, 52.052490 ], [ 24.609375, 51.618017 ], [ 23.203125, 51.618017 ], [ 23.203125, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 52.908902 ], [ 23.203125, 52.908902 ], [ 23.203125, 53.748711 ], [ 25.312500, 53.748711 ], [ 25.312500, 54.572062 ], [ 26.015625, 54.572062 ], [ 26.015625, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 54.572062 ], [ 31.640625, 54.572062 ], [ 31.640625, 53.748711 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, 55.776573 ], [ 30.234375, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 54.572062 ], [ 31.640625, 54.572062 ], [ 31.640625, 53.748711 ], [ 32.343750, 53.748711 ], [ 32.343750, 53.330873 ], [ 31.640625, 53.330873 ], [ 31.640625, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.179343 ], [ 28.828125, 51.179343 ], [ 28.828125, 51.618017 ], [ 25.312500, 51.618017 ], [ 25.312500, 52.052490 ], [ 24.609375, 52.052490 ], [ 24.609375, 51.618017 ], [ 23.203125, 51.618017 ], [ 23.203125, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 52.908902 ], [ 23.203125, 52.908902 ], [ 23.203125, 53.748711 ], [ 25.312500, 53.748711 ], [ 25.312500, 54.572062 ], [ 26.015625, 54.572062 ], [ 26.015625, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.776573 ], [ 30.234375, 55.776573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 47.517201 ], [ 25.312500, 47.517201 ], [ 25.312500, 47.989922 ], [ 27.421875, 47.989922 ], [ 27.421875, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.590467 ], [ 28.828125, 44.590467 ], [ 28.828125, 43.580391 ], [ 27.421875, 43.580391 ], [ 27.421875, 44.087585 ], [ 26.015625, 44.087585 ], [ 26.015625, 43.580391 ], [ 22.500000, 43.580391 ], [ 22.500000, 44.590467 ], [ 21.796875, 44.590467 ], [ 21.796875, 45.089036 ], [ 21.093750, 45.089036 ], [ 21.093750, 45.583290 ], [ 20.390625, 45.583290 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.558860 ], [ 21.796875, 46.558860 ], [ 21.796875, 47.517201 ], [ 22.500000, 47.517201 ], [ 22.500000, 47.989922 ], [ 24.609375, 47.989922 ], [ 24.609375, 47.517201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 47.989922 ], [ 27.421875, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.590467 ], [ 28.828125, 44.590467 ], [ 28.828125, 43.580391 ], [ 27.421875, 43.580391 ], [ 27.421875, 44.087585 ], [ 26.015625, 44.087585 ], [ 26.015625, 43.580391 ], [ 22.500000, 43.580391 ], [ 22.500000, 44.590467 ], [ 21.796875, 44.590467 ], [ 21.796875, 45.089036 ], [ 21.093750, 45.089036 ], [ 21.093750, 45.583290 ], [ 20.390625, 45.583290 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.558860 ], [ 21.796875, 46.558860 ], [ 21.796875, 47.517201 ], [ 22.500000, 47.989922 ], [ 24.609375, 47.989922 ], [ 24.609375, 47.517201 ], [ 25.312500, 47.517201 ], [ 25.312500, 47.989922 ], [ 27.421875, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 43.068888 ], [ 28.125000, 43.068888 ], [ 28.125000, 42.553080 ], [ 27.421875, 42.553080 ], [ 27.421875, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 41.508577 ], [ 23.203125, 41.508577 ], [ 23.203125, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 43.580391 ], [ 26.015625, 43.580391 ], [ 26.015625, 44.087585 ], [ 27.421875, 44.087585 ], [ 27.421875, 43.580391 ], [ 28.828125, 43.580391 ], [ 28.828125, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 44.087585 ], [ 27.421875, 43.580391 ], [ 28.828125, 43.580391 ], [ 28.828125, 43.068888 ], [ 28.125000, 43.068888 ], [ 28.125000, 42.553080 ], [ 27.421875, 42.553080 ], [ 27.421875, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 41.508577 ], [ 23.203125, 41.508577 ], [ 23.203125, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 43.580391 ], [ 26.015625, 43.580391 ], [ 26.015625, 44.087585 ], [ 27.421875, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.828125, 47.989922 ], [ 28.828125, 47.517201 ], [ 29.531250, 47.517201 ], [ 29.531250, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 47.040182 ], [ 27.421875, 47.040182 ], [ 27.421875, 47.989922 ], [ 28.828125, 47.989922 ] ] ], [ [ [ 26.718750, 47.989922 ], [ 26.718750, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 47.989922 ], [ 26.718750, 47.989922 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.421875, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 47.517201 ], [ 29.531250, 47.517201 ], [ 29.531250, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 47.040182 ], [ 27.421875, 47.040182 ], [ 27.421875, 47.989922 ] ] ], [ [ [ 27.421875, 47.989922 ], [ 26.718750, 47.989922 ], [ 26.718750, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 47.989922 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 51.179343 ], [ 30.937500, 51.179343 ], [ 30.937500, 52.052490 ], [ 34.453125, 52.052490 ], [ 34.453125, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 49.837982 ], [ 38.671875, 49.837982 ], [ 38.671875, 49.382373 ], [ 40.078125, 49.382373 ], [ 40.078125, 48.922499 ], [ 39.375000, 48.922499 ], [ 39.375000, 48.458352 ], [ 40.078125, 48.458352 ], [ 40.078125, 47.989922 ], [ 38.671875, 47.989922 ], [ 38.671875, 47.517201 ], [ 37.968750, 47.517201 ], [ 37.968750, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.558860 ], [ 35.859375, 46.558860 ], [ 35.859375, 46.073231 ], [ 35.156250, 46.073231 ], [ 35.156250, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.089036 ], [ 35.156250, 45.089036 ], [ 35.156250, 44.590467 ], [ 33.750000, 44.590467 ], [ 33.750000, 45.089036 ], [ 32.343750, 45.089036 ], [ 32.343750, 45.583290 ], [ 33.750000, 45.583290 ], [ 33.750000, 46.073231 ], [ 31.640625, 46.073231 ], [ 31.640625, 46.558860 ], [ 30.937500, 46.558860 ], [ 30.937500, 46.073231 ], [ 30.234375, 46.073231 ], [ 30.234375, 45.583290 ], [ 29.531250, 45.583290 ], [ 29.531250, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 45.583290 ], [ 28.828125, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.531250, 46.558860 ], [ 29.531250, 47.517201 ], [ 28.828125, 47.517201 ], [ 28.828125, 47.989922 ], [ 27.421875, 47.989922 ], [ 27.421875, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 47.517201 ], [ 24.609375, 47.517201 ], [ 24.609375, 47.989922 ], [ 21.796875, 47.989922 ], [ 21.796875, 48.458352 ], [ 22.500000, 48.458352 ], [ 22.500000, 49.837982 ], [ 23.203125, 49.837982 ], [ 23.203125, 50.289339 ], [ 23.906250, 50.289339 ], [ 23.906250, 51.179343 ], [ 23.203125, 51.179343 ], [ 23.203125, 51.618017 ], [ 24.609375, 51.618017 ], [ 24.609375, 52.052490 ], [ 25.312500, 52.052490 ], [ 25.312500, 51.618017 ], [ 28.828125, 51.618017 ], [ 28.828125, 51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 52.052490 ], [ 34.453125, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 49.837982 ], [ 38.671875, 49.837982 ], [ 38.671875, 49.382373 ], [ 40.078125, 49.382373 ], [ 40.078125, 48.922499 ], [ 39.375000, 48.922499 ], [ 39.375000, 48.458352 ], [ 40.078125, 48.458352 ], [ 40.078125, 47.989922 ], [ 38.671875, 47.989922 ], [ 38.671875, 47.517201 ], [ 37.968750, 47.517201 ], [ 37.968750, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.558860 ], [ 35.859375, 46.558860 ], [ 35.859375, 46.073231 ], [ 35.156250, 46.073231 ], [ 35.156250, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.089036 ], [ 35.156250, 45.089036 ], [ 35.156250, 44.590467 ], [ 33.750000, 44.590467 ], [ 33.750000, 45.089036 ], [ 32.343750, 45.089036 ], [ 32.343750, 45.583290 ], [ 33.750000, 45.583290 ], [ 33.750000, 46.073231 ], [ 31.640625, 46.073231 ], [ 31.640625, 46.558860 ], [ 30.937500, 46.558860 ], [ 30.937500, 46.073231 ], [ 30.234375, 46.073231 ], [ 30.234375, 45.583290 ], [ 29.531250, 45.583290 ], [ 29.531250, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 45.583290 ], [ 28.828125, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.531250, 46.558860 ], [ 29.531250, 47.517201 ], [ 28.828125, 47.517201 ], [ 28.828125, 47.989922 ], [ 27.421875, 47.989922 ], [ 27.421875, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 47.517201 ], [ 24.609375, 47.517201 ], [ 24.609375, 47.989922 ], [ 21.796875, 47.989922 ], [ 21.796875, 48.458352 ], [ 22.500000, 48.458352 ], [ 22.500000, 49.837982 ], [ 23.203125, 49.837982 ], [ 23.203125, 50.289339 ], [ 23.906250, 50.289339 ], [ 23.906250, 51.179343 ], [ 23.203125, 51.179343 ], [ 23.203125, 51.618017 ], [ 24.609375, 51.618017 ], [ 24.609375, 52.052490 ], [ 25.312500, 52.052490 ], [ 25.312500, 51.618017 ], [ 28.828125, 51.618017 ], [ 28.828125, 51.179343 ], [ 30.234375, 51.179343 ], [ 30.937500, 52.052490 ], [ 34.453125, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.187500, 43.068888 ], [ 42.187500, 42.553080 ], [ 45.703125, 42.553080 ], [ 45.703125, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 40.979898 ], [ 42.890625, 40.979898 ], [ 42.890625, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 42.553080 ], [ 40.781250, 42.553080 ], [ 40.781250, 43.068888 ], [ 42.187500, 43.068888 ] ] ], [ [ [ 40.078125, 43.068888 ], [ 40.078125, 43.580391 ], [ 40.781250, 43.580391 ], [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.781250, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 42.553080 ], [ 45.703125, 42.553080 ], [ 45.703125, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 40.979898 ], [ 42.890625, 40.979898 ], [ 42.890625, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 42.553080 ], [ 40.781250, 42.553080 ], [ 40.781250, 43.068888 ] ] ], [ [ [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.580391 ], [ 40.781250, 43.580391 ], [ 40.781250, 43.068888 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.546875, 35.460670 ], [ 11.250000, 35.460670 ], [ 11.250000, 34.885931 ], [ 10.546875, 34.885931 ], [ 10.546875, 34.307144 ], [ 9.843750, 34.307144 ], [ 9.843750, 33.724340 ], [ 10.546875, 33.724340 ], [ 10.546875, 33.137551 ], [ 11.250000, 33.137551 ], [ 11.250000, 31.952162 ], [ 10.546875, 31.952162 ], [ 10.546875, 31.353637 ], [ 9.843750, 31.353637 ], [ 9.843750, 30.145127 ], [ 9.140625, 30.145127 ], [ 9.140625, 31.952162 ], [ 8.437500, 31.952162 ], [ 8.437500, 32.546813 ], [ 7.734375, 32.546813 ], [ 7.734375, 34.307144 ], [ 8.437500, 34.307144 ], [ 8.437500, 37.160317 ], [ 10.546875, 37.160317 ], [ 10.546875, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.546875, 37.160317 ], [ 10.546875, 35.460670 ], [ 11.250000, 35.460670 ], [ 11.250000, 34.885931 ], [ 10.546875, 34.885931 ], [ 10.546875, 34.307144 ], [ 9.843750, 34.307144 ], [ 9.843750, 33.724340 ], [ 10.546875, 33.724340 ], [ 10.546875, 33.137551 ], [ 11.250000, 33.137551 ], [ 11.250000, 31.952162 ], [ 10.546875, 31.952162 ], [ 10.546875, 31.353637 ], [ 9.843750, 31.353637 ], [ 9.843750, 30.145127 ], [ 9.140625, 30.145127 ], [ 9.140625, 31.952162 ], [ 8.437500, 31.952162 ], [ 8.437500, 32.546813 ], [ 7.734375, 32.546813 ], [ 7.734375, 34.307144 ], [ 8.437500, 34.307144 ], [ 8.437500, 37.160317 ], [ 10.546875, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.140625, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 25.799891 ], [ 9.140625, 25.799891 ], [ 9.140625, 25.165173 ], [ 9.843750, 25.165173 ], [ 9.843750, 24.527135 ], [ 10.546875, 24.527135 ], [ 10.546875, 23.885838 ], [ 11.250000, 23.885838 ], [ 11.250000, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 21.943046 ], [ 9.140625, 21.943046 ], [ 9.140625, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 20.632784 ], [ 7.734375, 20.632784 ], [ 7.734375, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -3.515625, 23.241346 ], [ -3.515625, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -1.406250, 34.885931 ], [ -1.406250, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.031332 ], [ 1.406250, 36.031332 ], [ 1.406250, 36.597889 ], [ 6.328125, 36.597889 ], [ 6.328125, 37.160317 ], [ 8.437500, 37.160317 ], [ 8.437500, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 32.546813 ], [ 8.437500, 32.546813 ], [ 8.437500, 31.952162 ], [ 9.140625, 31.952162 ], [ 9.140625, 29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 37.160317 ], [ 8.437500, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 32.546813 ], [ 8.437500, 32.546813 ], [ 8.437500, 31.952162 ], [ 9.140625, 31.952162 ], [ 9.140625, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 25.799891 ], [ 9.140625, 25.799891 ], [ 9.140625, 25.165173 ], [ 9.843750, 25.165173 ], [ 9.843750, 24.527135 ], [ 10.546875, 24.527135 ], [ 10.546875, 23.885838 ], [ 11.250000, 23.885838 ], [ 11.250000, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 21.943046 ], [ 9.140625, 21.943046 ], [ 9.140625, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 20.632784 ], [ 7.734375, 20.632784 ], [ 7.734375, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -3.515625, 23.241346 ], [ -3.515625, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -1.406250, 34.885931 ], [ -1.406250, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.031332 ], [ 1.406250, 36.031332 ], [ 1.406250, 36.597889 ], [ 6.328125, 36.597889 ], [ 6.328125, 37.160317 ], [ 8.437500, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 30.751278 ], [ 18.281250, 30.751278 ], [ 18.281250, 30.145127 ], [ 19.687500, 30.145127 ], [ 19.687500, 30.751278 ], [ 20.390625, 30.751278 ], [ 20.390625, 31.353637 ], [ 19.687500, 31.353637 ], [ 19.687500, 31.952162 ], [ 21.093750, 31.952162 ], [ 21.093750, 32.546813 ], [ 23.203125, 32.546813 ], [ 23.203125, 31.952162 ], [ 24.609375, 31.952162 ], [ 24.609375, 29.535230 ], [ 25.312500, 29.535230 ], [ 25.312500, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.311143 ], [ 22.500000, 19.311143 ], [ 22.500000, 19.973349 ], [ 21.093750, 19.973349 ], [ 21.093750, 20.632784 ], [ 19.687500, 20.632784 ], [ 19.687500, 21.289374 ], [ 18.984375, 21.289374 ], [ 18.984375, 21.943046 ], [ 17.578125, 21.943046 ], [ 17.578125, 22.593726 ], [ 13.359375, 22.593726 ], [ 13.359375, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 23.885838 ], [ 10.546875, 23.885838 ], [ 10.546875, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.165173 ], [ 9.140625, 25.165173 ], [ 9.140625, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 29.535230 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.145127 ], [ 9.843750, 30.145127 ], [ 9.843750, 31.353637 ], [ 10.546875, 31.353637 ], [ 10.546875, 31.952162 ], [ 11.250000, 31.952162 ], [ 11.250000, 32.546813 ], [ 15.468750, 32.546813 ], [ 15.468750, 31.353637 ], [ 16.875000, 31.353637 ], [ 16.875000, 30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 32.546813 ], [ 23.203125, 31.952162 ], [ 24.609375, 31.952162 ], [ 24.609375, 29.535230 ], [ 25.312500, 29.535230 ], [ 25.312500, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.311143 ], [ 22.500000, 19.311143 ], [ 22.500000, 19.973349 ], [ 21.093750, 19.973349 ], [ 21.093750, 20.632784 ], [ 19.687500, 20.632784 ], [ 19.687500, 21.289374 ], [ 18.984375, 21.289374 ], [ 18.984375, 21.943046 ], [ 17.578125, 21.943046 ], [ 17.578125, 22.593726 ], [ 13.359375, 22.593726 ], [ 13.359375, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 23.885838 ], [ 10.546875, 23.885838 ], [ 10.546875, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.165173 ], [ 9.140625, 25.165173 ], [ 9.140625, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 29.535230 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.145127 ], [ 9.843750, 30.145127 ], [ 9.843750, 31.353637 ], [ 10.546875, 31.353637 ], [ 10.546875, 31.952162 ], [ 11.250000, 31.952162 ], [ 11.250000, 32.546813 ], [ 15.468750, 32.546813 ], [ 15.468750, 31.353637 ], [ 16.875000, 31.353637 ], [ 16.875000, 30.751278 ], [ 18.281250, 30.751278 ], [ 18.281250, 30.145127 ], [ 19.687500, 30.145127 ], [ 19.687500, 30.751278 ], [ 20.390625, 30.751278 ], [ 20.390625, 31.353637 ], [ 19.687500, 31.353637 ], [ 19.687500, 31.952162 ], [ 21.093750, 31.952162 ], [ 21.093750, 32.546813 ], [ 23.203125, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 21.289374 ], [ 15.468750, 21.289374 ], [ 15.468750, 20.632784 ], [ 16.171875, 20.632784 ], [ 16.171875, 19.973349 ], [ 15.468750, 19.973349 ], [ 15.468750, 15.961329 ], [ 14.062500, 15.961329 ], [ 14.062500, 15.284185 ], [ 13.359375, 15.284185 ], [ 13.359375, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 13.239945 ], [ 14.765625, 13.239945 ], [ 14.765625, 12.554564 ], [ 13.359375, 12.554564 ], [ 13.359375, 13.239945 ], [ 9.843750, 13.239945 ], [ 9.843750, 12.554564 ], [ 7.734375, 12.554564 ], [ 7.734375, 13.239945 ], [ 5.625000, 13.239945 ], [ 5.625000, 13.923404 ], [ 4.218750, 13.923404 ], [ 4.218750, 12.554564 ], [ 3.515625, 12.554564 ], [ 3.515625, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 0.703125, 12.554564 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 14.604847 ], [ 0.703125, 14.604847 ], [ 0.703125, 15.284185 ], [ 3.515625, 15.284185 ], [ 3.515625, 15.961329 ], [ 4.218750, 15.961329 ], [ 4.218750, 19.311143 ], [ 6.328125, 19.311143 ], [ 6.328125, 19.973349 ], [ 7.734375, 19.973349 ], [ 7.734375, 20.632784 ], [ 8.437500, 20.632784 ], [ 8.437500, 21.289374 ], [ 9.140625, 21.289374 ], [ 9.140625, 21.943046 ], [ 10.546875, 21.943046 ], [ 10.546875, 22.593726 ], [ 11.953125, 22.593726 ], [ 11.953125, 23.241346 ], [ 13.359375, 23.241346 ], [ 13.359375, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.289374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 23.241346 ], [ 13.359375, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.289374 ], [ 15.468750, 21.289374 ], [ 15.468750, 20.632784 ], [ 16.171875, 20.632784 ], [ 16.171875, 19.973349 ], [ 15.468750, 19.973349 ], [ 15.468750, 15.961329 ], [ 14.062500, 15.961329 ], [ 14.062500, 15.284185 ], [ 13.359375, 15.284185 ], [ 13.359375, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 13.239945 ], [ 14.765625, 13.239945 ], [ 14.765625, 12.554564 ], [ 13.359375, 12.554564 ], [ 13.359375, 13.239945 ], [ 9.843750, 13.239945 ], [ 9.843750, 12.554564 ], [ 7.734375, 12.554564 ], [ 7.734375, 13.239945 ], [ 5.625000, 13.239945 ], [ 5.625000, 13.923404 ], [ 4.218750, 13.923404 ], [ 4.218750, 12.554564 ], [ 3.515625, 12.554564 ], [ 3.515625, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 0.703125, 12.554564 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 14.604847 ], [ 0.703125, 14.604847 ], [ 0.703125, 15.284185 ], [ 3.515625, 15.284185 ], [ 3.515625, 15.961329 ], [ 4.218750, 15.961329 ], [ 4.218750, 19.311143 ], [ 6.328125, 19.311143 ], [ 6.328125, 19.973349 ], [ 7.734375, 19.973349 ], [ 7.734375, 20.632784 ], [ 8.437500, 20.632784 ], [ 8.437500, 21.289374 ], [ 9.140625, 21.289374 ], [ 9.140625, 21.943046 ], [ 10.546875, 21.943046 ], [ 10.546875, 22.593726 ], [ 11.953125, 22.593726 ], [ 11.953125, 23.241346 ], [ 13.359375, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 5.615986 ], [ 0.703125, 5.615986 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ] ] ], [ [ [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 0.000000, 10.487812 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 5.615986 ], [ 0.703125, 5.615986 ], [ 0.703125, 10.487812 ] ] ], [ [ [ 0.703125, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.867351 ], [ 3.515625, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 3.515625, 11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 11.867351 ], [ 14.765625, 11.867351 ], [ 14.765625, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.102097 ], [ 12.656250, 9.102097 ], [ 12.656250, 8.407168 ], [ 11.953125, 8.407168 ], [ 11.953125, 6.315299 ], [ 10.546875, 6.315299 ], [ 10.546875, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 4.915833 ], [ 4.921875, 4.915833 ], [ 4.921875, 5.615986 ], [ 4.218750, 5.615986 ], [ 4.218750, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.515625, 9.102097 ], [ 3.515625, 12.554564 ], [ 4.218750, 12.554564 ], [ 4.218750, 13.923404 ], [ 5.625000, 13.923404 ], [ 5.625000, 13.239945 ], [ 7.734375, 13.239945 ], [ 7.734375, 12.554564 ], [ 9.843750, 12.554564 ], [ 9.843750, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 13.923404 ], [ 5.625000, 13.239945 ], [ 7.734375, 13.239945 ], [ 7.734375, 12.554564 ], [ 9.843750, 12.554564 ], [ 9.843750, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 11.867351 ], [ 14.765625, 11.867351 ], [ 14.765625, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.102097 ], [ 12.656250, 9.102097 ], [ 12.656250, 8.407168 ], [ 11.953125, 8.407168 ], [ 11.953125, 6.315299 ], [ 10.546875, 6.315299 ], [ 10.546875, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 4.915833 ], [ 4.921875, 4.915833 ], [ 4.921875, 5.615986 ], [ 4.218750, 5.615986 ], [ 4.218750, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.515625, 9.102097 ], [ 3.515625, 12.554564 ], [ 4.218750, 12.554564 ], [ 4.218750, 13.923404 ], [ 5.625000, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 2.108899 ], [ 11.250000, 2.108899 ], [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.108899 ] ] ], [ [ [ 9.843750, 0.703107 ], [ 9.140625, 0.703107 ], [ 9.140625, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 0.703107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 1.406109 ], [ 9.843750, 0.703107 ], [ 9.140625, 0.703107 ], [ 9.140625, 1.406109 ], [ 9.843750, 1.406109 ] ] ], [ [ [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.108899 ], [ 11.250000, 2.108899 ], [ 11.250000, 1.406109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 13.239945 ], [ 21.796875, 13.239945 ], [ 21.796875, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 9.795678 ], [ 21.093750, 9.795678 ], [ 21.093750, 9.102097 ], [ 18.984375, 9.102097 ], [ 18.984375, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.710992 ], [ 15.468750, 7.710992 ], [ 15.468750, 8.407168 ], [ 14.765625, 8.407168 ], [ 14.765625, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 13.239945 ], [ 14.062500, 13.239945 ], [ 14.062500, 13.923404 ], [ 13.359375, 13.923404 ], [ 13.359375, 15.284185 ], [ 14.062500, 15.284185 ], [ 14.062500, 15.961329 ], [ 15.468750, 15.961329 ], [ 15.468750, 19.973349 ], [ 16.171875, 19.973349 ], [ 16.171875, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.289374 ], [ 14.765625, 21.289374 ], [ 14.765625, 22.593726 ], [ 17.578125, 22.593726 ], [ 17.578125, 21.943046 ], [ 18.984375, 21.943046 ], [ 18.984375, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 22.593726 ], [ 17.578125, 21.943046 ], [ 18.984375, 21.943046 ], [ 18.984375, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 13.239945 ], [ 21.796875, 13.239945 ], [ 21.796875, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 9.795678 ], [ 21.093750, 9.795678 ], [ 21.093750, 9.102097 ], [ 18.984375, 9.102097 ], [ 18.984375, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.710992 ], [ 15.468750, 7.710992 ], [ 15.468750, 8.407168 ], [ 14.765625, 8.407168 ], [ 14.765625, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 13.239945 ], [ 14.062500, 13.239945 ], [ 14.062500, 13.923404 ], [ 13.359375, 13.923404 ], [ 13.359375, 15.284185 ], [ 14.062500, 15.284185 ], [ 14.062500, 15.961329 ], [ 15.468750, 15.961329 ], [ 15.468750, 19.973349 ], [ 16.171875, 19.973349 ], [ 16.171875, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.289374 ], [ 14.765625, 21.289374 ], [ 14.765625, 22.593726 ], [ 17.578125, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.765625, 9.102097 ], [ 14.765625, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 7.013668 ], [ 14.765625, 7.013668 ], [ 14.765625, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 1.406109 ], [ 15.468750, 1.406109 ], [ 15.468750, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 2.811371 ], [ 9.140625, 2.811371 ], [ 9.140625, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.140625, 5.615986 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.315299 ], [ 11.953125, 6.315299 ], [ 11.953125, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.359375, 9.102097 ], [ 13.359375, 10.487812 ], [ 14.062500, 10.487812 ], [ 14.062500, 11.178402 ], [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.468750, 10.487812 ], [ 15.468750, 9.795678 ] ] ], [ [ [ 14.062500, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ], [ 14.062500, 11.867351 ], [ 14.062500, 12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.468750, 10.487812 ], [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.765625, 9.102097 ], [ 14.765625, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 7.013668 ], [ 14.765625, 7.013668 ], [ 14.765625, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 2.811371 ], [ 9.140625, 2.811371 ], [ 9.140625, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.140625, 5.615986 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.315299 ], [ 11.953125, 6.315299 ], [ 11.953125, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.359375, 9.102097 ], [ 13.359375, 10.487812 ], [ 14.062500, 10.487812 ], [ 14.062500, 11.178402 ], [ 14.765625, 11.178402 ] ] ], [ [ [ 14.765625, 11.867351 ], [ 14.062500, 11.867351 ], [ 14.062500, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 9.102097 ], [ 23.203125, 9.102097 ], [ 23.203125, 8.407168 ], [ 24.609375, 8.407168 ], [ 24.609375, 7.710992 ], [ 25.312500, 7.710992 ], [ 25.312500, 7.013668 ], [ 26.015625, 7.013668 ], [ 26.015625, 5.615986 ], [ 27.421875, 5.615986 ], [ 27.421875, 4.915833 ], [ 22.500000, 4.915833 ], [ 22.500000, 4.214943 ], [ 20.390625, 4.214943 ], [ 20.390625, 4.915833 ], [ 18.984375, 4.915833 ], [ 18.984375, 4.214943 ], [ 18.281250, 4.214943 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 14.765625, 3.513421 ], [ 14.765625, 7.013668 ], [ 15.468750, 7.013668 ], [ 15.468750, 7.710992 ], [ 18.281250, 7.710992 ], [ 18.281250, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 9.102097 ], [ 21.093750, 9.102097 ], [ 21.093750, 9.795678 ], [ 21.796875, 9.795678 ], [ 21.796875, 10.487812 ], [ 22.500000, 10.487812 ], [ 22.500000, 11.178402 ], [ 23.203125, 11.178402 ], [ 23.203125, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 11.178402 ], [ 23.203125, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 9.102097 ], [ 23.203125, 9.102097 ], [ 23.203125, 8.407168 ], [ 24.609375, 8.407168 ], [ 24.609375, 7.710992 ], [ 25.312500, 7.710992 ], [ 25.312500, 7.013668 ], [ 26.015625, 7.013668 ], [ 26.015625, 5.615986 ], [ 27.421875, 5.615986 ], [ 27.421875, 4.915833 ], [ 22.500000, 4.915833 ], [ 22.500000, 4.214943 ], [ 20.390625, 4.214943 ], [ 20.390625, 4.915833 ], [ 18.984375, 4.915833 ], [ 18.984375, 4.214943 ], [ 18.281250, 4.214943 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 14.765625, 3.513421 ], [ 14.765625, 6.315299 ], [ 15.468750, 7.710992 ], [ 18.281250, 7.710992 ], [ 18.281250, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 9.102097 ], [ 21.093750, 9.102097 ], [ 21.093750, 9.795678 ], [ 21.796875, 9.795678 ], [ 21.796875, 10.487812 ], [ 22.500000, 10.487812 ], [ 22.500000, 11.178402 ], [ 23.203125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.015625, 34.885931 ], [ 23.203125, 34.885931 ], [ 23.203125, 35.460670 ], [ 26.015625, 35.460670 ], [ 26.015625, 34.885931 ] ] ], [ [ [ 23.906250, 40.446947 ], [ 23.906250, 39.909736 ], [ 22.500000, 39.909736 ], [ 22.500000, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.203125, 37.718590 ], [ 23.203125, 37.160317 ], [ 22.500000, 37.160317 ], [ 22.500000, 36.597889 ], [ 21.796875, 36.597889 ], [ 21.796875, 37.160317 ], [ 21.093750, 37.160317 ], [ 21.093750, 38.272689 ], [ 20.390625, 38.272689 ], [ 20.390625, 40.446947 ], [ 21.093750, 40.446947 ], [ 21.093750, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 40.446947 ], [ 23.906250, 40.446947 ] ] ], [ [ [ 26.015625, 41.508577 ], [ 26.718750, 41.508577 ], [ 26.718750, 40.979898 ], [ 26.015625, 40.979898 ], [ 26.015625, 41.508577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.015625, 35.460670 ], [ 26.015625, 34.885931 ], [ 24.609375, 34.885931 ], [ 23.203125, 35.460670 ], [ 26.015625, 35.460670 ] ] ], [ [ [ 24.609375, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 39.909736 ], [ 22.500000, 39.909736 ], [ 22.500000, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.203125, 37.718590 ], [ 23.203125, 37.160317 ], [ 22.500000, 37.160317 ], [ 22.500000, 36.597889 ], [ 21.796875, 36.597889 ], [ 21.796875, 37.160317 ], [ 21.093750, 37.160317 ], [ 21.093750, 38.272689 ], [ 20.390625, 38.272689 ], [ 20.390625, 40.446947 ], [ 21.093750, 40.446947 ], [ 21.093750, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 40.446947 ] ] ], [ [ [ 26.718750, 40.979898 ], [ 26.015625, 40.979898 ], [ 26.015625, 41.508577 ], [ 26.718750, 41.508577 ], [ 26.718750, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 34.885931 ], [ 33.046875, 34.885931 ], [ 33.046875, 35.460670 ], [ 33.750000, 35.460670 ], [ 33.750000, 34.885931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 35.460670 ], [ 33.750000, 34.885931 ], [ 33.046875, 34.885931 ], [ 33.046875, 35.460670 ], [ 33.750000, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 34.307144 ], [ 32.343750, 34.307144 ], [ 32.343750, 34.885931 ], [ 33.750000, 34.885931 ], [ 33.750000, 34.307144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 34.885931 ], [ 33.750000, 34.307144 ], [ 32.343750, 34.307144 ], [ 32.343750, 34.885931 ], [ 33.750000, 34.885931 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 30.145127 ], [ 35.156250, 30.145127 ], [ 35.156250, 28.921631 ], [ 34.453125, 28.921631 ], [ 34.453125, 27.683528 ], [ 33.046875, 27.683528 ], [ 33.046875, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.431228 ], [ 34.453125, 26.431228 ], [ 34.453125, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 23.241346 ], [ 35.859375, 23.241346 ], [ 35.859375, 22.593726 ], [ 36.562500, 22.593726 ], [ 36.562500, 21.943046 ], [ 25.312500, 21.943046 ], [ 25.312500, 29.535230 ], [ 24.609375, 29.535230 ], [ 24.609375, 31.353637 ], [ 27.421875, 31.353637 ], [ 27.421875, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.353637 ], [ 31.640625, 31.353637 ], [ 31.640625, 30.751278 ], [ 34.453125, 30.751278 ], [ 34.453125, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, 31.353637 ], [ 31.640625, 30.751278 ], [ 34.453125, 30.751278 ], [ 34.453125, 30.145127 ], [ 35.156250, 30.145127 ], [ 35.156250, 28.921631 ], [ 34.453125, 28.921631 ], [ 34.453125, 27.683528 ], [ 33.046875, 27.683528 ], [ 33.046875, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.431228 ], [ 34.453125, 26.431228 ], [ 34.453125, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 23.241346 ], [ 35.859375, 23.241346 ], [ 35.859375, 22.593726 ], [ 36.562500, 22.593726 ], [ 36.562500, 21.943046 ], [ 25.312500, 21.943046 ], [ 25.312500, 29.535230 ], [ 24.609375, 29.535230 ], [ 24.609375, 31.353637 ], [ 27.421875, 31.353637 ], [ 27.421875, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.353637 ], [ 31.640625, 31.353637 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.265625, 40.979898 ], [ 41.484375, 40.979898 ], [ 41.484375, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 36.031332 ], [ 35.859375, 36.031332 ], [ 35.859375, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.031332 ], [ 31.640625, 36.031332 ], [ 31.640625, 36.597889 ], [ 30.937500, 36.597889 ], [ 30.937500, 36.031332 ], [ 28.828125, 36.031332 ], [ 28.828125, 36.597889 ], [ 27.421875, 36.597889 ], [ 27.421875, 37.160317 ], [ 26.718750, 37.160317 ], [ 26.718750, 37.718590 ], [ 26.015625, 37.718590 ], [ 26.015625, 38.272689 ], [ 26.718750, 38.272689 ], [ 26.718750, 38.822591 ], [ 26.015625, 38.822591 ], [ 26.015625, 39.368279 ], [ 26.718750, 39.368279 ], [ 26.718750, 39.909736 ], [ 26.015625, 39.909736 ], [ 26.015625, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 41.508577 ], [ 26.015625, 41.508577 ], [ 26.015625, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 28.828125, 40.979898 ], [ 27.421875, 40.979898 ], [ 27.421875, 40.446947 ], [ 29.531250, 40.446947 ], [ 29.531250, 40.979898 ], [ 32.343750, 40.979898 ], [ 32.343750, 41.508577 ], [ 33.750000, 41.508577 ], [ 33.750000, 42.032974 ], [ 35.156250, 42.032974 ], [ 35.156250, 41.508577 ], [ 37.265625, 41.508577 ], [ 37.265625, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 42.032974 ], [ 35.156250, 41.508577 ], [ 37.265625, 41.508577 ], [ 37.265625, 40.979898 ], [ 41.484375, 40.979898 ], [ 41.484375, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 36.031332 ], [ 35.859375, 36.031332 ], [ 35.859375, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.031332 ], [ 31.640625, 36.031332 ], [ 31.640625, 36.597889 ], [ 30.937500, 36.597889 ], [ 30.937500, 36.031332 ], [ 28.828125, 36.031332 ], [ 28.828125, 36.597889 ], [ 27.421875, 36.597889 ], [ 27.421875, 37.160317 ], [ 26.718750, 37.160317 ], [ 26.718750, 37.718590 ], [ 26.015625, 37.718590 ], [ 26.015625, 38.272689 ], [ 26.718750, 38.272689 ], [ 26.718750, 38.822591 ], [ 26.015625, 38.822591 ], [ 26.015625, 39.368279 ], [ 26.718750, 39.368279 ], [ 26.718750, 39.909736 ], [ 26.015625, 39.909736 ], [ 26.015625, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 41.508577 ], [ 26.015625, 41.508577 ], [ 26.015625, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 28.828125, 40.979898 ], [ 27.421875, 40.979898 ], [ 27.421875, 40.446947 ], [ 29.531250, 40.446947 ], [ 29.531250, 40.979898 ], [ 32.343750, 40.979898 ], [ 32.343750, 41.508577 ], [ 33.750000, 41.508577 ], [ 33.750000, 42.032974 ], [ 35.156250, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 33.724340 ], [ 35.859375, 33.724340 ], [ 35.859375, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 34.307144 ], [ 36.562500, 34.307144 ], [ 36.562500, 33.724340 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.307144 ], [ 36.562500, 33.724340 ], [ 35.859375, 33.724340 ], [ 35.859375, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 34.307144 ], [ 36.562500, 34.307144 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 36.597889 ], [ 41.484375, 36.597889 ], [ 41.484375, 34.885931 ], [ 40.781250, 34.885931 ], [ 40.781250, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.137551 ], [ 37.968750, 33.137551 ], [ 37.968750, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.724340 ], [ 36.562500, 33.724340 ], [ 36.562500, 34.307144 ], [ 35.859375, 34.307144 ], [ 35.859375, 36.031332 ], [ 36.562500, 36.031332 ], [ 36.562500, 36.597889 ], [ 40.781250, 36.597889 ], [ 40.781250, 37.160317 ], [ 42.187500, 37.160317 ], [ 42.187500, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 37.160317 ], [ 42.187500, 36.597889 ], [ 41.484375, 36.597889 ], [ 41.484375, 34.885931 ], [ 40.781250, 34.885931 ], [ 40.781250, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.137551 ], [ 37.968750, 33.137551 ], [ 37.968750, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.724340 ], [ 36.562500, 33.724340 ], [ 36.562500, 34.307144 ], [ 35.859375, 34.307144 ], [ 35.859375, 36.031332 ], [ 36.562500, 36.031332 ], [ 36.562500, 36.597889 ], [ 40.781250, 36.597889 ], [ 40.781250, 37.160317 ], [ 42.187500, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.703125, 35.460670 ], [ 46.406250, 35.460670 ], [ 46.406250, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 30.145127 ], [ 47.109375, 30.145127 ], [ 47.109375, 29.535230 ], [ 46.406250, 29.535230 ], [ 46.406250, 28.921631 ], [ 44.296875, 28.921631 ], [ 44.296875, 29.535230 ], [ 43.593750, 29.535230 ], [ 43.593750, 30.145127 ], [ 42.890625, 30.145127 ], [ 42.890625, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 31.353637 ], [ 40.781250, 31.353637 ], [ 40.781250, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 32.546813 ], [ 38.671875, 32.546813 ], [ 38.671875, 33.137551 ], [ 39.375000, 33.137551 ], [ 39.375000, 33.724340 ], [ 40.781250, 33.724340 ], [ 40.781250, 34.885931 ], [ 41.484375, 34.885931 ], [ 41.484375, 36.597889 ], [ 42.187500, 36.597889 ], [ 42.187500, 37.160317 ], [ 45.000000, 37.160317 ], [ 45.000000, 36.597889 ], [ 45.703125, 36.597889 ], [ 45.703125, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 37.160317 ], [ 45.000000, 36.597889 ], [ 45.703125, 36.597889 ], [ 45.703125, 35.460670 ], [ 46.406250, 35.460670 ], [ 46.406250, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 30.145127 ], [ 47.109375, 30.145127 ], [ 47.109375, 29.535230 ], [ 46.406250, 29.535230 ], [ 46.406250, 28.921631 ], [ 44.296875, 28.921631 ], [ 44.296875, 29.535230 ], [ 43.593750, 29.535230 ], [ 43.593750, 30.145127 ], [ 42.890625, 30.145127 ], [ 42.890625, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 31.353637 ], [ 40.781250, 31.353637 ], [ 40.781250, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 32.546813 ], [ 38.671875, 32.546813 ], [ 38.671875, 33.137551 ], [ 39.375000, 33.137551 ], [ 39.375000, 33.724340 ], [ 40.781250, 33.724340 ], [ 40.781250, 34.885931 ], [ 41.484375, 34.885931 ], [ 41.484375, 36.597889 ], [ 42.187500, 36.597889 ], [ 42.187500, 37.160317 ], [ 45.000000, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.859375, 33.137551 ], [ 35.859375, 32.546813 ], [ 35.156250, 32.546813 ], [ 35.156250, 33.137551 ], [ 35.859375, 33.137551 ] ] ], [ [ [ 34.453125, 30.145127 ], [ 34.453125, 31.952162 ], [ 35.156250, 31.952162 ], [ 35.156250, 30.145127 ], [ 34.453125, 30.145127 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 31.952162 ], [ 35.156250, 30.145127 ], [ 34.453125, 30.145127 ], [ 34.453125, 31.952162 ], [ 35.156250, 31.952162 ] ] ], [ [ [ 35.859375, 32.546813 ], [ 35.156250, 32.546813 ], [ 35.156250, 33.137551 ], [ 35.859375, 33.137551 ], [ 35.859375, 32.546813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 31.353637 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 32.546813 ], [ 35.859375, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 31.952162 ], [ 38.671875, 31.952162 ], [ 38.671875, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 30.145127 ], [ 36.562500, 30.145127 ], [ 36.562500, 28.921631 ], [ 35.156250, 28.921631 ], [ 35.156250, 31.353637 ], [ 35.859375, 31.353637 ], [ 35.859375, 32.546813 ], [ 37.968750, 32.546813 ], [ 37.968750, 33.137551 ], [ 38.671875, 33.137551 ], [ 38.671875, 32.546813 ], [ 39.375000, 32.546813 ], [ 39.375000, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.546813 ], [ 39.375000, 32.546813 ], [ 39.375000, 31.952162 ], [ 38.671875, 31.952162 ], [ 38.671875, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 30.145127 ], [ 36.562500, 30.145127 ], [ 36.562500, 28.921631 ], [ 35.156250, 28.921631 ], [ 35.156250, 31.353637 ], [ 35.859375, 31.353637 ], [ 35.859375, 32.546813 ], [ 37.968750, 32.546813 ], [ 37.968750, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 11.867351 ], [ 32.343750, 10.487812 ], [ 31.640625, 10.487812 ], [ 31.640625, 9.795678 ], [ 28.828125, 9.795678 ], [ 28.828125, 9.102097 ], [ 28.125000, 9.102097 ], [ 28.125000, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 10.487812 ], [ 25.312500, 10.487812 ], [ 25.312500, 9.795678 ], [ 24.609375, 9.795678 ], [ 24.609375, 8.407168 ], [ 23.203125, 8.407168 ], [ 23.203125, 9.102097 ], [ 23.906250, 9.102097 ], [ 23.906250, 9.795678 ], [ 23.203125, 9.795678 ], [ 23.203125, 11.178402 ], [ 22.500000, 11.178402 ], [ 22.500000, 12.554564 ], [ 21.796875, 12.554564 ], [ 21.796875, 13.239945 ], [ 22.500000, 13.239945 ], [ 22.500000, 15.284185 ], [ 23.906250, 15.284185 ], [ 23.906250, 19.973349 ], [ 25.312500, 19.973349 ], [ 25.312500, 21.943046 ], [ 36.562500, 21.943046 ], [ 36.562500, 21.289374 ], [ 37.265625, 21.289374 ], [ 37.265625, 18.646245 ], [ 37.968750, 18.646245 ], [ 37.968750, 17.978733 ], [ 38.671875, 17.978733 ], [ 38.671875, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 16.636192 ], [ 36.562500, 16.636192 ], [ 36.562500, 12.554564 ], [ 35.859375, 12.554564 ], [ 35.859375, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 11.178402 ], [ 34.453125, 11.178402 ], [ 34.453125, 9.795678 ], [ 33.750000, 9.795678 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 11.867351 ], [ 32.343750, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 21.943046 ], [ 36.562500, 21.289374 ], [ 37.265625, 21.289374 ], [ 37.265625, 18.646245 ], [ 37.968750, 18.646245 ], [ 37.968750, 17.978733 ], [ 38.671875, 17.978733 ], [ 38.671875, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 16.636192 ], [ 36.562500, 16.636192 ], [ 36.562500, 12.554564 ], [ 35.859375, 12.554564 ], [ 35.859375, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 11.178402 ], [ 34.453125, 11.178402 ], [ 34.453125, 9.795678 ], [ 33.750000, 9.795678 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 11.867351 ], [ 32.343750, 11.867351 ], [ 32.343750, 10.487812 ], [ 31.640625, 10.487812 ], [ 31.640625, 9.795678 ], [ 28.828125, 9.795678 ], [ 28.828125, 9.102097 ], [ 28.125000, 9.102097 ], [ 28.125000, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 10.487812 ], [ 25.312500, 10.487812 ], [ 25.312500, 9.795678 ], [ 24.609375, 9.795678 ], [ 24.609375, 8.407168 ], [ 23.203125, 8.407168 ], [ 23.203125, 9.102097 ], [ 23.906250, 9.102097 ], [ 23.906250, 9.795678 ], [ 23.203125, 9.795678 ], [ 23.203125, 11.178402 ], [ 22.500000, 11.178402 ], [ 22.500000, 12.554564 ], [ 21.796875, 12.554564 ], [ 21.796875, 13.239945 ], [ 22.500000, 13.239945 ], [ 22.500000, 15.284185 ], [ 23.906250, 15.284185 ], [ 23.906250, 19.973349 ], [ 25.312500, 19.973349 ], [ 25.312500, 21.943046 ], [ 36.562500, 21.943046 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 8.407168 ], [ 33.046875, 8.407168 ], [ 33.046875, 7.710992 ], [ 33.750000, 7.710992 ], [ 33.750000, 7.013668 ], [ 34.453125, 7.013668 ], [ 34.453125, 5.615986 ], [ 35.156250, 5.615986 ], [ 35.156250, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.214943 ], [ 33.750000, 4.214943 ], [ 33.750000, 3.513421 ], [ 30.234375, 3.513421 ], [ 30.234375, 4.214943 ], [ 27.421875, 4.214943 ], [ 27.421875, 5.615986 ], [ 26.015625, 5.615986 ], [ 26.015625, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 7.710992 ], [ 24.609375, 7.710992 ], [ 24.609375, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 10.487812 ], [ 26.015625, 10.487812 ], [ 26.015625, 9.795678 ], [ 28.125000, 9.795678 ], [ 28.125000, 9.102097 ], [ 28.828125, 9.102097 ], [ 28.828125, 9.795678 ], [ 31.640625, 9.795678 ], [ 31.640625, 10.487812 ], [ 32.343750, 10.487812 ], [ 32.343750, 11.867351 ], [ 33.046875, 11.867351 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 11.867351 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 8.407168 ], [ 33.046875, 8.407168 ], [ 33.046875, 7.710992 ], [ 33.750000, 7.710992 ], [ 33.750000, 7.013668 ], [ 34.453125, 7.013668 ], [ 34.453125, 5.615986 ], [ 35.156250, 5.615986 ], [ 35.156250, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.214943 ], [ 33.750000, 4.214943 ], [ 33.750000, 3.513421 ], [ 30.234375, 3.513421 ], [ 30.234375, 4.214943 ], [ 27.421875, 4.214943 ], [ 27.421875, 5.615986 ], [ 26.015625, 5.615986 ], [ 26.015625, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 7.710992 ], [ 24.609375, 7.710992 ], [ 24.609375, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 10.487812 ], [ 26.015625, 10.487812 ], [ 26.015625, 9.795678 ], [ 28.125000, 9.795678 ], [ 28.125000, 9.102097 ], [ 28.828125, 9.102097 ], [ 28.828125, 9.795678 ], [ 31.640625, 9.795678 ], [ 31.640625, 10.487812 ], [ 32.343750, 10.487812 ], [ 32.343750, 11.867351 ], [ 33.046875, 11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.453125, 1.406109 ], [ 34.453125, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -0.703107 ], [ 30.937500, -0.703107 ], [ 30.937500, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 3.513421 ], [ 34.453125, 3.513421 ], [ 34.453125, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 34.453125, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.453125, 1.406109 ], [ 34.453125, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -0.703107 ], [ 30.937500, -0.703107 ], [ 30.937500, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.484375, 13.923404 ], [ 40.078125, 13.923404 ], [ 40.078125, 14.604847 ], [ 41.484375, 14.604847 ], [ 41.484375, 13.923404 ] ] ], [ [ [ 38.671875, 15.961329 ], [ 39.375000, 15.961329 ], [ 39.375000, 15.284185 ], [ 40.078125, 15.284185 ], [ 40.078125, 14.604847 ], [ 37.265625, 14.604847 ], [ 37.265625, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 16.636192 ], [ 37.265625, 16.636192 ], [ 37.265625, 17.308688 ], [ 38.671875, 17.308688 ], [ 38.671875, 15.961329 ] ] ], [ [ [ 42.890625, 13.239945 ], [ 42.890625, 12.554564 ], [ 41.484375, 12.554564 ], [ 41.484375, 13.239945 ], [ 42.890625, 13.239945 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.484375, 13.239945 ], [ 42.890625, 13.239945 ], [ 42.890625, 12.554564 ], [ 41.484375, 12.554564 ], [ 41.484375, 13.239945 ] ] ], [ [ [ 40.078125, 14.604847 ], [ 37.265625, 14.604847 ], [ 37.265625, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 16.636192 ], [ 37.265625, 16.636192 ], [ 37.265625, 17.308688 ], [ 38.671875, 17.308688 ], [ 38.671875, 15.961329 ], [ 39.375000, 15.961329 ], [ 39.375000, 15.284185 ], [ 40.078125, 15.284185 ], [ 40.078125, 14.604847 ] ] ], [ [ [ 40.078125, 14.604847 ], [ 41.484375, 14.604847 ], [ 41.484375, 13.923404 ], [ 40.078125, 13.923404 ], [ 40.078125, 14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.178402 ], [ 41.484375, 11.178402 ], [ 41.484375, 11.867351 ], [ 42.187500, 11.867351 ], [ 42.187500, 12.554564 ], [ 43.593750, 12.554564 ], [ 43.593750, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 12.554564 ], [ 43.593750, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.178402 ], [ 41.484375, 11.178402 ], [ 41.484375, 11.867351 ], [ 42.187500, 11.867351 ], [ 42.187500, 12.554564 ], [ 43.593750, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 3.513421 ], [ 40.781250, 3.513421 ], [ 40.781250, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.513421 ], [ 37.968750, -3.513421 ], [ 37.968750, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 34.453125, -2.108899 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 34.453125, 0.000000 ], [ 34.453125, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.453125, 2.108899 ], [ 34.453125, 3.513421 ], [ 33.750000, 3.513421 ], [ 33.750000, 4.214943 ], [ 34.453125, 4.214943 ], [ 34.453125, 4.915833 ], [ 35.156250, 4.915833 ], [ 35.156250, 5.615986 ], [ 35.859375, 5.615986 ], [ 35.859375, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 5.615986 ], [ 35.859375, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 3.513421 ], [ 40.781250, 3.513421 ], [ 40.781250, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.513421 ], [ 37.968750, -3.513421 ], [ 37.968750, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 34.453125, -2.108899 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 34.453125, 0.000000 ], [ 34.453125, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.453125, 2.108899 ], [ 34.453125, 3.513421 ], [ 33.750000, 3.513421 ], [ 33.750000, 4.214943 ], [ 34.453125, 4.214943 ], [ 34.453125, 4.915833 ], [ 35.156250, 4.915833 ], [ 35.156250, 5.615986 ], [ 35.859375, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.484375, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 11.867351 ], [ 41.484375, 11.867351 ], [ 41.484375, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 9.102097 ], [ 44.296875, 9.102097 ], [ 44.296875, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 7.710992 ], [ 47.812500, 7.710992 ], [ 47.812500, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 6.315299 ], [ 46.406250, 6.315299 ], [ 46.406250, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.513421 ], [ 36.562500, 3.513421 ], [ 36.562500, 4.214943 ], [ 35.859375, 4.214943 ], [ 35.859375, 5.615986 ], [ 34.453125, 5.615986 ], [ 34.453125, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 9.795678 ], [ 34.453125, 9.795678 ], [ 34.453125, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 11.867351 ], [ 35.859375, 11.867351 ], [ 35.859375, 12.554564 ], [ 36.562500, 12.554564 ], [ 36.562500, 13.923404 ], [ 37.265625, 13.923404 ], [ 37.265625, 14.604847 ], [ 40.078125, 14.604847 ], [ 40.078125, 13.923404 ], [ 41.484375, 13.923404 ], [ 41.484375, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 14.604847 ], [ 40.078125, 13.923404 ], [ 41.484375, 13.923404 ], [ 41.484375, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 11.867351 ], [ 41.484375, 11.867351 ], [ 41.484375, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 9.102097 ], [ 44.296875, 9.102097 ], [ 44.296875, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 7.710992 ], [ 47.812500, 7.710992 ], [ 47.812500, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 6.315299 ], [ 46.406250, 6.315299 ], [ 46.406250, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.513421 ], [ 36.562500, 3.513421 ], [ 36.562500, 4.214943 ], [ 35.859375, 4.214943 ], [ 35.859375, 5.615986 ], [ 34.453125, 5.615986 ], [ 34.453125, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 9.795678 ], [ 34.453125, 9.795678 ], [ 34.453125, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 11.867351 ], [ 35.859375, 11.867351 ], [ 35.859375, 12.554564 ], [ 36.562500, 12.554564 ], [ 36.562500, 13.923404 ], [ 37.265625, 14.604847 ], [ 40.078125, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.015625, 54.162434 ], [ 73.828125, 54.162434 ], [ 73.828125, 53.748711 ], [ 73.125000, 53.748711 ], [ 73.125000, 53.330873 ], [ 74.531250, 53.330873 ], [ 74.531250, 53.748711 ], [ 75.234375, 53.748711 ], [ 75.234375, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 52.908902 ], [ 78.750000, 52.908902 ], [ 78.750000, 52.052490 ], [ 79.453125, 52.052490 ], [ 79.453125, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.736455 ], [ 83.671875, 50.736455 ], [ 83.671875, 50.289339 ], [ 85.078125, 50.289339 ], [ 85.078125, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.484375, 48.922499 ], [ 86.484375, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.040182 ], [ 83.671875, 47.040182 ], [ 83.671875, 47.517201 ], [ 82.968750, 47.517201 ], [ 82.968750, 46.558860 ], [ 82.265625, 46.558860 ], [ 82.265625, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 44.087585 ], [ 80.859375, 44.087585 ], [ 80.859375, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 42.553080 ], [ 72.421875, 42.553080 ], [ 72.421875, 43.068888 ], [ 71.718750, 43.068888 ], [ 71.718750, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.446947 ], [ 68.203125, 40.446947 ], [ 68.203125, 40.979898 ], [ 66.796875, 40.979898 ], [ 66.796875, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 43.580391 ], [ 61.875000, 43.580391 ], [ 61.875000, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.590467 ], [ 59.765625, 44.590467 ], [ 59.765625, 45.089036 ], [ 58.359375, 45.089036 ], [ 58.359375, 45.583290 ], [ 57.656250, 45.583290 ], [ 57.656250, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 41.508577 ], [ 54.843750, 41.508577 ], [ 54.843750, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 42.553080 ], [ 51.328125, 42.553080 ], [ 51.328125, 43.580391 ], [ 50.625000, 43.580391 ], [ 50.625000, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.089036 ], [ 52.734375, 45.089036 ], [ 52.734375, 45.583290 ], [ 53.437500, 45.583290 ], [ 53.437500, 46.558860 ], [ 52.734375, 46.558860 ], [ 52.734375, 47.040182 ], [ 51.328125, 47.040182 ], [ 51.328125, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.517201 ], [ 47.109375, 47.517201 ], [ 47.109375, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 48.458352 ], [ 47.109375, 48.458352 ], [ 47.109375, 48.922499 ], [ 46.406250, 48.922499 ], [ 46.406250, 49.382373 ], [ 47.109375, 49.382373 ], [ 47.109375, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 51.179343 ], [ 50.625000, 51.179343 ], [ 50.625000, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.179343 ], [ 54.843750, 51.179343 ], [ 54.843750, 50.736455 ], [ 56.953125, 50.736455 ], [ 56.953125, 51.179343 ], [ 58.359375, 51.179343 ], [ 58.359375, 50.736455 ], [ 61.875000, 50.736455 ], [ 61.875000, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.618017 ], [ 59.765625, 51.618017 ], [ 59.765625, 52.052490 ], [ 61.171875, 52.052490 ], [ 61.171875, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 52.908902 ], [ 61.875000, 52.908902 ], [ 61.875000, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 54.162434 ], [ 65.390625, 54.162434 ], [ 65.390625, 54.572062 ], [ 67.500000, 54.572062 ], [ 67.500000, 54.977614 ], [ 68.906250, 54.977614 ], [ 68.906250, 55.379110 ], [ 69.609375, 55.379110 ], [ 69.609375, 54.977614 ], [ 71.015625, 54.977614 ], [ 71.015625, 54.162434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.609375, 55.379110 ], [ 69.609375, 54.977614 ], [ 71.015625, 54.977614 ], [ 71.015625, 54.162434 ], [ 73.828125, 54.162434 ], [ 73.828125, 53.748711 ], [ 73.125000, 53.748711 ], [ 73.125000, 53.330873 ], [ 74.531250, 53.330873 ], [ 74.531250, 53.748711 ], [ 75.234375, 53.748711 ], [ 75.234375, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 52.908902 ], [ 78.750000, 52.908902 ], [ 78.750000, 52.052490 ], [ 79.453125, 52.052490 ], [ 79.453125, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.736455 ], [ 83.671875, 50.736455 ], [ 83.671875, 50.289339 ], [ 85.078125, 50.289339 ], [ 85.078125, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.484375, 48.922499 ], [ 86.484375, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.040182 ], [ 83.671875, 47.040182 ], [ 83.671875, 47.517201 ], [ 82.968750, 47.517201 ], [ 82.968750, 46.558860 ], [ 82.265625, 46.558860 ], [ 82.265625, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 44.087585 ], [ 80.859375, 44.087585 ], [ 80.859375, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 42.553080 ], [ 72.421875, 42.553080 ], [ 72.421875, 43.068888 ], [ 71.718750, 43.068888 ], [ 71.718750, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.446947 ], [ 68.203125, 40.446947 ], [ 68.203125, 40.979898 ], [ 66.796875, 40.979898 ], [ 66.796875, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 43.580391 ], [ 61.875000, 43.580391 ], [ 61.875000, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.590467 ], [ 59.765625, 44.590467 ], [ 59.765625, 45.089036 ], [ 58.359375, 45.089036 ], [ 58.359375, 45.583290 ], [ 57.656250, 45.583290 ], [ 57.656250, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 41.508577 ], [ 54.843750, 41.508577 ], [ 54.843750, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 42.553080 ], [ 51.328125, 42.553080 ], [ 51.328125, 43.580391 ], [ 50.625000, 43.580391 ], [ 50.625000, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.089036 ], [ 52.734375, 45.089036 ], [ 52.734375, 45.583290 ], [ 53.437500, 45.583290 ], [ 53.437500, 46.558860 ], [ 52.734375, 46.558860 ], [ 52.734375, 47.040182 ], [ 51.328125, 47.040182 ], [ 51.328125, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.517201 ], [ 47.109375, 47.517201 ], [ 47.109375, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 48.458352 ], [ 47.109375, 48.458352 ], [ 47.109375, 48.922499 ], [ 46.406250, 48.922499 ], [ 46.406250, 49.382373 ], [ 47.109375, 49.382373 ], [ 47.109375, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 51.179343 ], [ 50.625000, 51.179343 ], [ 50.625000, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.179343 ], [ 54.843750, 51.179343 ], [ 54.843750, 50.736455 ], [ 56.953125, 50.736455 ], [ 56.953125, 51.179343 ], [ 58.359375, 51.179343 ], [ 58.359375, 50.736455 ], [ 61.875000, 50.736455 ], [ 61.875000, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.618017 ], [ 59.765625, 51.618017 ], [ 59.765625, 52.052490 ], [ 61.171875, 52.052490 ], [ 61.171875, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 52.908902 ], [ 61.875000, 52.908902 ], [ 61.875000, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 54.162434 ], [ 65.390625, 54.162434 ], [ 65.390625, 54.572062 ], [ 67.500000, 54.572062 ], [ 67.500000, 54.977614 ], [ 68.906250, 54.977614 ], [ 68.906250, 55.379110 ], [ 69.609375, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.906250, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 38.822591 ], [ 68.203125, 38.822591 ], [ 68.203125, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 37.160317 ], [ 66.796875, 37.160317 ], [ 66.796875, 37.718590 ], [ 65.390625, 37.718590 ], [ 65.390625, 38.272689 ], [ 63.984375, 38.272689 ], [ 63.984375, 38.822591 ], [ 63.281250, 38.822591 ], [ 63.281250, 39.368279 ], [ 62.578125, 39.368279 ], [ 62.578125, 40.446947 ], [ 61.875000, 40.446947 ], [ 61.875000, 40.979898 ], [ 59.765625, 40.979898 ], [ 59.765625, 42.032974 ], [ 56.953125, 42.032974 ], [ 56.953125, 41.508577 ], [ 56.250000, 41.508577 ], [ 56.250000, 45.089036 ], [ 57.656250, 45.089036 ], [ 57.656250, 45.583290 ], [ 58.359375, 45.583290 ], [ 58.359375, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.590467 ], [ 61.171875, 44.590467 ], [ 61.171875, 44.087585 ], [ 61.875000, 44.087585 ], [ 61.875000, 43.580391 ], [ 64.687500, 43.580391 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.032974 ], [ 66.796875, 42.032974 ], [ 66.796875, 40.979898 ], [ 68.203125, 40.979898 ], [ 68.203125, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 39.368279 ] ] ], [ [ [ 73.125000, 40.446947 ], [ 72.421875, 40.446947 ], [ 72.421875, 39.909736 ], [ 71.015625, 39.909736 ], [ 71.015625, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 40.446947 ] ] ], [ [ [ 70.312500, 40.979898 ], [ 69.609375, 40.979898 ], [ 69.609375, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 40.979898 ] ] ], [ [ [ 70.312500, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.359375, 45.583290 ], [ 58.359375, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.590467 ], [ 61.171875, 44.590467 ], [ 61.171875, 44.087585 ], [ 61.875000, 44.087585 ], [ 61.875000, 43.580391 ], [ 64.687500, 43.580391 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.032974 ], [ 66.796875, 42.032974 ], [ 66.796875, 40.979898 ], [ 68.203125, 40.979898 ], [ 68.203125, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 38.822591 ], [ 68.203125, 38.822591 ], [ 68.203125, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 37.160317 ], [ 66.796875, 37.160317 ], [ 66.796875, 37.718590 ], [ 65.390625, 37.718590 ], [ 65.390625, 38.272689 ], [ 63.984375, 38.272689 ], [ 63.984375, 38.822591 ], [ 63.281250, 38.822591 ], [ 63.281250, 39.368279 ], [ 62.578125, 39.368279 ], [ 62.578125, 40.446947 ], [ 61.875000, 40.446947 ], [ 61.875000, 40.979898 ], [ 59.765625, 40.979898 ], [ 59.765625, 42.032974 ], [ 56.953125, 42.032974 ], [ 56.953125, 41.508577 ], [ 56.250000, 41.508577 ], [ 56.250000, 45.089036 ], [ 57.656250, 45.089036 ], [ 57.656250, 45.583290 ], [ 58.359375, 45.583290 ] ] ], [ [ [ 71.015625, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 40.446947 ], [ 72.421875, 40.446947 ], [ 72.421875, 39.909736 ], [ 71.015625, 39.909736 ], [ 71.015625, 40.979898 ] ] ], [ [ [ 71.015625, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.508577 ] ] ], [ [ [ 70.312500, 40.979898 ], [ 69.609375, 40.979898 ], [ 69.609375, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 41.508577 ], [ 78.750000, 41.508577 ], [ 78.750000, 40.979898 ], [ 76.640625, 40.979898 ], [ 76.640625, 40.446947 ], [ 74.531250, 40.446947 ], [ 74.531250, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.368279 ], [ 69.609375, 39.368279 ], [ 69.609375, 39.909736 ], [ 72.421875, 39.909736 ], [ 72.421875, 40.446947 ], [ 73.125000, 40.446947 ], [ 73.125000, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 41.508577 ], [ 71.015625, 41.508577 ], [ 71.015625, 42.553080 ], [ 71.718750, 42.553080 ], [ 71.718750, 43.068888 ], [ 72.421875, 43.068888 ], [ 72.421875, 42.553080 ], [ 73.828125, 42.553080 ], [ 73.828125, 43.068888 ], [ 79.453125, 43.068888 ], [ 79.453125, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.453125, 43.068888 ], [ 79.453125, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 41.508577 ], [ 78.750000, 41.508577 ], [ 78.750000, 40.979898 ], [ 76.640625, 40.979898 ], [ 76.640625, 40.446947 ], [ 74.531250, 40.446947 ], [ 74.531250, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.368279 ], [ 69.609375, 39.368279 ], [ 69.609375, 39.909736 ], [ 72.421875, 39.909736 ], [ 72.421875, 40.446947 ], [ 73.125000, 40.446947 ], [ 73.125000, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 41.508577 ], [ 71.015625, 41.508577 ], [ 71.015625, 42.553080 ], [ 71.718750, 42.553080 ], [ 71.718750, 43.068888 ], [ 72.421875, 43.068888 ], [ 72.421875, 42.553080 ], [ 73.828125, 42.553080 ], [ 73.828125, 43.068888 ], [ 79.453125, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.368279 ], [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 45.703125, 40.979898 ], [ 45.703125, 39.368279 ], [ 45.000000, 39.368279 ] ] ], [ [ [ 46.406250, 39.368279 ], [ 46.406250, 38.822591 ], [ 45.703125, 38.822591 ], [ 45.703125, 39.368279 ], [ 46.406250, 39.368279 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 45.703125, 40.979898 ], [ 45.703125, 39.368279 ] ] ], [ [ [ 45.703125, 39.368279 ], [ 46.406250, 39.368279 ], [ 46.406250, 38.822591 ], [ 45.703125, 38.822591 ], [ 45.703125, 39.368279 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 40.979898 ], [ 46.406250, 40.979898 ], [ 46.406250, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 40.979898 ], [ 47.812500, 40.979898 ], [ 47.812500, 41.508577 ], [ 49.218750, 41.508577 ], [ 49.218750, 40.979898 ], [ 49.921875, 40.979898 ], [ 49.921875, 40.446947 ], [ 50.625000, 40.446947 ], [ 50.625000, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 39.368279 ], [ 47.812500, 39.368279 ], [ 47.812500, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.368279 ], [ 45.703125, 39.368279 ], [ 45.703125, 40.979898 ] ] ], [ [ [ 48.515625, 38.272689 ], [ 47.812500, 38.272689 ], [ 47.812500, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 38.272689 ] ] ], [ [ [ 45.703125, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 39.368279 ], [ 45.703125, 39.368279 ], [ 45.703125, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.812500, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.368279 ], [ 45.703125, 39.368279 ], [ 45.703125, 40.979898 ], [ 46.406250, 40.979898 ], [ 46.406250, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 40.979898 ], [ 47.812500, 40.979898 ], [ 47.812500, 41.508577 ], [ 49.218750, 41.508577 ], [ 49.218750, 40.979898 ], [ 49.921875, 40.979898 ], [ 49.921875, 40.446947 ], [ 50.625000, 40.446947 ], [ 50.625000, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 39.368279 ], [ 47.812500, 39.368279 ], [ 47.812500, 38.822591 ] ] ], [ [ [ 45.703125, 39.368279 ], [ 45.703125, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 39.368279 ], [ 45.703125, 39.368279 ] ] ], [ [ [ 47.812500, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 38.272689 ], [ 47.812500, 38.272689 ], [ 47.812500, 38.822591 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.812500, 38.272689 ], [ 49.218750, 38.272689 ], [ 49.218750, 37.160317 ], [ 49.921875, 37.160317 ], [ 49.921875, 36.597889 ], [ 53.437500, 36.597889 ], [ 53.437500, 37.160317 ], [ 55.546875, 37.160317 ], [ 55.546875, 37.718590 ], [ 56.953125, 37.718590 ], [ 56.953125, 38.272689 ], [ 57.656250, 38.272689 ], [ 57.656250, 37.718590 ], [ 58.359375, 37.718590 ], [ 58.359375, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 36.597889 ], [ 61.171875, 36.597889 ], [ 61.171875, 34.885931 ], [ 60.468750, 34.885931 ], [ 60.468750, 33.724340 ], [ 61.171875, 33.724340 ], [ 61.171875, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.546813 ], [ 61.171875, 32.546813 ], [ 61.171875, 31.353637 ], [ 61.875000, 31.353637 ], [ 61.875000, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 28.921631 ], [ 61.875000, 28.921631 ], [ 61.875000, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.431228 ], [ 61.875000, 26.431228 ], [ 61.875000, 25.799891 ], [ 61.171875, 25.799891 ], [ 61.171875, 25.165173 ], [ 58.359375, 25.165173 ], [ 58.359375, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.546875, 27.059126 ], [ 55.546875, 26.431228 ], [ 53.437500, 26.431228 ], [ 53.437500, 27.059126 ], [ 52.734375, 27.059126 ], [ 52.734375, 27.683528 ], [ 51.328125, 27.683528 ], [ 51.328125, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 49.921875, 29.535230 ], [ 49.921875, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 31.952162 ], [ 47.109375, 31.952162 ], [ 47.109375, 32.546813 ], [ 46.406250, 32.546813 ], [ 46.406250, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 34.885931 ], [ 46.406250, 34.885931 ], [ 46.406250, 35.460670 ], [ 45.703125, 35.460670 ], [ 45.703125, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 38.272689 ] ] ], [ [ [ 47.812500, 39.368279 ], [ 48.515625, 39.368279 ], [ 48.515625, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 39.368279 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.368279 ], [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 38.272689 ], [ 49.218750, 38.272689 ], [ 49.218750, 37.160317 ], [ 49.921875, 37.160317 ], [ 49.921875, 36.597889 ], [ 52.031250, 36.597889 ], [ 53.437500, 37.160317 ], [ 55.546875, 37.160317 ], [ 55.546875, 37.718590 ], [ 56.953125, 37.718590 ], [ 56.953125, 38.272689 ], [ 57.656250, 38.272689 ], [ 57.656250, 37.718590 ], [ 58.359375, 37.718590 ], [ 58.359375, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 36.597889 ], [ 61.171875, 36.597889 ], [ 61.171875, 34.885931 ], [ 60.468750, 34.885931 ], [ 60.468750, 33.724340 ], [ 61.171875, 33.724340 ], [ 61.171875, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.546813 ], [ 61.171875, 32.546813 ], [ 61.171875, 31.353637 ], [ 61.875000, 31.353637 ], [ 61.875000, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 28.921631 ], [ 61.875000, 28.921631 ], [ 61.875000, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.431228 ], [ 61.875000, 26.431228 ], [ 61.875000, 25.799891 ], [ 61.171875, 25.799891 ], [ 61.171875, 25.165173 ], [ 58.359375, 25.165173 ], [ 58.359375, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.546875, 27.059126 ], [ 55.546875, 26.431228 ], [ 53.437500, 26.431228 ], [ 53.437500, 27.059126 ], [ 52.734375, 27.059126 ], [ 52.734375, 27.683528 ], [ 51.328125, 27.683528 ], [ 51.328125, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 49.921875, 29.535230 ], [ 49.921875, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 31.952162 ], [ 47.109375, 31.952162 ], [ 47.109375, 32.546813 ], [ 46.406250, 32.546813 ], [ 46.406250, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 34.885931 ], [ 46.406250, 34.885931 ], [ 46.406250, 35.460670 ], [ 45.703125, 35.460670 ], [ 45.703125, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ] ] ], [ [ [ 48.515625, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 39.368279 ], [ 48.515625, 39.368279 ], [ 48.515625, 38.822591 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 28.921631 ], [ 48.515625, 28.921631 ], [ 48.515625, 28.304381 ], [ 47.109375, 28.304381 ], [ 47.109375, 28.921631 ], [ 46.406250, 28.921631 ], [ 46.406250, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 48.515625, 28.921631 ], [ 48.515625, 28.304381 ], [ 47.109375, 28.304381 ], [ 47.109375, 28.921631 ], [ 46.406250, 28.921631 ], [ 46.406250, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 30.751278 ], [ 42.890625, 30.751278 ], [ 42.890625, 30.145127 ], [ 43.593750, 30.145127 ], [ 43.593750, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 28.921631 ], [ 47.109375, 28.921631 ], [ 47.109375, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.683528 ], [ 49.218750, 27.683528 ], [ 49.218750, 26.431228 ], [ 49.921875, 26.431228 ], [ 49.921875, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 23.241346 ], [ 52.734375, 23.241346 ], [ 52.734375, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 19.973349 ], [ 54.140625, 19.973349 ], [ 54.140625, 19.311143 ], [ 51.328125, 19.311143 ], [ 51.328125, 18.646245 ], [ 49.218750, 18.646245 ], [ 49.218750, 17.978733 ], [ 48.515625, 17.978733 ], [ 48.515625, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 16.636192 ], [ 46.406250, 16.636192 ], [ 46.406250, 17.308688 ], [ 42.890625, 17.308688 ], [ 42.890625, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.308688 ], [ 41.484375, 17.308688 ], [ 41.484375, 18.646245 ], [ 40.781250, 18.646245 ], [ 40.781250, 19.311143 ], [ 40.078125, 19.311143 ], [ 40.078125, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 23.241346 ], [ 38.671875, 23.241346 ], [ 38.671875, 23.885838 ], [ 37.265625, 23.885838 ], [ 37.265625, 25.799891 ], [ 36.562500, 25.799891 ], [ 36.562500, 27.059126 ], [ 35.859375, 27.059126 ], [ 35.859375, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 28.921631 ], [ 36.562500, 28.921631 ], [ 36.562500, 30.145127 ], [ 37.968750, 30.145127 ], [ 37.968750, 30.751278 ], [ 37.265625, 30.751278 ], [ 37.265625, 31.353637 ], [ 38.671875, 31.353637 ], [ 38.671875, 31.952162 ], [ 40.781250, 31.952162 ], [ 40.781250, 31.353637 ], [ 42.187500, 31.353637 ], [ 42.187500, 30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 31.952162 ], [ 40.781250, 31.353637 ], [ 42.187500, 31.353637 ], [ 42.187500, 30.751278 ], [ 42.890625, 30.751278 ], [ 42.890625, 30.145127 ], [ 43.593750, 30.145127 ], [ 43.593750, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 28.921631 ], [ 47.109375, 28.921631 ], [ 47.109375, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.683528 ], [ 49.218750, 27.683528 ], [ 49.218750, 26.431228 ], [ 49.921875, 26.431228 ], [ 49.921875, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 23.241346 ], [ 52.734375, 23.241346 ], [ 52.734375, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 19.973349 ], [ 54.140625, 19.973349 ], [ 54.140625, 19.311143 ], [ 51.328125, 19.311143 ], [ 51.328125, 18.646245 ], [ 49.218750, 18.646245 ], [ 49.218750, 17.978733 ], [ 48.515625, 17.978733 ], [ 48.515625, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 16.636192 ], [ 46.406250, 16.636192 ], [ 46.406250, 17.308688 ], [ 42.890625, 17.308688 ], [ 42.890625, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.308688 ], [ 41.484375, 17.308688 ], [ 41.484375, 18.646245 ], [ 40.781250, 18.646245 ], [ 40.781250, 19.311143 ], [ 40.078125, 19.311143 ], [ 40.078125, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 23.241346 ], [ 38.671875, 23.241346 ], [ 38.671875, 23.885838 ], [ 37.265625, 23.885838 ], [ 37.265625, 25.799891 ], [ 36.562500, 25.799891 ], [ 36.562500, 27.059126 ], [ 35.859375, 27.059126 ], [ 35.859375, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 28.921631 ], [ 36.562500, 28.921631 ], [ 36.562500, 30.145127 ], [ 37.968750, 30.145127 ], [ 37.968750, 30.751278 ], [ 37.265625, 30.751278 ], [ 37.265625, 31.353637 ], [ 38.671875, 31.353637 ], [ 38.671875, 31.952162 ], [ 40.781250, 31.952162 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 24.527135 ], [ 50.625000, 24.527135 ], [ 50.625000, 25.165173 ], [ 51.328125, 25.165173 ], [ 51.328125, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 25.165173 ], [ 51.328125, 24.527135 ], [ 50.625000, 24.527135 ], [ 50.625000, 25.165173 ], [ 51.328125, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 23.885838 ], [ 54.843750, 23.885838 ], [ 54.843750, 24.527135 ], [ 55.546875, 24.527135 ], [ 55.546875, 22.593726 ], [ 52.734375, 22.593726 ], [ 52.734375, 23.241346 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 52.031250, 24.527135 ], [ 52.031250, 23.885838 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.546875, 24.527135 ], [ 55.546875, 22.593726 ], [ 52.734375, 22.593726 ], [ 52.734375, 23.241346 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 52.031250, 24.527135 ], [ 52.031250, 23.885838 ], [ 54.843750, 23.885838 ], [ 54.843750, 24.527135 ], [ 55.546875, 24.527135 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.578125, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 38.272689 ], [ 65.390625, 38.272689 ], [ 65.390625, 37.718590 ], [ 66.796875, 37.718590 ], [ 66.796875, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.031332 ], [ 63.281250, 36.031332 ], [ 63.281250, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 36.597889 ], [ 59.062500, 36.597889 ], [ 59.062500, 37.160317 ], [ 58.359375, 37.160317 ], [ 58.359375, 37.718590 ], [ 57.656250, 37.718590 ], [ 57.656250, 38.272689 ], [ 56.953125, 38.272689 ], [ 56.953125, 37.718590 ], [ 55.546875, 37.718590 ], [ 55.546875, 37.160317 ], [ 53.437500, 37.160317 ], [ 53.437500, 38.272689 ], [ 54.140625, 38.272689 ], [ 54.140625, 38.822591 ], [ 53.437500, 38.822591 ], [ 53.437500, 39.909736 ], [ 52.734375, 39.909736 ], [ 52.734375, 40.446947 ], [ 54.843750, 40.446947 ], [ 54.843750, 40.979898 ], [ 54.140625, 40.979898 ], [ 54.140625, 41.508577 ], [ 53.437500, 41.508577 ], [ 53.437500, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 42.032974 ], [ 59.765625, 42.032974 ], [ 59.765625, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 40.446947 ], [ 62.578125, 40.446947 ], [ 62.578125, 39.368279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.765625, 42.032974 ], [ 59.765625, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 40.446947 ], [ 62.578125, 40.446947 ], [ 62.578125, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 38.272689 ], [ 65.390625, 38.272689 ], [ 65.390625, 37.718590 ], [ 66.796875, 37.718590 ], [ 66.796875, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.031332 ], [ 63.281250, 36.031332 ], [ 63.281250, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 36.597889 ], [ 59.062500, 36.597889 ], [ 59.062500, 37.160317 ], [ 58.359375, 37.160317 ], [ 58.359375, 37.718590 ], [ 57.656250, 37.718590 ], [ 57.656250, 38.272689 ], [ 56.953125, 38.272689 ], [ 56.953125, 37.718590 ], [ 55.546875, 37.718590 ], [ 55.546875, 37.160317 ], [ 53.437500, 37.160317 ], [ 53.437500, 38.272689 ], [ 54.140625, 38.272689 ], [ 54.140625, 38.822591 ], [ 53.437500, 38.822591 ], [ 53.437500, 39.909736 ], [ 52.734375, 39.909736 ], [ 52.734375, 40.446947 ], [ 54.843750, 40.446947 ], [ 54.843750, 40.979898 ], [ 54.140625, 40.979898 ], [ 54.140625, 41.508577 ], [ 53.437500, 41.508577 ], [ 53.437500, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 42.032974 ], [ 59.765625, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.734375, 15.961329 ], [ 52.031250, 15.961329 ], [ 52.031250, 15.284185 ], [ 51.328125, 15.284185 ], [ 51.328125, 14.604847 ], [ 49.921875, 14.604847 ], [ 49.921875, 13.923404 ], [ 47.109375, 13.923404 ], [ 47.109375, 13.239945 ], [ 45.000000, 13.239945 ], [ 45.000000, 12.554564 ], [ 42.890625, 12.554564 ], [ 42.890625, 13.239945 ], [ 43.593750, 13.239945 ], [ 43.593750, 13.923404 ], [ 42.890625, 13.923404 ], [ 42.890625, 17.308688 ], [ 46.406250, 17.308688 ], [ 46.406250, 16.636192 ], [ 47.812500, 16.636192 ], [ 47.812500, 17.308688 ], [ 48.515625, 17.308688 ], [ 48.515625, 17.978733 ], [ 49.218750, 17.978733 ], [ 49.218750, 18.646245 ], [ 51.328125, 18.646245 ], [ 51.328125, 19.311143 ], [ 52.031250, 19.311143 ], [ 52.031250, 17.978733 ], [ 52.734375, 17.978733 ], [ 52.734375, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 19.311143 ], [ 52.031250, 17.978733 ], [ 52.734375, 17.978733 ], [ 52.734375, 15.961329 ], [ 52.031250, 15.961329 ], [ 52.031250, 15.284185 ], [ 51.328125, 15.284185 ], [ 51.328125, 14.604847 ], [ 49.921875, 14.604847 ], [ 49.921875, 13.923404 ], [ 47.109375, 13.923404 ], [ 47.109375, 13.239945 ], [ 45.000000, 13.239945 ], [ 45.000000, 12.554564 ], [ 42.890625, 12.554564 ], [ 42.890625, 13.239945 ], [ 43.593750, 13.239945 ], [ 43.593750, 13.923404 ], [ 42.890625, 13.923404 ], [ 42.890625, 17.308688 ], [ 46.406250, 17.308688 ], [ 46.406250, 16.636192 ], [ 47.812500, 16.636192 ], [ 47.812500, 17.308688 ], [ 48.515625, 17.308688 ], [ 48.515625, 17.978733 ], [ 49.218750, 17.978733 ], [ 49.218750, 18.646245 ], [ 51.328125, 18.646245 ], [ 51.328125, 19.311143 ], [ 52.031250, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 24.527135 ], [ 56.953125, 24.527135 ], [ 56.953125, 23.885838 ], [ 59.062500, 23.885838 ], [ 59.062500, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 21.289374 ], [ 59.062500, 21.289374 ], [ 59.062500, 20.632784 ], [ 58.359375, 20.632784 ], [ 58.359375, 19.973349 ], [ 57.656250, 19.973349 ], [ 57.656250, 18.646245 ], [ 56.953125, 18.646245 ], [ 56.953125, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 16.636192 ], [ 52.734375, 16.636192 ], [ 52.734375, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 19.311143 ], [ 54.140625, 19.311143 ], [ 54.140625, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 20.632784 ], [ 55.546875, 20.632784 ], [ 55.546875, 25.165173 ], [ 56.250000, 25.165173 ], [ 56.250000, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.165173 ], [ 56.250000, 24.527135 ], [ 56.953125, 24.527135 ], [ 56.953125, 23.885838 ], [ 59.062500, 23.885838 ], [ 59.062500, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 21.289374 ], [ 59.062500, 21.289374 ], [ 59.062500, 20.632784 ], [ 58.359375, 20.632784 ], [ 58.359375, 19.973349 ], [ 57.656250, 19.973349 ], [ 57.656250, 18.646245 ], [ 56.953125, 18.646245 ], [ 56.953125, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 16.636192 ], [ 52.734375, 16.636192 ], [ 52.734375, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 19.311143 ], [ 54.140625, 19.311143 ], [ 54.140625, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 20.632784 ], [ 55.546875, 20.632784 ], [ 55.546875, 25.165173 ], [ 56.250000, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 10.487812 ], [ 47.812500, 10.487812 ], [ 47.812500, 11.178402 ], [ 49.218750, 11.178402 ], [ 49.218750, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 7.710992 ], [ 45.703125, 7.710992 ], [ 45.703125, 8.407168 ], [ 44.296875, 8.407168 ], [ 44.296875, 9.102097 ], [ 43.593750, 9.102097 ], [ 43.593750, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, 11.178402 ], [ 49.218750, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 7.710992 ], [ 45.703125, 7.710992 ], [ 45.703125, 8.407168 ], [ 44.296875, 8.407168 ], [ 44.296875, 9.102097 ], [ 43.593750, 9.102097 ], [ 43.593750, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.487812 ], [ 47.812500, 10.487812 ], [ 47.812500, 11.178402 ], [ 49.218750, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 10.487812 ], [ 50.625000, 10.487812 ], [ 50.625000, 8.407168 ], [ 49.921875, 8.407168 ], [ 49.921875, 7.710992 ], [ 49.218750, 7.710992 ], [ 49.218750, 6.315299 ], [ 48.515625, 6.315299 ], [ 48.515625, 4.915833 ], [ 47.812500, 4.915833 ], [ 47.812500, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.406109 ], [ 45.000000, 1.406109 ], [ 45.000000, 0.703107 ], [ 44.296875, 0.703107 ], [ 44.296875, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 42.187500, 3.513421 ], [ 42.187500, 4.214943 ], [ 43.593750, 4.214943 ], [ 43.593750, 4.915833 ], [ 45.703125, 4.915833 ], [ 45.703125, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 6.315299 ], [ 47.109375, 6.315299 ], [ 47.109375, 7.013668 ], [ 47.812500, 7.013668 ], [ 47.812500, 8.407168 ], [ 48.515625, 8.407168 ], [ 48.515625, 9.102097 ], [ 49.218750, 9.102097 ], [ 49.218750, 11.178402 ], [ 49.921875, 11.178402 ], [ 49.921875, 11.867351 ], [ 51.328125, 11.867351 ], [ 51.328125, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 11.867351 ], [ 51.328125, 10.487812 ], [ 50.625000, 10.487812 ], [ 50.625000, 8.407168 ], [ 49.921875, 8.407168 ], [ 49.921875, 7.710992 ], [ 49.218750, 7.710992 ], [ 49.218750, 6.315299 ], [ 48.515625, 6.315299 ], [ 48.515625, 4.915833 ], [ 47.812500, 4.915833 ], [ 47.812500, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.406109 ], [ 45.000000, 1.406109 ], [ 45.000000, 0.703107 ], [ 44.296875, 0.703107 ], [ 44.296875, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 42.187500, 3.513421 ], [ 42.187500, 4.214943 ], [ 43.593750, 4.214943 ], [ 43.593750, 4.915833 ], [ 45.703125, 4.915833 ], [ 45.703125, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 6.315299 ], [ 47.109375, 6.315299 ], [ 47.109375, 7.013668 ], [ 47.812500, 7.013668 ], [ 47.812500, 8.407168 ], [ 48.515625, 8.407168 ], [ 48.515625, 9.102097 ], [ 49.218750, 9.102097 ], [ 49.218750, 11.178402 ], [ 49.921875, 11.867351 ], [ 51.328125, 11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.828125, 38.272689 ], [ 74.531250, 38.272689 ], [ 74.531250, 37.160317 ], [ 72.421875, 37.160317 ], [ 72.421875, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 71.015625, 37.718590 ], [ 71.015625, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.718590 ], [ 69.609375, 37.718590 ], [ 69.609375, 37.160317 ], [ 67.500000, 37.160317 ], [ 67.500000, 37.718590 ], [ 68.203125, 37.718590 ], [ 68.203125, 38.822591 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.368279 ], [ 68.906250, 39.368279 ], [ 68.906250, 40.446947 ], [ 69.609375, 40.446947 ], [ 69.609375, 40.979898 ], [ 71.015625, 40.979898 ], [ 71.015625, 39.909736 ], [ 69.609375, 39.909736 ], [ 69.609375, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.015625, 40.979898 ], [ 71.015625, 39.909736 ], [ 69.609375, 39.909736 ], [ 69.609375, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 38.272689 ], [ 74.531250, 38.272689 ], [ 74.531250, 37.160317 ], [ 72.421875, 37.160317 ], [ 72.421875, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 71.015625, 37.718590 ], [ 71.015625, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.718590 ], [ 69.609375, 37.718590 ], [ 69.609375, 37.160317 ], [ 67.500000, 37.160317 ], [ 67.500000, 37.718590 ], [ 68.203125, 37.718590 ], [ 68.203125, 38.822591 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.368279 ], [ 68.906250, 39.368279 ], [ 68.906250, 40.446947 ], [ 69.609375, 40.446947 ], [ 69.609375, 40.979898 ], [ 71.015625, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.015625, 36.031332 ], [ 71.015625, 35.460670 ], [ 71.718750, 35.460670 ], [ 71.718750, 34.885931 ], [ 71.015625, 34.885931 ], [ 71.015625, 33.724340 ], [ 70.312500, 33.724340 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 30.145127 ], [ 61.875000, 30.145127 ], [ 61.875000, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 32.546813 ], [ 60.468750, 32.546813 ], [ 60.468750, 33.137551 ], [ 61.171875, 33.137551 ], [ 61.171875, 33.724340 ], [ 60.468750, 33.724340 ], [ 60.468750, 34.885931 ], [ 61.171875, 34.885931 ], [ 61.171875, 35.460670 ], [ 63.281250, 35.460670 ], [ 63.281250, 36.031332 ], [ 64.687500, 36.031332 ], [ 64.687500, 37.160317 ], [ 69.609375, 37.160317 ], [ 69.609375, 37.718590 ], [ 70.312500, 37.718590 ], [ 70.312500, 38.272689 ], [ 71.015625, 38.272689 ], [ 71.015625, 37.718590 ], [ 71.718750, 37.718590 ], [ 71.718750, 36.031332 ], [ 71.015625, 36.031332 ] ] ], [ [ [ 72.421875, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 36.597889 ], [ 72.421875, 36.597889 ], [ 72.421875, 37.160317 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.718750, 36.031332 ], [ 71.015625, 36.031332 ], [ 71.015625, 35.460670 ], [ 71.718750, 35.460670 ], [ 71.718750, 34.885931 ], [ 71.015625, 34.885931 ], [ 71.015625, 33.724340 ], [ 70.312500, 33.724340 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 30.145127 ], [ 61.875000, 30.145127 ], [ 61.875000, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 32.546813 ], [ 60.468750, 32.546813 ], [ 60.468750, 33.137551 ], [ 61.171875, 33.137551 ], [ 61.171875, 33.724340 ], [ 60.468750, 33.724340 ], [ 60.468750, 34.885931 ], [ 61.171875, 35.460670 ], [ 63.281250, 35.460670 ], [ 63.281250, 36.031332 ], [ 64.687500, 36.031332 ], [ 64.687500, 37.160317 ], [ 69.609375, 37.160317 ], [ 69.609375, 37.718590 ], [ 70.312500, 37.718590 ], [ 70.312500, 38.272689 ], [ 71.015625, 38.272689 ], [ 71.015625, 37.718590 ], [ 71.718750, 37.718590 ], [ 71.718750, 36.031332 ] ] ], [ [ [ 74.531250, 36.597889 ], [ 72.421875, 36.597889 ], [ 72.421875, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 36.597889 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.937500, 36.031332 ], [ 76.640625, 36.031332 ], [ 76.640625, 35.460670 ], [ 78.046875, 35.460670 ], [ 78.046875, 34.885931 ], [ 76.640625, 34.885931 ], [ 76.640625, 34.307144 ], [ 73.828125, 34.307144 ], [ 73.828125, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 32.546813 ], [ 75.234375, 32.546813 ], [ 75.234375, 31.952162 ], [ 74.531250, 31.952162 ], [ 74.531250, 30.145127 ], [ 73.125000, 30.145127 ], [ 73.125000, 28.304381 ], [ 72.421875, 28.304381 ], [ 72.421875, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.431228 ], [ 70.312500, 26.431228 ], [ 70.312500, 25.165173 ], [ 71.015625, 25.165173 ], [ 71.015625, 24.527135 ], [ 68.906250, 24.527135 ], [ 68.906250, 23.885838 ], [ 66.796875, 23.885838 ], [ 66.796875, 24.527135 ], [ 66.093750, 24.527135 ], [ 66.093750, 25.165173 ], [ 61.171875, 25.165173 ], [ 61.171875, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 26.431228 ], [ 63.281250, 26.431228 ], [ 63.281250, 27.059126 ], [ 62.578125, 27.059126 ], [ 62.578125, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 28.921631 ], [ 61.171875, 28.921631 ], [ 61.171875, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 30.751278 ], [ 66.796875, 30.751278 ], [ 66.796875, 31.353637 ], [ 69.609375, 31.353637 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.724340 ], [ 71.015625, 33.724340 ], [ 71.015625, 34.885931 ], [ 71.718750, 34.885931 ], [ 71.718750, 35.460670 ], [ 71.015625, 35.460670 ], [ 71.015625, 36.031332 ], [ 71.718750, 36.031332 ], [ 71.718750, 36.597889 ], [ 74.531250, 36.597889 ], [ 74.531250, 37.160317 ], [ 75.234375, 37.160317 ], [ 75.234375, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.031332 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.234375, 37.160317 ], [ 75.234375, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.031332 ], [ 76.640625, 36.031332 ], [ 76.640625, 35.460670 ], [ 78.046875, 35.460670 ], [ 78.046875, 34.885931 ], [ 76.640625, 34.885931 ], [ 76.640625, 34.307144 ], [ 73.828125, 34.307144 ], [ 73.828125, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 32.546813 ], [ 75.234375, 32.546813 ], [ 75.234375, 31.952162 ], [ 74.531250, 31.952162 ], [ 74.531250, 30.145127 ], [ 73.125000, 30.145127 ], [ 73.125000, 28.304381 ], [ 72.421875, 28.304381 ], [ 72.421875, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.431228 ], [ 70.312500, 26.431228 ], [ 70.312500, 25.165173 ], [ 71.015625, 25.165173 ], [ 71.015625, 24.527135 ], [ 68.906250, 24.527135 ], [ 68.906250, 23.885838 ], [ 66.796875, 23.885838 ], [ 66.796875, 24.527135 ], [ 66.093750, 24.527135 ], [ 66.093750, 25.165173 ], [ 61.171875, 25.165173 ], [ 61.171875, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 26.431228 ], [ 63.281250, 26.431228 ], [ 63.281250, 27.059126 ], [ 62.578125, 27.059126 ], [ 62.578125, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 28.921631 ], [ 61.171875, 28.921631 ], [ 61.171875, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 30.751278 ], [ 66.796875, 30.751278 ], [ 66.796875, 31.353637 ], [ 69.609375, 31.353637 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.724340 ], [ 71.015625, 33.724340 ], [ 71.015625, 34.885931 ], [ 71.718750, 34.885931 ], [ 71.718750, 35.460670 ], [ 71.015625, 35.460670 ], [ 71.015625, 36.031332 ], [ 71.718750, 36.031332 ], [ 71.718750, 36.597889 ], [ 74.531250, 36.597889 ], [ 74.531250, 37.160317 ], [ 75.234375, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.671875, 28.921631 ], [ 85.078125, 28.921631 ], [ 85.078125, 28.304381 ], [ 85.781250, 28.304381 ], [ 85.781250, 27.683528 ], [ 87.890625, 27.683528 ], [ 87.890625, 26.431228 ], [ 84.375000, 26.431228 ], [ 84.375000, 27.059126 ], [ 82.265625, 27.059126 ], [ 82.265625, 27.683528 ], [ 80.859375, 27.683528 ], [ 80.859375, 28.304381 ], [ 80.156250, 28.304381 ], [ 80.156250, 29.535230 ], [ 80.859375, 29.535230 ], [ 80.859375, 30.145127 ], [ 82.265625, 30.145127 ], [ 82.265625, 29.535230 ], [ 83.671875, 29.535230 ], [ 83.671875, 28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 82.265625, 29.535230 ], [ 83.671875, 29.535230 ], [ 83.671875, 28.921631 ], [ 85.078125, 28.921631 ], [ 85.078125, 28.304381 ], [ 85.781250, 28.304381 ], [ 85.781250, 27.683528 ], [ 87.890625, 27.683528 ], [ 87.890625, 26.431228 ], [ 84.375000, 26.431228 ], [ 84.375000, 27.059126 ], [ 82.265625, 27.059126 ], [ 82.265625, 27.683528 ], [ 80.859375, 27.683528 ], [ 80.859375, 28.304381 ], [ 80.156250, 28.304381 ], [ 80.156250, 29.535230 ], [ 80.859375, 29.535230 ], [ 80.859375, 30.145127 ], [ 82.265625, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.859375, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 27.683528 ], [ 82.265625, 27.683528 ], [ 82.265625, 27.059126 ], [ 84.375000, 27.059126 ], [ 84.375000, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 26.431228 ], [ 90.703125, 26.431228 ], [ 90.703125, 27.059126 ], [ 92.109375, 27.059126 ], [ 92.109375, 27.683528 ], [ 92.812500, 27.683528 ], [ 92.812500, 28.304381 ], [ 93.515625, 28.304381 ], [ 93.515625, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.059126 ], [ 96.328125, 27.059126 ], [ 96.328125, 26.431228 ], [ 94.921875, 26.431228 ], [ 94.921875, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 21.943046 ], [ 92.812500, 21.943046 ], [ 92.812500, 22.593726 ], [ 92.109375, 22.593726 ], [ 92.109375, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.885838 ], [ 92.109375, 23.885838 ], [ 92.109375, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 25.799891 ], [ 87.890625, 25.799891 ], [ 87.890625, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 21.943046 ], [ 87.890625, 21.943046 ], [ 87.890625, 21.289374 ], [ 87.187500, 21.289374 ], [ 87.187500, 19.973349 ], [ 86.484375, 19.973349 ], [ 86.484375, 19.311143 ], [ 85.078125, 19.311143 ], [ 85.078125, 18.646245 ], [ 84.375000, 18.646245 ], [ 84.375000, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 17.308688 ], [ 82.265625, 17.308688 ], [ 82.265625, 16.636192 ], [ 81.562500, 16.636192 ], [ 81.562500, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 10.487812 ], [ 79.453125, 10.487812 ], [ 79.453125, 9.795678 ], [ 78.750000, 9.795678 ], [ 78.750000, 9.102097 ], [ 78.046875, 9.102097 ], [ 78.046875, 7.710992 ], [ 77.343750, 7.710992 ], [ 77.343750, 8.407168 ], [ 76.640625, 8.407168 ], [ 76.640625, 9.795678 ], [ 75.937500, 9.795678 ], [ 75.937500, 11.178402 ], [ 75.234375, 11.178402 ], [ 75.234375, 11.867351 ], [ 74.531250, 11.867351 ], [ 74.531250, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 16.636192 ], [ 73.125000, 16.636192 ], [ 73.125000, 20.632784 ], [ 69.609375, 20.632784 ], [ 69.609375, 21.289374 ], [ 68.906250, 21.289374 ], [ 68.906250, 21.943046 ], [ 69.609375, 21.943046 ], [ 69.609375, 22.593726 ], [ 68.906250, 22.593726 ], [ 68.906250, 23.241346 ], [ 68.203125, 23.241346 ], [ 68.203125, 23.885838 ], [ 68.906250, 23.885838 ], [ 68.906250, 24.527135 ], [ 71.015625, 24.527135 ], [ 71.015625, 25.165173 ], [ 70.312500, 25.165173 ], [ 70.312500, 26.431228 ], [ 69.609375, 26.431228 ], [ 69.609375, 27.059126 ], [ 70.312500, 27.059126 ], [ 70.312500, 27.683528 ], [ 72.421875, 27.683528 ], [ 72.421875, 28.304381 ], [ 73.125000, 28.304381 ], [ 73.125000, 30.145127 ], [ 74.531250, 30.145127 ], [ 74.531250, 31.952162 ], [ 75.234375, 31.952162 ], [ 75.234375, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 33.137551 ], [ 73.828125, 33.137551 ], [ 73.828125, 34.307144 ], [ 76.640625, 34.307144 ], [ 76.640625, 34.885931 ], [ 78.750000, 34.885931 ], [ 78.750000, 33.137551 ], [ 79.453125, 33.137551 ], [ 79.453125, 32.546813 ], [ 78.750000, 32.546813 ], [ 78.750000, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 34.885931 ], [ 78.750000, 33.137551 ], [ 79.453125, 33.137551 ], [ 79.453125, 32.546813 ], [ 78.750000, 32.546813 ], [ 78.750000, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 27.683528 ], [ 82.265625, 27.683528 ], [ 82.265625, 27.059126 ], [ 84.375000, 27.059126 ], [ 84.375000, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 26.431228 ], [ 90.703125, 26.431228 ], [ 90.703125, 27.059126 ], [ 92.109375, 27.059126 ], [ 92.109375, 27.683528 ], [ 92.812500, 27.683528 ], [ 92.812500, 28.304381 ], [ 93.515625, 28.304381 ], [ 93.515625, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.059126 ], [ 96.328125, 27.059126 ], [ 96.328125, 26.431228 ], [ 94.921875, 26.431228 ], [ 94.921875, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 21.943046 ], [ 92.812500, 21.943046 ], [ 92.812500, 22.593726 ], [ 92.109375, 22.593726 ], [ 92.109375, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.885838 ], [ 92.109375, 23.885838 ], [ 92.109375, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 25.799891 ], [ 87.890625, 25.799891 ], [ 87.890625, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 21.943046 ], [ 87.890625, 21.943046 ], [ 87.890625, 21.289374 ], [ 87.187500, 21.289374 ], [ 87.187500, 19.973349 ], [ 86.484375, 19.973349 ], [ 86.484375, 19.311143 ], [ 85.078125, 19.311143 ], [ 85.078125, 18.646245 ], [ 84.375000, 18.646245 ], [ 84.375000, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 17.308688 ], [ 82.265625, 17.308688 ], [ 82.265625, 16.636192 ], [ 81.562500, 16.636192 ], [ 81.562500, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 10.487812 ], [ 79.453125, 10.487812 ], [ 79.453125, 9.795678 ], [ 78.750000, 9.795678 ], [ 78.750000, 9.102097 ], [ 78.046875, 9.102097 ], [ 78.046875, 7.710992 ], [ 77.343750, 7.710992 ], [ 77.343750, 8.407168 ], [ 76.640625, 8.407168 ], [ 76.640625, 9.795678 ], [ 75.937500, 9.795678 ], [ 75.937500, 11.178402 ], [ 75.234375, 11.178402 ], [ 75.234375, 11.867351 ], [ 74.531250, 11.867351 ], [ 74.531250, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 16.636192 ], [ 73.125000, 16.636192 ], [ 73.125000, 20.632784 ], [ 69.609375, 20.632784 ], [ 69.609375, 21.289374 ], [ 68.906250, 21.289374 ], [ 68.906250, 21.943046 ], [ 69.609375, 21.943046 ], [ 69.609375, 22.593726 ], [ 68.906250, 22.593726 ], [ 68.906250, 23.241346 ], [ 68.203125, 23.241346 ], [ 68.203125, 23.885838 ], [ 68.906250, 23.885838 ], [ 68.906250, 24.527135 ], [ 71.015625, 24.527135 ], [ 71.015625, 25.165173 ], [ 70.312500, 25.165173 ], [ 70.312500, 26.431228 ], [ 69.609375, 26.431228 ], [ 69.609375, 27.059126 ], [ 70.312500, 27.059126 ], [ 70.312500, 27.683528 ], [ 72.421875, 27.683528 ], [ 72.421875, 28.304381 ], [ 73.125000, 28.304381 ], [ 73.125000, 30.145127 ], [ 74.531250, 30.145127 ], [ 74.531250, 31.952162 ], [ 75.234375, 31.952162 ], [ 75.234375, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 33.137551 ], [ 73.828125, 33.137551 ], [ 73.828125, 34.307144 ], [ 76.640625, 34.307144 ], [ 76.640625, 34.885931 ], [ 78.750000, 34.885931 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.859375, 8.407168 ], [ 81.562500, 8.407168 ], [ 81.562500, 6.315299 ], [ 80.156250, 6.315299 ], [ 80.156250, 7.710992 ], [ 79.453125, 7.710992 ], [ 79.453125, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.859375, 9.102097 ], [ 80.859375, 8.407168 ], [ 81.562500, 8.407168 ], [ 81.562500, 6.315299 ], [ 80.156250, 6.315299 ], [ 80.156250, 7.710992 ], [ 79.453125, 7.710992 ], [ 79.453125, 9.102097 ], [ 80.859375, 9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.953125, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 49.382373 ], [ 109.687500, 49.382373 ], [ 109.687500, 48.922499 ], [ 111.796875, 48.922499 ], [ 111.796875, 49.382373 ], [ 113.906250, 49.382373 ], [ 113.906250, 49.837982 ], [ 114.609375, 49.837982 ], [ 114.609375, 50.289339 ], [ 115.312500, 50.289339 ], [ 115.312500, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.382373 ], [ 116.015625, 49.382373 ], [ 116.015625, 48.458352 ], [ 115.312500, 48.458352 ], [ 115.312500, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 46.558860 ], [ 116.718750, 46.558860 ], [ 116.718750, 46.073231 ], [ 116.015625, 46.073231 ], [ 116.015625, 45.583290 ], [ 114.609375, 45.583290 ], [ 114.609375, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.590467 ], [ 112.500000, 44.590467 ], [ 112.500000, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.590467 ], [ 111.093750, 44.590467 ], [ 111.093750, 44.087585 ], [ 111.796875, 44.087585 ], [ 111.796875, 43.580391 ], [ 111.093750, 43.580391 ], [ 111.093750, 43.068888 ], [ 110.390625, 43.068888 ], [ 110.390625, 42.553080 ], [ 107.578125, 42.553080 ], [ 107.578125, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 41.508577 ], [ 104.765625, 41.508577 ], [ 104.765625, 42.032974 ], [ 101.953125, 42.032974 ], [ 101.953125, 42.553080 ], [ 95.625000, 42.553080 ], [ 95.625000, 44.087585 ], [ 94.921875, 44.087585 ], [ 94.921875, 44.590467 ], [ 93.515625, 44.590467 ], [ 93.515625, 45.089036 ], [ 90.703125, 45.089036 ], [ 90.703125, 47.040182 ], [ 90.000000, 47.040182 ], [ 90.000000, 47.517201 ], [ 88.593750, 47.517201 ], [ 88.593750, 47.989922 ], [ 87.890625, 47.989922 ], [ 87.890625, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.837982 ], [ 90.703125, 49.837982 ], [ 90.703125, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 49.837982 ], [ 98.437500, 49.837982 ], [ 98.437500, 50.736455 ], [ 97.734375, 50.736455 ], [ 97.734375, 51.179343 ], [ 98.437500, 51.179343 ], [ 98.437500, 51.618017 ], [ 100.546875, 51.618017 ], [ 100.546875, 51.179343 ], [ 101.953125, 51.179343 ], [ 101.953125, 50.289339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 51.618017 ], [ 100.546875, 51.179343 ], [ 101.953125, 51.179343 ], [ 101.953125, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 49.382373 ], [ 109.687500, 49.382373 ], [ 109.687500, 48.922499 ], [ 111.796875, 48.922499 ], [ 111.796875, 49.382373 ], [ 113.906250, 49.382373 ], [ 113.906250, 49.837982 ], [ 114.609375, 49.837982 ], [ 114.609375, 50.289339 ], [ 115.312500, 50.289339 ], [ 115.312500, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.382373 ], [ 116.015625, 49.382373 ], [ 116.015625, 48.458352 ], [ 115.312500, 48.458352 ], [ 115.312500, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 46.558860 ], [ 116.718750, 46.558860 ], [ 116.718750, 46.073231 ], [ 116.015625, 46.073231 ], [ 116.015625, 45.583290 ], [ 114.609375, 45.583290 ], [ 114.609375, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.590467 ], [ 112.500000, 44.590467 ], [ 112.500000, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.590467 ], [ 111.093750, 44.590467 ], [ 111.093750, 44.087585 ], [ 111.796875, 44.087585 ], [ 111.796875, 43.580391 ], [ 111.093750, 43.580391 ], [ 111.093750, 43.068888 ], [ 110.390625, 43.068888 ], [ 110.390625, 42.553080 ], [ 107.578125, 42.553080 ], [ 107.578125, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 41.508577 ], [ 104.765625, 41.508577 ], [ 104.765625, 42.032974 ], [ 101.953125, 42.032974 ], [ 101.953125, 42.553080 ], [ 95.625000, 42.553080 ], [ 95.625000, 44.087585 ], [ 94.921875, 44.087585 ], [ 94.921875, 44.590467 ], [ 93.515625, 44.590467 ], [ 93.515625, 45.089036 ], [ 90.703125, 45.089036 ], [ 90.703125, 47.040182 ], [ 90.000000, 47.040182 ], [ 90.000000, 47.517201 ], [ 88.593750, 47.517201 ], [ 88.593750, 47.989922 ], [ 87.890625, 47.989922 ], [ 87.890625, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.837982 ], [ 90.703125, 49.837982 ], [ 90.703125, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 49.837982 ], [ 98.437500, 49.837982 ], [ 98.437500, 50.736455 ], [ 97.734375, 50.736455 ], [ 97.734375, 51.179343 ], [ 98.437500, 51.179343 ], [ 98.437500, 51.618017 ], [ 100.546875, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.109375, 27.059126 ], [ 90.703125, 27.059126 ], [ 90.703125, 26.431228 ], [ 88.593750, 26.431228 ], [ 88.593750, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 28.304381 ], [ 91.406250, 28.304381 ], [ 91.406250, 27.683528 ], [ 92.109375, 27.683528 ], [ 92.109375, 27.059126 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 28.304381 ], [ 91.406250, 27.683528 ], [ 92.109375, 27.683528 ], [ 92.109375, 27.059126 ], [ 90.703125, 27.059126 ], [ 90.703125, 26.431228 ], [ 88.593750, 26.431228 ], [ 88.593750, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 28.304381 ], [ 91.406250, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 25.165173 ], [ 92.109375, 25.165173 ], [ 92.109375, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 23.241346 ], [ 92.109375, 23.241346 ], [ 92.109375, 22.593726 ], [ 92.812500, 22.593726 ], [ 92.812500, 21.289374 ], [ 92.109375, 21.289374 ], [ 92.109375, 21.943046 ], [ 91.406250, 21.943046 ], [ 91.406250, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.593750, 21.943046 ], [ 88.593750, 25.165173 ], [ 87.890625, 25.165173 ], [ 87.890625, 25.799891 ], [ 90.000000, 25.799891 ], [ 90.000000, 25.165173 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 25.799891 ], [ 90.000000, 25.165173 ], [ 92.109375, 25.165173 ], [ 92.109375, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 23.241346 ], [ 92.109375, 23.241346 ], [ 92.109375, 22.593726 ], [ 92.812500, 22.593726 ], [ 92.812500, 21.289374 ], [ 92.109375, 21.289374 ], [ 92.109375, 21.943046 ], [ 91.406250, 21.943046 ], [ 91.406250, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.593750, 21.943046 ], [ 88.593750, 25.165173 ], [ 87.890625, 25.165173 ], [ 87.890625, 25.799891 ], [ 90.000000, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875000, 21.289374 ], [ 106.875000, 22.593726 ], [ 101.953125, 22.593726 ], [ 101.953125, 21.289374 ], [ 99.843750, 21.289374 ], [ 99.843750, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.843750, 22.593726 ], [ 99.843750, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 23.885838 ], [ 97.734375, 23.885838 ], [ 97.734375, 25.165173 ], [ 98.437500, 25.165173 ], [ 98.437500, 27.683528 ], [ 97.734375, 27.683528 ], [ 97.734375, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 28.921631 ], [ 93.515625, 28.921631 ], [ 93.515625, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.683528 ], [ 85.781250, 27.683528 ], [ 85.781250, 28.304381 ], [ 85.078125, 28.304381 ], [ 85.078125, 28.921631 ], [ 83.671875, 28.921631 ], [ 83.671875, 29.535230 ], [ 82.265625, 29.535230 ], [ 82.265625, 30.145127 ], [ 79.453125, 30.145127 ], [ 79.453125, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 32.546813 ], [ 79.453125, 32.546813 ], [ 79.453125, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.460670 ], [ 76.640625, 35.460670 ], [ 76.640625, 36.031332 ], [ 75.937500, 36.031332 ], [ 75.937500, 36.597889 ], [ 75.234375, 36.597889 ], [ 75.234375, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 38.272689 ], [ 73.828125, 38.272689 ], [ 73.828125, 39.909736 ], [ 74.531250, 39.909736 ], [ 74.531250, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.979898 ], [ 78.750000, 40.979898 ], [ 78.750000, 41.508577 ], [ 80.156250, 41.508577 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 45.089036 ], [ 82.265625, 45.089036 ], [ 82.265625, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.517201 ], [ 83.671875, 47.517201 ], [ 83.671875, 47.040182 ], [ 85.781250, 47.040182 ], [ 85.781250, 48.458352 ], [ 86.484375, 48.458352 ], [ 86.484375, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.382373 ], [ 87.890625, 49.382373 ], [ 87.890625, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 45.089036 ], [ 93.515625, 45.089036 ], [ 93.515625, 44.590467 ], [ 94.921875, 44.590467 ], [ 94.921875, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 42.553080 ], [ 101.953125, 42.553080 ], [ 101.953125, 42.032974 ], [ 104.765625, 42.032974 ], [ 104.765625, 41.508577 ], [ 106.171875, 41.508577 ], [ 106.171875, 42.032974 ], [ 107.578125, 42.032974 ], [ 107.578125, 42.553080 ], [ 110.390625, 42.553080 ], [ 110.390625, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.093750, 44.087585 ], [ 111.093750, 44.590467 ], [ 111.796875, 44.590467 ], [ 111.796875, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 44.590467 ], [ 113.906250, 44.590467 ], [ 113.906250, 45.089036 ], [ 114.609375, 45.089036 ], [ 114.609375, 45.583290 ], [ 116.015625, 45.583290 ], [ 116.015625, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.558860 ], [ 119.531250, 46.558860 ], [ 119.531250, 47.040182 ], [ 118.828125, 47.040182 ], [ 118.828125, 47.517201 ], [ 115.312500, 47.517201 ], [ 115.312500, 48.458352 ], [ 116.015625, 48.458352 ], [ 116.015625, 49.382373 ], [ 118.828125, 49.382373 ], [ 118.828125, 49.837982 ], [ 119.531250, 49.837982 ], [ 119.531250, 51.179343 ], [ 120.234375, 51.179343 ], [ 120.234375, 51.618017 ], [ 120.937500, 51.618017 ], [ 120.937500, 52.482780 ], [ 120.234375, 52.482780 ], [ 120.234375, 52.908902 ], [ 120.937500, 52.908902 ], [ 120.937500, 53.330873 ], [ 125.156250, 53.330873 ], [ 125.156250, 52.908902 ], [ 125.859375, 52.908902 ], [ 125.859375, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.179343 ], [ 127.265625, 51.179343 ], [ 127.265625, 50.289339 ], [ 127.968750, 50.289339 ], [ 127.968750, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 48.922499 ], [ 130.781250, 48.922499 ], [ 130.781250, 47.989922 ], [ 134.296875, 47.989922 ], [ 134.296875, 46.558860 ], [ 133.593750, 46.558860 ], [ 133.593750, 45.583290 ], [ 132.890625, 45.583290 ], [ 132.890625, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 44.590467 ], [ 131.484375, 44.590467 ], [ 131.484375, 43.068888 ], [ 130.781250, 43.068888 ], [ 130.781250, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.508577 ], [ 125.859375, 41.508577 ], [ 125.859375, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 38.822591 ], [ 121.640625, 38.822591 ], [ 121.640625, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 40.446947 ], [ 120.937500, 40.446947 ], [ 120.937500, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.368279 ], [ 118.125000, 39.368279 ], [ 118.125000, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.272689 ], [ 118.125000, 38.272689 ], [ 118.125000, 37.718590 ], [ 118.828125, 37.718590 ], [ 118.828125, 37.160317 ], [ 120.937500, 37.160317 ], [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 34.885931 ], [ 118.828125, 34.885931 ], [ 118.828125, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.937500, 33.724340 ], [ 120.937500, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 30.145127 ], [ 121.640625, 30.145127 ], [ 121.640625, 29.535230 ], [ 122.343750, 29.535230 ], [ 122.343750, 28.921631 ], [ 121.640625, 28.921631 ], [ 121.640625, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 27.683528 ], [ 120.234375, 27.683528 ], [ 120.234375, 26.431228 ], [ 119.531250, 26.431228 ], [ 119.531250, 25.165173 ], [ 118.828125, 25.165173 ], [ 118.828125, 23.885838 ], [ 117.421875, 23.885838 ], [ 117.421875, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 22.593726 ], [ 114.609375, 22.593726 ], [ 114.609375, 21.943046 ], [ 113.203125, 21.943046 ], [ 113.203125, 21.289374 ], [ 111.093750, 21.289374 ], [ 111.093750, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 19.973349 ], [ 111.093750, 19.973349 ], [ 111.093750, 19.311143 ], [ 110.390625, 19.311143 ], [ 110.390625, 17.978733 ], [ 108.984375, 17.978733 ], [ 108.984375, 18.646245 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.311143 ], [ 108.984375, 19.311143 ], [ 108.984375, 19.973349 ], [ 109.687500, 19.973349 ], [ 109.687500, 21.289374 ], [ 106.875000, 21.289374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.156250, 53.330873 ], [ 125.156250, 52.908902 ], [ 125.859375, 52.908902 ], [ 125.859375, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.179343 ], [ 127.265625, 51.179343 ], [ 127.265625, 50.289339 ], [ 127.968750, 50.289339 ], [ 127.968750, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 48.922499 ], [ 130.781250, 48.922499 ], [ 130.781250, 47.989922 ], [ 134.296875, 47.989922 ], [ 134.296875, 46.558860 ], [ 133.593750, 46.558860 ], [ 133.593750, 45.583290 ], [ 132.890625, 45.583290 ], [ 132.890625, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 44.590467 ], [ 131.484375, 44.590467 ], [ 131.484375, 43.068888 ], [ 130.781250, 43.068888 ], [ 130.781250, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.508577 ], [ 125.859375, 41.508577 ], [ 125.859375, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 38.822591 ], [ 121.640625, 38.822591 ], [ 121.640625, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 40.446947 ], [ 120.937500, 40.446947 ], [ 120.937500, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.368279 ], [ 118.125000, 39.368279 ], [ 118.125000, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.272689 ], [ 118.125000, 38.272689 ], [ 118.125000, 37.718590 ], [ 118.828125, 37.718590 ], [ 118.828125, 37.160317 ], [ 120.937500, 37.160317 ], [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 34.885931 ], [ 118.828125, 34.885931 ], [ 118.828125, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.937500, 33.724340 ], [ 120.937500, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 30.145127 ], [ 121.640625, 30.145127 ], [ 121.640625, 29.535230 ], [ 122.343750, 29.535230 ], [ 122.343750, 28.921631 ], [ 121.640625, 28.921631 ], [ 121.640625, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 27.683528 ], [ 120.234375, 27.683528 ], [ 120.234375, 26.431228 ], [ 119.531250, 26.431228 ], [ 119.531250, 25.165173 ], [ 118.828125, 25.165173 ], [ 118.828125, 23.885838 ], [ 117.421875, 23.885838 ], [ 117.421875, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 22.593726 ], [ 114.609375, 22.593726 ], [ 114.609375, 21.943046 ], [ 113.203125, 21.943046 ], [ 113.203125, 21.289374 ], [ 111.093750, 21.289374 ], [ 111.093750, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 19.973349 ], [ 111.093750, 19.973349 ], [ 111.093750, 19.311143 ], [ 110.390625, 19.311143 ], [ 110.390625, 17.978733 ], [ 108.984375, 17.978733 ], [ 108.984375, 18.646245 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.311143 ], [ 108.984375, 19.311143 ], [ 108.984375, 19.973349 ], [ 109.687500, 19.973349 ], [ 109.687500, 21.289374 ], [ 106.875000, 21.289374 ], [ 106.875000, 22.593726 ], [ 101.953125, 22.593726 ], [ 101.953125, 21.289374 ], [ 99.843750, 21.289374 ], [ 99.843750, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.843750, 22.593726 ], [ 99.843750, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 23.885838 ], [ 97.734375, 23.885838 ], [ 97.734375, 25.165173 ], [ 98.437500, 25.165173 ], [ 98.437500, 27.683528 ], [ 97.734375, 27.683528 ], [ 97.734375, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 28.921631 ], [ 93.515625, 28.921631 ], [ 93.515625, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.683528 ], [ 85.781250, 27.683528 ], [ 85.781250, 28.304381 ], [ 85.078125, 28.304381 ], [ 85.078125, 28.921631 ], [ 83.671875, 28.921631 ], [ 83.671875, 29.535230 ], [ 82.265625, 29.535230 ], [ 82.265625, 30.145127 ], [ 79.453125, 30.145127 ], [ 79.453125, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 32.546813 ], [ 79.453125, 32.546813 ], [ 79.453125, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.460670 ], [ 76.640625, 35.460670 ], [ 76.640625, 36.031332 ], [ 75.937500, 36.031332 ], [ 75.937500, 36.597889 ], [ 75.234375, 36.597889 ], [ 75.234375, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 38.272689 ], [ 73.828125, 38.272689 ], [ 73.828125, 39.909736 ], [ 74.531250, 39.909736 ], [ 74.531250, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.979898 ], [ 78.750000, 40.979898 ], [ 78.750000, 41.508577 ], [ 80.156250, 41.508577 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 45.089036 ], [ 82.265625, 45.089036 ], [ 82.265625, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.517201 ], [ 83.671875, 47.517201 ], [ 83.671875, 47.040182 ], [ 85.781250, 47.040182 ], [ 85.781250, 48.458352 ], [ 86.484375, 48.458352 ], [ 86.484375, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.382373 ], [ 87.890625, 49.382373 ], [ 87.890625, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 45.089036 ], [ 93.515625, 45.089036 ], [ 93.515625, 44.590467 ], [ 94.921875, 44.590467 ], [ 94.921875, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 42.553080 ], [ 101.953125, 42.553080 ], [ 101.953125, 42.032974 ], [ 104.765625, 42.032974 ], [ 104.765625, 41.508577 ], [ 106.171875, 41.508577 ], [ 106.171875, 42.032974 ], [ 107.578125, 42.032974 ], [ 107.578125, 42.553080 ], [ 110.390625, 42.553080 ], [ 110.390625, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.093750, 44.087585 ], [ 111.093750, 44.590467 ], [ 111.796875, 44.590467 ], [ 111.796875, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 44.590467 ], [ 113.906250, 44.590467 ], [ 113.906250, 45.089036 ], [ 114.609375, 45.089036 ], [ 114.609375, 45.583290 ], [ 116.015625, 45.583290 ], [ 116.015625, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.558860 ], [ 119.531250, 46.558860 ], [ 119.531250, 47.040182 ], [ 118.828125, 47.040182 ], [ 118.828125, 47.517201 ], [ 115.312500, 47.517201 ], [ 115.312500, 48.458352 ], [ 116.015625, 48.458352 ], [ 116.015625, 49.382373 ], [ 118.828125, 49.382373 ], [ 118.828125, 49.837982 ], [ 119.531250, 49.837982 ], [ 119.531250, 51.179343 ], [ 120.234375, 51.179343 ], [ 120.234375, 51.618017 ], [ 120.937500, 51.618017 ], [ 120.937500, 52.482780 ], [ 120.234375, 52.482780 ], [ 120.234375, 52.908902 ], [ 120.937500, 52.908902 ], [ 120.937500, 53.330873 ], [ 125.156250, 53.330873 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.734375, 13.923404 ], [ 97.734375, 15.961329 ], [ 97.031250, 15.961329 ], [ 97.031250, 16.636192 ], [ 96.328125, 16.636192 ], [ 96.328125, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 18.646245 ], [ 93.515625, 18.646245 ], [ 93.515625, 19.973349 ], [ 92.109375, 19.973349 ], [ 92.109375, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.515625, 21.943046 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.527135 ], [ 94.921875, 24.527135 ], [ 94.921875, 26.431228 ], [ 96.328125, 26.431228 ], [ 96.328125, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 97.734375, 28.304381 ], [ 97.734375, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 19.973349 ], [ 98.437500, 19.973349 ], [ 98.437500, 19.311143 ], [ 97.734375, 19.311143 ], [ 97.734375, 18.646245 ], [ 97.031250, 18.646245 ], [ 97.031250, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 15.961329 ], [ 99.140625, 15.961329 ], [ 99.140625, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 13.923404 ], [ 97.734375, 13.923404 ] ] ], [ [ [ 99.140625, 13.923404 ], [ 99.140625, 11.867351 ], [ 99.843750, 11.867351 ], [ 99.843750, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.437500, 10.487812 ], [ 98.437500, 13.923404 ], [ 99.140625, 13.923404 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 13.923404 ], [ 97.734375, 13.923404 ], [ 97.734375, 15.961329 ], [ 97.031250, 15.961329 ], [ 97.031250, 16.636192 ], [ 96.328125, 16.636192 ], [ 96.328125, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 18.646245 ], [ 93.515625, 18.646245 ], [ 93.515625, 19.973349 ], [ 92.109375, 19.973349 ], [ 92.109375, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.515625, 21.943046 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.527135 ], [ 94.921875, 24.527135 ], [ 94.921875, 26.431228 ], [ 96.328125, 26.431228 ], [ 96.328125, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 97.734375, 28.304381 ], [ 97.734375, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 19.973349 ], [ 98.437500, 19.973349 ], [ 98.437500, 19.311143 ], [ 97.734375, 19.311143 ], [ 97.734375, 18.646245 ], [ 97.031250, 18.646245 ], [ 97.031250, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 15.961329 ], [ 99.140625, 15.961329 ], [ 99.140625, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 98.437500, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 11.867351 ], [ 99.843750, 11.867351 ], [ 99.843750, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.437500, 10.487812 ], [ 98.437500, 13.923404 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.359375, 20.632784 ], [ 104.765625, 20.632784 ], [ 104.765625, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 15.961329 ], [ 107.578125, 15.961329 ], [ 107.578125, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.062500, 17.308688 ], [ 104.062500, 17.978733 ], [ 101.953125, 17.978733 ], [ 101.953125, 17.308688 ], [ 101.250000, 17.308688 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 99.843750, 19.973349 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.359375, 21.289374 ], [ 103.359375, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.359375, 21.289374 ], [ 103.359375, 20.632784 ], [ 104.765625, 20.632784 ], [ 104.765625, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 15.961329 ], [ 107.578125, 15.961329 ], [ 107.578125, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.062500, 17.308688 ], [ 104.062500, 17.978733 ], [ 101.953125, 17.978733 ], [ 101.953125, 17.308688 ], [ 101.250000, 17.308688 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 99.843750, 19.973349 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.943046 ], [ 102.656250, 21.943046 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.140625, 11.178402 ], [ 99.140625, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 15.284185 ], [ 99.140625, 15.284185 ], [ 99.140625, 15.961329 ], [ 98.437500, 15.961329 ], [ 98.437500, 16.636192 ], [ 97.734375, 16.636192 ], [ 97.734375, 17.978733 ], [ 97.031250, 17.978733 ], [ 97.031250, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 19.311143 ], [ 98.437500, 19.311143 ], [ 98.437500, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 17.308688 ], [ 101.953125, 17.308688 ], [ 101.953125, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.468750, 15.961329 ], [ 105.468750, 14.604847 ], [ 104.062500, 14.604847 ], [ 104.062500, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 11.867351 ], [ 101.953125, 11.867351 ], [ 101.953125, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.239945 ], [ 99.843750, 13.239945 ], [ 99.843750, 11.178402 ], [ 99.140625, 11.178402 ] ] ], [ [ [ 99.843750, 9.102097 ], [ 99.843750, 8.407168 ], [ 100.546875, 8.407168 ], [ 100.546875, 7.013668 ], [ 101.953125, 7.013668 ], [ 101.953125, 5.615986 ], [ 101.250000, 5.615986 ], [ 101.250000, 6.315299 ], [ 99.843750, 6.315299 ], [ 99.843750, 7.013668 ], [ 99.140625, 7.013668 ], [ 99.140625, 7.710992 ], [ 98.437500, 7.710992 ], [ 98.437500, 10.487812 ], [ 99.140625, 10.487812 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.140625, 10.487812 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 99.843750, 8.407168 ], [ 100.546875, 8.407168 ], [ 100.546875, 7.013668 ], [ 101.953125, 7.013668 ], [ 101.953125, 5.615986 ], [ 101.250000, 5.615986 ], [ 101.250000, 6.315299 ], [ 99.843750, 6.315299 ], [ 99.843750, 7.013668 ], [ 99.140625, 7.013668 ], [ 99.140625, 7.710992 ], [ 98.437500, 7.710992 ], [ 98.437500, 10.487812 ], [ 99.140625, 10.487812 ] ] ], [ [ [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 17.308688 ], [ 101.953125, 17.308688 ], [ 101.953125, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.468750, 15.961329 ], [ 105.468750, 14.604847 ], [ 104.062500, 14.604847 ], [ 104.062500, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 11.867351 ], [ 101.953125, 11.867351 ], [ 101.953125, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.239945 ], [ 99.843750, 13.239945 ], [ 99.843750, 11.867351 ], [ 99.140625, 11.867351 ], [ 99.140625, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 15.284185 ], [ 99.140625, 15.284185 ], [ 99.140625, 15.961329 ], [ 98.437500, 15.961329 ], [ 98.437500, 16.636192 ], [ 97.734375, 16.636192 ], [ 97.734375, 17.978733 ], [ 97.031250, 17.978733 ], [ 97.031250, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 19.311143 ], [ 98.437500, 19.311143 ], [ 98.437500, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 19.311143 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 17.308688 ], [ 105.468750, 17.978733 ], [ 104.765625, 17.978733 ], [ 104.765625, 18.646245 ], [ 104.062500, 18.646245 ], [ 104.062500, 19.311143 ], [ 104.765625, 19.311143 ], [ 104.765625, 20.632784 ], [ 103.359375, 20.632784 ], [ 103.359375, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 101.953125, 21.943046 ], [ 101.953125, 22.593726 ], [ 106.875000, 22.593726 ], [ 106.875000, 21.289374 ], [ 108.281250, 21.289374 ], [ 108.281250, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 19.973349 ], [ 106.171875, 19.973349 ], [ 106.171875, 19.311143 ], [ 105.468750, 19.311143 ], [ 105.468750, 18.646245 ], [ 106.171875, 18.646245 ], [ 106.171875, 17.308688 ], [ 105.468750, 17.308688 ] ] ], [ [ [ 108.281250, 15.961329 ], [ 108.281250, 15.284185 ], [ 108.984375, 15.284185 ], [ 108.984375, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.487812 ], [ 106.875000, 10.487812 ], [ 106.875000, 9.795678 ], [ 106.171875, 9.795678 ], [ 106.171875, 9.102097 ], [ 105.468750, 9.102097 ], [ 105.468750, 8.407168 ], [ 104.765625, 8.407168 ], [ 104.765625, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 10.487812 ], [ 105.468750, 10.487812 ], [ 105.468750, 11.867351 ], [ 106.875000, 11.867351 ], [ 106.875000, 12.554564 ], [ 107.578125, 12.554564 ], [ 107.578125, 15.961329 ], [ 108.281250, 15.961329 ] ] ], [ [ [ 107.578125, 16.636192 ], [ 107.578125, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 16.636192 ], [ 107.578125, 16.636192 ] ] ], [ [ [ 106.875000, 17.308688 ], [ 106.875000, 16.636192 ], [ 106.171875, 16.636192 ], [ 106.171875, 17.308688 ], [ 106.875000, 17.308688 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.171875, 17.308688 ], [ 105.468750, 17.308688 ], [ 105.468750, 17.978733 ], [ 104.765625, 17.978733 ], [ 104.765625, 18.646245 ], [ 104.062500, 18.646245 ], [ 104.062500, 19.311143 ], [ 104.765625, 19.311143 ], [ 104.765625, 20.632784 ], [ 103.359375, 20.632784 ], [ 103.359375, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 101.953125, 21.943046 ], [ 101.953125, 22.593726 ], [ 106.875000, 22.593726 ], [ 106.875000, 21.289374 ], [ 108.281250, 21.289374 ], [ 108.281250, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 19.973349 ], [ 106.171875, 19.973349 ], [ 106.171875, 19.311143 ], [ 105.468750, 19.311143 ], [ 105.468750, 18.646245 ], [ 106.171875, 18.646245 ], [ 106.171875, 17.308688 ] ] ], [ [ [ 107.578125, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.284185 ], [ 108.984375, 15.284185 ], [ 108.984375, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.487812 ], [ 106.875000, 10.487812 ], [ 106.875000, 9.795678 ], [ 106.171875, 9.795678 ], [ 106.171875, 9.102097 ], [ 105.468750, 9.102097 ], [ 105.468750, 8.407168 ], [ 104.765625, 8.407168 ], [ 104.765625, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 10.487812 ], [ 105.468750, 10.487812 ], [ 105.468750, 11.867351 ], [ 106.875000, 11.867351 ], [ 106.875000, 12.554564 ], [ 107.578125, 12.554564 ], [ 107.578125, 15.961329 ] ] ], [ [ [ 106.875000, 16.636192 ], [ 107.578125, 16.636192 ], [ 107.578125, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 16.636192 ] ] ], [ [ [ 106.171875, 17.308688 ], [ 106.875000, 17.308688 ], [ 106.875000, 16.636192 ], [ 106.171875, 16.636192 ], [ 106.171875, 17.308688 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.578125, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 11.867351 ], [ 105.468750, 11.867351 ], [ 105.468750, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 13.923404 ], [ 104.062500, 13.923404 ], [ 104.062500, 14.604847 ], [ 105.468750, 14.604847 ], [ 105.468750, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 14.604847 ], [ 105.468750, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 11.867351 ], [ 105.468750, 11.867351 ], [ 105.468750, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 13.923404 ], [ 104.062500, 13.923404 ], [ 104.062500, 14.604847 ], [ 105.468750, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.531250, 4.915833 ], [ 118.125000, 4.915833 ], [ 118.125000, 4.214943 ], [ 116.015625, 4.214943 ], [ 116.015625, 3.513421 ], [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 113.906250, 3.513421 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.015625, 5.615986 ], [ 116.015625, 6.315299 ], [ 116.718750, 6.315299 ], [ 116.718750, 7.013668 ], [ 117.421875, 7.013668 ], [ 117.421875, 5.615986 ], [ 119.531250, 5.615986 ], [ 119.531250, 4.915833 ] ] ], [ [ [ 101.250000, 5.615986 ], [ 101.953125, 5.615986 ], [ 101.953125, 6.315299 ], [ 102.656250, 6.315299 ], [ 102.656250, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 6.315299 ], [ 101.250000, 6.315299 ], [ 101.250000, 5.615986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.421875, 7.013668 ], [ 117.421875, 5.615986 ], [ 119.531250, 5.615986 ], [ 119.531250, 4.915833 ], [ 118.125000, 4.915833 ], [ 118.125000, 4.214943 ], [ 116.015625, 4.214943 ], [ 116.015625, 3.513421 ], [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 113.906250, 3.513421 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.015625, 5.615986 ], [ 116.015625, 6.315299 ], [ 116.718750, 6.315299 ], [ 116.718750, 7.013668 ], [ 117.421875, 7.013668 ] ] ], [ [ [ 102.656250, 6.315299 ], [ 102.656250, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 6.315299 ], [ 101.250000, 6.315299 ], [ 101.250000, 5.615986 ], [ 101.953125, 5.615986 ], [ 101.953125, 6.315299 ], [ 102.656250, 6.315299 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 21.943046 ], [ 120.234375, 21.943046 ], [ 120.234375, 23.885838 ], [ 120.937500, 23.885838 ], [ 120.937500, 24.527135 ], [ 121.640625, 24.527135 ], [ 121.640625, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 24.527135 ], [ 121.640625, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 21.943046 ], [ 120.234375, 21.943046 ], [ 120.234375, 23.885838 ], [ 120.937500, 23.885838 ], [ 120.937500, 24.527135 ], [ 121.640625, 24.527135 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.781250, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.508577 ], [ 129.375000, 41.508577 ], [ 129.375000, 40.446947 ], [ 128.671875, 40.446947 ], [ 128.671875, 39.909736 ], [ 127.265625, 39.909736 ], [ 127.265625, 38.822591 ], [ 128.671875, 38.822591 ], [ 128.671875, 38.272689 ], [ 127.265625, 38.272689 ], [ 127.265625, 37.718590 ], [ 124.453125, 37.718590 ], [ 124.453125, 38.272689 ], [ 125.156250, 38.272689 ], [ 125.156250, 39.368279 ], [ 124.453125, 39.368279 ], [ 124.453125, 39.909736 ], [ 125.156250, 39.909736 ], [ 125.156250, 40.446947 ], [ 125.859375, 40.446947 ], [ 125.859375, 41.508577 ], [ 127.968750, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ], [ 129.375000, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.781250, 42.553080 ], [ 130.781250, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.508577 ], [ 129.375000, 41.508577 ], [ 129.375000, 40.446947 ], [ 128.671875, 40.446947 ], [ 128.671875, 39.909736 ], [ 127.265625, 39.909736 ], [ 127.265625, 38.822591 ], [ 128.671875, 38.822591 ], [ 128.671875, 38.272689 ], [ 127.265625, 38.272689 ], [ 127.265625, 37.718590 ], [ 124.453125, 37.718590 ], [ 124.453125, 38.272689 ], [ 125.156250, 38.272689 ], [ 125.156250, 39.368279 ], [ 124.453125, 39.368279 ], [ 124.453125, 39.909736 ], [ 125.156250, 39.909736 ], [ 125.156250, 40.446947 ], [ 125.859375, 40.446947 ], [ 125.859375, 41.508577 ], [ 127.968750, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ], [ 129.375000, 42.553080 ], [ 130.781250, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 34.885931 ], [ 127.968750, 34.885931 ], [ 127.968750, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 36.031332 ], [ 125.859375, 36.031332 ], [ 125.859375, 36.597889 ], [ 126.562500, 36.597889 ], [ 126.562500, 37.160317 ], [ 125.859375, 37.160317 ], [ 125.859375, 37.718590 ], [ 127.265625, 37.718590 ], [ 127.265625, 38.272689 ], [ 128.671875, 38.272689 ], [ 128.671875, 37.718590 ], [ 129.375000, 37.718590 ], [ 129.375000, 34.885931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.671875, 38.272689 ], [ 128.671875, 37.718590 ], [ 129.375000, 37.718590 ], [ 129.375000, 34.885931 ], [ 127.968750, 34.885931 ], [ 127.968750, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 36.031332 ], [ 125.859375, 36.031332 ], [ 125.859375, 36.597889 ], [ 126.562500, 36.597889 ], [ 126.562500, 37.160317 ], [ 125.859375, 37.160317 ], [ 125.859375, 37.718590 ], [ 127.265625, 37.718590 ], [ 127.265625, 38.272689 ], [ 128.671875, 38.272689 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.046875, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 9.102097 ], [ 126.562500, 9.102097 ], [ 126.562500, 6.315299 ], [ 125.859375, 6.315299 ], [ 125.859375, 5.615986 ], [ 124.453125, 5.615986 ], [ 124.453125, 6.315299 ], [ 123.750000, 6.315299 ], [ 123.750000, 7.710992 ], [ 123.046875, 7.710992 ], [ 123.046875, 8.407168 ] ], [ [ 125.859375, 7.013668 ], [ 125.156250, 7.013668 ], [ 125.156250, 6.315299 ], [ 125.859375, 6.315299 ], [ 125.859375, 7.013668 ] ] ], [ [ [ 118.828125, 8.407168 ], [ 117.421875, 8.407168 ], [ 117.421875, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 8.407168 ] ] ], [ [ [ 121.640625, 11.867351 ], [ 123.046875, 11.867351 ], [ 123.046875, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 9.102097 ], [ 122.343750, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.046875, 9.795678 ], [ 123.046875, 10.487812 ], [ 121.640625, 10.487812 ], [ 121.640625, 11.867351 ] ] ], [ [ [ 124.453125, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.554564 ] ] ], [ [ [ 121.640625, 12.554564 ], [ 120.234375, 12.554564 ], [ 120.234375, 13.239945 ], [ 121.640625, 13.239945 ], [ 121.640625, 12.554564 ] ] ], [ [ [ 122.343750, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 13.923404 ], [ 120.937500, 13.923404 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 17.978733 ], [ 120.937500, 17.978733 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 121.640625, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.961329 ] ] ], [ [ [ 124.453125, 9.795678 ], [ 124.453125, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 9.795678 ], [ 124.453125, 9.795678 ] ] ], [ [ [ 123.750000, 13.239945 ], [ 124.453125, 13.239945 ], [ 124.453125, 12.554564 ], [ 123.046875, 12.554564 ], [ 123.046875, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ] ] ], [ [ [ 123.046875, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 7.710992 ], [ 123.046875, 7.710992 ], [ 123.046875, 7.013668 ] ] ], [ [ [ 118.828125, 10.487812 ], [ 119.531250, 10.487812 ], [ 119.531250, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 10.487812 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.859375, 6.315299 ], [ 125.859375, 5.615986 ], [ 124.453125, 5.615986 ], [ 124.453125, 6.315299 ], [ 123.750000, 6.315299 ], [ 123.750000, 7.710992 ], [ 123.046875, 7.710992 ], [ 123.046875, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 9.102097 ], [ 125.156250, 9.102097 ], [ 125.156250, 9.795678 ], [ 126.562500, 9.102097 ], [ 126.562500, 6.315299 ], [ 125.859375, 6.315299 ] ], [ [ 125.859375, 6.315299 ], [ 125.859375, 7.013668 ], [ 125.156250, 7.013668 ], [ 125.156250, 6.315299 ], [ 125.859375, 6.315299 ] ] ], [ [ [ 123.046875, 7.710992 ], [ 123.046875, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 7.710992 ], [ 123.046875, 7.710992 ] ] ], [ [ [ 118.828125, 9.795678 ], [ 118.828125, 8.407168 ], [ 117.421875, 8.407168 ], [ 117.421875, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 9.795678 ], [ 118.828125, 9.795678 ] ] ], [ [ [ 123.046875, 11.867351 ], [ 123.046875, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 9.102097 ], [ 122.343750, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.046875, 9.795678 ], [ 123.046875, 10.487812 ], [ 121.640625, 10.487812 ], [ 121.640625, 11.178402 ], [ 122.343750, 11.178402 ], [ 121.640625, 11.867351 ], [ 123.046875, 11.867351 ] ] ], [ [ [ 125.156250, 11.178402 ], [ 125.156250, 9.795678 ], [ 124.453125, 9.795678 ], [ 124.453125, 11.178402 ], [ 125.156250, 11.178402 ] ] ], [ [ [ 119.531250, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 10.487812 ], [ 119.531250, 10.487812 ], [ 119.531250, 9.795678 ] ] ], [ [ [ 121.640625, 13.239945 ], [ 121.640625, 12.554564 ], [ 120.234375, 12.554564 ], [ 120.234375, 13.239945 ], [ 121.640625, 13.239945 ] ] ], [ [ [ 121.640625, 13.923404 ], [ 120.937500, 13.923404 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 17.978733 ], [ 120.937500, 17.978733 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 121.640625, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 13.923404 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ], [ 124.453125, 13.239945 ], [ 124.453125, 12.554564 ], [ 123.046875, 12.554564 ], [ 123.046875, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.923404 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.915833 ], [ 115.312500, 4.915833 ], [ 115.312500, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.915833 ], [ 115.312500, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.915833 ], [ 115.312500, 4.915833 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 33.137551 ], [ 133.593750, 33.137551 ], [ 133.593750, 32.546813 ], [ 132.187500, 32.546813 ], [ 132.187500, 31.952162 ], [ 131.484375, 31.952162 ], [ 131.484375, 30.751278 ], [ 130.078125, 30.751278 ], [ 130.078125, 31.952162 ], [ 130.781250, 31.952162 ], [ 130.781250, 32.546813 ], [ 129.375000, 32.546813 ], [ 129.375000, 33.137551 ], [ 130.078125, 33.137551 ], [ 130.078125, 33.724340 ], [ 130.781250, 33.724340 ], [ 130.781250, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 34.885931 ], [ 132.890625, 34.885931 ], [ 132.890625, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 36.031332 ], [ 136.406250, 36.031332 ], [ 136.406250, 36.597889 ], [ 137.812500, 36.597889 ], [ 137.812500, 37.160317 ], [ 138.515625, 37.160317 ], [ 138.515625, 37.718590 ], [ 139.218750, 37.718590 ], [ 139.218750, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.446947 ], [ 140.625000, 40.446947 ], [ 140.625000, 40.979898 ], [ 141.328125, 40.979898 ], [ 141.328125, 40.446947 ], [ 142.031250, 40.446947 ], [ 142.031250, 38.822591 ], [ 141.328125, 38.822591 ], [ 141.328125, 38.272689 ], [ 140.625000, 38.272689 ], [ 140.625000, 35.460670 ], [ 139.921875, 35.460670 ], [ 139.921875, 34.885931 ], [ 137.109375, 34.885931 ], [ 137.109375, 34.307144 ], [ 136.406250, 34.307144 ], [ 136.406250, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 33.137551 ] ], [ [ 135.000000, 34.307144 ], [ 134.296875, 34.307144 ], [ 134.296875, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.307144 ] ], [ [ 132.187500, 33.724340 ], [ 130.781250, 33.724340 ], [ 130.781250, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 33.724340 ] ] ], [ [ [ 142.734375, 44.590467 ], [ 143.437500, 44.590467 ], [ 143.437500, 44.087585 ], [ 145.546875, 44.087585 ], [ 145.546875, 43.068888 ], [ 144.140625, 43.068888 ], [ 144.140625, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.032974 ], [ 142.031250, 42.032974 ], [ 142.031250, 42.553080 ], [ 141.328125, 42.553080 ], [ 141.328125, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 43.068888 ], [ 140.625000, 43.068888 ], [ 140.625000, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.328125, 45.089036 ], [ 142.734375, 45.089036 ], [ 142.734375, 44.590467 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 33.724340 ], [ 135.000000, 33.137551 ], [ 133.593750, 33.137551 ], [ 133.593750, 32.546813 ], [ 132.187500, 32.546813 ], [ 132.187500, 31.952162 ], [ 131.484375, 31.952162 ], [ 131.484375, 30.751278 ], [ 130.078125, 30.751278 ], [ 130.078125, 31.952162 ], [ 130.781250, 31.952162 ], [ 130.781250, 32.546813 ], [ 129.375000, 32.546813 ], [ 129.375000, 33.137551 ], [ 130.078125, 33.137551 ], [ 130.078125, 33.724340 ], [ 130.781250, 33.724340 ], [ 130.781250, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 34.885931 ], [ 132.890625, 34.885931 ], [ 132.890625, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 36.031332 ], [ 136.406250, 36.031332 ], [ 136.406250, 36.597889 ], [ 137.812500, 36.597889 ], [ 137.812500, 37.160317 ], [ 138.515625, 37.160317 ], [ 138.515625, 37.718590 ], [ 139.218750, 37.718590 ], [ 139.218750, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.446947 ], [ 140.625000, 40.446947 ], [ 140.625000, 40.979898 ], [ 141.328125, 40.979898 ], [ 141.328125, 40.446947 ], [ 142.031250, 40.446947 ], [ 142.031250, 38.822591 ], [ 140.625000, 38.272689 ], [ 140.625000, 35.460670 ], [ 139.921875, 35.460670 ], [ 139.921875, 34.885931 ], [ 137.109375, 34.885931 ], [ 137.109375, 34.307144 ], [ 136.406250, 34.307144 ], [ 136.406250, 33.724340 ], [ 135.000000, 33.724340 ] ], [ [ 130.781250, 33.724340 ], [ 130.781250, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 33.724340 ], [ 130.781250, 33.724340 ] ], [ [ 135.000000, 33.724340 ], [ 135.000000, 34.307144 ], [ 134.296875, 34.307144 ], [ 134.296875, 33.724340 ], [ 135.000000, 33.724340 ] ] ], [ [ [ 142.734375, 45.089036 ], [ 142.734375, 44.590467 ], [ 143.437500, 44.590467 ], [ 143.437500, 44.087585 ], [ 145.546875, 44.087585 ], [ 145.546875, 43.068888 ], [ 144.140625, 43.068888 ], [ 144.140625, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.032974 ], [ 142.031250, 42.032974 ], [ 142.031250, 42.553080 ], [ 141.328125, 42.553080 ], [ 141.328125, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 43.068888 ], [ 140.625000, 43.068888 ], [ 140.625000, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.328125, 45.089036 ], [ 142.734375, 45.089036 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, -1.406109 ], [ 14.765625, -1.406109 ], [ 14.765625, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.811371 ], [ 13.359375, -2.811371 ], [ 13.359375, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.108899 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.108899 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -1.406109 ], [ 14.765625, -1.406109 ], [ 14.765625, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.811371 ], [ 13.359375, -2.811371 ], [ 13.359375, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 1.406109 ], [ 17.578125, 1.406109 ], [ 17.578125, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.811371 ], [ 12.656250, -2.811371 ], [ 12.656250, -2.108899 ], [ 13.359375, -2.108899 ], [ 13.359375, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, -2.108899 ], [ 14.765625, -2.108899 ], [ 14.765625, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 1.406109 ], [ 16.171875, 1.406109 ], [ 16.171875, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ], [ 18.281250, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 1.406109 ], [ 17.578125, 1.406109 ], [ 17.578125, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.811371 ], [ 12.656250, -2.811371 ], [ 12.656250, -2.108899 ], [ 13.359375, -2.108899 ], [ 13.359375, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, -2.108899 ], [ 14.765625, -2.108899 ], [ 14.765625, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 1.406109 ], [ 16.171875, 1.406109 ], [ 16.171875, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.531250, 0.703107 ], [ 29.531250, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.513421 ], [ 16.171875, -3.513421 ], [ 16.171875, -1.406109 ], [ 17.578125, -1.406109 ], [ 17.578125, 1.406109 ], [ 18.281250, 1.406109 ], [ 18.281250, 4.214943 ], [ 18.984375, 4.214943 ], [ 18.984375, 4.915833 ], [ 20.390625, 4.915833 ], [ 20.390625, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 4.214943 ], [ 30.234375, 4.214943 ], [ 30.234375, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 4.915833 ], [ 27.421875, 4.214943 ], [ 30.234375, 4.214943 ], [ 30.937500, 3.513421 ], [ 30.937500, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.531250, 0.703107 ], [ 29.531250, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.513421 ], [ 16.171875, -3.513421 ], [ 16.171875, -1.406109 ], [ 17.578125, -1.406109 ], [ 17.578125, 1.406109 ], [ 18.281250, 1.406109 ], [ 18.281250, 4.214943 ], [ 18.984375, 4.214943 ], [ 18.984375, 4.915833 ], [ 20.390625, 4.915833 ], [ 20.390625, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 4.915833 ], [ 27.421875, 4.915833 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.108899 ], [ 30.234375, -2.108899 ], [ 30.234375, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ], [ 30.234375, -2.108899 ], [ 30.234375, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 30.937500, -2.811371 ], [ 30.937500, -3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 30.937500, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 30.937500, -2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -3.513421 ], [ 30.937500, -3.513421 ], [ 30.937500, -2.811371 ], [ 30.234375, -2.811371 ], [ 30.234375, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -0.703107 ], [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -3.513421 ], [ 30.937500, -3.513421 ], [ 30.937500, -2.811371 ], [ 30.234375, -2.811371 ], [ 30.234375, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 130.781250, -2.811371 ], [ 130.781250, -3.513421 ] ] ], [ [ [ 139.921875, -2.811371 ], [ 141.328125, -2.811371 ], [ 141.328125, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 139.921875, -2.108899 ], [ 139.921875, -2.811371 ] ] ], [ [ [ 130.781250, -1.406109 ], [ 130.781250, -0.703107 ], [ 134.296875, -0.703107 ], [ 134.296875, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 133.593750, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.406109 ], [ 130.781250, -1.406109 ] ] ], [ [ [ 120.234375, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.513421 ], [ 120.937500, -3.513421 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, -1.406109 ] ] ], [ [ [ 118.828125, 0.703107 ], [ 118.125000, 0.703107 ], [ 118.125000, 0.000000 ], [ 117.421875, 0.000000 ], [ 117.421875, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -2.811371 ], [ 110.390625, -2.811371 ], [ 110.390625, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 1.406109 ], [ 109.687500, 1.406109 ], [ 109.687500, 0.703107 ], [ 112.500000, 0.703107 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 2.108899 ], [ 115.312500, 3.513421 ], [ 116.015625, 3.513421 ], [ 116.015625, 4.214943 ], [ 118.125000, 4.214943 ], [ 118.125000, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 118.125000, 2.811371 ], [ 118.125000, 1.406109 ], [ 118.828125, 1.406109 ], [ 118.828125, 0.703107 ] ] ], [ [ [ 96.328125, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 3.513421 ], [ 99.843750, 3.513421 ], [ 99.843750, 2.811371 ], [ 100.546875, 2.811371 ], [ 100.546875, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -1.406109 ], [ 104.062500, -1.406109 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.811371 ], [ 106.171875, -2.811371 ], [ 106.171875, -3.513421 ], [ 101.250000, -3.513421 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, -0.703107 ], [ 99.140625, -0.703107 ], [ 99.140625, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 96.328125, 3.513421 ], [ 96.328125, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 5.615986 ], [ 96.328125, 5.615986 ], [ 96.328125, 4.915833 ] ] ], [ [ [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.000000 ], [ 127.265625, 0.000000 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ] ] ], [ [ [ 124.453125, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, 0.703107 ], [ 124.453125, 0.703107 ], [ 124.453125, 0.000000 ] ] ], [ [ [ 120.234375, 0.703107 ], [ 120.937500, 0.703107 ], [ 120.937500, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, 0.703107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 134.296875, -0.703107 ], [ 134.296875, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 133.593750, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -0.703107 ], [ 134.296875, -0.703107 ] ] ], [ [ [ 120.234375, 0.000000 ], [ 120.234375, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.513421 ], [ 120.937500, -3.513421 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, 0.000000 ], [ 120.234375, 0.000000 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 118.125000, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 118.125000, 2.811371 ], [ 118.125000, 1.406109 ], [ 118.828125, 1.406109 ], [ 118.828125, 0.703107 ], [ 118.125000, 0.703107 ], [ 118.125000, 0.000000 ], [ 117.421875, 0.000000 ], [ 117.421875, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -2.811371 ], [ 110.390625, -2.811371 ], [ 110.390625, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 1.406109 ], [ 109.687500, 1.406109 ], [ 109.687500, 0.703107 ], [ 112.500000, 0.703107 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 2.108899 ], [ 115.312500, 3.513421 ], [ 116.015625, 3.513421 ], [ 116.015625, 4.214943 ], [ 118.125000, 4.214943 ] ] ], [ [ [ 96.328125, 5.615986 ], [ 96.328125, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 3.513421 ], [ 99.843750, 3.513421 ], [ 99.843750, 2.811371 ], [ 100.546875, 2.811371 ], [ 100.546875, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -1.406109 ], [ 104.062500, -1.406109 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.811371 ], [ 106.171875, -2.811371 ], [ 106.171875, -3.513421 ], [ 101.250000, -3.513421 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, -0.703107 ], [ 99.140625, -0.703107 ], [ 99.140625, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 96.328125, 3.513421 ], [ 96.328125, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 5.615986 ], [ 96.328125, 5.615986 ] ] ], [ [ [ 138.515625, -2.108899 ], [ 139.921875, -2.108899 ], [ 139.921875, -2.811371 ], [ 141.328125, -2.811371 ], [ 141.328125, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ] ] ], [ [ [ 124.453125, 0.703107 ], [ 124.453125, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, 0.703107 ], [ 124.453125, 0.703107 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.000000 ], [ 127.265625, 0.000000 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 120.937500, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, 0.703107 ], [ 120.937500, 0.703107 ], [ 120.937500, 0.000000 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875000, -3.513421 ], [ 151.171875, -3.513421 ], [ 151.171875, -2.811371 ], [ 151.875000, -2.811371 ], [ 151.875000, -3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875000, -2.811371 ], [ 151.875000, -3.513421 ], [ 151.171875, -3.513421 ], [ 151.171875, -2.811371 ], [ 151.875000, -2.811371 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.453125, -84.088878 ], [ -169.101562, -84.088878 ], [ -169.101562, -84.160849 ], [ -168.750000, -84.160849 ], [ -168.750000, -84.231947 ], [ -168.398438, -84.231947 ], [ -168.398438, -84.302183 ], [ -168.046875, -84.302183 ], [ -168.046875, -84.371566 ], [ -167.695312, -84.371566 ], [ -167.695312, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.541361 ], [ -166.992188, -84.541361 ], [ -166.992188, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.706049 ], [ -165.585938, -84.706049 ], [ -165.585938, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.770528 ], [ -164.882812, -84.770528 ], [ -164.882812, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.834225 ], [ -164.179688, -84.834225 ], [ -164.179688, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.928321 ], [ -163.476562, -84.928321 ], [ -163.476562, -84.990100 ], [ -163.125000, -84.990100 ], [ -163.125000, -85.020708 ], [ -162.773438, -85.020708 ], [ -162.773438, -85.081364 ], [ -162.421875, -85.081364 ], [ -162.421875, -85.141284 ], [ -162.070312, -85.141284 ], [ -162.070312, -85.170970 ], [ -161.367188, -85.170970 ], [ -161.367188, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.640777 ], [ -179.648438, -84.640777 ], [ -179.648438, -84.440107 ], [ -179.296875, -84.440107 ], [ -179.296875, -84.231947 ], [ -178.945312, -84.231947 ], [ -178.945312, -84.160849 ], [ -178.593750, -84.160849 ], [ -178.593750, -84.231947 ], [ -178.242188, -84.231947 ], [ -178.242188, -84.302183 ], [ -177.890625, -84.302183 ], [ -177.890625, -84.371566 ], [ -177.539062, -84.371566 ], [ -177.539062, -84.440107 ], [ -177.187500, -84.440107 ], [ -177.187500, -84.371566 ], [ -176.835938, -84.371566 ], [ -176.835938, -84.267172 ], [ -176.484375, -84.267172 ], [ -176.484375, -84.160849 ], [ -176.132812, -84.160849 ], [ -176.132812, -84.124973 ], [ -175.781250, -84.124973 ], [ -175.781250, -84.196507 ], [ -175.429688, -84.196507 ], [ -175.429688, -84.302183 ], [ -175.078125, -84.302183 ], [ -175.078125, -84.405941 ], [ -174.726562, -84.405941 ], [ -174.726562, -84.507816 ], [ -174.023438, -84.507816 ], [ -174.023438, -84.405941 ], [ -173.671875, -84.405941 ], [ -173.671875, -84.302183 ], [ -173.320312, -84.302183 ], [ -173.320312, -84.196507 ], [ -172.968750, -84.196507 ], [ -172.968750, -84.052561 ], [ -172.617188, -84.052561 ], [ -172.617188, -84.016022 ], [ -171.914062, -84.016022 ], [ -171.914062, -83.979259 ], [ -171.210938, -83.979259 ], [ -171.210938, -83.942272 ], [ -170.507812, -83.942272 ], [ -170.507812, -83.905058 ], [ -169.804688, -83.905058 ], [ -169.804688, -83.942272 ], [ -169.453125, -83.942272 ], [ -169.453125, -84.088878 ] ] ], [ [ [ -153.632812, -85.200475 ], [ -155.742188, -85.200475 ], [ -155.742188, -85.170970 ], [ -155.390625, -85.170970 ], [ -155.390625, -85.141284 ], [ -154.335938, -85.141284 ], [ -154.335938, -85.170970 ], [ -153.632812, -85.170970 ], [ -153.632812, -85.200475 ] ] ], [ [ [ -144.140625, -85.170970 ], [ -144.140625, -85.141284 ], [ -143.789062, -85.141284 ], [ -143.789062, -85.111416 ], [ -143.437500, -85.111416 ], [ -143.437500, -85.081364 ], [ -143.085938, -85.081364 ], [ -143.085938, -84.834225 ], [ -142.734375, -84.834225 ], [ -142.734375, -84.574702 ], [ -145.195312, -84.574702 ], [ -145.195312, -84.541361 ], [ -147.304688, -84.541361 ], [ -147.304688, -84.507816 ], [ -147.656250, -84.507816 ], [ -147.656250, -84.474065 ], [ -148.359375, -84.474065 ], [ -148.359375, -84.440107 ], [ -148.710938, -84.440107 ], [ -148.710938, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.371566 ], [ -149.765625, -84.371566 ], [ -149.765625, -84.336980 ], [ -150.117188, -84.336980 ], [ -150.117188, -84.231947 ], [ -150.468750, -84.231947 ], [ -150.468750, -84.016022 ], [ -150.820312, -84.016022 ], [ -150.820312, -83.905058 ], [ -151.171875, -83.905058 ], [ -151.171875, -83.867616 ], [ -151.875000, -83.867616 ], [ -151.875000, -83.829945 ], [ -152.226562, -83.829945 ], [ -152.226562, -83.792044 ], [ -152.578125, -83.792044 ], [ -152.578125, -83.753911 ], [ -153.281250, -83.753911 ], [ -153.281250, -83.715544 ], [ -153.632812, -83.715544 ], [ -153.632812, -83.480366 ], [ -153.281250, -83.480366 ], [ -153.281250, -83.026219 ], [ -152.929688, -83.026219 ], [ -152.929688, -82.631333 ], [ -152.578125, -82.631333 ], [ -152.578125, -82.261699 ], [ -152.929688, -82.261699 ], [ -152.929688, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.972431 ], [ -153.632812, -81.972431 ], [ -153.632812, -81.923186 ], [ -153.984375, -81.923186 ], [ -153.984375, -81.873641 ], [ -154.335938, -81.873641 ], [ -154.335938, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.723188 ], [ -155.039062, -81.723188 ], [ -155.039062, -81.518272 ], [ -155.390625, -81.518272 ], [ -155.390625, -81.413933 ], [ -155.742188, -81.413933 ], [ -155.742188, -81.308321 ], [ -156.093750, -81.308321 ], [ -156.093750, -81.255032 ], [ -156.445312, -81.255032 ], [ -156.445312, -81.147481 ], [ -156.796875, -81.147481 ], [ -156.796875, -81.093214 ], [ -155.742188, -81.093214 ], [ -155.742188, -81.147481 ], [ -153.632812, -81.147481 ], [ -153.632812, -81.093214 ], [ -152.929688, -81.093214 ], [ -152.929688, -81.038617 ], [ -151.875000, -81.038617 ], [ -151.875000, -81.147481 ], [ -151.523438, -81.147481 ], [ -151.523438, -81.255032 ], [ -151.171875, -81.255032 ], [ -151.171875, -81.361287 ], [ -150.468750, -81.361287 ], [ -150.468750, -81.308321 ], [ -150.117188, -81.308321 ], [ -150.117188, -81.255032 ], [ -149.765625, -81.255032 ], [ -149.765625, -81.201420 ], [ -149.414062, -81.201420 ], [ -149.414062, -81.147481 ], [ -149.062500, -81.147481 ], [ -149.062500, -81.093214 ], [ -148.710938, -81.093214 ], [ -148.710938, -81.038617 ], [ -148.359375, -81.038617 ], [ -148.359375, -80.928426 ], [ -148.007812, -80.928426 ], [ -148.007812, -80.816891 ], [ -147.656250, -80.816891 ], [ -147.656250, -80.703997 ], [ -147.304688, -80.703997 ], [ -147.304688, -80.647035 ], [ -146.953125, -80.647035 ], [ -146.953125, -80.532071 ], [ -146.601562, -80.532071 ], [ -146.601562, -80.415707 ], [ -146.250000, -80.415707 ], [ -146.250000, -80.178713 ], [ -146.601562, -80.178713 ], [ -146.601562, -79.935918 ], [ -146.953125, -79.935918 ], [ -146.953125, -79.874297 ], [ -147.304688, -79.874297 ], [ -147.304688, -79.749932 ], [ -147.656250, -79.749932 ], [ -147.656250, -79.687184 ], [ -148.007812, -79.687184 ], [ -148.007812, -79.624056 ], [ -148.359375, -79.624056 ], [ -148.359375, -79.560546 ], [ -148.710938, -79.560546 ], [ -148.710938, -79.496652 ], [ -149.062500, -79.496652 ], [ -149.062500, -79.432371 ], [ -149.414062, -79.432371 ], [ -149.414062, -79.367701 ], [ -150.820312, -79.367701 ], [ -150.820312, -79.302640 ], [ -152.226562, -79.302640 ], [ -152.226562, -79.237185 ], [ -152.929688, -79.237185 ], [ -152.929688, -79.171335 ], [ -153.984375, -79.171335 ], [ -153.984375, -79.105086 ], [ -155.039062, -79.105086 ], [ -155.039062, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.971386 ], [ -155.742188, -78.971386 ], [ -155.742188, -78.836065 ], [ -156.093750, -78.836065 ], [ -156.093750, -78.699106 ], [ -156.445312, -78.699106 ], [ -156.445312, -78.560488 ], [ -156.796875, -78.560488 ], [ -156.796875, -78.420193 ], [ -157.148438, -78.420193 ], [ -157.148438, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.206563 ], [ -157.851562, -78.206563 ], [ -157.851562, -78.134493 ], [ -158.203125, -78.134493 ], [ -158.203125, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.078784 ], [ -157.500000, -77.078784 ], [ -157.500000, -77.235074 ], [ -157.148438, -77.235074 ], [ -157.148438, -77.312520 ], [ -156.093750, -77.312520 ], [ -156.093750, -77.235074 ], [ -154.687500, -77.235074 ], [ -154.687500, -77.157163 ], [ -153.984375, -77.157163 ], [ -153.984375, -77.078784 ], [ -153.632812, -77.078784 ], [ -153.632812, -77.235074 ], [ -153.281250, -77.235074 ], [ -153.281250, -77.389504 ], [ -152.929688, -77.389504 ], [ -152.929688, -77.466028 ], [ -151.875000, -77.466028 ], [ -151.875000, -77.389504 ], [ -150.820312, -77.389504 ], [ -150.820312, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.235074 ], [ -150.117188, -77.235074 ], [ -150.117188, -77.157163 ], [ -149.765625, -77.157163 ], [ -149.765625, -77.078784 ], [ -149.062500, -77.078784 ], [ -149.062500, -76.999935 ], [ -148.710938, -76.999935 ], [ -148.710938, -76.920614 ], [ -148.359375, -76.920614 ], [ -148.359375, -76.760541 ], [ -148.007812, -76.760541 ], [ -148.007812, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.598545 ], [ -146.601562, -76.598545 ], [ -146.601562, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.930885 ], [ -146.601562, -75.930885 ], [ -146.601562, -75.584937 ], [ -146.250000, -75.584937 ], [ -146.250000, -75.408854 ], [ -145.546875, -75.408854 ], [ -145.546875, -75.320025 ], [ -144.843750, -75.320025 ], [ -144.843750, -75.408854 ], [ -144.492188, -75.408854 ], [ -144.492188, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.320025 ], [ -142.382812, -75.320025 ], [ -142.382812, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.050354 ], [ -139.218750, -75.050354 ], [ -139.218750, -74.959392 ], [ -138.164062, -74.959392 ], [ -138.164062, -74.867889 ], [ -137.812500, -74.867889 ], [ -137.812500, -85.200475 ], [ -144.492188, -85.200475 ], [ -144.492188, -85.170970 ], [ -144.140625, -85.170970 ] ] ], [ [ [ -161.367188, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.699106 ], [ -160.312500, -78.699106 ], [ -160.312500, -78.836065 ], [ -159.960938, -78.836065 ], [ -159.960938, -78.971386 ], [ -159.609375, -78.971386 ], [ -159.609375, -79.302640 ], [ -159.257812, -79.302640 ], [ -159.257812, -79.496652 ], [ -159.609375, -79.496652 ], [ -159.609375, -79.560546 ], [ -160.312500, -79.560546 ], [ -160.312500, -79.624056 ], [ -161.367188, -79.624056 ], [ -161.367188, -79.560546 ], [ -161.718750, -79.560546 ], [ -161.718750, -79.432371 ], [ -162.070312, -79.432371 ], [ -162.070312, -79.367701 ], [ -162.421875, -79.367701 ], [ -162.421875, -79.237185 ], [ -162.773438, -79.237185 ], [ -162.773438, -79.038437 ], [ -163.125000, -79.038437 ], [ -163.125000, -78.836065 ], [ -163.476562, -78.836065 ], [ -163.476562, -78.699106 ], [ -163.828125, -78.699106 ], [ -163.828125, -78.560488 ], [ -163.476562, -78.560488 ], [ -163.476562, -78.349411 ], [ -163.125000, -78.349411 ], [ -163.125000, -78.206563 ], [ -162.773438, -78.206563 ], [ -162.773438, -78.278201 ], [ -162.070312, -78.278201 ], [ -162.070312, -78.349411 ], [ -161.367188, -78.349411 ], [ -161.367188, -78.420193 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.804688, -83.905058 ], [ -169.804688, -83.942272 ], [ -169.453125, -83.942272 ], [ -169.453125, -84.088878 ], [ -169.101562, -84.088878 ], [ -169.101562, -84.160849 ], [ -168.750000, -84.160849 ], [ -168.750000, -84.231947 ], [ -168.398438, -84.231947 ], [ -168.398438, -84.302183 ], [ -168.046875, -84.302183 ], [ -168.046875, -84.371566 ], [ -167.695312, -84.371566 ], [ -167.695312, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.541361 ], [ -166.992188, -84.541361 ], [ -166.992188, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.706049 ], [ -165.585938, -84.706049 ], [ -165.585938, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.770528 ], [ -164.882812, -84.770528 ], [ -164.882812, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.834225 ], [ -164.179688, -84.834225 ], [ -164.179688, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.928321 ], [ -163.476562, -84.928321 ], [ -163.476562, -84.990100 ], [ -163.125000, -84.990100 ], [ -163.125000, -85.020708 ], [ -162.773438, -85.020708 ], [ -162.773438, -85.081364 ], [ -162.421875, -85.081364 ], [ -162.421875, -85.141284 ], [ -162.070312, -85.141284 ], [ -162.070312, -85.170970 ], [ -161.367188, -85.170970 ], [ -161.367188, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.640777 ], [ -179.648438, -84.640777 ], [ -179.648438, -84.440107 ], [ -179.296875, -84.440107 ], [ -179.296875, -84.231947 ], [ -178.945312, -84.231947 ], [ -178.945312, -84.160849 ], [ -178.593750, -84.160849 ], [ -178.593750, -84.231947 ], [ -178.242188, -84.231947 ], [ -178.242188, -84.302183 ], [ -177.890625, -84.302183 ], [ -177.890625, -84.371566 ], [ -177.539062, -84.371566 ], [ -177.539062, -84.440107 ], [ -177.187500, -84.440107 ], [ -177.187500, -84.371566 ], [ -176.835938, -84.371566 ], [ -176.835938, -84.267172 ], [ -176.484375, -84.267172 ], [ -176.484375, -84.160849 ], [ -176.132812, -84.160849 ], [ -176.132812, -84.124973 ], [ -175.781250, -84.124973 ], [ -175.781250, -84.196507 ], [ -175.429688, -84.196507 ], [ -175.429688, -84.302183 ], [ -175.078125, -84.302183 ], [ -175.078125, -84.405941 ], [ -174.726562, -84.405941 ], [ -174.726562, -84.507816 ], [ -174.023438, -84.507816 ], [ -174.023438, -84.405941 ], [ -173.671875, -84.405941 ], [ -173.671875, -84.302183 ], [ -173.320312, -84.302183 ], [ -173.320312, -84.196507 ], [ -172.968750, -84.196507 ], [ -172.968750, -84.052561 ], [ -172.617188, -84.052561 ], [ -172.617188, -84.016022 ], [ -171.914062, -84.016022 ], [ -171.914062, -83.979259 ], [ -171.210938, -83.979259 ], [ -171.210938, -83.942272 ], [ -170.507812, -83.942272 ], [ -170.507812, -83.905058 ], [ -169.804688, -83.905058 ] ] ], [ [ [ -154.335938, -85.170970 ], [ -153.632812, -85.170970 ], [ -153.632812, -85.200475 ], [ -155.742188, -85.200475 ], [ -155.742188, -85.170970 ], [ -155.390625, -85.170970 ], [ -155.390625, -85.141284 ], [ -154.335938, -85.141284 ], [ -154.335938, -85.170970 ] ] ], [ [ [ -137.812500, -85.200475 ], [ -144.492188, -85.200475 ], [ -144.492188, -85.170970 ], [ -144.140625, -85.170970 ], [ -144.140625, -85.141284 ], [ -143.789062, -85.141284 ], [ -143.789062, -85.111416 ], [ -143.437500, -85.111416 ], [ -143.437500, -85.081364 ], [ -143.085938, -85.081364 ], [ -143.085938, -84.834225 ], [ -142.734375, -84.834225 ], [ -142.734375, -84.574702 ], [ -145.195312, -84.574702 ], [ -145.195312, -84.541361 ], [ -147.304688, -84.541361 ], [ -147.304688, -84.507816 ], [ -147.656250, -84.507816 ], [ -147.656250, -84.474065 ], [ -148.359375, -84.474065 ], [ -148.359375, -84.440107 ], [ -148.710938, -84.440107 ], [ -148.710938, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.371566 ], [ -149.765625, -84.371566 ], [ -149.765625, -84.336980 ], [ -150.117188, -84.336980 ], [ -150.117188, -84.231947 ], [ -150.468750, -84.231947 ], [ -150.468750, -84.016022 ], [ -150.820312, -84.016022 ], [ -150.820312, -83.905058 ], [ -151.171875, -83.905058 ], [ -151.171875, -83.867616 ], [ -151.875000, -83.867616 ], [ -151.875000, -83.829945 ], [ -152.226562, -83.829945 ], [ -152.226562, -83.792044 ], [ -152.578125, -83.792044 ], [ -152.578125, -83.753911 ], [ -153.281250, -83.753911 ], [ -153.281250, -83.715544 ], [ -153.632812, -83.715544 ], [ -153.632812, -83.480366 ], [ -153.281250, -83.480366 ], [ -153.281250, -83.026219 ], [ -152.929688, -83.026219 ], [ -152.929688, -82.631333 ], [ -152.578125, -82.631333 ], [ -152.578125, -82.261699 ], [ -152.929688, -82.261699 ], [ -152.929688, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.972431 ], [ -153.632812, -81.972431 ], [ -153.632812, -81.923186 ], [ -153.984375, -81.923186 ], [ -153.984375, -81.873641 ], [ -154.335938, -81.873641 ], [ -154.335938, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.723188 ], [ -155.039062, -81.723188 ], [ -155.039062, -81.518272 ], [ -155.390625, -81.518272 ], [ -155.390625, -81.413933 ], [ -155.742188, -81.413933 ], [ -155.742188, -81.308321 ], [ -156.093750, -81.308321 ], [ -156.093750, -81.255032 ], [ -156.445312, -81.255032 ], [ -156.445312, -81.147481 ], [ -156.796875, -81.147481 ], [ -156.796875, -81.093214 ], [ -155.742188, -81.093214 ], [ -155.742188, -81.147481 ], [ -153.632812, -81.147481 ], [ -153.632812, -81.093214 ], [ -152.929688, -81.093214 ], [ -152.929688, -81.038617 ], [ -151.875000, -81.038617 ], [ -151.875000, -81.147481 ], [ -151.523438, -81.147481 ], [ -151.523438, -81.255032 ], [ -151.171875, -81.255032 ], [ -151.171875, -81.361287 ], [ -150.468750, -81.361287 ], [ -150.468750, -81.308321 ], [ -150.117188, -81.308321 ], [ -150.117188, -81.255032 ], [ -149.765625, -81.255032 ], [ -149.765625, -81.201420 ], [ -149.414062, -81.201420 ], [ -149.414062, -81.147481 ], [ -149.062500, -81.147481 ], [ -149.062500, -81.093214 ], [ -148.710938, -81.093214 ], [ -148.710938, -81.038617 ], [ -148.359375, -81.038617 ], [ -148.359375, -80.928426 ], [ -148.007812, -80.928426 ], [ -148.007812, -80.816891 ], [ -147.656250, -80.816891 ], [ -147.656250, -80.703997 ], [ -147.304688, -80.703997 ], [ -147.304688, -80.647035 ], [ -146.953125, -80.647035 ], [ -146.953125, -80.532071 ], [ -146.601562, -80.532071 ], [ -146.601562, -80.415707 ], [ -146.250000, -80.415707 ], [ -146.250000, -80.178713 ], [ -146.601562, -80.178713 ], [ -146.601562, -79.935918 ], [ -146.953125, -79.935918 ], [ -146.953125, -79.874297 ], [ -147.304688, -79.874297 ], [ -147.304688, -79.749932 ], [ -147.656250, -79.749932 ], [ -147.656250, -79.687184 ], [ -148.007812, -79.687184 ], [ -148.007812, -79.624056 ], [ -148.359375, -79.624056 ], [ -148.359375, -79.560546 ], [ -148.710938, -79.560546 ], [ -148.710938, -79.496652 ], [ -149.062500, -79.496652 ], [ -149.062500, -79.432371 ], [ -149.414062, -79.432371 ], [ -149.414062, -79.367701 ], [ -150.820312, -79.367701 ], [ -150.820312, -79.302640 ], [ -152.226562, -79.302640 ], [ -152.226562, -79.237185 ], [ -152.929688, -79.237185 ], [ -152.929688, -79.171335 ], [ -153.984375, -79.171335 ], [ -153.984375, -79.105086 ], [ -155.039062, -79.105086 ], [ -155.039062, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.971386 ], [ -155.742188, -78.971386 ], [ -155.742188, -78.836065 ], [ -156.093750, -78.836065 ], [ -156.093750, -78.699106 ], [ -156.445312, -78.699106 ], [ -156.445312, -78.560488 ], [ -156.796875, -78.560488 ], [ -156.796875, -78.420193 ], [ -157.148438, -78.420193 ], [ -157.148438, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.206563 ], [ -157.851562, -78.206563 ], [ -157.851562, -78.134493 ], [ -158.203125, -78.134493 ], [ -158.203125, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.078784 ], [ -157.500000, -77.078784 ], [ -157.500000, -77.235074 ], [ -157.148438, -77.235074 ], [ -157.148438, -77.312520 ], [ -156.093750, -77.312520 ], [ -156.093750, -77.235074 ], [ -154.687500, -77.235074 ], [ -154.687500, -77.157163 ], [ -153.984375, -77.157163 ], [ -153.984375, -77.078784 ], [ -153.632812, -77.078784 ], [ -153.632812, -77.235074 ], [ -153.281250, -77.235074 ], [ -153.281250, -77.389504 ], [ -152.929688, -77.389504 ], [ -152.929688, -77.466028 ], [ -151.875000, -77.466028 ], [ -151.875000, -77.389504 ], [ -150.820312, -77.389504 ], [ -150.820312, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.235074 ], [ -150.117188, -77.235074 ], [ -150.117188, -77.157163 ], [ -149.765625, -77.157163 ], [ -149.765625, -77.078784 ], [ -149.062500, -77.078784 ], [ -149.062500, -76.999935 ], [ -148.710938, -76.999935 ], [ -148.710938, -76.920614 ], [ -148.359375, -76.920614 ], [ -148.359375, -76.760541 ], [ -148.007812, -76.760541 ], [ -148.007812, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.598545 ], [ -146.601562, -76.598545 ], [ -146.601562, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.930885 ], [ -146.601562, -75.930885 ], [ -146.601562, -75.584937 ], [ -146.250000, -75.584937 ], [ -146.250000, -75.408854 ], [ -145.546875, -75.408854 ], [ -145.546875, -75.320025 ], [ -144.843750, -75.320025 ], [ -144.843750, -75.408854 ], [ -144.492188, -75.408854 ], [ -144.492188, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.320025 ], [ -142.382812, -75.320025 ], [ -142.382812, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.050354 ], [ -139.218750, -75.050354 ], [ -139.218750, -74.959392 ], [ -138.164062, -74.959392 ], [ -138.164062, -74.867889 ], [ -137.812500, -74.867889 ], [ -137.812500, -85.200475 ] ] ], [ [ [ -162.773438, -78.206563 ], [ -162.773438, -78.278201 ], [ -162.070312, -78.278201 ], [ -162.070312, -78.349411 ], [ -161.367188, -78.349411 ], [ -161.367188, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.699106 ], [ -160.312500, -78.699106 ], [ -160.312500, -78.836065 ], [ -159.960938, -78.836065 ], [ -159.960938, -78.971386 ], [ -159.609375, -78.971386 ], [ -159.609375, -79.302640 ], [ -159.257812, -79.302640 ], [ -159.257812, -79.496652 ], [ -159.609375, -79.496652 ], [ -159.609375, -79.560546 ], [ -160.312500, -79.560546 ], [ -160.312500, -79.624056 ], [ -161.367188, -79.624056 ], [ -161.367188, -79.560546 ], [ -161.718750, -79.560546 ], [ -161.718750, -79.432371 ], [ -162.070312, -79.432371 ], [ -162.070312, -79.367701 ], [ -162.421875, -79.367701 ], [ -162.421875, -79.237185 ], [ -162.773438, -79.237185 ], [ -162.773438, -79.038437 ], [ -163.125000, -79.038437 ], [ -163.125000, -78.836065 ], [ -163.476562, -78.836065 ], [ -163.476562, -78.699106 ], [ -163.828125, -78.699106 ], [ -163.828125, -78.560488 ], [ -163.476562, -78.560488 ], [ -163.476562, -78.349411 ], [ -163.125000, -78.349411 ], [ -163.125000, -78.206563 ], [ -162.773438, -78.206563 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -99.492188, -72.919635 ], [ -99.140625, -72.919635 ], [ -99.140625, -73.022592 ], [ -98.789062, -73.022592 ], [ -98.789062, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.226700 ], [ -98.085938, -73.226700 ], [ -98.085938, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.528399 ], [ -97.382812, -73.528399 ], [ -97.382812, -73.627789 ], [ -95.273438, -73.627789 ], [ -95.273438, -73.528399 ], [ -94.218750, -73.528399 ], [ -94.218750, -73.428424 ], [ -93.515625, -73.428424 ], [ -93.515625, -73.327858 ], [ -93.164062, -73.327858 ], [ -93.164062, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.327858 ], [ -91.757812, -73.327858 ], [ -91.757812, -73.428424 ], [ -90.351562, -73.428424 ], [ -90.351562, -73.327858 ], [ -90.000000, -73.327858 ], [ -90.000000, -73.226700 ], [ -89.648438, -73.226700 ], [ -89.648438, -72.816074 ], [ -89.296875, -72.816074 ], [ -89.296875, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -85.200475 ], [ -137.812500, -85.200475 ], [ -137.812500, -74.867889 ], [ -137.460938, -74.867889 ], [ -137.460938, -74.775843 ], [ -137.109375, -74.775843 ], [ -137.109375, -74.683250 ], [ -136.757812, -74.683250 ], [ -136.757812, -74.590108 ], [ -136.406250, -74.590108 ], [ -136.406250, -74.496413 ], [ -136.054688, -74.496413 ], [ -136.054688, -74.402163 ], [ -135.351562, -74.402163 ], [ -135.351562, -74.307353 ], [ -135.000000, -74.307353 ], [ -135.000000, -74.402163 ], [ -132.539062, -74.402163 ], [ -132.539062, -74.307353 ], [ -132.187500, -74.307353 ], [ -132.187500, -74.402163 ], [ -131.484375, -74.402163 ], [ -131.484375, -74.496413 ], [ -129.023438, -74.496413 ], [ -129.023438, -74.402163 ], [ -128.320312, -74.402163 ], [ -128.320312, -74.307353 ], [ -127.968750, -74.307353 ], [ -127.968750, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.496413 ], [ -119.179688, -74.496413 ], [ -119.179688, -74.307353 ], [ -118.828125, -74.307353 ], [ -118.828125, -74.211983 ], [ -118.125000, -74.211983 ], [ -118.125000, -74.116047 ], [ -116.718750, -74.116047 ], [ -116.718750, -74.211983 ], [ -115.664062, -74.211983 ], [ -115.664062, -74.116047 ], [ -114.960938, -74.116047 ], [ -114.960938, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.922469 ], [ -114.257812, -73.922469 ], [ -114.257812, -73.824820 ], [ -113.554688, -73.824820 ], [ -113.554688, -74.019543 ], [ -113.203125, -74.019543 ], [ -113.203125, -74.211983 ], [ -112.851562, -74.211983 ], [ -112.851562, -74.496413 ], [ -112.500000, -74.496413 ], [ -112.500000, -74.683250 ], [ -111.796875, -74.683250 ], [ -111.796875, -74.590108 ], [ -111.445312, -74.590108 ], [ -111.445312, -74.496413 ], [ -110.742188, -74.496413 ], [ -110.742188, -74.590108 ], [ -110.390625, -74.590108 ], [ -110.390625, -74.775843 ], [ -109.687500, -74.775843 ], [ -109.687500, -74.867889 ], [ -108.632812, -74.867889 ], [ -108.632812, -74.959392 ], [ -108.281250, -74.959392 ], [ -108.281250, -75.050354 ], [ -107.929688, -75.050354 ], [ -107.929688, -75.140778 ], [ -105.468750, -75.140778 ], [ -105.468750, -75.050354 ], [ -104.765625, -75.050354 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.050354 ], [ -102.656250, -75.050354 ], [ -102.656250, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.230667 ], [ -101.250000, -75.230667 ], [ -101.250000, -75.320025 ], [ -100.546875, -75.320025 ], [ -100.546875, -75.140778 ], [ -100.195312, -75.140778 ], [ -100.195312, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.590108 ], [ -100.898438, -74.590108 ], [ -100.898438, -74.402163 ], [ -101.250000, -74.402163 ], [ -101.250000, -74.211983 ], [ -102.304688, -74.211983 ], [ -102.304688, -74.116047 ], [ -102.656250, -74.116047 ], [ -102.656250, -73.922469 ], [ -103.007812, -73.922469 ], [ -103.007812, -73.528399 ], [ -103.359375, -73.528399 ], [ -103.359375, -73.022592 ], [ -103.710938, -73.022592 ], [ -103.710938, -72.711903 ], [ -102.656250, -72.711903 ], [ -102.656250, -72.816074 ], [ -100.546875, -72.816074 ], [ -100.546875, -72.711903 ], [ -100.195312, -72.711903 ], [ -100.195312, -72.816074 ], [ -99.492188, -72.816074 ], [ -99.492188, -72.919635 ] ] ], [ [ [ -120.937500, -73.627789 ], [ -119.179688, -73.627789 ], [ -119.179688, -73.528399 ], [ -118.828125, -73.528399 ], [ -118.828125, -73.726595 ], [ -119.179688, -73.726595 ], [ -119.179688, -73.922469 ], [ -119.531250, -73.922469 ], [ -119.531250, -74.019543 ], [ -119.882812, -74.019543 ], [ -119.882812, -74.116047 ], [ -121.289062, -74.116047 ], [ -121.289062, -74.019543 ], [ -121.992188, -74.019543 ], [ -121.992188, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.726595 ], [ -122.695312, -73.726595 ], [ -122.695312, -73.528399 ], [ -122.343750, -73.528399 ], [ -122.343750, -73.428424 ], [ -121.640625, -73.428424 ], [ -121.640625, -73.528399 ], [ -120.937500, -73.528399 ], [ -120.937500, -73.627789 ] ] ], [ [ [ -125.859375, -73.528399 ], [ -125.507812, -73.528399 ], [ -125.507812, -73.627789 ], [ -125.156250, -73.627789 ], [ -125.156250, -73.726595 ], [ -124.453125, -73.726595 ], [ -124.453125, -73.824820 ], [ -125.507812, -73.824820 ], [ -125.507812, -73.726595 ], [ -126.210938, -73.726595 ], [ -126.210938, -73.627789 ], [ -126.914062, -73.627789 ], [ -126.914062, -73.528399 ], [ -127.265625, -73.528399 ], [ -127.265625, -73.428424 ], [ -126.914062, -73.428424 ], [ -126.914062, -73.327858 ], [ -126.210938, -73.327858 ], [ -126.210938, -73.428424 ], [ -125.859375, -73.428424 ], [ -125.859375, -73.528399 ] ] ], [ [ [ -100.195312, -71.965388 ], [ -98.789062, -71.965388 ], [ -98.789062, -72.073911 ], [ -97.031250, -72.073911 ], [ -97.031250, -71.965388 ], [ -96.679688, -71.965388 ], [ -96.679688, -72.289067 ], [ -96.328125, -72.289067 ], [ -96.328125, -72.501722 ], [ -97.031250, -72.501722 ], [ -97.031250, -72.395706 ], [ -97.382812, -72.395706 ], [ -97.382812, -72.501722 ], [ -99.140625, -72.501722 ], [ -99.140625, -72.395706 ], [ -99.843750, -72.395706 ], [ -99.843750, -72.501722 ], [ -101.250000, -72.501722 ], [ -101.250000, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.073911 ], [ -102.304688, -72.073911 ], [ -102.304688, -71.856229 ], [ -101.601562, -71.856229 ], [ -101.601562, -71.746432 ], [ -101.250000, -71.746432 ], [ -101.250000, -71.856229 ], [ -100.195312, -71.856229 ], [ -100.195312, -71.965388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.945312, -72.711903 ], [ -88.945312, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -85.200475 ], [ -137.812500, -85.200475 ], [ -137.812500, -74.867889 ], [ -137.460938, -74.867889 ], [ -137.460938, -74.775843 ], [ -137.109375, -74.775843 ], [ -137.109375, -74.683250 ], [ -136.757812, -74.683250 ], [ -136.757812, -74.590108 ], [ -136.406250, -74.590108 ], [ -136.406250, -74.496413 ], [ -136.054688, -74.496413 ], [ -136.054688, -74.402163 ], [ -135.351562, -74.402163 ], [ -135.351562, -74.307353 ], [ -135.000000, -74.307353 ], [ -135.000000, -74.402163 ], [ -132.539062, -74.402163 ], [ -132.539062, -74.307353 ], [ -132.187500, -74.307353 ], [ -132.187500, -74.402163 ], [ -131.484375, -74.402163 ], [ -131.484375, -74.496413 ], [ -129.023438, -74.496413 ], [ -129.023438, -74.402163 ], [ -128.320312, -74.402163 ], [ -128.320312, -74.307353 ], [ -127.968750, -74.307353 ], [ -127.968750, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.496413 ], [ -119.179688, -74.496413 ], [ -119.179688, -74.307353 ], [ -118.828125, -74.307353 ], [ -118.828125, -74.211983 ], [ -118.125000, -74.211983 ], [ -118.125000, -74.116047 ], [ -116.718750, -74.116047 ], [ -116.718750, -74.211983 ], [ -115.664062, -74.211983 ], [ -115.664062, -74.116047 ], [ -114.960938, -74.116047 ], [ -114.960938, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.922469 ], [ -114.257812, -73.922469 ], [ -114.257812, -73.824820 ], [ -113.554688, -73.824820 ], [ -113.554688, -74.019543 ], [ -113.203125, -74.019543 ], [ -113.203125, -74.211983 ], [ -112.851562, -74.211983 ], [ -112.851562, -74.496413 ], [ -112.500000, -74.496413 ], [ -112.500000, -74.683250 ], [ -111.796875, -74.683250 ], [ -111.796875, -74.590108 ], [ -111.445312, -74.590108 ], [ -111.445312, -74.496413 ], [ -110.742188, -74.496413 ], [ -110.742188, -74.590108 ], [ -110.390625, -74.590108 ], [ -110.390625, -74.775843 ], [ -109.687500, -74.775843 ], [ -109.687500, -74.867889 ], [ -108.632812, -74.867889 ], [ -108.632812, -74.959392 ], [ -108.281250, -74.959392 ], [ -108.281250, -75.050354 ], [ -107.929688, -75.050354 ], [ -107.929688, -75.140778 ], [ -105.468750, -75.140778 ], [ -105.468750, -75.050354 ], [ -104.765625, -75.050354 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.050354 ], [ -102.656250, -75.050354 ], [ -102.656250, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.230667 ], [ -101.250000, -75.230667 ], [ -101.250000, -75.320025 ], [ -100.546875, -75.320025 ], [ -100.546875, -75.140778 ], [ -100.195312, -75.140778 ], [ -100.195312, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.590108 ], [ -100.898438, -74.590108 ], [ -100.898438, -74.402163 ], [ -101.250000, -74.402163 ], [ -101.250000, -74.211983 ], [ -102.304688, -74.211983 ], [ -102.304688, -74.116047 ], [ -102.656250, -74.116047 ], [ -102.656250, -73.922469 ], [ -103.007812, -73.922469 ], [ -103.007812, -73.528399 ], [ -103.359375, -73.528399 ], [ -103.359375, -73.022592 ], [ -103.710938, -73.022592 ], [ -103.710938, -72.711903 ], [ -102.656250, -72.711903 ], [ -102.656250, -72.816074 ], [ -100.546875, -72.816074 ], [ -100.546875, -72.711903 ], [ -100.195312, -72.711903 ], [ -100.195312, -72.816074 ], [ -99.492188, -72.816074 ], [ -99.492188, -72.919635 ], [ -99.140625, -72.919635 ], [ -99.140625, -73.022592 ], [ -98.789062, -73.022592 ], [ -98.789062, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.226700 ], [ -98.085938, -73.226700 ], [ -98.085938, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.528399 ], [ -97.382812, -73.528399 ], [ -97.382812, -73.627789 ], [ -95.273438, -73.627789 ], [ -95.273438, -73.528399 ], [ -94.218750, -73.528399 ], [ -94.218750, -73.428424 ], [ -93.515625, -73.428424 ], [ -93.515625, -73.327858 ], [ -93.164062, -73.327858 ], [ -93.164062, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.327858 ], [ -91.757812, -73.327858 ], [ -91.757812, -73.428424 ], [ -90.351562, -73.428424 ], [ -90.351562, -73.327858 ], [ -90.000000, -73.327858 ], [ -90.000000, -73.226700 ], [ -89.648438, -73.226700 ], [ -89.648438, -72.816074 ], [ -89.296875, -72.816074 ], [ -89.296875, -72.711903 ], [ -88.945312, -72.711903 ] ] ], [ [ [ -121.640625, -73.428424 ], [ -121.640625, -73.528399 ], [ -120.937500, -73.528399 ], [ -120.937500, -73.627789 ], [ -119.179688, -73.627789 ], [ -119.179688, -73.528399 ], [ -118.828125, -73.528399 ], [ -118.828125, -73.726595 ], [ -119.179688, -73.726595 ], [ -119.179688, -73.922469 ], [ -119.531250, -73.922469 ], [ -119.531250, -74.019543 ], [ -119.882812, -74.019543 ], [ -119.882812, -74.116047 ], [ -121.289062, -74.116047 ], [ -121.289062, -74.019543 ], [ -121.992188, -74.019543 ], [ -121.992188, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.726595 ], [ -122.695312, -73.726595 ], [ -122.695312, -73.528399 ], [ -122.343750, -73.528399 ], [ -122.343750, -73.428424 ], [ -121.640625, -73.428424 ] ] ], [ [ [ -126.210938, -73.327858 ], [ -126.210938, -73.428424 ], [ -125.859375, -73.428424 ], [ -125.859375, -73.528399 ], [ -125.507812, -73.528399 ], [ -125.507812, -73.627789 ], [ -125.156250, -73.627789 ], [ -125.156250, -73.726595 ], [ -124.453125, -73.726595 ], [ -124.453125, -73.824820 ], [ -125.507812, -73.824820 ], [ -125.507812, -73.726595 ], [ -126.210938, -73.726595 ], [ -126.210938, -73.627789 ], [ -126.914062, -73.627789 ], [ -126.914062, -73.528399 ], [ -127.265625, -73.528399 ], [ -127.265625, -73.428424 ], [ -126.914062, -73.428424 ], [ -126.914062, -73.327858 ], [ -126.210938, -73.327858 ] ] ], [ [ [ -101.250000, -71.746432 ], [ -101.250000, -71.856229 ], [ -100.195312, -71.856229 ], [ -100.195312, -71.965388 ], [ -98.789062, -71.965388 ], [ -98.789062, -72.073911 ], [ -97.031250, -72.073911 ], [ -97.031250, -71.965388 ], [ -96.679688, -71.965388 ], [ -96.679688, -72.289067 ], [ -96.328125, -72.289067 ], [ -96.328125, -72.501722 ], [ -97.031250, -72.501722 ], [ -97.031250, -72.395706 ], [ -97.382812, -72.395706 ], [ -97.382812, -72.501722 ], [ -99.140625, -72.501722 ], [ -99.140625, -72.395706 ], [ -99.843750, -72.395706 ], [ -99.843750, -72.501722 ], [ -101.250000, -72.501722 ], [ -101.250000, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.073911 ], [ -102.304688, -72.073911 ], [ -102.304688, -71.856229 ], [ -101.601562, -71.856229 ], [ -101.601562, -71.746432 ], [ -101.250000, -71.746432 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.648438, -16.299051 ], [ -180.000000, -16.299051 ], [ -180.000000, -15.961329 ], [ -179.648438, -15.961329 ], [ -179.648438, -16.299051 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.648438, -15.961329 ], [ -179.648438, -16.299051 ], [ -180.000000, -16.299051 ], [ -180.000000, -15.961329 ], [ -179.648438, -15.961329 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.648438, 56.944974 ], [ -88.945312, 56.944974 ], [ -88.945312, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -92.460938, 48.224673 ], [ -92.460938, 48.458352 ], [ -93.164062, 48.458352 ], [ -93.164062, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 49.152970 ], [ -94.921875, 49.152970 ], [ -94.921875, 49.382373 ], [ -95.273438, 49.382373 ], [ -95.273438, 48.922499 ], [ -123.398438, 48.922499 ], [ -123.398438, 49.152970 ], [ -123.750000, 49.152970 ], [ -123.750000, 49.382373 ], [ -124.101562, 49.382373 ], [ -124.101562, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.837982 ], [ -124.804688, 49.837982 ], [ -124.804688, 50.064192 ], [ -125.156250, 50.064192 ], [ -125.156250, 50.289339 ], [ -125.507812, 50.289339 ], [ -125.507812, 50.513427 ], [ -126.562500, 50.513427 ], [ -126.562500, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.399206 ], [ -127.968750, 51.399206 ], [ -127.968750, 52.268157 ], [ -128.320312, 52.268157 ], [ -128.320312, 52.482780 ], [ -129.023438, 52.482780 ], [ -129.023438, 53.120405 ], [ -129.375000, 53.120405 ], [ -129.375000, 53.540307 ], [ -129.726562, 53.540307 ], [ -129.726562, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.170023 ], [ -131.132812, 56.170023 ], [ -131.132812, 56.365250 ], [ -131.835938, 56.365250 ], [ -131.835938, 56.752723 ], [ -132.187500, 56.752723 ], [ -132.187500, 57.136239 ], [ -132.539062, 57.136239 ], [ -132.539062, 57.515823 ], [ -132.890625, 57.515823 ], [ -132.890625, 58.077876 ], [ -133.242188, 58.077876 ], [ -133.242188, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.631217 ], [ -134.296875, 58.631217 ], [ -134.296875, 58.813742 ], [ -134.648438, 58.813742 ], [ -134.648438, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.355596 ], [ -136.757812, 59.355596 ], [ -136.757812, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 58.995311 ], [ -137.812500, 58.995311 ], [ -137.812500, 59.175928 ], [ -138.164062, 59.175928 ], [ -138.164062, 59.355596 ], [ -138.515625, 59.355596 ], [ -138.515625, 59.712097 ], [ -138.867188, 59.712097 ], [ -138.867188, 60.064840 ], [ -139.570312, 60.064840 ], [ -139.570312, 60.239811 ], [ -140.976562, 60.239811 ], [ -140.976562, 67.204032 ], [ -88.242188, 67.204032 ], [ -88.242188, 64.168107 ], [ -88.945312, 64.168107 ], [ -88.945312, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.548552 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.054688, 62.915233 ], [ -91.054688, 62.754726 ], [ -91.757812, 62.754726 ], [ -91.757812, 62.593341 ], [ -92.109375, 62.593341 ], [ -92.109375, 62.431074 ], [ -92.460938, 62.431074 ], [ -92.460938, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 62.103883 ], [ -93.164062, 62.103883 ], [ -93.164062, 61.773123 ], [ -93.515625, 61.773123 ], [ -93.515625, 61.438767 ], [ -93.867188, 61.438767 ], [ -93.867188, 61.100789 ], [ -94.218750, 61.100789 ], [ -94.218750, 60.413852 ], [ -94.570312, 60.413852 ], [ -94.570312, 58.995311 ], [ -94.218750, 58.995311 ], [ -94.218750, 58.813742 ], [ -93.164062, 58.813742 ], [ -93.164062, 58.263287 ], [ -92.812500, 58.263287 ], [ -92.812500, 57.515823 ], [ -92.460938, 57.515823 ], [ -92.460938, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -89.648438, 57.136239 ], [ -89.648438, 56.944974 ] ] ], [ [ [ -127.968750, 50.513427 ], [ -127.265625, 50.513427 ], [ -127.265625, 50.289339 ], [ -125.859375, 50.289339 ], [ -125.859375, 50.064192 ], [ -125.507812, 50.064192 ], [ -125.507812, 49.610710 ], [ -125.156250, 49.610710 ], [ -125.156250, 49.382373 ], [ -124.453125, 49.382373 ], [ -124.453125, 49.152970 ], [ -123.750000, 49.152970 ], [ -123.750000, 48.690960 ], [ -123.398438, 48.690960 ], [ -123.398438, 48.458352 ], [ -124.804688, 48.458352 ], [ -124.804688, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.837982 ], [ -127.617188, 49.837982 ], [ -127.617188, 50.064192 ], [ -127.968750, 50.064192 ], [ -127.968750, 50.289339 ], [ -128.320312, 50.289339 ], [ -128.320312, 50.736455 ], [ -127.968750, 50.736455 ], [ -127.968750, 50.513427 ] ] ], [ [ [ -132.539062, 53.120405 ], [ -132.890625, 53.120405 ], [ -132.890625, 53.540307 ], [ -133.242188, 53.540307 ], [ -133.242188, 53.956086 ], [ -131.835938, 53.956086 ], [ -131.835938, 53.540307 ], [ -132.187500, 53.540307 ], [ -132.187500, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.120405 ] ] ], [ [ [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -131.835938, 52.696361 ], [ -131.835938, 52.482780 ], [ -132.187500, 52.482780 ] ] ], [ [ [ -131.484375, 52.482780 ], [ -131.484375, 52.268157 ], [ -131.835938, 52.268157 ], [ -131.835938, 52.482780 ], [ -131.484375, 52.482780 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.168107 ], [ -88.945312, 64.168107 ], [ -88.945312, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.548552 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.054688, 62.915233 ], [ -91.054688, 62.754726 ], [ -91.757812, 62.754726 ], [ -91.757812, 62.593341 ], [ -92.109375, 62.593341 ], [ -92.109375, 62.431074 ], [ -92.460938, 62.431074 ], [ -92.460938, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 62.103883 ], [ -93.164062, 62.103883 ], [ -93.164062, 61.773123 ], [ -93.515625, 61.773123 ], [ -93.515625, 61.438767 ], [ -93.867188, 61.438767 ], [ -93.867188, 61.100789 ], [ -94.218750, 61.100789 ], [ -94.218750, 60.413852 ], [ -94.570312, 60.413852 ], [ -94.570312, 58.995311 ], [ -94.218750, 58.995311 ], [ -94.218750, 58.813742 ], [ -93.164062, 58.813742 ], [ -93.164062, 58.263287 ], [ -92.812500, 58.263287 ], [ -92.812500, 57.515823 ], [ -92.460938, 57.515823 ], [ -92.460938, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -89.648438, 57.136239 ], [ -89.648438, 56.944974 ], [ -88.945312, 56.944974 ], [ -88.945312, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -92.460938, 48.224673 ], [ -92.460938, 48.458352 ], [ -93.164062, 48.458352 ], [ -93.164062, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 49.152970 ], [ -94.921875, 49.152970 ], [ -94.921875, 49.382373 ], [ -95.273438, 49.382373 ], [ -95.273438, 48.922499 ], [ -123.398438, 48.922499 ], [ -123.398438, 49.152970 ], [ -123.750000, 49.152970 ], [ -123.750000, 49.382373 ], [ -124.101562, 49.382373 ], [ -124.101562, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.837982 ], [ -124.804688, 49.837982 ], [ -124.804688, 50.064192 ], [ -125.156250, 50.064192 ], [ -125.156250, 50.289339 ], [ -125.507812, 50.289339 ], [ -125.507812, 50.513427 ], [ -126.562500, 50.513427 ], [ -126.562500, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.399206 ], [ -127.968750, 51.399206 ], [ -127.968750, 52.268157 ], [ -128.320312, 52.268157 ], [ -128.320312, 52.482780 ], [ -129.023438, 52.482780 ], [ -129.023438, 53.120405 ], [ -129.375000, 53.120405 ], [ -129.375000, 53.540307 ], [ -129.726562, 53.540307 ], [ -129.726562, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.170023 ], [ -131.132812, 56.170023 ], [ -131.132812, 56.365250 ], [ -131.835938, 56.365250 ], [ -131.835938, 56.752723 ], [ -132.187500, 56.752723 ], [ -132.187500, 57.136239 ], [ -132.539062, 57.136239 ], [ -132.539062, 57.515823 ], [ -132.890625, 57.515823 ], [ -132.890625, 58.077876 ], [ -133.242188, 58.077876 ], [ -133.242188, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.631217 ], [ -134.296875, 58.631217 ], [ -134.296875, 58.813742 ], [ -134.648438, 58.813742 ], [ -134.648438, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.355596 ], [ -136.757812, 59.355596 ], [ -136.757812, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 58.995311 ], [ -137.812500, 58.995311 ], [ -137.812500, 59.175928 ], [ -138.164062, 59.175928 ], [ -138.164062, 59.355596 ], [ -138.515625, 59.355596 ], [ -138.515625, 59.712097 ], [ -138.867188, 59.712097 ], [ -138.867188, 60.064840 ], [ -139.570312, 60.064840 ], [ -139.570312, 60.239811 ], [ -140.976562, 60.239811 ], [ -140.976562, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -127.968750, 50.736455 ], [ -127.968750, 50.513427 ], [ -127.265625, 50.513427 ], [ -127.265625, 50.289339 ], [ -125.859375, 50.289339 ], [ -125.859375, 50.064192 ], [ -125.507812, 50.064192 ], [ -125.507812, 49.610710 ], [ -125.156250, 49.610710 ], [ -125.156250, 49.382373 ], [ -124.453125, 49.382373 ], [ -124.453125, 49.152970 ], [ -123.750000, 49.152970 ], [ -123.750000, 48.690960 ], [ -123.398438, 48.458352 ], [ -124.804688, 48.458352 ], [ -124.804688, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.837982 ], [ -127.617188, 49.837982 ], [ -127.617188, 50.064192 ], [ -127.968750, 50.064192 ], [ -127.968750, 50.289339 ], [ -128.320312, 50.289339 ], [ -128.320312, 50.736455 ], [ -127.968750, 50.736455 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -131.835938, 52.696361 ], [ -131.835938, 52.482780 ] ] ], [ [ [ -131.835938, 53.540307 ], [ -132.187500, 53.540307 ], [ -132.187500, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.120405 ], [ -132.890625, 53.120405 ], [ -132.890625, 53.540307 ], [ -133.242188, 53.540307 ], [ -133.242188, 53.956086 ], [ -131.835938, 53.956086 ], [ -131.835938, 53.540307 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.268157 ], [ -131.835938, 52.268157 ], [ -131.835938, 52.482780 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 19.973349 ], [ -155.039062, 19.973349 ], [ -155.039062, 19.642588 ], [ -154.687500, 19.642588 ], [ -154.687500, 19.311143 ], [ -155.390625, 19.311143 ], [ -155.390625, 18.979026 ], [ -155.742188, 18.979026 ], [ -155.742188, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.303418 ], [ -155.742188, 20.303418 ], [ -155.742188, 19.973349 ] ] ], [ [ [ -156.093750, 20.632784 ], [ -156.796875, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.093750, 20.961440 ], [ -156.093750, 20.632784 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -157.148438, 20.961440 ], [ -157.148438, 21.289374 ], [ -156.796875, 21.289374 ], [ -156.796875, 20.961440 ] ] ], [ [ [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -157.851562, 21.616579 ], [ -157.851562, 21.289374 ] ] ], [ [ [ -159.257812, 21.943046 ], [ -159.609375, 21.943046 ], [ -159.609375, 22.268764 ], [ -159.257812, 22.268764 ], [ -159.257812, 21.943046 ] ] ], [ [ [ -151.875000, 60.759160 ], [ -151.875000, 60.586967 ], [ -152.226562, 60.586967 ], [ -152.226562, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.712097 ], [ -153.281250, 59.712097 ], [ -153.281250, 59.534318 ], [ -153.632812, 59.534318 ], [ -153.632812, 59.355596 ], [ -153.984375, 59.355596 ], [ -153.984375, 59.175928 ], [ -153.632812, 59.175928 ], [ -153.632812, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.631217 ], [ -153.632812, 58.631217 ], [ -153.632812, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 58.077876 ], [ -154.335938, 58.077876 ], [ -154.335938, 57.891497 ], [ -155.039062, 57.891497 ], [ -155.039062, 57.704147 ], [ -155.742188, 57.704147 ], [ -155.742188, 57.515823 ], [ -156.445312, 57.515823 ], [ -156.445312, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.752723 ], [ -157.500000, 56.752723 ], [ -157.500000, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 56.170023 ], [ -158.554688, 56.170023 ], [ -158.554688, 55.776573 ], [ -159.257812, 55.776573 ], [ -159.257812, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.379110 ], [ -161.367188, 55.379110 ], [ -161.367188, 55.178868 ], [ -161.718750, 55.178868 ], [ -161.718750, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.775346 ], [ -163.476562, 54.775346 ], [ -163.476562, 54.572062 ], [ -164.179688, 54.572062 ], [ -164.179688, 54.367759 ], [ -164.882812, 54.367759 ], [ -164.882812, 54.572062 ], [ -164.531250, 54.572062 ], [ -164.531250, 54.775346 ], [ -163.828125, 54.775346 ], [ -163.828125, 54.977614 ], [ -163.476562, 54.977614 ], [ -163.476562, 55.178868 ], [ -162.773438, 55.178868 ], [ -162.773438, 55.379110 ], [ -162.421875, 55.379110 ], [ -162.421875, 55.578345 ], [ -162.070312, 55.578345 ], [ -162.070312, 55.776573 ], [ -161.718750, 55.776573 ], [ -161.718750, 55.973798 ], [ -160.312500, 55.973798 ], [ -160.312500, 56.170023 ], [ -159.960938, 56.170023 ], [ -159.960938, 56.365250 ], [ -159.609375, 56.365250 ], [ -159.609375, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.752723 ], [ -158.554688, 56.752723 ], [ -158.554688, 57.136239 ], [ -158.203125, 57.136239 ], [ -158.203125, 57.326521 ], [ -157.851562, 57.326521 ], [ -157.851562, 57.891497 ], [ -157.500000, 57.891497 ], [ -157.500000, 58.631217 ], [ -157.148438, 58.631217 ], [ -157.148438, 58.813742 ], [ -157.851562, 58.813742 ], [ -157.851562, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.813742 ], [ -161.015625, 58.813742 ], [ -161.015625, 58.631217 ], [ -162.070312, 58.631217 ], [ -162.070312, 59.534318 ], [ -161.718750, 59.534318 ], [ -161.718750, 59.712097 ], [ -162.070312, 59.712097 ], [ -162.070312, 59.888937 ], [ -163.125000, 59.888937 ], [ -163.125000, 59.712097 ], [ -164.179688, 59.712097 ], [ -164.179688, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.413852 ], [ -165.234375, 60.413852 ], [ -165.234375, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.270233 ], [ -166.289062, 61.270233 ], [ -166.289062, 61.606396 ], [ -165.937500, 61.606396 ], [ -165.937500, 61.938950 ], [ -165.585938, 61.938950 ], [ -165.585938, 62.103883 ], [ -165.234375, 62.103883 ], [ -165.234375, 62.431074 ], [ -164.882812, 62.431074 ], [ -164.882812, 62.754726 ], [ -164.531250, 62.754726 ], [ -164.531250, 63.074866 ], [ -162.773438, 63.074866 ], [ -162.773438, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.391522 ], [ -161.015625, 63.391522 ], [ -161.015625, 63.548552 ], [ -160.664062, 63.548552 ], [ -160.664062, 63.860036 ], [ -161.015625, 63.860036 ], [ -161.015625, 64.320872 ], [ -161.367188, 64.320872 ], [ -161.367188, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.623877 ], [ -160.664062, 64.623877 ], [ -160.664062, 64.774125 ], [ -161.718750, 64.774125 ], [ -161.718750, 64.623877 ], [ -162.421875, 64.623877 ], [ -162.421875, 64.472794 ], [ -162.773438, 64.472794 ], [ -162.773438, 64.320872 ], [ -163.125000, 64.320872 ], [ -163.125000, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.623877 ], [ -163.828125, 64.623877 ], [ -163.828125, 64.472794 ], [ -165.937500, 64.472794 ], [ -165.937500, 64.623877 ], [ -166.640625, 64.623877 ], [ -166.640625, 64.923542 ], [ -166.992188, 64.923542 ], [ -166.992188, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -167.695312, 65.366837 ], [ -167.695312, 65.512963 ], [ -168.046875, 65.512963 ], [ -168.046875, 65.658275 ], [ -167.695312, 65.658275 ], [ -167.695312, 65.802776 ], [ -166.992188, 65.802776 ], [ -166.992188, 65.946472 ], [ -166.640625, 65.946472 ], [ -166.640625, 66.089364 ], [ -165.937500, 66.089364 ], [ -165.937500, 66.231457 ], [ -165.234375, 66.231457 ], [ -165.234375, 66.372755 ], [ -164.531250, 66.372755 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.828125, 66.930060 ], [ -163.828125, 67.204032 ], [ -140.976562, 67.204032 ], [ -140.976562, 60.239811 ], [ -139.921875, 60.239811 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.712097 ], [ -141.679688, 59.712097 ], [ -141.679688, 59.888937 ], [ -142.382812, 59.888937 ], [ -142.382812, 60.064840 ], [ -144.492188, 60.064840 ], [ -144.492188, 60.239811 ], [ -145.546875, 60.239811 ], [ -145.546875, 60.413852 ], [ -146.250000, 60.413852 ], [ -146.250000, 60.586967 ], [ -146.601562, 60.586967 ], [ -146.601562, 60.759160 ], [ -147.656250, 60.759160 ], [ -147.656250, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 60.239811 ], [ -148.007812, 60.239811 ], [ -148.007812, 59.888937 ], [ -149.062500, 59.888937 ], [ -149.062500, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.534318 ], [ -150.117188, 59.534318 ], [ -150.117188, 59.355596 ], [ -150.820312, 59.355596 ], [ -150.820312, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.759160 ], [ -151.875000, 60.759160 ] ], [ [ -150.468750, 61.100789 ], [ -150.820312, 61.100789 ], [ -150.820312, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.100789 ] ], [ [ -151.171875, 60.759160 ], [ -151.171875, 60.930432 ], [ -151.523438, 60.930432 ], [ -151.523438, 60.759160 ], [ -151.171875, 60.759160 ] ] ], [ [ [ -152.226562, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 57.136239 ], [ -152.929688, 57.136239 ], [ -152.929688, 56.944974 ], [ -153.632812, 56.944974 ], [ -153.632812, 56.752723 ], [ -154.687500, 56.752723 ], [ -154.687500, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.704147 ], [ -153.632812, 57.704147 ], [ -153.632812, 57.891497 ], [ -152.578125, 57.891497 ], [ -152.578125, 57.704147 ], [ -152.226562, 57.704147 ], [ -152.226562, 57.326521 ] ] ], [ [ [ -165.585938, 59.712097 ], [ -166.992188, 59.712097 ], [ -166.992188, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.239811 ], [ -166.640625, 60.413852 ], [ -166.289062, 60.413852 ], [ -166.289062, 60.239811 ], [ -165.585938, 60.239811 ], [ -165.585938, 59.712097 ] ] ], [ [ [ -170.156250, 63.391522 ], [ -169.453125, 63.391522 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 63.074866 ], [ -169.101562, 63.074866 ], [ -169.101562, 62.915233 ], [ -169.804688, 62.915233 ], [ -169.804688, 63.074866 ], [ -170.156250, 63.074866 ], [ -170.156250, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.391522 ], [ -171.914062, 63.391522 ], [ -171.914062, 63.548552 ], [ -171.562500, 63.548552 ], [ -171.562500, 63.704722 ], [ -171.210938, 63.704722 ], [ -171.210938, 63.548552 ], [ -170.156250, 63.548552 ], [ -170.156250, 63.391522 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 20.303418 ], [ -155.742188, 19.973349 ], [ -155.039062, 19.973349 ], [ -155.039062, 19.642588 ], [ -154.687500, 19.642588 ], [ -154.687500, 19.311143 ], [ -155.390625, 19.311143 ], [ -155.390625, 18.979026 ], [ -155.742188, 18.979026 ], [ -155.742188, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.303418 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -156.093750, 20.961440 ], [ -156.093750, 20.632784 ], [ -156.796875, 20.632784 ], [ -156.796875, 20.961440 ] ] ], [ [ [ -157.851562, 21.616579 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -157.851562, 21.616579 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.257812, 21.943046 ], [ -159.609375, 21.943046 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -140.976562, 67.204032 ], [ -140.976562, 60.239811 ], [ -139.921875, 60.239811 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.712097 ], [ -141.679688, 59.712097 ], [ -141.679688, 59.888937 ], [ -142.382812, 59.888937 ], [ -142.382812, 60.064840 ], [ -144.492188, 60.064840 ], [ -144.492188, 60.239811 ], [ -145.546875, 60.239811 ], [ -145.546875, 60.413852 ], [ -146.250000, 60.413852 ], [ -146.250000, 60.586967 ], [ -146.601562, 60.586967 ], [ -146.601562, 60.759160 ], [ -147.656250, 60.759160 ], [ -147.656250, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 60.239811 ], [ -148.007812, 60.239811 ], [ -148.007812, 59.888937 ], [ -149.062500, 59.888937 ], [ -149.062500, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.534318 ], [ -150.117188, 59.534318 ], [ -150.117188, 59.355596 ], [ -150.820312, 59.355596 ], [ -150.820312, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.759160 ], [ -151.875000, 60.759160 ], [ -151.875000, 60.586967 ], [ -152.226562, 60.586967 ], [ -152.226562, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.712097 ], [ -153.281250, 59.712097 ], [ -153.281250, 59.534318 ], [ -153.632812, 59.534318 ], [ -153.632812, 59.355596 ], [ -153.984375, 59.355596 ], [ -153.984375, 59.175928 ], [ -153.632812, 59.175928 ], [ -153.632812, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.631217 ], [ -153.632812, 58.631217 ], [ -153.632812, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 58.077876 ], [ -154.335938, 58.077876 ], [ -154.335938, 57.891497 ], [ -155.039062, 57.891497 ], [ -155.039062, 57.704147 ], [ -155.742188, 57.704147 ], [ -155.742188, 57.515823 ], [ -156.445312, 57.515823 ], [ -156.445312, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.752723 ], [ -157.500000, 56.752723 ], [ -157.500000, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 56.170023 ], [ -158.554688, 56.170023 ], [ -158.554688, 55.776573 ], [ -159.257812, 55.776573 ], [ -159.257812, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.379110 ], [ -161.367188, 55.379110 ], [ -161.367188, 55.178868 ], [ -161.718750, 55.178868 ], [ -161.718750, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.775346 ], [ -163.476562, 54.775346 ], [ -163.476562, 54.572062 ], [ -164.179688, 54.572062 ], [ -164.179688, 54.367759 ], [ -164.882812, 54.367759 ], [ -164.882812, 54.572062 ], [ -164.531250, 54.572062 ], [ -164.531250, 54.775346 ], [ -163.828125, 54.775346 ], [ -163.828125, 54.977614 ], [ -163.476562, 54.977614 ], [ -163.476562, 55.178868 ], [ -162.773438, 55.178868 ], [ -162.773438, 55.379110 ], [ -162.421875, 55.379110 ], [ -162.421875, 55.578345 ], [ -162.070312, 55.578345 ], [ -162.070312, 55.776573 ], [ -161.718750, 55.776573 ], [ -161.718750, 55.973798 ], [ -160.312500, 55.973798 ], [ -160.312500, 56.170023 ], [ -159.960938, 56.170023 ], [ -159.960938, 56.365250 ], [ -159.609375, 56.365250 ], [ -159.609375, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.752723 ], [ -158.554688, 56.752723 ], [ -158.554688, 57.136239 ], [ -158.203125, 57.136239 ], [ -158.203125, 57.326521 ], [ -157.851562, 57.326521 ], [ -157.851562, 57.891497 ], [ -157.500000, 57.891497 ], [ -157.500000, 58.631217 ], [ -157.148438, 58.631217 ], [ -157.148438, 58.813742 ], [ -157.851562, 58.813742 ], [ -157.851562, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.813742 ], [ -161.015625, 58.813742 ], [ -161.015625, 58.631217 ], [ -162.070312, 58.631217 ], [ -162.070312, 59.534318 ], [ -161.718750, 59.534318 ], [ -161.718750, 59.712097 ], [ -162.070312, 59.712097 ], [ -162.070312, 59.888937 ], [ -163.125000, 59.888937 ], [ -163.125000, 59.712097 ], [ -164.179688, 59.712097 ], [ -164.179688, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.413852 ], [ -165.234375, 60.413852 ], [ -165.234375, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.270233 ], [ -166.289062, 61.270233 ], [ -166.289062, 61.606396 ], [ -165.937500, 61.606396 ], [ -165.937500, 61.938950 ], [ -165.585938, 61.938950 ], [ -165.585938, 62.103883 ], [ -165.234375, 62.103883 ], [ -165.234375, 62.431074 ], [ -164.882812, 62.431074 ], [ -164.882812, 62.754726 ], [ -164.531250, 62.754726 ], [ -164.531250, 63.074866 ], [ -162.773438, 63.074866 ], [ -162.773438, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.391522 ], [ -161.015625, 63.391522 ], [ -161.015625, 63.548552 ], [ -160.664062, 63.548552 ], [ -160.664062, 63.860036 ], [ -161.015625, 63.860036 ], [ -161.015625, 64.320872 ], [ -161.367188, 64.320872 ], [ -161.367188, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.623877 ], [ -160.664062, 64.623877 ], [ -160.664062, 64.774125 ], [ -161.718750, 64.774125 ], [ -161.718750, 64.623877 ], [ -162.421875, 64.623877 ], [ -162.421875, 64.472794 ], [ -162.773438, 64.472794 ], [ -162.773438, 64.320872 ], [ -163.125000, 64.320872 ], [ -163.125000, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.623877 ], [ -163.828125, 64.623877 ], [ -163.828125, 64.472794 ], [ -165.937500, 64.472794 ], [ -165.937500, 64.623877 ], [ -166.640625, 64.623877 ], [ -166.640625, 64.923542 ], [ -166.992188, 64.923542 ], [ -166.992188, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -167.695312, 65.366837 ], [ -167.695312, 65.512963 ], [ -168.046875, 65.512963 ], [ -168.046875, 65.658275 ], [ -167.695312, 65.658275 ], [ -167.695312, 65.802776 ], [ -166.992188, 65.802776 ], [ -166.992188, 65.946472 ], [ -166.640625, 65.946472 ], [ -166.640625, 66.089364 ], [ -165.937500, 66.089364 ], [ -165.937500, 66.231457 ], [ -165.234375, 66.231457 ], [ -165.234375, 66.372755 ], [ -164.531250, 66.372755 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.828125, 66.930060 ], [ -163.828125, 67.067433 ], [ -140.976562, 67.204032 ] ], [ [ -151.171875, 60.930432 ], [ -151.523438, 60.930432 ], [ -151.523438, 60.759160 ], [ -151.171875, 60.759160 ], [ -151.171875, 60.930432 ] ], [ [ -150.820312, 61.100789 ], [ -150.820312, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.100789 ], [ -150.820312, 61.100789 ] ] ], [ [ [ -152.578125, 57.891497 ], [ -152.578125, 57.704147 ], [ -152.226562, 57.704147 ], [ -152.226562, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 57.136239 ], [ -152.929688, 57.136239 ], [ -152.929688, 56.944974 ], [ -153.632812, 56.944974 ], [ -153.632812, 56.752723 ], [ -154.687500, 56.752723 ], [ -154.687500, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.704147 ], [ -153.632812, 57.704147 ], [ -153.632812, 57.891497 ], [ -152.578125, 57.891497 ] ] ], [ [ [ -166.289062, 60.413852 ], [ -166.289062, 60.239811 ], [ -165.585938, 60.239811 ], [ -165.585938, 59.712097 ], [ -166.992188, 59.712097 ], [ -166.992188, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.239811 ], [ -166.640625, 60.413852 ], [ -166.289062, 60.413852 ] ] ], [ [ [ -171.210938, 63.704722 ], [ -171.210938, 63.548552 ], [ -170.156250, 63.548552 ], [ -170.156250, 63.391522 ], [ -169.453125, 63.391522 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 63.074866 ], [ -169.101562, 63.074866 ], [ -169.101562, 62.915233 ], [ -169.804688, 62.915233 ], [ -169.804688, 63.074866 ], [ -170.156250, 63.074866 ], [ -170.156250, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.391522 ], [ -171.914062, 63.391522 ], [ -171.914062, 63.548552 ], [ -171.562500, 63.548552 ], [ -171.562500, 63.704722 ], [ -171.210938, 63.704722 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -157.148438, 20.961440 ], [ -157.148438, 21.289374 ], [ -156.796875, 21.289374 ], [ -156.796875, 20.961440 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.867188, 29.840644 ], [ -93.867188, 29.535230 ], [ -94.570312, 29.535230 ], [ -94.570312, 29.228890 ], [ -94.921875, 29.228890 ], [ -94.921875, 28.921631 ], [ -95.273438, 28.921631 ], [ -95.273438, 28.613459 ], [ -95.976562, 28.613459 ], [ -95.976562, 28.304381 ], [ -96.679688, 28.304381 ], [ -96.679688, 27.994401 ], [ -97.031250, 27.994401 ], [ -97.031250, 27.371767 ], [ -97.382812, 27.371767 ], [ -97.382812, 25.799891 ], [ -98.085938, 25.799891 ], [ -98.085938, 26.115986 ], [ -98.789062, 26.115986 ], [ -98.789062, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 27.059126 ], [ -99.492188, 27.059126 ], [ -99.492188, 27.683528 ], [ -100.195312, 27.683528 ], [ -100.195312, 28.304381 ], [ -100.546875, 28.304381 ], [ -100.546875, 28.921631 ], [ -100.898438, 28.921631 ], [ -100.898438, 29.228890 ], [ -101.250000, 29.228890 ], [ -101.250000, 29.535230 ], [ -101.601562, 29.535230 ], [ -101.601562, 29.840644 ], [ -102.304688, 29.840644 ], [ -102.304688, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 28.921631 ], [ -103.710938, 28.921631 ], [ -103.710938, 29.228890 ], [ -104.414062, 29.228890 ], [ -104.414062, 29.840644 ], [ -104.765625, 29.840644 ], [ -104.765625, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.052934 ], [ -106.171875, 31.052934 ], [ -106.171875, 31.353637 ], [ -106.523438, 31.353637 ], [ -106.523438, 31.653381 ], [ -108.281250, 31.653381 ], [ -108.281250, 31.353637 ], [ -111.796875, 31.353637 ], [ -111.796875, 31.653381 ], [ -112.851562, 31.653381 ], [ -112.851562, 31.952162 ], [ -113.906250, 31.952162 ], [ -113.906250, 32.249974 ], [ -114.609375, 32.249974 ], [ -114.609375, 32.842674 ], [ -114.960938, 32.842674 ], [ -114.960938, 32.546813 ], [ -117.070312, 32.546813 ], [ -117.070312, 32.842674 ], [ -117.421875, 32.842674 ], [ -117.421875, 33.431441 ], [ -117.773438, 33.431441 ], [ -117.773438, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.531250, 34.016242 ], [ -119.531250, 34.307144 ], [ -120.585938, 34.307144 ], [ -120.585938, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.460670 ], [ -121.289062, 35.460670 ], [ -121.289062, 35.746512 ], [ -121.640625, 35.746512 ], [ -121.640625, 36.031332 ], [ -121.992188, 36.031332 ], [ -121.992188, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.160317 ], [ -122.695312, 37.160317 ], [ -122.695312, 37.439974 ], [ -122.343750, 37.439974 ], [ -122.343750, 37.718590 ], [ -123.046875, 37.718590 ], [ -123.046875, 37.996163 ], [ -123.398438, 37.996163 ], [ -123.398438, 38.548165 ], [ -123.750000, 38.548165 ], [ -123.750000, 39.639538 ], [ -124.101562, 39.639538 ], [ -124.101562, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.713956 ], [ -124.101562, 40.713956 ], [ -124.101562, 42.293564 ], [ -124.453125, 42.293564 ], [ -124.453125, 43.325178 ], [ -124.101562, 43.325178 ], [ -124.101562, 45.089036 ], [ -123.750000, 45.089036 ], [ -123.750000, 46.073231 ], [ -124.101562, 46.073231 ], [ -124.101562, 47.279229 ], [ -124.453125, 47.279229 ], [ -124.453125, 47.989922 ], [ -124.804688, 47.989922 ], [ -124.804688, 48.224673 ], [ -123.750000, 48.224673 ], [ -123.750000, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.458352 ], [ -122.695312, 48.458352 ], [ -122.695312, 48.922499 ], [ -95.273438, 48.922499 ], [ -95.273438, 49.382373 ], [ -94.921875, 49.382373 ], [ -94.921875, 49.152970 ], [ -94.570312, 49.152970 ], [ -94.570312, 48.690960 ], [ -93.164062, 48.690960 ], [ -93.164062, 48.458352 ], [ -92.460938, 48.458352 ], [ -92.460938, 48.224673 ], [ -90.351562, 48.224673 ], [ -90.351562, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.224673 ], [ -88.242188, 48.224673 ], [ -88.242188, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.840644 ], [ -89.296875, 29.840644 ], [ -89.296875, 29.228890 ], [ -91.757812, 29.228890 ], [ -91.757812, 29.535230 ], [ -93.164062, 29.535230 ], [ -93.164062, 29.840644 ], [ -93.867188, 29.840644 ] ] ], [ [ [ -135.000000, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.631217 ], [ -133.593750, 58.631217 ], [ -133.593750, 58.447733 ], [ -133.242188, 58.447733 ], [ -133.242188, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.515823 ], [ -132.539062, 57.515823 ], [ -132.539062, 57.136239 ], [ -132.187500, 57.136239 ], [ -132.187500, 56.752723 ], [ -131.835938, 56.752723 ], [ -131.835938, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.170023 ], [ -130.429688, 56.170023 ], [ -130.429688, 55.973798 ], [ -130.078125, 55.973798 ], [ -130.078125, 54.977614 ], [ -130.429688, 54.977614 ], [ -130.429688, 54.775346 ], [ -130.781250, 54.775346 ], [ -130.781250, 54.977614 ], [ -131.132812, 54.977614 ], [ -131.132812, 55.178868 ], [ -131.484375, 55.178868 ], [ -131.484375, 55.379110 ], [ -131.835938, 55.379110 ], [ -131.835938, 55.973798 ], [ -132.187500, 55.973798 ], [ -132.187500, 56.365250 ], [ -132.539062, 56.365250 ], [ -132.539062, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.752723 ], [ -133.242188, 56.752723 ], [ -133.242188, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.515823 ], [ -133.945312, 57.515823 ], [ -133.945312, 58.077876 ], [ -134.648438, 58.077876 ], [ -134.648438, 58.263287 ], [ -137.460938, 58.263287 ], [ -137.460938, 58.447733 ], [ -138.164062, 58.447733 ], [ -138.164062, 58.631217 ], [ -138.515625, 58.631217 ], [ -138.515625, 58.813742 ], [ -138.867188, 58.813742 ], [ -138.867188, 58.995311 ], [ -139.218750, 58.995311 ], [ -139.218750, 59.175928 ], [ -139.570312, 59.175928 ], [ -139.570312, 59.355596 ], [ -139.921875, 59.355596 ], [ -139.921875, 60.239811 ], [ -139.570312, 60.239811 ], [ -139.570312, 60.064840 ], [ -138.867188, 60.064840 ], [ -138.867188, 59.712097 ], [ -138.515625, 59.712097 ], [ -138.515625, 59.355596 ], [ -138.164062, 59.355596 ], [ -138.164062, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.175928 ], [ -136.757812, 59.175928 ], [ -136.757812, 59.355596 ], [ -136.406250, 59.355596 ], [ -136.406250, 59.534318 ], [ -135.703125, 59.534318 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 59.175928 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.921875, 49.382373 ], [ -94.921875, 49.152970 ], [ -94.570312, 49.152970 ], [ -94.570312, 48.690960 ], [ -93.164062, 48.690960 ], [ -93.164062, 48.458352 ], [ -92.460938, 48.458352 ], [ -92.460938, 48.224673 ], [ -90.351562, 48.224673 ], [ -90.351562, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.224673 ], [ -88.242188, 48.224673 ], [ -88.242188, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.840644 ], [ -89.296875, 29.840644 ], [ -89.296875, 29.228890 ], [ -91.757812, 29.228890 ], [ -91.757812, 29.535230 ], [ -93.164062, 29.535230 ], [ -93.164062, 29.840644 ], [ -93.867188, 29.840644 ], [ -93.867188, 29.535230 ], [ -94.570312, 29.535230 ], [ -94.570312, 29.228890 ], [ -94.921875, 29.228890 ], [ -94.921875, 28.921631 ], [ -95.273438, 28.921631 ], [ -95.273438, 28.613459 ], [ -95.976562, 28.613459 ], [ -95.976562, 28.304381 ], [ -96.679688, 28.304381 ], [ -96.679688, 27.994401 ], [ -97.031250, 27.994401 ], [ -97.031250, 27.371767 ], [ -97.382812, 27.371767 ], [ -97.382812, 25.799891 ], [ -98.085938, 25.799891 ], [ -98.085938, 26.115986 ], [ -98.789062, 26.115986 ], [ -98.789062, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 27.059126 ], [ -99.492188, 27.059126 ], [ -99.492188, 27.683528 ], [ -100.195312, 27.683528 ], [ -100.195312, 28.304381 ], [ -100.546875, 28.304381 ], [ -100.546875, 28.921631 ], [ -100.898438, 28.921631 ], [ -100.898438, 29.228890 ], [ -101.250000, 29.228890 ], [ -101.250000, 29.535230 ], [ -101.601562, 29.535230 ], [ -101.601562, 29.840644 ], [ -102.304688, 29.840644 ], [ -102.304688, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 28.921631 ], [ -103.710938, 28.921631 ], [ -103.710938, 29.228890 ], [ -104.414062, 29.228890 ], [ -104.414062, 29.840644 ], [ -104.765625, 29.840644 ], [ -104.765625, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.052934 ], [ -106.171875, 31.052934 ], [ -106.171875, 31.353637 ], [ -106.523438, 31.353637 ], [ -106.523438, 31.653381 ], [ -108.281250, 31.653381 ], [ -108.281250, 31.353637 ], [ -111.796875, 31.353637 ], [ -111.796875, 31.653381 ], [ -112.851562, 31.653381 ], [ -112.851562, 31.952162 ], [ -113.906250, 31.952162 ], [ -113.906250, 32.249974 ], [ -114.609375, 32.249974 ], [ -114.609375, 32.842674 ], [ -114.960938, 32.842674 ], [ -114.960938, 32.546813 ], [ -117.070312, 32.546813 ], [ -117.070312, 32.842674 ], [ -117.421875, 32.842674 ], [ -117.421875, 33.431441 ], [ -117.773438, 33.431441 ], [ -117.773438, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.531250, 34.016242 ], [ -119.531250, 34.307144 ], [ -120.585938, 34.307144 ], [ -120.585938, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.460670 ], [ -121.289062, 35.460670 ], [ -121.289062, 35.746512 ], [ -121.640625, 35.746512 ], [ -121.640625, 36.031332 ], [ -121.992188, 36.031332 ], [ -121.992188, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.160317 ], [ -122.695312, 37.160317 ], [ -122.695312, 37.439974 ], [ -122.343750, 37.439974 ], [ -122.343750, 37.718590 ], [ -123.046875, 37.718590 ], [ -123.046875, 37.996163 ], [ -123.398438, 37.996163 ], [ -123.398438, 38.548165 ], [ -123.750000, 38.548165 ], [ -123.750000, 39.639538 ], [ -124.101562, 39.639538 ], [ -124.101562, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.713956 ], [ -124.101562, 40.713956 ], [ -124.101562, 42.293564 ], [ -124.453125, 42.293564 ], [ -124.453125, 43.325178 ], [ -124.101562, 43.325178 ], [ -124.101562, 45.089036 ], [ -123.750000, 45.089036 ], [ -123.750000, 46.073231 ], [ -124.101562, 46.073231 ], [ -124.101562, 47.279229 ], [ -124.453125, 47.279229 ], [ -124.453125, 47.989922 ], [ -124.804688, 47.989922 ], [ -124.804688, 48.224673 ], [ -123.750000, 48.224673 ], [ -123.750000, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.458352 ], [ -122.695312, 48.458352 ], [ -122.695312, 48.922499 ], [ -95.273438, 48.922499 ], [ -95.273438, 49.382373 ], [ -94.921875, 49.382373 ] ] ], [ [ [ -139.570312, 60.239811 ], [ -139.570312, 60.064840 ], [ -138.867188, 60.064840 ], [ -138.867188, 59.712097 ], [ -138.515625, 59.712097 ], [ -138.515625, 59.355596 ], [ -138.164062, 59.355596 ], [ -138.164062, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.175928 ], [ -136.757812, 59.175928 ], [ -136.757812, 59.355596 ], [ -136.406250, 59.355596 ], [ -136.406250, 59.534318 ], [ -135.703125, 59.534318 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.631217 ], [ -133.593750, 58.631217 ], [ -133.593750, 58.447733 ], [ -133.242188, 58.447733 ], [ -133.242188, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.515823 ], [ -132.539062, 57.515823 ], [ -132.539062, 57.136239 ], [ -132.187500, 57.136239 ], [ -132.187500, 56.752723 ], [ -131.835938, 56.752723 ], [ -131.835938, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.170023 ], [ -130.429688, 56.170023 ], [ -130.429688, 55.973798 ], [ -130.078125, 55.973798 ], [ -130.078125, 54.977614 ], [ -130.429688, 54.977614 ], [ -130.429688, 54.775346 ], [ -130.781250, 54.775346 ], [ -130.781250, 54.977614 ], [ -131.132812, 54.977614 ], [ -131.132812, 55.178868 ], [ -131.484375, 55.178868 ], [ -131.484375, 55.379110 ], [ -131.835938, 55.379110 ], [ -131.835938, 55.973798 ], [ -132.187500, 55.973798 ], [ -132.187500, 56.365250 ], [ -132.539062, 56.365250 ], [ -132.539062, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.752723 ], [ -133.242188, 56.752723 ], [ -133.242188, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.515823 ], [ -133.945312, 57.515823 ], [ -133.945312, 58.077876 ], [ -134.648438, 58.077876 ], [ -134.648438, 58.263287 ], [ -137.460938, 58.263287 ], [ -137.460938, 58.447733 ], [ -138.164062, 58.447733 ], [ -138.164062, 58.631217 ], [ -138.515625, 58.631217 ], [ -138.515625, 58.813742 ], [ -138.867188, 58.813742 ], [ -138.867188, 58.995311 ], [ -139.218750, 58.995311 ], [ -139.218750, 59.175928 ], [ -139.570312, 59.175928 ], [ -139.570312, 59.355596 ], [ -139.921875, 59.355596 ], [ -139.921875, 60.239811 ], [ -139.570312, 60.239811 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -106.171875, 31.052934 ], [ -105.468750, 31.052934 ], [ -105.468750, 30.751278 ], [ -105.117188, 30.751278 ], [ -105.117188, 30.448674 ], [ -104.765625, 30.448674 ], [ -104.765625, 29.840644 ], [ -104.414062, 29.840644 ], [ -104.414062, 29.228890 ], [ -103.710938, 29.228890 ], [ -103.710938, 28.921631 ], [ -102.656250, 28.921631 ], [ -102.656250, 29.535230 ], [ -102.304688, 29.535230 ], [ -102.304688, 29.840644 ], [ -101.601562, 29.840644 ], [ -101.601562, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.304381 ], [ -100.195312, 28.304381 ], [ -100.195312, 27.683528 ], [ -99.492188, 27.683528 ], [ -99.492188, 27.059126 ], [ -99.140625, 27.059126 ], [ -99.140625, 26.431228 ], [ -98.789062, 26.431228 ], [ -98.789062, 26.115986 ], [ -98.085938, 26.115986 ], [ -98.085938, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 25.165173 ], [ -97.382812, 25.165173 ], [ -97.382812, 24.527135 ], [ -97.734375, 24.527135 ], [ -97.734375, 21.616579 ], [ -97.382812, 21.616579 ], [ -97.382812, 20.961440 ], [ -97.031250, 20.961440 ], [ -97.031250, 20.303418 ], [ -96.679688, 20.303418 ], [ -96.679688, 19.642588 ], [ -96.328125, 19.642588 ], [ -96.328125, 18.979026 ], [ -95.625000, 18.979026 ], [ -95.625000, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 18.312811 ], [ -94.570312, 18.312811 ], [ -94.570312, 17.978733 ], [ -93.867188, 17.978733 ], [ -93.867188, 18.312811 ], [ -92.812500, 18.312811 ], [ -92.812500, 18.646245 ], [ -91.406250, 18.646245 ], [ -91.406250, 18.979026 ], [ -90.703125, 18.979026 ], [ -90.703125, 20.303418 ], [ -90.351562, 20.303418 ], [ -90.351562, 20.961440 ], [ -89.648438, 20.961440 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -88.242188, 21.616579 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.644022 ], [ -90.000000, 17.644022 ], [ -90.000000, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 15.623037 ], [ -92.109375, 15.623037 ], [ -92.109375, 14.604847 ], [ -92.460938, 14.604847 ], [ -92.460938, 14.944785 ], [ -93.164062, 14.944785 ], [ -93.164062, 15.284185 ], [ -93.515625, 15.284185 ], [ -93.515625, 15.623037 ], [ -93.867188, 15.623037 ], [ -93.867188, 15.961329 ], [ -95.273438, 15.961329 ], [ -95.273438, 15.623037 ], [ -97.382812, 15.623037 ], [ -97.382812, 15.961329 ], [ -98.437500, 15.961329 ], [ -98.437500, 16.299051 ], [ -98.789062, 16.299051 ], [ -98.789062, 16.636192 ], [ -100.195312, 16.636192 ], [ -100.195312, 16.972741 ], [ -100.898438, 16.972741 ], [ -100.898438, 17.308688 ], [ -101.601562, 17.308688 ], [ -101.601562, 17.644022 ], [ -101.953125, 17.644022 ], [ -101.953125, 17.978733 ], [ -103.007812, 17.978733 ], [ -103.007812, 18.312811 ], [ -104.062500, 18.312811 ], [ -104.062500, 18.646245 ], [ -104.414062, 18.646245 ], [ -104.414062, 18.979026 ], [ -105.117188, 18.979026 ], [ -105.117188, 19.642588 ], [ -105.468750, 19.642588 ], [ -105.468750, 19.973349 ], [ -105.820312, 19.973349 ], [ -105.820312, 20.303418 ], [ -105.468750, 20.303418 ], [ -105.468750, 20.961440 ], [ -105.117188, 20.961440 ], [ -105.117188, 21.616579 ], [ -105.468750, 21.616579 ], [ -105.468750, 21.943046 ], [ -105.820312, 21.943046 ], [ -105.820312, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 22.917923 ], [ -106.523438, 22.917923 ], [ -106.523438, 23.563987 ], [ -106.875000, 23.563987 ], [ -106.875000, 23.885838 ], [ -107.226562, 23.885838 ], [ -107.226562, 24.206890 ], [ -107.929688, 24.206890 ], [ -107.929688, 24.846565 ], [ -108.281250, 24.846565 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 25.482951 ], [ -109.335938, 25.482951 ], [ -109.335938, 26.431228 ], [ -109.687500, 26.431228 ], [ -109.687500, 26.745610 ], [ -110.390625, 26.745610 ], [ -110.390625, 27.371767 ], [ -110.742188, 27.371767 ], [ -110.742188, 27.994401 ], [ -111.445312, 27.994401 ], [ -111.445312, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.613459 ], [ -112.148438, 28.613459 ], [ -112.148438, 29.228890 ], [ -112.500000, 29.228890 ], [ -112.500000, 29.840644 ], [ -112.851562, 29.840644 ], [ -112.851562, 30.448674 ], [ -113.203125, 30.448674 ], [ -113.203125, 31.052934 ], [ -113.554688, 31.052934 ], [ -113.554688, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.653381 ], [ -114.609375, 31.653381 ], [ -114.609375, 31.353637 ], [ -114.960938, 31.353637 ], [ -114.960938, 31.052934 ], [ -114.609375, 31.052934 ], [ -114.609375, 29.840644 ], [ -114.257812, 29.840644 ], [ -114.257812, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.921631 ], [ -113.554688, 28.921631 ], [ -113.554688, 28.613459 ], [ -113.203125, 28.613459 ], [ -113.203125, 28.304381 ], [ -112.851562, 28.304381 ], [ -112.851562, 27.371767 ], [ -112.500000, 27.371767 ], [ -112.500000, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.745610 ], [ -111.445312, 26.745610 ], [ -111.445312, 25.482951 ], [ -111.093750, 25.482951 ], [ -111.093750, 24.846565 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.206890 ], [ -110.039062, 24.206890 ], [ -110.039062, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 23.563987 ], [ -109.335938, 23.563987 ], [ -109.335938, 22.917923 ], [ -110.039062, 22.917923 ], [ -110.039062, 23.241346 ], [ -110.390625, 23.241346 ], [ -110.390625, 23.563987 ], [ -111.093750, 23.563987 ], [ -111.093750, 23.885838 ], [ -111.445312, 23.885838 ], [ -111.445312, 24.206890 ], [ -111.796875, 24.206890 ], [ -111.796875, 24.527135 ], [ -112.148438, 24.527135 ], [ -112.148438, 26.115986 ], [ -112.851562, 26.115986 ], [ -112.851562, 26.431228 ], [ -113.554688, 26.431228 ], [ -113.554688, 26.745610 ], [ -114.609375, 26.745610 ], [ -114.609375, 27.371767 ], [ -114.960938, 27.371767 ], [ -114.960938, 27.683528 ], [ -114.257812, 27.683528 ], [ -114.257812, 28.613459 ], [ -114.609375, 28.613459 ], [ -114.609375, 28.921631 ], [ -114.960938, 28.921631 ], [ -114.960938, 29.228890 ], [ -115.664062, 29.228890 ], [ -115.664062, 29.840644 ], [ -116.015625, 29.840644 ], [ -116.015625, 30.448674 ], [ -116.367188, 30.448674 ], [ -116.367188, 31.052934 ], [ -116.718750, 31.052934 ], [ -116.718750, 31.952162 ], [ -117.070312, 31.952162 ], [ -117.070312, 32.546813 ], [ -114.960938, 32.546813 ], [ -114.960938, 32.842674 ], [ -114.609375, 32.842674 ], [ -114.609375, 32.249974 ], [ -113.906250, 32.249974 ], [ -113.906250, 31.952162 ], [ -112.851562, 31.952162 ], [ -112.851562, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.052934 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.609375, 32.842674 ], [ -114.609375, 32.249974 ], [ -113.906250, 32.249974 ], [ -113.906250, 31.952162 ], [ -112.851562, 31.952162 ], [ -112.851562, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.052934 ], [ -105.468750, 31.052934 ], [ -105.468750, 30.751278 ], [ -105.117188, 30.751278 ], [ -105.117188, 30.448674 ], [ -104.765625, 30.448674 ], [ -104.765625, 29.840644 ], [ -104.414062, 29.840644 ], [ -104.414062, 29.228890 ], [ -103.710938, 29.228890 ], [ -103.710938, 28.921631 ], [ -102.656250, 28.921631 ], [ -102.656250, 29.535230 ], [ -102.304688, 29.535230 ], [ -102.304688, 29.840644 ], [ -101.601562, 29.840644 ], [ -101.601562, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.304381 ], [ -100.195312, 28.304381 ], [ -100.195312, 27.683528 ], [ -99.492188, 27.683528 ], [ -99.492188, 27.059126 ], [ -99.140625, 27.059126 ], [ -99.140625, 26.431228 ], [ -98.789062, 26.431228 ], [ -98.789062, 26.115986 ], [ -98.085938, 26.115986 ], [ -98.085938, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 25.165173 ], [ -97.382812, 25.165173 ], [ -97.382812, 24.527135 ], [ -97.734375, 24.527135 ], [ -97.734375, 21.616579 ], [ -97.382812, 21.616579 ], [ -97.382812, 20.961440 ], [ -97.031250, 20.961440 ], [ -97.031250, 20.303418 ], [ -96.679688, 20.303418 ], [ -96.679688, 19.642588 ], [ -96.328125, 19.642588 ], [ -96.328125, 18.979026 ], [ -95.625000, 18.979026 ], [ -95.625000, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 18.312811 ], [ -94.570312, 18.312811 ], [ -94.570312, 17.978733 ], [ -93.867188, 17.978733 ], [ -93.867188, 18.312811 ], [ -92.812500, 18.312811 ], [ -92.812500, 18.646245 ], [ -91.406250, 18.646245 ], [ -91.406250, 18.979026 ], [ -90.703125, 18.979026 ], [ -90.703125, 20.303418 ], [ -90.351562, 20.303418 ], [ -90.351562, 20.961440 ], [ -89.648438, 20.961440 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -88.242188, 21.616579 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.644022 ], [ -90.000000, 17.644022 ], [ -90.000000, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 15.623037 ], [ -92.109375, 15.623037 ], [ -92.109375, 14.604847 ], [ -92.460938, 14.604847 ], [ -92.460938, 14.944785 ], [ -93.164062, 14.944785 ], [ -93.164062, 15.284185 ], [ -93.515625, 15.284185 ], [ -93.515625, 15.623037 ], [ -93.867188, 15.623037 ], [ -93.867188, 15.961329 ], [ -95.273438, 15.961329 ], [ -95.273438, 15.623037 ], [ -97.382812, 15.623037 ], [ -97.382812, 15.961329 ], [ -98.437500, 15.961329 ], [ -98.437500, 16.299051 ], [ -98.789062, 16.299051 ], [ -98.789062, 16.636192 ], [ -100.195312, 16.636192 ], [ -100.195312, 16.972741 ], [ -100.898438, 16.972741 ], [ -100.898438, 17.308688 ], [ -101.601562, 17.308688 ], [ -101.601562, 17.644022 ], [ -101.953125, 17.644022 ], [ -101.953125, 17.978733 ], [ -103.007812, 17.978733 ], [ -103.007812, 18.312811 ], [ -104.062500, 18.312811 ], [ -104.062500, 18.646245 ], [ -104.414062, 18.646245 ], [ -104.414062, 18.979026 ], [ -105.117188, 18.979026 ], [ -105.117188, 19.642588 ], [ -105.468750, 19.642588 ], [ -105.468750, 19.973349 ], [ -105.820312, 19.973349 ], [ -105.820312, 20.303418 ], [ -105.468750, 20.303418 ], [ -105.468750, 20.961440 ], [ -105.117188, 20.961440 ], [ -105.117188, 21.616579 ], [ -105.468750, 21.616579 ], [ -105.468750, 21.943046 ], [ -105.820312, 21.943046 ], [ -105.820312, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 22.917923 ], [ -106.523438, 22.917923 ], [ -106.523438, 23.563987 ], [ -106.875000, 23.563987 ], [ -106.875000, 23.885838 ], [ -107.226562, 23.885838 ], [ -107.226562, 24.206890 ], [ -107.929688, 24.206890 ], [ -107.929688, 24.846565 ], [ -108.281250, 24.846565 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 25.482951 ], [ -109.335938, 25.482951 ], [ -109.335938, 26.431228 ], [ -109.687500, 26.431228 ], [ -109.687500, 26.745610 ], [ -110.390625, 26.745610 ], [ -110.390625, 27.371767 ], [ -110.742188, 27.371767 ], [ -110.742188, 27.994401 ], [ -111.445312, 27.994401 ], [ -111.445312, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.613459 ], [ -112.148438, 28.613459 ], [ -112.148438, 29.228890 ], [ -112.500000, 29.228890 ], [ -112.500000, 29.840644 ], [ -112.851562, 29.840644 ], [ -112.851562, 30.448674 ], [ -113.203125, 30.448674 ], [ -113.203125, 31.052934 ], [ -113.554688, 31.052934 ], [ -113.554688, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.653381 ], [ -114.609375, 31.653381 ], [ -114.609375, 31.353637 ], [ -114.960938, 31.353637 ], [ -114.960938, 31.052934 ], [ -114.609375, 31.052934 ], [ -114.609375, 29.840644 ], [ -114.257812, 29.840644 ], [ -114.257812, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.921631 ], [ -113.554688, 28.921631 ], [ -113.554688, 28.613459 ], [ -113.203125, 28.613459 ], [ -113.203125, 28.304381 ], [ -112.851562, 28.304381 ], [ -112.851562, 27.371767 ], [ -112.500000, 27.371767 ], [ -112.500000, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.745610 ], [ -111.445312, 26.745610 ], [ -111.445312, 25.482951 ], [ -111.093750, 25.482951 ], [ -111.093750, 24.846565 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.206890 ], [ -110.039062, 24.206890 ], [ -110.039062, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 23.563987 ], [ -109.335938, 23.563987 ], [ -109.335938, 22.917923 ], [ -110.039062, 22.917923 ], [ -110.039062, 23.241346 ], [ -110.390625, 23.241346 ], [ -110.390625, 23.563987 ], [ -111.093750, 23.563987 ], [ -111.093750, 23.885838 ], [ -111.445312, 23.885838 ], [ -111.445312, 24.206890 ], [ -111.796875, 24.206890 ], [ -111.796875, 24.527135 ], [ -112.148438, 24.527135 ], [ -112.148438, 26.115986 ], [ -112.851562, 26.115986 ], [ -112.851562, 26.431228 ], [ -113.554688, 26.431228 ], [ -113.554688, 26.745610 ], [ -114.609375, 26.745610 ], [ -114.609375, 27.371767 ], [ -114.960938, 27.371767 ], [ -114.960938, 27.683528 ], [ -114.257812, 27.683528 ], [ -114.257812, 28.613459 ], [ -114.609375, 28.613459 ], [ -114.609375, 28.921631 ], [ -114.960938, 28.921631 ], [ -114.960938, 29.228890 ], [ -115.664062, 29.228890 ], [ -115.664062, 29.840644 ], [ -116.015625, 29.840644 ], [ -116.015625, 30.448674 ], [ -116.367188, 30.448674 ], [ -116.367188, 31.052934 ], [ -116.718750, 31.052934 ], [ -116.718750, 31.952162 ], [ -117.070312, 31.952162 ], [ -117.070312, 32.546813 ], [ -114.960938, 32.546813 ], [ -114.960938, 32.842674 ], [ -114.609375, 32.842674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.284185 ], [ -88.593750, 15.284185 ], [ -88.593750, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.581921 ], [ -90.703125, 13.581921 ], [ -90.703125, 13.923404 ], [ -91.757812, 13.923404 ], [ -91.757812, 14.264383 ], [ -92.109375, 14.264383 ], [ -92.109375, 15.623037 ], [ -91.757812, 15.623037 ], [ -91.757812, 15.961329 ], [ -90.351562, 15.961329 ], [ -90.351562, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.406250, 16.972741 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -90.000000, 17.978733 ], [ -90.000000, 17.644022 ], [ -89.296875, 17.644022 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.623037 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.978733 ], [ -90.000000, 17.644022 ], [ -89.296875, 17.644022 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.284185 ], [ -88.593750, 15.284185 ], [ -88.593750, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.581921 ], [ -90.703125, 13.581921 ], [ -90.703125, 13.923404 ], [ -91.757812, 13.923404 ], [ -91.757812, 14.264383 ], [ -92.109375, 14.264383 ], [ -92.109375, 15.623037 ], [ -91.757812, 15.623037 ], [ -91.757812, 15.961329 ], [ -90.351562, 15.961329 ], [ -90.351562, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.406250, 16.972741 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -90.000000, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 16.299051 ], [ -88.593750, 16.299051 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ], [ -88.242188, 16.299051 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 16.299051 ], [ -88.593750, 16.299051 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.239945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.242188, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 13.923404 ], [ -88.945312, 13.923404 ], [ -88.945312, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.944785 ], [ -88.593750, 14.944785 ], [ -88.593750, 15.284185 ], [ -88.242188, 15.284185 ], [ -88.242188, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.284185 ], [ -88.242188, 13.923404 ], [ -88.945312, 13.923404 ], [ -88.945312, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.944785 ], [ -88.593750, 14.944785 ], [ -88.593750, 15.284185 ], [ -88.242188, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.539062, 65.512963 ], [ -177.539062, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.658275 ], [ -178.945312, 65.658275 ], [ -178.945312, 65.946472 ], [ -179.296875, 65.946472 ], [ -179.296875, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 67.204032 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -169.804688, 65.946472 ], [ -169.804688, 65.802776 ], [ -170.156250, 65.802776 ], [ -170.156250, 65.658275 ], [ -170.507812, 65.658275 ], [ -170.507812, 65.512963 ], [ -171.562500, 65.512963 ], [ -171.562500, 65.366837 ], [ -172.617188, 65.366837 ], [ -172.617188, 64.320872 ], [ -174.375000, 64.320872 ], [ -174.375000, 64.472794 ], [ -174.726562, 64.472794 ], [ -174.726562, 64.623877 ], [ -175.429688, 64.623877 ], [ -175.429688, 64.774125 ], [ -176.132812, 64.774125 ], [ -176.132812, 65.366837 ], [ -176.835938, 65.366837 ], [ -176.835938, 65.512963 ], [ -177.539062, 65.512963 ] ] ], [ [ [ -179.648438, 65.658275 ], [ -179.648438, 65.366837 ], [ -179.296875, 65.366837 ], [ -179.296875, 65.219894 ], [ -179.648438, 65.219894 ], [ -179.648438, 64.923542 ], [ -180.000000, 64.923542 ], [ -180.000000, 65.658275 ], [ -179.648438, 65.658275 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -175.078125, 67.204032 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -169.804688, 65.946472 ], [ -169.804688, 65.802776 ], [ -170.156250, 65.802776 ], [ -170.156250, 65.658275 ], [ -170.507812, 65.658275 ], [ -170.507812, 65.512963 ], [ -171.562500, 65.512963 ], [ -171.562500, 65.366837 ], [ -172.617188, 65.366837 ], [ -172.617188, 64.320872 ], [ -174.375000, 64.320872 ], [ -174.375000, 64.472794 ], [ -174.726562, 64.472794 ], [ -174.726562, 64.623877 ], [ -175.429688, 64.623877 ], [ -175.429688, 64.774125 ], [ -176.132812, 64.774125 ], [ -176.132812, 65.366837 ], [ -176.835938, 65.366837 ], [ -176.835938, 65.512963 ], [ -177.539062, 65.512963 ], [ -177.539062, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.658275 ], [ -178.945312, 65.658275 ], [ -178.945312, 65.946472 ], [ -179.296875, 65.946472 ], [ -179.296875, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 67.204032 ], [ -175.078125, 67.204032 ] ] ], [ [ [ -180.000000, 65.658275 ], [ -179.648438, 65.658275 ], [ -179.648438, 65.366837 ], [ -179.296875, 65.366837 ], [ -179.296875, 65.219894 ], [ -179.648438, 65.219894 ], [ -179.648438, 64.923542 ], [ -180.000000, 64.923542 ], [ -180.000000, 65.658275 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.570312, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.841848 ], [ -94.570312, 77.841848 ], [ -94.570312, 77.767582 ] ] ], [ [ [ -110.390625, 77.989049 ], [ -109.687500, 77.989049 ], [ -109.687500, 77.841848 ], [ -110.039062, 77.841848 ], [ -110.039062, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.692870 ], [ -113.554688, 77.692870 ], [ -113.554688, 77.841848 ], [ -113.203125, 77.841848 ], [ -113.203125, 77.989049 ], [ -112.851562, 77.989049 ], [ -112.851562, 78.061989 ], [ -111.796875, 78.061989 ], [ -111.796875, 78.134493 ], [ -111.093750, 78.134493 ], [ -111.093750, 78.061989 ], [ -110.390625, 78.061989 ], [ -110.390625, 77.989049 ] ] ], [ [ [ -98.437500, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.767792 ], [ -96.679688, 78.767792 ], [ -96.679688, 78.699106 ], [ -96.328125, 78.699106 ], [ -96.328125, 78.560488 ], [ -95.976562, 78.560488 ], [ -95.976562, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.206563 ], [ -95.976562, 78.206563 ], [ -95.976562, 77.989049 ], [ -96.328125, 77.989049 ], [ -96.328125, 77.915669 ], [ -97.031250, 77.915669 ], [ -97.031250, 77.841848 ], [ -97.734375, 77.841848 ], [ -97.734375, 77.989049 ], [ -98.085938, 77.989049 ], [ -98.085938, 78.278201 ], [ -98.437500, 78.278201 ], [ -98.437500, 78.699106 ], [ -98.789062, 78.699106 ], [ -98.789062, 78.903929 ], [ -98.437500, 78.903929 ], [ -98.437500, 78.836065 ] ] ], [ [ [ -100.546875, 78.420193 ], [ -100.195312, 78.420193 ], [ -100.195312, 78.134493 ], [ -99.843750, 78.134493 ], [ -99.843750, 77.915669 ], [ -100.898438, 77.915669 ], [ -100.898438, 77.989049 ], [ -101.601562, 77.989049 ], [ -101.601562, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.134493 ], [ -102.304688, 78.134493 ], [ -102.304688, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.278201 ], [ -103.007812, 78.278201 ], [ -103.007812, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -104.414062, 78.490552 ], [ -104.414062, 78.630006 ], [ -104.062500, 78.630006 ], [ -104.062500, 78.699106 ], [ -104.414062, 78.699106 ], [ -104.414062, 78.767792 ], [ -105.117188, 78.767792 ], [ -105.117188, 78.836065 ], [ -105.468750, 78.836065 ], [ -105.468750, 79.302640 ], [ -105.117188, 79.302640 ], [ -105.117188, 79.237185 ], [ -104.062500, 79.237185 ], [ -104.062500, 79.171335 ], [ -103.359375, 79.171335 ], [ -103.359375, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.971386 ], [ -101.953125, 78.971386 ], [ -101.953125, 78.903929 ], [ -101.601562, 78.903929 ], [ -101.601562, 78.836065 ], [ -101.250000, 78.836065 ], [ -101.250000, 78.767792 ], [ -100.898438, 78.767792 ], [ -100.898438, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.420193 ] ] ], [ [ [ -90.351562, 80.589727 ], [ -89.648438, 80.589727 ], [ -89.648438, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.356995 ], [ -88.242188, 80.356995 ], [ -88.242188, 78.490552 ], [ -88.593750, 78.490552 ], [ -88.593750, 78.349411 ], [ -88.945312, 78.349411 ], [ -88.945312, 78.278201 ], [ -89.648438, 78.278201 ], [ -89.648438, 78.206563 ], [ -91.406250, 78.206563 ], [ -91.406250, 78.278201 ], [ -92.460938, 78.278201 ], [ -92.460938, 78.349411 ], [ -92.812500, 78.349411 ], [ -92.812500, 78.420193 ], [ -93.164062, 78.420193 ], [ -93.164062, 78.560488 ], [ -93.515625, 78.560488 ], [ -93.515625, 78.699106 ], [ -93.867188, 78.699106 ], [ -93.867188, 79.171335 ], [ -93.515625, 79.171335 ], [ -93.515625, 79.302640 ], [ -93.164062, 79.302640 ], [ -93.164062, 79.367701 ], [ -95.273438, 79.367701 ], [ -95.273438, 79.496652 ], [ -95.625000, 79.496652 ], [ -95.625000, 79.624056 ], [ -95.976562, 79.624056 ], [ -95.976562, 79.812302 ], [ -96.328125, 79.812302 ], [ -96.328125, 80.058050 ], [ -96.679688, 80.058050 ], [ -96.679688, 80.238501 ], [ -96.328125, 80.238501 ], [ -96.328125, 80.474065 ], [ -95.976562, 80.474065 ], [ -95.976562, 80.647035 ], [ -95.625000, 80.647035 ], [ -95.625000, 80.816891 ], [ -95.273438, 80.816891 ], [ -95.273438, 80.928426 ], [ -94.570312, 80.928426 ], [ -94.570312, 80.983688 ], [ -94.218750, 80.983688 ], [ -94.218750, 81.093214 ], [ -94.570312, 81.093214 ], [ -94.570312, 81.201420 ], [ -93.164062, 81.201420 ], [ -93.164062, 81.255032 ], [ -92.460938, 81.255032 ], [ -92.460938, 81.147481 ], [ -92.109375, 81.147481 ], [ -92.109375, 81.038617 ], [ -91.757812, 81.038617 ], [ -91.757812, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ] ] ], [ [ [ -110.742188, 78.699106 ], [ -110.039062, 78.699106 ], [ -110.039062, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.420193 ], [ -112.500000, 78.420193 ], [ -112.500000, 78.560488 ], [ -112.148438, 78.560488 ], [ -112.148438, 78.699106 ], [ -111.796875, 78.699106 ], [ -111.796875, 78.767792 ], [ -111.445312, 78.767792 ], [ -111.445312, 78.836065 ], [ -111.093750, 78.836065 ], [ -111.093750, 78.767792 ], [ -110.742188, 78.767792 ], [ -110.742188, 78.699106 ] ] ], [ [ [ -88.242188, 80.647035 ], [ -88.593750, 80.647035 ], [ -88.593750, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.928426 ], [ -89.648438, 80.928426 ], [ -89.648438, 81.038617 ], [ -90.000000, 81.038617 ], [ -90.000000, 81.147481 ], [ -90.351562, 81.147481 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.873641 ], [ -91.406250, 81.873641 ], [ -91.406250, 81.923186 ], [ -91.054688, 81.923186 ], [ -91.054688, 81.972431 ], [ -90.351562, 81.972431 ], [ -90.351562, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.070028 ], [ -89.296875, 82.070028 ], [ -89.296875, 82.118384 ], [ -88.242188, 82.118384 ], [ -88.242188, 80.647035 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.570312, 77.841848 ], [ -94.570312, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.841848 ], [ -94.570312, 77.841848 ] ] ], [ [ [ -111.093750, 78.134493 ], [ -111.093750, 78.061989 ], [ -110.390625, 78.061989 ], [ -110.390625, 77.989049 ], [ -109.687500, 77.989049 ], [ -109.687500, 77.841848 ], [ -110.039062, 77.841848 ], [ -110.039062, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.692870 ], [ -113.554688, 77.692870 ], [ -113.554688, 77.841848 ], [ -113.203125, 77.841848 ], [ -113.203125, 77.989049 ], [ -112.851562, 77.989049 ], [ -112.851562, 78.061989 ], [ -111.796875, 78.061989 ], [ -111.796875, 78.134493 ], [ -111.093750, 78.134493 ] ] ], [ [ [ -98.437500, 78.903929 ], [ -98.437500, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.767792 ], [ -96.679688, 78.767792 ], [ -96.679688, 78.699106 ], [ -96.328125, 78.699106 ], [ -96.328125, 78.560488 ], [ -95.976562, 78.560488 ], [ -95.976562, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.206563 ], [ -95.976562, 78.206563 ], [ -95.976562, 77.989049 ], [ -96.328125, 77.989049 ], [ -96.328125, 77.915669 ], [ -97.031250, 77.915669 ], [ -97.031250, 77.841848 ], [ -97.734375, 77.841848 ], [ -97.734375, 77.989049 ], [ -98.085938, 77.989049 ], [ -98.085938, 78.278201 ], [ -98.437500, 78.278201 ], [ -98.437500, 78.699106 ], [ -98.789062, 78.699106 ], [ -98.789062, 78.903929 ], [ -98.437500, 78.903929 ] ] ], [ [ [ -105.117188, 79.302640 ], [ -105.117188, 79.237185 ], [ -104.062500, 79.237185 ], [ -104.062500, 79.171335 ], [ -103.359375, 79.171335 ], [ -103.359375, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.971386 ], [ -101.953125, 78.971386 ], [ -101.953125, 78.903929 ], [ -101.601562, 78.903929 ], [ -101.601562, 78.836065 ], [ -101.250000, 78.836065 ], [ -101.250000, 78.767792 ], [ -100.898438, 78.767792 ], [ -100.898438, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.420193 ], [ -100.195312, 78.420193 ], [ -100.195312, 78.134493 ], [ -99.843750, 78.134493 ], [ -99.843750, 77.915669 ], [ -100.898438, 77.915669 ], [ -100.898438, 77.989049 ], [ -101.601562, 77.989049 ], [ -101.601562, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.134493 ], [ -102.304688, 78.134493 ], [ -102.304688, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.278201 ], [ -103.007812, 78.278201 ], [ -103.007812, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -104.414062, 78.490552 ], [ -104.414062, 78.630006 ], [ -104.062500, 78.630006 ], [ -104.062500, 78.699106 ], [ -104.414062, 78.699106 ], [ -104.414062, 78.767792 ], [ -105.117188, 78.767792 ], [ -105.117188, 78.836065 ], [ -105.468750, 78.836065 ], [ -105.468750, 79.302640 ], [ -105.117188, 79.302640 ] ] ], [ [ [ -92.460938, 81.255032 ], [ -92.460938, 81.147481 ], [ -92.109375, 81.147481 ], [ -92.109375, 81.038617 ], [ -91.757812, 81.038617 ], [ -91.757812, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -89.648438, 80.589727 ], [ -89.648438, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.356995 ], [ -88.242188, 80.356995 ], [ -88.242188, 78.490552 ], [ -88.593750, 78.490552 ], [ -88.593750, 78.349411 ], [ -88.945312, 78.349411 ], [ -88.945312, 78.278201 ], [ -89.648438, 78.278201 ], [ -89.648438, 78.206563 ], [ -91.406250, 78.206563 ], [ -91.406250, 78.278201 ], [ -92.460938, 78.278201 ], [ -92.460938, 78.349411 ], [ -92.812500, 78.349411 ], [ -92.812500, 78.420193 ], [ -93.164062, 78.420193 ], [ -93.164062, 78.560488 ], [ -93.515625, 78.560488 ], [ -93.515625, 78.699106 ], [ -93.867188, 78.699106 ], [ -93.867188, 79.171335 ], [ -93.515625, 79.171335 ], [ -93.515625, 79.302640 ], [ -93.164062, 79.302640 ], [ -93.164062, 79.367701 ], [ -95.273438, 79.367701 ], [ -95.273438, 79.496652 ], [ -95.625000, 79.496652 ], [ -95.625000, 79.624056 ], [ -95.976562, 79.624056 ], [ -95.976562, 79.812302 ], [ -96.328125, 79.812302 ], [ -96.328125, 80.058050 ], [ -96.679688, 80.058050 ], [ -96.679688, 80.238501 ], [ -96.328125, 80.238501 ], [ -96.328125, 80.474065 ], [ -95.976562, 80.474065 ], [ -95.976562, 80.647035 ], [ -95.625000, 80.647035 ], [ -95.625000, 80.816891 ], [ -95.273438, 80.816891 ], [ -95.273438, 80.928426 ], [ -94.570312, 80.928426 ], [ -94.570312, 80.983688 ], [ -94.218750, 80.983688 ], [ -94.218750, 81.093214 ], [ -94.570312, 81.093214 ], [ -94.570312, 81.201420 ], [ -93.164062, 81.201420 ], [ -93.164062, 81.255032 ], [ -92.460938, 81.255032 ] ] ], [ [ [ -111.093750, 78.836065 ], [ -111.093750, 78.767792 ], [ -110.742188, 78.767792 ], [ -110.742188, 78.699106 ], [ -110.039062, 78.699106 ], [ -110.039062, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.420193 ], [ -112.500000, 78.420193 ], [ -112.500000, 78.560488 ], [ -112.148438, 78.560488 ], [ -112.148438, 78.699106 ], [ -111.796875, 78.699106 ], [ -111.796875, 78.767792 ], [ -111.445312, 78.767792 ], [ -111.445312, 78.836065 ], [ -111.093750, 78.836065 ] ] ], [ [ [ -88.242188, 82.118384 ], [ -88.242188, 80.647035 ], [ -88.593750, 80.647035 ], [ -88.593750, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.928426 ], [ -89.648438, 80.928426 ], [ -89.648438, 81.038617 ], [ -90.000000, 81.038617 ], [ -90.000000, 81.147481 ], [ -90.351562, 81.147481 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.873641 ], [ -91.406250, 81.873641 ], [ -91.406250, 81.923186 ], [ -91.054688, 81.923186 ], [ -91.054688, 81.972431 ], [ -90.351562, 81.972431 ], [ -90.351562, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.070028 ], [ -89.296875, 82.070028 ], [ -89.296875, 82.118384 ], [ -88.242188, 82.118384 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.937500, 74.211983 ], [ -124.804688, 74.211983 ], [ -124.804688, 74.307353 ], [ -123.046875, 74.307353 ], [ -123.046875, 74.402163 ], [ -121.640625, 74.402163 ], [ -121.640625, 74.307353 ], [ -120.937500, 74.307353 ], [ -120.937500, 74.211983 ] ] ], [ [ [ -108.632812, 76.434604 ], [ -108.281250, 76.434604 ], [ -108.281250, 76.016094 ], [ -107.929688, 76.016094 ], [ -107.929688, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 75.930885 ], [ -106.875000, 75.930885 ], [ -106.875000, 76.016094 ], [ -106.523438, 76.016094 ], [ -106.523438, 75.930885 ], [ -105.820312, 75.930885 ], [ -105.820312, 75.230667 ], [ -106.171875, 75.230667 ], [ -106.171875, 75.050354 ], [ -106.875000, 75.050354 ], [ -106.875000, 74.959392 ], [ -108.632812, 74.959392 ], [ -108.632812, 74.867889 ], [ -109.687500, 74.867889 ], [ -109.687500, 74.775843 ], [ -110.390625, 74.775843 ], [ -110.390625, 74.683250 ], [ -110.742188, 74.683250 ], [ -110.742188, 74.590108 ], [ -111.093750, 74.590108 ], [ -111.093750, 74.496413 ], [ -111.796875, 74.496413 ], [ -111.796875, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.683250 ], [ -113.554688, 74.683250 ], [ -113.554688, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.867889 ], [ -112.500000, 74.867889 ], [ -112.500000, 74.959392 ], [ -112.148438, 74.959392 ], [ -112.148438, 75.050354 ], [ -111.796875, 75.050354 ], [ -111.796875, 75.140778 ], [ -113.906250, 75.140778 ], [ -113.906250, 75.050354 ], [ -117.070312, 75.050354 ], [ -117.070312, 75.140778 ], [ -117.773438, 75.140778 ], [ -117.773438, 75.320025 ], [ -117.421875, 75.320025 ], [ -117.421875, 75.584937 ], [ -117.070312, 75.584937 ], [ -117.070312, 75.758940 ], [ -116.718750, 75.758940 ], [ -116.718750, 76.016094 ], [ -116.367188, 76.016094 ], [ -116.367188, 76.184995 ], [ -116.015625, 76.184995 ], [ -116.015625, 76.351896 ], [ -115.664062, 76.351896 ], [ -115.664062, 76.434604 ], [ -114.609375, 76.434604 ], [ -114.609375, 76.351896 ], [ -114.257812, 76.351896 ], [ -114.257812, 76.268695 ], [ -113.554688, 76.268695 ], [ -113.554688, 76.184995 ], [ -112.851562, 76.184995 ], [ -112.851562, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 76.016094 ], [ -112.148438, 76.016094 ], [ -112.148438, 75.930885 ], [ -111.796875, 75.930885 ], [ -111.796875, 75.845169 ], [ -111.445312, 75.845169 ], [ -111.445312, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.584937 ], [ -110.039062, 75.584937 ], [ -110.039062, 75.497157 ], [ -108.984375, 75.497157 ], [ -108.984375, 75.584937 ], [ -109.335938, 75.584937 ], [ -109.335938, 75.845169 ], [ -109.687500, 75.845169 ], [ -109.687500, 76.016094 ], [ -110.039062, 76.016094 ], [ -110.039062, 76.268695 ], [ -110.390625, 76.268695 ], [ -110.390625, 76.516819 ], [ -110.039062, 76.516819 ], [ -110.039062, 76.679785 ], [ -109.687500, 76.679785 ], [ -109.687500, 76.760541 ], [ -109.335938, 76.760541 ], [ -109.335938, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.434604 ] ] ], [ [ [ -93.867188, 76.760541 ], [ -91.757812, 76.760541 ], [ -91.757812, 76.679785 ], [ -91.406250, 76.679785 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.268695 ], [ -91.054688, 76.268695 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.584937 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.496413 ], [ -90.351562, 74.496413 ], [ -90.351562, 74.590108 ], [ -91.054688, 74.590108 ], [ -91.054688, 74.683250 ], [ -91.757812, 74.683250 ], [ -91.757812, 74.775843 ], [ -92.460938, 74.775843 ], [ -92.460938, 75.140778 ], [ -92.812500, 75.140778 ], [ -92.812500, 75.930885 ], [ -93.164062, 75.930885 ], [ -93.164062, 76.100796 ], [ -93.515625, 76.100796 ], [ -93.515625, 76.268695 ], [ -93.867188, 76.268695 ], [ -93.867188, 76.351896 ], [ -95.273438, 76.351896 ], [ -95.273438, 76.434604 ], [ -96.328125, 76.434604 ], [ -96.328125, 76.598545 ], [ -96.679688, 76.598545 ], [ -96.679688, 76.679785 ], [ -97.031250, 76.679785 ], [ -97.031250, 76.920614 ], [ -96.679688, 76.920614 ], [ -96.679688, 77.157163 ], [ -95.976562, 77.157163 ], [ -95.976562, 77.078784 ], [ -94.570312, 77.078784 ], [ -94.570312, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.920614 ], [ -93.867188, 76.920614 ], [ -93.867188, 76.760541 ] ] ], [ [ [ -94.218750, 75.320025 ], [ -93.867188, 75.320025 ], [ -93.867188, 75.140778 ], [ -93.515625, 75.140778 ], [ -93.515625, 74.867889 ], [ -93.867188, 74.867889 ], [ -93.867188, 74.683250 ], [ -94.218750, 74.683250 ], [ -94.218750, 74.590108 ], [ -95.273438, 74.590108 ], [ -95.273438, 74.683250 ], [ -95.976562, 74.683250 ], [ -95.976562, 74.775843 ], [ -96.328125, 74.775843 ], [ -96.328125, 74.867889 ], [ -96.679688, 74.867889 ], [ -96.679688, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.408854 ], [ -95.976562, 75.408854 ], [ -95.976562, 75.497157 ], [ -95.273438, 75.497157 ], [ -95.273438, 75.584937 ], [ -94.570312, 75.584937 ], [ -94.570312, 75.497157 ], [ -94.218750, 75.497157 ], [ -94.218750, 75.320025 ] ] ], [ [ [ -98.437500, 76.516819 ], [ -98.085938, 76.516819 ], [ -98.085938, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.320025 ], [ -98.085938, 75.320025 ], [ -98.085938, 74.959392 ], [ -98.789062, 74.959392 ], [ -98.789062, 74.867889 ], [ -100.195312, 74.867889 ], [ -100.195312, 74.959392 ], [ -100.898438, 74.959392 ], [ -100.898438, 75.672197 ], [ -101.601562, 75.672197 ], [ -101.601562, 75.584937 ], [ -102.656250, 75.584937 ], [ -102.656250, 76.351896 ], [ -102.304688, 76.351896 ], [ -102.304688, 76.268695 ], [ -101.250000, 76.268695 ], [ -101.250000, 76.351896 ], [ -100.898438, 76.351896 ], [ -100.898438, 76.434604 ], [ -100.546875, 76.434604 ], [ -100.546875, 76.516819 ], [ -100.195312, 76.516819 ], [ -100.195312, 76.598545 ], [ -99.843750, 76.598545 ], [ -99.843750, 76.679785 ], [ -99.492188, 76.679785 ], [ -99.492188, 76.598545 ], [ -98.437500, 76.598545 ], [ -98.437500, 76.516819 ] ] ], [ [ [ -118.476562, 77.466028 ], [ -117.070312, 77.466028 ], [ -117.070312, 77.542096 ], [ -116.367188, 77.542096 ], [ -116.367188, 76.760541 ], [ -116.718750, 76.760541 ], [ -116.718750, 76.598545 ], [ -117.070312, 76.598545 ], [ -117.070312, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.434604 ], [ -118.476562, 76.434604 ], [ -118.476562, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.268695 ], [ -119.179688, 76.268695 ], [ -119.179688, 76.100796 ], [ -119.531250, 76.100796 ], [ -119.531250, 76.016094 ], [ -120.585938, 76.016094 ], [ -120.585938, 75.930885 ], [ -121.992188, 75.930885 ], [ -121.992188, 76.016094 ], [ -122.695312, 76.016094 ], [ -122.695312, 76.184995 ], [ -122.343750, 76.184995 ], [ -122.343750, 76.351896 ], [ -121.992188, 76.351896 ], [ -121.992188, 76.516819 ], [ -121.640625, 76.516819 ], [ -121.640625, 76.679785 ], [ -121.289062, 76.679785 ], [ -121.289062, 76.840816 ], [ -120.937500, 76.840816 ], [ -120.937500, 76.999935 ], [ -120.585938, 76.999935 ], [ -120.585938, 77.078784 ], [ -120.234375, 77.078784 ], [ -120.234375, 77.235074 ], [ -119.882812, 77.235074 ], [ -119.882812, 77.312520 ], [ -119.531250, 77.312520 ], [ -119.531250, 77.466028 ], [ -119.179688, 77.466028 ], [ -119.179688, 77.542096 ], [ -118.476562, 77.542096 ], [ -118.476562, 77.466028 ] ] ], [ [ [ -88.242188, 76.434604 ], [ -89.648438, 76.434604 ], [ -89.648438, 76.920614 ], [ -89.296875, 76.920614 ], [ -89.296875, 76.999935 ], [ -88.593750, 76.999935 ], [ -88.593750, 77.078784 ], [ -88.242188, 77.078784 ], [ -88.242188, 76.434604 ] ] ], [ [ [ -110.742188, 77.542096 ], [ -111.093750, 77.542096 ], [ -111.093750, 77.466028 ], [ -111.796875, 77.466028 ], [ -111.796875, 77.389504 ], [ -112.500000, 77.389504 ], [ -112.500000, 77.466028 ], [ -112.851562, 77.466028 ], [ -112.851562, 77.617709 ], [ -110.742188, 77.617709 ], [ -110.742188, 77.542096 ] ] ], [ [ [ -93.867188, 77.617709 ], [ -93.867188, 77.466028 ], [ -95.625000, 77.466028 ], [ -95.625000, 77.542096 ], [ -96.328125, 77.542096 ], [ -96.328125, 77.617709 ], [ -93.867188, 77.617709 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.640625, 74.402163 ], [ -121.640625, 74.307353 ], [ -120.937500, 74.307353 ], [ -120.937500, 74.211983 ], [ -124.804688, 74.211983 ], [ -124.804688, 74.307353 ], [ -123.046875, 74.307353 ], [ -123.046875, 74.402163 ], [ -121.640625, 74.402163 ] ] ], [ [ [ -109.335938, 76.760541 ], [ -109.335938, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.434604 ], [ -108.281250, 76.434604 ], [ -108.281250, 76.016094 ], [ -107.929688, 76.016094 ], [ -107.929688, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 75.930885 ], [ -106.875000, 75.930885 ], [ -106.875000, 76.016094 ], [ -106.523438, 76.016094 ], [ -106.523438, 75.930885 ], [ -105.820312, 75.930885 ], [ -105.820312, 75.230667 ], [ -106.171875, 75.230667 ], [ -106.171875, 75.050354 ], [ -106.875000, 75.050354 ], [ -106.875000, 74.959392 ], [ -108.632812, 74.959392 ], [ -108.632812, 74.867889 ], [ -109.687500, 74.867889 ], [ -109.687500, 74.775843 ], [ -110.390625, 74.775843 ], [ -110.390625, 74.683250 ], [ -110.742188, 74.683250 ], [ -110.742188, 74.590108 ], [ -111.093750, 74.590108 ], [ -111.093750, 74.496413 ], [ -111.796875, 74.496413 ], [ -111.796875, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.683250 ], [ -113.554688, 74.683250 ], [ -113.554688, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.867889 ], [ -112.500000, 74.867889 ], [ -112.500000, 74.959392 ], [ -112.148438, 74.959392 ], [ -112.148438, 75.050354 ], [ -111.796875, 75.050354 ], [ -111.796875, 75.140778 ], [ -113.906250, 75.140778 ], [ -113.906250, 75.050354 ], [ -117.070312, 75.050354 ], [ -117.070312, 75.140778 ], [ -117.773438, 75.140778 ], [ -117.773438, 75.320025 ], [ -117.421875, 75.320025 ], [ -117.421875, 75.584937 ], [ -117.070312, 75.584937 ], [ -117.070312, 75.758940 ], [ -116.718750, 75.758940 ], [ -116.718750, 76.016094 ], [ -116.367188, 76.016094 ], [ -116.367188, 76.184995 ], [ -116.015625, 76.184995 ], [ -116.015625, 76.351896 ], [ -115.664062, 76.351896 ], [ -115.664062, 76.434604 ], [ -114.609375, 76.434604 ], [ -114.609375, 76.351896 ], [ -114.257812, 76.351896 ], [ -114.257812, 76.268695 ], [ -113.554688, 76.268695 ], [ -113.554688, 76.184995 ], [ -112.851562, 76.184995 ], [ -112.851562, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 76.016094 ], [ -112.148438, 76.016094 ], [ -112.148438, 75.930885 ], [ -111.796875, 75.930885 ], [ -111.796875, 75.845169 ], [ -111.445312, 75.845169 ], [ -111.445312, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.584937 ], [ -110.039062, 75.584937 ], [ -110.039062, 75.497157 ], [ -108.984375, 75.497157 ], [ -108.984375, 75.584937 ], [ -109.335938, 75.584937 ], [ -109.335938, 75.845169 ], [ -109.687500, 75.845169 ], [ -109.687500, 76.016094 ], [ -110.039062, 76.016094 ], [ -110.039062, 76.268695 ], [ -110.390625, 76.268695 ], [ -110.390625, 76.516819 ], [ -110.039062, 76.516819 ], [ -110.039062, 76.679785 ], [ -109.687500, 76.679785 ], [ -109.687500, 76.760541 ], [ -109.335938, 76.760541 ] ] ], [ [ [ -95.976562, 77.157163 ], [ -95.976562, 77.078784 ], [ -94.570312, 77.078784 ], [ -94.570312, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.920614 ], [ -93.867188, 76.920614 ], [ -93.867188, 76.760541 ], [ -91.757812, 76.760541 ], [ -91.757812, 76.679785 ], [ -91.406250, 76.679785 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.268695 ], [ -91.054688, 76.268695 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.584937 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.496413 ], [ -90.351562, 74.496413 ], [ -90.351562, 74.590108 ], [ -91.054688, 74.590108 ], [ -91.054688, 74.683250 ], [ -91.757812, 74.683250 ], [ -91.757812, 74.775843 ], [ -92.460938, 74.775843 ], [ -92.460938, 75.140778 ], [ -92.812500, 75.140778 ], [ -92.812500, 75.930885 ], [ -93.164062, 75.930885 ], [ -93.164062, 76.100796 ], [ -93.515625, 76.100796 ], [ -93.515625, 76.268695 ], [ -93.867188, 76.268695 ], [ -93.867188, 76.351896 ], [ -95.273438, 76.351896 ], [ -95.273438, 76.434604 ], [ -96.328125, 76.434604 ], [ -96.328125, 76.598545 ], [ -96.679688, 76.598545 ], [ -96.679688, 76.679785 ], [ -97.031250, 76.679785 ], [ -97.031250, 76.920614 ], [ -96.679688, 76.920614 ], [ -96.679688, 77.157163 ], [ -95.976562, 77.157163 ] ] ], [ [ [ -94.570312, 75.584937 ], [ -94.570312, 75.497157 ], [ -94.218750, 75.497157 ], [ -94.218750, 75.320025 ], [ -93.867188, 75.320025 ], [ -93.867188, 75.140778 ], [ -93.515625, 75.140778 ], [ -93.515625, 74.867889 ], [ -93.867188, 74.867889 ], [ -93.867188, 74.683250 ], [ -94.218750, 74.683250 ], [ -94.218750, 74.590108 ], [ -95.273438, 74.590108 ], [ -95.273438, 74.683250 ], [ -95.976562, 74.683250 ], [ -95.976562, 74.775843 ], [ -96.328125, 74.775843 ], [ -96.328125, 74.867889 ], [ -96.679688, 74.867889 ], [ -96.679688, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.408854 ], [ -95.976562, 75.408854 ], [ -95.976562, 75.497157 ], [ -95.273438, 75.497157 ], [ -95.273438, 75.584937 ], [ -94.570312, 75.584937 ] ] ], [ [ [ -99.492188, 76.679785 ], [ -99.492188, 76.598545 ], [ -98.437500, 76.598545 ], [ -98.437500, 76.516819 ], [ -98.085938, 76.516819 ], [ -98.085938, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.320025 ], [ -98.085938, 75.320025 ], [ -98.085938, 74.959392 ], [ -98.789062, 74.959392 ], [ -98.789062, 74.867889 ], [ -100.195312, 74.867889 ], [ -100.195312, 74.959392 ], [ -100.898438, 74.959392 ], [ -100.898438, 75.672197 ], [ -101.601562, 75.672197 ], [ -101.601562, 75.584937 ], [ -102.656250, 75.584937 ], [ -102.656250, 76.351896 ], [ -102.304688, 76.351896 ], [ -102.304688, 76.268695 ], [ -101.250000, 76.268695 ], [ -101.250000, 76.351896 ], [ -100.898438, 76.351896 ], [ -100.898438, 76.434604 ], [ -100.546875, 76.434604 ], [ -100.546875, 76.516819 ], [ -100.195312, 76.516819 ], [ -100.195312, 76.598545 ], [ -99.843750, 76.598545 ], [ -99.843750, 76.679785 ], [ -99.492188, 76.679785 ] ] ], [ [ [ -118.476562, 77.542096 ], [ -118.476562, 77.466028 ], [ -117.070312, 77.466028 ], [ -116.367188, 77.542096 ], [ -116.367188, 76.760541 ], [ -116.718750, 76.760541 ], [ -116.718750, 76.598545 ], [ -117.070312, 76.598545 ], [ -117.070312, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.434604 ], [ -118.476562, 76.434604 ], [ -118.476562, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.268695 ], [ -119.179688, 76.268695 ], [ -119.179688, 76.100796 ], [ -119.531250, 76.100796 ], [ -119.531250, 76.016094 ], [ -120.585938, 76.016094 ], [ -120.585938, 75.930885 ], [ -121.992188, 75.930885 ], [ -121.992188, 76.016094 ], [ -122.695312, 76.016094 ], [ -122.695312, 76.184995 ], [ -122.343750, 76.184995 ], [ -122.343750, 76.351896 ], [ -121.992188, 76.351896 ], [ -121.992188, 76.516819 ], [ -121.640625, 76.516819 ], [ -121.640625, 76.679785 ], [ -121.289062, 76.679785 ], [ -121.289062, 76.840816 ], [ -120.937500, 76.840816 ], [ -120.937500, 76.999935 ], [ -120.585938, 76.999935 ], [ -120.585938, 77.078784 ], [ -120.234375, 77.078784 ], [ -120.234375, 77.235074 ], [ -119.882812, 77.235074 ], [ -119.882812, 77.312520 ], [ -119.531250, 77.312520 ], [ -119.531250, 77.466028 ], [ -119.179688, 77.466028 ], [ -119.179688, 77.542096 ], [ -118.476562, 77.542096 ] ] ], [ [ [ -88.242188, 77.078784 ], [ -88.242188, 76.434604 ], [ -89.648438, 76.434604 ], [ -89.648438, 76.920614 ], [ -89.296875, 76.920614 ], [ -89.296875, 76.999935 ], [ -88.593750, 76.999935 ], [ -88.593750, 77.078784 ], [ -88.242188, 77.078784 ] ] ], [ [ [ -110.742188, 77.617709 ], [ -110.742188, 77.542096 ], [ -111.093750, 77.542096 ], [ -111.093750, 77.466028 ], [ -111.796875, 77.466028 ], [ -111.796875, 77.389504 ], [ -112.500000, 77.389504 ], [ -112.500000, 77.466028 ], [ -112.851562, 77.466028 ], [ -112.851562, 77.617709 ], [ -110.742188, 77.617709 ] ] ], [ [ [ -93.867188, 77.617709 ], [ -93.867188, 77.466028 ], [ -95.625000, 77.466028 ], [ -95.625000, 77.542096 ], [ -96.328125, 77.542096 ], [ -96.328125, 77.617709 ], [ -93.867188, 77.617709 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -129.375000, 69.778952 ], [ -128.671875, 69.778952 ], [ -128.671875, 69.900118 ], [ -128.320312, 69.900118 ], [ -128.320312, 70.259452 ], [ -127.968750, 70.259452 ], [ -127.968750, 70.377854 ], [ -127.617188, 70.377854 ], [ -127.617188, 70.259452 ], [ -127.265625, 70.259452 ], [ -127.265625, 70.020587 ], [ -126.914062, 70.020587 ], [ -126.914062, 69.900118 ], [ -126.562500, 69.900118 ], [ -126.562500, 69.778952 ], [ -126.210938, 69.778952 ], [ -126.210938, 69.534518 ], [ -125.507812, 69.534518 ], [ -125.507812, 69.657086 ], [ -125.156250, 69.657086 ], [ -125.156250, 69.900118 ], [ -124.804688, 69.900118 ], [ -124.804688, 70.020587 ], [ -124.453125, 70.020587 ], [ -124.453125, 69.411242 ], [ -123.398438, 69.411242 ], [ -123.398438, 69.534518 ], [ -123.046875, 69.534518 ], [ -123.046875, 69.657086 ], [ -122.695312, 69.657086 ], [ -122.695312, 69.900118 ], [ -122.343750, 69.900118 ], [ -122.343750, 69.778952 ], [ -121.640625, 69.778952 ], [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.534518 ], [ -120.234375, 69.534518 ], [ -120.234375, 69.411242 ], [ -119.882812, 69.411242 ], [ -119.882812, 69.287257 ], [ -119.179688, 69.287257 ], [ -119.179688, 69.162558 ], [ -118.476562, 69.162558 ], [ -118.476562, 69.037142 ], [ -117.773438, 69.037142 ], [ -117.773438, 68.911005 ], [ -117.070312, 68.911005 ], [ -117.070312, 68.784144 ], [ -115.664062, 68.784144 ], [ -115.664062, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 68.007571 ], [ -114.960938, 68.007571 ], [ -114.960938, 67.875541 ], [ -114.609375, 67.875541 ], [ -114.609375, 67.742759 ], [ -110.390625, 67.742759 ], [ -110.390625, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.609221 ], [ -109.335938, 67.609221 ], [ -109.335938, 67.339861 ], [ -108.632812, 67.339861 ], [ -108.632812, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 65.802776 ], [ -140.976562, 65.802776 ], [ -140.976562, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 69.534518 ], [ -139.921875, 69.534518 ], [ -139.921875, 69.411242 ], [ -139.218750, 69.411242 ], [ -139.218750, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 69.037142 ], [ -137.109375, 69.037142 ], [ -137.109375, 68.911005 ], [ -136.054688, 68.911005 ], [ -136.054688, 69.162558 ], [ -135.703125, 69.162558 ], [ -135.703125, 69.287257 ], [ -135.351562, 69.287257 ], [ -135.351562, 69.411242 ], [ -134.648438, 69.411242 ], [ -134.648438, 69.534518 ], [ -134.296875, 69.534518 ], [ -134.296875, 69.657086 ], [ -133.945312, 69.657086 ], [ -133.945312, 69.534518 ], [ -132.539062, 69.534518 ], [ -132.539062, 69.657086 ], [ -131.835938, 69.657086 ], [ -131.835938, 69.778952 ], [ -131.484375, 69.778952 ], [ -131.484375, 69.900118 ], [ -130.781250, 69.900118 ], [ -130.781250, 70.020587 ], [ -130.078125, 70.020587 ], [ -130.078125, 70.140364 ], [ -129.726562, 70.140364 ], [ -129.726562, 70.020587 ], [ -129.375000, 70.020587 ], [ -129.375000, 69.778952 ] ] ], [ [ [ -114.257812, 72.816074 ], [ -114.609375, 72.816074 ], [ -114.609375, 72.607120 ], [ -113.906250, 72.607120 ], [ -113.906250, 72.711903 ], [ -113.203125, 72.711903 ], [ -113.203125, 72.816074 ], [ -112.148438, 72.816074 ], [ -112.148438, 72.711903 ], [ -111.796875, 72.711903 ], [ -111.796875, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.501722 ], [ -110.742188, 72.501722 ], [ -110.742188, 72.711903 ], [ -110.390625, 72.711903 ], [ -110.390625, 72.816074 ], [ -109.687500, 72.816074 ], [ -109.687500, 72.711903 ], [ -109.335938, 72.711903 ], [ -109.335938, 72.607120 ], [ -108.984375, 72.607120 ], [ -108.984375, 72.289067 ], [ -108.632812, 72.289067 ], [ -108.632812, 71.856229 ], [ -108.281250, 71.856229 ], [ -108.281250, 68.911005 ], [ -108.632812, 68.911005 ], [ -108.632812, 68.784144 ], [ -110.039062, 68.784144 ], [ -110.039062, 68.656555 ], [ -112.148438, 68.656555 ], [ -112.148438, 68.528235 ], [ -113.203125, 68.528235 ], [ -113.203125, 68.656555 ], [ -113.554688, 68.656555 ], [ -113.554688, 68.911005 ], [ -113.906250, 68.911005 ], [ -113.906250, 69.037142 ], [ -114.609375, 69.037142 ], [ -114.609375, 69.162558 ], [ -116.367188, 69.162558 ], [ -116.367188, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.534518 ], [ -117.070312, 69.534518 ], [ -117.070312, 69.778952 ], [ -117.421875, 69.778952 ], [ -117.421875, 69.900118 ], [ -116.718750, 69.900118 ], [ -116.718750, 70.020587 ], [ -116.015625, 70.020587 ], [ -116.015625, 70.140364 ], [ -115.312500, 70.140364 ], [ -115.312500, 70.259452 ], [ -114.609375, 70.259452 ], [ -114.609375, 70.140364 ], [ -113.203125, 70.140364 ], [ -113.203125, 70.259452 ], [ -112.500000, 70.259452 ], [ -112.500000, 70.377854 ], [ -113.203125, 70.377854 ], [ -113.203125, 70.495574 ], [ -113.906250, 70.495574 ], [ -113.906250, 70.612614 ], [ -114.960938, 70.612614 ], [ -114.960938, 70.495574 ], [ -117.773438, 70.495574 ], [ -117.773438, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -118.476562, 70.844673 ], [ -118.476562, 70.959697 ], [ -117.773438, 70.959697 ], [ -117.773438, 71.074056 ], [ -117.070312, 71.074056 ], [ -117.070312, 71.187754 ], [ -116.367188, 71.187754 ], [ -116.367188, 71.300793 ], [ -118.476562, 71.300793 ], [ -118.476562, 71.413177 ], [ -119.179688, 71.413177 ], [ -119.179688, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.635993 ], [ -119.179688, 71.635993 ], [ -119.179688, 71.856229 ], [ -118.828125, 71.856229 ], [ -118.828125, 72.073911 ], [ -118.476562, 72.073911 ], [ -118.476562, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.607120 ], [ -117.773438, 72.607120 ], [ -117.773438, 72.711903 ], [ -117.421875, 72.711903 ], [ -117.421875, 72.816074 ], [ -117.070312, 72.816074 ], [ -117.070312, 72.919635 ], [ -116.718750, 72.919635 ], [ -116.718750, 73.022592 ], [ -116.015625, 73.022592 ], [ -116.015625, 73.124945 ], [ -115.664062, 73.124945 ], [ -115.664062, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.124945 ], [ -114.257812, 73.124945 ], [ -114.257812, 72.816074 ] ] ], [ [ [ -117.421875, 74.116047 ], [ -117.070312, 74.116047 ], [ -117.070312, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.824820 ], [ -116.367188, 73.824820 ], [ -116.367188, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.428424 ], [ -115.664062, 73.428424 ], [ -115.664062, 73.327858 ], [ -116.367188, 73.327858 ], [ -116.367188, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.124945 ], [ -117.070312, 73.124945 ], [ -117.070312, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.919635 ], [ -117.773438, 72.919635 ], [ -117.773438, 72.816074 ], [ -118.125000, 72.816074 ], [ -118.125000, 72.711903 ], [ -118.476562, 72.711903 ], [ -118.476562, 72.607120 ], [ -118.828125, 72.607120 ], [ -118.828125, 72.501722 ], [ -119.179688, 72.501722 ], [ -119.179688, 72.395706 ], [ -119.531250, 72.395706 ], [ -119.531250, 72.181804 ], [ -119.882812, 72.181804 ], [ -119.882812, 72.073911 ], [ -120.234375, 72.073911 ], [ -120.234375, 71.856229 ], [ -120.585938, 71.856229 ], [ -120.585938, 71.300793 ], [ -121.289062, 71.300793 ], [ -121.289062, 71.187754 ], [ -121.640625, 71.187754 ], [ -121.640625, 71.074056 ], [ -121.992188, 71.074056 ], [ -121.992188, 70.959697 ], [ -122.695312, 70.959697 ], [ -122.695312, 70.844673 ], [ -123.046875, 70.844673 ], [ -123.046875, 70.959697 ], [ -123.398438, 70.959697 ], [ -123.398438, 71.187754 ], [ -123.750000, 71.187754 ], [ -123.750000, 71.300793 ], [ -124.101562, 71.300793 ], [ -124.101562, 71.413177 ], [ -124.453125, 71.413177 ], [ -124.453125, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.635993 ], [ -125.507812, 71.635993 ], [ -125.507812, 71.746432 ], [ -125.859375, 71.746432 ], [ -125.859375, 72.073911 ], [ -125.507812, 72.073911 ], [ -125.507812, 72.395706 ], [ -125.156250, 72.395706 ], [ -125.156250, 72.816074 ], [ -124.804688, 72.816074 ], [ -124.804688, 73.124945 ], [ -124.453125, 73.124945 ], [ -124.453125, 73.528399 ], [ -124.101562, 73.528399 ], [ -124.101562, 73.824820 ], [ -124.453125, 73.824820 ], [ -124.453125, 74.116047 ], [ -124.804688, 74.116047 ], [ -124.804688, 74.211983 ], [ -117.421875, 74.211983 ], [ -117.421875, 74.116047 ] ] ], [ [ [ -108.984375, 68.138852 ], [ -108.984375, 68.269387 ], [ -108.632812, 68.269387 ], [ -108.632812, 68.528235 ], [ -108.281250, 68.528235 ], [ -108.281250, 68.007571 ], [ -108.632812, 68.007571 ], [ -108.632812, 68.138852 ], [ -108.984375, 68.138852 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.617188, 70.377854 ], [ -127.617188, 70.259452 ], [ -127.265625, 70.259452 ], [ -127.265625, 70.020587 ], [ -126.914062, 70.020587 ], [ -126.914062, 69.900118 ], [ -126.562500, 69.900118 ], [ -126.562500, 69.778952 ], [ -126.210938, 69.778952 ], [ -126.210938, 69.534518 ], [ -125.507812, 69.534518 ], [ -125.507812, 69.657086 ], [ -125.156250, 69.657086 ], [ -125.156250, 69.900118 ], [ -124.804688, 69.900118 ], [ -124.804688, 70.020587 ], [ -124.453125, 70.020587 ], [ -124.453125, 69.411242 ], [ -123.398438, 69.411242 ], [ -123.398438, 69.534518 ], [ -123.046875, 69.534518 ], [ -123.046875, 69.657086 ], [ -122.695312, 69.657086 ], [ -122.695312, 69.900118 ], [ -122.343750, 69.900118 ], [ -122.343750, 69.778952 ], [ -121.640625, 69.778952 ], [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.534518 ], [ -120.234375, 69.534518 ], [ -120.234375, 69.411242 ], [ -119.882812, 69.411242 ], [ -119.882812, 69.287257 ], [ -119.179688, 69.287257 ], [ -119.179688, 69.162558 ], [ -118.476562, 69.162558 ], [ -118.476562, 69.037142 ], [ -117.773438, 69.037142 ], [ -117.773438, 68.911005 ], [ -117.070312, 68.911005 ], [ -117.070312, 68.784144 ], [ -115.664062, 68.784144 ], [ -115.664062, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 68.007571 ], [ -114.960938, 68.007571 ], [ -114.960938, 67.875541 ], [ -114.609375, 67.875541 ], [ -114.609375, 67.742759 ], [ -110.390625, 67.742759 ], [ -110.390625, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.609221 ], [ -109.335938, 67.609221 ], [ -109.335938, 67.339861 ], [ -108.632812, 67.339861 ], [ -108.632812, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 65.802776 ], [ -140.976562, 65.802776 ], [ -140.976562, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 69.534518 ], [ -139.921875, 69.534518 ], [ -139.921875, 69.411242 ], [ -139.218750, 69.411242 ], [ -139.218750, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 69.037142 ], [ -137.109375, 69.037142 ], [ -137.109375, 68.911005 ], [ -136.054688, 68.911005 ], [ -136.054688, 69.162558 ], [ -135.703125, 69.162558 ], [ -135.703125, 69.287257 ], [ -135.351562, 69.287257 ], [ -135.351562, 69.411242 ], [ -134.648438, 69.411242 ], [ -134.648438, 69.534518 ], [ -134.296875, 69.534518 ], [ -134.296875, 69.657086 ], [ -133.945312, 69.657086 ], [ -133.945312, 69.534518 ], [ -132.539062, 69.534518 ], [ -132.539062, 69.657086 ], [ -131.835938, 69.657086 ], [ -131.835938, 69.778952 ], [ -131.484375, 69.778952 ], [ -131.484375, 69.900118 ], [ -130.781250, 69.900118 ], [ -130.781250, 70.020587 ], [ -130.078125, 70.020587 ], [ -130.078125, 70.140364 ], [ -129.726562, 70.140364 ], [ -129.726562, 70.020587 ], [ -129.375000, 70.020587 ], [ -129.375000, 69.778952 ], [ -128.671875, 69.778952 ], [ -128.671875, 69.900118 ], [ -128.320312, 69.900118 ], [ -128.320312, 70.259452 ], [ -127.968750, 70.259452 ], [ -127.968750, 70.377854 ], [ -127.617188, 70.377854 ] ] ], [ [ [ -108.281250, 68.007571 ], [ -108.632812, 68.007571 ], [ -108.632812, 68.138852 ], [ -108.984375, 68.138852 ], [ -108.984375, 68.269387 ], [ -108.632812, 68.269387 ], [ -108.632812, 68.528235 ], [ -108.281250, 68.528235 ], [ -108.281250, 68.007571 ] ] ], [ [ [ -114.609375, 73.226700 ], [ -114.609375, 73.124945 ], [ -114.257812, 73.124945 ], [ -114.257812, 72.816074 ], [ -114.609375, 72.816074 ], [ -114.609375, 72.607120 ], [ -113.906250, 72.607120 ], [ -113.906250, 72.711903 ], [ -113.203125, 72.711903 ], [ -113.203125, 72.816074 ], [ -112.148438, 72.816074 ], [ -112.148438, 72.711903 ], [ -111.796875, 72.711903 ], [ -111.796875, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.501722 ], [ -110.742188, 72.501722 ], [ -110.742188, 72.711903 ], [ -110.390625, 72.711903 ], [ -110.390625, 72.816074 ], [ -109.687500, 72.816074 ], [ -109.687500, 72.711903 ], [ -109.335938, 72.711903 ], [ -109.335938, 72.607120 ], [ -108.984375, 72.607120 ], [ -108.984375, 72.289067 ], [ -108.632812, 72.289067 ], [ -108.632812, 71.856229 ], [ -108.281250, 71.856229 ], [ -108.281250, 68.911005 ], [ -108.632812, 68.911005 ], [ -108.632812, 68.784144 ], [ -110.039062, 68.784144 ], [ -110.039062, 68.656555 ], [ -112.148438, 68.656555 ], [ -112.148438, 68.528235 ], [ -113.203125, 68.528235 ], [ -113.203125, 68.656555 ], [ -113.554688, 68.656555 ], [ -113.554688, 68.911005 ], [ -113.906250, 68.911005 ], [ -113.906250, 69.037142 ], [ -114.609375, 69.037142 ], [ -114.609375, 69.162558 ], [ -116.367188, 69.162558 ], [ -116.367188, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.534518 ], [ -117.070312, 69.534518 ], [ -117.070312, 69.778952 ], [ -117.421875, 69.778952 ], [ -117.421875, 69.900118 ], [ -116.718750, 69.900118 ], [ -116.718750, 70.020587 ], [ -116.015625, 70.020587 ], [ -116.015625, 70.140364 ], [ -115.312500, 70.140364 ], [ -115.312500, 70.259452 ], [ -114.609375, 70.259452 ], [ -114.609375, 70.140364 ], [ -113.203125, 70.140364 ], [ -113.203125, 70.259452 ], [ -112.500000, 70.259452 ], [ -112.500000, 70.377854 ], [ -113.203125, 70.377854 ], [ -113.203125, 70.495574 ], [ -113.906250, 70.495574 ], [ -113.906250, 70.612614 ], [ -114.960938, 70.612614 ], [ -114.960938, 70.495574 ], [ -117.773438, 70.495574 ], [ -117.773438, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -118.476562, 70.844673 ], [ -118.476562, 70.959697 ], [ -117.773438, 70.959697 ], [ -117.773438, 71.074056 ], [ -117.070312, 71.074056 ], [ -117.070312, 71.187754 ], [ -116.367188, 71.187754 ], [ -116.367188, 71.300793 ], [ -118.476562, 71.300793 ], [ -118.476562, 71.413177 ], [ -119.179688, 71.413177 ], [ -119.179688, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.635993 ], [ -119.179688, 71.635993 ], [ -119.179688, 71.856229 ], [ -118.828125, 71.856229 ], [ -118.828125, 72.073911 ], [ -118.476562, 72.073911 ], [ -118.476562, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.607120 ], [ -117.773438, 72.607120 ], [ -117.773438, 72.711903 ], [ -117.421875, 72.711903 ], [ -117.421875, 72.816074 ], [ -117.070312, 72.816074 ], [ -117.070312, 72.919635 ], [ -116.718750, 72.919635 ], [ -116.718750, 73.022592 ], [ -116.015625, 73.022592 ], [ -116.015625, 73.124945 ], [ -115.664062, 73.124945 ], [ -115.664062, 73.226700 ], [ -114.609375, 73.226700 ] ] ], [ [ [ -117.421875, 74.211983 ], [ -117.421875, 74.116047 ], [ -117.070312, 74.116047 ], [ -117.070312, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.824820 ], [ -116.367188, 73.824820 ], [ -116.367188, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.428424 ], [ -115.664062, 73.428424 ], [ -115.664062, 73.327858 ], [ -116.367188, 73.327858 ], [ -116.367188, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.124945 ], [ -117.070312, 73.124945 ], [ -117.070312, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.919635 ], [ -117.773438, 72.919635 ], [ -117.773438, 72.816074 ], [ -118.125000, 72.816074 ], [ -118.125000, 72.711903 ], [ -118.476562, 72.711903 ], [ -118.476562, 72.607120 ], [ -118.828125, 72.607120 ], [ -118.828125, 72.501722 ], [ -119.179688, 72.501722 ], [ -119.179688, 72.395706 ], [ -119.531250, 72.395706 ], [ -119.531250, 72.181804 ], [ -119.882812, 72.181804 ], [ -119.882812, 72.073911 ], [ -120.234375, 72.073911 ], [ -120.234375, 71.856229 ], [ -120.585938, 71.856229 ], [ -120.585938, 71.300793 ], [ -121.289062, 71.300793 ], [ -121.289062, 71.187754 ], [ -121.640625, 71.187754 ], [ -121.640625, 71.074056 ], [ -121.992188, 71.074056 ], [ -121.992188, 70.959697 ], [ -122.695312, 70.959697 ], [ -122.695312, 70.844673 ], [ -123.046875, 70.844673 ], [ -123.046875, 70.959697 ], [ -123.398438, 70.959697 ], [ -123.398438, 71.187754 ], [ -123.750000, 71.187754 ], [ -123.750000, 71.300793 ], [ -124.101562, 71.300793 ], [ -124.101562, 71.413177 ], [ -124.453125, 71.413177 ], [ -124.453125, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.635993 ], [ -125.507812, 71.635993 ], [ -125.507812, 71.746432 ], [ -125.859375, 71.746432 ], [ -125.859375, 72.073911 ], [ -125.507812, 72.073911 ], [ -125.507812, 72.395706 ], [ -125.156250, 72.395706 ], [ -125.156250, 72.816074 ], [ -124.804688, 72.816074 ], [ -124.804688, 73.124945 ], [ -124.453125, 73.124945 ], [ -124.453125, 73.528399 ], [ -124.101562, 73.528399 ], [ -124.101562, 73.824820 ], [ -124.453125, 73.824820 ], [ -124.453125, 74.116047 ], [ -124.804688, 74.116047 ], [ -124.804688, 74.211983 ], [ -117.421875, 74.211983 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.867188, 71.635993 ], [ -93.515625, 71.635993 ], [ -93.515625, 71.524909 ], [ -93.164062, 71.524909 ], [ -93.164062, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 71.074056 ], [ -92.460938, 71.074056 ], [ -92.460938, 70.844673 ], [ -92.109375, 70.844673 ], [ -92.109375, 70.495574 ], [ -91.757812, 70.495574 ], [ -91.757812, 70.259452 ], [ -91.406250, 70.259452 ], [ -91.406250, 70.020587 ], [ -91.757812, 70.020587 ], [ -91.757812, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.657086 ], [ -91.757812, 69.657086 ], [ -91.757812, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 69.037142 ], [ -88.593750, 69.037142 ], [ -88.593750, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 65.802776 ], [ -108.281250, 65.802776 ], [ -108.281250, 67.742759 ], [ -107.929688, 67.742759 ], [ -107.929688, 67.875541 ], [ -108.281250, 67.875541 ], [ -108.281250, 68.656555 ], [ -105.820312, 68.656555 ], [ -105.820312, 68.528235 ], [ -105.468750, 68.528235 ], [ -105.468750, 68.399180 ], [ -105.117188, 68.399180 ], [ -105.117188, 68.269387 ], [ -104.765625, 68.269387 ], [ -104.765625, 68.007571 ], [ -103.710938, 68.007571 ], [ -103.710938, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 68.007571 ], [ -103.007812, 68.007571 ], [ -103.007812, 67.875541 ], [ -102.304688, 67.875541 ], [ -102.304688, 67.742759 ], [ -101.953125, 67.742759 ], [ -101.953125, 67.609221 ], [ -100.546875, 67.609221 ], [ -100.546875, 67.742759 ], [ -98.437500, 67.742759 ], [ -98.437500, 68.399180 ], [ -97.734375, 68.399180 ], [ -97.734375, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.269387 ], [ -95.976562, 68.269387 ], [ -95.976562, 67.742759 ], [ -95.625000, 67.742759 ], [ -95.625000, 68.138852 ], [ -95.273438, 68.138852 ], [ -95.273438, 68.007571 ], [ -94.570312, 68.007571 ], [ -94.570312, 68.528235 ], [ -94.218750, 68.528235 ], [ -94.218750, 69.037142 ], [ -94.570312, 69.037142 ], [ -94.570312, 69.287257 ], [ -94.921875, 69.287257 ], [ -94.921875, 69.534518 ], [ -95.273438, 69.534518 ], [ -95.273438, 69.657086 ], [ -95.625000, 69.657086 ], [ -95.625000, 69.900118 ], [ -95.976562, 69.900118 ], [ -95.976562, 70.020587 ], [ -96.328125, 70.020587 ], [ -96.328125, 71.300793 ], [ -95.976562, 71.300793 ], [ -95.976562, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 71.746432 ], [ -95.273438, 71.746432 ], [ -95.273438, 71.856229 ], [ -94.570312, 71.856229 ], [ -94.570312, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.635993 ] ] ], [ [ [ -96.679688, 69.534518 ], [ -96.328125, 69.534518 ], [ -96.328125, 69.411242 ], [ -95.976562, 69.411242 ], [ -95.976562, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 69.037142 ], [ -95.976562, 69.037142 ], [ -95.976562, 68.784144 ], [ -97.031250, 68.784144 ], [ -97.031250, 68.911005 ], [ -98.789062, 68.911005 ], [ -98.789062, 69.037142 ], [ -99.140625, 69.037142 ], [ -99.140625, 69.162558 ], [ -99.492188, 69.162558 ], [ -99.492188, 69.287257 ], [ -99.843750, 69.287257 ], [ -99.843750, 69.411242 ], [ -99.492188, 69.411242 ], [ -99.492188, 69.534518 ], [ -98.789062, 69.534518 ], [ -98.789062, 69.778952 ], [ -98.437500, 69.778952 ], [ -98.437500, 70.020587 ], [ -97.382812, 70.020587 ], [ -97.382812, 69.900118 ], [ -97.031250, 69.900118 ], [ -97.031250, 69.778952 ], [ -96.679688, 69.778952 ], [ -96.679688, 69.534518 ] ] ], [ [ [ -88.242188, 70.377854 ], [ -88.945312, 70.377854 ], [ -88.945312, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.612614 ], [ -89.648438, 70.612614 ], [ -89.648438, 70.728979 ], [ -89.296875, 70.728979 ], [ -89.296875, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.187754 ], [ -90.000000, 71.187754 ], [ -90.000000, 71.635993 ], [ -90.351562, 71.635993 ], [ -90.351562, 72.289067 ], [ -90.000000, 72.289067 ], [ -90.000000, 72.607120 ], [ -89.648438, 72.607120 ], [ -89.648438, 72.919635 ], [ -89.296875, 72.919635 ], [ -89.296875, 73.124945 ], [ -88.945312, 73.124945 ], [ -88.945312, 73.327858 ], [ -88.593750, 73.327858 ], [ -88.593750, 73.428424 ], [ -88.242188, 73.428424 ], [ -88.242188, 70.377854 ] ] ], [ [ [ -97.031250, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 71.524909 ], [ -97.382812, 71.524909 ], [ -97.382812, 71.413177 ], [ -98.085938, 71.413177 ], [ -98.085938, 71.300793 ], [ -99.492188, 71.300793 ], [ -99.492188, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.746432 ], [ -100.195312, 71.746432 ], [ -100.195312, 71.856229 ], [ -100.546875, 71.856229 ], [ -100.546875, 71.965388 ], [ -100.898438, 71.965388 ], [ -100.898438, 72.073911 ], [ -101.601562, 72.073911 ], [ -101.601562, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.289067 ], [ -102.304688, 72.289067 ], [ -102.304688, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.607120 ], [ -102.304688, 72.607120 ], [ -102.304688, 72.816074 ], [ -101.601562, 72.816074 ], [ -101.601562, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.816074 ], [ -100.898438, 72.816074 ], [ -100.898438, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.226700 ], [ -101.601562, 73.226700 ], [ -101.601562, 73.327858 ], [ -101.250000, 73.327858 ], [ -101.250000, 73.428424 ], [ -100.898438, 73.428424 ], [ -100.898438, 73.627789 ], [ -100.546875, 73.627789 ], [ -100.546875, 73.726595 ], [ -99.492188, 73.726595 ], [ -99.492188, 73.627789 ], [ -98.085938, 73.627789 ], [ -98.085938, 73.726595 ], [ -97.382812, 73.726595 ], [ -97.382812, 73.528399 ], [ -97.031250, 73.528399 ], [ -97.031250, 73.327858 ], [ -97.382812, 73.327858 ], [ -97.382812, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 73.022592 ], [ -98.085938, 73.022592 ], [ -98.085938, 72.919635 ], [ -97.734375, 72.919635 ], [ -97.734375, 72.816074 ], [ -97.382812, 72.816074 ], [ -97.382812, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.607120 ] ] ], [ [ [ -91.757812, 73.922469 ], [ -91.054688, 73.922469 ], [ -91.054688, 73.824820 ], [ -90.351562, 73.824820 ], [ -90.351562, 73.726595 ], [ -90.703125, 73.726595 ], [ -90.703125, 73.528399 ], [ -91.054688, 73.528399 ], [ -91.054688, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 72.919635 ], [ -92.460938, 72.919635 ], [ -92.460938, 72.816074 ], [ -93.164062, 72.816074 ], [ -93.164062, 72.607120 ], [ -93.515625, 72.607120 ], [ -93.515625, 72.395706 ], [ -93.867188, 72.395706 ], [ -93.867188, 72.181804 ], [ -94.218750, 72.181804 ], [ -94.218750, 72.073911 ], [ -95.273438, 72.073911 ], [ -95.273438, 72.289067 ], [ -95.625000, 72.289067 ], [ -95.625000, 72.711903 ], [ -95.976562, 72.711903 ], [ -95.976562, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.824820 ], [ -95.273438, 73.824820 ], [ -95.273438, 73.922469 ], [ -94.921875, 73.922469 ], [ -94.921875, 74.019543 ], [ -94.570312, 74.019543 ], [ -94.570312, 74.116047 ], [ -92.460938, 74.116047 ], [ -92.460938, 74.019543 ], [ -91.757812, 74.019543 ], [ -91.757812, 73.922469 ] ] ], [ [ [ -105.117188, 72.395706 ], [ -105.117188, 71.965388 ], [ -104.765625, 71.965388 ], [ -104.765625, 71.300793 ], [ -104.414062, 71.300793 ], [ -104.414062, 70.844673 ], [ -104.062500, 70.844673 ], [ -104.062500, 70.728979 ], [ -103.359375, 70.728979 ], [ -103.359375, 70.612614 ], [ -103.007812, 70.612614 ], [ -103.007812, 70.495574 ], [ -102.656250, 70.495574 ], [ -102.656250, 70.377854 ], [ -102.304688, 70.377854 ], [ -102.304688, 70.259452 ], [ -101.601562, 70.259452 ], [ -101.601562, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 70.020587 ], [ -100.898438, 70.020587 ], [ -100.898438, 69.778952 ], [ -101.250000, 69.778952 ], [ -101.250000, 69.534518 ], [ -102.656250, 69.534518 ], [ -102.656250, 69.411242 ], [ -102.304688, 69.411242 ], [ -102.304688, 69.162558 ], [ -101.953125, 69.162558 ], [ -101.953125, 68.911005 ], [ -102.304688, 68.911005 ], [ -102.304688, 68.784144 ], [ -103.710938, 68.784144 ], [ -103.710938, 68.911005 ], [ -105.117188, 68.911005 ], [ -105.117188, 69.037142 ], [ -105.820312, 69.037142 ], [ -105.820312, 69.162558 ], [ -107.226562, 69.162558 ], [ -107.226562, 69.037142 ], [ -107.929688, 69.037142 ], [ -107.929688, 68.911005 ], [ -108.281250, 68.911005 ], [ -108.281250, 71.746432 ], [ -107.929688, 71.746432 ], [ -107.929688, 71.965388 ], [ -107.578125, 71.965388 ], [ -107.578125, 72.289067 ], [ -107.929688, 72.289067 ], [ -107.929688, 72.816074 ], [ -108.281250, 72.816074 ], [ -108.281250, 73.124945 ], [ -107.578125, 73.124945 ], [ -107.578125, 73.226700 ], [ -107.226562, 73.226700 ], [ -107.226562, 73.124945 ], [ -106.523438, 73.124945 ], [ -106.523438, 73.327858 ], [ -106.875000, 73.327858 ], [ -106.875000, 73.528399 ], [ -106.523438, 73.528399 ], [ -106.523438, 73.627789 ], [ -105.117188, 73.627789 ], [ -105.117188, 73.528399 ], [ -104.765625, 73.528399 ], [ -104.765625, 73.428424 ], [ -104.414062, 73.428424 ], [ -104.414062, 73.226700 ], [ -104.765625, 73.226700 ], [ -104.765625, 73.022592 ], [ -105.117188, 73.022592 ], [ -105.117188, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 72.395706 ], [ -105.117188, 72.395706 ] ], [ [ -106.523438, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.124945 ], [ -106.523438, 73.124945 ], [ -106.523438, 73.022592 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.570312, 71.856229 ], [ -94.570312, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.635993 ], [ -93.515625, 71.635993 ], [ -93.515625, 71.524909 ], [ -93.164062, 71.524909 ], [ -93.164062, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 71.074056 ], [ -92.460938, 71.074056 ], [ -92.460938, 70.844673 ], [ -92.109375, 70.844673 ], [ -92.109375, 70.495574 ], [ -91.757812, 70.495574 ], [ -91.757812, 70.259452 ], [ -91.406250, 70.259452 ], [ -91.406250, 70.020587 ], [ -91.757812, 70.020587 ], [ -91.757812, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.657086 ], [ -91.757812, 69.657086 ], [ -91.757812, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 69.037142 ], [ -88.593750, 69.037142 ], [ -88.593750, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 65.802776 ], [ -108.281250, 65.802776 ], [ -108.281250, 67.742759 ], [ -107.929688, 67.742759 ], [ -107.929688, 67.875541 ], [ -108.281250, 67.875541 ], [ -108.281250, 68.656555 ], [ -105.820312, 68.656555 ], [ -105.820312, 68.528235 ], [ -105.468750, 68.528235 ], [ -105.468750, 68.399180 ], [ -105.117188, 68.399180 ], [ -105.117188, 68.269387 ], [ -104.765625, 68.269387 ], [ -104.765625, 68.007571 ], [ -103.710938, 68.007571 ], [ -103.710938, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 68.007571 ], [ -103.007812, 68.007571 ], [ -103.007812, 67.875541 ], [ -102.304688, 67.875541 ], [ -102.304688, 67.742759 ], [ -101.953125, 67.742759 ], [ -101.953125, 67.609221 ], [ -100.546875, 67.609221 ], [ -100.546875, 67.742759 ], [ -98.437500, 67.742759 ], [ -98.437500, 68.399180 ], [ -97.734375, 68.399180 ], [ -97.734375, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.269387 ], [ -95.976562, 68.269387 ], [ -95.976562, 67.742759 ], [ -95.625000, 67.742759 ], [ -95.625000, 68.138852 ], [ -95.273438, 68.138852 ], [ -95.273438, 68.007571 ], [ -94.570312, 68.007571 ], [ -94.570312, 68.528235 ], [ -94.218750, 68.528235 ], [ -94.218750, 69.037142 ], [ -94.570312, 69.037142 ], [ -94.570312, 69.287257 ], [ -94.921875, 69.287257 ], [ -94.921875, 69.534518 ], [ -95.273438, 69.534518 ], [ -95.273438, 69.657086 ], [ -95.625000, 69.657086 ], [ -95.625000, 69.900118 ], [ -95.976562, 69.900118 ], [ -95.976562, 70.020587 ], [ -96.328125, 70.020587 ], [ -96.328125, 71.300793 ], [ -95.976562, 71.300793 ], [ -95.976562, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 71.746432 ], [ -95.273438, 71.746432 ], [ -95.273438, 71.856229 ], [ -94.570312, 71.856229 ] ] ], [ [ [ -97.382812, 70.020587 ], [ -97.382812, 69.900118 ], [ -97.031250, 69.900118 ], [ -97.031250, 69.778952 ], [ -96.679688, 69.778952 ], [ -96.679688, 69.534518 ], [ -96.328125, 69.534518 ], [ -96.328125, 69.411242 ], [ -95.976562, 69.411242 ], [ -95.976562, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 69.037142 ], [ -95.976562, 69.037142 ], [ -95.976562, 68.784144 ], [ -97.031250, 68.784144 ], [ -97.031250, 68.911005 ], [ -98.789062, 68.911005 ], [ -98.789062, 69.037142 ], [ -99.140625, 69.037142 ], [ -99.140625, 69.162558 ], [ -99.492188, 69.162558 ], [ -99.492188, 69.287257 ], [ -99.843750, 69.287257 ], [ -99.843750, 69.411242 ], [ -99.492188, 69.411242 ], [ -99.492188, 69.534518 ], [ -98.789062, 69.534518 ], [ -98.789062, 69.778952 ], [ -98.437500, 69.778952 ], [ -98.437500, 70.020587 ], [ -97.382812, 70.020587 ] ] ], [ [ [ -105.468750, 72.395706 ], [ -105.117188, 72.395706 ], [ -105.117188, 71.965388 ], [ -104.765625, 71.965388 ], [ -104.765625, 71.300793 ], [ -104.414062, 71.300793 ], [ -104.414062, 70.844673 ], [ -104.062500, 70.844673 ], [ -104.062500, 70.728979 ], [ -103.359375, 70.728979 ], [ -103.359375, 70.612614 ], [ -103.007812, 70.612614 ], [ -103.007812, 70.495574 ], [ -102.656250, 70.495574 ], [ -102.656250, 70.377854 ], [ -102.304688, 70.377854 ], [ -102.304688, 70.259452 ], [ -101.601562, 70.259452 ], [ -101.601562, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 70.020587 ], [ -100.898438, 70.020587 ], [ -100.898438, 69.778952 ], [ -101.250000, 69.778952 ], [ -101.250000, 69.534518 ], [ -102.656250, 69.534518 ], [ -102.656250, 69.411242 ], [ -102.304688, 69.411242 ], [ -102.304688, 69.162558 ], [ -101.953125, 69.162558 ], [ -101.953125, 68.911005 ], [ -102.304688, 68.911005 ], [ -102.304688, 68.784144 ], [ -103.710938, 68.784144 ], [ -103.710938, 68.911005 ], [ -105.117188, 68.911005 ], [ -105.117188, 69.037142 ], [ -105.820312, 69.037142 ], [ -105.820312, 69.162558 ], [ -107.226562, 69.162558 ], [ -107.226562, 69.037142 ], [ -107.929688, 69.037142 ], [ -107.929688, 68.911005 ], [ -108.281250, 68.911005 ], [ -108.281250, 71.746432 ], [ -107.929688, 71.746432 ], [ -107.929688, 71.965388 ], [ -107.578125, 71.965388 ], [ -107.578125, 72.289067 ], [ -107.929688, 72.289067 ], [ -107.929688, 72.816074 ], [ -108.281250, 72.816074 ], [ -108.281250, 73.124945 ], [ -107.578125, 73.124945 ], [ -107.578125, 73.226700 ], [ -107.226562, 73.226700 ], [ -107.226562, 73.124945 ], [ -106.523438, 73.124945 ], [ -106.523438, 73.327858 ], [ -106.875000, 73.327858 ], [ -106.875000, 73.528399 ], [ -106.523438, 73.528399 ], [ -106.523438, 73.627789 ], [ -105.117188, 73.627789 ], [ -105.117188, 73.528399 ], [ -104.765625, 73.528399 ], [ -104.765625, 73.428424 ], [ -104.414062, 73.428424 ], [ -104.414062, 73.226700 ], [ -104.765625, 73.226700 ], [ -104.765625, 73.022592 ], [ -105.117188, 73.022592 ], [ -105.117188, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 72.395706 ] ], [ [ -106.523438, 73.124945 ], [ -106.523438, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.124945 ], [ -106.523438, 73.124945 ] ] ], [ [ [ -88.593750, 73.327858 ], [ -88.242188, 70.377854 ], [ -88.945312, 70.377854 ], [ -88.945312, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.612614 ], [ -89.648438, 70.612614 ], [ -89.648438, 70.728979 ], [ -89.296875, 70.728979 ], [ -89.296875, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.187754 ], [ -90.000000, 71.187754 ], [ -90.000000, 71.635993 ], [ -90.351562, 71.635993 ], [ -90.351562, 72.289067 ], [ -90.000000, 72.289067 ], [ -90.000000, 72.607120 ], [ -89.648438, 72.607120 ], [ -89.648438, 72.919635 ], [ -89.296875, 72.919635 ], [ -89.296875, 73.124945 ], [ -88.945312, 73.124945 ], [ -88.945312, 73.327858 ], [ -88.593750, 73.327858 ] ] ], [ [ [ -97.382812, 73.726595 ], [ -97.382812, 73.528399 ], [ -97.031250, 73.528399 ], [ -97.031250, 73.327858 ], [ -97.382812, 73.327858 ], [ -97.382812, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 73.022592 ], [ -98.085938, 73.022592 ], [ -98.085938, 72.919635 ], [ -97.734375, 72.919635 ], [ -97.734375, 72.816074 ], [ -97.382812, 72.816074 ], [ -97.382812, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 71.524909 ], [ -97.382812, 71.524909 ], [ -97.382812, 71.413177 ], [ -98.085938, 71.413177 ], [ -98.085938, 71.300793 ], [ -99.492188, 71.300793 ], [ -99.492188, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.746432 ], [ -100.195312, 71.746432 ], [ -100.195312, 71.856229 ], [ -100.546875, 71.856229 ], [ -100.546875, 71.965388 ], [ -100.898438, 71.965388 ], [ -100.898438, 72.073911 ], [ -101.601562, 72.073911 ], [ -101.601562, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.289067 ], [ -102.304688, 72.289067 ], [ -102.304688, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.607120 ], [ -102.304688, 72.607120 ], [ -102.304688, 72.816074 ], [ -101.601562, 72.816074 ], [ -101.601562, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.816074 ], [ -100.898438, 72.816074 ], [ -100.898438, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.226700 ], [ -101.601562, 73.226700 ], [ -101.601562, 73.327858 ], [ -101.250000, 73.327858 ], [ -101.250000, 73.428424 ], [ -100.898438, 73.428424 ], [ -100.898438, 73.627789 ], [ -100.546875, 73.627789 ], [ -100.546875, 73.726595 ], [ -99.492188, 73.726595 ], [ -99.492188, 73.627789 ], [ -98.085938, 73.627789 ], [ -98.085938, 73.726595 ], [ -97.382812, 73.726595 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -92.460938, 74.019543 ], [ -91.757812, 74.019543 ], [ -91.757812, 73.922469 ], [ -91.054688, 73.922469 ], [ -91.054688, 73.824820 ], [ -90.351562, 73.824820 ], [ -90.351562, 73.726595 ], [ -90.703125, 73.726595 ], [ -90.703125, 73.528399 ], [ -91.054688, 73.528399 ], [ -91.054688, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 72.919635 ], [ -92.460938, 72.919635 ], [ -92.460938, 72.816074 ], [ -93.164062, 72.816074 ], [ -93.164062, 72.607120 ], [ -93.515625, 72.607120 ], [ -93.515625, 72.395706 ], [ -93.867188, 72.395706 ], [ -93.867188, 72.181804 ], [ -94.218750, 72.181804 ], [ -94.218750, 72.073911 ], [ -95.273438, 72.073911 ], [ -95.273438, 72.289067 ], [ -95.625000, 72.289067 ], [ -95.625000, 72.711903 ], [ -95.976562, 72.711903 ], [ -95.976562, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.824820 ], [ -95.273438, 73.824820 ], [ -95.273438, 73.922469 ], [ -94.921875, 73.922469 ], [ -94.921875, 74.019543 ], [ -94.570312, 74.019543 ], [ -94.570312, 74.116047 ], [ -92.460938, 74.116047 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.039062, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.844673 ], [ -154.335938, 70.844673 ], [ -154.335938, 70.728979 ], [ -153.984375, 70.728979 ], [ -153.984375, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.495574 ], [ -151.523438, 70.495574 ], [ -151.523438, 70.377854 ], [ -150.117188, 70.377854 ], [ -150.117188, 70.495574 ], [ -149.414062, 70.495574 ], [ -149.414062, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.259452 ], [ -146.953125, 70.259452 ], [ -146.953125, 70.140364 ], [ -145.546875, 70.140364 ], [ -145.546875, 70.020587 ], [ -143.789062, 70.020587 ], [ -143.789062, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 70.020587 ], [ -142.734375, 70.020587 ], [ -142.734375, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.778952 ], [ -141.328125, 69.778952 ], [ -141.328125, 69.657086 ], [ -140.976562, 69.657086 ], [ -140.976562, 65.802776 ], [ -167.343750, 65.802776 ], [ -167.343750, 65.946472 ], [ -166.640625, 65.946472 ], [ -166.640625, 66.089364 ], [ -165.937500, 66.089364 ], [ -165.937500, 66.231457 ], [ -165.234375, 66.231457 ], [ -165.234375, 66.372755 ], [ -164.531250, 66.372755 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.828125, 66.930060 ], [ -163.828125, 67.204032 ], [ -164.179688, 67.204032 ], [ -164.179688, 67.474922 ], [ -164.531250, 67.474922 ], [ -164.531250, 67.609221 ], [ -164.882812, 67.609221 ], [ -164.882812, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.007571 ], [ -165.585938, 68.007571 ], [ -165.585938, 68.138852 ], [ -166.289062, 68.138852 ], [ -166.289062, 68.269387 ], [ -166.640625, 68.269387 ], [ -166.640625, 68.656555 ], [ -166.289062, 68.656555 ], [ -166.289062, 68.911005 ], [ -164.179688, 68.911005 ], [ -164.179688, 69.037142 ], [ -163.828125, 69.037142 ], [ -163.828125, 69.162558 ], [ -163.476562, 69.162558 ], [ -163.476562, 69.287257 ], [ -163.125000, 69.287257 ], [ -163.125000, 69.657086 ], [ -162.773438, 69.657086 ], [ -162.773438, 70.020587 ], [ -162.421875, 70.020587 ], [ -162.421875, 70.259452 ], [ -162.070312, 70.259452 ], [ -162.070312, 70.377854 ], [ -161.367188, 70.377854 ], [ -161.367188, 70.495574 ], [ -160.312500, 70.495574 ], [ -160.312500, 70.612614 ], [ -159.609375, 70.612614 ], [ -159.609375, 70.728979 ], [ -158.906250, 70.728979 ], [ -158.906250, 70.844673 ], [ -157.851562, 70.844673 ], [ -157.851562, 70.959697 ], [ -157.500000, 70.959697 ], [ -157.500000, 71.074056 ], [ -157.148438, 71.074056 ], [ -157.148438, 71.187754 ], [ -156.796875, 71.187754 ], [ -156.796875, 71.300793 ], [ -155.742188, 71.300793 ], [ -155.742188, 71.187754 ], [ -155.039062, 71.187754 ], [ -155.039062, 71.074056 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.742188, 71.300793 ], [ -155.742188, 71.187754 ], [ -155.039062, 71.187754 ], [ -155.039062, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.844673 ], [ -154.335938, 70.844673 ], [ -154.335938, 70.728979 ], [ -153.984375, 70.728979 ], [ -153.984375, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.495574 ], [ -151.523438, 70.495574 ], [ -151.523438, 70.377854 ], [ -150.117188, 70.377854 ], [ -150.117188, 70.495574 ], [ -149.414062, 70.495574 ], [ -149.414062, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.259452 ], [ -146.953125, 70.259452 ], [ -146.953125, 70.140364 ], [ -145.546875, 70.140364 ], [ -145.546875, 70.020587 ], [ -143.789062, 70.020587 ], [ -143.789062, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 70.020587 ], [ -142.734375, 70.020587 ], [ -142.734375, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.778952 ], [ -141.328125, 69.778952 ], [ -141.328125, 69.657086 ], [ -140.976562, 69.657086 ], [ -140.976562, 65.802776 ], [ -167.343750, 65.802776 ], [ -167.343750, 65.946472 ], [ -166.640625, 65.946472 ], [ -166.640625, 66.089364 ], [ -165.937500, 66.089364 ], [ -165.937500, 66.231457 ], [ -165.234375, 66.231457 ], [ -165.234375, 66.372755 ], [ -164.531250, 66.372755 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.828125, 66.930060 ], [ -163.828125, 67.204032 ], [ -164.179688, 67.204032 ], [ -164.179688, 67.474922 ], [ -164.531250, 67.474922 ], [ -164.531250, 67.609221 ], [ -164.882812, 67.609221 ], [ -164.882812, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.007571 ], [ -165.585938, 68.007571 ], [ -165.585938, 68.138852 ], [ -166.289062, 68.138852 ], [ -166.289062, 68.269387 ], [ -166.640625, 68.269387 ], [ -166.640625, 68.656555 ], [ -166.289062, 68.656555 ], [ -166.289062, 68.911005 ], [ -164.179688, 68.911005 ], [ -164.179688, 69.037142 ], [ -163.828125, 69.037142 ], [ -163.828125, 69.162558 ], [ -163.476562, 69.162558 ], [ -163.476562, 69.287257 ], [ -163.125000, 69.287257 ], [ -163.125000, 69.657086 ], [ -162.773438, 69.657086 ], [ -162.773438, 70.020587 ], [ -162.421875, 70.020587 ], [ -162.421875, 70.259452 ], [ -162.070312, 70.259452 ], [ -162.070312, 70.377854 ], [ -161.367188, 70.377854 ], [ -161.367188, 70.495574 ], [ -160.312500, 70.495574 ], [ -160.312500, 70.612614 ], [ -159.609375, 70.612614 ], [ -159.609375, 70.728979 ], [ -158.906250, 70.728979 ], [ -158.906250, 70.844673 ], [ -157.851562, 70.844673 ], [ -157.851562, 70.959697 ], [ -157.500000, 70.959697 ], [ -157.500000, 71.074056 ], [ -157.148438, 71.074056 ], [ -157.148438, 71.187754 ], [ -156.796875, 71.187754 ], [ -156.796875, 71.300793 ], [ -155.742188, 71.300793 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.648438, 68.656555 ], [ -179.296875, 68.656555 ], [ -179.296875, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.399180 ], [ -178.242188, 68.399180 ], [ -178.242188, 68.269387 ], [ -177.890625, 68.269387 ], [ -177.890625, 68.138852 ], [ -177.539062, 68.138852 ], [ -177.539062, 68.007571 ], [ -177.187500, 68.007571 ], [ -177.187500, 67.875541 ], [ -176.835938, 67.875541 ], [ -176.835938, 67.742759 ], [ -176.484375, 67.742759 ], [ -176.484375, 67.609221 ], [ -176.132812, 67.609221 ], [ -176.132812, 67.474922 ], [ -175.781250, 67.474922 ], [ -175.781250, 67.339861 ], [ -175.429688, 67.339861 ], [ -175.429688, 67.204032 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -169.804688, 65.946472 ], [ -169.804688, 65.802776 ], [ -178.945312, 65.802776 ], [ -178.945312, 65.946472 ], [ -179.296875, 65.946472 ], [ -179.296875, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.784144 ], [ -179.648438, 68.784144 ], [ -179.648438, 68.656555 ] ] ], [ [ [ -178.945312, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.300793 ], [ -177.539062, 71.300793 ], [ -177.539062, 71.074056 ], [ -177.890625, 71.074056 ], [ -177.890625, 70.959697 ], [ -178.242188, 70.959697 ], [ -178.242188, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -178.945312, 71.524909 ], [ -178.945312, 71.413177 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.648438, 68.784144 ], [ -179.648438, 68.656555 ], [ -179.296875, 68.656555 ], [ -179.296875, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.399180 ], [ -178.242188, 68.399180 ], [ -178.242188, 68.269387 ], [ -177.890625, 68.269387 ], [ -177.890625, 68.138852 ], [ -177.539062, 68.138852 ], [ -177.539062, 68.007571 ], [ -177.187500, 68.007571 ], [ -177.187500, 67.875541 ], [ -176.835938, 67.875541 ], [ -176.835938, 67.742759 ], [ -176.484375, 67.742759 ], [ -176.484375, 67.609221 ], [ -176.132812, 67.609221 ], [ -176.132812, 67.474922 ], [ -175.781250, 67.474922 ], [ -175.781250, 67.339861 ], [ -175.429688, 67.339861 ], [ -175.429688, 67.204032 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -169.804688, 65.946472 ], [ -169.804688, 65.802776 ], [ -178.945312, 65.802776 ], [ -178.945312, 65.946472 ], [ -179.296875, 65.946472 ], [ -179.296875, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.784144 ], [ -179.648438, 68.784144 ] ] ], [ [ [ -178.945312, 71.524909 ], [ -178.945312, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.300793 ], [ -177.539062, 71.300793 ], [ -177.539062, 71.074056 ], [ -177.890625, 71.074056 ], [ -177.890625, 70.959697 ], [ -178.242188, 70.959697 ], [ -178.242188, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -178.945312, 71.524909 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.929688, -80.872827 ], [ -62.929688, -80.928426 ], [ -64.687500, -80.928426 ], [ -64.687500, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.760615 ], [ -65.390625, -80.760615 ], [ -65.390625, -80.647035 ], [ -65.742188, -80.647035 ], [ -65.742188, -80.474065 ], [ -66.093750, -80.474065 ], [ -66.093750, -80.356995 ], [ -66.445312, -80.356995 ], [ -66.445312, -80.238501 ], [ -65.390625, -80.238501 ], [ -65.390625, -80.297927 ], [ -63.632812, -80.297927 ], [ -63.632812, -80.356995 ], [ -62.578125, -80.356995 ], [ -62.578125, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.356995 ], [ -61.523438, -80.356995 ], [ -61.523438, -80.118564 ], [ -61.171875, -80.118564 ], [ -61.171875, -79.935918 ], [ -60.820312, -79.935918 ], [ -60.820312, -79.749932 ], [ -60.117188, -79.749932 ], [ -60.117188, -79.874297 ], [ -59.765625, -79.874297 ], [ -59.765625, -79.997168 ], [ -59.414062, -79.997168 ], [ -59.414062, -80.297927 ], [ -59.765625, -80.297927 ], [ -59.765625, -80.760615 ], [ -60.117188, -80.760615 ], [ -60.117188, -80.983688 ], [ -60.820312, -80.983688 ], [ -60.820312, -80.928426 ], [ -61.875000, -80.928426 ], [ -61.875000, -80.872827 ], [ -62.929688, -80.872827 ] ] ], [ [ [ -62.226562, -66.372755 ], [ -62.929688, -66.372755 ], [ -62.929688, -66.513260 ], [ -63.632812, -66.513260 ], [ -63.632812, -66.652977 ], [ -63.984375, -66.652977 ], [ -63.984375, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.204032 ], [ -65.039062, -67.204032 ], [ -65.039062, -67.474922 ], [ -65.390625, -67.474922 ], [ -65.390625, -67.875541 ], [ -65.742188, -67.875541 ], [ -65.742188, -68.269387 ], [ -65.390625, -68.269387 ], [ -65.390625, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.287257 ], [ -63.281250, -69.287257 ], [ -63.281250, -69.534518 ], [ -62.929688, -69.534518 ], [ -62.929688, -69.900118 ], [ -62.578125, -69.900118 ], [ -62.578125, -70.259452 ], [ -62.226562, -70.259452 ], [ -62.226562, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.959697 ], [ -61.523438, -70.959697 ], [ -61.523438, -72.181804 ], [ -61.171875, -72.181804 ], [ -61.171875, -73.022592 ], [ -60.820312, -73.022592 ], [ -60.820312, -73.824820 ], [ -61.171875, -73.824820 ], [ -61.171875, -74.019543 ], [ -61.523438, -74.019543 ], [ -61.523438, -74.307353 ], [ -61.875000, -74.307353 ], [ -61.875000, -74.496413 ], [ -62.578125, -74.496413 ], [ -62.578125, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.775843 ], [ -63.632812, -74.775843 ], [ -63.632812, -75.050354 ], [ -63.984375, -75.050354 ], [ -63.984375, -75.230667 ], [ -64.335938, -75.230667 ], [ -64.335938, -75.320025 ], [ -64.687500, -75.320025 ], [ -64.687500, -75.408854 ], [ -65.039062, -75.408854 ], [ -65.039062, -75.584937 ], [ -65.390625, -75.584937 ], [ -65.390625, -75.672197 ], [ -66.093750, -75.672197 ], [ -66.093750, -75.758940 ], [ -67.148438, -75.758940 ], [ -67.148438, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -75.930885 ], [ -68.203125, -75.930885 ], [ -68.203125, -76.016094 ], [ -68.554688, -76.016094 ], [ -68.554688, -76.100796 ], [ -69.257812, -76.100796 ], [ -69.257812, -76.184995 ], [ -69.960938, -76.184995 ], [ -69.960938, -76.351896 ], [ -70.312500, -76.351896 ], [ -70.312500, -76.516819 ], [ -70.664062, -76.516819 ], [ -70.664062, -76.598545 ], [ -71.015625, -76.598545 ], [ -71.015625, -76.679785 ], [ -73.125000, -76.679785 ], [ -73.125000, -76.598545 ], [ -74.531250, -76.598545 ], [ -74.531250, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.920614 ], [ -76.992188, -76.920614 ], [ -76.992188, -77.157163 ], [ -76.289062, -77.157163 ], [ -76.289062, -77.235074 ], [ -75.585938, -77.235074 ], [ -75.585938, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.542096 ], [ -74.179688, -77.542096 ], [ -74.179688, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -77.989049 ], [ -74.179688, -77.989049 ], [ -74.179688, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.937500, -78.206563 ], [ -75.937500, -78.134493 ], [ -76.640625, -78.134493 ], [ -76.640625, -78.206563 ], [ -76.992188, -78.206563 ], [ -76.992188, -78.278201 ], [ -77.695312, -78.278201 ], [ -77.695312, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.237185 ], [ -77.695312, -79.237185 ], [ -77.695312, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.496652 ], [ -76.992188, -79.496652 ], [ -76.992188, -79.687184 ], [ -76.640625, -79.687184 ], [ -76.640625, -79.935918 ], [ -76.289062, -79.935918 ], [ -76.289062, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.118564 ], [ -75.585938, -80.118564 ], [ -75.585938, -80.238501 ], [ -75.234375, -80.238501 ], [ -75.234375, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.356995 ], [ -73.828125, -80.356995 ], [ -73.828125, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.474065 ], [ -72.773438, -80.474065 ], [ -72.773438, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.816891 ], [ -70.664062, -80.816891 ], [ -70.664062, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.983688 ], [ -69.960938, -80.983688 ], [ -69.960938, -81.038617 ], [ -69.609375, -81.038617 ], [ -69.609375, -81.093214 ], [ -69.257812, -81.093214 ], [ -69.257812, -81.147481 ], [ -68.906250, -81.147481 ], [ -68.906250, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.308321 ], [ -67.851562, -81.308321 ], [ -67.851562, -81.361287 ], [ -67.148438, -81.361287 ], [ -67.148438, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.569968 ], [ -65.039062, -81.569968 ], [ -65.039062, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.723188 ], [ -63.632812, -81.723188 ], [ -63.632812, -81.773644 ], [ -63.281250, -81.773644 ], [ -63.281250, -81.823794 ], [ -62.929688, -81.823794 ], [ -62.929688, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.972431 ], [ -61.875000, -81.972431 ], [ -61.875000, -82.021378 ], [ -61.523438, -82.021378 ], [ -61.523438, -82.070028 ], [ -61.171875, -82.070028 ], [ -61.171875, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.261699 ], [ -60.117188, -82.261699 ], [ -60.117188, -82.355800 ], [ -59.765625, -82.355800 ], [ -59.765625, -82.448764 ], [ -59.414062, -82.448764 ], [ -59.414062, -82.631333 ], [ -59.062500, -82.631333 ], [ -59.062500, -82.809511 ], [ -58.710938, -82.809511 ], [ -58.710938, -83.068774 ], [ -58.359375, -83.068774 ], [ -58.359375, -83.194896 ], [ -58.007812, -83.194896 ], [ -58.007812, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -83.026219 ], [ -57.304688, -83.026219 ], [ -57.304688, -82.940327 ], [ -56.953125, -82.940327 ], [ -56.953125, -82.853382 ], [ -56.601562, -82.853382 ], [ -56.601562, -82.809511 ], [ -56.250000, -82.809511 ], [ -56.250000, -82.720964 ], [ -55.898438, -82.720964 ], [ -55.898438, -82.676285 ], [ -55.546875, -82.676285 ], [ -55.546875, -82.631333 ], [ -55.195312, -82.631333 ], [ -55.195312, -82.586106 ], [ -54.843750, -82.586106 ], [ -54.843750, -82.494824 ], [ -54.492188, -82.494824 ], [ -54.492188, -82.402423 ], [ -54.140625, -82.402423 ], [ -54.140625, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.428424 ], [ -90.351562, -73.428424 ], [ -90.351562, -73.327858 ], [ -90.000000, -73.327858 ], [ -90.000000, -73.226700 ], [ -89.648438, -73.226700 ], [ -89.648438, -72.816074 ], [ -89.296875, -72.816074 ], [ -89.296875, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.124945 ], [ -87.890625, -73.124945 ], [ -87.890625, -73.226700 ], [ -86.484375, -73.226700 ], [ -86.484375, -73.124945 ], [ -86.132812, -73.124945 ], [ -86.132812, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.327858 ], [ -85.429688, -73.327858 ], [ -85.429688, -73.528399 ], [ -83.671875, -73.528399 ], [ -83.671875, -73.627789 ], [ -82.617188, -73.627789 ], [ -82.617188, -73.726595 ], [ -81.914062, -73.726595 ], [ -81.914062, -73.824820 ], [ -81.210938, -73.824820 ], [ -81.210938, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.428424 ], [ -80.507812, -73.428424 ], [ -80.507812, -73.226700 ], [ -79.804688, -73.226700 ], [ -79.804688, -73.428424 ], [ -79.453125, -73.428424 ], [ -79.453125, -73.528399 ], [ -78.398438, -73.528399 ], [ -78.398438, -73.428424 ], [ -78.046875, -73.428424 ], [ -78.046875, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.726595 ], [ -76.640625, -73.726595 ], [ -76.640625, -73.922469 ], [ -75.234375, -73.922469 ], [ -75.234375, -73.824820 ], [ -74.531250, -73.824820 ], [ -74.531250, -73.726595 ], [ -73.828125, -73.726595 ], [ -73.828125, -73.627789 ], [ -73.476562, -73.627789 ], [ -73.476562, -73.528399 ], [ -72.773438, -73.528399 ], [ -72.773438, -73.428424 ], [ -72.421875, -73.428424 ], [ -72.421875, -73.327858 ], [ -71.718750, -73.327858 ], [ -71.718750, -73.226700 ], [ -70.664062, -73.226700 ], [ -70.664062, -73.124945 ], [ -69.257812, -73.124945 ], [ -69.257812, -73.022592 ], [ -68.554688, -73.022592 ], [ -68.554688, -72.919635 ], [ -67.851562, -72.919635 ], [ -67.851562, -72.711903 ], [ -67.500000, -72.711903 ], [ -67.500000, -72.289067 ], [ -67.148438, -72.289067 ], [ -67.148438, -71.524909 ], [ -67.500000, -71.524909 ], [ -67.500000, -71.074056 ], [ -67.851562, -71.074056 ], [ -67.851562, -70.728979 ], [ -68.203125, -70.728979 ], [ -68.203125, -70.377854 ], [ -68.554688, -70.377854 ], [ -68.554688, -71.187754 ], [ -68.203125, -71.187754 ], [ -68.203125, -71.635993 ], [ -68.554688, -71.635993 ], [ -68.554688, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.181804 ], [ -69.257812, -72.181804 ], [ -69.257812, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.395706 ], [ -70.664062, -72.395706 ], [ -70.664062, -72.501722 ], [ -72.421875, -72.501722 ], [ -72.421875, -72.289067 ], [ -72.070312, -72.289067 ], [ -72.070312, -72.073911 ], [ -72.421875, -72.073911 ], [ -72.421875, -72.181804 ], [ -73.125000, -72.181804 ], [ -73.125000, -72.289067 ], [ -73.828125, -72.289067 ], [ -73.828125, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -72.181804 ], [ -74.882812, -72.181804 ], [ -74.882812, -71.635993 ], [ -74.531250, -71.635993 ], [ -74.531250, -71.524909 ], [ -74.179688, -71.524909 ], [ -74.179688, -71.413177 ], [ -73.828125, -71.413177 ], [ -73.828125, -71.300793 ], [ -73.125000, -71.300793 ], [ -73.125000, -71.187754 ], [ -72.070312, -71.187754 ], [ -72.070312, -70.959697 ], [ -71.718750, -70.959697 ], [ -71.718750, -69.411242 ], [ -71.367188, -69.411242 ], [ -71.367188, -69.162558 ], [ -71.015625, -69.162558 ], [ -71.015625, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.287257 ], [ -69.609375, -69.287257 ], [ -69.609375, -69.778952 ], [ -69.257812, -69.778952 ], [ -69.257812, -70.020587 ], [ -68.906250, -70.020587 ], [ -68.906250, -70.259452 ], [ -68.554688, -70.259452 ], [ -68.554688, -69.287257 ], [ -68.203125, -69.287257 ], [ -68.203125, -69.037142 ], [ -67.851562, -69.037142 ], [ -67.851562, -68.784144 ], [ -67.500000, -68.784144 ], [ -67.500000, -67.609221 ], [ -67.851562, -67.609221 ], [ -67.851562, -67.339861 ], [ -67.500000, -67.339861 ], [ -67.500000, -67.067433 ], [ -67.148438, -67.067433 ], [ -67.148438, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.372755 ], [ -66.093750, -66.372755 ], [ -66.093750, -66.231457 ], [ -65.742188, -66.231457 ], [ -65.742188, -66.089364 ], [ -65.390625, -66.089364 ], [ -65.390625, -65.946472 ], [ -65.039062, -65.946472 ], [ -65.039062, -65.802776 ], [ -62.578125, -65.802776 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.372755 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.578125, -65.802776 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.372755 ], [ -62.929688, -66.372755 ], [ -62.929688, -66.513260 ], [ -63.632812, -66.513260 ], [ -63.632812, -66.652977 ], [ -63.984375, -66.652977 ], [ -63.984375, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.204032 ], [ -65.039062, -67.204032 ], [ -65.039062, -67.474922 ], [ -65.390625, -67.474922 ], [ -65.390625, -67.875541 ], [ -65.742188, -67.875541 ], [ -65.742188, -68.269387 ], [ -65.390625, -68.269387 ], [ -65.390625, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.287257 ], [ -63.281250, -69.287257 ], [ -63.281250, -69.534518 ], [ -62.929688, -69.534518 ], [ -62.929688, -69.900118 ], [ -62.578125, -69.900118 ], [ -62.578125, -70.259452 ], [ -62.226562, -70.259452 ], [ -62.226562, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.959697 ], [ -61.523438, -70.959697 ], [ -61.523438, -72.181804 ], [ -61.171875, -72.181804 ], [ -61.171875, -73.022592 ], [ -60.820312, -73.022592 ], [ -60.820312, -73.824820 ], [ -61.171875, -73.824820 ], [ -61.171875, -74.019543 ], [ -61.523438, -74.019543 ], [ -61.523438, -74.307353 ], [ -61.875000, -74.307353 ], [ -61.875000, -74.496413 ], [ -62.578125, -74.496413 ], [ -62.578125, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.775843 ], [ -63.632812, -74.775843 ], [ -63.632812, -75.050354 ], [ -63.984375, -75.050354 ], [ -63.984375, -75.230667 ], [ -64.335938, -75.230667 ], [ -64.335938, -75.320025 ], [ -64.687500, -75.320025 ], [ -64.687500, -75.408854 ], [ -65.039062, -75.408854 ], [ -65.039062, -75.584937 ], [ -65.390625, -75.584937 ], [ -65.390625, -75.672197 ], [ -66.093750, -75.672197 ], [ -66.093750, -75.758940 ], [ -67.148438, -75.758940 ], [ -67.148438, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -75.930885 ], [ -68.203125, -75.930885 ], [ -68.203125, -76.016094 ], [ -68.554688, -76.016094 ], [ -68.554688, -76.100796 ], [ -69.257812, -76.100796 ], [ -69.257812, -76.184995 ], [ -69.960938, -76.184995 ], [ -69.960938, -76.351896 ], [ -70.312500, -76.351896 ], [ -70.312500, -76.516819 ], [ -70.664062, -76.516819 ], [ -70.664062, -76.598545 ], [ -71.015625, -76.598545 ], [ -71.015625, -76.679785 ], [ -73.125000, -76.679785 ], [ -73.125000, -76.598545 ], [ -74.531250, -76.598545 ], [ -74.531250, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.920614 ], [ -76.992188, -76.920614 ], [ -76.992188, -77.157163 ], [ -76.289062, -77.157163 ], [ -76.289062, -77.235074 ], [ -75.585938, -77.235074 ], [ -75.585938, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.542096 ], [ -74.179688, -77.542096 ], [ -74.179688, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -77.989049 ], [ -74.179688, -77.989049 ], [ -74.179688, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.937500, -78.206563 ], [ -75.937500, -78.134493 ], [ -76.640625, -78.134493 ], [ -76.640625, -78.206563 ], [ -76.992188, -78.206563 ], [ -76.992188, -78.278201 ], [ -77.695312, -78.278201 ], [ -77.695312, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.237185 ], [ -77.695312, -79.237185 ], [ -77.695312, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.496652 ], [ -76.992188, -79.496652 ], [ -76.992188, -79.687184 ], [ -76.640625, -79.687184 ], [ -76.640625, -79.935918 ], [ -76.289062, -79.935918 ], [ -76.289062, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.118564 ], [ -75.585938, -80.118564 ], [ -75.585938, -80.238501 ], [ -75.234375, -80.238501 ], [ -75.234375, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.356995 ], [ -73.828125, -80.356995 ], [ -73.828125, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.474065 ], [ -72.773438, -80.474065 ], [ -72.773438, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.816891 ], [ -70.664062, -80.816891 ], [ -70.664062, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.983688 ], [ -69.960938, -80.983688 ], [ -69.960938, -81.038617 ], [ -69.609375, -81.038617 ], [ -69.609375, -81.093214 ], [ -69.257812, -81.093214 ], [ -69.257812, -81.147481 ], [ -68.906250, -81.147481 ], [ -68.906250, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.308321 ], [ -67.851562, -81.308321 ], [ -67.851562, -81.361287 ], [ -67.148438, -81.361287 ], [ -67.148438, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.569968 ], [ -65.039062, -81.569968 ], [ -65.039062, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.723188 ], [ -63.632812, -81.723188 ], [ -63.632812, -81.773644 ], [ -63.281250, -81.773644 ], [ -63.281250, -81.823794 ], [ -62.929688, -81.823794 ], [ -62.929688, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.972431 ], [ -61.875000, -81.972431 ], [ -61.875000, -82.021378 ], [ -61.523438, -82.021378 ], [ -61.523438, -82.070028 ], [ -61.171875, -82.070028 ], [ -61.171875, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.261699 ], [ -60.117188, -82.261699 ], [ -60.117188, -82.355800 ], [ -59.765625, -82.355800 ], [ -59.765625, -82.448764 ], [ -59.414062, -82.448764 ], [ -59.414062, -82.631333 ], [ -59.062500, -82.631333 ], [ -59.062500, -82.809511 ], [ -58.710938, -82.809511 ], [ -58.710938, -83.068774 ], [ -58.359375, -83.068774 ], [ -58.359375, -83.194896 ], [ -58.007812, -83.194896 ], [ -58.007812, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -83.026219 ], [ -57.304688, -83.026219 ], [ -57.304688, -82.940327 ], [ -56.953125, -82.940327 ], [ -56.953125, -82.853382 ], [ -56.601562, -82.853382 ], [ -56.601562, -82.809511 ], [ -56.250000, -82.809511 ], [ -56.250000, -82.720964 ], [ -55.898438, -82.720964 ], [ -55.898438, -82.676285 ], [ -55.546875, -82.676285 ], [ -55.546875, -82.631333 ], [ -55.195312, -82.631333 ], [ -55.195312, -82.586106 ], [ -54.843750, -82.586106 ], [ -54.843750, -82.494824 ], [ -54.492188, -82.494824 ], [ -54.492188, -82.402423 ], [ -54.140625, -82.402423 ], [ -54.140625, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.428424 ], [ -90.351562, -73.428424 ], [ -90.351562, -73.327858 ], [ -90.000000, -73.327858 ], [ -90.000000, -73.226700 ], [ -89.648438, -73.226700 ], [ -89.648438, -72.816074 ], [ -89.296875, -72.816074 ], [ -89.296875, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.124945 ], [ -87.890625, -73.124945 ], [ -87.890625, -73.226700 ], [ -86.484375, -73.226700 ], [ -86.484375, -73.124945 ], [ -86.132812, -73.124945 ], [ -86.132812, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.327858 ], [ -85.429688, -73.327858 ], [ -85.429688, -73.528399 ], [ -83.671875, -73.528399 ], [ -83.671875, -73.627789 ], [ -82.617188, -73.627789 ], [ -82.617188, -73.726595 ], [ -81.914062, -73.726595 ], [ -81.914062, -73.824820 ], [ -81.210938, -73.824820 ], [ -81.210938, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.428424 ], [ -80.507812, -73.428424 ], [ -80.507812, -73.226700 ], [ -79.804688, -73.226700 ], [ -79.804688, -73.428424 ], [ -79.453125, -73.428424 ], [ -79.453125, -73.528399 ], [ -78.398438, -73.528399 ], [ -78.398438, -73.428424 ], [ -78.046875, -73.428424 ], [ -78.046875, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.726595 ], [ -76.640625, -73.726595 ], [ -76.640625, -73.922469 ], [ -75.234375, -73.922469 ], [ -75.234375, -73.824820 ], [ -74.531250, -73.824820 ], [ -74.531250, -73.726595 ], [ -73.828125, -73.726595 ], [ -73.828125, -73.627789 ], [ -73.476562, -73.627789 ], [ -73.476562, -73.528399 ], [ -72.773438, -73.528399 ], [ -72.773438, -73.428424 ], [ -72.421875, -73.428424 ], [ -72.421875, -73.327858 ], [ -71.718750, -73.327858 ], [ -71.718750, -73.226700 ], [ -70.664062, -73.226700 ], [ -70.664062, -73.124945 ], [ -69.257812, -73.124945 ], [ -69.257812, -73.022592 ], [ -68.554688, -73.022592 ], [ -68.554688, -72.919635 ], [ -67.851562, -72.919635 ], [ -67.851562, -72.711903 ], [ -67.500000, -72.711903 ], [ -67.500000, -72.289067 ], [ -67.148438, -72.289067 ], [ -67.148438, -71.524909 ], [ -67.500000, -71.524909 ], [ -67.500000, -71.074056 ], [ -67.851562, -71.074056 ], [ -67.851562, -70.728979 ], [ -68.203125, -70.728979 ], [ -68.203125, -70.377854 ], [ -68.554688, -70.377854 ], [ -68.554688, -71.187754 ], [ -68.203125, -71.187754 ], [ -68.203125, -71.635993 ], [ -68.554688, -71.635993 ], [ -68.554688, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.181804 ], [ -69.257812, -72.181804 ], [ -69.257812, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.395706 ], [ -70.664062, -72.395706 ], [ -70.664062, -72.501722 ], [ -72.421875, -72.501722 ], [ -72.421875, -72.289067 ], [ -72.070312, -72.289067 ], [ -72.070312, -72.073911 ], [ -72.421875, -72.073911 ], [ -72.421875, -72.181804 ], [ -73.125000, -72.181804 ], [ -73.125000, -72.289067 ], [ -73.828125, -72.289067 ], [ -73.828125, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -72.181804 ], [ -74.882812, -72.181804 ], [ -74.882812, -71.635993 ], [ -74.531250, -71.635993 ], [ -74.531250, -71.524909 ], [ -74.179688, -71.524909 ], [ -74.179688, -71.413177 ], [ -73.828125, -71.413177 ], [ -73.828125, -71.300793 ], [ -73.125000, -71.300793 ], [ -73.125000, -71.187754 ], [ -72.070312, -71.187754 ], [ -72.070312, -70.959697 ], [ -71.718750, -70.959697 ], [ -71.718750, -69.411242 ], [ -71.367188, -69.411242 ], [ -71.367188, -69.162558 ], [ -71.015625, -69.162558 ], [ -71.015625, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.287257 ], [ -69.609375, -69.287257 ], [ -69.609375, -69.778952 ], [ -69.257812, -69.778952 ], [ -69.257812, -70.020587 ], [ -68.906250, -70.020587 ], [ -68.906250, -70.259452 ], [ -68.554688, -70.259452 ], [ -68.554688, -69.287257 ], [ -68.203125, -69.287257 ], [ -68.203125, -69.037142 ], [ -67.851562, -69.037142 ], [ -67.851562, -68.784144 ], [ -67.500000, -68.784144 ], [ -67.500000, -67.609221 ], [ -67.851562, -67.609221 ], [ -67.851562, -67.339861 ], [ -67.500000, -67.339861 ], [ -67.500000, -67.067433 ], [ -67.148438, -67.067433 ], [ -67.148438, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.372755 ], [ -66.093750, -66.372755 ], [ -66.093750, -66.231457 ], [ -65.742188, -66.231457 ], [ -65.742188, -66.089364 ], [ -65.390625, -66.089364 ], [ -65.390625, -65.946472 ], [ -65.039062, -65.946472 ], [ -65.039062, -65.802776 ], [ -62.578125, -65.802776 ] ] ], [ [ [ -60.117188, -79.749932 ], [ -60.117188, -79.874297 ], [ -59.765625, -79.874297 ], [ -59.765625, -79.997168 ], [ -59.414062, -79.997168 ], [ -59.414062, -80.297927 ], [ -59.765625, -80.297927 ], [ -59.765625, -80.760615 ], [ -60.117188, -80.760615 ], [ -60.117188, -80.983688 ], [ -60.820312, -80.983688 ], [ -60.820312, -80.928426 ], [ -61.875000, -80.928426 ], [ -61.875000, -80.872827 ], [ -62.929688, -80.872827 ], [ -62.929688, -80.928426 ], [ -64.687500, -80.928426 ], [ -64.687500, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.760615 ], [ -65.390625, -80.760615 ], [ -65.390625, -80.647035 ], [ -65.742188, -80.647035 ], [ -65.742188, -80.474065 ], [ -66.093750, -80.474065 ], [ -66.093750, -80.356995 ], [ -66.445312, -80.356995 ], [ -66.445312, -80.238501 ], [ -65.390625, -80.238501 ], [ -65.390625, -80.297927 ], [ -63.632812, -80.297927 ], [ -63.632812, -80.356995 ], [ -62.578125, -80.356995 ], [ -62.578125, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.356995 ], [ -61.523438, -80.356995 ], [ -61.523438, -80.118564 ], [ -61.171875, -80.118564 ], [ -61.171875, -79.935918 ], [ -60.820312, -79.935918 ], [ -60.820312, -79.749932 ], [ -60.117188, -79.749932 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.406250, -71.300793 ], [ 1.406250, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -85.200475 ], [ -54.140625, -85.200475 ], [ -54.140625, -82.308893 ], [ -53.789062, -82.308893 ], [ -53.789062, -82.261699 ], [ -53.437500, -82.261699 ], [ -53.437500, -82.214217 ], [ -53.085938, -82.214217 ], [ -53.085938, -82.166446 ], [ -52.382812, -82.166446 ], [ -52.382812, -82.118384 ], [ -52.031250, -82.118384 ], [ -52.031250, -82.070028 ], [ -51.679688, -82.070028 ], [ -51.679688, -82.021378 ], [ -51.328125, -82.021378 ], [ -51.328125, -81.972431 ], [ -50.976562, -81.972431 ], [ -50.976562, -81.873641 ], [ -50.625000, -81.873641 ], [ -50.625000, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.723188 ], [ -46.757812, -81.723188 ], [ -46.757812, -81.773644 ], [ -45.703125, -81.773644 ], [ -45.703125, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -81.972431 ], [ -43.593750, -81.972431 ], [ -43.593750, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -81.972431 ], [ -42.539062, -81.972431 ], [ -42.539062, -81.773644 ], [ -42.187500, -81.773644 ], [ -42.187500, -81.672424 ], [ -41.835938, -81.672424 ], [ -41.835938, -81.569968 ], [ -41.484375, -81.569968 ], [ -41.484375, -81.518272 ], [ -41.132812, -81.518272 ], [ -41.132812, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.361287 ], [ -37.968750, -81.361287 ], [ -37.968750, -81.308321 ], [ -37.265625, -81.308321 ], [ -37.265625, -81.255032 ], [ -36.914062, -81.255032 ], [ -36.914062, -81.201420 ], [ -36.210938, -81.201420 ], [ -36.210938, -81.147481 ], [ -35.859375, -81.147481 ], [ -35.859375, -81.093214 ], [ -35.507812, -81.093214 ], [ -35.507812, -81.038617 ], [ -34.804688, -81.038617 ], [ -34.804688, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.928426 ], [ -33.750000, -80.928426 ], [ -33.750000, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.816891 ], [ -32.343750, -80.816891 ], [ -32.343750, -80.760615 ], [ -31.640625, -80.760615 ], [ -31.640625, -80.703997 ], [ -30.937500, -80.703997 ], [ -30.937500, -80.647035 ], [ -30.234375, -80.647035 ], [ -30.234375, -80.589727 ], [ -29.882812, -80.589727 ], [ -29.882812, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.474065 ], [ -28.828125, -80.474065 ], [ -28.828125, -80.415707 ], [ -28.476562, -80.415707 ], [ -28.476562, -80.297927 ], [ -28.828125, -80.297927 ], [ -28.828125, -80.118564 ], [ -29.179688, -80.118564 ], [ -29.179688, -79.812302 ], [ -29.531250, -79.812302 ], [ -29.531250, -79.237185 ], [ -30.234375, -79.237185 ], [ -30.234375, -79.302640 ], [ -31.992188, -79.302640 ], [ -31.992188, -79.367701 ], [ -33.046875, -79.367701 ], [ -33.046875, -79.432371 ], [ -35.507812, -79.432371 ], [ -35.507812, -79.302640 ], [ -35.859375, -79.302640 ], [ -35.859375, -78.349411 ], [ -35.507812, -78.349411 ], [ -35.507812, -78.206563 ], [ -35.156250, -78.206563 ], [ -35.156250, -78.134493 ], [ -34.804688, -78.134493 ], [ -34.804688, -78.061989 ], [ -34.101562, -78.061989 ], [ -34.101562, -77.989049 ], [ -33.750000, -77.989049 ], [ -33.750000, -77.915669 ], [ -33.398438, -77.915669 ], [ -33.398438, -77.841848 ], [ -33.046875, -77.841848 ], [ -33.046875, -77.767582 ], [ -32.695312, -77.767582 ], [ -32.695312, -77.692870 ], [ -32.343750, -77.692870 ], [ -32.343750, -77.617709 ], [ -31.992188, -77.617709 ], [ -31.992188, -77.542096 ], [ -31.289062, -77.542096 ], [ -31.289062, -77.466028 ], [ -30.937500, -77.466028 ], [ -30.937500, -77.389504 ], [ -30.585938, -77.389504 ], [ -30.585938, -77.235074 ], [ -30.234375, -77.235074 ], [ -30.234375, -77.157163 ], [ -29.882812, -77.157163 ], [ -29.882812, -77.078784 ], [ -29.531250, -77.078784 ], [ -29.531250, -76.920614 ], [ -29.179688, -76.920614 ], [ -29.179688, -76.760541 ], [ -28.828125, -76.760541 ], [ -28.828125, -76.679785 ], [ -28.125000, -76.679785 ], [ -28.125000, -76.598545 ], [ -27.421875, -76.598545 ], [ -27.421875, -76.516819 ], [ -26.718750, -76.516819 ], [ -26.718750, -76.434604 ], [ -26.015625, -76.434604 ], [ -26.015625, -76.351896 ], [ -25.312500, -76.351896 ], [ -25.312500, -76.268695 ], [ -23.203125, -76.268695 ], [ -23.203125, -76.184995 ], [ -22.500000, -76.184995 ], [ -22.500000, -76.100796 ], [ -21.796875, -76.100796 ], [ -21.796875, -76.016094 ], [ -21.093750, -76.016094 ], [ -21.093750, -75.930885 ], [ -20.742188, -75.930885 ], [ -20.742188, -75.845169 ], [ -20.390625, -75.845169 ], [ -20.390625, -75.758940 ], [ -20.039062, -75.758940 ], [ -20.039062, -75.672197 ], [ -19.687500, -75.672197 ], [ -19.687500, -75.584937 ], [ -19.335938, -75.584937 ], [ -19.335938, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.408854 ], [ -18.632812, -75.408854 ], [ -18.632812, -75.320025 ], [ -17.929688, -75.320025 ], [ -17.929688, -75.230667 ], [ -17.578125, -75.230667 ], [ -17.578125, -75.140778 ], [ -17.226562, -75.140778 ], [ -17.226562, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.867889 ], [ -16.523438, -74.867889 ], [ -16.523438, -74.775843 ], [ -16.171875, -74.775843 ], [ -16.171875, -74.590108 ], [ -15.820312, -74.590108 ], [ -15.820312, -74.307353 ], [ -15.468750, -74.307353 ], [ -15.468750, -74.116047 ], [ -15.820312, -74.116047 ], [ -15.820312, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.922469 ], [ -16.523438, -73.922469 ], [ -16.523438, -73.627789 ], [ -16.171875, -73.627789 ], [ -16.171875, -73.428424 ], [ -15.820312, -73.428424 ], [ -15.820312, -73.226700 ], [ -15.468750, -73.226700 ], [ -15.468750, -73.124945 ], [ -15.117188, -73.124945 ], [ -15.117188, -73.022592 ], [ -14.414062, -73.022592 ], [ -14.414062, -72.919635 ], [ -14.062500, -72.919635 ], [ -14.062500, -72.816074 ], [ -13.359375, -72.816074 ], [ -13.359375, -72.711903 ], [ -13.007812, -72.711903 ], [ -13.007812, -72.607120 ], [ -12.656250, -72.607120 ], [ -12.656250, -72.501722 ], [ -12.304688, -72.501722 ], [ -12.304688, -72.289067 ], [ -11.953125, -72.289067 ], [ -11.953125, -72.073911 ], [ -11.601562, -72.073911 ], [ -11.601562, -71.856229 ], [ -11.250000, -71.856229 ], [ -11.250000, -71.635993 ], [ -10.898438, -71.635993 ], [ -10.898438, -71.524909 ], [ -10.546875, -71.524909 ], [ -10.546875, -71.413177 ], [ -10.195312, -71.413177 ], [ -10.195312, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.413177 ], [ -8.789062, -71.413177 ], [ -8.789062, -71.635993 ], [ -8.085938, -71.635993 ], [ -8.085938, -71.746432 ], [ -7.382812, -71.746432 ], [ -7.382812, -71.187754 ], [ -7.031250, -71.187754 ], [ -7.031250, -70.959697 ], [ -6.679688, -70.959697 ], [ -6.679688, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.413177 ], [ -3.515625, -71.413177 ], [ -3.515625, -71.300793 ], [ -2.109375, -71.300793 ], [ -2.109375, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ] ] ], [ [ [ -45.351562, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.134493 ], [ -44.648438, -78.134493 ], [ -44.648438, -78.278201 ], [ -44.296875, -78.278201 ], [ -44.296875, -78.420193 ], [ -43.945312, -78.420193 ], [ -43.945312, -78.836065 ], [ -43.593750, -78.836065 ], [ -43.593750, -79.302640 ], [ -43.242188, -79.302640 ], [ -43.242188, -80.058050 ], [ -43.593750, -80.058050 ], [ -43.593750, -80.118564 ], [ -43.945312, -80.118564 ], [ -43.945312, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.474065 ], [ -45.703125, -80.474065 ], [ -45.703125, -80.532071 ], [ -46.054688, -80.532071 ], [ -46.054688, -80.589727 ], [ -46.406250, -80.589727 ], [ -46.406250, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.703997 ], [ -47.460938, -80.703997 ], [ -47.460938, -80.760615 ], [ -48.164062, -80.760615 ], [ -48.164062, -80.816891 ], [ -48.515625, -80.816891 ], [ -48.515625, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.928426 ], [ -49.570312, -80.928426 ], [ -49.570312, -80.983688 ], [ -50.273438, -80.983688 ], [ -50.273438, -81.038617 ], [ -52.031250, -81.038617 ], [ -52.031250, -80.983688 ], [ -53.085938, -80.983688 ], [ -53.085938, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.789062, -80.816891 ], [ -53.789062, -80.703997 ], [ -54.140625, -80.703997 ], [ -54.140625, -80.238501 ], [ -53.789062, -80.238501 ], [ -53.789062, -80.178713 ], [ -53.085938, -80.178713 ], [ -53.085938, -80.118564 ], [ -52.734375, -80.118564 ], [ -52.734375, -80.058050 ], [ -52.382812, -80.058050 ], [ -52.382812, -79.997168 ], [ -51.679688, -79.997168 ], [ -51.679688, -79.874297 ], [ -51.328125, -79.874297 ], [ -51.328125, -79.749932 ], [ -50.976562, -79.749932 ], [ -50.976562, -79.560546 ], [ -50.625000, -79.560546 ], [ -50.625000, -79.302640 ], [ -50.273438, -79.302640 ], [ -50.273438, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.767792 ], [ -49.570312, -78.767792 ], [ -49.570312, -78.630006 ], [ -49.218750, -78.630006 ], [ -49.218750, -78.420193 ], [ -48.867188, -78.420193 ], [ -48.867188, -78.206563 ], [ -48.515625, -78.206563 ], [ -48.515625, -78.061989 ], [ -47.812500, -78.061989 ], [ -47.812500, -77.989049 ], [ -47.109375, -77.989049 ], [ -47.109375, -77.915669 ], [ -46.054688, -77.915669 ], [ -46.054688, -77.989049 ], [ -45.351562, -77.989049 ], [ -45.351562, -78.061989 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -6.679688, -70.959697 ], [ -6.679688, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.413177 ], [ -3.515625, -71.413177 ], [ -3.515625, -71.300793 ], [ -2.109375, -71.300793 ], [ -2.109375, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.406250, -71.300793 ], [ 1.406250, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -85.200475 ], [ -54.140625, -85.200475 ], [ -54.140625, -82.308893 ], [ -53.789062, -82.308893 ], [ -53.789062, -82.261699 ], [ -53.437500, -82.261699 ], [ -53.437500, -82.214217 ], [ -53.085938, -82.214217 ], [ -53.085938, -82.166446 ], [ -52.382812, -82.166446 ], [ -52.382812, -82.118384 ], [ -52.031250, -82.118384 ], [ -52.031250, -82.070028 ], [ -51.679688, -82.070028 ], [ -51.679688, -82.021378 ], [ -51.328125, -82.021378 ], [ -51.328125, -81.972431 ], [ -50.976562, -81.972431 ], [ -50.976562, -81.873641 ], [ -50.625000, -81.873641 ], [ -50.625000, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.723188 ], [ -46.757812, -81.723188 ], [ -46.757812, -81.773644 ], [ -45.703125, -81.773644 ], [ -45.703125, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -81.972431 ], [ -43.593750, -81.972431 ], [ -43.593750, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -81.972431 ], [ -42.539062, -81.972431 ], [ -42.539062, -81.773644 ], [ -42.187500, -81.773644 ], [ -42.187500, -81.672424 ], [ -41.835938, -81.672424 ], [ -41.835938, -81.569968 ], [ -41.484375, -81.569968 ], [ -41.484375, -81.518272 ], [ -41.132812, -81.518272 ], [ -41.132812, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.361287 ], [ -37.968750, -81.361287 ], [ -37.968750, -81.308321 ], [ -37.265625, -81.308321 ], [ -37.265625, -81.255032 ], [ -36.914062, -81.255032 ], [ -36.914062, -81.201420 ], [ -36.210938, -81.201420 ], [ -36.210938, -81.147481 ], [ -35.859375, -81.147481 ], [ -35.859375, -81.093214 ], [ -35.507812, -81.093214 ], [ -35.507812, -81.038617 ], [ -34.804688, -81.038617 ], [ -34.804688, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.928426 ], [ -33.750000, -80.928426 ], [ -33.750000, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.816891 ], [ -32.343750, -80.816891 ], [ -32.343750, -80.760615 ], [ -31.640625, -80.760615 ], [ -31.640625, -80.703997 ], [ -30.937500, -80.703997 ], [ -30.937500, -80.647035 ], [ -30.234375, -80.647035 ], [ -30.234375, -80.589727 ], [ -29.882812, -80.589727 ], [ -29.882812, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.474065 ], [ -28.828125, -80.474065 ], [ -28.828125, -80.415707 ], [ -28.476562, -80.415707 ], [ -28.476562, -80.297927 ], [ -28.828125, -80.297927 ], [ -28.828125, -80.118564 ], [ -29.179688, -80.118564 ], [ -29.179688, -79.812302 ], [ -29.531250, -79.812302 ], [ -29.531250, -79.237185 ], [ -30.234375, -79.237185 ], [ -30.234375, -79.302640 ], [ -31.992188, -79.302640 ], [ -31.992188, -79.367701 ], [ -33.046875, -79.367701 ], [ -33.046875, -79.432371 ], [ -35.507812, -79.432371 ], [ -35.507812, -79.302640 ], [ -35.859375, -79.302640 ], [ -35.859375, -78.349411 ], [ -35.507812, -78.349411 ], [ -35.507812, -78.206563 ], [ -35.156250, -78.206563 ], [ -35.156250, -78.134493 ], [ -34.804688, -78.134493 ], [ -34.804688, -78.061989 ], [ -34.101562, -78.061989 ], [ -34.101562, -77.989049 ], [ -33.750000, -77.989049 ], [ -33.750000, -77.915669 ], [ -33.398438, -77.915669 ], [ -33.398438, -77.841848 ], [ -33.046875, -77.841848 ], [ -33.046875, -77.767582 ], [ -32.695312, -77.767582 ], [ -32.695312, -77.692870 ], [ -32.343750, -77.692870 ], [ -32.343750, -77.617709 ], [ -31.992188, -77.617709 ], [ -31.992188, -77.542096 ], [ -31.289062, -77.542096 ], [ -31.289062, -77.466028 ], [ -30.937500, -77.466028 ], [ -30.937500, -77.389504 ], [ -30.585938, -77.389504 ], [ -30.585938, -77.235074 ], [ -30.234375, -77.235074 ], [ -30.234375, -77.157163 ], [ -29.882812, -77.157163 ], [ -29.882812, -77.078784 ], [ -29.531250, -77.078784 ], [ -29.531250, -76.920614 ], [ -29.179688, -76.920614 ], [ -29.179688, -76.760541 ], [ -28.828125, -76.760541 ], [ -28.828125, -76.679785 ], [ -28.125000, -76.679785 ], [ -28.125000, -76.598545 ], [ -27.421875, -76.598545 ], [ -27.421875, -76.516819 ], [ -26.718750, -76.516819 ], [ -26.718750, -76.434604 ], [ -26.015625, -76.434604 ], [ -26.015625, -76.351896 ], [ -25.312500, -76.351896 ], [ -25.312500, -76.268695 ], [ -23.203125, -76.268695 ], [ -23.203125, -76.184995 ], [ -22.500000, -76.184995 ], [ -22.500000, -76.100796 ], [ -21.796875, -76.100796 ], [ -21.796875, -76.016094 ], [ -21.093750, -76.016094 ], [ -21.093750, -75.930885 ], [ -20.742188, -75.930885 ], [ -20.742188, -75.845169 ], [ -20.390625, -75.845169 ], [ -20.390625, -75.758940 ], [ -20.039062, -75.758940 ], [ -20.039062, -75.672197 ], [ -19.687500, -75.672197 ], [ -19.687500, -75.584937 ], [ -19.335938, -75.584937 ], [ -19.335938, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.408854 ], [ -18.632812, -75.408854 ], [ -18.632812, -75.320025 ], [ -17.929688, -75.320025 ], [ -17.929688, -75.230667 ], [ -17.578125, -75.230667 ], [ -17.578125, -75.140778 ], [ -17.226562, -75.140778 ], [ -17.226562, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.867889 ], [ -16.523438, -74.867889 ], [ -16.523438, -74.775843 ], [ -16.171875, -74.775843 ], [ -16.171875, -74.590108 ], [ -15.820312, -74.590108 ], [ -15.820312, -74.307353 ], [ -15.468750, -74.307353 ], [ -15.468750, -74.116047 ], [ -15.820312, -74.116047 ], [ -15.820312, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.922469 ], [ -16.523438, -73.922469 ], [ -16.523438, -73.627789 ], [ -16.171875, -73.627789 ], [ -16.171875, -73.428424 ], [ -15.820312, -73.428424 ], [ -15.820312, -73.226700 ], [ -15.468750, -73.226700 ], [ -15.468750, -73.124945 ], [ -15.117188, -73.124945 ], [ -15.117188, -73.022592 ], [ -14.414062, -73.022592 ], [ -14.414062, -72.919635 ], [ -14.062500, -72.919635 ], [ -14.062500, -72.816074 ], [ -13.359375, -72.816074 ], [ -13.359375, -72.711903 ], [ -13.007812, -72.711903 ], [ -13.007812, -72.607120 ], [ -12.656250, -72.607120 ], [ -12.656250, -72.501722 ], [ -12.304688, -72.501722 ], [ -12.304688, -72.289067 ], [ -11.953125, -72.289067 ], [ -11.953125, -72.073911 ], [ -11.601562, -72.073911 ], [ -11.601562, -71.856229 ], [ -11.250000, -71.856229 ], [ -11.250000, -71.635993 ], [ -10.898438, -71.635993 ], [ -10.898438, -71.524909 ], [ -10.546875, -71.524909 ], [ -10.546875, -71.413177 ], [ -10.195312, -71.413177 ], [ -10.195312, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.413177 ], [ -8.789062, -71.413177 ], [ -8.789062, -71.635993 ], [ -8.085938, -71.635993 ], [ -8.085938, -71.746432 ], [ -7.382812, -71.746432 ], [ -7.382812, -71.187754 ], [ -7.031250, -71.187754 ], [ -7.031250, -70.959697 ], [ -6.679688, -70.959697 ] ] ], [ [ [ -46.054688, -77.915669 ], [ -46.054688, -77.989049 ], [ -45.351562, -77.989049 ], [ -45.351562, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.134493 ], [ -44.648438, -78.134493 ], [ -44.648438, -78.278201 ], [ -44.296875, -78.278201 ], [ -44.296875, -78.420193 ], [ -43.945312, -78.420193 ], [ -43.945312, -78.836065 ], [ -43.593750, -78.836065 ], [ -43.593750, -79.302640 ], [ -43.242188, -79.302640 ], [ -43.242188, -80.058050 ], [ -43.593750, -80.058050 ], [ -43.593750, -80.118564 ], [ -43.945312, -80.118564 ], [ -43.945312, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.474065 ], [ -45.703125, -80.474065 ], [ -45.703125, -80.532071 ], [ -46.054688, -80.532071 ], [ -46.054688, -80.589727 ], [ -46.406250, -80.589727 ], [ -46.406250, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.703997 ], [ -47.460938, -80.703997 ], [ -47.460938, -80.760615 ], [ -48.164062, -80.760615 ], [ -48.164062, -80.816891 ], [ -48.515625, -80.816891 ], [ -48.515625, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.928426 ], [ -49.570312, -80.928426 ], [ -49.570312, -80.983688 ], [ -50.273438, -80.983688 ], [ -50.273438, -81.038617 ], [ -52.031250, -81.038617 ], [ -52.031250, -80.983688 ], [ -53.085938, -80.983688 ], [ -53.085938, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.789062, -80.816891 ], [ -53.789062, -80.703997 ], [ -54.140625, -80.703997 ], [ -54.140625, -80.238501 ], [ -53.789062, -80.238501 ], [ -53.789062, -80.178713 ], [ -53.085938, -80.178713 ], [ -53.085938, -80.118564 ], [ -52.734375, -80.118564 ], [ -52.734375, -80.058050 ], [ -52.382812, -80.058050 ], [ -52.382812, -79.997168 ], [ -51.679688, -79.997168 ], [ -51.679688, -79.874297 ], [ -51.328125, -79.874297 ], [ -51.328125, -79.749932 ], [ -50.976562, -79.749932 ], [ -50.976562, -79.560546 ], [ -50.625000, -79.560546 ], [ -50.625000, -79.302640 ], [ -50.273438, -79.302640 ], [ -50.273438, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.767792 ], [ -49.570312, -78.767792 ], [ -49.570312, -78.630006 ], [ -49.218750, -78.630006 ], [ -49.218750, -78.420193 ], [ -48.867188, -78.420193 ], [ -48.867188, -78.206563 ], [ -48.515625, -78.206563 ], [ -48.515625, -78.061989 ], [ -47.812500, -78.061989 ], [ -47.812500, -77.989049 ], [ -47.109375, -77.989049 ], [ -47.109375, -77.915669 ], [ -46.054688, -77.915669 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -2.460181 ], [ -73.476562, -2.460181 ], [ -73.476562, -1.757537 ], [ -73.828125, -1.757537 ], [ -73.828125, -1.406109 ], [ -74.179688, -1.406109 ], [ -74.179688, -1.054628 ], [ -74.531250, -1.054628 ], [ -74.531250, -0.703107 ], [ -74.882812, -0.703107 ], [ -74.882812, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, 0.000000 ], [ -76.289062, 0.000000 ], [ -76.289062, 0.351560 ], [ -77.695312, 0.351560 ], [ -77.695312, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -69.960938, 0.703107 ], [ -69.960938, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -1.054628 ], [ -69.257812, -1.054628 ], [ -69.257812, -1.406109 ], [ -69.609375, -1.406109 ], [ -69.609375, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -2.460181 ] ] ], [ [ [ -66.796875, 1.406109 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.406109 ], [ -66.796875, 1.406109 ] ] ], [ [ [ -70.312500, -4.214943 ], [ -70.312500, -3.162456 ], [ -69.960938, -3.162456 ], [ -69.960938, -4.214943 ], [ -70.312500, -4.214943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.960938, -3.162456 ], [ -69.960938, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -3.162456 ], [ -69.960938, -3.162456 ] ] ], [ [ [ -70.312500, -2.811371 ], [ -70.312500, -2.460181 ], [ -73.476562, -2.460181 ], [ -73.476562, -1.757537 ], [ -73.828125, -1.757537 ], [ -73.828125, -1.406109 ], [ -74.179688, -1.406109 ], [ -74.179688, -1.054628 ], [ -74.531250, -1.054628 ], [ -74.531250, -0.703107 ], [ -74.882812, -0.703107 ], [ -74.882812, -0.351560 ], [ -75.234375, 0.000000 ], [ -76.289062, 0.000000 ], [ -76.289062, 0.351560 ], [ -77.695312, 0.351560 ], [ -77.695312, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -69.960938, 0.703107 ], [ -69.960938, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -1.054628 ], [ -69.257812, -1.054628 ], [ -69.257812, -1.406109 ], [ -69.609375, -1.406109 ], [ -69.609375, -2.811371 ], [ -70.312500, -2.811371 ] ] ], [ [ [ -67.148438, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.406109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.984375, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.757537 ], [ -63.984375, 1.757537 ], [ -63.984375, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.984375, 1.757537 ], [ -63.984375, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.757537 ], [ -63.984375, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 1.757537 ], [ -57.656250, 1.757537 ], [ -57.656250, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, 1.757537 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 1.757537 ], [ -57.656250, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.695312, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -75.937500, -1.757537 ], [ -75.937500, -2.108899 ], [ -76.289062, -2.108899 ], [ -76.289062, -2.460181 ], [ -76.640625, -2.460181 ], [ -76.640625, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -3.162456 ], [ -77.695312, -3.162456 ], [ -77.695312, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -80.507812, -4.565474 ], [ -80.507812, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -3.162456 ], [ -79.804688, -3.162456 ], [ -79.804688, -2.460181 ], [ -80.859375, -2.460181 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 0.703107 ], [ -79.453125, 0.703107 ], [ -79.453125, 1.054628 ], [ -78.046875, 1.054628 ], [ -78.046875, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.351560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.046875, 1.054628 ], [ -78.046875, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -75.937500, -1.757537 ], [ -75.937500, -2.108899 ], [ -76.289062, -2.108899 ], [ -76.289062, -2.460181 ], [ -76.640625, -2.460181 ], [ -76.640625, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -3.162456 ], [ -77.695312, -3.162456 ], [ -77.695312, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -80.507812, -4.565474 ], [ -80.507812, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -3.162456 ], [ -79.804688, -3.162456 ], [ -79.804688, -2.460181 ], [ -80.859375, -2.460181 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 0.703107 ], [ -79.453125, 0.703107 ], [ -79.453125, 1.054628 ], [ -78.046875, 1.054628 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -2.460181 ], [ -70.312500, -2.460181 ], [ -70.312500, -2.811371 ], [ -69.960938, -2.811371 ], [ -69.960938, -3.162456 ], [ -70.312500, -3.162456 ], [ -70.312500, -4.214943 ], [ -70.664062, -4.214943 ], [ -70.664062, -4.565474 ], [ -71.718750, -4.565474 ], [ -71.718750, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -73.828125, -7.013668 ], [ -73.828125, -8.059230 ], [ -73.476562, -8.059230 ], [ -73.476562, -8.754795 ], [ -73.125000, -8.754795 ], [ -73.125000, -9.449062 ], [ -72.421875, -9.449062 ], [ -72.421875, -9.795678 ], [ -72.070312, -9.795678 ], [ -72.070312, -10.141932 ], [ -71.015625, -10.141932 ], [ -71.015625, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -10.487812 ], [ -70.664062, -10.487812 ], [ -70.664062, -11.178402 ], [ -69.257812, -11.178402 ], [ -69.257812, -11.867351 ], [ -68.906250, -11.867351 ], [ -68.906250, -12.554564 ], [ -68.554688, -12.554564 ], [ -68.554688, -12.897489 ], [ -68.906250, -12.897489 ], [ -68.906250, -14.944785 ], [ -69.257812, -14.944785 ], [ -69.257812, -16.299051 ], [ -68.906250, -16.299051 ], [ -68.906250, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -17.978733 ], [ -69.960938, -17.978733 ], [ -69.960938, -18.312811 ], [ -70.664062, -18.312811 ], [ -70.664062, -17.978733 ], [ -71.367188, -17.978733 ], [ -71.367188, -17.308688 ], [ -72.070312, -17.308688 ], [ -72.070312, -16.972741 ], [ -72.773438, -16.972741 ], [ -72.773438, -16.636192 ], [ -73.476562, -16.636192 ], [ -73.476562, -16.299051 ], [ -73.828125, -16.299051 ], [ -73.828125, -15.961329 ], [ -74.531250, -15.961329 ], [ -74.531250, -15.623037 ], [ -75.234375, -15.623037 ], [ -75.234375, -15.284185 ], [ -75.585938, -15.284185 ], [ -75.585938, -14.944785 ], [ -75.937500, -14.944785 ], [ -75.937500, -14.264383 ], [ -76.289062, -14.264383 ], [ -76.289062, -13.239945 ], [ -76.640625, -13.239945 ], [ -76.640625, -12.554564 ], [ -76.992188, -12.554564 ], [ -76.992188, -12.211180 ], [ -77.343750, -12.211180 ], [ -77.343750, -11.523088 ], [ -77.695312, -11.523088 ], [ -77.695312, -10.833306 ], [ -78.046875, -10.833306 ], [ -78.046875, -10.141932 ], [ -78.398438, -10.141932 ], [ -78.398438, -9.449062 ], [ -78.750000, -9.449062 ], [ -78.750000, -8.754795 ], [ -79.101562, -8.754795 ], [ -79.101562, -8.407168 ], [ -79.453125, -8.407168 ], [ -79.453125, -7.710992 ], [ -79.804688, -7.710992 ], [ -79.804688, -7.362467 ], [ -80.156250, -7.362467 ], [ -80.156250, -7.013668 ], [ -80.507812, -7.013668 ], [ -80.507812, -6.664608 ], [ -80.859375, -6.664608 ], [ -80.859375, -6.315299 ], [ -81.210938, -6.315299 ], [ -81.210938, -5.965754 ], [ -80.859375, -5.965754 ], [ -80.859375, -5.615986 ], [ -81.210938, -5.615986 ], [ -81.210938, -4.915833 ], [ -81.562500, -4.915833 ], [ -81.562500, -4.214943 ], [ -81.210938, -4.214943 ], [ -81.210938, -3.864255 ], [ -80.507812, -3.864255 ], [ -80.507812, -3.513421 ], [ -80.156250, -3.513421 ], [ -80.156250, -4.214943 ], [ -80.507812, -4.214943 ], [ -80.507812, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -78.750000, -4.915833 ], [ -78.750000, -4.214943 ], [ -78.398438, -4.214943 ], [ -78.398438, -3.864255 ], [ -78.046875, -3.864255 ], [ -78.046875, -3.513421 ], [ -77.695312, -3.513421 ], [ -77.695312, -3.162456 ], [ -77.343750, -3.162456 ], [ -77.343750, -2.811371 ], [ -76.640625, -2.811371 ], [ -76.640625, -2.460181 ], [ -76.289062, -2.460181 ], [ -76.289062, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.351560 ], [ -74.882812, -0.351560 ], [ -74.882812, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.351560 ], [ -74.882812, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -2.460181 ], [ -70.312500, -2.460181 ], [ -70.312500, -2.811371 ], [ -69.960938, -2.811371 ], [ -69.960938, -3.162456 ], [ -70.312500, -3.162456 ], [ -70.312500, -4.214943 ], [ -70.664062, -4.214943 ], [ -70.664062, -4.565474 ], [ -71.718750, -4.565474 ], [ -71.718750, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -73.828125, -7.013668 ], [ -73.828125, -8.059230 ], [ -73.476562, -8.059230 ], [ -73.476562, -8.754795 ], [ -73.125000, -8.754795 ], [ -73.125000, -9.449062 ], [ -72.421875, -9.449062 ], [ -72.421875, -9.795678 ], [ -72.070312, -9.795678 ], [ -72.070312, -10.141932 ], [ -71.015625, -10.141932 ], [ -71.015625, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -10.487812 ], [ -70.664062, -10.487812 ], [ -70.664062, -11.178402 ], [ -69.257812, -11.178402 ], [ -69.257812, -11.867351 ], [ -68.906250, -11.867351 ], [ -68.906250, -12.554564 ], [ -68.554688, -12.554564 ], [ -68.554688, -12.897489 ], [ -68.906250, -12.897489 ], [ -68.906250, -14.944785 ], [ -69.257812, -14.944785 ], [ -69.257812, -16.299051 ], [ -68.906250, -16.299051 ], [ -68.906250, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -17.978733 ], [ -69.960938, -17.978733 ], [ -69.960938, -18.312811 ], [ -70.664062, -18.312811 ], [ -70.664062, -17.978733 ], [ -71.367188, -17.978733 ], [ -71.367188, -17.308688 ], [ -72.070312, -17.308688 ], [ -72.070312, -16.972741 ], [ -72.773438, -16.972741 ], [ -72.773438, -16.636192 ], [ -73.476562, -16.636192 ], [ -73.476562, -16.299051 ], [ -73.828125, -16.299051 ], [ -73.828125, -15.961329 ], [ -74.531250, -15.961329 ], [ -74.531250, -15.623037 ], [ -75.234375, -15.623037 ], [ -75.234375, -15.284185 ], [ -75.585938, -15.284185 ], [ -75.585938, -14.944785 ], [ -75.937500, -14.944785 ], [ -75.937500, -14.264383 ], [ -76.289062, -14.264383 ], [ -76.289062, -13.239945 ], [ -76.640625, -13.239945 ], [ -76.640625, -12.554564 ], [ -76.992188, -12.554564 ], [ -76.992188, -12.211180 ], [ -77.343750, -12.211180 ], [ -77.343750, -11.523088 ], [ -77.695312, -11.523088 ], [ -77.695312, -10.833306 ], [ -78.046875, -10.833306 ], [ -78.046875, -10.141932 ], [ -78.398438, -10.141932 ], [ -78.398438, -9.449062 ], [ -78.750000, -9.449062 ], [ -78.750000, -8.754795 ], [ -79.101562, -8.754795 ], [ -79.101562, -8.407168 ], [ -79.453125, -8.407168 ], [ -79.453125, -7.710992 ], [ -79.804688, -7.710992 ], [ -79.804688, -7.362467 ], [ -80.156250, -7.362467 ], [ -80.156250, -7.013668 ], [ -80.507812, -7.013668 ], [ -80.507812, -6.664608 ], [ -80.859375, -6.664608 ], [ -80.859375, -6.315299 ], [ -81.210938, -6.315299 ], [ -81.210938, -5.965754 ], [ -80.859375, -5.965754 ], [ -80.859375, -5.615986 ], [ -81.210938, -5.615986 ], [ -81.210938, -4.915833 ], [ -81.562500, -4.915833 ], [ -81.562500, -4.214943 ], [ -81.210938, -4.214943 ], [ -81.210938, -3.864255 ], [ -80.507812, -3.864255 ], [ -80.507812, -3.513421 ], [ -80.156250, -3.513421 ], [ -80.156250, -4.214943 ], [ -80.507812, -4.214943 ], [ -80.507812, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -78.750000, -4.915833 ], [ -78.750000, -4.214943 ], [ -78.398438, -4.214943 ], [ -78.398438, -3.864255 ], [ -78.046875, -3.864255 ], [ -78.046875, -3.513421 ], [ -77.695312, -3.513421 ], [ -77.695312, -3.162456 ], [ -77.343750, -3.162456 ], [ -77.343750, -2.811371 ], [ -76.640625, -2.811371 ], [ -76.640625, -2.460181 ], [ -76.289062, -2.460181 ], [ -76.289062, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.351560 ], [ -74.882812, -0.351560 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.476562, -53.330873 ], [ -73.476562, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -53.956086 ], [ -71.718750, -53.956086 ], [ -71.718750, -54.162434 ], [ -71.015625, -54.162434 ], [ -71.015625, -53.956086 ], [ -70.664062, -53.956086 ], [ -70.664062, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -52.908902 ], [ -69.960938, -52.908902 ], [ -69.960938, -52.696361 ], [ -68.554688, -52.696361 ], [ -68.554688, -54.775346 ], [ -67.500000, -54.775346 ], [ -67.500000, -54.977614 ], [ -66.796875, -54.977614 ], [ -66.796875, -55.178868 ], [ -67.148438, -55.178868 ], [ -67.148438, -55.379110 ], [ -67.500000, -55.379110 ], [ -67.500000, -55.578345 ], [ -69.609375, -55.578345 ], [ -69.609375, -55.379110 ], [ -69.960938, -55.379110 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -54.977614 ], [ -71.718750, -54.977614 ], [ -71.718750, -54.775346 ], [ -72.421875, -54.775346 ], [ -72.421875, -54.572062 ], [ -72.773438, -54.572062 ], [ -72.773438, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.828125, -53.748711 ], [ -73.828125, -53.330873 ], [ -73.476562, -53.330873 ] ] ], [ [ [ -73.828125, -52.908902 ], [ -74.179688, -52.908902 ], [ -74.179688, -52.696361 ], [ -74.531250, -52.696361 ], [ -74.531250, -52.482780 ], [ -74.882812, -52.482780 ], [ -74.882812, -52.052490 ], [ -75.234375, -52.052490 ], [ -75.234375, -51.399206 ], [ -74.882812, -51.399206 ], [ -74.882812, -50.958427 ], [ -75.234375, -50.958427 ], [ -75.234375, -50.513427 ], [ -75.585938, -50.513427 ], [ -75.585938, -48.224673 ], [ -75.234375, -48.224673 ], [ -75.234375, -47.754098 ], [ -74.882812, -47.754098 ], [ -74.882812, -47.517201 ], [ -74.531250, -47.517201 ], [ -74.531250, -47.279229 ], [ -74.179688, -47.279229 ], [ -74.179688, -47.040182 ], [ -74.882812, -47.040182 ], [ -74.882812, -46.800059 ], [ -75.585938, -46.800059 ], [ -75.585938, -46.558860 ], [ -75.234375, -46.558860 ], [ -75.234375, -46.316584 ], [ -74.882812, -46.316584 ], [ -74.882812, -46.073231 ], [ -74.531250, -46.073231 ], [ -74.531250, -45.089036 ], [ -74.179688, -45.089036 ], [ -74.179688, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.828125, -44.339565 ], [ -73.125000, -44.339565 ], [ -73.125000, -43.325178 ], [ -72.773438, -43.325178 ], [ -72.773438, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.828125, -42.811522 ], [ -73.828125, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -40.979898 ], [ -73.828125, -40.979898 ], [ -73.828125, -39.909736 ], [ -73.476562, -39.909736 ], [ -73.476562, -39.639538 ], [ -73.125000, -39.639538 ], [ -73.125000, -38.822591 ], [ -73.476562, -38.822591 ], [ -73.476562, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.879621 ], [ -72.773438, -36.879621 ], [ -72.773438, -36.031332 ], [ -72.421875, -36.031332 ], [ -72.421875, -35.173808 ], [ -72.070312, -35.173808 ], [ -72.070312, -34.597042 ], [ -71.718750, -34.597042 ], [ -71.718750, -33.431441 ], [ -71.367188, -33.431441 ], [ -71.367188, -31.952162 ], [ -71.718750, -31.952162 ], [ -71.718750, -30.751278 ], [ -71.367188, -30.751278 ], [ -71.367188, -28.304381 ], [ -71.015625, -28.304381 ], [ -71.015625, -26.745610 ], [ -70.664062, -26.745610 ], [ -70.664062, -24.846565 ], [ -70.312500, -24.846565 ], [ -70.312500, -22.593726 ], [ -69.960938, -22.593726 ], [ -69.960938, -20.632784 ], [ -70.312500, -20.632784 ], [ -70.312500, -18.312811 ], [ -69.960938, -18.312811 ], [ -69.960938, -17.978733 ], [ -69.257812, -17.978733 ], [ -69.257812, -18.646245 ], [ -68.906250, -18.646245 ], [ -68.906250, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.973349 ], [ -68.906250, -19.973349 ], [ -68.906250, -20.632784 ], [ -68.554688, -20.632784 ], [ -68.554688, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -22.268764 ], [ -67.851562, -22.268764 ], [ -67.851562, -22.917923 ], [ -67.148438, -22.917923 ], [ -67.148438, -23.563987 ], [ -67.500000, -23.563987 ], [ -67.500000, -24.206890 ], [ -68.203125, -24.206890 ], [ -68.203125, -24.527135 ], [ -68.554688, -24.527135 ], [ -68.554688, -26.745610 ], [ -68.203125, -26.745610 ], [ -68.203125, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.683528 ], [ -69.257812, -27.683528 ], [ -69.257812, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.921631 ], [ -69.960938, -28.921631 ], [ -69.960938, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -31.353637 ], [ -70.664062, -31.353637 ], [ -70.664062, -31.952162 ], [ -70.312500, -31.952162 ], [ -70.312500, -32.842674 ], [ -69.960938, -32.842674 ], [ -69.960938, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -36.315125 ], [ -70.664062, -36.315125 ], [ -70.664062, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -37.996163 ], [ -70.664062, -37.996163 ], [ -70.664062, -38.822591 ], [ -71.367188, -38.822591 ], [ -71.367188, -39.368279 ], [ -71.718750, -39.368279 ], [ -71.718750, -40.446947 ], [ -72.070312, -40.446947 ], [ -72.070312, -41.508577 ], [ -71.718750, -41.508577 ], [ -71.718750, -42.293564 ], [ -72.070312, -42.293564 ], [ -72.070312, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -71.367188, -43.834527 ], [ -71.367188, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -44.339565 ], [ -71.367188, -44.339565 ], [ -71.367188, -45.089036 ], [ -71.718750, -45.089036 ], [ -71.718750, -46.316584 ], [ -72.070312, -46.316584 ], [ -72.070312, -47.279229 ], [ -72.421875, -47.279229 ], [ -72.421875, -48.690960 ], [ -72.773438, -48.690960 ], [ -72.773438, -49.152970 ], [ -73.125000, -49.152970 ], [ -73.125000, -49.382373 ], [ -73.476562, -49.382373 ], [ -73.476562, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -51.835778 ], [ -72.070312, -51.835778 ], [ -72.070312, -52.052490 ], [ -69.257812, -52.052490 ], [ -69.257812, -52.268157 ], [ -69.609375, -52.268157 ], [ -69.609375, -52.482780 ], [ -69.960938, -52.482780 ], [ -69.960938, -52.696361 ], [ -70.664062, -52.696361 ], [ -70.664062, -52.908902 ], [ -71.015625, -52.908902 ], [ -71.015625, -53.956086 ], [ -71.718750, -53.956086 ], [ -71.718750, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.330873 ], [ -73.476562, -53.330873 ], [ -73.476562, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -52.908902 ] ] ], [ [ [ -73.828125, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -53.330873 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.960938, -52.696361 ], [ -70.664062, -52.696361 ], [ -70.664062, -52.908902 ], [ -71.015625, -52.908902 ], [ -71.015625, -53.956086 ], [ -71.718750, -53.956086 ], [ -71.718750, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.330873 ], [ -73.476562, -53.330873 ], [ -73.476562, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -52.908902 ], [ -74.179688, -52.908902 ], [ -74.179688, -52.696361 ], [ -74.531250, -52.696361 ], [ -74.531250, -52.482780 ], [ -74.882812, -52.482780 ], [ -74.882812, -52.052490 ], [ -75.234375, -52.052490 ], [ -75.234375, -51.399206 ], [ -74.882812, -51.399206 ], [ -74.882812, -50.958427 ], [ -75.234375, -50.958427 ], [ -75.234375, -50.513427 ], [ -75.585938, -50.513427 ], [ -75.585938, -48.224673 ], [ -75.234375, -48.224673 ], [ -75.234375, -47.754098 ], [ -74.882812, -47.754098 ], [ -74.882812, -47.517201 ], [ -74.531250, -47.517201 ], [ -74.531250, -47.279229 ], [ -74.179688, -47.279229 ], [ -74.179688, -47.040182 ], [ -74.882812, -47.040182 ], [ -74.882812, -46.800059 ], [ -75.585938, -46.800059 ], [ -75.585938, -46.558860 ], [ -75.234375, -46.558860 ], [ -75.234375, -46.316584 ], [ -74.882812, -46.316584 ], [ -74.882812, -46.073231 ], [ -74.531250, -46.073231 ], [ -74.531250, -45.089036 ], [ -74.179688, -45.089036 ], [ -74.179688, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.828125, -44.339565 ], [ -73.125000, -44.339565 ], [ -73.125000, -43.325178 ], [ -72.773438, -43.325178 ], [ -72.773438, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.828125, -42.811522 ], [ -73.828125, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -40.979898 ], [ -73.828125, -40.979898 ], [ -73.828125, -39.909736 ], [ -73.476562, -39.909736 ], [ -73.476562, -39.639538 ], [ -73.125000, -39.639538 ], [ -73.125000, -38.822591 ], [ -73.476562, -38.822591 ], [ -73.476562, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.879621 ], [ -72.773438, -36.879621 ], [ -72.773438, -36.031332 ], [ -72.421875, -36.031332 ], [ -72.421875, -35.173808 ], [ -72.070312, -35.173808 ], [ -72.070312, -34.597042 ], [ -71.718750, -34.597042 ], [ -71.718750, -33.431441 ], [ -71.367188, -33.431441 ], [ -71.367188, -31.952162 ], [ -71.718750, -31.952162 ], [ -71.718750, -30.751278 ], [ -71.367188, -30.751278 ], [ -71.367188, -28.304381 ], [ -71.015625, -28.304381 ], [ -71.015625, -26.745610 ], [ -70.664062, -26.745610 ], [ -70.664062, -24.846565 ], [ -70.312500, -24.846565 ], [ -70.312500, -22.593726 ], [ -69.960938, -22.593726 ], [ -69.960938, -20.632784 ], [ -70.312500, -20.632784 ], [ -70.312500, -18.312811 ], [ -69.960938, -18.312811 ], [ -69.960938, -17.978733 ], [ -69.257812, -17.978733 ], [ -69.257812, -18.646245 ], [ -68.906250, -18.646245 ], [ -68.906250, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.973349 ], [ -68.906250, -19.973349 ], [ -68.906250, -20.632784 ], [ -68.554688, -20.632784 ], [ -68.554688, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -22.268764 ], [ -67.851562, -22.268764 ], [ -67.851562, -22.917923 ], [ -67.148438, -22.917923 ], [ -67.148438, -23.563987 ], [ -67.500000, -23.563987 ], [ -67.500000, -24.206890 ], [ -68.203125, -24.206890 ], [ -68.203125, -24.527135 ], [ -68.554688, -24.527135 ], [ -68.554688, -26.745610 ], [ -68.203125, -26.745610 ], [ -68.203125, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.683528 ], [ -69.257812, -27.683528 ], [ -69.257812, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.921631 ], [ -69.960938, -28.921631 ], [ -69.960938, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -31.353637 ], [ -70.664062, -31.353637 ], [ -70.664062, -31.952162 ], [ -70.312500, -31.952162 ], [ -70.312500, -32.842674 ], [ -69.960938, -32.842674 ], [ -69.960938, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -36.315125 ], [ -70.664062, -36.315125 ], [ -70.664062, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -37.996163 ], [ -70.664062, -37.996163 ], [ -70.664062, -38.822591 ], [ -71.367188, -38.822591 ], [ -71.367188, -39.368279 ], [ -71.718750, -39.368279 ], [ -71.718750, -40.446947 ], [ -72.070312, -40.446947 ], [ -72.070312, -41.508577 ], [ -71.718750, -41.508577 ], [ -71.718750, -42.293564 ], [ -72.070312, -42.293564 ], [ -72.070312, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -71.367188, -43.834527 ], [ -71.367188, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -44.339565 ], [ -71.367188, -44.339565 ], [ -71.367188, -45.089036 ], [ -71.718750, -45.089036 ], [ -71.718750, -46.316584 ], [ -72.070312, -46.316584 ], [ -72.070312, -47.279229 ], [ -72.421875, -47.279229 ], [ -72.421875, -48.690960 ], [ -72.773438, -48.690960 ], [ -72.773438, -49.152970 ], [ -73.125000, -49.152970 ], [ -73.125000, -49.382373 ], [ -73.476562, -49.382373 ], [ -73.476562, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -51.835778 ], [ -72.070312, -51.835778 ], [ -72.070312, -52.052490 ], [ -69.257812, -52.052490 ], [ -69.257812, -52.268157 ], [ -69.609375, -52.268157 ], [ -69.609375, -52.482780 ], [ -69.960938, -52.482780 ], [ -69.960938, -52.696361 ] ] ], [ [ [ -73.828125, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -53.330873 ] ] ], [ [ [ -69.960938, -52.696361 ], [ -68.554688, -52.696361 ], [ -68.554688, -54.775346 ], [ -67.500000, -54.775346 ], [ -67.500000, -54.977614 ], [ -66.796875, -54.977614 ], [ -66.796875, -55.178868 ], [ -67.148438, -55.178868 ], [ -67.148438, -55.379110 ], [ -67.500000, -55.379110 ], [ -67.500000, -55.578345 ], [ -69.609375, -55.578345 ], [ -69.609375, -55.379110 ], [ -69.960938, -55.379110 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -54.977614 ], [ -71.718750, -54.977614 ], [ -71.718750, -54.775346 ], [ -72.421875, -54.775346 ], [ -72.421875, -54.572062 ], [ -72.773438, -54.572062 ], [ -72.773438, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.828125, -53.748711 ], [ -73.828125, -53.330873 ], [ -73.476562, -53.330873 ], [ -73.476562, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -53.956086 ], [ -71.718750, -53.956086 ], [ -71.718750, -54.162434 ], [ -71.015625, -54.162434 ], [ -71.015625, -53.956086 ], [ -70.664062, -53.956086 ], [ -70.664062, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -52.908902 ], [ -69.960938, -52.908902 ], [ -69.960938, -52.696361 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.929688, -13.239945 ], [ -62.226562, -13.239945 ], [ -62.226562, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -14.604847 ], [ -60.117188, -14.604847 ], [ -60.117188, -14.944785 ], [ -60.468750, -14.944785 ], [ -60.468750, -15.623037 ], [ -60.117188, -15.623037 ], [ -60.117188, -16.299051 ], [ -58.359375, -16.299051 ], [ -58.359375, -17.644022 ], [ -57.656250, -17.644022 ], [ -57.656250, -19.311143 ], [ -58.007812, -19.311143 ], [ -58.007812, -19.973349 ], [ -58.359375, -19.973349 ], [ -58.359375, -19.642588 ], [ -59.062500, -19.642588 ], [ -59.062500, -19.311143 ], [ -60.820312, -19.311143 ], [ -60.820312, -19.642588 ], [ -61.875000, -19.642588 ], [ -61.875000, -20.303418 ], [ -62.226562, -20.303418 ], [ -62.226562, -21.616579 ], [ -62.578125, -21.616579 ], [ -62.578125, -22.268764 ], [ -62.929688, -22.268764 ], [ -62.929688, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.593726 ], [ -64.335938, -22.593726 ], [ -64.335938, -22.917923 ], [ -64.687500, -22.917923 ], [ -64.687500, -22.268764 ], [ -65.039062, -22.268764 ], [ -65.039062, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -22.268764 ], [ -66.796875, -22.268764 ], [ -66.796875, -22.593726 ], [ -67.148438, -22.593726 ], [ -67.148438, -22.917923 ], [ -67.851562, -22.917923 ], [ -67.851562, -22.268764 ], [ -68.203125, -22.268764 ], [ -68.203125, -21.289374 ], [ -68.554688, -21.289374 ], [ -68.554688, -20.632784 ], [ -68.906250, -20.632784 ], [ -68.906250, -19.973349 ], [ -68.554688, -19.973349 ], [ -68.554688, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -18.646245 ], [ -69.257812, -18.646245 ], [ -69.257812, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.644022 ], [ -69.257812, -17.644022 ], [ -69.257812, -16.972741 ], [ -68.906250, -16.972741 ], [ -68.906250, -16.299051 ], [ -69.257812, -16.299051 ], [ -69.257812, -14.944785 ], [ -68.906250, -14.944785 ], [ -68.906250, -12.897489 ], [ -68.554688, -12.897489 ], [ -68.554688, -12.554564 ], [ -68.906250, -12.554564 ], [ -68.906250, -11.867351 ], [ -69.257812, -11.867351 ], [ -69.257812, -11.178402 ], [ -68.203125, -11.178402 ], [ -68.203125, -10.833306 ], [ -67.851562, -10.833306 ], [ -67.851562, -10.487812 ], [ -67.148438, -10.487812 ], [ -67.148438, -10.141932 ], [ -66.796875, -10.141932 ], [ -66.796875, -9.795678 ], [ -65.390625, -9.795678 ], [ -65.390625, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.211180 ], [ -64.687500, -12.211180 ], [ -64.687500, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.897489 ], [ -62.929688, -12.897489 ], [ -62.929688, -13.239945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.795678 ], [ -65.390625, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.211180 ], [ -64.687500, -12.211180 ], [ -64.687500, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.897489 ], [ -62.929688, -12.897489 ], [ -62.929688, -13.239945 ], [ -62.226562, -13.239945 ], [ -62.226562, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -14.604847 ], [ -60.117188, -14.604847 ], [ -60.117188, -14.944785 ], [ -60.468750, -14.944785 ], [ -60.468750, -15.623037 ], [ -60.117188, -15.623037 ], [ -60.117188, -16.299051 ], [ -58.359375, -16.299051 ], [ -58.359375, -17.644022 ], [ -57.656250, -17.644022 ], [ -57.656250, -19.311143 ], [ -58.007812, -19.311143 ], [ -58.007812, -19.973349 ], [ -58.359375, -19.973349 ], [ -58.359375, -19.642588 ], [ -59.062500, -19.642588 ], [ -59.062500, -19.311143 ], [ -60.820312, -19.311143 ], [ -60.820312, -19.642588 ], [ -61.875000, -19.642588 ], [ -61.875000, -20.303418 ], [ -62.226562, -20.303418 ], [ -62.226562, -21.616579 ], [ -62.578125, -21.616579 ], [ -62.578125, -22.268764 ], [ -62.929688, -22.268764 ], [ -62.929688, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.593726 ], [ -64.335938, -22.593726 ], [ -64.335938, -22.917923 ], [ -64.687500, -22.917923 ], [ -64.687500, -22.268764 ], [ -65.039062, -22.268764 ], [ -65.039062, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -22.268764 ], [ -66.796875, -22.268764 ], [ -66.796875, -22.593726 ], [ -67.148438, -22.593726 ], [ -67.148438, -22.917923 ], [ -67.851562, -22.917923 ], [ -67.851562, -22.268764 ], [ -68.203125, -22.268764 ], [ -68.203125, -21.289374 ], [ -68.554688, -21.289374 ], [ -68.554688, -20.632784 ], [ -68.906250, -20.632784 ], [ -68.906250, -19.973349 ], [ -68.554688, -19.973349 ], [ -68.554688, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -18.646245 ], [ -69.257812, -18.646245 ], [ -69.257812, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.644022 ], [ -69.257812, -17.644022 ], [ -69.257812, -16.972741 ], [ -68.906250, -16.972741 ], [ -68.906250, -16.299051 ], [ -69.257812, -16.299051 ], [ -69.257812, -14.944785 ], [ -68.906250, -14.944785 ], [ -68.906250, -12.897489 ], [ -68.554688, -12.897489 ], [ -68.554688, -12.554564 ], [ -68.906250, -12.554564 ], [ -68.906250, -11.867351 ], [ -69.257812, -11.867351 ], [ -69.257812, -11.178402 ], [ -68.203125, -11.178402 ], [ -68.203125, -10.833306 ], [ -67.851562, -10.833306 ], [ -67.851562, -10.487812 ], [ -67.148438, -10.487812 ], [ -67.148438, -10.141932 ], [ -66.796875, -10.141932 ], [ -66.796875, -9.795678 ], [ -65.390625, -9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.054688, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.811371 ], [ -43.945312, -2.811371 ], [ -43.945312, -2.460181 ], [ -42.890625, -2.460181 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.162456 ], [ -39.726562, -3.162456 ], [ -39.726562, -3.513421 ], [ -39.023438, -3.513421 ], [ -39.023438, -3.864255 ], [ -38.671875, -3.864255 ], [ -38.671875, -4.214943 ], [ -38.320312, -4.214943 ], [ -38.320312, -4.565474 ], [ -37.617188, -4.565474 ], [ -37.617188, -4.915833 ], [ -37.265625, -4.915833 ], [ -37.265625, -5.266008 ], [ -35.507812, -5.266008 ], [ -35.507812, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -6.315299 ], [ -34.804688, -6.315299 ], [ -34.804688, -8.407168 ], [ -35.156250, -8.407168 ], [ -35.156250, -9.449062 ], [ -35.507812, -9.449062 ], [ -35.507812, -10.141932 ], [ -35.859375, -10.141932 ], [ -35.859375, -10.487812 ], [ -36.210938, -10.487812 ], [ -36.210938, -10.833306 ], [ -36.562500, -10.833306 ], [ -36.562500, -11.178402 ], [ -36.914062, -11.178402 ], [ -36.914062, -11.523088 ], [ -37.265625, -11.523088 ], [ -37.265625, -12.211180 ], [ -37.617188, -12.211180 ], [ -37.617188, -12.554564 ], [ -37.968750, -12.554564 ], [ -37.968750, -12.897489 ], [ -38.671875, -12.897489 ], [ -38.671875, -13.581921 ], [ -39.023438, -13.581921 ], [ -39.023438, -17.644022 ], [ -39.375000, -17.644022 ], [ -39.375000, -18.312811 ], [ -39.726562, -18.312811 ], [ -39.726562, -19.973349 ], [ -40.078125, -19.973349 ], [ -40.078125, -20.303418 ], [ -40.429688, -20.303418 ], [ -40.429688, -20.961440 ], [ -40.781250, -20.961440 ], [ -40.781250, -21.943046 ], [ -41.132812, -21.943046 ], [ -41.132812, -22.268764 ], [ -41.835938, -22.268764 ], [ -41.835938, -22.917923 ], [ -43.593750, -22.917923 ], [ -43.593750, -23.241346 ], [ -44.648438, -23.241346 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.885838 ], [ -45.703125, -23.885838 ], [ -45.703125, -24.206890 ], [ -46.406250, -24.206890 ], [ -46.406250, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -24.846565 ], [ -47.812500, -24.846565 ], [ -47.812500, -25.165173 ], [ -48.164062, -25.165173 ], [ -48.164062, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -28.613459 ], [ -48.867188, -28.613459 ], [ -48.867188, -28.921631 ], [ -49.218750, -28.921631 ], [ -49.218750, -29.228890 ], [ -49.570312, -29.228890 ], [ -49.570312, -29.535230 ], [ -49.921875, -29.535230 ], [ -49.921875, -30.145127 ], [ -50.273438, -30.145127 ], [ -50.273438, -30.751278 ], [ -50.625000, -30.751278 ], [ -50.625000, -31.353637 ], [ -51.328125, -31.353637 ], [ -51.328125, -31.653381 ], [ -51.679688, -31.653381 ], [ -51.679688, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -32.249974 ], [ -52.382812, -32.249974 ], [ -52.382812, -32.842674 ], [ -52.734375, -32.842674 ], [ -52.734375, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.431441 ], [ -53.789062, -33.431441 ], [ -53.789062, -33.137551 ], [ -53.085938, -33.137551 ], [ -53.085938, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -32.249974 ], [ -53.789062, -32.249974 ], [ -53.789062, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -31.653381 ], [ -54.492188, -31.653381 ], [ -54.492188, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.052934 ], [ -55.546875, -31.052934 ], [ -55.546875, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -30.448674 ], [ -56.953125, -30.448674 ], [ -56.953125, -30.145127 ], [ -57.304688, -30.145127 ], [ -57.304688, -29.840644 ], [ -56.953125, -29.840644 ], [ -56.953125, -29.535230 ], [ -56.601562, -29.535230 ], [ -56.601562, -29.228890 ], [ -56.250000, -29.228890 ], [ -56.250000, -28.921631 ], [ -55.898438, -28.921631 ], [ -55.898438, -28.613459 ], [ -55.546875, -28.613459 ], [ -55.546875, -28.304381 ], [ -55.195312, -28.304381 ], [ -55.195312, -27.994401 ], [ -54.843750, -27.994401 ], [ -54.843750, -27.683528 ], [ -54.492188, -27.683528 ], [ -54.492188, -27.371767 ], [ -53.789062, -27.371767 ], [ -53.789062, -25.799891 ], [ -54.492188, -25.799891 ], [ -54.492188, -24.846565 ], [ -54.140625, -24.846565 ], [ -54.140625, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -22.593726 ], [ -55.898438, -22.593726 ], [ -55.898438, -22.268764 ], [ -57.656250, -22.268764 ], [ -57.656250, -21.943046 ], [ -58.007812, -21.943046 ], [ -58.007812, -19.311143 ], [ -57.656250, -19.311143 ], [ -57.656250, -17.644022 ], [ -58.359375, -17.644022 ], [ -58.359375, -16.299051 ], [ -60.117188, -16.299051 ], [ -60.117188, -15.623037 ], [ -60.468750, -15.623037 ], [ -60.468750, -14.944785 ], [ -60.117188, -14.944785 ], [ -60.117188, -14.604847 ], [ -60.468750, -14.604847 ], [ -60.468750, -13.923404 ], [ -61.171875, -13.923404 ], [ -61.171875, -13.581921 ], [ -62.226562, -13.581921 ], [ -62.226562, -13.239945 ], [ -62.929688, -13.239945 ], [ -62.929688, -12.897489 ], [ -63.281250, -12.897489 ], [ -63.281250, -12.554564 ], [ -64.687500, -12.554564 ], [ -64.687500, -12.211180 ], [ -65.039062, -12.211180 ], [ -65.039062, -11.867351 ], [ -65.390625, -11.867351 ], [ -65.390625, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -10.141932 ], [ -67.148438, -10.141932 ], [ -67.148438, -10.487812 ], [ -67.851562, -10.487812 ], [ -67.851562, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -11.178402 ], [ -70.664062, -11.178402 ], [ -70.664062, -10.487812 ], [ -70.312500, -10.487812 ], [ -70.312500, -9.795678 ], [ -71.015625, -9.795678 ], [ -71.015625, -10.141932 ], [ -72.070312, -10.141932 ], [ -72.070312, -9.795678 ], [ -72.421875, -9.795678 ], [ -72.421875, -9.449062 ], [ -73.125000, -9.449062 ], [ -73.125000, -8.754795 ], [ -73.476562, -8.754795 ], [ -73.476562, -8.059230 ], [ -73.828125, -8.059230 ], [ -73.828125, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -72.773438, -5.615986 ], [ -72.773438, -5.266008 ], [ -72.421875, -5.266008 ], [ -72.421875, -4.915833 ], [ -71.718750, -4.915833 ], [ -71.718750, -4.565474 ], [ -70.664062, -4.565474 ], [ -70.664062, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -2.811371 ], [ -69.609375, -2.811371 ], [ -69.609375, -1.406109 ], [ -69.257812, -1.406109 ], [ -69.257812, -1.054628 ], [ -69.609375, -1.054628 ], [ -69.609375, -0.703107 ], [ -69.960938, -0.703107 ], [ -69.960938, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 1.054628 ], [ -66.445312, 1.054628 ], [ -66.445312, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.054628 ], [ -64.687500, 1.054628 ], [ -64.687500, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 1.757537 ], [ -59.765625, 1.757537 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 1.757537 ], [ -49.921875, 1.757537 ], [ -49.921875, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.625000, 0.351560 ], [ -50.625000, 0.000000 ], [ -49.570312, 0.000000 ], [ -49.570312, -0.351560 ], [ -48.515625, -0.351560 ], [ -48.515625, -1.406109 ], [ -48.164062, -1.406109 ], [ -48.164062, -1.054628 ], [ -47.812500, -1.054628 ], [ -47.812500, -0.703107 ], [ -47.460938, -0.703107 ], [ -47.460938, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.921875, 1.757537 ], [ -49.921875, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.625000, 0.351560 ], [ -50.625000, 0.000000 ], [ -49.570312, 0.000000 ], [ -49.570312, -0.351560 ], [ -48.515625, -0.351560 ], [ -48.515625, -1.406109 ], [ -48.164062, -1.406109 ], [ -48.164062, -1.054628 ], [ -47.812500, -1.054628 ], [ -47.812500, -0.703107 ], [ -47.460938, -0.703107 ], [ -47.460938, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.811371 ], [ -43.945312, -2.811371 ], [ -43.945312, -2.460181 ], [ -42.890625, -2.460181 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.162456 ], [ -39.726562, -3.162456 ], [ -39.726562, -3.513421 ], [ -39.023438, -3.513421 ], [ -39.023438, -3.864255 ], [ -38.671875, -3.864255 ], [ -38.671875, -4.214943 ], [ -38.320312, -4.214943 ], [ -38.320312, -4.565474 ], [ -37.617188, -4.565474 ], [ -37.617188, -4.915833 ], [ -37.265625, -4.915833 ], [ -37.265625, -5.266008 ], [ -35.507812, -5.266008 ], [ -35.507812, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -6.315299 ], [ -34.804688, -6.315299 ], [ -34.804688, -8.407168 ], [ -35.156250, -8.407168 ], [ -35.156250, -9.449062 ], [ -35.507812, -9.449062 ], [ -35.507812, -10.141932 ], [ -35.859375, -10.141932 ], [ -35.859375, -10.487812 ], [ -36.210938, -10.487812 ], [ -36.210938, -10.833306 ], [ -36.562500, -10.833306 ], [ -36.562500, -11.178402 ], [ -36.914062, -11.178402 ], [ -36.914062, -11.523088 ], [ -37.265625, -11.523088 ], [ -37.265625, -12.211180 ], [ -37.617188, -12.211180 ], [ -37.617188, -12.554564 ], [ -37.968750, -12.554564 ], [ -37.968750, -12.897489 ], [ -38.671875, -12.897489 ], [ -38.671875, -13.581921 ], [ -39.023438, -13.581921 ], [ -39.023438, -17.644022 ], [ -39.375000, -17.644022 ], [ -39.375000, -18.312811 ], [ -39.726562, -18.312811 ], [ -39.726562, -19.973349 ], [ -40.078125, -19.973349 ], [ -40.078125, -20.303418 ], [ -40.429688, -20.303418 ], [ -40.429688, -20.961440 ], [ -40.781250, -20.961440 ], [ -40.781250, -21.943046 ], [ -41.132812, -21.943046 ], [ -41.132812, -22.268764 ], [ -41.835938, -22.268764 ], [ -41.835938, -22.917923 ], [ -43.593750, -22.917923 ], [ -43.593750, -23.241346 ], [ -44.648438, -23.241346 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.885838 ], [ -45.703125, -23.885838 ], [ -45.703125, -24.206890 ], [ -46.406250, -24.206890 ], [ -46.406250, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -24.846565 ], [ -47.812500, -24.846565 ], [ -47.812500, -25.165173 ], [ -48.164062, -25.165173 ], [ -48.164062, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -28.613459 ], [ -48.867188, -28.613459 ], [ -48.867188, -28.921631 ], [ -49.218750, -28.921631 ], [ -49.218750, -29.228890 ], [ -49.570312, -29.228890 ], [ -49.570312, -29.535230 ], [ -49.921875, -29.535230 ], [ -49.921875, -30.145127 ], [ -50.273438, -30.145127 ], [ -50.273438, -30.751278 ], [ -50.625000, -30.751278 ], [ -50.625000, -31.353637 ], [ -51.328125, -31.353637 ], [ -51.328125, -31.653381 ], [ -51.679688, -31.653381 ], [ -51.679688, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -32.249974 ], [ -52.382812, -32.249974 ], [ -52.382812, -32.842674 ], [ -52.734375, -32.842674 ], [ -52.734375, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.431441 ], [ -53.789062, -33.431441 ], [ -53.789062, -33.137551 ], [ -53.085938, -33.137551 ], [ -53.085938, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -32.249974 ], [ -53.789062, -32.249974 ], [ -53.789062, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -31.653381 ], [ -54.492188, -31.653381 ], [ -54.492188, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.052934 ], [ -55.546875, -31.052934 ], [ -55.546875, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -30.448674 ], [ -56.953125, -30.448674 ], [ -56.953125, -30.145127 ], [ -57.304688, -30.145127 ], [ -57.304688, -29.840644 ], [ -56.953125, -29.840644 ], [ -56.953125, -29.535230 ], [ -56.601562, -29.535230 ], [ -56.601562, -29.228890 ], [ -56.250000, -29.228890 ], [ -56.250000, -28.921631 ], [ -55.898438, -28.921631 ], [ -55.898438, -28.613459 ], [ -55.546875, -28.613459 ], [ -55.546875, -28.304381 ], [ -55.195312, -28.304381 ], [ -55.195312, -27.994401 ], [ -54.843750, -27.994401 ], [ -54.843750, -27.683528 ], [ -54.492188, -27.683528 ], [ -54.492188, -27.371767 ], [ -53.789062, -27.371767 ], [ -53.789062, -25.799891 ], [ -54.492188, -25.799891 ], [ -54.492188, -24.846565 ], [ -54.140625, -24.846565 ], [ -54.140625, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -22.593726 ], [ -55.898438, -22.593726 ], [ -55.898438, -22.268764 ], [ -57.656250, -22.268764 ], [ -57.656250, -21.943046 ], [ -58.007812, -21.943046 ], [ -58.007812, -19.311143 ], [ -57.656250, -19.311143 ], [ -57.656250, -17.644022 ], [ -58.359375, -17.644022 ], [ -58.359375, -16.299051 ], [ -60.117188, -16.299051 ], [ -60.117188, -15.623037 ], [ -60.468750, -15.623037 ], [ -60.468750, -14.944785 ], [ -60.117188, -14.944785 ], [ -60.117188, -14.604847 ], [ -60.468750, -14.604847 ], [ -60.468750, -13.923404 ], [ -61.171875, -13.923404 ], [ -61.171875, -13.581921 ], [ -62.226562, -13.581921 ], [ -62.226562, -13.239945 ], [ -62.929688, -13.239945 ], [ -62.929688, -12.897489 ], [ -63.281250, -12.897489 ], [ -63.281250, -12.554564 ], [ -64.687500, -12.554564 ], [ -64.687500, -12.211180 ], [ -65.039062, -12.211180 ], [ -65.039062, -11.867351 ], [ -65.390625, -11.867351 ], [ -65.390625, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -10.141932 ], [ -67.148438, -10.141932 ], [ -67.148438, -10.487812 ], [ -67.851562, -10.487812 ], [ -67.851562, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -11.178402 ], [ -70.664062, -11.178402 ], [ -70.664062, -10.487812 ], [ -70.312500, -10.487812 ], [ -70.312500, -9.795678 ], [ -71.015625, -9.795678 ], [ -71.015625, -10.141932 ], [ -72.070312, -10.141932 ], [ -72.070312, -9.795678 ], [ -72.421875, -9.795678 ], [ -72.421875, -9.449062 ], [ -73.125000, -9.449062 ], [ -73.125000, -8.754795 ], [ -73.476562, -8.754795 ], [ -73.476562, -8.059230 ], [ -73.828125, -8.059230 ], [ -73.828125, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -72.773438, -5.615986 ], [ -72.773438, -5.266008 ], [ -72.421875, -5.266008 ], [ -72.421875, -4.915833 ], [ -71.718750, -4.915833 ], [ -71.718750, -4.565474 ], [ -70.664062, -4.565474 ], [ -70.664062, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -2.811371 ], [ -69.609375, -2.811371 ], [ -69.609375, -1.406109 ], [ -69.257812, -1.406109 ], [ -69.257812, -1.054628 ], [ -69.609375, -1.054628 ], [ -69.609375, -0.703107 ], [ -69.960938, -0.703107 ], [ -69.960938, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 1.054628 ], [ -66.445312, 1.054628 ], [ -66.445312, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.054628 ], [ -64.687500, 1.054628 ], [ -64.687500, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 1.757537 ], [ -59.765625, 1.757537 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 1.757537 ], [ -49.921875, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -19.973349 ], [ -58.007812, -19.973349 ], [ -58.007812, -21.943046 ], [ -57.656250, -21.943046 ], [ -57.656250, -22.268764 ], [ -55.898438, -22.268764 ], [ -55.898438, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.885838 ], [ -54.140625, -23.885838 ], [ -54.140625, -24.846565 ], [ -54.492188, -24.846565 ], [ -54.492188, -26.431228 ], [ -54.843750, -26.431228 ], [ -54.843750, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -27.371767 ], [ -55.898438, -27.371767 ], [ -55.898438, -27.683528 ], [ -57.304688, -27.683528 ], [ -57.304688, -27.371767 ], [ -58.359375, -27.371767 ], [ -58.359375, -26.431228 ], [ -58.007812, -26.431228 ], [ -58.007812, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.165173 ], [ -58.359375, -25.165173 ], [ -58.359375, -24.846565 ], [ -59.062500, -24.846565 ], [ -59.062500, -24.527135 ], [ -59.765625, -24.527135 ], [ -59.765625, -24.206890 ], [ -60.117188, -24.206890 ], [ -60.117188, -23.885838 ], [ -61.171875, -23.885838 ], [ -61.171875, -23.563987 ], [ -61.523438, -23.563987 ], [ -61.523438, -23.241346 ], [ -61.875000, -23.241346 ], [ -61.875000, -22.917923 ], [ -62.226562, -22.917923 ], [ -62.226562, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -21.616579 ], [ -62.226562, -21.616579 ], [ -62.226562, -20.303418 ], [ -61.875000, -20.303418 ], [ -61.875000, -19.642588 ], [ -60.820312, -19.642588 ], [ -60.820312, -19.311143 ], [ -59.062500, -19.311143 ], [ -59.062500, -19.642588 ], [ -58.359375, -19.642588 ], [ -58.359375, -19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.642588 ], [ -58.359375, -19.642588 ], [ -58.359375, -19.973349 ], [ -58.007812, -19.973349 ], [ -58.007812, -21.943046 ], [ -57.656250, -21.943046 ], [ -57.656250, -22.268764 ], [ -55.898438, -22.268764 ], [ -55.898438, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.885838 ], [ -54.140625, -23.885838 ], [ -54.140625, -24.846565 ], [ -54.492188, -24.846565 ], [ -54.492188, -26.431228 ], [ -54.843750, -26.431228 ], [ -54.843750, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -27.371767 ], [ -55.898438, -27.371767 ], [ -55.898438, -27.683528 ], [ -57.304688, -27.683528 ], [ -57.304688, -27.371767 ], [ -58.359375, -27.371767 ], [ -58.359375, -26.431228 ], [ -58.007812, -26.431228 ], [ -58.007812, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.165173 ], [ -58.359375, -25.165173 ], [ -58.359375, -24.846565 ], [ -59.062500, -24.846565 ], [ -59.062500, -24.527135 ], [ -59.765625, -24.527135 ], [ -59.765625, -24.206890 ], [ -60.117188, -24.206890 ], [ -60.117188, -23.885838 ], [ -61.171875, -23.885838 ], [ -61.171875, -23.563987 ], [ -61.523438, -23.563987 ], [ -61.523438, -23.241346 ], [ -61.875000, -23.241346 ], [ -61.875000, -22.917923 ], [ -62.226562, -22.917923 ], [ -62.226562, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -21.616579 ], [ -62.226562, -21.616579 ], [ -62.226562, -20.303418 ], [ -61.875000, -20.303418 ], [ -61.875000, -19.642588 ], [ -60.820312, -19.642588 ], [ -60.820312, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.162434 ], [ -66.796875, -54.162434 ], [ -66.796875, -54.367759 ], [ -66.445312, -54.367759 ], [ -66.445312, -54.572062 ], [ -65.742188, -54.572062 ], [ -65.742188, -54.775346 ], [ -65.039062, -54.775346 ], [ -65.039062, -54.977614 ], [ -65.390625, -54.977614 ], [ -65.390625, -55.178868 ], [ -66.796875, -55.178868 ], [ -66.796875, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -54.775346 ], [ -68.554688, -54.775346 ], [ -68.554688, -52.908902 ], [ -68.203125, -52.908902 ], [ -68.203125, -53.540307 ] ] ], [ [ [ -64.687500, -22.917923 ], [ -64.335938, -22.917923 ], [ -64.335938, -22.593726 ], [ -63.984375, -22.593726 ], [ -63.984375, -21.943046 ], [ -62.929688, -21.943046 ], [ -62.929688, -22.268764 ], [ -62.578125, -22.268764 ], [ -62.578125, -22.593726 ], [ -62.226562, -22.593726 ], [ -62.226562, -22.917923 ], [ -61.875000, -22.917923 ], [ -61.875000, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.563987 ], [ -61.171875, -23.563987 ], [ -61.171875, -23.885838 ], [ -60.117188, -23.885838 ], [ -60.117188, -24.206890 ], [ -59.765625, -24.206890 ], [ -59.765625, -24.527135 ], [ -59.062500, -24.527135 ], [ -59.062500, -24.846565 ], [ -58.359375, -24.846565 ], [ -58.359375, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -25.799891 ], [ -58.007812, -25.799891 ], [ -58.007812, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -27.371767 ], [ -57.304688, -27.371767 ], [ -57.304688, -27.683528 ], [ -55.898438, -27.683528 ], [ -55.898438, -27.371767 ], [ -55.195312, -27.371767 ], [ -55.195312, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -26.431228 ], [ -54.492188, -26.431228 ], [ -54.492188, -25.799891 ], [ -53.789062, -25.799891 ], [ -53.789062, -27.371767 ], [ -54.492188, -27.371767 ], [ -54.492188, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.613459 ], [ -55.898438, -28.613459 ], [ -55.898438, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.228890 ], [ -56.601562, -29.228890 ], [ -56.601562, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -29.840644 ], [ -57.304688, -29.840644 ], [ -57.304688, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.751278 ], [ -58.007812, -30.751278 ], [ -58.007812, -33.137551 ], [ -58.359375, -33.137551 ], [ -58.359375, -34.597042 ], [ -58.007812, -34.597042 ], [ -58.007812, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.173808 ], [ -57.304688, -35.173808 ], [ -57.304688, -36.315125 ], [ -56.601562, -36.315125 ], [ -56.601562, -36.597889 ], [ -56.953125, -36.597889 ], [ -56.953125, -37.439974 ], [ -57.304688, -37.439974 ], [ -57.304688, -37.996163 ], [ -57.656250, -37.996163 ], [ -57.656250, -38.548165 ], [ -58.359375, -38.548165 ], [ -58.359375, -38.822591 ], [ -62.226562, -38.822591 ], [ -62.226562, -40.979898 ], [ -62.929688, -40.979898 ], [ -62.929688, -41.244772 ], [ -63.984375, -41.244772 ], [ -63.984375, -40.979898 ], [ -65.039062, -40.979898 ], [ -65.039062, -42.293564 ], [ -63.632812, -42.293564 ], [ -63.632812, -42.811522 ], [ -64.335938, -42.811522 ], [ -64.335938, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.580391 ], [ -65.039062, -43.580391 ], [ -65.039062, -44.087585 ], [ -65.390625, -44.087585 ], [ -65.390625, -45.089036 ], [ -66.445312, -45.089036 ], [ -66.445312, -45.336702 ], [ -66.796875, -45.336702 ], [ -66.796875, -45.583290 ], [ -67.148438, -45.583290 ], [ -67.148438, -46.073231 ], [ -67.500000, -46.073231 ], [ -67.500000, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.800059 ], [ -66.796875, -46.800059 ], [ -66.796875, -47.040182 ], [ -66.445312, -47.040182 ], [ -66.445312, -47.279229 ], [ -65.742188, -47.279229 ], [ -65.742188, -47.754098 ], [ -66.093750, -47.754098 ], [ -66.093750, -48.458352 ], [ -66.796875, -48.458352 ], [ -66.796875, -48.690960 ], [ -67.148438, -48.690960 ], [ -67.148438, -49.152970 ], [ -67.500000, -49.152970 ], [ -67.500000, -49.610710 ], [ -67.851562, -49.610710 ], [ -67.851562, -50.064192 ], [ -68.203125, -50.064192 ], [ -68.203125, -50.289339 ], [ -68.554688, -50.289339 ], [ -68.554688, -50.513427 ], [ -68.906250, -50.513427 ], [ -68.906250, -50.736455 ], [ -69.257812, -50.736455 ], [ -69.257812, -51.399206 ], [ -68.906250, -51.399206 ], [ -68.906250, -52.052490 ], [ -68.554688, -52.052490 ], [ -68.554688, -52.268157 ], [ -69.257812, -52.268157 ], [ -69.257812, -52.052490 ], [ -72.070312, -52.052490 ], [ -72.070312, -51.835778 ], [ -72.421875, -51.835778 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.476562, -50.513427 ], [ -73.476562, -49.382373 ], [ -73.125000, -49.382373 ], [ -73.125000, -49.152970 ], [ -72.773438, -49.152970 ], [ -72.773438, -48.690960 ], [ -72.421875, -48.690960 ], [ -72.421875, -47.279229 ], [ -72.070312, -47.279229 ], [ -72.070312, -46.316584 ], [ -71.718750, -46.316584 ], [ -71.718750, -45.089036 ], [ -71.367188, -45.089036 ], [ -71.367188, -44.339565 ], [ -71.718750, -44.339565 ], [ -71.718750, -44.087585 ], [ -71.367188, -44.087585 ], [ -71.367188, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -72.070312, -43.580391 ], [ -72.070312, -42.293564 ], [ -71.718750, -42.293564 ], [ -71.718750, -41.508577 ], [ -72.070312, -41.508577 ], [ -72.070312, -40.446947 ], [ -71.718750, -40.446947 ], [ -71.718750, -39.368279 ], [ -71.367188, -39.368279 ], [ -71.367188, -38.822591 ], [ -70.664062, -38.822591 ], [ -70.664062, -37.996163 ], [ -71.015625, -37.996163 ], [ -71.015625, -36.597889 ], [ -70.664062, -36.597889 ], [ -70.664062, -36.315125 ], [ -70.312500, -36.315125 ], [ -70.312500, -34.885931 ], [ -69.960938, -34.885931 ], [ -69.960938, -32.842674 ], [ -70.312500, -32.842674 ], [ -70.312500, -31.952162 ], [ -70.664062, -31.952162 ], [ -70.664062, -31.353637 ], [ -70.312500, -31.353637 ], [ -70.312500, -30.751278 ], [ -69.960938, -30.751278 ], [ -69.960938, -28.921631 ], [ -69.609375, -28.921631 ], [ -69.609375, -28.304381 ], [ -69.257812, -28.304381 ], [ -69.257812, -27.683528 ], [ -68.906250, -27.683528 ], [ -68.906250, -27.371767 ], [ -68.554688, -27.371767 ], [ -68.554688, -27.059126 ], [ -68.203125, -27.059126 ], [ -68.203125, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -24.527135 ], [ -68.203125, -24.527135 ], [ -68.203125, -24.206890 ], [ -67.500000, -24.206890 ], [ -67.500000, -23.563987 ], [ -67.148438, -23.563987 ], [ -67.148438, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -22.268764 ], [ -66.445312, -22.268764 ], [ -66.445312, -21.943046 ], [ -65.039062, -21.943046 ], [ -65.039062, -22.268764 ], [ -64.687500, -22.268764 ], [ -64.687500, -22.917923 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, -52.908902 ], [ -68.203125, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.162434 ], [ -66.796875, -54.162434 ], [ -66.796875, -54.367759 ], [ -66.445312, -54.367759 ], [ -66.445312, -54.572062 ], [ -65.742188, -54.572062 ], [ -65.742188, -54.775346 ], [ -65.039062, -54.775346 ], [ -65.039062, -54.977614 ], [ -65.390625, -55.178868 ], [ -66.796875, -55.178868 ], [ -66.796875, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -54.775346 ], [ -68.554688, -54.775346 ], [ -68.554688, -52.908902 ], [ -68.203125, -52.908902 ] ] ], [ [ [ -62.929688, -21.943046 ], [ -62.929688, -22.268764 ], [ -62.578125, -22.268764 ], [ -62.578125, -22.593726 ], [ -62.226562, -22.593726 ], [ -62.226562, -22.917923 ], [ -61.875000, -22.917923 ], [ -61.875000, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.563987 ], [ -61.171875, -23.563987 ], [ -61.171875, -23.885838 ], [ -60.117188, -23.885838 ], [ -60.117188, -24.206890 ], [ -59.765625, -24.206890 ], [ -59.765625, -24.527135 ], [ -59.062500, -24.527135 ], [ -59.062500, -24.846565 ], [ -58.359375, -24.846565 ], [ -58.359375, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -25.799891 ], [ -58.007812, -25.799891 ], [ -58.007812, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -27.371767 ], [ -57.304688, -27.371767 ], [ -57.304688, -27.683528 ], [ -55.898438, -27.683528 ], [ -55.898438, -27.371767 ], [ -55.195312, -27.371767 ], [ -55.195312, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -26.431228 ], [ -54.492188, -26.431228 ], [ -54.492188, -25.799891 ], [ -53.789062, -25.799891 ], [ -53.789062, -27.371767 ], [ -54.492188, -27.371767 ], [ -54.492188, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.613459 ], [ -55.898438, -28.613459 ], [ -55.898438, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.228890 ], [ -56.601562, -29.228890 ], [ -56.601562, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -29.840644 ], [ -57.304688, -29.840644 ], [ -57.304688, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.751278 ], [ -58.007812, -30.751278 ], [ -58.007812, -33.137551 ], [ -58.359375, -33.137551 ], [ -58.359375, -34.597042 ], [ -58.007812, -34.597042 ], [ -58.007812, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.173808 ], [ -57.304688, -35.173808 ], [ -57.304688, -36.315125 ], [ -56.601562, -36.315125 ], [ -56.601562, -36.597889 ], [ -56.953125, -36.597889 ], [ -56.953125, -37.439974 ], [ -57.304688, -37.439974 ], [ -57.304688, -37.996163 ], [ -57.656250, -37.996163 ], [ -57.656250, -38.548165 ], [ -58.359375, -38.548165 ], [ -58.359375, -38.822591 ], [ -62.226562, -38.822591 ], [ -62.226562, -40.979898 ], [ -62.929688, -40.979898 ], [ -62.929688, -41.244772 ], [ -63.984375, -41.244772 ], [ -63.984375, -40.979898 ], [ -65.039062, -40.979898 ], [ -65.039062, -42.293564 ], [ -63.632812, -42.293564 ], [ -63.632812, -42.811522 ], [ -64.335938, -42.811522 ], [ -64.335938, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.580391 ], [ -65.039062, -43.580391 ], [ -65.039062, -44.087585 ], [ -65.390625, -44.087585 ], [ -65.390625, -45.089036 ], [ -66.445312, -45.089036 ], [ -66.445312, -45.336702 ], [ -66.796875, -45.336702 ], [ -66.796875, -45.583290 ], [ -67.148438, -45.583290 ], [ -67.148438, -46.073231 ], [ -67.500000, -46.073231 ], [ -67.500000, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.800059 ], [ -66.796875, -46.800059 ], [ -66.796875, -47.040182 ], [ -66.445312, -47.040182 ], [ -66.445312, -47.279229 ], [ -65.742188, -47.279229 ], [ -65.742188, -47.754098 ], [ -66.093750, -47.754098 ], [ -66.093750, -48.458352 ], [ -66.796875, -48.458352 ], [ -66.796875, -48.690960 ], [ -67.148438, -48.690960 ], [ -67.148438, -49.152970 ], [ -67.500000, -49.152970 ], [ -67.500000, -49.610710 ], [ -67.851562, -49.610710 ], [ -67.851562, -50.064192 ], [ -68.203125, -50.064192 ], [ -68.203125, -50.289339 ], [ -68.554688, -50.289339 ], [ -68.554688, -50.513427 ], [ -68.906250, -50.513427 ], [ -68.906250, -50.736455 ], [ -69.257812, -50.736455 ], [ -69.257812, -51.399206 ], [ -68.906250, -51.399206 ], [ -68.906250, -52.052490 ], [ -68.554688, -52.052490 ], [ -68.554688, -52.268157 ], [ -69.257812, -52.268157 ], [ -69.257812, -52.052490 ], [ -72.070312, -52.052490 ], [ -72.070312, -51.835778 ], [ -72.421875, -51.835778 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.476562, -50.513427 ], [ -73.476562, -49.382373 ], [ -73.125000, -49.382373 ], [ -73.125000, -49.152970 ], [ -72.773438, -49.152970 ], [ -72.773438, -48.690960 ], [ -72.421875, -48.690960 ], [ -72.421875, -47.279229 ], [ -72.070312, -47.279229 ], [ -72.070312, -46.316584 ], [ -71.718750, -46.316584 ], [ -71.718750, -45.089036 ], [ -71.367188, -45.089036 ], [ -71.367188, -44.339565 ], [ -71.718750, -44.339565 ], [ -71.718750, -44.087585 ], [ -71.367188, -44.087585 ], [ -71.367188, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -72.070312, -43.580391 ], [ -72.070312, -42.293564 ], [ -71.718750, -42.293564 ], [ -71.718750, -41.508577 ], [ -72.070312, -41.508577 ], [ -72.070312, -40.446947 ], [ -71.718750, -40.446947 ], [ -71.718750, -39.368279 ], [ -71.367188, -39.368279 ], [ -71.367188, -38.822591 ], [ -70.664062, -38.822591 ], [ -70.664062, -37.996163 ], [ -71.015625, -37.996163 ], [ -71.015625, -36.597889 ], [ -70.664062, -36.597889 ], [ -70.664062, -36.315125 ], [ -70.312500, -36.315125 ], [ -70.312500, -34.885931 ], [ -69.960938, -34.885931 ], [ -69.960938, -32.842674 ], [ -70.312500, -32.842674 ], [ -70.312500, -31.952162 ], [ -70.664062, -31.952162 ], [ -70.664062, -31.353637 ], [ -70.312500, -31.353637 ], [ -70.312500, -30.751278 ], [ -69.960938, -30.751278 ], [ -69.960938, -28.921631 ], [ -69.609375, -28.921631 ], [ -69.609375, -28.304381 ], [ -69.257812, -28.304381 ], [ -69.257812, -27.683528 ], [ -68.906250, -27.683528 ], [ -68.906250, -27.371767 ], [ -68.554688, -27.371767 ], [ -68.554688, -27.059126 ], [ -68.203125, -27.059126 ], [ -68.203125, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -24.527135 ], [ -68.203125, -24.527135 ], [ -68.203125, -24.206890 ], [ -67.500000, -24.206890 ], [ -67.500000, -23.563987 ], [ -67.148438, -23.563987 ], [ -67.148438, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -22.268764 ], [ -66.445312, -22.268764 ], [ -66.445312, -21.943046 ], [ -65.039062, -21.943046 ], [ -65.039062, -22.268764 ], [ -64.687500, -22.268764 ], [ -64.687500, -22.917923 ], [ -64.335938, -22.917923 ], [ -64.335938, -22.593726 ], [ -63.984375, -22.593726 ], [ -63.984375, -21.943046 ], [ -62.929688, -21.943046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.546875, -31.052934 ], [ -54.843750, -31.052934 ], [ -54.843750, -31.353637 ], [ -54.492188, -31.353637 ], [ -54.492188, -31.653381 ], [ -54.140625, -31.653381 ], [ -54.140625, -31.952162 ], [ -53.789062, -31.952162 ], [ -53.789062, -32.249974 ], [ -53.437500, -32.249974 ], [ -53.437500, -32.842674 ], [ -53.085938, -32.842674 ], [ -53.085938, -33.137551 ], [ -53.789062, -33.137551 ], [ -53.789062, -33.431441 ], [ -53.437500, -33.431441 ], [ -53.437500, -34.016242 ], [ -53.789062, -34.016242 ], [ -53.789062, -34.597042 ], [ -54.492188, -34.597042 ], [ -54.492188, -34.885931 ], [ -56.601562, -34.885931 ], [ -56.601562, -34.597042 ], [ -58.007812, -34.597042 ], [ -58.007812, -34.307144 ], [ -58.359375, -34.307144 ], [ -58.359375, -33.137551 ], [ -58.007812, -33.137551 ], [ -58.007812, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ], [ -56.953125, -30.448674 ], [ -56.250000, -30.448674 ], [ -56.250000, -30.751278 ], [ -55.546875, -30.751278 ], [ -55.546875, -31.052934 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.448674 ], [ -56.250000, -30.448674 ], [ -56.250000, -30.751278 ], [ -55.546875, -30.751278 ], [ -55.546875, -31.052934 ], [ -54.843750, -31.052934 ], [ -54.843750, -31.353637 ], [ -54.492188, -31.353637 ], [ -54.492188, -31.653381 ], [ -54.140625, -31.653381 ], [ -54.140625, -31.952162 ], [ -53.789062, -31.952162 ], [ -53.789062, -32.249974 ], [ -53.437500, -32.249974 ], [ -53.437500, -32.842674 ], [ -53.085938, -32.842674 ], [ -53.085938, -33.137551 ], [ -53.789062, -33.137551 ], [ -53.789062, -33.431441 ], [ -53.437500, -33.431441 ], [ -53.437500, -34.016242 ], [ -53.789062, -34.016242 ], [ -53.789062, -34.597042 ], [ -54.492188, -34.597042 ], [ -54.492188, -34.885931 ], [ -56.601562, -34.885931 ], [ -56.601562, -34.597042 ], [ -58.007812, -34.597042 ], [ -58.007812, -34.307144 ], [ -58.359375, -34.307144 ], [ -58.359375, -33.137551 ], [ -58.007812, -33.137551 ], [ -58.007812, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.007812, -51.618017 ], [ -57.656250, -51.618017 ], [ -57.656250, -51.835778 ], [ -58.007812, -51.835778 ], [ -58.007812, -52.052490 ], [ -58.710938, -52.052490 ], [ -58.710938, -52.268157 ], [ -59.414062, -52.268157 ], [ -59.414062, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -52.268157 ], [ -60.820312, -52.268157 ], [ -60.820312, -52.052490 ], [ -61.171875, -52.052490 ], [ -61.171875, -51.835778 ], [ -60.820312, -51.835778 ], [ -60.820312, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.399206 ], [ -60.117188, -51.399206 ], [ -60.117188, -51.179343 ], [ -59.765625, -51.179343 ], [ -59.765625, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, -51.179343 ], [ -59.765625, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.618017 ], [ -57.656250, -51.618017 ], [ -57.656250, -51.835778 ], [ -58.007812, -51.835778 ], [ -58.007812, -52.052490 ], [ -58.710938, -52.052490 ], [ -58.710938, -52.268157 ], [ -59.414062, -52.268157 ], [ -59.414062, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -52.268157 ], [ -60.820312, -52.268157 ], [ -60.820312, -52.052490 ], [ -61.171875, -52.052490 ], [ -61.171875, -51.835778 ], [ -60.820312, -51.835778 ], [ -60.820312, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.399206 ], [ -60.117188, -51.399206 ], [ -60.117188, -51.179343 ], [ -59.765625, -51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.304688, -63.704722 ], [ -57.656250, -63.704722 ], [ -57.656250, -64.014496 ], [ -58.359375, -64.014496 ], [ -58.359375, -64.168107 ], [ -58.710938, -64.168107 ], [ -58.710938, -64.320872 ], [ -60.468750, -64.320872 ], [ -60.468750, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.623877 ], [ -61.523438, -64.623877 ], [ -61.523438, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.923542 ], [ -62.226562, -64.923542 ], [ -62.226562, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.372755 ], [ -62.929688, -66.372755 ], [ -62.929688, -66.513260 ], [ -63.632812, -66.513260 ], [ -63.632812, -66.652977 ], [ -63.984375, -66.652977 ], [ -63.984375, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.204032 ], [ -67.500000, -67.204032 ], [ -67.500000, -67.067433 ], [ -67.148438, -67.067433 ], [ -67.148438, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.372755 ], [ -66.093750, -66.372755 ], [ -66.093750, -66.231457 ], [ -65.742188, -66.231457 ], [ -65.742188, -66.089364 ], [ -65.390625, -66.089364 ], [ -65.390625, -65.946472 ], [ -65.039062, -65.946472 ], [ -65.039062, -65.802776 ], [ -64.687500, -65.802776 ], [ -64.687500, -65.512963 ], [ -64.335938, -65.512963 ], [ -64.335938, -65.219894 ], [ -63.984375, -65.219894 ], [ -63.984375, -65.072130 ], [ -63.632812, -65.072130 ], [ -63.632812, -64.923542 ], [ -63.281250, -64.923542 ], [ -63.281250, -64.774125 ], [ -62.929688, -64.774125 ], [ -62.929688, -64.623877 ], [ -61.875000, -64.623877 ], [ -61.875000, -64.472794 ], [ -61.523438, -64.472794 ], [ -61.523438, -64.320872 ], [ -61.171875, -64.320872 ], [ -61.171875, -64.168107 ], [ -60.820312, -64.168107 ], [ -60.820312, -64.014496 ], [ -59.414062, -64.014496 ], [ -59.414062, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -63.548552 ], [ -58.710938, -63.548552 ], [ -58.710938, -63.391522 ], [ -58.007812, -63.391522 ], [ -58.007812, -63.233627 ], [ -57.656250, -63.233627 ], [ -57.656250, -63.391522 ], [ -57.304688, -63.391522 ], [ -57.304688, -63.704722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -63.233627 ], [ -57.656250, -63.391522 ], [ -57.304688, -63.391522 ], [ -57.304688, -63.704722 ], [ -57.656250, -63.704722 ], [ -57.656250, -64.014496 ], [ -58.359375, -64.014496 ], [ -58.359375, -64.168107 ], [ -58.710938, -64.168107 ], [ -58.710938, -64.320872 ], [ -60.468750, -64.320872 ], [ -60.468750, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.623877 ], [ -61.523438, -64.623877 ], [ -61.523438, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.923542 ], [ -62.226562, -64.923542 ], [ -62.226562, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.372755 ], [ -62.929688, -66.372755 ], [ -62.929688, -66.513260 ], [ -63.632812, -66.513260 ], [ -63.632812, -66.652977 ], [ -63.984375, -66.652977 ], [ -63.984375, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.204032 ], [ -67.500000, -67.204032 ], [ -67.500000, -67.067433 ], [ -67.148438, -67.067433 ], [ -67.148438, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.372755 ], [ -66.093750, -66.372755 ], [ -66.093750, -66.231457 ], [ -65.742188, -66.231457 ], [ -65.742188, -66.089364 ], [ -65.390625, -66.089364 ], [ -65.390625, -65.946472 ], [ -65.039062, -65.946472 ], [ -65.039062, -65.802776 ], [ -64.687500, -65.802776 ], [ -64.687500, -65.512963 ], [ -64.335938, -65.512963 ], [ -64.335938, -65.219894 ], [ -63.984375, -65.219894 ], [ -63.984375, -65.072130 ], [ -63.632812, -65.072130 ], [ -63.632812, -64.923542 ], [ -63.281250, -64.923542 ], [ -63.281250, -64.774125 ], [ -62.929688, -64.774125 ], [ -62.929688, -64.623877 ], [ -61.875000, -64.623877 ], [ -61.875000, -64.472794 ], [ -61.523438, -64.472794 ], [ -61.523438, -64.320872 ], [ -61.171875, -64.320872 ], [ -61.171875, -64.168107 ], [ -60.820312, -64.168107 ], [ -60.820312, -64.014496 ], [ -59.414062, -64.014496 ], [ -59.414062, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -63.548552 ], [ -58.710938, -63.548552 ], [ -58.710938, -63.391522 ], [ -58.007812, -63.391522 ], [ -58.007812, -63.233627 ], [ -57.656250, -63.233627 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.289062, 62.267923 ], [ -75.234375, 62.267923 ], [ -75.234375, 62.103883 ], [ -74.179688, 62.103883 ], [ -74.179688, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 62.103883 ], [ -72.773438, 62.103883 ], [ -72.773438, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.773123 ], [ -72.070312, 61.773123 ], [ -72.070312, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.367188, 61.270233 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 59.534318 ], [ -69.257812, 59.534318 ], [ -69.257812, 58.995311 ], [ -68.906250, 58.995311 ], [ -68.906250, 58.813742 ], [ -68.203125, 58.813742 ], [ -68.203125, 58.631217 ], [ -67.851562, 58.631217 ], [ -67.851562, 58.263287 ], [ -67.148438, 58.263287 ], [ -67.148438, 58.447733 ], [ -66.445312, 58.447733 ], [ -66.445312, 58.631217 ], [ -66.093750, 58.631217 ], [ -66.093750, 58.995311 ], [ -65.742188, 58.995311 ], [ -65.742188, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 60.239811 ], [ -64.335938, 60.239811 ], [ -64.335938, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.534318 ], [ -63.632812, 59.534318 ], [ -63.632812, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 56.365250 ], [ -76.640625, 56.365250 ], [ -76.640625, 57.326521 ], [ -76.992188, 57.326521 ], [ -76.992188, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -77.695312, 58.077876 ], [ -77.695312, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.995311 ], [ -78.046875, 58.995311 ], [ -78.046875, 59.355596 ], [ -77.695312, 59.355596 ], [ -77.695312, 59.712097 ], [ -77.343750, 59.712097 ], [ -77.343750, 60.239811 ], [ -77.695312, 60.239811 ], [ -77.695312, 61.438767 ], [ -78.046875, 61.438767 ], [ -78.046875, 62.267923 ], [ -77.695312, 62.267923 ], [ -77.695312, 62.431074 ], [ -77.343750, 62.431074 ], [ -77.343750, 62.593341 ], [ -76.992188, 62.593341 ], [ -76.992188, 62.431074 ], [ -76.289062, 62.431074 ], [ -76.289062, 62.267923 ] ] ], [ [ [ -81.210938, 67.204032 ], [ -81.210938, 66.930060 ], [ -81.562500, 66.930060 ], [ -81.562500, 66.791909 ], [ -81.914062, 66.791909 ], [ -81.914062, 66.652977 ], [ -82.617188, 66.652977 ], [ -82.617188, 66.513260 ], [ -82.968750, 66.513260 ], [ -82.968750, 66.372755 ], [ -83.671875, 66.372755 ], [ -83.671875, 66.231457 ], [ -85.078125, 66.231457 ], [ -85.078125, 66.372755 ], [ -85.781250, 66.372755 ], [ -85.781250, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.658275 ], [ -86.835938, 65.658275 ], [ -86.835938, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 64.623877 ], [ -87.539062, 64.623877 ], [ -87.539062, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.320872 ], [ -88.242188, 64.320872 ], [ -88.242188, 64.168107 ], [ -88.945312, 64.168107 ], [ -88.945312, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.548552 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.757812, 62.915233 ], [ -91.757812, 67.204032 ], [ -81.210938, 67.204032 ] ] ], [ [ [ -79.101562, 61.938950 ], [ -79.453125, 61.938950 ], [ -79.453125, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 61.773123 ], [ -80.507812, 61.773123 ], [ -80.507812, 61.938950 ], [ -80.156250, 61.938950 ], [ -80.156250, 62.267923 ], [ -79.804688, 62.267923 ], [ -79.804688, 62.431074 ], [ -79.453125, 62.431074 ], [ -79.453125, 62.267923 ], [ -79.101562, 62.267923 ], [ -79.101562, 61.938950 ] ] ], [ [ [ -68.203125, 63.074866 ], [ -67.851562, 63.074866 ], [ -67.851562, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.754726 ], [ -67.148438, 62.754726 ], [ -67.148438, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.267923 ], [ -66.445312, 62.267923 ], [ -66.445312, 62.103883 ], [ -66.093750, 62.103883 ], [ -66.093750, 61.938950 ], [ -67.148438, 61.938950 ], [ -67.148438, 62.103883 ], [ -68.554688, 62.103883 ], [ -68.554688, 62.267923 ], [ -69.257812, 62.267923 ], [ -69.257812, 62.431074 ], [ -69.960938, 62.431074 ], [ -69.960938, 62.593341 ], [ -70.312500, 62.593341 ], [ -70.312500, 62.754726 ], [ -71.015625, 62.754726 ], [ -71.015625, 62.915233 ], [ -71.367188, 62.915233 ], [ -71.367188, 63.074866 ], [ -71.718750, 63.074866 ], [ -71.718750, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.548552 ], [ -71.718750, 63.548552 ], [ -71.718750, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.860036 ], [ -72.773438, 63.860036 ], [ -72.773438, 64.014496 ], [ -73.476562, 64.014496 ], [ -73.476562, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.320872 ], [ -74.531250, 64.320872 ], [ -74.531250, 64.472794 ], [ -74.882812, 64.472794 ], [ -74.882812, 64.320872 ], [ -75.937500, 64.320872 ], [ -75.937500, 64.168107 ], [ -78.046875, 64.168107 ], [ -78.046875, 64.472794 ], [ -78.398438, 64.472794 ], [ -78.398438, 64.923542 ], [ -78.046875, 64.923542 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 65.512963 ], [ -73.828125, 65.512963 ], [ -73.828125, 65.658275 ], [ -74.179688, 65.658275 ], [ -74.179688, 66.089364 ], [ -73.828125, 66.089364 ], [ -73.828125, 66.513260 ], [ -73.476562, 66.513260 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -63.984375, 67.204032 ], [ -63.984375, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.658275 ], [ -62.929688, 65.658275 ], [ -62.929688, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.632812, 65.366837 ], [ -63.632812, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.219894 ], [ -65.039062, 65.219894 ], [ -65.039062, 65.366837 ], [ -65.390625, 65.366837 ], [ -65.390625, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 65.946472 ], [ -66.445312, 65.946472 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.372755 ], [ -67.148438, 66.372755 ], [ -67.148438, 66.231457 ], [ -67.851562, 66.231457 ], [ -67.851562, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.512963 ], [ -67.851562, 65.512963 ], [ -67.851562, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.072130 ], [ -67.148438, 65.072130 ], [ -67.148438, 64.923542 ], [ -66.796875, 64.923542 ], [ -66.796875, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.623877 ], [ -65.742188, 64.623877 ], [ -65.742188, 64.472794 ], [ -65.390625, 64.472794 ], [ -65.390625, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.548552 ], [ -64.687500, 63.548552 ], [ -64.687500, 63.074866 ], [ -65.039062, 63.074866 ], [ -65.039062, 62.754726 ], [ -66.093750, 62.754726 ], [ -66.093750, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.074866 ], [ -67.500000, 63.074866 ], [ -67.500000, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 63.391522 ], [ -68.203125, 63.391522 ], [ -68.203125, 63.074866 ] ], [ [ -68.203125, 63.548552 ], [ -68.554688, 63.548552 ], [ -68.554688, 63.391522 ], [ -68.203125, 63.391522 ], [ -68.203125, 63.548552 ] ] ], [ [ [ -81.914062, 62.593341 ], [ -82.265625, 62.593341 ], [ -82.265625, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.103883 ], [ -83.671875, 62.103883 ], [ -83.671875, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.431074 ], [ -83.671875, 62.431074 ], [ -83.671875, 62.754726 ], [ -83.320312, 62.754726 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ] ] ], [ [ [ -84.023438, 64.923542 ], [ -83.320312, 64.923542 ], [ -83.320312, 64.774125 ], [ -82.617188, 64.774125 ], [ -82.617188, 64.623877 ], [ -81.914062, 64.623877 ], [ -81.914062, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.014496 ], [ -80.859375, 63.860036 ], [ -80.507812, 63.860036 ], [ -80.507812, 63.704722 ], [ -80.156250, 63.704722 ], [ -80.156250, 63.548552 ], [ -80.507812, 63.548552 ], [ -80.507812, 63.391522 ], [ -81.562500, 63.391522 ], [ -81.562500, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.704722 ], [ -82.617188, 63.704722 ], [ -82.617188, 63.860036 ], [ -82.968750, 63.860036 ], [ -82.968750, 64.014496 ], [ -83.320312, 64.014496 ], [ -83.320312, 63.860036 ], [ -83.671875, 63.860036 ], [ -83.671875, 63.548552 ], [ -84.023438, 63.548552 ], [ -84.023438, 63.391522 ], [ -84.375000, 63.391522 ], [ -84.375000, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 63.074866 ], [ -85.429688, 63.074866 ], [ -85.429688, 63.391522 ], [ -85.781250, 63.391522 ], [ -85.781250, 63.704722 ], [ -86.132812, 63.704722 ], [ -86.132812, 63.548552 ], [ -86.835938, 63.548552 ], [ -86.835938, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 64.320872 ], [ -86.132812, 64.320872 ], [ -86.132812, 65.219894 ], [ -85.781250, 65.219894 ], [ -85.781250, 65.658275 ], [ -85.078125, 65.658275 ], [ -85.078125, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 64.923542 ] ] ], [ [ [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.204032 ], [ -76.289062, 67.204032 ], [ -76.289062, 67.067433 ] ] ], [ [ [ -91.054688, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -89.648438, 57.136239 ], [ -89.648438, 56.944974 ], [ -88.945312, 56.944974 ], [ -88.945312, 56.752723 ], [ -88.242188, 56.752723 ], [ -88.242188, 56.559482 ], [ -87.890625, 56.559482 ], [ -87.890625, 56.365250 ], [ -91.757812, 56.365250 ], [ -91.757812, 57.136239 ], [ -91.054688, 57.136239 ], [ -91.054688, 57.326521 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 62.915233 ], [ -91.757812, 67.204032 ], [ -81.210938, 67.204032 ], [ -81.210938, 66.930060 ], [ -81.562500, 66.930060 ], [ -81.562500, 66.791909 ], [ -81.914062, 66.791909 ], [ -81.914062, 66.652977 ], [ -82.617188, 66.652977 ], [ -82.617188, 66.513260 ], [ -82.968750, 66.513260 ], [ -82.968750, 66.372755 ], [ -83.671875, 66.372755 ], [ -83.671875, 66.231457 ], [ -85.078125, 66.231457 ], [ -85.078125, 66.372755 ], [ -85.781250, 66.372755 ], [ -85.781250, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.658275 ], [ -86.835938, 65.658275 ], [ -86.835938, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 64.623877 ], [ -87.539062, 64.623877 ], [ -87.539062, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.320872 ], [ -88.242188, 64.320872 ], [ -88.242188, 64.168107 ], [ -88.945312, 64.168107 ], [ -88.945312, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.548552 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.757812, 62.915233 ] ] ], [ [ [ -76.992188, 62.431074 ], [ -76.289062, 62.431074 ], [ -76.289062, 62.267923 ], [ -75.234375, 62.267923 ], [ -75.234375, 62.103883 ], [ -74.179688, 62.103883 ], [ -74.179688, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 62.103883 ], [ -72.773438, 62.103883 ], [ -72.773438, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.773123 ], [ -72.070312, 61.773123 ], [ -72.070312, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.367188, 61.270233 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 59.534318 ], [ -69.257812, 59.534318 ], [ -69.257812, 58.995311 ], [ -68.906250, 58.995311 ], [ -68.906250, 58.813742 ], [ -68.203125, 58.813742 ], [ -68.203125, 58.631217 ], [ -67.851562, 58.631217 ], [ -67.851562, 58.263287 ], [ -67.148438, 58.263287 ], [ -67.148438, 58.447733 ], [ -66.445312, 58.447733 ], [ -66.445312, 58.631217 ], [ -66.093750, 58.631217 ], [ -66.093750, 58.995311 ], [ -65.742188, 58.995311 ], [ -65.742188, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 60.239811 ], [ -64.335938, 60.239811 ], [ -64.335938, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.534318 ], [ -63.632812, 59.534318 ], [ -63.632812, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 56.365250 ], [ -76.640625, 56.365250 ], [ -76.640625, 57.326521 ], [ -76.992188, 57.326521 ], [ -76.992188, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -77.695312, 58.077876 ], [ -77.695312, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.995311 ], [ -78.046875, 58.995311 ], [ -78.046875, 59.355596 ], [ -77.695312, 59.355596 ], [ -77.695312, 59.712097 ], [ -77.343750, 59.712097 ], [ -77.343750, 60.239811 ], [ -77.695312, 60.239811 ], [ -77.695312, 61.438767 ], [ -78.046875, 61.438767 ], [ -78.046875, 62.267923 ], [ -77.695312, 62.267923 ], [ -77.695312, 62.431074 ], [ -77.343750, 62.431074 ], [ -77.343750, 62.593341 ], [ -76.992188, 62.593341 ], [ -76.992188, 62.431074 ] ] ], [ [ [ -79.453125, 62.431074 ], [ -79.453125, 62.267923 ], [ -79.101562, 62.267923 ], [ -79.101562, 61.938950 ], [ -79.453125, 61.938950 ], [ -79.453125, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 61.773123 ], [ -80.507812, 61.773123 ], [ -80.507812, 61.938950 ], [ -80.156250, 61.938950 ], [ -80.156250, 62.267923 ], [ -79.804688, 62.267923 ], [ -79.804688, 62.431074 ], [ -79.453125, 62.431074 ] ] ], [ [ [ -68.203125, 63.391522 ], [ -68.203125, 63.074866 ], [ -67.851562, 63.074866 ], [ -67.851562, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.754726 ], [ -67.148438, 62.754726 ], [ -67.148438, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.267923 ], [ -66.445312, 62.267923 ], [ -66.445312, 62.103883 ], [ -66.093750, 62.103883 ], [ -66.093750, 61.938950 ], [ -67.148438, 61.938950 ], [ -67.148438, 62.103883 ], [ -68.554688, 62.103883 ], [ -68.554688, 62.267923 ], [ -69.257812, 62.267923 ], [ -69.257812, 62.431074 ], [ -69.960938, 62.431074 ], [ -69.960938, 62.593341 ], [ -70.312500, 62.593341 ], [ -70.312500, 62.754726 ], [ -71.015625, 62.754726 ], [ -71.015625, 62.915233 ], [ -71.367188, 62.915233 ], [ -71.367188, 63.074866 ], [ -71.718750, 63.074866 ], [ -71.718750, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.548552 ], [ -71.718750, 63.548552 ], [ -71.718750, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.860036 ], [ -72.773438, 63.860036 ], [ -72.773438, 64.014496 ], [ -73.476562, 64.014496 ], [ -73.476562, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.320872 ], [ -74.531250, 64.320872 ], [ -74.531250, 64.472794 ], [ -74.882812, 64.472794 ], [ -74.882812, 64.320872 ], [ -75.937500, 64.320872 ], [ -75.937500, 64.168107 ], [ -78.046875, 64.168107 ], [ -78.046875, 64.472794 ], [ -78.398438, 64.472794 ], [ -78.398438, 64.923542 ], [ -78.046875, 64.923542 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 65.512963 ], [ -73.828125, 65.512963 ], [ -73.828125, 65.658275 ], [ -74.179688, 65.658275 ], [ -74.179688, 66.089364 ], [ -73.828125, 66.089364 ], [ -73.828125, 66.513260 ], [ -73.476562, 66.513260 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -63.984375, 67.204032 ], [ -63.984375, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.658275 ], [ -62.929688, 65.658275 ], [ -62.929688, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.632812, 65.366837 ], [ -63.632812, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.219894 ], [ -65.039062, 65.219894 ], [ -65.039062, 65.366837 ], [ -65.390625, 65.366837 ], [ -65.390625, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 65.946472 ], [ -66.445312, 65.946472 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.372755 ], [ -67.148438, 66.372755 ], [ -67.148438, 66.231457 ], [ -67.851562, 66.231457 ], [ -67.851562, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.512963 ], [ -67.851562, 65.512963 ], [ -67.851562, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.072130 ], [ -67.148438, 65.072130 ], [ -67.148438, 64.923542 ], [ -66.796875, 64.923542 ], [ -66.796875, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.623877 ], [ -65.742188, 64.623877 ], [ -65.742188, 64.472794 ], [ -65.390625, 64.472794 ], [ -65.390625, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.548552 ], [ -64.687500, 63.548552 ], [ -64.687500, 63.074866 ], [ -65.039062, 63.074866 ], [ -65.039062, 62.754726 ], [ -66.093750, 62.754726 ], [ -66.093750, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.074866 ], [ -67.500000, 63.074866 ], [ -67.500000, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 63.391522 ], [ -68.203125, 63.391522 ] ], [ [ -68.203125, 63.391522 ], [ -68.203125, 63.548552 ], [ -68.554688, 63.548552 ], [ -68.554688, 63.391522 ], [ -68.203125, 63.391522 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ], [ -82.265625, 62.593341 ], [ -82.265625, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.103883 ], [ -83.671875, 62.103883 ], [ -83.671875, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.431074 ], [ -83.671875, 62.431074 ], [ -83.671875, 62.754726 ], [ -83.320312, 62.754726 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.078125, 65.658275 ], [ -85.078125, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 64.923542 ], [ -83.320312, 64.923542 ], [ -83.320312, 64.774125 ], [ -82.617188, 64.774125 ], [ -82.617188, 64.623877 ], [ -81.914062, 64.623877 ], [ -81.914062, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.014496 ], [ -80.859375, 63.860036 ], [ -80.507812, 63.860036 ], [ -80.507812, 63.704722 ], [ -80.156250, 63.704722 ], [ -80.156250, 63.548552 ], [ -80.507812, 63.548552 ], [ -80.507812, 63.391522 ], [ -81.562500, 63.391522 ], [ -81.562500, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.704722 ], [ -82.617188, 63.704722 ], [ -82.617188, 63.860036 ], [ -82.968750, 63.860036 ], [ -82.968750, 64.014496 ], [ -83.320312, 64.014496 ], [ -83.320312, 63.860036 ], [ -83.671875, 63.860036 ], [ -83.671875, 63.548552 ], [ -84.023438, 63.548552 ], [ -84.023438, 63.391522 ], [ -84.375000, 63.391522 ], [ -84.375000, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 63.074866 ], [ -85.429688, 63.074866 ], [ -85.429688, 63.391522 ], [ -85.781250, 63.391522 ], [ -85.781250, 63.704722 ], [ -86.132812, 63.704722 ], [ -86.132812, 63.548552 ], [ -86.835938, 63.548552 ], [ -86.835938, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 64.320872 ], [ -86.132812, 64.320872 ], [ -86.132812, 65.219894 ], [ -85.781250, 65.219894 ], [ -85.781250, 65.658275 ], [ -85.078125, 65.658275 ] ] ], [ [ [ -76.289062, 67.204032 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.204032 ], [ -76.289062, 67.204032 ] ] ], [ [ [ -91.757812, 57.136239 ], [ -91.054688, 57.136239 ], [ -91.054688, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -89.648438, 57.136239 ], [ -89.648438, 56.944974 ], [ -88.945312, 56.944974 ], [ -88.945312, 56.752723 ], [ -88.242188, 56.752723 ], [ -88.242188, 56.559482 ], [ -87.890625, 56.559482 ], [ -87.890625, 56.365250 ], [ -91.757812, 56.365250 ], [ -91.757812, 57.136239 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.609375, 46.800059 ], [ -69.960938, 46.800059 ], [ -69.960938, 46.316584 ], [ -70.312500, 46.316584 ], [ -70.312500, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.336702 ], [ -71.367188, 45.336702 ], [ -71.367188, 45.089036 ], [ -74.882812, 45.089036 ], [ -74.882812, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.339565 ], [ -75.937500, 44.339565 ], [ -75.937500, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.834527 ], [ -76.992188, 43.834527 ], [ -76.992188, 43.580391 ], [ -79.101562, 43.580391 ], [ -79.101562, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.553080 ], [ -79.804688, 42.553080 ], [ -79.804688, 42.293564 ], [ -81.210938, 42.293564 ], [ -81.210938, 42.032974 ], [ -81.914062, 42.032974 ], [ -81.914062, 41.771312 ], [ -82.968750, 41.771312 ], [ -82.968750, 42.553080 ], [ -82.617188, 42.553080 ], [ -82.617188, 42.811522 ], [ -82.265625, 42.811522 ], [ -82.265625, 44.840291 ], [ -82.617188, 44.840291 ], [ -82.617188, 45.336702 ], [ -82.968750, 45.336702 ], [ -82.968750, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 45.828799 ], [ -83.320312, 45.828799 ], [ -83.320312, 46.073231 ], [ -84.023438, 46.073231 ], [ -84.023438, 46.316584 ], [ -84.726562, 46.316584 ], [ -84.726562, 46.800059 ], [ -85.078125, 46.800059 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.279229 ], [ -86.484375, 47.279229 ], [ -86.484375, 47.517201 ], [ -86.835938, 47.517201 ], [ -86.835938, 47.754098 ], [ -87.539062, 47.754098 ], [ -87.539062, 47.989922 ], [ -88.242188, 47.989922 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -91.757812, 48.224673 ], [ -91.757812, 56.365250 ], [ -87.539062, 56.365250 ], [ -87.539062, 55.973798 ], [ -86.835938, 55.973798 ], [ -86.835938, 55.776573 ], [ -86.132812, 55.776573 ], [ -86.132812, 55.578345 ], [ -85.429688, 55.578345 ], [ -85.429688, 55.379110 ], [ -84.375000, 55.379110 ], [ -84.375000, 55.178868 ], [ -82.265625, 55.178868 ], [ -82.265625, 52.908902 ], [ -81.914062, 52.908902 ], [ -81.914062, 52.268157 ], [ -81.562500, 52.268157 ], [ -81.562500, 51.835778 ], [ -81.210938, 51.835778 ], [ -81.210938, 51.618017 ], [ -80.507812, 51.618017 ], [ -80.507812, 51.399206 ], [ -80.156250, 51.399206 ], [ -80.156250, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 51.399206 ], [ -79.101562, 51.399206 ], [ -79.101562, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.101562, 53.330873 ], [ -79.101562, 54.162434 ], [ -79.453125, 54.162434 ], [ -79.453125, 54.367759 ], [ -79.804688, 54.367759 ], [ -79.804688, 54.572062 ], [ -79.453125, 54.572062 ], [ -79.453125, 54.775346 ], [ -78.750000, 54.775346 ], [ -78.750000, 54.977614 ], [ -78.398438, 54.977614 ], [ -78.398438, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 55.578345 ], [ -76.992188, 55.578345 ], [ -76.992188, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 56.365250 ], [ -61.875000, 56.365250 ], [ -61.875000, 56.170023 ], [ -61.523438, 56.170023 ], [ -61.523438, 55.973798 ], [ -60.820312, 55.973798 ], [ -60.820312, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.379110 ], [ -59.765625, 55.379110 ], [ -59.765625, 55.178868 ], [ -59.062500, 55.178868 ], [ -59.062500, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.775346 ], [ -57.656250, 54.775346 ], [ -57.656250, 54.572062 ], [ -57.304688, 54.572062 ], [ -57.304688, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 52.696361 ], [ -55.546875, 52.696361 ], [ -55.546875, 51.835778 ], [ -56.250000, 51.835778 ], [ -56.250000, 51.618017 ], [ -56.601562, 51.618017 ], [ -56.601562, 51.399206 ], [ -57.304688, 51.399206 ], [ -57.304688, 51.179343 ], [ -58.007812, 51.179343 ], [ -58.007812, 50.958427 ], [ -58.710938, 50.958427 ], [ -58.710938, 50.736455 ], [ -59.062500, 50.736455 ], [ -59.062500, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.289339 ], [ -60.820312, 50.289339 ], [ -60.820312, 50.064192 ], [ -63.281250, 50.064192 ], [ -63.281250, 50.289339 ], [ -66.445312, 50.289339 ], [ -66.445312, 50.064192 ], [ -66.796875, 50.064192 ], [ -66.796875, 49.610710 ], [ -67.148438, 49.610710 ], [ -67.148438, 49.382373 ], [ -67.851562, 49.382373 ], [ -67.851562, 49.152970 ], [ -68.554688, 49.152970 ], [ -68.554688, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.609375, 48.224673 ], [ -69.609375, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 46.800059 ], [ -70.312500, 46.800059 ], [ -70.312500, 47.040182 ], [ -69.960938, 47.040182 ], [ -69.960938, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 46.800059 ] ] ], [ [ [ -62.226562, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.073231 ] ] ], [ [ [ -55.195312, 47.279229 ], [ -55.898438, 47.279229 ], [ -55.898438, 47.517201 ], [ -59.414062, 47.517201 ], [ -59.414062, 47.989922 ], [ -58.710938, 47.989922 ], [ -58.710938, 48.224673 ], [ -59.062500, 48.224673 ], [ -59.062500, 48.458352 ], [ -58.710938, 48.458352 ], [ -58.710938, 48.922499 ], [ -58.359375, 48.922499 ], [ -58.359375, 49.382373 ], [ -58.007812, 49.382373 ], [ -58.007812, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.289339 ], [ -57.304688, 50.289339 ], [ -57.304688, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 50.958427 ], [ -56.601562, 50.958427 ], [ -56.601562, 51.179343 ], [ -56.250000, 51.179343 ], [ -56.250000, 51.399206 ], [ -55.898438, 51.399206 ], [ -55.898438, 51.618017 ], [ -55.546875, 51.618017 ], [ -55.546875, 51.179343 ], [ -55.898438, 51.179343 ], [ -55.898438, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.513427 ], [ -56.601562, 50.513427 ], [ -56.601562, 50.064192 ], [ -56.953125, 50.064192 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.152970 ], [ -53.437500, 49.152970 ], [ -53.437500, 48.690960 ], [ -53.789062, 48.690960 ], [ -53.789062, 48.458352 ], [ -53.085938, 48.458352 ], [ -53.085938, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.040182 ], [ -53.085938, 47.040182 ], [ -53.085938, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -53.789062, 47.040182 ], [ -53.789062, 47.517201 ], [ -54.492188, 47.517201 ], [ -54.492188, 47.279229 ], [ -54.843750, 47.279229 ], [ -54.843750, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 47.279229 ] ] ], [ [ [ -64.687500, 49.610710 ], [ -64.687500, 49.837982 ], [ -63.632812, 49.837982 ], [ -63.632812, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 49.152970 ], [ -63.281250, 49.152970 ], [ -63.281250, 49.382373 ], [ -63.984375, 49.382373 ], [ -63.984375, 49.610710 ], [ -64.687500, 49.610710 ] ] ], [ [ [ -63.984375, 46.316584 ], [ -63.984375, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.800059 ], [ -63.632812, 46.800059 ], [ -63.632812, 46.316584 ], [ -63.984375, 46.316584 ] ] ], [ [ [ -62.226562, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.558860 ] ] ], [ [ [ -55.195312, 46.800059 ], [ -55.546875, 46.800059 ], [ -55.546875, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 46.800059 ] ] ], [ [ [ -69.609375, 47.517201 ], [ -69.257812, 47.517201 ], [ -69.257812, 47.754098 ], [ -68.906250, 47.754098 ], [ -68.906250, 47.989922 ], [ -68.554688, 47.989922 ], [ -68.554688, 48.224673 ], [ -68.203125, 48.224673 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.690960 ], [ -67.148438, 48.690960 ], [ -67.148438, 48.922499 ], [ -66.445312, 48.922499 ], [ -66.445312, 49.152970 ], [ -65.039062, 49.152970 ], [ -65.039062, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 48.690960 ], [ -64.335938, 48.690960 ], [ -64.335938, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.039062, 47.989922 ], [ -65.039062, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 45.828799 ], [ -61.171875, 45.828799 ], [ -61.171875, 46.316584 ], [ -60.820312, 46.316584 ], [ -60.820312, 46.800059 ], [ -60.468750, 46.800059 ], [ -60.468750, 46.073231 ], [ -60.117188, 46.073231 ], [ -60.117188, 45.828799 ], [ -59.765625, 45.828799 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.336702 ], [ -61.171875, 45.336702 ], [ -61.171875, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.840291 ], [ -62.578125, 44.840291 ], [ -62.578125, 44.590467 ], [ -63.632812, 44.590467 ], [ -63.632812, 44.339565 ], [ -64.335938, 44.339565 ], [ -64.335938, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.834527 ], [ -65.039062, 43.834527 ], [ -65.039062, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.339565 ], [ -65.742188, 44.339565 ], [ -65.742188, 44.590467 ], [ -65.390625, 44.590467 ], [ -65.390625, 44.840291 ], [ -64.687500, 44.840291 ], [ -64.687500, 45.089036 ], [ -64.335938, 45.089036 ], [ -64.335938, 45.336702 ], [ -66.445312, 45.336702 ], [ -66.445312, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 45.336702 ], [ -67.851562, 45.336702 ], [ -67.851562, 47.040182 ], [ -68.203125, 47.040182 ], [ -68.203125, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 47.517201 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.875000, 56.365250 ], [ -61.875000, 56.170023 ], [ -61.523438, 56.170023 ], [ -61.523438, 55.973798 ], [ -60.820312, 55.973798 ], [ -60.820312, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.379110 ], [ -59.765625, 55.379110 ], [ -59.765625, 55.178868 ], [ -59.062500, 55.178868 ], [ -59.062500, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.775346 ], [ -57.656250, 54.775346 ], [ -57.656250, 54.572062 ], [ -57.304688, 54.572062 ], [ -57.304688, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 52.696361 ], [ -55.546875, 52.696361 ], [ -55.546875, 51.835778 ], [ -56.250000, 51.835778 ], [ -56.250000, 51.618017 ], [ -56.601562, 51.618017 ], [ -56.601562, 51.399206 ], [ -57.304688, 51.399206 ], [ -57.304688, 51.179343 ], [ -58.007812, 51.179343 ], [ -58.007812, 50.958427 ], [ -58.710938, 50.958427 ], [ -58.710938, 50.736455 ], [ -59.062500, 50.736455 ], [ -59.062500, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.289339 ], [ -60.820312, 50.289339 ], [ -60.820312, 50.064192 ], [ -63.281250, 50.064192 ], [ -63.281250, 50.289339 ], [ -66.445312, 50.289339 ], [ -66.445312, 50.064192 ], [ -66.796875, 50.064192 ], [ -66.796875, 49.610710 ], [ -67.148438, 49.610710 ], [ -67.148438, 49.382373 ], [ -67.851562, 49.382373 ], [ -67.851562, 49.152970 ], [ -68.554688, 49.152970 ], [ -68.554688, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.609375, 48.224673 ], [ -69.609375, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 46.800059 ], [ -70.312500, 46.800059 ], [ -70.312500, 47.040182 ], [ -69.960938, 47.040182 ], [ -69.960938, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 46.800059 ], [ -69.960938, 46.800059 ], [ -69.960938, 46.316584 ], [ -70.312500, 46.316584 ], [ -70.312500, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.336702 ], [ -71.367188, 45.336702 ], [ -71.367188, 45.089036 ], [ -74.882812, 45.089036 ], [ -74.882812, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.339565 ], [ -75.937500, 44.339565 ], [ -75.937500, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.834527 ], [ -76.992188, 43.834527 ], [ -76.992188, 43.580391 ], [ -79.101562, 43.580391 ], [ -79.101562, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.553080 ], [ -79.804688, 42.553080 ], [ -79.804688, 42.293564 ], [ -81.210938, 42.293564 ], [ -81.210938, 42.032974 ], [ -81.914062, 42.032974 ], [ -81.914062, 41.771312 ], [ -82.968750, 41.771312 ], [ -82.968750, 42.553080 ], [ -82.617188, 42.553080 ], [ -82.617188, 42.811522 ], [ -82.265625, 42.811522 ], [ -82.265625, 44.840291 ], [ -82.617188, 44.840291 ], [ -82.617188, 45.336702 ], [ -82.968750, 45.336702 ], [ -82.968750, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 45.828799 ], [ -83.320312, 45.828799 ], [ -83.320312, 46.073231 ], [ -84.023438, 46.073231 ], [ -84.023438, 46.316584 ], [ -84.726562, 46.316584 ], [ -84.726562, 46.800059 ], [ -85.078125, 46.800059 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.279229 ], [ -86.484375, 47.279229 ], [ -86.484375, 47.517201 ], [ -86.835938, 47.517201 ], [ -86.835938, 47.754098 ], [ -87.539062, 47.754098 ], [ -87.539062, 47.989922 ], [ -88.242188, 47.989922 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -91.757812, 48.224673 ], [ -91.757812, 56.365250 ], [ -87.539062, 56.365250 ], [ -87.539062, 55.973798 ], [ -86.835938, 55.973798 ], [ -86.835938, 55.776573 ], [ -86.132812, 55.776573 ], [ -86.132812, 55.578345 ], [ -85.429688, 55.578345 ], [ -85.429688, 55.379110 ], [ -84.375000, 55.379110 ], [ -84.375000, 55.178868 ], [ -82.265625, 55.178868 ], [ -82.265625, 52.908902 ], [ -81.914062, 52.908902 ], [ -81.914062, 52.268157 ], [ -81.562500, 52.268157 ], [ -81.562500, 51.835778 ], [ -81.210938, 51.835778 ], [ -81.210938, 51.618017 ], [ -80.507812, 51.618017 ], [ -80.507812, 51.399206 ], [ -80.156250, 51.399206 ], [ -80.156250, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 51.399206 ], [ -79.101562, 51.399206 ], [ -79.101562, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.101562, 53.330873 ], [ -79.101562, 54.162434 ], [ -79.453125, 54.162434 ], [ -79.453125, 54.367759 ], [ -79.804688, 54.367759 ], [ -79.804688, 54.572062 ], [ -79.453125, 54.572062 ], [ -79.453125, 54.775346 ], [ -78.750000, 54.775346 ], [ -78.750000, 54.977614 ], [ -78.398438, 54.977614 ], [ -78.398438, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 55.578345 ], [ -76.992188, 55.578345 ], [ -76.992188, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 56.365250 ], [ -61.875000, 56.365250 ] ] ], [ [ [ -65.039062, 49.152970 ], [ -65.039062, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 48.690960 ], [ -64.335938, 48.690960 ], [ -64.335938, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.039062, 47.989922 ], [ -65.039062, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 45.828799 ], [ -61.171875, 45.828799 ], [ -61.171875, 46.316584 ], [ -60.820312, 46.316584 ], [ -60.820312, 46.800059 ], [ -60.468750, 46.800059 ], [ -60.468750, 46.073231 ], [ -60.117188, 46.073231 ], [ -60.117188, 45.828799 ], [ -59.765625, 45.828799 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.336702 ], [ -61.171875, 45.336702 ], [ -61.171875, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.840291 ], [ -62.578125, 44.840291 ], [ -62.578125, 44.590467 ], [ -63.632812, 44.590467 ], [ -63.632812, 44.339565 ], [ -64.335938, 44.339565 ], [ -64.335938, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.834527 ], [ -65.039062, 43.834527 ], [ -65.039062, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.339565 ], [ -65.742188, 44.339565 ], [ -65.742188, 44.590467 ], [ -65.390625, 44.590467 ], [ -65.390625, 44.840291 ], [ -64.687500, 44.840291 ], [ -64.687500, 45.089036 ], [ -64.335938, 45.089036 ], [ -64.335938, 45.336702 ], [ -66.445312, 45.336702 ], [ -66.445312, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 45.336702 ], [ -67.851562, 45.336702 ], [ -67.851562, 47.040182 ], [ -68.203125, 47.040182 ], [ -68.203125, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 47.517201 ], [ -69.257812, 47.517201 ], [ -69.257812, 47.754098 ], [ -68.906250, 47.754098 ], [ -68.906250, 47.989922 ], [ -68.554688, 47.989922 ], [ -68.554688, 48.224673 ], [ -68.203125, 48.224673 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.690960 ], [ -67.148438, 48.690960 ], [ -67.148438, 48.922499 ], [ -66.445312, 48.922499 ], [ -66.445312, 49.152970 ], [ -65.039062, 49.152970 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -55.546875, 51.179343 ], [ -55.898438, 51.179343 ], [ -55.898438, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.513427 ], [ -56.601562, 50.513427 ], [ -56.601562, 50.064192 ], [ -56.953125, 50.064192 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.152970 ], [ -53.437500, 49.152970 ], [ -53.437500, 48.690960 ], [ -53.789062, 48.690960 ], [ -53.789062, 48.458352 ], [ -53.085938, 48.458352 ], [ -53.085938, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.040182 ], [ -53.085938, 47.040182 ], [ -53.085938, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -53.789062, 47.040182 ], [ -53.789062, 47.517201 ], [ -54.492188, 47.517201 ], [ -54.492188, 47.279229 ], [ -54.843750, 47.279229 ], [ -54.843750, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 47.279229 ], [ -55.898438, 47.279229 ], [ -55.898438, 47.517201 ], [ -59.414062, 47.517201 ], [ -59.414062, 47.989922 ], [ -58.710938, 47.989922 ], [ -58.710938, 48.224673 ], [ -59.062500, 48.224673 ], [ -59.062500, 48.458352 ], [ -58.710938, 48.458352 ], [ -58.710938, 48.922499 ], [ -58.359375, 48.922499 ], [ -58.359375, 49.382373 ], [ -58.007812, 49.382373 ], [ -58.007812, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.289339 ], [ -57.304688, 50.289339 ], [ -57.304688, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 50.958427 ], [ -56.601562, 50.958427 ], [ -56.601562, 51.179343 ], [ -56.250000, 51.179343 ], [ -56.250000, 51.399206 ], [ -55.898438, 51.399206 ], [ -55.898438, 51.618017 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -55.195312, 47.040182 ], [ -55.195312, 46.800059 ], [ -55.546875, 46.800059 ], [ -55.546875, 47.040182 ], [ -55.195312, 47.040182 ] ] ], [ [ [ -63.632812, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 46.316584 ] ] ], [ [ [ -61.875000, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.316584 ] ] ], [ [ [ -63.632812, 49.837982 ], [ -63.632812, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 49.152970 ], [ -63.281250, 49.152970 ], [ -63.281250, 49.382373 ], [ -63.984375, 49.382373 ], [ -63.984375, 49.610710 ], [ -64.687500, 49.610710 ], [ -64.687500, 49.837982 ], [ -63.632812, 49.837982 ] ] ], [ [ [ -63.632812, 46.316584 ], [ -63.984375, 46.316584 ], [ -63.984375, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.800059 ], [ -63.632812, 46.800059 ], [ -63.632812, 46.316584 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.234375, 38.548165 ], [ -74.882812, 38.548165 ], [ -74.882812, 37.996163 ], [ -75.234375, 37.996163 ], [ -75.234375, 37.718590 ], [ -75.585938, 37.718590 ], [ -75.585938, 37.996163 ], [ -76.289062, 37.996163 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.585938, 36.031332 ], [ -75.585938, 35.173808 ], [ -75.937500, 35.173808 ], [ -75.937500, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.597042 ], [ -77.343750, 34.597042 ], [ -77.343750, 34.307144 ], [ -77.695312, 34.307144 ], [ -77.695312, 34.016242 ], [ -78.046875, 34.016242 ], [ -78.046875, 33.724340 ], [ -78.398438, 33.724340 ], [ -78.398438, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.546813 ], [ -80.156250, 32.546813 ], [ -80.156250, 32.249974 ], [ -80.507812, 32.249974 ], [ -80.507812, 31.952162 ], [ -80.859375, 31.952162 ], [ -80.859375, 31.653381 ], [ -81.210938, 31.653381 ], [ -81.210938, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.448674 ], [ -81.210938, 30.448674 ], [ -81.210938, 29.535230 ], [ -80.859375, 29.535230 ], [ -80.859375, 28.921631 ], [ -80.507812, 28.921631 ], [ -80.507812, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 25.482951 ], [ -80.507812, 25.482951 ], [ -80.507812, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.482951 ], [ -81.562500, 25.482951 ], [ -81.562500, 25.799891 ], [ -81.914062, 25.799891 ], [ -81.914062, 26.431228 ], [ -82.265625, 26.431228 ], [ -82.265625, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.683528 ], [ -82.968750, 27.683528 ], [ -82.968750, 28.304381 ], [ -82.617188, 28.304381 ], [ -82.617188, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.228890 ], [ -83.320312, 29.228890 ], [ -83.320312, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.535230 ], [ -85.429688, 29.535230 ], [ -85.429688, 29.840644 ], [ -85.781250, 29.840644 ], [ -85.781250, 30.145127 ], [ -86.484375, 30.145127 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.145127 ], [ -88.242188, 30.145127 ], [ -88.242188, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.840644 ], [ -89.296875, 29.840644 ], [ -89.296875, 29.228890 ], [ -91.757812, 29.228890 ], [ -91.757812, 48.224673 ], [ -90.351562, 48.224673 ], [ -90.351562, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.224673 ], [ -88.242188, 48.224673 ], [ -88.242188, 47.989922 ], [ -87.539062, 47.989922 ], [ -87.539062, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.279229 ], [ -85.781250, 47.279229 ], [ -85.781250, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.800059 ], [ -84.726562, 46.800059 ], [ -84.726562, 46.316584 ], [ -84.023438, 46.316584 ], [ -84.023438, 46.073231 ], [ -83.320312, 46.073231 ], [ -83.320312, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 45.583290 ], [ -82.968750, 45.583290 ], [ -82.968750, 45.336702 ], [ -82.617188, 45.336702 ], [ -82.617188, 44.840291 ], [ -82.265625, 44.840291 ], [ -82.265625, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 41.771312 ], [ -81.914062, 41.771312 ], [ -81.914062, 42.032974 ], [ -81.210938, 42.032974 ], [ -81.210938, 42.293564 ], [ -79.804688, 42.293564 ], [ -79.804688, 42.553080 ], [ -79.101562, 42.553080 ], [ -79.101562, 42.811522 ], [ -78.750000, 42.811522 ], [ -78.750000, 43.068888 ], [ -79.101562, 43.068888 ], [ -79.101562, 43.580391 ], [ -76.992188, 43.580391 ], [ -76.992188, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 44.339565 ], [ -75.585938, 44.339565 ], [ -75.585938, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 45.089036 ], [ -71.367188, 45.089036 ], [ -71.367188, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.583290 ], [ -70.312500, 45.583290 ], [ -70.312500, 46.316584 ], [ -69.960938, 46.316584 ], [ -69.960938, 46.800059 ], [ -69.609375, 46.800059 ], [ -69.609375, 47.279229 ], [ -68.203125, 47.279229 ], [ -68.203125, 47.040182 ], [ -67.851562, 47.040182 ], [ -67.851562, 45.336702 ], [ -67.500000, 45.336702 ], [ -67.500000, 45.089036 ], [ -67.148438, 45.089036 ], [ -67.148438, 44.840291 ], [ -66.796875, 44.840291 ], [ -66.796875, 44.590467 ], [ -67.500000, 44.590467 ], [ -67.500000, 44.339565 ], [ -68.203125, 44.339565 ], [ -68.203125, 44.087585 ], [ -68.906250, 44.087585 ], [ -68.906250, 43.834527 ], [ -69.609375, 43.834527 ], [ -69.609375, 43.580391 ], [ -69.960938, 43.580391 ], [ -69.960938, 43.325178 ], [ -70.312500, 43.325178 ], [ -70.312500, 43.068888 ], [ -70.664062, 43.068888 ], [ -70.664062, 41.771312 ], [ -70.312500, 41.771312 ], [ -70.312500, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.508577 ], [ -71.015625, 41.508577 ], [ -71.015625, 41.244772 ], [ -72.070312, 41.244772 ], [ -72.070312, 40.979898 ], [ -72.421875, 40.979898 ], [ -72.421875, 40.713956 ], [ -73.828125, 40.713956 ], [ -73.828125, 39.909736 ], [ -74.179688, 39.909736 ], [ -74.179688, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 38.822591 ], [ -74.882812, 38.822591 ], [ -74.882812, 39.095963 ], [ -75.234375, 39.095963 ], [ -75.234375, 38.548165 ] ], [ [ -73.125000, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 40.979898 ] ], [ [ -75.234375, 39.368279 ], [ -75.585938, 39.368279 ], [ -75.585938, 39.095963 ], [ -75.234375, 39.095963 ], [ -75.234375, 39.368279 ] ], [ [ -76.289062, 38.822591 ], [ -76.640625, 38.822591 ], [ -76.640625, 38.272689 ], [ -76.289062, 38.272689 ], [ -76.289062, 38.822591 ] ] ], [ [ [ -75.937500, 37.160317 ], [ -75.937500, 37.439974 ], [ -75.585938, 37.439974 ], [ -75.585938, 37.160317 ], [ -75.937500, 37.160317 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.234375, 39.095963 ], [ -75.234375, 38.548165 ], [ -74.882812, 38.548165 ], [ -74.882812, 37.996163 ], [ -75.234375, 37.996163 ], [ -75.234375, 37.718590 ], [ -75.585938, 37.718590 ], [ -75.585938, 37.996163 ], [ -76.289062, 37.996163 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.585938, 36.031332 ], [ -75.585938, 35.173808 ], [ -75.937500, 35.173808 ], [ -75.937500, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.597042 ], [ -77.343750, 34.597042 ], [ -77.343750, 34.307144 ], [ -77.695312, 34.307144 ], [ -77.695312, 34.016242 ], [ -78.046875, 34.016242 ], [ -78.046875, 33.724340 ], [ -78.398438, 33.724340 ], [ -78.398438, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.546813 ], [ -80.156250, 32.546813 ], [ -80.156250, 32.249974 ], [ -80.507812, 32.249974 ], [ -80.507812, 31.952162 ], [ -80.859375, 31.952162 ], [ -80.859375, 31.653381 ], [ -81.210938, 31.653381 ], [ -81.210938, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.448674 ], [ -81.210938, 30.448674 ], [ -81.210938, 29.535230 ], [ -80.859375, 29.535230 ], [ -80.859375, 28.921631 ], [ -80.507812, 28.921631 ], [ -80.507812, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 25.482951 ], [ -80.507812, 25.482951 ], [ -80.507812, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.482951 ], [ -81.562500, 25.482951 ], [ -81.562500, 25.799891 ], [ -81.914062, 25.799891 ], [ -81.914062, 26.431228 ], [ -82.265625, 26.431228 ], [ -82.265625, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.683528 ], [ -82.968750, 27.683528 ], [ -82.968750, 28.304381 ], [ -82.617188, 28.304381 ], [ -82.617188, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.228890 ], [ -83.320312, 29.228890 ], [ -83.320312, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.535230 ], [ -85.429688, 29.535230 ], [ -85.429688, 29.840644 ], [ -85.781250, 29.840644 ], [ -85.781250, 30.145127 ], [ -86.484375, 30.145127 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.145127 ], [ -88.242188, 30.145127 ], [ -88.242188, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.840644 ], [ -89.296875, 29.840644 ], [ -89.296875, 29.228890 ], [ -91.757812, 29.228890 ], [ -91.757812, 48.224673 ], [ -90.351562, 48.224673 ], [ -90.351562, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.224673 ], [ -88.242188, 48.224673 ], [ -88.242188, 47.989922 ], [ -87.539062, 47.989922 ], [ -87.539062, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.279229 ], [ -85.781250, 47.279229 ], [ -85.781250, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.800059 ], [ -84.726562, 46.800059 ], [ -84.726562, 46.316584 ], [ -84.023438, 46.316584 ], [ -84.023438, 46.073231 ], [ -83.320312, 46.073231 ], [ -83.320312, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 45.583290 ], [ -82.968750, 45.583290 ], [ -82.968750, 45.336702 ], [ -82.617188, 45.336702 ], [ -82.617188, 44.840291 ], [ -82.265625, 44.840291 ], [ -82.265625, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 41.771312 ], [ -81.914062, 41.771312 ], [ -81.914062, 42.032974 ], [ -81.210938, 42.032974 ], [ -81.210938, 42.293564 ], [ -79.804688, 42.293564 ], [ -79.804688, 42.553080 ], [ -79.101562, 42.553080 ], [ -79.101562, 42.811522 ], [ -78.750000, 42.811522 ], [ -78.750000, 43.068888 ], [ -79.101562, 43.068888 ], [ -79.101562, 43.580391 ], [ -76.992188, 43.580391 ], [ -76.992188, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 44.339565 ], [ -75.585938, 44.339565 ], [ -75.585938, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 45.089036 ], [ -71.367188, 45.089036 ], [ -71.367188, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.583290 ], [ -70.312500, 45.583290 ], [ -70.312500, 46.316584 ], [ -69.960938, 46.316584 ], [ -69.960938, 46.800059 ], [ -69.609375, 46.800059 ], [ -69.609375, 47.279229 ], [ -68.203125, 47.279229 ], [ -68.203125, 47.040182 ], [ -67.851562, 47.040182 ], [ -67.851562, 45.336702 ], [ -67.500000, 45.336702 ], [ -67.500000, 45.089036 ], [ -67.148438, 45.089036 ], [ -67.148438, 44.840291 ], [ -66.796875, 44.840291 ], [ -66.796875, 44.590467 ], [ -67.500000, 44.590467 ], [ -67.500000, 44.339565 ], [ -68.203125, 44.339565 ], [ -68.203125, 44.087585 ], [ -68.906250, 44.087585 ], [ -68.906250, 43.834527 ], [ -69.609375, 43.834527 ], [ -69.609375, 43.580391 ], [ -69.960938, 43.580391 ], [ -69.960938, 43.325178 ], [ -70.312500, 43.325178 ], [ -70.312500, 43.068888 ], [ -70.664062, 43.068888 ], [ -70.664062, 41.771312 ], [ -70.312500, 41.771312 ], [ -70.312500, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.508577 ], [ -71.015625, 41.508577 ], [ -71.015625, 41.244772 ], [ -72.070312, 41.244772 ], [ -72.070312, 40.979898 ], [ -72.421875, 40.979898 ], [ -72.421875, 40.713956 ], [ -73.828125, 40.713956 ], [ -73.828125, 39.909736 ], [ -74.179688, 39.909736 ], [ -74.179688, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 38.822591 ], [ -74.882812, 38.822591 ], [ -74.882812, 39.095963 ], [ -75.234375, 39.095963 ] ], [ [ -76.640625, 38.822591 ], [ -76.640625, 38.272689 ], [ -76.289062, 38.272689 ], [ -76.289062, 38.822591 ], [ -76.640625, 38.822591 ] ], [ [ -72.773438, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.244772 ] ], [ [ -75.234375, 39.095963 ], [ -75.234375, 39.368279 ], [ -75.585938, 39.368279 ], [ -75.585938, 39.095963 ], [ -75.234375, 39.095963 ] ] ], [ [ [ -75.585938, 37.439974 ], [ -75.585938, 37.160317 ], [ -75.937500, 37.160317 ], [ -75.937500, 37.439974 ], [ -75.585938, 37.439974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.835938, 20.632784 ], [ -87.187500, 20.632784 ], [ -87.187500, 20.303418 ], [ -87.539062, 20.303418 ], [ -87.539062, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 18.312811 ], [ -88.242188, 18.312811 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.644022 ], [ -90.000000, 17.644022 ], [ -90.000000, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 18.646245 ], [ -91.406250, 18.646245 ], [ -91.406250, 18.979026 ], [ -90.703125, 18.979026 ], [ -90.703125, 20.303418 ], [ -90.351562, 20.303418 ], [ -90.351562, 20.961440 ], [ -89.648438, 20.961440 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -87.187500, 21.616579 ], [ -87.187500, 21.289374 ], [ -86.835938, 21.289374 ], [ -86.835938, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.187500, 21.616579 ], [ -87.187500, 21.289374 ], [ -86.835938, 21.289374 ], [ -86.835938, 20.632784 ], [ -87.187500, 20.632784 ], [ -87.187500, 20.303418 ], [ -87.539062, 20.303418 ], [ -87.539062, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 18.312811 ], [ -88.242188, 18.312811 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.644022 ], [ -90.000000, 17.644022 ], [ -90.000000, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 18.646245 ], [ -91.406250, 18.646245 ], [ -91.406250, 18.979026 ], [ -90.703125, 18.979026 ], [ -90.703125, 20.303418 ], [ -90.351562, 20.303418 ], [ -90.351562, 20.961440 ], [ -89.648438, 20.961440 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -87.187500, 21.616579 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.284185 ], [ -88.593750, 15.284185 ], [ -88.593750, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.581921 ], [ -90.703125, 13.581921 ], [ -90.703125, 13.923404 ], [ -91.757812, 13.923404 ], [ -91.757812, 15.961329 ], [ -90.351562, 15.961329 ], [ -90.351562, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.406250, 16.972741 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -90.000000, 17.978733 ], [ -90.000000, 17.644022 ], [ -89.296875, 17.644022 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.623037 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.978733 ], [ -90.000000, 17.644022 ], [ -89.296875, 17.644022 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.284185 ], [ -88.593750, 15.284185 ], [ -88.593750, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.581921 ], [ -90.703125, 13.581921 ], [ -90.703125, 13.923404 ], [ -91.757812, 13.923404 ], [ -91.757812, 15.961329 ], [ -90.351562, 15.961329 ], [ -90.351562, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.406250, 16.972741 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -90.000000, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.398438, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.513260 ], [ -34.453125, 66.513260 ], [ -34.453125, 66.372755 ], [ -34.804688, 66.372755 ], [ -34.804688, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.089364 ], [ -35.859375, 66.089364 ], [ -35.859375, 65.946472 ], [ -36.914062, 65.946472 ], [ -36.914062, 65.802776 ], [ -37.617188, 65.802776 ], [ -37.617188, 65.658275 ], [ -38.671875, 65.658275 ], [ -38.671875, 65.512963 ], [ -39.726562, 65.512963 ], [ -39.726562, 65.366837 ], [ -40.078125, 65.366837 ], [ -40.078125, 65.072130 ], [ -40.429688, 65.072130 ], [ -40.429688, 64.774125 ], [ -40.781250, 64.774125 ], [ -40.781250, 63.860036 ], [ -41.132812, 63.860036 ], [ -41.132812, 63.391522 ], [ -41.484375, 63.391522 ], [ -41.484375, 63.233627 ], [ -41.835938, 63.233627 ], [ -41.835938, 63.074866 ], [ -42.187500, 63.074866 ], [ -42.187500, 62.915233 ], [ -42.539062, 62.915233 ], [ -42.539062, 62.754726 ], [ -42.890625, 62.754726 ], [ -42.890625, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 61.438767 ], [ -42.890625, 61.438767 ], [ -42.890625, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.703125, 60.413852 ], [ -45.703125, 60.586967 ], [ -46.054688, 60.586967 ], [ -46.054688, 60.759160 ], [ -46.406250, 60.759160 ], [ -46.406250, 60.930432 ], [ -48.515625, 60.930432 ], [ -48.515625, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.270233 ], [ -49.218750, 61.270233 ], [ -49.218750, 61.606396 ], [ -49.570312, 61.606396 ], [ -49.570312, 62.103883 ], [ -49.921875, 62.103883 ], [ -49.921875, 62.431074 ], [ -50.273438, 62.431074 ], [ -50.273438, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 63.074866 ], [ -50.976562, 63.074866 ], [ -50.976562, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 64.014496 ], [ -52.031250, 64.014496 ], [ -52.031250, 64.774125 ], [ -52.382812, 64.774125 ], [ -52.382812, 65.219894 ], [ -52.734375, 65.219894 ], [ -52.734375, 65.512963 ], [ -53.085938, 65.512963 ], [ -53.085938, 65.658275 ], [ -53.437500, 65.658275 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.372755 ], [ -53.437500, 66.372755 ], [ -53.437500, 66.791909 ], [ -53.789062, 66.791909 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.204032 ], [ -33.398438, 67.204032 ], [ -33.398438, 67.067433 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.398438, 67.204032 ], [ -33.398438, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.513260 ], [ -34.453125, 66.513260 ], [ -34.453125, 66.372755 ], [ -34.804688, 66.372755 ], [ -34.804688, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.089364 ], [ -35.859375, 66.089364 ], [ -35.859375, 65.946472 ], [ -36.914062, 65.946472 ], [ -36.914062, 65.802776 ], [ -37.617188, 65.802776 ], [ -37.617188, 65.658275 ], [ -38.671875, 65.658275 ], [ -38.671875, 65.512963 ], [ -39.726562, 65.512963 ], [ -39.726562, 65.366837 ], [ -40.078125, 65.366837 ], [ -40.078125, 65.072130 ], [ -40.429688, 65.072130 ], [ -40.429688, 64.774125 ], [ -40.781250, 64.774125 ], [ -40.781250, 63.860036 ], [ -41.132812, 63.860036 ], [ -41.132812, 63.391522 ], [ -41.484375, 63.391522 ], [ -41.484375, 63.233627 ], [ -41.835938, 63.233627 ], [ -41.835938, 63.074866 ], [ -42.187500, 63.074866 ], [ -42.187500, 62.915233 ], [ -42.539062, 62.915233 ], [ -42.539062, 62.754726 ], [ -42.890625, 62.754726 ], [ -42.890625, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 61.438767 ], [ -42.890625, 61.438767 ], [ -42.890625, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.703125, 60.413852 ], [ -45.703125, 60.586967 ], [ -46.054688, 60.586967 ], [ -46.054688, 60.759160 ], [ -46.406250, 60.759160 ], [ -46.406250, 60.930432 ], [ -48.515625, 60.930432 ], [ -48.515625, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.270233 ], [ -49.218750, 61.270233 ], [ -49.218750, 61.606396 ], [ -49.570312, 61.606396 ], [ -49.570312, 62.103883 ], [ -49.921875, 62.103883 ], [ -49.921875, 62.431074 ], [ -50.273438, 62.431074 ], [ -50.273438, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 63.074866 ], [ -50.976562, 63.074866 ], [ -50.976562, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 64.014496 ], [ -52.031250, 64.014496 ], [ -52.031250, 64.774125 ], [ -52.382812, 64.774125 ], [ -52.382812, 65.219894 ], [ -52.734375, 65.219894 ], [ -52.734375, 65.512963 ], [ -53.085938, 65.512963 ], [ -53.085938, 65.658275 ], [ -53.437500, 65.658275 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.372755 ], [ -53.437500, 66.372755 ], [ -53.437500, 66.791909 ], [ -53.789062, 66.791909 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.204032 ], [ -33.398438, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 24.527135 ], [ -77.695312, 24.527135 ], [ -77.695312, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.206890 ], [ -78.398438, 24.206890 ], [ -78.398438, 24.846565 ], [ -78.046875, 24.846565 ], [ -78.046875, 24.527135 ] ] ], [ [ [ -76.992188, 26.115986 ], [ -77.343750, 26.115986 ], [ -77.343750, 26.745610 ], [ -76.992188, 26.745610 ], [ -76.992188, 26.115986 ] ] ], [ [ [ -77.695312, 26.431228 ], [ -79.101562, 26.431228 ], [ -79.101562, 26.745610 ], [ -77.695312, 26.745610 ], [ -77.695312, 26.431228 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 24.846565 ], [ -77.695312, 24.527135 ], [ -77.695312, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.206890 ], [ -78.398438, 24.206890 ], [ -78.398438, 24.846565 ], [ -78.046875, 24.846565 ] ] ], [ [ [ -76.992188, 26.745610 ], [ -76.992188, 26.115986 ], [ -77.343750, 26.115986 ], [ -77.343750, 26.745610 ], [ -76.992188, 26.745610 ] ] ], [ [ [ -77.695312, 26.745610 ], [ -77.695312, 26.431228 ], [ -79.101562, 26.431228 ], [ -79.101562, 26.745610 ], [ -77.695312, 26.745610 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 16.299051 ], [ -88.593750, 16.299051 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ], [ -88.242188, 16.299051 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 16.299051 ], [ -88.593750, 16.299051 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.890625, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.023438, 15.284185 ], [ -83.320312, 15.284185 ], [ -83.320312, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.604847 ], [ -84.726562, 14.604847 ], [ -84.726562, 14.944785 ], [ -85.078125, 14.944785 ], [ -85.078125, 13.923404 ], [ -86.835938, 13.923404 ], [ -86.835938, 12.897489 ], [ -87.539062, 12.897489 ], [ -87.539062, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -88.945312, 13.923404 ], [ -88.945312, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.944785 ], [ -88.593750, 14.944785 ], [ -88.593750, 15.284185 ], [ -88.242188, 15.284185 ], [ -88.242188, 15.623037 ], [ -87.890625, 15.623037 ], [ -87.890625, 15.961329 ], [ -87.539062, 15.961329 ], [ -87.539062, 15.623037 ], [ -86.132812, 15.623037 ], [ -86.132812, 15.961329 ], [ -84.375000, 15.961329 ], [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.284185 ], [ -83.320312, 15.284185 ], [ -83.320312, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.604847 ], [ -84.726562, 14.604847 ], [ -84.726562, 14.944785 ], [ -85.078125, 14.944785 ], [ -85.078125, 13.923404 ], [ -86.835938, 13.923404 ], [ -86.835938, 12.897489 ], [ -87.539062, 12.897489 ], [ -87.539062, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -88.945312, 13.923404 ], [ -88.945312, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.944785 ], [ -88.593750, 14.944785 ], [ -88.593750, 15.284185 ], [ -88.242188, 15.284185 ], [ -88.242188, 15.623037 ], [ -87.890625, 15.623037 ], [ -87.890625, 15.961329 ], [ -87.539062, 15.961329 ], [ -87.539062, 15.623037 ], [ -86.132812, 15.623037 ], [ -86.132812, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.726562, 14.604847 ], [ -83.671875, 14.604847 ], [ -83.671875, 14.944785 ], [ -83.320312, 14.944785 ], [ -83.320312, 13.581921 ], [ -83.671875, 13.581921 ], [ -83.671875, 12.554564 ], [ -83.320312, 12.554564 ], [ -83.320312, 12.211180 ], [ -83.671875, 12.211180 ], [ -83.671875, 11.523088 ], [ -84.023438, 11.523088 ], [ -84.023438, 11.178402 ], [ -83.671875, 11.178402 ], [ -83.671875, 10.833306 ], [ -85.429688, 10.833306 ], [ -85.429688, 11.178402 ], [ -86.132812, 11.178402 ], [ -86.132812, 11.523088 ], [ -86.484375, 11.523088 ], [ -86.484375, 11.867351 ], [ -86.835938, 11.867351 ], [ -86.835938, 12.211180 ], [ -87.187500, 12.211180 ], [ -87.187500, 12.554564 ], [ -87.539062, 12.554564 ], [ -87.539062, 12.897489 ], [ -86.835938, 12.897489 ], [ -86.835938, 13.923404 ], [ -85.078125, 13.923404 ], [ -85.078125, 14.944785 ], [ -84.726562, 14.944785 ], [ -84.726562, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.944785 ], [ -83.320312, 13.581921 ], [ -83.671875, 13.581921 ], [ -83.671875, 12.554564 ], [ -83.320312, 12.554564 ], [ -83.320312, 12.211180 ], [ -83.671875, 12.211180 ], [ -83.671875, 11.523088 ], [ -84.023438, 11.523088 ], [ -84.023438, 11.178402 ], [ -83.671875, 11.178402 ], [ -83.671875, 10.833306 ], [ -85.429688, 10.833306 ], [ -85.429688, 11.178402 ], [ -86.132812, 11.178402 ], [ -86.132812, 11.523088 ], [ -86.484375, 11.523088 ], [ -86.484375, 11.867351 ], [ -86.835938, 11.867351 ], [ -86.835938, 12.211180 ], [ -87.187500, 12.211180 ], [ -87.187500, 12.554564 ], [ -87.539062, 12.554564 ], [ -87.539062, 12.897489 ], [ -86.835938, 12.897489 ], [ -86.835938, 13.923404 ], [ -85.078125, 13.923404 ], [ -85.078125, 14.944785 ], [ -84.726562, 14.944785 ], [ -84.726562, 14.604847 ], [ -83.671875, 14.604847 ], [ -83.671875, 14.944785 ], [ -83.320312, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.804688, 22.593726 ], [ -79.453125, 22.593726 ], [ -79.453125, 22.268764 ], [ -78.750000, 22.268764 ], [ -78.750000, 22.593726 ], [ -78.398438, 22.593726 ], [ -78.398438, 22.268764 ], [ -78.046875, 22.268764 ], [ -78.046875, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.616579 ], [ -76.992188, 21.616579 ], [ -76.992188, 21.289374 ], [ -76.289062, 21.289374 ], [ -76.289062, 20.961440 ], [ -75.585938, 20.961440 ], [ -75.585938, 20.632784 ], [ -74.882812, 20.632784 ], [ -74.882812, 20.303418 ], [ -74.179688, 20.303418 ], [ -74.179688, 19.973349 ], [ -76.992188, 19.973349 ], [ -76.992188, 20.303418 ], [ -77.343750, 20.303418 ], [ -77.343750, 20.632784 ], [ -78.398438, 20.632784 ], [ -78.398438, 21.289374 ], [ -78.750000, 21.289374 ], [ -78.750000, 21.616579 ], [ -80.156250, 21.616579 ], [ -80.156250, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 22.268764 ], [ -81.914062, 22.268764 ], [ -81.914062, 22.593726 ], [ -82.617188, 22.593726 ], [ -82.617188, 22.268764 ], [ -84.023438, 22.268764 ], [ -84.023438, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 22.593726 ], [ -83.671875, 22.593726 ], [ -83.671875, 22.917923 ], [ -82.265625, 22.917923 ], [ -82.265625, 23.241346 ], [ -80.507812, 23.241346 ], [ -80.507812, 22.917923 ], [ -79.804688, 22.917923 ], [ -79.804688, 22.593726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.507812, 23.241346 ], [ -80.507812, 22.917923 ], [ -79.804688, 22.917923 ], [ -79.804688, 22.593726 ], [ -79.453125, 22.593726 ], [ -79.453125, 22.268764 ], [ -78.750000, 22.268764 ], [ -78.750000, 22.593726 ], [ -78.398438, 22.593726 ], [ -78.398438, 22.268764 ], [ -78.046875, 22.268764 ], [ -78.046875, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.616579 ], [ -76.992188, 21.616579 ], [ -76.992188, 21.289374 ], [ -76.289062, 21.289374 ], [ -76.289062, 20.961440 ], [ -75.585938, 20.961440 ], [ -75.585938, 20.632784 ], [ -74.882812, 20.632784 ], [ -74.882812, 20.303418 ], [ -74.179688, 20.303418 ], [ -74.179688, 19.973349 ], [ -76.992188, 19.973349 ], [ -76.992188, 20.303418 ], [ -77.343750, 20.303418 ], [ -77.343750, 20.632784 ], [ -78.398438, 20.632784 ], [ -78.398438, 21.289374 ], [ -78.750000, 21.289374 ], [ -78.750000, 21.616579 ], [ -80.156250, 21.616579 ], [ -80.156250, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 22.268764 ], [ -81.914062, 22.268764 ], [ -81.914062, 22.593726 ], [ -82.617188, 22.593726 ], [ -82.617188, 22.268764 ], [ -84.023438, 22.268764 ], [ -84.023438, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 22.593726 ], [ -83.671875, 22.593726 ], [ -83.671875, 22.917923 ], [ -82.617188, 22.917923 ], [ -82.265625, 23.241346 ], [ -80.507812, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.429688, 10.833306 ], [ -83.671875, 10.833306 ], [ -83.671875, 10.487812 ], [ -83.320312, 10.487812 ], [ -83.320312, 10.141932 ], [ -82.968750, 10.141932 ], [ -82.968750, 9.795678 ], [ -82.617188, 9.795678 ], [ -82.617188, 9.449062 ], [ -82.968750, 9.449062 ], [ -82.968750, 8.059230 ], [ -83.671875, 8.059230 ], [ -83.671875, 9.102097 ], [ -84.023438, 9.102097 ], [ -84.023438, 9.449062 ], [ -84.726562, 9.449062 ], [ -84.726562, 9.795678 ], [ -85.078125, 9.795678 ], [ -85.078125, 9.449062 ], [ -85.429688, 9.449062 ], [ -85.429688, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -85.429688, 11.178402 ], [ -85.429688, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.429688, 11.178402 ], [ -85.429688, 10.833306 ], [ -83.671875, 10.833306 ], [ -83.671875, 10.487812 ], [ -83.320312, 10.487812 ], [ -83.320312, 10.141932 ], [ -82.968750, 10.141932 ], [ -82.968750, 9.795678 ], [ -82.617188, 9.795678 ], [ -82.617188, 9.449062 ], [ -82.968750, 9.449062 ], [ -82.968750, 8.059230 ], [ -83.671875, 8.059230 ], [ -83.671875, 9.102097 ], [ -84.023438, 9.102097 ], [ -84.023438, 9.449062 ], [ -84.726562, 9.449062 ], [ -84.726562, 9.795678 ], [ -85.078125, 9.795678 ], [ -85.078125, 9.449062 ], [ -85.429688, 9.449062 ], [ -85.429688, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -85.429688, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.101562, 8.754795 ], [ -79.101562, 9.102097 ], [ -79.453125, 9.102097 ], [ -79.453125, 8.754795 ], [ -79.804688, 8.754795 ], [ -79.804688, 8.407168 ], [ -80.507812, 8.407168 ], [ -80.507812, 7.710992 ], [ -80.156250, 7.710992 ], [ -80.156250, 7.362467 ], [ -81.210938, 7.362467 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.059230 ], [ -82.265625, 8.059230 ], [ -82.265625, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.449062 ], [ -82.617188, 9.449062 ], [ -82.617188, 9.102097 ], [ -81.562500, 9.102097 ], [ -81.562500, 8.754795 ], [ -80.507812, 8.754795 ], [ -80.507812, 9.102097 ], [ -79.804688, 9.102097 ], [ -79.804688, 9.449062 ], [ -78.398438, 9.449062 ], [ -78.398438, 9.102097 ], [ -77.695312, 9.102097 ], [ -77.695312, 8.754795 ], [ -77.343750, 8.754795 ], [ -77.343750, 7.710992 ], [ -77.695312, 7.710992 ], [ -77.695312, 7.362467 ], [ -78.046875, 7.362467 ], [ -78.046875, 7.710992 ], [ -78.398438, 7.710992 ], [ -78.398438, 8.059230 ], [ -78.046875, 8.059230 ], [ -78.046875, 8.407168 ], [ -78.750000, 8.407168 ], [ -78.750000, 8.754795 ], [ -79.101562, 8.754795 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.398438, 9.449062 ], [ -78.398438, 9.102097 ], [ -77.695312, 9.102097 ], [ -77.695312, 8.754795 ], [ -77.343750, 8.754795 ], [ -77.343750, 7.710992 ], [ -77.695312, 7.710992 ], [ -77.695312, 7.362467 ], [ -78.046875, 7.362467 ], [ -78.046875, 7.710992 ], [ -78.398438, 7.710992 ], [ -78.398438, 8.059230 ], [ -78.046875, 8.059230 ], [ -78.046875, 8.407168 ], [ -78.750000, 8.407168 ], [ -78.750000, 8.754795 ], [ -79.101562, 8.754795 ], [ -79.101562, 9.102097 ], [ -79.453125, 9.102097 ], [ -79.453125, 8.754795 ], [ -79.804688, 8.754795 ], [ -79.804688, 8.407168 ], [ -80.507812, 8.407168 ], [ -80.507812, 7.710992 ], [ -80.156250, 7.710992 ], [ -80.156250, 7.362467 ], [ -81.210938, 7.362467 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.059230 ], [ -82.265625, 8.059230 ], [ -82.265625, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.449062 ], [ -82.617188, 9.449062 ], [ -82.617188, 9.102097 ], [ -81.562500, 9.102097 ], [ -81.562500, 8.754795 ], [ -80.507812, 8.754795 ], [ -80.507812, 9.102097 ], [ -79.804688, 9.102097 ], [ -79.804688, 9.449062 ], [ -78.398438, 9.449062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.289062, 17.978733 ], [ -76.992188, 17.978733 ], [ -76.992188, 17.644022 ], [ -77.695312, 17.644022 ], [ -77.695312, 17.978733 ], [ -78.398438, 17.978733 ], [ -78.398438, 18.312811 ], [ -76.289062, 18.312811 ], [ -76.289062, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.289062, 18.312811 ], [ -76.289062, 17.978733 ], [ -76.992188, 17.978733 ], [ -76.992188, 17.644022 ], [ -77.695312, 17.644022 ], [ -77.695312, 17.978733 ], [ -78.398438, 18.312811 ], [ -76.289062, 18.312811 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 17.978733 ], [ -74.531250, 17.978733 ], [ -74.531250, 18.646245 ], [ -73.476562, 18.646245 ], [ -73.476562, 18.312811 ], [ -72.421875, 18.312811 ], [ -72.421875, 18.646245 ], [ -72.773438, 18.646245 ], [ -72.773438, 19.642588 ], [ -73.125000, 19.642588 ], [ -73.125000, 19.973349 ], [ -72.421875, 19.973349 ], [ -72.421875, 19.642588 ], [ -71.718750, 19.642588 ], [ -71.718750, 18.646245 ], [ -72.070312, 18.646245 ], [ -72.070312, 18.312811 ], [ -71.718750, 18.312811 ], [ -71.718750, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.421875, 19.973349 ], [ -72.421875, 19.642588 ], [ -71.718750, 19.642588 ], [ -71.718750, 18.646245 ], [ -72.070312, 18.646245 ], [ -72.070312, 18.312811 ], [ -71.718750, 18.312811 ], [ -71.718750, 17.978733 ], [ -74.531250, 17.978733 ], [ -74.531250, 18.646245 ], [ -73.476562, 18.646245 ], [ -73.476562, 18.312811 ], [ -72.421875, 18.312811 ], [ -72.421875, 18.646245 ], [ -72.773438, 18.646245 ], [ -72.773438, 19.642588 ], [ -73.125000, 19.642588 ], [ -73.125000, 19.973349 ], [ -72.421875, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.203125, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 17.978733 ], [ -71.367188, 17.978733 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 18.312811 ], [ -72.070312, 18.312811 ], [ -72.070312, 18.646245 ], [ -71.718750, 18.646245 ], [ -71.718750, 19.973349 ], [ -70.664062, 19.973349 ], [ -70.664062, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.906250, 18.979026 ], [ -68.906250, 18.646245 ], [ -68.203125, 18.646245 ], [ -68.203125, 18.312811 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.664062, 19.973349 ], [ -70.664062, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.906250, 18.979026 ], [ -68.906250, 18.646245 ], [ -68.203125, 18.646245 ], [ -68.203125, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 17.978733 ], [ -71.367188, 17.978733 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 18.312811 ], [ -72.070312, 18.312811 ], [ -72.070312, 18.646245 ], [ -71.718750, 18.646245 ], [ -71.718750, 19.973349 ], [ -70.664062, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -72.773438, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.362467 ], [ -72.070312, 7.362467 ], [ -72.070312, 7.013668 ], [ -69.960938, 7.013668 ], [ -69.960938, 6.664608 ], [ -69.609375, 6.664608 ], [ -69.609375, 5.965754 ], [ -68.906250, 5.965754 ], [ -68.906250, 6.315299 ], [ -67.851562, 6.315299 ], [ -67.851562, 5.965754 ], [ -67.500000, 5.965754 ], [ -67.500000, 5.266008 ], [ -67.851562, 5.266008 ], [ -67.851562, 4.214943 ], [ -67.500000, 4.214943 ], [ -67.500000, 3.162456 ], [ -67.148438, 3.162456 ], [ -67.148438, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 2.460181 ], [ -67.500000, 2.460181 ], [ -67.500000, 2.108899 ], [ -67.148438, 2.108899 ], [ -67.148438, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -69.960938, 0.703107 ], [ -69.960938, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -1.054628 ], [ -69.257812, -1.054628 ], [ -69.257812, -1.406109 ], [ -69.609375, -1.406109 ], [ -69.609375, -1.757537 ], [ -73.828125, -1.757537 ], [ -73.828125, -1.406109 ], [ -74.179688, -1.406109 ], [ -74.179688, -1.054628 ], [ -74.531250, -1.054628 ], [ -74.531250, -0.703107 ], [ -74.882812, -0.703107 ], [ -74.882812, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, 0.000000 ], [ -76.289062, 0.000000 ], [ -76.289062, 0.351560 ], [ -77.695312, 0.351560 ], [ -77.695312, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -78.750000, 1.757537 ], [ -78.750000, 2.108899 ], [ -78.398438, 2.108899 ], [ -78.398438, 2.460181 ], [ -78.046875, 2.460181 ], [ -78.046875, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 3.513421 ], [ -76.992188, 3.513421 ], [ -76.992188, 3.864255 ], [ -77.343750, 3.864255 ], [ -77.343750, 4.915833 ], [ -77.695312, 4.915833 ], [ -77.695312, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.664608 ], [ -77.695312, 6.664608 ], [ -77.695312, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.362467 ], [ -77.695312, 7.362467 ], [ -77.695312, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.754795 ], [ -76.640625, 8.754795 ], [ -76.640625, 9.102097 ], [ -75.937500, 9.102097 ], [ -75.937500, 9.449062 ], [ -75.585938, 9.449062 ], [ -75.585938, 10.487812 ], [ -75.234375, 10.487812 ], [ -75.234375, 10.833306 ], [ -74.882812, 10.833306 ], [ -74.882812, 11.178402 ], [ -73.125000, 11.178402 ], [ -73.125000, 11.523088 ], [ -72.773438, 11.523088 ], [ -72.773438, 11.867351 ], [ -72.070312, 11.867351 ], [ -72.070312, 12.211180 ], [ -71.015625, 12.211180 ], [ -71.015625, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.523088 ], [ -72.070312, 11.523088 ], [ -72.070312, 10.833306 ], [ -72.773438, 10.833306 ], [ -72.773438, 10.141932 ], [ -73.125000, 10.141932 ], [ -73.125000, 9.449062 ], [ -73.476562, 9.449062 ], [ -73.476562, 9.102097 ], [ -72.773438, 9.102097 ], [ -72.773438, 8.407168 ] ] ], [ [ [ -66.796875, 1.757537 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.757537 ], [ -66.796875, 1.757537 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.148438, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -69.960938, 0.703107 ], [ -69.960938, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -1.054628 ], [ -69.257812, -1.054628 ], [ -69.257812, -1.406109 ], [ -69.609375, -1.406109 ], [ -69.609375, -1.757537 ], [ -73.828125, -1.757537 ], [ -73.828125, -1.406109 ], [ -74.179688, -1.406109 ], [ -74.179688, -1.054628 ], [ -74.531250, -1.054628 ], [ -74.531250, -0.703107 ], [ -74.882812, -0.703107 ], [ -74.882812, -0.351560 ], [ -75.234375, 0.000000 ], [ -76.289062, 0.000000 ], [ -76.289062, 0.351560 ], [ -77.695312, 0.351560 ], [ -77.695312, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -78.750000, 1.757537 ], [ -78.750000, 2.108899 ], [ -78.398438, 2.108899 ], [ -78.398438, 2.460181 ], [ -78.046875, 2.460181 ], [ -78.046875, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 3.513421 ], [ -76.992188, 3.513421 ], [ -76.992188, 3.864255 ], [ -77.343750, 3.864255 ], [ -77.343750, 4.915833 ], [ -77.695312, 4.915833 ], [ -77.695312, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.664608 ], [ -77.695312, 6.664608 ], [ -77.695312, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.362467 ], [ -77.695312, 7.362467 ], [ -77.695312, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.754795 ], [ -76.640625, 8.754795 ], [ -76.640625, 9.102097 ], [ -75.937500, 9.102097 ], [ -75.937500, 9.449062 ], [ -75.585938, 9.449062 ], [ -75.585938, 10.487812 ], [ -75.234375, 10.487812 ], [ -75.234375, 10.833306 ], [ -74.882812, 10.833306 ], [ -74.882812, 11.178402 ], [ -73.125000, 11.178402 ], [ -73.125000, 11.523088 ], [ -72.773438, 11.523088 ], [ -72.773438, 11.867351 ], [ -72.070312, 11.867351 ], [ -72.070312, 12.211180 ], [ -71.015625, 12.211180 ], [ -71.015625, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.523088 ], [ -72.070312, 11.523088 ], [ -72.070312, 10.833306 ], [ -72.773438, 10.833306 ], [ -72.773438, 10.141932 ], [ -73.125000, 10.141932 ], [ -73.125000, 9.449062 ], [ -73.476562, 9.449062 ], [ -73.476562, 9.102097 ], [ -72.773438, 9.102097 ], [ -72.773438, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.362467 ], [ -72.070312, 7.362467 ], [ -72.070312, 7.013668 ], [ -69.960938, 7.013668 ], [ -69.960938, 6.664608 ], [ -69.609375, 6.664608 ], [ -69.609375, 5.965754 ], [ -68.906250, 5.965754 ], [ -68.906250, 6.315299 ], [ -67.851562, 6.315299 ], [ -67.851562, 5.965754 ], [ -67.500000, 5.965754 ], [ -67.500000, 5.266008 ], [ -67.851562, 5.266008 ], [ -67.851562, 4.214943 ], [ -67.500000, 4.214943 ], [ -67.500000, 3.162456 ], [ -67.148438, 3.162456 ], [ -67.148438, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 2.460181 ], [ -67.500000, 2.460181 ], [ -67.500000, 2.108899 ], [ -67.148438, 2.108899 ], [ -67.148438, 1.757537 ] ] ], [ [ [ -67.148438, 1.757537 ], [ -66.796875, 1.757537 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.445312, 18.312811 ], [ -65.742188, 18.312811 ], [ -65.742188, 17.978733 ], [ -67.148438, 17.978733 ], [ -67.148438, 18.646245 ], [ -66.445312, 18.646245 ], [ -66.445312, 18.312811 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.445312, 18.646245 ], [ -66.445312, 18.312811 ], [ -65.742188, 18.312811 ], [ -65.742188, 17.978733 ], [ -67.148438, 17.978733 ], [ -67.148438, 18.646245 ], [ -66.445312, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.554688, 10.833306 ], [ -68.203125, 10.833306 ], [ -68.203125, 10.487812 ], [ -66.093750, 10.487812 ], [ -66.093750, 10.141932 ], [ -64.335938, 10.141932 ], [ -64.335938, 10.487812 ], [ -63.281250, 10.487812 ], [ -63.281250, 10.833306 ], [ -61.875000, 10.833306 ], [ -61.875000, 10.487812 ], [ -62.578125, 10.487812 ], [ -62.578125, 10.141932 ], [ -62.226562, 10.141932 ], [ -62.226562, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.449062 ], [ -60.820312, 9.449062 ], [ -60.820312, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 6.664608 ], [ -61.171875, 6.664608 ], [ -61.171875, 5.965754 ], [ -61.523438, 5.965754 ], [ -61.523438, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 4.915833 ], [ -60.468750, 4.915833 ], [ -60.468750, 4.565474 ], [ -61.171875, 4.565474 ], [ -61.171875, 4.214943 ], [ -62.226562, 4.214943 ], [ -62.226562, 3.864255 ], [ -64.335938, 3.864255 ], [ -64.335938, 2.460181 ], [ -63.281250, 2.460181 ], [ -63.281250, 1.757537 ], [ -63.984375, 1.757537 ], [ -63.984375, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 2.108899 ], [ -67.500000, 2.108899 ], [ -67.500000, 2.460181 ], [ -67.851562, 2.460181 ], [ -67.851562, 2.811371 ], [ -67.148438, 2.811371 ], [ -67.148438, 3.162456 ], [ -67.500000, 3.162456 ], [ -67.500000, 4.214943 ], [ -67.851562, 4.214943 ], [ -67.851562, 5.266008 ], [ -67.500000, 5.266008 ], [ -67.500000, 5.965754 ], [ -67.851562, 5.965754 ], [ -67.851562, 6.315299 ], [ -68.906250, 6.315299 ], [ -68.906250, 5.965754 ], [ -69.609375, 5.965754 ], [ -69.609375, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 7.013668 ], [ -72.070312, 7.013668 ], [ -72.070312, 7.362467 ], [ -72.421875, 7.362467 ], [ -72.421875, 8.407168 ], [ -72.773438, 8.407168 ], [ -72.773438, 9.102097 ], [ -73.476562, 9.102097 ], [ -73.476562, 9.449062 ], [ -73.125000, 9.449062 ], [ -73.125000, 10.141932 ], [ -72.773438, 10.141932 ], [ -72.773438, 10.833306 ], [ -72.070312, 10.833306 ], [ -72.070312, 11.178402 ], [ -71.718750, 11.178402 ], [ -71.718750, 10.141932 ], [ -72.070312, 10.141932 ], [ -72.070312, 9.449062 ], [ -71.718750, 9.449062 ], [ -71.718750, 9.102097 ], [ -71.367188, 9.102097 ], [ -71.367188, 9.449062 ], [ -71.015625, 9.449062 ], [ -71.015625, 9.795678 ], [ -71.367188, 9.795678 ], [ -71.367188, 10.833306 ], [ -71.015625, 10.833306 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.867351 ], [ -69.609375, 11.867351 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.867351 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 10.833306 ], [ -68.203125, 10.833306 ], [ -68.203125, 10.487812 ], [ -66.093750, 10.487812 ], [ -66.093750, 10.141932 ], [ -64.335938, 10.141932 ], [ -64.335938, 10.487812 ], [ -63.281250, 10.487812 ], [ -63.281250, 10.833306 ], [ -61.875000, 10.833306 ], [ -61.875000, 10.487812 ], [ -62.578125, 10.487812 ], [ -62.578125, 10.141932 ], [ -62.226562, 10.141932 ], [ -62.226562, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.449062 ], [ -60.820312, 9.449062 ], [ -60.820312, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 6.664608 ], [ -61.171875, 6.664608 ], [ -61.171875, 5.965754 ], [ -61.523438, 5.965754 ], [ -61.523438, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 4.915833 ], [ -60.468750, 4.915833 ], [ -60.468750, 4.565474 ], [ -61.171875, 4.565474 ], [ -61.171875, 4.214943 ], [ -62.226562, 4.214943 ], [ -62.226562, 3.864255 ], [ -64.335938, 3.864255 ], [ -64.335938, 2.460181 ], [ -63.281250, 2.460181 ], [ -63.281250, 1.757537 ], [ -63.984375, 1.757537 ], [ -63.984375, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 2.108899 ], [ -67.500000, 2.108899 ], [ -67.500000, 2.460181 ], [ -67.851562, 2.460181 ], [ -67.851562, 2.811371 ], [ -67.148438, 2.811371 ], [ -67.148438, 3.162456 ], [ -67.500000, 3.162456 ], [ -67.500000, 4.214943 ], [ -67.851562, 4.214943 ], [ -67.851562, 5.266008 ], [ -67.500000, 5.266008 ], [ -67.500000, 5.965754 ], [ -67.851562, 5.965754 ], [ -67.851562, 6.315299 ], [ -68.906250, 6.315299 ], [ -68.906250, 5.965754 ], [ -69.609375, 5.965754 ], [ -69.609375, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 7.013668 ], [ -72.070312, 7.013668 ], [ -72.070312, 7.362467 ], [ -72.421875, 7.362467 ], [ -72.421875, 8.407168 ], [ -72.773438, 8.407168 ], [ -72.773438, 9.102097 ], [ -73.476562, 9.102097 ], [ -73.476562, 9.449062 ], [ -73.125000, 9.449062 ], [ -73.125000, 10.141932 ], [ -72.773438, 10.141932 ], [ -72.773438, 10.833306 ], [ -72.070312, 10.833306 ], [ -72.070312, 11.178402 ], [ -71.718750, 11.178402 ], [ -71.718750, 10.141932 ], [ -72.070312, 10.141932 ], [ -72.070312, 9.449062 ], [ -71.718750, 9.449062 ], [ -71.718750, 9.102097 ], [ -71.367188, 9.102097 ], [ -71.367188, 9.449062 ], [ -71.015625, 9.449062 ], [ -71.015625, 9.795678 ], [ -71.367188, 9.795678 ], [ -71.367188, 10.833306 ], [ -71.015625, 10.833306 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.867351 ], [ -69.609375, 11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.820312, 10.141932 ], [ -61.523438, 10.141932 ], [ -61.523438, 10.833306 ], [ -60.820312, 10.833306 ], [ -60.820312, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.820312, 10.833306 ], [ -60.820312, 10.141932 ], [ -61.523438, 10.141932 ], [ -61.523438, 10.833306 ], [ -60.820312, 10.833306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.710938, 7.362467 ], [ -58.359375, 7.362467 ], [ -58.359375, 6.664608 ], [ -58.007812, 6.664608 ], [ -58.007812, 6.315299 ], [ -57.656250, 6.315299 ], [ -57.656250, 5.965754 ], [ -57.304688, 5.965754 ], [ -57.304688, 4.915833 ], [ -58.007812, 4.915833 ], [ -58.007812, 3.513421 ], [ -57.656250, 3.513421 ], [ -57.656250, 3.162456 ], [ -57.304688, 3.162456 ], [ -57.304688, 2.460181 ], [ -56.953125, 2.460181 ], [ -56.953125, 1.757537 ], [ -57.656250, 1.757537 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 2.460181 ], [ -60.117188, 2.460181 ], [ -60.117188, 3.162456 ], [ -59.765625, 3.162456 ], [ -59.765625, 3.513421 ], [ -59.414062, 3.513421 ], [ -59.414062, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.565474 ], [ -60.117188, 4.565474 ], [ -60.117188, 5.266008 ], [ -61.171875, 5.266008 ], [ -61.171875, 5.615986 ], [ -61.523438, 5.615986 ], [ -61.523438, 5.965754 ], [ -61.171875, 5.965754 ], [ -61.171875, 6.664608 ], [ -60.468750, 6.664608 ], [ -60.468750, 7.710992 ], [ -60.117188, 7.710992 ], [ -60.117188, 8.059230 ], [ -59.062500, 8.059230 ], [ -59.062500, 7.710992 ], [ -58.710938, 7.710992 ], [ -58.710938, 7.362467 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 8.059230 ], [ -59.062500, 7.710992 ], [ -58.710938, 7.710992 ], [ -58.710938, 7.362467 ], [ -58.359375, 7.362467 ], [ -58.359375, 6.664608 ], [ -58.007812, 6.664608 ], [ -58.007812, 6.315299 ], [ -57.656250, 6.315299 ], [ -57.656250, 5.965754 ], [ -57.304688, 5.965754 ], [ -57.304688, 4.915833 ], [ -58.007812, 4.915833 ], [ -58.007812, 3.513421 ], [ -57.656250, 3.513421 ], [ -57.656250, 3.162456 ], [ -57.304688, 3.162456 ], [ -57.304688, 2.460181 ], [ -56.953125, 2.460181 ], [ -56.953125, 1.757537 ], [ -57.656250, 1.757537 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 2.460181 ], [ -60.117188, 2.460181 ], [ -60.117188, 3.162456 ], [ -59.765625, 3.162456 ], [ -59.765625, 3.513421 ], [ -59.414062, 3.513421 ], [ -59.414062, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.565474 ], [ -60.117188, 4.565474 ], [ -60.117188, 5.266008 ], [ -61.171875, 5.266008 ], [ -61.171875, 5.615986 ], [ -61.523438, 5.615986 ], [ -61.523438, 5.965754 ], [ -61.171875, 5.965754 ], [ -61.171875, 6.664608 ], [ -60.468750, 6.664608 ], [ -60.468750, 7.710992 ], [ -60.117188, 7.710992 ], [ -60.117188, 8.059230 ], [ -59.062500, 8.059230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.789062, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 4.915833 ], [ -54.492188, 4.915833 ], [ -54.492188, 3.864255 ], [ -54.140625, 3.864255 ], [ -54.140625, 2.460181 ], [ -55.898438, 2.460181 ], [ -55.898438, 1.757537 ], [ -56.953125, 1.757537 ], [ -56.953125, 2.460181 ], [ -57.304688, 2.460181 ], [ -57.304688, 3.162456 ], [ -57.656250, 3.162456 ], [ -57.656250, 3.513421 ], [ -58.007812, 3.513421 ], [ -58.007812, 4.915833 ], [ -57.304688, 4.915833 ], [ -57.304688, 5.965754 ], [ -56.953125, 5.965754 ], [ -56.953125, 5.615986 ], [ -55.898438, 5.615986 ], [ -55.898438, 5.965754 ], [ -54.843750, 5.965754 ], [ -54.843750, 5.615986 ], [ -53.789062, 5.615986 ], [ -53.789062, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, 5.965754 ], [ -54.843750, 5.615986 ], [ -53.789062, 5.615986 ], [ -53.789062, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 4.915833 ], [ -54.492188, 4.915833 ], [ -54.492188, 3.864255 ], [ -54.140625, 3.864255 ], [ -54.140625, 2.460181 ], [ -55.898438, 2.460181 ], [ -55.898438, 1.757537 ], [ -56.953125, 1.757537 ], [ -56.953125, 2.460181 ], [ -57.304688, 2.460181 ], [ -57.304688, 3.162456 ], [ -57.656250, 3.162456 ], [ -57.656250, 3.513421 ], [ -58.007812, 3.513421 ], [ -58.007812, 4.915833 ], [ -57.304688, 4.915833 ], [ -57.304688, 5.965754 ], [ -56.953125, 5.965754 ], [ -56.953125, 5.615986 ], [ -55.898438, 5.615986 ], [ -55.898438, 5.965754 ], [ -54.843750, 5.965754 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 64.923542 ], [ -14.062500, 64.923542 ], [ -14.062500, 64.623877 ], [ -14.414062, 64.623877 ], [ -14.414062, 64.320872 ], [ -15.117188, 64.320872 ], [ -15.117188, 64.168107 ], [ -15.820312, 64.168107 ], [ -15.820312, 64.014496 ], [ -16.523438, 64.014496 ], [ -16.523438, 63.860036 ], [ -17.226562, 63.860036 ], [ -17.226562, 63.704722 ], [ -17.929688, 63.704722 ], [ -17.929688, 63.548552 ], [ -19.687500, 63.548552 ], [ -19.687500, 63.704722 ], [ -21.093750, 63.704722 ], [ -21.093750, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -22.148438, 64.168107 ], [ -22.148438, 64.320872 ], [ -21.796875, 64.320872 ], [ -21.796875, 64.472794 ], [ -22.500000, 64.472794 ], [ -22.500000, 64.623877 ], [ -23.203125, 64.623877 ], [ -23.203125, 64.774125 ], [ -23.906250, 64.774125 ], [ -23.906250, 64.923542 ], [ -22.851562, 64.923542 ], [ -22.851562, 65.072130 ], [ -22.148438, 65.072130 ], [ -22.148438, 65.366837 ], [ -22.851562, 65.366837 ], [ -22.851562, 65.512963 ], [ -23.906250, 65.512963 ], [ -23.906250, 65.658275 ], [ -24.257812, 65.658275 ], [ -24.257812, 65.802776 ], [ -23.906250, 65.802776 ], [ -23.906250, 66.089364 ], [ -23.554688, 66.089364 ], [ -23.554688, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.372755 ], [ -22.148438, 66.372755 ], [ -22.148438, 66.231457 ], [ -21.796875, 66.231457 ], [ -21.796875, 66.089364 ], [ -21.445312, 66.089364 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -20.390625, 65.802776 ], [ -20.390625, 65.946472 ], [ -19.687500, 65.946472 ], [ -19.687500, 66.089364 ], [ -18.281250, 66.089364 ], [ -18.281250, 65.946472 ], [ -17.578125, 65.946472 ], [ -17.578125, 66.089364 ], [ -17.226562, 66.089364 ], [ -17.226562, 66.231457 ], [ -16.523438, 66.231457 ], [ -16.523438, 66.372755 ], [ -16.171875, 66.372755 ], [ -16.171875, 66.513260 ], [ -14.414062, 66.513260 ], [ -14.414062, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.658275 ], [ -14.414062, 65.658275 ], [ -14.414062, 65.366837 ], [ -14.062500, 65.366837 ], [ -14.062500, 65.072130 ], [ -13.710938, 65.072130 ], [ -13.710938, 64.923542 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.414062, 66.513260 ], [ -14.414062, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.658275 ], [ -14.414062, 65.658275 ], [ -14.414062, 65.366837 ], [ -14.062500, 65.366837 ], [ -14.062500, 65.072130 ], [ -13.710938, 65.072130 ], [ -13.710938, 64.923542 ], [ -14.062500, 64.923542 ], [ -14.062500, 64.623877 ], [ -14.414062, 64.623877 ], [ -14.414062, 64.320872 ], [ -15.117188, 64.320872 ], [ -15.117188, 64.168107 ], [ -15.820312, 64.168107 ], [ -15.820312, 64.014496 ], [ -16.523438, 64.014496 ], [ -16.523438, 63.860036 ], [ -17.226562, 63.860036 ], [ -17.226562, 63.704722 ], [ -17.929688, 63.704722 ], [ -17.929688, 63.548552 ], [ -19.687500, 63.548552 ], [ -19.687500, 63.704722 ], [ -21.093750, 63.704722 ], [ -21.093750, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -22.148438, 64.168107 ], [ -22.148438, 64.320872 ], [ -21.796875, 64.320872 ], [ -21.796875, 64.472794 ], [ -22.500000, 64.472794 ], [ -22.500000, 64.623877 ], [ -23.203125, 64.623877 ], [ -23.203125, 64.774125 ], [ -23.906250, 64.774125 ], [ -23.906250, 64.923542 ], [ -22.851562, 64.923542 ], [ -22.851562, 65.072130 ], [ -22.148438, 65.072130 ], [ -22.148438, 65.366837 ], [ -22.851562, 65.366837 ], [ -22.851562, 65.512963 ], [ -23.906250, 65.512963 ], [ -23.906250, 65.658275 ], [ -24.257812, 65.658275 ], [ -24.257812, 65.802776 ], [ -23.906250, 65.802776 ], [ -23.906250, 66.089364 ], [ -23.554688, 66.089364 ], [ -23.554688, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.372755 ], [ -22.148438, 66.372755 ], [ -22.148438, 66.231457 ], [ -21.796875, 66.231457 ], [ -21.796875, 66.089364 ], [ -21.445312, 66.089364 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -20.390625, 65.802776 ], [ -20.390625, 65.946472 ], [ -19.687500, 65.946472 ], [ -19.687500, 66.089364 ], [ -18.281250, 66.089364 ], [ -18.281250, 65.946472 ], [ -17.578125, 65.946472 ], [ -17.578125, 66.089364 ], [ -17.226562, 66.089364 ], [ -17.226562, 66.231457 ], [ -16.523438, 66.231457 ], [ -16.523438, 66.372755 ], [ -16.171875, 66.372755 ], [ -16.171875, 66.513260 ], [ -14.414062, 66.513260 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 53.956086 ], [ -6.328125, 53.956086 ], [ -6.328125, 53.540307 ], [ -5.976562, 53.540307 ], [ -5.976562, 52.908902 ], [ -6.328125, 52.908902 ], [ -6.328125, 52.482780 ], [ -6.679688, 52.482780 ], [ -6.679688, 52.052490 ], [ -7.382812, 52.052490 ], [ -7.382812, 51.835778 ], [ -8.085938, 51.835778 ], [ -8.085938, 51.618017 ], [ -9.492188, 51.618017 ], [ -9.492188, 51.835778 ], [ -9.843750, 51.835778 ], [ -9.843750, 52.052490 ], [ -9.492188, 52.052490 ], [ -9.492188, 52.482780 ], [ -9.140625, 52.482780 ], [ -9.140625, 53.120405 ], [ -9.492188, 53.120405 ], [ -9.492188, 53.540307 ], [ -9.843750, 53.540307 ], [ -9.843750, 53.956086 ], [ -9.492188, 53.956086 ], [ -9.492188, 54.162434 ], [ -8.789062, 54.162434 ], [ -8.789062, 54.367759 ], [ -8.437500, 54.367759 ], [ -8.437500, 54.572062 ], [ -8.085938, 54.572062 ], [ -8.085938, 54.977614 ], [ -7.734375, 54.977614 ], [ -7.734375, 54.775346 ], [ -7.382812, 54.775346 ], [ -7.382812, 54.367759 ], [ -7.734375, 54.367759 ], [ -7.734375, 54.162434 ], [ -7.031250, 54.162434 ], [ -7.031250, 53.956086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 54.977614 ], [ -7.734375, 54.775346 ], [ -7.382812, 54.775346 ], [ -7.382812, 54.367759 ], [ -7.734375, 54.367759 ], [ -7.734375, 54.162434 ], [ -7.031250, 54.162434 ], [ -7.031250, 53.956086 ], [ -6.328125, 53.956086 ], [ -6.328125, 53.540307 ], [ -5.976562, 53.540307 ], [ -5.976562, 52.908902 ], [ -6.328125, 52.908902 ], [ -6.328125, 52.482780 ], [ -6.679688, 52.482780 ], [ -6.679688, 52.052490 ], [ -7.382812, 52.052490 ], [ -7.382812, 51.835778 ], [ -8.085938, 51.835778 ], [ -8.085938, 51.618017 ], [ -9.492188, 51.618017 ], [ -9.492188, 51.835778 ], [ -9.843750, 51.835778 ], [ -9.843750, 52.052490 ], [ -9.492188, 52.052490 ], [ -9.492188, 52.482780 ], [ -9.140625, 52.482780 ], [ -9.140625, 53.120405 ], [ -9.492188, 53.120405 ], [ -9.492188, 53.540307 ], [ -9.843750, 53.540307 ], [ -9.843750, 53.956086 ], [ -9.492188, 53.956086 ], [ -9.492188, 54.162434 ], [ -8.789062, 54.162434 ], [ -8.789062, 54.367759 ], [ -8.437500, 54.367759 ], [ -8.437500, 54.572062 ], [ -8.085938, 54.572062 ], [ -8.085938, 54.977614 ], [ -7.734375, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.406250, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.367759 ], [ -0.351562, 54.367759 ], [ -0.351562, 53.956086 ], [ 0.000000, 53.956086 ], [ 0.000000, 53.540307 ], [ 0.351562, 53.540307 ], [ 0.351562, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.268157 ], [ 1.406250, 52.268157 ], [ 1.406250, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ 1.054688, 51.179343 ], [ 1.054688, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.513427 ], [ -3.164062, 50.513427 ], [ -3.164062, 50.289339 ], [ -4.570312, 50.289339 ], [ -4.570312, 50.064192 ], [ -5.273438, 50.064192 ], [ -5.273438, 50.289339 ], [ -4.921875, 50.289339 ], [ -4.921875, 50.736455 ], [ -4.570312, 50.736455 ], [ -4.570312, 50.958427 ], [ -4.218750, 50.958427 ], [ -4.218750, 51.179343 ], [ -3.515625, 51.179343 ], [ -3.515625, 51.399206 ], [ -4.570312, 51.399206 ], [ -4.570312, 51.618017 ], [ -4.921875, 51.618017 ], [ -4.921875, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 52.052490 ], [ -4.570312, 52.052490 ], [ -4.570312, 52.696361 ], [ -4.921875, 52.696361 ], [ -4.921875, 53.120405 ], [ -4.570312, 53.120405 ], [ -4.570312, 53.540307 ], [ -4.218750, 53.540307 ], [ -4.218750, 53.330873 ], [ -3.164062, 53.330873 ], [ -3.164062, 53.540307 ], [ -2.812500, 53.540307 ], [ -2.812500, 53.956086 ], [ -3.164062, 53.956086 ], [ -3.164062, 54.367759 ], [ -3.515625, 54.367759 ], [ -3.515625, 54.572062 ], [ -4.570312, 54.572062 ], [ -4.570312, 54.775346 ], [ -4.921875, 54.775346 ], [ -4.921875, 55.178868 ], [ -4.570312, 55.178868 ], [ -4.570312, 55.578345 ], [ -5.273438, 55.578345 ], [ -5.273438, 55.379110 ], [ -5.625000, 55.379110 ], [ -5.625000, 56.559482 ], [ -5.976562, 56.559482 ], [ -5.976562, 57.326521 ], [ -5.625000, 57.326521 ], [ -5.625000, 58.077876 ], [ -5.273438, 58.077876 ], [ -5.273438, 58.447733 ], [ -4.921875, 58.447733 ], [ -4.921875, 58.631217 ], [ -3.164062, 58.631217 ], [ -3.164062, 58.447733 ], [ -3.515625, 58.447733 ], [ -3.515625, 58.077876 ], [ -3.867188, 58.077876 ], [ -3.867188, 57.704147 ], [ -4.218750, 57.704147 ], [ -4.218750, 57.515823 ], [ -3.515625, 57.515823 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 56.752723 ], [ -2.460938, 56.752723 ], [ -2.460938, 56.365250 ], [ -2.812500, 56.365250 ], [ -2.812500, 55.973798 ], [ -2.109375, 55.973798 ], [ -2.109375, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 55.178868 ], [ -1.406250, 55.178868 ], [ -1.406250, 54.775346 ] ] ], [ [ [ -6.679688, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.775346 ], [ -5.976562, 54.775346 ], [ -5.976562, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.367759 ], [ -5.976562, 54.367759 ], [ -5.976562, 53.956086 ], [ -7.031250, 53.956086 ], [ -7.031250, 54.162434 ], [ -7.734375, 54.162434 ], [ -7.734375, 54.367759 ], [ -7.382812, 54.367759 ], [ -7.382812, 54.775346 ], [ -7.734375, 54.775346 ], [ -7.734375, 55.178868 ], [ -6.679688, 55.178868 ], [ -6.679688, 54.977614 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.164062, 58.631217 ], [ -3.164062, 58.447733 ], [ -3.515625, 58.447733 ], [ -3.515625, 58.077876 ], [ -3.867188, 58.077876 ], [ -3.867188, 57.704147 ], [ -4.218750, 57.704147 ], [ -4.218750, 57.515823 ], [ -3.515625, 57.515823 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 56.752723 ], [ -2.460938, 56.752723 ], [ -2.460938, 56.365250 ], [ -2.812500, 56.365250 ], [ -2.812500, 55.973798 ], [ -2.109375, 55.973798 ], [ -2.109375, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 55.178868 ], [ -1.406250, 55.178868 ], [ -1.406250, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.367759 ], [ -0.351562, 54.367759 ], [ -0.351562, 53.956086 ], [ 0.000000, 53.956086 ], [ 0.000000, 53.540307 ], [ 0.351562, 53.540307 ], [ 0.351562, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.268157 ], [ 1.406250, 52.268157 ], [ 1.406250, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ 1.054688, 51.179343 ], [ 1.054688, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.513427 ], [ -3.164062, 50.513427 ], [ -3.164062, 50.289339 ], [ -4.570312, 50.289339 ], [ -4.570312, 50.064192 ], [ -5.273438, 50.064192 ], [ -5.273438, 50.289339 ], [ -4.921875, 50.289339 ], [ -4.921875, 50.736455 ], [ -4.570312, 50.736455 ], [ -4.570312, 50.958427 ], [ -4.218750, 50.958427 ], [ -4.218750, 51.179343 ], [ -3.515625, 51.179343 ], [ -3.515625, 51.399206 ], [ -4.570312, 51.399206 ], [ -4.570312, 51.618017 ], [ -4.921875, 51.618017 ], [ -4.921875, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 52.052490 ], [ -4.570312, 52.052490 ], [ -4.570312, 52.696361 ], [ -4.921875, 52.696361 ], [ -4.921875, 53.120405 ], [ -4.570312, 53.120405 ], [ -4.570312, 53.540307 ], [ -4.218750, 53.540307 ], [ -4.218750, 53.330873 ], [ -3.164062, 53.330873 ], [ -3.164062, 53.540307 ], [ -2.812500, 53.540307 ], [ -2.812500, 53.956086 ], [ -3.164062, 53.956086 ], [ -3.164062, 54.367759 ], [ -3.515625, 54.367759 ], [ -3.515625, 54.572062 ], [ -4.570312, 54.572062 ], [ -4.570312, 54.775346 ], [ -4.921875, 54.775346 ], [ -4.921875, 55.178868 ], [ -4.570312, 55.178868 ], [ -4.570312, 55.578345 ], [ -5.273438, 55.578345 ], [ -5.273438, 55.379110 ], [ -5.625000, 55.379110 ], [ -5.625000, 56.559482 ], [ -5.976562, 56.559482 ], [ -5.976562, 57.326521 ], [ -5.625000, 57.326521 ], [ -5.625000, 58.077876 ], [ -5.273438, 58.077876 ], [ -5.273438, 58.447733 ], [ -4.921875, 58.447733 ], [ -4.921875, 58.631217 ], [ -3.164062, 58.631217 ] ] ], [ [ [ -6.679688, 55.178868 ], [ -6.679688, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.775346 ], [ -5.976562, 54.775346 ], [ -5.976562, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.367759 ], [ -5.976562, 54.367759 ], [ -5.976562, 53.956086 ], [ -7.031250, 53.956086 ], [ -7.031250, 54.162434 ], [ -7.734375, 54.162434 ], [ -7.734375, 54.367759 ], [ -7.382812, 54.367759 ], [ -7.382812, 54.775346 ], [ -7.734375, 54.775346 ], [ -7.734375, 55.178868 ], [ -6.679688, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.734375, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 4.565474 ], [ -51.679688, 4.565474 ], [ -51.679688, 3.864255 ], [ -52.031250, 3.864255 ], [ -52.031250, 3.162456 ], [ -52.382812, 3.162456 ], [ -52.382812, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.460181 ], [ -53.789062, 2.460181 ], [ -53.789062, 2.108899 ], [ -54.492188, 2.108899 ], [ -54.492188, 2.460181 ], [ -54.140625, 2.460181 ], [ -54.140625, 3.864255 ], [ -54.492188, 3.864255 ], [ -54.492188, 4.915833 ], [ -54.140625, 4.915833 ], [ -54.140625, 5.266008 ], [ -53.789062, 5.266008 ], [ -53.789062, 5.615986 ], [ -53.437500, 5.615986 ], [ -53.437500, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 4.915833 ] ] ], [ [ [ 1.757812, 42.293564 ], [ 1.406250, 42.293564 ], [ 1.406250, 42.553080 ], [ -0.351562, 42.553080 ], [ -0.351562, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 45.089036 ], [ -1.054688, 45.089036 ], [ -1.054688, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.558860 ], [ -1.757812, 46.558860 ], [ -1.757812, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 47.754098 ], [ -4.218750, 47.754098 ], [ -4.218750, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -3.515625, 48.690960 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.690960 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.382373 ], [ -0.351562, 49.382373 ], [ -0.351562, 49.610710 ], [ 0.351562, 49.610710 ], [ 0.351562, 49.837982 ], [ 1.054688, 49.837982 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.757812, 50.513427 ], [ 1.757812, 42.293564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.437500, 5.615986 ], [ -53.437500, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 4.565474 ], [ -51.679688, 4.565474 ], [ -51.679688, 3.864255 ], [ -52.031250, 3.864255 ], [ -52.031250, 3.162456 ], [ -52.382812, 3.162456 ], [ -52.382812, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.460181 ], [ -53.789062, 2.460181 ], [ -53.789062, 2.108899 ], [ -54.492188, 2.108899 ], [ -54.492188, 2.460181 ], [ -54.140625, 2.460181 ], [ -54.140625, 3.864255 ], [ -54.492188, 3.864255 ], [ -54.492188, 4.915833 ], [ -54.140625, 4.915833 ], [ -54.140625, 5.266008 ], [ -53.789062, 5.266008 ], [ -53.789062, 5.615986 ], [ -53.437500, 5.615986 ] ] ], [ [ [ 1.757812, 50.513427 ], [ 1.757812, 42.293564 ], [ 1.406250, 42.293564 ], [ 1.406250, 42.553080 ], [ -0.351562, 42.553080 ], [ -0.351562, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 45.089036 ], [ -1.054688, 45.089036 ], [ -1.054688, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.558860 ], [ -1.757812, 46.558860 ], [ -1.757812, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 47.754098 ], [ -4.218750, 47.754098 ], [ -4.218750, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -3.515625, 48.690960 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.690960 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.382373 ], [ -0.351562, 49.382373 ], [ -0.351562, 49.610710 ], [ 0.351562, 49.610710 ], [ 0.351562, 49.837982 ], [ 1.054688, 49.837982 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.757812, 50.513427 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 23.241346 ], [ -13.007812, 23.241346 ], [ -13.007812, 21.289374 ], [ -15.468750, 21.289374 ], [ -15.468750, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.563987 ], [ -13.710938, 23.563987 ], [ -13.710938, 23.885838 ], [ -13.359375, 23.885838 ], [ -13.359375, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.165173 ], [ -12.304688, 25.165173 ], [ -12.304688, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 23.241346 ] ] ], [ [ [ -11.953125, 26.115986 ], [ -11.601562, 26.115986 ], [ -11.601562, 26.431228 ], [ -11.250000, 26.431228 ], [ -11.250000, 26.745610 ], [ -9.492188, 26.745610 ], [ -9.492188, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.115986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.799891 ], [ -11.953125, 23.241346 ], [ -13.007812, 23.241346 ], [ -13.007812, 21.289374 ], [ -15.468750, 21.289374 ], [ -15.468750, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.563987 ], [ -13.710938, 23.563987 ], [ -13.710938, 23.885838 ], [ -13.359375, 23.885838 ], [ -13.359375, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.165173 ], [ -12.304688, 25.165173 ], [ -12.304688, 25.799891 ], [ -11.953125, 25.799891 ] ] ], [ [ [ -8.789062, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.115986 ], [ -11.601562, 26.115986 ], [ -11.601562, 26.431228 ], [ -11.250000, 26.431228 ], [ -11.250000, 26.745610 ], [ -9.492188, 26.745610 ], [ -8.789062, 27.059126 ], [ -8.789062, 25.799891 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.679688, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 40.713956 ], [ -7.031250, 40.713956 ], [ -7.031250, 39.639538 ], [ -7.382812, 39.639538 ], [ -7.382812, 39.368279 ], [ -7.031250, 39.368279 ], [ -7.031250, 38.548165 ], [ -7.382812, 38.548165 ], [ -7.382812, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 36.879621 ], [ -8.789062, 36.879621 ], [ -8.789062, 38.272689 ], [ -9.140625, 38.272689 ], [ -9.140625, 38.548165 ], [ -9.492188, 38.548165 ], [ -9.492188, 39.368279 ], [ -9.140625, 39.368279 ], [ -9.140625, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.244772 ], [ -9.140625, 41.244772 ], [ -9.140625, 41.771312 ], [ -8.789062, 41.771312 ], [ -8.789062, 42.032974 ], [ -8.085938, 42.032974 ], [ -8.085938, 41.771312 ], [ -6.679688, 41.771312 ], [ -6.679688, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 42.032974 ], [ -8.085938, 41.771312 ], [ -6.679688, 41.771312 ], [ -6.679688, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 40.713956 ], [ -7.031250, 40.713956 ], [ -7.031250, 39.639538 ], [ -7.382812, 39.639538 ], [ -7.382812, 39.368279 ], [ -7.031250, 39.368279 ], [ -7.031250, 38.548165 ], [ -7.382812, 38.548165 ], [ -7.382812, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 36.879621 ], [ -8.789062, 36.879621 ], [ -8.789062, 38.272689 ], [ -9.140625, 38.272689 ], [ -9.140625, 38.548165 ], [ -9.492188, 38.548165 ], [ -9.492188, 39.368279 ], [ -9.140625, 39.368279 ], [ -9.140625, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.244772 ], [ -9.140625, 41.244772 ], [ -9.140625, 41.771312 ], [ -8.789062, 41.771312 ], [ -8.789062, 42.032974 ], [ -8.085938, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 43.325178 ], [ -3.515625, 43.325178 ], [ -3.515625, 43.580391 ], [ -2.812500, 43.580391 ], [ -2.812500, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.553080 ], [ 1.406250, 42.553080 ], [ 1.406250, 42.293564 ], [ 1.757812, 42.293564 ], [ 1.757812, 41.244772 ], [ 1.406250, 41.244772 ], [ 1.406250, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 36.597889 ], [ -4.218750, 36.597889 ], [ -4.218750, 36.315125 ], [ -4.921875, 36.315125 ], [ -4.921875, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 36.597889 ], [ -6.679688, 36.597889 ], [ -6.679688, 36.879621 ], [ -7.382812, 36.879621 ], [ -7.382812, 37.439974 ], [ -7.031250, 37.439974 ], [ -7.031250, 37.996163 ], [ -7.382812, 37.996163 ], [ -7.382812, 38.548165 ], [ -7.031250, 38.548165 ], [ -7.031250, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 39.639538 ], [ -7.031250, 39.639538 ], [ -7.031250, 40.713956 ], [ -6.679688, 40.713956 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.679688, 41.508577 ], [ -6.679688, 41.771312 ], [ -8.085938, 41.771312 ], [ -8.085938, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.789062, 41.771312 ], [ -9.140625, 41.771312 ], [ -9.140625, 42.811522 ], [ -9.492188, 42.811522 ], [ -9.492188, 43.068888 ], [ -9.140625, 43.068888 ], [ -9.140625, 43.325178 ], [ -8.437500, 43.325178 ], [ -8.437500, 43.580391 ], [ -8.085938, 43.580391 ], [ -8.085938, 43.834527 ], [ -7.734375, 43.834527 ], [ -7.734375, 43.580391 ], [ -4.921875, 43.580391 ], [ -4.921875, 43.325178 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 43.834527 ], [ -7.734375, 43.580391 ], [ -4.921875, 43.580391 ], [ -4.921875, 43.325178 ], [ -3.515625, 43.325178 ], [ -3.515625, 43.580391 ], [ -2.812500, 43.580391 ], [ -2.812500, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.553080 ], [ 1.406250, 42.553080 ], [ 1.406250, 42.293564 ], [ 1.757812, 42.293564 ], [ 1.757812, 41.244772 ], [ 1.406250, 41.244772 ], [ 1.406250, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 36.597889 ], [ -4.218750, 36.597889 ], [ -4.218750, 36.315125 ], [ -4.921875, 36.315125 ], [ -4.921875, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 36.597889 ], [ -6.679688, 36.597889 ], [ -6.679688, 36.879621 ], [ -7.382812, 36.879621 ], [ -7.382812, 37.439974 ], [ -7.031250, 37.439974 ], [ -7.031250, 37.996163 ], [ -7.382812, 37.996163 ], [ -7.382812, 38.548165 ], [ -7.031250, 38.548165 ], [ -7.031250, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 39.639538 ], [ -7.031250, 39.639538 ], [ -7.031250, 40.713956 ], [ -6.679688, 40.713956 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.679688, 41.508577 ], [ -6.679688, 41.771312 ], [ -8.085938, 41.771312 ], [ -8.085938, 42.032974 ], [ -8.789062, 42.032974 ], [ -9.140625, 41.771312 ], [ -9.140625, 42.811522 ], [ -9.492188, 42.811522 ], [ -9.492188, 43.068888 ], [ -9.140625, 43.068888 ], [ -9.140625, 43.325178 ], [ -8.437500, 43.325178 ], [ -8.437500, 43.580391 ], [ -8.085938, 43.580391 ], [ -8.085938, 43.834527 ], [ -7.734375, 43.834527 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.164062, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 34.885931 ], [ -1.757812, 34.885931 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ], [ -1.406250, 32.546813 ], [ -1.054688, 32.546813 ], [ -1.054688, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 31.952162 ], [ -2.460938, 31.952162 ], [ -2.460938, 31.653381 ], [ -3.515625, 31.653381 ], [ -3.515625, 30.751278 ], [ -3.867188, 30.751278 ], [ -3.867188, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.145127 ], [ -5.273438, 30.145127 ], [ -5.273438, 29.840644 ], [ -6.328125, 29.840644 ], [ -6.328125, 29.535230 ], [ -7.382812, 29.535230 ], [ -7.382812, 29.228890 ], [ -8.085938, 29.228890 ], [ -8.085938, 28.921631 ], [ -8.789062, 28.921631 ], [ -8.789062, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 26.745610 ], [ -11.250000, 26.745610 ], [ -11.250000, 26.431228 ], [ -11.601562, 26.431228 ], [ -11.601562, 26.115986 ], [ -11.953125, 26.115986 ], [ -11.953125, 25.799891 ], [ -12.304688, 25.799891 ], [ -12.304688, 25.165173 ], [ -12.656250, 25.165173 ], [ -12.656250, 24.527135 ], [ -13.007812, 24.527135 ], [ -13.007812, 24.206890 ], [ -13.359375, 24.206890 ], [ -13.359375, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 23.563987 ], [ -14.062500, 23.563987 ], [ -14.062500, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 21.616579 ], [ -15.468750, 21.616579 ], [ -15.468750, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.943046 ], [ -16.523438, 21.943046 ], [ -16.523438, 22.268764 ], [ -16.171875, 22.268764 ], [ -16.171875, 23.241346 ], [ -15.820312, 23.241346 ], [ -15.820312, 23.885838 ], [ -15.468750, 23.885838 ], [ -15.468750, 24.206890 ], [ -15.117188, 24.206890 ], [ -15.117188, 24.846565 ], [ -14.765625, 24.846565 ], [ -14.765625, 25.799891 ], [ -14.414062, 25.799891 ], [ -14.414062, 26.115986 ], [ -14.062500, 26.115986 ], [ -14.062500, 26.431228 ], [ -13.710938, 26.431228 ], [ -13.710938, 26.745610 ], [ -13.359375, 26.745610 ], [ -13.359375, 27.371767 ], [ -13.007812, 27.371767 ], [ -13.007812, 27.683528 ], [ -12.656250, 27.683528 ], [ -12.656250, 27.994401 ], [ -11.250000, 27.994401 ], [ -11.250000, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.228890 ], [ -10.195312, 29.228890 ], [ -10.195312, 29.535230 ], [ -9.492188, 29.535230 ], [ -9.492188, 30.448674 ], [ -9.843750, 30.448674 ], [ -9.843750, 31.353637 ], [ -9.492188, 31.353637 ], [ -9.492188, 32.249974 ], [ -9.140625, 32.249974 ], [ -9.140625, 32.842674 ], [ -8.789062, 32.842674 ], [ -8.789062, 33.137551 ], [ -8.437500, 33.137551 ], [ -8.437500, 33.431441 ], [ -7.734375, 33.431441 ], [ -7.734375, 33.724340 ], [ -7.031250, 33.724340 ], [ -7.031250, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.460670 ], [ -5.976562, 35.460670 ], [ -5.976562, 35.746512 ], [ -5.273438, 35.746512 ], [ -5.273438, 35.460670 ], [ -3.164062, 35.460670 ], [ -3.164062, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.746512 ], [ -5.273438, 35.460670 ], [ -3.164062, 35.460670 ], [ -3.164062, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 34.885931 ], [ -1.757812, 34.885931 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ], [ -1.406250, 32.546813 ], [ -1.054688, 32.546813 ], [ -1.054688, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 31.952162 ], [ -2.460938, 31.952162 ], [ -2.460938, 31.653381 ], [ -3.515625, 31.653381 ], [ -3.515625, 30.751278 ], [ -3.867188, 30.751278 ], [ -3.867188, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.145127 ], [ -5.273438, 30.145127 ], [ -5.273438, 29.840644 ], [ -6.328125, 29.840644 ], [ -6.328125, 29.535230 ], [ -7.382812, 29.535230 ], [ -7.382812, 29.228890 ], [ -8.085938, 29.228890 ], [ -8.085938, 28.921631 ], [ -8.789062, 28.921631 ], [ -8.789062, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 26.745610 ], [ -11.250000, 26.745610 ], [ -11.250000, 26.431228 ], [ -11.601562, 26.431228 ], [ -11.601562, 26.115986 ], [ -11.953125, 26.115986 ], [ -11.953125, 25.799891 ], [ -12.304688, 25.799891 ], [ -12.304688, 25.165173 ], [ -12.656250, 25.165173 ], [ -12.656250, 24.527135 ], [ -13.007812, 24.527135 ], [ -13.007812, 24.206890 ], [ -13.359375, 24.206890 ], [ -13.359375, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 23.563987 ], [ -14.062500, 23.563987 ], [ -14.062500, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 21.616579 ], [ -15.468750, 21.616579 ], [ -15.468750, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.943046 ], [ -16.523438, 21.943046 ], [ -16.523438, 22.268764 ], [ -16.171875, 22.268764 ], [ -16.171875, 23.241346 ], [ -15.820312, 23.241346 ], [ -15.820312, 23.885838 ], [ -15.468750, 23.885838 ], [ -15.468750, 24.206890 ], [ -15.117188, 24.206890 ], [ -15.117188, 24.846565 ], [ -14.765625, 24.846565 ], [ -14.765625, 25.799891 ], [ -14.414062, 25.799891 ], [ -14.414062, 26.115986 ], [ -14.062500, 26.115986 ], [ -14.062500, 26.431228 ], [ -13.710938, 26.431228 ], [ -13.710938, 26.745610 ], [ -13.359375, 26.745610 ], [ -13.359375, 27.371767 ], [ -13.007812, 27.371767 ], [ -13.007812, 27.683528 ], [ -12.656250, 27.683528 ], [ -12.656250, 27.994401 ], [ -11.250000, 27.994401 ], [ -11.250000, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.228890 ], [ -10.195312, 29.228890 ], [ -10.195312, 29.535230 ], [ -9.492188, 29.535230 ], [ -9.492188, 30.448674 ], [ -9.843750, 30.448674 ], [ -9.843750, 31.353637 ], [ -9.492188, 31.353637 ], [ -9.492188, 32.249974 ], [ -9.140625, 32.249974 ], [ -9.140625, 32.842674 ], [ -8.789062, 32.842674 ], [ -8.789062, 33.137551 ], [ -8.437500, 33.137551 ], [ -8.437500, 33.431441 ], [ -7.734375, 33.431441 ], [ -7.734375, 33.724340 ], [ -7.031250, 33.724340 ], [ -7.031250, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.460670 ], [ -5.976562, 35.460670 ], [ -5.976562, 35.746512 ], [ -5.273438, 35.746512 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 14.944785 ], [ -12.304688, 14.944785 ], [ -12.304688, 14.264383 ], [ -11.953125, 14.264383 ], [ -11.953125, 13.239945 ], [ -11.601562, 13.239945 ], [ -11.601562, 12.554564 ], [ -12.304688, 12.554564 ], [ -12.304688, 12.211180 ], [ -13.359375, 12.211180 ], [ -13.359375, 12.554564 ], [ -16.523438, 12.554564 ], [ -16.523438, 12.897489 ], [ -16.875000, 12.897489 ], [ -16.875000, 13.239945 ], [ -13.710938, 13.239945 ], [ -13.710938, 13.581921 ], [ -15.117188, 13.581921 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 13.581921 ], [ -16.875000, 13.581921 ], [ -16.875000, 13.923404 ], [ -17.226562, 13.923404 ], [ -17.226562, 14.264383 ], [ -17.578125, 14.264383 ], [ -17.578125, 14.604847 ], [ -17.226562, 14.604847 ], [ -17.226562, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.961329 ], [ -16.523438, 15.961329 ], [ -16.523438, 16.299051 ], [ -15.117188, 16.299051 ], [ -15.117188, 16.636192 ], [ -14.414062, 16.636192 ], [ -14.414062, 16.299051 ], [ -14.062500, 16.299051 ], [ -14.062500, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.414062, 16.636192 ], [ -14.414062, 16.299051 ], [ -14.062500, 16.299051 ], [ -14.062500, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 14.944785 ], [ -12.304688, 14.944785 ], [ -12.304688, 14.264383 ], [ -11.953125, 14.264383 ], [ -11.953125, 13.239945 ], [ -11.601562, 13.239945 ], [ -11.601562, 12.554564 ], [ -12.304688, 12.554564 ], [ -12.304688, 12.211180 ], [ -13.359375, 12.211180 ], [ -13.359375, 12.554564 ], [ -16.523438, 12.554564 ], [ -16.523438, 12.897489 ], [ -16.875000, 12.897489 ], [ -16.875000, 13.239945 ], [ -13.710938, 13.239945 ], [ -13.710938, 13.581921 ], [ -15.117188, 13.581921 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 13.581921 ], [ -16.875000, 13.581921 ], [ -16.875000, 13.923404 ], [ -17.226562, 13.923404 ], [ -17.226562, 14.264383 ], [ -17.578125, 14.264383 ], [ -17.578125, 14.604847 ], [ -17.226562, 14.604847 ], [ -17.226562, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.961329 ], [ -16.523438, 15.961329 ], [ -16.523438, 16.299051 ], [ -15.117188, 16.299051 ], [ -15.117188, 16.636192 ], [ -14.414062, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.581921 ], [ -15.468750, 13.581921 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ], [ -15.117188, 13.581921 ], [ -13.710938, 13.581921 ], [ -13.710938, 13.239945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -15.117188, 13.581921 ], [ -13.710938, 13.581921 ], [ -13.710938, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.581921 ], [ -15.468750, 13.581921 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 11.523088 ], [ -14.765625, 11.523088 ], [ -14.765625, 11.178402 ], [ -15.820312, 11.178402 ], [ -15.820312, 11.523088 ], [ -16.171875, 11.523088 ], [ -16.171875, 11.867351 ], [ -16.523438, 11.867351 ], [ -16.523438, 12.554564 ], [ -13.710938, 12.554564 ], [ -13.710938, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.554564 ], [ -13.710938, 11.523088 ], [ -14.765625, 11.523088 ], [ -14.765625, 11.178402 ], [ -15.820312, 11.178402 ], [ -15.820312, 11.523088 ], [ -16.171875, 11.523088 ], [ -16.171875, 11.867351 ], [ -16.523438, 11.867351 ], [ -16.523438, 12.554564 ], [ -13.710938, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.898438, 11.867351 ], [ -9.843750, 11.867351 ], [ -9.843750, 12.211180 ], [ -8.789062, 12.211180 ], [ -8.789062, 11.523088 ], [ -8.437500, 11.523088 ], [ -8.437500, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 9.449062 ], [ -8.085938, 9.449062 ], [ -8.085938, 8.754795 ], [ -7.734375, 8.754795 ], [ -7.734375, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 8.059230 ], [ -8.085938, 8.059230 ], [ -8.085938, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.362467 ], [ -9.492188, 7.362467 ], [ -9.492188, 8.059230 ], [ -9.843750, 8.059230 ], [ -9.843750, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.449062 ], [ -10.898438, 9.449062 ], [ -10.898438, 9.795678 ], [ -11.250000, 9.795678 ], [ -11.250000, 10.141932 ], [ -11.953125, 10.141932 ], [ -11.953125, 9.795678 ], [ -12.304688, 9.795678 ], [ -12.304688, 9.449062 ], [ -12.656250, 9.449062 ], [ -12.656250, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 8.754795 ], [ -13.359375, 8.754795 ], [ -13.359375, 9.102097 ], [ -13.710938, 9.102097 ], [ -13.710938, 9.449062 ], [ -14.062500, 9.449062 ], [ -14.062500, 9.795678 ], [ -14.414062, 9.795678 ], [ -14.414062, 10.141932 ], [ -14.765625, 10.141932 ], [ -14.765625, 10.833306 ], [ -15.117188, 10.833306 ], [ -15.117188, 11.178402 ], [ -14.765625, 11.178402 ], [ -14.765625, 11.523088 ], [ -13.710938, 11.523088 ], [ -13.710938, 12.554564 ], [ -13.359375, 12.554564 ], [ -13.359375, 12.211180 ], [ -12.304688, 12.211180 ], [ -12.304688, 12.554564 ], [ -11.601562, 12.554564 ], [ -11.601562, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.601562, 12.554564 ], [ -11.601562, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 11.867351 ], [ -9.843750, 11.867351 ], [ -9.843750, 12.211180 ], [ -8.789062, 12.211180 ], [ -8.789062, 11.523088 ], [ -8.437500, 11.523088 ], [ -8.437500, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 9.449062 ], [ -8.085938, 9.449062 ], [ -8.085938, 8.754795 ], [ -7.734375, 8.754795 ], [ -7.734375, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 8.059230 ], [ -8.085938, 8.059230 ], [ -8.085938, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.362467 ], [ -9.492188, 7.362467 ], [ -9.492188, 8.059230 ], [ -9.843750, 8.059230 ], [ -9.843750, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.449062 ], [ -10.898438, 9.449062 ], [ -10.898438, 9.795678 ], [ -11.250000, 9.795678 ], [ -11.250000, 10.141932 ], [ -11.953125, 10.141932 ], [ -11.953125, 9.795678 ], [ -12.304688, 9.795678 ], [ -12.304688, 9.449062 ], [ -12.656250, 9.449062 ], [ -12.656250, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 8.754795 ], [ -13.359375, 8.754795 ], [ -13.359375, 9.102097 ], [ -13.710938, 9.102097 ], [ -13.710938, 9.449062 ], [ -14.062500, 9.449062 ], [ -14.062500, 9.795678 ], [ -14.414062, 9.795678 ], [ -14.414062, 10.141932 ], [ -14.765625, 10.141932 ], [ -14.765625, 10.833306 ], [ -15.117188, 10.833306 ], [ -15.117188, 11.178402 ], [ -14.765625, 11.178402 ], [ -14.765625, 11.523088 ], [ -13.710938, 11.523088 ], [ -13.710938, 12.554564 ], [ -13.359375, 12.554564 ], [ -13.359375, 12.211180 ], [ -12.304688, 12.211180 ], [ -12.304688, 12.554564 ], [ -11.601562, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.898438, 9.449062 ], [ -10.546875, 9.449062 ], [ -10.546875, 8.407168 ], [ -10.195312, 8.407168 ], [ -10.195312, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 7.362467 ], [ -11.250000, 7.362467 ], [ -11.250000, 6.664608 ], [ -11.601562, 6.664608 ], [ -11.601562, 7.013668 ], [ -12.304688, 7.013668 ], [ -12.304688, 7.362467 ], [ -13.007812, 7.362467 ], [ -13.007812, 8.407168 ], [ -13.359375, 8.407168 ], [ -13.359375, 8.754795 ], [ -13.007812, 8.754795 ], [ -13.007812, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.449062 ], [ -12.304688, 9.449062 ], [ -12.304688, 9.795678 ], [ -11.953125, 9.795678 ], [ -11.953125, 10.141932 ], [ -11.250000, 10.141932 ], [ -11.250000, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 9.449062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.141932 ], [ -11.250000, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 9.449062 ], [ -10.546875, 9.449062 ], [ -10.546875, 8.407168 ], [ -10.195312, 8.407168 ], [ -10.195312, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 7.362467 ], [ -11.250000, 7.362467 ], [ -11.250000, 6.664608 ], [ -11.601562, 6.664608 ], [ -11.601562, 7.013668 ], [ -12.304688, 7.013668 ], [ -12.304688, 7.362467 ], [ -13.007812, 7.362467 ], [ -13.007812, 8.407168 ], [ -13.359375, 8.407168 ], [ -13.359375, 8.754795 ], [ -13.007812, 8.754795 ], [ -13.007812, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.449062 ], [ -12.304688, 9.449062 ], [ -12.304688, 9.795678 ], [ -11.953125, 9.795678 ], [ -11.953125, 10.141932 ], [ -11.250000, 10.141932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 25.482951 ], [ -5.976562, 25.482951 ], [ -5.976562, 25.165173 ], [ -5.273438, 25.165173 ], [ -5.273438, 24.846565 ], [ -6.328125, 24.846565 ], [ -6.328125, 22.593726 ], [ -5.976562, 22.593726 ], [ -5.976562, 18.312811 ], [ -5.625000, 18.312811 ], [ -5.625000, 16.299051 ], [ -5.273438, 16.299051 ], [ -5.273438, 15.961329 ], [ -5.625000, 15.961329 ], [ -5.625000, 15.623037 ], [ -9.492188, 15.623037 ], [ -9.492188, 15.284185 ], [ -11.601562, 15.284185 ], [ -11.601562, 14.944785 ], [ -11.953125, 14.944785 ], [ -11.953125, 14.604847 ], [ -12.304688, 14.604847 ], [ -12.304688, 14.944785 ], [ -12.656250, 14.944785 ], [ -12.656250, 15.284185 ], [ -13.007812, 15.284185 ], [ -13.007812, 15.623037 ], [ -13.359375, 15.623037 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.299051 ], [ -14.414062, 16.299051 ], [ -14.414062, 16.636192 ], [ -15.117188, 16.636192 ], [ -15.117188, 16.299051 ], [ -16.523438, 16.299051 ], [ -16.523438, 16.972741 ], [ -16.171875, 16.972741 ], [ -16.171875, 19.311143 ], [ -16.523438, 19.311143 ], [ -16.523438, 19.642588 ], [ -16.171875, 19.642588 ], [ -16.171875, 20.303418 ], [ -16.523438, 20.303418 ], [ -16.523438, 20.632784 ], [ -17.226562, 20.632784 ], [ -17.226562, 20.961440 ], [ -16.875000, 20.961440 ], [ -16.875000, 21.289374 ], [ -13.007812, 21.289374 ], [ -13.007812, 23.241346 ], [ -11.953125, 23.241346 ], [ -11.953125, 25.799891 ], [ -8.789062, 25.799891 ], [ -8.789062, 27.059126 ], [ -8.085938, 27.059126 ], [ -8.085938, 26.745610 ], [ -7.734375, 26.745610 ], [ -7.734375, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.115986 ], [ -6.679688, 26.115986 ], [ -6.679688, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 25.482951 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 27.059126 ], [ -8.085938, 26.745610 ], [ -7.734375, 26.745610 ], [ -7.734375, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.115986 ], [ -6.679688, 26.115986 ], [ -6.679688, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 25.482951 ], [ -5.976562, 25.482951 ], [ -5.976562, 25.165173 ], [ -5.273438, 25.165173 ], [ -5.273438, 24.846565 ], [ -6.328125, 24.846565 ], [ -6.328125, 22.593726 ], [ -5.976562, 22.593726 ], [ -5.976562, 18.312811 ], [ -5.625000, 18.312811 ], [ -5.625000, 16.299051 ], [ -5.273438, 16.299051 ], [ -5.273438, 15.961329 ], [ -5.625000, 15.961329 ], [ -5.625000, 15.623037 ], [ -9.492188, 15.623037 ], [ -9.492188, 15.284185 ], [ -11.601562, 15.284185 ], [ -11.601562, 14.944785 ], [ -11.953125, 14.944785 ], [ -11.953125, 14.604847 ], [ -12.304688, 14.604847 ], [ -12.304688, 14.944785 ], [ -12.656250, 14.944785 ], [ -12.656250, 15.284185 ], [ -13.007812, 15.284185 ], [ -13.007812, 15.623037 ], [ -13.359375, 15.623037 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.299051 ], [ -14.414062, 16.299051 ], [ -14.414062, 16.636192 ], [ -15.117188, 16.636192 ], [ -15.117188, 16.299051 ], [ -16.523438, 16.299051 ], [ -16.523438, 16.972741 ], [ -16.171875, 16.972741 ], [ -16.171875, 19.311143 ], [ -16.523438, 19.311143 ], [ -16.523438, 19.642588 ], [ -16.171875, 19.642588 ], [ -16.171875, 20.303418 ], [ -16.523438, 20.303418 ], [ -16.523438, 20.632784 ], [ -17.226562, 20.632784 ], [ -17.226562, 20.961440 ], [ -16.875000, 20.961440 ], [ -16.875000, 21.289374 ], [ -13.007812, 21.289374 ], [ -13.007812, 23.241346 ], [ -11.953125, 23.241346 ], [ -11.953125, 25.799891 ], [ -8.789062, 25.799891 ], [ -8.789062, 27.059126 ], [ -8.085938, 27.059126 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 24.206890 ], [ -3.515625, 24.206890 ], [ -3.515625, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.563987 ], [ -2.460938, 23.563987 ], [ -2.460938, 23.241346 ], [ -1.757812, 23.241346 ], [ -1.757812, 22.917923 ], [ -1.406250, 22.917923 ], [ -1.406250, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.351562, 22.268764 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.289374 ], [ 1.054688, 21.289374 ], [ 1.054688, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 14.944785 ], [ -1.406250, 14.944785 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 12.897489 ], [ -4.570312, 12.897489 ], [ -4.570312, 12.211180 ], [ -4.921875, 12.211180 ], [ -4.921875, 11.867351 ], [ -5.273438, 11.867351 ], [ -5.273438, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 10.487812 ], [ -5.273438, 10.487812 ], [ -5.273438, 10.141932 ], [ -6.328125, 10.141932 ], [ -6.328125, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.141932 ], [ -8.437500, 10.141932 ], [ -8.437500, 11.523088 ], [ -8.789062, 11.523088 ], [ -8.789062, 12.211180 ], [ -9.843750, 12.211180 ], [ -9.843750, 11.867351 ], [ -10.898438, 11.867351 ], [ -10.898438, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 14.264383 ], [ -12.304688, 14.264383 ], [ -12.304688, 14.604847 ], [ -11.953125, 14.604847 ], [ -11.953125, 14.944785 ], [ -11.601562, 14.944785 ], [ -11.601562, 15.284185 ], [ -9.492188, 15.284185 ], [ -9.492188, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 15.961329 ], [ -5.273438, 15.961329 ], [ -5.273438, 16.299051 ], [ -5.625000, 16.299051 ], [ -5.625000, 18.312811 ], [ -5.976562, 18.312811 ], [ -5.976562, 22.593726 ], [ -6.328125, 22.593726 ], [ -6.328125, 24.846565 ], [ -4.921875, 24.846565 ], [ -4.921875, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.846565 ], [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 24.206890 ], [ -3.515625, 24.206890 ], [ -3.515625, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.563987 ], [ -2.460938, 23.563987 ], [ -2.460938, 23.241346 ], [ -1.757812, 23.241346 ], [ -1.757812, 22.917923 ], [ -1.406250, 22.917923 ], [ -1.406250, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.351562, 22.268764 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.289374 ], [ 1.054688, 21.289374 ], [ 1.054688, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 14.944785 ], [ -1.406250, 14.944785 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 12.897489 ], [ -4.570312, 12.897489 ], [ -4.570312, 12.211180 ], [ -4.921875, 12.211180 ], [ -4.921875, 11.867351 ], [ -5.273438, 11.867351 ], [ -5.273438, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 10.487812 ], [ -5.273438, 10.487812 ], [ -5.273438, 10.141932 ], [ -6.328125, 10.141932 ], [ -6.328125, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.141932 ], [ -8.437500, 10.141932 ], [ -8.437500, 11.523088 ], [ -8.789062, 11.523088 ], [ -8.789062, 12.211180 ], [ -9.843750, 12.211180 ], [ -9.843750, 11.867351 ], [ -10.898438, 11.867351 ], [ -10.898438, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 14.264383 ], [ -12.304688, 14.264383 ], [ -12.304688, 14.604847 ], [ -11.953125, 14.604847 ], [ -11.953125, 14.944785 ], [ -11.601562, 14.944785 ], [ -11.601562, 15.284185 ], [ -9.492188, 15.284185 ], [ -9.492188, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 15.961329 ], [ -5.273438, 15.961329 ], [ -5.273438, 16.299051 ], [ -5.625000, 16.299051 ], [ -5.625000, 18.312811 ], [ -5.976562, 18.312811 ], [ -5.976562, 22.593726 ], [ -6.328125, 22.593726 ], [ -6.328125, 24.846565 ], [ -4.921875, 24.846565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 13.239945 ], [ 1.054688, 13.239945 ], [ 1.054688, 12.554564 ], [ 1.757812, 12.554564 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 10.833306 ], [ 0.351562, 10.833306 ], [ 0.351562, 11.178402 ], [ -0.351562, 11.178402 ], [ -0.351562, 10.833306 ], [ -1.054688, 10.833306 ], [ -1.054688, 11.178402 ], [ -1.757812, 11.178402 ], [ -1.757812, 10.833306 ], [ -2.812500, 10.833306 ], [ -2.812500, 9.795678 ], [ -3.867188, 9.795678 ], [ -3.867188, 9.449062 ], [ -4.921875, 9.449062 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 12.897489 ], [ -4.218750, 12.897489 ], [ -4.218750, 13.239945 ], [ -3.164062, 13.239945 ], [ -3.164062, 13.581921 ], [ -2.812500, 13.581921 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.239945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.239945 ], [ 1.054688, 13.239945 ], [ 1.054688, 12.554564 ], [ 1.757812, 12.554564 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 10.833306 ], [ 0.351562, 10.833306 ], [ 0.351562, 11.178402 ], [ -0.351562, 11.178402 ], [ -0.351562, 10.833306 ], [ -1.054688, 10.833306 ], [ -1.054688, 11.178402 ], [ -1.757812, 11.178402 ], [ -1.757812, 10.833306 ], [ -2.812500, 10.833306 ], [ -2.812500, 9.795678 ], [ -3.867188, 9.795678 ], [ -3.867188, 9.449062 ], [ -4.921875, 9.449062 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 12.897489 ], [ -4.218750, 12.897489 ], [ -4.218750, 13.239945 ], [ -3.164062, 13.239945 ], [ -3.164062, 13.581921 ], [ -2.812500, 13.581921 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.492188, 7.362467 ], [ -8.789062, 7.362467 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 5.965754 ], [ -8.085938, 5.965754 ], [ -8.085938, 5.615986 ], [ -7.734375, 5.615986 ], [ -7.734375, 4.214943 ], [ -8.437500, 4.214943 ], [ -8.437500, 4.565474 ], [ -9.140625, 4.565474 ], [ -9.140625, 4.915833 ], [ -9.492188, 4.915833 ], [ -9.492188, 5.266008 ], [ -9.843750, 5.266008 ], [ -9.843750, 5.615986 ], [ -10.195312, 5.615986 ], [ -10.195312, 5.965754 ], [ -10.898438, 5.965754 ], [ -10.898438, 6.315299 ], [ -11.601562, 6.315299 ], [ -11.601562, 6.664608 ], [ -11.250000, 6.664608 ], [ -11.250000, 7.362467 ], [ -10.898438, 7.362467 ], [ -10.898438, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.059230 ], [ -10.195312, 8.059230 ], [ -10.195312, 8.407168 ], [ -9.843750, 8.407168 ], [ -9.843750, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 7.362467 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 7.362467 ], [ -8.789062, 7.362467 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 5.965754 ], [ -8.085938, 5.965754 ], [ -8.085938, 5.615986 ], [ -7.734375, 5.615986 ], [ -7.734375, 4.214943 ], [ -8.437500, 4.214943 ], [ -8.437500, 4.565474 ], [ -9.140625, 4.565474 ], [ -9.140625, 4.915833 ], [ -9.492188, 4.915833 ], [ -9.492188, 5.266008 ], [ -9.843750, 5.266008 ], [ -9.843750, 5.615986 ], [ -10.195312, 5.615986 ], [ -10.195312, 5.965754 ], [ -10.898438, 5.965754 ], [ -10.898438, 6.315299 ], [ -11.601562, 6.315299 ], [ -11.601562, 6.664608 ], [ -11.250000, 6.664608 ], [ -11.250000, 7.362467 ], [ -10.898438, 7.362467 ], [ -10.898438, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.059230 ], [ -10.195312, 8.059230 ], [ -10.195312, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 9.449062 ], [ -3.867188, 9.449062 ], [ -3.867188, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 8.754795 ], [ -2.460938, 8.754795 ], [ -2.460938, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 6.664608 ], [ -3.164062, 6.664608 ], [ -3.164062, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.867188, 4.915833 ], [ -3.867188, 5.266008 ], [ -4.921875, 5.266008 ], [ -4.921875, 4.915833 ], [ -5.976562, 4.915833 ], [ -5.976562, 4.565474 ], [ -6.679688, 4.565474 ], [ -6.679688, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 5.615986 ], [ -8.085938, 5.615986 ], [ -8.085938, 5.965754 ], [ -8.437500, 5.965754 ], [ -8.437500, 7.710992 ], [ -8.085938, 7.710992 ], [ -8.085938, 8.059230 ], [ -8.437500, 8.059230 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 8.754795 ], [ -8.085938, 8.754795 ], [ -8.085938, 9.449062 ], [ -8.437500, 9.449062 ], [ -8.437500, 9.795678 ], [ -8.085938, 9.795678 ], [ -8.085938, 10.141932 ], [ -6.679688, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.328125, 10.487812 ], [ -6.328125, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.449062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 10.487812 ], [ -6.328125, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.449062 ], [ -3.867188, 9.449062 ], [ -3.867188, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 8.754795 ], [ -2.460938, 8.754795 ], [ -2.460938, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 6.664608 ], [ -3.164062, 6.664608 ], [ -3.164062, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.867188, 4.915833 ], [ -3.867188, 5.266008 ], [ -4.921875, 5.266008 ], [ -4.921875, 4.915833 ], [ -5.976562, 4.915833 ], [ -5.976562, 4.565474 ], [ -6.679688, 4.565474 ], [ -6.679688, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 5.615986 ], [ -8.085938, 5.615986 ], [ -8.085938, 5.965754 ], [ -8.437500, 5.965754 ], [ -8.437500, 7.710992 ], [ -8.085938, 7.710992 ], [ -8.085938, 8.059230 ], [ -8.437500, 8.059230 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 8.754795 ], [ -8.085938, 8.754795 ], [ -8.085938, 9.449062 ], [ -8.437500, 9.449062 ], [ -8.437500, 9.795678 ], [ -8.085938, 9.795678 ], [ -8.085938, 10.141932 ], [ -6.679688, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.328125, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.054688, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 11.178402 ], [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.013668 ], [ 0.703125, 7.013668 ], [ 0.703125, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.266008 ], [ -0.351562, 5.266008 ], [ -0.351562, 4.915833 ], [ -1.406250, 4.915833 ], [ -1.406250, 4.565474 ], [ -2.812500, 4.565474 ], [ -2.812500, 5.615986 ], [ -3.164062, 5.615986 ], [ -3.164062, 6.664608 ], [ -2.812500, 6.664608 ], [ -2.812500, 7.710992 ], [ -2.460938, 7.710992 ], [ -2.460938, 8.754795 ], [ -2.812500, 8.754795 ], [ -2.812500, 10.833306 ], [ -1.757812, 10.833306 ], [ -1.757812, 11.178402 ], [ -1.054688, 11.178402 ], [ -1.054688, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.013668 ], [ 0.703125, 7.013668 ], [ 0.703125, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.266008 ], [ -0.351562, 5.266008 ], [ -0.351562, 4.915833 ], [ -1.406250, 4.915833 ], [ -1.406250, 4.565474 ], [ -2.812500, 4.565474 ], [ -2.812500, 5.615986 ], [ -3.164062, 5.615986 ], [ -3.164062, 6.664608 ], [ -2.812500, 6.664608 ], [ -2.812500, 7.710992 ], [ -2.460938, 7.710992 ], [ -2.460938, 8.754795 ], [ -2.812500, 8.754795 ], [ -2.812500, 10.833306 ], [ -1.757812, 10.833306 ], [ -1.757812, 11.178402 ], [ -1.054688, 11.178402 ], [ -1.054688, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.695312, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -80.859375, -1.757537 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 0.703107 ], [ -79.453125, 0.703107 ], [ -79.453125, 1.054628 ], [ -78.046875, 1.054628 ], [ -78.046875, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.351560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.046875, 1.054628 ], [ -78.046875, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -80.859375, -1.757537 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 0.703107 ], [ -79.453125, 0.703107 ], [ -79.453125, 1.054628 ], [ -78.046875, 1.054628 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.351560 ], [ -74.882812, -0.351560 ], [ -74.882812, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.351560 ], [ -74.882812, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.351560 ], [ -74.882812, -0.351560 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 4.214943 ], [ -59.414062, 4.214943 ], [ -59.414062, 3.513421 ], [ -59.765625, 3.513421 ], [ -59.765625, 3.162456 ], [ -60.117188, 3.162456 ], [ -60.117188, 2.460181 ], [ -59.765625, 2.460181 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 1.757537 ], [ -55.898438, 1.757537 ], [ -55.898438, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 2.108899 ], [ -53.789062, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.437500, 2.460181 ], [ -53.437500, 2.108899 ], [ -52.382812, 2.108899 ], [ -52.382812, 3.162456 ], [ -52.031250, 3.162456 ], [ -52.031250, 3.864255 ], [ -51.679688, 3.864255 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.864255 ], [ -50.976562, 3.864255 ], [ -50.976562, 2.460181 ], [ -50.625000, 2.460181 ], [ -50.625000, 1.757537 ], [ -49.921875, 1.757537 ], [ -49.921875, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.625000, 0.351560 ], [ -50.625000, 0.000000 ], [ -49.570312, 0.000000 ], [ -49.570312, -0.351560 ], [ -48.515625, -0.351560 ], [ -48.515625, -1.406109 ], [ -48.164062, -1.406109 ], [ -48.164062, -1.054628 ], [ -47.812500, -1.054628 ], [ -47.812500, -0.703107 ], [ -47.460938, -0.703107 ], [ -47.460938, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -69.609375, -1.757537 ], [ -69.609375, -1.406109 ], [ -69.257812, -1.406109 ], [ -69.257812, -1.054628 ], [ -69.609375, -1.054628 ], [ -69.609375, -0.703107 ], [ -69.960938, -0.703107 ], [ -69.960938, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 1.054628 ], [ -66.445312, 1.054628 ], [ -66.445312, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.054628 ], [ -64.687500, 1.054628 ], [ -64.687500, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 1.757537 ], [ -63.281250, 1.757537 ], [ -63.281250, 2.460181 ], [ -64.335938, 2.460181 ], [ -64.335938, 3.864255 ], [ -62.226562, 3.864255 ], [ -62.226562, 4.214943 ], [ -61.171875, 4.214943 ], [ -61.171875, 4.565474 ], [ -60.468750, 4.565474 ], [ -60.468750, 4.915833 ], [ -60.820312, 4.915833 ], [ -60.820312, 5.266008 ], [ -60.117188, 5.266008 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.565474 ], [ -59.765625, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.117188, 5.266008 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.565474 ], [ -59.765625, 4.214943 ], [ -59.414062, 4.214943 ], [ -59.414062, 3.513421 ], [ -59.765625, 3.513421 ], [ -59.765625, 3.162456 ], [ -60.117188, 3.162456 ], [ -60.117188, 2.460181 ], [ -59.765625, 2.460181 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 1.757537 ], [ -55.898438, 1.757537 ], [ -55.898438, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 2.108899 ], [ -53.789062, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.437500, 2.460181 ], [ -53.437500, 2.108899 ], [ -52.382812, 2.108899 ], [ -52.382812, 3.162456 ], [ -52.031250, 3.162456 ], [ -52.031250, 3.864255 ], [ -51.679688, 3.864255 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.864255 ], [ -50.976562, 3.864255 ], [ -50.976562, 2.460181 ], [ -50.625000, 2.460181 ], [ -50.625000, 1.757537 ], [ -49.921875, 1.757537 ], [ -49.921875, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.625000, 0.351560 ], [ -50.625000, 0.000000 ], [ -49.570312, 0.000000 ], [ -49.570312, -0.351560 ], [ -48.515625, -0.351560 ], [ -48.515625, -1.406109 ], [ -48.164062, -1.406109 ], [ -48.164062, -1.054628 ], [ -47.812500, -1.054628 ], [ -47.812500, -0.703107 ], [ -47.460938, -0.703107 ], [ -47.460938, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -69.609375, -1.757537 ], [ -69.609375, -1.406109 ], [ -69.257812, -1.406109 ], [ -69.257812, -1.054628 ], [ -69.609375, -1.054628 ], [ -69.609375, -0.703107 ], [ -69.960938, -0.703107 ], [ -69.960938, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 1.054628 ], [ -66.445312, 1.054628 ], [ -66.445312, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.054628 ], [ -64.687500, 1.054628 ], [ -64.687500, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 1.757537 ], [ -63.281250, 1.757537 ], [ -63.281250, 2.460181 ], [ -64.335938, 2.460181 ], [ -64.335938, 3.864255 ], [ -62.226562, 3.864255 ], [ -62.226562, 4.214943 ], [ -61.171875, 4.214943 ], [ -61.171875, 4.565474 ], [ -60.468750, 4.565474 ], [ -60.468750, 4.915833 ], [ -60.820312, 4.915833 ], [ -60.820312, 5.266008 ], [ -60.117188, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.289374 ], [ 0.351562, 21.289374 ], [ 0.351562, 21.616579 ], [ 0.000000, 21.616579 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 23.241346 ], [ -2.460938, 23.241346 ], [ -2.460938, 23.563987 ], [ -3.164062, 23.563987 ], [ -3.164062, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 24.206890 ], [ -4.218750, 24.206890 ], [ -4.218750, 24.527135 ], [ -4.921875, 24.527135 ], [ -4.921875, 24.846565 ], [ -5.273438, 24.846565 ], [ -5.273438, 25.165173 ], [ -5.976562, 25.165173 ], [ -5.976562, 25.482951 ], [ -6.328125, 25.482951 ], [ -6.328125, 25.799891 ], [ -6.679688, 25.799891 ], [ -6.679688, 26.115986 ], [ -7.382812, 26.115986 ], [ -7.382812, 26.431228 ], [ -7.734375, 26.431228 ], [ -7.734375, 26.745610 ], [ -8.085938, 26.745610 ], [ -8.085938, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 28.921631 ], [ -8.085938, 28.921631 ], [ -8.085938, 29.228890 ], [ -7.382812, 29.228890 ], [ -7.382812, 29.535230 ], [ -6.328125, 29.535230 ], [ -6.328125, 29.840644 ], [ -5.273438, 29.840644 ], [ -5.273438, 30.145127 ], [ -4.921875, 30.145127 ], [ -4.921875, 30.448674 ], [ -3.867188, 30.448674 ], [ -3.867188, 30.751278 ], [ -3.515625, 30.751278 ], [ -3.515625, 31.653381 ], [ -2.460938, 31.653381 ], [ -2.460938, 31.952162 ], [ -1.757812, 31.952162 ], [ -1.757812, 32.249974 ], [ -1.054688, 32.249974 ], [ -1.054688, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 35.173808 ], [ -1.757812, 35.173808 ], [ -1.757812, 35.460670 ], [ -1.054688, 35.460670 ], [ -1.054688, 35.746512 ], [ 0.000000, 35.746512 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 1.054688, 36.315125 ], [ 1.054688, 36.597889 ], [ 1.757812, 36.597889 ], [ 1.757812, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.597889 ], [ 1.757812, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.289374 ], [ 0.351562, 21.289374 ], [ 0.351562, 21.616579 ], [ 0.000000, 21.616579 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 23.241346 ], [ -2.460938, 23.241346 ], [ -2.460938, 23.563987 ], [ -3.164062, 23.563987 ], [ -3.164062, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 24.206890 ], [ -4.218750, 24.206890 ], [ -4.218750, 24.527135 ], [ -4.921875, 24.527135 ], [ -4.921875, 24.846565 ], [ -5.273438, 24.846565 ], [ -5.273438, 25.165173 ], [ -5.976562, 25.165173 ], [ -5.976562, 25.482951 ], [ -6.328125, 25.482951 ], [ -6.328125, 25.799891 ], [ -6.679688, 25.799891 ], [ -6.679688, 26.115986 ], [ -7.382812, 26.115986 ], [ -7.382812, 26.431228 ], [ -7.734375, 26.431228 ], [ -7.734375, 26.745610 ], [ -8.085938, 26.745610 ], [ -8.085938, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 28.921631 ], [ -8.085938, 28.921631 ], [ -8.085938, 29.228890 ], [ -7.382812, 29.228890 ], [ -7.382812, 29.535230 ], [ -6.328125, 29.535230 ], [ -6.328125, 29.840644 ], [ -5.273438, 29.840644 ], [ -5.273438, 30.145127 ], [ -4.921875, 30.145127 ], [ -4.921875, 30.448674 ], [ -3.867188, 30.448674 ], [ -3.867188, 30.751278 ], [ -3.515625, 30.751278 ], [ -3.515625, 31.653381 ], [ -2.460938, 31.653381 ], [ -2.460938, 31.952162 ], [ -1.757812, 31.952162 ], [ -1.757812, 32.249974 ], [ -1.054688, 32.249974 ], [ -1.054688, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 35.173808 ], [ -1.757812, 35.173808 ], [ -1.757812, 35.460670 ], [ -1.054688, 35.460670 ], [ -1.054688, 35.746512 ], [ 0.000000, 35.746512 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 1.054688, 36.315125 ], [ 1.054688, 36.597889 ], [ 1.757812, 36.597889 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 12.554564 ], [ 1.054688, 12.554564 ], [ 1.054688, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.581921 ], [ 0.351562, 13.581921 ], [ 0.351562, 14.944785 ], [ 1.406250, 14.944785 ], [ 1.406250, 15.284185 ], [ 1.757812, 15.284185 ], [ 1.757812, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.284185 ], [ 1.757812, 12.554564 ], [ 1.054688, 12.554564 ], [ 1.054688, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.581921 ], [ 0.351562, 13.581921 ], [ 0.351562, 14.944785 ], [ 1.406250, 14.944785 ], [ 1.406250, 15.284185 ], [ 1.757812, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 10.833306 ], [ 1.054688, 10.833306 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.757812, 9.102097 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 7.013668 ], [ 0.351562, 7.013668 ], [ 0.351562, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ], [ 0.351562, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 10.833306 ], [ 1.054688, 10.833306 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.757812, 9.102097 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 7.013668 ], [ 0.351562, 7.013668 ], [ 0.351562, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.054688, 9.795678 ], [ 1.054688, 10.141932 ], [ 0.703125, 10.141932 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.833306 ], [ 1.406250, 10.833306 ], [ 1.406250, 11.523088 ], [ 1.757812, 11.523088 ], [ 1.757812, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.523088 ], [ 1.757812, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.054688, 9.795678 ], [ 1.054688, 10.141932 ], [ 0.703125, 10.141932 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.833306 ], [ 1.406250, 10.833306 ], [ 1.406250, 11.523088 ], [ 1.757812, 11.523088 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.268695 ], [ -91.054688, 76.268695 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.930885 ], [ -91.757812, 75.930885 ], [ -91.757812, 76.679785 ], [ -91.406250, 76.679785 ], [ -91.406250, 76.598545 ] ] ], [ [ [ -85.429688, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 77.915669 ], [ -86.132812, 77.915669 ], [ -86.132812, 78.061989 ], [ -86.484375, 78.061989 ], [ -86.484375, 78.206563 ], [ -87.187500, 78.206563 ], [ -87.187500, 78.278201 ], [ -87.890625, 78.278201 ], [ -87.890625, 78.420193 ], [ -87.539062, 78.420193 ], [ -87.539062, 78.630006 ], [ -87.187500, 78.630006 ], [ -87.187500, 78.767792 ], [ -86.835938, 78.767792 ], [ -86.835938, 78.836065 ], [ -86.132812, 78.836065 ], [ -86.132812, 78.903929 ], [ -85.429688, 78.903929 ], [ -85.429688, 79.171335 ], [ -85.078125, 79.171335 ], [ -85.078125, 79.367701 ], [ -85.429688, 79.367701 ], [ -85.429688, 79.496652 ], [ -85.781250, 79.496652 ], [ -85.781250, 79.560546 ], [ -86.132812, 79.560546 ], [ -86.132812, 79.687184 ], [ -86.484375, 79.687184 ], [ -86.484375, 79.997168 ], [ -86.835938, 79.997168 ], [ -86.835938, 80.238501 ], [ -85.781250, 80.238501 ], [ -85.781250, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.118564 ], [ -82.968750, 80.118564 ], [ -82.968750, 80.238501 ], [ -82.617188, 80.238501 ], [ -82.617188, 80.297927 ], [ -82.265625, 80.297927 ], [ -82.265625, 80.415707 ], [ -81.914062, 80.415707 ], [ -81.914062, 80.474065 ], [ -82.617188, 80.474065 ], [ -82.617188, 80.532071 ], [ -83.671875, 80.532071 ], [ -83.671875, 80.589727 ], [ -85.429688, 80.589727 ], [ -85.429688, 80.532071 ], [ -87.890625, 80.532071 ], [ -87.890625, 80.589727 ], [ -88.242188, 80.589727 ], [ -88.242188, 80.703997 ], [ -88.593750, 80.703997 ], [ -88.593750, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.928426 ], [ -89.648438, 80.928426 ], [ -89.648438, 81.038617 ], [ -90.000000, 81.038617 ], [ -90.000000, 81.147481 ], [ -90.351562, 81.147481 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.873641 ], [ -91.406250, 81.873641 ], [ -91.406250, 81.923186 ], [ -91.054688, 81.923186 ], [ -91.054688, 81.972431 ], [ -90.351562, 81.972431 ], [ -90.351562, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.070028 ], [ -89.296875, 82.070028 ], [ -89.296875, 82.118384 ], [ -88.242188, 82.118384 ], [ -88.242188, 82.166446 ], [ -87.539062, 82.166446 ], [ -87.539062, 82.214217 ], [ -86.835938, 82.214217 ], [ -86.835938, 82.308893 ], [ -86.484375, 82.308893 ], [ -86.484375, 82.402423 ], [ -86.132812, 82.402423 ], [ -86.132812, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.586106 ], [ -85.429688, 82.586106 ], [ -85.429688, 82.631333 ], [ -85.078125, 82.631333 ], [ -85.078125, 82.586106 ], [ -84.375000, 82.586106 ], [ -84.375000, 82.540604 ], [ -84.023438, 82.540604 ], [ -84.023438, 82.448764 ], [ -83.671875, 82.448764 ], [ -83.671875, 82.355800 ], [ -83.320312, 82.355800 ], [ -83.320312, 82.402423 ], [ -82.968750, 82.402423 ], [ -82.968750, 82.586106 ], [ -82.617188, 82.586106 ], [ -82.617188, 82.765373 ], [ -82.265625, 82.765373 ], [ -82.265625, 82.853382 ], [ -81.914062, 82.853382 ], [ -81.914062, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 82.983404 ], [ -81.210938, 82.983404 ], [ -81.210938, 83.026219 ], [ -80.507812, 83.026219 ], [ -80.507812, 83.068774 ], [ -79.804688, 83.068774 ], [ -79.804688, 83.111071 ], [ -77.695312, 83.111071 ], [ -77.695312, 83.153111 ], [ -76.289062, 83.153111 ], [ -76.289062, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -74.882812, 83.068774 ], [ -74.882812, 83.111071 ], [ -74.179688, 83.111071 ], [ -74.179688, 83.153111 ], [ -73.476562, 83.153111 ], [ -73.476562, 83.194896 ], [ -72.773438, 83.194896 ], [ -72.773438, 83.236426 ], [ -72.421875, 83.236426 ], [ -72.421875, 83.194896 ], [ -71.367188, 83.194896 ], [ -71.367188, 83.153111 ], [ -69.960938, 83.153111 ], [ -69.960938, 83.111071 ], [ -68.203125, 83.111071 ], [ -68.203125, 83.068774 ], [ -66.796875, 83.068774 ], [ -66.796875, 83.026219 ], [ -65.742188, 83.026219 ], [ -65.742188, 82.983404 ], [ -65.039062, 82.983404 ], [ -65.039062, 82.940327 ], [ -64.335938, 82.940327 ], [ -64.335938, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.809511 ], [ -62.929688, 82.809511 ], [ -62.929688, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.676285 ], [ -62.226562, 82.676285 ], [ -62.226562, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.308893 ], [ -62.226562, 82.308893 ], [ -62.226562, 82.261699 ], [ -62.578125, 82.261699 ], [ -62.578125, 82.166446 ], [ -62.929688, 82.166446 ], [ -62.929688, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 82.070028 ], [ -63.632812, 82.070028 ], [ -63.632812, 81.972431 ], [ -63.984375, 81.972431 ], [ -63.984375, 81.923186 ], [ -64.335938, 81.923186 ], [ -64.335938, 81.873641 ], [ -65.039062, 81.873641 ], [ -65.039062, 81.823794 ], [ -65.742188, 81.823794 ], [ -65.742188, 81.773644 ], [ -66.445312, 81.773644 ], [ -66.445312, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.672424 ], [ -67.148438, 81.672424 ], [ -67.148438, 81.569968 ], [ -67.500000, 81.569968 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -65.390625, 81.466261 ], [ -65.742188, 81.466261 ], [ -65.742188, 81.361287 ], [ -66.093750, 81.361287 ], [ -66.093750, 81.255032 ], [ -66.445312, 81.255032 ], [ -66.445312, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 81.093214 ], [ -67.148438, 81.093214 ], [ -67.148438, 80.983688 ], [ -67.500000, 80.983688 ], [ -67.500000, 80.872827 ], [ -67.851562, 80.872827 ], [ -67.851562, 80.816891 ], [ -68.203125, 80.816891 ], [ -68.203125, 80.760615 ], [ -68.554688, 80.760615 ], [ -68.554688, 80.703997 ], [ -68.906250, 80.703997 ], [ -68.906250, 80.647035 ], [ -69.257812, 80.647035 ], [ -69.257812, 80.589727 ], [ -69.609375, 80.589727 ], [ -69.609375, 80.474065 ], [ -69.960938, 80.474065 ], [ -69.960938, 80.297927 ], [ -70.312500, 80.297927 ], [ -70.312500, 80.058050 ], [ -70.664062, 80.058050 ], [ -70.664062, 79.874297 ], [ -71.015625, 79.874297 ], [ -71.015625, 79.749932 ], [ -71.718750, 79.749932 ], [ -71.718750, 79.687184 ], [ -72.421875, 79.687184 ], [ -72.421875, 79.624056 ], [ -73.125000, 79.624056 ], [ -73.125000, 79.560546 ], [ -73.476562, 79.560546 ], [ -73.476562, 79.432371 ], [ -74.531250, 79.432371 ], [ -74.531250, 79.367701 ], [ -75.937500, 79.367701 ], [ -75.937500, 79.302640 ], [ -76.992188, 79.302640 ], [ -76.992188, 79.237185 ], [ -76.289062, 79.237185 ], [ -76.289062, 79.171335 ], [ -75.585938, 79.171335 ], [ -75.585938, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.038437 ], [ -76.289062, 79.038437 ], [ -76.289062, 78.903929 ], [ -75.937500, 78.903929 ], [ -75.937500, 78.767792 ], [ -75.585938, 78.767792 ], [ -75.585938, 78.630006 ], [ -75.234375, 78.630006 ], [ -75.234375, 78.490552 ], [ -75.585938, 78.490552 ], [ -75.585938, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.206563 ], [ -76.289062, 78.206563 ], [ -76.289062, 78.134493 ], [ -76.640625, 78.134493 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.989049 ], [ -77.695312, 77.989049 ], [ -77.695312, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.692870 ], [ -78.398438, 77.692870 ], [ -78.398438, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.389504 ], [ -79.101562, 77.389504 ], [ -79.101562, 77.312520 ], [ -79.453125, 77.312520 ], [ -79.453125, 77.235074 ], [ -79.804688, 77.235074 ], [ -79.804688, 77.078784 ], [ -79.453125, 77.078784 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.679785 ], [ -78.398438, 76.679785 ], [ -78.398438, 76.598545 ], [ -78.750000, 76.598545 ], [ -78.750000, 76.516819 ], [ -79.101562, 76.516819 ], [ -79.101562, 76.434604 ], [ -79.453125, 76.434604 ], [ -79.453125, 76.351896 ], [ -79.804688, 76.351896 ], [ -79.804688, 76.268695 ], [ -80.156250, 76.268695 ], [ -80.156250, 76.184995 ], [ -81.210938, 76.184995 ], [ -81.210938, 76.268695 ], [ -82.265625, 76.268695 ], [ -82.265625, 76.351896 ], [ -82.968750, 76.351896 ], [ -82.968750, 76.434604 ], [ -83.671875, 76.434604 ], [ -83.671875, 76.351896 ], [ -85.078125, 76.351896 ], [ -85.078125, 76.268695 ], [ -86.835938, 76.268695 ], [ -86.835938, 76.351896 ], [ -87.539062, 76.351896 ], [ -87.539062, 76.434604 ], [ -89.648438, 76.434604 ], [ -89.648438, 76.920614 ], [ -89.296875, 76.920614 ], [ -89.296875, 76.999935 ], [ -88.593750, 76.999935 ], [ -88.593750, 77.078784 ], [ -87.890625, 77.078784 ], [ -87.890625, 77.542096 ], [ -88.242188, 77.542096 ], [ -88.242188, 77.915669 ], [ -87.187500, 77.915669 ], [ -87.187500, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.767582 ], [ -86.132812, 77.767582 ], [ -86.132812, 77.692870 ], [ -85.781250, 77.692870 ], [ -85.781250, 77.617709 ], [ -85.429688, 77.617709 ], [ -85.429688, 77.767582 ] ], [ [ -85.429688, 77.542096 ], [ -85.078125, 77.542096 ], [ -85.078125, 77.617709 ], [ -85.429688, 77.617709 ], [ -85.429688, 77.542096 ] ] ], [ [ [ -91.406250, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -89.648438, 80.589727 ], [ -89.648438, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.356995 ], [ -88.242188, 80.356995 ], [ -88.242188, 80.297927 ], [ -87.890625, 80.297927 ], [ -87.890625, 80.118564 ], [ -87.539062, 80.118564 ], [ -87.539062, 79.812302 ], [ -87.187500, 79.812302 ], [ -87.187500, 79.624056 ], [ -86.835938, 79.624056 ], [ -86.835938, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.432371 ], [ -86.132812, 79.432371 ], [ -86.132812, 79.367701 ], [ -85.781250, 79.367701 ], [ -85.781250, 79.302640 ], [ -86.132812, 79.302640 ], [ -86.132812, 79.237185 ], [ -86.484375, 79.237185 ], [ -86.484375, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 78.903929 ], [ -87.539062, 78.903929 ], [ -87.539062, 78.767792 ], [ -87.890625, 78.767792 ], [ -87.890625, 78.630006 ], [ -88.242188, 78.630006 ], [ -88.242188, 78.490552 ], [ -88.593750, 78.490552 ], [ -88.593750, 78.349411 ], [ -88.945312, 78.349411 ], [ -88.945312, 78.278201 ], [ -89.648438, 78.278201 ], [ -89.648438, 78.206563 ], [ -91.406250, 78.206563 ], [ -91.406250, 78.278201 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.760615 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.406250, 76.679785 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.268695 ], [ -91.054688, 76.268695 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.930885 ], [ -91.757812, 75.930885 ], [ -91.757812, 76.679785 ], [ -91.406250, 76.679785 ] ] ], [ [ [ -85.429688, 77.617709 ], [ -85.429688, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 77.915669 ], [ -86.132812, 77.915669 ], [ -86.132812, 78.061989 ], [ -86.484375, 78.061989 ], [ -86.484375, 78.206563 ], [ -87.187500, 78.206563 ], [ -87.187500, 78.278201 ], [ -87.890625, 78.278201 ], [ -87.890625, 78.420193 ], [ -87.539062, 78.420193 ], [ -87.539062, 78.630006 ], [ -87.187500, 78.630006 ], [ -87.187500, 78.767792 ], [ -86.835938, 78.767792 ], [ -86.835938, 78.836065 ], [ -86.132812, 78.836065 ], [ -86.132812, 78.903929 ], [ -85.429688, 78.903929 ], [ -85.429688, 79.171335 ], [ -85.078125, 79.171335 ], [ -85.078125, 79.367701 ], [ -85.429688, 79.367701 ], [ -85.429688, 79.496652 ], [ -85.781250, 79.496652 ], [ -85.781250, 79.560546 ], [ -86.132812, 79.560546 ], [ -86.132812, 79.687184 ], [ -86.484375, 79.687184 ], [ -86.484375, 79.997168 ], [ -86.835938, 79.997168 ], [ -86.835938, 80.238501 ], [ -85.781250, 80.238501 ], [ -85.781250, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.118564 ], [ -82.968750, 80.118564 ], [ -82.968750, 80.238501 ], [ -82.617188, 80.238501 ], [ -82.617188, 80.297927 ], [ -82.265625, 80.297927 ], [ -82.265625, 80.415707 ], [ -81.914062, 80.415707 ], [ -81.914062, 80.474065 ], [ -82.617188, 80.474065 ], [ -82.617188, 80.532071 ], [ -83.671875, 80.532071 ], [ -83.671875, 80.589727 ], [ -85.429688, 80.589727 ], [ -85.429688, 80.532071 ], [ -87.890625, 80.532071 ], [ -87.890625, 80.589727 ], [ -88.242188, 80.589727 ], [ -88.242188, 80.703997 ], [ -88.593750, 80.703997 ], [ -88.593750, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.928426 ], [ -89.648438, 80.928426 ], [ -89.648438, 81.038617 ], [ -90.000000, 81.038617 ], [ -90.000000, 81.147481 ], [ -90.351562, 81.147481 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.873641 ], [ -91.406250, 81.873641 ], [ -91.406250, 81.923186 ], [ -91.054688, 81.923186 ], [ -91.054688, 81.972431 ], [ -90.351562, 81.972431 ], [ -90.351562, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.070028 ], [ -89.296875, 82.070028 ], [ -89.296875, 82.118384 ], [ -88.242188, 82.118384 ], [ -88.242188, 82.166446 ], [ -87.539062, 82.166446 ], [ -87.539062, 82.214217 ], [ -86.835938, 82.214217 ], [ -86.835938, 82.308893 ], [ -86.484375, 82.308893 ], [ -86.484375, 82.402423 ], [ -86.132812, 82.402423 ], [ -86.132812, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.586106 ], [ -85.429688, 82.586106 ], [ -85.429688, 82.631333 ], [ -85.078125, 82.631333 ], [ -85.078125, 82.586106 ], [ -84.375000, 82.586106 ], [ -84.375000, 82.540604 ], [ -84.023438, 82.540604 ], [ -84.023438, 82.448764 ], [ -83.671875, 82.448764 ], [ -83.671875, 82.355800 ], [ -83.320312, 82.355800 ], [ -83.320312, 82.402423 ], [ -82.968750, 82.402423 ], [ -82.968750, 82.586106 ], [ -82.617188, 82.586106 ], [ -82.617188, 82.765373 ], [ -82.265625, 82.765373 ], [ -82.265625, 82.853382 ], [ -81.914062, 82.853382 ], [ -81.914062, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 82.983404 ], [ -81.210938, 82.983404 ], [ -81.210938, 83.026219 ], [ -80.507812, 83.026219 ], [ -80.507812, 83.068774 ], [ -79.804688, 83.068774 ], [ -79.804688, 83.111071 ], [ -77.695312, 83.111071 ], [ -77.695312, 83.153111 ], [ -76.289062, 83.153111 ], [ -76.289062, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -74.882812, 83.068774 ], [ -74.882812, 83.111071 ], [ -74.179688, 83.111071 ], [ -74.179688, 83.153111 ], [ -73.476562, 83.153111 ], [ -73.476562, 83.194896 ], [ -72.773438, 83.194896 ], [ -72.773438, 83.236426 ], [ -72.421875, 83.236426 ], [ -72.421875, 83.194896 ], [ -71.367188, 83.194896 ], [ -71.367188, 83.153111 ], [ -69.960938, 83.153111 ], [ -69.960938, 83.111071 ], [ -68.203125, 83.111071 ], [ -68.203125, 83.068774 ], [ -66.796875, 83.068774 ], [ -66.796875, 83.026219 ], [ -65.742188, 83.026219 ], [ -65.742188, 82.983404 ], [ -65.039062, 82.983404 ], [ -65.039062, 82.940327 ], [ -64.335938, 82.940327 ], [ -64.335938, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.809511 ], [ -62.929688, 82.809511 ], [ -62.929688, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.676285 ], [ -62.226562, 82.676285 ], [ -62.226562, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.308893 ], [ -62.226562, 82.308893 ], [ -62.226562, 82.261699 ], [ -62.578125, 82.261699 ], [ -62.578125, 82.166446 ], [ -62.929688, 82.166446 ], [ -62.929688, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 82.070028 ], [ -63.632812, 82.070028 ], [ -63.632812, 81.972431 ], [ -63.984375, 81.972431 ], [ -63.984375, 81.923186 ], [ -64.335938, 81.923186 ], [ -64.335938, 81.873641 ], [ -65.039062, 81.873641 ], [ -65.039062, 81.823794 ], [ -65.742188, 81.823794 ], [ -65.742188, 81.773644 ], [ -66.445312, 81.773644 ], [ -66.445312, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.672424 ], [ -67.148438, 81.672424 ], [ -67.148438, 81.569968 ], [ -67.500000, 81.569968 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -65.390625, 81.466261 ], [ -65.742188, 81.466261 ], [ -65.742188, 81.361287 ], [ -66.093750, 81.361287 ], [ -66.093750, 81.255032 ], [ -66.445312, 81.255032 ], [ -66.445312, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 81.093214 ], [ -67.148438, 81.093214 ], [ -67.148438, 80.983688 ], [ -67.500000, 80.983688 ], [ -67.500000, 80.872827 ], [ -67.851562, 80.872827 ], [ -67.851562, 80.816891 ], [ -68.203125, 80.816891 ], [ -68.203125, 80.760615 ], [ -68.554688, 80.760615 ], [ -68.554688, 80.703997 ], [ -68.906250, 80.703997 ], [ -68.906250, 80.647035 ], [ -69.257812, 80.647035 ], [ -69.257812, 80.589727 ], [ -69.609375, 80.589727 ], [ -69.609375, 80.474065 ], [ -69.960938, 80.474065 ], [ -69.960938, 80.297927 ], [ -70.312500, 80.297927 ], [ -70.312500, 80.058050 ], [ -70.664062, 80.058050 ], [ -70.664062, 79.874297 ], [ -71.015625, 79.874297 ], [ -71.015625, 79.749932 ], [ -71.718750, 79.749932 ], [ -71.718750, 79.687184 ], [ -72.421875, 79.687184 ], [ -72.421875, 79.624056 ], [ -73.125000, 79.624056 ], [ -73.125000, 79.560546 ], [ -73.476562, 79.560546 ], [ -73.476562, 79.432371 ], [ -74.531250, 79.432371 ], [ -74.531250, 79.367701 ], [ -75.937500, 79.367701 ], [ -75.937500, 79.302640 ], [ -76.992188, 79.302640 ], [ -76.992188, 79.237185 ], [ -76.289062, 79.237185 ], [ -76.289062, 79.171335 ], [ -75.585938, 79.171335 ], [ -75.585938, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.038437 ], [ -76.289062, 79.038437 ], [ -76.289062, 78.903929 ], [ -75.937500, 78.903929 ], [ -75.937500, 78.767792 ], [ -75.585938, 78.767792 ], [ -75.585938, 78.630006 ], [ -75.234375, 78.630006 ], [ -75.234375, 78.490552 ], [ -75.585938, 78.490552 ], [ -75.585938, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.206563 ], [ -76.289062, 78.206563 ], [ -76.289062, 78.134493 ], [ -76.640625, 78.134493 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.989049 ], [ -77.695312, 77.989049 ], [ -77.695312, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.692870 ], [ -78.398438, 77.692870 ], [ -78.398438, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.389504 ], [ -79.101562, 77.389504 ], [ -79.101562, 77.312520 ], [ -79.453125, 77.312520 ], [ -79.453125, 77.235074 ], [ -79.804688, 77.235074 ], [ -79.804688, 77.078784 ], [ -79.453125, 77.078784 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.679785 ], [ -78.398438, 76.679785 ], [ -78.398438, 76.598545 ], [ -78.750000, 76.598545 ], [ -78.750000, 76.516819 ], [ -79.101562, 76.516819 ], [ -79.101562, 76.434604 ], [ -79.453125, 76.434604 ], [ -79.453125, 76.351896 ], [ -79.804688, 76.351896 ], [ -79.804688, 76.268695 ], [ -80.156250, 76.268695 ], [ -80.156250, 76.184995 ], [ -81.210938, 76.184995 ], [ -81.210938, 76.268695 ], [ -82.265625, 76.268695 ], [ -82.265625, 76.351896 ], [ -82.968750, 76.351896 ], [ -82.968750, 76.434604 ], [ -83.671875, 76.434604 ], [ -83.671875, 76.351896 ], [ -85.078125, 76.351896 ], [ -85.078125, 76.268695 ], [ -86.835938, 76.268695 ], [ -86.835938, 76.351896 ], [ -87.539062, 76.351896 ], [ -87.539062, 76.434604 ], [ -89.648438, 76.434604 ], [ -89.648438, 76.920614 ], [ -89.296875, 76.920614 ], [ -89.296875, 76.999935 ], [ -88.593750, 76.999935 ], [ -88.593750, 77.078784 ], [ -87.890625, 77.078784 ], [ -87.890625, 77.542096 ], [ -88.242188, 77.542096 ], [ -88.242188, 77.915669 ], [ -87.187500, 77.915669 ], [ -87.187500, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.767582 ], [ -86.132812, 77.767582 ], [ -86.132812, 77.692870 ], [ -85.781250, 77.692870 ], [ -85.781250, 77.617709 ], [ -85.429688, 77.617709 ] ], [ [ -85.429688, 77.617709 ], [ -85.429688, 77.542096 ], [ -85.078125, 77.542096 ], [ -85.078125, 77.617709 ], [ -85.429688, 77.617709 ] ] ], [ [ [ -91.406250, 80.872827 ], [ -91.406250, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -89.648438, 80.589727 ], [ -89.648438, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.356995 ], [ -88.242188, 80.356995 ], [ -88.242188, 80.297927 ], [ -87.890625, 80.297927 ], [ -87.890625, 80.118564 ], [ -87.539062, 80.118564 ], [ -87.539062, 79.812302 ], [ -87.187500, 79.812302 ], [ -87.187500, 79.624056 ], [ -86.835938, 79.624056 ], [ -86.835938, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.432371 ], [ -86.132812, 79.432371 ], [ -86.132812, 79.367701 ], [ -85.781250, 79.367701 ], [ -85.781250, 79.302640 ], [ -86.132812, 79.302640 ], [ -86.132812, 79.237185 ], [ -86.484375, 79.237185 ], [ -86.484375, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 78.903929 ], [ -87.539062, 78.903929 ], [ -87.539062, 78.767792 ], [ -87.890625, 78.767792 ], [ -87.890625, 78.630006 ], [ -88.242188, 78.630006 ], [ -88.242188, 78.490552 ], [ -88.593750, 78.490552 ], [ -88.593750, 78.349411 ], [ -88.945312, 78.349411 ], [ -88.945312, 78.278201 ], [ -89.648438, 78.278201 ], [ -89.648438, 78.206563 ], [ -91.406250, 78.206563 ], [ -91.406250, 78.278201 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.872827 ], [ -91.406250, 80.872827 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 68.656555 ], [ -87.890625, 68.656555 ], [ -87.890625, 68.269387 ], [ -88.242188, 68.269387 ], [ -88.242188, 67.742759 ], [ -87.890625, 67.742759 ], [ -87.890625, 67.474922 ], [ -87.539062, 67.474922 ], [ -87.539062, 67.204032 ], [ -86.835938, 67.204032 ], [ -86.835938, 67.474922 ], [ -86.484375, 67.474922 ], [ -86.484375, 67.742759 ], [ -86.132812, 67.742759 ], [ -86.132812, 68.007571 ], [ -85.781250, 68.007571 ], [ -85.781250, 68.528235 ], [ -85.429688, 68.528235 ], [ -85.429688, 69.900118 ], [ -85.078125, 69.900118 ], [ -85.078125, 69.778952 ], [ -83.671875, 69.778952 ], [ -83.671875, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.411242 ], [ -81.914062, 69.411242 ], [ -81.914062, 69.287257 ], [ -81.562500, 69.287257 ], [ -81.562500, 69.162558 ], [ -81.210938, 69.162558 ], [ -81.210938, 68.528235 ], [ -81.562500, 68.528235 ], [ -81.562500, 68.269387 ], [ -81.914062, 68.269387 ], [ -81.914062, 68.007571 ], [ -81.562500, 68.007571 ], [ -81.562500, 67.742759 ], [ -81.210938, 67.742759 ], [ -81.210938, 66.930060 ], [ -81.562500, 66.930060 ], [ -81.562500, 66.791909 ], [ -81.914062, 66.791909 ], [ -81.914062, 66.652977 ], [ -82.617188, 66.652977 ], [ -82.617188, 66.513260 ], [ -82.968750, 66.513260 ], [ -82.968750, 66.372755 ], [ -83.671875, 66.372755 ], [ -83.671875, 66.231457 ], [ -85.078125, 66.231457 ], [ -85.078125, 66.372755 ], [ -85.781250, 66.372755 ], [ -85.781250, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.657086 ], [ -91.406250, 69.657086 ], [ -91.406250, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 69.037142 ], [ -88.593750, 69.037142 ], [ -88.593750, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 68.656555 ] ] ], [ [ [ -86.132812, 72.607120 ], [ -85.429688, 72.607120 ], [ -85.429688, 72.919635 ], [ -85.078125, 72.919635 ], [ -85.078125, 73.124945 ], [ -84.726562, 73.124945 ], [ -84.726562, 73.327858 ], [ -84.375000, 73.327858 ], [ -84.375000, 73.428424 ], [ -83.671875, 73.428424 ], [ -83.671875, 73.528399 ], [ -82.968750, 73.528399 ], [ -82.968750, 73.627789 ], [ -81.914062, 73.627789 ], [ -81.914062, 73.428424 ], [ -81.562500, 73.428424 ], [ -81.562500, 73.226700 ], [ -81.210938, 73.226700 ], [ -81.210938, 73.022592 ], [ -80.859375, 73.022592 ], [ -80.859375, 72.816074 ], [ -80.507812, 72.816074 ], [ -80.507812, 72.395706 ], [ -80.859375, 72.395706 ], [ -80.859375, 72.073911 ], [ -80.156250, 72.073911 ], [ -80.156250, 72.181804 ], [ -79.453125, 72.181804 ], [ -79.453125, 72.289067 ], [ -78.750000, 72.289067 ], [ -78.750000, 72.395706 ], [ -78.398438, 72.395706 ], [ -78.398438, 72.501722 ], [ -78.046875, 72.501722 ], [ -78.046875, 72.607120 ], [ -76.992188, 72.607120 ], [ -76.992188, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 72.289067 ], [ -75.585938, 72.289067 ], [ -75.585938, 72.181804 ], [ -75.234375, 72.181804 ], [ -75.234375, 72.073911 ], [ -74.882812, 72.073911 ], [ -74.882812, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.746432 ], [ -74.179688, 71.746432 ], [ -74.179688, 71.300793 ], [ -73.476562, 71.300793 ], [ -73.476562, 71.413177 ], [ -72.421875, 71.413177 ], [ -72.421875, 71.524909 ], [ -72.070312, 71.524909 ], [ -72.070312, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 71.074056 ], [ -71.367188, 71.074056 ], [ -71.367188, 70.844673 ], [ -70.664062, 70.844673 ], [ -70.664062, 70.728979 ], [ -69.960938, 70.728979 ], [ -69.960938, 70.612614 ], [ -69.257812, 70.612614 ], [ -69.257812, 70.495574 ], [ -68.906250, 70.495574 ], [ -68.906250, 70.377854 ], [ -68.554688, 70.377854 ], [ -68.554688, 70.259452 ], [ -68.203125, 70.259452 ], [ -68.203125, 70.140364 ], [ -67.851562, 70.140364 ], [ -67.851562, 69.900118 ], [ -67.500000, 69.900118 ], [ -67.500000, 69.657086 ], [ -67.148438, 69.657086 ], [ -67.148438, 69.287257 ], [ -66.796875, 69.287257 ], [ -66.796875, 69.037142 ], [ -67.500000, 69.037142 ], [ -67.500000, 68.911005 ], [ -67.851562, 68.911005 ], [ -67.851562, 68.784144 ], [ -68.554688, 68.784144 ], [ -68.554688, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.528235 ], [ -68.203125, 68.528235 ], [ -68.203125, 68.399180 ], [ -67.851562, 68.399180 ], [ -67.851562, 68.269387 ], [ -67.500000, 68.269387 ], [ -67.500000, 68.138852 ], [ -66.796875, 68.138852 ], [ -66.796875, 68.007571 ], [ -65.742188, 68.007571 ], [ -65.742188, 67.875541 ], [ -64.687500, 67.875541 ], [ -64.687500, 67.742759 ], [ -64.335938, 67.742759 ], [ -64.335938, 67.474922 ], [ -63.984375, 67.474922 ], [ -63.984375, 67.204032 ], [ -63.632812, 67.204032 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 66.089364 ], [ -66.445312, 66.089364 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.372755 ], [ -67.148438, 66.372755 ], [ -67.148438, 66.231457 ], [ -67.851562, 66.231457 ], [ -67.851562, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.802776 ], [ -74.179688, 65.802776 ], [ -74.179688, 66.089364 ], [ -73.828125, 66.089364 ], [ -73.828125, 66.513260 ], [ -73.476562, 66.513260 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.742759 ], [ -73.125000, 67.742759 ], [ -73.125000, 67.875541 ], [ -73.476562, 67.875541 ], [ -73.476562, 68.007571 ], [ -73.828125, 68.007571 ], [ -73.828125, 68.138852 ], [ -74.179688, 68.138852 ], [ -74.179688, 68.269387 ], [ -74.531250, 68.269387 ], [ -74.531250, 68.399180 ], [ -74.882812, 68.399180 ], [ -74.882812, 68.528235 ], [ -75.585938, 68.528235 ], [ -75.585938, 68.656555 ], [ -76.289062, 68.656555 ], [ -76.289062, 68.784144 ], [ -76.992188, 68.784144 ], [ -76.992188, 68.911005 ], [ -76.640625, 68.911005 ], [ -76.640625, 69.037142 ], [ -76.289062, 69.037142 ], [ -76.289062, 69.162558 ], [ -76.640625, 69.162558 ], [ -76.640625, 69.411242 ], [ -76.992188, 69.411242 ], [ -76.992188, 69.657086 ], [ -77.343750, 69.657086 ], [ -77.343750, 69.778952 ], [ -78.398438, 69.778952 ], [ -78.398438, 69.900118 ], [ -78.750000, 69.900118 ], [ -78.750000, 70.020587 ], [ -79.453125, 70.020587 ], [ -79.453125, 69.900118 ], [ -80.156250, 69.900118 ], [ -80.156250, 69.778952 ], [ -82.265625, 69.778952 ], [ -82.265625, 69.900118 ], [ -84.375000, 69.900118 ], [ -84.375000, 70.020587 ], [ -85.781250, 70.020587 ], [ -85.781250, 70.140364 ], [ -86.835938, 70.140364 ], [ -86.835938, 70.259452 ], [ -88.242188, 70.259452 ], [ -88.242188, 70.377854 ], [ -88.945312, 70.377854 ], [ -88.945312, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.612614 ], [ -89.648438, 70.612614 ], [ -89.648438, 70.728979 ], [ -89.296875, 70.728979 ], [ -89.296875, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.187754 ], [ -90.000000, 71.187754 ], [ -90.000000, 71.635993 ], [ -90.351562, 71.635993 ], [ -90.351562, 72.289067 ], [ -90.000000, 72.289067 ], [ -90.000000, 72.607120 ], [ -89.648438, 72.607120 ], [ -89.648438, 72.919635 ], [ -89.296875, 72.919635 ], [ -89.296875, 73.124945 ], [ -88.945312, 73.124945 ], [ -88.945312, 73.327858 ], [ -88.593750, 73.327858 ], [ -88.593750, 73.428424 ], [ -88.242188, 73.428424 ], [ -88.242188, 73.528399 ], [ -87.539062, 73.528399 ], [ -87.539062, 73.627789 ], [ -86.835938, 73.627789 ], [ -86.835938, 73.726595 ], [ -86.132812, 73.726595 ], [ -86.132812, 73.824820 ], [ -85.781250, 73.824820 ], [ -85.781250, 73.627789 ], [ -86.132812, 73.627789 ], [ -86.132812, 73.226700 ], [ -86.484375, 73.226700 ], [ -86.484375, 72.919635 ], [ -86.132812, 72.919635 ], [ -86.132812, 72.607120 ] ] ], [ [ [ -75.234375, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.204032 ], [ -76.289062, 67.204032 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.742759 ], [ -76.992188, 67.742759 ], [ -76.992188, 68.007571 ], [ -76.640625, 68.007571 ], [ -76.640625, 68.138852 ], [ -75.585938, 68.138852 ], [ -75.585938, 68.007571 ], [ -75.234375, 68.007571 ], [ -75.234375, 67.339861 ] ] ], [ [ [ -79.453125, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.327858 ], [ -76.992188, 73.327858 ], [ -76.992188, 73.226700 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.124945 ], [ -76.289062, 73.124945 ], [ -76.289062, 72.816074 ], [ -78.046875, 72.816074 ], [ -78.046875, 72.919635 ], [ -78.398438, 72.919635 ], [ -78.398438, 72.816074 ], [ -79.101562, 72.816074 ], [ -79.101562, 72.711903 ], [ -79.804688, 72.711903 ], [ -79.804688, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.022592 ], [ -80.507812, 73.022592 ], [ -80.507812, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.726595 ], [ -79.453125, 73.726595 ], [ -79.453125, 73.627789 ] ] ], [ [ [ -91.054688, 73.824820 ], [ -90.351562, 73.824820 ], [ -90.351562, 73.726595 ], [ -90.703125, 73.726595 ], [ -90.703125, 73.528399 ], [ -91.054688, 73.528399 ], [ -91.054688, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 73.922469 ], [ -91.054688, 73.922469 ], [ -91.054688, 73.824820 ] ] ], [ [ [ -81.210938, 75.584937 ], [ -80.859375, 75.584937 ], [ -80.859375, 75.497157 ], [ -80.507812, 75.497157 ], [ -80.507812, 75.320025 ], [ -80.156250, 75.320025 ], [ -80.156250, 75.140778 ], [ -79.804688, 75.140778 ], [ -79.804688, 74.867889 ], [ -80.156250, 74.867889 ], [ -80.156250, 74.683250 ], [ -80.507812, 74.683250 ], [ -80.507812, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.496413 ], [ -81.562500, 74.496413 ], [ -81.562500, 74.402163 ], [ -82.617188, 74.402163 ], [ -82.617188, 74.496413 ], [ -83.320312, 74.496413 ], [ -83.320312, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.496413 ], [ -85.078125, 74.496413 ], [ -85.078125, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.496413 ], [ -90.351562, 74.496413 ], [ -90.351562, 74.590108 ], [ -91.054688, 74.590108 ], [ -91.054688, 74.683250 ], [ -91.757812, 74.683250 ], [ -91.757812, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.584937 ], [ -87.539062, 75.584937 ], [ -87.539062, 75.497157 ], [ -85.781250, 75.497157 ], [ -85.781250, 75.584937 ], [ -85.078125, 75.584937 ], [ -85.078125, 75.672197 ], [ -83.320312, 75.672197 ], [ -83.320312, 75.758940 ], [ -82.265625, 75.758940 ], [ -82.265625, 75.672197 ], [ -81.210938, 75.672197 ], [ -81.210938, 75.584937 ] ] ], [ [ [ -91.406250, 70.259452 ], [ -91.406250, 70.020587 ], [ -91.757812, 70.020587 ], [ -91.757812, 70.259452 ], [ -91.406250, 70.259452 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.078125, 69.900118 ], [ -85.078125, 69.778952 ], [ -83.671875, 69.778952 ], [ -83.671875, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.411242 ], [ -81.914062, 69.411242 ], [ -81.914062, 69.287257 ], [ -81.562500, 69.287257 ], [ -81.562500, 69.162558 ], [ -81.210938, 69.162558 ], [ -81.210938, 68.528235 ], [ -81.562500, 68.528235 ], [ -81.562500, 68.269387 ], [ -81.914062, 68.269387 ], [ -81.914062, 68.007571 ], [ -81.562500, 68.007571 ], [ -81.562500, 67.742759 ], [ -81.210938, 67.742759 ], [ -81.210938, 66.930060 ], [ -81.562500, 66.930060 ], [ -81.562500, 66.791909 ], [ -81.914062, 66.791909 ], [ -81.914062, 66.652977 ], [ -82.617188, 66.652977 ], [ -82.617188, 66.513260 ], [ -82.968750, 66.513260 ], [ -82.968750, 66.372755 ], [ -83.671875, 66.372755 ], [ -83.671875, 66.231457 ], [ -85.078125, 66.231457 ], [ -85.078125, 66.372755 ], [ -85.781250, 66.372755 ], [ -85.781250, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.657086 ], [ -91.406250, 69.657086 ], [ -91.406250, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 69.037142 ], [ -88.593750, 69.037142 ], [ -88.593750, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 68.656555 ], [ -87.890625, 68.656555 ], [ -87.890625, 68.269387 ], [ -88.242188, 68.269387 ], [ -88.242188, 67.742759 ], [ -87.890625, 67.742759 ], [ -87.890625, 67.474922 ], [ -87.539062, 67.474922 ], [ -87.539062, 67.204032 ], [ -86.835938, 67.204032 ], [ -86.835938, 67.474922 ], [ -86.484375, 67.474922 ], [ -86.484375, 67.742759 ], [ -86.132812, 67.742759 ], [ -86.132812, 68.007571 ], [ -85.781250, 68.007571 ], [ -85.781250, 68.528235 ], [ -85.429688, 68.528235 ], [ -85.429688, 69.900118 ], [ -85.078125, 69.900118 ] ] ], [ [ [ -85.781250, 73.824820 ], [ -85.781250, 73.627789 ], [ -86.132812, 73.627789 ], [ -86.132812, 73.226700 ], [ -86.484375, 73.226700 ], [ -86.484375, 72.919635 ], [ -86.132812, 72.919635 ], [ -86.132812, 72.607120 ], [ -85.429688, 72.607120 ], [ -85.429688, 72.919635 ], [ -85.078125, 72.919635 ], [ -85.078125, 73.124945 ], [ -84.726562, 73.124945 ], [ -84.726562, 73.327858 ], [ -84.375000, 73.327858 ], [ -84.375000, 73.428424 ], [ -83.671875, 73.428424 ], [ -83.671875, 73.528399 ], [ -82.968750, 73.528399 ], [ -82.968750, 73.627789 ], [ -81.914062, 73.627789 ], [ -81.914062, 73.428424 ], [ -81.562500, 73.428424 ], [ -81.562500, 73.226700 ], [ -81.210938, 73.226700 ], [ -81.210938, 73.022592 ], [ -80.859375, 73.022592 ], [ -80.859375, 72.816074 ], [ -80.507812, 72.816074 ], [ -80.507812, 72.395706 ], [ -80.859375, 72.395706 ], [ -80.859375, 72.073911 ], [ -80.156250, 72.073911 ], [ -80.156250, 72.181804 ], [ -79.453125, 72.181804 ], [ -79.453125, 72.289067 ], [ -78.750000, 72.289067 ], [ -78.750000, 72.395706 ], [ -78.398438, 72.395706 ], [ -78.398438, 72.501722 ], [ -78.046875, 72.501722 ], [ -78.046875, 72.607120 ], [ -76.992188, 72.607120 ], [ -76.992188, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 72.289067 ], [ -75.585938, 72.289067 ], [ -75.585938, 72.181804 ], [ -75.234375, 72.181804 ], [ -75.234375, 72.073911 ], [ -74.882812, 72.073911 ], [ -74.882812, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.746432 ], [ -74.179688, 71.746432 ], [ -74.179688, 71.300793 ], [ -73.476562, 71.300793 ], [ -73.476562, 71.413177 ], [ -72.421875, 71.413177 ], [ -72.421875, 71.524909 ], [ -72.070312, 71.524909 ], [ -72.070312, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 71.074056 ], [ -71.367188, 71.074056 ], [ -71.367188, 70.844673 ], [ -70.664062, 70.844673 ], [ -70.664062, 70.728979 ], [ -69.960938, 70.728979 ], [ -69.960938, 70.612614 ], [ -69.257812, 70.612614 ], [ -69.257812, 70.495574 ], [ -68.906250, 70.495574 ], [ -68.906250, 70.377854 ], [ -68.554688, 70.377854 ], [ -68.554688, 70.259452 ], [ -68.203125, 70.259452 ], [ -68.203125, 70.140364 ], [ -67.851562, 70.140364 ], [ -67.851562, 69.900118 ], [ -67.500000, 69.900118 ], [ -67.500000, 69.657086 ], [ -67.148438, 69.657086 ], [ -67.148438, 69.287257 ], [ -66.796875, 69.287257 ], [ -66.796875, 69.037142 ], [ -67.500000, 69.037142 ], [ -67.500000, 68.911005 ], [ -67.851562, 68.911005 ], [ -67.851562, 68.784144 ], [ -68.554688, 68.784144 ], [ -68.554688, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.528235 ], [ -68.203125, 68.528235 ], [ -68.203125, 68.399180 ], [ -67.851562, 68.399180 ], [ -67.851562, 68.269387 ], [ -67.500000, 68.269387 ], [ -67.500000, 68.138852 ], [ -66.796875, 68.138852 ], [ -66.796875, 68.007571 ], [ -65.742188, 68.007571 ], [ -65.742188, 67.875541 ], [ -64.687500, 67.875541 ], [ -64.687500, 67.742759 ], [ -64.335938, 67.742759 ], [ -64.335938, 67.474922 ], [ -63.984375, 67.474922 ], [ -63.984375, 67.204032 ], [ -63.632812, 67.204032 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 66.089364 ], [ -66.445312, 66.089364 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.372755 ], [ -67.148438, 66.372755 ], [ -67.148438, 66.231457 ], [ -67.851562, 66.231457 ], [ -67.851562, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.802776 ], [ -74.179688, 65.802776 ], [ -74.179688, 66.089364 ], [ -73.828125, 66.089364 ], [ -73.828125, 66.513260 ], [ -73.476562, 66.513260 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.742759 ], [ -73.125000, 67.742759 ], [ -73.125000, 67.875541 ], [ -73.476562, 67.875541 ], [ -73.476562, 68.007571 ], [ -73.828125, 68.007571 ], [ -73.828125, 68.138852 ], [ -74.179688, 68.138852 ], [ -74.179688, 68.269387 ], [ -74.531250, 68.269387 ], [ -74.531250, 68.399180 ], [ -74.882812, 68.399180 ], [ -74.882812, 68.528235 ], [ -75.585938, 68.528235 ], [ -75.585938, 68.656555 ], [ -76.289062, 68.656555 ], [ -76.289062, 68.784144 ], [ -76.992188, 68.784144 ], [ -76.992188, 68.911005 ], [ -76.640625, 68.911005 ], [ -76.640625, 69.037142 ], [ -76.289062, 69.037142 ], [ -76.289062, 69.162558 ], [ -76.640625, 69.162558 ], [ -76.640625, 69.411242 ], [ -76.992188, 69.411242 ], [ -76.992188, 69.657086 ], [ -77.343750, 69.657086 ], [ -77.343750, 69.778952 ], [ -78.398438, 69.778952 ], [ -78.398438, 69.900118 ], [ -78.750000, 69.900118 ], [ -78.750000, 70.020587 ], [ -79.453125, 70.020587 ], [ -79.453125, 69.900118 ], [ -80.156250, 69.900118 ], [ -80.156250, 69.778952 ], [ -82.265625, 69.778952 ], [ -82.265625, 69.900118 ], [ -84.375000, 69.900118 ], [ -84.375000, 70.020587 ], [ -85.781250, 70.020587 ], [ -85.781250, 70.140364 ], [ -86.835938, 70.140364 ], [ -86.835938, 70.259452 ], [ -88.242188, 70.259452 ], [ -88.242188, 70.377854 ], [ -88.945312, 70.377854 ], [ -88.945312, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.612614 ], [ -89.648438, 70.612614 ], [ -89.648438, 70.728979 ], [ -89.296875, 70.728979 ], [ -89.296875, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.187754 ], [ -90.000000, 71.187754 ], [ -90.000000, 71.635993 ], [ -90.351562, 71.635993 ], [ -90.351562, 72.289067 ], [ -90.000000, 72.289067 ], [ -90.000000, 72.607120 ], [ -89.648438, 72.607120 ], [ -89.648438, 72.919635 ], [ -89.296875, 72.919635 ], [ -89.296875, 73.124945 ], [ -88.945312, 73.124945 ], [ -88.945312, 73.327858 ], [ -88.593750, 73.327858 ], [ -88.593750, 73.428424 ], [ -88.242188, 73.428424 ], [ -88.242188, 73.528399 ], [ -87.539062, 73.528399 ], [ -87.539062, 73.627789 ], [ -86.835938, 73.627789 ], [ -86.835938, 73.726595 ], [ -86.132812, 73.726595 ], [ -86.132812, 73.824820 ], [ -85.781250, 73.824820 ] ] ], [ [ [ -75.585938, 68.138852 ], [ -75.585938, 68.007571 ], [ -75.234375, 68.007571 ], [ -75.234375, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.204032 ], [ -76.289062, 67.204032 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.742759 ], [ -76.992188, 67.742759 ], [ -76.992188, 68.007571 ], [ -76.640625, 68.007571 ], [ -76.640625, 68.138852 ], [ -75.585938, 68.138852 ] ] ], [ [ [ -91.406250, 70.020587 ], [ -91.757812, 70.020587 ], [ -91.757812, 70.259452 ], [ -91.406250, 70.259452 ], [ -91.406250, 70.020587 ] ] ], [ [ [ -79.453125, 73.726595 ], [ -79.453125, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.327858 ], [ -76.992188, 73.327858 ], [ -76.992188, 73.226700 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.124945 ], [ -76.289062, 73.124945 ], [ -76.289062, 72.816074 ], [ -78.046875, 72.816074 ], [ -78.046875, 72.919635 ], [ -78.398438, 72.919635 ], [ -78.398438, 72.816074 ], [ -79.101562, 72.816074 ], [ -79.101562, 72.711903 ], [ -79.804688, 72.711903 ], [ -79.804688, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.022592 ], [ -80.507812, 73.022592 ], [ -80.507812, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.726595 ], [ -79.453125, 73.726595 ] ] ], [ [ [ -91.054688, 73.922469 ], [ -91.054688, 73.824820 ], [ -90.351562, 73.824820 ], [ -90.351562, 73.726595 ], [ -90.703125, 73.726595 ], [ -90.703125, 73.528399 ], [ -91.054688, 73.528399 ], [ -91.054688, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 73.922469 ], [ -91.054688, 73.922469 ] ] ], [ [ [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.584937 ], [ -87.539062, 75.584937 ], [ -87.539062, 75.497157 ], [ -85.781250, 75.497157 ], [ -85.781250, 75.584937 ], [ -85.078125, 75.584937 ], [ -85.078125, 75.672197 ], [ -83.320312, 75.672197 ], [ -83.320312, 75.758940 ], [ -82.265625, 75.758940 ], [ -82.265625, 75.672197 ], [ -81.210938, 75.672197 ], [ -81.210938, 75.584937 ], [ -80.859375, 75.584937 ], [ -80.859375, 75.497157 ], [ -80.507812, 75.497157 ], [ -80.507812, 75.320025 ], [ -80.156250, 75.320025 ], [ -80.156250, 75.140778 ], [ -79.804688, 75.140778 ], [ -79.804688, 74.867889 ], [ -80.156250, 74.867889 ], [ -80.156250, 74.683250 ], [ -80.507812, 74.683250 ], [ -80.507812, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.496413 ], [ -81.562500, 74.496413 ], [ -81.562500, 74.402163 ], [ -82.617188, 74.402163 ], [ -82.617188, 74.496413 ], [ -83.320312, 74.496413 ], [ -83.320312, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.496413 ], [ -85.078125, 74.496413 ], [ -85.078125, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.496413 ], [ -90.351562, 74.496413 ], [ -90.351562, 74.590108 ], [ -91.054688, 74.590108 ], [ -91.054688, 74.683250 ], [ -91.757812, 74.683250 ], [ -91.757812, 75.930885 ], [ -90.000000, 75.930885 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.351562, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.972431 ], [ -46.054688, 81.972431 ], [ -46.054688, 82.070028 ], [ -46.406250, 82.070028 ], [ -46.406250, 82.166446 ], [ -46.757812, 82.166446 ], [ -46.757812, 82.631333 ], [ -46.406250, 82.631333 ], [ -46.406250, 82.720964 ], [ -46.054688, 82.720964 ], [ -46.054688, 82.765373 ], [ -45.703125, 82.765373 ], [ -45.703125, 82.809511 ], [ -45.351562, 82.809511 ], [ -45.351562, 82.896987 ], [ -45.000000, 82.896987 ], [ -45.000000, 82.940327 ], [ -44.648438, 82.940327 ], [ -44.648438, 83.026219 ], [ -44.296875, 83.026219 ], [ -44.296875, 83.068774 ], [ -43.945312, 83.068774 ], [ -43.945312, 83.111071 ], [ -43.593750, 83.111071 ], [ -43.593750, 83.194896 ], [ -43.242188, 83.194896 ], [ -43.242188, 83.236426 ], [ -41.835938, 83.236426 ], [ -41.835938, 83.194896 ], [ -39.726562, 83.194896 ], [ -39.726562, 83.236426 ], [ -39.375000, 83.236426 ], [ -39.375000, 83.359511 ], [ -39.023438, 83.359511 ], [ -39.023438, 83.480366 ], [ -38.671875, 83.480366 ], [ -38.671875, 83.559717 ], [ -37.617188, 83.559717 ], [ -37.617188, 83.599031 ], [ -35.859375, 83.599031 ], [ -35.859375, 83.638106 ], [ -34.101562, 83.638106 ], [ -34.101562, 83.599031 ], [ -31.289062, 83.599031 ], [ -31.289062, 83.559717 ], [ -28.476562, 83.559717 ], [ -28.476562, 83.520162 ], [ -27.070312, 83.520162 ], [ -27.070312, 83.480366 ], [ -26.718750, 83.480366 ], [ -26.718750, 83.440326 ], [ -26.367188, 83.440326 ], [ -26.367188, 83.400042 ], [ -26.015625, 83.400042 ], [ -26.015625, 83.359511 ], [ -25.664062, 83.359511 ], [ -25.664062, 83.318733 ], [ -25.312500, 83.318733 ], [ -25.312500, 83.277705 ], [ -24.960938, 83.277705 ], [ -24.960938, 83.236426 ], [ -24.609375, 83.236426 ], [ -24.609375, 83.194896 ], [ -24.257812, 83.194896 ], [ -24.257812, 83.153111 ], [ -23.906250, 83.153111 ], [ -23.906250, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.809511 ], [ -21.445312, 82.809511 ], [ -21.445312, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.720964 ], [ -20.742188, 82.720964 ], [ -20.742188, 82.676285 ], [ -21.093750, 82.676285 ], [ -21.093750, 82.631333 ], [ -21.445312, 82.631333 ], [ -21.445312, 82.540604 ], [ -21.796875, 82.540604 ], [ -21.796875, 82.494824 ], [ -22.148438, 82.494824 ], [ -22.148438, 82.448764 ], [ -22.500000, 82.448764 ], [ -22.500000, 82.355800 ], [ -24.257812, 82.355800 ], [ -24.257812, 82.308893 ], [ -27.421875, 82.308893 ], [ -27.421875, 82.261699 ], [ -30.234375, 82.261699 ], [ -30.234375, 82.214217 ], [ -31.992188, 82.214217 ], [ -31.992188, 82.166446 ], [ -31.640625, 82.166446 ], [ -31.640625, 82.070028 ], [ -31.289062, 82.070028 ], [ -31.289062, 82.021378 ], [ -30.234375, 82.021378 ], [ -30.234375, 82.070028 ], [ -28.476562, 82.070028 ], [ -28.476562, 82.118384 ], [ -27.773438, 82.118384 ], [ -27.773438, 82.070028 ], [ -27.421875, 82.070028 ], [ -27.421875, 82.021378 ], [ -27.070312, 82.021378 ], [ -27.070312, 81.972431 ], [ -26.718750, 81.972431 ], [ -26.718750, 81.923186 ], [ -26.015625, 81.923186 ], [ -26.015625, 81.873641 ], [ -25.664062, 81.873641 ], [ -25.664062, 81.823794 ], [ -25.312500, 81.823794 ], [ -25.312500, 81.773644 ], [ -24.609375, 81.773644 ], [ -24.609375, 81.823794 ], [ -24.257812, 81.823794 ], [ -24.257812, 81.873641 ], [ -23.906250, 81.873641 ], [ -23.906250, 81.923186 ], [ -23.554688, 81.923186 ], [ -23.554688, 81.972431 ], [ -23.203125, 81.972431 ], [ -23.203125, 82.021378 ], [ -22.851562, 82.021378 ], [ -22.851562, 81.972431 ], [ -22.500000, 81.972431 ], [ -22.500000, 81.773644 ], [ -22.148438, 81.773644 ], [ -22.148438, 81.621352 ], [ -22.500000, 81.621352 ], [ -22.500000, 81.413933 ], [ -22.851562, 81.413933 ], [ -22.851562, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.255032 ], [ -22.148438, 81.255032 ], [ -22.148438, 81.308321 ], [ -21.796875, 81.308321 ], [ -21.796875, 81.361287 ], [ -21.445312, 81.361287 ], [ -21.445312, 81.413933 ], [ -21.093750, 81.413933 ], [ -21.093750, 81.466261 ], [ -20.742188, 81.466261 ], [ -20.742188, 81.518272 ], [ -20.390625, 81.518272 ], [ -20.390625, 81.569968 ], [ -19.687500, 81.569968 ], [ -19.687500, 81.621352 ], [ -18.984375, 81.621352 ], [ -18.984375, 81.672424 ], [ -18.281250, 81.672424 ], [ -18.281250, 81.723188 ], [ -17.929688, 81.723188 ], [ -17.929688, 81.773644 ], [ -17.226562, 81.773644 ], [ -17.226562, 81.823794 ], [ -16.523438, 81.823794 ], [ -16.523438, 81.873641 ], [ -15.820312, 81.873641 ], [ -15.820312, 81.923186 ], [ -15.468750, 81.923186 ], [ -15.468750, 81.873641 ], [ -14.765625, 81.873641 ], [ -14.765625, 81.823794 ], [ -14.062500, 81.823794 ], [ -14.062500, 81.773644 ], [ -13.359375, 81.773644 ], [ -13.359375, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.518272 ], [ -12.304688, 81.518272 ], [ -12.304688, 81.255032 ], [ -12.656250, 81.255032 ], [ -12.656250, 81.201420 ], [ -13.007812, 81.201420 ], [ -13.007812, 81.147481 ], [ -13.359375, 81.147481 ], [ -13.359375, 81.038617 ], [ -13.710938, 81.038617 ], [ -13.710938, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.928426 ], [ -14.414062, 80.928426 ], [ -14.414062, 80.872827 ], [ -14.765625, 80.872827 ], [ -14.765625, 80.816891 ], [ -15.117188, 80.816891 ], [ -15.117188, 80.703997 ], [ -15.468750, 80.703997 ], [ -15.468750, 80.647035 ], [ -15.820312, 80.647035 ], [ -15.820312, 80.589727 ], [ -16.171875, 80.589727 ], [ -16.171875, 80.532071 ], [ -16.523438, 80.532071 ], [ -16.523438, 80.415707 ], [ -16.875000, 80.415707 ], [ -16.875000, 80.356995 ], [ -17.226562, 80.356995 ], [ -17.226562, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.238501 ], [ -19.335938, 80.238501 ], [ -19.335938, 80.178713 ], [ -18.984375, 80.178713 ], [ -18.984375, 80.118564 ], [ -17.578125, 80.118564 ], [ -17.578125, 79.997168 ], [ -17.929688, 79.997168 ], [ -17.929688, 79.812302 ], [ -18.281250, 79.812302 ], [ -18.281250, 79.624056 ], [ -18.632812, 79.624056 ], [ -18.632812, 79.432371 ], [ -18.984375, 79.432371 ], [ -18.984375, 79.171335 ], [ -19.335938, 79.171335 ], [ -19.335938, 78.903929 ], [ -19.687500, 78.903929 ], [ -19.687500, 77.989049 ], [ -73.125000, 77.989049 ], [ -73.125000, 78.420193 ], [ -72.773438, 78.420193 ], [ -72.773438, 78.490552 ], [ -72.070312, 78.490552 ], [ -72.070312, 78.560488 ], [ -71.718750, 78.560488 ], [ -71.718750, 78.630006 ], [ -71.015625, 78.630006 ], [ -71.015625, 78.699106 ], [ -70.312500, 78.699106 ], [ -70.312500, 78.767792 ], [ -69.960938, 78.767792 ], [ -69.960938, 78.836065 ], [ -69.257812, 78.836065 ], [ -69.257812, 78.903929 ], [ -68.906250, 78.903929 ], [ -68.906250, 78.971386 ], [ -68.203125, 78.971386 ], [ -68.203125, 79.038437 ], [ -67.851562, 79.038437 ], [ -67.851562, 79.105086 ], [ -67.148438, 79.105086 ], [ -67.148438, 79.171335 ], [ -66.796875, 79.171335 ], [ -66.796875, 79.237185 ], [ -66.445312, 79.237185 ], [ -66.445312, 79.302640 ], [ -65.742188, 79.302640 ], [ -65.742188, 79.560546 ], [ -65.390625, 79.560546 ], [ -65.390625, 79.749932 ], [ -65.742188, 79.749932 ], [ -65.742188, 79.812302 ], [ -66.093750, 79.812302 ], [ -66.093750, 79.874297 ], [ -66.445312, 79.874297 ], [ -66.445312, 79.935918 ], [ -67.148438, 79.935918 ], [ -67.148438, 79.997168 ], [ -67.500000, 79.997168 ], [ -67.500000, 80.058050 ], [ -67.851562, 80.058050 ], [ -67.851562, 80.178713 ], [ -67.500000, 80.178713 ], [ -67.500000, 80.415707 ], [ -67.148438, 80.415707 ], [ -67.148438, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.589727 ], [ -66.445312, 80.589727 ], [ -66.445312, 80.703997 ], [ -66.093750, 80.703997 ], [ -66.093750, 80.760615 ], [ -65.742188, 80.760615 ], [ -65.742188, 80.816891 ], [ -65.390625, 80.816891 ], [ -65.390625, 80.872827 ], [ -65.039062, 80.872827 ], [ -65.039062, 80.928426 ], [ -64.687500, 80.928426 ], [ -64.687500, 81.038617 ], [ -64.335938, 81.038617 ], [ -64.335938, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.147481 ], [ -63.632812, 81.147481 ], [ -63.632812, 81.201420 ], [ -62.929688, 81.201420 ], [ -62.929688, 81.255032 ], [ -62.226562, 81.255032 ], [ -62.226562, 81.518272 ], [ -62.578125, 81.518272 ], [ -62.578125, 81.773644 ], [ -62.226562, 81.773644 ], [ -62.226562, 81.823794 ], [ -61.523438, 81.823794 ], [ -61.523438, 81.873641 ], [ -61.171875, 81.873641 ], [ -61.171875, 81.923186 ], [ -60.820312, 81.923186 ], [ -60.820312, 81.972431 ], [ -60.117188, 81.972431 ], [ -60.117188, 82.021378 ], [ -59.414062, 82.021378 ], [ -59.414062, 82.070028 ], [ -58.710938, 82.070028 ], [ -58.710938, 82.118384 ], [ -58.007812, 82.118384 ], [ -58.007812, 82.166446 ], [ -57.304688, 82.166446 ], [ -57.304688, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.118384 ], [ -53.789062, 82.118384 ], [ -53.789062, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.923186 ], [ -53.085938, 81.923186 ], [ -53.085938, 81.873641 ], [ -52.734375, 81.873641 ], [ -52.734375, 81.972431 ], [ -52.382812, 81.972431 ], [ -52.382812, 82.021378 ], [ -52.031250, 82.021378 ], [ -52.031250, 82.118384 ], [ -51.679688, 82.118384 ], [ -51.679688, 82.166446 ], [ -51.328125, 82.166446 ], [ -51.328125, 82.261699 ], [ -50.976562, 82.261699 ], [ -50.976562, 82.308893 ], [ -50.625000, 82.308893 ], [ -50.625000, 82.402423 ], [ -49.921875, 82.402423 ], [ -49.921875, 82.355800 ], [ -49.570312, 82.355800 ], [ -49.570312, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.214217 ], [ -48.867188, 82.214217 ], [ -48.867188, 82.166446 ], [ -48.515625, 82.166446 ], [ -48.515625, 82.070028 ], [ -48.164062, 82.070028 ], [ -48.164062, 82.021378 ], [ -47.460938, 82.021378 ], [ -47.460938, 81.972431 ], [ -46.757812, 81.972431 ], [ -46.757812, 81.923186 ], [ -46.406250, 81.923186 ], [ -46.406250, 81.873641 ], [ -46.054688, 81.873641 ], [ -46.054688, 81.823794 ], [ -45.703125, 81.823794 ], [ -45.703125, 81.773644 ], [ -45.351562, 81.773644 ], [ -45.351562, 81.873641 ] ], [ [ -23.203125, 81.201420 ], [ -23.203125, 81.147481 ], [ -22.851562, 81.147481 ], [ -22.851562, 81.201420 ], [ -23.203125, 81.201420 ] ], [ [ -45.351562, 81.723188 ], [ -45.000000, 81.723188 ], [ -45.000000, 81.773644 ], [ -45.351562, 81.773644 ], [ -45.351562, 81.723188 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.351562, 81.773644 ], [ -45.351562, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.972431 ], [ -46.054688, 81.972431 ], [ -46.054688, 82.070028 ], [ -46.406250, 82.070028 ], [ -46.406250, 82.166446 ], [ -46.757812, 82.166446 ], [ -46.757812, 82.631333 ], [ -46.406250, 82.631333 ], [ -46.406250, 82.720964 ], [ -46.054688, 82.720964 ], [ -46.054688, 82.765373 ], [ -45.703125, 82.765373 ], [ -45.703125, 82.809511 ], [ -45.351562, 82.809511 ], [ -45.351562, 82.896987 ], [ -45.000000, 82.896987 ], [ -45.000000, 82.940327 ], [ -44.648438, 82.940327 ], [ -44.648438, 83.026219 ], [ -44.296875, 83.026219 ], [ -44.296875, 83.068774 ], [ -43.945312, 83.068774 ], [ -43.945312, 83.111071 ], [ -43.593750, 83.111071 ], [ -43.593750, 83.194896 ], [ -43.242188, 83.194896 ], [ -43.242188, 83.236426 ], [ -41.835938, 83.236426 ], [ -41.835938, 83.194896 ], [ -39.726562, 83.194896 ], [ -39.726562, 83.236426 ], [ -39.375000, 83.236426 ], [ -39.375000, 83.359511 ], [ -39.023438, 83.359511 ], [ -39.023438, 83.480366 ], [ -38.671875, 83.480366 ], [ -38.671875, 83.559717 ], [ -37.617188, 83.559717 ], [ -37.617188, 83.599031 ], [ -35.859375, 83.599031 ], [ -35.859375, 83.638106 ], [ -34.101562, 83.638106 ], [ -34.101562, 83.599031 ], [ -31.289062, 83.599031 ], [ -31.289062, 83.559717 ], [ -28.476562, 83.559717 ], [ -28.476562, 83.520162 ], [ -27.070312, 83.520162 ], [ -27.070312, 83.480366 ], [ -26.718750, 83.480366 ], [ -26.718750, 83.440326 ], [ -26.367188, 83.440326 ], [ -26.367188, 83.400042 ], [ -26.015625, 83.400042 ], [ -26.015625, 83.359511 ], [ -25.664062, 83.359511 ], [ -25.664062, 83.318733 ], [ -25.312500, 83.318733 ], [ -25.312500, 83.277705 ], [ -24.960938, 83.277705 ], [ -24.960938, 83.236426 ], [ -24.609375, 83.236426 ], [ -24.609375, 83.194896 ], [ -24.257812, 83.194896 ], [ -24.257812, 83.153111 ], [ -23.906250, 83.153111 ], [ -23.906250, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.809511 ], [ -21.445312, 82.809511 ], [ -21.445312, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.720964 ], [ -20.742188, 82.720964 ], [ -20.742188, 82.676285 ], [ -21.093750, 82.676285 ], [ -21.093750, 82.631333 ], [ -21.445312, 82.631333 ], [ -21.445312, 82.540604 ], [ -21.796875, 82.540604 ], [ -21.796875, 82.494824 ], [ -22.148438, 82.494824 ], [ -22.148438, 82.448764 ], [ -22.500000, 82.448764 ], [ -22.500000, 82.355800 ], [ -24.257812, 82.355800 ], [ -24.257812, 82.308893 ], [ -27.421875, 82.308893 ], [ -27.421875, 82.261699 ], [ -30.234375, 82.261699 ], [ -30.234375, 82.214217 ], [ -31.992188, 82.214217 ], [ -31.992188, 82.166446 ], [ -31.640625, 82.166446 ], [ -31.640625, 82.070028 ], [ -31.289062, 82.070028 ], [ -31.289062, 82.021378 ], [ -30.234375, 82.021378 ], [ -30.234375, 82.070028 ], [ -28.476562, 82.070028 ], [ -28.476562, 82.118384 ], [ -27.773438, 82.118384 ], [ -27.773438, 82.070028 ], [ -27.421875, 82.070028 ], [ -27.421875, 82.021378 ], [ -27.070312, 82.021378 ], [ -27.070312, 81.972431 ], [ -26.718750, 81.972431 ], [ -26.718750, 81.923186 ], [ -26.015625, 81.923186 ], [ -26.015625, 81.873641 ], [ -25.664062, 81.873641 ], [ -25.664062, 81.823794 ], [ -25.312500, 81.823794 ], [ -25.312500, 81.773644 ], [ -24.609375, 81.773644 ], [ -24.609375, 81.823794 ], [ -24.257812, 81.823794 ], [ -24.257812, 81.873641 ], [ -23.906250, 81.873641 ], [ -23.906250, 81.923186 ], [ -23.554688, 81.923186 ], [ -23.554688, 81.972431 ], [ -23.203125, 81.972431 ], [ -23.203125, 82.021378 ], [ -22.851562, 82.021378 ], [ -22.851562, 81.972431 ], [ -22.500000, 81.972431 ], [ -22.500000, 81.773644 ], [ -22.148438, 81.773644 ], [ -22.148438, 81.621352 ], [ -22.500000, 81.621352 ], [ -22.500000, 81.413933 ], [ -22.851562, 81.413933 ], [ -22.851562, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.255032 ], [ -22.148438, 81.255032 ], [ -22.148438, 81.308321 ], [ -21.796875, 81.308321 ], [ -21.796875, 81.361287 ], [ -21.445312, 81.361287 ], [ -21.445312, 81.413933 ], [ -21.093750, 81.413933 ], [ -21.093750, 81.466261 ], [ -20.742188, 81.466261 ], [ -20.742188, 81.518272 ], [ -20.390625, 81.518272 ], [ -20.390625, 81.569968 ], [ -19.687500, 81.569968 ], [ -19.687500, 81.621352 ], [ -18.984375, 81.621352 ], [ -18.984375, 81.672424 ], [ -18.281250, 81.672424 ], [ -18.281250, 81.723188 ], [ -17.929688, 81.723188 ], [ -17.929688, 81.773644 ], [ -17.226562, 81.773644 ], [ -17.226562, 81.823794 ], [ -16.523438, 81.823794 ], [ -16.523438, 81.873641 ], [ -15.820312, 81.873641 ], [ -15.820312, 81.923186 ], [ -15.468750, 81.923186 ], [ -15.468750, 81.873641 ], [ -14.765625, 81.873641 ], [ -14.765625, 81.823794 ], [ -14.062500, 81.823794 ], [ -14.062500, 81.773644 ], [ -13.359375, 81.773644 ], [ -13.359375, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.518272 ], [ -12.304688, 81.518272 ], [ -12.304688, 81.255032 ], [ -12.656250, 81.255032 ], [ -12.656250, 81.201420 ], [ -13.007812, 81.201420 ], [ -13.007812, 81.147481 ], [ -13.359375, 81.147481 ], [ -13.359375, 81.038617 ], [ -13.710938, 81.038617 ], [ -13.710938, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.928426 ], [ -14.414062, 80.928426 ], [ -14.414062, 80.872827 ], [ -14.765625, 80.872827 ], [ -14.765625, 80.816891 ], [ -15.117188, 80.816891 ], [ -15.117188, 80.703997 ], [ -15.468750, 80.703997 ], [ -15.468750, 80.647035 ], [ -15.820312, 80.647035 ], [ -15.820312, 80.589727 ], [ -16.171875, 80.589727 ], [ -16.171875, 80.532071 ], [ -16.523438, 80.532071 ], [ -16.523438, 80.415707 ], [ -16.875000, 80.415707 ], [ -16.875000, 80.356995 ], [ -17.226562, 80.356995 ], [ -17.226562, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.238501 ], [ -19.335938, 80.238501 ], [ -19.335938, 80.178713 ], [ -18.984375, 80.178713 ], [ -18.984375, 80.118564 ], [ -17.578125, 80.118564 ], [ -17.578125, 79.997168 ], [ -17.929688, 79.997168 ], [ -17.929688, 79.812302 ], [ -18.281250, 79.812302 ], [ -18.281250, 79.624056 ], [ -18.632812, 79.624056 ], [ -18.632812, 79.432371 ], [ -18.984375, 79.432371 ], [ -18.984375, 79.171335 ], [ -19.335938, 79.171335 ], [ -19.335938, 78.903929 ], [ -19.687500, 78.903929 ], [ -19.687500, 77.989049 ], [ -73.125000, 77.989049 ], [ -73.125000, 78.420193 ], [ -72.773438, 78.420193 ], [ -72.773438, 78.490552 ], [ -72.070312, 78.490552 ], [ -72.070312, 78.560488 ], [ -71.718750, 78.560488 ], [ -71.718750, 78.630006 ], [ -71.015625, 78.630006 ], [ -71.015625, 78.699106 ], [ -70.312500, 78.699106 ], [ -70.312500, 78.767792 ], [ -69.960938, 78.767792 ], [ -69.960938, 78.836065 ], [ -69.257812, 78.836065 ], [ -69.257812, 78.903929 ], [ -68.906250, 78.903929 ], [ -68.906250, 78.971386 ], [ -68.203125, 78.971386 ], [ -68.203125, 79.038437 ], [ -67.851562, 79.038437 ], [ -67.851562, 79.105086 ], [ -67.148438, 79.105086 ], [ -67.148438, 79.171335 ], [ -66.796875, 79.171335 ], [ -66.796875, 79.237185 ], [ -66.445312, 79.237185 ], [ -66.445312, 79.302640 ], [ -65.742188, 79.302640 ], [ -65.742188, 79.560546 ], [ -65.390625, 79.560546 ], [ -65.390625, 79.749932 ], [ -65.742188, 79.749932 ], [ -65.742188, 79.812302 ], [ -66.093750, 79.812302 ], [ -66.093750, 79.874297 ], [ -66.445312, 79.874297 ], [ -66.445312, 79.935918 ], [ -67.148438, 79.935918 ], [ -67.148438, 79.997168 ], [ -67.500000, 79.997168 ], [ -67.500000, 80.058050 ], [ -67.851562, 80.058050 ], [ -67.851562, 80.178713 ], [ -67.500000, 80.178713 ], [ -67.500000, 80.415707 ], [ -67.148438, 80.415707 ], [ -67.148438, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.589727 ], [ -66.445312, 80.589727 ], [ -66.445312, 80.703997 ], [ -66.093750, 80.703997 ], [ -66.093750, 80.760615 ], [ -65.742188, 80.760615 ], [ -65.742188, 80.816891 ], [ -65.390625, 80.816891 ], [ -65.390625, 80.872827 ], [ -65.039062, 80.872827 ], [ -65.039062, 80.928426 ], [ -64.687500, 80.928426 ], [ -64.687500, 81.038617 ], [ -64.335938, 81.038617 ], [ -64.335938, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.147481 ], [ -63.632812, 81.147481 ], [ -63.632812, 81.201420 ], [ -62.929688, 81.201420 ], [ -62.929688, 81.255032 ], [ -62.226562, 81.255032 ], [ -62.226562, 81.518272 ], [ -62.578125, 81.518272 ], [ -62.578125, 81.773644 ], [ -62.226562, 81.773644 ], [ -62.226562, 81.823794 ], [ -61.523438, 81.823794 ], [ -61.523438, 81.873641 ], [ -61.171875, 81.873641 ], [ -61.171875, 81.923186 ], [ -60.820312, 81.923186 ], [ -60.820312, 81.972431 ], [ -60.117188, 81.972431 ], [ -60.117188, 82.021378 ], [ -59.414062, 82.021378 ], [ -59.414062, 82.070028 ], [ -58.710938, 82.070028 ], [ -58.710938, 82.118384 ], [ -58.007812, 82.118384 ], [ -58.007812, 82.166446 ], [ -57.304688, 82.166446 ], [ -57.304688, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.118384 ], [ -53.789062, 82.118384 ], [ -53.789062, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.923186 ], [ -53.085938, 81.923186 ], [ -53.085938, 81.873641 ], [ -52.734375, 81.873641 ], [ -52.734375, 81.972431 ], [ -52.382812, 81.972431 ], [ -52.382812, 82.021378 ], [ -52.031250, 82.021378 ], [ -52.031250, 82.118384 ], [ -51.679688, 82.118384 ], [ -51.679688, 82.166446 ], [ -51.328125, 82.166446 ], [ -51.328125, 82.261699 ], [ -50.976562, 82.261699 ], [ -50.976562, 82.308893 ], [ -50.625000, 82.308893 ], [ -50.625000, 82.402423 ], [ -49.921875, 82.402423 ], [ -49.921875, 82.355800 ], [ -49.570312, 82.355800 ], [ -49.570312, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.214217 ], [ -48.867188, 82.214217 ], [ -48.867188, 82.166446 ], [ -48.515625, 82.166446 ], [ -48.515625, 82.070028 ], [ -48.164062, 82.070028 ], [ -48.164062, 82.021378 ], [ -47.460938, 82.021378 ], [ -47.460938, 81.972431 ], [ -46.757812, 81.972431 ], [ -46.757812, 81.923186 ], [ -46.406250, 81.923186 ], [ -46.406250, 81.873641 ], [ -46.054688, 81.873641 ], [ -46.054688, 81.823794 ], [ -45.703125, 81.823794 ], [ -45.703125, 81.773644 ], [ -45.351562, 81.773644 ] ], [ [ -22.851562, 81.201420 ], [ -23.203125, 81.201420 ], [ -23.203125, 81.147481 ], [ -22.851562, 81.147481 ], [ -22.851562, 81.201420 ] ], [ [ -45.351562, 81.773644 ], [ -45.351562, 81.723188 ], [ -45.000000, 81.723188 ], [ -45.000000, 81.773644 ], [ -45.351562, 81.773644 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.031250, 70.844673 ], [ -52.382812, 70.844673 ], [ -52.382812, 70.959697 ], [ -52.734375, 70.959697 ], [ -52.734375, 71.074056 ], [ -53.085938, 71.074056 ], [ -53.085938, 71.187754 ], [ -53.437500, 71.187754 ], [ -53.437500, 71.300793 ], [ -53.789062, 71.300793 ], [ -53.789062, 71.413177 ], [ -55.195312, 71.413177 ], [ -55.195312, 71.524909 ], [ -55.898438, 71.524909 ], [ -55.898438, 71.746432 ], [ -55.546875, 71.746432 ], [ -55.546875, 72.073911 ], [ -55.195312, 72.073911 ], [ -55.195312, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.711903 ], [ -55.195312, 72.711903 ], [ -55.195312, 73.022592 ], [ -55.546875, 73.022592 ], [ -55.546875, 73.226700 ], [ -55.898438, 73.226700 ], [ -55.898438, 73.428424 ], [ -56.250000, 73.428424 ], [ -56.250000, 73.726595 ], [ -56.601562, 73.726595 ], [ -56.601562, 74.116047 ], [ -56.953125, 74.116047 ], [ -56.953125, 74.496413 ], [ -57.304688, 74.496413 ], [ -57.304688, 74.683250 ], [ -57.656250, 74.683250 ], [ -57.656250, 74.775843 ], [ -58.007812, 74.775843 ], [ -58.007812, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.050354 ], [ -58.710938, 75.050354 ], [ -58.710938, 75.497157 ], [ -59.062500, 75.497157 ], [ -59.062500, 75.584937 ], [ -59.414062, 75.584937 ], [ -59.414062, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.758940 ], [ -60.117188, 75.758940 ], [ -60.117188, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 75.930885 ], [ -60.820312, 75.930885 ], [ -60.820312, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.100796 ], [ -62.578125, 76.100796 ], [ -62.578125, 76.184995 ], [ -64.335938, 76.184995 ], [ -64.335938, 76.100796 ], [ -68.906250, 76.100796 ], [ -68.906250, 76.184995 ], [ -69.257812, 76.184995 ], [ -69.257812, 76.268695 ], [ -69.609375, 76.268695 ], [ -69.609375, 76.351896 ], [ -69.960938, 76.351896 ], [ -69.960938, 76.516819 ], [ -70.312500, 76.516819 ], [ -70.312500, 76.679785 ], [ -70.664062, 76.679785 ], [ -70.664062, 76.760541 ], [ -71.015625, 76.760541 ], [ -71.015625, 76.920614 ], [ -71.367188, 76.920614 ], [ -71.367188, 76.999935 ], [ -71.015625, 76.999935 ], [ -71.015625, 77.078784 ], [ -70.312500, 77.078784 ], [ -70.312500, 77.157163 ], [ -69.609375, 77.157163 ], [ -69.609375, 77.235074 ], [ -68.906250, 77.235074 ], [ -68.906250, 77.312520 ], [ -67.500000, 77.312520 ], [ -67.500000, 77.389504 ], [ -67.851562, 77.389504 ], [ -67.851562, 77.466028 ], [ -69.257812, 77.466028 ], [ -69.257812, 77.542096 ], [ -70.664062, 77.542096 ], [ -70.664062, 77.617709 ], [ -71.367188, 77.617709 ], [ -71.367188, 77.692870 ], [ -71.718750, 77.692870 ], [ -71.718750, 77.767582 ], [ -72.070312, 77.767582 ], [ -72.070312, 77.841848 ], [ -72.421875, 77.841848 ], [ -72.421875, 77.915669 ], [ -72.773438, 77.915669 ], [ -72.773438, 77.989049 ], [ -19.687500, 77.989049 ], [ -19.687500, 77.466028 ], [ -19.335938, 77.466028 ], [ -19.335938, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 77.078784 ], [ -18.632812, 77.078784 ], [ -18.632812, 76.999935 ], [ -18.984375, 76.999935 ], [ -18.984375, 76.920614 ], [ -20.039062, 76.920614 ], [ -20.039062, 76.840816 ], [ -20.390625, 76.840816 ], [ -20.390625, 76.760541 ], [ -21.093750, 76.760541 ], [ -21.093750, 76.679785 ], [ -21.445312, 76.679785 ], [ -21.445312, 76.598545 ], [ -21.796875, 76.598545 ], [ -21.796875, 76.516819 ], [ -21.445312, 76.516819 ], [ -21.445312, 76.434604 ], [ -21.093750, 76.434604 ], [ -21.093750, 76.351896 ], [ -20.742188, 76.351896 ], [ -20.742188, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.184995 ], [ -20.039062, 76.184995 ], [ -20.039062, 76.100796 ], [ -19.687500, 76.100796 ], [ -19.687500, 75.230667 ], [ -20.039062, 75.230667 ], [ -20.039062, 75.140778 ], [ -20.742188, 75.140778 ], [ -20.742188, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.775843 ], [ -20.039062, 74.775843 ], [ -20.039062, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.402163 ], [ -19.335938, 74.402163 ], [ -19.335938, 74.307353 ], [ -20.039062, 74.307353 ], [ -20.039062, 74.211983 ], [ -21.445312, 74.211983 ], [ -21.445312, 74.116047 ], [ -21.093750, 74.116047 ], [ -21.093750, 74.019543 ], [ -20.742188, 74.019543 ], [ -20.742188, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.627789 ], [ -20.742188, 73.627789 ], [ -20.742188, 73.428424 ], [ -21.093750, 73.428424 ], [ -21.093750, 73.327858 ], [ -23.554688, 73.327858 ], [ -23.554688, 73.226700 ], [ -23.203125, 73.226700 ], [ -23.203125, 73.022592 ], [ -22.851562, 73.022592 ], [ -22.851562, 72.816074 ], [ -22.500000, 72.816074 ], [ -22.500000, 72.607120 ], [ -22.148438, 72.607120 ], [ -22.148438, 72.181804 ], [ -22.500000, 72.181804 ], [ -22.500000, 72.289067 ], [ -23.203125, 72.289067 ], [ -23.203125, 72.395706 ], [ -23.554688, 72.395706 ], [ -23.554688, 72.501722 ], [ -24.609375, 72.501722 ], [ -24.609375, 72.289067 ], [ -24.960938, 72.289067 ], [ -24.960938, 72.181804 ], [ -24.257812, 72.181804 ], [ -24.257812, 72.073911 ], [ -23.554688, 72.073911 ], [ -23.554688, 71.965388 ], [ -23.203125, 71.965388 ], [ -23.203125, 71.746432 ], [ -22.851562, 71.746432 ], [ -22.851562, 71.635993 ], [ -22.500000, 71.635993 ], [ -22.500000, 71.413177 ], [ -22.148438, 71.413177 ], [ -22.148438, 70.959697 ], [ -21.796875, 70.959697 ], [ -21.796875, 70.612614 ], [ -22.500000, 70.612614 ], [ -22.500000, 70.495574 ], [ -23.906250, 70.495574 ], [ -23.906250, 70.728979 ], [ -24.257812, 70.728979 ], [ -24.257812, 70.844673 ], [ -24.609375, 70.844673 ], [ -24.609375, 70.959697 ], [ -24.960938, 70.959697 ], [ -24.960938, 71.187754 ], [ -25.312500, 71.187754 ], [ -25.312500, 71.300793 ], [ -25.664062, 71.300793 ], [ -25.664062, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.612614 ], [ -25.664062, 70.612614 ], [ -25.664062, 70.495574 ], [ -26.015625, 70.495574 ], [ -26.015625, 70.259452 ], [ -25.312500, 70.259452 ], [ -25.312500, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 70.020587 ], [ -22.851562, 70.020587 ], [ -22.851562, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.778952 ], [ -23.554688, 69.778952 ], [ -23.554688, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.534518 ], [ -24.257812, 69.534518 ], [ -24.257812, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.287257 ], [ -24.960938, 69.287257 ], [ -24.960938, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 69.037142 ], [ -26.015625, 69.037142 ], [ -26.015625, 68.911005 ], [ -26.367188, 68.911005 ], [ -26.367188, 68.784144 ], [ -26.718750, 68.784144 ], [ -26.718750, 68.656555 ], [ -27.421875, 68.656555 ], [ -27.421875, 68.528235 ], [ -28.125000, 68.528235 ], [ -28.125000, 68.399180 ], [ -28.828125, 68.399180 ], [ -28.828125, 68.269387 ], [ -29.882812, 68.269387 ], [ -29.882812, 68.138852 ], [ -31.640625, 68.138852 ], [ -31.640625, 68.007571 ], [ -31.992188, 68.007571 ], [ -31.992188, 67.875541 ], [ -32.343750, 67.875541 ], [ -32.343750, 67.742759 ], [ -32.695312, 67.742759 ], [ -32.695312, 67.609221 ], [ -33.046875, 67.609221 ], [ -33.046875, 67.339861 ], [ -33.398438, 67.339861 ], [ -33.398438, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.513260 ], [ -34.453125, 66.513260 ], [ -34.453125, 66.372755 ], [ -34.804688, 66.372755 ], [ -34.804688, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.089364 ], [ -35.859375, 66.089364 ], [ -35.859375, 65.946472 ], [ -36.914062, 65.946472 ], [ -36.914062, 65.802776 ], [ -53.437500, 65.802776 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.372755 ], [ -53.437500, 66.372755 ], [ -53.437500, 66.791909 ], [ -53.789062, 66.791909 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.339861 ], [ -53.789062, 67.339861 ], [ -53.789062, 67.742759 ], [ -53.437500, 67.742759 ], [ -53.437500, 68.138852 ], [ -53.085938, 68.138852 ], [ -53.085938, 68.399180 ], [ -52.734375, 68.399180 ], [ -52.734375, 68.528235 ], [ -52.031250, 68.528235 ], [ -52.031250, 68.656555 ], [ -51.328125, 68.656555 ], [ -51.328125, 68.911005 ], [ -50.976562, 68.911005 ], [ -50.976562, 69.778952 ], [ -51.328125, 69.778952 ], [ -51.328125, 69.657086 ], [ -51.679688, 69.657086 ], [ -51.679688, 69.534518 ], [ -52.031250, 69.534518 ], [ -52.031250, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.287257 ], [ -53.789062, 69.287257 ], [ -53.789062, 69.411242 ], [ -54.492188, 69.411242 ], [ -54.492188, 69.534518 ], [ -54.843750, 69.534518 ], [ -54.843750, 70.495574 ], [ -54.492188, 70.495574 ], [ -54.492188, 70.844673 ], [ -53.085938, 70.844673 ], [ -53.085938, 70.728979 ], [ -52.031250, 70.728979 ], [ -52.031250, 70.844673 ] ], [ [ -52.031250, 70.612614 ], [ -51.679688, 70.612614 ], [ -51.679688, 70.728979 ], [ -52.031250, 70.728979 ], [ -52.031250, 70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.031250, 70.728979 ], [ -52.031250, 70.844673 ], [ -52.382812, 70.844673 ], [ -52.382812, 70.959697 ], [ -52.734375, 70.959697 ], [ -52.734375, 71.074056 ], [ -53.085938, 71.074056 ], [ -53.085938, 71.187754 ], [ -53.437500, 71.187754 ], [ -53.437500, 71.300793 ], [ -53.789062, 71.300793 ], [ -53.789062, 71.413177 ], [ -55.195312, 71.413177 ], [ -55.195312, 71.524909 ], [ -55.898438, 71.524909 ], [ -55.898438, 71.746432 ], [ -55.546875, 71.746432 ], [ -55.546875, 72.073911 ], [ -55.195312, 72.073911 ], [ -55.195312, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.711903 ], [ -55.195312, 72.711903 ], [ -55.195312, 73.022592 ], [ -55.546875, 73.022592 ], [ -55.546875, 73.226700 ], [ -55.898438, 73.226700 ], [ -55.898438, 73.428424 ], [ -56.250000, 73.428424 ], [ -56.250000, 73.726595 ], [ -56.601562, 73.726595 ], [ -56.601562, 74.116047 ], [ -56.953125, 74.116047 ], [ -56.953125, 74.496413 ], [ -57.304688, 74.496413 ], [ -57.304688, 74.683250 ], [ -57.656250, 74.683250 ], [ -57.656250, 74.775843 ], [ -58.007812, 74.775843 ], [ -58.007812, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.050354 ], [ -58.710938, 75.050354 ], [ -58.710938, 75.497157 ], [ -59.062500, 75.497157 ], [ -59.062500, 75.584937 ], [ -59.414062, 75.584937 ], [ -59.414062, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.758940 ], [ -60.117188, 75.758940 ], [ -60.117188, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 75.930885 ], [ -60.820312, 75.930885 ], [ -60.820312, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.100796 ], [ -62.578125, 76.100796 ], [ -62.578125, 76.184995 ], [ -64.335938, 76.184995 ], [ -64.335938, 76.100796 ], [ -68.906250, 76.100796 ], [ -68.906250, 76.184995 ], [ -69.257812, 76.184995 ], [ -69.257812, 76.268695 ], [ -69.609375, 76.268695 ], [ -69.609375, 76.351896 ], [ -69.960938, 76.351896 ], [ -69.960938, 76.516819 ], [ -70.312500, 76.516819 ], [ -70.312500, 76.679785 ], [ -70.664062, 76.679785 ], [ -70.664062, 76.760541 ], [ -71.015625, 76.760541 ], [ -71.015625, 76.920614 ], [ -71.367188, 76.920614 ], [ -71.367188, 76.999935 ], [ -71.015625, 76.999935 ], [ -71.015625, 77.078784 ], [ -70.312500, 77.078784 ], [ -70.312500, 77.157163 ], [ -69.609375, 77.157163 ], [ -69.609375, 77.235074 ], [ -68.906250, 77.235074 ], [ -68.906250, 77.312520 ], [ -67.500000, 77.312520 ], [ -67.500000, 77.389504 ], [ -67.851562, 77.389504 ], [ -67.851562, 77.466028 ], [ -69.257812, 77.466028 ], [ -69.257812, 77.542096 ], [ -70.664062, 77.542096 ], [ -70.664062, 77.617709 ], [ -71.367188, 77.617709 ], [ -71.367188, 77.692870 ], [ -71.718750, 77.692870 ], [ -71.718750, 77.767582 ], [ -72.070312, 77.767582 ], [ -72.070312, 77.841848 ], [ -72.421875, 77.841848 ], [ -72.421875, 77.915669 ], [ -19.687500, 77.989049 ], [ -19.687500, 77.466028 ], [ -19.335938, 77.466028 ], [ -19.335938, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 77.078784 ], [ -18.632812, 77.078784 ], [ -18.632812, 76.999935 ], [ -18.984375, 76.999935 ], [ -18.984375, 76.920614 ], [ -20.039062, 76.920614 ], [ -20.039062, 76.840816 ], [ -20.390625, 76.840816 ], [ -20.390625, 76.760541 ], [ -21.093750, 76.760541 ], [ -21.093750, 76.679785 ], [ -21.445312, 76.679785 ], [ -21.445312, 76.598545 ], [ -21.796875, 76.598545 ], [ -21.796875, 76.516819 ], [ -21.445312, 76.516819 ], [ -21.445312, 76.434604 ], [ -21.093750, 76.434604 ], [ -21.093750, 76.351896 ], [ -20.742188, 76.351896 ], [ -20.742188, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.184995 ], [ -20.039062, 76.184995 ], [ -20.039062, 76.100796 ], [ -19.687500, 76.100796 ], [ -19.687500, 75.230667 ], [ -20.039062, 75.230667 ], [ -20.039062, 75.140778 ], [ -20.742188, 75.140778 ], [ -20.742188, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.775843 ], [ -20.039062, 74.775843 ], [ -20.039062, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.402163 ], [ -19.335938, 74.402163 ], [ -19.335938, 74.307353 ], [ -20.039062, 74.307353 ], [ -20.039062, 74.211983 ], [ -21.445312, 74.211983 ], [ -21.445312, 74.116047 ], [ -21.093750, 74.116047 ], [ -21.093750, 74.019543 ], [ -20.742188, 74.019543 ], [ -20.742188, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.627789 ], [ -20.742188, 73.627789 ], [ -20.742188, 73.428424 ], [ -21.093750, 73.428424 ], [ -21.093750, 73.327858 ], [ -23.554688, 73.327858 ], [ -23.554688, 73.226700 ], [ -23.203125, 73.226700 ], [ -23.203125, 73.022592 ], [ -22.851562, 73.022592 ], [ -22.851562, 72.816074 ], [ -22.500000, 72.816074 ], [ -22.500000, 72.607120 ], [ -22.148438, 72.607120 ], [ -22.148438, 72.181804 ], [ -22.500000, 72.181804 ], [ -22.500000, 72.289067 ], [ -23.203125, 72.289067 ], [ -23.203125, 72.395706 ], [ -23.554688, 72.395706 ], [ -23.554688, 72.501722 ], [ -24.609375, 72.501722 ], [ -24.609375, 72.289067 ], [ -24.960938, 72.289067 ], [ -24.960938, 72.181804 ], [ -24.257812, 72.181804 ], [ -24.257812, 72.073911 ], [ -23.554688, 72.073911 ], [ -23.554688, 71.965388 ], [ -23.203125, 71.965388 ], [ -23.203125, 71.746432 ], [ -22.851562, 71.746432 ], [ -22.851562, 71.635993 ], [ -22.500000, 71.635993 ], [ -22.500000, 71.413177 ], [ -22.148438, 71.413177 ], [ -22.148438, 70.959697 ], [ -21.796875, 70.959697 ], [ -21.796875, 70.612614 ], [ -22.500000, 70.612614 ], [ -22.500000, 70.495574 ], [ -23.906250, 70.495574 ], [ -23.906250, 70.728979 ], [ -24.257812, 70.728979 ], [ -24.257812, 70.844673 ], [ -24.609375, 70.844673 ], [ -24.609375, 70.959697 ], [ -24.960938, 70.959697 ], [ -24.960938, 71.187754 ], [ -25.312500, 71.187754 ], [ -25.312500, 71.300793 ], [ -25.664062, 71.300793 ], [ -25.664062, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.612614 ], [ -25.664062, 70.612614 ], [ -25.664062, 70.495574 ], [ -26.015625, 70.495574 ], [ -26.015625, 70.259452 ], [ -25.312500, 70.259452 ], [ -25.312500, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 70.020587 ], [ -22.851562, 70.020587 ], [ -22.851562, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.778952 ], [ -23.554688, 69.778952 ], [ -23.554688, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.534518 ], [ -24.257812, 69.534518 ], [ -24.257812, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.287257 ], [ -24.960938, 69.287257 ], [ -24.960938, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 69.037142 ], [ -26.015625, 69.037142 ], [ -26.015625, 68.911005 ], [ -26.367188, 68.911005 ], [ -26.367188, 68.784144 ], [ -26.718750, 68.784144 ], [ -26.718750, 68.656555 ], [ -27.421875, 68.656555 ], [ -27.421875, 68.528235 ], [ -28.125000, 68.528235 ], [ -28.125000, 68.399180 ], [ -28.828125, 68.399180 ], [ -28.828125, 68.269387 ], [ -29.882812, 68.269387 ], [ -29.882812, 68.138852 ], [ -31.640625, 68.138852 ], [ -31.640625, 68.007571 ], [ -31.992188, 68.007571 ], [ -31.992188, 67.875541 ], [ -32.343750, 67.875541 ], [ -32.343750, 67.742759 ], [ -32.695312, 67.742759 ], [ -32.695312, 67.609221 ], [ -33.046875, 67.609221 ], [ -33.046875, 67.339861 ], [ -33.398438, 67.339861 ], [ -33.398438, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.513260 ], [ -34.453125, 66.513260 ], [ -34.453125, 66.372755 ], [ -34.804688, 66.372755 ], [ -34.804688, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.089364 ], [ -35.859375, 66.089364 ], [ -35.859375, 65.946472 ], [ -36.914062, 65.946472 ], [ -36.914062, 65.802776 ], [ -53.437500, 65.802776 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.372755 ], [ -53.437500, 66.372755 ], [ -53.437500, 66.791909 ], [ -53.789062, 66.791909 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.339861 ], [ -53.789062, 67.339861 ], [ -53.789062, 67.742759 ], [ -53.437500, 67.742759 ], [ -53.437500, 68.138852 ], [ -53.085938, 68.138852 ], [ -53.085938, 68.399180 ], [ -52.734375, 68.399180 ], [ -52.734375, 68.528235 ], [ -52.031250, 68.528235 ], [ -52.031250, 68.656555 ], [ -51.328125, 68.656555 ], [ -51.328125, 68.911005 ], [ -50.976562, 68.911005 ], [ -50.976562, 69.778952 ], [ -51.328125, 69.778952 ], [ -51.328125, 69.657086 ], [ -51.679688, 69.657086 ], [ -51.679688, 69.534518 ], [ -52.031250, 69.534518 ], [ -52.031250, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.287257 ], [ -53.789062, 69.287257 ], [ -53.789062, 69.411242 ], [ -54.492188, 69.411242 ], [ -54.492188, 69.534518 ], [ -54.843750, 69.534518 ], [ -54.843750, 70.495574 ], [ -54.492188, 70.495574 ], [ -54.492188, 70.844673 ], [ -53.085938, 70.844673 ], [ -53.085938, 70.728979 ], [ -52.031250, 70.728979 ] ], [ [ -52.031250, 70.728979 ], [ -52.031250, 70.612614 ], [ -51.679688, 70.612614 ], [ -51.679688, 70.728979 ], [ -52.031250, 70.728979 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.796875, 66.089364 ], [ -21.445312, 66.089364 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -23.906250, 65.802776 ], [ -23.906250, 66.089364 ], [ -23.554688, 66.089364 ], [ -23.554688, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.372755 ], [ -22.148438, 66.372755 ], [ -22.148438, 66.231457 ], [ -21.796875, 66.231457 ], [ -21.796875, 66.089364 ] ] ], [ [ [ -19.335938, 65.946472 ], [ -19.335938, 66.089364 ], [ -18.281250, 66.089364 ], [ -18.281250, 65.946472 ], [ -17.578125, 65.946472 ], [ -17.578125, 66.089364 ], [ -17.226562, 66.089364 ], [ -17.226562, 66.231457 ], [ -16.523438, 66.231457 ], [ -16.523438, 66.372755 ], [ -16.171875, 66.372755 ], [ -16.171875, 66.513260 ], [ -14.414062, 66.513260 ], [ -14.414062, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.802776 ], [ -20.039062, 65.802776 ], [ -20.039062, 65.946472 ], [ -19.335938, 65.946472 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.372755 ], [ -22.148438, 66.231457 ], [ -21.796875, 66.231457 ], [ -21.796875, 66.089364 ], [ -21.445312, 66.089364 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -23.906250, 65.802776 ], [ -23.906250, 66.089364 ], [ -23.554688, 66.089364 ], [ -23.554688, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.372755 ], [ -22.148438, 66.372755 ] ] ], [ [ [ -14.414062, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.802776 ], [ -20.039062, 65.802776 ], [ -20.039062, 65.946472 ], [ -19.335938, 65.946472 ], [ -19.335938, 66.089364 ], [ -18.281250, 66.089364 ], [ -18.281250, 65.946472 ], [ -17.578125, 65.946472 ], [ -17.578125, 66.089364 ], [ -17.226562, 66.089364 ], [ -17.226562, 66.231457 ], [ -16.523438, 66.231457 ], [ -16.523438, 66.372755 ], [ -16.171875, 66.372755 ], [ -16.171875, 66.513260 ], [ -14.414062, 66.513260 ], [ -14.414062, 66.089364 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, -66.089364 ], [ 56.953125, -66.089364 ], [ 56.953125, -66.231457 ], [ 57.304688, -66.231457 ], [ 57.304688, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -67.067433 ], [ 58.007812, -67.067433 ], [ 58.007812, -67.204032 ], [ 58.359375, -67.204032 ], [ 58.359375, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.474922 ], [ 60.117188, -67.474922 ], [ 60.117188, -67.742759 ], [ 60.468750, -67.742759 ], [ 60.468750, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -68.007571 ], [ 62.929688, -68.007571 ], [ 62.929688, -67.875541 ], [ 63.281250, -67.875541 ], [ 63.281250, -67.742759 ], [ 63.632812, -67.742759 ], [ 63.632812, -67.474922 ], [ 64.687500, -67.474922 ], [ 64.687500, -67.609221 ], [ 65.390625, -67.609221 ], [ 65.390625, -67.742759 ], [ 66.093750, -67.742759 ], [ 66.093750, -67.875541 ], [ 68.906250, -67.875541 ], [ 68.906250, -68.138852 ], [ 69.257812, -68.138852 ], [ 69.257812, -68.656555 ], [ 69.609375, -68.656555 ], [ 69.609375, -69.778952 ], [ 68.906250, -69.778952 ], [ 68.906250, -69.900118 ], [ 68.554688, -69.900118 ], [ 68.554688, -70.020587 ], [ 68.203125, -70.020587 ], [ 68.203125, -70.259452 ], [ 67.851562, -70.259452 ], [ 67.851562, -70.728979 ], [ 68.906250, -70.728979 ], [ 68.906250, -71.300793 ], [ 68.554688, -71.300793 ], [ 68.554688, -71.524909 ], [ 68.203125, -71.524909 ], [ 68.203125, -71.746432 ], [ 67.851562, -71.746432 ], [ 67.851562, -71.965388 ], [ 68.203125, -71.965388 ], [ 68.203125, -72.181804 ], [ 68.906250, -72.181804 ], [ 68.906250, -72.289067 ], [ 70.312500, -72.289067 ], [ 70.312500, -72.181804 ], [ 71.015625, -72.181804 ], [ 71.015625, -72.073911 ], [ 71.367188, -72.073911 ], [ 71.367188, -71.856229 ], [ 71.718750, -71.856229 ], [ 71.718750, -71.524909 ], [ 72.070312, -71.524909 ], [ 72.070312, -71.187754 ], [ 72.421875, -71.187754 ], [ 72.421875, -70.959697 ], [ 72.773438, -70.959697 ], [ 72.773438, -70.844673 ], [ 73.125000, -70.844673 ], [ 73.125000, -70.612614 ], [ 73.476562, -70.612614 ], [ 73.476562, -70.140364 ], [ 73.828125, -70.140364 ], [ 73.828125, -69.900118 ], [ 74.531250, -69.900118 ], [ 74.531250, -69.778952 ], [ 76.289062, -69.778952 ], [ 76.289062, -69.657086 ], [ 76.992188, -69.657086 ], [ 76.992188, -69.534518 ], [ 77.695312, -69.534518 ], [ 77.695312, -69.287257 ], [ 78.046875, -69.287257 ], [ 78.046875, -68.911005 ], [ 78.398438, -68.911005 ], [ 78.398438, -68.656555 ], [ 78.750000, -68.656555 ], [ 78.750000, -68.399180 ], [ 79.101562, -68.399180 ], [ 79.101562, -68.269387 ], [ 79.453125, -68.269387 ], [ 79.453125, -68.138852 ], [ 80.156250, -68.138852 ], [ 80.156250, -68.007571 ], [ 80.859375, -68.007571 ], [ 80.859375, -67.875541 ], [ 81.210938, -67.875541 ], [ 81.210938, -67.742759 ], [ 81.562500, -67.742759 ], [ 81.562500, -67.474922 ], [ 81.914062, -67.474922 ], [ 81.914062, -67.339861 ], [ 82.617188, -67.339861 ], [ 82.617188, -67.204032 ], [ 82.968750, -67.204032 ], [ 82.968750, -67.339861 ], [ 84.375000, -67.339861 ], [ 84.375000, -67.204032 ], [ 85.429688, -67.204032 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.204032 ], [ 87.187500, -67.204032 ], [ 87.187500, -67.067433 ], [ 87.539062, -67.067433 ], [ 87.539062, -66.652977 ], [ 87.890625, -66.652977 ], [ 87.890625, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.054688, -71.300793 ], [ 1.054688, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -70.959697 ], [ 3.867188, -70.959697 ], [ 3.867188, -70.844673 ], [ 4.570312, -70.844673 ], [ 4.570312, -70.728979 ], [ 5.273438, -70.728979 ], [ 5.273438, -70.612614 ], [ 5.976562, -70.612614 ], [ 5.976562, -70.495574 ], [ 6.679688, -70.495574 ], [ 6.679688, -70.377854 ], [ 7.031250, -70.377854 ], [ 7.031250, -70.259452 ], [ 7.382812, -70.259452 ], [ 7.382812, -70.020587 ], [ 8.085938, -70.020587 ], [ 8.085938, -70.140364 ], [ 9.140625, -70.140364 ], [ 9.140625, -70.020587 ], [ 9.492188, -70.020587 ], [ 9.492188, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.377854 ], [ 10.195312, -70.377854 ], [ 10.195312, -70.612614 ], [ 10.546875, -70.612614 ], [ 10.546875, -70.844673 ], [ 11.250000, -70.844673 ], [ 11.250000, -70.728979 ], [ 11.953125, -70.728979 ], [ 11.953125, -70.495574 ], [ 12.304688, -70.495574 ], [ 12.304688, -70.259452 ], [ 12.656250, -70.259452 ], [ 12.656250, -70.140364 ], [ 13.359375, -70.140364 ], [ 13.359375, -70.020587 ], [ 14.765625, -70.020587 ], [ 14.765625, -70.259452 ], [ 15.117188, -70.259452 ], [ 15.117188, -70.377854 ], [ 15.468750, -70.377854 ], [ 15.468750, -70.140364 ], [ 15.820312, -70.140364 ], [ 15.820312, -70.020587 ], [ 16.523438, -70.020587 ], [ 16.523438, -69.900118 ], [ 19.687500, -69.900118 ], [ 19.687500, -70.020587 ], [ 21.445312, -70.020587 ], [ 21.445312, -70.259452 ], [ 21.796875, -70.259452 ], [ 21.796875, -70.495574 ], [ 22.148438, -70.495574 ], [ 22.148438, -70.728979 ], [ 22.851562, -70.728979 ], [ 22.851562, -70.612614 ], [ 23.554688, -70.612614 ], [ 23.554688, -70.495574 ], [ 27.773438, -70.495574 ], [ 27.773438, -70.377854 ], [ 28.828125, -70.377854 ], [ 28.828125, -70.259452 ], [ 29.531250, -70.259452 ], [ 29.531250, -70.020587 ], [ 29.882812, -70.020587 ], [ 29.882812, -69.900118 ], [ 30.585938, -69.900118 ], [ 30.585938, -69.778952 ], [ 31.640625, -69.778952 ], [ 31.640625, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.534518 ], [ 32.695312, -69.534518 ], [ 32.695312, -69.287257 ], [ 33.046875, -69.287257 ], [ 33.046875, -69.037142 ], [ 33.398438, -69.037142 ], [ 33.398438, -68.656555 ], [ 33.750000, -68.656555 ], [ 33.750000, -68.528235 ], [ 34.101562, -68.528235 ], [ 34.101562, -68.656555 ], [ 34.804688, -68.656555 ], [ 34.804688, -68.911005 ], [ 35.156250, -68.911005 ], [ 35.156250, -69.162558 ], [ 35.859375, -69.162558 ], [ 35.859375, -69.287257 ], [ 36.914062, -69.287257 ], [ 36.914062, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.287257 ], [ 37.617188, -69.287257 ], [ 37.617188, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.657086 ], [ 38.320312, -69.657086 ], [ 38.320312, -69.778952 ], [ 39.023438, -69.778952 ], [ 39.023438, -69.657086 ], [ 39.726562, -69.657086 ], [ 39.726562, -69.411242 ], [ 40.078125, -69.411242 ], [ 40.078125, -69.162558 ], [ 40.429688, -69.162558 ], [ 40.429688, -69.037142 ], [ 40.781250, -69.037142 ], [ 40.781250, -68.911005 ], [ 41.132812, -68.911005 ], [ 41.132812, -68.784144 ], [ 41.835938, -68.784144 ], [ 41.835938, -68.656555 ], [ 42.187500, -68.656555 ], [ 42.187500, -68.528235 ], [ 42.890625, -68.528235 ], [ 42.890625, -68.399180 ], [ 43.593750, -68.399180 ], [ 43.593750, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.138852 ], [ 45.000000, -68.138852 ], [ 45.000000, -68.007571 ], [ 45.703125, -68.007571 ], [ 45.703125, -67.875541 ], [ 46.054688, -67.875541 ], [ 46.054688, -67.742759 ], [ 46.406250, -67.742759 ], [ 46.406250, -67.609221 ], [ 46.757812, -67.609221 ], [ 46.757812, -67.742759 ], [ 47.812500, -67.742759 ], [ 47.812500, -67.609221 ], [ 48.164062, -67.609221 ], [ 48.164062, -67.474922 ], [ 48.515625, -67.474922 ], [ 48.515625, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.791909 ], [ 50.976562, -66.791909 ], [ 50.976562, -66.513260 ], [ 51.328125, -66.513260 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.382812, -66.231457 ], [ 52.382812, -66.089364 ], [ 53.437500, -66.089364 ], [ 53.437500, -65.946472 ], [ 54.140625, -65.946472 ], [ 54.140625, -65.802776 ], [ 55.546875, -65.802776 ], [ 55.546875, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.546875, -65.802776 ], [ 55.546875, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ], [ 56.953125, -66.089364 ], [ 56.953125, -66.231457 ], [ 57.304688, -66.231457 ], [ 57.304688, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -67.067433 ], [ 58.007812, -67.067433 ], [ 58.007812, -67.204032 ], [ 58.359375, -67.204032 ], [ 58.359375, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.474922 ], [ 60.117188, -67.474922 ], [ 60.117188, -67.742759 ], [ 60.468750, -67.742759 ], [ 60.468750, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -68.007571 ], [ 62.929688, -68.007571 ], [ 62.929688, -67.875541 ], [ 63.281250, -67.875541 ], [ 63.281250, -67.742759 ], [ 63.632812, -67.742759 ], [ 63.632812, -67.474922 ], [ 64.687500, -67.474922 ], [ 64.687500, -67.609221 ], [ 65.390625, -67.609221 ], [ 65.390625, -67.742759 ], [ 66.093750, -67.742759 ], [ 66.093750, -67.875541 ], [ 68.906250, -67.875541 ], [ 68.906250, -68.138852 ], [ 69.257812, -68.138852 ], [ 69.257812, -68.656555 ], [ 69.609375, -68.656555 ], [ 69.609375, -69.778952 ], [ 68.906250, -69.778952 ], [ 68.906250, -69.900118 ], [ 68.554688, -69.900118 ], [ 68.554688, -70.020587 ], [ 68.203125, -70.020587 ], [ 68.203125, -70.259452 ], [ 67.851562, -70.259452 ], [ 67.851562, -70.728979 ], [ 68.906250, -70.728979 ], [ 68.906250, -71.300793 ], [ 68.554688, -71.300793 ], [ 68.554688, -71.524909 ], [ 68.203125, -71.524909 ], [ 68.203125, -71.746432 ], [ 67.851562, -71.746432 ], [ 67.851562, -71.965388 ], [ 68.203125, -71.965388 ], [ 68.203125, -72.181804 ], [ 68.906250, -72.181804 ], [ 68.906250, -72.289067 ], [ 70.312500, -72.289067 ], [ 70.312500, -72.181804 ], [ 71.015625, -72.181804 ], [ 71.015625, -72.073911 ], [ 71.367188, -72.073911 ], [ 71.367188, -71.856229 ], [ 71.718750, -71.856229 ], [ 71.718750, -71.524909 ], [ 72.070312, -71.524909 ], [ 72.070312, -71.187754 ], [ 72.421875, -71.187754 ], [ 72.421875, -70.959697 ], [ 72.773438, -70.959697 ], [ 72.773438, -70.844673 ], [ 73.125000, -70.844673 ], [ 73.125000, -70.612614 ], [ 73.476562, -70.612614 ], [ 73.476562, -70.140364 ], [ 73.828125, -70.140364 ], [ 73.828125, -69.900118 ], [ 74.531250, -69.900118 ], [ 74.531250, -69.778952 ], [ 76.289062, -69.778952 ], [ 76.289062, -69.657086 ], [ 76.992188, -69.657086 ], [ 76.992188, -69.534518 ], [ 77.695312, -69.534518 ], [ 77.695312, -69.287257 ], [ 78.046875, -69.287257 ], [ 78.046875, -68.911005 ], [ 78.398438, -68.911005 ], [ 78.398438, -68.656555 ], [ 78.750000, -68.656555 ], [ 78.750000, -68.399180 ], [ 79.101562, -68.399180 ], [ 79.101562, -68.269387 ], [ 79.453125, -68.269387 ], [ 79.453125, -68.138852 ], [ 80.156250, -68.138852 ], [ 80.156250, -68.007571 ], [ 80.859375, -68.007571 ], [ 80.859375, -67.875541 ], [ 81.210938, -67.875541 ], [ 81.210938, -67.742759 ], [ 81.562500, -67.742759 ], [ 81.562500, -67.474922 ], [ 81.914062, -67.474922 ], [ 81.914062, -67.339861 ], [ 82.617188, -67.339861 ], [ 82.617188, -67.204032 ], [ 82.968750, -67.204032 ], [ 82.968750, -67.339861 ], [ 84.375000, -67.339861 ], [ 84.375000, -67.204032 ], [ 85.429688, -67.204032 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.204032 ], [ 87.187500, -67.204032 ], [ 87.187500, -67.067433 ], [ 87.539062, -67.067433 ], [ 87.539062, -66.652977 ], [ 87.890625, -66.652977 ], [ 87.890625, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.054688, -71.300793 ], [ 1.054688, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -70.959697 ], [ 3.867188, -70.959697 ], [ 3.867188, -70.844673 ], [ 4.570312, -70.844673 ], [ 4.570312, -70.728979 ], [ 5.273438, -70.728979 ], [ 5.273438, -70.612614 ], [ 5.976562, -70.612614 ], [ 5.976562, -70.495574 ], [ 6.679688, -70.495574 ], [ 6.679688, -70.377854 ], [ 7.031250, -70.377854 ], [ 7.031250, -70.259452 ], [ 7.382812, -70.259452 ], [ 7.382812, -70.020587 ], [ 8.085938, -70.020587 ], [ 8.085938, -70.140364 ], [ 9.140625, -70.140364 ], [ 9.140625, -70.020587 ], [ 9.492188, -70.020587 ], [ 9.492188, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.377854 ], [ 10.195312, -70.377854 ], [ 10.195312, -70.612614 ], [ 10.546875, -70.612614 ], [ 10.546875, -70.844673 ], [ 11.250000, -70.844673 ], [ 11.250000, -70.728979 ], [ 11.953125, -70.728979 ], [ 11.953125, -70.495574 ], [ 12.304688, -70.495574 ], [ 12.304688, -70.259452 ], [ 12.656250, -70.259452 ], [ 12.656250, -70.140364 ], [ 13.359375, -70.140364 ], [ 13.359375, -70.020587 ], [ 14.765625, -70.020587 ], [ 14.765625, -70.259452 ], [ 15.117188, -70.259452 ], [ 15.117188, -70.377854 ], [ 15.468750, -70.377854 ], [ 15.468750, -70.140364 ], [ 15.820312, -70.140364 ], [ 15.820312, -70.020587 ], [ 16.523438, -70.020587 ], [ 16.523438, -69.900118 ], [ 19.687500, -69.900118 ], [ 19.687500, -70.020587 ], [ 21.445312, -70.020587 ], [ 21.445312, -70.259452 ], [ 21.796875, -70.259452 ], [ 21.796875, -70.495574 ], [ 22.148438, -70.495574 ], [ 22.148438, -70.728979 ], [ 22.851562, -70.728979 ], [ 22.851562, -70.612614 ], [ 23.554688, -70.612614 ], [ 23.554688, -70.495574 ], [ 27.773438, -70.495574 ], [ 27.773438, -70.377854 ], [ 28.828125, -70.377854 ], [ 28.828125, -70.259452 ], [ 29.531250, -70.259452 ], [ 29.531250, -70.020587 ], [ 29.882812, -70.020587 ], [ 29.882812, -69.900118 ], [ 30.585938, -69.900118 ], [ 30.585938, -69.778952 ], [ 31.640625, -69.778952 ], [ 31.640625, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.534518 ], [ 32.695312, -69.534518 ], [ 32.695312, -69.287257 ], [ 33.046875, -69.287257 ], [ 33.046875, -69.037142 ], [ 33.398438, -69.037142 ], [ 33.398438, -68.656555 ], [ 33.750000, -68.656555 ], [ 33.750000, -68.528235 ], [ 34.101562, -68.528235 ], [ 34.101562, -68.656555 ], [ 34.804688, -68.656555 ], [ 34.804688, -68.911005 ], [ 35.156250, -68.911005 ], [ 35.156250, -69.162558 ], [ 35.859375, -69.162558 ], [ 35.859375, -69.287257 ], [ 36.914062, -69.287257 ], [ 36.914062, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.287257 ], [ 37.617188, -69.287257 ], [ 37.617188, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.657086 ], [ 38.320312, -69.657086 ], [ 38.320312, -69.778952 ], [ 39.023438, -69.778952 ], [ 39.023438, -69.657086 ], [ 39.726562, -69.657086 ], [ 39.726562, -69.411242 ], [ 40.078125, -69.411242 ], [ 40.078125, -69.162558 ], [ 40.429688, -69.162558 ], [ 40.429688, -69.037142 ], [ 40.781250, -69.037142 ], [ 40.781250, -68.911005 ], [ 41.132812, -68.911005 ], [ 41.132812, -68.784144 ], [ 41.835938, -68.784144 ], [ 41.835938, -68.656555 ], [ 42.187500, -68.656555 ], [ 42.187500, -68.528235 ], [ 42.890625, -68.528235 ], [ 42.890625, -68.399180 ], [ 43.593750, -68.399180 ], [ 43.593750, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.138852 ], [ 45.000000, -68.138852 ], [ 45.000000, -68.007571 ], [ 45.703125, -68.007571 ], [ 45.703125, -67.875541 ], [ 46.054688, -67.875541 ], [ 46.054688, -67.742759 ], [ 46.406250, -67.742759 ], [ 46.406250, -67.609221 ], [ 46.757812, -67.609221 ], [ 46.757812, -67.742759 ], [ 47.812500, -67.742759 ], [ 47.812500, -67.609221 ], [ 48.164062, -67.609221 ], [ 48.164062, -67.474922 ], [ 48.515625, -67.474922 ], [ 48.515625, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.791909 ], [ 50.976562, -66.791909 ], [ 50.976562, -66.513260 ], [ 51.328125, -66.513260 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.382812, -66.231457 ], [ 52.382812, -66.089364 ], [ 53.437500, -66.089364 ], [ 53.437500, -65.946472 ], [ 54.140625, -65.946472 ], [ 54.140625, -65.802776 ], [ 55.546875, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.204032 ], [ 85.429688, -67.204032 ], [ 85.429688, -67.067433 ] ] ], [ [ [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 87.187500, -67.204032 ], [ 87.187500, -67.067433 ], [ 87.539062, -67.067433 ], [ 87.539062, -66.652977 ], [ 87.890625, -66.652977 ], [ 87.890625, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ] ] ], [ [ [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ] ] ], [ [ [ 56.250000, -66.089364 ], [ 56.953125, -66.089364 ], [ 56.953125, -66.231457 ], [ 57.304688, -66.231457 ], [ 57.304688, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -67.067433 ], [ 58.007812, -67.067433 ], [ 58.007812, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.791909 ], [ 50.976562, -66.791909 ], [ 50.976562, -66.513260 ], [ 51.328125, -66.513260 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.382812, -66.231457 ], [ 52.382812, -66.089364 ], [ 53.437500, -66.089364 ], [ 53.437500, -65.946472 ], [ 54.140625, -65.946472 ], [ 54.140625, -65.802776 ], [ 54.843750, -65.802776 ], [ 54.843750, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, -65.802776 ], [ 54.843750, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ], [ 56.953125, -66.089364 ], [ 56.953125, -66.231457 ], [ 57.304688, -66.231457 ], [ 57.304688, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -67.067433 ], [ 58.007812, -67.067433 ], [ 58.007812, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.791909 ], [ 50.976562, -66.791909 ], [ 50.976562, -66.513260 ], [ 51.328125, -66.513260 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.382812, -66.231457 ], [ 52.382812, -66.089364 ], [ 53.437500, -66.089364 ], [ 53.437500, -65.946472 ], [ 54.140625, -65.946472 ], [ 54.140625, -65.802776 ], [ 54.843750, -65.802776 ] ] ], [ [ [ 86.132812, -67.204032 ], [ 85.429688, -67.204032 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.204032 ] ] ], [ [ [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 87.187500, -67.204032 ], [ 87.187500, -67.067433 ], [ 87.539062, -67.067433 ], [ 87.539062, -66.652977 ], [ 87.890625, -66.652977 ], [ 87.890625, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.652977 ] ] ], [ [ [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.757537 ], [ 11.250000, 1.757537 ], [ 11.250000, 1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.757537 ], [ 11.250000, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.757537 ], [ 11.250000, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 34.804688, 1.757537 ], [ 34.804688, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.804688, 1.757537 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 34.804688, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.460181 ], [ 40.429688, -2.460181 ], [ 40.429688, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.513421 ], [ 39.726562, -3.513421 ], [ 39.726562, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.214943 ], [ 38.320312, -4.214943 ], [ 38.320312, -3.864255 ], [ 37.617188, -3.864255 ], [ 37.617188, -3.162456 ], [ 37.265625, -3.162456 ], [ 37.265625, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.460181 ], [ 35.859375, -2.460181 ], [ 35.859375, -2.108899 ], [ 35.507812, -2.108899 ], [ 35.507812, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.000000 ], [ 34.101562, 0.000000 ], [ 34.101562, 0.351560 ], [ 34.453125, 0.351560 ], [ 34.453125, 0.703107 ], [ 34.804688, 0.703107 ], [ 34.804688, 1.757537 ], [ 41.132812, 1.757537 ], [ 41.132812, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.132812, 1.757537 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.460181 ], [ 40.429688, -2.460181 ], [ 40.429688, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.513421 ], [ 39.726562, -3.513421 ], [ 39.726562, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.214943 ], [ 38.320312, -4.214943 ], [ 38.320312, -3.864255 ], [ 37.617188, -3.864255 ], [ 37.617188, -3.162456 ], [ 37.265625, -3.162456 ], [ 37.265625, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.460181 ], [ 35.859375, -2.460181 ], [ 35.859375, -2.108899 ], [ 35.507812, -2.108899 ], [ 35.507812, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.000000 ], [ 34.101562, 0.000000 ], [ 34.101562, 0.351560 ], [ 34.453125, 0.351560 ], [ 34.453125, 0.703107 ], [ 34.804688, 0.703107 ], [ 34.804688, 1.757537 ], [ 41.132812, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.351560 ], [ 43.242188, 0.351560 ], [ 43.242188, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.351560 ], [ 42.539062, -0.351560 ], [ 42.539062, -1.054628 ], [ 42.187500, -1.054628 ], [ 42.187500, -1.406109 ], [ 41.835938, -1.406109 ], [ 41.835938, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.351560 ], [ 43.242188, 0.351560 ], [ 43.242188, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.351560 ], [ 42.539062, -0.351560 ], [ 42.539062, -1.054628 ], [ 42.187500, -1.054628 ], [ 42.187500, -1.406109 ], [ 41.835938, -1.406109 ], [ 41.835938, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, 1.757537 ], [ 45.000000, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, -0.351560 ], [ 14.062500, -0.351560 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -2.460181 ], [ 11.953125, -2.460181 ], [ 11.953125, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -3.162456 ], [ 11.953125, -3.162456 ], [ 11.953125, -3.864255 ], [ 10.898438, -3.864255 ], [ 10.898438, -3.513421 ], [ 10.546875, -3.513421 ], [ 10.546875, -3.162456 ], [ 10.195312, -3.162456 ], [ 10.195312, -2.811371 ], [ 9.843750, -2.811371 ], [ 9.843750, -2.460181 ], [ 9.492188, -2.460181 ], [ 9.492188, -2.108899 ], [ 9.140625, -2.108899 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, -0.703107 ], [ 9.140625, -0.703107 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 1.757537 ], [ 13.007812, 1.757537 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.054628 ], [ 14.414062, 1.054628 ], [ 14.414062, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 1.757537 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.054628 ], [ 14.414062, 1.054628 ], [ 14.414062, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, -0.351560 ], [ 14.062500, -0.351560 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -2.460181 ], [ 11.953125, -2.460181 ], [ 11.953125, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -3.162456 ], [ 11.953125, -3.162456 ], [ 11.953125, -3.864255 ], [ 10.898438, -3.864255 ], [ 10.898438, -3.513421 ], [ 10.546875, -3.513421 ], [ 10.546875, -3.162456 ], [ 10.195312, -3.162456 ], [ 10.195312, -2.811371 ], [ 9.843750, -2.811371 ], [ 9.843750, -2.460181 ], [ 9.492188, -2.460181 ], [ 9.492188, -2.108899 ], [ 9.140625, -2.108899 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, -0.703107 ], [ 9.140625, -0.703107 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 1.757537 ], [ 13.007812, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.929688, 0.000000 ], [ 17.578125, 0.000000 ], [ 17.578125, -1.054628 ], [ 16.875000, -1.054628 ], [ 16.875000, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -2.811371 ], [ 15.820312, -2.811371 ], [ 15.820312, -3.162456 ], [ 16.171875, -3.162456 ], [ 16.171875, -3.864255 ], [ 15.820312, -3.864255 ], [ 15.820312, -4.214943 ], [ 15.117188, -4.214943 ], [ 15.117188, -4.565474 ], [ 14.765625, -4.565474 ], [ 14.765625, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.565474 ], [ 13.710938, -4.565474 ], [ 13.710938, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.915833 ], [ 11.601562, -4.915833 ], [ 11.601562, -4.214943 ], [ 11.250000, -4.214943 ], [ 11.250000, -3.864255 ], [ 11.953125, -3.864255 ], [ 11.953125, -3.162456 ], [ 11.601562, -3.162456 ], [ 11.601562, -2.811371 ], [ 11.953125, -2.811371 ], [ 11.953125, -2.460181 ], [ 14.414062, -2.460181 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, -0.351560 ], [ 13.710938, -0.351560 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, 0.703107 ], [ 14.414062, 0.703107 ], [ 14.414062, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 1.757537 ], [ 17.929688, 1.757537 ], [ 17.929688, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.929688, 1.757537 ], [ 17.929688, 0.000000 ], [ 17.578125, 0.000000 ], [ 17.578125, -1.054628 ], [ 16.875000, -1.054628 ], [ 16.875000, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -2.811371 ], [ 15.820312, -2.811371 ], [ 15.820312, -3.162456 ], [ 16.171875, -3.162456 ], [ 16.171875, -3.864255 ], [ 15.820312, -3.864255 ], [ 15.820312, -4.214943 ], [ 15.117188, -4.214943 ], [ 15.117188, -4.565474 ], [ 14.765625, -4.565474 ], [ 14.765625, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.565474 ], [ 13.710938, -4.565474 ], [ 13.710938, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.915833 ], [ 11.601562, -4.915833 ], [ 11.601562, -4.214943 ], [ 11.250000, -4.214943 ], [ 11.250000, -3.864255 ], [ 11.953125, -3.864255 ], [ 11.953125, -3.162456 ], [ 11.601562, -3.162456 ], [ 11.601562, -2.811371 ], [ 11.953125, -2.811371 ], [ 11.953125, -2.460181 ], [ 14.414062, -2.460181 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, -0.351560 ], [ 13.710938, -0.351560 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, 0.703107 ], [ 14.414062, 0.703107 ], [ 14.414062, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 1.757537 ], [ 17.929688, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.710992 ], [ 30.585938, -7.710992 ], [ 30.585938, -8.407168 ], [ 28.828125, -8.407168 ], [ 28.828125, -8.754795 ], [ 28.476562, -8.754795 ], [ 28.476562, -9.449062 ], [ 28.828125, -9.449062 ], [ 28.828125, -10.141932 ], [ 28.476562, -10.141932 ], [ 28.476562, -12.211180 ], [ 29.531250, -12.211180 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.897489 ], [ 28.476562, -12.897489 ], [ 28.476562, -12.554564 ], [ 28.125000, -12.554564 ], [ 28.125000, -12.211180 ], [ 27.421875, -12.211180 ], [ 27.421875, -11.867351 ], [ 25.664062, -11.867351 ], [ 25.664062, -11.523088 ], [ 25.312500, -11.523088 ], [ 25.312500, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -10.833306 ], [ 23.554688, -10.833306 ], [ 23.554688, -11.178402 ], [ 22.148438, -11.178402 ], [ 22.148438, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -7.362467 ], [ 20.742188, -7.362467 ], [ 20.742188, -7.013668 ], [ 19.335938, -7.013668 ], [ 19.335938, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 16.875000, -7.710992 ], [ 16.875000, -7.013668 ], [ 16.523438, -7.013668 ], [ 16.523438, -6.315299 ], [ 16.171875, -6.315299 ], [ 16.171875, -5.965754 ], [ 12.304688, -5.965754 ], [ 12.304688, -5.266008 ], [ 12.656250, -5.266008 ], [ 12.656250, -4.915833 ], [ 13.710938, -4.915833 ], [ 13.710938, -4.565474 ], [ 14.062500, -4.565474 ], [ 14.062500, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.565474 ], [ 15.117188, -4.565474 ], [ 15.117188, -4.214943 ], [ 15.820312, -4.214943 ], [ 15.820312, -3.864255 ], [ 16.171875, -3.864255 ], [ 16.171875, -3.162456 ], [ 15.820312, -3.162456 ], [ 15.820312, -2.811371 ], [ 16.171875, -2.811371 ], [ 16.171875, -2.108899 ], [ 16.523438, -2.108899 ], [ 16.523438, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.054628 ], [ 17.578125, -1.054628 ], [ 17.578125, 0.000000 ], [ 17.929688, 0.000000 ], [ 17.929688, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.703107 ], [ 29.531250, -0.703107 ], [ 29.531250, -1.757537 ], [ 29.179688, -1.757537 ], [ 29.179688, -4.915833 ], [ 29.531250, -4.915833 ], [ 29.531250, -7.013668 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, 1.757537 ], [ 30.585938, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.703107 ], [ 29.531250, -0.703107 ], [ 29.531250, -1.757537 ], [ 29.179688, -1.757537 ], [ 29.179688, -4.915833 ], [ 29.531250, -4.915833 ], [ 29.531250, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.710992 ], [ 30.585938, -7.710992 ], [ 30.585938, -8.407168 ], [ 28.828125, -8.407168 ], [ 28.828125, -8.754795 ], [ 28.476562, -8.754795 ], [ 28.476562, -9.449062 ], [ 28.828125, -9.449062 ], [ 28.828125, -10.141932 ], [ 28.476562, -10.141932 ], [ 28.476562, -12.211180 ], [ 29.531250, -12.211180 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.897489 ], [ 28.476562, -12.897489 ], [ 28.476562, -12.554564 ], [ 28.125000, -12.554564 ], [ 28.125000, -12.211180 ], [ 27.421875, -12.211180 ], [ 27.421875, -11.867351 ], [ 25.664062, -11.867351 ], [ 25.664062, -11.523088 ], [ 25.312500, -11.523088 ], [ 25.312500, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -10.833306 ], [ 23.554688, -10.833306 ], [ 23.554688, -11.178402 ], [ 22.148438, -11.178402 ], [ 22.148438, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -7.362467 ], [ 20.742188, -7.362467 ], [ 20.742188, -7.013668 ], [ 19.335938, -7.013668 ], [ 19.335938, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 16.875000, -7.710992 ], [ 16.875000, -7.013668 ], [ 16.523438, -7.013668 ], [ 16.523438, -6.315299 ], [ 16.171875, -6.315299 ], [ 16.171875, -5.965754 ], [ 12.304688, -5.965754 ], [ 12.304688, -5.266008 ], [ 12.656250, -5.266008 ], [ 12.656250, -4.915833 ], [ 13.710938, -4.915833 ], [ 13.710938, -4.565474 ], [ 14.062500, -4.565474 ], [ 14.062500, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.565474 ], [ 15.117188, -4.565474 ], [ 15.117188, -4.214943 ], [ 15.820312, -4.214943 ], [ 15.820312, -3.864255 ], [ 16.171875, -3.864255 ], [ 16.171875, -3.162456 ], [ 15.820312, -3.162456 ], [ 15.820312, -2.811371 ], [ 16.171875, -2.811371 ], [ 16.171875, -2.108899 ], [ 16.523438, -2.108899 ], [ 16.523438, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.054628 ], [ 17.578125, -1.054628 ], [ 17.578125, 0.000000 ], [ 17.929688, 0.000000 ], [ 17.929688, 1.757537 ], [ 30.585938, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.148438, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -17.308688 ], [ 22.851562, -17.308688 ], [ 22.851562, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.978733 ], [ 20.039062, -17.978733 ], [ 20.039062, -17.644022 ], [ 18.281250, -17.644022 ], [ 18.281250, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.972741 ], [ 12.304688, -16.972741 ], [ 12.304688, -17.308688 ], [ 11.601562, -17.308688 ], [ 11.601562, -16.299051 ], [ 11.953125, -16.299051 ], [ 11.953125, -14.944785 ], [ 12.304688, -14.944785 ], [ 12.304688, -14.264383 ], [ 12.656250, -14.264383 ], [ 12.656250, -13.239945 ], [ 13.007812, -13.239945 ], [ 13.007812, -12.897489 ], [ 13.359375, -12.897489 ], [ 13.359375, -12.211180 ], [ 13.710938, -12.211180 ], [ 13.710938, -10.833306 ], [ 13.359375, -10.833306 ], [ 13.359375, -10.141932 ], [ 13.007812, -10.141932 ], [ 13.007812, -8.754795 ], [ 13.359375, -8.754795 ], [ 13.359375, -8.059230 ], [ 13.007812, -8.059230 ], [ 13.007812, -7.362467 ], [ 12.656250, -7.362467 ], [ 12.656250, -6.664608 ], [ 12.304688, -6.664608 ], [ 12.304688, -5.965754 ], [ 16.171875, -5.965754 ], [ 16.171875, -6.315299 ], [ 16.523438, -6.315299 ], [ 16.523438, -7.013668 ], [ 16.875000, -7.013668 ], [ 16.875000, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 19.335938, -8.059230 ], [ 19.335938, -7.013668 ], [ 20.742188, -7.013668 ], [ 20.742188, -7.362467 ], [ 21.796875, -7.362467 ], [ 21.796875, -9.795678 ], [ 22.148438, -9.795678 ], [ 22.148438, -11.178402 ], [ 23.554688, -11.178402 ], [ 23.554688, -10.833306 ], [ 23.906250, -10.833306 ], [ 23.906250, -12.897489 ], [ 21.796875, -12.897489 ], [ 21.796875, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.972741 ] ] ], [ [ [ 12.656250, -5.266008 ], [ 11.953125, -5.266008 ], [ 11.953125, -4.915833 ], [ 12.304688, -4.915833 ], [ 12.304688, -4.565474 ], [ 12.656250, -4.565474 ], [ 12.656250, -5.266008 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.965754 ], [ 16.171875, -6.315299 ], [ 16.523438, -6.315299 ], [ 16.523438, -7.013668 ], [ 16.875000, -7.013668 ], [ 16.875000, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 19.335938, -8.059230 ], [ 19.335938, -7.013668 ], [ 20.742188, -7.013668 ], [ 20.742188, -7.362467 ], [ 21.796875, -7.362467 ], [ 21.796875, -9.795678 ], [ 22.148438, -9.795678 ], [ 22.148438, -11.178402 ], [ 23.554688, -11.178402 ], [ 23.554688, -10.833306 ], [ 23.906250, -10.833306 ], [ 23.906250, -12.897489 ], [ 21.796875, -12.897489 ], [ 21.796875, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -17.308688 ], [ 22.851562, -17.308688 ], [ 22.851562, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.978733 ], [ 20.039062, -17.978733 ], [ 20.039062, -17.644022 ], [ 18.281250, -17.644022 ], [ 18.281250, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.972741 ], [ 12.304688, -16.972741 ], [ 12.304688, -17.308688 ], [ 11.601562, -17.308688 ], [ 11.601562, -16.299051 ], [ 11.953125, -16.299051 ], [ 11.953125, -14.944785 ], [ 12.304688, -14.944785 ], [ 12.304688, -14.264383 ], [ 12.656250, -14.264383 ], [ 12.656250, -13.239945 ], [ 13.007812, -13.239945 ], [ 13.007812, -12.897489 ], [ 13.359375, -12.897489 ], [ 13.359375, -12.211180 ], [ 13.710938, -12.211180 ], [ 13.710938, -10.833306 ], [ 13.359375, -10.833306 ], [ 13.359375, -10.141932 ], [ 13.007812, -10.141932 ], [ 13.007812, -8.754795 ], [ 13.359375, -8.754795 ], [ 13.359375, -8.059230 ], [ 13.007812, -8.059230 ], [ 13.007812, -7.362467 ], [ 12.656250, -7.362467 ], [ 12.656250, -6.664608 ], [ 12.304688, -6.664608 ], [ 12.304688, -5.965754 ], [ 16.171875, -5.965754 ] ] ], [ [ [ 12.656250, -4.565474 ], [ 12.656250, -5.266008 ], [ 11.953125, -5.266008 ], [ 11.953125, -4.915833 ], [ 12.304688, -4.915833 ], [ 12.304688, -4.565474 ], [ 12.656250, -4.565474 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, -17.644022 ], [ 20.039062, -17.644022 ], [ 20.039062, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -17.644022 ], [ 23.906250, -17.644022 ], [ 23.906250, -17.308688 ], [ 24.609375, -17.308688 ], [ 24.609375, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.978733 ], [ 24.257812, -17.978733 ], [ 24.257812, -18.312811 ], [ 23.203125, -18.312811 ], [ 23.203125, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -18.312811 ], [ 20.742188, -18.312811 ], [ 20.742188, -21.943046 ], [ 20.039062, -21.943046 ], [ 20.039062, -28.613459 ], [ 19.687500, -28.613459 ], [ 19.687500, -28.921631 ], [ 17.226562, -28.921631 ], [ 17.226562, -28.304381 ], [ 16.523438, -28.304381 ], [ 16.523438, -28.613459 ], [ 15.820312, -28.613459 ], [ 15.820312, -27.994401 ], [ 15.468750, -27.994401 ], [ 15.468750, -27.371767 ], [ 15.117188, -27.371767 ], [ 15.117188, -25.799891 ], [ 14.765625, -25.799891 ], [ 14.765625, -24.846565 ], [ 14.414062, -24.846565 ], [ 14.414062, -22.268764 ], [ 14.062500, -22.268764 ], [ 14.062500, -21.943046 ], [ 13.710938, -21.943046 ], [ 13.710938, -21.289374 ], [ 13.359375, -21.289374 ], [ 13.359375, -20.632784 ], [ 13.007812, -20.632784 ], [ 13.007812, -19.973349 ], [ 12.656250, -19.973349 ], [ 12.656250, -18.979026 ], [ 12.304688, -18.979026 ], [ 12.304688, -18.312811 ], [ 11.953125, -18.312811 ], [ 11.953125, -17.644022 ], [ 11.601562, -17.644022 ], [ 11.601562, -17.308688 ], [ 12.304688, -17.308688 ], [ 12.304688, -16.972741 ], [ 13.359375, -16.972741 ], [ 13.359375, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.644022 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, -16.972741 ], [ 13.359375, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.644022 ], [ 20.039062, -17.644022 ], [ 20.039062, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -17.644022 ], [ 23.906250, -17.644022 ], [ 23.906250, -17.308688 ], [ 24.609375, -17.308688 ], [ 24.609375, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.978733 ], [ 24.257812, -17.978733 ], [ 24.257812, -18.312811 ], [ 23.203125, -18.312811 ], [ 23.203125, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -18.312811 ], [ 20.742188, -18.312811 ], [ 20.742188, -21.943046 ], [ 20.039062, -21.943046 ], [ 20.039062, -28.613459 ], [ 19.687500, -28.613459 ], [ 19.687500, -28.921631 ], [ 17.226562, -28.921631 ], [ 17.226562, -28.304381 ], [ 16.523438, -28.304381 ], [ 16.523438, -28.613459 ], [ 15.820312, -28.613459 ], [ 15.820312, -27.994401 ], [ 15.468750, -27.994401 ], [ 15.468750, -27.371767 ], [ 15.117188, -27.371767 ], [ 15.117188, -25.799891 ], [ 14.765625, -25.799891 ], [ 14.765625, -24.846565 ], [ 14.414062, -24.846565 ], [ 14.414062, -22.268764 ], [ 14.062500, -22.268764 ], [ 14.062500, -21.943046 ], [ 13.710938, -21.943046 ], [ 13.710938, -21.289374 ], [ 13.359375, -21.289374 ], [ 13.359375, -20.632784 ], [ 13.007812, -20.632784 ], [ 13.007812, -19.973349 ], [ 12.656250, -19.973349 ], [ 12.656250, -18.979026 ], [ 12.304688, -18.979026 ], [ 12.304688, -18.312811 ], [ 11.953125, -18.312811 ], [ 11.953125, -17.644022 ], [ 11.601562, -17.644022 ], [ 11.601562, -17.308688 ], [ 12.304688, -17.308688 ], [ 12.304688, -16.972741 ], [ 13.359375, -16.972741 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.108899 ], [ 30.585938, -2.108899 ], [ 30.585938, -2.460181 ], [ 29.882812, -2.460181 ], [ 29.882812, -2.811371 ], [ 29.179688, -2.811371 ], [ 29.179688, -1.757537 ], [ 29.531250, -1.757537 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ], [ 30.585938, -2.108899 ], [ 30.585938, -2.460181 ], [ 29.882812, -2.460181 ], [ 29.882812, -2.811371 ], [ 29.179688, -2.811371 ], [ 29.179688, -1.757537 ], [ 29.531250, -1.757537 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -3.864255 ], [ 30.234375, -3.864255 ], [ 30.234375, -4.565474 ], [ 29.179688, -4.565474 ], [ 29.179688, -2.811371 ], [ 29.882812, -2.811371 ], [ 29.882812, -2.460181 ], [ 30.585938, -2.460181 ], [ 30.585938, -3.864255 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -2.460181 ], [ 30.585938, -3.864255 ], [ 30.234375, -3.864255 ], [ 30.234375, -4.565474 ], [ 29.179688, -4.565474 ], [ 29.179688, -2.811371 ], [ 29.882812, -2.811371 ], [ 29.882812, -2.460181 ], [ 30.585938, -2.460181 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -9.102097 ], [ 32.695312, -9.102097 ], [ 32.695312, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.795678 ], [ 33.398438, -9.795678 ], [ 33.398438, -11.178402 ], [ 33.046875, -11.178402 ], [ 33.046875, -12.211180 ], [ 33.398438, -12.211180 ], [ 33.398438, -12.897489 ], [ 33.046875, -12.897489 ], [ 33.046875, -13.239945 ], [ 32.695312, -13.239945 ], [ 32.695312, -14.264383 ], [ 31.992188, -14.264383 ], [ 31.992188, -14.604847 ], [ 30.937500, -14.604847 ], [ 30.937500, -14.944785 ], [ 30.234375, -14.944785 ], [ 30.234375, -15.623037 ], [ 29.531250, -15.623037 ], [ 29.531250, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.636192 ], [ 28.476562, -16.636192 ], [ 28.476562, -16.972741 ], [ 28.125000, -16.972741 ], [ 28.125000, -17.308688 ], [ 27.773438, -17.308688 ], [ 27.773438, -17.644022 ], [ 27.421875, -17.644022 ], [ 27.421875, -17.978733 ], [ 25.664062, -17.978733 ], [ 25.664062, -17.644022 ], [ 24.609375, -17.644022 ], [ 24.609375, -17.308688 ], [ 23.906250, -17.308688 ], [ 23.906250, -17.644022 ], [ 22.851562, -17.644022 ], [ 22.851562, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.972741 ], [ 22.148438, -16.972741 ], [ 22.148438, -16.299051 ], [ 21.796875, -16.299051 ], [ 21.796875, -12.897489 ], [ 23.906250, -12.897489 ], [ 23.906250, -10.833306 ], [ 24.257812, -10.833306 ], [ 24.257812, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.523088 ], [ 25.664062, -11.523088 ], [ 25.664062, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.554564 ], [ 28.476562, -12.554564 ], [ 28.476562, -12.897489 ], [ 28.828125, -12.897489 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.211180 ], [ 28.476562, -12.211180 ], [ 28.476562, -10.141932 ], [ 28.828125, -10.141932 ], [ 28.828125, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -8.754795 ], [ 28.828125, -8.754795 ], [ 28.828125, -8.407168 ], [ 30.585938, -8.407168 ], [ 30.585938, -8.754795 ], [ 31.640625, -8.754795 ], [ 31.640625, -9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -8.407168 ], [ 30.585938, -8.754795 ], [ 31.640625, -8.754795 ], [ 31.640625, -9.102097 ], [ 32.695312, -9.102097 ], [ 32.695312, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.795678 ], [ 33.398438, -9.795678 ], [ 33.398438, -11.178402 ], [ 33.046875, -11.178402 ], [ 33.046875, -12.211180 ], [ 33.398438, -12.211180 ], [ 33.398438, -12.897489 ], [ 33.046875, -12.897489 ], [ 33.046875, -13.239945 ], [ 32.695312, -13.239945 ], [ 32.695312, -14.264383 ], [ 31.992188, -14.264383 ], [ 31.992188, -14.604847 ], [ 30.937500, -14.604847 ], [ 30.937500, -14.944785 ], [ 30.234375, -14.944785 ], [ 30.234375, -15.623037 ], [ 29.531250, -15.623037 ], [ 29.531250, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.636192 ], [ 28.476562, -16.636192 ], [ 28.476562, -16.972741 ], [ 28.125000, -16.972741 ], [ 28.125000, -17.308688 ], [ 27.773438, -17.308688 ], [ 27.773438, -17.644022 ], [ 27.421875, -17.644022 ], [ 27.421875, -17.978733 ], [ 25.664062, -17.978733 ], [ 25.664062, -17.644022 ], [ 24.609375, -17.644022 ], [ 24.609375, -17.308688 ], [ 23.906250, -17.308688 ], [ 23.906250, -17.644022 ], [ 22.851562, -17.644022 ], [ 22.851562, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.972741 ], [ 22.148438, -16.972741 ], [ 22.148438, -16.299051 ], [ 21.796875, -16.299051 ], [ 21.796875, -12.897489 ], [ 23.906250, -12.897489 ], [ 23.906250, -10.833306 ], [ 24.257812, -10.833306 ], [ 24.257812, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.523088 ], [ 25.664062, -11.523088 ], [ 25.664062, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.554564 ], [ 28.476562, -12.554564 ], [ 28.476562, -12.897489 ], [ 28.828125, -12.897489 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.211180 ], [ 28.476562, -12.211180 ], [ 28.476562, -10.141932 ], [ 28.828125, -10.141932 ], [ 28.828125, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -8.754795 ], [ 28.828125, -8.754795 ], [ 28.828125, -8.407168 ], [ 30.585938, -8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -16.299051 ], [ 32.343750, -16.299051 ], [ 32.343750, -16.636192 ], [ 32.695312, -16.636192 ], [ 32.695312, -20.303418 ], [ 32.343750, -20.303418 ], [ 32.343750, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -21.616579 ], [ 31.640625, -21.616579 ], [ 31.640625, -22.268764 ], [ 29.882812, -22.268764 ], [ 29.882812, -21.943046 ], [ 28.828125, -21.943046 ], [ 28.828125, -21.616579 ], [ 28.125000, -21.616579 ], [ 28.125000, -21.289374 ], [ 27.773438, -21.289374 ], [ 27.773438, -20.632784 ], [ 27.421875, -20.632784 ], [ 27.421875, -20.303418 ], [ 27.070312, -20.303418 ], [ 27.070312, -19.973349 ], [ 26.367188, -19.973349 ], [ 26.367188, -19.642588 ], [ 26.015625, -19.642588 ], [ 26.015625, -18.646245 ], [ 25.664062, -18.646245 ], [ 25.664062, -18.312811 ], [ 25.312500, -18.312811 ], [ 25.312500, -17.644022 ], [ 25.664062, -17.644022 ], [ 25.664062, -17.978733 ], [ 27.421875, -17.978733 ], [ 27.421875, -17.644022 ], [ 27.773438, -17.644022 ], [ 27.773438, -17.308688 ], [ 28.125000, -17.308688 ], [ 28.125000, -16.972741 ], [ 28.476562, -16.972741 ], [ 28.476562, -16.636192 ], [ 28.828125, -16.636192 ], [ 28.828125, -15.961329 ], [ 29.531250, -15.961329 ], [ 29.531250, -15.623037 ], [ 30.234375, -15.623037 ], [ 30.234375, -15.961329 ], [ 31.640625, -15.961329 ], [ 31.640625, -16.299051 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.623037 ], [ 30.234375, -15.961329 ], [ 31.640625, -15.961329 ], [ 31.640625, -16.299051 ], [ 32.343750, -16.299051 ], [ 32.343750, -16.636192 ], [ 32.695312, -16.636192 ], [ 32.695312, -20.303418 ], [ 32.343750, -20.303418 ], [ 32.343750, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.640625, -22.268764 ], [ 29.882812, -22.268764 ], [ 29.882812, -21.943046 ], [ 28.828125, -21.943046 ], [ 28.828125, -21.616579 ], [ 28.125000, -21.616579 ], [ 28.125000, -21.289374 ], [ 27.773438, -21.289374 ], [ 27.773438, -20.632784 ], [ 27.421875, -20.632784 ], [ 27.421875, -20.303418 ], [ 27.070312, -20.303418 ], [ 27.070312, -19.973349 ], [ 26.367188, -19.973349 ], [ 26.367188, -19.642588 ], [ 26.015625, -19.642588 ], [ 26.015625, -18.646245 ], [ 25.664062, -18.646245 ], [ 25.664062, -18.312811 ], [ 25.312500, -18.312811 ], [ 25.312500, -17.644022 ], [ 25.664062, -17.644022 ], [ 25.664062, -17.978733 ], [ 27.421875, -17.978733 ], [ 27.421875, -17.644022 ], [ 27.773438, -17.644022 ], [ 27.773438, -17.308688 ], [ 28.125000, -17.308688 ], [ 28.125000, -16.972741 ], [ 28.476562, -16.972741 ], [ 28.476562, -16.636192 ], [ 28.828125, -16.636192 ], [ 28.828125, -15.961329 ], [ 29.531250, -15.961329 ], [ 29.531250, -15.623037 ], [ 30.234375, -15.623037 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, -2.460181 ], [ 36.562500, -2.460181 ], [ 36.562500, -2.811371 ], [ 37.265625, -2.811371 ], [ 37.265625, -3.162456 ], [ 37.617188, -3.162456 ], [ 37.617188, -3.864255 ], [ 38.320312, -3.864255 ], [ 38.320312, -4.214943 ], [ 39.023438, -4.214943 ], [ 39.023438, -4.565474 ], [ 39.375000, -4.565474 ], [ 39.375000, -4.915833 ], [ 39.023438, -4.915833 ], [ 39.023438, -5.615986 ], [ 38.671875, -5.615986 ], [ 38.671875, -6.664608 ], [ 39.023438, -6.664608 ], [ 39.023438, -7.013668 ], [ 39.375000, -7.013668 ], [ 39.375000, -7.362467 ], [ 39.023438, -7.362467 ], [ 39.023438, -8.059230 ], [ 39.375000, -8.059230 ], [ 39.375000, -8.407168 ], [ 39.023438, -8.407168 ], [ 39.023438, -8.754795 ], [ 39.375000, -8.754795 ], [ 39.375000, -9.449062 ], [ 39.726562, -9.449062 ], [ 39.726562, -10.141932 ], [ 40.078125, -10.141932 ], [ 40.078125, -10.833306 ], [ 39.023438, -10.833306 ], [ 39.023438, -11.178402 ], [ 37.968750, -11.178402 ], [ 37.968750, -11.523088 ], [ 36.914062, -11.523088 ], [ 36.914062, -11.867351 ], [ 35.507812, -11.867351 ], [ 35.507812, -11.523088 ], [ 34.453125, -11.523088 ], [ 34.453125, -10.141932 ], [ 34.101562, -10.141932 ], [ 34.101562, -9.795678 ], [ 33.750000, -9.795678 ], [ 33.750000, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.102097 ], [ 31.640625, -9.102097 ], [ 31.640625, -8.754795 ], [ 30.585938, -8.754795 ], [ 30.585938, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -7.013668 ], [ 29.531250, -7.013668 ], [ 29.531250, -4.915833 ], [ 29.179688, -4.915833 ], [ 29.179688, -4.565474 ], [ 30.234375, -4.565474 ], [ 30.234375, -3.864255 ], [ 30.585938, -3.864255 ], [ 30.585938, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -1.406109 ], [ 30.585938, -1.406109 ], [ 30.585938, -1.054628 ], [ 34.101562, -1.054628 ], [ 34.101562, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.757537 ], [ 35.507812, -1.757537 ], [ 35.507812, -2.108899 ], [ 35.859375, -2.108899 ], [ 35.859375, -2.460181 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, -1.054628 ], [ 34.101562, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.757537 ], [ 35.507812, -1.757537 ], [ 35.507812, -2.108899 ], [ 35.859375, -2.108899 ], [ 35.859375, -2.460181 ], [ 36.562500, -2.460181 ], [ 36.562500, -2.811371 ], [ 37.265625, -2.811371 ], [ 37.265625, -3.162456 ], [ 37.617188, -3.162456 ], [ 37.617188, -3.864255 ], [ 38.320312, -3.864255 ], [ 38.320312, -4.214943 ], [ 39.023438, -4.214943 ], [ 39.023438, -4.565474 ], [ 39.375000, -4.565474 ], [ 39.375000, -4.915833 ], [ 39.023438, -4.915833 ], [ 39.023438, -5.615986 ], [ 38.671875, -5.615986 ], [ 38.671875, -6.664608 ], [ 39.023438, -6.664608 ], [ 39.023438, -7.013668 ], [ 39.375000, -7.013668 ], [ 39.375000, -7.362467 ], [ 39.023438, -7.362467 ], [ 39.023438, -8.059230 ], [ 39.375000, -8.059230 ], [ 39.375000, -8.407168 ], [ 39.023438, -8.407168 ], [ 39.023438, -8.754795 ], [ 39.375000, -8.754795 ], [ 39.375000, -9.449062 ], [ 39.726562, -9.449062 ], [ 39.726562, -10.141932 ], [ 40.078125, -10.141932 ], [ 40.078125, -10.833306 ], [ 39.023438, -10.833306 ], [ 39.023438, -11.178402 ], [ 37.968750, -11.178402 ], [ 37.968750, -11.523088 ], [ 36.914062, -11.523088 ], [ 36.914062, -11.867351 ], [ 35.507812, -11.867351 ], [ 35.507812, -11.523088 ], [ 34.453125, -11.523088 ], [ 34.453125, -10.141932 ], [ 34.101562, -10.141932 ], [ 34.101562, -9.795678 ], [ 33.750000, -9.795678 ], [ 33.750000, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.102097 ], [ 31.640625, -9.102097 ], [ 31.640625, -8.754795 ], [ 30.585938, -8.754795 ], [ 30.585938, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -7.013668 ], [ 29.531250, -7.013668 ], [ 29.531250, -4.915833 ], [ 29.179688, -4.915833 ], [ 29.179688, -4.565474 ], [ 30.234375, -4.565474 ], [ 30.234375, -3.864255 ], [ 30.585938, -3.864255 ], [ 30.585938, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -1.406109 ], [ 30.585938, -1.406109 ], [ 30.585938, -1.054628 ], [ 34.101562, -1.054628 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, -9.449062 ], [ 33.750000, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.141932 ], [ 34.453125, -10.141932 ], [ 34.453125, -13.581921 ], [ 34.804688, -13.581921 ], [ 34.804688, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -14.264383 ], [ 35.507812, -14.264383 ], [ 35.507812, -14.604847 ], [ 35.859375, -14.604847 ], [ 35.859375, -15.961329 ], [ 35.507812, -15.961329 ], [ 35.507812, -16.299051 ], [ 35.156250, -16.299051 ], [ 35.156250, -16.636192 ], [ 34.453125, -16.636192 ], [ 34.453125, -14.604847 ], [ 33.398438, -14.604847 ], [ 33.398438, -14.264383 ], [ 33.046875, -14.264383 ], [ 33.046875, -13.923404 ], [ 32.695312, -13.923404 ], [ 32.695312, -13.239945 ], [ 33.046875, -13.239945 ], [ 33.046875, -12.897489 ], [ 33.398438, -12.897489 ], [ 33.398438, -12.211180 ], [ 33.046875, -12.211180 ], [ 33.046875, -11.178402 ], [ 33.398438, -11.178402 ], [ 33.398438, -9.795678 ], [ 33.046875, -9.795678 ], [ 33.046875, -9.449062 ], [ 33.750000, -9.449062 ] ] ], [ [ [ 32.695312, -9.449062 ], [ 32.695312, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -9.449062 ], [ 32.695312, -9.449062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.046875, -9.449062 ], [ 33.750000, -9.449062 ], [ 33.750000, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.453125, -10.141932 ], [ 34.453125, -13.581921 ], [ 34.804688, -13.581921 ], [ 34.804688, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -14.264383 ], [ 35.507812, -14.264383 ], [ 35.507812, -14.604847 ], [ 35.859375, -14.604847 ], [ 35.859375, -15.961329 ], [ 35.507812, -15.961329 ], [ 35.507812, -16.299051 ], [ 35.156250, -16.299051 ], [ 35.156250, -16.636192 ], [ 34.453125, -16.636192 ], [ 34.453125, -14.604847 ], [ 33.398438, -14.604847 ], [ 33.398438, -14.264383 ], [ 33.046875, -14.264383 ], [ 33.046875, -13.923404 ], [ 32.695312, -13.923404 ], [ 32.695312, -13.239945 ], [ 33.046875, -13.239945 ], [ 33.046875, -12.897489 ], [ 33.398438, -12.897489 ], [ 33.398438, -12.211180 ], [ 33.046875, -12.211180 ], [ 33.046875, -11.178402 ], [ 33.398438, -11.178402 ], [ 33.398438, -9.795678 ], [ 33.046875, -9.795678 ], [ 33.046875, -9.449062 ] ] ], [ [ [ 33.046875, -9.449062 ], [ 32.695312, -9.449062 ], [ 32.695312, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -9.449062 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, -24.527135 ], [ 34.804688, -24.527135 ], [ 34.804688, -24.846565 ], [ 34.101562, -24.846565 ], [ 34.101562, -25.165173 ], [ 33.398438, -25.165173 ], [ 33.398438, -25.482951 ], [ 33.046875, -25.482951 ], [ 33.046875, -25.799891 ], [ 32.695312, -25.799891 ], [ 32.695312, -26.115986 ], [ 33.046875, -26.115986 ], [ 33.046875, -26.431228 ], [ 32.695312, -26.431228 ], [ 32.695312, -26.745610 ], [ 31.992188, -26.745610 ], [ 31.992188, -25.799891 ], [ 31.640625, -25.799891 ], [ 31.640625, -25.165173 ], [ 31.992188, -25.165173 ], [ 31.992188, -24.206890 ], [ 31.640625, -24.206890 ], [ 31.640625, -22.917923 ], [ 31.289062, -22.917923 ], [ 31.289062, -22.268764 ], [ 31.640625, -22.268764 ], [ 31.640625, -21.616579 ], [ 31.992188, -21.616579 ], [ 31.992188, -21.289374 ], [ 32.343750, -21.289374 ], [ 32.343750, -20.303418 ], [ 32.695312, -20.303418 ], [ 32.695312, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -16.299051 ], [ 31.640625, -16.299051 ], [ 31.640625, -15.961329 ], [ 30.234375, -15.961329 ], [ 30.234375, -14.944785 ], [ 30.937500, -14.944785 ], [ 30.937500, -14.604847 ], [ 31.992188, -14.604847 ], [ 31.992188, -14.264383 ], [ 32.695312, -14.264383 ], [ 32.695312, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.264383 ], [ 33.398438, -14.264383 ], [ 33.398438, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -16.299051 ], [ 35.507812, -16.299051 ], [ 35.507812, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -14.604847 ], [ 35.507812, -14.604847 ], [ 35.507812, -14.264383 ], [ 35.156250, -14.264383 ], [ 35.156250, -13.923404 ], [ 34.804688, -13.923404 ], [ 34.804688, -13.581921 ], [ 34.453125, -13.581921 ], [ 34.453125, -11.523088 ], [ 35.507812, -11.523088 ], [ 35.507812, -11.867351 ], [ 36.914062, -11.867351 ], [ 36.914062, -11.523088 ], [ 37.968750, -11.523088 ], [ 37.968750, -11.178402 ], [ 39.023438, -11.178402 ], [ 39.023438, -10.833306 ], [ 40.078125, -10.833306 ], [ 40.078125, -10.487812 ], [ 40.429688, -10.487812 ], [ 40.429688, -14.604847 ], [ 40.781250, -14.604847 ], [ 40.781250, -14.944785 ], [ 40.429688, -14.944785 ], [ 40.429688, -15.623037 ], [ 40.078125, -15.623037 ], [ 40.078125, -16.299051 ], [ 39.726562, -16.299051 ], [ 39.726562, -16.636192 ], [ 39.375000, -16.636192 ], [ 39.375000, -16.972741 ], [ 38.671875, -16.972741 ], [ 38.671875, -17.308688 ], [ 37.968750, -17.308688 ], [ 37.968750, -17.644022 ], [ 37.265625, -17.644022 ], [ 37.265625, -17.978733 ], [ 36.914062, -17.978733 ], [ 36.914062, -18.312811 ], [ 36.562500, -18.312811 ], [ 36.562500, -18.646245 ], [ 36.210938, -18.646245 ], [ 36.210938, -18.979026 ], [ 35.859375, -18.979026 ], [ 35.859375, -19.311143 ], [ 35.507812, -19.311143 ], [ 35.507812, -19.642588 ], [ 34.804688, -19.642588 ], [ 34.804688, -20.961440 ], [ 35.156250, -20.961440 ], [ 35.156250, -21.616579 ], [ 35.507812, -21.616579 ], [ 35.507812, -24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.487812 ], [ 40.429688, -14.604847 ], [ 40.781250, -14.604847 ], [ 40.781250, -14.944785 ], [ 40.429688, -14.944785 ], [ 40.429688, -15.623037 ], [ 40.078125, -15.623037 ], [ 40.078125, -16.299051 ], [ 39.726562, -16.299051 ], [ 39.726562, -16.636192 ], [ 39.375000, -16.636192 ], [ 39.375000, -16.972741 ], [ 38.671875, -16.972741 ], [ 38.671875, -17.308688 ], [ 37.968750, -17.308688 ], [ 37.968750, -17.644022 ], [ 37.265625, -17.644022 ], [ 37.265625, -17.978733 ], [ 36.914062, -17.978733 ], [ 36.914062, -18.312811 ], [ 36.562500, -18.312811 ], [ 36.562500, -18.646245 ], [ 36.210938, -18.646245 ], [ 36.210938, -18.979026 ], [ 35.859375, -18.979026 ], [ 35.859375, -19.311143 ], [ 35.507812, -19.311143 ], [ 35.507812, -19.642588 ], [ 34.804688, -19.642588 ], [ 34.804688, -20.961440 ], [ 35.156250, -20.961440 ], [ 35.156250, -21.616579 ], [ 35.507812, -21.616579 ], [ 35.507812, -24.527135 ], [ 34.804688, -24.527135 ], [ 34.804688, -24.846565 ], [ 34.101562, -24.846565 ], [ 34.101562, -25.165173 ], [ 33.398438, -25.165173 ], [ 33.398438, -25.482951 ], [ 33.046875, -25.482951 ], [ 33.046875, -25.799891 ], [ 32.695312, -25.799891 ], [ 32.695312, -26.115986 ], [ 33.046875, -26.115986 ], [ 33.046875, -26.431228 ], [ 32.695312, -26.431228 ], [ 32.695312, -26.745610 ], [ 31.992188, -26.745610 ], [ 31.992188, -25.799891 ], [ 31.640625, -25.799891 ], [ 31.640625, -25.165173 ], [ 31.992188, -25.165173 ], [ 31.992188, -24.206890 ], [ 31.640625, -24.206890 ], [ 31.640625, -22.917923 ], [ 31.289062, -22.917923 ], [ 31.289062, -22.268764 ], [ 31.640625, -22.268764 ], [ 31.640625, -21.616579 ], [ 31.992188, -21.616579 ], [ 31.992188, -21.289374 ], [ 32.343750, -21.289374 ], [ 32.343750, -20.303418 ], [ 32.695312, -20.303418 ], [ 32.695312, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -16.299051 ], [ 31.640625, -16.299051 ], [ 31.640625, -15.961329 ], [ 30.234375, -15.961329 ], [ 30.234375, -14.944785 ], [ 30.937500, -14.944785 ], [ 30.937500, -14.604847 ], [ 31.992188, -14.604847 ], [ 31.992188, -14.264383 ], [ 32.695312, -14.264383 ], [ 32.695312, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.264383 ], [ 33.398438, -14.264383 ], [ 33.398438, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -16.299051 ], [ 35.507812, -16.299051 ], [ 35.507812, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -14.604847 ], [ 35.507812, -14.604847 ], [ 35.507812, -14.264383 ], [ 35.156250, -14.264383 ], [ 35.156250, -13.923404 ], [ 34.804688, -13.923404 ], [ 34.804688, -13.581921 ], [ 34.453125, -13.581921 ], [ 34.453125, -11.523088 ], [ 35.507812, -11.523088 ], [ 35.507812, -11.867351 ], [ 36.914062, -11.867351 ], [ 36.914062, -11.523088 ], [ 37.968750, -11.523088 ], [ 37.968750, -11.178402 ], [ 39.023438, -11.178402 ], [ 39.023438, -10.833306 ], [ 40.078125, -10.833306 ], [ 40.078125, -10.487812 ], [ 40.429688, -10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, -18.646245 ], [ 26.015625, -18.646245 ], [ 26.015625, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.973349 ], [ 27.070312, -19.973349 ], [ 27.070312, -20.303418 ], [ 27.421875, -20.303418 ], [ 27.421875, -20.632784 ], [ 27.773438, -20.632784 ], [ 27.773438, -21.289374 ], [ 28.125000, -21.289374 ], [ 28.125000, -21.616579 ], [ 28.828125, -21.616579 ], [ 28.828125, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -22.268764 ], [ 29.179688, -22.268764 ], [ 29.179688, -22.593726 ], [ 28.476562, -22.593726 ], [ 28.476562, -22.917923 ], [ 28.125000, -22.917923 ], [ 28.125000, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.885838 ], [ 26.718750, -23.885838 ], [ 26.718750, -24.527135 ], [ 26.367188, -24.527135 ], [ 26.367188, -24.846565 ], [ 26.015625, -24.846565 ], [ 26.015625, -25.165173 ], [ 25.664062, -25.165173 ], [ 25.664062, -25.799891 ], [ 23.906250, -25.799891 ], [ 23.906250, -25.482951 ], [ 22.851562, -25.482951 ], [ 22.851562, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -26.431228 ], [ 22.148438, -26.431228 ], [ 22.148438, -26.745610 ], [ 20.742188, -26.745610 ], [ 20.742188, -25.799891 ], [ 20.390625, -25.799891 ], [ 20.390625, -25.165173 ], [ 20.039062, -25.165173 ], [ 20.039062, -21.943046 ], [ 20.742188, -21.943046 ], [ 20.742188, -18.312811 ], [ 22.851562, -18.312811 ], [ 22.851562, -17.978733 ], [ 23.203125, -17.978733 ], [ 23.203125, -18.312811 ], [ 24.257812, -18.312811 ], [ 24.257812, -17.978733 ], [ 24.960938, -17.978733 ], [ 24.960938, -17.644022 ], [ 25.312500, -17.644022 ], [ 25.312500, -18.312811 ], [ 25.664062, -18.312811 ], [ 25.664062, -18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.644022 ], [ 25.312500, -18.312811 ], [ 25.664062, -18.312811 ], [ 25.664062, -18.646245 ], [ 26.015625, -18.646245 ], [ 26.015625, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.973349 ], [ 27.070312, -19.973349 ], [ 27.070312, -20.303418 ], [ 27.421875, -20.303418 ], [ 27.421875, -20.632784 ], [ 27.773438, -20.632784 ], [ 27.773438, -21.289374 ], [ 28.125000, -21.289374 ], [ 28.125000, -21.616579 ], [ 28.828125, -21.616579 ], [ 28.828125, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -22.268764 ], [ 29.179688, -22.268764 ], [ 29.179688, -22.593726 ], [ 28.476562, -22.593726 ], [ 28.476562, -22.917923 ], [ 28.125000, -22.917923 ], [ 28.125000, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.885838 ], [ 26.718750, -23.885838 ], [ 26.718750, -24.527135 ], [ 26.367188, -24.527135 ], [ 26.367188, -24.846565 ], [ 26.015625, -24.846565 ], [ 26.015625, -25.165173 ], [ 25.664062, -25.165173 ], [ 25.664062, -25.799891 ], [ 23.906250, -25.799891 ], [ 23.906250, -25.482951 ], [ 22.851562, -25.482951 ], [ 22.851562, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -26.431228 ], [ 22.148438, -26.431228 ], [ 22.148438, -26.745610 ], [ 20.742188, -26.745610 ], [ 20.742188, -25.799891 ], [ 20.390625, -25.799891 ], [ 20.390625, -25.165173 ], [ 20.039062, -25.165173 ], [ 20.039062, -21.943046 ], [ 20.742188, -21.943046 ], [ 20.742188, -18.312811 ], [ 22.851562, -18.312811 ], [ 22.851562, -17.978733 ], [ 23.203125, -17.978733 ], [ 23.203125, -18.312811 ], [ 24.257812, -18.312811 ], [ 24.257812, -17.978733 ], [ 24.960938, -17.978733 ], [ 24.960938, -17.644022 ], [ 25.312500, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, -22.917923 ], [ 31.640625, -22.917923 ], [ 31.640625, -24.206890 ], [ 31.992188, -24.206890 ], [ 31.992188, -25.165173 ], [ 31.640625, -25.165173 ], [ 31.640625, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -26.431228 ], [ 30.585938, -26.431228 ], [ 30.585938, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -27.371767 ], [ 31.992188, -27.371767 ], [ 31.992188, -26.745610 ], [ 32.695312, -26.745610 ], [ 32.695312, -27.994401 ], [ 32.343750, -27.994401 ], [ 32.343750, -28.921631 ], [ 31.992188, -28.921631 ], [ 31.992188, -29.228890 ], [ 31.640625, -29.228890 ], [ 31.640625, -29.535230 ], [ 31.289062, -29.535230 ], [ 31.289062, -29.840644 ], [ 30.937500, -29.840644 ], [ 30.937500, -30.145127 ], [ 30.585938, -30.145127 ], [ 30.585938, -30.751278 ], [ 30.234375, -30.751278 ], [ 30.234375, -31.052934 ], [ 29.882812, -31.052934 ], [ 29.882812, -31.353637 ], [ 29.531250, -31.353637 ], [ 29.531250, -31.653381 ], [ 29.179688, -31.653381 ], [ 29.179688, -32.249974 ], [ 28.828125, -32.249974 ], [ 28.828125, -32.546813 ], [ 28.476562, -32.546813 ], [ 28.476562, -32.842674 ], [ 28.125000, -32.842674 ], [ 28.125000, -33.137551 ], [ 27.421875, -33.137551 ], [ 27.421875, -33.431441 ], [ 26.718750, -33.431441 ], [ 26.718750, -33.724340 ], [ 26.015625, -33.724340 ], [ 26.015625, -34.016242 ], [ 23.906250, -34.016242 ], [ 23.906250, -33.724340 ], [ 23.554688, -33.724340 ], [ 23.554688, -34.016242 ], [ 21.796875, -34.016242 ], [ 21.796875, -34.307144 ], [ 20.742188, -34.307144 ], [ 20.742188, -34.597042 ], [ 20.390625, -34.597042 ], [ 20.390625, -34.885931 ], [ 19.335938, -34.885931 ], [ 19.335938, -34.597042 ], [ 18.984375, -34.597042 ], [ 18.984375, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -32.842674 ], [ 17.929688, -32.842674 ], [ 17.929688, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.653381 ], [ 17.929688, -31.653381 ], [ 17.929688, -31.052934 ], [ 17.578125, -31.052934 ], [ 17.578125, -30.448674 ], [ 17.226562, -30.448674 ], [ 17.226562, -29.840644 ], [ 16.875000, -29.840644 ], [ 16.875000, -29.228890 ], [ 16.523438, -29.228890 ], [ 16.523438, -28.921631 ], [ 16.171875, -28.921631 ], [ 16.171875, -28.613459 ], [ 16.523438, -28.613459 ], [ 16.523438, -28.304381 ], [ 17.226562, -28.304381 ], [ 17.226562, -28.921631 ], [ 19.687500, -28.921631 ], [ 19.687500, -28.613459 ], [ 20.039062, -28.613459 ], [ 20.039062, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -25.799891 ], [ 20.742188, -25.799891 ], [ 20.742188, -26.745610 ], [ 22.148438, -26.745610 ], [ 22.148438, -26.431228 ], [ 22.500000, -26.431228 ], [ 22.500000, -25.799891 ], [ 22.851562, -25.799891 ], [ 22.851562, -25.482951 ], [ 23.906250, -25.482951 ], [ 23.906250, -25.799891 ], [ 25.664062, -25.799891 ], [ 25.664062, -25.165173 ], [ 26.015625, -25.165173 ], [ 26.015625, -24.846565 ], [ 26.367188, -24.846565 ], [ 26.367188, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.885838 ], [ 27.070312, -23.885838 ], [ 27.070312, -23.563987 ], [ 27.421875, -23.563987 ], [ 27.421875, -23.241346 ], [ 28.125000, -23.241346 ], [ 28.125000, -22.917923 ], [ 28.476562, -22.917923 ], [ 28.476562, -22.593726 ], [ 29.179688, -22.593726 ], [ 29.179688, -22.268764 ], [ 29.531250, -22.268764 ], [ 29.531250, -21.943046 ], [ 29.882812, -21.943046 ], [ 29.882812, -22.268764 ], [ 31.289062, -22.268764 ], [ 31.289062, -22.917923 ] ], [ [ 28.125000, -28.921631 ], [ 28.125000, -29.228890 ], [ 27.421875, -29.228890 ], [ 27.421875, -29.535230 ], [ 27.070312, -29.535230 ], [ 27.070312, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -30.751278 ], [ 28.125000, -30.751278 ], [ 28.125000, -30.145127 ], [ 29.179688, -30.145127 ], [ 29.179688, -29.228890 ], [ 28.828125, -29.228890 ], [ 28.828125, -28.921631 ], [ 28.125000, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.882812, -21.943046 ], [ 29.882812, -22.268764 ], [ 31.289062, -22.268764 ], [ 31.289062, -22.917923 ], [ 31.640625, -22.917923 ], [ 31.640625, -24.206890 ], [ 31.992188, -24.206890 ], [ 31.992188, -25.165173 ], [ 31.640625, -25.165173 ], [ 31.640625, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -26.431228 ], [ 30.585938, -26.431228 ], [ 30.585938, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -27.371767 ], [ 31.992188, -27.371767 ], [ 31.992188, -26.745610 ], [ 32.695312, -26.745610 ], [ 32.695312, -27.994401 ], [ 32.343750, -27.994401 ], [ 32.343750, -28.921631 ], [ 31.992188, -28.921631 ], [ 31.992188, -29.228890 ], [ 31.640625, -29.228890 ], [ 31.640625, -29.535230 ], [ 31.289062, -29.535230 ], [ 31.289062, -29.840644 ], [ 30.937500, -29.840644 ], [ 30.937500, -30.145127 ], [ 30.585938, -30.145127 ], [ 30.585938, -30.751278 ], [ 30.234375, -30.751278 ], [ 30.234375, -31.052934 ], [ 29.882812, -31.052934 ], [ 29.882812, -31.353637 ], [ 29.531250, -31.353637 ], [ 29.531250, -31.653381 ], [ 29.179688, -31.653381 ], [ 29.179688, -32.249974 ], [ 28.828125, -32.249974 ], [ 28.828125, -32.546813 ], [ 28.476562, -32.546813 ], [ 28.476562, -32.842674 ], [ 28.125000, -32.842674 ], [ 28.125000, -33.137551 ], [ 27.421875, -33.137551 ], [ 27.421875, -33.431441 ], [ 26.718750, -33.431441 ], [ 26.718750, -33.724340 ], [ 26.015625, -33.724340 ], [ 26.015625, -34.016242 ], [ 23.906250, -34.016242 ], [ 23.906250, -33.724340 ], [ 23.554688, -33.724340 ], [ 23.554688, -34.016242 ], [ 21.796875, -34.016242 ], [ 21.796875, -34.307144 ], [ 20.742188, -34.307144 ], [ 20.742188, -34.597042 ], [ 20.390625, -34.597042 ], [ 20.390625, -34.885931 ], [ 19.335938, -34.885931 ], [ 19.335938, -34.597042 ], [ 18.984375, -34.597042 ], [ 18.984375, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -32.842674 ], [ 17.929688, -32.842674 ], [ 17.929688, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.653381 ], [ 17.929688, -31.653381 ], [ 17.929688, -31.052934 ], [ 17.578125, -31.052934 ], [ 17.578125, -30.448674 ], [ 17.226562, -30.448674 ], [ 17.226562, -29.840644 ], [ 16.875000, -29.840644 ], [ 16.875000, -29.228890 ], [ 16.523438, -29.228890 ], [ 16.523438, -28.921631 ], [ 16.171875, -28.921631 ], [ 16.171875, -28.613459 ], [ 16.523438, -28.613459 ], [ 16.523438, -28.304381 ], [ 17.226562, -28.304381 ], [ 17.226562, -28.921631 ], [ 19.687500, -28.921631 ], [ 19.687500, -28.613459 ], [ 20.039062, -28.613459 ], [ 20.039062, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -25.799891 ], [ 20.742188, -25.799891 ], [ 20.742188, -26.745610 ], [ 22.148438, -26.745610 ], [ 22.148438, -26.431228 ], [ 22.500000, -26.431228 ], [ 22.500000, -25.799891 ], [ 22.851562, -25.799891 ], [ 22.851562, -25.482951 ], [ 23.906250, -25.482951 ], [ 23.906250, -25.799891 ], [ 25.664062, -25.799891 ], [ 25.664062, -25.165173 ], [ 26.015625, -25.165173 ], [ 26.015625, -24.846565 ], [ 26.367188, -24.846565 ], [ 26.367188, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.885838 ], [ 27.070312, -23.885838 ], [ 27.070312, -23.563987 ], [ 27.421875, -23.563987 ], [ 27.421875, -23.241346 ], [ 28.125000, -23.241346 ], [ 28.125000, -22.917923 ], [ 28.476562, -22.917923 ], [ 28.476562, -22.593726 ], [ 29.179688, -22.593726 ], [ 29.179688, -22.268764 ], [ 29.531250, -22.268764 ], [ 29.531250, -21.943046 ], [ 29.882812, -21.943046 ] ], [ [ 28.125000, -29.228890 ], [ 27.421875, -29.228890 ], [ 27.421875, -29.535230 ], [ 27.070312, -29.535230 ], [ 27.070312, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -30.751278 ], [ 28.125000, -30.751278 ], [ 28.125000, -30.145127 ], [ 29.179688, -30.145127 ], [ 29.179688, -29.228890 ], [ 28.828125, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -29.228890 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.992188, -27.371767 ], [ 30.937500, -27.371767 ], [ 30.937500, -27.059126 ], [ 30.585938, -27.059126 ], [ 30.585938, -26.431228 ], [ 30.937500, -26.431228 ], [ 30.937500, -25.799891 ], [ 31.992188, -25.799891 ], [ 31.992188, -27.371767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.992188, -25.799891 ], [ 31.992188, -27.371767 ], [ 30.937500, -27.371767 ], [ 30.937500, -27.059126 ], [ 30.585938, -27.059126 ], [ 30.585938, -26.431228 ], [ 30.937500, -26.431228 ], [ 30.937500, -25.799891 ], [ 31.992188, -25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.751278 ], [ 27.421875, -30.751278 ], [ 27.421875, -30.145127 ], [ 27.070312, -30.145127 ], [ 27.070312, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -29.228890 ], [ 28.125000, -29.228890 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.921631 ], [ 28.828125, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.751278 ], [ 27.421875, -30.751278 ], [ 27.421875, -30.145127 ], [ 27.070312, -30.145127 ], [ 27.070312, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -29.228890 ], [ 28.125000, -29.228890 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.273438, -14.944785 ], [ 50.625000, -14.944785 ], [ 50.625000, -15.623037 ], [ 49.570312, -15.623037 ], [ 49.570312, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -16.972741 ], [ 49.570312, -16.972741 ], [ 49.570312, -18.312811 ], [ 49.218750, -18.312811 ], [ 49.218750, -18.979026 ], [ 48.867188, -18.979026 ], [ 48.867188, -19.973349 ], [ 48.515625, -19.973349 ], [ 48.515625, -21.289374 ], [ 48.164062, -21.289374 ], [ 48.164062, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -23.241346 ], [ 47.460938, -23.241346 ], [ 47.460938, -24.527135 ], [ 47.109375, -24.527135 ], [ 47.109375, -25.165173 ], [ 46.054688, -25.165173 ], [ 46.054688, -25.482951 ], [ 44.648438, -25.482951 ], [ 44.648438, -25.165173 ], [ 43.945312, -25.165173 ], [ 43.945312, -24.846565 ], [ 43.593750, -24.846565 ], [ 43.593750, -23.241346 ], [ 43.242188, -23.241346 ], [ 43.242188, -21.616579 ], [ 43.593750, -21.616579 ], [ 43.593750, -21.289374 ], [ 43.945312, -21.289374 ], [ 43.945312, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -18.646245 ], [ 43.945312, -18.646245 ], [ 43.945312, -17.308688 ], [ 44.296875, -17.308688 ], [ 44.296875, -16.299051 ], [ 45.351562, -16.299051 ], [ 45.351562, -15.961329 ], [ 46.406250, -15.961329 ], [ 46.406250, -15.623037 ], [ 46.757812, -15.623037 ], [ 46.757812, -15.284185 ], [ 47.109375, -15.284185 ], [ 47.109375, -14.944785 ], [ 47.812500, -14.944785 ], [ 47.812500, -14.264383 ], [ 48.164062, -14.264383 ], [ 48.164062, -13.923404 ], [ 48.515625, -13.923404 ], [ 48.515625, -13.581921 ], [ 48.867188, -13.581921 ], [ 48.867188, -12.554564 ], [ 49.570312, -12.554564 ], [ 49.570312, -12.897489 ], [ 49.921875, -12.897489 ], [ 49.921875, -14.264383 ], [ 50.273438, -14.264383 ], [ 50.273438, -14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.570312, -12.554564 ], [ 49.570312, -12.897489 ], [ 49.921875, -12.897489 ], [ 49.921875, -14.264383 ], [ 50.273438, -14.264383 ], [ 50.273438, -14.944785 ], [ 50.625000, -14.944785 ], [ 50.625000, -15.623037 ], [ 49.570312, -15.623037 ], [ 49.570312, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -16.972741 ], [ 49.570312, -16.972741 ], [ 49.570312, -18.312811 ], [ 49.218750, -18.312811 ], [ 49.218750, -18.979026 ], [ 48.867188, -18.979026 ], [ 48.867188, -19.973349 ], [ 48.515625, -19.973349 ], [ 48.515625, -21.289374 ], [ 48.164062, -21.289374 ], [ 48.164062, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -23.241346 ], [ 47.460938, -23.241346 ], [ 47.460938, -24.527135 ], [ 47.109375, -24.527135 ], [ 47.109375, -25.165173 ], [ 46.054688, -25.165173 ], [ 46.054688, -25.482951 ], [ 44.648438, -25.482951 ], [ 44.648438, -25.165173 ], [ 43.945312, -25.165173 ], [ 43.945312, -24.846565 ], [ 43.593750, -24.846565 ], [ 43.593750, -23.241346 ], [ 43.242188, -23.241346 ], [ 43.242188, -21.616579 ], [ 43.593750, -21.616579 ], [ 43.593750, -21.289374 ], [ 43.945312, -21.289374 ], [ 43.945312, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -18.646245 ], [ 43.945312, -18.646245 ], [ 43.945312, -17.308688 ], [ 44.296875, -17.308688 ], [ 44.296875, -16.299051 ], [ 45.351562, -16.299051 ], [ 45.351562, -15.961329 ], [ 46.406250, -15.961329 ], [ 46.406250, -15.623037 ], [ 46.757812, -15.623037 ], [ 46.757812, -15.284185 ], [ 47.109375, -15.284185 ], [ 47.109375, -14.944785 ], [ 47.812500, -14.944785 ], [ 47.812500, -14.264383 ], [ 48.164062, -14.264383 ], [ 48.164062, -13.923404 ], [ 48.515625, -13.923404 ], [ 48.515625, -13.581921 ], [ 48.867188, -13.581921 ], [ 48.867188, -12.554564 ], [ 49.570312, -12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, -49.382373 ], [ 70.312500, -49.382373 ], [ 70.312500, -49.610710 ], [ 69.960938, -49.610710 ], [ 69.960938, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -49.610710 ], [ 68.554688, -49.610710 ], [ 68.554688, -49.152970 ], [ 68.906250, -49.152970 ], [ 68.906250, -48.922499 ], [ 69.960938, -48.922499 ], [ 69.960938, -49.152970 ], [ 70.664062, -49.152970 ], [ 70.664062, -49.382373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.960938, -48.922499 ], [ 69.960938, -49.152970 ], [ 70.664062, -49.152970 ], [ 70.664062, -49.382373 ], [ 70.312500, -49.382373 ], [ 70.312500, -49.610710 ], [ 69.960938, -49.610710 ], [ 69.960938, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -49.610710 ], [ 68.554688, -49.610710 ], [ 68.554688, -49.152970 ], [ 68.906250, -48.922499 ], [ 69.960938, -48.922499 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.367759 ], [ -0.351562, 54.367759 ], [ -0.351562, 53.956086 ], [ 0.000000, 53.956086 ], [ 0.000000, 53.540307 ], [ 0.351562, 53.540307 ], [ 0.351562, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.268157 ], [ 1.406250, 52.268157 ], [ 1.406250, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ 1.054688, 51.179343 ], [ 1.054688, 50.736455 ], [ -1.054688, 50.736455 ], [ -1.054688, 50.513427 ], [ -1.757812, 50.513427 ], [ -1.757812, 55.178868 ], [ -1.406250, 55.178868 ], [ -1.406250, 54.775346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 55.178868 ], [ -1.406250, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.367759 ], [ -0.351562, 54.367759 ], [ -0.351562, 53.956086 ], [ 0.000000, 53.956086 ], [ 0.000000, 53.540307 ], [ 0.351562, 53.540307 ], [ 0.351562, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.268157 ], [ 1.406250, 52.268157 ], [ 1.406250, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ 1.054688, 51.179343 ], [ 1.054688, 50.736455 ], [ -1.054688, 50.736455 ], [ -1.054688, 50.513427 ], [ -1.757812, 50.513427 ], [ -1.757812, 55.178868 ], [ -1.406250, 55.178868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.492188, 41.771312 ], [ 9.140625, 41.771312 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.771312 ], [ 8.437500, 41.771312 ], [ 8.437500, 42.293564 ], [ 8.789062, 42.293564 ], [ 8.789062, 42.553080 ], [ 9.140625, 42.553080 ], [ 9.140625, 42.811522 ], [ 9.492188, 42.811522 ], [ 9.492188, 41.771312 ] ] ], [ [ [ 3.515625, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 49.837982 ], [ 5.273438, 49.837982 ], [ 5.273438, 49.610710 ], [ 5.625000, 49.610710 ], [ 5.625000, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 49.152970 ], [ 7.031250, 49.152970 ], [ 7.031250, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 47.754098 ], [ 7.382812, 47.754098 ], [ 7.382812, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 46.800059 ], [ 5.976562, 46.800059 ], [ 5.976562, 46.316584 ], [ 6.328125, 46.316584 ], [ 6.328125, 46.073231 ], [ 6.679688, 46.073231 ], [ 6.679688, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.590467 ], [ 7.031250, 44.590467 ], [ 7.031250, 44.087585 ], [ 7.382812, 44.087585 ], [ 7.382812, 43.325178 ], [ 7.031250, 43.325178 ], [ 7.031250, 43.068888 ], [ 5.273438, 43.068888 ], [ 5.273438, 43.325178 ], [ 4.218750, 43.325178 ], [ 4.218750, 43.068888 ], [ 3.164062, 43.068888 ], [ 3.164062, 42.811522 ], [ 2.812500, 42.811522 ], [ 2.812500, 42.553080 ], [ 2.460938, 42.553080 ], [ 2.460938, 42.293564 ], [ 1.406250, 42.293564 ], [ 1.406250, 42.553080 ], [ -0.351562, 42.553080 ], [ -0.351562, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 45.089036 ], [ -1.054688, 45.089036 ], [ -1.054688, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.757812, 46.316584 ], [ -1.757812, 49.382373 ], [ -0.351562, 49.382373 ], [ -0.351562, 49.610710 ], [ 0.351562, 49.610710 ], [ 0.351562, 49.837982 ], [ 1.054688, 49.837982 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.757812, 50.513427 ], [ 1.757812, 50.958427 ], [ 2.812500, 50.958427 ], [ 2.812500, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.513427 ], [ 3.515625, 50.513427 ], [ 3.515625, 50.064192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.492188, 42.811522 ], [ 9.492188, 41.771312 ], [ 9.140625, 41.771312 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.771312 ], [ 8.437500, 41.771312 ], [ 8.437500, 42.293564 ], [ 8.789062, 42.293564 ], [ 8.789062, 42.553080 ], [ 9.140625, 42.553080 ], [ 9.140625, 42.811522 ], [ 9.492188, 42.811522 ] ] ], [ [ [ 2.812500, 50.958427 ], [ 2.812500, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.513427 ], [ 3.515625, 50.513427 ], [ 3.515625, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 49.837982 ], [ 5.273438, 49.837982 ], [ 5.273438, 49.610710 ], [ 5.625000, 49.610710 ], [ 5.625000, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 49.152970 ], [ 7.031250, 49.152970 ], [ 7.031250, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 47.754098 ], [ 7.382812, 47.754098 ], [ 7.382812, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 46.800059 ], [ 5.976562, 46.800059 ], [ 5.976562, 46.316584 ], [ 6.328125, 46.316584 ], [ 6.328125, 46.073231 ], [ 6.679688, 46.073231 ], [ 6.679688, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.590467 ], [ 7.031250, 44.590467 ], [ 7.031250, 44.087585 ], [ 7.382812, 44.087585 ], [ 7.382812, 43.325178 ], [ 7.031250, 43.325178 ], [ 7.031250, 43.068888 ], [ 5.273438, 43.068888 ], [ 5.273438, 43.325178 ], [ 4.218750, 43.325178 ], [ 4.218750, 43.068888 ], [ 3.164062, 43.068888 ], [ 3.164062, 42.811522 ], [ 2.812500, 42.811522 ], [ 2.812500, 42.553080 ], [ 2.460938, 42.553080 ], [ 2.460938, 42.293564 ], [ 1.406250, 42.293564 ], [ 1.406250, 42.553080 ], [ -0.351562, 42.553080 ], [ -0.351562, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 45.089036 ], [ -1.054688, 45.089036 ], [ -1.054688, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.757812, 46.316584 ], [ -1.757812, 49.382373 ], [ -0.351562, 49.382373 ], [ -0.351562, 49.610710 ], [ 0.351562, 49.610710 ], [ 0.351562, 49.837982 ], [ 1.054688, 49.837982 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.757812, 50.513427 ], [ 1.757812, 50.958427 ], [ 2.812500, 50.958427 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.054688, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.553080 ], [ 1.406250, 42.553080 ], [ 1.406250, 42.293564 ], [ 2.460938, 42.293564 ], [ 2.460938, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 42.032974 ], [ 3.164062, 42.032974 ], [ 3.164062, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.244772 ], [ 1.757812, 41.244772 ], [ 1.757812, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.553080 ], [ 1.406250, 42.553080 ], [ 1.406250, 42.293564 ], [ 2.460938, 42.293564 ], [ 2.460938, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 42.032974 ], [ 3.164062, 42.032974 ], [ 3.164062, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.244772 ], [ 1.757812, 41.244772 ], [ 1.757812, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 32.546813 ], [ -1.054688, 32.546813 ], [ -1.054688, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ], [ -1.406250, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 33.431441 ], [ -1.406250, 32.546813 ], [ -1.054688, 32.546813 ], [ -1.054688, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.351562, 22.268764 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.289374 ], [ 1.054688, 21.289374 ], [ 1.054688, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.303418 ], [ 2.109375, 20.303418 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.642588 ], [ 3.164062, 19.642588 ], [ 3.164062, 18.979026 ], [ 3.867188, 18.979026 ], [ 3.867188, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.636192 ], [ 3.867188, 16.636192 ], [ 3.867188, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 14.944785 ], [ -1.054688, 14.944785 ], [ -1.054688, 14.604847 ], [ -1.757812, 14.604847 ], [ -1.757812, 22.917923 ], [ -1.406250, 22.917923 ], [ -1.406250, 22.593726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 22.917923 ], [ -1.406250, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.351562, 22.268764 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.289374 ], [ 1.054688, 21.289374 ], [ 1.054688, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.303418 ], [ 2.109375, 20.303418 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.642588 ], [ 3.164062, 19.642588 ], [ 3.164062, 18.979026 ], [ 3.867188, 18.979026 ], [ 3.867188, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.636192 ], [ 3.867188, 16.636192 ], [ 3.867188, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 14.944785 ], [ -1.054688, 14.944785 ], [ -1.054688, 14.604847 ], [ -1.757812, 14.604847 ], [ -1.757812, 22.917923 ], [ -1.406250, 22.917923 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.239945 ], [ 1.054688, 13.239945 ], [ 1.054688, 12.897489 ], [ 1.406250, 12.897489 ], [ 1.406250, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 10.833306 ], [ 0.351562, 10.833306 ], [ 0.351562, 11.178402 ], [ -0.351562, 11.178402 ], [ -0.351562, 10.833306 ], [ -1.757812, 10.833306 ], [ -1.757812, 14.604847 ], [ -1.054688, 14.604847 ], [ -1.054688, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 13.581921 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.239945 ], [ 1.054688, 13.239945 ], [ 1.054688, 12.897489 ], [ 1.406250, 12.897489 ], [ 1.406250, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 10.833306 ], [ 0.351562, 10.833306 ], [ 0.351562, 11.178402 ], [ -0.351562, 11.178402 ], [ -0.351562, 10.833306 ], [ -1.757812, 10.833306 ], [ -1.757812, 14.604847 ], [ -1.054688, 14.604847 ], [ -1.054688, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.013668 ], [ 0.703125, 7.013668 ], [ 0.703125, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.266008 ], [ -0.351562, 5.266008 ], [ -0.351562, 4.915833 ], [ -1.757812, 4.915833 ], [ -1.757812, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 11.178402 ], [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.013668 ], [ 0.703125, 7.013668 ], [ 0.703125, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.266008 ], [ -0.351562, 5.266008 ], [ -0.351562, 4.915833 ], [ -1.757812, 4.915833 ], [ -1.757812, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.320872 ], [ 35.507812, 64.320872 ], [ 35.507812, 64.168107 ], [ 36.210938, 64.168107 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.860036 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.014496 ], [ 37.265625, 64.014496 ], [ 37.265625, 64.320872 ], [ 36.914062, 64.320872 ], [ 36.914062, 64.623877 ], [ 36.562500, 64.623877 ], [ 36.562500, 64.774125 ], [ 36.914062, 64.774125 ], [ 36.914062, 64.923542 ], [ 37.968750, 64.923542 ], [ 37.968750, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.472794 ], [ 40.078125, 64.472794 ], [ 40.078125, 64.623877 ], [ 40.429688, 64.623877 ], [ 40.429688, 64.923542 ], [ 40.078125, 64.923542 ], [ 40.078125, 65.219894 ], [ 39.726562, 65.219894 ], [ 39.726562, 65.512963 ], [ 40.078125, 65.512963 ], [ 40.078125, 65.658275 ], [ 40.429688, 65.658275 ], [ 40.429688, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.089364 ], [ 41.484375, 66.089364 ], [ 41.484375, 66.231457 ], [ 41.835938, 66.231457 ], [ 41.835938, 66.372755 ], [ 42.890625, 66.372755 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.231457 ], [ 44.296875, 66.231457 ], [ 44.296875, 66.513260 ], [ 44.648438, 66.513260 ], [ 44.648438, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 45.703125, 67.204032 ], [ 45.703125, 66.930060 ], [ 46.054688, 66.930060 ], [ 46.054688, 66.652977 ], [ 47.109375, 66.652977 ], [ 47.109375, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 50.064192 ], [ 47.109375, 50.064192 ], [ 47.109375, 49.610710 ], [ 46.757812, 49.610710 ], [ 46.757812, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 48.922499 ], [ 46.757812, 48.922499 ], [ 46.757812, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 48.224673 ], [ 46.757812, 48.224673 ], [ 46.757812, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.754098 ], [ 47.460938, 47.754098 ], [ 47.460938, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.339565 ], [ 47.109375, 44.339565 ], [ 47.109375, 43.834527 ], [ 47.460938, 43.834527 ], [ 47.460938, 41.244772 ], [ 47.109375, 41.244772 ], [ 47.109375, 41.508577 ], [ 46.757812, 41.508577 ], [ 46.757812, 41.771312 ], [ 45.703125, 41.771312 ], [ 45.703125, 42.293564 ], [ 45.351562, 42.293564 ], [ 45.351562, 42.553080 ], [ 43.593750, 42.553080 ], [ 43.593750, 42.811522 ], [ 43.242188, 42.811522 ], [ 43.242188, 43.068888 ], [ 42.539062, 43.068888 ], [ 42.539062, 43.325178 ], [ 39.726562, 43.325178 ], [ 39.726562, 43.580391 ], [ 39.375000, 43.580391 ], [ 39.375000, 43.834527 ], [ 39.023438, 43.834527 ], [ 39.023438, 44.087585 ], [ 38.671875, 44.087585 ], [ 38.671875, 44.339565 ], [ 37.968750, 44.339565 ], [ 37.968750, 44.590467 ], [ 37.265625, 44.590467 ], [ 37.265625, 44.840291 ], [ 36.914062, 44.840291 ], [ 36.914062, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 45.336702 ], [ 37.617188, 45.336702 ], [ 37.617188, 45.828799 ], [ 37.968750, 45.828799 ], [ 37.968750, 46.073231 ], [ 38.320312, 46.073231 ], [ 38.320312, 46.316584 ], [ 37.617188, 46.316584 ], [ 37.617188, 46.558860 ], [ 38.320312, 46.558860 ], [ 38.320312, 46.800059 ], [ 39.023438, 46.800059 ], [ 39.023438, 47.040182 ], [ 38.320312, 47.040182 ], [ 38.320312, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.754098 ], [ 39.375000, 47.754098 ], [ 39.375000, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.610710 ], [ 39.023438, 49.610710 ], [ 39.023438, 49.837982 ], [ 37.617188, 49.837982 ], [ 37.617188, 50.064192 ], [ 37.265625, 50.064192 ], [ 37.265625, 50.289339 ], [ 35.859375, 50.289339 ], [ 35.859375, 50.513427 ], [ 35.507812, 50.513427 ], [ 35.507812, 50.958427 ], [ 35.156250, 50.958427 ], [ 35.156250, 51.179343 ], [ 34.101562, 51.179343 ], [ 34.101562, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.835778 ], [ 34.101562, 51.835778 ], [ 34.101562, 52.052490 ], [ 33.750000, 52.052490 ], [ 33.750000, 52.268157 ], [ 32.343750, 52.268157 ], [ 32.343750, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 32.695312, 53.120405 ], [ 32.695312, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.540307 ], [ 31.640625, 53.540307 ], [ 31.640625, 53.956086 ], [ 31.289062, 53.956086 ], [ 31.289062, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 54.572062 ], [ 30.585938, 54.572062 ], [ 30.585938, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.578345 ], [ 30.234375, 55.578345 ], [ 30.234375, 55.776573 ], [ 29.882812, 55.776573 ], [ 29.882812, 55.578345 ], [ 29.531250, 55.578345 ], [ 29.531250, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.365250 ], [ 27.773438, 56.365250 ], [ 27.773438, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.515823 ], [ 27.773438, 57.515823 ], [ 27.773438, 58.263287 ], [ 27.421875, 58.263287 ], [ 27.421875, 58.813742 ], [ 27.773438, 58.813742 ], [ 27.773438, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.534318 ], [ 28.476562, 59.534318 ], [ 28.476562, 59.712097 ], [ 28.828125, 59.712097 ], [ 28.828125, 59.888937 ], [ 29.179688, 59.888937 ], [ 29.179688, 60.064840 ], [ 28.828125, 60.064840 ], [ 28.828125, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.586967 ], [ 28.476562, 60.586967 ], [ 28.476562, 60.759160 ], [ 28.828125, 60.759160 ], [ 28.828125, 60.930432 ], [ 29.179688, 60.930432 ], [ 29.179688, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.438767 ], [ 29.882812, 61.438767 ], [ 29.882812, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.773123 ], [ 30.585938, 61.773123 ], [ 30.585938, 62.103883 ], [ 30.937500, 62.103883 ], [ 30.937500, 62.267923 ], [ 31.289062, 62.267923 ], [ 31.289062, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 63.391522 ], [ 29.882812, 63.391522 ], [ 29.882812, 63.704722 ], [ 30.234375, 63.704722 ], [ 30.234375, 64.014496 ], [ 30.585938, 64.014496 ], [ 30.585938, 64.168107 ], [ 30.234375, 64.168107 ], [ 30.234375, 64.472794 ], [ 29.882812, 64.472794 ], [ 29.882812, 64.774125 ], [ 29.531250, 64.774125 ], [ 29.531250, 65.072130 ], [ 29.882812, 65.072130 ], [ 29.882812, 65.512963 ], [ 30.234375, 65.512963 ], [ 30.234375, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.204032 ], [ 41.132812, 67.204032 ], [ 41.132812, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.429688, 66.513260 ], [ 40.429688, 66.231457 ], [ 39.726562, 66.231457 ], [ 39.726562, 66.089364 ], [ 39.023438, 66.089364 ], [ 39.023438, 65.946472 ], [ 37.617188, 65.946472 ], [ 37.617188, 66.089364 ], [ 36.914062, 66.089364 ], [ 36.914062, 66.231457 ], [ 36.210938, 66.231457 ], [ 36.210938, 66.372755 ], [ 35.507812, 66.372755 ], [ 35.507812, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ] ] ], [ [ [ 22.148438, 54.775346 ], [ 22.851562, 54.775346 ], [ 22.851562, 54.572062 ], [ 22.500000, 54.572062 ], [ 22.500000, 54.367759 ], [ 19.687500, 54.367759 ], [ 19.687500, 54.572062 ], [ 20.039062, 54.572062 ], [ 20.039062, 54.775346 ], [ 20.390625, 54.775346 ], [ 20.390625, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.178868 ], [ 21.445312, 55.178868 ], [ 21.445312, 54.977614 ], [ 22.148438, 54.977614 ], [ 22.148438, 54.775346 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 67.204032 ], [ 45.703125, 66.930060 ], [ 46.054688, 66.930060 ], [ 46.054688, 66.652977 ], [ 47.109375, 66.652977 ], [ 47.109375, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 50.064192 ], [ 47.109375, 50.064192 ], [ 47.109375, 49.610710 ], [ 46.757812, 49.610710 ], [ 46.757812, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 48.922499 ], [ 46.757812, 48.922499 ], [ 46.757812, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 48.224673 ], [ 46.757812, 48.224673 ], [ 46.757812, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.754098 ], [ 47.460938, 47.754098 ], [ 47.460938, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.339565 ], [ 47.109375, 44.339565 ], [ 47.109375, 43.834527 ], [ 47.460938, 43.834527 ], [ 47.460938, 41.244772 ], [ 47.109375, 41.244772 ], [ 47.109375, 41.508577 ], [ 46.757812, 41.508577 ], [ 46.757812, 41.771312 ], [ 45.703125, 41.771312 ], [ 45.703125, 42.293564 ], [ 45.351562, 42.293564 ], [ 45.351562, 42.553080 ], [ 43.593750, 42.553080 ], [ 43.593750, 42.811522 ], [ 43.242188, 42.811522 ], [ 43.242188, 43.068888 ], [ 42.539062, 43.068888 ], [ 42.539062, 43.325178 ], [ 39.726562, 43.325178 ], [ 39.726562, 43.580391 ], [ 39.375000, 43.580391 ], [ 39.375000, 43.834527 ], [ 39.023438, 43.834527 ], [ 39.023438, 44.087585 ], [ 38.671875, 44.087585 ], [ 38.671875, 44.339565 ], [ 37.968750, 44.339565 ], [ 37.968750, 44.590467 ], [ 37.265625, 44.590467 ], [ 37.265625, 44.840291 ], [ 36.914062, 44.840291 ], [ 36.914062, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 45.336702 ], [ 37.617188, 45.336702 ], [ 37.617188, 45.828799 ], [ 37.968750, 45.828799 ], [ 37.968750, 46.073231 ], [ 38.320312, 46.073231 ], [ 38.320312, 46.316584 ], [ 37.617188, 46.316584 ], [ 37.617188, 46.558860 ], [ 38.320312, 46.558860 ], [ 38.320312, 46.800059 ], [ 39.023438, 46.800059 ], [ 39.023438, 47.040182 ], [ 38.320312, 47.040182 ], [ 38.320312, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.754098 ], [ 39.375000, 47.754098 ], [ 39.375000, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.610710 ], [ 39.023438, 49.610710 ], [ 39.023438, 49.837982 ], [ 37.617188, 49.837982 ], [ 37.617188, 50.064192 ], [ 37.265625, 50.064192 ], [ 37.265625, 50.289339 ], [ 35.859375, 50.289339 ], [ 35.859375, 50.513427 ], [ 35.507812, 50.513427 ], [ 35.507812, 50.958427 ], [ 35.156250, 50.958427 ], [ 35.156250, 51.179343 ], [ 34.101562, 51.179343 ], [ 34.101562, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.835778 ], [ 34.101562, 51.835778 ], [ 34.101562, 52.052490 ], [ 33.750000, 52.052490 ], [ 33.750000, 52.268157 ], [ 32.343750, 52.268157 ], [ 32.343750, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 32.695312, 53.120405 ], [ 32.695312, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.540307 ], [ 31.640625, 53.540307 ], [ 31.640625, 53.956086 ], [ 31.289062, 53.956086 ], [ 31.289062, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 54.572062 ], [ 30.585938, 54.572062 ], [ 30.585938, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.578345 ], [ 30.234375, 55.578345 ], [ 30.234375, 55.776573 ], [ 29.882812, 55.776573 ], [ 29.882812, 55.578345 ], [ 29.531250, 55.578345 ], [ 29.531250, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.365250 ], [ 27.773438, 56.365250 ], [ 27.773438, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.515823 ], [ 27.773438, 57.515823 ], [ 27.773438, 58.263287 ], [ 27.421875, 58.263287 ], [ 27.421875, 58.813742 ], [ 27.773438, 58.813742 ], [ 27.773438, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.534318 ], [ 28.476562, 59.534318 ], [ 28.476562, 59.712097 ], [ 28.828125, 59.712097 ], [ 28.828125, 59.888937 ], [ 29.179688, 59.888937 ], [ 29.179688, 60.064840 ], [ 28.828125, 60.064840 ], [ 28.828125, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.586967 ], [ 28.476562, 60.586967 ], [ 28.476562, 60.759160 ], [ 28.828125, 60.759160 ], [ 28.828125, 60.930432 ], [ 29.179688, 60.930432 ], [ 29.179688, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.438767 ], [ 29.882812, 61.438767 ], [ 29.882812, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.773123 ], [ 30.585938, 61.773123 ], [ 30.585938, 62.103883 ], [ 30.937500, 62.103883 ], [ 30.937500, 62.267923 ], [ 31.289062, 62.267923 ], [ 31.289062, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 63.391522 ], [ 29.882812, 63.391522 ], [ 29.882812, 63.704722 ], [ 30.234375, 63.704722 ], [ 30.234375, 64.014496 ], [ 30.585938, 64.014496 ], [ 30.585938, 64.168107 ], [ 30.234375, 64.168107 ], [ 30.234375, 64.472794 ], [ 29.882812, 64.472794 ], [ 29.882812, 64.774125 ], [ 29.531250, 64.774125 ], [ 29.531250, 65.072130 ], [ 29.882812, 65.072130 ], [ 29.882812, 65.512963 ], [ 30.234375, 65.512963 ], [ 30.234375, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.204032 ], [ 41.132812, 67.204032 ], [ 41.132812, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.429688, 66.513260 ], [ 40.429688, 66.231457 ], [ 39.726562, 66.231457 ], [ 39.726562, 66.089364 ], [ 39.023438, 66.089364 ], [ 39.023438, 65.946472 ], [ 37.617188, 65.946472 ], [ 37.617188, 66.089364 ], [ 36.914062, 66.089364 ], [ 36.914062, 66.231457 ], [ 36.210938, 66.231457 ], [ 36.210938, 66.372755 ], [ 35.507812, 66.372755 ], [ 35.507812, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.320872 ], [ 35.507812, 64.320872 ], [ 35.507812, 64.168107 ], [ 36.210938, 64.168107 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.860036 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.014496 ], [ 37.265625, 64.014496 ], [ 37.265625, 64.320872 ], [ 36.914062, 64.320872 ], [ 36.914062, 64.623877 ], [ 36.562500, 64.623877 ], [ 36.562500, 64.774125 ], [ 36.914062, 64.774125 ], [ 36.914062, 64.923542 ], [ 37.968750, 64.923542 ], [ 37.968750, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.472794 ], [ 40.078125, 64.472794 ], [ 40.078125, 64.623877 ], [ 40.429688, 64.623877 ], [ 40.429688, 64.923542 ], [ 40.078125, 64.923542 ], [ 40.078125, 65.219894 ], [ 39.726562, 65.219894 ], [ 39.726562, 65.512963 ], [ 40.078125, 65.512963 ], [ 40.078125, 65.658275 ], [ 40.429688, 65.658275 ], [ 40.429688, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.089364 ], [ 41.484375, 66.089364 ], [ 41.484375, 66.231457 ], [ 41.835938, 66.231457 ], [ 41.835938, 66.372755 ], [ 42.890625, 66.372755 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.231457 ], [ 44.296875, 66.231457 ], [ 44.296875, 66.513260 ], [ 44.648438, 66.513260 ], [ 44.648438, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 45.703125, 67.204032 ] ] ], [ [ [ 21.445312, 55.178868 ], [ 21.445312, 54.977614 ], [ 22.148438, 54.977614 ], [ 22.148438, 54.775346 ], [ 22.851562, 54.775346 ], [ 22.851562, 54.572062 ], [ 22.500000, 54.572062 ], [ 22.500000, 54.367759 ], [ 19.687500, 54.367759 ], [ 19.687500, 54.572062 ], [ 20.039062, 54.572062 ], [ 20.039062, 54.775346 ], [ 20.390625, 54.775346 ], [ 20.390625, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.178868 ], [ 21.445312, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 84.375000, 50.064192 ], [ 84.375000, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.958427 ], [ 82.617188, 50.958427 ], [ 82.617188, 50.736455 ], [ 81.562500, 50.736455 ], [ 81.562500, 50.958427 ], [ 80.859375, 50.958427 ], [ 80.859375, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.101562, 51.618017 ], [ 79.101562, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.482780 ], [ 78.398438, 52.482780 ], [ 78.398438, 52.696361 ], [ 78.046875, 52.696361 ], [ 78.046875, 53.120405 ], [ 77.695312, 53.120405 ], [ 77.695312, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.367759 ], [ 76.289062, 54.367759 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 53.956086 ], [ 75.585938, 53.956086 ], [ 75.585938, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 53.956086 ], [ 72.773438, 53.956086 ], [ 72.773438, 54.162434 ], [ 72.070312, 54.162434 ], [ 72.070312, 54.367759 ], [ 71.718750, 54.367759 ], [ 71.718750, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 55.178868 ], [ 69.609375, 55.178868 ], [ 69.609375, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 54.977614 ], [ 67.851562, 54.977614 ], [ 67.851562, 54.775346 ], [ 66.445312, 54.775346 ], [ 66.445312, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.367759 ], [ 64.335938, 54.367759 ], [ 64.335938, 54.162434 ], [ 62.578125, 54.162434 ], [ 62.578125, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.748711 ], [ 60.820312, 53.748711 ], [ 60.820312, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.523438, 53.330873 ], [ 61.523438, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.268157 ], [ 60.468750, 52.268157 ], [ 60.468750, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.835778 ], [ 60.468750, 51.835778 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.399206 ], [ 61.171875, 51.399206 ], [ 61.171875, 51.179343 ], [ 61.523438, 51.179343 ], [ 61.523438, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.171875, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.062500, 50.513427 ], [ 59.062500, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 50.958427 ], [ 56.953125, 50.958427 ], [ 56.953125, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 50.513427 ], [ 55.195312, 50.513427 ], [ 55.195312, 50.736455 ], [ 54.492188, 50.736455 ], [ 54.492188, 50.958427 ], [ 53.789062, 50.958427 ], [ 53.789062, 51.179343 ], [ 53.085938, 51.179343 ], [ 53.085938, 51.399206 ], [ 52.382812, 51.399206 ], [ 52.382812, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.399206 ], [ 50.273438, 51.399206 ], [ 50.273438, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 50.958427 ], [ 49.570312, 50.958427 ], [ 49.570312, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 50.513427 ], [ 48.867188, 50.513427 ], [ 48.867188, 50.064192 ], [ 48.515625, 50.064192 ], [ 48.515625, 49.837982 ], [ 48.164062, 49.837982 ], [ 48.164062, 50.064192 ], [ 47.812500, 50.064192 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.067433 ], [ 48.164062, 67.067433 ], [ 48.164062, 67.204032 ], [ 72.421875, 67.204032 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.372755 ], [ 71.718750, 66.372755 ], [ 71.718750, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 73.125000, 66.513260 ], [ 73.125000, 66.652977 ], [ 73.828125, 66.652977 ], [ 73.828125, 66.930060 ], [ 74.179688, 66.930060 ], [ 74.179688, 67.204032 ], [ 91.757812, 67.204032 ], [ 91.757812, 50.513427 ], [ 91.054688, 50.513427 ], [ 91.054688, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.382373 ], [ 87.890625, 49.382373 ], [ 87.890625, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 49.382373 ], [ 86.835938, 49.382373 ], [ 86.835938, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.610710 ], [ 85.429688, 49.610710 ], [ 85.429688, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.064192 ], [ 84.375000, 50.064192 ] ] ], [ [ [ 47.812500, 42.811522 ], [ 47.812500, 42.293564 ], [ 48.164062, 42.293564 ], [ 48.164062, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 42.811522 ], [ 47.812500, 42.811522 ] ] ], [ [ [ 48.164062, 47.754098 ], [ 48.164062, 47.517201 ], [ 48.515625, 47.517201 ], [ 48.515625, 47.040182 ], [ 48.867188, 47.040182 ], [ 48.867188, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.316584 ], [ 49.218750, 46.316584 ], [ 49.218750, 46.073231 ], [ 48.867188, 46.073231 ], [ 48.867188, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.583290 ], [ 47.812500, 45.583290 ], [ 47.812500, 45.336702 ], [ 47.460938, 45.336702 ], [ 47.460938, 47.754098 ], [ 48.164062, 47.754098 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.460938, 42.811522 ], [ 47.812500, 42.811522 ], [ 47.812500, 42.293564 ], [ 48.164062, 42.293564 ], [ 48.164062, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 42.811522 ] ] ], [ [ [ 47.460938, 47.754098 ], [ 48.164062, 47.754098 ], [ 48.164062, 47.517201 ], [ 48.515625, 47.517201 ], [ 48.515625, 47.040182 ], [ 48.867188, 47.040182 ], [ 48.867188, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.316584 ], [ 49.218750, 46.316584 ], [ 49.218750, 46.073231 ], [ 48.867188, 46.073231 ], [ 48.867188, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.583290 ], [ 47.812500, 45.583290 ], [ 47.812500, 45.336702 ], [ 47.460938, 45.336702 ], [ 47.460938, 47.754098 ] ] ], [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.513427 ], [ 91.054688, 50.513427 ], [ 91.054688, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.382373 ], [ 87.890625, 49.382373 ], [ 87.890625, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 49.382373 ], [ 86.835938, 49.382373 ], [ 86.835938, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.610710 ], [ 85.429688, 49.610710 ], [ 85.429688, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.064192 ], [ 84.375000, 50.064192 ], [ 84.375000, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.958427 ], [ 82.617188, 50.958427 ], [ 82.617188, 50.736455 ], [ 81.562500, 50.736455 ], [ 81.562500, 50.958427 ], [ 80.859375, 50.958427 ], [ 80.859375, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.101562, 51.618017 ], [ 79.101562, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.482780 ], [ 78.398438, 52.482780 ], [ 78.398438, 52.696361 ], [ 78.046875, 52.696361 ], [ 78.046875, 53.120405 ], [ 77.695312, 53.120405 ], [ 77.695312, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.367759 ], [ 76.289062, 54.367759 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 53.956086 ], [ 75.585938, 53.956086 ], [ 75.585938, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 53.956086 ], [ 72.773438, 53.956086 ], [ 72.773438, 54.162434 ], [ 72.070312, 54.162434 ], [ 72.070312, 54.367759 ], [ 71.718750, 54.367759 ], [ 71.718750, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 55.178868 ], [ 69.609375, 55.178868 ], [ 69.609375, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 54.977614 ], [ 67.851562, 54.977614 ], [ 67.851562, 54.775346 ], [ 66.445312, 54.775346 ], [ 66.445312, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.367759 ], [ 64.335938, 54.367759 ], [ 64.335938, 54.162434 ], [ 62.578125, 54.162434 ], [ 62.578125, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.748711 ], [ 60.820312, 53.748711 ], [ 60.820312, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.523438, 53.330873 ], [ 61.523438, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.268157 ], [ 60.468750, 52.268157 ], [ 60.468750, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.835778 ], [ 60.468750, 51.835778 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.399206 ], [ 61.171875, 51.399206 ], [ 61.171875, 51.179343 ], [ 61.523438, 51.179343 ], [ 61.523438, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.171875, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.062500, 50.513427 ], [ 59.062500, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 50.958427 ], [ 56.953125, 50.958427 ], [ 56.953125, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 50.513427 ], [ 55.195312, 50.513427 ], [ 55.195312, 50.736455 ], [ 54.492188, 50.736455 ], [ 54.492188, 50.958427 ], [ 53.789062, 50.958427 ], [ 53.789062, 51.179343 ], [ 53.085938, 51.179343 ], [ 53.085938, 51.399206 ], [ 52.382812, 51.399206 ], [ 52.382812, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.399206 ], [ 50.273438, 51.399206 ], [ 50.273438, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 50.958427 ], [ 49.570312, 50.958427 ], [ 49.570312, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 50.513427 ], [ 48.867188, 50.513427 ], [ 48.867188, 50.064192 ], [ 48.515625, 50.064192 ], [ 48.515625, 49.837982 ], [ 48.164062, 49.837982 ], [ 48.164062, 50.064192 ], [ 47.812500, 50.064192 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.067433 ], [ 48.164062, 67.067433 ], [ 48.164062, 67.204032 ], [ 72.421875, 67.204032 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.372755 ], [ 71.718750, 66.372755 ], [ 71.718750, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 73.125000, 66.513260 ], [ 73.125000, 66.652977 ], [ 73.828125, 66.652977 ], [ 73.828125, 66.930060 ], [ 74.179688, 66.930060 ], [ 74.179688, 67.204032 ], [ 91.757812, 67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 64.168107 ], [ 13.710938, 64.168107 ], [ 13.710938, 64.014496 ], [ 12.656250, 64.014496 ], [ 12.656250, 63.704722 ], [ 12.304688, 63.704722 ], [ 12.304688, 63.233627 ], [ 11.953125, 63.233627 ], [ 11.953125, 61.606396 ], [ 12.304688, 61.606396 ], [ 12.304688, 61.270233 ], [ 12.656250, 61.270233 ], [ 12.656250, 60.586967 ], [ 12.304688, 60.586967 ], [ 12.304688, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 59.534318 ], [ 11.601562, 59.534318 ], [ 11.601562, 59.175928 ], [ 11.250000, 59.175928 ], [ 11.250000, 58.813742 ], [ 10.898438, 58.813742 ], [ 10.898438, 58.995311 ], [ 10.546875, 58.995311 ], [ 10.546875, 59.355596 ], [ 9.843750, 59.355596 ], [ 9.843750, 58.995311 ], [ 9.492188, 58.995311 ], [ 9.492188, 58.813742 ], [ 9.140625, 58.813742 ], [ 9.140625, 58.631217 ], [ 8.789062, 58.631217 ], [ 8.789062, 58.263287 ], [ 8.085938, 58.263287 ], [ 8.085938, 58.077876 ], [ 6.679688, 58.077876 ], [ 6.679688, 58.263287 ], [ 5.976562, 58.263287 ], [ 5.976562, 58.447733 ], [ 5.625000, 58.447733 ], [ 5.625000, 59.175928 ], [ 5.273438, 59.175928 ], [ 5.273438, 60.759160 ], [ 4.921875, 60.759160 ], [ 4.921875, 61.938950 ], [ 5.273438, 61.938950 ], [ 5.273438, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.431074 ], [ 5.976562, 62.431074 ], [ 5.976562, 62.593341 ], [ 6.328125, 62.593341 ], [ 6.328125, 62.754726 ], [ 7.031250, 62.754726 ], [ 7.031250, 62.915233 ], [ 7.382812, 62.915233 ], [ 7.382812, 63.074866 ], [ 7.734375, 63.074866 ], [ 7.734375, 63.233627 ], [ 8.437500, 63.233627 ], [ 8.437500, 63.391522 ], [ 8.789062, 63.391522 ], [ 8.789062, 63.548552 ], [ 9.140625, 63.548552 ], [ 9.140625, 63.704722 ], [ 9.492188, 63.704722 ], [ 9.492188, 64.014496 ], [ 9.843750, 64.014496 ], [ 9.843750, 64.168107 ], [ 10.195312, 64.168107 ], [ 10.195312, 64.320872 ], [ 10.546875, 64.320872 ], [ 10.546875, 64.623877 ], [ 10.898438, 64.623877 ], [ 10.898438, 64.923542 ], [ 11.250000, 64.923542 ], [ 11.250000, 65.219894 ], [ 11.601562, 65.219894 ], [ 11.601562, 65.512963 ], [ 11.953125, 65.512963 ], [ 11.953125, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 65.946472 ], [ 12.656250, 65.946472 ], [ 12.656250, 66.231457 ], [ 13.007812, 66.231457 ], [ 13.007812, 66.513260 ], [ 13.359375, 66.513260 ], [ 13.359375, 66.791909 ], [ 13.710938, 66.791909 ], [ 13.710938, 67.067433 ], [ 14.062500, 67.067433 ], [ 14.062500, 67.204032 ], [ 16.171875, 67.204032 ], [ 16.171875, 66.930060 ], [ 15.820312, 66.930060 ], [ 15.820312, 66.652977 ], [ 15.468750, 66.652977 ], [ 15.468750, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 65.658275 ], [ 14.414062, 65.658275 ], [ 14.414062, 65.219894 ], [ 14.062500, 65.219894 ], [ 14.062500, 64.923542 ], [ 13.710938, 64.923542 ], [ 13.710938, 64.623877 ], [ 14.062500, 64.623877 ], [ 14.062500, 64.168107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 67.204032 ], [ 16.171875, 66.930060 ], [ 15.820312, 66.930060 ], [ 15.820312, 66.652977 ], [ 15.468750, 66.652977 ], [ 15.468750, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 65.658275 ], [ 14.414062, 65.658275 ], [ 14.414062, 65.219894 ], [ 14.062500, 65.219894 ], [ 14.062500, 64.923542 ], [ 13.710938, 64.923542 ], [ 13.710938, 64.623877 ], [ 14.062500, 64.623877 ], [ 14.062500, 64.168107 ], [ 13.710938, 64.168107 ], [ 13.710938, 64.014496 ], [ 12.656250, 64.014496 ], [ 12.656250, 63.704722 ], [ 12.304688, 63.704722 ], [ 12.304688, 63.233627 ], [ 11.953125, 63.233627 ], [ 11.953125, 61.606396 ], [ 12.304688, 61.606396 ], [ 12.304688, 61.270233 ], [ 12.656250, 61.270233 ], [ 12.656250, 60.586967 ], [ 12.304688, 60.586967 ], [ 12.304688, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 59.534318 ], [ 11.601562, 59.534318 ], [ 11.601562, 59.175928 ], [ 11.250000, 59.175928 ], [ 11.250000, 58.813742 ], [ 10.898438, 58.813742 ], [ 10.898438, 58.995311 ], [ 10.546875, 58.995311 ], [ 10.546875, 59.355596 ], [ 9.843750, 59.355596 ], [ 9.843750, 58.995311 ], [ 9.492188, 58.995311 ], [ 9.492188, 58.813742 ], [ 9.140625, 58.813742 ], [ 9.140625, 58.631217 ], [ 8.789062, 58.631217 ], [ 8.789062, 58.263287 ], [ 8.085938, 58.263287 ], [ 8.085938, 58.077876 ], [ 6.679688, 58.077876 ], [ 6.679688, 58.263287 ], [ 5.976562, 58.263287 ], [ 5.976562, 58.447733 ], [ 5.625000, 58.447733 ], [ 5.625000, 59.175928 ], [ 5.273438, 59.175928 ], [ 5.273438, 60.759160 ], [ 4.921875, 60.759160 ], [ 4.921875, 61.938950 ], [ 5.273438, 61.938950 ], [ 5.273438, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.431074 ], [ 5.976562, 62.431074 ], [ 5.976562, 62.593341 ], [ 6.328125, 62.593341 ], [ 6.328125, 62.754726 ], [ 7.031250, 62.754726 ], [ 7.031250, 62.915233 ], [ 7.382812, 62.915233 ], [ 7.382812, 63.074866 ], [ 7.734375, 63.074866 ], [ 7.734375, 63.233627 ], [ 8.437500, 63.233627 ], [ 8.437500, 63.391522 ], [ 8.789062, 63.391522 ], [ 8.789062, 63.548552 ], [ 9.140625, 63.548552 ], [ 9.140625, 63.704722 ], [ 9.492188, 63.704722 ], [ 9.492188, 64.014496 ], [ 9.843750, 64.014496 ], [ 9.843750, 64.168107 ], [ 10.195312, 64.168107 ], [ 10.195312, 64.320872 ], [ 10.546875, 64.320872 ], [ 10.546875, 64.623877 ], [ 10.898438, 64.623877 ], [ 10.898438, 64.923542 ], [ 11.250000, 64.923542 ], [ 11.250000, 65.219894 ], [ 11.601562, 65.219894 ], [ 11.601562, 65.512963 ], [ 11.953125, 65.512963 ], [ 11.953125, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 65.946472 ], [ 12.656250, 65.946472 ], [ 12.656250, 66.231457 ], [ 13.007812, 66.231457 ], [ 13.007812, 66.513260 ], [ 13.359375, 66.513260 ], [ 13.359375, 66.791909 ], [ 13.710938, 66.791909 ], [ 13.710938, 67.067433 ], [ 14.062500, 67.067433 ], [ 14.062500, 67.204032 ], [ 16.171875, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.379110 ], [ 12.304688, 55.379110 ], [ 12.304688, 54.977614 ], [ 11.953125, 54.977614 ], [ 11.953125, 54.775346 ], [ 11.601562, 54.775346 ], [ 11.601562, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.178868 ], [ 10.898438, 55.178868 ], [ 10.898438, 55.776573 ], [ 11.601562, 55.776573 ], [ 11.601562, 55.973798 ], [ 12.304688, 55.973798 ], [ 12.304688, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 55.379110 ] ] ], [ [ [ 10.546875, 56.944974 ], [ 10.195312, 56.944974 ], [ 10.195312, 56.365250 ], [ 10.898438, 56.365250 ], [ 10.898438, 56.170023 ], [ 10.195312, 56.170023 ], [ 10.195312, 55.973798 ], [ 9.843750, 55.973798 ], [ 9.843750, 55.578345 ], [ 9.492188, 55.578345 ], [ 9.492188, 55.178868 ], [ 9.843750, 55.178868 ], [ 9.843750, 54.775346 ], [ 8.437500, 54.775346 ], [ 8.437500, 55.178868 ], [ 8.085938, 55.178868 ], [ 8.085938, 56.944974 ], [ 8.437500, 56.944974 ], [ 8.437500, 57.136239 ], [ 9.492188, 57.136239 ], [ 9.492188, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 57.515823 ], [ 10.546875, 57.515823 ], [ 10.546875, 56.944974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 55.973798 ], [ 12.304688, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 55.379110 ], [ 12.304688, 55.379110 ], [ 12.304688, 54.977614 ], [ 11.953125, 54.977614 ], [ 11.953125, 54.775346 ], [ 11.601562, 54.775346 ], [ 11.601562, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.178868 ], [ 10.898438, 55.178868 ], [ 10.898438, 55.776573 ], [ 11.601562, 55.776573 ], [ 11.601562, 55.973798 ], [ 12.304688, 55.973798 ] ] ], [ [ [ 10.546875, 57.515823 ], [ 10.546875, 56.944974 ], [ 10.195312, 56.944974 ], [ 10.195312, 56.365250 ], [ 10.898438, 56.365250 ], [ 10.898438, 56.170023 ], [ 10.195312, 56.170023 ], [ 10.195312, 55.973798 ], [ 9.843750, 55.973798 ], [ 9.843750, 55.578345 ], [ 9.492188, 55.578345 ], [ 9.492188, 55.178868 ], [ 9.843750, 55.178868 ], [ 9.843750, 54.775346 ], [ 8.437500, 54.775346 ], [ 8.437500, 55.178868 ], [ 8.085938, 55.178868 ], [ 8.085938, 56.944974 ], [ 8.437500, 56.944974 ], [ 8.437500, 57.136239 ], [ 9.492188, 57.136239 ], [ 9.492188, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 57.515823 ], [ 10.546875, 57.515823 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 65.802776 ], [ 22.851562, 65.802776 ], [ 22.851562, 65.658275 ], [ 22.148438, 65.658275 ], [ 22.148438, 65.512963 ], [ 21.796875, 65.512963 ], [ 21.796875, 65.366837 ], [ 21.445312, 65.366837 ], [ 21.445312, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.774125 ], [ 21.445312, 64.774125 ], [ 21.445312, 64.320872 ], [ 21.093750, 64.320872 ], [ 21.093750, 64.168107 ], [ 20.742188, 64.168107 ], [ 20.742188, 64.014496 ], [ 20.390625, 64.014496 ], [ 20.390625, 63.704722 ], [ 20.039062, 63.704722 ], [ 20.039062, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.391522 ], [ 19.335938, 63.391522 ], [ 19.335938, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 63.074866 ], [ 18.632812, 63.074866 ], [ 18.632812, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.754726 ], [ 17.929688, 62.754726 ], [ 17.929688, 62.267923 ], [ 17.578125, 62.267923 ], [ 17.578125, 61.606396 ], [ 17.226562, 61.606396 ], [ 17.226562, 61.100789 ], [ 17.578125, 61.100789 ], [ 17.578125, 60.759160 ], [ 17.929688, 60.759160 ], [ 17.929688, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.064840 ], [ 18.632812, 60.064840 ], [ 18.632812, 59.712097 ], [ 18.281250, 59.712097 ], [ 18.281250, 59.175928 ], [ 17.929688, 59.175928 ], [ 17.929688, 58.813742 ], [ 17.226562, 58.813742 ], [ 17.226562, 58.631217 ], [ 16.875000, 58.631217 ], [ 16.875000, 57.891497 ], [ 16.523438, 57.891497 ], [ 16.523438, 56.752723 ], [ 16.171875, 56.752723 ], [ 16.171875, 56.365250 ], [ 15.820312, 56.365250 ], [ 15.820312, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.765625, 55.973798 ], [ 14.414062, 55.973798 ], [ 14.414062, 55.578345 ], [ 14.062500, 55.578345 ], [ 14.062500, 55.379110 ], [ 13.007812, 55.379110 ], [ 13.007812, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 56.559482 ], [ 12.304688, 56.559482 ], [ 12.304688, 57.136239 ], [ 11.953125, 57.136239 ], [ 11.953125, 57.704147 ], [ 11.601562, 57.704147 ], [ 11.601562, 58.077876 ], [ 11.250000, 58.077876 ], [ 11.250000, 58.447733 ], [ 10.898438, 58.447733 ], [ 10.898438, 58.813742 ], [ 11.250000, 58.813742 ], [ 11.250000, 59.175928 ], [ 11.601562, 59.175928 ], [ 11.601562, 59.534318 ], [ 11.953125, 59.534318 ], [ 11.953125, 59.888937 ], [ 12.304688, 59.888937 ], [ 12.304688, 60.586967 ], [ 12.656250, 60.586967 ], [ 12.656250, 61.270233 ], [ 12.304688, 61.270233 ], [ 12.304688, 61.606396 ], [ 11.953125, 61.606396 ], [ 11.953125, 63.233627 ], [ 12.304688, 63.233627 ], [ 12.304688, 63.704722 ], [ 12.656250, 63.704722 ], [ 12.656250, 64.014496 ], [ 13.710938, 64.014496 ], [ 13.710938, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 64.623877 ], [ 13.710938, 64.623877 ], [ 13.710938, 64.923542 ], [ 14.062500, 64.923542 ], [ 14.062500, 65.219894 ], [ 14.414062, 65.219894 ], [ 14.414062, 65.658275 ], [ 14.765625, 65.658275 ], [ 14.765625, 65.946472 ], [ 15.117188, 65.946472 ], [ 15.117188, 66.372755 ], [ 15.468750, 66.372755 ], [ 15.468750, 66.652977 ], [ 15.820312, 66.652977 ], [ 15.820312, 66.930060 ], [ 16.171875, 66.930060 ], [ 16.171875, 67.204032 ], [ 23.554688, 67.204032 ], [ 23.554688, 66.089364 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 67.204032 ], [ 23.554688, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 65.802776 ], [ 22.851562, 65.802776 ], [ 22.851562, 65.658275 ], [ 22.148438, 65.658275 ], [ 22.148438, 65.512963 ], [ 21.796875, 65.512963 ], [ 21.796875, 65.366837 ], [ 21.445312, 65.366837 ], [ 21.445312, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.774125 ], [ 21.445312, 64.774125 ], [ 21.445312, 64.320872 ], [ 21.093750, 64.320872 ], [ 21.093750, 64.168107 ], [ 20.742188, 64.168107 ], [ 20.742188, 64.014496 ], [ 20.390625, 64.014496 ], [ 20.390625, 63.704722 ], [ 20.039062, 63.704722 ], [ 20.039062, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.391522 ], [ 19.335938, 63.391522 ], [ 19.335938, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 63.074866 ], [ 18.632812, 63.074866 ], [ 18.632812, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.754726 ], [ 17.929688, 62.754726 ], [ 17.929688, 62.267923 ], [ 17.578125, 62.267923 ], [ 17.578125, 61.606396 ], [ 17.226562, 61.606396 ], [ 17.226562, 61.100789 ], [ 17.578125, 61.100789 ], [ 17.578125, 60.759160 ], [ 17.929688, 60.759160 ], [ 17.929688, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.064840 ], [ 18.632812, 60.064840 ], [ 18.632812, 59.712097 ], [ 18.281250, 59.712097 ], [ 18.281250, 59.175928 ], [ 17.929688, 59.175928 ], [ 17.929688, 58.813742 ], [ 17.226562, 58.813742 ], [ 17.226562, 58.631217 ], [ 16.875000, 58.631217 ], [ 16.875000, 57.891497 ], [ 16.523438, 57.891497 ], [ 16.523438, 56.752723 ], [ 16.171875, 56.752723 ], [ 16.171875, 56.365250 ], [ 15.820312, 56.365250 ], [ 15.820312, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.765625, 55.973798 ], [ 14.414062, 55.973798 ], [ 14.414062, 55.578345 ], [ 14.062500, 55.578345 ], [ 14.062500, 55.379110 ], [ 13.007812, 55.379110 ], [ 13.007812, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 56.559482 ], [ 12.304688, 56.559482 ], [ 12.304688, 57.136239 ], [ 11.953125, 57.136239 ], [ 11.953125, 57.704147 ], [ 11.601562, 57.704147 ], [ 11.601562, 58.077876 ], [ 11.250000, 58.077876 ], [ 11.250000, 58.447733 ], [ 10.898438, 58.447733 ], [ 10.898438, 58.813742 ], [ 11.250000, 58.813742 ], [ 11.250000, 59.175928 ], [ 11.601562, 59.175928 ], [ 11.601562, 59.534318 ], [ 11.953125, 59.534318 ], [ 11.953125, 59.888937 ], [ 12.304688, 59.888937 ], [ 12.304688, 60.586967 ], [ 12.656250, 60.586967 ], [ 12.656250, 61.270233 ], [ 12.304688, 61.270233 ], [ 12.304688, 61.606396 ], [ 11.953125, 61.606396 ], [ 11.953125, 63.233627 ], [ 12.304688, 63.233627 ], [ 12.304688, 63.704722 ], [ 12.656250, 63.704722 ], [ 12.656250, 64.014496 ], [ 13.710938, 64.014496 ], [ 13.710938, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 64.623877 ], [ 13.710938, 64.623877 ], [ 13.710938, 64.923542 ], [ 14.062500, 64.923542 ], [ 14.062500, 65.219894 ], [ 14.414062, 65.219894 ], [ 14.414062, 65.658275 ], [ 14.765625, 65.658275 ], [ 14.765625, 65.946472 ], [ 15.117188, 65.946472 ], [ 15.117188, 66.372755 ], [ 15.468750, 66.372755 ], [ 15.468750, 66.652977 ], [ 15.820312, 66.652977 ], [ 15.820312, 66.930060 ], [ 16.171875, 66.930060 ], [ 16.171875, 67.204032 ], [ 23.554688, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 52.696361 ], [ 6.679688, 52.696361 ], [ 6.679688, 51.835778 ], [ 5.976562, 51.835778 ], [ 5.976562, 51.179343 ], [ 6.328125, 51.179343 ], [ 6.328125, 50.736455 ], [ 5.625000, 50.736455 ], [ 5.625000, 50.958427 ], [ 5.273438, 50.958427 ], [ 5.273438, 51.179343 ], [ 3.515625, 51.179343 ], [ 3.515625, 51.399206 ], [ 3.867188, 51.399206 ], [ 3.867188, 51.835778 ], [ 4.218750, 51.835778 ], [ 4.218750, 52.696361 ], [ 4.570312, 52.696361 ], [ 4.570312, 53.120405 ], [ 5.273438, 53.120405 ], [ 5.273438, 53.330873 ], [ 5.976562, 53.330873 ], [ 5.976562, 53.540307 ], [ 7.031250, 53.540307 ], [ 7.031250, 52.696361 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.540307 ], [ 7.031250, 52.696361 ], [ 6.679688, 52.696361 ], [ 6.679688, 51.835778 ], [ 5.976562, 51.835778 ], [ 5.976562, 51.179343 ], [ 6.328125, 51.179343 ], [ 6.328125, 50.736455 ], [ 5.625000, 50.736455 ], [ 5.625000, 50.958427 ], [ 5.273438, 50.958427 ], [ 5.273438, 51.179343 ], [ 3.515625, 51.179343 ], [ 3.515625, 51.399206 ], [ 3.867188, 51.399206 ], [ 3.867188, 51.835778 ], [ 4.218750, 51.835778 ], [ 4.218750, 52.696361 ], [ 4.570312, 52.696361 ], [ 4.570312, 53.120405 ], [ 5.273438, 53.120405 ], [ 5.273438, 53.330873 ], [ 5.976562, 53.330873 ], [ 5.976562, 53.540307 ], [ 7.031250, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.273438, 50.958427 ], [ 5.625000, 50.958427 ], [ 5.625000, 50.736455 ], [ 6.328125, 50.736455 ], [ 6.328125, 50.289339 ], [ 5.976562, 50.289339 ], [ 5.976562, 50.064192 ], [ 5.625000, 50.064192 ], [ 5.625000, 49.610710 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.837982 ], [ 3.867188, 49.837982 ], [ 3.867188, 50.064192 ], [ 3.515625, 50.064192 ], [ 3.515625, 50.513427 ], [ 3.164062, 50.513427 ], [ 3.164062, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.164062, 51.179343 ], [ 3.164062, 51.399206 ], [ 3.515625, 51.399206 ], [ 3.515625, 51.179343 ], [ 5.273438, 51.179343 ], [ 5.273438, 50.958427 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.399206 ], [ 3.515625, 51.179343 ], [ 5.273438, 51.179343 ], [ 5.273438, 50.958427 ], [ 5.625000, 50.958427 ], [ 5.625000, 50.736455 ], [ 6.328125, 50.736455 ], [ 6.328125, 50.289339 ], [ 5.976562, 50.289339 ], [ 5.976562, 50.064192 ], [ 5.625000, 50.064192 ], [ 5.625000, 49.610710 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.837982 ], [ 3.867188, 49.837982 ], [ 3.867188, 50.064192 ], [ 3.515625, 50.064192 ], [ 3.515625, 50.513427 ], [ 3.164062, 50.513427 ], [ 3.164062, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.164062, 51.179343 ], [ 3.164062, 51.399206 ], [ 3.515625, 51.399206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 49.837982 ], [ 6.328125, 49.837982 ], [ 6.328125, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 50.064192 ], [ 5.976562, 50.064192 ], [ 5.976562, 49.837982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.064192 ], [ 5.976562, 49.837982 ], [ 6.328125, 49.837982 ], [ 6.328125, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 50.064192 ], [ 5.976562, 50.064192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.710938, 53.956086 ], [ 14.062500, 53.956086 ], [ 14.062500, 53.540307 ], [ 14.414062, 53.540307 ], [ 14.414062, 53.120405 ], [ 14.062500, 53.120405 ], [ 14.062500, 52.696361 ], [ 14.414062, 52.696361 ], [ 14.414062, 52.268157 ], [ 14.765625, 52.268157 ], [ 14.765625, 51.399206 ], [ 15.117188, 51.399206 ], [ 15.117188, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.289339 ], [ 12.304688, 50.289339 ], [ 12.304688, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 49.382373 ], [ 13.007812, 49.382373 ], [ 13.007812, 49.152970 ], [ 13.359375, 49.152970 ], [ 13.359375, 48.922499 ], [ 13.710938, 48.922499 ], [ 13.710938, 48.690960 ], [ 13.359375, 48.690960 ], [ 13.359375, 48.224673 ], [ 13.007812, 48.224673 ], [ 13.007812, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 47.754098 ], [ 12.304688, 47.754098 ], [ 12.304688, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.279229 ], [ 9.843750, 47.279229 ], [ 9.843750, 47.517201 ], [ 8.789062, 47.517201 ], [ 8.789062, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.754098 ], [ 7.734375, 47.754098 ], [ 7.734375, 48.458352 ], [ 8.085938, 48.458352 ], [ 8.085938, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 49.152970 ], [ 6.328125, 49.152970 ], [ 6.328125, 49.837982 ], [ 5.976562, 49.837982 ], [ 5.976562, 50.289339 ], [ 6.328125, 50.289339 ], [ 6.328125, 51.179343 ], [ 5.976562, 51.179343 ], [ 5.976562, 51.835778 ], [ 6.679688, 51.835778 ], [ 6.679688, 52.696361 ], [ 7.031250, 52.696361 ], [ 7.031250, 53.748711 ], [ 8.085938, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.437500, 53.540307 ], [ 8.437500, 53.748711 ], [ 8.789062, 53.748711 ], [ 8.789062, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.775346 ], [ 9.843750, 54.775346 ], [ 9.843750, 54.572062 ], [ 10.195312, 54.572062 ], [ 10.195312, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 53.956086 ], [ 11.601562, 53.956086 ], [ 11.601562, 54.162434 ], [ 12.304688, 54.162434 ], [ 12.304688, 54.367759 ], [ 13.359375, 54.367759 ], [ 13.359375, 54.162434 ], [ 13.710938, 54.162434 ], [ 13.710938, 53.956086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.775346 ], [ 9.843750, 54.572062 ], [ 10.195312, 54.572062 ], [ 10.195312, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 53.956086 ], [ 11.601562, 53.956086 ], [ 11.601562, 54.162434 ], [ 12.304688, 54.162434 ], [ 12.304688, 54.367759 ], [ 13.359375, 54.367759 ], [ 13.359375, 54.162434 ], [ 13.710938, 54.162434 ], [ 13.710938, 53.956086 ], [ 14.062500, 53.956086 ], [ 14.062500, 53.540307 ], [ 14.414062, 53.540307 ], [ 14.414062, 53.120405 ], [ 14.062500, 53.120405 ], [ 14.062500, 52.696361 ], [ 14.414062, 52.696361 ], [ 14.414062, 52.268157 ], [ 14.765625, 52.268157 ], [ 14.765625, 51.399206 ], [ 15.117188, 51.399206 ], [ 15.117188, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.289339 ], [ 12.304688, 50.289339 ], [ 12.304688, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 49.382373 ], [ 13.007812, 49.382373 ], [ 13.007812, 49.152970 ], [ 13.359375, 49.152970 ], [ 13.359375, 48.922499 ], [ 13.710938, 48.922499 ], [ 13.710938, 48.690960 ], [ 13.359375, 48.690960 ], [ 13.359375, 48.224673 ], [ 13.007812, 48.224673 ], [ 13.007812, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 47.754098 ], [ 12.304688, 47.754098 ], [ 12.304688, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.279229 ], [ 9.843750, 47.279229 ], [ 9.843750, 47.517201 ], [ 8.789062, 47.517201 ], [ 8.789062, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.754098 ], [ 7.734375, 47.754098 ], [ 7.734375, 48.458352 ], [ 8.085938, 48.458352 ], [ 8.085938, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 49.152970 ], [ 6.328125, 49.152970 ], [ 6.328125, 49.837982 ], [ 5.976562, 49.837982 ], [ 5.976562, 50.289339 ], [ 6.328125, 50.289339 ], [ 6.328125, 51.179343 ], [ 5.976562, 51.179343 ], [ 5.976562, 51.835778 ], [ 6.679688, 51.835778 ], [ 6.679688, 52.696361 ], [ 7.031250, 52.696361 ], [ 7.031250, 53.748711 ], [ 8.085938, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.437500, 53.540307 ], [ 8.437500, 53.748711 ], [ 8.789062, 53.748711 ], [ 8.789062, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.775346 ], [ 9.843750, 54.775346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 46.800059 ], [ 10.546875, 46.800059 ], [ 10.546875, 46.558860 ], [ 10.195312, 46.558860 ], [ 10.195312, 46.316584 ], [ 9.140625, 46.316584 ], [ 9.140625, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.828799 ], [ 6.679688, 45.828799 ], [ 6.679688, 46.073231 ], [ 6.328125, 46.073231 ], [ 6.328125, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.800059 ], [ 6.328125, 46.800059 ], [ 6.328125, 47.040182 ], [ 6.679688, 47.040182 ], [ 6.679688, 47.517201 ], [ 8.437500, 47.517201 ], [ 8.437500, 47.754098 ], [ 8.789062, 47.754098 ], [ 8.789062, 47.517201 ], [ 9.492188, 47.517201 ], [ 9.492188, 47.040182 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.789062, 47.754098 ], [ 9.492188, 47.517201 ], [ 9.492188, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 46.800059 ], [ 10.546875, 46.800059 ], [ 10.546875, 46.558860 ], [ 10.195312, 46.558860 ], [ 10.195312, 46.316584 ], [ 9.140625, 46.316584 ], [ 9.140625, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.828799 ], [ 6.679688, 45.828799 ], [ 6.679688, 46.073231 ], [ 6.328125, 46.073231 ], [ 6.328125, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.800059 ], [ 6.328125, 46.800059 ], [ 6.328125, 47.040182 ], [ 6.679688, 47.040182 ], [ 6.679688, 47.517201 ], [ 8.437500, 47.517201 ], [ 8.437500, 47.754098 ], [ 8.789062, 47.754098 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 50.064192 ], [ 18.281250, 50.064192 ], [ 18.281250, 49.837982 ], [ 18.632812, 49.837982 ], [ 18.632812, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.152970 ], [ 17.929688, 49.152970 ], [ 17.929688, 48.690960 ], [ 15.820312, 48.690960 ], [ 15.820312, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 48.690960 ], [ 14.414062, 48.690960 ], [ 14.414062, 48.458352 ], [ 14.062500, 48.458352 ], [ 14.062500, 48.690960 ], [ 13.710938, 48.690960 ], [ 13.710938, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 49.152970 ], [ 13.007812, 49.152970 ], [ 13.007812, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 49.837982 ], [ 12.304688, 49.837982 ], [ 12.304688, 50.289339 ], [ 13.007812, 50.289339 ], [ 13.007812, 50.513427 ], [ 13.359375, 50.513427 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 50.958427 ], [ 15.468750, 50.958427 ], [ 15.468750, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.958427 ], [ 15.468750, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 50.064192 ], [ 18.281250, 50.064192 ], [ 18.281250, 49.837982 ], [ 18.632812, 49.837982 ], [ 18.632812, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.152970 ], [ 17.929688, 49.152970 ], [ 17.929688, 48.690960 ], [ 15.820312, 48.690960 ], [ 15.820312, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 48.690960 ], [ 14.414062, 48.690960 ], [ 14.414062, 48.458352 ], [ 14.062500, 48.458352 ], [ 14.062500, 48.690960 ], [ 13.710938, 48.690960 ], [ 13.710938, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 49.152970 ], [ 13.007812, 49.152970 ], [ 13.007812, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 49.837982 ], [ 12.304688, 49.837982 ], [ 12.304688, 50.289339 ], [ 13.007812, 50.289339 ], [ 13.007812, 50.513427 ], [ 13.359375, 50.513427 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 50.958427 ], [ 15.468750, 50.958427 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.796875, 49.152970 ], [ 21.796875, 49.382373 ], [ 20.390625, 49.382373 ], [ 20.390625, 49.152970 ], [ 19.687500, 49.152970 ], [ 19.687500, 49.382373 ], [ 18.632812, 49.382373 ], [ 18.632812, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.736455 ], [ 15.468750, 50.958427 ], [ 15.117188, 50.958427 ], [ 15.117188, 51.399206 ], [ 14.765625, 51.399206 ], [ 14.765625, 52.268157 ], [ 14.414062, 52.268157 ], [ 14.414062, 52.696361 ], [ 14.062500, 52.696361 ], [ 14.062500, 53.120405 ], [ 14.414062, 53.120405 ], [ 14.414062, 53.540307 ], [ 14.062500, 53.540307 ], [ 14.062500, 53.748711 ], [ 14.765625, 53.748711 ], [ 14.765625, 53.956086 ], [ 15.117188, 53.956086 ], [ 15.117188, 54.162434 ], [ 15.820312, 54.162434 ], [ 15.820312, 54.367759 ], [ 16.523438, 54.367759 ], [ 16.523438, 54.572062 ], [ 17.226562, 54.572062 ], [ 17.226562, 54.775346 ], [ 18.632812, 54.775346 ], [ 18.632812, 54.367759 ], [ 22.851562, 54.367759 ], [ 22.851562, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 53.956086 ], [ 23.554688, 53.956086 ], [ 23.554688, 53.330873 ], [ 23.906250, 53.330873 ], [ 23.906250, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 52.268157 ], [ 23.554688, 52.268157 ], [ 23.554688, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.289339 ], [ 23.554688, 50.289339 ], [ 23.554688, 50.064192 ], [ 23.203125, 50.064192 ], [ 23.203125, 49.837982 ], [ 22.851562, 49.837982 ], [ 22.851562, 49.382373 ], [ 22.500000, 49.382373 ], [ 22.500000, 49.152970 ], [ 21.796875, 49.152970 ] ] ], [ [ [ 22.851562, 49.152970 ], [ 22.851562, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 49.152970 ], [ 22.851562, 49.152970 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 49.152970 ], [ 21.796875, 49.152970 ], [ 21.796875, 49.382373 ], [ 20.390625, 49.382373 ], [ 20.390625, 49.152970 ], [ 19.687500, 49.152970 ], [ 19.687500, 49.382373 ], [ 18.632812, 49.382373 ], [ 18.632812, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.736455 ], [ 15.468750, 50.958427 ], [ 15.117188, 50.958427 ], [ 15.117188, 51.399206 ], [ 14.765625, 51.399206 ], [ 14.765625, 52.268157 ], [ 14.414062, 52.268157 ], [ 14.414062, 52.696361 ], [ 14.062500, 52.696361 ], [ 14.062500, 53.120405 ], [ 14.414062, 53.120405 ], [ 14.414062, 53.540307 ], [ 14.062500, 53.540307 ], [ 14.062500, 53.748711 ], [ 14.765625, 53.748711 ], [ 14.765625, 53.956086 ], [ 15.117188, 53.956086 ], [ 15.117188, 54.162434 ], [ 15.820312, 54.162434 ], [ 15.820312, 54.367759 ], [ 16.523438, 54.367759 ], [ 16.523438, 54.572062 ], [ 17.226562, 54.572062 ], [ 17.226562, 54.775346 ], [ 18.632812, 54.775346 ], [ 18.632812, 54.367759 ], [ 22.851562, 54.367759 ], [ 22.851562, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 53.956086 ], [ 23.554688, 53.956086 ], [ 23.554688, 53.330873 ], [ 23.906250, 53.330873 ], [ 23.906250, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 52.268157 ], [ 23.554688, 52.268157 ], [ 23.554688, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.289339 ], [ 23.554688, 50.289339 ], [ 23.554688, 50.064192 ], [ 23.203125, 50.064192 ], [ 23.203125, 49.837982 ], [ 22.851562, 49.837982 ], [ 22.851562, 49.382373 ], [ 22.500000, 49.382373 ], [ 22.500000, 49.152970 ] ] ], [ [ [ 22.500000, 49.152970 ], [ 22.851562, 49.152970 ], [ 22.851562, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 49.152970 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 47.754098 ], [ 16.171875, 47.754098 ], [ 16.171875, 47.517201 ], [ 16.523438, 47.517201 ], [ 16.523438, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.800059 ], [ 15.820312, 46.800059 ], [ 15.820312, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.316584 ], [ 14.062500, 46.316584 ], [ 14.062500, 46.558860 ], [ 12.656250, 46.558860 ], [ 12.656250, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 47.040182 ], [ 11.250000, 47.040182 ], [ 11.250000, 46.800059 ], [ 9.843750, 46.800059 ], [ 9.843750, 47.040182 ], [ 9.492188, 47.040182 ], [ 9.492188, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.279229 ], [ 10.546875, 47.279229 ], [ 10.546875, 47.517201 ], [ 12.304688, 47.517201 ], [ 12.304688, 47.754098 ], [ 12.656250, 47.754098 ], [ 12.656250, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 48.224673 ], [ 13.359375, 48.224673 ], [ 13.359375, 48.690960 ], [ 14.062500, 48.690960 ], [ 14.062500, 48.458352 ], [ 14.414062, 48.458352 ], [ 14.414062, 48.690960 ], [ 14.765625, 48.690960 ], [ 14.765625, 48.922499 ], [ 15.820312, 48.922499 ], [ 15.820312, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 47.754098 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 48.922499 ], [ 15.820312, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 47.754098 ], [ 16.171875, 47.754098 ], [ 16.171875, 47.517201 ], [ 16.523438, 47.517201 ], [ 16.523438, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.800059 ], [ 15.820312, 46.800059 ], [ 15.820312, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.316584 ], [ 14.062500, 46.316584 ], [ 14.062500, 46.558860 ], [ 12.656250, 46.558860 ], [ 12.656250, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 47.040182 ], [ 11.250000, 47.040182 ], [ 11.250000, 46.800059 ], [ 9.843750, 46.800059 ], [ 9.843750, 47.040182 ], [ 9.492188, 47.040182 ], [ 9.492188, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.279229 ], [ 10.546875, 47.279229 ], [ 10.546875, 47.517201 ], [ 12.304688, 47.517201 ], [ 12.304688, 47.754098 ], [ 12.656250, 47.754098 ], [ 12.656250, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 48.224673 ], [ 13.359375, 48.224673 ], [ 13.359375, 48.690960 ], [ 14.062500, 48.690960 ], [ 14.062500, 48.458352 ], [ 14.414062, 48.458352 ], [ 14.414062, 48.690960 ], [ 14.765625, 48.690960 ], [ 14.765625, 48.922499 ], [ 15.820312, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.316584 ], [ 15.820312, 46.316584 ], [ 15.820312, 45.828799 ], [ 15.468750, 45.828799 ], [ 15.468750, 45.336702 ], [ 14.765625, 45.336702 ], [ 14.765625, 45.583290 ], [ 14.062500, 45.583290 ], [ 14.062500, 45.828799 ], [ 13.710938, 45.828799 ], [ 13.710938, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.316584 ], [ 15.117188, 46.316584 ], [ 15.117188, 46.558860 ], [ 15.820312, 46.558860 ], [ 15.820312, 46.800059 ], [ 16.523438, 46.800059 ], [ 16.523438, 46.316584 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.800059 ], [ 16.523438, 46.316584 ], [ 15.820312, 46.316584 ], [ 15.820312, 45.828799 ], [ 15.468750, 45.828799 ], [ 15.468750, 45.336702 ], [ 14.765625, 45.336702 ], [ 14.765625, 45.583290 ], [ 14.062500, 45.583290 ], [ 14.062500, 45.828799 ], [ 13.710938, 45.828799 ], [ 13.710938, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.316584 ], [ 15.117188, 46.316584 ], [ 15.117188, 46.558860 ], [ 15.820312, 46.558860 ], [ 15.820312, 46.800059 ], [ 16.523438, 46.800059 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 37.718590 ], [ 15.117188, 37.718590 ], [ 15.117188, 37.160317 ], [ 15.468750, 37.160317 ], [ 15.468750, 36.879621 ], [ 15.117188, 36.879621 ], [ 15.117188, 36.597889 ], [ 14.414062, 36.597889 ], [ 14.414062, 36.879621 ], [ 13.710938, 36.879621 ], [ 13.710938, 37.160317 ], [ 13.007812, 37.160317 ], [ 13.007812, 37.439974 ], [ 12.304688, 37.439974 ], [ 12.304688, 37.718590 ], [ 12.656250, 37.718590 ], [ 12.656250, 37.996163 ], [ 14.414062, 37.996163 ], [ 14.414062, 38.272689 ], [ 15.468750, 38.272689 ], [ 15.468750, 37.718590 ] ] ], [ [ [ 12.656250, 46.558860 ], [ 13.710938, 46.558860 ], [ 13.710938, 45.828799 ], [ 14.062500, 45.828799 ], [ 14.062500, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 45.828799 ], [ 13.007812, 45.828799 ], [ 13.007812, 45.583290 ], [ 12.656250, 45.583290 ], [ 12.656250, 45.336702 ], [ 12.304688, 45.336702 ], [ 12.304688, 44.339565 ], [ 12.656250, 44.339565 ], [ 12.656250, 43.834527 ], [ 13.007812, 43.834527 ], [ 13.007812, 43.580391 ], [ 13.359375, 43.580391 ], [ 13.359375, 43.325178 ], [ 13.710938, 43.325178 ], [ 13.710938, 42.811522 ], [ 14.062500, 42.811522 ], [ 14.062500, 42.553080 ], [ 14.414062, 42.553080 ], [ 14.414062, 42.293564 ], [ 14.765625, 42.293564 ], [ 14.765625, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.771312 ], [ 16.171875, 41.771312 ], [ 16.171875, 41.244772 ], [ 16.875000, 41.244772 ], [ 16.875000, 40.979898 ], [ 17.578125, 40.979898 ], [ 17.578125, 40.713956 ], [ 17.929688, 40.713956 ], [ 17.929688, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.178873 ], [ 18.632812, 40.178873 ], [ 18.632812, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.178873 ], [ 16.523438, 40.178873 ], [ 16.523438, 39.639538 ], [ 16.875000, 39.639538 ], [ 16.875000, 39.368279 ], [ 17.226562, 39.368279 ], [ 17.226562, 38.822591 ], [ 16.523438, 38.822591 ], [ 16.523438, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 37.996163 ], [ 15.820312, 37.996163 ], [ 15.820312, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 39.368279 ], [ 15.820312, 39.368279 ], [ 15.820312, 39.909736 ], [ 15.468750, 39.909736 ], [ 15.468750, 40.178873 ], [ 15.117188, 40.178873 ], [ 15.117188, 40.446947 ], [ 14.765625, 40.446947 ], [ 14.765625, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.979898 ], [ 13.710938, 40.979898 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 41.771312 ], [ 11.601562, 41.771312 ], [ 11.601562, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.293564 ], [ 10.898438, 42.293564 ], [ 10.898438, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 43.325178 ], [ 10.195312, 43.325178 ], [ 10.195312, 43.834527 ], [ 9.843750, 43.834527 ], [ 9.843750, 44.087585 ], [ 9.140625, 44.087585 ], [ 9.140625, 44.339565 ], [ 8.437500, 44.339565 ], [ 8.437500, 44.087585 ], [ 8.085938, 44.087585 ], [ 8.085938, 43.834527 ], [ 7.734375, 43.834527 ], [ 7.734375, 43.580391 ], [ 7.382812, 43.580391 ], [ 7.382812, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 44.590467 ], [ 6.679688, 44.590467 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.089036 ], [ 7.031250, 45.583290 ], [ 6.679688, 45.583290 ], [ 6.679688, 45.828799 ], [ 8.437500, 45.828799 ], [ 8.437500, 46.073231 ], [ 9.140625, 46.073231 ], [ 9.140625, 46.316584 ], [ 10.195312, 46.316584 ], [ 10.195312, 46.558860 ], [ 10.546875, 46.558860 ], [ 10.546875, 46.800059 ], [ 11.250000, 46.800059 ], [ 11.250000, 47.040182 ], [ 12.304688, 47.040182 ], [ 12.304688, 46.800059 ], [ 12.656250, 46.800059 ], [ 12.656250, 46.558860 ] ] ], [ [ [ 9.492188, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.095963 ], [ 8.789062, 39.095963 ], [ 8.789062, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 9.492188, 40.979898 ], [ 9.492188, 40.446947 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.718590 ], [ 15.117188, 37.718590 ], [ 15.117188, 37.160317 ], [ 15.468750, 37.160317 ], [ 15.468750, 36.879621 ], [ 15.117188, 36.879621 ], [ 15.117188, 36.597889 ], [ 14.414062, 36.597889 ], [ 14.414062, 36.879621 ], [ 13.710938, 36.879621 ], [ 13.710938, 37.160317 ], [ 13.007812, 37.160317 ], [ 13.007812, 37.439974 ], [ 12.304688, 37.439974 ], [ 12.304688, 37.718590 ], [ 12.656250, 37.718590 ], [ 12.656250, 37.996163 ], [ 14.414062, 37.996163 ], [ 14.414062, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 12.304688, 47.040182 ], [ 12.304688, 46.800059 ], [ 12.656250, 46.800059 ], [ 12.656250, 46.558860 ], [ 13.710938, 46.558860 ], [ 13.710938, 45.828799 ], [ 14.062500, 45.828799 ], [ 14.062500, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 45.828799 ], [ 13.007812, 45.828799 ], [ 13.007812, 45.583290 ], [ 12.656250, 45.583290 ], [ 12.656250, 45.336702 ], [ 12.304688, 45.336702 ], [ 12.304688, 44.339565 ], [ 12.656250, 44.339565 ], [ 12.656250, 43.834527 ], [ 13.007812, 43.834527 ], [ 13.007812, 43.580391 ], [ 13.359375, 43.580391 ], [ 13.359375, 43.325178 ], [ 13.710938, 43.325178 ], [ 13.710938, 42.811522 ], [ 14.062500, 42.811522 ], [ 14.062500, 42.553080 ], [ 14.414062, 42.553080 ], [ 14.414062, 42.293564 ], [ 14.765625, 42.293564 ], [ 14.765625, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.771312 ], [ 16.171875, 41.771312 ], [ 16.171875, 41.244772 ], [ 16.875000, 41.244772 ], [ 16.875000, 40.979898 ], [ 17.578125, 40.979898 ], [ 17.578125, 40.713956 ], [ 17.929688, 40.713956 ], [ 17.929688, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.178873 ], [ 18.632812, 40.178873 ], [ 18.632812, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.178873 ], [ 16.523438, 40.178873 ], [ 16.523438, 39.639538 ], [ 16.875000, 39.639538 ], [ 16.875000, 39.368279 ], [ 17.226562, 39.368279 ], [ 17.226562, 38.822591 ], [ 16.523438, 38.822591 ], [ 16.523438, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 37.996163 ], [ 15.820312, 37.996163 ], [ 15.820312, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 39.368279 ], [ 15.820312, 39.368279 ], [ 15.820312, 39.909736 ], [ 15.468750, 39.909736 ], [ 15.468750, 40.178873 ], [ 15.117188, 40.178873 ], [ 15.117188, 40.446947 ], [ 14.765625, 40.446947 ], [ 14.765625, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.979898 ], [ 13.710938, 40.979898 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 41.771312 ], [ 11.601562, 41.771312 ], [ 11.601562, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.293564 ], [ 10.898438, 42.293564 ], [ 10.898438, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 43.325178 ], [ 10.195312, 43.325178 ], [ 10.195312, 43.834527 ], [ 9.843750, 43.834527 ], [ 9.843750, 44.087585 ], [ 9.140625, 44.087585 ], [ 9.140625, 44.339565 ], [ 8.437500, 44.339565 ], [ 8.437500, 44.087585 ], [ 8.085938, 44.087585 ], [ 8.085938, 43.834527 ], [ 7.734375, 43.834527 ], [ 7.734375, 43.580391 ], [ 7.382812, 43.580391 ], [ 7.382812, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 44.590467 ], [ 6.679688, 44.590467 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.089036 ], [ 7.031250, 45.583290 ], [ 6.679688, 45.583290 ], [ 6.679688, 45.828799 ], [ 8.437500, 45.828799 ], [ 8.437500, 46.073231 ], [ 9.140625, 46.073231 ], [ 9.140625, 46.316584 ], [ 10.195312, 46.316584 ], [ 10.195312, 46.558860 ], [ 10.546875, 46.558860 ], [ 10.546875, 46.800059 ], [ 11.250000, 46.800059 ], [ 11.250000, 47.040182 ], [ 12.304688, 47.040182 ] ] ], [ [ [ 9.492188, 40.979898 ], [ 9.492188, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.095963 ], [ 8.789062, 39.095963 ], [ 8.789062, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 9.492188, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, 43.325178 ], [ 16.171875, 43.580391 ], [ 15.820312, 43.580391 ], [ 15.820312, 43.834527 ], [ 15.468750, 43.834527 ], [ 15.468750, 44.087585 ], [ 15.117188, 44.087585 ], [ 15.117188, 44.590467 ], [ 14.765625, 44.590467 ], [ 14.765625, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.840291 ], [ 13.710938, 44.840291 ], [ 13.710938, 45.583290 ], [ 14.765625, 45.583290 ], [ 14.765625, 45.336702 ], [ 15.468750, 45.336702 ], [ 15.468750, 45.828799 ], [ 15.820312, 45.828799 ], [ 15.820312, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.073231 ], [ 17.578125, 46.073231 ], [ 17.578125, 45.828799 ], [ 18.984375, 45.828799 ], [ 18.984375, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.089036 ], [ 18.984375, 45.089036 ], [ 18.984375, 44.840291 ], [ 18.632812, 44.840291 ], [ 18.632812, 45.089036 ], [ 17.226562, 45.089036 ], [ 17.226562, 45.336702 ], [ 16.875000, 45.336702 ], [ 16.875000, 45.089036 ], [ 15.820312, 45.089036 ], [ 15.820312, 44.590467 ], [ 16.171875, 44.590467 ], [ 16.171875, 44.087585 ], [ 16.523438, 44.087585 ], [ 16.523438, 43.834527 ], [ 16.875000, 43.834527 ], [ 16.875000, 43.325178 ], [ 16.171875, 43.325178 ] ] ], [ [ [ 18.281250, 42.811522 ], [ 18.281250, 42.553080 ], [ 17.578125, 42.553080 ], [ 17.578125, 42.811522 ], [ 18.281250, 42.811522 ] ] ], [ [ [ 17.578125, 43.068888 ], [ 17.578125, 42.811522 ], [ 17.226562, 42.811522 ], [ 17.226562, 43.068888 ], [ 17.578125, 43.068888 ] ] ], [ [ [ 17.226562, 43.325178 ], [ 17.226562, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 43.325178 ], [ 17.226562, 43.325178 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 43.325178 ], [ 16.171875, 43.325178 ], [ 16.171875, 43.580391 ], [ 15.820312, 43.580391 ], [ 15.820312, 43.834527 ], [ 15.468750, 43.834527 ], [ 15.468750, 44.087585 ], [ 15.117188, 44.087585 ], [ 15.117188, 44.590467 ], [ 14.765625, 44.590467 ], [ 14.765625, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.840291 ], [ 13.710938, 44.840291 ], [ 13.710938, 45.583290 ], [ 14.765625, 45.583290 ], [ 14.765625, 45.336702 ], [ 15.468750, 45.336702 ], [ 15.468750, 45.828799 ], [ 15.820312, 45.828799 ], [ 15.820312, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.073231 ], [ 17.578125, 46.073231 ], [ 17.578125, 45.828799 ], [ 18.984375, 45.828799 ], [ 18.984375, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.089036 ], [ 18.984375, 45.089036 ], [ 18.984375, 44.840291 ], [ 18.632812, 44.840291 ], [ 18.632812, 45.089036 ], [ 17.226562, 45.089036 ], [ 17.226562, 45.336702 ], [ 16.875000, 45.336702 ], [ 16.875000, 45.089036 ], [ 15.820312, 45.089036 ], [ 15.820312, 44.590467 ], [ 16.171875, 44.590467 ], [ 16.171875, 44.087585 ], [ 16.523438, 44.087585 ], [ 16.523438, 43.834527 ], [ 16.875000, 43.834527 ], [ 16.875000, 43.325178 ] ] ], [ [ [ 17.578125, 42.811522 ], [ 18.281250, 42.811522 ], [ 18.281250, 42.553080 ], [ 17.578125, 42.553080 ], [ 17.578125, 42.811522 ] ] ], [ [ [ 17.226562, 43.068888 ], [ 17.578125, 43.068888 ], [ 17.578125, 42.811522 ], [ 17.226562, 42.811522 ], [ 17.226562, 43.068888 ] ] ], [ [ [ 16.875000, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 43.325178 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 47.989922 ], [ 22.851562, 47.989922 ], [ 22.851562, 47.754098 ], [ 22.148438, 47.754098 ], [ 22.148438, 47.279229 ], [ 21.796875, 47.279229 ], [ 21.796875, 46.800059 ], [ 21.445312, 46.800059 ], [ 21.445312, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 45.828799 ], [ 17.578125, 45.828799 ], [ 17.578125, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.316584 ], [ 16.523438, 46.316584 ], [ 16.523438, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 47.040182 ], [ 16.523438, 47.040182 ], [ 16.523438, 47.517201 ], [ 16.171875, 47.517201 ], [ 16.171875, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 47.989922 ], [ 17.226562, 47.989922 ], [ 17.226562, 47.754098 ], [ 18.632812, 47.754098 ], [ 18.632812, 47.989922 ], [ 19.335938, 47.989922 ], [ 19.335938, 48.224673 ], [ 20.390625, 48.224673 ], [ 20.390625, 48.458352 ], [ 21.445312, 48.458352 ], [ 21.445312, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.445312, 48.458352 ], [ 21.445312, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 47.989922 ], [ 22.851562, 47.989922 ], [ 22.851562, 47.754098 ], [ 22.148438, 47.754098 ], [ 22.148438, 47.279229 ], [ 21.796875, 47.279229 ], [ 21.796875, 46.800059 ], [ 21.445312, 46.800059 ], [ 21.445312, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 45.828799 ], [ 17.578125, 45.828799 ], [ 17.578125, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.316584 ], [ 16.523438, 46.316584 ], [ 16.523438, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 47.040182 ], [ 16.523438, 47.040182 ], [ 16.523438, 47.517201 ], [ 16.171875, 47.517201 ], [ 16.171875, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 47.989922 ], [ 17.226562, 47.989922 ], [ 17.226562, 47.754098 ], [ 18.632812, 47.754098 ], [ 18.632812, 47.989922 ], [ 19.335938, 47.989922 ], [ 19.335938, 48.224673 ], [ 20.390625, 48.224673 ], [ 20.390625, 48.458352 ], [ 21.445312, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.922499 ], [ 22.148438, 48.922499 ], [ 22.148438, 48.224673 ], [ 21.445312, 48.224673 ], [ 21.445312, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.224673 ], [ 19.335938, 48.224673 ], [ 19.335938, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 47.754098 ], [ 17.226562, 47.754098 ], [ 17.226562, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.690960 ], [ 17.929688, 48.690960 ], [ 17.929688, 49.152970 ], [ 18.281250, 49.152970 ], [ 18.281250, 49.382373 ], [ 19.687500, 49.382373 ], [ 19.687500, 49.152970 ], [ 20.390625, 49.152970 ], [ 20.390625, 49.382373 ], [ 21.796875, 49.382373 ], [ 21.796875, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 49.382373 ], [ 21.796875, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 48.922499 ], [ 22.148438, 48.922499 ], [ 22.148438, 48.224673 ], [ 21.445312, 48.224673 ], [ 21.445312, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.224673 ], [ 19.335938, 48.224673 ], [ 19.335938, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 47.754098 ], [ 17.226562, 47.754098 ], [ 17.226562, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.690960 ], [ 17.929688, 48.690960 ], [ 17.929688, 49.152970 ], [ 18.281250, 49.382373 ], [ 19.687500, 49.382373 ], [ 19.687500, 49.152970 ], [ 20.390625, 49.152970 ], [ 20.390625, 49.382373 ], [ 21.796875, 49.382373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.632812, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.834527 ], [ 19.335938, 43.834527 ], [ 19.335938, 43.325178 ], [ 18.632812, 43.325178 ], [ 18.632812, 42.553080 ], [ 18.281250, 42.553080 ], [ 18.281250, 42.811522 ], [ 17.578125, 42.811522 ], [ 17.578125, 43.068888 ], [ 17.226562, 43.068888 ], [ 17.226562, 43.325178 ], [ 16.875000, 43.325178 ], [ 16.875000, 43.834527 ], [ 16.523438, 43.834527 ], [ 16.523438, 44.087585 ], [ 16.171875, 44.087585 ], [ 16.171875, 44.590467 ], [ 15.820312, 44.590467 ], [ 15.820312, 45.089036 ], [ 16.875000, 45.089036 ], [ 16.875000, 45.336702 ], [ 17.226562, 45.336702 ], [ 17.226562, 45.089036 ], [ 18.632812, 45.089036 ], [ 18.632812, 44.840291 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.226562, 45.336702 ], [ 17.226562, 45.089036 ], [ 18.632812, 45.089036 ], [ 18.632812, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.834527 ], [ 19.335938, 43.834527 ], [ 19.335938, 43.325178 ], [ 18.632812, 43.325178 ], [ 18.632812, 42.553080 ], [ 18.281250, 42.553080 ], [ 18.281250, 42.811522 ], [ 17.578125, 42.811522 ], [ 17.578125, 43.068888 ], [ 17.226562, 43.068888 ], [ 17.226562, 43.325178 ], [ 16.875000, 43.325178 ], [ 16.875000, 43.834527 ], [ 16.523438, 43.834527 ], [ 16.523438, 44.087585 ], [ 16.171875, 44.087585 ], [ 16.171875, 44.590467 ], [ 15.820312, 44.590467 ], [ 15.820312, 45.089036 ], [ 16.875000, 45.089036 ], [ 16.875000, 45.336702 ], [ 17.226562, 45.336702 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 42.553080 ], [ 19.335938, 42.553080 ], [ 19.335938, 42.032974 ], [ 18.984375, 42.032974 ], [ 18.984375, 42.293564 ], [ 18.281250, 42.293564 ], [ 18.281250, 42.553080 ], [ 18.632812, 42.553080 ], [ 18.632812, 43.325178 ], [ 19.687500, 43.325178 ], [ 19.687500, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.325178 ], [ 19.687500, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 42.553080 ], [ 19.335938, 42.553080 ], [ 19.335938, 42.032974 ], [ 18.984375, 42.032974 ], [ 18.984375, 42.293564 ], [ 18.281250, 42.293564 ], [ 18.281250, 42.553080 ], [ 18.632812, 42.553080 ], [ 18.632812, 43.325178 ], [ 19.687500, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 45.089036 ], [ 21.445312, 45.089036 ], [ 21.445312, 44.590467 ], [ 22.851562, 44.590467 ], [ 22.851562, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 43.325178 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.068888 ], [ 22.500000, 43.068888 ], [ 22.500000, 42.293564 ], [ 21.796875, 42.293564 ], [ 21.796875, 42.553080 ], [ 21.445312, 42.553080 ], [ 21.445312, 42.811522 ], [ 21.093750, 42.811522 ], [ 21.093750, 43.068888 ], [ 20.390625, 43.068888 ], [ 20.390625, 42.811522 ], [ 20.039062, 42.811522 ], [ 20.039062, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 43.834527 ], [ 19.687500, 43.834527 ], [ 19.687500, 44.087585 ], [ 18.984375, 44.087585 ], [ 18.984375, 44.590467 ], [ 19.335938, 44.590467 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 18.984375, 45.089036 ], [ 19.335938, 45.089036 ], [ 19.335938, 45.336702 ], [ 18.984375, 45.336702 ], [ 18.984375, 45.828799 ], [ 19.687500, 45.828799 ], [ 19.687500, 46.073231 ], [ 20.390625, 46.073231 ], [ 20.390625, 45.828799 ], [ 20.742188, 45.828799 ], [ 20.742188, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 46.073231 ], [ 20.390625, 45.828799 ], [ 20.742188, 45.828799 ], [ 20.742188, 45.089036 ], [ 21.445312, 45.089036 ], [ 21.445312, 44.590467 ], [ 22.851562, 44.590467 ], [ 22.851562, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 43.325178 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.068888 ], [ 22.500000, 43.068888 ], [ 22.500000, 42.293564 ], [ 21.796875, 42.293564 ], [ 21.796875, 42.553080 ], [ 21.445312, 42.553080 ], [ 21.445312, 42.811522 ], [ 21.093750, 42.811522 ], [ 21.093750, 43.068888 ], [ 20.390625, 43.068888 ], [ 20.390625, 42.811522 ], [ 20.039062, 42.811522 ], [ 20.039062, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 43.834527 ], [ 19.687500, 43.834527 ], [ 19.687500, 44.087585 ], [ 18.984375, 44.087585 ], [ 18.984375, 44.590467 ], [ 19.335938, 44.590467 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 18.984375, 45.089036 ], [ 19.335938, 45.089036 ], [ 19.335938, 45.336702 ], [ 18.984375, 45.336702 ], [ 18.984375, 45.828799 ], [ 19.687500, 45.828799 ], [ 19.687500, 46.073231 ], [ 20.390625, 46.073231 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 42.293564 ], [ 21.445312, 42.293564 ], [ 21.445312, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 42.293564 ], [ 20.039062, 42.293564 ], [ 20.039062, 42.553080 ], [ 20.390625, 42.553080 ], [ 20.390625, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.293564 ], [ 21.445312, 42.293564 ], [ 20.742188, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 42.293564 ], [ 20.039062, 42.293564 ], [ 20.039062, 42.553080 ], [ 20.390625, 42.553080 ], [ 20.390625, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.293564 ], [ 20.390625, 42.293564 ], [ 20.390625, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.508577 ], [ 20.390625, 41.508577 ], [ 20.390625, 41.244772 ], [ 20.742188, 41.244772 ], [ 20.742188, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 39.639538 ], [ 20.039062, 39.639538 ], [ 20.039062, 39.909736 ], [ 19.335938, 39.909736 ], [ 19.335938, 41.508577 ], [ 19.687500, 41.508577 ], [ 19.687500, 41.771312 ], [ 19.335938, 41.771312 ], [ 19.335938, 42.553080 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.553080 ], [ 20.039062, 42.293564 ], [ 20.390625, 42.293564 ], [ 20.390625, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.508577 ], [ 20.390625, 41.508577 ], [ 20.390625, 41.244772 ], [ 20.742188, 41.244772 ], [ 20.742188, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 39.639538 ], [ 20.039062, 39.639538 ], [ 20.039062, 39.909736 ], [ 19.335938, 39.909736 ], [ 19.335938, 41.508577 ], [ 19.687500, 41.508577 ], [ 19.687500, 41.771312 ], [ 19.335938, 41.771312 ], [ 19.335938, 42.553080 ], [ 20.039062, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 41.244772 ], [ 22.148438, 41.244772 ], [ 22.148438, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 40.713956 ], [ 20.742188, 40.713956 ], [ 20.742188, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.508577 ], [ 20.742188, 41.508577 ], [ 20.742188, 42.032974 ], [ 21.445312, 42.032974 ], [ 21.445312, 42.293564 ], [ 22.500000, 42.293564 ], [ 22.500000, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.293564 ], [ 22.500000, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.244772 ], [ 22.148438, 41.244772 ], [ 22.148438, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 40.713956 ], [ 20.742188, 40.713956 ], [ 20.742188, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.508577 ], [ 20.742188, 41.508577 ], [ 20.742188, 42.032974 ], [ 21.445312, 42.032974 ], [ 21.445312, 42.293564 ], [ 22.500000, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.882812, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 64.168107 ], [ 30.585938, 64.168107 ], [ 30.585938, 64.014496 ], [ 30.234375, 64.014496 ], [ 30.234375, 63.704722 ], [ 29.882812, 63.704722 ], [ 29.882812, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.233627 ], [ 30.937500, 63.233627 ], [ 30.937500, 63.074866 ], [ 31.289062, 63.074866 ], [ 31.289062, 62.915233 ], [ 31.640625, 62.915233 ], [ 31.640625, 62.593341 ], [ 31.289062, 62.593341 ], [ 31.289062, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.103883 ], [ 30.585938, 62.103883 ], [ 30.585938, 61.773123 ], [ 30.234375, 61.773123 ], [ 30.234375, 61.606396 ], [ 29.882812, 61.606396 ], [ 29.882812, 61.438767 ], [ 29.531250, 61.438767 ], [ 29.531250, 61.270233 ], [ 29.179688, 61.270233 ], [ 29.179688, 60.930432 ], [ 28.828125, 60.930432 ], [ 28.828125, 60.759160 ], [ 28.476562, 60.759160 ], [ 28.476562, 60.586967 ], [ 27.421875, 60.586967 ], [ 27.421875, 60.413852 ], [ 26.015625, 60.413852 ], [ 26.015625, 60.239811 ], [ 25.312500, 60.239811 ], [ 25.312500, 60.064840 ], [ 23.906250, 60.064840 ], [ 23.906250, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 22.148438, 60.239811 ], [ 22.148438, 60.413852 ], [ 21.796875, 60.413852 ], [ 21.796875, 60.586967 ], [ 21.445312, 60.586967 ], [ 21.445312, 62.103883 ], [ 21.093750, 62.103883 ], [ 21.093750, 62.915233 ], [ 21.445312, 62.915233 ], [ 21.445312, 63.233627 ], [ 21.796875, 63.233627 ], [ 21.796875, 63.548552 ], [ 22.148438, 63.548552 ], [ 22.148438, 63.704722 ], [ 22.500000, 63.704722 ], [ 22.500000, 63.860036 ], [ 22.851562, 63.860036 ], [ 22.851562, 64.014496 ], [ 23.203125, 64.014496 ], [ 23.203125, 64.168107 ], [ 23.554688, 64.168107 ], [ 23.554688, 64.472794 ], [ 23.906250, 64.472794 ], [ 23.906250, 64.623877 ], [ 24.257812, 64.623877 ], [ 24.257812, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 64.923542 ], [ 25.312500, 64.923542 ], [ 25.312500, 65.512963 ], [ 24.960938, 65.512963 ], [ 24.960938, 65.658275 ], [ 24.257812, 65.658275 ], [ 24.257812, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 66.089364 ], [ 23.554688, 66.089364 ], [ 23.554688, 67.204032 ], [ 29.531250, 67.204032 ], [ 29.531250, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.652977 ], [ 29.531250, 66.652977 ], [ 29.531250, 66.372755 ], [ 29.882812, 66.372755 ], [ 29.882812, 65.946472 ], [ 30.234375, 65.946472 ], [ 30.234375, 65.512963 ], [ 29.882812, 65.512963 ], [ 29.882812, 65.072130 ], [ 29.531250, 65.072130 ], [ 29.531250, 64.774125 ], [ 29.882812, 64.774125 ], [ 29.882812, 64.472794 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 67.204032 ], [ 29.531250, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.652977 ], [ 29.531250, 66.652977 ], [ 29.531250, 66.372755 ], [ 29.882812, 66.372755 ], [ 29.882812, 65.946472 ], [ 30.234375, 65.946472 ], [ 30.234375, 65.512963 ], [ 29.882812, 65.512963 ], [ 29.882812, 65.072130 ], [ 29.531250, 65.072130 ], [ 29.531250, 64.774125 ], [ 29.882812, 64.774125 ], [ 29.882812, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 64.168107 ], [ 30.585938, 64.168107 ], [ 30.585938, 64.014496 ], [ 30.234375, 64.014496 ], [ 30.234375, 63.704722 ], [ 29.882812, 63.704722 ], [ 29.882812, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.233627 ], [ 30.937500, 63.233627 ], [ 30.937500, 63.074866 ], [ 31.289062, 63.074866 ], [ 31.289062, 62.915233 ], [ 31.640625, 62.915233 ], [ 31.640625, 62.593341 ], [ 31.289062, 62.593341 ], [ 31.289062, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.103883 ], [ 30.585938, 62.103883 ], [ 30.585938, 61.773123 ], [ 30.234375, 61.773123 ], [ 30.234375, 61.606396 ], [ 29.882812, 61.606396 ], [ 29.882812, 61.438767 ], [ 29.531250, 61.438767 ], [ 29.531250, 61.270233 ], [ 29.179688, 61.270233 ], [ 29.179688, 60.930432 ], [ 28.828125, 60.930432 ], [ 28.828125, 60.759160 ], [ 28.476562, 60.759160 ], [ 28.476562, 60.586967 ], [ 27.421875, 60.586967 ], [ 27.421875, 60.413852 ], [ 26.015625, 60.413852 ], [ 26.015625, 60.239811 ], [ 25.312500, 60.239811 ], [ 25.312500, 60.064840 ], [ 23.906250, 60.064840 ], [ 23.906250, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 22.148438, 60.239811 ], [ 22.148438, 60.413852 ], [ 21.796875, 60.413852 ], [ 21.796875, 60.586967 ], [ 21.445312, 60.586967 ], [ 21.445312, 62.103883 ], [ 21.093750, 62.103883 ], [ 21.093750, 62.915233 ], [ 21.445312, 62.915233 ], [ 21.445312, 63.233627 ], [ 21.796875, 63.233627 ], [ 21.796875, 63.548552 ], [ 22.148438, 63.548552 ], [ 22.148438, 63.704722 ], [ 22.500000, 63.704722 ], [ 22.500000, 63.860036 ], [ 22.851562, 63.860036 ], [ 22.851562, 64.014496 ], [ 23.203125, 64.014496 ], [ 23.203125, 64.168107 ], [ 23.554688, 64.168107 ], [ 23.554688, 64.472794 ], [ 23.906250, 64.472794 ], [ 23.906250, 64.623877 ], [ 24.257812, 64.623877 ], [ 24.257812, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 64.923542 ], [ 25.312500, 64.923542 ], [ 25.312500, 65.512963 ], [ 24.960938, 65.512963 ], [ 24.960938, 65.658275 ], [ 24.257812, 65.658275 ], [ 24.257812, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 66.089364 ], [ 23.554688, 66.089364 ], [ 23.554688, 67.204032 ], [ 29.531250, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 57.515823 ], [ 27.421875, 57.515823 ], [ 27.421875, 57.326521 ], [ 27.773438, 57.326521 ], [ 27.773438, 56.365250 ], [ 28.125000, 56.365250 ], [ 28.125000, 55.973798 ], [ 27.421875, 55.973798 ], [ 27.421875, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.578345 ], [ 26.015625, 55.578345 ], [ 26.015625, 55.973798 ], [ 25.664062, 55.973798 ], [ 25.664062, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.365250 ], [ 22.148438, 56.365250 ], [ 22.148438, 56.170023 ], [ 21.445312, 56.170023 ], [ 21.445312, 55.973798 ], [ 21.093750, 55.973798 ], [ 21.093750, 56.944974 ], [ 21.445312, 56.944974 ], [ 21.445312, 57.326521 ], [ 21.796875, 57.326521 ], [ 21.796875, 57.515823 ], [ 22.851562, 57.515823 ], [ 22.851562, 57.136239 ], [ 23.203125, 57.136239 ], [ 23.203125, 56.944974 ], [ 24.257812, 56.944974 ], [ 24.257812, 57.704147 ], [ 24.960938, 57.704147 ], [ 24.960938, 57.891497 ], [ 25.664062, 57.891497 ], [ 25.664062, 57.704147 ], [ 26.015625, 57.704147 ], [ 26.015625, 57.515823 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 57.891497 ], [ 25.664062, 57.704147 ], [ 26.015625, 57.704147 ], [ 26.015625, 57.515823 ], [ 27.421875, 57.515823 ], [ 27.421875, 57.326521 ], [ 27.773438, 57.326521 ], [ 27.773438, 56.365250 ], [ 28.125000, 56.365250 ], [ 28.125000, 55.973798 ], [ 27.421875, 55.973798 ], [ 27.421875, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.578345 ], [ 26.015625, 55.578345 ], [ 26.015625, 55.973798 ], [ 25.664062, 55.973798 ], [ 25.664062, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.365250 ], [ 22.148438, 56.365250 ], [ 22.148438, 56.170023 ], [ 21.445312, 56.170023 ], [ 21.093750, 55.973798 ], [ 21.093750, 56.944974 ], [ 21.445312, 56.944974 ], [ 21.445312, 57.326521 ], [ 21.796875, 57.326521 ], [ 21.796875, 57.515823 ], [ 22.851562, 57.515823 ], [ 22.851562, 57.136239 ], [ 23.203125, 57.136239 ], [ 23.203125, 56.944974 ], [ 24.257812, 56.944974 ], [ 24.257812, 57.704147 ], [ 24.960938, 57.704147 ], [ 24.960938, 57.891497 ], [ 25.664062, 57.891497 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.175928 ], [ 27.773438, 59.175928 ], [ 27.773438, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 58.263287 ], [ 27.773438, 58.263287 ], [ 27.773438, 57.515823 ], [ 26.015625, 57.515823 ], [ 26.015625, 57.704147 ], [ 25.664062, 57.704147 ], [ 25.664062, 57.891497 ], [ 24.960938, 57.891497 ], [ 24.960938, 57.704147 ], [ 24.257812, 57.704147 ], [ 24.257812, 58.263287 ], [ 23.906250, 58.263287 ], [ 23.906250, 58.447733 ], [ 23.554688, 58.447733 ], [ 23.554688, 58.813742 ], [ 23.203125, 58.813742 ], [ 23.203125, 59.175928 ], [ 23.906250, 59.175928 ], [ 23.906250, 59.355596 ], [ 24.609375, 59.355596 ], [ 24.609375, 59.534318 ], [ 28.125000, 59.534318 ], [ 28.125000, 59.175928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 59.175928 ], [ 27.773438, 59.175928 ], [ 27.773438, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 58.263287 ], [ 27.773438, 58.263287 ], [ 27.773438, 57.515823 ], [ 26.015625, 57.515823 ], [ 26.015625, 57.704147 ], [ 25.664062, 57.704147 ], [ 25.664062, 57.891497 ], [ 24.960938, 57.891497 ], [ 24.257812, 57.704147 ], [ 24.257812, 58.263287 ], [ 23.906250, 58.263287 ], [ 23.906250, 58.447733 ], [ 23.554688, 58.447733 ], [ 23.554688, 58.813742 ], [ 23.203125, 58.813742 ], [ 23.203125, 59.175928 ], [ 23.906250, 59.175928 ], [ 23.906250, 59.355596 ], [ 24.609375, 59.355596 ], [ 24.609375, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 55.973798 ], [ 26.015625, 55.973798 ], [ 26.015625, 55.578345 ], [ 26.367188, 55.578345 ], [ 26.367188, 55.379110 ], [ 26.718750, 55.379110 ], [ 26.718750, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.775346 ], [ 25.664062, 54.775346 ], [ 25.664062, 54.162434 ], [ 24.960938, 54.162434 ], [ 24.960938, 53.956086 ], [ 23.203125, 53.956086 ], [ 23.203125, 54.162434 ], [ 22.851562, 54.162434 ], [ 22.851562, 54.367759 ], [ 22.500000, 54.367759 ], [ 22.500000, 54.572062 ], [ 22.851562, 54.572062 ], [ 22.851562, 54.775346 ], [ 22.148438, 54.775346 ], [ 22.148438, 54.977614 ], [ 21.445312, 54.977614 ], [ 21.445312, 55.178868 ], [ 21.093750, 55.178868 ], [ 21.093750, 55.973798 ], [ 21.445312, 55.973798 ], [ 21.445312, 56.170023 ], [ 22.148438, 56.170023 ], [ 22.148438, 56.365250 ], [ 24.960938, 56.365250 ], [ 24.960938, 56.170023 ], [ 25.664062, 56.170023 ], [ 25.664062, 55.973798 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.365250 ], [ 24.960938, 56.170023 ], [ 25.664062, 56.170023 ], [ 25.664062, 55.973798 ], [ 26.015625, 55.973798 ], [ 26.015625, 55.578345 ], [ 26.367188, 55.578345 ], [ 26.367188, 55.379110 ], [ 26.718750, 55.379110 ], [ 26.718750, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.775346 ], [ 25.664062, 54.775346 ], [ 25.664062, 54.162434 ], [ 24.960938, 54.162434 ], [ 24.960938, 53.956086 ], [ 23.203125, 53.956086 ], [ 23.203125, 54.162434 ], [ 22.851562, 54.162434 ], [ 22.851562, 54.367759 ], [ 22.500000, 54.367759 ], [ 22.500000, 54.572062 ], [ 22.851562, 54.572062 ], [ 22.851562, 54.775346 ], [ 22.148438, 54.775346 ], [ 22.148438, 54.977614 ], [ 21.445312, 54.977614 ], [ 21.445312, 55.178868 ], [ 21.093750, 55.178868 ], [ 21.093750, 55.973798 ], [ 21.445312, 55.973798 ], [ 21.445312, 56.170023 ], [ 22.148438, 56.170023 ], [ 22.148438, 56.365250 ], [ 24.960938, 56.365250 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, 55.776573 ], [ 29.531250, 55.776573 ], [ 29.531250, 55.578345 ], [ 29.882812, 55.578345 ], [ 29.882812, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.578345 ], [ 30.937500, 55.578345 ], [ 30.937500, 54.977614 ], [ 30.585938, 54.977614 ], [ 30.585938, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 53.956086 ], [ 31.640625, 53.956086 ], [ 31.640625, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.640625, 52.908902 ], [ 31.640625, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.835778 ], [ 30.585938, 51.835778 ], [ 30.585938, 51.399206 ], [ 28.125000, 51.399206 ], [ 28.125000, 51.618017 ], [ 26.718750, 51.618017 ], [ 26.718750, 51.835778 ], [ 24.609375, 51.835778 ], [ 24.609375, 51.618017 ], [ 23.554688, 51.618017 ], [ 23.554688, 52.268157 ], [ 23.203125, 52.268157 ], [ 23.203125, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 53.330873 ], [ 23.554688, 53.330873 ], [ 23.554688, 53.956086 ], [ 24.960938, 53.956086 ], [ 24.960938, 54.162434 ], [ 25.664062, 54.162434 ], [ 25.664062, 54.775346 ], [ 26.015625, 54.775346 ], [ 26.015625, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.379110 ], [ 26.367188, 55.379110 ], [ 26.367188, 55.578345 ], [ 27.070312, 55.578345 ], [ 27.070312, 55.776573 ], [ 27.421875, 55.776573 ], [ 27.421875, 55.973798 ], [ 28.125000, 55.973798 ], [ 28.125000, 56.170023 ], [ 28.476562, 56.170023 ], [ 28.476562, 55.973798 ], [ 29.179688, 55.973798 ], [ 29.179688, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, 56.170023 ], [ 28.476562, 55.973798 ], [ 29.179688, 55.973798 ], [ 29.179688, 55.776573 ], [ 29.531250, 55.776573 ], [ 29.531250, 55.578345 ], [ 29.882812, 55.578345 ], [ 29.882812, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.578345 ], [ 30.937500, 55.578345 ], [ 30.937500, 54.977614 ], [ 30.585938, 54.977614 ], [ 30.585938, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 53.956086 ], [ 31.640625, 53.956086 ], [ 31.640625, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.640625, 52.908902 ], [ 31.640625, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.835778 ], [ 30.585938, 51.835778 ], [ 30.585938, 51.399206 ], [ 28.125000, 51.399206 ], [ 28.125000, 51.618017 ], [ 26.718750, 51.618017 ], [ 26.718750, 51.835778 ], [ 24.609375, 51.835778 ], [ 24.609375, 51.618017 ], [ 23.554688, 51.618017 ], [ 23.554688, 52.268157 ], [ 23.203125, 52.268157 ], [ 23.203125, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 53.330873 ], [ 23.554688, 53.330873 ], [ 23.554688, 53.956086 ], [ 24.960938, 53.956086 ], [ 24.960938, 54.162434 ], [ 25.664062, 54.162434 ], [ 25.664062, 54.775346 ], [ 26.015625, 54.775346 ], [ 26.015625, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.379110 ], [ 26.367188, 55.379110 ], [ 26.367188, 55.578345 ], [ 27.070312, 55.578345 ], [ 27.070312, 55.776573 ], [ 27.421875, 55.776573 ], [ 27.421875, 55.973798 ], [ 28.125000, 55.973798 ], [ 28.125000, 56.170023 ], [ 28.476562, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 46.800059 ], [ 28.125000, 46.800059 ], [ 28.125000, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.087585 ], [ 28.476562, 44.087585 ], [ 28.476562, 43.580391 ], [ 28.125000, 43.580391 ], [ 28.125000, 43.834527 ], [ 27.421875, 43.834527 ], [ 27.421875, 44.087585 ], [ 26.718750, 44.087585 ], [ 26.718750, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.580391 ], [ 24.609375, 43.580391 ], [ 24.609375, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.339565 ], [ 22.851562, 44.339565 ], [ 22.851562, 44.590467 ], [ 21.445312, 44.590467 ], [ 21.445312, 45.089036 ], [ 20.742188, 45.089036 ], [ 20.742188, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.316584 ], [ 21.445312, 46.316584 ], [ 21.445312, 46.800059 ], [ 21.796875, 46.800059 ], [ 21.796875, 47.279229 ], [ 22.148438, 47.279229 ], [ 22.148438, 47.754098 ], [ 22.851562, 47.754098 ], [ 22.851562, 47.989922 ], [ 24.257812, 47.989922 ], [ 24.257812, 47.754098 ], [ 25.312500, 47.754098 ], [ 25.312500, 47.989922 ], [ 26.367188, 47.989922 ], [ 26.367188, 48.224673 ], [ 27.070312, 48.224673 ], [ 27.070312, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 46.800059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 48.224673 ], [ 27.070312, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 46.800059 ], [ 28.125000, 46.800059 ], [ 28.125000, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.087585 ], [ 28.476562, 44.087585 ], [ 28.476562, 43.580391 ], [ 28.125000, 43.580391 ], [ 28.125000, 43.834527 ], [ 27.421875, 43.834527 ], [ 27.421875, 44.087585 ], [ 26.718750, 44.087585 ], [ 26.718750, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.580391 ], [ 24.609375, 43.580391 ], [ 24.609375, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.339565 ], [ 22.851562, 44.339565 ], [ 22.851562, 44.590467 ], [ 21.445312, 44.590467 ], [ 21.445312, 45.089036 ], [ 20.742188, 45.089036 ], [ 20.742188, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.316584 ], [ 21.445312, 46.316584 ], [ 21.445312, 46.800059 ], [ 21.796875, 46.800059 ], [ 21.796875, 47.279229 ], [ 22.148438, 47.279229 ], [ 22.148438, 47.754098 ], [ 22.851562, 47.989922 ], [ 24.257812, 47.989922 ], [ 24.257812, 47.754098 ], [ 25.312500, 47.754098 ], [ 25.312500, 47.989922 ], [ 26.367188, 47.989922 ], [ 26.367188, 48.224673 ], [ 27.070312, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 43.580391 ], [ 28.476562, 43.580391 ], [ 28.476562, 43.325178 ], [ 28.125000, 43.325178 ], [ 28.125000, 42.811522 ], [ 27.773438, 42.811522 ], [ 27.773438, 42.293564 ], [ 28.125000, 42.293564 ], [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 41.771312 ], [ 26.015625, 41.771312 ], [ 26.015625, 41.244772 ], [ 24.609375, 41.244772 ], [ 24.609375, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.244772 ], [ 22.851562, 41.244772 ], [ 22.851562, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 43.325178 ], [ 22.500000, 43.325178 ], [ 22.500000, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 24.609375, 43.834527 ], [ 24.609375, 43.580391 ], [ 26.015625, 43.580391 ], [ 26.015625, 43.834527 ], [ 26.718750, 43.834527 ], [ 26.718750, 44.087585 ], [ 27.421875, 44.087585 ], [ 27.421875, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 44.087585 ], [ 27.421875, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.580391 ], [ 28.476562, 43.580391 ], [ 28.476562, 43.325178 ], [ 28.125000, 43.325178 ], [ 28.125000, 42.811522 ], [ 27.773438, 42.811522 ], [ 27.773438, 42.293564 ], [ 28.125000, 42.293564 ], [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 41.771312 ], [ 26.015625, 41.771312 ], [ 26.015625, 41.244772 ], [ 24.609375, 41.244772 ], [ 24.609375, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.244772 ], [ 22.851562, 41.244772 ], [ 22.851562, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 43.325178 ], [ 22.500000, 43.325178 ], [ 22.500000, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 24.609375, 43.834527 ], [ 24.609375, 43.580391 ], [ 26.015625, 43.580391 ], [ 26.015625, 43.834527 ], [ 26.718750, 43.834527 ], [ 26.718750, 44.087585 ], [ 27.421875, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 48.224673 ], [ 28.828125, 48.224673 ], [ 28.828125, 47.989922 ], [ 29.179688, 47.989922 ], [ 29.179688, 47.279229 ], [ 29.531250, 47.279229 ], [ 29.531250, 46.800059 ], [ 29.882812, 46.800059 ], [ 29.882812, 46.316584 ], [ 29.179688, 46.316584 ], [ 29.179688, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 46.800059 ], [ 27.773438, 46.800059 ], [ 27.773438, 47.279229 ], [ 27.421875, 47.279229 ], [ 27.421875, 47.517201 ], [ 27.070312, 47.517201 ], [ 27.070312, 48.224673 ], [ 26.718750, 48.224673 ], [ 26.718750, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 48.458352 ], [ 27.421875, 48.224673 ], [ 28.828125, 48.224673 ], [ 28.828125, 47.989922 ], [ 29.179688, 47.989922 ], [ 29.179688, 47.279229 ], [ 29.531250, 47.279229 ], [ 29.531250, 46.800059 ], [ 29.882812, 46.800059 ], [ 29.882812, 46.316584 ], [ 29.179688, 46.316584 ], [ 29.179688, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 46.800059 ], [ 27.773438, 46.800059 ], [ 27.773438, 47.279229 ], [ 27.421875, 47.279229 ], [ 27.421875, 47.517201 ], [ 27.070312, 47.517201 ], [ 27.070312, 48.224673 ], [ 26.718750, 48.224673 ], [ 26.718750, 48.458352 ], [ 27.421875, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.210938, 45.089036 ], [ 35.859375, 45.089036 ], [ 35.859375, 44.840291 ], [ 35.156250, 44.840291 ], [ 35.156250, 44.590467 ], [ 34.453125, 44.590467 ], [ 34.453125, 44.339565 ], [ 33.398438, 44.339565 ], [ 33.398438, 45.089036 ], [ 32.695312, 45.089036 ], [ 32.695312, 45.583290 ], [ 33.398438, 45.583290 ], [ 33.398438, 46.073231 ], [ 32.343750, 46.073231 ], [ 32.343750, 46.316584 ], [ 31.640625, 46.316584 ], [ 31.640625, 46.800059 ], [ 31.289062, 46.800059 ], [ 31.289062, 46.558860 ], [ 30.585938, 46.558860 ], [ 30.585938, 46.316584 ], [ 30.234375, 46.316584 ], [ 30.234375, 45.828799 ], [ 29.882812, 45.828799 ], [ 29.882812, 45.336702 ], [ 28.125000, 45.336702 ], [ 28.125000, 45.583290 ], [ 28.828125, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.179688, 46.558860 ], [ 29.179688, 46.316584 ], [ 29.882812, 46.316584 ], [ 29.882812, 46.800059 ], [ 29.531250, 46.800059 ], [ 29.531250, 47.279229 ], [ 29.179688, 47.279229 ], [ 29.179688, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 48.224673 ], [ 27.421875, 48.224673 ], [ 27.421875, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 48.224673 ], [ 26.367188, 48.224673 ], [ 26.367188, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 47.754098 ], [ 24.257812, 47.754098 ], [ 24.257812, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 48.224673 ], [ 22.148438, 48.224673 ], [ 22.148438, 48.922499 ], [ 22.851562, 48.922499 ], [ 22.851562, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 49.382373 ], [ 22.851562, 49.382373 ], [ 22.851562, 49.837982 ], [ 23.203125, 49.837982 ], [ 23.203125, 50.064192 ], [ 23.554688, 50.064192 ], [ 23.554688, 50.289339 ], [ 23.906250, 50.289339 ], [ 23.906250, 51.179343 ], [ 23.554688, 51.179343 ], [ 23.554688, 51.618017 ], [ 24.609375, 51.618017 ], [ 24.609375, 51.835778 ], [ 26.718750, 51.835778 ], [ 26.718750, 51.618017 ], [ 28.125000, 51.618017 ], [ 28.125000, 51.399206 ], [ 30.585938, 51.399206 ], [ 30.585938, 51.835778 ], [ 30.937500, 51.835778 ], [ 30.937500, 52.052490 ], [ 32.343750, 52.052490 ], [ 32.343750, 52.268157 ], [ 33.750000, 52.268157 ], [ 33.750000, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.835778 ], [ 34.453125, 51.835778 ], [ 34.453125, 51.618017 ], [ 34.101562, 51.618017 ], [ 34.101562, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.958427 ], [ 35.507812, 50.958427 ], [ 35.507812, 50.513427 ], [ 35.859375, 50.513427 ], [ 35.859375, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 50.064192 ], [ 37.617188, 50.064192 ], [ 37.617188, 49.837982 ], [ 39.023438, 49.837982 ], [ 39.023438, 49.610710 ], [ 40.078125, 49.610710 ], [ 40.078125, 48.922499 ], [ 39.726562, 48.922499 ], [ 39.726562, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.517201 ], [ 38.320312, 47.517201 ], [ 38.320312, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.800059 ], [ 36.562500, 46.800059 ], [ 36.562500, 46.558860 ], [ 35.507812, 46.558860 ], [ 35.507812, 46.316584 ], [ 34.804688, 46.316584 ], [ 34.804688, 45.828799 ], [ 35.156250, 45.828799 ], [ 35.156250, 45.336702 ], [ 36.210938, 45.336702 ], [ 36.210938, 45.089036 ] ] ], [ [ [ 36.210938, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.336702 ], [ 36.210938, 45.336702 ], [ 36.210938, 45.583290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, 52.268157 ], [ 33.750000, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.835778 ], [ 34.453125, 51.835778 ], [ 34.453125, 51.618017 ], [ 34.101562, 51.618017 ], [ 34.101562, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.958427 ], [ 35.507812, 50.958427 ], [ 35.507812, 50.513427 ], [ 35.859375, 50.513427 ], [ 35.859375, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 50.064192 ], [ 37.617188, 50.064192 ], [ 37.617188, 49.837982 ], [ 39.023438, 49.837982 ], [ 39.023438, 49.610710 ], [ 40.078125, 49.610710 ], [ 40.078125, 48.922499 ], [ 39.726562, 48.922499 ], [ 39.726562, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.517201 ], [ 38.320312, 47.517201 ], [ 38.320312, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.800059 ], [ 36.562500, 46.800059 ], [ 36.562500, 46.558860 ], [ 35.507812, 46.558860 ], [ 35.507812, 46.316584 ], [ 34.804688, 46.316584 ], [ 34.804688, 45.828799 ], [ 35.156250, 45.828799 ], [ 35.156250, 45.336702 ], [ 36.210938, 45.336702 ], [ 36.210938, 45.089036 ], [ 35.859375, 45.089036 ], [ 35.859375, 44.840291 ], [ 35.156250, 44.840291 ], [ 35.156250, 44.590467 ], [ 34.453125, 44.590467 ], [ 34.453125, 44.339565 ], [ 33.398438, 44.339565 ], [ 33.398438, 45.089036 ], [ 32.695312, 45.089036 ], [ 32.695312, 45.583290 ], [ 33.398438, 45.583290 ], [ 33.398438, 46.073231 ], [ 32.343750, 46.073231 ], [ 32.343750, 46.316584 ], [ 31.640625, 46.316584 ], [ 31.640625, 46.800059 ], [ 31.289062, 46.800059 ], [ 31.289062, 46.558860 ], [ 30.585938, 46.558860 ], [ 30.585938, 46.316584 ], [ 30.234375, 46.316584 ], [ 30.234375, 45.828799 ], [ 29.882812, 45.828799 ], [ 29.882812, 45.336702 ], [ 28.125000, 45.336702 ], [ 28.125000, 45.583290 ], [ 28.828125, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.179688, 46.558860 ], [ 29.179688, 46.316584 ], [ 29.882812, 46.316584 ], [ 29.882812, 46.800059 ], [ 29.531250, 46.800059 ], [ 29.531250, 47.279229 ], [ 29.179688, 47.279229 ], [ 29.179688, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 48.224673 ], [ 27.421875, 48.224673 ], [ 27.421875, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 48.224673 ], [ 26.367188, 48.224673 ], [ 26.367188, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 47.754098 ], [ 24.257812, 47.754098 ], [ 24.257812, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 48.224673 ], [ 22.148438, 48.224673 ], [ 22.148438, 48.922499 ], [ 22.851562, 48.922499 ], [ 22.851562, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 49.382373 ], [ 22.851562, 49.382373 ], [ 22.851562, 49.837982 ], [ 23.203125, 49.837982 ], [ 23.203125, 50.064192 ], [ 23.554688, 50.064192 ], [ 23.554688, 50.289339 ], [ 23.906250, 50.289339 ], [ 23.906250, 51.179343 ], [ 23.554688, 51.179343 ], [ 23.554688, 51.618017 ], [ 24.609375, 51.618017 ], [ 24.609375, 51.835778 ], [ 26.718750, 51.835778 ], [ 26.718750, 51.618017 ], [ 28.125000, 51.618017 ], [ 28.125000, 51.399206 ], [ 30.585938, 51.399206 ], [ 30.585938, 51.835778 ], [ 30.937500, 52.052490 ], [ 32.343750, 52.052490 ], [ 32.343750, 52.268157 ], [ 33.750000, 52.268157 ] ] ], [ [ [ 36.562500, 45.336702 ], [ 36.210938, 45.336702 ], [ 36.210938, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.336702 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.054688, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.757812, 41.244772 ], [ 46.757812, 40.979898 ], [ 46.054688, 40.979898 ], [ 46.054688, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 40.979898 ], [ 43.242188, 40.979898 ], [ 43.242188, 41.244772 ], [ 42.539062, 41.244772 ], [ 42.539062, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.771312 ], [ 41.835938, 41.771312 ], [ 41.835938, 42.293564 ], [ 41.484375, 42.293564 ], [ 41.484375, 42.553080 ], [ 41.132812, 42.553080 ], [ 41.132812, 42.811522 ], [ 40.781250, 42.811522 ], [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.325178 ], [ 42.539062, 43.325178 ], [ 42.539062, 43.068888 ], [ 43.242188, 43.068888 ], [ 43.242188, 42.811522 ], [ 43.593750, 42.811522 ], [ 43.593750, 42.553080 ], [ 45.351562, 42.553080 ], [ 45.351562, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 41.771312 ], [ 46.054688, 41.771312 ], [ 46.054688, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.539062, 43.325178 ], [ 42.539062, 43.068888 ], [ 43.242188, 43.068888 ], [ 43.242188, 42.811522 ], [ 43.593750, 42.811522 ], [ 43.593750, 42.553080 ], [ 45.351562, 42.553080 ], [ 45.351562, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 41.771312 ], [ 46.054688, 41.771312 ], [ 46.054688, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.757812, 41.244772 ], [ 46.757812, 40.979898 ], [ 46.054688, 40.979898 ], [ 46.054688, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 40.979898 ], [ 43.242188, 40.979898 ], [ 43.242188, 41.244772 ], [ 42.539062, 41.244772 ], [ 42.539062, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.771312 ], [ 41.835938, 41.771312 ], [ 41.835938, 42.293564 ], [ 41.484375, 42.293564 ], [ 41.484375, 42.553080 ], [ 41.132812, 42.553080 ], [ 41.132812, 42.811522 ], [ 40.781250, 42.811522 ], [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.325178 ], [ 42.539062, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 36.597889 ], [ 10.546875, 36.597889 ], [ 10.546875, 36.879621 ], [ 11.250000, 36.879621 ], [ 11.250000, 36.597889 ], [ 10.898438, 36.597889 ], [ 10.898438, 36.315125 ], [ 10.546875, 36.315125 ], [ 10.546875, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 34.597042 ], [ 10.546875, 34.597042 ], [ 10.546875, 34.307144 ], [ 10.195312, 34.307144 ], [ 10.195312, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.431441 ], [ 11.250000, 33.431441 ], [ 11.250000, 33.137551 ], [ 11.601562, 33.137551 ], [ 11.601562, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.353637 ], [ 9.843750, 31.353637 ], [ 9.843750, 31.052934 ], [ 10.195312, 31.052934 ], [ 10.195312, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 30.448674 ], [ 9.492188, 30.448674 ], [ 9.492188, 31.353637 ], [ 9.140625, 31.353637 ], [ 9.140625, 32.249974 ], [ 8.437500, 32.249974 ], [ 8.437500, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 33.724340 ], [ 7.382812, 33.724340 ], [ 7.382812, 34.016242 ], [ 7.734375, 34.016242 ], [ 7.734375, 34.307144 ], [ 8.085938, 34.307144 ], [ 8.085938, 34.885931 ], [ 8.437500, 34.885931 ], [ 8.437500, 35.746512 ], [ 8.085938, 35.746512 ], [ 8.085938, 36.597889 ], [ 8.437500, 36.597889 ], [ 8.437500, 36.879621 ], [ 8.789062, 36.879621 ], [ 8.789062, 37.160317 ], [ 10.195312, 37.160317 ], [ 10.195312, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.160317 ], [ 10.195312, 36.597889 ], [ 10.546875, 36.597889 ], [ 10.546875, 36.879621 ], [ 11.250000, 36.879621 ], [ 11.250000, 36.597889 ], [ 10.898438, 36.597889 ], [ 10.898438, 36.315125 ], [ 10.546875, 36.315125 ], [ 10.546875, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 34.597042 ], [ 10.546875, 34.597042 ], [ 10.546875, 34.307144 ], [ 10.195312, 34.307144 ], [ 10.195312, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.431441 ], [ 11.250000, 33.431441 ], [ 11.250000, 33.137551 ], [ 11.601562, 33.137551 ], [ 11.601562, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.353637 ], [ 9.843750, 31.353637 ], [ 9.843750, 31.052934 ], [ 10.195312, 31.052934 ], [ 10.195312, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 30.448674 ], [ 9.492188, 30.448674 ], [ 9.492188, 31.353637 ], [ 9.140625, 31.353637 ], [ 9.140625, 32.249974 ], [ 8.437500, 32.249974 ], [ 8.437500, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 33.724340 ], [ 7.382812, 33.724340 ], [ 7.382812, 34.016242 ], [ 7.734375, 34.016242 ], [ 7.734375, 34.307144 ], [ 8.085938, 34.307144 ], [ 8.085938, 34.885931 ], [ 8.437500, 34.885931 ], [ 8.437500, 35.746512 ], [ 8.085938, 35.746512 ], [ 8.085938, 36.597889 ], [ 8.437500, 36.597889 ], [ 8.437500, 36.879621 ], [ 8.789062, 36.879621 ], [ 8.789062, 37.160317 ], [ 10.195312, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 36.597889 ], [ 8.085938, 36.597889 ], [ 8.085938, 35.746512 ], [ 8.437500, 35.746512 ], [ 8.437500, 34.885931 ], [ 8.085938, 34.885931 ], [ 8.085938, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.016242 ], [ 7.382812, 34.016242 ], [ 7.382812, 33.724340 ], [ 7.734375, 33.724340 ], [ 7.734375, 33.137551 ], [ 8.085938, 33.137551 ], [ 8.085938, 32.842674 ], [ 8.437500, 32.842674 ], [ 8.437500, 32.249974 ], [ 9.140625, 32.249974 ], [ 9.140625, 31.353637 ], [ 9.492188, 31.353637 ], [ 9.492188, 29.840644 ], [ 9.843750, 29.840644 ], [ 9.843750, 27.371767 ], [ 9.492188, 27.371767 ], [ 9.492188, 26.745610 ], [ 9.843750, 26.745610 ], [ 9.843750, 26.115986 ], [ 9.492188, 26.115986 ], [ 9.492188, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 24.527135 ], [ 10.898438, 24.527135 ], [ 10.898438, 24.206890 ], [ 11.601562, 24.206890 ], [ 11.601562, 23.885838 ], [ 11.953125, 23.885838 ], [ 11.953125, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 22.917923 ], [ 10.546875, 22.917923 ], [ 10.546875, 22.593726 ], [ 10.195312, 22.593726 ], [ 10.195312, 22.268764 ], [ 9.492188, 22.268764 ], [ 9.492188, 21.943046 ], [ 8.789062, 21.943046 ], [ 8.789062, 21.616579 ], [ 8.437500, 21.616579 ], [ 8.437500, 21.289374 ], [ 8.085938, 21.289374 ], [ 8.085938, 20.961440 ], [ 7.382812, 20.961440 ], [ 7.382812, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.303418 ], [ 6.679688, 20.303418 ], [ 6.679688, 19.973349 ], [ 5.976562, 19.973349 ], [ 5.976562, 19.642588 ], [ 5.273438, 19.642588 ], [ 5.273438, 19.311143 ], [ 3.867188, 19.311143 ], [ 3.867188, 18.979026 ], [ 3.164062, 18.979026 ], [ 3.164062, 19.642588 ], [ 2.812500, 19.642588 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.303418 ], [ 1.757812, 20.303418 ], [ 1.757812, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.289374 ], [ 0.351562, 21.289374 ], [ 0.351562, 21.616579 ], [ 0.000000, 21.616579 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 32.249974 ], [ -1.054688, 32.249974 ], [ -1.054688, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 35.460670 ], [ -1.054688, 35.460670 ], [ -1.054688, 35.746512 ], [ 0.000000, 35.746512 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 1.054688, 36.315125 ], [ 1.054688, 36.597889 ], [ 2.460938, 36.597889 ], [ 2.460938, 36.879621 ], [ 4.921875, 36.879621 ], [ 4.921875, 36.597889 ], [ 5.625000, 36.597889 ], [ 5.625000, 36.879621 ], [ 6.328125, 36.879621 ], [ 6.328125, 37.160317 ], [ 7.382812, 37.160317 ], [ 7.382812, 36.879621 ], [ 8.437500, 36.879621 ], [ 8.437500, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.382812, 37.160317 ], [ 7.382812, 36.879621 ], [ 8.437500, 36.879621 ], [ 8.437500, 36.597889 ], [ 8.085938, 36.597889 ], [ 8.085938, 35.746512 ], [ 8.437500, 35.746512 ], [ 8.437500, 34.885931 ], [ 8.085938, 34.885931 ], [ 8.085938, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.016242 ], [ 7.382812, 34.016242 ], [ 7.382812, 33.724340 ], [ 7.734375, 33.724340 ], [ 7.734375, 33.137551 ], [ 8.085938, 33.137551 ], [ 8.085938, 32.842674 ], [ 8.437500, 32.842674 ], [ 8.437500, 32.249974 ], [ 9.140625, 32.249974 ], [ 9.140625, 31.353637 ], [ 9.492188, 31.353637 ], [ 9.492188, 29.840644 ], [ 9.843750, 29.840644 ], [ 9.843750, 27.371767 ], [ 9.492188, 27.371767 ], [ 9.492188, 26.745610 ], [ 9.843750, 26.745610 ], [ 9.843750, 26.115986 ], [ 9.492188, 26.115986 ], [ 9.492188, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 24.527135 ], [ 10.898438, 24.527135 ], [ 10.898438, 24.206890 ], [ 11.601562, 24.206890 ], [ 11.601562, 23.885838 ], [ 11.953125, 23.885838 ], [ 11.953125, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 22.917923 ], [ 10.546875, 22.917923 ], [ 10.546875, 22.593726 ], [ 10.195312, 22.593726 ], [ 10.195312, 22.268764 ], [ 9.492188, 22.268764 ], [ 9.492188, 21.943046 ], [ 8.789062, 21.943046 ], [ 8.789062, 21.616579 ], [ 8.437500, 21.616579 ], [ 8.437500, 21.289374 ], [ 8.085938, 21.289374 ], [ 8.085938, 20.961440 ], [ 7.382812, 20.961440 ], [ 7.382812, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.303418 ], [ 6.679688, 20.303418 ], [ 6.679688, 19.973349 ], [ 5.976562, 19.973349 ], [ 5.976562, 19.642588 ], [ 5.273438, 19.642588 ], [ 5.273438, 19.311143 ], [ 3.867188, 19.311143 ], [ 3.867188, 18.979026 ], [ 3.164062, 18.979026 ], [ 3.164062, 19.642588 ], [ 2.812500, 19.642588 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.303418 ], [ 1.757812, 20.303418 ], [ 1.757812, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.289374 ], [ 0.351562, 21.289374 ], [ 0.351562, 21.616579 ], [ 0.000000, 21.616579 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 32.249974 ], [ -1.054688, 32.249974 ], [ -1.054688, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 35.460670 ], [ -1.054688, 35.460670 ], [ -1.054688, 35.746512 ], [ 0.000000, 35.746512 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 1.054688, 36.315125 ], [ 1.054688, 36.597889 ], [ 2.460938, 36.597889 ], [ 2.460938, 36.879621 ], [ 4.921875, 36.879621 ], [ 4.921875, 36.597889 ], [ 5.625000, 36.597889 ], [ 5.625000, 36.879621 ], [ 6.328125, 36.879621 ], [ 6.328125, 37.160317 ], [ 7.382812, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 31.353637 ], [ 15.820312, 31.353637 ], [ 15.820312, 31.052934 ], [ 16.875000, 31.052934 ], [ 16.875000, 30.751278 ], [ 17.929688, 30.751278 ], [ 17.929688, 30.448674 ], [ 18.632812, 30.448674 ], [ 18.632812, 30.145127 ], [ 19.687500, 30.145127 ], [ 19.687500, 30.751278 ], [ 20.039062, 30.751278 ], [ 20.039062, 31.353637 ], [ 19.687500, 31.353637 ], [ 19.687500, 31.952162 ], [ 20.039062, 31.952162 ], [ 20.039062, 32.249974 ], [ 20.390625, 32.249974 ], [ 20.390625, 32.546813 ], [ 20.742188, 32.546813 ], [ 20.742188, 32.842674 ], [ 21.796875, 32.842674 ], [ 21.796875, 32.546813 ], [ 22.851562, 32.546813 ], [ 22.851562, 32.249974 ], [ 23.554688, 32.249974 ], [ 23.554688, 31.952162 ], [ 24.960938, 31.952162 ], [ 24.960938, 31.653381 ], [ 25.312500, 31.653381 ], [ 25.312500, 31.353637 ], [ 24.960938, 31.353637 ], [ 24.960938, 30.448674 ], [ 24.609375, 30.448674 ], [ 24.609375, 29.535230 ], [ 24.960938, 29.535230 ], [ 24.960938, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.642588 ], [ 23.203125, 19.642588 ], [ 23.203125, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 20.303418 ], [ 21.796875, 20.303418 ], [ 21.796875, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 20.961440 ], [ 20.390625, 20.961440 ], [ 20.390625, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 21.616579 ], [ 19.335938, 21.616579 ], [ 19.335938, 21.943046 ], [ 18.632812, 21.943046 ], [ 18.632812, 22.268764 ], [ 17.929688, 22.268764 ], [ 17.929688, 22.593726 ], [ 17.226562, 22.593726 ], [ 17.226562, 22.917923 ], [ 16.523438, 22.917923 ], [ 16.523438, 23.241346 ], [ 15.117188, 23.241346 ], [ 15.117188, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.593726 ], [ 13.710938, 22.593726 ], [ 13.710938, 22.917923 ], [ 13.007812, 22.917923 ], [ 13.007812, 23.241346 ], [ 12.304688, 23.241346 ], [ 12.304688, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 24.206890 ], [ 10.898438, 24.206890 ], [ 10.898438, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.799891 ], [ 9.492188, 25.799891 ], [ 9.492188, 26.115986 ], [ 9.843750, 26.115986 ], [ 9.843750, 26.745610 ], [ 9.492188, 26.745610 ], [ 9.492188, 27.371767 ], [ 9.843750, 27.371767 ], [ 9.843750, 29.840644 ], [ 9.492188, 29.840644 ], [ 9.492188, 30.448674 ], [ 9.843750, 30.448674 ], [ 9.843750, 30.751278 ], [ 10.195312, 30.751278 ], [ 10.195312, 31.052934 ], [ 9.843750, 31.052934 ], [ 9.843750, 31.353637 ], [ 10.546875, 31.353637 ], [ 10.546875, 31.653381 ], [ 10.898438, 31.653381 ], [ 10.898438, 31.952162 ], [ 11.601562, 31.952162 ], [ 11.601562, 33.137551 ], [ 11.953125, 33.137551 ], [ 11.953125, 32.842674 ], [ 14.062500, 32.842674 ], [ 14.062500, 32.546813 ], [ 14.765625, 32.546813 ], [ 14.765625, 32.249974 ], [ 15.117188, 32.249974 ], [ 15.117188, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.353637 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.953125, 33.137551 ], [ 11.953125, 32.842674 ], [ 14.062500, 32.842674 ], [ 14.062500, 32.546813 ], [ 14.765625, 32.546813 ], [ 14.765625, 32.249974 ], [ 15.117188, 32.249974 ], [ 15.117188, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.353637 ], [ 15.820312, 31.353637 ], [ 15.820312, 31.052934 ], [ 16.875000, 31.052934 ], [ 16.875000, 30.751278 ], [ 17.929688, 30.751278 ], [ 17.929688, 30.448674 ], [ 18.632812, 30.448674 ], [ 18.632812, 30.145127 ], [ 19.687500, 30.145127 ], [ 19.687500, 30.751278 ], [ 20.039062, 30.751278 ], [ 20.039062, 31.353637 ], [ 19.687500, 31.353637 ], [ 19.687500, 31.952162 ], [ 20.039062, 31.952162 ], [ 20.039062, 32.249974 ], [ 20.390625, 32.249974 ], [ 20.390625, 32.546813 ], [ 20.742188, 32.546813 ], [ 20.742188, 32.842674 ], [ 21.796875, 32.842674 ], [ 21.796875, 32.546813 ], [ 22.851562, 32.546813 ], [ 22.851562, 32.249974 ], [ 23.554688, 32.249974 ], [ 23.554688, 31.952162 ], [ 24.960938, 31.952162 ], [ 24.960938, 31.653381 ], [ 25.312500, 31.653381 ], [ 25.312500, 31.353637 ], [ 24.960938, 31.353637 ], [ 24.960938, 30.448674 ], [ 24.609375, 30.448674 ], [ 24.609375, 29.535230 ], [ 24.960938, 29.535230 ], [ 24.960938, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.642588 ], [ 23.203125, 19.642588 ], [ 23.203125, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 20.303418 ], [ 21.796875, 20.303418 ], [ 21.796875, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 20.961440 ], [ 20.390625, 20.961440 ], [ 20.390625, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 21.616579 ], [ 19.335938, 21.616579 ], [ 19.335938, 21.943046 ], [ 18.632812, 21.943046 ], [ 18.632812, 22.268764 ], [ 17.929688, 22.268764 ], [ 17.929688, 22.593726 ], [ 17.226562, 22.593726 ], [ 17.226562, 22.917923 ], [ 16.523438, 22.917923 ], [ 16.523438, 23.241346 ], [ 15.117188, 23.241346 ], [ 15.117188, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.593726 ], [ 13.710938, 22.593726 ], [ 13.710938, 22.917923 ], [ 13.007812, 22.917923 ], [ 13.007812, 23.241346 ], [ 12.304688, 23.241346 ], [ 12.304688, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 24.206890 ], [ 10.898438, 24.206890 ], [ 10.898438, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.799891 ], [ 9.492188, 25.799891 ], [ 9.492188, 26.115986 ], [ 9.843750, 26.115986 ], [ 9.843750, 26.745610 ], [ 9.492188, 26.745610 ], [ 9.492188, 27.371767 ], [ 9.843750, 27.371767 ], [ 9.843750, 29.840644 ], [ 9.492188, 29.840644 ], [ 9.492188, 30.448674 ], [ 9.843750, 30.448674 ], [ 9.843750, 30.751278 ], [ 10.195312, 30.751278 ], [ 10.195312, 31.052934 ], [ 9.843750, 31.052934 ], [ 9.843750, 31.353637 ], [ 10.546875, 31.353637 ], [ 10.546875, 31.653381 ], [ 10.898438, 31.653381 ], [ 10.898438, 31.952162 ], [ 11.601562, 31.952162 ], [ 11.601562, 33.137551 ], [ 11.953125, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.943046 ], [ 15.117188, 21.943046 ], [ 15.117188, 20.961440 ], [ 15.468750, 20.961440 ], [ 15.468750, 20.303418 ], [ 15.820312, 20.303418 ], [ 15.820312, 18.979026 ], [ 15.468750, 18.979026 ], [ 15.468750, 17.308688 ], [ 15.117188, 17.308688 ], [ 15.117188, 16.299051 ], [ 14.765625, 16.299051 ], [ 14.765625, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 15.623037 ], [ 14.062500, 15.623037 ], [ 14.062500, 14.944785 ], [ 13.710938, 14.944785 ], [ 13.710938, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 13.239945 ], [ 14.765625, 13.239945 ], [ 14.765625, 12.897489 ], [ 14.062500, 12.897489 ], [ 14.062500, 12.554564 ], [ 13.710938, 12.554564 ], [ 13.710938, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 13.581921 ], [ 13.007812, 13.581921 ], [ 13.007812, 13.239945 ], [ 12.656250, 13.239945 ], [ 12.656250, 12.897489 ], [ 11.601562, 12.897489 ], [ 11.601562, 13.239945 ], [ 10.195312, 13.239945 ], [ 10.195312, 12.897489 ], [ 8.085938, 12.897489 ], [ 8.085938, 13.239945 ], [ 6.328125, 13.239945 ], [ 6.328125, 13.581921 ], [ 5.625000, 13.581921 ], [ 5.625000, 13.923404 ], [ 4.921875, 13.923404 ], [ 4.921875, 13.581921 ], [ 4.218750, 13.581921 ], [ 4.218750, 13.239945 ], [ 3.867188, 13.239945 ], [ 3.867188, 12.554564 ], [ 3.515625, 12.554564 ], [ 3.515625, 11.523088 ], [ 3.164062, 11.523088 ], [ 3.164062, 11.867351 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 1.406250, 12.554564 ], [ 1.406250, 12.897489 ], [ 1.054688, 12.897489 ], [ 1.054688, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.581921 ], [ 0.351562, 13.581921 ], [ 0.351562, 14.944785 ], [ 1.406250, 14.944785 ], [ 1.406250, 15.284185 ], [ 3.515625, 15.284185 ], [ 3.515625, 15.961329 ], [ 3.867188, 15.961329 ], [ 3.867188, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.311143 ], [ 5.273438, 19.311143 ], [ 5.273438, 19.642588 ], [ 5.976562, 19.642588 ], [ 5.976562, 19.973349 ], [ 6.679688, 19.973349 ], [ 6.679688, 20.303418 ], [ 7.031250, 20.303418 ], [ 7.031250, 20.632784 ], [ 7.382812, 20.632784 ], [ 7.382812, 20.961440 ], [ 8.085938, 20.961440 ], [ 8.085938, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 21.616579 ], [ 8.789062, 21.616579 ], [ 8.789062, 21.943046 ], [ 9.492188, 21.943046 ], [ 9.492188, 22.268764 ], [ 10.195312, 22.268764 ], [ 10.195312, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 22.917923 ], [ 11.250000, 22.917923 ], [ 11.250000, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.563987 ], [ 12.304688, 23.563987 ], [ 12.304688, 23.241346 ], [ 13.007812, 23.241346 ], [ 13.007812, 22.917923 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.304688, 23.563987 ], [ 12.304688, 23.241346 ], [ 13.007812, 23.241346 ], [ 13.007812, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.943046 ], [ 15.117188, 21.943046 ], [ 15.117188, 20.961440 ], [ 15.468750, 20.961440 ], [ 15.468750, 20.303418 ], [ 15.820312, 20.303418 ], [ 15.820312, 18.979026 ], [ 15.468750, 18.979026 ], [ 15.468750, 17.308688 ], [ 15.117188, 17.308688 ], [ 15.117188, 16.299051 ], [ 14.765625, 16.299051 ], [ 14.765625, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 15.623037 ], [ 14.062500, 15.623037 ], [ 14.062500, 14.944785 ], [ 13.710938, 14.944785 ], [ 13.710938, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 13.239945 ], [ 14.765625, 13.239945 ], [ 14.765625, 12.897489 ], [ 14.062500, 12.897489 ], [ 14.062500, 12.554564 ], [ 13.710938, 12.554564 ], [ 13.710938, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 13.581921 ], [ 13.007812, 13.581921 ], [ 13.007812, 13.239945 ], [ 12.656250, 13.239945 ], [ 12.656250, 12.897489 ], [ 11.601562, 12.897489 ], [ 11.601562, 13.239945 ], [ 10.195312, 13.239945 ], [ 10.195312, 12.897489 ], [ 8.085938, 12.897489 ], [ 8.085938, 13.239945 ], [ 6.328125, 13.239945 ], [ 6.328125, 13.581921 ], [ 5.625000, 13.581921 ], [ 5.625000, 13.923404 ], [ 4.921875, 13.923404 ], [ 4.921875, 13.581921 ], [ 4.218750, 13.581921 ], [ 4.218750, 13.239945 ], [ 3.867188, 13.239945 ], [ 3.867188, 12.554564 ], [ 3.515625, 12.554564 ], [ 3.515625, 11.523088 ], [ 3.164062, 11.523088 ], [ 3.164062, 11.867351 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 1.406250, 12.554564 ], [ 1.406250, 12.897489 ], [ 1.054688, 12.897489 ], [ 1.054688, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.581921 ], [ 0.351562, 13.581921 ], [ 0.351562, 14.944785 ], [ 1.406250, 14.944785 ], [ 1.406250, 15.284185 ], [ 3.515625, 15.284185 ], [ 3.515625, 15.961329 ], [ 3.867188, 15.961329 ], [ 3.867188, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.311143 ], [ 5.273438, 19.311143 ], [ 5.273438, 19.642588 ], [ 5.976562, 19.642588 ], [ 5.976562, 19.973349 ], [ 6.679688, 19.973349 ], [ 6.679688, 20.303418 ], [ 7.031250, 20.303418 ], [ 7.031250, 20.632784 ], [ 7.382812, 20.632784 ], [ 7.382812, 20.961440 ], [ 8.085938, 20.961440 ], [ 8.085938, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 21.616579 ], [ 8.789062, 21.616579 ], [ 8.789062, 21.943046 ], [ 9.492188, 21.943046 ], [ 9.492188, 22.268764 ], [ 10.195312, 22.268764 ], [ 10.195312, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 22.917923 ], [ 11.250000, 22.917923 ], [ 11.250000, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.563987 ], [ 12.304688, 23.563987 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 10.833306 ], [ 1.054688, 10.833306 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.757812, 9.102097 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 7.013668 ], [ 0.351562, 7.013668 ], [ 0.351562, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ], [ 0.351562, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 10.833306 ], [ 1.054688, 10.833306 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.757812, 9.102097 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 7.013668 ], [ 0.351562, 7.013668 ], [ 0.351562, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.164062, 11.523088 ], [ 3.515625, 11.523088 ], [ 3.515625, 10.833306 ], [ 3.867188, 10.833306 ], [ 3.867188, 10.487812 ], [ 3.515625, 10.487812 ], [ 3.515625, 10.141932 ], [ 3.867188, 10.141932 ], [ 3.867188, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.757812, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.054688, 9.795678 ], [ 1.054688, 10.141932 ], [ 0.703125, 10.141932 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.833306 ], [ 1.406250, 10.833306 ], [ 1.406250, 11.523088 ], [ 2.109375, 11.523088 ], [ 2.109375, 11.867351 ], [ 2.460938, 11.867351 ], [ 2.460938, 12.211180 ], [ 2.812500, 12.211180 ], [ 2.812500, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.211180 ], [ 2.812500, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 11.523088 ], [ 3.515625, 11.523088 ], [ 3.515625, 10.833306 ], [ 3.867188, 10.833306 ], [ 3.867188, 10.487812 ], [ 3.515625, 10.487812 ], [ 3.515625, 10.141932 ], [ 3.867188, 10.141932 ], [ 3.867188, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.757812, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.054688, 9.795678 ], [ 1.054688, 10.141932 ], [ 0.703125, 10.141932 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.833306 ], [ 1.406250, 10.833306 ], [ 1.406250, 11.523088 ], [ 2.109375, 11.523088 ], [ 2.109375, 11.867351 ], [ 2.460938, 11.867351 ], [ 2.460938, 12.211180 ], [ 2.812500, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 13.239945 ], [ 8.085938, 13.239945 ], [ 8.085938, 12.897489 ], [ 10.195312, 12.897489 ], [ 10.195312, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 12.897489 ], [ 12.656250, 12.897489 ], [ 12.656250, 13.239945 ], [ 13.007812, 13.239945 ], [ 13.007812, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.359375, 13.239945 ], [ 13.710938, 13.239945 ], [ 13.710938, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 12.211180 ], [ 14.414062, 12.211180 ], [ 14.414062, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.795678 ], [ 13.007812, 9.795678 ], [ 13.007812, 9.102097 ], [ 12.656250, 9.102097 ], [ 12.656250, 8.407168 ], [ 12.304688, 8.407168 ], [ 12.304688, 8.059230 ], [ 11.953125, 8.059230 ], [ 11.953125, 7.013668 ], [ 11.601562, 7.013668 ], [ 11.601562, 6.664608 ], [ 10.546875, 6.664608 ], [ 10.546875, 7.013668 ], [ 10.195312, 7.013668 ], [ 10.195312, 6.664608 ], [ 9.843750, 6.664608 ], [ 9.843750, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.965754 ], [ 8.789062, 5.965754 ], [ 8.789062, 5.266008 ], [ 8.437500, 5.266008 ], [ 8.437500, 4.915833 ], [ 8.085938, 4.915833 ], [ 8.085938, 4.565474 ], [ 7.031250, 4.565474 ], [ 7.031250, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 4.565474 ], [ 5.273438, 4.565474 ], [ 5.273438, 5.266008 ], [ 4.921875, 5.266008 ], [ 4.921875, 5.615986 ], [ 4.570312, 5.615986 ], [ 4.570312, 5.965754 ], [ 4.218750, 5.965754 ], [ 4.218750, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.164062, 9.102097 ], [ 3.164062, 9.449062 ], [ 3.515625, 9.449062 ], [ 3.515625, 9.795678 ], [ 3.867188, 9.795678 ], [ 3.867188, 10.141932 ], [ 3.515625, 10.141932 ], [ 3.515625, 10.487812 ], [ 3.867188, 10.487812 ], [ 3.867188, 10.833306 ], [ 3.515625, 10.833306 ], [ 3.515625, 12.554564 ], [ 3.867188, 12.554564 ], [ 3.867188, 13.239945 ], [ 4.218750, 13.239945 ], [ 4.218750, 13.581921 ], [ 4.921875, 13.581921 ], [ 4.921875, 13.923404 ], [ 5.625000, 13.923404 ], [ 5.625000, 13.581921 ], [ 6.328125, 13.581921 ], [ 6.328125, 13.239945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 13.923404 ], [ 5.625000, 13.581921 ], [ 6.328125, 13.581921 ], [ 6.328125, 13.239945 ], [ 8.085938, 13.239945 ], [ 8.085938, 12.897489 ], [ 10.195312, 12.897489 ], [ 10.195312, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 12.897489 ], [ 12.656250, 12.897489 ], [ 12.656250, 13.239945 ], [ 13.007812, 13.239945 ], [ 13.007812, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.359375, 13.239945 ], [ 13.710938, 13.239945 ], [ 13.710938, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 12.211180 ], [ 14.414062, 12.211180 ], [ 14.414062, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.795678 ], [ 13.007812, 9.795678 ], [ 13.007812, 9.102097 ], [ 12.656250, 9.102097 ], [ 12.656250, 8.407168 ], [ 12.304688, 8.407168 ], [ 12.304688, 8.059230 ], [ 11.953125, 8.059230 ], [ 11.953125, 7.013668 ], [ 11.601562, 7.013668 ], [ 11.601562, 6.664608 ], [ 10.546875, 6.664608 ], [ 10.546875, 7.013668 ], [ 10.195312, 7.013668 ], [ 10.195312, 6.664608 ], [ 9.843750, 6.664608 ], [ 9.843750, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.965754 ], [ 8.789062, 5.965754 ], [ 8.789062, 5.266008 ], [ 8.437500, 5.266008 ], [ 8.437500, 4.915833 ], [ 8.085938, 4.915833 ], [ 8.085938, 4.565474 ], [ 7.031250, 4.565474 ], [ 7.031250, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 4.565474 ], [ 5.273438, 4.565474 ], [ 5.273438, 5.266008 ], [ 4.921875, 5.266008 ], [ 4.921875, 5.615986 ], [ 4.570312, 5.615986 ], [ 4.570312, 5.965754 ], [ 4.218750, 5.965754 ], [ 4.218750, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.164062, 9.102097 ], [ 3.164062, 9.449062 ], [ 3.515625, 9.449062 ], [ 3.515625, 9.795678 ], [ 3.867188, 9.795678 ], [ 3.867188, 10.141932 ], [ 3.515625, 10.141932 ], [ 3.515625, 10.487812 ], [ 3.867188, 10.487812 ], [ 3.867188, 10.833306 ], [ 3.515625, 10.833306 ], [ 3.515625, 12.554564 ], [ 3.867188, 12.554564 ], [ 3.867188, 13.239945 ], [ 4.218750, 13.239945 ], [ 4.218750, 13.581921 ], [ 4.921875, 13.581921 ], [ 4.921875, 13.923404 ], [ 5.625000, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 2.108899 ], [ 11.250000, 2.108899 ], [ 11.250000, 1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.108899 ], [ 11.250000, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 2.108899 ], [ 11.250000, 2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.226562, 22.593726 ], [ 17.929688, 22.593726 ], [ 17.929688, 22.268764 ], [ 18.632812, 22.268764 ], [ 18.632812, 21.943046 ], [ 19.335938, 21.943046 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.642588 ], [ 23.906250, 19.642588 ], [ 23.906250, 15.623037 ], [ 22.851562, 15.623037 ], [ 22.851562, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 14.604847 ], [ 22.148438, 14.604847 ], [ 22.148438, 12.211180 ], [ 22.500000, 12.211180 ], [ 22.500000, 11.523088 ], [ 22.851562, 11.523088 ], [ 22.851562, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 9.449062 ], [ 20.742188, 9.449062 ], [ 20.742188, 9.102097 ], [ 18.984375, 9.102097 ], [ 18.984375, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 8.059230 ], [ 17.929688, 8.059230 ], [ 17.929688, 7.710992 ], [ 17.226562, 7.710992 ], [ 17.226562, 7.362467 ], [ 16.523438, 7.362467 ], [ 16.523438, 7.710992 ], [ 16.171875, 7.710992 ], [ 16.171875, 7.362467 ], [ 15.468750, 7.362467 ], [ 15.468750, 8.059230 ], [ 15.117188, 8.059230 ], [ 15.117188, 8.754795 ], [ 14.414062, 8.754795 ], [ 14.414062, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.795678 ], [ 14.765625, 9.795678 ], [ 14.765625, 10.141932 ], [ 15.117188, 10.141932 ], [ 15.117188, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 11.178402 ], [ 15.117188, 11.178402 ], [ 15.117188, 11.867351 ], [ 14.765625, 11.867351 ], [ 14.765625, 12.554564 ], [ 14.414062, 12.554564 ], [ 14.414062, 12.897489 ], [ 14.765625, 12.897489 ], [ 14.765625, 13.239945 ], [ 14.062500, 13.239945 ], [ 14.062500, 13.923404 ], [ 13.710938, 13.923404 ], [ 13.710938, 14.944785 ], [ 14.062500, 14.944785 ], [ 14.062500, 15.623037 ], [ 14.414062, 15.623037 ], [ 14.414062, 15.961329 ], [ 14.765625, 15.961329 ], [ 14.765625, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 17.308688 ], [ 15.468750, 17.308688 ], [ 15.468750, 18.979026 ], [ 15.820312, 18.979026 ], [ 15.820312, 20.303418 ], [ 15.468750, 20.303418 ], [ 15.468750, 20.961440 ], [ 15.117188, 20.961440 ], [ 15.117188, 21.943046 ], [ 14.765625, 21.943046 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.241346 ], [ 16.523438, 23.241346 ], [ 16.523438, 22.917923 ], [ 17.226562, 22.917923 ], [ 17.226562, 22.593726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 23.241346 ], [ 16.523438, 22.917923 ], [ 17.226562, 22.917923 ], [ 17.226562, 22.593726 ], [ 17.929688, 22.593726 ], [ 17.929688, 22.268764 ], [ 18.632812, 22.268764 ], [ 18.632812, 21.943046 ], [ 19.335938, 21.943046 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.642588 ], [ 23.906250, 19.642588 ], [ 23.906250, 15.623037 ], [ 22.851562, 15.623037 ], [ 22.851562, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 14.604847 ], [ 22.148438, 14.604847 ], [ 22.148438, 12.211180 ], [ 22.500000, 12.211180 ], [ 22.500000, 11.523088 ], [ 22.851562, 11.523088 ], [ 22.851562, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 9.449062 ], [ 20.742188, 9.449062 ], [ 20.742188, 9.102097 ], [ 18.984375, 9.102097 ], [ 18.984375, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 8.059230 ], [ 17.929688, 8.059230 ], [ 17.929688, 7.710992 ], [ 17.226562, 7.710992 ], [ 17.226562, 7.362467 ], [ 16.523438, 7.362467 ], [ 16.523438, 7.710992 ], [ 16.171875, 7.710992 ], [ 16.171875, 7.362467 ], [ 15.468750, 7.362467 ], [ 15.468750, 8.059230 ], [ 15.117188, 8.059230 ], [ 15.117188, 8.754795 ], [ 14.414062, 8.754795 ], [ 14.414062, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.795678 ], [ 14.765625, 9.795678 ], [ 14.765625, 10.141932 ], [ 15.117188, 10.141932 ], [ 15.117188, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 11.178402 ], [ 15.117188, 11.178402 ], [ 15.117188, 11.867351 ], [ 14.765625, 11.867351 ], [ 14.765625, 12.554564 ], [ 14.414062, 12.554564 ], [ 14.414062, 12.897489 ], [ 14.765625, 12.897489 ], [ 14.765625, 13.239945 ], [ 14.062500, 13.239945 ], [ 14.062500, 13.923404 ], [ 13.710938, 13.923404 ], [ 13.710938, 14.944785 ], [ 14.062500, 14.944785 ], [ 14.062500, 15.623037 ], [ 14.414062, 15.623037 ], [ 14.414062, 15.961329 ], [ 14.765625, 15.961329 ], [ 14.765625, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 17.308688 ], [ 15.468750, 17.308688 ], [ 15.468750, 18.979026 ], [ 15.820312, 18.979026 ], [ 15.820312, 20.303418 ], [ 15.468750, 20.303418 ], [ 15.468750, 20.961440 ], [ 15.117188, 20.961440 ], [ 15.117188, 21.943046 ], [ 14.765625, 21.943046 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.241346 ], [ 16.523438, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.117188, 10.141932 ], [ 14.765625, 10.141932 ], [ 14.765625, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.414062, 9.102097 ], [ 14.414062, 8.754795 ], [ 15.117188, 8.754795 ], [ 15.117188, 8.059230 ], [ 15.468750, 8.059230 ], [ 15.468750, 7.362467 ], [ 15.117188, 7.362467 ], [ 15.117188, 6.664608 ], [ 14.765625, 6.664608 ], [ 14.765625, 6.315299 ], [ 14.414062, 6.315299 ], [ 14.414062, 4.214943 ], [ 15.117188, 4.214943 ], [ 15.117188, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 3.162456 ], [ 15.820312, 3.162456 ], [ 15.820312, 2.108899 ], [ 16.171875, 2.108899 ], [ 16.171875, 1.757537 ], [ 15.117188, 1.757537 ], [ 15.117188, 2.108899 ], [ 9.492188, 2.108899 ], [ 9.492188, 2.460181 ], [ 9.843750, 2.460181 ], [ 9.843750, 3.513421 ], [ 9.492188, 3.513421 ], [ 9.492188, 3.864255 ], [ 8.789062, 3.864255 ], [ 8.789062, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.266008 ], [ 8.789062, 5.266008 ], [ 8.789062, 5.965754 ], [ 9.140625, 5.965754 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 6.664608 ], [ 10.195312, 6.664608 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.664608 ], [ 11.601562, 6.664608 ], [ 11.601562, 7.013668 ], [ 11.953125, 7.013668 ], [ 11.953125, 8.059230 ], [ 12.304688, 8.059230 ], [ 12.304688, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.007812, 9.102097 ], [ 13.007812, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 10.487812 ], [ 13.710938, 10.487812 ], [ 13.710938, 10.833306 ], [ 14.062500, 10.833306 ], [ 14.062500, 11.178402 ], [ 14.414062, 11.178402 ], [ 14.414062, 12.211180 ], [ 14.062500, 12.211180 ], [ 14.062500, 12.897489 ], [ 14.414062, 12.897489 ], [ 14.414062, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ], [ 15.117188, 11.867351 ], [ 15.117188, 11.178402 ], [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.117188, 10.487812 ], [ 15.117188, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.414062, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ], [ 15.117188, 11.867351 ], [ 15.117188, 11.178402 ], [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.117188, 10.487812 ], [ 15.117188, 10.141932 ], [ 14.765625, 10.141932 ], [ 14.765625, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.414062, 9.102097 ], [ 14.414062, 8.754795 ], [ 15.117188, 8.754795 ], [ 15.117188, 8.059230 ], [ 15.468750, 8.059230 ], [ 15.468750, 7.362467 ], [ 15.117188, 7.362467 ], [ 15.117188, 6.664608 ], [ 14.765625, 6.664608 ], [ 14.765625, 6.315299 ], [ 14.414062, 6.315299 ], [ 14.414062, 4.214943 ], [ 15.117188, 4.214943 ], [ 15.117188, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 3.162456 ], [ 15.820312, 3.162456 ], [ 15.820312, 2.108899 ], [ 16.171875, 2.108899 ], [ 16.171875, 1.757537 ], [ 15.117188, 2.108899 ], [ 9.492188, 2.108899 ], [ 9.492188, 2.460181 ], [ 9.843750, 2.460181 ], [ 9.843750, 3.513421 ], [ 9.492188, 3.513421 ], [ 9.492188, 3.864255 ], [ 8.789062, 3.864255 ], [ 8.789062, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.266008 ], [ 8.789062, 5.266008 ], [ 8.789062, 5.965754 ], [ 9.140625, 5.965754 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 6.664608 ], [ 10.195312, 6.664608 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.664608 ], [ 11.601562, 6.664608 ], [ 11.601562, 7.013668 ], [ 11.953125, 7.013668 ], [ 11.953125, 8.059230 ], [ 12.304688, 8.059230 ], [ 12.304688, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.007812, 9.102097 ], [ 13.007812, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 10.487812 ], [ 13.710938, 10.487812 ], [ 13.710938, 10.833306 ], [ 14.062500, 10.833306 ], [ 14.062500, 11.178402 ], [ 14.414062, 11.178402 ], [ 14.414062, 12.211180 ], [ 14.062500, 12.211180 ], [ 14.062500, 12.897489 ], [ 14.414062, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 8.754795 ], [ 23.906250, 8.754795 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 7.710992 ], [ 24.960938, 7.710992 ], [ 24.960938, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 6.664608 ], [ 26.367188, 6.664608 ], [ 26.367188, 5.615986 ], [ 27.070312, 5.615986 ], [ 27.070312, 5.266008 ], [ 25.312500, 5.266008 ], [ 25.312500, 4.915833 ], [ 23.554688, 4.915833 ], [ 23.554688, 4.565474 ], [ 22.851562, 4.565474 ], [ 22.851562, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 3.864255 ], [ 21.796875, 3.864255 ], [ 21.796875, 4.214943 ], [ 20.390625, 4.214943 ], [ 20.390625, 4.565474 ], [ 19.687500, 4.565474 ], [ 19.687500, 4.915833 ], [ 19.335938, 4.915833 ], [ 19.335938, 4.565474 ], [ 18.984375, 4.565474 ], [ 18.984375, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 3.864255 ], [ 18.281250, 3.864255 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 2.460181 ], [ 16.171875, 2.460181 ], [ 16.171875, 2.108899 ], [ 15.820312, 2.108899 ], [ 15.820312, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.513421 ], [ 15.117188, 3.513421 ], [ 15.117188, 4.214943 ], [ 14.414062, 4.214943 ], [ 14.414062, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.664608 ], [ 15.117188, 6.664608 ], [ 15.117188, 7.362467 ], [ 16.171875, 7.362467 ], [ 16.171875, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.362467 ], [ 17.226562, 7.362467 ], [ 17.226562, 7.710992 ], [ 17.929688, 7.710992 ], [ 17.929688, 8.059230 ], [ 18.281250, 8.059230 ], [ 18.281250, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 9.102097 ], [ 20.742188, 9.102097 ], [ 20.742188, 9.449062 ], [ 21.445312, 9.449062 ], [ 21.445312, 10.141932 ], [ 21.796875, 10.141932 ], [ 21.796875, 10.487812 ], [ 22.148438, 10.487812 ], [ 22.148438, 10.833306 ], [ 22.851562, 10.833306 ], [ 22.851562, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 10.833306 ], [ 22.851562, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 8.754795 ], [ 23.906250, 8.754795 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 7.710992 ], [ 24.960938, 7.710992 ], [ 24.960938, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 6.664608 ], [ 26.367188, 6.664608 ], [ 26.367188, 5.615986 ], [ 27.070312, 5.615986 ], [ 27.070312, 5.266008 ], [ 25.312500, 5.266008 ], [ 25.312500, 4.915833 ], [ 23.554688, 4.915833 ], [ 23.554688, 4.565474 ], [ 22.851562, 4.565474 ], [ 22.851562, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 3.864255 ], [ 21.796875, 3.864255 ], [ 21.796875, 4.214943 ], [ 20.390625, 4.214943 ], [ 20.390625, 4.565474 ], [ 19.687500, 4.565474 ], [ 19.687500, 4.915833 ], [ 19.335938, 4.915833 ], [ 19.335938, 4.565474 ], [ 18.984375, 4.565474 ], [ 18.984375, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 3.864255 ], [ 18.281250, 3.864255 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 2.460181 ], [ 16.171875, 2.460181 ], [ 16.171875, 2.108899 ], [ 15.820312, 2.108899 ], [ 15.820312, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.513421 ], [ 15.117188, 3.513421 ], [ 15.117188, 4.214943 ], [ 14.414062, 4.214943 ], [ 14.414062, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.664608 ], [ 15.117188, 6.664608 ], [ 15.117188, 7.362467 ], [ 16.171875, 7.362467 ], [ 16.171875, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.362467 ], [ 17.226562, 7.362467 ], [ 17.226562, 7.710992 ], [ 17.929688, 7.710992 ], [ 17.929688, 8.059230 ], [ 18.281250, 8.059230 ], [ 18.281250, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 9.102097 ], [ 20.742188, 9.102097 ], [ 20.742188, 9.449062 ], [ 21.445312, 9.449062 ], [ 21.445312, 10.141932 ], [ 21.796875, 10.141932 ], [ 21.796875, 10.487812 ], [ 22.148438, 10.487812 ], [ 22.148438, 10.833306 ], [ 22.851562, 10.833306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.664062, 35.173808 ], [ 26.367188, 35.173808 ], [ 26.367188, 34.885931 ], [ 24.609375, 34.885931 ], [ 24.609375, 35.173808 ], [ 23.554688, 35.173808 ], [ 23.554688, 35.460670 ], [ 25.664062, 35.460670 ], [ 25.664062, 35.173808 ] ] ], [ [ [ 23.906250, 40.178873 ], [ 24.257812, 40.178873 ], [ 24.257812, 39.909736 ], [ 23.203125, 39.909736 ], [ 23.203125, 40.178873 ], [ 22.500000, 40.178873 ], [ 22.500000, 39.909736 ], [ 22.851562, 39.909736 ], [ 22.851562, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 39.095963 ], [ 22.851562, 39.095963 ], [ 22.851562, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.548165 ], [ 23.554688, 38.548165 ], [ 23.554688, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.554688, 37.718590 ], [ 23.554688, 37.439974 ], [ 22.851562, 37.439974 ], [ 22.851562, 36.879621 ], [ 23.203125, 36.879621 ], [ 23.203125, 36.315125 ], [ 22.148438, 36.315125 ], [ 22.148438, 36.597889 ], [ 21.796875, 36.597889 ], [ 21.796875, 37.160317 ], [ 21.445312, 37.160317 ], [ 21.445312, 37.996163 ], [ 21.093750, 37.996163 ], [ 21.093750, 38.548165 ], [ 20.742188, 38.548165 ], [ 20.742188, 39.095963 ], [ 20.390625, 39.095963 ], [ 20.390625, 39.368279 ], [ 20.039062, 39.368279 ], [ 20.039062, 39.639538 ], [ 20.390625, 39.639538 ], [ 20.390625, 39.909736 ], [ 20.742188, 39.909736 ], [ 20.742188, 40.446947 ], [ 21.093750, 40.446947 ], [ 21.093750, 40.713956 ], [ 21.796875, 40.713956 ], [ 21.796875, 40.979898 ], [ 22.148438, 40.979898 ], [ 22.148438, 41.244772 ], [ 24.257812, 41.244772 ], [ 24.257812, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.244772 ], [ 26.015625, 41.244772 ], [ 26.015625, 41.508577 ], [ 26.718750, 41.508577 ], [ 26.718750, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.713956 ], [ 25.312500, 40.713956 ], [ 25.312500, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 40.713956 ], [ 23.554688, 40.713956 ], [ 23.554688, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 40.178873 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.664062, 35.460670 ], [ 25.664062, 35.173808 ], [ 26.367188, 35.173808 ], [ 26.367188, 34.885931 ], [ 24.609375, 34.885931 ], [ 24.609375, 35.173808 ], [ 23.554688, 35.173808 ], [ 23.554688, 35.460670 ], [ 25.664062, 35.460670 ] ] ], [ [ [ 26.718750, 41.508577 ], [ 26.718750, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.713956 ], [ 25.312500, 40.713956 ], [ 25.312500, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 40.713956 ], [ 23.554688, 40.713956 ], [ 23.554688, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 40.178873 ], [ 24.257812, 40.178873 ], [ 24.257812, 39.909736 ], [ 23.203125, 39.909736 ], [ 23.203125, 40.178873 ], [ 22.500000, 40.178873 ], [ 22.500000, 39.909736 ], [ 22.851562, 39.909736 ], [ 22.851562, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 39.095963 ], [ 22.851562, 39.095963 ], [ 22.851562, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.548165 ], [ 23.554688, 38.548165 ], [ 23.554688, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.554688, 37.718590 ], [ 23.554688, 37.439974 ], [ 22.851562, 37.439974 ], [ 22.851562, 36.879621 ], [ 23.203125, 36.879621 ], [ 23.203125, 36.315125 ], [ 22.148438, 36.315125 ], [ 22.148438, 36.597889 ], [ 21.796875, 36.597889 ], [ 21.796875, 37.160317 ], [ 21.445312, 37.160317 ], [ 21.445312, 37.996163 ], [ 21.093750, 37.996163 ], [ 21.093750, 38.548165 ], [ 20.742188, 38.548165 ], [ 20.742188, 39.095963 ], [ 20.390625, 39.095963 ], [ 20.390625, 39.368279 ], [ 20.039062, 39.368279 ], [ 20.039062, 39.639538 ], [ 20.390625, 39.639538 ], [ 20.390625, 39.909736 ], [ 20.742188, 39.909736 ], [ 20.742188, 40.446947 ], [ 21.093750, 40.446947 ], [ 21.093750, 40.713956 ], [ 21.796875, 40.713956 ], [ 21.796875, 40.979898 ], [ 22.148438, 40.979898 ], [ 22.148438, 41.244772 ], [ 24.257812, 41.244772 ], [ 24.257812, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.244772 ], [ 26.015625, 41.244772 ], [ 26.015625, 41.508577 ], [ 26.718750, 41.508577 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 35.173808 ], [ 33.750000, 35.173808 ], [ 33.750000, 34.885931 ], [ 33.398438, 34.885931 ], [ 33.398438, 35.173808 ], [ 33.046875, 35.173808 ], [ 33.046875, 35.460670 ], [ 34.101562, 35.460670 ], [ 34.101562, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 35.460670 ], [ 34.101562, 35.173808 ], [ 33.750000, 35.173808 ], [ 33.750000, 34.885931 ], [ 33.398438, 34.885931 ], [ 33.398438, 35.173808 ], [ 33.046875, 35.173808 ], [ 33.046875, 35.460670 ], [ 34.101562, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, 34.597042 ], [ 32.343750, 34.597042 ], [ 32.343750, 35.173808 ], [ 33.398438, 35.173808 ], [ 33.398438, 34.885931 ], [ 33.750000, 34.885931 ], [ 33.750000, 34.597042 ] ] ], [ [ [ 33.750000, 35.173808 ], [ 34.101562, 35.173808 ], [ 34.101562, 34.885931 ], [ 33.750000, 34.885931 ], [ 33.750000, 35.173808 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.398438, 35.173808 ], [ 33.398438, 34.885931 ], [ 33.750000, 34.885931 ], [ 33.750000, 34.597042 ], [ 32.343750, 34.597042 ], [ 32.343750, 35.173808 ], [ 33.398438, 35.173808 ] ] ], [ [ [ 34.101562, 34.885931 ], [ 33.750000, 34.885931 ], [ 33.750000, 35.173808 ], [ 34.101562, 35.173808 ], [ 34.101562, 34.885931 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 31.052934 ], [ 28.476562, 31.052934 ], [ 28.476562, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.052934 ], [ 30.234375, 31.052934 ], [ 30.234375, 31.353637 ], [ 31.640625, 31.353637 ], [ 31.640625, 31.052934 ], [ 34.101562, 31.052934 ], [ 34.101562, 30.751278 ], [ 34.453125, 30.751278 ], [ 34.453125, 29.840644 ], [ 34.804688, 29.840644 ], [ 34.804688, 28.613459 ], [ 34.453125, 28.613459 ], [ 34.453125, 27.994401 ], [ 34.101562, 27.994401 ], [ 34.101562, 27.683528 ], [ 33.750000, 27.683528 ], [ 33.750000, 27.994401 ], [ 33.046875, 27.994401 ], [ 33.046875, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.431228 ], [ 34.101562, 26.431228 ], [ 34.101562, 25.799891 ], [ 34.453125, 25.799891 ], [ 34.453125, 25.165173 ], [ 34.804688, 25.165173 ], [ 34.804688, 24.846565 ], [ 35.156250, 24.846565 ], [ 35.156250, 24.527135 ], [ 35.507812, 24.527135 ], [ 35.507812, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.268764 ], [ 36.562500, 22.268764 ], [ 36.562500, 21.943046 ], [ 24.960938, 21.943046 ], [ 24.960938, 29.535230 ], [ 24.609375, 29.535230 ], [ 24.609375, 30.448674 ], [ 24.960938, 30.448674 ], [ 24.960938, 31.353637 ], [ 25.312500, 31.353637 ], [ 25.312500, 31.653381 ], [ 26.718750, 31.653381 ], [ 26.718750, 31.353637 ], [ 27.773438, 31.353637 ], [ 27.773438, 31.052934 ] ], [ [ 33.046875, 28.613459 ], [ 32.695312, 28.613459 ], [ 32.695312, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 28.613459 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 31.653381 ], [ 26.718750, 31.353637 ], [ 27.773438, 31.353637 ], [ 27.773438, 31.052934 ], [ 28.476562, 31.052934 ], [ 28.476562, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.052934 ], [ 30.234375, 31.052934 ], [ 30.234375, 31.353637 ], [ 31.640625, 31.353637 ], [ 31.640625, 31.052934 ], [ 34.101562, 31.052934 ], [ 34.101562, 30.751278 ], [ 34.453125, 30.751278 ], [ 34.804688, 29.840644 ], [ 34.804688, 28.613459 ], [ 34.453125, 28.613459 ], [ 34.453125, 27.994401 ], [ 34.101562, 27.994401 ], [ 34.101562, 27.683528 ], [ 33.750000, 27.683528 ], [ 33.750000, 27.994401 ], [ 33.046875, 27.994401 ], [ 33.046875, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.431228 ], [ 34.101562, 26.431228 ], [ 34.101562, 25.799891 ], [ 34.453125, 25.799891 ], [ 34.453125, 25.165173 ], [ 34.804688, 25.165173 ], [ 34.804688, 24.846565 ], [ 35.156250, 24.846565 ], [ 35.156250, 24.527135 ], [ 35.507812, 24.527135 ], [ 35.507812, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.268764 ], [ 36.562500, 22.268764 ], [ 36.562500, 21.943046 ], [ 24.960938, 21.943046 ], [ 24.960938, 29.535230 ], [ 24.609375, 29.535230 ], [ 24.609375, 30.448674 ], [ 24.960938, 30.448674 ], [ 24.960938, 31.353637 ], [ 25.312500, 31.353637 ], [ 25.312500, 31.653381 ], [ 26.718750, 31.653381 ] ], [ [ 32.695312, 28.613459 ], [ 32.695312, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 28.613459 ], [ 32.695312, 28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.859375, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.244772 ], [ 37.265625, 41.244772 ], [ 37.265625, 40.979898 ], [ 40.781250, 40.979898 ], [ 40.781250, 41.244772 ], [ 41.484375, 41.244772 ], [ 41.484375, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.244772 ], [ 43.242188, 41.244772 ], [ 43.242188, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.368279 ], [ 43.945312, 39.368279 ], [ 43.945312, 38.822591 ], [ 44.296875, 38.822591 ], [ 44.296875, 37.439974 ], [ 44.648438, 37.439974 ], [ 44.648438, 36.879621 ], [ 43.945312, 36.879621 ], [ 43.945312, 37.160317 ], [ 43.242188, 37.160317 ], [ 43.242188, 37.439974 ], [ 42.890625, 37.439974 ], [ 42.890625, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 36.879621 ], [ 40.078125, 36.879621 ], [ 40.078125, 36.597889 ], [ 38.320312, 36.597889 ], [ 38.320312, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 35.746512 ], [ 36.210938, 35.746512 ], [ 36.210938, 36.031332 ], [ 35.859375, 36.031332 ], [ 35.859375, 36.315125 ], [ 36.210938, 36.315125 ], [ 36.210938, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.315125 ], [ 33.398438, 36.315125 ], [ 33.398438, 36.031332 ], [ 31.992188, 36.031332 ], [ 31.992188, 36.315125 ], [ 31.640625, 36.315125 ], [ 31.640625, 36.597889 ], [ 30.585938, 36.597889 ], [ 30.585938, 36.315125 ], [ 30.234375, 36.315125 ], [ 30.234375, 36.031332 ], [ 29.179688, 36.031332 ], [ 29.179688, 36.315125 ], [ 28.828125, 36.315125 ], [ 28.828125, 36.597889 ], [ 27.773438, 36.597889 ], [ 27.773438, 36.879621 ], [ 27.421875, 36.879621 ], [ 27.421875, 37.439974 ], [ 27.070312, 37.439974 ], [ 27.070312, 37.718590 ], [ 26.718750, 37.718590 ], [ 26.718750, 37.996163 ], [ 26.367188, 37.996163 ], [ 26.367188, 38.548165 ], [ 26.718750, 38.548165 ], [ 26.718750, 39.095963 ], [ 26.015625, 39.095963 ], [ 26.015625, 39.368279 ], [ 26.367188, 39.368279 ], [ 26.367188, 39.639538 ], [ 26.718750, 39.639538 ], [ 26.718750, 39.909736 ], [ 27.070312, 39.909736 ], [ 27.070312, 40.178873 ], [ 27.421875, 40.178873 ], [ 27.421875, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.713956 ], [ 29.179688, 40.713956 ], [ 29.179688, 41.244772 ], [ 29.882812, 41.244772 ], [ 29.882812, 40.979898 ], [ 31.640625, 40.979898 ], [ 31.640625, 41.244772 ], [ 31.992188, 41.244772 ], [ 31.992188, 41.508577 ], [ 32.343750, 41.508577 ], [ 32.343750, 41.771312 ], [ 33.046875, 41.771312 ], [ 33.046875, 42.032974 ], [ 35.156250, 42.032974 ], [ 35.156250, 41.771312 ], [ 35.859375, 41.771312 ], [ 35.859375, 41.508577 ] ] ], [ [ [ 28.828125, 40.979898 ], [ 27.773438, 40.979898 ], [ 27.773438, 40.713956 ], [ 27.070312, 40.713956 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.178873 ], [ 26.367188, 40.178873 ], [ 26.367188, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.713956 ], [ 26.367188, 40.713956 ], [ 26.367188, 41.244772 ], [ 26.718750, 41.244772 ], [ 26.718750, 41.508577 ], [ 26.015625, 41.508577 ], [ 26.015625, 41.771312 ], [ 26.718750, 41.771312 ], [ 26.718750, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 41.244772 ], [ 28.828125, 41.244772 ], [ 28.828125, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.032974 ], [ 35.156250, 41.771312 ], [ 35.859375, 41.771312 ], [ 35.859375, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.244772 ], [ 37.265625, 41.244772 ], [ 37.265625, 40.979898 ], [ 40.781250, 40.979898 ], [ 40.781250, 41.244772 ], [ 41.484375, 41.244772 ], [ 41.484375, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.244772 ], [ 43.242188, 41.244772 ], [ 43.242188, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.368279 ], [ 43.945312, 39.368279 ], [ 43.945312, 38.822591 ], [ 44.296875, 38.822591 ], [ 44.296875, 37.439974 ], [ 44.648438, 37.439974 ], [ 44.648438, 36.879621 ], [ 43.945312, 36.879621 ], [ 43.945312, 37.160317 ], [ 43.242188, 37.160317 ], [ 43.242188, 37.439974 ], [ 42.890625, 37.439974 ], [ 42.890625, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 36.879621 ], [ 40.078125, 36.879621 ], [ 40.078125, 36.597889 ], [ 38.320312, 36.597889 ], [ 38.320312, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 35.746512 ], [ 36.210938, 35.746512 ], [ 36.210938, 36.031332 ], [ 35.859375, 36.031332 ], [ 35.859375, 36.315125 ], [ 36.210938, 36.315125 ], [ 36.210938, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.315125 ], [ 33.398438, 36.315125 ], [ 33.398438, 36.031332 ], [ 31.992188, 36.031332 ], [ 31.992188, 36.315125 ], [ 31.640625, 36.315125 ], [ 31.640625, 36.597889 ], [ 30.585938, 36.597889 ], [ 30.585938, 36.315125 ], [ 30.234375, 36.315125 ], [ 30.234375, 36.031332 ], [ 29.179688, 36.031332 ], [ 29.179688, 36.315125 ], [ 28.828125, 36.315125 ], [ 28.828125, 36.597889 ], [ 27.773438, 36.597889 ], [ 27.773438, 36.879621 ], [ 27.421875, 36.879621 ], [ 27.421875, 37.439974 ], [ 27.070312, 37.439974 ], [ 27.070312, 37.718590 ], [ 26.718750, 37.718590 ], [ 26.718750, 37.996163 ], [ 26.367188, 37.996163 ], [ 26.367188, 38.548165 ], [ 26.718750, 38.548165 ], [ 26.718750, 39.095963 ], [ 26.015625, 39.095963 ], [ 26.015625, 39.368279 ], [ 26.367188, 39.368279 ], [ 26.367188, 39.639538 ], [ 26.718750, 39.639538 ], [ 26.718750, 39.909736 ], [ 27.070312, 39.909736 ], [ 27.070312, 40.178873 ], [ 27.421875, 40.178873 ], [ 27.421875, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.713956 ], [ 29.179688, 40.713956 ], [ 29.179688, 41.244772 ], [ 29.882812, 41.244772 ], [ 29.882812, 40.979898 ], [ 31.640625, 40.979898 ], [ 31.640625, 41.244772 ], [ 31.992188, 41.244772 ], [ 31.992188, 41.508577 ], [ 32.343750, 41.508577 ], [ 32.343750, 41.771312 ], [ 33.046875, 41.771312 ], [ 33.046875, 42.032974 ], [ 35.156250, 42.032974 ] ] ], [ [ [ 28.125000, 42.032974 ], [ 28.125000, 41.244772 ], [ 28.828125, 41.244772 ], [ 28.828125, 40.979898 ], [ 27.773438, 40.979898 ], [ 27.773438, 40.713956 ], [ 27.070312, 40.713956 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.178873 ], [ 26.367188, 40.178873 ], [ 26.367188, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.713956 ], [ 26.367188, 40.713956 ], [ 26.367188, 41.244772 ], [ 26.718750, 41.244772 ], [ 26.718750, 41.508577 ], [ 26.015625, 41.508577 ], [ 26.015625, 41.771312 ], [ 26.718750, 41.771312 ], [ 26.718750, 42.032974 ], [ 28.125000, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.016242 ], [ 36.210938, 34.016242 ], [ 36.210938, 33.431441 ], [ 35.859375, 33.431441 ], [ 35.859375, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 33.431441 ], [ 35.507812, 33.431441 ], [ 35.507812, 34.307144 ], [ 35.859375, 34.307144 ], [ 35.859375, 34.597042 ], [ 36.562500, 34.597042 ], [ 36.562500, 34.016242 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.597042 ], [ 36.562500, 34.016242 ], [ 36.210938, 34.016242 ], [ 36.210938, 33.431441 ], [ 35.859375, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 33.431441 ], [ 35.507812, 33.431441 ], [ 35.507812, 34.307144 ], [ 35.859375, 34.307144 ], [ 35.859375, 34.597042 ], [ 36.562500, 34.597042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 36.879621 ], [ 41.835938, 36.879621 ], [ 41.835938, 36.315125 ], [ 41.132812, 36.315125 ], [ 41.132812, 36.031332 ], [ 41.484375, 36.031332 ], [ 41.484375, 34.885931 ], [ 41.132812, 34.885931 ], [ 41.132812, 34.307144 ], [ 40.781250, 34.307144 ], [ 40.781250, 34.016242 ], [ 40.078125, 34.016242 ], [ 40.078125, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.431441 ], [ 38.671875, 33.431441 ], [ 38.671875, 33.137551 ], [ 38.320312, 33.137551 ], [ 38.320312, 32.842674 ], [ 37.617188, 32.842674 ], [ 37.617188, 32.546813 ], [ 37.265625, 32.546813 ], [ 37.265625, 32.249974 ], [ 36.562500, 32.249974 ], [ 36.562500, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.431441 ], [ 36.210938, 33.431441 ], [ 36.210938, 34.016242 ], [ 36.562500, 34.016242 ], [ 36.562500, 34.597042 ], [ 35.859375, 34.597042 ], [ 35.859375, 35.460670 ], [ 36.210938, 35.460670 ], [ 36.210938, 35.746512 ], [ 36.562500, 35.746512 ], [ 36.562500, 36.597889 ], [ 37.968750, 36.597889 ], [ 37.968750, 36.879621 ], [ 38.320312, 36.879621 ], [ 38.320312, 36.597889 ], [ 40.078125, 36.597889 ], [ 40.078125, 36.879621 ], [ 40.781250, 36.879621 ], [ 40.781250, 37.160317 ], [ 42.187500, 37.160317 ], [ 42.187500, 36.879621 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 37.160317 ], [ 42.187500, 36.879621 ], [ 41.835938, 36.879621 ], [ 41.835938, 36.315125 ], [ 41.132812, 36.315125 ], [ 41.132812, 36.031332 ], [ 41.484375, 36.031332 ], [ 41.484375, 34.885931 ], [ 41.132812, 34.885931 ], [ 41.132812, 34.307144 ], [ 40.781250, 34.307144 ], [ 40.781250, 34.016242 ], [ 40.078125, 34.016242 ], [ 40.078125, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.431441 ], [ 38.671875, 33.431441 ], [ 38.671875, 33.137551 ], [ 38.320312, 33.137551 ], [ 38.320312, 32.842674 ], [ 37.617188, 32.842674 ], [ 37.617188, 32.546813 ], [ 37.265625, 32.546813 ], [ 37.265625, 32.249974 ], [ 36.562500, 32.249974 ], [ 36.562500, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.431441 ], [ 36.210938, 33.431441 ], [ 36.210938, 34.016242 ], [ 36.562500, 34.016242 ], [ 36.562500, 34.597042 ], [ 35.859375, 34.597042 ], [ 35.859375, 35.460670 ], [ 36.210938, 35.460670 ], [ 36.210938, 35.746512 ], [ 36.562500, 35.746512 ], [ 36.562500, 36.597889 ], [ 37.968750, 36.597889 ], [ 37.968750, 36.879621 ], [ 38.320312, 36.879621 ], [ 38.320312, 36.597889 ], [ 40.078125, 36.597889 ], [ 40.078125, 36.879621 ], [ 40.781250, 36.879621 ], [ 40.781250, 37.160317 ], [ 42.187500, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.945312, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.315125 ], [ 45.351562, 36.315125 ], [ 45.351562, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 34.307144 ], [ 45.351562, 34.307144 ], [ 45.351562, 33.724340 ], [ 45.703125, 33.724340 ], [ 45.703125, 33.137551 ], [ 46.054688, 33.137551 ], [ 46.054688, 32.842674 ], [ 46.757812, 32.842674 ], [ 46.757812, 32.546813 ], [ 47.460938, 32.546813 ], [ 47.460938, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 31.052934 ], [ 48.164062, 31.052934 ], [ 48.164062, 30.145127 ], [ 48.515625, 30.145127 ], [ 48.515625, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 29.535230 ], [ 46.757812, 29.535230 ], [ 46.757812, 29.228890 ], [ 44.296875, 29.228890 ], [ 44.296875, 29.535230 ], [ 43.593750, 29.535230 ], [ 43.593750, 29.840644 ], [ 43.242188, 29.840644 ], [ 43.242188, 30.145127 ], [ 42.890625, 30.145127 ], [ 42.890625, 30.448674 ], [ 42.187500, 30.448674 ], [ 42.187500, 30.751278 ], [ 41.835938, 30.751278 ], [ 41.835938, 31.052934 ], [ 41.484375, 31.052934 ], [ 41.484375, 31.353637 ], [ 40.781250, 31.353637 ], [ 40.781250, 31.653381 ], [ 40.429688, 31.653381 ], [ 40.429688, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 32.249974 ], [ 39.023438, 32.249974 ], [ 39.023438, 32.842674 ], [ 38.671875, 32.842674 ], [ 38.671875, 33.431441 ], [ 39.375000, 33.431441 ], [ 39.375000, 33.724340 ], [ 40.078125, 33.724340 ], [ 40.078125, 34.016242 ], [ 40.781250, 34.016242 ], [ 40.781250, 34.307144 ], [ 41.132812, 34.307144 ], [ 41.132812, 34.885931 ], [ 41.484375, 34.885931 ], [ 41.484375, 36.031332 ], [ 41.132812, 36.031332 ], [ 41.132812, 36.315125 ], [ 41.835938, 36.315125 ], [ 41.835938, 36.879621 ], [ 42.187500, 36.879621 ], [ 42.187500, 37.160317 ], [ 42.890625, 37.160317 ], [ 42.890625, 37.439974 ], [ 43.242188, 37.439974 ], [ 43.242188, 37.160317 ], [ 43.945312, 37.160317 ], [ 43.945312, 36.879621 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 37.439974 ], [ 43.242188, 37.160317 ], [ 43.945312, 37.160317 ], [ 43.945312, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.315125 ], [ 45.351562, 36.315125 ], [ 45.351562, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 34.307144 ], [ 45.351562, 34.307144 ], [ 45.351562, 33.724340 ], [ 45.703125, 33.724340 ], [ 45.703125, 33.137551 ], [ 46.054688, 33.137551 ], [ 46.054688, 32.842674 ], [ 46.757812, 32.842674 ], [ 46.757812, 32.546813 ], [ 47.460938, 32.546813 ], [ 47.460938, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 31.052934 ], [ 48.164062, 31.052934 ], [ 48.164062, 30.145127 ], [ 48.515625, 30.145127 ], [ 48.515625, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 29.535230 ], [ 46.757812, 29.535230 ], [ 46.757812, 29.228890 ], [ 44.296875, 29.228890 ], [ 44.296875, 29.535230 ], [ 43.593750, 29.535230 ], [ 43.593750, 29.840644 ], [ 43.242188, 29.840644 ], [ 43.242188, 30.145127 ], [ 42.890625, 30.145127 ], [ 42.890625, 30.448674 ], [ 42.187500, 30.448674 ], [ 42.187500, 30.751278 ], [ 41.835938, 30.751278 ], [ 41.835938, 31.052934 ], [ 41.484375, 31.052934 ], [ 41.484375, 31.353637 ], [ 40.781250, 31.353637 ], [ 40.781250, 31.653381 ], [ 40.429688, 31.653381 ], [ 40.429688, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 32.249974 ], [ 39.023438, 32.249974 ], [ 39.023438, 32.842674 ], [ 38.671875, 32.842674 ], [ 38.671875, 33.431441 ], [ 39.375000, 33.431441 ], [ 39.375000, 33.724340 ], [ 40.078125, 33.724340 ], [ 40.078125, 34.016242 ], [ 40.781250, 34.016242 ], [ 40.781250, 34.307144 ], [ 41.132812, 34.307144 ], [ 41.132812, 34.885931 ], [ 41.484375, 34.885931 ], [ 41.484375, 36.031332 ], [ 41.132812, 36.031332 ], [ 41.132812, 36.315125 ], [ 41.835938, 36.315125 ], [ 41.835938, 36.879621 ], [ 42.187500, 36.879621 ], [ 42.187500, 37.160317 ], [ 42.890625, 37.160317 ], [ 42.890625, 37.439974 ], [ 43.242188, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.507812, 30.448674 ], [ 35.156250, 30.448674 ], [ 35.156250, 29.840644 ], [ 34.453125, 29.840644 ], [ 34.453125, 30.751278 ], [ 34.101562, 30.751278 ], [ 34.101562, 31.353637 ], [ 34.453125, 31.353637 ], [ 34.453125, 31.653381 ], [ 34.804688, 31.653381 ], [ 34.804688, 31.353637 ], [ 35.507812, 31.353637 ], [ 35.507812, 30.448674 ] ] ], [ [ [ 35.156250, 32.842674 ], [ 35.156250, 33.137551 ], [ 35.859375, 33.137551 ], [ 35.859375, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 32.249974 ], [ 34.804688, 32.249974 ], [ 34.804688, 32.842674 ], [ 35.156250, 32.842674 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.804688, 31.653381 ], [ 34.804688, 31.353637 ], [ 35.507812, 31.353637 ], [ 35.507812, 30.448674 ], [ 35.156250, 30.448674 ], [ 35.156250, 29.840644 ], [ 34.453125, 29.840644 ], [ 34.453125, 30.751278 ], [ 34.101562, 30.751278 ], [ 34.101562, 31.353637 ], [ 34.453125, 31.353637 ], [ 34.453125, 31.653381 ], [ 34.804688, 31.653381 ] ] ], [ [ [ 35.859375, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 32.249974 ], [ 34.804688, 32.249974 ], [ 34.804688, 32.842674 ], [ 35.156250, 32.842674 ], [ 35.156250, 33.137551 ], [ 35.859375, 33.137551 ], [ 35.859375, 32.546813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 31.353637 ], [ 34.804688, 31.353637 ], [ 34.804688, 32.249974 ], [ 35.507812, 32.249974 ], [ 35.507812, 31.353637 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.249974 ], [ 35.507812, 31.353637 ], [ 34.804688, 31.353637 ], [ 34.804688, 32.249974 ], [ 35.156250, 32.249974 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.023438, 31.952162 ], [ 38.320312, 31.952162 ], [ 38.320312, 31.653381 ], [ 36.914062, 31.653381 ], [ 36.914062, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.052934 ], [ 37.617188, 31.052934 ], [ 37.617188, 29.840644 ], [ 36.914062, 29.840644 ], [ 36.914062, 29.535230 ], [ 36.562500, 29.535230 ], [ 36.562500, 29.228890 ], [ 34.804688, 29.228890 ], [ 34.804688, 29.840644 ], [ 35.156250, 29.840644 ], [ 35.156250, 30.448674 ], [ 35.507812, 30.448674 ], [ 35.507812, 32.546813 ], [ 36.562500, 32.546813 ], [ 36.562500, 32.249974 ], [ 37.265625, 32.249974 ], [ 37.265625, 32.546813 ], [ 37.617188, 32.546813 ], [ 37.617188, 32.842674 ], [ 38.320312, 32.842674 ], [ 38.320312, 33.137551 ], [ 38.671875, 33.137551 ], [ 38.671875, 32.842674 ], [ 39.023438, 32.842674 ], [ 39.023438, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.842674 ], [ 39.023438, 32.842674 ], [ 39.023438, 31.952162 ], [ 38.320312, 31.952162 ], [ 38.320312, 31.653381 ], [ 36.914062, 31.653381 ], [ 36.914062, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.052934 ], [ 37.617188, 31.052934 ], [ 37.617188, 29.840644 ], [ 36.914062, 29.840644 ], [ 36.914062, 29.535230 ], [ 36.562500, 29.535230 ], [ 36.562500, 29.228890 ], [ 34.804688, 29.228890 ], [ 34.804688, 29.840644 ], [ 35.156250, 29.840644 ], [ 35.156250, 30.448674 ], [ 35.507812, 30.448674 ], [ 35.507812, 32.546813 ], [ 36.562500, 32.546813 ], [ 36.562500, 32.249974 ], [ 37.265625, 32.249974 ], [ 37.265625, 32.546813 ], [ 37.617188, 32.546813 ], [ 37.617188, 32.842674 ], [ 38.320312, 32.842674 ], [ 38.320312, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 12.897489 ], [ 35.859375, 12.897489 ], [ 35.859375, 12.211180 ], [ 35.156250, 12.211180 ], [ 35.156250, 11.523088 ], [ 34.804688, 11.523088 ], [ 34.804688, 10.487812 ], [ 34.101562, 10.487812 ], [ 34.101562, 9.449062 ], [ 33.750000, 9.449062 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 12.211180 ], [ 32.695312, 12.211180 ], [ 32.695312, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 11.523088 ], [ 32.343750, 11.523088 ], [ 32.343750, 10.833306 ], [ 31.992188, 10.833306 ], [ 31.992188, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 9.795678 ], [ 30.234375, 9.795678 ], [ 30.234375, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.449062 ], [ 26.367188, 9.449062 ], [ 26.367188, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 9.102097 ], [ 24.609375, 9.102097 ], [ 24.609375, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 10.141932 ], [ 23.203125, 10.141932 ], [ 23.203125, 10.487812 ], [ 22.851562, 10.487812 ], [ 22.851562, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.211180 ], [ 22.148438, 12.211180 ], [ 22.148438, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.623037 ], [ 23.906250, 15.623037 ], [ 23.906250, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 21.943046 ], [ 36.914062, 21.943046 ], [ 36.914062, 21.289374 ], [ 37.265625, 21.289374 ], [ 37.265625, 20.961440 ], [ 36.914062, 20.961440 ], [ 36.914062, 20.303418 ], [ 37.265625, 20.303418 ], [ 37.265625, 18.979026 ], [ 37.617188, 18.979026 ], [ 37.617188, 18.312811 ], [ 37.968750, 18.312811 ], [ 37.968750, 17.978733 ], [ 38.320312, 17.978733 ], [ 38.320312, 17.644022 ], [ 37.968750, 17.644022 ], [ 37.968750, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 16.972741 ], [ 36.914062, 16.972741 ], [ 36.914062, 15.961329 ], [ 36.562500, 15.961329 ], [ 36.562500, 15.284185 ], [ 36.210938, 15.284185 ], [ 36.210938, 14.604847 ], [ 36.562500, 14.604847 ], [ 36.562500, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.914062, 21.943046 ], [ 36.914062, 21.289374 ], [ 37.265625, 21.289374 ], [ 37.265625, 20.961440 ], [ 36.914062, 20.961440 ], [ 36.914062, 20.303418 ], [ 37.265625, 20.303418 ], [ 37.265625, 18.979026 ], [ 37.617188, 18.979026 ], [ 37.617188, 18.312811 ], [ 37.968750, 18.312811 ], [ 37.968750, 17.978733 ], [ 38.320312, 17.978733 ], [ 38.320312, 17.644022 ], [ 37.968750, 17.644022 ], [ 37.968750, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 16.972741 ], [ 36.914062, 16.972741 ], [ 36.914062, 15.961329 ], [ 36.562500, 15.961329 ], [ 36.562500, 15.284185 ], [ 36.210938, 15.284185 ], [ 36.210938, 14.604847 ], [ 36.562500, 14.604847 ], [ 36.562500, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 12.897489 ], [ 35.859375, 12.897489 ], [ 35.859375, 12.211180 ], [ 35.156250, 12.211180 ], [ 35.156250, 11.523088 ], [ 34.804688, 11.523088 ], [ 34.804688, 10.487812 ], [ 34.101562, 10.487812 ], [ 34.101562, 9.449062 ], [ 33.750000, 9.449062 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 12.211180 ], [ 32.695312, 12.211180 ], [ 32.695312, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 11.523088 ], [ 32.343750, 11.523088 ], [ 32.343750, 10.833306 ], [ 31.992188, 10.833306 ], [ 31.992188, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 9.795678 ], [ 30.234375, 9.795678 ], [ 30.234375, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.449062 ], [ 26.367188, 9.449062 ], [ 26.367188, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 9.102097 ], [ 24.609375, 9.102097 ], [ 24.609375, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 10.141932 ], [ 23.203125, 10.141932 ], [ 23.203125, 10.487812 ], [ 22.851562, 10.487812 ], [ 22.851562, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.211180 ], [ 22.148438, 12.211180 ], [ 22.148438, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.623037 ], [ 23.906250, 15.623037 ], [ 23.906250, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 21.943046 ], [ 36.914062, 21.943046 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 8.407168 ], [ 33.398438, 8.407168 ], [ 33.398438, 8.059230 ], [ 33.046875, 8.059230 ], [ 33.046875, 7.710992 ], [ 33.398438, 7.710992 ], [ 33.398438, 7.362467 ], [ 34.101562, 7.362467 ], [ 34.101562, 6.664608 ], [ 34.804688, 6.664608 ], [ 34.804688, 5.965754 ], [ 35.156250, 5.965754 ], [ 35.156250, 5.266008 ], [ 34.804688, 5.266008 ], [ 34.804688, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.565474 ], [ 34.101562, 4.565474 ], [ 34.101562, 3.864255 ], [ 32.695312, 3.864255 ], [ 32.695312, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.864255 ], [ 29.882812, 3.864255 ], [ 29.882812, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.565474 ], [ 27.773438, 4.565474 ], [ 27.773438, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 5.266008 ], [ 27.070312, 5.266008 ], [ 27.070312, 5.615986 ], [ 26.367188, 5.615986 ], [ 26.367188, 6.664608 ], [ 25.664062, 6.664608 ], [ 25.664062, 7.013668 ], [ 24.960938, 7.013668 ], [ 24.960938, 7.710992 ], [ 24.609375, 7.710992 ], [ 24.609375, 8.059230 ], [ 24.257812, 8.059230 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.102097 ], [ 24.960938, 9.102097 ], [ 24.960938, 10.141932 ], [ 26.015625, 10.141932 ], [ 26.015625, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.449062 ], [ 29.531250, 9.449062 ], [ 29.531250, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.795678 ], [ 31.640625, 9.795678 ], [ 31.640625, 10.141932 ], [ 31.992188, 10.141932 ], [ 31.992188, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.523088 ], [ 31.992188, 11.523088 ], [ 31.992188, 11.867351 ], [ 32.695312, 11.867351 ], [ 32.695312, 12.211180 ], [ 33.046875, 12.211180 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 9.449062 ], [ 34.101562, 9.449062 ], [ 34.101562, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.211180 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 9.449062 ], [ 34.101562, 9.449062 ], [ 34.101562, 8.407168 ], [ 33.398438, 8.407168 ], [ 33.398438, 8.059230 ], [ 33.046875, 8.059230 ], [ 33.046875, 7.710992 ], [ 33.398438, 7.710992 ], [ 33.398438, 7.362467 ], [ 34.101562, 7.362467 ], [ 34.101562, 6.664608 ], [ 34.804688, 6.664608 ], [ 34.804688, 5.965754 ], [ 35.156250, 5.965754 ], [ 35.156250, 5.266008 ], [ 34.804688, 5.266008 ], [ 34.804688, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.565474 ], [ 34.101562, 4.565474 ], [ 34.101562, 3.864255 ], [ 32.695312, 3.864255 ], [ 32.695312, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.864255 ], [ 29.882812, 3.864255 ], [ 29.882812, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.565474 ], [ 27.773438, 4.565474 ], [ 27.773438, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 5.266008 ], [ 27.070312, 5.266008 ], [ 27.070312, 5.615986 ], [ 26.367188, 5.615986 ], [ 26.367188, 6.664608 ], [ 25.664062, 6.664608 ], [ 25.664062, 7.013668 ], [ 24.960938, 7.013668 ], [ 24.960938, 7.710992 ], [ 24.609375, 7.710992 ], [ 24.609375, 8.059230 ], [ 24.257812, 8.059230 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.102097 ], [ 24.960938, 9.102097 ], [ 24.960938, 10.141932 ], [ 26.015625, 10.141932 ], [ 26.015625, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.449062 ], [ 29.531250, 9.449062 ], [ 29.531250, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.795678 ], [ 31.640625, 9.795678 ], [ 31.640625, 10.141932 ], [ 31.992188, 10.141932 ], [ 31.992188, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.523088 ], [ 31.992188, 11.523088 ], [ 31.992188, 11.867351 ], [ 32.695312, 11.867351 ], [ 32.695312, 12.211180 ], [ 33.046875, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 2.811371 ], [ 34.804688, 2.811371 ], [ 34.804688, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 31.289062, 1.757537 ], [ 31.289062, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 3.513421 ], [ 32.695312, 3.513421 ], [ 32.695312, 3.864255 ], [ 34.453125, 3.864255 ], [ 34.453125, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.864255 ], [ 34.453125, 2.811371 ], [ 34.804688, 2.811371 ], [ 34.804688, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 31.289062, 1.757537 ], [ 31.289062, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 3.513421 ], [ 32.695312, 3.513421 ], [ 32.695312, 3.864255 ], [ 34.453125, 3.864255 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.023438, 16.299051 ], [ 39.375000, 16.299051 ], [ 39.375000, 15.623037 ], [ 39.726562, 15.623037 ], [ 39.726562, 14.944785 ], [ 40.429688, 14.944785 ], [ 40.429688, 14.604847 ], [ 41.132812, 14.604847 ], [ 41.132812, 14.264383 ], [ 41.484375, 14.264383 ], [ 41.484375, 13.923404 ], [ 41.835938, 13.923404 ], [ 41.835938, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 12.897489 ], [ 42.539062, 12.897489 ], [ 42.539062, 12.554564 ], [ 41.835938, 12.554564 ], [ 41.835938, 13.239945 ], [ 41.484375, 13.239945 ], [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.781250, 13.923404 ], [ 40.781250, 14.264383 ], [ 40.078125, 14.264383 ], [ 40.078125, 14.604847 ], [ 37.617188, 14.604847 ], [ 37.617188, 14.264383 ], [ 36.562500, 14.264383 ], [ 36.562500, 14.604847 ], [ 36.210938, 14.604847 ], [ 36.210938, 15.284185 ], [ 36.562500, 15.284185 ], [ 36.562500, 15.961329 ], [ 36.914062, 15.961329 ], [ 36.914062, 16.972741 ], [ 37.265625, 16.972741 ], [ 37.265625, 17.308688 ], [ 37.968750, 17.308688 ], [ 37.968750, 17.644022 ], [ 38.671875, 17.644022 ], [ 38.671875, 16.972741 ], [ 39.023438, 16.972741 ], [ 39.023438, 16.299051 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 17.644022 ], [ 38.671875, 16.972741 ], [ 39.023438, 16.972741 ], [ 39.023438, 16.299051 ], [ 39.375000, 16.299051 ], [ 39.375000, 15.623037 ], [ 39.726562, 15.623037 ], [ 39.726562, 14.944785 ], [ 40.429688, 14.944785 ], [ 40.429688, 14.604847 ], [ 41.132812, 14.604847 ], [ 41.132812, 14.264383 ], [ 41.484375, 14.264383 ], [ 41.484375, 13.923404 ], [ 41.835938, 13.923404 ], [ 41.835938, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 12.897489 ], [ 42.539062, 12.897489 ], [ 42.539062, 12.554564 ], [ 41.835938, 12.554564 ], [ 41.835938, 13.239945 ], [ 41.484375, 13.239945 ], [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.781250, 13.923404 ], [ 40.781250, 14.264383 ], [ 40.078125, 14.264383 ], [ 40.078125, 14.604847 ], [ 37.617188, 14.604847 ], [ 37.617188, 14.264383 ], [ 36.562500, 14.264383 ], [ 36.562500, 14.604847 ], [ 36.210938, 14.604847 ], [ 36.210938, 15.284185 ], [ 36.562500, 15.284185 ], [ 36.562500, 15.961329 ], [ 36.914062, 15.961329 ], [ 36.914062, 16.972741 ], [ 37.265625, 16.972741 ], [ 37.265625, 17.308688 ], [ 37.968750, 17.308688 ], [ 37.968750, 17.644022 ], [ 38.671875, 17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.523088 ], [ 43.242188, 11.523088 ], [ 43.242188, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 10.833306 ], [ 42.539062, 10.833306 ], [ 42.539062, 11.178402 ], [ 41.835938, 11.178402 ], [ 41.835938, 12.211180 ], [ 42.187500, 12.211180 ], [ 42.187500, 12.554564 ], [ 43.242188, 12.554564 ], [ 43.242188, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.554564 ], [ 43.242188, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.523088 ], [ 43.242188, 11.523088 ], [ 43.242188, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 10.833306 ], [ 42.539062, 10.833306 ], [ 42.539062, 11.178402 ], [ 41.835938, 11.178402 ], [ 41.835938, 12.211180 ], [ 42.187500, 12.211180 ], [ 42.187500, 12.554564 ], [ 43.242188, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.914062, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 3.864255 ], [ 37.617188, 3.864255 ], [ 37.617188, 3.513421 ], [ 39.726562, 3.513421 ], [ 39.726562, 3.864255 ], [ 40.429688, 3.864255 ], [ 40.429688, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.000000 ], [ 34.101562, 0.000000 ], [ 34.101562, 0.351560 ], [ 34.453125, 0.351560 ], [ 34.453125, 0.703107 ], [ 34.804688, 0.703107 ], [ 34.804688, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.811371 ], [ 34.453125, 2.811371 ], [ 34.453125, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.266008 ], [ 35.859375, 5.266008 ], [ 35.859375, 4.565474 ], [ 36.914062, 4.565474 ], [ 36.914062, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 5.266008 ], [ 35.859375, 4.565474 ], [ 36.914062, 4.565474 ], [ 36.914062, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 3.864255 ], [ 37.617188, 3.864255 ], [ 37.617188, 3.513421 ], [ 39.726562, 3.513421 ], [ 39.726562, 3.864255 ], [ 40.429688, 3.864255 ], [ 40.429688, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.000000 ], [ 34.101562, 0.000000 ], [ 34.101562, 0.351560 ], [ 34.453125, 0.351560 ], [ 34.453125, 0.703107 ], [ 34.804688, 0.703107 ], [ 34.804688, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.811371 ], [ 34.453125, 2.811371 ], [ 34.453125, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.266008 ], [ 35.859375, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.211180 ], [ 41.835938, 12.211180 ], [ 41.835938, 11.178402 ], [ 42.539062, 11.178402 ], [ 42.539062, 10.833306 ], [ 42.890625, 10.833306 ], [ 42.890625, 10.487812 ], [ 42.539062, 10.487812 ], [ 42.539062, 10.141932 ], [ 42.890625, 10.141932 ], [ 42.890625, 9.795678 ], [ 43.242188, 9.795678 ], [ 43.242188, 9.102097 ], [ 43.945312, 9.102097 ], [ 43.945312, 8.754795 ], [ 45.000000, 8.754795 ], [ 45.000000, 8.407168 ], [ 46.406250, 8.407168 ], [ 46.406250, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.013668 ], [ 46.757812, 7.013668 ], [ 46.757812, 6.664608 ], [ 46.406250, 6.664608 ], [ 46.406250, 5.965754 ], [ 46.054688, 5.965754 ], [ 46.054688, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 5.266008 ], [ 45.351562, 5.266008 ], [ 45.351562, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.565474 ], [ 43.242188, 4.565474 ], [ 43.242188, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.864255 ], [ 40.781250, 3.864255 ], [ 40.781250, 4.214943 ], [ 40.429688, 4.214943 ], [ 40.429688, 3.864255 ], [ 39.726562, 3.864255 ], [ 39.726562, 3.513421 ], [ 37.617188, 3.513421 ], [ 37.617188, 3.864255 ], [ 37.265625, 3.864255 ], [ 37.265625, 4.214943 ], [ 36.914062, 4.214943 ], [ 36.914062, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.965754 ], [ 34.804688, 5.965754 ], [ 34.804688, 6.664608 ], [ 34.101562, 6.664608 ], [ 34.101562, 7.362467 ], [ 33.398438, 7.362467 ], [ 33.398438, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.059230 ], [ 33.398438, 8.059230 ], [ 33.398438, 8.407168 ], [ 34.101562, 8.407168 ], [ 34.101562, 10.487812 ], [ 34.804688, 10.487812 ], [ 34.804688, 11.523088 ], [ 35.156250, 11.523088 ], [ 35.156250, 12.211180 ], [ 35.859375, 12.211180 ], [ 35.859375, 12.897489 ], [ 36.210938, 12.897489 ], [ 36.210938, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 14.264383 ], [ 37.617188, 14.264383 ], [ 37.617188, 14.604847 ], [ 40.078125, 14.604847 ], [ 40.078125, 14.264383 ], [ 40.781250, 14.264383 ], [ 40.781250, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 14.604847 ], [ 40.078125, 14.264383 ], [ 40.781250, 14.264383 ], [ 40.781250, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.211180 ], [ 41.835938, 12.211180 ], [ 41.835938, 11.178402 ], [ 42.539062, 11.178402 ], [ 42.539062, 10.833306 ], [ 42.890625, 10.833306 ], [ 42.890625, 10.487812 ], [ 42.539062, 10.487812 ], [ 42.539062, 10.141932 ], [ 42.890625, 10.141932 ], [ 42.890625, 9.795678 ], [ 43.242188, 9.795678 ], [ 43.242188, 9.102097 ], [ 43.945312, 9.102097 ], [ 43.945312, 8.754795 ], [ 45.000000, 8.754795 ], [ 45.000000, 8.407168 ], [ 46.406250, 8.407168 ], [ 46.406250, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.013668 ], [ 46.757812, 7.013668 ], [ 46.757812, 6.664608 ], [ 46.406250, 6.664608 ], [ 46.406250, 5.965754 ], [ 46.054688, 5.965754 ], [ 46.054688, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 5.266008 ], [ 45.351562, 5.266008 ], [ 45.351562, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.565474 ], [ 43.242188, 4.565474 ], [ 43.242188, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.864255 ], [ 40.781250, 3.864255 ], [ 40.781250, 4.214943 ], [ 40.429688, 4.214943 ], [ 40.429688, 3.864255 ], [ 39.726562, 3.864255 ], [ 39.726562, 3.513421 ], [ 37.617188, 3.513421 ], [ 37.617188, 3.864255 ], [ 37.265625, 3.864255 ], [ 37.265625, 4.214943 ], [ 36.914062, 4.214943 ], [ 36.914062, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.965754 ], [ 34.804688, 5.965754 ], [ 34.804688, 6.664608 ], [ 34.101562, 6.664608 ], [ 34.101562, 7.362467 ], [ 33.398438, 7.362467 ], [ 33.398438, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.059230 ], [ 33.398438, 8.059230 ], [ 33.398438, 8.407168 ], [ 34.101562, 8.407168 ], [ 34.101562, 10.487812 ], [ 34.804688, 10.487812 ], [ 34.804688, 11.523088 ], [ 35.156250, 11.523088 ], [ 35.156250, 12.211180 ], [ 35.859375, 12.211180 ], [ 35.859375, 12.897489 ], [ 36.210938, 12.897489 ], [ 36.210938, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 14.264383 ], [ 37.617188, 14.604847 ], [ 40.078125, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.015625, 54.162434 ], [ 71.718750, 54.162434 ], [ 71.718750, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 53.956086 ], [ 73.476562, 53.956086 ], [ 73.476562, 53.540307 ], [ 74.882812, 53.540307 ], [ 74.882812, 53.748711 ], [ 75.585938, 53.748711 ], [ 75.585938, 53.956086 ], [ 75.937500, 53.956086 ], [ 75.937500, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.367759 ], [ 76.640625, 54.367759 ], [ 76.640625, 53.956086 ], [ 76.992188, 53.956086 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 77.695312, 53.330873 ], [ 77.695312, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.804688, 51.399206 ], [ 79.804688, 50.958427 ], [ 80.156250, 50.958427 ], [ 80.156250, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 50.958427 ], [ 81.562500, 50.958427 ], [ 81.562500, 50.736455 ], [ 82.617188, 50.736455 ], [ 82.617188, 50.958427 ], [ 84.023438, 50.958427 ], [ 84.023438, 50.513427 ], [ 84.375000, 50.513427 ], [ 84.375000, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.610710 ], [ 86.484375, 49.610710 ], [ 86.484375, 49.837982 ], [ 86.835938, 49.837982 ], [ 86.835938, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.835938, 48.922499 ], [ 86.835938, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.279229 ], [ 85.429688, 47.279229 ], [ 85.429688, 47.040182 ], [ 84.023438, 47.040182 ], [ 84.023438, 47.279229 ], [ 83.320312, 47.279229 ], [ 83.320312, 46.800059 ], [ 82.968750, 46.800059 ], [ 82.968750, 45.828799 ], [ 82.617188, 45.828799 ], [ 82.617188, 45.336702 ], [ 81.562500, 45.336702 ], [ 81.562500, 45.089036 ], [ 80.507812, 45.089036 ], [ 80.507812, 44.840291 ], [ 79.804688, 44.840291 ], [ 79.804688, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 43.834527 ], [ 80.507812, 43.834527 ], [ 80.507812, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 42.811522 ], [ 80.156250, 42.811522 ], [ 80.156250, 42.293564 ], [ 79.804688, 42.293564 ], [ 79.804688, 42.553080 ], [ 79.101562, 42.553080 ], [ 79.101562, 42.811522 ], [ 78.046875, 42.811522 ], [ 78.046875, 43.068888 ], [ 75.937500, 43.068888 ], [ 75.937500, 42.811522 ], [ 74.882812, 42.811522 ], [ 74.882812, 43.068888 ], [ 73.476562, 43.068888 ], [ 73.476562, 42.553080 ], [ 72.421875, 42.553080 ], [ 72.421875, 42.811522 ], [ 71.015625, 42.811522 ], [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.771312 ], [ 69.609375, 41.771312 ], [ 69.609375, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.979898 ], [ 68.554688, 40.979898 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.979898 ], [ 67.851562, 40.979898 ], [ 67.851562, 41.244772 ], [ 66.796875, 41.244772 ], [ 66.796875, 41.508577 ], [ 66.445312, 41.508577 ], [ 66.445312, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.325178 ], [ 65.390625, 43.325178 ], [ 65.390625, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.834527 ], [ 64.335938, 43.834527 ], [ 64.335938, 43.580391 ], [ 61.523438, 43.580391 ], [ 61.523438, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.339565 ], [ 60.820312, 44.339565 ], [ 60.820312, 44.590467 ], [ 60.117188, 44.590467 ], [ 60.117188, 44.840291 ], [ 59.765625, 44.840291 ], [ 59.765625, 45.089036 ], [ 59.062500, 45.089036 ], [ 59.062500, 45.336702 ], [ 58.710938, 45.336702 ], [ 58.710938, 45.583290 ], [ 58.007812, 45.583290 ], [ 58.007812, 45.336702 ], [ 56.601562, 45.336702 ], [ 56.601562, 45.089036 ], [ 55.898438, 45.089036 ], [ 55.898438, 41.244772 ], [ 55.195312, 41.244772 ], [ 55.195312, 41.771312 ], [ 54.843750, 41.771312 ], [ 54.843750, 42.032974 ], [ 54.140625, 42.032974 ], [ 54.140625, 42.293564 ], [ 53.789062, 42.293564 ], [ 53.789062, 42.032974 ], [ 53.085938, 42.032974 ], [ 53.085938, 41.771312 ], [ 52.382812, 41.771312 ], [ 52.382812, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.553080 ], [ 52.382812, 42.553080 ], [ 52.382812, 42.811522 ], [ 51.679688, 42.811522 ], [ 51.679688, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.580391 ], [ 50.976562, 43.580391 ], [ 50.976562, 44.087585 ], [ 50.273438, 44.087585 ], [ 50.273438, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.336702 ], [ 53.085938, 45.336702 ], [ 53.085938, 46.800059 ], [ 50.625000, 46.800059 ], [ 50.625000, 46.558860 ], [ 49.921875, 46.558860 ], [ 49.921875, 46.316584 ], [ 48.515625, 46.316584 ], [ 48.515625, 46.800059 ], [ 48.867188, 46.800059 ], [ 48.867188, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 47.517201 ], [ 48.164062, 47.517201 ], [ 48.164062, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.989922 ], [ 46.757812, 47.989922 ], [ 46.757812, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.458352 ], [ 46.757812, 48.458352 ], [ 46.757812, 48.922499 ], [ 47.109375, 48.922499 ], [ 47.109375, 49.152970 ], [ 46.757812, 49.152970 ], [ 46.757812, 49.610710 ], [ 47.109375, 49.610710 ], [ 47.109375, 50.064192 ], [ 47.460938, 50.064192 ], [ 47.460938, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.064192 ], [ 48.867188, 50.064192 ], [ 48.867188, 50.513427 ], [ 49.218750, 50.513427 ], [ 49.218750, 50.736455 ], [ 49.570312, 50.736455 ], [ 49.570312, 50.958427 ], [ 49.921875, 50.958427 ], [ 49.921875, 51.179343 ], [ 50.273438, 51.179343 ], [ 50.273438, 51.399206 ], [ 50.625000, 51.399206 ], [ 50.625000, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.513427 ], [ 56.250000, 50.513427 ], [ 56.250000, 50.736455 ], [ 56.953125, 50.736455 ], [ 56.953125, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.513427 ], [ 59.765625, 50.513427 ], [ 59.765625, 50.736455 ], [ 61.171875, 50.736455 ], [ 61.171875, 50.958427 ], [ 61.523438, 50.958427 ], [ 61.523438, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.399206 ], [ 60.820312, 51.399206 ], [ 60.820312, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.835778 ], [ 60.117188, 51.835778 ], [ 60.117188, 52.052490 ], [ 60.468750, 52.052490 ], [ 60.468750, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.696361 ], [ 61.523438, 52.696361 ], [ 61.523438, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.540307 ], [ 60.820312, 53.540307 ], [ 60.820312, 53.748711 ], [ 61.523438, 53.748711 ], [ 61.523438, 53.956086 ], [ 62.578125, 53.956086 ], [ 62.578125, 54.162434 ], [ 64.335938, 54.162434 ], [ 64.335938, 54.367759 ], [ 65.742188, 54.367759 ], [ 65.742188, 54.572062 ], [ 66.445312, 54.572062 ], [ 66.445312, 54.775346 ], [ 67.851562, 54.775346 ], [ 67.851562, 54.977614 ], [ 68.554688, 54.977614 ], [ 68.554688, 55.178868 ], [ 68.906250, 55.178868 ], [ 68.906250, 55.379110 ], [ 69.609375, 55.379110 ], [ 69.609375, 55.178868 ], [ 71.015625, 55.178868 ], [ 71.015625, 54.162434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.609375, 55.379110 ], [ 69.609375, 55.178868 ], [ 71.015625, 55.178868 ], [ 71.015625, 54.162434 ], [ 71.718750, 54.162434 ], [ 71.718750, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 53.956086 ], [ 73.476562, 53.956086 ], [ 73.476562, 53.540307 ], [ 74.882812, 53.540307 ], [ 74.882812, 53.748711 ], [ 75.585938, 53.748711 ], [ 75.585938, 53.956086 ], [ 75.937500, 53.956086 ], [ 75.937500, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.367759 ], [ 76.640625, 54.367759 ], [ 76.640625, 53.956086 ], [ 76.992188, 53.956086 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 77.695312, 53.330873 ], [ 77.695312, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.804688, 51.399206 ], [ 79.804688, 50.958427 ], [ 80.156250, 50.958427 ], [ 80.156250, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 50.958427 ], [ 81.562500, 50.958427 ], [ 81.562500, 50.736455 ], [ 82.617188, 50.736455 ], [ 82.617188, 50.958427 ], [ 84.023438, 50.958427 ], [ 84.023438, 50.513427 ], [ 84.375000, 50.513427 ], [ 84.375000, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.610710 ], [ 86.484375, 49.610710 ], [ 86.484375, 49.837982 ], [ 86.835938, 49.837982 ], [ 86.835938, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.835938, 48.922499 ], [ 86.835938, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.279229 ], [ 85.429688, 47.279229 ], [ 85.429688, 47.040182 ], [ 84.023438, 47.040182 ], [ 84.023438, 47.279229 ], [ 83.320312, 47.279229 ], [ 83.320312, 46.800059 ], [ 82.968750, 46.800059 ], [ 82.968750, 45.828799 ], [ 82.617188, 45.828799 ], [ 82.617188, 45.336702 ], [ 81.562500, 45.336702 ], [ 81.562500, 45.089036 ], [ 80.507812, 45.089036 ], [ 80.507812, 44.840291 ], [ 79.804688, 44.840291 ], [ 79.804688, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 43.834527 ], [ 80.507812, 43.834527 ], [ 80.507812, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 42.811522 ], [ 80.156250, 42.811522 ], [ 80.156250, 42.293564 ], [ 79.804688, 42.293564 ], [ 79.804688, 42.553080 ], [ 79.101562, 42.553080 ], [ 79.101562, 42.811522 ], [ 78.046875, 42.811522 ], [ 78.046875, 43.068888 ], [ 75.937500, 43.068888 ], [ 75.937500, 42.811522 ], [ 74.882812, 42.811522 ], [ 74.882812, 43.068888 ], [ 73.476562, 43.068888 ], [ 73.476562, 42.553080 ], [ 72.421875, 42.553080 ], [ 72.421875, 42.811522 ], [ 71.015625, 42.811522 ], [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.771312 ], [ 69.609375, 41.771312 ], [ 69.609375, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.979898 ], [ 68.554688, 40.979898 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.979898 ], [ 67.851562, 40.979898 ], [ 67.851562, 41.244772 ], [ 66.796875, 41.244772 ], [ 66.796875, 41.508577 ], [ 66.445312, 41.508577 ], [ 66.445312, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.325178 ], [ 65.390625, 43.325178 ], [ 65.390625, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.834527 ], [ 64.335938, 43.834527 ], [ 64.335938, 43.580391 ], [ 61.523438, 43.580391 ], [ 61.523438, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.339565 ], [ 60.820312, 44.339565 ], [ 60.820312, 44.590467 ], [ 60.117188, 44.590467 ], [ 60.117188, 44.840291 ], [ 59.765625, 44.840291 ], [ 59.765625, 45.089036 ], [ 59.062500, 45.089036 ], [ 59.062500, 45.336702 ], [ 58.710938, 45.336702 ], [ 58.710938, 45.583290 ], [ 58.007812, 45.583290 ], [ 58.007812, 45.336702 ], [ 56.601562, 45.336702 ], [ 56.601562, 45.089036 ], [ 55.898438, 45.089036 ], [ 55.898438, 41.244772 ], [ 55.195312, 41.244772 ], [ 55.195312, 41.771312 ], [ 54.843750, 41.771312 ], [ 54.843750, 42.032974 ], [ 54.140625, 42.032974 ], [ 54.140625, 42.293564 ], [ 53.789062, 42.293564 ], [ 53.789062, 42.032974 ], [ 53.085938, 42.032974 ], [ 53.085938, 41.771312 ], [ 52.382812, 41.771312 ], [ 52.382812, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.553080 ], [ 52.382812, 42.553080 ], [ 52.382812, 42.811522 ], [ 51.679688, 42.811522 ], [ 51.679688, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.580391 ], [ 50.976562, 43.580391 ], [ 50.976562, 44.087585 ], [ 50.273438, 44.087585 ], [ 50.273438, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.336702 ], [ 53.085938, 45.336702 ], [ 53.085938, 46.800059 ], [ 50.625000, 46.800059 ], [ 50.625000, 46.558860 ], [ 49.921875, 46.558860 ], [ 49.921875, 46.316584 ], [ 48.515625, 46.316584 ], [ 48.515625, 46.800059 ], [ 48.867188, 46.800059 ], [ 48.867188, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 47.517201 ], [ 48.164062, 47.517201 ], [ 48.164062, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.989922 ], [ 46.757812, 47.989922 ], [ 46.757812, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.458352 ], [ 46.757812, 48.458352 ], [ 46.757812, 48.922499 ], [ 47.109375, 48.922499 ], [ 47.109375, 49.152970 ], [ 46.757812, 49.152970 ], [ 46.757812, 49.610710 ], [ 47.109375, 49.610710 ], [ 47.109375, 50.064192 ], [ 47.460938, 50.064192 ], [ 47.460938, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.064192 ], [ 48.867188, 50.064192 ], [ 48.867188, 50.513427 ], [ 49.218750, 50.513427 ], [ 49.218750, 50.736455 ], [ 49.570312, 50.736455 ], [ 49.570312, 50.958427 ], [ 49.921875, 50.958427 ], [ 49.921875, 51.179343 ], [ 50.273438, 51.179343 ], [ 50.273438, 51.399206 ], [ 50.625000, 51.399206 ], [ 50.625000, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.513427 ], [ 56.250000, 50.513427 ], [ 56.250000, 50.736455 ], [ 56.953125, 50.736455 ], [ 56.953125, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.513427 ], [ 59.765625, 50.513427 ], [ 59.765625, 50.736455 ], [ 61.171875, 50.736455 ], [ 61.171875, 50.958427 ], [ 61.523438, 50.958427 ], [ 61.523438, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.399206 ], [ 60.820312, 51.399206 ], [ 60.820312, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.835778 ], [ 60.117188, 51.835778 ], [ 60.117188, 52.052490 ], [ 60.468750, 52.052490 ], [ 60.468750, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.696361 ], [ 61.523438, 52.696361 ], [ 61.523438, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.540307 ], [ 60.820312, 53.540307 ], [ 60.820312, 53.748711 ], [ 61.523438, 53.748711 ], [ 61.523438, 53.956086 ], [ 62.578125, 53.956086 ], [ 62.578125, 54.162434 ], [ 64.335938, 54.162434 ], [ 64.335938, 54.367759 ], [ 65.742188, 54.367759 ], [ 65.742188, 54.572062 ], [ 66.445312, 54.572062 ], [ 66.445312, 54.775346 ], [ 67.851562, 54.775346 ], [ 67.851562, 54.977614 ], [ 68.554688, 54.977614 ], [ 68.554688, 55.178868 ], [ 68.906250, 55.178868 ], [ 68.906250, 55.379110 ], [ 69.609375, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.015625, 41.771312 ], [ 70.664062, 41.771312 ], [ 70.664062, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 41.244772 ], [ 72.421875, 41.244772 ], [ 72.421875, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.446947 ], [ 72.070312, 40.446947 ], [ 72.070312, 40.178873 ], [ 70.312500, 40.178873 ], [ 70.312500, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 39.909736 ], [ 68.554688, 39.909736 ], [ 68.554688, 39.639538 ], [ 67.851562, 39.639538 ], [ 67.851562, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 38.822591 ], [ 68.203125, 38.822591 ], [ 68.203125, 38.548165 ], [ 68.554688, 38.548165 ], [ 68.554688, 37.996163 ], [ 68.203125, 37.996163 ], [ 68.203125, 37.439974 ], [ 67.851562, 37.439974 ], [ 67.851562, 37.160317 ], [ 67.148438, 37.160317 ], [ 67.148438, 37.439974 ], [ 66.445312, 37.439974 ], [ 66.445312, 37.996163 ], [ 65.742188, 37.996163 ], [ 65.742188, 38.272689 ], [ 65.039062, 38.272689 ], [ 65.039062, 38.548165 ], [ 64.335938, 38.548165 ], [ 64.335938, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 39.095963 ], [ 63.632812, 39.095963 ], [ 63.632812, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.639538 ], [ 62.578125, 39.639538 ], [ 62.578125, 39.909736 ], [ 62.226562, 39.909736 ], [ 62.226562, 40.446947 ], [ 61.875000, 40.446947 ], [ 61.875000, 40.979898 ], [ 61.523438, 40.979898 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 42.293564 ], [ 59.414062, 42.293564 ], [ 59.414062, 42.553080 ], [ 58.007812, 42.553080 ], [ 58.007812, 42.293564 ], [ 57.656250, 42.293564 ], [ 57.656250, 42.032974 ], [ 57.304688, 42.032974 ], [ 57.304688, 41.771312 ], [ 56.953125, 41.771312 ], [ 56.953125, 41.244772 ], [ 55.898438, 41.244772 ], [ 55.898438, 45.089036 ], [ 56.601562, 45.089036 ], [ 56.601562, 45.336702 ], [ 58.007812, 45.336702 ], [ 58.007812, 45.583290 ], [ 58.710938, 45.583290 ], [ 58.710938, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.087585 ], [ 61.523438, 44.087585 ], [ 61.523438, 43.580391 ], [ 64.335938, 43.580391 ], [ 64.335938, 43.834527 ], [ 65.039062, 43.834527 ], [ 65.039062, 43.580391 ], [ 65.390625, 43.580391 ], [ 65.390625, 43.325178 ], [ 65.742188, 43.325178 ], [ 65.742188, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.508577 ], [ 66.796875, 41.508577 ], [ 66.796875, 41.244772 ], [ 67.851562, 41.244772 ], [ 67.851562, 40.979898 ], [ 68.203125, 40.979898 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.554688, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.771312 ], [ 70.312500, 41.771312 ], [ 70.312500, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.771312 ] ], [ [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 40.713956 ], [ 70.664062, 40.713956 ] ] ], [ [ [ 71.015625, 42.293564 ], [ 71.367188, 42.293564 ], [ 71.367188, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 42.293564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.710938, 45.583290 ], [ 58.710938, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.087585 ], [ 61.523438, 44.087585 ], [ 61.523438, 43.580391 ], [ 64.335938, 43.580391 ], [ 64.335938, 43.834527 ], [ 65.039062, 43.834527 ], [ 65.039062, 43.580391 ], [ 65.390625, 43.580391 ], [ 65.390625, 43.325178 ], [ 65.742188, 43.325178 ], [ 65.742188, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.508577 ], [ 66.796875, 41.508577 ], [ 66.796875, 41.244772 ], [ 67.851562, 41.244772 ], [ 67.851562, 40.979898 ], [ 68.203125, 40.979898 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.554688, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.771312 ], [ 70.312500, 41.771312 ], [ 70.312500, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.771312 ], [ 70.664062, 41.771312 ], [ 70.664062, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 41.244772 ], [ 72.421875, 41.244772 ], [ 72.421875, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.446947 ], [ 72.070312, 40.446947 ], [ 72.070312, 40.178873 ], [ 70.312500, 40.178873 ], [ 70.312500, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 39.909736 ], [ 68.554688, 39.909736 ], [ 68.554688, 39.639538 ], [ 67.851562, 39.639538 ], [ 67.851562, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 38.822591 ], [ 68.203125, 38.822591 ], [ 68.203125, 38.548165 ], [ 68.554688, 38.548165 ], [ 68.554688, 37.996163 ], [ 68.203125, 37.996163 ], [ 68.203125, 37.439974 ], [ 67.851562, 37.439974 ], [ 67.851562, 37.160317 ], [ 67.148438, 37.160317 ], [ 67.148438, 37.439974 ], [ 66.445312, 37.439974 ], [ 66.445312, 37.996163 ], [ 65.742188, 37.996163 ], [ 65.742188, 38.272689 ], [ 65.039062, 38.272689 ], [ 65.039062, 38.548165 ], [ 64.335938, 38.548165 ], [ 64.335938, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 39.095963 ], [ 63.632812, 39.095963 ], [ 63.632812, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.639538 ], [ 62.578125, 39.639538 ], [ 62.578125, 39.909736 ], [ 62.226562, 39.909736 ], [ 62.226562, 40.446947 ], [ 61.875000, 40.446947 ], [ 61.875000, 40.979898 ], [ 61.523438, 40.979898 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 42.293564 ], [ 59.414062, 42.293564 ], [ 59.414062, 42.553080 ], [ 58.007812, 42.553080 ], [ 58.007812, 42.293564 ], [ 57.656250, 42.293564 ], [ 57.656250, 42.032974 ], [ 57.304688, 42.032974 ], [ 57.304688, 41.771312 ], [ 56.953125, 41.771312 ], [ 56.953125, 41.244772 ], [ 55.898438, 41.244772 ], [ 55.898438, 45.089036 ], [ 56.601562, 45.089036 ], [ 56.601562, 45.336702 ], [ 58.007812, 45.336702 ], [ 58.007812, 45.583290 ], [ 58.710938, 45.583290 ] ], [ [ 70.312500, 40.979898 ], [ 70.312500, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.312500, 40.979898 ] ] ], [ [ [ 71.367188, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 42.293564 ], [ 71.367188, 42.293564 ], [ 71.367188, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.101562, 42.553080 ], [ 79.804688, 42.553080 ], [ 79.804688, 42.293564 ], [ 80.156250, 42.293564 ], [ 80.156250, 42.032974 ], [ 79.804688, 42.032974 ], [ 79.804688, 41.771312 ], [ 79.101562, 41.771312 ], [ 79.101562, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 74.882812, 40.446947 ], [ 74.882812, 40.178873 ], [ 74.179688, 40.178873 ], [ 74.179688, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.368279 ], [ 71.015625, 39.368279 ], [ 71.015625, 39.639538 ], [ 69.609375, 39.639538 ], [ 69.609375, 40.178873 ], [ 69.960938, 40.178873 ], [ 69.960938, 39.909736 ], [ 71.015625, 39.909736 ], [ 71.015625, 40.178873 ], [ 72.070312, 40.178873 ], [ 72.070312, 40.446947 ], [ 72.773438, 40.446947 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.979898 ], [ 72.421875, 40.979898 ], [ 72.421875, 41.244772 ], [ 70.312500, 41.244772 ], [ 70.312500, 41.508577 ], [ 70.664062, 41.508577 ], [ 70.664062, 41.771312 ], [ 71.015625, 41.771312 ], [ 71.015625, 42.032974 ], [ 71.367188, 42.032974 ], [ 71.367188, 42.293564 ], [ 71.015625, 42.293564 ], [ 71.015625, 42.811522 ], [ 72.421875, 42.811522 ], [ 72.421875, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 43.068888 ], [ 74.882812, 43.068888 ], [ 74.882812, 42.811522 ], [ 75.937500, 42.811522 ], [ 75.937500, 43.068888 ], [ 78.046875, 43.068888 ], [ 78.046875, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.046875, 43.068888 ], [ 78.046875, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 42.553080 ], [ 79.804688, 42.553080 ], [ 79.804688, 42.293564 ], [ 80.156250, 42.293564 ], [ 80.156250, 42.032974 ], [ 79.804688, 42.032974 ], [ 79.804688, 41.771312 ], [ 79.101562, 41.771312 ], [ 79.101562, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 74.882812, 40.446947 ], [ 74.882812, 40.178873 ], [ 74.179688, 40.178873 ], [ 74.179688, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.368279 ], [ 71.015625, 39.368279 ], [ 71.015625, 39.639538 ], [ 69.609375, 39.639538 ], [ 69.609375, 40.178873 ], [ 69.960938, 40.178873 ], [ 69.960938, 39.909736 ], [ 71.015625, 39.909736 ], [ 71.015625, 40.178873 ], [ 72.070312, 40.178873 ], [ 72.070312, 40.446947 ], [ 72.773438, 40.446947 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.979898 ], [ 72.421875, 40.979898 ], [ 72.421875, 41.244772 ], [ 70.312500, 41.244772 ], [ 70.312500, 41.508577 ], [ 70.664062, 41.508577 ], [ 70.664062, 41.771312 ], [ 71.015625, 41.771312 ], [ 71.015625, 42.032974 ], [ 71.367188, 42.032974 ], [ 71.367188, 42.293564 ], [ 71.015625, 42.293564 ], [ 71.015625, 42.811522 ], [ 72.421875, 42.811522 ], [ 72.421875, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 43.068888 ], [ 74.882812, 43.068888 ], [ 74.882812, 42.811522 ], [ 75.937500, 42.811522 ], [ 75.937500, 43.068888 ], [ 78.046875, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.351562, 40.713956 ], [ 45.703125, 40.713956 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.178873 ], [ 46.054688, 40.178873 ], [ 46.054688, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 39.639538 ], [ 46.054688, 39.639538 ], [ 46.054688, 39.368279 ], [ 46.406250, 39.368279 ], [ 46.406250, 38.822591 ], [ 46.054688, 38.822591 ], [ 46.054688, 39.095963 ], [ 45.703125, 39.095963 ], [ 45.703125, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.639538 ], [ 44.296875, 39.639538 ], [ 44.296875, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 44.648438, 40.979898 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.713956 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.713956 ], [ 45.703125, 40.713956 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.178873 ], [ 46.054688, 40.178873 ], [ 46.054688, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 39.639538 ], [ 46.054688, 39.639538 ], [ 46.054688, 39.368279 ], [ 46.406250, 39.368279 ], [ 46.406250, 38.822591 ], [ 46.054688, 38.822591 ], [ 46.054688, 39.095963 ], [ 45.703125, 39.095963 ], [ 45.703125, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.639538 ], [ 44.296875, 39.639538 ], [ 44.296875, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 44.648438, 40.979898 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.218750, 40.713956 ], [ 49.570312, 40.713956 ], [ 49.570312, 40.446947 ], [ 49.921875, 40.446947 ], [ 49.921875, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.095963 ], [ 49.218750, 39.095963 ], [ 49.218750, 38.822591 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.272689 ], [ 48.515625, 38.272689 ], [ 48.515625, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 39.095963 ], [ 48.515625, 39.095963 ], [ 48.515625, 39.368279 ], [ 48.164062, 39.368279 ], [ 48.164062, 39.639538 ], [ 47.812500, 39.639538 ], [ 47.812500, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.095963 ], [ 46.757812, 39.095963 ], [ 46.757812, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.368279 ], [ 46.054688, 39.368279 ], [ 46.054688, 39.639538 ], [ 45.703125, 39.639538 ], [ 45.703125, 39.909736 ], [ 46.054688, 39.909736 ], [ 46.054688, 40.178873 ], [ 45.351562, 40.178873 ], [ 45.351562, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.979898 ], [ 45.000000, 40.979898 ], [ 45.000000, 41.244772 ], [ 46.054688, 41.244772 ], [ 46.054688, 40.979898 ], [ 46.757812, 40.979898 ], [ 46.757812, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.054688, 41.508577 ], [ 46.054688, 41.771312 ], [ 46.757812, 41.771312 ], [ 46.757812, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ], [ 49.218750, 41.244772 ], [ 49.218750, 40.713956 ] ] ], [ [ [ 45.703125, 39.368279 ], [ 45.703125, 39.095963 ], [ 46.054688, 39.095963 ], [ 46.054688, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.000000, 39.095963 ], [ 45.000000, 39.368279 ], [ 45.703125, 39.368279 ] ] ], [ [ [ 44.648438, 39.368279 ], [ 44.648438, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.368279 ], [ 44.648438, 39.368279 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.757812, 41.771312 ], [ 46.757812, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ], [ 49.218750, 41.244772 ], [ 49.218750, 40.713956 ], [ 49.570312, 40.713956 ], [ 49.570312, 40.446947 ], [ 49.921875, 40.446947 ], [ 49.921875, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.095963 ], [ 49.218750, 39.095963 ], [ 49.218750, 38.822591 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.272689 ], [ 48.515625, 38.272689 ], [ 48.515625, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 39.095963 ], [ 48.515625, 39.095963 ], [ 48.515625, 39.368279 ], [ 48.164062, 39.368279 ], [ 48.164062, 39.639538 ], [ 47.812500, 39.639538 ], [ 47.812500, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.095963 ], [ 46.757812, 39.095963 ], [ 46.757812, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.368279 ], [ 46.054688, 39.368279 ], [ 46.054688, 39.639538 ], [ 45.703125, 39.639538 ], [ 45.703125, 39.909736 ], [ 46.054688, 39.909736 ], [ 46.054688, 40.178873 ], [ 45.351562, 40.178873 ], [ 45.351562, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.979898 ], [ 45.000000, 40.979898 ], [ 45.000000, 41.244772 ], [ 46.054688, 41.244772 ], [ 46.054688, 40.979898 ], [ 46.757812, 40.979898 ], [ 46.757812, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.054688, 41.508577 ], [ 46.054688, 41.771312 ], [ 46.757812, 41.771312 ] ] ], [ [ [ 45.000000, 39.368279 ], [ 45.703125, 39.368279 ], [ 45.703125, 39.095963 ], [ 46.054688, 39.095963 ], [ 46.054688, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.000000, 39.095963 ], [ 45.000000, 39.368279 ] ] ], [ [ [ 45.000000, 39.368279 ], [ 44.648438, 39.368279 ], [ 44.648438, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.368279 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.515625, 39.095963 ], [ 48.164062, 39.095963 ], [ 48.164062, 38.548165 ], [ 48.515625, 38.548165 ], [ 48.515625, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.996163 ], [ 49.218750, 37.996163 ], [ 49.218750, 37.718590 ], [ 49.570312, 37.718590 ], [ 49.570312, 37.439974 ], [ 50.273438, 37.439974 ], [ 50.273438, 37.160317 ], [ 50.625000, 37.160317 ], [ 50.625000, 36.879621 ], [ 51.328125, 36.879621 ], [ 51.328125, 36.597889 ], [ 53.437500, 36.597889 ], [ 53.437500, 36.879621 ], [ 53.789062, 36.879621 ], [ 53.789062, 37.160317 ], [ 54.492188, 37.160317 ], [ 54.492188, 37.439974 ], [ 55.195312, 37.439974 ], [ 55.195312, 37.718590 ], [ 55.546875, 37.718590 ], [ 55.546875, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 37.718590 ], [ 58.007812, 37.718590 ], [ 58.007812, 37.439974 ], [ 59.062500, 37.439974 ], [ 59.062500, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 36.879621 ], [ 60.117188, 36.879621 ], [ 60.117188, 36.597889 ], [ 61.171875, 36.597889 ], [ 61.171875, 34.885931 ], [ 60.820312, 34.885931 ], [ 60.820312, 34.016242 ], [ 60.468750, 34.016242 ], [ 60.468750, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.546813 ], [ 60.820312, 32.546813 ], [ 60.820312, 31.653381 ], [ 61.171875, 31.653381 ], [ 61.171875, 31.353637 ], [ 61.875000, 31.353637 ], [ 61.875000, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.228890 ], [ 61.523438, 29.228890 ], [ 61.523438, 28.921631 ], [ 61.875000, 28.921631 ], [ 61.875000, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.683528 ], [ 62.929688, 27.683528 ], [ 62.929688, 27.371767 ], [ 63.281250, 27.371767 ], [ 63.281250, 26.431228 ], [ 62.578125, 26.431228 ], [ 62.578125, 26.115986 ], [ 61.875000, 26.115986 ], [ 61.875000, 25.482951 ], [ 61.523438, 25.482951 ], [ 61.523438, 25.165173 ], [ 60.468750, 25.165173 ], [ 60.468750, 25.482951 ], [ 57.656250, 25.482951 ], [ 57.656250, 25.799891 ], [ 57.304688, 25.799891 ], [ 57.304688, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.898438, 27.059126 ], [ 55.898438, 26.745610 ], [ 55.195312, 26.745610 ], [ 55.195312, 26.431228 ], [ 53.789062, 26.431228 ], [ 53.789062, 26.745610 ], [ 53.085938, 26.745610 ], [ 53.085938, 27.059126 ], [ 52.734375, 27.059126 ], [ 52.734375, 27.371767 ], [ 52.382812, 27.371767 ], [ 52.382812, 27.683528 ], [ 51.679688, 27.683528 ], [ 51.679688, 27.994401 ], [ 51.328125, 27.994401 ], [ 51.328125, 28.613459 ], [ 50.976562, 28.613459 ], [ 50.976562, 29.228890 ], [ 50.625000, 29.228890 ], [ 50.625000, 29.840644 ], [ 49.218750, 29.840644 ], [ 49.218750, 30.145127 ], [ 48.164062, 30.145127 ], [ 48.164062, 31.052934 ], [ 47.812500, 31.052934 ], [ 47.812500, 31.952162 ], [ 47.460938, 31.952162 ], [ 47.460938, 32.546813 ], [ 46.757812, 32.546813 ], [ 46.757812, 32.842674 ], [ 46.054688, 32.842674 ], [ 46.054688, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 33.724340 ], [ 45.351562, 33.724340 ], [ 45.351562, 34.307144 ], [ 45.703125, 34.307144 ], [ 45.703125, 34.885931 ], [ 46.054688, 34.885931 ], [ 46.054688, 35.746512 ], [ 45.351562, 35.746512 ], [ 45.351562, 36.315125 ], [ 45.000000, 36.315125 ], [ 45.000000, 36.879621 ], [ 44.648438, 36.879621 ], [ 44.648438, 37.439974 ], [ 44.296875, 37.439974 ], [ 44.296875, 38.822591 ], [ 43.945312, 38.822591 ], [ 43.945312, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 46.757812, 38.822591 ], [ 46.757812, 39.095963 ], [ 47.460938, 39.095963 ], [ 47.460938, 39.368279 ], [ 47.812500, 39.368279 ], [ 47.812500, 39.639538 ], [ 48.164062, 39.639538 ], [ 48.164062, 39.368279 ], [ 48.515625, 39.368279 ], [ 48.515625, 39.095963 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.164062, 39.639538 ], [ 48.164062, 39.368279 ], [ 48.515625, 39.368279 ], [ 48.515625, 39.095963 ], [ 48.164062, 39.095963 ], [ 48.164062, 38.548165 ], [ 48.515625, 38.548165 ], [ 48.515625, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.996163 ], [ 49.218750, 37.996163 ], [ 49.218750, 37.718590 ], [ 49.570312, 37.718590 ], [ 49.570312, 37.439974 ], [ 50.273438, 37.439974 ], [ 50.273438, 37.160317 ], [ 50.625000, 37.160317 ], [ 50.625000, 36.879621 ], [ 51.328125, 36.879621 ], [ 51.328125, 36.597889 ], [ 53.437500, 36.597889 ], [ 53.437500, 36.879621 ], [ 53.789062, 36.879621 ], [ 53.789062, 37.160317 ], [ 54.492188, 37.160317 ], [ 54.492188, 37.439974 ], [ 55.195312, 37.439974 ], [ 55.195312, 37.718590 ], [ 55.546875, 37.718590 ], [ 55.546875, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 37.718590 ], [ 58.007812, 37.718590 ], [ 58.007812, 37.439974 ], [ 59.062500, 37.439974 ], [ 59.062500, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 36.879621 ], [ 60.117188, 36.879621 ], [ 60.117188, 36.597889 ], [ 61.171875, 36.597889 ], [ 61.171875, 34.885931 ], [ 60.820312, 34.885931 ], [ 60.820312, 34.016242 ], [ 60.468750, 34.016242 ], [ 60.468750, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.546813 ], [ 60.820312, 32.546813 ], [ 60.820312, 31.653381 ], [ 61.171875, 31.653381 ], [ 61.171875, 31.353637 ], [ 61.875000, 31.353637 ], [ 61.875000, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.228890 ], [ 61.523438, 29.228890 ], [ 61.523438, 28.921631 ], [ 61.875000, 28.921631 ], [ 61.875000, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.683528 ], [ 62.929688, 27.683528 ], [ 62.929688, 27.371767 ], [ 63.281250, 27.371767 ], [ 63.281250, 26.431228 ], [ 62.578125, 26.431228 ], [ 62.578125, 26.115986 ], [ 61.875000, 26.115986 ], [ 61.875000, 25.482951 ], [ 61.523438, 25.482951 ], [ 61.523438, 25.165173 ], [ 60.468750, 25.165173 ], [ 60.468750, 25.482951 ], [ 57.656250, 25.482951 ], [ 57.656250, 25.799891 ], [ 57.304688, 25.799891 ], [ 57.304688, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.898438, 27.059126 ], [ 55.898438, 26.745610 ], [ 55.195312, 26.745610 ], [ 55.195312, 26.431228 ], [ 53.789062, 26.431228 ], [ 53.789062, 26.745610 ], [ 53.085938, 26.745610 ], [ 53.085938, 27.059126 ], [ 52.734375, 27.059126 ], [ 52.734375, 27.371767 ], [ 52.382812, 27.371767 ], [ 52.382812, 27.683528 ], [ 51.679688, 27.683528 ], [ 51.679688, 27.994401 ], [ 51.328125, 27.994401 ], [ 51.328125, 28.613459 ], [ 50.976562, 28.613459 ], [ 50.976562, 29.228890 ], [ 50.625000, 29.228890 ], [ 50.625000, 29.840644 ], [ 49.218750, 29.840644 ], [ 49.218750, 30.145127 ], [ 48.164062, 30.145127 ], [ 48.164062, 31.052934 ], [ 47.812500, 31.052934 ], [ 47.812500, 31.952162 ], [ 47.460938, 31.952162 ], [ 47.460938, 32.546813 ], [ 46.757812, 32.546813 ], [ 46.757812, 32.842674 ], [ 46.054688, 32.842674 ], [ 46.054688, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 33.724340 ], [ 45.351562, 33.724340 ], [ 45.351562, 34.307144 ], [ 45.703125, 34.307144 ], [ 45.703125, 34.885931 ], [ 46.054688, 34.885931 ], [ 46.054688, 35.746512 ], [ 45.351562, 35.746512 ], [ 45.351562, 36.315125 ], [ 45.000000, 36.315125 ], [ 45.000000, 36.879621 ], [ 44.648438, 36.879621 ], [ 44.648438, 37.439974 ], [ 44.296875, 37.439974 ], [ 44.296875, 38.822591 ], [ 43.945312, 38.822591 ], [ 43.945312, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 46.757812, 38.822591 ], [ 46.757812, 39.095963 ], [ 47.460938, 39.095963 ], [ 47.460938, 39.368279 ], [ 47.812500, 39.368279 ], [ 47.812500, 39.639538 ], [ 48.164062, 39.639538 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.164062, 28.921631 ], [ 48.515625, 28.921631 ], [ 48.515625, 28.613459 ], [ 47.460938, 28.613459 ], [ 47.460938, 28.921631 ], [ 46.757812, 28.921631 ], [ 46.757812, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 29.840644 ], [ 47.812500, 29.840644 ], [ 47.812500, 29.535230 ], [ 48.164062, 29.535230 ], [ 48.164062, 28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 29.840644 ], [ 47.812500, 29.535230 ], [ 48.164062, 29.535230 ], [ 48.164062, 28.921631 ], [ 48.515625, 28.921631 ], [ 48.515625, 28.613459 ], [ 47.460938, 28.613459 ], [ 47.460938, 28.921631 ], [ 46.757812, 28.921631 ], [ 46.757812, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 29.840644 ], [ 47.812500, 29.840644 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, 31.653381 ], [ 40.781250, 31.653381 ], [ 40.781250, 31.353637 ], [ 41.484375, 31.353637 ], [ 41.484375, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.145127 ], [ 43.242188, 30.145127 ], [ 43.242188, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.228890 ], [ 46.757812, 29.228890 ], [ 46.757812, 28.921631 ], [ 47.460938, 28.921631 ], [ 47.460938, 28.613459 ], [ 48.515625, 28.613459 ], [ 48.515625, 27.994401 ], [ 48.867188, 27.994401 ], [ 48.867188, 27.371767 ], [ 49.218750, 27.371767 ], [ 49.218750, 27.059126 ], [ 49.570312, 27.059126 ], [ 49.570312, 26.745610 ], [ 50.273438, 26.745610 ], [ 50.273438, 25.482951 ], [ 50.625000, 25.482951 ], [ 50.625000, 24.846565 ], [ 50.976562, 24.846565 ], [ 50.976562, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 24.206890 ], [ 51.679688, 24.206890 ], [ 51.679688, 23.241346 ], [ 52.031250, 23.241346 ], [ 52.031250, 22.917923 ], [ 53.085938, 22.917923 ], [ 53.085938, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 22.268764 ], [ 55.546875, 22.268764 ], [ 55.546875, 21.289374 ], [ 55.195312, 21.289374 ], [ 55.195312, 20.303418 ], [ 54.843750, 20.303418 ], [ 54.843750, 19.973349 ], [ 54.492188, 19.973349 ], [ 54.492188, 19.642588 ], [ 53.789062, 19.642588 ], [ 53.789062, 19.311143 ], [ 52.734375, 19.311143 ], [ 52.734375, 18.979026 ], [ 50.976562, 18.979026 ], [ 50.976562, 18.646245 ], [ 48.867188, 18.646245 ], [ 48.867188, 18.312811 ], [ 48.164062, 18.312811 ], [ 48.164062, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 17.308688 ], [ 47.460938, 17.308688 ], [ 47.460938, 16.972741 ], [ 46.757812, 16.972741 ], [ 46.757812, 17.308688 ], [ 43.242188, 17.308688 ], [ 43.242188, 16.299051 ], [ 42.539062, 16.299051 ], [ 42.539062, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.644022 ], [ 41.835938, 17.644022 ], [ 41.835938, 17.978733 ], [ 41.484375, 17.978733 ], [ 41.484375, 18.312811 ], [ 41.132812, 18.312811 ], [ 41.132812, 18.979026 ], [ 40.781250, 18.979026 ], [ 40.781250, 19.642588 ], [ 40.429688, 19.642588 ], [ 40.429688, 19.973349 ], [ 40.078125, 19.973349 ], [ 40.078125, 20.303418 ], [ 39.375000, 20.303418 ], [ 39.375000, 20.961440 ], [ 39.023438, 20.961440 ], [ 39.023438, 22.593726 ], [ 38.671875, 22.593726 ], [ 38.671875, 23.241346 ], [ 38.320312, 23.241346 ], [ 38.320312, 23.885838 ], [ 37.968750, 23.885838 ], [ 37.968750, 24.206890 ], [ 37.617188, 24.206890 ], [ 37.617188, 24.527135 ], [ 37.265625, 24.527135 ], [ 37.265625, 25.165173 ], [ 36.914062, 25.165173 ], [ 36.914062, 25.482951 ], [ 36.562500, 25.482951 ], [ 36.562500, 26.115986 ], [ 36.210938, 26.115986 ], [ 36.210938, 26.431228 ], [ 35.859375, 26.431228 ], [ 35.859375, 27.059126 ], [ 35.507812, 27.059126 ], [ 35.507812, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 27.994401 ], [ 34.804688, 27.994401 ], [ 34.804688, 29.228890 ], [ 36.562500, 29.228890 ], [ 36.562500, 29.535230 ], [ 36.914062, 29.535230 ], [ 36.914062, 29.840644 ], [ 37.617188, 29.840644 ], [ 37.617188, 31.052934 ], [ 37.265625, 31.052934 ], [ 37.265625, 31.353637 ], [ 36.914062, 31.353637 ], [ 36.914062, 31.653381 ], [ 38.320312, 31.653381 ], [ 38.320312, 31.952162 ], [ 39.023438, 31.952162 ], [ 39.023438, 32.249974 ], [ 39.375000, 32.249974 ], [ 39.375000, 31.952162 ], [ 40.429688, 31.952162 ], [ 40.429688, 31.653381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 32.249974 ], [ 39.375000, 31.952162 ], [ 40.429688, 31.952162 ], [ 40.429688, 31.653381 ], [ 40.781250, 31.653381 ], [ 40.781250, 31.353637 ], [ 41.484375, 31.353637 ], [ 41.484375, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.145127 ], [ 43.242188, 30.145127 ], [ 43.242188, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.228890 ], [ 46.757812, 29.228890 ], [ 46.757812, 28.921631 ], [ 47.460938, 28.921631 ], [ 47.460938, 28.613459 ], [ 48.515625, 28.613459 ], [ 48.515625, 27.994401 ], [ 48.867188, 27.994401 ], [ 48.867188, 27.371767 ], [ 49.218750, 27.371767 ], [ 49.218750, 27.059126 ], [ 49.570312, 27.059126 ], [ 49.570312, 26.745610 ], [ 50.273438, 26.745610 ], [ 50.273438, 25.482951 ], [ 50.625000, 25.482951 ], [ 50.625000, 24.846565 ], [ 50.976562, 24.846565 ], [ 50.976562, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 24.206890 ], [ 51.679688, 24.206890 ], [ 51.679688, 23.241346 ], [ 52.031250, 23.241346 ], [ 52.031250, 22.917923 ], [ 53.085938, 22.917923 ], [ 53.085938, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 22.268764 ], [ 55.546875, 22.268764 ], [ 55.546875, 21.289374 ], [ 55.195312, 21.289374 ], [ 55.195312, 20.303418 ], [ 54.843750, 20.303418 ], [ 54.843750, 19.973349 ], [ 54.492188, 19.973349 ], [ 54.492188, 19.642588 ], [ 53.789062, 19.642588 ], [ 53.789062, 19.311143 ], [ 52.734375, 19.311143 ], [ 52.734375, 18.979026 ], [ 50.976562, 18.979026 ], [ 50.976562, 18.646245 ], [ 48.867188, 18.646245 ], [ 48.867188, 18.312811 ], [ 48.164062, 18.312811 ], [ 48.164062, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 17.308688 ], [ 47.460938, 17.308688 ], [ 47.460938, 16.972741 ], [ 46.757812, 16.972741 ], [ 46.757812, 17.308688 ], [ 43.242188, 17.308688 ], [ 43.242188, 16.299051 ], [ 42.539062, 16.299051 ], [ 42.539062, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.644022 ], [ 41.835938, 17.644022 ], [ 41.835938, 17.978733 ], [ 41.484375, 17.978733 ], [ 41.484375, 18.312811 ], [ 41.132812, 18.312811 ], [ 41.132812, 18.979026 ], [ 40.781250, 18.979026 ], [ 40.781250, 19.642588 ], [ 40.429688, 19.642588 ], [ 40.429688, 19.973349 ], [ 40.078125, 19.973349 ], [ 40.078125, 20.303418 ], [ 39.375000, 20.303418 ], [ 39.375000, 20.961440 ], [ 39.023438, 20.961440 ], [ 39.023438, 22.593726 ], [ 38.671875, 22.593726 ], [ 38.671875, 23.241346 ], [ 38.320312, 23.241346 ], [ 38.320312, 23.885838 ], [ 37.968750, 23.885838 ], [ 37.968750, 24.206890 ], [ 37.617188, 24.206890 ], [ 37.617188, 24.527135 ], [ 37.265625, 24.527135 ], [ 37.265625, 25.165173 ], [ 36.914062, 25.165173 ], [ 36.914062, 25.482951 ], [ 36.562500, 25.482951 ], [ 36.562500, 26.115986 ], [ 36.210938, 26.115986 ], [ 36.210938, 26.431228 ], [ 35.859375, 26.431228 ], [ 35.859375, 27.059126 ], [ 35.507812, 27.059126 ], [ 35.507812, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 27.994401 ], [ 34.804688, 27.994401 ], [ 34.804688, 29.228890 ], [ 36.562500, 29.228890 ], [ 36.562500, 29.535230 ], [ 36.914062, 29.535230 ], [ 36.914062, 29.840644 ], [ 37.617188, 29.840644 ], [ 37.617188, 31.052934 ], [ 37.265625, 31.052934 ], [ 37.265625, 31.353637 ], [ 36.914062, 31.353637 ], [ 36.914062, 31.653381 ], [ 38.320312, 31.653381 ], [ 38.320312, 31.952162 ], [ 39.023438, 31.952162 ], [ 39.023438, 32.249974 ], [ 39.375000, 32.249974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.679688, 24.846565 ], [ 51.328125, 24.846565 ], [ 51.328125, 24.527135 ], [ 50.976562, 24.527135 ], [ 50.976562, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 25.799891 ], [ 50.976562, 25.799891 ], [ 50.976562, 26.115986 ], [ 51.328125, 26.115986 ], [ 51.328125, 25.799891 ], [ 51.679688, 25.799891 ], [ 51.679688, 24.846565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 26.115986 ], [ 51.328125, 25.799891 ], [ 51.679688, 25.799891 ], [ 51.679688, 24.846565 ], [ 51.328125, 24.846565 ], [ 51.328125, 24.527135 ], [ 50.976562, 24.527135 ], [ 50.976562, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 25.799891 ], [ 50.976562, 25.799891 ], [ 50.976562, 26.115986 ], [ 51.328125, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 24.846565 ], [ 55.898438, 24.846565 ], [ 55.898438, 23.885838 ], [ 55.546875, 23.885838 ], [ 55.546875, 23.241346 ], [ 55.195312, 23.241346 ], [ 55.195312, 22.593726 ], [ 53.085938, 22.593726 ], [ 53.085938, 22.917923 ], [ 52.031250, 22.917923 ], [ 52.031250, 23.241346 ], [ 51.679688, 23.241346 ], [ 51.679688, 23.885838 ], [ 52.382812, 23.885838 ], [ 52.382812, 24.206890 ], [ 54.492188, 24.206890 ], [ 54.492188, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 24.846565 ], [ 55.195312, 24.846565 ], [ 55.195312, 25.165173 ], [ 55.546875, 25.165173 ], [ 55.546875, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 24.846565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.799891 ], [ 56.250000, 24.846565 ], [ 55.898438, 24.846565 ], [ 55.898438, 23.885838 ], [ 55.546875, 23.885838 ], [ 55.546875, 23.241346 ], [ 55.195312, 23.241346 ], [ 55.195312, 22.593726 ], [ 53.085938, 22.593726 ], [ 53.085938, 22.917923 ], [ 52.031250, 22.917923 ], [ 52.031250, 23.241346 ], [ 51.679688, 23.241346 ], [ 51.679688, 23.885838 ], [ 52.382812, 23.885838 ], [ 52.382812, 24.206890 ], [ 54.492188, 24.206890 ], [ 54.492188, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 24.846565 ], [ 55.195312, 24.846565 ], [ 55.195312, 25.165173 ], [ 55.546875, 25.165173 ], [ 55.546875, 25.799891 ], [ 56.250000, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 53.085938, 42.032974 ], [ 53.789062, 42.032974 ], [ 53.789062, 42.293564 ], [ 54.140625, 42.293564 ], [ 54.140625, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.771312 ], [ 55.195312, 41.771312 ], [ 55.195312, 41.244772 ], [ 56.953125, 41.244772 ], [ 56.953125, 41.771312 ], [ 57.304688, 41.771312 ], [ 57.304688, 42.032974 ], [ 57.656250, 42.032974 ], [ 57.656250, 42.293564 ], [ 58.007812, 42.293564 ], [ 58.007812, 42.553080 ], [ 59.414062, 42.553080 ], [ 59.414062, 42.293564 ], [ 60.117188, 42.293564 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 40.446947 ], [ 62.226562, 40.446947 ], [ 62.226562, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.639538 ], [ 63.281250, 39.639538 ], [ 63.281250, 39.368279 ], [ 63.632812, 39.368279 ], [ 63.632812, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.822591 ], [ 64.335938, 38.822591 ], [ 64.335938, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 37.996163 ], [ 66.445312, 37.996163 ], [ 66.445312, 37.439974 ], [ 65.390625, 37.439974 ], [ 65.390625, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.031332 ], [ 63.984375, 36.031332 ], [ 63.984375, 35.746512 ], [ 63.281250, 35.746512 ], [ 63.281250, 35.460670 ], [ 62.929688, 35.460670 ], [ 62.929688, 35.173808 ], [ 61.875000, 35.173808 ], [ 61.875000, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 36.597889 ], [ 60.117188, 36.597889 ], [ 60.117188, 36.879621 ], [ 59.414062, 36.879621 ], [ 59.414062, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 37.439974 ], [ 58.007812, 37.439974 ], [ 58.007812, 37.718590 ], [ 57.304688, 37.718590 ], [ 57.304688, 37.996163 ], [ 55.546875, 37.996163 ], [ 55.546875, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.439974 ], [ 54.492188, 37.439974 ], [ 54.492188, 37.160317 ], [ 53.789062, 37.160317 ], [ 53.789062, 38.822591 ], [ 53.437500, 38.822591 ], [ 53.437500, 39.095963 ], [ 53.085938, 39.095963 ], [ 53.085938, 39.639538 ], [ 53.437500, 39.639538 ], [ 53.437500, 39.909736 ], [ 52.734375, 39.909736 ], [ 52.734375, 40.446947 ], [ 53.085938, 40.446947 ], [ 53.085938, 40.713956 ], [ 54.492188, 40.713956 ], [ 54.492188, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.771312 ], [ 53.085938, 41.771312 ], [ 53.085938, 42.032974 ] ] ], [ [ [ 53.085938, 41.508577 ], [ 52.382812, 41.508577 ], [ 52.382812, 41.771312 ], [ 53.085938, 41.771312 ], [ 53.085938, 41.508577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.414062, 42.553080 ], [ 59.414062, 42.293564 ], [ 60.117188, 42.293564 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 40.446947 ], [ 62.226562, 40.446947 ], [ 62.226562, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.639538 ], [ 63.281250, 39.639538 ], [ 63.281250, 39.368279 ], [ 63.632812, 39.368279 ], [ 63.632812, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.822591 ], [ 64.335938, 38.822591 ], [ 64.335938, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 37.996163 ], [ 66.445312, 37.996163 ], [ 66.445312, 37.439974 ], [ 65.390625, 37.439974 ], [ 65.390625, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.031332 ], [ 63.984375, 36.031332 ], [ 63.984375, 35.746512 ], [ 63.281250, 35.746512 ], [ 63.281250, 35.460670 ], [ 62.929688, 35.460670 ], [ 62.929688, 35.173808 ], [ 61.875000, 35.173808 ], [ 61.875000, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 36.597889 ], [ 60.117188, 36.597889 ], [ 60.117188, 36.879621 ], [ 59.414062, 36.879621 ], [ 59.414062, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 37.439974 ], [ 58.007812, 37.439974 ], [ 58.007812, 37.718590 ], [ 57.304688, 37.718590 ], [ 57.304688, 37.996163 ], [ 55.546875, 37.996163 ], [ 55.546875, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.439974 ], [ 54.492188, 37.439974 ], [ 54.492188, 37.160317 ], [ 53.789062, 37.160317 ], [ 53.789062, 38.822591 ], [ 53.437500, 38.822591 ], [ 53.437500, 39.095963 ], [ 53.085938, 39.095963 ], [ 53.085938, 39.639538 ], [ 53.437500, 39.639538 ], [ 53.437500, 39.909736 ], [ 52.734375, 39.909736 ], [ 52.734375, 40.446947 ], [ 53.085938, 40.446947 ], [ 53.085938, 40.713956 ], [ 54.492188, 40.713956 ], [ 54.492188, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.771312 ], [ 53.085938, 41.771312 ], [ 53.085938, 42.032974 ], [ 53.789062, 42.032974 ], [ 53.789062, 42.293564 ], [ 54.140625, 42.293564 ], [ 54.140625, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.771312 ], [ 55.195312, 41.771312 ], [ 55.195312, 41.244772 ], [ 56.953125, 41.244772 ], [ 56.953125, 41.771312 ], [ 57.304688, 41.771312 ], [ 57.304688, 42.032974 ], [ 57.656250, 42.032974 ], [ 57.656250, 42.293564 ], [ 58.007812, 42.293564 ], [ 58.007812, 42.553080 ], [ 59.414062, 42.553080 ] ] ], [ [ [ 53.085938, 41.771312 ], [ 53.085938, 41.508577 ], [ 52.382812, 41.508577 ], [ 52.382812, 41.771312 ], [ 53.085938, 41.771312 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.382812, 17.644022 ], [ 52.734375, 17.644022 ], [ 52.734375, 16.972741 ], [ 53.085938, 16.972741 ], [ 53.085938, 16.299051 ], [ 52.382812, 16.299051 ], [ 52.382812, 15.961329 ], [ 52.031250, 15.961329 ], [ 52.031250, 15.284185 ], [ 50.976562, 15.284185 ], [ 50.976562, 14.944785 ], [ 50.273438, 14.944785 ], [ 50.273438, 14.604847 ], [ 49.570312, 14.604847 ], [ 49.570312, 14.264383 ], [ 48.867188, 14.264383 ], [ 48.867188, 13.923404 ], [ 47.812500, 13.923404 ], [ 47.812500, 13.581921 ], [ 47.460938, 13.581921 ], [ 47.460938, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 12.897489 ], [ 45.000000, 12.897489 ], [ 45.000000, 12.554564 ], [ 43.593750, 12.554564 ], [ 43.593750, 12.897489 ], [ 43.242188, 12.897489 ], [ 43.242188, 14.264383 ], [ 42.890625, 14.264383 ], [ 42.890625, 14.944785 ], [ 42.539062, 14.944785 ], [ 42.539062, 15.623037 ], [ 42.890625, 15.623037 ], [ 42.890625, 16.299051 ], [ 43.242188, 16.299051 ], [ 43.242188, 17.308688 ], [ 46.757812, 17.308688 ], [ 46.757812, 16.972741 ], [ 47.460938, 16.972741 ], [ 47.460938, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 17.978733 ], [ 48.164062, 17.978733 ], [ 48.164062, 18.312811 ], [ 48.867188, 18.312811 ], [ 48.867188, 18.646245 ], [ 50.976562, 18.646245 ], [ 50.976562, 18.979026 ], [ 52.031250, 18.979026 ], [ 52.031250, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.644022 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 18.979026 ], [ 52.031250, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.644022 ], [ 52.734375, 17.644022 ], [ 52.734375, 16.972741 ], [ 53.085938, 16.972741 ], [ 53.085938, 16.299051 ], [ 52.382812, 16.299051 ], [ 52.382812, 15.961329 ], [ 52.031250, 15.961329 ], [ 52.031250, 15.284185 ], [ 50.976562, 15.284185 ], [ 50.976562, 14.944785 ], [ 50.273438, 14.944785 ], [ 50.273438, 14.604847 ], [ 49.570312, 14.604847 ], [ 49.570312, 14.264383 ], [ 48.867188, 14.264383 ], [ 48.867188, 13.923404 ], [ 47.812500, 13.923404 ], [ 47.812500, 13.581921 ], [ 47.460938, 13.581921 ], [ 47.460938, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 12.897489 ], [ 45.000000, 12.897489 ], [ 45.000000, 12.554564 ], [ 43.593750, 12.554564 ], [ 43.593750, 12.897489 ], [ 43.242188, 12.897489 ], [ 43.242188, 14.264383 ], [ 42.890625, 14.264383 ], [ 42.890625, 14.944785 ], [ 42.539062, 14.944785 ], [ 42.539062, 15.623037 ], [ 42.890625, 15.623037 ], [ 42.890625, 16.299051 ], [ 43.242188, 16.299051 ], [ 43.242188, 17.308688 ], [ 46.757812, 17.308688 ], [ 46.757812, 16.972741 ], [ 47.460938, 16.972741 ], [ 47.460938, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 17.978733 ], [ 48.164062, 17.978733 ], [ 48.164062, 18.312811 ], [ 48.867188, 18.312811 ], [ 48.867188, 18.646245 ], [ 50.976562, 18.646245 ], [ 50.976562, 18.979026 ], [ 52.031250, 18.979026 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.007812, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 21.943046 ], [ 59.414062, 21.943046 ], [ 59.414062, 20.961440 ], [ 58.710938, 20.961440 ], [ 58.710938, 20.632784 ], [ 58.359375, 20.632784 ], [ 58.359375, 20.303418 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 57.304688, 18.979026 ], [ 57.304688, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 16.972741 ], [ 54.140625, 16.972741 ], [ 54.140625, 16.636192 ], [ 53.085938, 16.636192 ], [ 53.085938, 16.972741 ], [ 52.734375, 16.972741 ], [ 52.734375, 17.644022 ], [ 52.382812, 17.644022 ], [ 52.382812, 18.312811 ], [ 52.031250, 18.312811 ], [ 52.031250, 18.979026 ], [ 52.734375, 18.979026 ], [ 52.734375, 19.311143 ], [ 53.789062, 19.311143 ], [ 53.789062, 19.642588 ], [ 54.492188, 19.642588 ], [ 54.492188, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 20.303418 ], [ 55.195312, 20.303418 ], [ 55.195312, 21.289374 ], [ 55.546875, 21.289374 ], [ 55.546875, 22.268764 ], [ 55.195312, 22.268764 ], [ 55.195312, 23.241346 ], [ 55.546875, 23.241346 ], [ 55.546875, 23.885838 ], [ 55.898438, 23.885838 ], [ 55.898438, 24.846565 ], [ 56.250000, 24.846565 ], [ 56.250000, 24.527135 ], [ 56.601562, 24.527135 ], [ 56.601562, 24.206890 ], [ 56.953125, 24.206890 ], [ 56.953125, 23.885838 ], [ 58.007812, 23.885838 ], [ 58.007812, 23.563987 ] ] ], [ [ [ 56.250000, 26.431228 ], [ 56.601562, 26.431228 ], [ 56.601562, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 26.431228 ] ] ], [ [ [ 56.250000, 25.799891 ], [ 55.898438, 25.799891 ], [ 55.898438, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.250000, 24.846565 ], [ 56.250000, 24.527135 ], [ 56.601562, 24.527135 ], [ 56.601562, 24.206890 ], [ 56.953125, 24.206890 ], [ 56.953125, 23.885838 ], [ 58.007812, 23.885838 ], [ 58.007812, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 21.943046 ], [ 59.414062, 21.943046 ], [ 59.414062, 20.961440 ], [ 58.710938, 20.961440 ], [ 58.710938, 20.632784 ], [ 58.359375, 20.632784 ], [ 58.359375, 20.303418 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 57.304688, 18.979026 ], [ 57.304688, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 16.972741 ], [ 54.140625, 16.972741 ], [ 54.140625, 16.636192 ], [ 53.085938, 16.636192 ], [ 53.085938, 16.972741 ], [ 52.734375, 16.972741 ], [ 52.734375, 17.644022 ], [ 52.382812, 17.644022 ], [ 52.382812, 18.312811 ], [ 52.031250, 18.312811 ], [ 52.031250, 18.979026 ], [ 52.734375, 18.979026 ], [ 52.734375, 19.311143 ], [ 53.789062, 19.311143 ], [ 53.789062, 19.642588 ], [ 54.492188, 19.642588 ], [ 54.492188, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 20.303418 ], [ 55.195312, 20.303418 ], [ 55.195312, 21.289374 ], [ 55.546875, 21.289374 ], [ 55.546875, 22.268764 ], [ 55.195312, 22.268764 ], [ 55.195312, 23.241346 ], [ 55.546875, 23.241346 ], [ 55.546875, 23.885838 ], [ 55.898438, 23.885838 ], [ 55.898438, 24.846565 ], [ 56.250000, 24.846565 ] ] ], [ [ [ 56.250000, 26.115986 ], [ 56.250000, 25.799891 ], [ 55.898438, 25.799891 ], [ 55.898438, 26.115986 ], [ 56.250000, 26.115986 ] ] ], [ [ [ 56.601562, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 26.431228 ], [ 56.601562, 26.431228 ], [ 56.601562, 26.115986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 8.407168 ], [ 48.164062, 8.407168 ], [ 48.164062, 8.059230 ], [ 46.406250, 8.059230 ], [ 46.406250, 8.407168 ], [ 45.000000, 8.407168 ], [ 45.000000, 8.754795 ], [ 43.945312, 8.754795 ], [ 43.945312, 9.102097 ], [ 43.242188, 9.102097 ], [ 43.242188, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 10.141932 ], [ 42.539062, 10.141932 ], [ 42.539062, 10.487812 ], [ 42.890625, 10.487812 ], [ 42.890625, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.487812 ], [ 45.351562, 10.487812 ], [ 45.351562, 10.833306 ], [ 47.460938, 10.833306 ], [ 47.460938, 11.178402 ], [ 48.515625, 11.178402 ], [ 48.515625, 11.523088 ], [ 48.867188, 11.523088 ], [ 48.867188, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 11.523088 ], [ 48.867188, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 8.407168 ], [ 48.164062, 8.407168 ], [ 48.164062, 8.059230 ], [ 46.406250, 8.059230 ], [ 46.406250, 8.407168 ], [ 45.000000, 8.407168 ], [ 45.000000, 8.754795 ], [ 43.945312, 8.754795 ], [ 43.945312, 9.102097 ], [ 43.242188, 9.102097 ], [ 43.242188, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 10.141932 ], [ 42.539062, 10.141932 ], [ 42.539062, 10.487812 ], [ 42.890625, 10.487812 ], [ 42.890625, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.487812 ], [ 45.351562, 10.487812 ], [ 45.351562, 10.833306 ], [ 47.460938, 10.833306 ], [ 47.460938, 11.178402 ], [ 48.515625, 11.178402 ], [ 48.515625, 11.523088 ], [ 48.867188, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 9.449062 ], [ 50.625000, 9.449062 ], [ 50.625000, 8.754795 ], [ 50.273438, 8.754795 ], [ 50.273438, 8.059230 ], [ 49.921875, 8.059230 ], [ 49.921875, 7.362467 ], [ 49.570312, 7.362467 ], [ 49.570312, 6.315299 ], [ 49.218750, 6.315299 ], [ 49.218750, 5.965754 ], [ 48.867188, 5.965754 ], [ 48.867188, 5.266008 ], [ 48.515625, 5.266008 ], [ 48.515625, 4.915833 ], [ 48.164062, 4.915833 ], [ 48.164062, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 3.864255 ], [ 47.460938, 3.864255 ], [ 47.460938, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 3.162456 ], [ 46.757812, 3.162456 ], [ 46.757812, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.460181 ], [ 46.054688, 2.460181 ], [ 46.054688, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.351560 ], [ 43.242188, 0.351560 ], [ 43.242188, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.351560 ], [ 42.539062, -0.351560 ], [ 42.539062, -1.054628 ], [ 42.187500, -1.054628 ], [ 42.187500, -1.406109 ], [ 41.835938, -1.406109 ], [ 41.835938, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 41.835938, 3.513421 ], [ 41.835938, 3.864255 ], [ 42.187500, 3.864255 ], [ 42.187500, 4.214943 ], [ 43.242188, 4.214943 ], [ 43.242188, 4.565474 ], [ 43.593750, 4.565474 ], [ 43.593750, 4.915833 ], [ 45.351562, 4.915833 ], [ 45.351562, 5.266008 ], [ 45.703125, 5.266008 ], [ 45.703125, 5.615986 ], [ 46.054688, 5.615986 ], [ 46.054688, 5.965754 ], [ 46.406250, 5.965754 ], [ 46.406250, 6.664608 ], [ 46.757812, 6.664608 ], [ 46.757812, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 7.362467 ], [ 47.460938, 7.362467 ], [ 47.460938, 7.710992 ], [ 47.812500, 7.710992 ], [ 47.812500, 8.059230 ], [ 48.164062, 8.059230 ], [ 48.164062, 8.407168 ], [ 48.515625, 8.407168 ], [ 48.515625, 9.102097 ], [ 48.867188, 9.102097 ], [ 48.867188, 11.523088 ], [ 50.625000, 11.523088 ], [ 50.625000, 11.867351 ], [ 50.976562, 11.867351 ], [ 50.976562, 9.449062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 11.867351 ], [ 50.976562, 9.449062 ], [ 50.625000, 9.449062 ], [ 50.625000, 8.754795 ], [ 50.273438, 8.754795 ], [ 50.273438, 8.059230 ], [ 49.921875, 8.059230 ], [ 49.921875, 7.362467 ], [ 49.570312, 7.362467 ], [ 49.570312, 6.315299 ], [ 49.218750, 6.315299 ], [ 49.218750, 5.965754 ], [ 48.867188, 5.965754 ], [ 48.867188, 5.266008 ], [ 48.515625, 5.266008 ], [ 48.515625, 4.915833 ], [ 48.164062, 4.915833 ], [ 48.164062, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 3.864255 ], [ 47.460938, 3.864255 ], [ 47.460938, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 3.162456 ], [ 46.757812, 3.162456 ], [ 46.757812, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.460181 ], [ 46.054688, 2.460181 ], [ 46.054688, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.351560 ], [ 43.242188, 0.351560 ], [ 43.242188, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.351560 ], [ 42.539062, -0.351560 ], [ 42.539062, -1.054628 ], [ 42.187500, -1.054628 ], [ 42.187500, -1.406109 ], [ 41.835938, -1.406109 ], [ 41.835938, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 41.835938, 3.513421 ], [ 41.835938, 3.864255 ], [ 42.187500, 3.864255 ], [ 42.187500, 4.214943 ], [ 43.242188, 4.214943 ], [ 43.242188, 4.565474 ], [ 43.593750, 4.565474 ], [ 43.593750, 4.915833 ], [ 45.351562, 4.915833 ], [ 45.351562, 5.266008 ], [ 45.703125, 5.266008 ], [ 45.703125, 5.615986 ], [ 46.054688, 5.615986 ], [ 46.054688, 5.965754 ], [ 46.406250, 5.965754 ], [ 46.406250, 6.664608 ], [ 46.757812, 6.664608 ], [ 46.757812, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 7.362467 ], [ 47.460938, 7.362467 ], [ 47.460938, 7.710992 ], [ 47.812500, 7.710992 ], [ 47.812500, 8.059230 ], [ 48.164062, 8.059230 ], [ 48.164062, 8.407168 ], [ 48.515625, 8.407168 ], [ 48.515625, 9.102097 ], [ 48.867188, 9.102097 ], [ 48.867188, 11.523088 ], [ 50.625000, 11.523088 ], [ 50.625000, 11.867351 ], [ 50.976562, 11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.312500, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 39.909736 ], [ 69.960938, 39.909736 ], [ 69.960938, 40.178873 ], [ 69.609375, 40.178873 ], [ 69.609375, 39.639538 ], [ 71.015625, 39.639538 ], [ 71.015625, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 38.548165 ], [ 74.179688, 38.548165 ], [ 74.179688, 38.272689 ], [ 74.882812, 38.272689 ], [ 74.882812, 37.439974 ], [ 73.125000, 37.439974 ], [ 73.125000, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 36.879621 ], [ 72.070312, 36.879621 ], [ 72.070312, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.879621 ], [ 71.367188, 36.879621 ], [ 71.367188, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.718590 ], [ 69.609375, 37.718590 ], [ 69.609375, 37.439974 ], [ 69.257812, 37.439974 ], [ 69.257812, 37.160317 ], [ 67.851562, 37.160317 ], [ 67.851562, 37.439974 ], [ 68.203125, 37.439974 ], [ 68.203125, 37.996163 ], [ 68.554688, 37.996163 ], [ 68.554688, 38.548165 ], [ 68.203125, 38.548165 ], [ 68.203125, 38.822591 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.368279 ], [ 67.851562, 39.368279 ], [ 67.851562, 39.639538 ], [ 68.554688, 39.639538 ], [ 68.554688, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.446947 ], [ 69.257812, 40.446947 ], [ 69.257812, 40.713956 ], [ 70.312500, 40.713956 ], [ 70.312500, 40.178873 ] ] ], [ [ [ 70.312500, 40.979898 ], [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ], [ 70.312500, 40.713956 ], [ 70.312500, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.312500, 40.713956 ], [ 70.312500, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 39.909736 ], [ 69.960938, 39.909736 ], [ 69.960938, 40.178873 ], [ 69.609375, 40.178873 ], [ 69.609375, 39.639538 ], [ 71.015625, 39.639538 ], [ 71.015625, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 38.548165 ], [ 74.179688, 38.548165 ], [ 74.179688, 38.272689 ], [ 74.882812, 38.272689 ], [ 74.882812, 37.439974 ], [ 73.125000, 37.439974 ], [ 73.125000, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 36.879621 ], [ 72.070312, 36.879621 ], [ 72.070312, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.879621 ], [ 71.367188, 36.879621 ], [ 71.367188, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.718590 ], [ 69.609375, 37.718590 ], [ 69.609375, 37.439974 ], [ 69.257812, 37.439974 ], [ 69.257812, 37.160317 ], [ 67.851562, 37.160317 ], [ 67.851562, 37.439974 ], [ 68.203125, 37.439974 ], [ 68.203125, 37.996163 ], [ 68.554688, 37.996163 ], [ 68.554688, 38.548165 ], [ 68.203125, 38.548165 ], [ 68.203125, 38.822591 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.368279 ], [ 67.851562, 39.368279 ], [ 67.851562, 39.639538 ], [ 68.554688, 39.639538 ], [ 68.554688, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.446947 ], [ 69.257812, 40.446947 ], [ 69.257812, 40.713956 ], [ 70.312500, 40.713956 ] ] ], [ [ [ 70.664062, 40.713956 ], [ 70.312500, 40.713956 ], [ 70.312500, 40.979898 ], [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.367188, 36.315125 ], [ 71.367188, 35.460670 ], [ 71.718750, 35.460670 ], [ 71.718750, 34.885931 ], [ 71.367188, 34.885931 ], [ 71.367188, 34.597042 ], [ 71.015625, 34.597042 ], [ 71.015625, 34.016242 ], [ 69.960938, 34.016242 ], [ 69.960938, 33.724340 ], [ 70.312500, 33.724340 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.842674 ], [ 69.257812, 32.842674 ], [ 69.257812, 31.653381 ], [ 67.851562, 31.653381 ], [ 67.851562, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 31.052934 ], [ 66.445312, 31.052934 ], [ 66.445312, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 29.535230 ], [ 64.335938, 29.535230 ], [ 64.335938, 29.228890 ], [ 63.632812, 29.228890 ], [ 63.632812, 29.535230 ], [ 63.281250, 29.535230 ], [ 63.281250, 29.228890 ], [ 61.875000, 29.228890 ], [ 61.875000, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 30.145127 ], [ 61.523438, 30.145127 ], [ 61.523438, 30.448674 ], [ 61.875000, 30.448674 ], [ 61.875000, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 31.653381 ], [ 60.820312, 31.653381 ], [ 60.820312, 32.546813 ], [ 60.468750, 32.546813 ], [ 60.468750, 33.137551 ], [ 60.820312, 33.137551 ], [ 60.820312, 33.431441 ], [ 60.468750, 33.431441 ], [ 60.468750, 34.016242 ], [ 60.820312, 34.016242 ], [ 60.820312, 34.885931 ], [ 61.171875, 34.885931 ], [ 61.171875, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 35.173808 ], [ 62.929688, 35.173808 ], [ 62.929688, 35.460670 ], [ 63.281250, 35.460670 ], [ 63.281250, 35.746512 ], [ 63.984375, 35.746512 ], [ 63.984375, 36.031332 ], [ 64.687500, 36.031332 ], [ 64.687500, 37.160317 ], [ 65.390625, 37.160317 ], [ 65.390625, 37.439974 ], [ 67.148438, 37.439974 ], [ 67.148438, 37.160317 ], [ 69.257812, 37.160317 ], [ 69.257812, 37.439974 ], [ 69.609375, 37.439974 ], [ 69.609375, 37.718590 ], [ 70.312500, 37.718590 ], [ 70.312500, 38.272689 ], [ 71.367188, 38.272689 ], [ 71.367188, 36.879621 ], [ 71.718750, 36.879621 ], [ 71.718750, 36.315125 ], [ 71.367188, 36.315125 ] ] ], [ [ [ 72.070312, 36.879621 ], [ 72.773438, 36.879621 ], [ 72.773438, 37.160317 ], [ 73.125000, 37.160317 ], [ 73.125000, 37.439974 ], [ 74.882812, 37.439974 ], [ 74.882812, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 36.879621 ], [ 73.828125, 36.879621 ], [ 73.828125, 36.597889 ], [ 72.070312, 36.597889 ], [ 72.070312, 36.879621 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.718750, 36.315125 ], [ 71.367188, 36.315125 ], [ 71.367188, 35.460670 ], [ 71.718750, 35.460670 ], [ 71.718750, 34.885931 ], [ 71.367188, 34.885931 ], [ 71.367188, 34.597042 ], [ 71.015625, 34.597042 ], [ 71.015625, 34.016242 ], [ 69.960938, 34.016242 ], [ 69.960938, 33.724340 ], [ 70.312500, 33.724340 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.842674 ], [ 69.257812, 32.842674 ], [ 69.257812, 31.653381 ], [ 67.851562, 31.653381 ], [ 67.851562, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 31.052934 ], [ 66.445312, 31.052934 ], [ 66.445312, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 29.535230 ], [ 64.335938, 29.535230 ], [ 64.335938, 29.228890 ], [ 63.632812, 29.228890 ], [ 63.632812, 29.535230 ], [ 63.281250, 29.535230 ], [ 63.281250, 29.228890 ], [ 61.875000, 29.228890 ], [ 61.875000, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 30.145127 ], [ 61.523438, 30.145127 ], [ 61.523438, 30.448674 ], [ 61.875000, 30.448674 ], [ 61.875000, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 31.653381 ], [ 60.820312, 31.653381 ], [ 60.820312, 32.546813 ], [ 60.468750, 32.546813 ], [ 60.468750, 33.137551 ], [ 60.820312, 33.137551 ], [ 60.820312, 33.431441 ], [ 60.468750, 33.431441 ], [ 60.468750, 34.016242 ], [ 60.820312, 34.016242 ], [ 60.820312, 34.885931 ], [ 61.171875, 34.885931 ], [ 61.171875, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 35.173808 ], [ 62.929688, 35.173808 ], [ 62.929688, 35.460670 ], [ 63.281250, 35.460670 ], [ 63.281250, 35.746512 ], [ 63.984375, 35.746512 ], [ 63.984375, 36.031332 ], [ 64.687500, 36.031332 ], [ 64.687500, 37.160317 ], [ 65.390625, 37.160317 ], [ 65.390625, 37.439974 ], [ 67.148438, 37.439974 ], [ 67.148438, 37.160317 ], [ 69.257812, 37.160317 ], [ 69.257812, 37.439974 ], [ 69.609375, 37.439974 ], [ 69.609375, 37.718590 ], [ 70.312500, 37.718590 ], [ 70.312500, 38.272689 ], [ 71.367188, 38.272689 ], [ 71.367188, 36.879621 ], [ 71.718750, 36.879621 ], [ 71.718750, 36.315125 ] ] ], [ [ [ 74.882812, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 36.879621 ], [ 73.828125, 36.879621 ], [ 73.828125, 36.597889 ], [ 72.070312, 36.597889 ], [ 72.070312, 36.879621 ], [ 72.773438, 36.879621 ], [ 72.773438, 37.160317 ], [ 73.125000, 37.160317 ], [ 73.125000, 37.439974 ], [ 74.882812, 37.439974 ], [ 74.882812, 37.160317 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 61.875000, 29.535230 ], [ 61.875000, 29.228890 ], [ 63.281250, 29.228890 ], [ 63.281250, 29.535230 ], [ 63.632812, 29.535230 ], [ 63.632812, 29.228890 ], [ 64.335938, 29.228890 ], [ 64.335938, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 29.840644 ], [ 66.445312, 29.840644 ], [ 66.445312, 31.052934 ], [ 66.796875, 31.052934 ], [ 66.796875, 31.353637 ], [ 67.851562, 31.353637 ], [ 67.851562, 31.653381 ], [ 69.257812, 31.653381 ], [ 69.257812, 32.842674 ], [ 69.609375, 32.842674 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.724340 ], [ 69.960938, 33.724340 ], [ 69.960938, 34.016242 ], [ 71.015625, 34.016242 ], [ 71.015625, 34.597042 ], [ 71.367188, 34.597042 ], [ 71.367188, 34.885931 ], [ 71.718750, 34.885931 ], [ 71.718750, 35.460670 ], [ 71.367188, 35.460670 ], [ 71.367188, 36.315125 ], [ 71.718750, 36.315125 ], [ 71.718750, 36.597889 ], [ 73.828125, 36.597889 ], [ 73.828125, 36.879621 ], [ 74.531250, 36.879621 ], [ 74.531250, 37.160317 ], [ 75.234375, 37.160317 ], [ 75.234375, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.315125 ], [ 76.289062, 36.315125 ], [ 76.289062, 35.746512 ], [ 76.992188, 35.746512 ], [ 76.992188, 35.460670 ], [ 77.695312, 35.460670 ], [ 77.695312, 35.173808 ], [ 77.343750, 35.173808 ], [ 77.343750, 34.597042 ], [ 74.531250, 34.597042 ], [ 74.531250, 34.885931 ], [ 74.179688, 34.885931 ], [ 74.179688, 34.597042 ], [ 73.828125, 34.597042 ], [ 73.828125, 33.724340 ], [ 74.179688, 33.724340 ], [ 74.179688, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 32.546813 ], [ 74.882812, 32.546813 ], [ 74.882812, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 31.952162 ], [ 74.882812, 31.952162 ], [ 74.882812, 31.653381 ], [ 74.531250, 31.653381 ], [ 74.531250, 30.751278 ], [ 74.179688, 30.751278 ], [ 74.179688, 30.448674 ], [ 73.828125, 30.448674 ], [ 73.828125, 29.840644 ], [ 73.476562, 29.840644 ], [ 73.476562, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.304381 ], [ 72.070312, 28.304381 ], [ 72.070312, 27.994401 ], [ 70.664062, 27.994401 ], [ 70.664062, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.745610 ], [ 69.960938, 26.745610 ], [ 69.960938, 26.431228 ], [ 70.312500, 26.431228 ], [ 70.312500, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 25.165173 ], [ 71.015625, 25.165173 ], [ 71.015625, 24.206890 ], [ 68.906250, 24.206890 ], [ 68.906250, 23.885838 ], [ 68.554688, 23.885838 ], [ 68.554688, 23.563987 ], [ 67.500000, 23.563987 ], [ 67.500000, 24.206890 ], [ 67.148438, 24.206890 ], [ 67.148438, 24.527135 ], [ 66.796875, 24.527135 ], [ 66.796875, 25.165173 ], [ 66.445312, 25.165173 ], [ 66.445312, 25.482951 ], [ 65.742188, 25.482951 ], [ 65.742188, 25.165173 ], [ 61.523438, 25.165173 ], [ 61.523438, 25.482951 ], [ 61.875000, 25.482951 ], [ 61.875000, 26.115986 ], [ 62.578125, 26.115986 ], [ 62.578125, 26.431228 ], [ 63.281250, 26.431228 ], [ 63.281250, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.683528 ], [ 62.578125, 27.683528 ], [ 62.578125, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 28.921631 ], [ 61.523438, 28.921631 ], [ 61.523438, 29.228890 ], [ 61.171875, 29.228890 ], [ 61.171875, 29.535230 ], [ 61.875000, 29.535230 ] ] ], [ [ [ 60.820312, 29.535230 ], [ 60.820312, 29.840644 ], [ 61.171875, 29.840644 ], [ 61.171875, 29.535230 ], [ 60.820312, 29.535230 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 61.171875, 29.535230 ], [ 61.875000, 29.535230 ], [ 61.875000, 29.228890 ], [ 63.281250, 29.228890 ], [ 63.281250, 29.535230 ], [ 63.632812, 29.535230 ], [ 63.632812, 29.228890 ], [ 64.335938, 29.228890 ], [ 64.335938, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 29.840644 ], [ 66.445312, 29.840644 ], [ 66.445312, 31.052934 ], [ 66.796875, 31.052934 ], [ 66.796875, 31.353637 ], [ 67.851562, 31.353637 ], [ 67.851562, 31.653381 ], [ 69.257812, 31.653381 ], [ 69.257812, 32.842674 ], [ 69.609375, 32.842674 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.724340 ], [ 69.960938, 33.724340 ], [ 69.960938, 34.016242 ], [ 71.015625, 34.016242 ], [ 71.015625, 34.597042 ], [ 71.367188, 34.597042 ], [ 71.367188, 34.885931 ], [ 71.718750, 34.885931 ], [ 71.718750, 35.460670 ], [ 71.367188, 35.460670 ], [ 71.367188, 36.315125 ], [ 71.718750, 36.315125 ], [ 71.718750, 36.597889 ], [ 73.828125, 36.597889 ], [ 73.828125, 36.879621 ], [ 74.531250, 36.879621 ], [ 74.531250, 37.160317 ], [ 75.234375, 37.160317 ], [ 75.234375, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.315125 ], [ 76.289062, 36.315125 ], [ 76.289062, 35.746512 ], [ 76.992188, 35.746512 ], [ 76.992188, 35.460670 ], [ 77.695312, 35.460670 ], [ 77.695312, 35.173808 ], [ 77.343750, 35.173808 ], [ 77.343750, 34.597042 ], [ 74.531250, 34.597042 ], [ 74.531250, 34.885931 ], [ 74.179688, 34.885931 ], [ 74.179688, 34.597042 ], [ 73.828125, 34.597042 ], [ 73.828125, 33.724340 ], [ 74.179688, 33.724340 ], [ 74.179688, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 32.546813 ], [ 74.882812, 32.546813 ], [ 74.882812, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 31.952162 ], [ 74.882812, 31.952162 ], [ 74.882812, 31.653381 ], [ 74.531250, 31.653381 ], [ 74.531250, 30.751278 ], [ 74.179688, 30.751278 ], [ 74.179688, 30.448674 ], [ 73.828125, 30.448674 ], [ 73.828125, 29.840644 ], [ 73.476562, 29.840644 ], [ 73.476562, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.304381 ], [ 72.070312, 28.304381 ], [ 72.070312, 27.994401 ], [ 70.664062, 27.994401 ], [ 70.664062, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.745610 ], [ 69.960938, 26.745610 ], [ 69.960938, 26.431228 ], [ 70.312500, 26.431228 ], [ 70.312500, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 25.165173 ], [ 71.015625, 25.165173 ], [ 71.015625, 24.206890 ], [ 68.906250, 24.206890 ], [ 68.906250, 23.885838 ], [ 68.554688, 23.885838 ], [ 68.554688, 23.563987 ], [ 67.500000, 23.563987 ], [ 67.500000, 24.206890 ], [ 67.148438, 24.206890 ], [ 67.148438, 24.527135 ], [ 66.796875, 24.527135 ], [ 66.796875, 25.165173 ], [ 66.445312, 25.165173 ], [ 66.445312, 25.482951 ], [ 65.742188, 25.482951 ], [ 65.742188, 25.165173 ], [ 61.523438, 25.165173 ], [ 61.523438, 25.482951 ], [ 61.875000, 25.482951 ], [ 61.875000, 26.115986 ], [ 62.578125, 26.115986 ], [ 62.578125, 26.431228 ], [ 63.281250, 26.431228 ], [ 63.281250, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.683528 ], [ 62.578125, 27.683528 ], [ 62.578125, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 28.921631 ], [ 61.523438, 28.921631 ], [ 61.523438, 29.228890 ], [ 61.171875, 29.228890 ], [ 61.171875, 29.535230 ] ] ], [ [ [ 61.171875, 29.535230 ], [ 60.820312, 29.535230 ], [ 60.820312, 29.840644 ], [ 61.171875, 29.840644 ], [ 61.171875, 29.535230 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.968750, 29.535230 ], [ 83.320312, 29.535230 ], [ 83.320312, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.375000, 28.921631 ], [ 84.375000, 28.613459 ], [ 85.078125, 28.613459 ], [ 85.078125, 28.304381 ], [ 86.132812, 28.304381 ], [ 86.132812, 27.994401 ], [ 88.242188, 27.994401 ], [ 88.242188, 27.683528 ], [ 87.890625, 27.683528 ], [ 87.890625, 27.059126 ], [ 88.242188, 27.059126 ], [ 88.242188, 26.431228 ], [ 86.484375, 26.431228 ], [ 86.484375, 26.745610 ], [ 85.078125, 26.745610 ], [ 85.078125, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 27.371767 ], [ 82.617188, 27.371767 ], [ 82.617188, 27.683528 ], [ 81.914062, 27.683528 ], [ 81.914062, 27.994401 ], [ 81.210938, 27.994401 ], [ 81.210938, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 28.613459 ], [ 80.156250, 28.613459 ], [ 80.156250, 29.228890 ], [ 80.507812, 29.228890 ], [ 80.507812, 29.840644 ], [ 81.210938, 29.840644 ], [ 81.210938, 30.145127 ], [ 82.265625, 30.145127 ], [ 82.265625, 29.840644 ], [ 82.968750, 29.840644 ], [ 82.968750, 29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 82.265625, 29.840644 ], [ 82.968750, 29.840644 ], [ 82.968750, 29.535230 ], [ 83.320312, 29.535230 ], [ 83.320312, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.375000, 28.921631 ], [ 84.375000, 28.613459 ], [ 85.078125, 28.613459 ], [ 85.078125, 28.304381 ], [ 86.132812, 28.304381 ], [ 86.132812, 27.994401 ], [ 88.242188, 27.994401 ], [ 88.242188, 27.683528 ], [ 87.890625, 27.683528 ], [ 87.890625, 27.059126 ], [ 88.242188, 27.059126 ], [ 88.242188, 26.431228 ], [ 86.484375, 26.431228 ], [ 86.484375, 26.745610 ], [ 85.078125, 26.745610 ], [ 85.078125, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 27.371767 ], [ 82.617188, 27.371767 ], [ 82.617188, 27.683528 ], [ 81.914062, 27.683528 ], [ 81.914062, 27.994401 ], [ 81.210938, 27.994401 ], [ 81.210938, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 28.613459 ], [ 80.156250, 28.613459 ], [ 80.156250, 29.228890 ], [ 80.507812, 29.228890 ], [ 80.507812, 29.840644 ], [ 81.210938, 29.840644 ], [ 81.210938, 30.145127 ], [ 82.265625, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.593750, 23.241346 ], [ 88.945312, 23.241346 ], [ 88.945312, 21.616579 ], [ 86.835938, 21.616579 ], [ 86.835938, 20.961440 ], [ 87.187500, 20.961440 ], [ 87.187500, 20.303418 ], [ 86.484375, 20.303418 ], [ 86.484375, 19.973349 ], [ 85.781250, 19.973349 ], [ 85.781250, 19.642588 ], [ 85.078125, 19.642588 ], [ 85.078125, 19.311143 ], [ 84.726562, 19.311143 ], [ 84.726562, 18.979026 ], [ 84.375000, 18.979026 ], [ 84.375000, 18.312811 ], [ 84.023438, 18.312811 ], [ 84.023438, 17.978733 ], [ 83.671875, 17.978733 ], [ 83.671875, 17.644022 ], [ 83.320312, 17.644022 ], [ 83.320312, 17.308688 ], [ 82.617188, 17.308688 ], [ 82.617188, 16.972741 ], [ 82.265625, 16.972741 ], [ 82.265625, 16.299051 ], [ 81.562500, 16.299051 ], [ 81.562500, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 12.554564 ], [ 79.804688, 12.554564 ], [ 79.804688, 10.141932 ], [ 79.453125, 10.141932 ], [ 79.453125, 9.795678 ], [ 79.101562, 9.795678 ], [ 79.101562, 9.449062 ], [ 78.750000, 9.449062 ], [ 78.750000, 9.102097 ], [ 78.398438, 9.102097 ], [ 78.398438, 8.754795 ], [ 78.046875, 8.754795 ], [ 78.046875, 8.059230 ], [ 77.343750, 8.059230 ], [ 77.343750, 8.407168 ], [ 76.640625, 8.407168 ], [ 76.640625, 9.449062 ], [ 76.289062, 9.449062 ], [ 76.289062, 10.141932 ], [ 75.937500, 10.141932 ], [ 75.937500, 10.833306 ], [ 75.585938, 10.833306 ], [ 75.585938, 11.523088 ], [ 75.234375, 11.523088 ], [ 75.234375, 12.211180 ], [ 74.882812, 12.211180 ], [ 74.882812, 13.239945 ], [ 74.531250, 13.239945 ], [ 74.531250, 14.604847 ], [ 74.179688, 14.604847 ], [ 74.179688, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 15.623037 ], [ 73.476562, 15.623037 ], [ 73.476562, 16.972741 ], [ 73.125000, 16.972741 ], [ 73.125000, 18.646245 ], [ 72.773438, 18.646245 ], [ 72.773438, 21.289374 ], [ 72.421875, 21.289374 ], [ 72.421875, 20.961440 ], [ 71.718750, 20.961440 ], [ 71.718750, 20.632784 ], [ 70.312500, 20.632784 ], [ 70.312500, 20.961440 ], [ 69.960938, 20.961440 ], [ 69.960938, 21.289374 ], [ 69.609375, 21.289374 ], [ 69.609375, 21.616579 ], [ 69.257812, 21.616579 ], [ 69.257812, 22.268764 ], [ 69.609375, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.257812, 22.593726 ], [ 69.257812, 22.917923 ], [ 68.906250, 22.917923 ], [ 68.906250, 23.241346 ], [ 68.203125, 23.241346 ], [ 68.203125, 23.563987 ], [ 68.554688, 23.563987 ], [ 68.554688, 23.885838 ], [ 68.906250, 23.885838 ], [ 68.906250, 24.206890 ], [ 71.015625, 24.206890 ], [ 71.015625, 25.165173 ], [ 70.664062, 25.165173 ], [ 70.664062, 25.482951 ], [ 70.312500, 25.482951 ], [ 70.312500, 26.431228 ], [ 69.960938, 26.431228 ], [ 69.960938, 26.745610 ], [ 69.609375, 26.745610 ], [ 69.609375, 27.059126 ], [ 69.960938, 27.059126 ], [ 69.960938, 27.371767 ], [ 70.312500, 27.371767 ], [ 70.312500, 27.683528 ], [ 70.664062, 27.683528 ], [ 70.664062, 27.994401 ], [ 72.070312, 27.994401 ], [ 72.070312, 28.304381 ], [ 72.421875, 28.304381 ], [ 72.421875, 28.613459 ], [ 72.773438, 28.613459 ], [ 72.773438, 28.921631 ], [ 73.125000, 28.921631 ], [ 73.125000, 29.535230 ], [ 73.476562, 29.535230 ], [ 73.476562, 29.840644 ], [ 73.828125, 29.840644 ], [ 73.828125, 30.448674 ], [ 74.179688, 30.448674 ], [ 74.179688, 30.751278 ], [ 74.531250, 30.751278 ], [ 74.531250, 31.653381 ], [ 74.882812, 31.653381 ], [ 74.882812, 31.952162 ], [ 75.234375, 31.952162 ], [ 75.234375, 32.249974 ], [ 74.882812, 32.249974 ], [ 74.882812, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 33.137551 ], [ 74.179688, 33.137551 ], [ 74.179688, 33.724340 ], [ 73.828125, 33.724340 ], [ 73.828125, 34.597042 ], [ 74.179688, 34.597042 ], [ 74.179688, 34.885931 ], [ 74.531250, 34.885931 ], [ 74.531250, 34.597042 ], [ 77.343750, 34.597042 ], [ 77.343750, 35.173808 ], [ 78.046875, 35.173808 ], [ 78.046875, 34.885931 ], [ 78.398438, 34.885931 ], [ 78.398438, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 33.137551 ], [ 79.101562, 33.137551 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.546813 ], [ 78.398438, 31.952162 ], [ 78.750000, 31.952162 ], [ 78.750000, 31.353637 ], [ 79.101562, 31.353637 ], [ 79.101562, 31.052934 ], [ 79.453125, 31.052934 ], [ 79.453125, 30.751278 ], [ 79.804688, 30.751278 ], [ 79.804688, 30.448674 ], [ 80.507812, 30.448674 ], [ 80.507812, 30.145127 ], [ 81.210938, 30.145127 ], [ 81.210938, 29.840644 ], [ 80.507812, 29.840644 ], [ 80.507812, 29.228890 ], [ 80.156250, 29.228890 ], [ 80.156250, 28.613459 ], [ 80.859375, 28.613459 ], [ 80.859375, 28.304381 ], [ 81.210938, 28.304381 ], [ 81.210938, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.371767 ], [ 84.726562, 27.371767 ], [ 84.726562, 27.059126 ], [ 85.078125, 27.059126 ], [ 85.078125, 26.745610 ], [ 86.484375, 26.745610 ], [ 86.484375, 26.431228 ], [ 88.242188, 26.431228 ], [ 88.242188, 27.059126 ], [ 87.890625, 27.059126 ], [ 87.890625, 27.683528 ], [ 88.242188, 27.683528 ], [ 88.242188, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.683528 ], [ 88.945312, 27.683528 ], [ 88.945312, 26.745610 ], [ 91.757812, 26.745610 ], [ 91.757812, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 26.115986 ], [ 88.242188, 26.115986 ], [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 23.241346 ] ] ], [ [ [ 91.406250, 22.917923 ], [ 91.406250, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 91.757812, 24.206890 ], [ 91.757812, 22.917923 ], [ 91.406250, 22.917923 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.046875, 35.173808 ], [ 78.046875, 34.885931 ], [ 78.398438, 34.885931 ], [ 78.398438, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 33.137551 ], [ 79.101562, 33.137551 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.546813 ], [ 78.398438, 31.952162 ], [ 78.750000, 31.952162 ], [ 78.750000, 31.353637 ], [ 79.101562, 31.353637 ], [ 79.101562, 31.052934 ], [ 79.453125, 31.052934 ], [ 79.453125, 30.751278 ], [ 79.804688, 30.751278 ], [ 79.804688, 30.448674 ], [ 80.507812, 30.448674 ], [ 80.507812, 30.145127 ], [ 81.210938, 30.145127 ], [ 81.210938, 29.840644 ], [ 80.507812, 29.840644 ], [ 80.507812, 29.228890 ], [ 80.156250, 29.228890 ], [ 80.156250, 28.613459 ], [ 80.859375, 28.613459 ], [ 80.859375, 28.304381 ], [ 81.210938, 28.304381 ], [ 81.210938, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.371767 ], [ 84.726562, 27.371767 ], [ 84.726562, 27.059126 ], [ 85.078125, 27.059126 ], [ 85.078125, 26.745610 ], [ 86.484375, 26.745610 ], [ 86.484375, 26.431228 ], [ 88.242188, 26.431228 ], [ 88.242188, 27.059126 ], [ 87.890625, 27.059126 ], [ 87.890625, 27.683528 ], [ 88.242188, 27.683528 ], [ 88.242188, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.683528 ], [ 88.945312, 27.683528 ], [ 88.945312, 26.745610 ], [ 91.757812, 26.745610 ], [ 91.757812, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 26.115986 ], [ 88.242188, 26.115986 ], [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 23.241346 ], [ 88.945312, 23.241346 ], [ 88.945312, 21.616579 ], [ 86.835938, 21.616579 ], [ 86.835938, 20.961440 ], [ 87.187500, 20.961440 ], [ 87.187500, 20.303418 ], [ 86.484375, 20.303418 ], [ 86.484375, 19.973349 ], [ 85.781250, 19.973349 ], [ 85.781250, 19.642588 ], [ 85.078125, 19.642588 ], [ 85.078125, 19.311143 ], [ 84.726562, 19.311143 ], [ 84.726562, 18.979026 ], [ 84.375000, 18.979026 ], [ 84.375000, 18.312811 ], [ 84.023438, 18.312811 ], [ 84.023438, 17.978733 ], [ 83.671875, 17.978733 ], [ 83.671875, 17.644022 ], [ 83.320312, 17.644022 ], [ 83.320312, 17.308688 ], [ 82.617188, 17.308688 ], [ 82.617188, 16.972741 ], [ 82.265625, 16.972741 ], [ 82.265625, 16.299051 ], [ 81.562500, 16.299051 ], [ 81.562500, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 12.554564 ], [ 79.804688, 12.554564 ], [ 79.804688, 10.141932 ], [ 79.453125, 10.141932 ], [ 79.453125, 9.795678 ], [ 79.101562, 9.795678 ], [ 79.101562, 9.449062 ], [ 78.750000, 9.449062 ], [ 78.750000, 9.102097 ], [ 78.398438, 9.102097 ], [ 78.398438, 8.754795 ], [ 78.046875, 8.754795 ], [ 78.046875, 8.059230 ], [ 77.343750, 8.059230 ], [ 77.343750, 8.407168 ], [ 76.640625, 8.407168 ], [ 76.640625, 9.449062 ], [ 76.289062, 9.449062 ], [ 76.289062, 10.141932 ], [ 75.937500, 10.141932 ], [ 75.937500, 10.833306 ], [ 75.585938, 10.833306 ], [ 75.585938, 11.523088 ], [ 75.234375, 11.523088 ], [ 75.234375, 12.211180 ], [ 74.882812, 12.211180 ], [ 74.882812, 13.239945 ], [ 74.531250, 13.239945 ], [ 74.531250, 14.604847 ], [ 74.179688, 14.604847 ], [ 74.179688, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 15.623037 ], [ 73.476562, 15.623037 ], [ 73.476562, 16.972741 ], [ 73.125000, 16.972741 ], [ 73.125000, 18.646245 ], [ 72.773438, 18.646245 ], [ 72.773438, 21.289374 ], [ 72.421875, 21.289374 ], [ 72.421875, 20.961440 ], [ 71.718750, 20.961440 ], [ 71.718750, 20.632784 ], [ 70.312500, 20.632784 ], [ 70.312500, 20.961440 ], [ 69.960938, 20.961440 ], [ 69.960938, 21.289374 ], [ 69.609375, 21.289374 ], [ 69.609375, 21.616579 ], [ 69.257812, 21.616579 ], [ 69.257812, 22.268764 ], [ 69.609375, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.257812, 22.593726 ], [ 69.257812, 22.917923 ], [ 68.906250, 22.917923 ], [ 68.906250, 23.241346 ], [ 68.203125, 23.241346 ], [ 68.203125, 23.563987 ], [ 68.554688, 23.563987 ], [ 68.554688, 23.885838 ], [ 68.906250, 23.885838 ], [ 68.906250, 24.206890 ], [ 71.015625, 24.206890 ], [ 71.015625, 25.165173 ], [ 70.664062, 25.165173 ], [ 70.664062, 25.482951 ], [ 70.312500, 25.482951 ], [ 70.312500, 26.431228 ], [ 69.960938, 26.431228 ], [ 69.960938, 26.745610 ], [ 69.609375, 26.745610 ], [ 69.609375, 27.059126 ], [ 69.960938, 27.059126 ], [ 69.960938, 27.371767 ], [ 70.312500, 27.371767 ], [ 70.312500, 27.683528 ], [ 70.664062, 27.683528 ], [ 70.664062, 27.994401 ], [ 72.070312, 27.994401 ], [ 72.070312, 28.304381 ], [ 72.421875, 28.304381 ], [ 72.421875, 28.613459 ], [ 72.773438, 28.613459 ], [ 72.773438, 28.921631 ], [ 73.125000, 28.921631 ], [ 73.125000, 29.535230 ], [ 73.476562, 29.535230 ], [ 73.476562, 29.840644 ], [ 73.828125, 29.840644 ], [ 73.828125, 30.448674 ], [ 74.179688, 30.448674 ], [ 74.179688, 30.751278 ], [ 74.531250, 30.751278 ], [ 74.531250, 31.653381 ], [ 74.882812, 31.653381 ], [ 74.882812, 31.952162 ], [ 75.234375, 31.952162 ], [ 75.234375, 32.249974 ], [ 74.882812, 32.249974 ], [ 74.882812, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 33.137551 ], [ 74.179688, 33.137551 ], [ 74.179688, 33.724340 ], [ 73.828125, 33.724340 ], [ 73.828125, 34.597042 ], [ 74.179688, 34.597042 ], [ 74.179688, 34.885931 ], [ 74.531250, 34.885931 ], [ 74.531250, 34.597042 ], [ 77.343750, 34.597042 ], [ 77.343750, 35.173808 ], [ 78.046875, 35.173808 ] ] ], [ [ [ 91.757812, 24.206890 ], [ 91.757812, 22.917923 ], [ 91.406250, 22.917923 ], [ 91.406250, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 91.757812, 24.206890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.210938, 8.059230 ], [ 81.562500, 8.059230 ], [ 81.562500, 7.362467 ], [ 81.914062, 7.362467 ], [ 81.914062, 6.664608 ], [ 81.562500, 6.664608 ], [ 81.562500, 6.315299 ], [ 81.210938, 6.315299 ], [ 81.210938, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.804688, 6.315299 ], [ 79.804688, 8.754795 ], [ 80.156250, 8.754795 ], [ 80.156250, 9.449062 ], [ 80.507812, 9.449062 ], [ 80.507812, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.754795 ], [ 81.210938, 8.754795 ], [ 81.210938, 8.059230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.507812, 9.449062 ], [ 80.507812, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.754795 ], [ 81.210938, 8.754795 ], [ 81.210938, 8.059230 ], [ 81.562500, 8.059230 ], [ 81.562500, 7.362467 ], [ 81.914062, 7.362467 ], [ 81.914062, 6.664608 ], [ 81.562500, 6.664608 ], [ 81.562500, 6.315299 ], [ 81.210938, 6.315299 ], [ 81.210938, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.804688, 6.315299 ], [ 79.804688, 8.754795 ], [ 80.156250, 8.754795 ], [ 80.156250, 9.449062 ], [ 80.507812, 9.449062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 45.089036 ], [ 91.054688, 45.089036 ], [ 91.054688, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 46.316584 ], [ 91.054688, 46.316584 ], [ 91.054688, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 48.458352 ], [ 87.890625, 48.458352 ], [ 87.890625, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.610710 ], [ 89.648438, 49.610710 ], [ 89.648438, 49.837982 ], [ 90.351562, 49.837982 ], [ 90.351562, 50.064192 ], [ 90.703125, 50.064192 ], [ 90.703125, 50.289339 ], [ 91.054688, 50.289339 ], [ 91.054688, 50.513427 ], [ 91.757812, 50.513427 ], [ 91.757812, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.513427 ], [ 91.757812, 45.089036 ], [ 91.054688, 45.089036 ], [ 91.054688, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 46.316584 ], [ 91.054688, 46.316584 ], [ 91.054688, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 48.458352 ], [ 87.890625, 48.458352 ], [ 87.890625, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.610710 ], [ 89.648438, 49.610710 ], [ 89.648438, 49.837982 ], [ 90.351562, 49.837982 ], [ 90.351562, 50.064192 ], [ 90.703125, 50.064192 ], [ 90.703125, 50.289339 ], [ 91.054688, 50.289339 ], [ 91.054688, 50.513427 ], [ 91.757812, 50.513427 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 26.745610 ], [ 88.945312, 26.745610 ], [ 88.945312, 27.371767 ], [ 89.296875, 27.371767 ], [ 89.296875, 27.683528 ], [ 89.648438, 27.683528 ], [ 89.648438, 27.994401 ], [ 91.406250, 27.994401 ], [ 91.406250, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 26.745610 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 27.994401 ], [ 91.406250, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 26.745610 ], [ 88.945312, 26.745610 ], [ 88.945312, 27.371767 ], [ 89.296875, 27.371767 ], [ 89.296875, 27.683528 ], [ 89.648438, 27.683528 ], [ 89.648438, 27.994401 ], [ 91.406250, 27.994401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.000000, 25.165173 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.945312, 21.943046 ], [ 88.945312, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 24.846565 ], [ 88.945312, 24.846565 ], [ 88.945312, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 26.115986 ], [ 90.000000, 26.115986 ], [ 90.000000, 25.165173 ] ] ], [ [ [ 91.757812, 22.917923 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ], [ 91.757812, 22.917923 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.945312, 21.943046 ], [ 88.945312, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 24.846565 ], [ 88.945312, 24.846565 ], [ 88.945312, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 26.115986 ], [ 90.000000, 26.115986 ], [ 90.000000, 25.165173 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 22.917923 ] ] ], [ [ [ 91.406250, 22.917923 ], [ 91.757812, 22.917923 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.351562, 47.754098 ], [ 90.351562, 47.517201 ], [ 90.703125, 47.517201 ], [ 90.703125, 47.040182 ], [ 91.054688, 47.040182 ], [ 91.054688, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.583290 ], [ 91.054688, 45.583290 ], [ 91.054688, 45.089036 ], [ 91.757812, 45.089036 ], [ 91.757812, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 27.994401 ], [ 86.132812, 27.994401 ], [ 86.132812, 28.304381 ], [ 85.078125, 28.304381 ], [ 85.078125, 28.613459 ], [ 84.375000, 28.613459 ], [ 84.375000, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.320312, 29.228890 ], [ 83.320312, 29.535230 ], [ 82.968750, 29.535230 ], [ 82.968750, 29.840644 ], [ 82.265625, 29.840644 ], [ 82.265625, 30.145127 ], [ 80.507812, 30.145127 ], [ 80.507812, 30.448674 ], [ 79.804688, 30.448674 ], [ 79.804688, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 31.052934 ], [ 79.101562, 31.052934 ], [ 79.101562, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.952162 ], [ 78.398438, 31.952162 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 34.307144 ], [ 78.398438, 34.307144 ], [ 78.398438, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.173808 ], [ 77.695312, 35.173808 ], [ 77.695312, 35.460670 ], [ 76.992188, 35.460670 ], [ 76.992188, 35.746512 ], [ 76.289062, 35.746512 ], [ 76.289062, 36.315125 ], [ 75.937500, 36.315125 ], [ 75.937500, 36.597889 ], [ 75.585938, 36.597889 ], [ 75.585938, 36.879621 ], [ 75.234375, 36.879621 ], [ 75.234375, 37.160317 ], [ 74.882812, 37.160317 ], [ 74.882812, 38.272689 ], [ 74.179688, 38.272689 ], [ 74.179688, 38.548165 ], [ 73.828125, 38.548165 ], [ 73.828125, 39.909736 ], [ 74.179688, 39.909736 ], [ 74.179688, 40.178873 ], [ 74.882812, 40.178873 ], [ 74.882812, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.992188, 40.713956 ], [ 76.992188, 40.979898 ], [ 77.695312, 40.979898 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 79.101562, 41.508577 ], [ 79.101562, 41.771312 ], [ 79.804688, 41.771312 ], [ 79.804688, 42.032974 ], [ 80.156250, 42.032974 ], [ 80.156250, 42.811522 ], [ 80.859375, 42.811522 ], [ 80.859375, 43.325178 ], [ 80.507812, 43.325178 ], [ 80.507812, 43.834527 ], [ 80.156250, 43.834527 ], [ 80.156250, 44.339565 ], [ 79.804688, 44.339565 ], [ 79.804688, 44.840291 ], [ 80.507812, 44.840291 ], [ 80.507812, 45.089036 ], [ 81.562500, 45.089036 ], [ 81.562500, 45.336702 ], [ 82.617188, 45.336702 ], [ 82.617188, 45.828799 ], [ 82.968750, 45.828799 ], [ 82.968750, 46.800059 ], [ 83.320312, 46.800059 ], [ 83.320312, 47.279229 ], [ 84.023438, 47.279229 ], [ 84.023438, 47.040182 ], [ 85.429688, 47.040182 ], [ 85.429688, 47.279229 ], [ 85.781250, 47.279229 ], [ 85.781250, 48.458352 ], [ 86.835938, 48.458352 ], [ 86.835938, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.152970 ], [ 87.890625, 49.152970 ], [ 87.890625, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.890625, 49.152970 ], [ 87.890625, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.351562, 47.754098 ], [ 90.351562, 47.517201 ], [ 90.703125, 47.517201 ], [ 90.703125, 47.040182 ], [ 91.054688, 47.040182 ], [ 91.054688, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.583290 ], [ 91.054688, 45.583290 ], [ 91.054688, 45.089036 ], [ 91.757812, 45.089036 ], [ 91.757812, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 27.994401 ], [ 86.132812, 27.994401 ], [ 86.132812, 28.304381 ], [ 85.078125, 28.304381 ], [ 85.078125, 28.613459 ], [ 84.375000, 28.613459 ], [ 84.375000, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.320312, 29.228890 ], [ 83.320312, 29.535230 ], [ 82.968750, 29.535230 ], [ 82.968750, 29.840644 ], [ 82.265625, 29.840644 ], [ 82.265625, 30.145127 ], [ 80.507812, 30.145127 ], [ 80.507812, 30.448674 ], [ 79.804688, 30.448674 ], [ 79.804688, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 31.052934 ], [ 79.101562, 31.052934 ], [ 79.101562, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.952162 ], [ 78.398438, 31.952162 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 34.307144 ], [ 78.398438, 34.307144 ], [ 78.398438, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.173808 ], [ 77.695312, 35.173808 ], [ 77.695312, 35.460670 ], [ 76.992188, 35.460670 ], [ 76.992188, 35.746512 ], [ 76.289062, 35.746512 ], [ 76.289062, 36.315125 ], [ 75.937500, 36.315125 ], [ 75.937500, 36.597889 ], [ 75.585938, 36.597889 ], [ 75.585938, 36.879621 ], [ 75.234375, 36.879621 ], [ 75.234375, 37.160317 ], [ 74.882812, 37.160317 ], [ 74.882812, 38.272689 ], [ 74.179688, 38.272689 ], [ 74.179688, 38.548165 ], [ 73.828125, 38.548165 ], [ 73.828125, 39.909736 ], [ 74.179688, 39.909736 ], [ 74.179688, 40.178873 ], [ 74.882812, 40.178873 ], [ 74.882812, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.992188, 40.713956 ], [ 76.992188, 40.979898 ], [ 77.695312, 40.979898 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 79.101562, 41.508577 ], [ 79.101562, 41.771312 ], [ 79.804688, 41.771312 ], [ 79.804688, 42.032974 ], [ 80.156250, 42.032974 ], [ 80.156250, 42.811522 ], [ 80.859375, 42.811522 ], [ 80.859375, 43.325178 ], [ 80.507812, 43.325178 ], [ 80.507812, 43.834527 ], [ 80.156250, 43.834527 ], [ 80.156250, 44.339565 ], [ 79.804688, 44.339565 ], [ 79.804688, 44.840291 ], [ 80.507812, 44.840291 ], [ 80.507812, 45.089036 ], [ 81.562500, 45.089036 ], [ 81.562500, 45.336702 ], [ 82.617188, 45.336702 ], [ 82.617188, 45.828799 ], [ 82.968750, 45.828799 ], [ 82.968750, 46.800059 ], [ 83.320312, 46.800059 ], [ 83.320312, 47.279229 ], [ 84.023438, 47.279229 ], [ 84.023438, 47.040182 ], [ 85.429688, 47.040182 ], [ 85.429688, 47.279229 ], [ 85.781250, 47.279229 ], [ 85.781250, 48.458352 ], [ 86.835938, 48.458352 ], [ 86.835938, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.152970 ], [ 87.890625, 49.152970 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, -0.351560 ], [ 14.062500, -0.351560 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, -0.703107 ], [ 9.140625, -0.703107 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.108899 ], [ 13.007812, 2.108899 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.054628 ], [ 14.414062, 1.054628 ], [ 14.414062, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.108899 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.054628 ], [ 14.414062, 1.054628 ], [ 14.414062, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, -0.351560 ], [ 14.062500, -0.351560 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, -0.703107 ], [ 9.140625, -0.703107 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.108899 ], [ 13.007812, 2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 2.460181 ], [ 17.929688, 2.460181 ], [ 17.929688, 0.000000 ], [ 17.578125, 0.000000 ], [ 17.578125, -1.054628 ], [ 16.875000, -1.054628 ], [ 16.875000, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -1.757537 ], [ 14.414062, -1.757537 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, -0.351560 ], [ 13.710938, -0.351560 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, 0.703107 ], [ 14.414062, 0.703107 ], [ 14.414062, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 2.108899 ], [ 15.117188, 2.108899 ], [ 15.117188, 1.757537 ], [ 16.171875, 1.757537 ], [ 16.171875, 2.460181 ], [ 16.523438, 2.460181 ], [ 16.523438, 3.162456 ], [ 16.875000, 3.162456 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ], [ 18.281250, 2.460181 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 2.460181 ], [ 17.929688, 2.460181 ], [ 17.929688, 0.000000 ], [ 17.578125, 0.000000 ], [ 17.578125, -1.054628 ], [ 16.875000, -1.054628 ], [ 16.875000, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -1.757537 ], [ 14.414062, -1.757537 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, -0.351560 ], [ 13.710938, -0.351560 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, 0.703107 ], [ 14.414062, 0.703107 ], [ 14.414062, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 2.108899 ], [ 15.117188, 2.108899 ], [ 15.117188, 1.757537 ], [ 16.171875, 1.757537 ], [ 16.171875, 2.460181 ], [ 16.523438, 2.460181 ], [ 16.523438, 3.162456 ], [ 16.875000, 3.162456 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 4.565474 ], [ 28.125000, 4.565474 ], [ 28.125000, 4.214943 ], [ 29.882812, 4.214943 ], [ 29.882812, 3.864255 ], [ 30.585938, 3.864255 ], [ 30.585938, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 2.108899 ], [ 31.289062, 2.108899 ], [ 31.289062, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.703107 ], [ 29.531250, -0.703107 ], [ 29.531250, -1.757537 ], [ 16.523438, -1.757537 ], [ 16.523438, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.054628 ], [ 17.578125, -1.054628 ], [ 17.578125, 0.000000 ], [ 17.929688, 0.000000 ], [ 17.929688, 2.460181 ], [ 18.281250, 2.460181 ], [ 18.281250, 3.864255 ], [ 18.632812, 3.864255 ], [ 18.632812, 4.214943 ], [ 18.984375, 4.214943 ], [ 18.984375, 4.565474 ], [ 19.335938, 4.565474 ], [ 19.335938, 4.915833 ], [ 19.687500, 4.915833 ], [ 19.687500, 4.565474 ], [ 20.390625, 4.565474 ], [ 20.390625, 4.214943 ], [ 21.796875, 4.214943 ], [ 21.796875, 3.864255 ], [ 22.500000, 3.864255 ], [ 22.500000, 4.214943 ], [ 22.851562, 4.214943 ], [ 22.851562, 4.565474 ], [ 23.554688, 4.565474 ], [ 23.554688, 4.915833 ], [ 25.312500, 4.915833 ], [ 25.312500, 5.266008 ], [ 27.421875, 5.266008 ], [ 27.421875, 4.915833 ], [ 27.773438, 4.915833 ], [ 27.773438, 4.565474 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 5.266008 ], [ 27.421875, 4.915833 ], [ 27.773438, 4.915833 ], [ 27.773438, 4.565474 ], [ 28.125000, 4.565474 ], [ 28.125000, 4.214943 ], [ 29.882812, 4.214943 ], [ 29.882812, 3.864255 ], [ 30.585938, 3.864255 ], [ 30.937500, 3.513421 ], [ 30.937500, 2.108899 ], [ 31.289062, 2.108899 ], [ 31.289062, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.703107 ], [ 29.531250, -0.703107 ], [ 29.531250, -1.757537 ], [ 16.523438, -1.757537 ], [ 16.523438, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.054628 ], [ 17.578125, -1.054628 ], [ 17.578125, 0.000000 ], [ 17.929688, 0.000000 ], [ 17.929688, 2.460181 ], [ 18.281250, 2.460181 ], [ 18.281250, 3.864255 ], [ 18.632812, 3.864255 ], [ 18.632812, 4.214943 ], [ 18.984375, 4.214943 ], [ 18.984375, 4.565474 ], [ 19.335938, 4.565474 ], [ 19.335938, 4.915833 ], [ 19.687500, 4.915833 ], [ 19.687500, 4.565474 ], [ 20.390625, 4.565474 ], [ 20.390625, 4.214943 ], [ 21.796875, 4.214943 ], [ 21.796875, 3.864255 ], [ 22.500000, 3.864255 ], [ 22.500000, 4.214943 ], [ 22.851562, 4.214943 ], [ 22.851562, 4.565474 ], [ 23.554688, 4.565474 ], [ 23.554688, 4.915833 ], [ 25.312500, 4.915833 ], [ 25.312500, 5.266008 ], [ 27.421875, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.757537 ], [ 29.531250, -1.757537 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ], [ 30.937500, -1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -1.757537 ], [ 29.531250, -1.757537 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.757537 ], [ 30.937500, -1.757537 ], [ 30.937500, -1.406109 ], [ 30.585938, -1.406109 ], [ 30.585938, -1.054628 ], [ 34.101562, -1.054628 ], [ 34.101562, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, -1.054628 ], [ 34.101562, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.757537 ], [ 30.937500, -1.757537 ], [ 30.937500, -1.406109 ], [ 30.585938, -1.406109 ], [ 30.585938, -1.054628 ], [ 34.101562, -1.054628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.695312, 69.534518 ], [ 33.046875, 69.534518 ], [ 33.046875, 69.411242 ], [ 33.398438, 69.411242 ], [ 33.398438, 69.287257 ], [ 34.101562, 69.287257 ], [ 34.101562, 69.162558 ], [ 35.507812, 69.162558 ], [ 35.507812, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.911005 ], [ 36.914062, 68.911005 ], [ 36.914062, 68.784144 ], [ 37.617188, 68.784144 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.269387 ], [ 39.023438, 68.269387 ], [ 39.023438, 68.138852 ], [ 39.726562, 68.138852 ], [ 39.726562, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.742759 ], [ 40.781250, 67.742759 ], [ 40.781250, 67.474922 ], [ 41.132812, 67.474922 ], [ 41.132812, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.429688, 66.513260 ], [ 40.429688, 66.231457 ], [ 39.726562, 66.231457 ], [ 39.726562, 66.089364 ], [ 39.023438, 66.089364 ], [ 39.023438, 65.946472 ], [ 37.617188, 65.946472 ], [ 37.617188, 66.089364 ], [ 36.914062, 66.089364 ], [ 36.914062, 66.231457 ], [ 36.210938, 66.231457 ], [ 36.210938, 66.372755 ], [ 35.507812, 66.372755 ], [ 35.507812, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 65.802776 ], [ 30.234375, 65.802776 ], [ 30.234375, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.474922 ], [ 29.882812, 67.474922 ], [ 29.882812, 67.742759 ], [ 29.531250, 67.742759 ], [ 29.531250, 67.875541 ], [ 29.179688, 67.875541 ], [ 29.179688, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 69.037142 ], [ 29.179688, 69.037142 ], [ 29.179688, 69.162558 ], [ 29.882812, 69.162558 ], [ 29.882812, 69.287257 ], [ 30.585938, 69.287257 ], [ 30.585938, 69.411242 ], [ 30.937500, 69.411242 ], [ 30.937500, 69.534518 ], [ 31.289062, 69.534518 ], [ 31.289062, 69.657086 ], [ 31.640625, 69.657086 ], [ 31.640625, 69.778952 ], [ 32.343750, 69.778952 ], [ 32.343750, 69.657086 ], [ 32.695312, 69.657086 ], [ 32.695312, 69.534518 ] ] ], [ [ [ 45.351562, 68.399180 ], [ 45.351562, 68.269387 ], [ 46.406250, 68.269387 ], [ 46.406250, 68.007571 ], [ 46.757812, 68.007571 ], [ 46.757812, 67.742759 ], [ 46.406250, 67.742759 ], [ 46.406250, 67.609221 ], [ 45.703125, 67.609221 ], [ 45.703125, 66.930060 ], [ 46.054688, 66.930060 ], [ 46.054688, 66.652977 ], [ 47.109375, 66.652977 ], [ 47.109375, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.204032 ], [ 48.164062, 67.204032 ], [ 48.164062, 67.474922 ], [ 48.515625, 67.474922 ], [ 48.515625, 67.609221 ], [ 49.218750, 67.609221 ], [ 49.218750, 67.742759 ], [ 49.570312, 67.742759 ], [ 49.570312, 67.875541 ], [ 50.273438, 67.875541 ], [ 50.273438, 68.007571 ], [ 50.625000, 68.007571 ], [ 50.625000, 68.138852 ], [ 51.328125, 68.138852 ], [ 51.328125, 68.269387 ], [ 51.679688, 68.269387 ], [ 51.679688, 68.399180 ], [ 52.382812, 68.399180 ], [ 52.382812, 68.528235 ], [ 52.734375, 68.528235 ], [ 52.734375, 68.656555 ], [ 53.085938, 68.656555 ], [ 53.085938, 68.784144 ], [ 54.492188, 68.784144 ], [ 54.492188, 68.656555 ], [ 54.140625, 68.656555 ], [ 54.140625, 68.399180 ], [ 53.789062, 68.399180 ], [ 53.789062, 68.138852 ], [ 55.195312, 68.138852 ], [ 55.195312, 68.269387 ], [ 55.546875, 68.269387 ], [ 55.546875, 68.399180 ], [ 56.601562, 68.399180 ], [ 56.601562, 68.528235 ], [ 57.656250, 68.528235 ], [ 57.656250, 68.656555 ], [ 58.359375, 68.656555 ], [ 58.359375, 68.784144 ], [ 58.710938, 68.784144 ], [ 58.710938, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.089364 ], [ 41.484375, 66.089364 ], [ 41.484375, 66.231457 ], [ 41.835938, 66.231457 ], [ 41.835938, 66.372755 ], [ 42.890625, 66.372755 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.231457 ], [ 44.296875, 66.231457 ], [ 44.296875, 66.513260 ], [ 44.648438, 66.513260 ], [ 44.648438, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 43.593750, 67.204032 ], [ 43.593750, 67.474922 ], [ 43.945312, 67.474922 ], [ 43.945312, 67.742759 ], [ 44.296875, 67.742759 ], [ 44.296875, 68.138852 ], [ 43.945312, 68.138852 ], [ 43.945312, 68.399180 ], [ 45.351562, 68.399180 ] ] ], [ [ [ 58.710938, 74.307353 ], [ 58.359375, 74.307353 ], [ 58.359375, 74.116047 ], [ 58.007812, 74.116047 ], [ 58.007812, 73.922469 ], [ 57.656250, 73.922469 ], [ 57.656250, 73.627789 ], [ 57.304688, 73.627789 ], [ 57.304688, 73.428424 ], [ 56.953125, 73.428424 ], [ 56.953125, 73.124945 ], [ 56.601562, 73.124945 ], [ 56.601562, 72.919635 ], [ 56.250000, 72.919635 ], [ 56.250000, 72.711903 ], [ 55.898438, 72.711903 ], [ 55.898438, 72.501722 ], [ 55.546875, 72.501722 ], [ 55.546875, 71.413177 ], [ 55.898438, 71.413177 ], [ 55.898438, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.187754 ], [ 56.601562, 71.187754 ], [ 56.601562, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.844673 ], [ 57.304688, 70.844673 ], [ 57.304688, 70.728979 ], [ 57.656250, 70.728979 ], [ 57.656250, 70.612614 ], [ 55.195312, 70.612614 ], [ 55.195312, 70.728979 ], [ 53.789062, 70.728979 ], [ 53.789062, 70.959697 ], [ 53.437500, 70.959697 ], [ 53.437500, 71.187754 ], [ 53.085938, 71.187754 ], [ 53.085938, 71.300793 ], [ 52.382812, 71.300793 ], [ 52.382812, 71.413177 ], [ 51.679688, 71.413177 ], [ 51.679688, 71.746432 ], [ 51.328125, 71.746432 ], [ 51.328125, 71.965388 ], [ 51.679688, 71.965388 ], [ 51.679688, 72.073911 ], [ 52.382812, 72.073911 ], [ 52.382812, 72.816074 ], [ 52.734375, 72.816074 ], [ 52.734375, 73.022592 ], [ 53.085938, 73.022592 ], [ 53.085938, 73.124945 ], [ 53.437500, 73.124945 ], [ 53.437500, 73.226700 ], [ 53.789062, 73.226700 ], [ 53.789062, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.528399 ], [ 54.492188, 73.528399 ], [ 54.492188, 73.627789 ], [ 53.789062, 73.627789 ], [ 53.789062, 73.824820 ], [ 54.140625, 73.824820 ], [ 54.140625, 74.019543 ], [ 54.492188, 74.019543 ], [ 54.492188, 74.116047 ], [ 54.843750, 74.116047 ], [ 54.843750, 74.211983 ], [ 55.195312, 74.211983 ], [ 55.195312, 74.402163 ], [ 55.546875, 74.402163 ], [ 55.546875, 74.496413 ], [ 55.898438, 74.496413 ], [ 55.898438, 74.775843 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.050354 ], [ 55.898438, 75.050354 ], [ 55.898438, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.230667 ], [ 56.601562, 75.230667 ], [ 56.601562, 75.320025 ], [ 57.304688, 75.320025 ], [ 57.304688, 75.408854 ], [ 57.656250, 75.408854 ], [ 57.656250, 75.497157 ], [ 58.007812, 75.497157 ], [ 58.007812, 75.584937 ], [ 58.359375, 75.584937 ], [ 58.359375, 75.672197 ], [ 58.710938, 75.672197 ], [ 58.710938, 74.307353 ] ] ], [ [ [ 51.328125, 80.703997 ], [ 51.679688, 80.703997 ], [ 51.679688, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.532071 ], [ 50.976562, 80.532071 ], [ 50.976562, 80.474065 ], [ 50.273438, 80.474065 ], [ 50.273438, 80.415707 ], [ 49.570312, 80.415707 ], [ 49.570312, 80.356995 ], [ 48.867188, 80.356995 ], [ 48.867188, 80.118564 ], [ 48.515625, 80.118564 ], [ 48.515625, 80.058050 ], [ 47.812500, 80.058050 ], [ 47.812500, 79.997168 ], [ 47.109375, 79.997168 ], [ 47.109375, 80.118564 ], [ 46.757812, 80.118564 ], [ 46.757812, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.297927 ], [ 46.757812, 80.297927 ], [ 46.757812, 80.415707 ], [ 47.109375, 80.415707 ], [ 47.109375, 80.532071 ], [ 45.703125, 80.532071 ], [ 45.703125, 80.589727 ], [ 45.351562, 80.589727 ], [ 45.351562, 80.647035 ], [ 46.054688, 80.647035 ], [ 46.054688, 80.703997 ], [ 46.757812, 80.703997 ], [ 46.757812, 80.760615 ], [ 48.164062, 80.760615 ], [ 48.164062, 80.647035 ], [ 48.515625, 80.647035 ], [ 48.515625, 80.589727 ], [ 48.867188, 80.589727 ], [ 48.867188, 80.703997 ], [ 49.218750, 80.703997 ], [ 49.218750, 80.760615 ], [ 49.570312, 80.760615 ], [ 49.570312, 80.872827 ], [ 50.273438, 80.872827 ], [ 50.273438, 80.816891 ], [ 50.976562, 80.816891 ], [ 50.976562, 80.760615 ], [ 51.328125, 80.760615 ], [ 51.328125, 80.703997 ] ] ], [ [ [ 43.593750, 68.399180 ], [ 43.593750, 68.528235 ], [ 43.945312, 68.528235 ], [ 43.945312, 68.399180 ], [ 43.593750, 68.399180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.343750, 69.778952 ], [ 32.343750, 69.657086 ], [ 32.695312, 69.657086 ], [ 32.695312, 69.534518 ], [ 33.046875, 69.534518 ], [ 33.046875, 69.411242 ], [ 33.398438, 69.411242 ], [ 33.398438, 69.287257 ], [ 34.101562, 69.287257 ], [ 34.101562, 69.162558 ], [ 35.507812, 69.162558 ], [ 35.507812, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.911005 ], [ 36.914062, 68.911005 ], [ 36.914062, 68.784144 ], [ 37.617188, 68.784144 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.269387 ], [ 39.023438, 68.269387 ], [ 39.023438, 68.138852 ], [ 39.726562, 68.138852 ], [ 39.726562, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.742759 ], [ 40.781250, 67.742759 ], [ 40.781250, 67.474922 ], [ 41.132812, 67.474922 ], [ 41.132812, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.429688, 66.513260 ], [ 40.429688, 66.231457 ], [ 39.726562, 66.231457 ], [ 39.726562, 66.089364 ], [ 39.023438, 66.089364 ], [ 39.023438, 65.946472 ], [ 37.617188, 65.946472 ], [ 37.617188, 66.089364 ], [ 36.914062, 66.089364 ], [ 36.914062, 66.231457 ], [ 36.210938, 66.231457 ], [ 36.210938, 66.372755 ], [ 35.507812, 66.372755 ], [ 35.507812, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 65.802776 ], [ 30.234375, 65.802776 ], [ 30.234375, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.474922 ], [ 29.882812, 67.474922 ], [ 29.882812, 67.742759 ], [ 29.531250, 67.742759 ], [ 29.531250, 67.875541 ], [ 29.179688, 67.875541 ], [ 29.179688, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 69.037142 ], [ 29.179688, 69.037142 ], [ 29.179688, 69.162558 ], [ 29.882812, 69.162558 ], [ 29.882812, 69.287257 ], [ 30.585938, 69.287257 ], [ 30.585938, 69.411242 ], [ 30.937500, 69.411242 ], [ 30.937500, 69.534518 ], [ 31.289062, 69.534518 ], [ 31.289062, 69.657086 ], [ 31.640625, 69.657086 ], [ 31.640625, 69.778952 ], [ 32.343750, 69.778952 ] ] ], [ [ [ 43.945312, 68.399180 ], [ 45.351562, 68.399180 ], [ 45.351562, 68.269387 ], [ 46.406250, 68.269387 ], [ 46.406250, 68.007571 ], [ 46.757812, 68.007571 ], [ 46.757812, 67.742759 ], [ 46.406250, 67.742759 ], [ 46.406250, 67.609221 ], [ 45.703125, 67.609221 ], [ 45.703125, 66.930060 ], [ 46.054688, 66.930060 ], [ 46.054688, 66.652977 ], [ 47.109375, 66.652977 ], [ 47.109375, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.204032 ], [ 48.164062, 67.204032 ], [ 48.164062, 67.474922 ], [ 48.515625, 67.474922 ], [ 48.515625, 67.609221 ], [ 49.218750, 67.609221 ], [ 49.218750, 67.742759 ], [ 49.570312, 67.742759 ], [ 49.570312, 67.875541 ], [ 50.273438, 67.875541 ], [ 50.273438, 68.007571 ], [ 50.625000, 68.007571 ], [ 50.625000, 68.138852 ], [ 51.328125, 68.138852 ], [ 51.328125, 68.269387 ], [ 51.679688, 68.269387 ], [ 51.679688, 68.399180 ], [ 52.382812, 68.399180 ], [ 52.382812, 68.528235 ], [ 52.734375, 68.528235 ], [ 52.734375, 68.656555 ], [ 53.085938, 68.656555 ], [ 53.085938, 68.784144 ], [ 54.492188, 68.784144 ], [ 54.492188, 68.656555 ], [ 54.140625, 68.656555 ], [ 54.140625, 68.399180 ], [ 53.789062, 68.399180 ], [ 53.789062, 68.138852 ], [ 55.195312, 68.138852 ], [ 55.195312, 68.269387 ], [ 55.546875, 68.269387 ], [ 55.546875, 68.399180 ], [ 56.601562, 68.399180 ], [ 56.601562, 68.528235 ], [ 57.656250, 68.528235 ], [ 57.656250, 68.656555 ], [ 58.359375, 68.656555 ], [ 58.359375, 68.784144 ], [ 58.710938, 68.784144 ], [ 58.710938, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.089364 ], [ 41.484375, 66.089364 ], [ 41.484375, 66.231457 ], [ 41.835938, 66.231457 ], [ 41.835938, 66.372755 ], [ 42.890625, 66.372755 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.231457 ], [ 44.296875, 66.231457 ], [ 44.296875, 66.513260 ], [ 44.648438, 66.513260 ], [ 44.648438, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 43.593750, 67.204032 ], [ 43.593750, 67.474922 ], [ 43.945312, 67.474922 ], [ 43.945312, 67.742759 ], [ 44.296875, 67.742759 ], [ 44.296875, 68.138852 ], [ 43.945312, 68.138852 ], [ 43.945312, 68.399180 ] ] ], [ [ [ 58.710938, 75.672197 ], [ 58.710938, 74.307353 ], [ 58.359375, 74.307353 ], [ 58.359375, 74.116047 ], [ 58.007812, 74.116047 ], [ 58.007812, 73.922469 ], [ 57.656250, 73.922469 ], [ 57.656250, 73.627789 ], [ 57.304688, 73.627789 ], [ 57.304688, 73.428424 ], [ 56.953125, 73.428424 ], [ 56.953125, 73.124945 ], [ 56.601562, 73.124945 ], [ 56.601562, 72.919635 ], [ 56.250000, 72.919635 ], [ 56.250000, 72.711903 ], [ 55.898438, 72.711903 ], [ 55.898438, 72.501722 ], [ 55.546875, 72.501722 ], [ 55.546875, 71.413177 ], [ 55.898438, 71.413177 ], [ 55.898438, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.187754 ], [ 56.601562, 71.187754 ], [ 56.601562, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.844673 ], [ 57.304688, 70.844673 ], [ 57.304688, 70.728979 ], [ 57.656250, 70.728979 ], [ 57.656250, 70.612614 ], [ 55.195312, 70.612614 ], [ 55.195312, 70.728979 ], [ 53.789062, 70.728979 ], [ 53.789062, 70.959697 ], [ 53.437500, 70.959697 ], [ 53.437500, 71.187754 ], [ 53.085938, 71.187754 ], [ 53.085938, 71.300793 ], [ 52.382812, 71.300793 ], [ 52.382812, 71.413177 ], [ 51.679688, 71.413177 ], [ 51.679688, 71.746432 ], [ 51.328125, 71.746432 ], [ 51.328125, 71.965388 ], [ 51.679688, 71.965388 ], [ 51.679688, 72.073911 ], [ 52.382812, 72.073911 ], [ 52.382812, 72.816074 ], [ 52.734375, 72.816074 ], [ 52.734375, 73.022592 ], [ 53.085938, 73.022592 ], [ 53.085938, 73.124945 ], [ 53.437500, 73.124945 ], [ 53.437500, 73.226700 ], [ 53.789062, 73.226700 ], [ 53.789062, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.528399 ], [ 54.492188, 73.528399 ], [ 54.492188, 73.627789 ], [ 53.789062, 73.627789 ], [ 53.789062, 73.824820 ], [ 54.140625, 73.824820 ], [ 54.140625, 74.019543 ], [ 54.492188, 74.019543 ], [ 54.492188, 74.116047 ], [ 54.843750, 74.116047 ], [ 54.843750, 74.211983 ], [ 55.195312, 74.211983 ], [ 55.195312, 74.402163 ], [ 55.546875, 74.402163 ], [ 55.546875, 74.496413 ], [ 55.898438, 74.496413 ], [ 55.898438, 74.775843 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.050354 ], [ 55.898438, 75.050354 ], [ 55.898438, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.230667 ], [ 56.601562, 75.230667 ], [ 56.601562, 75.320025 ], [ 57.304688, 75.320025 ], [ 57.304688, 75.408854 ], [ 57.656250, 75.408854 ], [ 57.656250, 75.497157 ], [ 58.007812, 75.497157 ], [ 58.007812, 75.584937 ], [ 58.359375, 75.584937 ], [ 58.359375, 75.672197 ], [ 58.710938, 75.672197 ] ] ], [ [ [ 50.273438, 80.872827 ], [ 50.273438, 80.816891 ], [ 50.976562, 80.816891 ], [ 50.976562, 80.760615 ], [ 51.328125, 80.760615 ], [ 51.328125, 80.703997 ], [ 51.679688, 80.703997 ], [ 51.679688, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.532071 ], [ 50.976562, 80.532071 ], [ 50.976562, 80.474065 ], [ 50.273438, 80.474065 ], [ 50.273438, 80.415707 ], [ 49.570312, 80.415707 ], [ 49.570312, 80.356995 ], [ 48.867188, 80.356995 ], [ 48.867188, 80.118564 ], [ 48.515625, 80.118564 ], [ 48.515625, 80.058050 ], [ 47.812500, 80.058050 ], [ 47.812500, 79.997168 ], [ 47.109375, 79.997168 ], [ 47.109375, 80.118564 ], [ 46.757812, 80.118564 ], [ 46.757812, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.297927 ], [ 46.757812, 80.297927 ], [ 46.757812, 80.415707 ], [ 47.109375, 80.415707 ], [ 47.109375, 80.532071 ], [ 45.703125, 80.532071 ], [ 45.703125, 80.589727 ], [ 45.351562, 80.589727 ], [ 45.351562, 80.647035 ], [ 46.054688, 80.647035 ], [ 46.054688, 80.703997 ], [ 46.757812, 80.703997 ], [ 46.757812, 80.760615 ], [ 48.164062, 80.760615 ], [ 48.164062, 80.647035 ], [ 48.515625, 80.647035 ], [ 48.515625, 80.589727 ], [ 48.867188, 80.589727 ], [ 48.867188, 80.703997 ], [ 49.218750, 80.703997 ], [ 49.218750, 80.760615 ], [ 49.570312, 80.760615 ], [ 49.570312, 80.872827 ], [ 50.273438, 80.872827 ] ] ], [ [ [ 43.945312, 68.399180 ], [ 43.593750, 68.399180 ], [ 43.593750, 68.528235 ], [ 43.945312, 68.528235 ], [ 43.945312, 68.399180 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 81.210938, 72.181804 ], [ 80.859375, 72.181804 ], [ 80.859375, 72.395706 ], [ 80.507812, 72.395706 ], [ 80.507812, 73.627789 ], [ 81.210938, 73.627789 ], [ 81.210938, 73.726595 ], [ 81.914062, 73.726595 ], [ 81.914062, 73.824820 ], [ 86.132812, 73.824820 ], [ 86.132812, 73.922469 ], [ 86.835938, 73.922469 ], [ 86.835938, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.307353 ], [ 86.132812, 74.307353 ], [ 86.132812, 74.590108 ], [ 86.484375, 74.590108 ], [ 86.484375, 74.775843 ], [ 86.835938, 74.775843 ], [ 86.835938, 74.959392 ], [ 87.187500, 74.959392 ], [ 87.187500, 75.140778 ], [ 88.593750, 75.140778 ], [ 88.593750, 75.230667 ], [ 88.945312, 75.230667 ], [ 88.945312, 75.320025 ], [ 89.296875, 75.320025 ], [ 89.296875, 75.408854 ], [ 89.648438, 75.408854 ], [ 89.648438, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.584937 ], [ 90.351562, 75.584937 ], [ 90.351562, 75.672197 ], [ 91.406250, 75.672197 ], [ 91.406250, 75.758940 ], [ 91.757812, 75.758940 ], [ 91.757812, 65.802776 ], [ 58.710938, 65.802776 ], [ 58.710938, 68.784144 ], [ 59.062500, 68.784144 ], [ 59.062500, 68.656555 ], [ 59.414062, 68.656555 ], [ 59.414062, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.269387 ], [ 60.468750, 68.269387 ], [ 60.468750, 68.528235 ], [ 60.820312, 68.528235 ], [ 60.820312, 68.784144 ], [ 61.171875, 68.784144 ], [ 61.171875, 68.911005 ], [ 60.820312, 68.911005 ], [ 60.820312, 69.162558 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.411242 ], [ 60.117188, 69.411242 ], [ 60.117188, 69.657086 ], [ 60.468750, 69.657086 ], [ 60.468750, 69.900118 ], [ 60.820312, 69.900118 ], [ 60.820312, 69.778952 ], [ 61.875000, 69.778952 ], [ 61.875000, 69.657086 ], [ 62.929688, 69.657086 ], [ 62.929688, 69.534518 ], [ 63.632812, 69.534518 ], [ 63.632812, 69.411242 ], [ 64.335938, 69.411242 ], [ 64.335938, 69.287257 ], [ 65.039062, 69.287257 ], [ 65.039062, 69.162558 ], [ 65.390625, 69.162558 ], [ 65.390625, 69.037142 ], [ 65.742188, 69.037142 ], [ 65.742188, 68.911005 ], [ 66.093750, 68.911005 ], [ 66.093750, 68.784144 ], [ 66.445312, 68.784144 ], [ 66.445312, 68.656555 ], [ 67.148438, 68.656555 ], [ 67.148438, 68.528235 ], [ 67.500000, 68.528235 ], [ 67.500000, 68.399180 ], [ 67.851562, 68.399180 ], [ 67.851562, 68.269387 ], [ 68.203125, 68.269387 ], [ 68.203125, 68.138852 ], [ 68.554688, 68.138852 ], [ 68.554688, 68.269387 ], [ 68.906250, 68.269387 ], [ 68.906250, 68.528235 ], [ 69.257812, 68.528235 ], [ 69.257812, 68.656555 ], [ 68.906250, 68.656555 ], [ 68.906250, 68.911005 ], [ 68.554688, 68.911005 ], [ 68.554688, 69.037142 ], [ 68.203125, 69.037142 ], [ 68.203125, 69.411242 ], [ 66.796875, 69.411242 ], [ 66.796875, 69.657086 ], [ 67.148438, 69.657086 ], [ 67.148438, 70.259452 ], [ 66.796875, 70.259452 ], [ 66.796875, 71.074056 ], [ 67.148438, 71.074056 ], [ 67.148438, 71.300793 ], [ 67.500000, 71.300793 ], [ 67.500000, 71.524909 ], [ 67.851562, 71.524909 ], [ 67.851562, 71.635993 ], [ 68.203125, 71.635993 ], [ 68.203125, 71.856229 ], [ 68.554688, 71.856229 ], [ 68.554688, 72.181804 ], [ 68.906250, 72.181804 ], [ 68.906250, 72.607120 ], [ 69.257812, 72.607120 ], [ 69.257812, 72.816074 ], [ 69.609375, 72.816074 ], [ 69.609375, 72.919635 ], [ 69.960938, 72.919635 ], [ 69.960938, 73.022592 ], [ 70.312500, 73.022592 ], [ 70.312500, 72.919635 ], [ 71.718750, 72.919635 ], [ 71.718750, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.501722 ], [ 72.773438, 72.501722 ], [ 72.773438, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.746432 ], [ 72.070312, 71.746432 ], [ 72.070312, 71.524909 ], [ 71.718750, 71.524909 ], [ 71.718750, 71.300793 ], [ 72.070312, 71.300793 ], [ 72.070312, 71.074056 ], [ 72.421875, 71.074056 ], [ 72.421875, 70.728979 ], [ 72.773438, 70.728979 ], [ 72.773438, 69.657086 ], [ 72.421875, 69.657086 ], [ 72.421875, 68.911005 ], [ 72.773438, 68.911005 ], [ 72.773438, 68.784144 ], [ 73.125000, 68.784144 ], [ 73.125000, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.399180 ], [ 73.828125, 68.399180 ], [ 73.828125, 68.138852 ], [ 73.476562, 68.138852 ], [ 73.476562, 67.875541 ], [ 73.125000, 67.875541 ], [ 73.125000, 67.609221 ], [ 72.773438, 67.609221 ], [ 72.773438, 67.339861 ], [ 72.421875, 67.339861 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.372755 ], [ 71.718750, 66.372755 ], [ 71.718750, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 73.125000, 66.513260 ], [ 73.125000, 66.652977 ], [ 73.828125, 66.652977 ], [ 73.828125, 67.067433 ], [ 74.179688, 67.067433 ], [ 74.179688, 67.339861 ], [ 74.531250, 67.339861 ], [ 74.531250, 67.609221 ], [ 74.882812, 67.609221 ], [ 74.882812, 68.007571 ], [ 74.531250, 68.007571 ], [ 74.531250, 68.656555 ], [ 74.882812, 68.656555 ], [ 74.882812, 69.037142 ], [ 73.828125, 69.037142 ], [ 73.828125, 69.287257 ], [ 73.476562, 69.287257 ], [ 73.476562, 69.778952 ], [ 73.828125, 69.778952 ], [ 73.828125, 70.140364 ], [ 74.179688, 70.140364 ], [ 74.179688, 70.377854 ], [ 74.531250, 70.377854 ], [ 74.531250, 70.612614 ], [ 74.179688, 70.612614 ], [ 74.179688, 70.844673 ], [ 73.828125, 70.844673 ], [ 73.828125, 71.074056 ], [ 73.476562, 71.074056 ], [ 73.476562, 71.300793 ], [ 73.125000, 71.300793 ], [ 73.125000, 71.413177 ], [ 73.476562, 71.413177 ], [ 73.476562, 71.524909 ], [ 73.828125, 71.524909 ], [ 73.828125, 71.746432 ], [ 74.179688, 71.746432 ], [ 74.179688, 71.856229 ], [ 74.531250, 71.856229 ], [ 74.531250, 71.965388 ], [ 74.882812, 71.965388 ], [ 74.882812, 72.395706 ], [ 74.531250, 72.395706 ], [ 74.531250, 72.816074 ], [ 75.234375, 72.816074 ], [ 75.234375, 72.501722 ], [ 75.585938, 72.501722 ], [ 75.585938, 71.746432 ], [ 75.234375, 71.746432 ], [ 75.234375, 71.300793 ], [ 75.585938, 71.300793 ], [ 75.585938, 71.187754 ], [ 76.289062, 71.187754 ], [ 76.289062, 71.524909 ], [ 75.937500, 71.524909 ], [ 75.937500, 71.856229 ], [ 76.289062, 71.856229 ], [ 76.289062, 71.965388 ], [ 76.640625, 71.965388 ], [ 76.640625, 72.073911 ], [ 77.343750, 72.073911 ], [ 77.343750, 72.181804 ], [ 77.695312, 72.181804 ], [ 77.695312, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.856229 ], [ 81.210938, 71.856229 ], [ 81.210938, 72.181804 ] ], [ [ 81.210938, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 71.856229 ], [ 81.210938, 71.856229 ], [ 81.210938, 71.746432 ] ] ], [ [ [ 68.554688, 76.598545 ], [ 68.906250, 76.598545 ], [ 68.906250, 76.434604 ], [ 68.554688, 76.434604 ], [ 68.554688, 76.268695 ], [ 68.203125, 76.268695 ], [ 68.203125, 76.184995 ], [ 67.500000, 76.184995 ], [ 67.500000, 76.100796 ], [ 66.796875, 76.100796 ], [ 66.796875, 76.016094 ], [ 66.445312, 76.016094 ], [ 66.445312, 75.930885 ], [ 65.742188, 75.930885 ], [ 65.742188, 75.845169 ], [ 65.039062, 75.845169 ], [ 65.039062, 75.758940 ], [ 64.687500, 75.758940 ], [ 64.687500, 75.672197 ], [ 63.984375, 75.672197 ], [ 63.984375, 75.584937 ], [ 63.632812, 75.584937 ], [ 63.632812, 75.497157 ], [ 62.929688, 75.497157 ], [ 62.929688, 75.408854 ], [ 62.578125, 75.408854 ], [ 62.578125, 75.320025 ], [ 61.875000, 75.320025 ], [ 61.875000, 75.230667 ], [ 61.523438, 75.230667 ], [ 61.523438, 75.140778 ], [ 61.171875, 75.140778 ], [ 61.171875, 75.050354 ], [ 60.820312, 75.050354 ], [ 60.820312, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.867889 ], [ 60.117188, 74.867889 ], [ 60.117188, 74.775843 ], [ 59.765625, 74.775843 ], [ 59.765625, 74.590108 ], [ 59.414062, 74.590108 ], [ 59.414062, 74.496413 ], [ 59.062500, 74.496413 ], [ 59.062500, 74.402163 ], [ 58.710938, 74.402163 ], [ 58.710938, 75.758940 ], [ 59.062500, 75.758940 ], [ 59.062500, 75.845169 ], [ 59.414062, 75.845169 ], [ 59.414062, 75.930885 ], [ 60.117188, 75.930885 ], [ 60.117188, 76.016094 ], [ 60.468750, 76.016094 ], [ 60.468750, 76.100796 ], [ 60.820312, 76.100796 ], [ 60.820312, 76.184995 ], [ 61.171875, 76.184995 ], [ 61.171875, 76.268695 ], [ 62.226562, 76.268695 ], [ 62.226562, 76.351896 ], [ 63.632812, 76.351896 ], [ 63.632812, 76.434604 ], [ 64.687500, 76.434604 ], [ 64.687500, 76.516819 ], [ 65.039062, 76.516819 ], [ 65.039062, 76.598545 ], [ 65.390625, 76.598545 ], [ 65.390625, 76.679785 ], [ 65.742188, 76.679785 ], [ 65.742188, 76.760541 ], [ 66.093750, 76.760541 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ], [ 67.500000, 76.920614 ], [ 68.203125, 76.920614 ], [ 68.203125, 76.760541 ], [ 68.554688, 76.760541 ], [ 68.554688, 76.598545 ] ] ], [ [ [ 91.757812, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.415707 ], [ 91.757812, 80.415707 ], [ 91.757812, 80.238501 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 81.210938, 71.856229 ], [ 81.210938, 72.181804 ], [ 80.859375, 72.181804 ], [ 80.859375, 72.395706 ], [ 80.507812, 72.395706 ], [ 80.507812, 73.627789 ], [ 81.210938, 73.627789 ], [ 81.210938, 73.726595 ], [ 81.914062, 73.726595 ], [ 81.914062, 73.824820 ], [ 86.132812, 73.824820 ], [ 86.132812, 73.922469 ], [ 86.835938, 73.922469 ], [ 86.835938, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.307353 ], [ 86.132812, 74.307353 ], [ 86.132812, 74.590108 ], [ 86.484375, 74.590108 ], [ 86.484375, 74.775843 ], [ 86.835938, 74.775843 ], [ 86.835938, 74.959392 ], [ 87.187500, 74.959392 ], [ 87.187500, 75.140778 ], [ 88.593750, 75.140778 ], [ 88.593750, 75.230667 ], [ 88.945312, 75.230667 ], [ 88.945312, 75.320025 ], [ 89.296875, 75.320025 ], [ 89.296875, 75.408854 ], [ 89.648438, 75.408854 ], [ 89.648438, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.584937 ], [ 90.351562, 75.584937 ], [ 90.351562, 75.672197 ], [ 91.406250, 75.672197 ], [ 91.406250, 75.758940 ], [ 91.757812, 75.758940 ], [ 91.757812, 65.802776 ], [ 58.710938, 65.802776 ], [ 58.710938, 68.784144 ], [ 59.062500, 68.784144 ], [ 59.062500, 68.656555 ], [ 59.414062, 68.656555 ], [ 59.414062, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.269387 ], [ 60.468750, 68.269387 ], [ 60.468750, 68.528235 ], [ 60.820312, 68.528235 ], [ 60.820312, 68.784144 ], [ 61.171875, 68.784144 ], [ 61.171875, 68.911005 ], [ 60.820312, 68.911005 ], [ 60.820312, 69.162558 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.411242 ], [ 60.117188, 69.411242 ], [ 60.117188, 69.657086 ], [ 60.468750, 69.657086 ], [ 60.468750, 69.900118 ], [ 60.820312, 69.900118 ], [ 60.820312, 69.778952 ], [ 61.875000, 69.778952 ], [ 61.875000, 69.657086 ], [ 62.929688, 69.657086 ], [ 62.929688, 69.534518 ], [ 63.632812, 69.534518 ], [ 63.632812, 69.411242 ], [ 64.335938, 69.411242 ], [ 64.335938, 69.287257 ], [ 65.039062, 69.287257 ], [ 65.039062, 69.162558 ], [ 65.390625, 69.162558 ], [ 65.390625, 69.037142 ], [ 65.742188, 69.037142 ], [ 65.742188, 68.911005 ], [ 66.093750, 68.911005 ], [ 66.093750, 68.784144 ], [ 66.445312, 68.784144 ], [ 66.445312, 68.656555 ], [ 67.148438, 68.656555 ], [ 67.148438, 68.528235 ], [ 67.500000, 68.528235 ], [ 67.500000, 68.399180 ], [ 67.851562, 68.399180 ], [ 67.851562, 68.269387 ], [ 68.203125, 68.269387 ], [ 68.203125, 68.138852 ], [ 68.554688, 68.138852 ], [ 68.554688, 68.269387 ], [ 68.906250, 68.269387 ], [ 68.906250, 68.528235 ], [ 69.257812, 68.528235 ], [ 69.257812, 68.656555 ], [ 68.906250, 68.656555 ], [ 68.906250, 68.911005 ], [ 68.554688, 68.911005 ], [ 68.554688, 69.037142 ], [ 68.203125, 69.037142 ], [ 68.203125, 69.411242 ], [ 66.796875, 69.411242 ], [ 66.796875, 69.657086 ], [ 67.148438, 69.657086 ], [ 67.148438, 70.259452 ], [ 66.796875, 70.259452 ], [ 66.796875, 71.074056 ], [ 67.148438, 71.074056 ], [ 67.148438, 71.300793 ], [ 67.500000, 71.300793 ], [ 67.500000, 71.524909 ], [ 67.851562, 71.524909 ], [ 67.851562, 71.635993 ], [ 68.203125, 71.635993 ], [ 68.203125, 71.856229 ], [ 68.554688, 71.856229 ], [ 68.554688, 72.181804 ], [ 68.906250, 72.181804 ], [ 68.906250, 72.607120 ], [ 69.257812, 72.607120 ], [ 69.257812, 72.816074 ], [ 69.609375, 72.816074 ], [ 69.609375, 72.919635 ], [ 69.960938, 72.919635 ], [ 69.960938, 73.022592 ], [ 70.312500, 73.022592 ], [ 70.312500, 72.919635 ], [ 71.718750, 72.919635 ], [ 71.718750, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.501722 ], [ 72.773438, 72.501722 ], [ 72.773438, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.746432 ], [ 72.070312, 71.746432 ], [ 72.070312, 71.524909 ], [ 71.718750, 71.524909 ], [ 71.718750, 71.300793 ], [ 72.070312, 71.300793 ], [ 72.070312, 71.074056 ], [ 72.421875, 71.074056 ], [ 72.421875, 70.728979 ], [ 72.773438, 70.728979 ], [ 72.773438, 69.657086 ], [ 72.421875, 69.657086 ], [ 72.421875, 68.911005 ], [ 72.773438, 68.911005 ], [ 72.773438, 68.784144 ], [ 73.125000, 68.784144 ], [ 73.125000, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.399180 ], [ 73.828125, 68.399180 ], [ 73.828125, 68.138852 ], [ 73.476562, 68.138852 ], [ 73.476562, 67.875541 ], [ 73.125000, 67.875541 ], [ 73.125000, 67.609221 ], [ 72.773438, 67.609221 ], [ 72.773438, 67.339861 ], [ 72.421875, 67.339861 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.372755 ], [ 71.718750, 66.372755 ], [ 71.718750, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 73.125000, 66.513260 ], [ 73.125000, 66.652977 ], [ 73.828125, 66.652977 ], [ 73.828125, 67.067433 ], [ 74.179688, 67.067433 ], [ 74.179688, 67.339861 ], [ 74.531250, 67.339861 ], [ 74.531250, 67.609221 ], [ 74.882812, 67.609221 ], [ 74.882812, 68.007571 ], [ 74.531250, 68.007571 ], [ 74.531250, 68.656555 ], [ 74.882812, 68.656555 ], [ 74.882812, 69.037142 ], [ 73.828125, 69.037142 ], [ 73.828125, 69.287257 ], [ 73.476562, 69.287257 ], [ 73.476562, 69.778952 ], [ 73.828125, 69.778952 ], [ 73.828125, 70.140364 ], [ 74.179688, 70.140364 ], [ 74.179688, 70.377854 ], [ 74.531250, 70.377854 ], [ 74.531250, 70.612614 ], [ 74.179688, 70.612614 ], [ 74.179688, 70.844673 ], [ 73.828125, 70.844673 ], [ 73.828125, 71.074056 ], [ 73.476562, 71.074056 ], [ 73.476562, 71.300793 ], [ 73.125000, 71.300793 ], [ 73.125000, 71.413177 ], [ 73.476562, 71.413177 ], [ 73.476562, 71.524909 ], [ 73.828125, 71.524909 ], [ 73.828125, 71.746432 ], [ 74.179688, 71.746432 ], [ 74.179688, 71.856229 ], [ 74.531250, 71.856229 ], [ 74.531250, 71.965388 ], [ 74.882812, 71.965388 ], [ 74.882812, 72.395706 ], [ 74.531250, 72.395706 ], [ 74.531250, 72.816074 ], [ 75.234375, 72.816074 ], [ 75.234375, 72.501722 ], [ 75.585938, 72.501722 ], [ 75.585938, 71.746432 ], [ 75.234375, 71.746432 ], [ 75.234375, 71.300793 ], [ 75.585938, 71.300793 ], [ 75.585938, 71.187754 ], [ 76.289062, 71.187754 ], [ 76.289062, 71.524909 ], [ 75.937500, 71.524909 ], [ 75.937500, 71.856229 ], [ 76.289062, 71.856229 ], [ 76.289062, 71.965388 ], [ 76.640625, 71.965388 ], [ 76.640625, 72.073911 ], [ 77.343750, 72.073911 ], [ 77.343750, 72.181804 ], [ 77.695312, 72.181804 ], [ 77.695312, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.856229 ], [ 81.210938, 71.856229 ] ], [ [ 81.210938, 71.856229 ], [ 81.210938, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 71.856229 ], [ 81.210938, 71.856229 ] ] ], [ [ [ 68.203125, 76.920614 ], [ 68.203125, 76.760541 ], [ 68.554688, 76.760541 ], [ 68.554688, 76.598545 ], [ 68.906250, 76.598545 ], [ 68.906250, 76.434604 ], [ 68.554688, 76.434604 ], [ 68.554688, 76.268695 ], [ 68.203125, 76.268695 ], [ 68.203125, 76.184995 ], [ 67.500000, 76.184995 ], [ 67.500000, 76.100796 ], [ 66.796875, 76.100796 ], [ 66.796875, 76.016094 ], [ 66.445312, 76.016094 ], [ 66.445312, 75.930885 ], [ 65.742188, 75.930885 ], [ 65.742188, 75.845169 ], [ 65.039062, 75.845169 ], [ 65.039062, 75.758940 ], [ 64.687500, 75.758940 ], [ 64.687500, 75.672197 ], [ 63.984375, 75.672197 ], [ 63.984375, 75.584937 ], [ 63.632812, 75.584937 ], [ 63.632812, 75.497157 ], [ 62.929688, 75.497157 ], [ 62.929688, 75.408854 ], [ 62.578125, 75.408854 ], [ 62.578125, 75.320025 ], [ 61.875000, 75.320025 ], [ 61.875000, 75.230667 ], [ 61.523438, 75.230667 ], [ 61.523438, 75.140778 ], [ 61.171875, 75.140778 ], [ 61.171875, 75.050354 ], [ 60.820312, 75.050354 ], [ 60.820312, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.867889 ], [ 60.117188, 74.867889 ], [ 60.117188, 74.775843 ], [ 59.765625, 74.775843 ], [ 59.765625, 74.590108 ], [ 59.414062, 74.590108 ], [ 59.414062, 74.496413 ], [ 59.062500, 74.496413 ], [ 59.062500, 74.402163 ], [ 58.710938, 74.402163 ], [ 58.710938, 75.758940 ], [ 59.062500, 75.758940 ], [ 59.062500, 75.845169 ], [ 59.414062, 75.845169 ], [ 59.414062, 75.930885 ], [ 60.117188, 75.930885 ], [ 60.117188, 76.016094 ], [ 60.468750, 76.016094 ], [ 60.468750, 76.100796 ], [ 60.820312, 76.100796 ], [ 60.820312, 76.184995 ], [ 61.171875, 76.184995 ], [ 61.171875, 76.268695 ], [ 62.226562, 76.268695 ], [ 62.226562, 76.351896 ], [ 63.632812, 76.351896 ], [ 63.632812, 76.434604 ], [ 64.687500, 76.434604 ], [ 64.687500, 76.516819 ], [ 65.039062, 76.516819 ], [ 65.039062, 76.598545 ], [ 65.390625, 76.598545 ], [ 65.390625, 76.679785 ], [ 65.742188, 76.679785 ], [ 65.742188, 76.760541 ], [ 66.093750, 76.760541 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ], [ 67.500000, 76.920614 ], [ 68.203125, 76.920614 ] ] ], [ [ [ 91.757812, 80.415707 ], [ 91.757812, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.415707 ], [ 91.757812, 80.415707 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.828125, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.844673 ], [ 29.882812, 70.844673 ], [ 29.882812, 70.728979 ], [ 30.234375, 70.728979 ], [ 30.234375, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.495574 ], [ 31.289062, 70.495574 ], [ 31.289062, 70.377854 ], [ 30.937500, 70.377854 ], [ 30.937500, 70.259452 ], [ 30.234375, 70.259452 ], [ 30.234375, 70.140364 ], [ 29.882812, 70.140364 ], [ 29.882812, 70.020587 ], [ 30.234375, 70.020587 ], [ 30.234375, 69.778952 ], [ 30.585938, 69.778952 ], [ 30.585938, 69.534518 ], [ 30.937500, 69.534518 ], [ 30.937500, 69.411242 ], [ 30.585938, 69.411242 ], [ 30.585938, 69.287257 ], [ 29.882812, 69.287257 ], [ 29.882812, 69.162558 ], [ 29.179688, 69.162558 ], [ 29.179688, 69.037142 ], [ 28.476562, 69.037142 ], [ 28.476562, 69.162558 ], [ 28.828125, 69.162558 ], [ 28.828125, 69.534518 ], [ 29.179688, 69.534518 ], [ 29.179688, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.900118 ], [ 28.125000, 69.900118 ], [ 28.125000, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 69.900118 ], [ 26.367188, 69.900118 ], [ 26.367188, 69.778952 ], [ 26.015625, 69.778952 ], [ 26.015625, 69.411242 ], [ 25.664062, 69.411242 ], [ 25.664062, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.784144 ], [ 24.960938, 68.784144 ], [ 24.960938, 68.656555 ], [ 24.257812, 68.656555 ], [ 24.257812, 68.784144 ], [ 23.554688, 68.784144 ], [ 23.554688, 68.911005 ], [ 23.203125, 68.911005 ], [ 23.203125, 68.784144 ], [ 22.148438, 68.784144 ], [ 22.148438, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 21.445312, 69.162558 ], [ 21.445312, 69.287257 ], [ 20.742188, 69.287257 ], [ 20.742188, 69.037142 ], [ 20.039062, 69.037142 ], [ 20.039062, 68.399180 ], [ 18.632812, 68.399180 ], [ 18.632812, 68.528235 ], [ 17.929688, 68.528235 ], [ 17.929688, 68.269387 ], [ 17.578125, 68.269387 ], [ 17.578125, 68.007571 ], [ 16.875000, 68.007571 ], [ 16.875000, 67.742759 ], [ 16.523438, 67.742759 ], [ 16.523438, 67.474922 ], [ 16.171875, 67.474922 ], [ 16.171875, 67.067433 ], [ 15.820312, 67.067433 ], [ 15.820312, 66.791909 ], [ 15.468750, 66.791909 ], [ 15.468750, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.930060 ], [ 13.710938, 66.930060 ], [ 13.710938, 67.204032 ], [ 14.062500, 67.204032 ], [ 14.062500, 67.474922 ], [ 14.414062, 67.474922 ], [ 14.414062, 67.742759 ], [ 14.765625, 67.742759 ], [ 14.765625, 67.875541 ], [ 15.117188, 67.875541 ], [ 15.117188, 68.007571 ], [ 15.468750, 68.007571 ], [ 15.468750, 68.138852 ], [ 15.820312, 68.138852 ], [ 15.820312, 68.269387 ], [ 16.171875, 68.269387 ], [ 16.171875, 68.399180 ], [ 16.523438, 68.399180 ], [ 16.523438, 68.528235 ], [ 16.875000, 68.528235 ], [ 16.875000, 68.656555 ], [ 17.226562, 68.656555 ], [ 17.226562, 68.911005 ], [ 17.578125, 68.911005 ], [ 17.578125, 69.037142 ], [ 17.929688, 69.037142 ], [ 17.929688, 69.162558 ], [ 18.281250, 69.162558 ], [ 18.281250, 69.287257 ], [ 18.632812, 69.287257 ], [ 18.632812, 69.534518 ], [ 18.984375, 69.534518 ], [ 18.984375, 69.657086 ], [ 19.335938, 69.657086 ], [ 19.335938, 69.778952 ], [ 19.687500, 69.778952 ], [ 19.687500, 69.900118 ], [ 20.390625, 69.900118 ], [ 20.390625, 70.020587 ], [ 20.742188, 70.020587 ], [ 20.742188, 70.140364 ], [ 21.445312, 70.140364 ], [ 21.445312, 70.259452 ], [ 23.203125, 70.259452 ], [ 23.203125, 70.495574 ], [ 23.554688, 70.495574 ], [ 23.554688, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 70.728979 ], [ 24.257812, 70.728979 ], [ 24.257812, 70.959697 ], [ 24.609375, 70.959697 ], [ 24.609375, 71.074056 ], [ 25.312500, 71.074056 ], [ 25.312500, 70.959697 ], [ 27.070312, 70.959697 ], [ 27.070312, 71.074056 ], [ 27.773438, 71.074056 ], [ 27.773438, 71.187754 ], [ 28.125000, 71.187754 ], [ 28.125000, 71.074056 ], [ 28.828125, 71.074056 ], [ 28.828125, 70.959697 ] ] ], [ [ [ 17.226562, 79.874297 ], [ 17.578125, 79.874297 ], [ 17.578125, 79.812302 ], [ 17.929688, 79.812302 ], [ 17.929688, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.624056 ], [ 18.632812, 79.624056 ], [ 18.632812, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.335938, 79.432371 ], [ 19.335938, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.237185 ], [ 20.390625, 79.237185 ], [ 20.390625, 79.171335 ], [ 20.742188, 79.171335 ], [ 20.742188, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.971386 ], [ 21.445312, 78.971386 ], [ 21.445312, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.836065 ], [ 20.742188, 78.836065 ], [ 20.742188, 78.767792 ], [ 20.039062, 78.767792 ], [ 20.039062, 78.699106 ], [ 19.687500, 78.699106 ], [ 19.687500, 78.630006 ], [ 19.335938, 78.630006 ], [ 19.335938, 78.560488 ], [ 18.984375, 78.560488 ], [ 18.984375, 78.206563 ], [ 18.632812, 78.206563 ], [ 18.632812, 77.767582 ], [ 18.281250, 77.767582 ], [ 18.281250, 77.692870 ], [ 17.929688, 77.692870 ], [ 17.929688, 77.617709 ], [ 17.578125, 77.617709 ], [ 17.578125, 77.235074 ], [ 17.226562, 77.235074 ], [ 17.226562, 76.840816 ], [ 16.875000, 76.840816 ], [ 16.875000, 76.760541 ], [ 15.468750, 76.760541 ], [ 15.468750, 76.920614 ], [ 15.117188, 76.920614 ], [ 15.117188, 76.999935 ], [ 14.765625, 76.999935 ], [ 14.765625, 77.078784 ], [ 14.414062, 77.078784 ], [ 14.414062, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.710938, 77.312520 ], [ 13.710938, 77.389504 ], [ 14.062500, 77.389504 ], [ 14.062500, 77.542096 ], [ 14.414062, 77.542096 ], [ 14.414062, 77.692870 ], [ 14.765625, 77.692870 ], [ 14.765625, 77.767582 ], [ 14.414062, 77.767582 ], [ 14.414062, 77.841848 ], [ 13.710938, 77.841848 ], [ 13.710938, 77.915669 ], [ 13.007812, 77.915669 ], [ 13.007812, 78.061989 ], [ 12.656250, 78.061989 ], [ 12.656250, 78.206563 ], [ 12.304688, 78.206563 ], [ 12.304688, 78.420193 ], [ 11.953125, 78.420193 ], [ 11.953125, 78.560488 ], [ 11.601562, 78.560488 ], [ 11.601562, 78.699106 ], [ 11.250000, 78.699106 ], [ 11.250000, 79.038437 ], [ 10.898438, 79.038437 ], [ 10.898438, 79.432371 ], [ 10.546875, 79.432371 ], [ 10.546875, 79.624056 ], [ 10.898438, 79.624056 ], [ 10.898438, 79.687184 ], [ 11.250000, 79.687184 ], [ 11.250000, 79.749932 ], [ 11.601562, 79.749932 ], [ 11.601562, 79.812302 ], [ 12.304688, 79.812302 ], [ 12.304688, 79.874297 ], [ 12.656250, 79.874297 ], [ 12.656250, 79.935918 ], [ 13.007812, 79.935918 ], [ 13.007812, 79.874297 ], [ 13.359375, 79.874297 ], [ 13.359375, 79.749932 ], [ 13.710938, 79.749932 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.812302 ], [ 15.468750, 79.812302 ], [ 15.468750, 79.997168 ], [ 16.523438, 79.997168 ], [ 16.523438, 80.058050 ], [ 16.875000, 80.058050 ], [ 16.875000, 79.997168 ], [ 17.226562, 79.997168 ], [ 17.226562, 79.874297 ] ] ], [ [ [ 24.609375, 77.767582 ], [ 24.257812, 77.767582 ], [ 24.257812, 77.692870 ], [ 23.906250, 77.692870 ], [ 23.906250, 77.617709 ], [ 23.203125, 77.617709 ], [ 23.203125, 77.542096 ], [ 22.851562, 77.542096 ], [ 22.851562, 77.466028 ], [ 22.148438, 77.466028 ], [ 22.148438, 77.542096 ], [ 21.445312, 77.542096 ], [ 21.445312, 77.617709 ], [ 20.742188, 77.617709 ], [ 20.742188, 77.692870 ], [ 21.093750, 77.692870 ], [ 21.093750, 77.841848 ], [ 21.445312, 77.841848 ], [ 21.445312, 77.989049 ], [ 21.093750, 77.989049 ], [ 21.093750, 78.134493 ], [ 20.742188, 78.134493 ], [ 20.742188, 78.278201 ], [ 21.445312, 78.278201 ], [ 21.445312, 78.349411 ], [ 22.500000, 78.349411 ], [ 22.500000, 78.420193 ], [ 22.851562, 78.420193 ], [ 22.851562, 78.206563 ], [ 23.203125, 78.206563 ], [ 23.203125, 77.989049 ], [ 23.554688, 77.989049 ], [ 23.554688, 77.915669 ], [ 24.257812, 77.915669 ], [ 24.257812, 77.841848 ], [ 24.609375, 77.841848 ], [ 24.609375, 77.767582 ] ] ], [ [ [ 24.960938, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.356995 ], [ 25.664062, 80.356995 ], [ 25.664062, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.238501 ], [ 26.367188, 80.238501 ], [ 26.367188, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.118564 ], [ 27.070312, 80.118564 ], [ 27.070312, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 79.935918 ], [ 27.070312, 79.935918 ], [ 27.070312, 79.812302 ], [ 26.718750, 79.812302 ], [ 26.718750, 79.687184 ], [ 26.367188, 79.687184 ], [ 26.367188, 79.560546 ], [ 26.015625, 79.560546 ], [ 26.015625, 79.496652 ], [ 25.312500, 79.496652 ], [ 25.312500, 79.432371 ], [ 23.906250, 79.432371 ], [ 23.906250, 79.367701 ], [ 22.148438, 79.367701 ], [ 22.148438, 79.432371 ], [ 21.093750, 79.432371 ], [ 21.093750, 79.496652 ], [ 20.390625, 79.496652 ], [ 20.390625, 79.560546 ], [ 20.039062, 79.560546 ], [ 20.039062, 79.812302 ], [ 18.984375, 79.812302 ], [ 18.984375, 79.874297 ], [ 18.281250, 79.874297 ], [ 18.281250, 79.997168 ], [ 17.929688, 79.997168 ], [ 17.929688, 80.118564 ], [ 17.578125, 80.118564 ], [ 17.578125, 80.238501 ], [ 17.226562, 80.238501 ], [ 17.226562, 80.297927 ], [ 17.578125, 80.297927 ], [ 17.578125, 80.356995 ], [ 18.281250, 80.356995 ], [ 18.281250, 80.415707 ], [ 18.984375, 80.415707 ], [ 18.984375, 80.474065 ], [ 19.687500, 80.474065 ], [ 19.687500, 80.532071 ], [ 20.742188, 80.532071 ], [ 20.742188, 80.474065 ], [ 21.093750, 80.474065 ], [ 21.093750, 80.415707 ], [ 21.445312, 80.415707 ], [ 21.445312, 80.356995 ], [ 22.148438, 80.356995 ], [ 22.148438, 80.474065 ], [ 22.500000, 80.474065 ], [ 22.500000, 80.589727 ], [ 23.554688, 80.589727 ], [ 23.554688, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.474065 ], [ 24.960938, 80.474065 ], [ 24.960938, 80.415707 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 28.125000, 71.074056 ], [ 28.828125, 71.074056 ], [ 28.828125, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.844673 ], [ 29.882812, 70.844673 ], [ 29.882812, 70.728979 ], [ 30.234375, 70.728979 ], [ 30.234375, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.495574 ], [ 31.289062, 70.495574 ], [ 31.289062, 70.377854 ], [ 30.937500, 70.377854 ], [ 30.937500, 70.259452 ], [ 30.234375, 70.259452 ], [ 30.234375, 70.140364 ], [ 29.882812, 70.140364 ], [ 29.882812, 70.020587 ], [ 30.234375, 70.020587 ], [ 30.234375, 69.778952 ], [ 30.585938, 69.778952 ], [ 30.585938, 69.534518 ], [ 30.937500, 69.534518 ], [ 30.937500, 69.411242 ], [ 30.585938, 69.411242 ], [ 30.585938, 69.287257 ], [ 29.882812, 69.287257 ], [ 29.882812, 69.162558 ], [ 29.179688, 69.162558 ], [ 29.179688, 69.037142 ], [ 28.476562, 69.037142 ], [ 28.476562, 69.162558 ], [ 28.828125, 69.162558 ], [ 28.828125, 69.534518 ], [ 29.179688, 69.534518 ], [ 29.179688, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.900118 ], [ 28.125000, 69.900118 ], [ 28.125000, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 69.900118 ], [ 26.367188, 69.900118 ], [ 26.367188, 69.778952 ], [ 26.015625, 69.778952 ], [ 26.015625, 69.411242 ], [ 25.664062, 69.411242 ], [ 25.664062, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.784144 ], [ 24.960938, 68.784144 ], [ 24.960938, 68.656555 ], [ 24.257812, 68.656555 ], [ 24.257812, 68.784144 ], [ 23.554688, 68.784144 ], [ 23.554688, 68.911005 ], [ 23.203125, 68.911005 ], [ 23.203125, 68.784144 ], [ 22.148438, 68.784144 ], [ 22.148438, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 21.445312, 69.162558 ], [ 21.445312, 69.287257 ], [ 20.742188, 69.287257 ], [ 20.742188, 69.037142 ], [ 20.039062, 69.037142 ], [ 20.039062, 68.399180 ], [ 18.632812, 68.399180 ], [ 18.632812, 68.528235 ], [ 17.929688, 68.528235 ], [ 17.929688, 68.269387 ], [ 17.578125, 68.269387 ], [ 17.578125, 68.007571 ], [ 16.875000, 68.007571 ], [ 16.875000, 67.742759 ], [ 16.523438, 67.742759 ], [ 16.523438, 67.474922 ], [ 16.171875, 67.474922 ], [ 16.171875, 67.067433 ], [ 15.820312, 67.067433 ], [ 15.820312, 66.791909 ], [ 15.468750, 66.791909 ], [ 15.468750, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.930060 ], [ 13.710938, 66.930060 ], [ 13.710938, 67.204032 ], [ 14.062500, 67.204032 ], [ 14.062500, 67.474922 ], [ 14.414062, 67.474922 ], [ 14.414062, 67.742759 ], [ 14.765625, 67.742759 ], [ 14.765625, 67.875541 ], [ 15.117188, 67.875541 ], [ 15.117188, 68.007571 ], [ 15.468750, 68.007571 ], [ 15.468750, 68.138852 ], [ 15.820312, 68.138852 ], [ 15.820312, 68.269387 ], [ 16.171875, 68.269387 ], [ 16.171875, 68.399180 ], [ 16.523438, 68.399180 ], [ 16.523438, 68.528235 ], [ 16.875000, 68.528235 ], [ 16.875000, 68.656555 ], [ 17.226562, 68.656555 ], [ 17.226562, 68.911005 ], [ 17.578125, 68.911005 ], [ 17.578125, 69.037142 ], [ 17.929688, 69.037142 ], [ 17.929688, 69.162558 ], [ 18.281250, 69.162558 ], [ 18.281250, 69.287257 ], [ 18.632812, 69.287257 ], [ 18.632812, 69.534518 ], [ 18.984375, 69.534518 ], [ 18.984375, 69.657086 ], [ 19.335938, 69.657086 ], [ 19.335938, 69.778952 ], [ 19.687500, 69.778952 ], [ 19.687500, 69.900118 ], [ 20.390625, 69.900118 ], [ 20.390625, 70.020587 ], [ 20.742188, 70.020587 ], [ 20.742188, 70.140364 ], [ 21.445312, 70.140364 ], [ 21.445312, 70.259452 ], [ 23.203125, 70.259452 ], [ 23.203125, 70.495574 ], [ 23.554688, 70.495574 ], [ 23.554688, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 70.728979 ], [ 24.257812, 70.728979 ], [ 24.257812, 70.959697 ], [ 24.609375, 70.959697 ], [ 24.609375, 71.074056 ], [ 25.312500, 71.074056 ], [ 25.312500, 70.959697 ], [ 27.070312, 70.959697 ], [ 27.070312, 71.074056 ], [ 27.773438, 71.074056 ], [ 27.773438, 71.187754 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 16.875000, 79.997168 ], [ 17.226562, 79.997168 ], [ 17.226562, 79.874297 ], [ 17.578125, 79.874297 ], [ 17.578125, 79.812302 ], [ 17.929688, 79.812302 ], [ 17.929688, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.624056 ], [ 18.632812, 79.624056 ], [ 18.632812, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.335938, 79.432371 ], [ 19.335938, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.237185 ], [ 20.390625, 79.237185 ], [ 20.390625, 79.171335 ], [ 20.742188, 79.171335 ], [ 20.742188, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.971386 ], [ 21.445312, 78.971386 ], [ 21.445312, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.836065 ], [ 20.742188, 78.836065 ], [ 20.742188, 78.767792 ], [ 20.039062, 78.767792 ], [ 20.039062, 78.699106 ], [ 19.687500, 78.699106 ], [ 19.687500, 78.630006 ], [ 19.335938, 78.630006 ], [ 19.335938, 78.560488 ], [ 18.984375, 78.560488 ], [ 18.984375, 78.206563 ], [ 18.632812, 78.206563 ], [ 18.632812, 77.767582 ], [ 18.281250, 77.767582 ], [ 18.281250, 77.692870 ], [ 17.929688, 77.692870 ], [ 17.929688, 77.617709 ], [ 17.578125, 77.617709 ], [ 17.578125, 77.235074 ], [ 17.226562, 77.235074 ], [ 17.226562, 76.840816 ], [ 16.875000, 76.840816 ], [ 16.875000, 76.760541 ], [ 15.468750, 76.760541 ], [ 15.468750, 76.920614 ], [ 15.117188, 76.920614 ], [ 15.117188, 76.999935 ], [ 14.765625, 76.999935 ], [ 14.765625, 77.078784 ], [ 14.414062, 77.078784 ], [ 14.414062, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.710938, 77.312520 ], [ 13.710938, 77.389504 ], [ 14.062500, 77.389504 ], [ 14.062500, 77.542096 ], [ 14.414062, 77.542096 ], [ 14.414062, 77.692870 ], [ 14.765625, 77.692870 ], [ 14.765625, 77.767582 ], [ 14.414062, 77.767582 ], [ 14.414062, 77.841848 ], [ 13.710938, 77.841848 ], [ 13.710938, 77.915669 ], [ 13.007812, 77.915669 ], [ 13.007812, 78.061989 ], [ 12.656250, 78.061989 ], [ 12.656250, 78.206563 ], [ 12.304688, 78.206563 ], [ 12.304688, 78.420193 ], [ 11.953125, 78.420193 ], [ 11.953125, 78.560488 ], [ 11.601562, 78.560488 ], [ 11.601562, 78.699106 ], [ 11.250000, 78.699106 ], [ 11.250000, 79.038437 ], [ 10.898438, 79.038437 ], [ 10.898438, 79.432371 ], [ 10.546875, 79.432371 ], [ 10.546875, 79.624056 ], [ 10.898438, 79.624056 ], [ 10.898438, 79.687184 ], [ 11.250000, 79.687184 ], [ 11.250000, 79.749932 ], [ 11.601562, 79.749932 ], [ 11.601562, 79.812302 ], [ 12.304688, 79.812302 ], [ 12.304688, 79.874297 ], [ 12.656250, 79.874297 ], [ 12.656250, 79.935918 ], [ 13.007812, 79.935918 ], [ 13.007812, 79.874297 ], [ 13.359375, 79.874297 ], [ 13.359375, 79.749932 ], [ 13.710938, 79.749932 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.812302 ], [ 15.468750, 79.812302 ], [ 15.468750, 79.997168 ], [ 16.523438, 79.997168 ], [ 16.523438, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 22.851562, 78.420193 ], [ 22.851562, 78.206563 ], [ 23.203125, 78.206563 ], [ 23.203125, 77.989049 ], [ 23.554688, 77.989049 ], [ 23.554688, 77.915669 ], [ 24.257812, 77.915669 ], [ 24.257812, 77.841848 ], [ 24.609375, 77.841848 ], [ 24.609375, 77.767582 ], [ 24.257812, 77.767582 ], [ 24.257812, 77.692870 ], [ 23.906250, 77.692870 ], [ 23.906250, 77.617709 ], [ 23.203125, 77.617709 ], [ 23.203125, 77.542096 ], [ 22.851562, 77.542096 ], [ 22.851562, 77.466028 ], [ 22.148438, 77.466028 ], [ 22.148438, 77.542096 ], [ 21.445312, 77.542096 ], [ 21.445312, 77.617709 ], [ 20.742188, 77.617709 ], [ 20.742188, 77.692870 ], [ 21.093750, 77.692870 ], [ 21.093750, 77.841848 ], [ 21.445312, 77.841848 ], [ 21.445312, 77.989049 ], [ 21.093750, 77.989049 ], [ 21.093750, 78.134493 ], [ 20.742188, 78.134493 ], [ 20.742188, 78.278201 ], [ 21.445312, 78.278201 ], [ 21.445312, 78.349411 ], [ 22.500000, 78.349411 ], [ 22.500000, 78.420193 ], [ 22.851562, 78.420193 ] ] ], [ [ [ 23.554688, 80.589727 ], [ 23.554688, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.474065 ], [ 24.960938, 80.474065 ], [ 24.960938, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.356995 ], [ 25.664062, 80.356995 ], [ 25.664062, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.238501 ], [ 26.367188, 80.238501 ], [ 26.367188, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.118564 ], [ 27.070312, 80.118564 ], [ 27.070312, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 79.935918 ], [ 27.070312, 79.935918 ], [ 27.070312, 79.812302 ], [ 26.718750, 79.812302 ], [ 26.718750, 79.687184 ], [ 26.367188, 79.687184 ], [ 26.367188, 79.560546 ], [ 26.015625, 79.560546 ], [ 26.015625, 79.496652 ], [ 25.312500, 79.496652 ], [ 25.312500, 79.432371 ], [ 23.906250, 79.432371 ], [ 23.906250, 79.367701 ], [ 22.148438, 79.367701 ], [ 22.148438, 79.432371 ], [ 21.093750, 79.432371 ], [ 21.093750, 79.496652 ], [ 20.390625, 79.496652 ], [ 20.390625, 79.560546 ], [ 20.039062, 79.560546 ], [ 20.039062, 79.812302 ], [ 18.984375, 79.812302 ], [ 18.984375, 79.874297 ], [ 18.281250, 79.874297 ], [ 18.281250, 79.997168 ], [ 17.929688, 79.997168 ], [ 17.929688, 80.118564 ], [ 17.578125, 80.118564 ], [ 17.578125, 80.238501 ], [ 17.226562, 80.238501 ], [ 17.226562, 80.297927 ], [ 17.578125, 80.297927 ], [ 17.578125, 80.356995 ], [ 18.281250, 80.356995 ], [ 18.281250, 80.415707 ], [ 18.984375, 80.415707 ], [ 18.984375, 80.474065 ], [ 19.687500, 80.474065 ], [ 19.687500, 80.532071 ], [ 20.742188, 80.532071 ], [ 20.742188, 80.474065 ], [ 21.093750, 80.474065 ], [ 21.093750, 80.415707 ], [ 21.445312, 80.415707 ], [ 21.445312, 80.356995 ], [ 22.148438, 80.356995 ], [ 22.148438, 80.474065 ], [ 22.500000, 80.474065 ], [ 22.500000, 80.589727 ], [ 23.554688, 80.589727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 68.138852 ], [ 23.203125, 68.138852 ], [ 23.203125, 67.875541 ], [ 23.554688, 67.875541 ], [ 23.554688, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 65.802776 ], [ 14.765625, 65.802776 ], [ 14.765625, 65.946472 ], [ 15.117188, 65.946472 ], [ 15.117188, 66.372755 ], [ 15.468750, 66.372755 ], [ 15.468750, 66.791909 ], [ 15.820312, 66.791909 ], [ 15.820312, 67.067433 ], [ 16.171875, 67.067433 ], [ 16.171875, 67.474922 ], [ 16.523438, 67.474922 ], [ 16.523438, 67.742759 ], [ 16.875000, 67.742759 ], [ 16.875000, 68.007571 ], [ 17.578125, 68.007571 ], [ 17.578125, 68.269387 ], [ 17.929688, 68.269387 ], [ 17.929688, 68.528235 ], [ 18.632812, 68.528235 ], [ 18.632812, 68.399180 ], [ 20.039062, 68.399180 ], [ 20.039062, 69.037142 ], [ 21.093750, 69.037142 ], [ 21.093750, 68.911005 ], [ 21.445312, 68.911005 ], [ 21.445312, 68.784144 ], [ 21.796875, 68.784144 ], [ 21.796875, 68.656555 ], [ 22.148438, 68.656555 ], [ 22.148438, 68.528235 ], [ 22.500000, 68.528235 ], [ 22.500000, 68.269387 ], [ 22.851562, 68.269387 ], [ 22.851562, 68.138852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 69.037142 ], [ 21.093750, 68.911005 ], [ 21.445312, 68.911005 ], [ 21.445312, 68.784144 ], [ 21.796875, 68.784144 ], [ 21.796875, 68.656555 ], [ 22.148438, 68.656555 ], [ 22.148438, 68.528235 ], [ 22.500000, 68.528235 ], [ 22.500000, 68.269387 ], [ 22.851562, 68.269387 ], [ 22.851562, 68.138852 ], [ 23.203125, 68.138852 ], [ 23.203125, 67.875541 ], [ 23.554688, 67.875541 ], [ 23.554688, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 65.802776 ], [ 14.765625, 65.802776 ], [ 14.765625, 65.946472 ], [ 15.117188, 65.946472 ], [ 15.117188, 66.372755 ], [ 15.468750, 66.372755 ], [ 15.468750, 66.791909 ], [ 15.820312, 66.791909 ], [ 15.820312, 67.067433 ], [ 16.171875, 67.067433 ], [ 16.171875, 67.474922 ], [ 16.523438, 67.474922 ], [ 16.523438, 67.742759 ], [ 16.875000, 67.742759 ], [ 16.875000, 68.007571 ], [ 17.578125, 68.007571 ], [ 17.578125, 68.269387 ], [ 17.929688, 68.269387 ], [ 17.929688, 68.528235 ], [ 18.632812, 68.528235 ], [ 18.632812, 68.399180 ], [ 20.039062, 68.399180 ], [ 20.039062, 69.037142 ], [ 21.093750, 69.037142 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 69.778952 ], [ 29.179688, 69.778952 ], [ 29.179688, 69.534518 ], [ 28.828125, 69.534518 ], [ 28.828125, 69.162558 ], [ 28.476562, 69.162558 ], [ 28.476562, 68.269387 ], [ 28.828125, 68.269387 ], [ 28.828125, 68.138852 ], [ 29.179688, 68.138852 ], [ 29.179688, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.474922 ], [ 29.531250, 67.474922 ], [ 29.531250, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.652977 ], [ 29.531250, 66.652977 ], [ 29.531250, 66.372755 ], [ 29.882812, 66.372755 ], [ 29.882812, 65.946472 ], [ 30.234375, 65.946472 ], [ 30.234375, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 66.089364 ], [ 23.554688, 66.089364 ], [ 23.554688, 67.875541 ], [ 23.203125, 67.875541 ], [ 23.203125, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.269387 ], [ 22.500000, 68.269387 ], [ 22.500000, 68.528235 ], [ 22.148438, 68.528235 ], [ 22.148438, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 22.148438, 68.911005 ], [ 22.148438, 68.784144 ], [ 23.203125, 68.784144 ], [ 23.203125, 68.911005 ], [ 23.554688, 68.911005 ], [ 23.554688, 68.784144 ], [ 24.257812, 68.784144 ], [ 24.257812, 68.656555 ], [ 24.960938, 68.656555 ], [ 24.960938, 68.784144 ], [ 25.312500, 68.784144 ], [ 25.312500, 68.911005 ], [ 25.664062, 68.911005 ], [ 25.664062, 69.411242 ], [ 26.015625, 69.411242 ], [ 26.015625, 69.778952 ], [ 26.367188, 69.778952 ], [ 26.367188, 69.900118 ], [ 27.070312, 69.900118 ], [ 27.070312, 70.020587 ], [ 28.125000, 70.020587 ], [ 28.125000, 69.900118 ], [ 28.828125, 69.900118 ], [ 28.828125, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 70.020587 ], [ 28.125000, 69.900118 ], [ 28.828125, 69.900118 ], [ 28.828125, 69.778952 ], [ 29.179688, 69.778952 ], [ 29.179688, 69.534518 ], [ 28.828125, 69.534518 ], [ 28.476562, 69.162558 ], [ 28.476562, 68.269387 ], [ 28.828125, 68.269387 ], [ 28.828125, 68.138852 ], [ 29.179688, 68.138852 ], [ 29.179688, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.474922 ], [ 29.531250, 67.474922 ], [ 29.531250, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.652977 ], [ 29.531250, 66.652977 ], [ 29.531250, 66.372755 ], [ 29.882812, 66.372755 ], [ 29.882812, 65.946472 ], [ 30.234375, 65.946472 ], [ 30.234375, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 66.089364 ], [ 23.554688, 66.089364 ], [ 23.554688, 67.875541 ], [ 23.203125, 67.875541 ], [ 23.203125, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.269387 ], [ 22.500000, 68.269387 ], [ 22.500000, 68.528235 ], [ 22.148438, 68.528235 ], [ 22.148438, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 22.148438, 68.911005 ], [ 22.148438, 68.784144 ], [ 23.203125, 68.784144 ], [ 23.203125, 68.911005 ], [ 23.554688, 68.911005 ], [ 23.554688, 68.784144 ], [ 24.257812, 68.784144 ], [ 24.257812, 68.656555 ], [ 24.960938, 68.656555 ], [ 24.960938, 68.784144 ], [ 25.312500, 68.784144 ], [ 25.312500, 68.911005 ], [ 25.664062, 68.911005 ], [ 25.664062, 69.411242 ], [ 26.015625, 69.411242 ], [ 26.015625, 69.778952 ], [ 26.367188, 69.778952 ], [ 26.367188, 69.900118 ], [ 27.070312, 69.900118 ], [ 27.070312, 70.020587 ], [ 28.125000, 70.020587 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 113.203125, -66.089364 ], [ 113.203125, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -66.089364 ], [ 135.000000, -66.089364 ], [ 135.000000, -65.802776 ], [ 135.703125, -65.802776 ], [ 135.703125, -66.231457 ], [ 136.054688, -66.231457 ], [ 136.054688, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 146.250000, -67.204032 ], [ 146.250000, -67.474922 ], [ 145.898438, -67.474922 ], [ 145.898438, -67.742759 ], [ 146.250000, -67.742759 ], [ 146.250000, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -68.007571 ], [ 147.304688, -68.007571 ], [ 147.304688, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.269387 ], [ 148.359375, -68.269387 ], [ 148.359375, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.528235 ], [ 150.468750, -68.528235 ], [ 150.468750, -68.656555 ], [ 151.523438, -68.656555 ], [ 151.523438, -68.784144 ], [ 152.226562, -68.784144 ], [ 152.226562, -68.911005 ], [ 153.984375, -68.911005 ], [ 153.984375, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.037142 ], [ 155.742188, -69.037142 ], [ 155.742188, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.287257 ], [ 156.445312, -69.287257 ], [ 156.445312, -69.411242 ], [ 157.148438, -69.411242 ], [ 157.148438, -69.534518 ], [ 158.203125, -69.534518 ], [ 158.203125, -69.657086 ], [ 159.257812, -69.657086 ], [ 159.257812, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.259452 ], [ 160.664062, -70.259452 ], [ 160.664062, -70.377854 ], [ 161.015625, -70.377854 ], [ 161.015625, -70.495574 ], [ 161.367188, -70.495574 ], [ 161.367188, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.728979 ], [ 166.640625, -70.728979 ], [ 166.640625, -70.844673 ], [ 167.695312, -70.844673 ], [ 167.695312, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.074056 ], [ 169.101562, -71.074056 ], [ 169.101562, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -71.746432 ], [ 171.210938, -71.746432 ], [ 171.210938, -72.181804 ], [ 170.859375, -72.181804 ], [ 170.859375, -72.395706 ], [ 170.507812, -72.395706 ], [ 170.507812, -72.711903 ], [ 170.156250, -72.711903 ], [ 170.156250, -73.124945 ], [ 169.804688, -73.124945 ], [ 169.804688, -73.428424 ], [ 169.453125, -73.428424 ], [ 169.453125, -73.726595 ], [ 168.750000, -73.726595 ], [ 168.750000, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -73.922469 ], [ 167.695312, -73.922469 ], [ 167.695312, -74.116047 ], [ 167.343750, -74.116047 ], [ 167.343750, -74.307353 ], [ 166.640625, -74.307353 ], [ 166.640625, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -74.590108 ], [ 165.585938, -74.590108 ], [ 165.585938, -74.867889 ], [ 165.234375, -74.867889 ], [ 165.234375, -75.050354 ], [ 164.882812, -75.050354 ], [ 164.882812, -75.230667 ], [ 164.531250, -75.230667 ], [ 164.531250, -75.408854 ], [ 164.179688, -75.408854 ], [ 164.179688, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -76.100796 ], [ 163.476562, -76.100796 ], [ 163.476562, -77.235074 ], [ 163.828125, -77.235074 ], [ 163.828125, -77.389504 ], [ 164.179688, -77.389504 ], [ 164.179688, -77.989049 ], [ 164.531250, -77.989049 ], [ 164.531250, -78.134493 ], [ 164.882812, -78.134493 ], [ 164.882812, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.278201 ], [ 165.937500, -78.278201 ], [ 165.937500, -78.349411 ], [ 166.640625, -78.349411 ], [ 166.640625, -78.560488 ], [ 166.992188, -78.560488 ], [ 166.992188, -78.767792 ], [ 166.640625, -78.767792 ], [ 166.640625, -78.836065 ], [ 165.937500, -78.836065 ], [ 165.937500, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -78.971386 ], [ 164.882812, -78.971386 ], [ 164.882812, -79.038437 ], [ 164.179688, -79.038437 ], [ 164.179688, -79.105086 ], [ 163.125000, -79.105086 ], [ 163.125000, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.367701 ], [ 161.367188, -79.367701 ], [ 161.367188, -79.624056 ], [ 161.015625, -79.624056 ], [ 161.015625, -79.997168 ], [ 160.664062, -79.997168 ], [ 160.664062, -80.415707 ], [ 160.312500, -80.415707 ], [ 160.312500, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.983688 ], [ 160.312500, -80.983688 ], [ 160.312500, -81.093214 ], [ 160.664062, -81.093214 ], [ 160.664062, -81.201420 ], [ 161.015625, -81.201420 ], [ 161.015625, -81.361287 ], [ 161.367188, -81.361287 ], [ 161.367188, -81.569968 ], [ 161.718750, -81.569968 ], [ 161.718750, -81.773644 ], [ 162.070312, -81.773644 ], [ 162.070312, -81.972431 ], [ 162.421875, -81.972431 ], [ 162.421875, -82.118384 ], [ 162.773438, -82.118384 ], [ 162.773438, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.308893 ], [ 163.476562, -82.308893 ], [ 163.476562, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.448764 ], [ 164.179688, -82.448764 ], [ 164.179688, -82.540604 ], [ 164.531250, -82.540604 ], [ 164.531250, -82.631333 ], [ 164.882812, -82.631333 ], [ 164.882812, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.585938, -82.765373 ], [ 165.585938, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -82.940327 ], [ 166.289062, -82.940327 ], [ 166.289062, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.153111 ], [ 167.695312, -83.153111 ], [ 167.695312, -83.236426 ], [ 168.046875, -83.236426 ], [ 168.046875, -83.277705 ], [ 168.398438, -83.277705 ], [ 168.398438, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.480366 ], [ 169.101562, -83.480366 ], [ 169.101562, -83.715544 ], [ 169.453125, -83.715544 ], [ 169.453125, -83.867616 ], [ 169.804688, -83.867616 ], [ 169.804688, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.942272 ], [ 170.859375, -83.942272 ], [ 170.859375, -83.979259 ], [ 171.210938, -83.979259 ], [ 171.210938, -84.016022 ], [ 171.914062, -84.016022 ], [ 171.914062, -84.052561 ], [ 172.265625, -84.052561 ], [ 172.265625, -84.088878 ], [ 172.617188, -84.088878 ], [ 172.617188, -84.196507 ], [ 172.968750, -84.196507 ], [ 172.968750, -84.336980 ], [ 173.320312, -84.336980 ], [ 173.320312, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.371566 ], [ 174.023438, -84.371566 ], [ 174.023438, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.302183 ], [ 175.078125, -84.302183 ], [ 175.078125, -84.267172 ], [ 175.429688, -84.267172 ], [ 175.429688, -84.231947 ], [ 175.781250, -84.231947 ], [ 175.781250, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 176.835938, -84.267172 ], [ 176.835938, -84.302183 ], [ 177.187500, -84.302183 ], [ 177.187500, -84.371566 ], [ 177.539062, -84.371566 ], [ 177.539062, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.242188, -84.474065 ], [ 178.242188, -84.507816 ], [ 178.593750, -84.507816 ], [ 178.593750, -84.574702 ], [ 178.945312, -84.574702 ], [ 178.945312, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.640777 ], [ 179.648438, -84.640777 ], [ 179.648438, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 94.921875, -67.204032 ], [ 94.921875, -67.339861 ], [ 96.328125, -67.339861 ], [ 96.328125, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.067433 ], [ 99.140625, -67.067433 ], [ 99.140625, -67.204032 ], [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.802776 ], [ 135.703125, -66.231457 ], [ 136.054688, -66.231457 ], [ 136.054688, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 146.250000, -67.204032 ], [ 146.250000, -67.474922 ], [ 145.898438, -67.474922 ], [ 145.898438, -67.742759 ], [ 146.250000, -67.742759 ], [ 146.250000, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -68.007571 ], [ 147.304688, -68.007571 ], [ 147.304688, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.269387 ], [ 148.359375, -68.269387 ], [ 148.359375, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.528235 ], [ 150.468750, -68.528235 ], [ 150.468750, -68.656555 ], [ 151.523438, -68.656555 ], [ 151.523438, -68.784144 ], [ 152.226562, -68.784144 ], [ 152.226562, -68.911005 ], [ 153.984375, -68.911005 ], [ 153.984375, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.037142 ], [ 155.742188, -69.037142 ], [ 155.742188, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.287257 ], [ 156.445312, -69.287257 ], [ 156.445312, -69.411242 ], [ 157.148438, -69.411242 ], [ 157.148438, -69.534518 ], [ 158.203125, -69.534518 ], [ 158.203125, -69.657086 ], [ 159.257812, -69.657086 ], [ 159.257812, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.259452 ], [ 160.664062, -70.259452 ], [ 160.664062, -70.377854 ], [ 161.015625, -70.377854 ], [ 161.015625, -70.495574 ], [ 161.367188, -70.495574 ], [ 161.367188, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.728979 ], [ 166.640625, -70.728979 ], [ 166.640625, -70.844673 ], [ 167.695312, -70.844673 ], [ 167.695312, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.074056 ], [ 169.101562, -71.074056 ], [ 169.101562, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -71.746432 ], [ 171.210938, -71.746432 ], [ 171.210938, -72.181804 ], [ 170.859375, -72.181804 ], [ 170.859375, -72.395706 ], [ 170.507812, -72.395706 ], [ 170.507812, -72.711903 ], [ 170.156250, -72.711903 ], [ 170.156250, -73.124945 ], [ 169.804688, -73.124945 ], [ 169.804688, -73.428424 ], [ 169.453125, -73.428424 ], [ 169.453125, -73.726595 ], [ 168.750000, -73.726595 ], [ 168.750000, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -73.922469 ], [ 167.695312, -73.922469 ], [ 167.695312, -74.116047 ], [ 167.343750, -74.116047 ], [ 167.343750, -74.307353 ], [ 166.640625, -74.307353 ], [ 166.640625, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -74.590108 ], [ 165.585938, -74.590108 ], [ 165.585938, -74.867889 ], [ 165.234375, -74.867889 ], [ 165.234375, -75.050354 ], [ 164.882812, -75.050354 ], [ 164.882812, -75.230667 ], [ 164.531250, -75.230667 ], [ 164.531250, -75.408854 ], [ 164.179688, -75.408854 ], [ 164.179688, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -76.100796 ], [ 163.476562, -76.100796 ], [ 163.476562, -77.235074 ], [ 163.828125, -77.235074 ], [ 163.828125, -77.389504 ], [ 164.179688, -77.389504 ], [ 164.179688, -77.989049 ], [ 164.531250, -77.989049 ], [ 164.531250, -78.134493 ], [ 164.882812, -78.134493 ], [ 164.882812, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.278201 ], [ 165.937500, -78.278201 ], [ 165.937500, -78.349411 ], [ 166.640625, -78.349411 ], [ 166.640625, -78.560488 ], [ 166.992188, -78.560488 ], [ 166.992188, -78.767792 ], [ 166.640625, -78.767792 ], [ 166.640625, -78.836065 ], [ 165.937500, -78.836065 ], [ 165.937500, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -78.971386 ], [ 164.882812, -78.971386 ], [ 164.882812, -79.038437 ], [ 164.179688, -79.038437 ], [ 164.179688, -79.105086 ], [ 163.125000, -79.105086 ], [ 163.125000, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.367701 ], [ 161.367188, -79.367701 ], [ 161.367188, -79.624056 ], [ 161.015625, -79.624056 ], [ 161.015625, -79.997168 ], [ 160.664062, -79.997168 ], [ 160.664062, -80.415707 ], [ 160.312500, -80.415707 ], [ 160.312500, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.983688 ], [ 160.312500, -80.983688 ], [ 160.312500, -81.093214 ], [ 160.664062, -81.093214 ], [ 160.664062, -81.201420 ], [ 161.015625, -81.201420 ], [ 161.015625, -81.361287 ], [ 161.367188, -81.361287 ], [ 161.367188, -81.569968 ], [ 161.718750, -81.569968 ], [ 161.718750, -81.773644 ], [ 162.070312, -81.773644 ], [ 162.070312, -81.972431 ], [ 162.421875, -81.972431 ], [ 162.421875, -82.118384 ], [ 162.773438, -82.118384 ], [ 162.773438, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.308893 ], [ 163.476562, -82.308893 ], [ 163.476562, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.448764 ], [ 164.179688, -82.448764 ], [ 164.179688, -82.540604 ], [ 164.531250, -82.540604 ], [ 164.531250, -82.631333 ], [ 164.882812, -82.631333 ], [ 164.882812, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.585938, -82.765373 ], [ 165.585938, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -82.940327 ], [ 166.289062, -82.940327 ], [ 166.289062, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.153111 ], [ 167.695312, -83.153111 ], [ 167.695312, -83.236426 ], [ 168.046875, -83.236426 ], [ 168.046875, -83.277705 ], [ 168.398438, -83.277705 ], [ 168.398438, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.480366 ], [ 169.101562, -83.480366 ], [ 169.101562, -83.715544 ], [ 169.453125, -83.715544 ], [ 169.453125, -83.867616 ], [ 169.804688, -83.867616 ], [ 169.804688, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.942272 ], [ 170.859375, -83.942272 ], [ 170.859375, -83.979259 ], [ 171.210938, -83.979259 ], [ 171.210938, -84.016022 ], [ 171.914062, -84.016022 ], [ 171.914062, -84.052561 ], [ 172.265625, -84.052561 ], [ 172.265625, -84.088878 ], [ 172.617188, -84.088878 ], [ 172.617188, -84.196507 ], [ 172.968750, -84.196507 ], [ 172.968750, -84.336980 ], [ 173.320312, -84.336980 ], [ 173.320312, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.371566 ], [ 174.023438, -84.371566 ], [ 174.023438, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.302183 ], [ 175.078125, -84.302183 ], [ 175.078125, -84.267172 ], [ 175.429688, -84.267172 ], [ 175.429688, -84.231947 ], [ 175.781250, -84.231947 ], [ 175.781250, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 176.835938, -84.267172 ], [ 176.835938, -84.302183 ], [ 177.187500, -84.302183 ], [ 177.187500, -84.371566 ], [ 177.539062, -84.371566 ], [ 177.539062, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.242188, -84.474065 ], [ 178.242188, -84.507816 ], [ 178.593750, -84.507816 ], [ 178.593750, -84.574702 ], [ 178.945312, -84.574702 ], [ 178.945312, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.640777 ], [ 179.648438, -84.640777 ], [ 179.648438, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 94.921875, -67.204032 ], [ 94.921875, -67.339861 ], [ 96.328125, -67.339861 ], [ 96.328125, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.067433 ], [ 99.140625, -67.067433 ], [ 99.140625, -67.204032 ], [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 113.203125, -66.089364 ], [ 113.203125, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -66.089364 ], [ 135.000000, -66.089364 ], [ 135.000000, -65.802776 ], [ 135.703125, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ] ] ], [ [ [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.372755 ], [ 101.953125, -66.372755 ], [ 101.953125, -66.089364 ], [ 102.304688, -66.089364 ], [ 102.304688, -65.946472 ], [ 102.656250, -65.946472 ], [ 102.656250, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.802776 ], [ 104.062500, -65.802776 ], [ 104.062500, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ] ] ], [ [ [ 136.054688, -66.652977 ], [ 136.406250, -66.652977 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -65.512963 ], [ 135.703125, -65.512963 ], [ 135.703125, -66.372755 ], [ 136.054688, -66.372755 ], [ 136.054688, -66.652977 ] ] ], [ [ [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ] ] ], [ [ [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ] ] ], [ [ [ 103.359375, -65.802776 ], [ 104.062500, -65.802776 ], [ 104.062500, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.372755 ], [ 101.953125, -66.372755 ], [ 101.953125, -66.089364 ], [ 102.304688, -66.089364 ], [ 102.304688, -65.946472 ], [ 102.656250, -65.946472 ], [ 102.656250, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.802776 ] ] ], [ [ [ 135.703125, -66.372755 ], [ 136.054688, -66.372755 ], [ 136.054688, -66.652977 ], [ 136.406250, -66.652977 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -65.512963 ], [ 135.703125, -65.512963 ], [ 135.703125, -66.372755 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.609375, 1.054628 ], [ 113.203125, 1.054628 ], [ 113.203125, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.703107 ], [ 110.039062, 0.703107 ], [ 110.039062, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 114.609375, 1.757537 ], [ 114.609375, 1.054628 ] ] ], [ [ [ 104.414062, 1.406109 ], [ 103.007812, 1.406109 ], [ 103.007812, 1.757537 ], [ 104.414062, 1.757537 ], [ 104.414062, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.609375, 1.757537 ], [ 114.609375, 1.054628 ], [ 113.203125, 1.054628 ], [ 113.203125, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.703107 ], [ 110.039062, 0.703107 ], [ 110.039062, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 114.609375, 1.757537 ] ] ], [ [ [ 104.414062, 1.757537 ], [ 104.414062, 1.406109 ], [ 103.007812, 1.406109 ], [ 103.007812, 1.757537 ], [ 104.414062, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -18.312811 ], [ 177.539062, -18.312811 ], [ 177.539062, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.644022 ], [ 178.593750, -17.644022 ], [ 178.593750, -18.312811 ] ] ], [ [ [ 180.000000, -16.636192 ], [ 179.296875, -16.636192 ], [ 179.296875, -16.972741 ], [ 178.593750, -16.972741 ], [ 178.593750, -16.636192 ], [ 178.945312, -16.636192 ], [ 178.945312, -16.299051 ], [ 180.000000, -16.299051 ], [ 180.000000, -16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.644022 ], [ 178.593750, -18.312811 ], [ 177.539062, -18.312811 ], [ 177.539062, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.644022 ], [ 178.593750, -17.644022 ] ] ], [ [ [ 180.000000, -16.299051 ], [ 180.000000, -16.636192 ], [ 179.296875, -16.636192 ], [ 179.296875, -16.972741 ], [ 178.593750, -16.972741 ], [ 178.593750, -16.636192 ], [ 178.945312, -16.636192 ], [ 178.945312, -16.299051 ], [ 180.000000, -16.299051 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.882812, -9.795678 ], [ 120.234375, -9.795678 ], [ 120.234375, -10.141932 ], [ 119.531250, -10.141932 ], [ 119.531250, -9.795678 ], [ 118.828125, -9.795678 ], [ 118.828125, -9.449062 ], [ 119.882812, -9.449062 ], [ 119.882812, -9.795678 ] ] ], [ [ [ 118.828125, -8.754795 ], [ 118.125000, -8.754795 ], [ 118.125000, -9.102097 ], [ 116.718750, -9.102097 ], [ 116.718750, -8.754795 ], [ 117.070312, -8.754795 ], [ 117.070312, -8.407168 ], [ 118.828125, -8.407168 ], [ 118.828125, -8.754795 ] ] ], [ [ [ 120.234375, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.234375, -8.407168 ], [ 120.234375, -8.754795 ] ] ], [ [ [ 108.632812, -6.664608 ], [ 109.335938, -6.664608 ], [ 109.335938, -7.013668 ], [ 110.390625, -7.013668 ], [ 110.390625, -6.664608 ], [ 110.742188, -6.664608 ], [ 110.742188, -6.315299 ], [ 111.093750, -6.315299 ], [ 111.093750, -6.664608 ], [ 111.796875, -6.664608 ], [ 111.796875, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -7.362467 ], [ 112.851562, -7.362467 ], [ 112.851562, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.059230 ], [ 115.312500, -8.059230 ], [ 115.312500, -8.754795 ], [ 113.906250, -8.754795 ], [ 113.906250, -8.407168 ], [ 110.742188, -8.407168 ], [ 110.742188, -8.059230 ], [ 109.687500, -8.059230 ], [ 109.687500, -7.710992 ], [ 107.226562, -7.710992 ], [ 107.226562, -7.362467 ], [ 106.171875, -7.362467 ], [ 106.171875, -7.013668 ], [ 105.820312, -7.013668 ], [ 105.820312, -6.315299 ], [ 106.171875, -6.315299 ], [ 106.171875, -5.965754 ], [ 107.226562, -5.965754 ], [ 107.226562, -6.315299 ], [ 108.632812, -6.315299 ], [ 108.632812, -6.664608 ] ] ], [ [ [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 0.351560 ], [ 103.359375, 0.351560 ], [ 103.359375, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -2.108899 ], [ 104.765625, -2.108899 ], [ 104.765625, -2.460181 ], [ 105.468750, -2.460181 ], [ 105.468750, -2.811371 ], [ 105.820312, -2.811371 ], [ 105.820312, -3.162456 ], [ 106.171875, -3.162456 ], [ 106.171875, -3.864255 ], [ 105.820312, -3.864255 ], [ 105.820312, -5.965754 ], [ 104.414062, -5.965754 ], [ 104.414062, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -5.266008 ], [ 103.710938, -5.266008 ], [ 103.710938, -4.915833 ], [ 103.359375, -4.915833 ], [ 103.359375, -4.565474 ], [ 102.656250, -4.565474 ], [ 102.656250, -3.864255 ], [ 102.304688, -3.864255 ], [ 102.304688, -3.513421 ], [ 101.953125, -3.513421 ], [ 101.953125, -3.162456 ], [ 101.250000, -3.162456 ], [ 101.250000, -2.460181 ], [ 100.898438, -2.460181 ], [ 100.898438, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 1.406109 ], [ 98.789062, 1.406109 ], [ 98.789062, 1.757537 ], [ 101.953125, 1.757537 ], [ 101.953125, 1.406109 ] ] ], [ [ [ 119.179688, -2.460181 ], [ 119.179688, -1.054628 ], [ 119.531250, -1.054628 ], [ 119.531250, -0.351560 ], [ 119.882812, -0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -3.513421 ], [ 119.179688, -3.513421 ], [ 119.179688, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.460181 ], [ 119.179688, -2.460181 ] ] ], [ [ [ 113.203125, -3.513421 ], [ 113.203125, -3.162456 ], [ 112.851562, -3.162456 ], [ 112.851562, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -3.162456 ], [ 110.390625, -3.162456 ], [ 110.390625, -2.460181 ], [ 110.039062, -2.460181 ], [ 110.039062, -1.757537 ], [ 109.687500, -1.757537 ], [ 109.687500, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 1.406109 ], [ 109.335938, 1.406109 ], [ 109.335938, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 0.703107 ], [ 111.093750, 0.703107 ], [ 111.093750, 1.054628 ], [ 112.500000, 1.054628 ], [ 112.500000, 1.406109 ], [ 113.203125, 1.406109 ], [ 113.203125, 1.054628 ], [ 114.609375, 1.054628 ], [ 114.609375, 1.757537 ], [ 118.125000, 1.757537 ], [ 118.125000, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -1.054628 ], [ 117.070312, -1.054628 ], [ 117.070312, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -2.108899 ], [ 116.367188, -2.108899 ], [ 116.367188, -3.162456 ], [ 116.015625, -3.162456 ], [ 116.015625, -3.864255 ], [ 115.312500, -3.864255 ], [ 115.312500, -4.214943 ], [ 114.960938, -4.214943 ], [ 114.960938, -3.864255 ], [ 114.609375, -3.864255 ], [ 114.609375, -3.513421 ], [ 113.203125, -3.513421 ] ] ], [ [ [ 120.234375, 0.703107 ], [ 120.234375, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.882812, -9.449062 ], [ 119.882812, -9.795678 ], [ 120.234375, -9.795678 ], [ 120.234375, -10.141932 ], [ 119.531250, -10.141932 ], [ 119.531250, -9.795678 ], [ 118.828125, -9.795678 ], [ 118.828125, -9.449062 ], [ 119.882812, -9.449062 ] ] ], [ [ [ 118.828125, -8.407168 ], [ 118.828125, -8.754795 ], [ 118.125000, -8.754795 ], [ 118.125000, -9.102097 ], [ 116.718750, -9.102097 ], [ 116.718750, -8.754795 ], [ 117.070312, -8.407168 ], [ 118.828125, -8.407168 ] ] ], [ [ [ 120.234375, -8.407168 ], [ 120.234375, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.234375, -8.407168 ] ] ], [ [ [ 107.226562, -5.965754 ], [ 107.226562, -6.315299 ], [ 108.632812, -6.315299 ], [ 108.632812, -6.664608 ], [ 109.335938, -6.664608 ], [ 109.335938, -7.013668 ], [ 110.390625, -7.013668 ], [ 110.390625, -6.664608 ], [ 110.742188, -6.664608 ], [ 110.742188, -6.315299 ], [ 111.093750, -6.315299 ], [ 111.093750, -6.664608 ], [ 111.796875, -6.664608 ], [ 111.796875, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -7.362467 ], [ 112.851562, -7.362467 ], [ 112.851562, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.059230 ], [ 115.312500, -8.059230 ], [ 115.312500, -8.754795 ], [ 113.906250, -8.754795 ], [ 113.906250, -8.407168 ], [ 110.742188, -8.407168 ], [ 110.742188, -8.059230 ], [ 109.687500, -8.059230 ], [ 109.687500, -7.710992 ], [ 107.226562, -7.710992 ], [ 107.226562, -7.362467 ], [ 106.171875, -7.362467 ], [ 106.171875, -7.013668 ], [ 105.820312, -7.013668 ], [ 105.820312, -6.315299 ], [ 106.171875, -6.315299 ], [ 106.171875, -5.965754 ], [ 107.226562, -5.965754 ] ] ], [ [ [ 101.953125, 1.757537 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 0.351560 ], [ 103.359375, 0.351560 ], [ 103.359375, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -2.108899 ], [ 104.765625, -2.108899 ], [ 104.765625, -2.460181 ], [ 105.468750, -2.460181 ], [ 105.468750, -2.811371 ], [ 105.820312, -2.811371 ], [ 105.820312, -3.162456 ], [ 106.171875, -3.162456 ], [ 106.171875, -3.864255 ], [ 105.820312, -3.864255 ], [ 105.820312, -5.965754 ], [ 104.414062, -5.965754 ], [ 104.414062, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -5.266008 ], [ 103.710938, -5.266008 ], [ 103.710938, -4.915833 ], [ 103.359375, -4.915833 ], [ 103.359375, -4.565474 ], [ 102.656250, -4.565474 ], [ 102.656250, -3.864255 ], [ 102.304688, -3.864255 ], [ 102.304688, -3.513421 ], [ 101.953125, -3.513421 ], [ 101.953125, -3.162456 ], [ 101.250000, -3.162456 ], [ 101.250000, -2.460181 ], [ 100.898438, -2.460181 ], [ 100.898438, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 1.406109 ], [ 98.789062, 1.406109 ], [ 98.789062, 1.757537 ], [ 101.953125, 1.757537 ] ] ], [ [ [ 119.882812, -0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -3.513421 ], [ 119.179688, -3.513421 ], [ 119.179688, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.460181 ], [ 119.179688, -2.460181 ], [ 119.179688, -1.054628 ], [ 119.531250, -1.054628 ], [ 119.531250, -0.351560 ], [ 119.882812, -0.351560 ] ] ], [ [ [ 118.125000, 1.757537 ], [ 118.125000, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -1.054628 ], [ 117.070312, -1.054628 ], [ 117.070312, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -2.108899 ], [ 116.367188, -2.108899 ], [ 116.367188, -3.162456 ], [ 116.015625, -3.162456 ], [ 116.015625, -3.864255 ], [ 115.312500, -3.864255 ], [ 115.312500, -4.214943 ], [ 114.960938, -4.214943 ], [ 114.960938, -3.864255 ], [ 114.609375, -3.864255 ], [ 114.609375, -3.513421 ], [ 113.203125, -3.513421 ], [ 113.203125, -3.162456 ], [ 112.851562, -3.162456 ], [ 112.851562, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -3.162456 ], [ 110.390625, -3.162456 ], [ 110.390625, -2.460181 ], [ 110.039062, -2.460181 ], [ 110.039062, -1.757537 ], [ 109.687500, -1.757537 ], [ 109.687500, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 1.406109 ], [ 109.335938, 1.406109 ], [ 109.335938, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 0.703107 ], [ 111.093750, 0.703107 ], [ 111.093750, 1.054628 ], [ 112.500000, 1.054628 ], [ 112.500000, 1.406109 ], [ 113.203125, 1.406109 ], [ 113.203125, 1.054628 ], [ 114.609375, 1.054628 ], [ 114.609375, 1.757537 ], [ 118.125000, 1.757537 ] ] ], [ [ [ 120.234375, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 0.000000 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.156250, -9.795678 ], [ 124.804688, -9.795678 ], [ 124.804688, -10.141932 ], [ 124.453125, -10.141932 ], [ 124.453125, -10.487812 ], [ 123.398438, -10.487812 ], [ 123.398438, -9.795678 ], [ 124.101562, -9.795678 ], [ 124.101562, -9.449062 ], [ 124.453125, -9.449062 ], [ 124.453125, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -9.795678 ] ] ], [ [ [ 120.585938, -10.141932 ], [ 120.234375, -10.141932 ], [ 120.234375, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -10.141932 ] ] ], [ [ [ 122.695312, -8.754795 ], [ 122.343750, -8.754795 ], [ 122.343750, -9.102097 ], [ 120.234375, -9.102097 ], [ 120.234375, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.754795 ] ] ], [ [ [ 133.945312, -1.054628 ], [ 134.296875, -1.054628 ], [ 134.296875, -3.162456 ], [ 135.000000, -3.162456 ], [ 135.000000, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -3.162456 ], [ 136.054688, -3.162456 ], [ 136.054688, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.460181 ], [ 136.757812, -2.460181 ], [ 136.757812, -2.108899 ], [ 137.460938, -2.108899 ], [ 137.460938, -1.757537 ], [ 138.515625, -1.757537 ], [ 138.515625, -2.108899 ], [ 139.218750, -2.108899 ], [ 139.218750, -2.460181 ], [ 140.976562, -2.460181 ], [ 140.976562, -9.102097 ], [ 140.625000, -9.102097 ], [ 140.625000, -8.754795 ], [ 140.273438, -8.754795 ], [ 140.273438, -8.407168 ], [ 139.570312, -8.407168 ], [ 139.570312, -8.059230 ], [ 139.218750, -8.059230 ], [ 139.218750, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -8.059230 ], [ 138.164062, -8.059230 ], [ 138.164062, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -6.315299 ], [ 138.164062, -6.315299 ], [ 138.164062, -5.615986 ], [ 137.812500, -5.615986 ], [ 137.812500, -5.266008 ], [ 137.109375, -5.266008 ], [ 137.109375, -4.915833 ], [ 136.406250, -4.915833 ], [ 136.406250, -4.565474 ], [ 134.648438, -4.565474 ], [ 134.648438, -4.214943 ], [ 133.945312, -4.214943 ], [ 133.945312, -3.864255 ], [ 133.242188, -3.864255 ], [ 133.242188, -4.214943 ], [ 132.890625, -4.214943 ], [ 132.890625, -3.162456 ], [ 132.187500, -3.162456 ], [ 132.187500, -2.811371 ], [ 132.890625, -2.811371 ], [ 132.890625, -2.460181 ], [ 133.593750, -2.460181 ], [ 133.593750, -2.108899 ], [ 131.835938, -2.108899 ], [ 131.835938, -1.757537 ], [ 131.132812, -1.757537 ], [ 131.132812, -1.406109 ], [ 130.429688, -1.406109 ], [ 130.429688, -1.054628 ], [ 131.484375, -1.054628 ], [ 131.484375, -0.703107 ], [ 132.539062, -0.703107 ], [ 132.539062, -0.351560 ], [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ] ] ], [ [ [ 134.648438, -6.664608 ], [ 133.945312, -6.664608 ], [ 133.945312, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ], [ 134.648438, -6.664608 ] ] ], [ [ [ 123.046875, -4.565474 ], [ 123.046875, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.915833 ], [ 122.695312, -4.915833 ], [ 122.695312, -4.565474 ], [ 123.046875, -4.565474 ] ] ], [ [ [ 122.695312, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -1.757537 ], [ 121.640625, -1.757537 ], [ 121.640625, -2.108899 ], [ 121.992188, -2.108899 ], [ 121.992188, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.864255 ], [ 122.695312, -3.864255 ], [ 122.695312, -4.565474 ], [ 122.343750, -4.565474 ], [ 122.343750, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.214943 ], [ 121.289062, -4.214943 ], [ 121.289062, -3.864255 ], [ 120.937500, -3.864255 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.406109 ] ] ], [ [ [ 126.914062, -3.513421 ], [ 127.265625, -3.513421 ], [ 127.265625, -3.864255 ], [ 126.210938, -3.864255 ], [ 126.210938, -3.513421 ], [ 125.859375, -3.513421 ], [ 125.859375, -3.162456 ], [ 126.914062, -3.162456 ], [ 126.914062, -3.513421 ] ] ], [ [ [ 129.726562, -3.162456 ], [ 130.429688, -3.162456 ], [ 130.429688, -3.513421 ], [ 130.781250, -3.513421 ], [ 130.781250, -3.864255 ], [ 130.078125, -3.864255 ], [ 130.078125, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 129.726562, -2.811371 ], [ 129.726562, -3.162456 ] ] ], [ [ [ 127.617188, -0.703107 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.703107 ], [ 127.617188, -0.703107 ] ] ], [ [ [ 120.585938, -4.915833 ], [ 120.585938, -5.615986 ], [ 120.234375, -5.615986 ], [ 120.234375, -4.915833 ], [ 120.585938, -4.915833 ] ] ], [ [ [ 124.453125, 1.054628 ], [ 124.453125, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 1.054628 ], [ 124.804688, 1.054628 ], [ 124.804688, 0.351560 ], [ 120.234375, 0.351560 ], [ 120.234375, 1.054628 ], [ 124.453125, 1.054628 ] ] ], [ [ [ 122.695312, -8.059230 ], [ 123.046875, -8.059230 ], [ 123.046875, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.059230 ] ] ], [ [ [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -0.703107 ] ] ], [ [ [ 128.320312, -0.703107 ], [ 128.320312, -1.054628 ], [ 127.968750, -1.054628 ], [ 127.968750, -0.703107 ], [ 128.320312, -0.703107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.156250, -9.102097 ], [ 125.156250, -9.795678 ], [ 124.804688, -9.795678 ], [ 124.804688, -10.141932 ], [ 124.453125, -10.141932 ], [ 124.453125, -10.487812 ], [ 123.398438, -10.487812 ], [ 123.398438, -9.795678 ], [ 124.101562, -9.795678 ], [ 124.101562, -9.449062 ], [ 124.453125, -9.449062 ], [ 124.453125, -9.102097 ], [ 125.156250, -9.102097 ] ] ], [ [ [ 120.585938, -9.795678 ], [ 120.585938, -10.141932 ], [ 120.234375, -10.141932 ], [ 120.234375, -9.795678 ], [ 120.585938, -9.795678 ] ] ], [ [ [ 122.695312, -8.407168 ], [ 122.695312, -8.754795 ], [ 122.343750, -8.754795 ], [ 122.343750, -9.102097 ], [ 120.234375, -9.102097 ], [ 120.234375, -8.407168 ], [ 122.695312, -8.407168 ] ] ], [ [ [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 134.296875, -1.054628 ], [ 134.296875, -3.162456 ], [ 135.000000, -3.162456 ], [ 135.000000, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -3.162456 ], [ 136.054688, -3.162456 ], [ 136.054688, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.460181 ], [ 136.757812, -2.460181 ], [ 136.757812, -2.108899 ], [ 137.460938, -2.108899 ], [ 137.460938, -1.757537 ], [ 138.515625, -1.757537 ], [ 138.515625, -2.108899 ], [ 139.218750, -2.108899 ], [ 139.218750, -2.460181 ], [ 140.976562, -2.460181 ], [ 140.976562, -9.102097 ], [ 140.625000, -9.102097 ], [ 140.625000, -8.754795 ], [ 140.273438, -8.754795 ], [ 140.273438, -8.407168 ], [ 139.570312, -8.407168 ], [ 139.570312, -8.059230 ], [ 139.218750, -8.059230 ], [ 139.218750, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -8.059230 ], [ 138.164062, -8.059230 ], [ 138.164062, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -6.315299 ], [ 138.164062, -6.315299 ], [ 138.164062, -5.615986 ], [ 137.812500, -5.615986 ], [ 137.812500, -5.266008 ], [ 137.109375, -5.266008 ], [ 137.109375, -4.915833 ], [ 136.406250, -4.915833 ], [ 136.406250, -4.565474 ], [ 134.648438, -4.565474 ], [ 134.648438, -4.214943 ], [ 133.945312, -4.214943 ], [ 133.945312, -3.864255 ], [ 133.242188, -3.864255 ], [ 133.242188, -4.214943 ], [ 132.890625, -4.214943 ], [ 132.890625, -3.162456 ], [ 132.187500, -3.162456 ], [ 132.187500, -2.811371 ], [ 132.890625, -2.811371 ], [ 132.890625, -2.460181 ], [ 133.593750, -2.460181 ], [ 133.593750, -2.108899 ], [ 131.835938, -2.108899 ], [ 131.835938, -1.757537 ], [ 131.132812, -1.757537 ], [ 131.132812, -1.406109 ], [ 130.429688, -1.406109 ], [ 130.429688, -1.054628 ], [ 131.484375, -1.054628 ], [ 131.484375, -0.703107 ], [ 132.539062, -0.703107 ], [ 132.539062, -0.351560 ], [ 132.890625, -0.351560 ] ] ], [ [ [ 123.046875, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.059230 ], [ 123.046875, -8.059230 ], [ 123.046875, -8.407168 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.664608 ], [ 133.945312, -6.664608 ], [ 133.945312, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ] ] ], [ [ [ 122.695312, -4.565474 ], [ 122.343750, -4.565474 ], [ 122.343750, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.214943 ], [ 121.289062, -4.214943 ], [ 121.289062, -3.864255 ], [ 120.937500, -3.864255 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -1.757537 ], [ 121.640625, -1.757537 ], [ 121.640625, -2.108899 ], [ 121.992188, -2.108899 ], [ 121.992188, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.864255 ], [ 122.695312, -3.864255 ], [ 122.695312, -4.565474 ] ] ], [ [ [ 120.234375, -4.915833 ], [ 120.585938, -4.915833 ], [ 120.585938, -5.615986 ], [ 120.234375, -5.615986 ], [ 120.234375, -4.915833 ] ] ], [ [ [ 126.914062, -3.162456 ], [ 126.914062, -3.513421 ], [ 127.265625, -3.513421 ], [ 127.265625, -3.864255 ], [ 126.210938, -3.864255 ], [ 126.210938, -3.513421 ], [ 125.859375, -3.513421 ], [ 125.859375, -3.162456 ], [ 126.914062, -3.162456 ] ] ], [ [ [ 129.726562, -2.811371 ], [ 129.726562, -3.162456 ], [ 130.429688, -3.162456 ], [ 130.429688, -3.513421 ], [ 130.781250, -3.513421 ], [ 130.781250, -3.864255 ], [ 130.078125, -3.864255 ], [ 130.078125, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 129.726562, -2.811371 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 127.617188, -0.703107 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.703107 ] ] ], [ [ [ 123.398438, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -1.054628 ] ] ], [ [ [ 125.156250, 1.054628 ], [ 124.804688, 1.054628 ], [ 124.804688, 0.351560 ], [ 120.234375, 0.351560 ], [ 120.234375, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 1.054628 ] ] ], [ [ [ 122.695312, -4.565474 ], [ 123.046875, -4.565474 ], [ 123.046875, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.915833 ], [ 122.695312, -4.915833 ], [ 122.695312, -4.565474 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -1.054628 ], [ 127.968750, -1.054628 ], [ 127.968750, -0.703107 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.754795 ], [ 126.562500, -8.754795 ], [ 126.562500, -9.102097 ], [ 125.859375, -9.102097 ], [ 125.859375, -9.449062 ], [ 125.156250, -9.449062 ], [ 125.156250, -9.102097 ], [ 124.804688, -9.102097 ], [ 124.804688, -8.754795 ], [ 125.859375, -8.754795 ], [ 125.859375, -8.407168 ], [ 127.265625, -8.407168 ], [ 127.265625, -8.754795 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.407168 ], [ 127.265625, -8.754795 ], [ 126.562500, -8.754795 ], [ 126.562500, -9.102097 ], [ 125.859375, -9.102097 ], [ 125.859375, -9.449062 ], [ 125.156250, -9.449062 ], [ 125.156250, -9.102097 ], [ 124.804688, -8.754795 ], [ 125.859375, -8.754795 ], [ 125.859375, -8.407168 ], [ 127.265625, -8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.906250, -26.115986 ], [ 113.554688, -26.115986 ], [ 113.554688, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -26.115986 ] ] ], [ [ [ 131.835938, -11.178402 ], [ 132.187500, -11.178402 ], [ 132.187500, -11.523088 ], [ 131.835938, -11.523088 ], [ 131.835938, -11.178402 ] ] ], [ [ [ 123.398438, -16.299051 ], [ 124.101562, -16.299051 ], [ 124.101562, -15.961329 ], [ 124.453125, -15.961329 ], [ 124.453125, -15.284185 ], [ 124.804688, -15.284185 ], [ 124.804688, -14.944785 ], [ 125.156250, -14.944785 ], [ 125.156250, -14.604847 ], [ 125.859375, -14.604847 ], [ 125.859375, -14.264383 ], [ 126.562500, -14.264383 ], [ 126.562500, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.264383 ], [ 127.968750, -14.264383 ], [ 127.968750, -14.604847 ], [ 128.320312, -14.604847 ], [ 128.320312, -14.944785 ], [ 129.726562, -14.944785 ], [ 129.726562, -14.604847 ], [ 129.375000, -14.604847 ], [ 129.375000, -13.923404 ], [ 129.726562, -13.923404 ], [ 129.726562, -13.581921 ], [ 130.429688, -13.581921 ], [ 130.429688, -12.897489 ], [ 130.781250, -12.897489 ], [ 130.781250, -12.554564 ], [ 131.132812, -12.554564 ], [ 131.132812, -12.211180 ], [ 132.539062, -12.211180 ], [ 132.539062, -11.523088 ], [ 132.890625, -11.523088 ], [ 132.890625, -11.867351 ], [ 133.593750, -11.867351 ], [ 133.593750, -12.211180 ], [ 134.648438, -12.211180 ], [ 134.648438, -33.137551 ], [ 133.945312, -33.137551 ], [ 133.945312, -32.842674 ], [ 134.296875, -32.842674 ], [ 134.296875, -32.546813 ], [ 133.593750, -32.546813 ], [ 133.593750, -32.249974 ], [ 132.890625, -32.249974 ], [ 132.890625, -31.952162 ], [ 131.835938, -31.952162 ], [ 131.835938, -31.653381 ], [ 131.484375, -31.653381 ], [ 131.484375, -31.353637 ], [ 130.781250, -31.353637 ], [ 130.781250, -31.653381 ], [ 129.023438, -31.653381 ], [ 129.023438, -31.952162 ], [ 127.968750, -31.952162 ], [ 127.968750, -32.249974 ], [ 126.210938, -32.249974 ], [ 126.210938, -32.546813 ], [ 125.507812, -32.546813 ], [ 125.507812, -32.842674 ], [ 124.101562, -32.842674 ], [ 124.101562, -33.724340 ], [ 123.750000, -33.724340 ], [ 123.750000, -34.016242 ], [ 121.640625, -34.016242 ], [ 121.640625, -33.724340 ], [ 121.289062, -33.724340 ], [ 121.289062, -34.016242 ], [ 119.882812, -34.016242 ], [ 119.882812, -34.307144 ], [ 119.531250, -34.307144 ], [ 119.531250, -34.597042 ], [ 119.179688, -34.597042 ], [ 119.179688, -34.885931 ], [ 118.476562, -34.885931 ], [ 118.476562, -35.173808 ], [ 117.421875, -35.173808 ], [ 117.421875, -34.885931 ], [ 116.367188, -34.885931 ], [ 116.367188, -34.597042 ], [ 115.664062, -34.597042 ], [ 115.664062, -34.307144 ], [ 114.960938, -34.307144 ], [ 114.960938, -33.724340 ], [ 115.664062, -33.724340 ], [ 115.664062, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -30.448674 ], [ 114.960938, -30.448674 ], [ 114.960938, -29.228890 ], [ 114.609375, -29.228890 ], [ 114.609375, -28.304381 ], [ 114.257812, -28.304381 ], [ 114.257812, -27.683528 ], [ 113.906250, -27.683528 ], [ 113.906250, -27.059126 ], [ 113.554688, -27.059126 ], [ 113.554688, -26.431228 ], [ 113.906250, -26.431228 ], [ 113.906250, -26.115986 ], [ 114.257812, -26.115986 ], [ 114.257812, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -25.165173 ], [ 113.554688, -25.165173 ], [ 113.554688, -23.241346 ], [ 113.906250, -23.241346 ], [ 113.906250, -22.268764 ], [ 114.609375, -22.268764 ], [ 114.609375, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -21.616579 ], [ 115.664062, -21.616579 ], [ 115.664062, -21.289374 ], [ 116.015625, -21.289374 ], [ 116.015625, -20.961440 ], [ 116.718750, -20.961440 ], [ 116.718750, -20.632784 ], [ 118.125000, -20.632784 ], [ 118.125000, -20.303418 ], [ 118.828125, -20.303418 ], [ 118.828125, -19.973349 ], [ 120.585938, -19.973349 ], [ 120.585938, -19.642588 ], [ 121.289062, -19.642588 ], [ 121.289062, -18.979026 ], [ 121.640625, -18.979026 ], [ 121.640625, -18.646245 ], [ 122.343750, -18.646245 ], [ 122.343750, -17.308688 ], [ 122.695312, -17.308688 ], [ 122.695312, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -16.972741 ], [ 123.398438, -16.972741 ], [ 123.398438, -16.299051 ] ], [ [ 123.398438, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.972741 ], [ 123.398438, -16.972741 ], [ 123.398438, -17.308688 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.539062, -11.523088 ], [ 132.890625, -11.523088 ], [ 132.890625, -11.867351 ], [ 133.593750, -11.867351 ], [ 133.593750, -12.211180 ], [ 134.648438, -12.211180 ], [ 134.648438, -33.137551 ], [ 133.945312, -33.137551 ], [ 133.945312, -32.842674 ], [ 134.296875, -32.842674 ], [ 134.296875, -32.546813 ], [ 133.593750, -32.546813 ], [ 133.593750, -32.249974 ], [ 132.890625, -32.249974 ], [ 132.890625, -31.952162 ], [ 131.835938, -31.952162 ], [ 131.835938, -31.653381 ], [ 131.484375, -31.653381 ], [ 131.484375, -31.353637 ], [ 130.781250, -31.353637 ], [ 130.781250, -31.653381 ], [ 129.023438, -31.653381 ], [ 129.023438, -31.952162 ], [ 127.968750, -31.952162 ], [ 127.968750, -32.249974 ], [ 126.210938, -32.249974 ], [ 126.210938, -32.546813 ], [ 125.507812, -32.546813 ], [ 125.507812, -32.842674 ], [ 124.101562, -32.842674 ], [ 124.101562, -33.724340 ], [ 123.750000, -33.724340 ], [ 123.750000, -34.016242 ], [ 121.640625, -34.016242 ], [ 121.640625, -33.724340 ], [ 121.289062, -33.724340 ], [ 121.289062, -34.016242 ], [ 119.882812, -34.016242 ], [ 119.882812, -34.307144 ], [ 119.531250, -34.307144 ], [ 119.531250, -34.597042 ], [ 119.179688, -34.597042 ], [ 119.179688, -34.885931 ], [ 118.476562, -34.885931 ], [ 118.476562, -35.173808 ], [ 117.421875, -35.173808 ], [ 117.421875, -34.885931 ], [ 116.367188, -34.885931 ], [ 116.367188, -34.597042 ], [ 115.664062, -34.597042 ], [ 115.664062, -34.307144 ], [ 114.960938, -34.307144 ], [ 114.960938, -33.724340 ], [ 115.664062, -33.724340 ], [ 115.664062, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -30.448674 ], [ 114.960938, -30.448674 ], [ 114.960938, -29.228890 ], [ 114.609375, -29.228890 ], [ 114.609375, -28.304381 ], [ 114.257812, -28.304381 ], [ 114.257812, -27.683528 ], [ 113.906250, -27.683528 ], [ 113.906250, -27.059126 ], [ 113.554688, -27.059126 ], [ 113.554688, -26.431228 ], [ 113.906250, -26.431228 ], [ 113.906250, -26.115986 ], [ 114.257812, -26.115986 ], [ 114.257812, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -25.165173 ], [ 113.554688, -25.165173 ], [ 113.554688, -23.241346 ], [ 113.906250, -23.241346 ], [ 113.906250, -22.268764 ], [ 114.609375, -22.268764 ], [ 114.609375, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -21.616579 ], [ 115.664062, -21.616579 ], [ 115.664062, -21.289374 ], [ 116.015625, -21.289374 ], [ 116.015625, -20.961440 ], [ 116.718750, -20.961440 ], [ 116.718750, -20.632784 ], [ 118.125000, -20.632784 ], [ 118.125000, -20.303418 ], [ 118.828125, -20.303418 ], [ 118.828125, -19.973349 ], [ 120.585938, -19.973349 ], [ 120.585938, -19.642588 ], [ 121.289062, -19.642588 ], [ 121.289062, -18.979026 ], [ 121.640625, -18.979026 ], [ 121.640625, -18.646245 ], [ 122.343750, -18.646245 ], [ 122.343750, -17.308688 ], [ 122.695312, -17.308688 ], [ 122.695312, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -16.972741 ], [ 123.398438, -16.972741 ], [ 123.398438, -16.299051 ], [ 124.101562, -16.299051 ], [ 124.101562, -15.961329 ], [ 124.453125, -15.961329 ], [ 124.453125, -15.284185 ], [ 124.804688, -15.284185 ], [ 124.804688, -14.944785 ], [ 125.156250, -14.944785 ], [ 125.156250, -14.604847 ], [ 125.859375, -14.604847 ], [ 125.859375, -14.264383 ], [ 126.562500, -14.264383 ], [ 126.562500, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.264383 ], [ 127.968750, -14.264383 ], [ 127.968750, -14.604847 ], [ 128.320312, -14.604847 ], [ 128.320312, -14.944785 ], [ 129.726562, -14.944785 ], [ 129.726562, -14.604847 ], [ 129.375000, -14.604847 ], [ 129.375000, -13.923404 ], [ 129.726562, -13.923404 ], [ 129.726562, -13.581921 ], [ 130.429688, -13.581921 ], [ 130.429688, -12.897489 ], [ 130.781250, -12.897489 ], [ 130.781250, -12.554564 ], [ 131.132812, -12.554564 ], [ 131.132812, -12.211180 ], [ 132.539062, -12.211180 ], [ 132.539062, -11.523088 ] ], [ [ 123.398438, -16.972741 ], [ 123.398438, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.972741 ], [ 123.398438, -16.972741 ] ] ], [ [ [ 113.906250, -26.115986 ], [ 113.554688, -26.115986 ], [ 113.554688, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -26.115986 ] ] ], [ [ [ 132.187500, -11.523088 ], [ 131.835938, -11.523088 ], [ 131.835938, -11.178402 ], [ 132.187500, -11.178402 ], [ 132.187500, -11.523088 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.546875, -40.979898 ], [ 145.898438, -40.979898 ], [ 145.898438, -41.244772 ], [ 146.953125, -41.244772 ], [ 146.953125, -40.979898 ], [ 148.359375, -40.979898 ], [ 148.359375, -42.293564 ], [ 148.007812, -42.293564 ], [ 148.007812, -43.068888 ], [ 147.304688, -43.068888 ], [ 147.304688, -43.580391 ], [ 145.898438, -43.580391 ], [ 145.898438, -43.325178 ], [ 145.546875, -43.325178 ], [ 145.546875, -42.553080 ], [ 145.195312, -42.553080 ], [ 145.195312, -41.771312 ], [ 144.843750, -41.771312 ], [ 144.843750, -40.713956 ], [ 145.546875, -40.713956 ], [ 145.546875, -40.979898 ] ] ], [ [ [ 145.195312, -38.272689 ], [ 145.195312, -37.996163 ], [ 144.492188, -37.996163 ], [ 144.492188, -38.272689 ], [ 144.140625, -38.272689 ], [ 144.140625, -38.548165 ], [ 143.789062, -38.548165 ], [ 143.789062, -38.822591 ], [ 142.734375, -38.822591 ], [ 142.734375, -38.548165 ], [ 142.031250, -38.548165 ], [ 142.031250, -38.272689 ], [ 140.976562, -38.272689 ], [ 140.976562, -37.996163 ], [ 140.273438, -37.996163 ], [ 140.273438, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -36.315125 ], [ 139.570312, -36.315125 ], [ 139.570312, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.746512 ], [ 138.164062, -35.746512 ], [ 138.164062, -35.460670 ], [ 138.515625, -35.460670 ], [ 138.515625, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -35.173808 ], [ 137.109375, -35.173808 ], [ 137.109375, -34.885931 ], [ 137.460938, -34.885931 ], [ 137.460938, -34.016242 ], [ 137.812500, -34.016242 ], [ 137.812500, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.724340 ], [ 137.109375, -33.724340 ], [ 137.109375, -34.016242 ], [ 136.406250, -34.016242 ], [ 136.406250, -34.597042 ], [ 136.054688, -34.597042 ], [ 136.054688, -34.885931 ], [ 135.351562, -34.885931 ], [ 135.351562, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -12.211180 ], [ 137.109375, -12.211180 ], [ 137.109375, -12.554564 ], [ 136.757812, -12.554564 ], [ 136.757812, -13.239945 ], [ 136.054688, -13.239945 ], [ 136.054688, -13.923404 ], [ 135.703125, -13.923404 ], [ 135.703125, -14.604847 ], [ 135.351562, -14.604847 ], [ 135.351562, -15.284185 ], [ 136.054688, -15.284185 ], [ 136.054688, -15.623037 ], [ 136.406250, -15.623037 ], [ 136.406250, -15.961329 ], [ 137.109375, -15.961329 ], [ 137.109375, -16.299051 ], [ 137.460938, -16.299051 ], [ 137.460938, -16.636192 ], [ 137.812500, -16.636192 ], [ 137.812500, -16.972741 ], [ 139.218750, -16.972741 ], [ 139.218750, -17.308688 ], [ 139.570312, -17.308688 ], [ 139.570312, -17.644022 ], [ 140.976562, -17.644022 ], [ 140.976562, -16.636192 ], [ 141.328125, -16.636192 ], [ 141.328125, -15.623037 ], [ 141.679688, -15.623037 ], [ 141.679688, -12.211180 ], [ 142.031250, -12.211180 ], [ 142.031250, -11.178402 ], [ 142.734375, -11.178402 ], [ 142.734375, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.554564 ], [ 143.437500, -12.554564 ], [ 143.437500, -14.264383 ], [ 143.789062, -14.264383 ], [ 143.789062, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -14.944785 ], [ 145.546875, -14.944785 ], [ 145.546875, -15.284185 ], [ 145.195312, -15.284185 ], [ 145.195312, -15.961329 ], [ 145.546875, -15.961329 ], [ 145.546875, -16.972741 ], [ 145.898438, -16.972741 ], [ 145.898438, -17.308688 ], [ 146.250000, -17.308688 ], [ 146.250000, -17.978733 ], [ 145.898438, -17.978733 ], [ 145.898438, -18.646245 ], [ 146.250000, -18.646245 ], [ 146.250000, -19.311143 ], [ 146.953125, -19.311143 ], [ 146.953125, -19.642588 ], [ 147.304688, -19.642588 ], [ 147.304688, -19.973349 ], [ 148.007812, -19.973349 ], [ 148.007812, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.289374 ], [ 149.414062, -21.289374 ], [ 149.414062, -21.943046 ], [ 149.765625, -21.943046 ], [ 149.765625, -22.268764 ], [ 150.117188, -22.268764 ], [ 150.117188, -22.593726 ], [ 150.820312, -22.593726 ], [ 150.820312, -23.885838 ], [ 151.171875, -23.885838 ], [ 151.171875, -24.206890 ], [ 151.523438, -24.206890 ], [ 151.523438, -24.527135 ], [ 152.226562, -24.527135 ], [ 152.226562, -24.846565 ], [ 152.578125, -24.846565 ], [ 152.578125, -25.165173 ], [ 152.929688, -25.165173 ], [ 152.929688, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -27.059126 ], [ 152.929688, -27.059126 ], [ 152.929688, -27.683528 ], [ 153.281250, -27.683528 ], [ 153.281250, -27.994401 ], [ 153.632812, -27.994401 ], [ 153.632812, -29.228890 ], [ 153.281250, -29.228890 ], [ 153.281250, -30.145127 ], [ 152.929688, -30.145127 ], [ 152.929688, -32.249974 ], [ 152.578125, -32.249974 ], [ 152.578125, -32.842674 ], [ 152.226562, -32.842674 ], [ 152.226562, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -33.431441 ], [ 151.523438, -33.431441 ], [ 151.523438, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.885931 ], [ 150.820312, -34.885931 ], [ 150.820312, -35.460670 ], [ 150.468750, -35.460670 ], [ 150.468750, -36.031332 ], [ 150.117188, -36.031332 ], [ 150.117188, -37.718590 ], [ 148.359375, -37.718590 ], [ 148.359375, -37.996163 ], [ 147.656250, -37.996163 ], [ 147.656250, -38.272689 ], [ 147.304688, -38.272689 ], [ 147.304688, -38.548165 ], [ 146.953125, -38.548165 ], [ 146.953125, -38.822591 ], [ 146.601562, -38.822591 ], [ 146.601562, -39.095963 ], [ 145.898438, -39.095963 ], [ 145.898438, -38.822591 ], [ 145.546875, -38.822591 ], [ 145.546875, -38.548165 ], [ 144.843750, -38.548165 ], [ 144.843750, -38.272689 ], [ 145.195312, -38.272689 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.546875, -40.713956 ], [ 145.546875, -40.979898 ], [ 145.898438, -40.979898 ], [ 145.898438, -41.244772 ], [ 146.953125, -41.244772 ], [ 146.953125, -40.979898 ], [ 148.359375, -40.979898 ], [ 148.359375, -42.293564 ], [ 148.007812, -42.293564 ], [ 148.007812, -43.068888 ], [ 147.304688, -43.068888 ], [ 147.304688, -43.580391 ], [ 145.898438, -43.580391 ], [ 145.898438, -43.325178 ], [ 145.546875, -43.325178 ], [ 145.546875, -42.553080 ], [ 145.195312, -42.553080 ], [ 145.195312, -41.771312 ], [ 144.843750, -41.771312 ], [ 144.843750, -40.713956 ], [ 145.546875, -40.713956 ] ] ], [ [ [ 142.734375, -11.178402 ], [ 142.734375, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.554564 ], [ 143.437500, -12.554564 ], [ 143.437500, -14.264383 ], [ 143.789062, -14.264383 ], [ 143.789062, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -14.944785 ], [ 145.546875, -14.944785 ], [ 145.546875, -15.284185 ], [ 145.195312, -15.284185 ], [ 145.195312, -15.961329 ], [ 145.546875, -15.961329 ], [ 145.546875, -16.972741 ], [ 145.898438, -16.972741 ], [ 145.898438, -17.308688 ], [ 146.250000, -17.308688 ], [ 146.250000, -17.978733 ], [ 145.898438, -17.978733 ], [ 145.898438, -18.646245 ], [ 146.250000, -18.646245 ], [ 146.250000, -19.311143 ], [ 146.953125, -19.311143 ], [ 146.953125, -19.642588 ], [ 147.304688, -19.642588 ], [ 147.304688, -19.973349 ], [ 148.007812, -19.973349 ], [ 148.007812, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.289374 ], [ 149.414062, -21.289374 ], [ 149.414062, -21.943046 ], [ 149.765625, -21.943046 ], [ 149.765625, -22.268764 ], [ 150.117188, -22.268764 ], [ 150.117188, -22.593726 ], [ 150.820312, -22.593726 ], [ 150.820312, -23.885838 ], [ 151.171875, -23.885838 ], [ 151.171875, -24.206890 ], [ 151.523438, -24.206890 ], [ 151.523438, -24.527135 ], [ 152.226562, -24.527135 ], [ 152.226562, -24.846565 ], [ 152.578125, -24.846565 ], [ 152.578125, -25.165173 ], [ 152.929688, -25.165173 ], [ 152.929688, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -27.059126 ], [ 152.929688, -27.059126 ], [ 152.929688, -27.683528 ], [ 153.281250, -27.683528 ], [ 153.281250, -27.994401 ], [ 153.632812, -27.994401 ], [ 153.632812, -29.228890 ], [ 153.281250, -29.228890 ], [ 153.281250, -30.145127 ], [ 152.929688, -30.145127 ], [ 152.929688, -32.249974 ], [ 152.578125, -32.249974 ], [ 152.578125, -32.842674 ], [ 152.226562, -32.842674 ], [ 152.226562, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -33.431441 ], [ 151.523438, -33.431441 ], [ 151.523438, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.885931 ], [ 150.820312, -34.885931 ], [ 150.820312, -35.460670 ], [ 150.468750, -35.460670 ], [ 150.468750, -36.031332 ], [ 150.117188, -36.031332 ], [ 150.117188, -37.718590 ], [ 148.359375, -37.718590 ], [ 148.359375, -37.996163 ], [ 147.656250, -37.996163 ], [ 147.656250, -38.272689 ], [ 147.304688, -38.272689 ], [ 147.304688, -38.548165 ], [ 146.953125, -38.548165 ], [ 146.953125, -38.822591 ], [ 146.601562, -38.822591 ], [ 146.601562, -39.095963 ], [ 145.898438, -39.095963 ], [ 145.898438, -38.822591 ], [ 145.546875, -38.822591 ], [ 145.546875, -38.548165 ], [ 144.843750, -38.548165 ], [ 144.843750, -38.272689 ], [ 145.195312, -38.272689 ], [ 145.195312, -37.996163 ], [ 144.492188, -37.996163 ], [ 144.492188, -38.272689 ], [ 144.140625, -38.272689 ], [ 144.140625, -38.548165 ], [ 143.789062, -38.548165 ], [ 143.789062, -38.822591 ], [ 142.734375, -38.822591 ], [ 142.734375, -38.548165 ], [ 142.031250, -38.548165 ], [ 142.031250, -38.272689 ], [ 140.976562, -38.272689 ], [ 140.976562, -37.996163 ], [ 140.273438, -37.996163 ], [ 140.273438, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -36.315125 ], [ 139.570312, -36.315125 ], [ 139.570312, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.746512 ], [ 138.164062, -35.746512 ], [ 138.164062, -35.460670 ], [ 138.515625, -35.460670 ], [ 138.515625, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -35.173808 ], [ 137.109375, -35.173808 ], [ 137.109375, -34.885931 ], [ 137.460938, -34.885931 ], [ 137.460938, -34.016242 ], [ 137.812500, -34.016242 ], [ 137.812500, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.724340 ], [ 137.109375, -33.724340 ], [ 137.109375, -34.016242 ], [ 136.406250, -34.016242 ], [ 136.406250, -34.597042 ], [ 136.054688, -34.597042 ], [ 136.054688, -34.885931 ], [ 135.351562, -34.885931 ], [ 135.351562, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -12.211180 ], [ 137.109375, -12.211180 ], [ 137.109375, -12.554564 ], [ 136.757812, -12.554564 ], [ 136.757812, -13.239945 ], [ 136.054688, -13.239945 ], [ 136.054688, -13.923404 ], [ 135.703125, -13.923404 ], [ 135.703125, -14.604847 ], [ 135.351562, -14.604847 ], [ 135.351562, -15.284185 ], [ 136.054688, -15.284185 ], [ 136.054688, -15.623037 ], [ 136.406250, -15.623037 ], [ 136.406250, -15.961329 ], [ 137.109375, -15.961329 ], [ 137.109375, -16.299051 ], [ 137.460938, -16.299051 ], [ 137.460938, -16.636192 ], [ 137.812500, -16.636192 ], [ 137.812500, -16.972741 ], [ 139.218750, -16.972741 ], [ 139.218750, -17.308688 ], [ 139.570312, -17.308688 ], [ 139.570312, -17.644022 ], [ 140.976562, -17.644022 ], [ 140.976562, -16.636192 ], [ 141.328125, -16.636192 ], [ 141.328125, -15.623037 ], [ 141.679688, -15.623037 ], [ 141.679688, -12.211180 ], [ 142.031250, -12.211180 ], [ 142.031250, -11.178402 ], [ 142.734375, -11.178402 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.195312, -8.059230 ], [ 145.195312, -7.710992 ], [ 144.492188, -7.710992 ], [ 144.492188, -8.059230 ], [ 143.789062, -8.059230 ], [ 143.789062, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.449062 ], [ 142.031250, -9.449062 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.460181 ], [ 141.328125, -2.460181 ], [ 141.328125, -2.811371 ], [ 142.031250, -2.811371 ], [ 142.031250, -3.162456 ], [ 143.085938, -3.162456 ], [ 143.085938, -3.513421 ], [ 143.789062, -3.513421 ], [ 143.789062, -3.864255 ], [ 144.492188, -3.864255 ], [ 144.492188, -4.214943 ], [ 145.195312, -4.214943 ], [ 145.195312, -4.565474 ], [ 145.546875, -4.565474 ], [ 145.546875, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.615986 ], [ 146.601562, -5.615986 ], [ 146.601562, -5.965754 ], [ 147.656250, -5.965754 ], [ 147.656250, -6.315299 ], [ 148.007812, -6.315299 ], [ 148.007812, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.304688, -7.013668 ], [ 147.304688, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -8.059230 ], [ 148.007812, -8.059230 ], [ 148.007812, -8.407168 ], [ 148.359375, -8.407168 ], [ 148.359375, -9.102097 ], [ 149.414062, -9.102097 ], [ 149.414062, -9.795678 ], [ 150.117188, -9.795678 ], [ 150.117188, -10.141932 ], [ 150.820312, -10.141932 ], [ 150.820312, -10.487812 ], [ 149.062500, -10.487812 ], [ 149.062500, -10.141932 ], [ 147.656250, -10.141932 ], [ 147.656250, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.449062 ], [ 146.601562, -9.449062 ], [ 146.601562, -9.102097 ], [ 146.250000, -9.102097 ], [ 146.250000, -8.407168 ], [ 145.898438, -8.407168 ], [ 145.898438, -8.059230 ], [ 145.195312, -8.059230 ] ] ], [ [ [ 155.039062, -5.615986 ], [ 155.039062, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.664608 ], [ 155.742188, -6.664608 ], [ 155.742188, -7.013668 ], [ 155.039062, -7.013668 ], [ 155.039062, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ], [ 155.039062, -5.615986 ] ] ], [ [ [ 152.226562, -5.266008 ], [ 151.875000, -5.266008 ], [ 151.875000, -5.615986 ], [ 151.523438, -5.615986 ], [ 151.523438, -5.965754 ], [ 150.820312, -5.965754 ], [ 150.820312, -6.315299 ], [ 149.062500, -6.315299 ], [ 149.062500, -5.965754 ], [ 148.359375, -5.965754 ], [ 148.359375, -5.266008 ], [ 148.710938, -5.266008 ], [ 148.710938, -5.615986 ], [ 149.765625, -5.615986 ], [ 149.765625, -5.266008 ], [ 150.117188, -5.266008 ], [ 150.117188, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -5.266008 ], [ 151.523438, -5.266008 ], [ 151.523438, -4.214943 ], [ 152.226562, -4.214943 ], [ 152.226562, -5.266008 ] ] ], [ [ [ 152.226562, -3.162456 ], [ 152.226562, -3.513421 ], [ 152.578125, -3.513421 ], [ 152.578125, -3.864255 ], [ 151.875000, -3.864255 ], [ 151.875000, -3.513421 ], [ 151.523438, -3.513421 ], [ 151.523438, -3.162456 ], [ 152.226562, -3.162456 ] ] ], [ [ [ 152.929688, -3.864255 ], [ 152.929688, -4.214943 ], [ 153.281250, -4.214943 ], [ 153.281250, -4.915833 ], [ 152.929688, -4.915833 ], [ 152.929688, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ] ] ], [ [ [ 150.820312, -3.162456 ], [ 150.820312, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -3.162456 ], [ 150.820312, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, -2.460181 ], [ 141.328125, -2.811371 ], [ 142.031250, -2.811371 ], [ 142.031250, -3.162456 ], [ 143.085938, -3.162456 ], [ 143.085938, -3.513421 ], [ 143.789062, -3.513421 ], [ 143.789062, -3.864255 ], [ 144.492188, -3.864255 ], [ 144.492188, -4.214943 ], [ 145.195312, -4.214943 ], [ 145.195312, -4.565474 ], [ 145.546875, -4.565474 ], [ 145.546875, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.615986 ], [ 146.601562, -5.615986 ], [ 146.601562, -5.965754 ], [ 147.656250, -5.965754 ], [ 147.656250, -6.315299 ], [ 148.007812, -6.315299 ], [ 148.007812, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.304688, -7.013668 ], [ 147.304688, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -8.059230 ], [ 148.007812, -8.059230 ], [ 148.007812, -8.407168 ], [ 148.359375, -8.407168 ], [ 148.359375, -9.102097 ], [ 149.414062, -9.102097 ], [ 149.414062, -9.795678 ], [ 150.117188, -9.795678 ], [ 150.117188, -10.141932 ], [ 150.820312, -10.141932 ], [ 150.820312, -10.487812 ], [ 149.062500, -10.487812 ], [ 149.062500, -10.141932 ], [ 147.656250, -10.141932 ], [ 147.656250, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.449062 ], [ 146.601562, -9.449062 ], [ 146.601562, -9.102097 ], [ 146.250000, -9.102097 ], [ 146.250000, -8.407168 ], [ 145.898438, -8.407168 ], [ 145.898438, -8.059230 ], [ 145.195312, -8.059230 ], [ 145.195312, -7.710992 ], [ 144.492188, -7.710992 ], [ 144.492188, -8.059230 ], [ 143.789062, -8.059230 ], [ 143.789062, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.449062 ], [ 142.031250, -9.449062 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.460181 ], [ 141.328125, -2.460181 ] ] ], [ [ [ 155.039062, -5.615986 ], [ 155.039062, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.664608 ], [ 155.742188, -6.664608 ], [ 155.742188, -7.013668 ], [ 155.039062, -7.013668 ], [ 155.039062, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ], [ 155.039062, -5.615986 ] ] ], [ [ [ 152.226562, -4.214943 ], [ 152.226562, -5.266008 ], [ 151.875000, -5.266008 ], [ 151.875000, -5.615986 ], [ 151.523438, -5.615986 ], [ 151.523438, -5.965754 ], [ 150.820312, -5.965754 ], [ 150.820312, -6.315299 ], [ 149.062500, -6.315299 ], [ 149.062500, -5.965754 ], [ 148.359375, -5.965754 ], [ 148.359375, -5.266008 ], [ 148.710938, -5.266008 ], [ 148.710938, -5.615986 ], [ 149.765625, -5.615986 ], [ 149.765625, -5.266008 ], [ 150.117188, -5.266008 ], [ 150.117188, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -5.266008 ], [ 151.523438, -5.266008 ], [ 151.523438, -4.214943 ], [ 152.226562, -4.214943 ] ] ], [ [ [ 151.523438, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.513421 ], [ 152.578125, -3.513421 ], [ 152.578125, -3.864255 ], [ 151.875000, -3.864255 ], [ 151.875000, -3.513421 ], [ 151.523438, -3.513421 ], [ 151.523438, -3.162456 ] ] ], [ [ [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.214943 ], [ 153.281250, -4.214943 ], [ 153.281250, -4.915833 ], [ 152.929688, -4.915833 ], [ 152.929688, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -3.864255 ] ] ], [ [ [ 151.523438, -3.162456 ], [ 150.820312, -3.162456 ], [ 150.820312, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -3.162456 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.070312, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.718750, -10.487812 ], [ 162.070312, -10.487812 ], [ 162.070312, -10.833306 ] ] ], [ [ [ 160.664062, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.449062 ], [ 160.664062, -9.449062 ], [ 160.664062, -9.795678 ] ] ], [ [ [ 161.015625, -8.754795 ], [ 161.367188, -8.754795 ], [ 161.367188, -9.449062 ], [ 161.718750, -9.449062 ], [ 161.718750, -9.795678 ], [ 161.015625, -9.795678 ], [ 161.015625, -9.102097 ], [ 160.664062, -9.102097 ], [ 160.664062, -8.407168 ], [ 161.015625, -8.407168 ], [ 161.015625, -8.754795 ] ] ], [ [ [ 158.554688, -7.710992 ], [ 158.906250, -7.710992 ], [ 158.906250, -8.059230 ], [ 158.554688, -8.059230 ], [ 158.554688, -7.710992 ] ] ], [ [ [ 157.148438, -7.362467 ], [ 156.796875, -7.362467 ], [ 156.796875, -7.013668 ], [ 157.148438, -7.013668 ], [ 157.148438, -7.362467 ] ] ], [ [ [ 159.609375, -8.407168 ], [ 159.257812, -8.407168 ], [ 159.257812, -8.059230 ], [ 159.609375, -8.059230 ], [ 159.609375, -8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.070312, -10.487812 ], [ 162.070312, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.718750, -10.487812 ], [ 162.070312, -10.487812 ] ] ], [ [ [ 160.312500, -9.449062 ], [ 160.664062, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.449062 ], [ 160.312500, -9.449062 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -8.754795 ], [ 161.367188, -8.754795 ], [ 161.367188, -9.449062 ], [ 161.718750, -9.449062 ], [ 161.718750, -9.795678 ], [ 161.015625, -9.795678 ], [ 161.015625, -9.102097 ], [ 160.664062, -9.102097 ], [ 160.664062, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 158.906250, -8.059230 ], [ 158.554688, -8.059230 ], [ 158.554688, -7.710992 ], [ 158.906250, -7.710992 ], [ 158.906250, -8.059230 ] ] ], [ [ [ 157.148438, -7.013668 ], [ 157.148438, -7.362467 ], [ 156.796875, -7.362467 ], [ 156.796875, -7.013668 ], [ 157.148438, -7.013668 ] ] ], [ [ [ 159.257812, -8.059230 ], [ 159.609375, -8.059230 ], [ 159.609375, -8.407168 ], [ 159.257812, -8.407168 ], [ 159.257812, -8.059230 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.695312, -16.636192 ], [ 167.343750, -16.636192 ], [ 167.343750, -16.299051 ], [ 167.695312, -16.299051 ], [ 167.695312, -16.636192 ] ] ], [ [ [ 166.992188, -15.284185 ], [ 167.343750, -15.284185 ], [ 167.343750, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.944785 ], [ 166.992188, -14.944785 ], [ 166.992188, -15.284185 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.695312, -16.299051 ], [ 167.695312, -16.636192 ], [ 167.343750, -16.636192 ], [ 167.343750, -16.299051 ], [ 167.695312, -16.299051 ] ] ], [ [ [ 166.992188, -14.944785 ], [ 166.992188, -15.284185 ], [ 167.343750, -15.284185 ], [ 167.343750, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.944785 ], [ 166.992188, -14.944785 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.961440 ], [ 165.937500, -20.961440 ], [ 165.937500, -21.289374 ], [ 166.289062, -21.289374 ], [ 166.289062, -21.616579 ], [ 166.640625, -21.616579 ], [ 166.640625, -21.943046 ], [ 166.992188, -21.943046 ], [ 166.992188, -22.268764 ], [ 165.937500, -22.268764 ], [ 165.937500, -21.943046 ], [ 165.585938, -21.943046 ], [ 165.585938, -21.616579 ], [ 164.882812, -21.616579 ], [ 164.882812, -21.289374 ], [ 164.531250, -21.289374 ], [ 164.531250, -20.632784 ], [ 164.179688, -20.632784 ], [ 164.179688, -19.973349 ], [ 164.531250, -19.973349 ], [ 164.531250, -20.303418 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -19.973349 ], [ 164.531250, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.961440 ], [ 165.937500, -20.961440 ], [ 165.937500, -21.289374 ], [ 166.289062, -21.289374 ], [ 166.289062, -21.616579 ], [ 166.640625, -21.616579 ], [ 166.640625, -21.943046 ], [ 166.992188, -21.943046 ], [ 166.992188, -22.268764 ], [ 165.937500, -22.268764 ], [ 165.937500, -21.943046 ], [ 165.585938, -21.943046 ], [ 165.585938, -21.616579 ], [ 164.882812, -21.616579 ], [ 164.882812, -21.289374 ], [ 164.531250, -21.289374 ], [ 164.531250, -20.632784 ], [ 164.179688, -20.632784 ], [ 164.179688, -19.973349 ], [ 164.531250, -19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.375000, -42.032974 ], [ 174.023438, -42.032974 ], [ 174.023438, -42.553080 ], [ 173.671875, -42.553080 ], [ 173.671875, -43.068888 ], [ 173.320312, -43.068888 ], [ 173.320312, -43.325178 ], [ 172.617188, -43.325178 ], [ 172.617188, -43.580391 ], [ 172.968750, -43.580391 ], [ 172.968750, -43.834527 ], [ 172.265625, -43.834527 ], [ 172.265625, -44.087585 ], [ 171.914062, -44.087585 ], [ 171.914062, -44.339565 ], [ 171.562500, -44.339565 ], [ 171.562500, -44.590467 ], [ 171.210938, -44.590467 ], [ 171.210938, -45.089036 ], [ 170.859375, -45.089036 ], [ 170.859375, -45.583290 ], [ 170.507812, -45.583290 ], [ 170.507812, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.558860 ], [ 167.695312, -46.558860 ], [ 167.695312, -46.316584 ], [ 166.640625, -46.316584 ], [ 166.640625, -45.583290 ], [ 166.992188, -45.583290 ], [ 166.992188, -45.089036 ], [ 167.343750, -45.089036 ], [ 167.343750, -44.840291 ], [ 167.695312, -44.840291 ], [ 167.695312, -44.590467 ], [ 168.046875, -44.590467 ], [ 168.046875, -44.339565 ], [ 168.398438, -44.339565 ], [ 168.398438, -44.087585 ], [ 169.101562, -44.087585 ], [ 169.101562, -43.834527 ], [ 169.804688, -43.834527 ], [ 169.804688, -43.580391 ], [ 170.156250, -43.580391 ], [ 170.156250, -43.325178 ], [ 170.507812, -43.325178 ], [ 170.507812, -43.068888 ], [ 170.859375, -43.068888 ], [ 170.859375, -42.811522 ], [ 171.210938, -42.811522 ], [ 171.210938, -42.293564 ], [ 171.562500, -42.293564 ], [ 171.562500, -41.771312 ], [ 171.914062, -41.771312 ], [ 171.914062, -41.244772 ], [ 172.265625, -41.244772 ], [ 172.265625, -40.979898 ], [ 172.617188, -40.979898 ], [ 172.617188, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.244772 ], [ 174.375000, -41.244772 ], [ 174.375000, -42.032974 ] ] ], [ [ [ 173.320312, -34.885931 ], [ 173.671875, -34.885931 ], [ 173.671875, -35.173808 ], [ 174.375000, -35.173808 ], [ 174.375000, -35.746512 ], [ 174.726562, -35.746512 ], [ 174.726562, -36.315125 ], [ 175.078125, -36.315125 ], [ 175.078125, -36.879621 ], [ 175.781250, -36.879621 ], [ 175.781250, -37.160317 ], [ 176.132812, -37.160317 ], [ 176.132812, -37.718590 ], [ 176.484375, -37.718590 ], [ 176.484375, -37.996163 ], [ 177.890625, -37.996163 ], [ 177.890625, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -38.272689 ], [ 178.242188, -38.272689 ], [ 178.242188, -38.822591 ], [ 177.890625, -38.822591 ], [ 177.890625, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.368279 ], [ 176.835938, -39.368279 ], [ 176.835938, -39.639538 ], [ 177.187500, -39.639538 ], [ 177.187500, -40.178873 ], [ 176.835938, -40.178873 ], [ 176.835938, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.771312 ], [ 175.078125, -41.771312 ], [ 175.078125, -41.508577 ], [ 174.726562, -41.508577 ], [ 174.726562, -40.979898 ], [ 175.078125, -40.979898 ], [ 175.078125, -40.178873 ], [ 174.726562, -40.178873 ], [ 174.726562, -39.909736 ], [ 174.023438, -39.909736 ], [ 174.023438, -39.639538 ], [ 173.671875, -39.639538 ], [ 173.671875, -39.368279 ], [ 174.023438, -39.368279 ], [ 174.023438, -39.095963 ], [ 174.726562, -39.095963 ], [ 174.726562, -37.160317 ], [ 174.375000, -37.160317 ], [ 174.375000, -36.597889 ], [ 174.023438, -36.597889 ], [ 174.023438, -36.315125 ], [ 173.671875, -36.315125 ], [ 173.671875, -36.031332 ], [ 173.320312, -36.031332 ], [ 173.320312, -35.460670 ], [ 172.968750, -35.460670 ], [ 172.968750, -34.885931 ], [ 172.617188, -34.885931 ], [ 172.617188, -34.597042 ], [ 173.320312, -34.597042 ], [ 173.320312, -34.885931 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.713956 ], [ 172.968750, -41.244772 ], [ 174.375000, -41.244772 ], [ 174.375000, -42.032974 ], [ 174.023438, -42.032974 ], [ 174.023438, -42.553080 ], [ 173.671875, -42.553080 ], [ 173.671875, -43.068888 ], [ 173.320312, -43.068888 ], [ 173.320312, -43.325178 ], [ 172.617188, -43.325178 ], [ 172.617188, -43.580391 ], [ 172.968750, -43.580391 ], [ 172.968750, -43.834527 ], [ 172.265625, -43.834527 ], [ 172.265625, -44.087585 ], [ 171.914062, -44.087585 ], [ 171.914062, -44.339565 ], [ 171.562500, -44.339565 ], [ 171.562500, -44.590467 ], [ 171.210938, -44.590467 ], [ 171.210938, -45.089036 ], [ 170.859375, -45.089036 ], [ 170.859375, -45.583290 ], [ 170.507812, -45.583290 ], [ 170.507812, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.558860 ], [ 167.695312, -46.558860 ], [ 167.695312, -46.316584 ], [ 166.640625, -46.316584 ], [ 166.640625, -45.583290 ], [ 166.992188, -45.583290 ], [ 166.992188, -45.089036 ], [ 167.343750, -45.089036 ], [ 167.343750, -44.840291 ], [ 167.695312, -44.840291 ], [ 167.695312, -44.590467 ], [ 168.046875, -44.590467 ], [ 168.046875, -44.339565 ], [ 168.398438, -44.339565 ], [ 168.398438, -44.087585 ], [ 169.101562, -44.087585 ], [ 169.101562, -43.834527 ], [ 169.804688, -43.834527 ], [ 169.804688, -43.580391 ], [ 170.156250, -43.580391 ], [ 170.156250, -43.325178 ], [ 170.507812, -43.325178 ], [ 170.507812, -43.068888 ], [ 170.859375, -43.068888 ], [ 170.859375, -42.811522 ], [ 171.210938, -42.811522 ], [ 171.210938, -42.293564 ], [ 171.562500, -42.293564 ], [ 171.562500, -41.771312 ], [ 171.914062, -41.771312 ], [ 171.914062, -41.244772 ], [ 172.265625, -41.244772 ], [ 172.265625, -40.979898 ], [ 172.617188, -40.979898 ], [ 172.617188, -40.713956 ], [ 172.968750, -40.713956 ] ] ], [ [ [ 173.320312, -34.597042 ], [ 173.320312, -34.885931 ], [ 173.671875, -34.885931 ], [ 173.671875, -35.173808 ], [ 174.375000, -35.173808 ], [ 174.375000, -35.746512 ], [ 174.726562, -35.746512 ], [ 174.726562, -36.315125 ], [ 175.078125, -36.315125 ], [ 175.078125, -36.879621 ], [ 175.781250, -36.879621 ], [ 175.781250, -37.160317 ], [ 176.132812, -37.160317 ], [ 176.132812, -37.718590 ], [ 176.484375, -37.718590 ], [ 176.484375, -37.996163 ], [ 177.890625, -37.996163 ], [ 177.890625, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -38.272689 ], [ 178.242188, -38.272689 ], [ 178.242188, -38.822591 ], [ 177.890625, -38.822591 ], [ 177.890625, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.368279 ], [ 176.835938, -39.368279 ], [ 176.835938, -39.639538 ], [ 177.187500, -39.639538 ], [ 177.187500, -40.178873 ], [ 176.835938, -40.178873 ], [ 176.835938, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.771312 ], [ 175.078125, -41.771312 ], [ 175.078125, -41.508577 ], [ 174.726562, -41.508577 ], [ 174.726562, -40.979898 ], [ 175.078125, -40.979898 ], [ 175.078125, -40.178873 ], [ 174.726562, -40.178873 ], [ 174.726562, -39.909736 ], [ 174.023438, -39.909736 ], [ 174.023438, -39.639538 ], [ 173.671875, -39.639538 ], [ 173.671875, -39.368279 ], [ 174.023438, -39.368279 ], [ 174.023438, -39.095963 ], [ 174.726562, -39.095963 ], [ 174.726562, -37.160317 ], [ 174.375000, -37.160317 ], [ 174.375000, -36.597889 ], [ 174.023438, -36.597889 ], [ 174.023438, -36.315125 ], [ 173.671875, -36.315125 ], [ 173.671875, -36.031332 ], [ 173.320312, -36.031332 ], [ 173.320312, -35.460670 ], [ 172.968750, -35.460670 ], [ 172.968750, -34.885931 ], [ 172.617188, -34.885931 ], [ 172.617188, -34.597042 ], [ 173.320312, -34.597042 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.132812, 45.089036 ], [ 131.835938, 45.089036 ], [ 131.835938, 45.336702 ], [ 132.187500, 45.336702 ], [ 132.187500, 45.089036 ], [ 133.242188, 45.089036 ], [ 133.242188, 45.336702 ], [ 133.593750, 45.336702 ], [ 133.593750, 45.828799 ], [ 133.945312, 45.828799 ], [ 133.945312, 47.279229 ], [ 134.648438, 47.279229 ], [ 134.648438, 47.989922 ], [ 135.000000, 47.989922 ], [ 135.000000, 48.458352 ], [ 134.296875, 48.458352 ], [ 134.296875, 48.224673 ], [ 133.242188, 48.224673 ], [ 133.242188, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 47.754098 ], [ 131.132812, 47.754098 ], [ 131.132812, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.429688, 48.458352 ], [ 130.429688, 48.690960 ], [ 130.078125, 48.690960 ], [ 130.078125, 48.922499 ], [ 129.726562, 48.922499 ], [ 129.726562, 49.152970 ], [ 129.375000, 49.152970 ], [ 129.375000, 49.382373 ], [ 128.671875, 49.382373 ], [ 128.671875, 49.610710 ], [ 127.968750, 49.610710 ], [ 127.968750, 49.837982 ], [ 127.617188, 49.837982 ], [ 127.617188, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 50.958427 ], [ 126.914062, 50.958427 ], [ 126.914062, 51.618017 ], [ 126.562500, 51.618017 ], [ 126.562500, 52.052490 ], [ 126.210938, 52.052490 ], [ 126.210938, 52.482780 ], [ 125.859375, 52.482780 ], [ 125.859375, 52.696361 ], [ 125.507812, 52.696361 ], [ 125.507812, 52.908902 ], [ 125.156250, 52.908902 ], [ 125.156250, 53.120405 ], [ 124.453125, 53.120405 ], [ 124.453125, 53.330873 ], [ 123.750000, 53.330873 ], [ 123.750000, 53.540307 ], [ 123.046875, 53.540307 ], [ 123.046875, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 53.120405 ], [ 120.585938, 53.120405 ], [ 120.585938, 52.696361 ], [ 120.234375, 52.696361 ], [ 120.234375, 52.482780 ], [ 120.585938, 52.482780 ], [ 120.585938, 51.835778 ], [ 120.234375, 51.835778 ], [ 120.234375, 51.399206 ], [ 119.882812, 51.399206 ], [ 119.882812, 50.958427 ], [ 119.531250, 50.958427 ], [ 119.531250, 50.513427 ], [ 119.179688, 50.513427 ], [ 119.179688, 49.837982 ], [ 118.476562, 49.837982 ], [ 118.476562, 49.610710 ], [ 117.070312, 49.610710 ], [ 117.070312, 49.837982 ], [ 114.960938, 49.837982 ], [ 114.960938, 50.064192 ], [ 113.906250, 50.064192 ], [ 113.906250, 49.837982 ], [ 113.203125, 49.837982 ], [ 113.203125, 49.610710 ], [ 112.500000, 49.610710 ], [ 112.500000, 49.382373 ], [ 111.445312, 49.382373 ], [ 111.445312, 49.152970 ], [ 109.687500, 49.152970 ], [ 109.687500, 49.382373 ], [ 108.281250, 49.382373 ], [ 108.281250, 49.610710 ], [ 107.929688, 49.610710 ], [ 107.929688, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 50.064192 ], [ 106.875000, 50.064192 ], [ 106.875000, 50.289339 ], [ 106.171875, 50.289339 ], [ 106.171875, 50.513427 ], [ 105.468750, 50.513427 ], [ 105.468750, 50.289339 ], [ 104.414062, 50.289339 ], [ 104.414062, 50.064192 ], [ 103.007812, 50.064192 ], [ 103.007812, 50.289339 ], [ 102.304688, 50.289339 ], [ 102.304688, 50.736455 ], [ 101.953125, 50.736455 ], [ 101.953125, 51.179343 ], [ 101.601562, 51.179343 ], [ 101.601562, 51.399206 ], [ 100.898438, 51.399206 ], [ 100.898438, 51.618017 ], [ 99.492188, 51.618017 ], [ 99.492188, 51.835778 ], [ 98.437500, 51.835778 ], [ 98.437500, 51.399206 ], [ 98.085938, 51.399206 ], [ 98.085938, 50.958427 ], [ 97.734375, 50.958427 ], [ 97.734375, 50.736455 ], [ 98.085938, 50.736455 ], [ 98.085938, 50.289339 ], [ 97.734375, 50.289339 ], [ 97.734375, 49.837982 ], [ 96.328125, 49.837982 ], [ 96.328125, 50.064192 ], [ 94.570312, 50.064192 ], [ 94.570312, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 50.513427 ], [ 92.460938, 50.513427 ], [ 92.460938, 50.736455 ], [ 92.109375, 50.736455 ], [ 92.109375, 50.513427 ], [ 91.406250, 50.513427 ], [ 91.406250, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.382373 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 141.328125, 67.204032 ], [ 141.328125, 58.447733 ], [ 140.976562, 58.447733 ], [ 140.976562, 58.263287 ], [ 140.625000, 58.263287 ], [ 140.625000, 58.077876 ], [ 140.273438, 58.077876 ], [ 140.273438, 57.704147 ], [ 139.921875, 57.704147 ], [ 139.921875, 57.515823 ], [ 139.570312, 57.515823 ], [ 139.570312, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 57.136239 ], [ 138.867188, 57.136239 ], [ 138.867188, 56.944974 ], [ 138.515625, 56.944974 ], [ 138.515625, 56.752723 ], [ 138.164062, 56.752723 ], [ 138.164062, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 56.365250 ], [ 137.460938, 56.365250 ], [ 137.460938, 56.170023 ], [ 137.109375, 56.170023 ], [ 137.109375, 55.973798 ], [ 136.757812, 55.973798 ], [ 136.757812, 55.578345 ], [ 136.406250, 55.578345 ], [ 136.406250, 55.379110 ], [ 136.054688, 55.379110 ], [ 136.054688, 55.178868 ], [ 135.703125, 55.178868 ], [ 135.703125, 54.977614 ], [ 135.351562, 54.977614 ], [ 135.351562, 54.775346 ], [ 135.703125, 54.775346 ], [ 135.703125, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 53.956086 ], [ 137.460938, 53.956086 ], [ 137.460938, 53.748711 ], [ 138.515625, 53.748711 ], [ 138.515625, 53.956086 ], [ 138.867188, 53.956086 ], [ 138.867188, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.956086 ], [ 140.273438, 53.956086 ], [ 140.273438, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 53.330873 ], [ 140.976562, 53.330873 ], [ 140.976562, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 51.835778 ], [ 140.976562, 51.835778 ], [ 140.976562, 51.399206 ], [ 140.625000, 51.399206 ], [ 140.625000, 49.610710 ], [ 140.273438, 49.610710 ], [ 140.273438, 48.690960 ], [ 139.921875, 48.690960 ], [ 139.921875, 48.224673 ], [ 139.570312, 48.224673 ], [ 139.570312, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.517201 ], [ 138.867188, 47.517201 ], [ 138.867188, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.558860 ], [ 138.164062, 46.558860 ], [ 138.164062, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.828799 ], [ 137.460938, 45.828799 ], [ 137.460938, 45.336702 ], [ 137.109375, 45.336702 ], [ 137.109375, 45.089036 ], [ 136.757812, 45.089036 ], [ 136.757812, 44.840291 ], [ 136.406250, 44.840291 ], [ 136.406250, 44.590467 ], [ 136.054688, 44.590467 ], [ 136.054688, 44.339565 ], [ 135.703125, 44.339565 ], [ 135.703125, 44.087585 ], [ 135.351562, 44.087585 ], [ 135.351562, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.068888 ], [ 134.296875, 43.068888 ], [ 134.296875, 42.811522 ], [ 132.539062, 42.811522 ], [ 132.539062, 43.068888 ], [ 131.835938, 43.068888 ], [ 131.835938, 42.811522 ], [ 131.132812, 42.811522 ], [ 131.132812, 45.089036 ] ] ], [ [ [ 131.132812, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 42.811522 ], [ 131.132812, 42.811522 ], [ 131.132812, 42.553080 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.132812, 42.811522 ], [ 131.132812, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 42.811522 ], [ 131.132812, 42.811522 ] ] ], [ [ [ 141.328125, 58.447733 ], [ 140.976562, 58.447733 ], [ 140.976562, 58.263287 ], [ 140.625000, 58.263287 ], [ 140.625000, 58.077876 ], [ 140.273438, 58.077876 ], [ 140.273438, 57.704147 ], [ 139.921875, 57.704147 ], [ 139.921875, 57.515823 ], [ 139.570312, 57.515823 ], [ 139.570312, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 57.136239 ], [ 138.867188, 57.136239 ], [ 138.867188, 56.944974 ], [ 138.515625, 56.944974 ], [ 138.515625, 56.752723 ], [ 138.164062, 56.752723 ], [ 138.164062, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 56.365250 ], [ 137.460938, 56.365250 ], [ 137.460938, 56.170023 ], [ 137.109375, 56.170023 ], [ 137.109375, 55.973798 ], [ 136.757812, 55.973798 ], [ 136.757812, 55.578345 ], [ 136.406250, 55.578345 ], [ 136.406250, 55.379110 ], [ 136.054688, 55.379110 ], [ 136.054688, 55.178868 ], [ 135.703125, 55.178868 ], [ 135.703125, 54.977614 ], [ 135.351562, 54.977614 ], [ 135.351562, 54.775346 ], [ 135.703125, 54.775346 ], [ 135.703125, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 53.956086 ], [ 137.460938, 53.956086 ], [ 137.460938, 53.748711 ], [ 138.515625, 53.748711 ], [ 138.515625, 53.956086 ], [ 138.867188, 53.956086 ], [ 138.867188, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.956086 ], [ 140.273438, 53.956086 ], [ 140.273438, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 53.330873 ], [ 140.976562, 53.330873 ], [ 140.976562, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 51.835778 ], [ 140.976562, 51.835778 ], [ 140.976562, 51.399206 ], [ 140.625000, 51.399206 ], [ 140.625000, 49.610710 ], [ 140.273438, 49.610710 ], [ 140.273438, 48.690960 ], [ 139.921875, 48.690960 ], [ 139.921875, 48.224673 ], [ 139.570312, 48.224673 ], [ 139.570312, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.517201 ], [ 138.867188, 47.517201 ], [ 138.867188, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.558860 ], [ 138.164062, 46.558860 ], [ 138.164062, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.828799 ], [ 137.460938, 45.828799 ], [ 137.460938, 45.336702 ], [ 137.109375, 45.336702 ], [ 137.109375, 45.089036 ], [ 136.757812, 45.089036 ], [ 136.757812, 44.840291 ], [ 136.406250, 44.840291 ], [ 136.406250, 44.590467 ], [ 136.054688, 44.590467 ], [ 136.054688, 44.339565 ], [ 135.703125, 44.339565 ], [ 135.703125, 44.087585 ], [ 135.351562, 44.087585 ], [ 135.351562, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.068888 ], [ 134.296875, 43.068888 ], [ 134.296875, 42.811522 ], [ 132.539062, 42.811522 ], [ 132.539062, 43.068888 ], [ 131.835938, 43.068888 ], [ 131.835938, 42.811522 ], [ 131.132812, 42.811522 ], [ 131.132812, 45.089036 ], [ 131.835938, 45.089036 ], [ 131.835938, 45.336702 ], [ 132.187500, 45.336702 ], [ 132.187500, 45.089036 ], [ 133.242188, 45.089036 ], [ 133.242188, 45.336702 ], [ 133.593750, 45.336702 ], [ 133.593750, 45.828799 ], [ 133.945312, 45.828799 ], [ 133.945312, 47.279229 ], [ 134.648438, 47.279229 ], [ 134.648438, 47.989922 ], [ 135.000000, 47.989922 ], [ 135.000000, 48.458352 ], [ 134.296875, 48.458352 ], [ 134.296875, 48.224673 ], [ 133.242188, 48.224673 ], [ 133.242188, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 47.754098 ], [ 131.132812, 47.754098 ], [ 131.132812, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.429688, 48.458352 ], [ 130.429688, 48.690960 ], [ 130.078125, 48.690960 ], [ 130.078125, 48.922499 ], [ 129.726562, 48.922499 ], [ 129.726562, 49.152970 ], [ 129.375000, 49.152970 ], [ 129.375000, 49.382373 ], [ 128.671875, 49.382373 ], [ 128.671875, 49.610710 ], [ 127.968750, 49.610710 ], [ 127.968750, 49.837982 ], [ 127.617188, 49.837982 ], [ 127.617188, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 50.958427 ], [ 126.914062, 50.958427 ], [ 126.914062, 51.618017 ], [ 126.562500, 51.618017 ], [ 126.562500, 52.052490 ], [ 126.210938, 52.052490 ], [ 126.210938, 52.482780 ], [ 125.859375, 52.482780 ], [ 125.859375, 52.696361 ], [ 125.507812, 52.696361 ], [ 125.507812, 52.908902 ], [ 125.156250, 52.908902 ], [ 125.156250, 53.120405 ], [ 124.453125, 53.120405 ], [ 124.453125, 53.330873 ], [ 123.750000, 53.330873 ], [ 123.750000, 53.540307 ], [ 123.046875, 53.540307 ], [ 123.046875, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 53.120405 ], [ 120.585938, 53.120405 ], [ 120.585938, 52.696361 ], [ 120.234375, 52.696361 ], [ 120.234375, 52.482780 ], [ 120.585938, 52.482780 ], [ 120.585938, 51.835778 ], [ 120.234375, 51.835778 ], [ 120.234375, 51.399206 ], [ 119.882812, 51.399206 ], [ 119.882812, 50.958427 ], [ 119.531250, 50.958427 ], [ 119.531250, 50.513427 ], [ 119.179688, 50.513427 ], [ 119.179688, 49.837982 ], [ 118.476562, 49.837982 ], [ 118.476562, 49.610710 ], [ 117.070312, 49.610710 ], [ 117.070312, 49.837982 ], [ 114.960938, 49.837982 ], [ 114.960938, 50.064192 ], [ 113.906250, 50.064192 ], [ 113.906250, 49.837982 ], [ 113.203125, 49.837982 ], [ 113.203125, 49.610710 ], [ 112.500000, 49.610710 ], [ 112.500000, 49.382373 ], [ 111.445312, 49.382373 ], [ 111.445312, 49.152970 ], [ 109.687500, 49.152970 ], [ 109.687500, 49.382373 ], [ 108.281250, 49.382373 ], [ 108.281250, 49.610710 ], [ 107.929688, 49.610710 ], [ 107.929688, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 50.064192 ], [ 106.875000, 50.064192 ], [ 106.875000, 50.289339 ], [ 106.171875, 50.289339 ], [ 106.171875, 50.513427 ], [ 105.468750, 50.513427 ], [ 105.468750, 50.289339 ], [ 104.414062, 50.289339 ], [ 104.414062, 50.064192 ], [ 103.007812, 50.064192 ], [ 103.007812, 50.289339 ], [ 102.304688, 50.289339 ], [ 102.304688, 50.736455 ], [ 101.953125, 50.736455 ], [ 101.953125, 51.179343 ], [ 101.601562, 51.179343 ], [ 101.601562, 51.399206 ], [ 100.898438, 51.399206 ], [ 100.898438, 51.618017 ], [ 99.492188, 51.618017 ], [ 99.492188, 51.835778 ], [ 98.437500, 51.835778 ], [ 98.437500, 51.399206 ], [ 98.085938, 51.399206 ], [ 98.085938, 50.958427 ], [ 97.734375, 50.958427 ], [ 97.734375, 50.736455 ], [ 98.085938, 50.736455 ], [ 98.085938, 50.289339 ], [ 97.734375, 50.289339 ], [ 97.734375, 49.837982 ], [ 96.328125, 49.837982 ], [ 96.328125, 50.064192 ], [ 94.570312, 50.064192 ], [ 94.570312, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 50.513427 ], [ 92.460938, 50.513427 ], [ 92.460938, 50.736455 ], [ 92.109375, 50.736455 ], [ 92.109375, 50.513427 ], [ 91.406250, 50.513427 ], [ 91.406250, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.382373 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 141.328125, 67.204032 ], [ 141.328125, 58.447733 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.085938, 53.956086 ], [ 143.085938, 51.399206 ], [ 143.437500, 51.399206 ], [ 143.437500, 50.958427 ], [ 143.789062, 50.958427 ], [ 143.789062, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 144.492188, 49.382373 ], [ 144.492188, 48.922499 ], [ 143.789062, 48.922499 ], [ 143.789062, 49.152970 ], [ 143.085938, 49.152970 ], [ 143.085938, 48.458352 ], [ 142.734375, 48.458352 ], [ 142.734375, 47.517201 ], [ 143.085938, 47.517201 ], [ 143.085938, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.073231 ], [ 143.085938, 46.073231 ], [ 143.085938, 46.558860 ], [ 142.382812, 46.558860 ], [ 142.382812, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 51.399206 ], [ 141.679688, 51.399206 ], [ 141.679688, 53.330873 ], [ 142.031250, 53.330873 ], [ 142.031250, 53.540307 ], [ 142.734375, 53.540307 ], [ 142.734375, 53.956086 ], [ 143.085938, 53.956086 ] ] ], [ [ [ 177.890625, 64.168107 ], [ 178.242188, 64.168107 ], [ 178.242188, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.391522 ], [ 178.945312, 63.391522 ], [ 178.945312, 63.074866 ], [ 179.296875, 63.074866 ], [ 179.296875, 62.754726 ], [ 179.648438, 62.754726 ], [ 179.648438, 62.431074 ], [ 179.296875, 62.431074 ], [ 179.296875, 62.267923 ], [ 178.593750, 62.267923 ], [ 178.593750, 62.431074 ], [ 177.890625, 62.431074 ], [ 177.890625, 62.593341 ], [ 177.539062, 62.593341 ], [ 177.539062, 62.431074 ], [ 176.835938, 62.431074 ], [ 176.835938, 62.267923 ], [ 176.484375, 62.267923 ], [ 176.484375, 62.103883 ], [ 175.781250, 62.103883 ], [ 175.781250, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.773123 ], [ 174.375000, 61.773123 ], [ 174.375000, 61.606396 ], [ 173.671875, 61.606396 ], [ 173.671875, 61.438767 ], [ 173.320312, 61.438767 ], [ 173.320312, 61.270233 ], [ 172.968750, 61.270233 ], [ 172.968750, 61.100789 ], [ 172.617188, 61.100789 ], [ 172.617188, 60.930432 ], [ 172.265625, 60.930432 ], [ 172.265625, 60.759160 ], [ 171.914062, 60.759160 ], [ 171.914062, 60.586967 ], [ 171.210938, 60.586967 ], [ 171.210938, 60.413852 ], [ 170.859375, 60.413852 ], [ 170.859375, 60.239811 ], [ 170.507812, 60.239811 ], [ 170.507812, 59.888937 ], [ 169.804688, 59.888937 ], [ 169.804688, 60.064840 ], [ 169.453125, 60.064840 ], [ 169.453125, 60.239811 ], [ 169.101562, 60.239811 ], [ 169.101562, 60.413852 ], [ 168.046875, 60.413852 ], [ 168.046875, 60.239811 ], [ 167.695312, 60.239811 ], [ 167.695312, 60.064840 ], [ 167.343750, 60.064840 ], [ 167.343750, 59.888937 ], [ 166.640625, 59.888937 ], [ 166.640625, 59.712097 ], [ 166.289062, 59.712097 ], [ 166.289062, 59.888937 ], [ 165.937500, 59.888937 ], [ 165.937500, 60.064840 ], [ 165.585938, 60.064840 ], [ 165.585938, 59.888937 ], [ 165.234375, 59.888937 ], [ 165.234375, 59.712097 ], [ 163.828125, 59.712097 ], [ 163.828125, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.995311 ], [ 162.773438, 58.995311 ], [ 162.773438, 58.631217 ], [ 162.421875, 58.631217 ], [ 162.421875, 58.263287 ], [ 162.070312, 58.263287 ], [ 162.070312, 57.891497 ], [ 162.421875, 57.891497 ], [ 162.421875, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.977614 ], [ 162.070312, 54.977614 ], [ 162.070312, 54.775346 ], [ 161.718750, 54.775346 ], [ 161.718750, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 53.748711 ], [ 159.960938, 53.748711 ], [ 159.960938, 53.120405 ], [ 159.609375, 53.120405 ], [ 159.609375, 52.908902 ], [ 158.554688, 52.908902 ], [ 158.554688, 52.268157 ], [ 158.203125, 52.268157 ], [ 158.203125, 51.618017 ], [ 157.851562, 51.618017 ], [ 157.851562, 51.399206 ], [ 157.500000, 51.399206 ], [ 157.500000, 51.179343 ], [ 157.148438, 51.179343 ], [ 157.148438, 50.958427 ], [ 156.796875, 50.958427 ], [ 156.796875, 51.179343 ], [ 156.445312, 51.179343 ], [ 156.445312, 52.268157 ], [ 156.093750, 52.268157 ], [ 156.093750, 53.540307 ], [ 155.742188, 53.540307 ], [ 155.742188, 54.775346 ], [ 155.390625, 54.775346 ], [ 155.390625, 55.973798 ], [ 155.742188, 55.973798 ], [ 155.742188, 56.752723 ], [ 156.093750, 56.752723 ], [ 156.093750, 56.944974 ], [ 156.445312, 56.944974 ], [ 156.445312, 57.136239 ], [ 156.796875, 57.136239 ], [ 156.796875, 57.891497 ], [ 157.851562, 57.891497 ], [ 157.851562, 58.077876 ], [ 158.554688, 58.077876 ], [ 158.554688, 58.263287 ], [ 158.906250, 58.263287 ], [ 158.906250, 58.447733 ], [ 159.257812, 58.447733 ], [ 159.257812, 58.813742 ], [ 159.609375, 58.813742 ], [ 159.609375, 58.995311 ], [ 159.960938, 58.995311 ], [ 159.960938, 59.175928 ], [ 160.312500, 59.175928 ], [ 160.312500, 59.355596 ], [ 160.664062, 59.355596 ], [ 160.664062, 59.712097 ], [ 161.015625, 59.712097 ], [ 161.015625, 59.888937 ], [ 161.367188, 59.888937 ], [ 161.367188, 60.239811 ], [ 161.718750, 60.239811 ], [ 161.718750, 60.413852 ], [ 162.070312, 60.413852 ], [ 162.070312, 60.586967 ], [ 162.773438, 60.586967 ], [ 162.773438, 60.759160 ], [ 163.125000, 60.759160 ], [ 163.125000, 60.930432 ], [ 163.828125, 60.930432 ], [ 163.828125, 61.438767 ], [ 164.179688, 61.438767 ], [ 164.179688, 62.103883 ], [ 164.531250, 62.103883 ], [ 164.531250, 62.593341 ], [ 164.179688, 62.593341 ], [ 164.179688, 62.431074 ], [ 163.125000, 62.431074 ], [ 163.125000, 61.938950 ], [ 162.773438, 61.938950 ], [ 162.773438, 61.438767 ], [ 162.421875, 61.438767 ], [ 162.421875, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 61.100789 ], [ 161.367188, 61.100789 ], [ 161.367188, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.759160 ], [ 160.312500, 60.759160 ], [ 160.312500, 60.586967 ], [ 159.960938, 60.586967 ], [ 159.960938, 60.759160 ], [ 159.609375, 60.759160 ], [ 159.609375, 61.438767 ], [ 159.257812, 61.438767 ], [ 159.257812, 61.773123 ], [ 158.906250, 61.773123 ], [ 158.906250, 61.606396 ], [ 157.500000, 61.606396 ], [ 157.500000, 61.438767 ], [ 156.796875, 61.438767 ], [ 156.796875, 61.270233 ], [ 156.445312, 61.270233 ], [ 156.445312, 60.930432 ], [ 156.093750, 60.930432 ], [ 156.093750, 60.759160 ], [ 155.742188, 60.759160 ], [ 155.742188, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.239811 ], [ 155.039062, 60.239811 ], [ 155.039062, 60.064840 ], [ 154.687500, 60.064840 ], [ 154.687500, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 58.995311 ], [ 153.632812, 58.995311 ], [ 153.632812, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 150.117188, 59.534318 ], [ 150.117188, 59.712097 ], [ 149.765625, 59.712097 ], [ 149.765625, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.355596 ], [ 149.062500, 59.355596 ], [ 149.062500, 59.175928 ], [ 146.953125, 59.175928 ], [ 146.953125, 59.355596 ], [ 144.843750, 59.355596 ], [ 144.843750, 59.175928 ], [ 143.085938, 59.175928 ], [ 143.085938, 58.995311 ], [ 142.031250, 58.995311 ], [ 142.031250, 58.813742 ], [ 141.679688, 58.813742 ], [ 141.679688, 58.631217 ], [ 141.328125, 58.631217 ], [ 141.328125, 67.204032 ], [ 180.000000, 67.204032 ], [ 180.000000, 64.774125 ], [ 179.648438, 64.774125 ], [ 179.648438, 64.623877 ], [ 178.945312, 64.623877 ], [ 178.945312, 64.472794 ], [ 177.890625, 64.472794 ], [ 177.890625, 64.168107 ] ], [ [ 177.890625, 64.623877 ], [ 177.539062, 64.623877 ], [ 177.539062, 64.472794 ], [ 177.890625, 64.472794 ], [ 177.890625, 64.623877 ] ] ], [ [ [ 142.382812, 53.956086 ], [ 142.382812, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.956086 ], [ 142.382812, 53.956086 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, 53.956086 ], [ 143.085938, 53.956086 ], [ 143.085938, 51.399206 ], [ 143.437500, 51.399206 ], [ 143.437500, 50.958427 ], [ 143.789062, 50.958427 ], [ 143.789062, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 144.492188, 49.382373 ], [ 144.492188, 48.922499 ], [ 143.789062, 48.922499 ], [ 143.789062, 49.152970 ], [ 143.085938, 49.152970 ], [ 143.085938, 48.458352 ], [ 142.734375, 48.458352 ], [ 142.734375, 47.517201 ], [ 143.085938, 47.517201 ], [ 143.085938, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.073231 ], [ 143.085938, 46.073231 ], [ 143.085938, 46.558860 ], [ 142.382812, 46.558860 ], [ 142.382812, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 51.399206 ], [ 141.679688, 51.399206 ], [ 141.679688, 53.330873 ], [ 142.031250, 53.330873 ], [ 142.031250, 53.540307 ], [ 142.734375, 53.540307 ], [ 142.734375, 53.956086 ] ] ], [ [ [ 177.890625, 64.472794 ], [ 177.890625, 64.168107 ], [ 178.242188, 64.168107 ], [ 178.242188, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.391522 ], [ 178.945312, 63.391522 ], [ 178.945312, 63.074866 ], [ 179.296875, 63.074866 ], [ 179.296875, 62.754726 ], [ 179.648438, 62.754726 ], [ 179.648438, 62.431074 ], [ 179.296875, 62.431074 ], [ 179.296875, 62.267923 ], [ 178.593750, 62.267923 ], [ 178.593750, 62.431074 ], [ 177.890625, 62.431074 ], [ 177.890625, 62.593341 ], [ 177.539062, 62.593341 ], [ 177.539062, 62.431074 ], [ 176.835938, 62.431074 ], [ 176.835938, 62.267923 ], [ 176.484375, 62.267923 ], [ 176.484375, 62.103883 ], [ 175.781250, 62.103883 ], [ 175.781250, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.773123 ], [ 174.375000, 61.773123 ], [ 174.375000, 61.606396 ], [ 173.671875, 61.606396 ], [ 173.671875, 61.438767 ], [ 173.320312, 61.438767 ], [ 173.320312, 61.270233 ], [ 172.968750, 61.270233 ], [ 172.968750, 61.100789 ], [ 172.617188, 61.100789 ], [ 172.617188, 60.930432 ], [ 172.265625, 60.930432 ], [ 172.265625, 60.759160 ], [ 171.914062, 60.759160 ], [ 171.914062, 60.586967 ], [ 171.210938, 60.586967 ], [ 171.210938, 60.413852 ], [ 170.859375, 60.413852 ], [ 170.859375, 60.239811 ], [ 170.507812, 60.239811 ], [ 170.507812, 59.888937 ], [ 169.804688, 59.888937 ], [ 169.804688, 60.064840 ], [ 169.453125, 60.064840 ], [ 169.453125, 60.239811 ], [ 169.101562, 60.239811 ], [ 169.101562, 60.413852 ], [ 168.046875, 60.413852 ], [ 168.046875, 60.239811 ], [ 167.695312, 60.239811 ], [ 167.695312, 60.064840 ], [ 167.343750, 60.064840 ], [ 167.343750, 59.888937 ], [ 166.640625, 59.888937 ], [ 166.640625, 59.712097 ], [ 166.289062, 59.712097 ], [ 166.289062, 59.888937 ], [ 165.937500, 59.888937 ], [ 165.937500, 60.064840 ], [ 165.585938, 60.064840 ], [ 165.585938, 59.888937 ], [ 165.234375, 59.888937 ], [ 165.234375, 59.712097 ], [ 163.828125, 59.712097 ], [ 163.828125, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.995311 ], [ 162.773438, 58.995311 ], [ 162.773438, 58.631217 ], [ 162.421875, 58.631217 ], [ 162.421875, 58.263287 ], [ 162.070312, 58.263287 ], [ 162.070312, 57.891497 ], [ 162.421875, 57.891497 ], [ 162.421875, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.977614 ], [ 162.070312, 54.977614 ], [ 162.070312, 54.775346 ], [ 161.718750, 54.775346 ], [ 161.718750, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 53.748711 ], [ 159.960938, 53.748711 ], [ 159.960938, 53.120405 ], [ 159.609375, 53.120405 ], [ 159.609375, 52.908902 ], [ 158.554688, 52.908902 ], [ 158.554688, 52.268157 ], [ 158.203125, 52.268157 ], [ 158.203125, 51.618017 ], [ 157.851562, 51.618017 ], [ 157.851562, 51.399206 ], [ 157.500000, 51.399206 ], [ 157.500000, 51.179343 ], [ 157.148438, 51.179343 ], [ 157.148438, 50.958427 ], [ 156.796875, 50.958427 ], [ 156.796875, 51.179343 ], [ 156.445312, 51.179343 ], [ 156.445312, 52.268157 ], [ 156.093750, 52.268157 ], [ 156.093750, 53.540307 ], [ 155.742188, 53.540307 ], [ 155.742188, 54.775346 ], [ 155.390625, 54.775346 ], [ 155.390625, 55.973798 ], [ 155.742188, 55.973798 ], [ 155.742188, 56.752723 ], [ 156.093750, 56.752723 ], [ 156.093750, 56.944974 ], [ 156.445312, 56.944974 ], [ 156.445312, 57.136239 ], [ 156.796875, 57.136239 ], [ 156.796875, 57.891497 ], [ 157.851562, 57.891497 ], [ 157.851562, 58.077876 ], [ 158.554688, 58.077876 ], [ 158.554688, 58.263287 ], [ 158.906250, 58.263287 ], [ 158.906250, 58.447733 ], [ 159.257812, 58.447733 ], [ 159.257812, 58.813742 ], [ 159.609375, 58.813742 ], [ 159.609375, 58.995311 ], [ 159.960938, 58.995311 ], [ 159.960938, 59.175928 ], [ 160.312500, 59.175928 ], [ 160.312500, 59.355596 ], [ 160.664062, 59.355596 ], [ 160.664062, 59.712097 ], [ 161.015625, 59.712097 ], [ 161.015625, 59.888937 ], [ 161.367188, 59.888937 ], [ 161.367188, 60.239811 ], [ 161.718750, 60.239811 ], [ 161.718750, 60.413852 ], [ 162.070312, 60.413852 ], [ 162.070312, 60.586967 ], [ 162.773438, 60.586967 ], [ 162.773438, 60.759160 ], [ 163.125000, 60.759160 ], [ 163.125000, 60.930432 ], [ 163.828125, 60.930432 ], [ 163.828125, 61.438767 ], [ 164.179688, 61.438767 ], [ 164.179688, 62.103883 ], [ 164.531250, 62.103883 ], [ 164.531250, 62.593341 ], [ 164.179688, 62.593341 ], [ 164.179688, 62.431074 ], [ 163.125000, 62.431074 ], [ 163.125000, 61.938950 ], [ 162.773438, 61.938950 ], [ 162.773438, 61.438767 ], [ 162.421875, 61.438767 ], [ 162.421875, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 61.100789 ], [ 161.367188, 61.100789 ], [ 161.367188, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.759160 ], [ 160.312500, 60.759160 ], [ 160.312500, 60.586967 ], [ 159.960938, 60.586967 ], [ 159.960938, 60.759160 ], [ 159.609375, 60.759160 ], [ 159.609375, 61.438767 ], [ 159.257812, 61.438767 ], [ 159.257812, 61.773123 ], [ 158.906250, 61.773123 ], [ 158.906250, 61.606396 ], [ 157.500000, 61.606396 ], [ 157.500000, 61.438767 ], [ 156.796875, 61.438767 ], [ 156.796875, 61.270233 ], [ 156.445312, 61.270233 ], [ 156.445312, 60.930432 ], [ 156.093750, 60.930432 ], [ 156.093750, 60.759160 ], [ 155.742188, 60.759160 ], [ 155.742188, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.239811 ], [ 155.039062, 60.239811 ], [ 155.039062, 60.064840 ], [ 154.687500, 60.064840 ], [ 154.687500, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 58.995311 ], [ 153.632812, 58.995311 ], [ 153.632812, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 150.117188, 59.534318 ], [ 150.117188, 59.712097 ], [ 149.765625, 59.712097 ], [ 149.765625, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.355596 ], [ 149.062500, 59.355596 ], [ 149.062500, 59.175928 ], [ 146.953125, 59.175928 ], [ 146.953125, 59.355596 ], [ 144.843750, 59.355596 ], [ 144.843750, 59.175928 ], [ 143.085938, 59.175928 ], [ 143.085938, 58.995311 ], [ 142.031250, 58.995311 ], [ 142.031250, 58.813742 ], [ 141.679688, 58.813742 ], [ 141.679688, 58.631217 ], [ 141.328125, 58.631217 ], [ 141.328125, 67.204032 ], [ 180.000000, 67.204032 ], [ 180.000000, 64.774125 ], [ 179.648438, 64.774125 ], [ 179.648438, 64.623877 ], [ 178.945312, 64.623877 ], [ 178.945312, 64.472794 ], [ 177.890625, 64.472794 ] ], [ [ 177.890625, 64.472794 ], [ 177.890625, 64.623877 ], [ 177.539062, 64.623877 ], [ 177.539062, 64.472794 ], [ 177.890625, 64.472794 ] ] ], [ [ [ 142.734375, 53.956086 ], [ 142.382812, 53.956086 ], [ 142.382812, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.956086 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.679688, 28.613459 ], [ 96.328125, 28.613459 ], [ 96.328125, 28.304381 ], [ 97.382812, 28.304381 ], [ 97.382812, 27.683528 ], [ 97.031250, 27.683528 ], [ 97.031250, 27.059126 ], [ 95.976562, 27.059126 ], [ 95.976562, 26.745610 ], [ 95.625000, 26.745610 ], [ 95.625000, 26.431228 ], [ 95.273438, 26.431228 ], [ 95.273438, 25.799891 ], [ 94.921875, 25.799891 ], [ 94.921875, 25.165173 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.206890 ], [ 94.218750, 24.206890 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 24.206890 ], [ 93.164062, 24.206890 ], [ 93.164062, 21.943046 ], [ 92.812500, 21.943046 ], [ 92.812500, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.917923 ], [ 92.109375, 22.917923 ], [ 92.109375, 23.563987 ], [ 91.757812, 23.563987 ], [ 91.757812, 22.917923 ], [ 91.406250, 22.917923 ], [ 91.406250, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 92.109375, 24.206890 ], [ 92.109375, 24.527135 ], [ 92.460938, 24.527135 ], [ 92.460938, 24.846565 ], [ 91.757812, 24.846565 ], [ 91.757812, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 26.115986 ], [ 88.242188, 26.115986 ], [ 88.242188, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.683528 ], [ 88.945312, 27.683528 ], [ 88.945312, 26.745610 ], [ 92.109375, 26.745610 ], [ 92.109375, 27.371767 ], [ 91.757812, 27.371767 ], [ 91.757812, 27.683528 ], [ 92.460938, 27.683528 ], [ 92.460938, 27.994401 ], [ 92.812500, 27.994401 ], [ 92.812500, 28.304381 ], [ 93.515625, 28.304381 ], [ 93.515625, 28.613459 ], [ 93.867188, 28.613459 ], [ 93.867188, 28.921631 ], [ 95.625000, 28.921631 ], [ 95.625000, 29.228890 ], [ 96.328125, 29.228890 ], [ 96.328125, 28.921631 ], [ 96.679688, 28.921631 ], [ 96.679688, 28.613459 ] ] ], [ [ [ 88.593750, 24.206890 ], [ 88.593750, 23.241346 ], [ 88.945312, 23.241346 ], [ 88.945312, 21.616579 ], [ 88.242188, 21.616579 ], [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ] ] ], [ [ [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 23.241346 ], [ 88.945312, 23.241346 ], [ 88.945312, 21.616579 ], [ 88.242188, 21.616579 ], [ 88.242188, 24.206890 ] ] ], [ [ [ 96.328125, 29.228890 ], [ 96.328125, 28.921631 ], [ 96.679688, 28.921631 ], [ 96.679688, 28.613459 ], [ 96.328125, 28.613459 ], [ 96.328125, 28.304381 ], [ 97.382812, 28.304381 ], [ 97.382812, 27.683528 ], [ 97.031250, 27.683528 ], [ 97.031250, 27.059126 ], [ 95.976562, 27.059126 ], [ 95.976562, 26.745610 ], [ 95.625000, 26.745610 ], [ 95.625000, 26.431228 ], [ 95.273438, 26.431228 ], [ 95.273438, 25.799891 ], [ 94.921875, 25.799891 ], [ 94.921875, 25.165173 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.206890 ], [ 94.218750, 24.206890 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 24.206890 ], [ 93.164062, 24.206890 ], [ 93.164062, 21.943046 ], [ 92.812500, 21.943046 ], [ 92.812500, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.917923 ], [ 92.109375, 22.917923 ], [ 92.109375, 23.563987 ], [ 91.757812, 23.563987 ], [ 91.757812, 22.917923 ], [ 91.406250, 22.917923 ], [ 91.406250, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 92.109375, 24.206890 ], [ 92.109375, 24.527135 ], [ 92.460938, 24.527135 ], [ 92.460938, 24.846565 ], [ 91.757812, 24.846565 ], [ 91.757812, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 26.115986 ], [ 88.242188, 26.115986 ], [ 88.242188, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.683528 ], [ 88.945312, 27.683528 ], [ 88.945312, 26.745610 ], [ 92.109375, 26.745610 ], [ 92.109375, 27.371767 ], [ 91.757812, 27.371767 ], [ 91.757812, 27.683528 ], [ 92.460938, 27.683528 ], [ 92.460938, 27.994401 ], [ 92.812500, 27.994401 ], [ 92.812500, 28.304381 ], [ 93.515625, 28.304381 ], [ 93.515625, 28.613459 ], [ 93.867188, 28.613459 ], [ 93.867188, 28.921631 ], [ 95.625000, 28.921631 ], [ 95.625000, 29.228890 ], [ 96.328125, 29.228890 ] ] ], [ [ [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 25.482951 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.601562, 51.179343 ], [ 101.953125, 51.179343 ], [ 101.953125, 50.736455 ], [ 102.304688, 50.736455 ], [ 102.304688, 50.289339 ], [ 103.007812, 50.289339 ], [ 103.007812, 50.064192 ], [ 104.414062, 50.064192 ], [ 104.414062, 50.289339 ], [ 105.468750, 50.289339 ], [ 105.468750, 50.513427 ], [ 106.171875, 50.513427 ], [ 106.171875, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.064192 ], [ 107.578125, 50.064192 ], [ 107.578125, 49.837982 ], [ 107.929688, 49.837982 ], [ 107.929688, 49.610710 ], [ 108.281250, 49.610710 ], [ 108.281250, 49.382373 ], [ 109.687500, 49.382373 ], [ 109.687500, 49.152970 ], [ 111.445312, 49.152970 ], [ 111.445312, 49.382373 ], [ 112.500000, 49.382373 ], [ 112.500000, 49.610710 ], [ 113.203125, 49.610710 ], [ 113.203125, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.382373 ], [ 116.367188, 49.382373 ], [ 116.367188, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 48.690960 ], [ 115.664062, 48.690960 ], [ 115.664062, 48.224673 ], [ 115.312500, 48.224673 ], [ 115.312500, 47.989922 ], [ 115.664062, 47.989922 ], [ 115.664062, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.279229 ], [ 119.531250, 47.279229 ], [ 119.531250, 47.040182 ], [ 119.882812, 47.040182 ], [ 119.882812, 46.800059 ], [ 118.476562, 46.800059 ], [ 118.476562, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 45.828799 ], [ 116.015625, 45.828799 ], [ 116.015625, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.336702 ], [ 114.609375, 45.336702 ], [ 114.609375, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.840291 ], [ 112.851562, 44.840291 ], [ 112.851562, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.590467 ], [ 111.445312, 44.590467 ], [ 111.445312, 44.087585 ], [ 111.796875, 44.087585 ], [ 111.796875, 43.580391 ], [ 111.445312, 43.580391 ], [ 111.445312, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.068888 ], [ 110.742188, 43.068888 ], [ 110.742188, 42.811522 ], [ 110.039062, 42.811522 ], [ 110.039062, 42.553080 ], [ 107.578125, 42.553080 ], [ 107.578125, 42.293564 ], [ 106.875000, 42.293564 ], [ 106.875000, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 41.771312 ], [ 105.468750, 41.771312 ], [ 105.468750, 41.508577 ], [ 104.765625, 41.508577 ], [ 104.765625, 41.771312 ], [ 104.414062, 41.771312 ], [ 104.414062, 42.032974 ], [ 102.656250, 42.032974 ], [ 102.656250, 42.293564 ], [ 101.953125, 42.293564 ], [ 101.953125, 42.553080 ], [ 98.085938, 42.553080 ], [ 98.085938, 42.811522 ], [ 95.976562, 42.811522 ], [ 95.976562, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 43.834527 ], [ 95.273438, 43.834527 ], [ 95.273438, 44.339565 ], [ 94.218750, 44.339565 ], [ 94.218750, 44.590467 ], [ 93.867188, 44.590467 ], [ 93.867188, 44.840291 ], [ 93.515625, 44.840291 ], [ 93.515625, 45.089036 ], [ 91.406250, 45.089036 ], [ 91.406250, 45.336702 ], [ 91.054688, 45.336702 ], [ 91.054688, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 46.316584 ], [ 91.054688, 46.316584 ], [ 91.054688, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.610710 ], [ 89.648438, 49.610710 ], [ 89.648438, 49.837982 ], [ 90.351562, 49.837982 ], [ 90.351562, 50.064192 ], [ 90.703125, 50.064192 ], [ 90.703125, 50.289339 ], [ 91.406250, 50.289339 ], [ 91.406250, 50.513427 ], [ 92.109375, 50.513427 ], [ 92.109375, 50.736455 ], [ 92.460938, 50.736455 ], [ 92.460938, 50.513427 ], [ 94.218750, 50.513427 ], [ 94.218750, 50.289339 ], [ 94.570312, 50.289339 ], [ 94.570312, 50.064192 ], [ 96.328125, 50.064192 ], [ 96.328125, 49.837982 ], [ 97.734375, 49.837982 ], [ 97.734375, 50.289339 ], [ 98.085938, 50.289339 ], [ 98.085938, 50.736455 ], [ 97.734375, 50.736455 ], [ 97.734375, 50.958427 ], [ 98.085938, 50.958427 ], [ 98.085938, 51.399206 ], [ 98.437500, 51.399206 ], [ 98.437500, 51.835778 ], [ 99.492188, 51.835778 ], [ 99.492188, 51.618017 ], [ 100.898438, 51.618017 ], [ 100.898438, 51.399206 ], [ 101.601562, 51.399206 ], [ 101.601562, 51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.492188, 51.835778 ], [ 99.492188, 51.618017 ], [ 100.898438, 51.618017 ], [ 100.898438, 51.399206 ], [ 101.601562, 51.399206 ], [ 101.601562, 51.179343 ], [ 101.953125, 51.179343 ], [ 101.953125, 50.736455 ], [ 102.304688, 50.736455 ], [ 102.304688, 50.289339 ], [ 103.007812, 50.289339 ], [ 103.007812, 50.064192 ], [ 104.414062, 50.064192 ], [ 104.414062, 50.289339 ], [ 105.468750, 50.289339 ], [ 105.468750, 50.513427 ], [ 106.171875, 50.513427 ], [ 106.171875, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.064192 ], [ 107.578125, 50.064192 ], [ 107.578125, 49.837982 ], [ 107.929688, 49.837982 ], [ 107.929688, 49.610710 ], [ 108.281250, 49.610710 ], [ 108.281250, 49.382373 ], [ 109.687500, 49.382373 ], [ 109.687500, 49.152970 ], [ 111.445312, 49.152970 ], [ 111.445312, 49.382373 ], [ 112.500000, 49.382373 ], [ 112.500000, 49.610710 ], [ 113.203125, 49.610710 ], [ 113.203125, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.382373 ], [ 116.367188, 49.382373 ], [ 116.367188, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 48.690960 ], [ 115.664062, 48.690960 ], [ 115.664062, 48.224673 ], [ 115.312500, 48.224673 ], [ 115.312500, 47.989922 ], [ 115.664062, 47.989922 ], [ 115.664062, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.279229 ], [ 119.531250, 47.279229 ], [ 119.531250, 47.040182 ], [ 119.882812, 47.040182 ], [ 119.882812, 46.800059 ], [ 118.476562, 46.800059 ], [ 118.476562, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 45.828799 ], [ 116.015625, 45.828799 ], [ 116.015625, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.336702 ], [ 114.609375, 45.336702 ], [ 114.609375, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.840291 ], [ 112.851562, 44.840291 ], [ 112.851562, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.590467 ], [ 111.445312, 44.590467 ], [ 111.445312, 44.087585 ], [ 111.796875, 44.087585 ], [ 111.796875, 43.580391 ], [ 111.445312, 43.580391 ], [ 111.445312, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.068888 ], [ 110.742188, 43.068888 ], [ 110.742188, 42.811522 ], [ 110.039062, 42.811522 ], [ 110.039062, 42.553080 ], [ 107.578125, 42.553080 ], [ 107.578125, 42.293564 ], [ 106.875000, 42.293564 ], [ 106.875000, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 41.771312 ], [ 105.468750, 41.771312 ], [ 105.468750, 41.508577 ], [ 104.765625, 41.508577 ], [ 104.765625, 41.771312 ], [ 104.414062, 41.771312 ], [ 104.414062, 42.032974 ], [ 102.656250, 42.032974 ], [ 102.656250, 42.293564 ], [ 101.953125, 42.293564 ], [ 101.953125, 42.553080 ], [ 98.085938, 42.553080 ], [ 98.085938, 42.811522 ], [ 95.976562, 42.811522 ], [ 95.976562, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 43.834527 ], [ 95.273438, 43.834527 ], [ 95.273438, 44.339565 ], [ 94.218750, 44.339565 ], [ 94.218750, 44.590467 ], [ 93.867188, 44.590467 ], [ 93.867188, 44.840291 ], [ 93.515625, 44.840291 ], [ 93.515625, 45.089036 ], [ 91.406250, 45.089036 ], [ 91.406250, 45.336702 ], [ 91.054688, 45.336702 ], [ 91.054688, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 46.316584 ], [ 91.054688, 46.316584 ], [ 91.054688, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.610710 ], [ 89.648438, 49.610710 ], [ 89.648438, 49.837982 ], [ 90.351562, 49.837982 ], [ 90.351562, 50.064192 ], [ 90.703125, 50.064192 ], [ 90.703125, 50.289339 ], [ 91.406250, 50.289339 ], [ 91.406250, 50.513427 ], [ 92.109375, 50.513427 ], [ 92.109375, 50.736455 ], [ 92.460938, 50.736455 ], [ 92.460938, 50.513427 ], [ 94.218750, 50.513427 ], [ 94.218750, 50.289339 ], [ 94.570312, 50.289339 ], [ 94.570312, 50.064192 ], [ 96.328125, 50.064192 ], [ 96.328125, 49.837982 ], [ 97.734375, 49.837982 ], [ 97.734375, 50.289339 ], [ 98.085938, 50.289339 ], [ 98.085938, 50.736455 ], [ 97.734375, 50.736455 ], [ 97.734375, 50.958427 ], [ 98.085938, 50.958427 ], [ 98.085938, 51.399206 ], [ 98.437500, 51.399206 ], [ 98.437500, 51.835778 ], [ 99.492188, 51.835778 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 27.371767 ], [ 92.109375, 27.371767 ], [ 92.109375, 26.745610 ], [ 88.945312, 26.745610 ], [ 88.945312, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.994401 ], [ 91.406250, 27.994401 ], [ 91.406250, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.371767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 27.994401 ], [ 91.406250, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.371767 ], [ 92.109375, 27.371767 ], [ 92.109375, 26.745610 ], [ 88.945312, 26.745610 ], [ 88.945312, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.994401 ], [ 91.406250, 27.994401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.945312, 21.943046 ], [ 88.945312, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 24.846565 ], [ 88.945312, 24.846565 ], [ 88.945312, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 26.115986 ], [ 90.000000, 26.115986 ], [ 90.000000, 25.165173 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.846565 ], [ 92.460938, 24.846565 ], [ 92.460938, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ] ] ], [ [ [ 91.757812, 22.917923 ], [ 91.757812, 23.563987 ], [ 92.109375, 23.563987 ], [ 92.109375, 22.917923 ], [ 92.460938, 22.917923 ], [ 92.460938, 22.268764 ], [ 92.812500, 22.268764 ], [ 92.812500, 21.289374 ], [ 92.460938, 21.289374 ], [ 92.460938, 20.961440 ], [ 92.109375, 20.961440 ], [ 92.109375, 21.943046 ], [ 91.757812, 21.943046 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ], [ 91.757812, 22.917923 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.945312, 21.943046 ], [ 88.945312, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 24.846565 ], [ 88.945312, 24.846565 ], [ 88.945312, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 26.115986 ], [ 90.000000, 26.115986 ], [ 90.000000, 25.165173 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.846565 ], [ 92.460938, 24.846565 ], [ 92.460938, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 22.917923 ] ] ], [ [ [ 91.406250, 22.917923 ], [ 91.757812, 22.917923 ], [ 91.757812, 23.563987 ], [ 92.109375, 23.563987 ], [ 92.109375, 22.917923 ], [ 92.460938, 22.917923 ], [ 92.460938, 22.268764 ], [ 92.812500, 22.268764 ], [ 92.812500, 21.289374 ], [ 92.460938, 21.289374 ], [ 92.460938, 20.961440 ], [ 92.109375, 20.961440 ], [ 92.109375, 21.943046 ], [ 91.757812, 21.943046 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 111.093750, 19.311143 ], [ 110.742188, 19.311143 ], [ 110.742188, 18.979026 ], [ 110.390625, 18.979026 ], [ 110.390625, 18.646245 ], [ 110.039062, 18.646245 ], [ 110.039062, 18.312811 ], [ 108.632812, 18.312811 ], [ 108.632812, 19.642588 ], [ 108.984375, 19.642588 ], [ 108.984375, 19.973349 ], [ 110.742188, 19.973349 ], [ 110.742188, 19.642588 ], [ 111.093750, 19.642588 ], [ 111.093750, 19.311143 ] ] ], [ [ [ 105.117188, 23.241346 ], [ 105.117188, 22.917923 ], [ 104.062500, 22.917923 ], [ 104.062500, 22.593726 ], [ 102.304688, 22.593726 ], [ 102.304688, 22.268764 ], [ 101.601562, 22.268764 ], [ 101.601562, 21.616579 ], [ 101.953125, 21.616579 ], [ 101.953125, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 21.616579 ], [ 99.492188, 21.616579 ], [ 99.492188, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.492188, 22.593726 ], [ 99.492188, 22.917923 ], [ 98.789062, 22.917923 ], [ 98.789062, 24.206890 ], [ 98.437500, 24.206890 ], [ 98.437500, 23.885838 ], [ 97.734375, 23.885838 ], [ 97.734375, 25.165173 ], [ 98.085938, 25.165173 ], [ 98.085938, 25.482951 ], [ 98.789062, 25.482951 ], [ 98.789062, 27.371767 ], [ 98.085938, 27.371767 ], [ 98.085938, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 28.613459 ], [ 96.679688, 28.613459 ], [ 96.679688, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 29.228890 ], [ 95.625000, 29.228890 ], [ 95.625000, 28.921631 ], [ 93.867188, 28.921631 ], [ 93.867188, 28.613459 ], [ 93.515625, 28.613459 ], [ 93.515625, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 27.994401 ], [ 92.460938, 27.994401 ], [ 92.460938, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 27.994401 ], [ 88.242188, 27.994401 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.351562, 47.754098 ], [ 90.351562, 47.517201 ], [ 90.703125, 47.517201 ], [ 90.703125, 47.040182 ], [ 91.054688, 47.040182 ], [ 91.054688, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.583290 ], [ 91.054688, 45.583290 ], [ 91.054688, 45.336702 ], [ 91.406250, 45.336702 ], [ 91.406250, 45.089036 ], [ 93.515625, 45.089036 ], [ 93.515625, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.590467 ], [ 94.218750, 44.590467 ], [ 94.218750, 44.339565 ], [ 95.273438, 44.339565 ], [ 95.273438, 43.834527 ], [ 95.625000, 43.834527 ], [ 95.625000, 43.068888 ], [ 95.976562, 43.068888 ], [ 95.976562, 42.811522 ], [ 98.085938, 42.811522 ], [ 98.085938, 42.553080 ], [ 101.953125, 42.553080 ], [ 101.953125, 42.293564 ], [ 102.656250, 42.293564 ], [ 102.656250, 42.032974 ], [ 104.414062, 42.032974 ], [ 104.414062, 41.771312 ], [ 104.765625, 41.771312 ], [ 104.765625, 41.508577 ], [ 105.468750, 41.508577 ], [ 105.468750, 41.771312 ], [ 106.171875, 41.771312 ], [ 106.171875, 42.032974 ], [ 106.875000, 42.032974 ], [ 106.875000, 42.293564 ], [ 107.578125, 42.293564 ], [ 107.578125, 42.553080 ], [ 110.039062, 42.553080 ], [ 110.039062, 42.811522 ], [ 110.742188, 42.811522 ], [ 110.742188, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.325178 ], [ 111.445312, 43.325178 ], [ 111.445312, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.445312, 44.087585 ], [ 111.445312, 44.590467 ], [ 111.796875, 44.590467 ], [ 111.796875, 45.089036 ], [ 112.851562, 45.089036 ], [ 112.851562, 44.840291 ], [ 113.203125, 44.840291 ], [ 113.203125, 21.943046 ], [ 112.851562, 21.943046 ], [ 112.851562, 21.616579 ], [ 111.445312, 21.616579 ], [ 111.445312, 21.289374 ], [ 110.742188, 21.289374 ], [ 110.742188, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 20.303418 ], [ 110.039062, 20.303418 ], [ 110.039062, 20.632784 ], [ 109.687500, 20.632784 ], [ 109.687500, 20.961440 ], [ 110.039062, 20.961440 ], [ 110.039062, 21.289374 ], [ 108.984375, 21.289374 ], [ 108.984375, 21.616579 ], [ 107.226562, 21.616579 ], [ 107.226562, 21.943046 ], [ 106.523438, 21.943046 ], [ 106.523438, 22.593726 ], [ 106.875000, 22.593726 ], [ 106.875000, 22.917923 ], [ 105.468750, 22.917923 ], [ 105.468750, 23.241346 ], [ 105.117188, 23.241346 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 19.973349 ], [ 110.742188, 19.642588 ], [ 111.093750, 19.642588 ], [ 111.093750, 19.311143 ], [ 110.742188, 19.311143 ], [ 110.742188, 18.979026 ], [ 110.390625, 18.979026 ], [ 110.390625, 18.646245 ], [ 110.039062, 18.646245 ], [ 110.039062, 18.312811 ], [ 108.632812, 18.312811 ], [ 108.632812, 19.642588 ], [ 108.984375, 19.642588 ], [ 108.984375, 19.973349 ], [ 110.742188, 19.973349 ] ] ], [ [ [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.351562, 47.754098 ], [ 90.351562, 47.517201 ], [ 90.703125, 47.517201 ], [ 90.703125, 47.040182 ], [ 91.054688, 47.040182 ], [ 91.054688, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.583290 ], [ 91.054688, 45.583290 ], [ 91.054688, 45.336702 ], [ 91.406250, 45.336702 ], [ 91.406250, 45.089036 ], [ 93.515625, 45.089036 ], [ 93.515625, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.590467 ], [ 94.218750, 44.590467 ], [ 94.218750, 44.339565 ], [ 95.273438, 44.339565 ], [ 95.273438, 43.834527 ], [ 95.625000, 43.834527 ], [ 95.625000, 43.068888 ], [ 95.976562, 43.068888 ], [ 95.976562, 42.811522 ], [ 98.085938, 42.811522 ], [ 98.085938, 42.553080 ], [ 101.953125, 42.553080 ], [ 101.953125, 42.293564 ], [ 102.656250, 42.293564 ], [ 102.656250, 42.032974 ], [ 104.414062, 42.032974 ], [ 104.414062, 41.771312 ], [ 104.765625, 41.771312 ], [ 104.765625, 41.508577 ], [ 105.468750, 41.508577 ], [ 105.468750, 41.771312 ], [ 106.171875, 41.771312 ], [ 106.171875, 42.032974 ], [ 106.875000, 42.032974 ], [ 106.875000, 42.293564 ], [ 107.578125, 42.293564 ], [ 107.578125, 42.553080 ], [ 110.039062, 42.553080 ], [ 110.039062, 42.811522 ], [ 110.742188, 42.811522 ], [ 110.742188, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.325178 ], [ 111.445312, 43.325178 ], [ 111.445312, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.445312, 44.087585 ], [ 111.445312, 44.590467 ], [ 111.796875, 44.590467 ], [ 111.796875, 45.089036 ], [ 112.851562, 45.089036 ], [ 112.851562, 44.840291 ], [ 113.203125, 44.840291 ], [ 113.203125, 21.943046 ], [ 112.851562, 21.943046 ], [ 112.851562, 21.616579 ], [ 111.445312, 21.616579 ], [ 111.445312, 21.289374 ], [ 110.742188, 21.289374 ], [ 110.742188, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 20.303418 ], [ 110.039062, 20.303418 ], [ 110.039062, 20.632784 ], [ 109.687500, 20.632784 ], [ 109.687500, 20.961440 ], [ 110.039062, 20.961440 ], [ 110.039062, 21.289374 ], [ 108.984375, 21.289374 ], [ 108.984375, 21.616579 ], [ 107.226562, 21.616579 ], [ 107.226562, 21.943046 ], [ 106.523438, 21.943046 ], [ 106.523438, 22.593726 ], [ 106.875000, 22.593726 ], [ 106.875000, 22.917923 ], [ 105.468750, 22.917923 ], [ 105.468750, 23.241346 ], [ 105.117188, 23.241346 ], [ 105.117188, 22.917923 ], [ 104.062500, 22.917923 ], [ 104.062500, 22.593726 ], [ 102.304688, 22.593726 ], [ 102.304688, 22.268764 ], [ 101.601562, 22.268764 ], [ 101.601562, 21.616579 ], [ 101.953125, 21.616579 ], [ 101.953125, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 21.616579 ], [ 99.492188, 21.616579 ], [ 99.492188, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.492188, 22.593726 ], [ 99.492188, 22.917923 ], [ 98.789062, 22.917923 ], [ 98.789062, 24.206890 ], [ 98.437500, 24.206890 ], [ 98.437500, 23.885838 ], [ 97.734375, 23.885838 ], [ 97.734375, 25.165173 ], [ 98.085938, 25.165173 ], [ 98.085938, 25.482951 ], [ 98.789062, 25.482951 ], [ 98.789062, 27.371767 ], [ 98.085938, 27.371767 ], [ 98.085938, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 28.613459 ], [ 96.679688, 28.613459 ], [ 96.679688, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 29.228890 ], [ 95.625000, 29.228890 ], [ 95.625000, 28.921631 ], [ 93.867188, 28.921631 ], [ 93.867188, 28.613459 ], [ 93.515625, 28.613459 ], [ 93.515625, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 27.994401 ], [ 92.460938, 27.994401 ], [ 92.460938, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 27.994401 ], [ 88.242188, 27.994401 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.640625, 39.368279 ], [ 121.289062, 39.368279 ], [ 121.289062, 39.639538 ], [ 121.640625, 39.639538 ], [ 121.640625, 39.909736 ], [ 121.992188, 39.909736 ], [ 121.992188, 40.178873 ], [ 122.343750, 40.178873 ], [ 122.343750, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.446947 ], [ 120.585938, 40.446947 ], [ 120.585938, 40.178873 ], [ 119.882812, 40.178873 ], [ 119.882812, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.639538 ], [ 119.179688, 39.639538 ], [ 119.179688, 39.368279 ], [ 118.828125, 39.368279 ], [ 118.828125, 39.095963 ], [ 118.125000, 39.095963 ], [ 118.125000, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.548165 ], [ 117.773438, 38.548165 ], [ 117.773438, 37.996163 ], [ 118.828125, 37.996163 ], [ 118.828125, 37.160317 ], [ 119.882812, 37.160317 ], [ 119.882812, 37.439974 ], [ 120.585938, 37.439974 ], [ 120.585938, 37.718590 ], [ 121.289062, 37.718590 ], [ 121.289062, 37.439974 ], [ 122.343750, 37.439974 ], [ 122.343750, 37.160317 ], [ 122.695312, 37.160317 ], [ 122.695312, 36.879621 ], [ 121.992188, 36.879621 ], [ 121.992188, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 36.315125 ], [ 120.585938, 36.315125 ], [ 120.585938, 36.031332 ], [ 120.234375, 36.031332 ], [ 120.234375, 35.746512 ], [ 119.531250, 35.746512 ], [ 119.531250, 35.173808 ], [ 119.179688, 35.173808 ], [ 119.179688, 34.597042 ], [ 119.882812, 34.597042 ], [ 119.882812, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.585938, 33.724340 ], [ 120.585938, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 32.546813 ], [ 121.289062, 32.546813 ], [ 121.289062, 32.249974 ], [ 121.640625, 32.249974 ], [ 121.640625, 31.653381 ], [ 121.992188, 31.653381 ], [ 121.992188, 30.751278 ], [ 121.289062, 30.751278 ], [ 121.289062, 30.448674 ], [ 121.640625, 30.448674 ], [ 121.640625, 29.840644 ], [ 121.992188, 29.840644 ], [ 121.992188, 28.613459 ], [ 121.640625, 28.613459 ], [ 121.640625, 27.994401 ], [ 121.289062, 27.994401 ], [ 121.289062, 27.683528 ], [ 120.937500, 27.683528 ], [ 120.937500, 27.371767 ], [ 120.585938, 27.371767 ], [ 120.585938, 27.059126 ], [ 120.234375, 27.059126 ], [ 120.234375, 26.745610 ], [ 119.882812, 26.745610 ], [ 119.882812, 26.115986 ], [ 119.531250, 26.115986 ], [ 119.531250, 25.482951 ], [ 119.179688, 25.482951 ], [ 119.179688, 24.846565 ], [ 118.828125, 24.846565 ], [ 118.828125, 24.206890 ], [ 118.476562, 24.206890 ], [ 118.476562, 23.885838 ], [ 117.773438, 23.885838 ], [ 117.773438, 23.563987 ], [ 117.421875, 23.563987 ], [ 117.421875, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 22.917923 ], [ 115.664062, 22.917923 ], [ 115.664062, 22.593726 ], [ 114.609375, 22.593726 ], [ 114.609375, 22.268764 ], [ 113.554688, 22.268764 ], [ 113.554688, 21.943046 ], [ 113.203125, 21.943046 ], [ 113.203125, 44.840291 ], [ 113.906250, 44.840291 ], [ 113.906250, 45.089036 ], [ 114.609375, 45.089036 ], [ 114.609375, 45.336702 ], [ 115.312500, 45.336702 ], [ 115.312500, 45.583290 ], [ 116.015625, 45.583290 ], [ 116.015625, 45.828799 ], [ 116.367188, 45.828799 ], [ 116.367188, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.316584 ], [ 117.421875, 46.316584 ], [ 117.421875, 46.558860 ], [ 118.476562, 46.558860 ], [ 118.476562, 46.800059 ], [ 119.882812, 46.800059 ], [ 119.882812, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.279229 ], [ 119.179688, 47.279229 ], [ 119.179688, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.989922 ], [ 115.312500, 47.989922 ], [ 115.312500, 48.224673 ], [ 115.664062, 48.224673 ], [ 115.664062, 48.690960 ], [ 116.015625, 48.690960 ], [ 116.015625, 48.922499 ], [ 116.367188, 48.922499 ], [ 116.367188, 49.382373 ], [ 116.718750, 49.382373 ], [ 116.718750, 49.837982 ], [ 117.070312, 49.837982 ], [ 117.070312, 49.610710 ], [ 118.476562, 49.610710 ], [ 118.476562, 49.837982 ], [ 119.179688, 49.837982 ], [ 119.179688, 50.513427 ], [ 119.531250, 50.513427 ], [ 119.531250, 50.958427 ], [ 119.882812, 50.958427 ], [ 119.882812, 51.399206 ], [ 120.234375, 51.399206 ], [ 120.234375, 51.835778 ], [ 120.585938, 51.835778 ], [ 120.585938, 52.482780 ], [ 120.234375, 52.482780 ], [ 120.234375, 52.696361 ], [ 120.585938, 52.696361 ], [ 120.585938, 53.120405 ], [ 120.937500, 53.120405 ], [ 120.937500, 53.330873 ], [ 123.046875, 53.330873 ], [ 123.046875, 53.540307 ], [ 123.750000, 53.540307 ], [ 123.750000, 53.330873 ], [ 124.453125, 53.330873 ], [ 124.453125, 53.120405 ], [ 125.156250, 53.120405 ], [ 125.156250, 52.908902 ], [ 125.507812, 52.908902 ], [ 125.507812, 52.696361 ], [ 125.859375, 52.696361 ], [ 125.859375, 52.482780 ], [ 126.210938, 52.482780 ], [ 126.210938, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.618017 ], [ 126.914062, 51.618017 ], [ 126.914062, 50.958427 ], [ 127.265625, 50.958427 ], [ 127.265625, 50.289339 ], [ 127.617188, 50.289339 ], [ 127.617188, 49.837982 ], [ 127.968750, 49.837982 ], [ 127.968750, 49.610710 ], [ 128.671875, 49.610710 ], [ 128.671875, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 48.690960 ], [ 130.429688, 48.690960 ], [ 130.429688, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 131.132812, 47.989922 ], [ 131.132812, 47.754098 ], [ 132.890625, 47.754098 ], [ 132.890625, 47.989922 ], [ 133.242188, 47.989922 ], [ 133.242188, 48.224673 ], [ 134.296875, 48.224673 ], [ 134.296875, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.279229 ], [ 133.945312, 47.279229 ], [ 133.945312, 45.828799 ], [ 133.593750, 45.828799 ], [ 133.593750, 45.336702 ], [ 133.242188, 45.336702 ], [ 133.242188, 45.089036 ], [ 132.187500, 45.089036 ], [ 132.187500, 45.336702 ], [ 131.835938, 45.336702 ], [ 131.835938, 45.089036 ], [ 131.132812, 45.089036 ], [ 131.132812, 42.811522 ], [ 130.781250, 42.811522 ], [ 130.781250, 42.293564 ], [ 130.429688, 42.293564 ], [ 130.429688, 42.811522 ], [ 129.726562, 42.811522 ], [ 129.726562, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.293564 ], [ 128.671875, 42.293564 ], [ 128.671875, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.771312 ], [ 128.320312, 41.771312 ], [ 128.320312, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 40.713956 ], [ 125.507812, 40.713956 ], [ 125.507812, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.178873 ], [ 124.453125, 40.178873 ], [ 124.453125, 39.909736 ], [ 123.750000, 39.909736 ], [ 123.750000, 39.639538 ], [ 122.695312, 39.639538 ], [ 122.695312, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 39.095963 ], [ 121.640625, 39.095963 ], [ 121.640625, 39.368279 ] ] ], [ [ [ 121.640625, 38.822591 ], [ 121.289062, 38.822591 ], [ 121.289062, 39.095963 ], [ 121.640625, 39.095963 ], [ 121.640625, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.750000, 53.540307 ], [ 123.750000, 53.330873 ], [ 124.453125, 53.330873 ], [ 124.453125, 53.120405 ], [ 125.156250, 53.120405 ], [ 125.156250, 52.908902 ], [ 125.507812, 52.908902 ], [ 125.507812, 52.696361 ], [ 125.859375, 52.696361 ], [ 125.859375, 52.482780 ], [ 126.210938, 52.482780 ], [ 126.210938, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.618017 ], [ 126.914062, 51.618017 ], [ 126.914062, 50.958427 ], [ 127.265625, 50.958427 ], [ 127.265625, 50.289339 ], [ 127.617188, 50.289339 ], [ 127.617188, 49.837982 ], [ 127.968750, 49.837982 ], [ 127.968750, 49.610710 ], [ 128.671875, 49.610710 ], [ 128.671875, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 48.690960 ], [ 130.429688, 48.690960 ], [ 130.429688, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 131.132812, 47.989922 ], [ 131.132812, 47.754098 ], [ 132.890625, 47.754098 ], [ 132.890625, 47.989922 ], [ 133.242188, 47.989922 ], [ 133.242188, 48.224673 ], [ 134.296875, 48.224673 ], [ 134.296875, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.279229 ], [ 133.945312, 47.279229 ], [ 133.945312, 45.828799 ], [ 133.593750, 45.828799 ], [ 133.593750, 45.336702 ], [ 133.242188, 45.336702 ], [ 133.242188, 45.089036 ], [ 132.187500, 45.089036 ], [ 132.187500, 45.336702 ], [ 131.835938, 45.336702 ], [ 131.835938, 45.089036 ], [ 131.132812, 45.089036 ], [ 131.132812, 42.811522 ], [ 130.781250, 42.811522 ], [ 130.781250, 42.293564 ], [ 130.429688, 42.293564 ], [ 130.429688, 42.811522 ], [ 129.726562, 42.811522 ], [ 129.726562, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.293564 ], [ 128.671875, 42.293564 ], [ 128.671875, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.771312 ], [ 128.320312, 41.771312 ], [ 128.320312, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 40.713956 ], [ 125.507812, 40.713956 ], [ 125.507812, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.178873 ], [ 124.453125, 40.178873 ], [ 124.453125, 39.909736 ], [ 123.750000, 39.909736 ], [ 123.750000, 39.639538 ], [ 122.695312, 39.639538 ], [ 122.695312, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 39.095963 ], [ 121.640625, 39.095963 ], [ 121.640625, 39.368279 ], [ 121.289062, 39.368279 ], [ 121.289062, 39.639538 ], [ 121.640625, 39.639538 ], [ 121.640625, 39.909736 ], [ 121.992188, 39.909736 ], [ 121.992188, 40.178873 ], [ 122.343750, 40.178873 ], [ 122.343750, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.446947 ], [ 120.585938, 40.446947 ], [ 120.585938, 40.178873 ], [ 119.882812, 40.178873 ], [ 119.882812, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.639538 ], [ 119.179688, 39.639538 ], [ 119.179688, 39.368279 ], [ 118.828125, 39.368279 ], [ 118.828125, 39.095963 ], [ 118.125000, 39.095963 ], [ 118.125000, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.548165 ], [ 117.773438, 38.548165 ], [ 117.773438, 37.996163 ], [ 118.828125, 37.996163 ], [ 118.828125, 37.160317 ], [ 119.882812, 37.160317 ], [ 119.882812, 37.439974 ], [ 120.585938, 37.439974 ], [ 120.585938, 37.718590 ], [ 121.289062, 37.718590 ], [ 121.289062, 37.439974 ], [ 122.343750, 37.439974 ], [ 122.343750, 37.160317 ], [ 122.695312, 37.160317 ], [ 122.695312, 36.879621 ], [ 121.992188, 36.879621 ], [ 121.992188, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 36.315125 ], [ 120.585938, 36.315125 ], [ 120.585938, 36.031332 ], [ 120.234375, 36.031332 ], [ 120.234375, 35.746512 ], [ 119.531250, 35.746512 ], [ 119.531250, 35.173808 ], [ 119.179688, 35.173808 ], [ 119.179688, 34.597042 ], [ 119.882812, 34.597042 ], [ 119.882812, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.585938, 33.724340 ], [ 120.585938, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 32.546813 ], [ 121.289062, 32.546813 ], [ 121.289062, 32.249974 ], [ 121.640625, 32.249974 ], [ 121.640625, 31.653381 ], [ 121.992188, 31.653381 ], [ 121.992188, 30.751278 ], [ 121.289062, 30.751278 ], [ 121.289062, 30.448674 ], [ 121.640625, 30.448674 ], [ 121.640625, 29.840644 ], [ 121.992188, 29.840644 ], [ 121.992188, 28.613459 ], [ 121.640625, 28.613459 ], [ 121.640625, 27.994401 ], [ 121.289062, 27.994401 ], [ 121.289062, 27.683528 ], [ 120.937500, 27.683528 ], [ 120.937500, 27.371767 ], [ 120.585938, 27.371767 ], [ 120.585938, 27.059126 ], [ 120.234375, 27.059126 ], [ 120.234375, 26.745610 ], [ 119.882812, 26.745610 ], [ 119.882812, 26.115986 ], [ 119.531250, 26.115986 ], [ 119.531250, 25.482951 ], [ 119.179688, 25.482951 ], [ 119.179688, 24.846565 ], [ 118.828125, 24.846565 ], [ 118.828125, 24.206890 ], [ 118.476562, 24.206890 ], [ 118.476562, 23.885838 ], [ 117.773438, 23.885838 ], [ 117.773438, 23.563987 ], [ 117.421875, 23.563987 ], [ 117.421875, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 22.917923 ], [ 115.664062, 22.917923 ], [ 115.664062, 22.593726 ], [ 114.609375, 22.593726 ], [ 114.609375, 22.268764 ], [ 113.554688, 22.268764 ], [ 113.554688, 21.943046 ], [ 113.203125, 21.943046 ], [ 113.203125, 44.840291 ], [ 113.906250, 44.840291 ], [ 113.906250, 45.089036 ], [ 114.609375, 45.089036 ], [ 114.609375, 45.336702 ], [ 115.312500, 45.336702 ], [ 115.312500, 45.583290 ], [ 116.015625, 45.583290 ], [ 116.015625, 45.828799 ], [ 116.367188, 45.828799 ], [ 116.367188, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.316584 ], [ 117.421875, 46.316584 ], [ 117.421875, 46.558860 ], [ 118.476562, 46.558860 ], [ 118.476562, 46.800059 ], [ 119.882812, 46.800059 ], [ 119.882812, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.279229 ], [ 119.179688, 47.279229 ], [ 119.179688, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.989922 ], [ 115.312500, 47.989922 ], [ 115.312500, 48.224673 ], [ 115.664062, 48.224673 ], [ 115.664062, 48.690960 ], [ 116.015625, 48.690960 ], [ 116.015625, 48.922499 ], [ 116.367188, 48.922499 ], [ 116.367188, 49.382373 ], [ 116.718750, 49.382373 ], [ 116.718750, 49.837982 ], [ 117.070312, 49.837982 ], [ 117.070312, 49.610710 ], [ 118.476562, 49.610710 ], [ 118.476562, 49.837982 ], [ 119.179688, 49.837982 ], [ 119.179688, 50.513427 ], [ 119.531250, 50.513427 ], [ 119.531250, 50.958427 ], [ 119.882812, 50.958427 ], [ 119.882812, 51.399206 ], [ 120.234375, 51.399206 ], [ 120.234375, 51.835778 ], [ 120.585938, 51.835778 ], [ 120.585938, 52.482780 ], [ 120.234375, 52.482780 ], [ 120.234375, 52.696361 ], [ 120.585938, 52.696361 ], [ 120.585938, 53.120405 ], [ 120.937500, 53.120405 ], [ 120.937500, 53.330873 ], [ 123.046875, 53.330873 ], [ 123.046875, 53.540307 ], [ 123.750000, 53.540307 ] ] ], [ [ [ 121.640625, 39.095963 ], [ 121.640625, 38.822591 ], [ 121.289062, 38.822591 ], [ 121.289062, 39.095963 ], [ 121.640625, 39.095963 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.492188, 21.616579 ], [ 101.250000, 21.616579 ], [ 101.250000, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.303418 ], [ 99.492188, 20.303418 ], [ 99.492188, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 19.642588 ], [ 98.085938, 19.642588 ], [ 98.085938, 18.979026 ], [ 97.734375, 18.979026 ], [ 97.734375, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.308688 ], [ 98.085938, 17.308688 ], [ 98.085938, 16.972741 ], [ 98.437500, 16.972741 ], [ 98.437500, 16.636192 ], [ 98.789062, 16.636192 ], [ 98.789062, 15.623037 ], [ 98.437500, 15.623037 ], [ 98.437500, 15.284185 ], [ 98.085938, 15.284185 ], [ 98.085938, 14.944785 ], [ 98.437500, 14.944785 ], [ 98.437500, 14.264383 ], [ 98.789062, 14.264383 ], [ 98.789062, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.789062, 10.487812 ], [ 98.789062, 9.795678 ], [ 98.437500, 9.795678 ], [ 98.437500, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 11.523088 ], [ 98.437500, 11.523088 ], [ 98.437500, 13.239945 ], [ 98.085938, 13.239945 ], [ 98.085938, 14.264383 ], [ 97.734375, 14.264383 ], [ 97.734375, 15.961329 ], [ 97.382812, 15.961329 ], [ 97.382812, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 15.961329 ], [ 95.976562, 15.961329 ], [ 95.976562, 15.623037 ], [ 94.921875, 15.623037 ], [ 94.921875, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.636192 ], [ 94.570312, 16.636192 ], [ 94.570312, 17.644022 ], [ 94.218750, 17.644022 ], [ 94.218750, 18.312811 ], [ 93.867188, 18.312811 ], [ 93.867188, 18.979026 ], [ 93.515625, 18.979026 ], [ 93.515625, 19.642588 ], [ 93.164062, 19.642588 ], [ 93.164062, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.303418 ], [ 92.460938, 20.303418 ], [ 92.460938, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.164062, 21.943046 ], [ 93.164062, 24.206890 ], [ 93.515625, 24.206890 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.206890 ], [ 94.570312, 24.206890 ], [ 94.570312, 25.165173 ], [ 94.921875, 25.165173 ], [ 94.921875, 25.799891 ], [ 95.273438, 25.799891 ], [ 95.273438, 26.431228 ], [ 95.625000, 26.431228 ], [ 95.625000, 26.745610 ], [ 95.976562, 26.745610 ], [ 95.976562, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.683528 ], [ 97.382812, 28.304381 ], [ 98.085938, 28.304381 ], [ 98.085938, 27.371767 ], [ 98.789062, 27.371767 ], [ 98.789062, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 24.206890 ], [ 98.789062, 24.206890 ], [ 98.789062, 22.917923 ], [ 99.492188, 22.917923 ], [ 99.492188, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.492188, 21.943046 ], [ 99.492188, 21.616579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.085938, 28.304381 ], [ 98.085938, 27.371767 ], [ 98.789062, 27.371767 ], [ 98.789062, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 24.206890 ], [ 98.789062, 24.206890 ], [ 98.789062, 22.917923 ], [ 99.492188, 22.917923 ], [ 99.492188, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.492188, 21.943046 ], [ 99.492188, 21.616579 ], [ 101.250000, 21.616579 ], [ 101.250000, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.303418 ], [ 99.492188, 20.303418 ], [ 99.492188, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 19.642588 ], [ 98.085938, 19.642588 ], [ 98.085938, 18.979026 ], [ 97.734375, 18.979026 ], [ 97.734375, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.308688 ], [ 98.085938, 17.308688 ], [ 98.085938, 16.972741 ], [ 98.437500, 16.972741 ], [ 98.437500, 16.636192 ], [ 98.789062, 16.636192 ], [ 98.789062, 15.623037 ], [ 98.437500, 15.623037 ], [ 98.437500, 15.284185 ], [ 98.085938, 15.284185 ], [ 98.085938, 14.944785 ], [ 98.437500, 14.944785 ], [ 98.437500, 14.264383 ], [ 98.789062, 14.264383 ], [ 98.789062, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.789062, 10.487812 ], [ 98.789062, 9.795678 ], [ 98.437500, 9.795678 ], [ 98.437500, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 11.523088 ], [ 98.437500, 11.523088 ], [ 98.437500, 13.239945 ], [ 98.085938, 13.239945 ], [ 98.085938, 14.264383 ], [ 97.734375, 14.264383 ], [ 97.734375, 15.961329 ], [ 97.382812, 15.961329 ], [ 97.382812, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 15.961329 ], [ 95.976562, 15.961329 ], [ 95.976562, 15.623037 ], [ 94.921875, 15.623037 ], [ 94.921875, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.636192 ], [ 94.570312, 16.636192 ], [ 94.570312, 17.644022 ], [ 94.218750, 17.644022 ], [ 94.218750, 18.312811 ], [ 93.867188, 18.312811 ], [ 93.867188, 18.979026 ], [ 93.515625, 18.979026 ], [ 93.515625, 19.642588 ], [ 93.164062, 19.642588 ], [ 93.164062, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.303418 ], [ 92.460938, 20.303418 ], [ 92.460938, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.164062, 21.943046 ], [ 93.164062, 24.206890 ], [ 93.515625, 24.206890 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.206890 ], [ 94.570312, 24.206890 ], [ 94.570312, 25.165173 ], [ 94.921875, 25.165173 ], [ 94.921875, 25.799891 ], [ 95.273438, 25.799891 ], [ 95.273438, 26.431228 ], [ 95.625000, 26.431228 ], [ 95.625000, 26.745610 ], [ 95.976562, 26.745610 ], [ 95.976562, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.683528 ], [ 97.382812, 28.304381 ], [ 98.085938, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.007812, 20.632784 ], [ 104.414062, 20.632784 ], [ 104.414062, 20.303418 ], [ 104.765625, 20.303418 ], [ 104.765625, 19.642588 ], [ 104.062500, 19.642588 ], [ 104.062500, 18.979026 ], [ 104.765625, 18.979026 ], [ 104.765625, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.312811 ], [ 105.468750, 18.312811 ], [ 105.468750, 17.644022 ], [ 105.820312, 17.644022 ], [ 105.820312, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.623037 ], [ 107.578125, 15.623037 ], [ 107.578125, 14.604847 ], [ 107.226562, 14.604847 ], [ 107.226562, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.623037 ], [ 105.117188, 15.623037 ], [ 105.117188, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.414062, 17.308688 ], [ 104.414062, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.312811 ], [ 103.359375, 18.312811 ], [ 103.359375, 17.978733 ], [ 101.601562, 17.978733 ], [ 101.601562, 17.644022 ], [ 100.898438, 17.644022 ], [ 100.898438, 18.646245 ], [ 101.250000, 18.646245 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 100.195312, 19.973349 ], [ 100.195312, 20.632784 ], [ 100.546875, 20.632784 ], [ 100.546875, 20.961440 ], [ 101.250000, 20.961440 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.616579 ], [ 101.601562, 21.616579 ], [ 101.601562, 22.268764 ], [ 102.304688, 22.268764 ], [ 102.304688, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.304688, 22.268764 ], [ 102.304688, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.632784 ], [ 104.414062, 20.632784 ], [ 104.414062, 20.303418 ], [ 104.765625, 20.303418 ], [ 104.765625, 19.642588 ], [ 104.062500, 19.642588 ], [ 104.062500, 18.979026 ], [ 104.765625, 18.979026 ], [ 104.765625, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.312811 ], [ 105.468750, 18.312811 ], [ 105.468750, 17.644022 ], [ 105.820312, 17.644022 ], [ 105.820312, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.623037 ], [ 107.578125, 15.623037 ], [ 107.578125, 14.604847 ], [ 107.226562, 14.604847 ], [ 107.226562, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.623037 ], [ 105.117188, 15.623037 ], [ 105.117188, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.414062, 17.308688 ], [ 104.414062, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.312811 ], [ 103.359375, 18.312811 ], [ 103.359375, 17.978733 ], [ 101.601562, 17.978733 ], [ 101.601562, 17.644022 ], [ 100.898438, 17.644022 ], [ 100.898438, 18.646245 ], [ 101.250000, 18.646245 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 100.195312, 19.973349 ], [ 100.195312, 20.632784 ], [ 100.546875, 20.632784 ], [ 100.546875, 20.961440 ], [ 101.250000, 20.961440 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.616579 ], [ 101.601562, 21.616579 ], [ 101.601562, 22.268764 ], [ 102.304688, 22.268764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 18.646245 ], [ 100.898438, 18.646245 ], [ 100.898438, 17.644022 ], [ 101.601562, 17.644022 ], [ 101.601562, 17.978733 ], [ 103.359375, 17.978733 ], [ 103.359375, 18.312811 ], [ 104.062500, 18.312811 ], [ 104.062500, 17.978733 ], [ 104.414062, 17.978733 ], [ 104.414062, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.117188, 15.961329 ], [ 105.117188, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 14.264383 ], [ 103.007812, 14.264383 ], [ 103.007812, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 13.239945 ], [ 102.304688, 13.239945 ], [ 102.304688, 12.554564 ], [ 102.656250, 12.554564 ], [ 102.656250, 12.211180 ], [ 101.953125, 12.211180 ], [ 101.953125, 12.554564 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.239945 ], [ 100.195312, 13.239945 ], [ 100.195312, 12.554564 ], [ 99.843750, 12.554564 ], [ 99.843750, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 12.211180 ], [ 99.140625, 12.211180 ], [ 99.140625, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.264383 ], [ 98.437500, 14.264383 ], [ 98.437500, 14.944785 ], [ 98.085938, 14.944785 ], [ 98.085938, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 15.623037 ], [ 98.789062, 15.623037 ], [ 98.789062, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.972741 ], [ 98.085938, 16.972741 ], [ 98.085938, 17.308688 ], [ 97.734375, 17.308688 ], [ 97.734375, 17.978733 ], [ 97.382812, 17.978733 ], [ 97.382812, 18.312811 ], [ 97.734375, 18.312811 ], [ 97.734375, 18.979026 ], [ 98.085938, 18.979026 ], [ 98.085938, 19.642588 ], [ 99.140625, 19.642588 ], [ 99.140625, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.303418 ], [ 100.195312, 20.303418 ], [ 100.195312, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 19.311143 ] ] ], [ [ [ 99.140625, 10.141932 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 99.843750, 8.754795 ], [ 100.195312, 8.754795 ], [ 100.195312, 7.710992 ], [ 100.546875, 7.710992 ], [ 100.546875, 7.013668 ], [ 100.898438, 7.013668 ], [ 100.898438, 6.664608 ], [ 101.601562, 6.664608 ], [ 101.601562, 6.315299 ], [ 102.304688, 6.315299 ], [ 102.304688, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 5.615986 ], [ 101.250000, 5.615986 ], [ 101.250000, 6.315299 ], [ 100.546875, 6.315299 ], [ 100.546875, 6.664608 ], [ 99.843750, 6.664608 ], [ 99.843750, 7.013668 ], [ 99.492188, 7.013668 ], [ 99.492188, 7.710992 ], [ 99.140625, 7.710992 ], [ 99.140625, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 9.449062 ], [ 98.437500, 9.449062 ], [ 98.437500, 9.795678 ], [ 98.789062, 9.795678 ], [ 98.789062, 10.487812 ], [ 99.140625, 10.487812 ], [ 99.140625, 11.178402 ], [ 99.492188, 11.178402 ], [ 99.492188, 10.141932 ], [ 99.140625, 10.141932 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.492188, 11.178402 ], [ 99.492188, 10.141932 ], [ 99.140625, 10.141932 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 99.843750, 8.754795 ], [ 100.195312, 8.754795 ], [ 100.195312, 7.710992 ], [ 100.546875, 7.710992 ], [ 100.546875, 7.013668 ], [ 100.898438, 7.013668 ], [ 100.898438, 6.664608 ], [ 101.601562, 6.664608 ], [ 101.601562, 6.315299 ], [ 102.304688, 6.315299 ], [ 102.304688, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 5.615986 ], [ 101.250000, 5.615986 ], [ 101.250000, 6.315299 ], [ 100.546875, 6.315299 ], [ 100.546875, 6.664608 ], [ 99.843750, 6.664608 ], [ 99.843750, 7.013668 ], [ 99.492188, 7.013668 ], [ 99.492188, 7.710992 ], [ 99.140625, 7.710992 ], [ 99.140625, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 9.449062 ], [ 98.437500, 9.449062 ], [ 98.437500, 9.795678 ], [ 98.789062, 9.795678 ], [ 98.789062, 10.487812 ], [ 99.140625, 10.487812 ], [ 99.140625, 11.178402 ], [ 99.492188, 11.178402 ] ] ], [ [ [ 100.195312, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 18.646245 ], [ 100.898438, 18.646245 ], [ 100.898438, 17.644022 ], [ 101.601562, 17.644022 ], [ 101.601562, 17.978733 ], [ 103.359375, 17.978733 ], [ 103.359375, 18.312811 ], [ 104.062500, 18.312811 ], [ 104.062500, 17.978733 ], [ 104.414062, 17.978733 ], [ 104.414062, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.117188, 15.961329 ], [ 105.117188, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 14.264383 ], [ 103.007812, 14.264383 ], [ 103.007812, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 13.239945 ], [ 102.304688, 13.239945 ], [ 102.304688, 12.554564 ], [ 102.656250, 12.554564 ], [ 102.656250, 12.211180 ], [ 101.953125, 12.211180 ], [ 101.953125, 12.554564 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.239945 ], [ 100.195312, 13.239945 ], [ 100.195312, 12.554564 ], [ 99.843750, 12.554564 ], [ 99.843750, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 12.211180 ], [ 99.140625, 12.211180 ], [ 99.140625, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.264383 ], [ 98.437500, 14.264383 ], [ 98.437500, 14.944785 ], [ 98.085938, 14.944785 ], [ 98.085938, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 15.623037 ], [ 98.789062, 15.623037 ], [ 98.789062, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.972741 ], [ 98.085938, 16.972741 ], [ 98.085938, 17.308688 ], [ 97.734375, 17.308688 ], [ 97.734375, 17.978733 ], [ 97.382812, 17.978733 ], [ 97.382812, 18.312811 ], [ 97.734375, 18.312811 ], [ 97.734375, 18.979026 ], [ 98.085938, 18.979026 ], [ 98.085938, 19.642588 ], [ 99.140625, 19.642588 ], [ 99.140625, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.303418 ], [ 100.195312, 20.303418 ], [ 100.195312, 19.973349 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875000, 22.593726 ], [ 106.523438, 22.593726 ], [ 106.523438, 21.943046 ], [ 107.226562, 21.943046 ], [ 107.226562, 21.616579 ], [ 107.929688, 21.616579 ], [ 107.929688, 21.289374 ], [ 107.578125, 21.289374 ], [ 107.578125, 20.961440 ], [ 107.226562, 20.961440 ], [ 107.226562, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 20.303418 ], [ 106.523438, 20.303418 ], [ 106.523438, 19.973349 ], [ 106.171875, 19.973349 ], [ 106.171875, 19.642588 ], [ 105.820312, 19.642588 ], [ 105.820312, 18.646245 ], [ 106.171875, 18.646245 ], [ 106.171875, 17.978733 ], [ 106.523438, 17.978733 ], [ 106.523438, 17.644022 ], [ 106.875000, 17.644022 ], [ 106.875000, 16.972741 ], [ 107.226562, 16.972741 ], [ 107.226562, 16.299051 ], [ 107.929688, 16.299051 ], [ 107.929688, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.623037 ], [ 108.632812, 15.623037 ], [ 108.632812, 15.284185 ], [ 108.984375, 15.284185 ], [ 108.984375, 14.264383 ], [ 109.335938, 14.264383 ], [ 109.335938, 11.523088 ], [ 108.984375, 11.523088 ], [ 108.984375, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.833306 ], [ 107.578125, 10.833306 ], [ 107.578125, 10.487812 ], [ 107.226562, 10.487812 ], [ 107.226562, 10.141932 ], [ 106.875000, 10.141932 ], [ 106.875000, 9.449062 ], [ 106.523438, 9.449062 ], [ 106.523438, 9.102097 ], [ 105.820312, 9.102097 ], [ 105.820312, 8.754795 ], [ 104.765625, 8.754795 ], [ 104.765625, 9.449062 ], [ 105.117188, 9.449062 ], [ 105.117188, 9.795678 ], [ 104.765625, 9.795678 ], [ 104.765625, 10.141932 ], [ 104.414062, 10.141932 ], [ 104.414062, 10.487812 ], [ 105.117188, 10.487812 ], [ 105.117188, 10.833306 ], [ 106.171875, 10.833306 ], [ 106.171875, 11.178402 ], [ 105.820312, 11.178402 ], [ 105.820312, 11.523088 ], [ 106.523438, 11.523088 ], [ 106.523438, 11.867351 ], [ 107.226562, 11.867351 ], [ 107.226562, 12.211180 ], [ 107.578125, 12.211180 ], [ 107.578125, 13.923404 ], [ 107.226562, 13.923404 ], [ 107.226562, 14.604847 ], [ 107.578125, 14.604847 ], [ 107.578125, 15.623037 ], [ 107.226562, 15.623037 ], [ 107.226562, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 16.299051 ], [ 106.523438, 16.299051 ], [ 106.523438, 16.636192 ], [ 106.171875, 16.636192 ], [ 106.171875, 17.308688 ], [ 105.820312, 17.308688 ], [ 105.820312, 17.644022 ], [ 105.468750, 17.644022 ], [ 105.468750, 18.312811 ], [ 105.117188, 18.312811 ], [ 105.117188, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 18.979026 ], [ 104.062500, 18.979026 ], [ 104.062500, 19.642588 ], [ 104.765625, 19.642588 ], [ 104.765625, 20.303418 ], [ 104.414062, 20.303418 ], [ 104.414062, 20.632784 ], [ 103.007812, 20.632784 ], [ 103.007812, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 102.304688, 21.943046 ], [ 102.304688, 22.593726 ], [ 104.062500, 22.593726 ], [ 104.062500, 22.917923 ], [ 105.117188, 22.917923 ], [ 105.117188, 23.241346 ], [ 105.468750, 23.241346 ], [ 105.468750, 22.917923 ], [ 106.875000, 22.917923 ], [ 106.875000, 22.593726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 23.241346 ], [ 105.468750, 22.917923 ], [ 106.875000, 22.917923 ], [ 106.875000, 22.593726 ], [ 106.523438, 22.593726 ], [ 106.523438, 21.943046 ], [ 107.226562, 21.943046 ], [ 107.226562, 21.616579 ], [ 107.929688, 21.616579 ], [ 107.929688, 21.289374 ], [ 107.578125, 21.289374 ], [ 107.578125, 20.961440 ], [ 107.226562, 20.961440 ], [ 107.226562, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 20.303418 ], [ 106.523438, 20.303418 ], [ 106.523438, 19.973349 ], [ 106.171875, 19.973349 ], [ 106.171875, 19.642588 ], [ 105.820312, 19.642588 ], [ 105.820312, 18.646245 ], [ 106.171875, 18.646245 ], [ 106.171875, 17.978733 ], [ 106.523438, 17.978733 ], [ 106.523438, 17.644022 ], [ 106.875000, 17.644022 ], [ 106.875000, 16.972741 ], [ 107.226562, 16.972741 ], [ 107.226562, 16.299051 ], [ 107.929688, 16.299051 ], [ 107.929688, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.623037 ], [ 108.632812, 15.623037 ], [ 108.632812, 15.284185 ], [ 108.984375, 15.284185 ], [ 108.984375, 14.264383 ], [ 109.335938, 14.264383 ], [ 109.335938, 11.523088 ], [ 108.984375, 11.523088 ], [ 108.984375, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.833306 ], [ 107.578125, 10.833306 ], [ 107.578125, 10.487812 ], [ 107.226562, 10.487812 ], [ 107.226562, 10.141932 ], [ 106.875000, 10.141932 ], [ 106.875000, 9.449062 ], [ 106.523438, 9.449062 ], [ 106.523438, 9.102097 ], [ 105.820312, 9.102097 ], [ 105.820312, 8.754795 ], [ 104.765625, 8.754795 ], [ 104.765625, 9.449062 ], [ 105.117188, 9.449062 ], [ 105.117188, 9.795678 ], [ 104.765625, 9.795678 ], [ 104.765625, 10.141932 ], [ 104.414062, 10.141932 ], [ 104.414062, 10.487812 ], [ 105.117188, 10.487812 ], [ 105.117188, 10.833306 ], [ 106.171875, 10.833306 ], [ 106.171875, 11.178402 ], [ 105.820312, 11.178402 ], [ 105.820312, 11.523088 ], [ 106.523438, 11.523088 ], [ 106.523438, 11.867351 ], [ 107.226562, 11.867351 ], [ 107.226562, 12.211180 ], [ 107.578125, 12.211180 ], [ 107.578125, 13.923404 ], [ 107.226562, 13.923404 ], [ 107.226562, 14.604847 ], [ 107.578125, 14.604847 ], [ 107.578125, 15.623037 ], [ 107.226562, 15.623037 ], [ 107.226562, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 16.299051 ], [ 106.523438, 16.299051 ], [ 106.523438, 16.636192 ], [ 106.171875, 16.636192 ], [ 106.171875, 17.308688 ], [ 105.820312, 17.308688 ], [ 105.820312, 17.644022 ], [ 105.468750, 17.644022 ], [ 105.468750, 18.312811 ], [ 105.117188, 18.312811 ], [ 105.117188, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 18.979026 ], [ 104.062500, 18.979026 ], [ 104.062500, 19.642588 ], [ 104.765625, 19.642588 ], [ 104.765625, 20.303418 ], [ 104.414062, 20.303418 ], [ 104.414062, 20.632784 ], [ 103.007812, 20.632784 ], [ 103.007812, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 102.304688, 21.943046 ], [ 102.304688, 22.593726 ], [ 104.062500, 22.593726 ], [ 104.062500, 22.917923 ], [ 105.117188, 22.917923 ], [ 105.117188, 23.241346 ], [ 105.468750, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.578125, 12.211180 ], [ 107.226562, 12.211180 ], [ 107.226562, 11.867351 ], [ 106.523438, 11.867351 ], [ 106.523438, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.178402 ], [ 106.171875, 11.178402 ], [ 106.171875, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 10.833306 ], [ 103.007812, 10.833306 ], [ 103.007812, 11.523088 ], [ 102.656250, 11.523088 ], [ 102.656250, 12.554564 ], [ 102.304688, 12.554564 ], [ 102.304688, 13.239945 ], [ 102.656250, 13.239945 ], [ 102.656250, 13.923404 ], [ 103.007812, 13.923404 ], [ 103.007812, 14.264383 ], [ 105.468750, 14.264383 ], [ 105.468750, 13.923404 ], [ 106.171875, 13.923404 ], [ 106.171875, 14.264383 ], [ 107.226562, 14.264383 ], [ 107.226562, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.226562, 14.264383 ], [ 107.226562, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.211180 ], [ 107.226562, 12.211180 ], [ 107.226562, 11.867351 ], [ 106.523438, 11.867351 ], [ 106.523438, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.178402 ], [ 106.171875, 11.178402 ], [ 106.171875, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 10.833306 ], [ 103.007812, 10.833306 ], [ 103.007812, 11.523088 ], [ 102.656250, 11.523088 ], [ 102.656250, 12.554564 ], [ 102.304688, 12.554564 ], [ 102.304688, 13.239945 ], [ 102.656250, 13.239945 ], [ 102.656250, 13.923404 ], [ 103.007812, 13.923404 ], [ 103.007812, 14.264383 ], [ 105.468750, 14.264383 ], [ 105.468750, 13.923404 ], [ 106.171875, 13.923404 ], [ 106.171875, 14.264383 ], [ 107.226562, 14.264383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.421875, 6.315299 ], [ 117.773438, 6.315299 ], [ 117.773438, 5.615986 ], [ 118.476562, 5.615986 ], [ 118.476562, 5.266008 ], [ 119.179688, 5.266008 ], [ 119.179688, 4.915833 ], [ 118.476562, 4.915833 ], [ 118.476562, 4.214943 ], [ 116.015625, 4.214943 ], [ 116.015625, 3.513421 ], [ 115.664062, 3.513421 ], [ 115.664062, 2.811371 ], [ 114.960938, 2.811371 ], [ 114.960938, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.054628 ], [ 113.203125, 1.054628 ], [ 113.203125, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.703107 ], [ 110.039062, 0.703107 ], [ 110.039062, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 111.093750, 1.757537 ], [ 111.093750, 2.108899 ], [ 111.445312, 2.108899 ], [ 111.445312, 2.811371 ], [ 112.500000, 2.811371 ], [ 112.500000, 3.162456 ], [ 113.203125, 3.162456 ], [ 113.203125, 3.513421 ], [ 113.554688, 3.513421 ], [ 113.554688, 3.864255 ], [ 113.906250, 3.864255 ], [ 113.906250, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 3.864255 ], [ 114.960938, 3.864255 ], [ 114.960938, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 115.664062, 5.615986 ], [ 115.664062, 5.965754 ], [ 116.367188, 5.965754 ], [ 116.367188, 6.664608 ], [ 116.718750, 6.664608 ], [ 116.718750, 7.013668 ], [ 117.070312, 7.013668 ], [ 117.070312, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 6.315299 ] ] ], [ [ [ 103.007812, 5.266008 ], [ 103.359375, 5.266008 ], [ 103.359375, 2.460181 ], [ 103.710938, 2.460181 ], [ 103.710938, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.757537 ], [ 104.414062, 1.757537 ], [ 104.414062, 1.406109 ], [ 104.062500, 1.406109 ], [ 104.062500, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 1.757537 ], [ 102.656250, 1.757537 ], [ 102.656250, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 2.460181 ], [ 101.250000, 2.460181 ], [ 101.250000, 3.162456 ], [ 100.898438, 3.162456 ], [ 100.898438, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 4.915833 ], [ 100.195312, 4.915833 ], [ 100.195312, 6.664608 ], [ 100.546875, 6.664608 ], [ 100.546875, 6.315299 ], [ 101.250000, 6.315299 ], [ 101.250000, 5.615986 ], [ 101.953125, 5.615986 ], [ 101.953125, 5.965754 ], [ 102.304688, 5.965754 ], [ 102.304688, 5.615986 ], [ 103.007812, 5.615986 ], [ 103.007812, 5.266008 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.070312, 7.013668 ], [ 117.070312, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 6.315299 ], [ 117.773438, 6.315299 ], [ 117.773438, 5.615986 ], [ 118.476562, 5.615986 ], [ 118.476562, 5.266008 ], [ 119.179688, 5.266008 ], [ 119.179688, 4.915833 ], [ 118.476562, 4.915833 ], [ 118.476562, 4.214943 ], [ 116.015625, 4.214943 ], [ 116.015625, 3.513421 ], [ 115.664062, 3.513421 ], [ 115.664062, 2.811371 ], [ 114.960938, 2.811371 ], [ 114.960938, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.054628 ], [ 113.203125, 1.054628 ], [ 113.203125, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.703107 ], [ 110.039062, 0.703107 ], [ 110.039062, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 111.093750, 1.757537 ], [ 111.093750, 2.108899 ], [ 111.445312, 2.108899 ], [ 111.445312, 2.811371 ], [ 112.500000, 2.811371 ], [ 112.500000, 3.162456 ], [ 113.203125, 3.162456 ], [ 113.203125, 3.513421 ], [ 113.554688, 3.513421 ], [ 113.554688, 3.864255 ], [ 113.906250, 3.864255 ], [ 113.906250, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 3.864255 ], [ 114.960938, 3.864255 ], [ 114.960938, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 115.664062, 5.615986 ], [ 115.664062, 5.965754 ], [ 116.367188, 5.965754 ], [ 116.367188, 6.664608 ], [ 116.718750, 6.664608 ], [ 116.718750, 7.013668 ], [ 117.070312, 7.013668 ] ] ], [ [ [ 100.546875, 6.664608 ], [ 100.546875, 6.315299 ], [ 101.250000, 6.315299 ], [ 101.250000, 5.615986 ], [ 101.953125, 5.615986 ], [ 101.953125, 5.965754 ], [ 102.304688, 5.965754 ], [ 102.304688, 5.615986 ], [ 103.007812, 5.615986 ], [ 103.007812, 5.266008 ], [ 103.359375, 5.266008 ], [ 103.359375, 2.460181 ], [ 103.710938, 2.460181 ], [ 103.710938, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.757537 ], [ 104.414062, 1.757537 ], [ 104.414062, 1.406109 ], [ 104.062500, 1.406109 ], [ 104.062500, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 1.757537 ], [ 102.656250, 1.757537 ], [ 102.656250, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 2.460181 ], [ 101.250000, 2.460181 ], [ 101.250000, 3.162456 ], [ 100.898438, 3.162456 ], [ 100.898438, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 4.915833 ], [ 100.195312, 4.915833 ], [ 100.195312, 6.664608 ], [ 100.546875, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.992188, 24.527135 ], [ 121.640625, 24.527135 ], [ 121.640625, 23.563987 ], [ 121.289062, 23.563987 ], [ 121.289062, 22.593726 ], [ 120.937500, 22.593726 ], [ 120.937500, 21.943046 ], [ 120.585938, 21.943046 ], [ 120.585938, 22.268764 ], [ 120.234375, 22.268764 ], [ 120.234375, 23.885838 ], [ 120.585938, 23.885838 ], [ 120.585938, 24.527135 ], [ 120.937500, 24.527135 ], [ 120.937500, 24.846565 ], [ 121.992188, 24.846565 ], [ 121.992188, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.992188, 24.846565 ], [ 121.992188, 24.527135 ], [ 121.640625, 24.527135 ], [ 121.640625, 23.563987 ], [ 121.289062, 23.563987 ], [ 121.289062, 22.593726 ], [ 120.937500, 22.593726 ], [ 120.937500, 21.943046 ], [ 120.585938, 21.943046 ], [ 120.585938, 22.268764 ], [ 120.234375, 22.268764 ], [ 120.234375, 23.885838 ], [ 120.585938, 23.885838 ], [ 120.585938, 24.527135 ], [ 120.937500, 24.527135 ], [ 120.937500, 24.846565 ], [ 121.992188, 24.846565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.429688, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.771312 ], [ 129.726562, 41.771312 ], [ 129.726562, 40.713956 ], [ 129.023438, 40.713956 ], [ 129.023438, 40.178873 ], [ 128.671875, 40.178873 ], [ 128.671875, 39.909736 ], [ 127.968750, 39.909736 ], [ 127.968750, 39.639538 ], [ 127.617188, 39.639538 ], [ 127.617188, 38.822591 ], [ 127.968750, 38.822591 ], [ 127.968750, 38.548165 ], [ 128.320312, 38.548165 ], [ 128.320312, 38.272689 ], [ 126.914062, 38.272689 ], [ 126.914062, 37.996163 ], [ 126.562500, 37.996163 ], [ 126.562500, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.996163 ], [ 124.804688, 37.996163 ], [ 124.804688, 38.272689 ], [ 125.156250, 38.272689 ], [ 125.156250, 39.095963 ], [ 125.507812, 39.095963 ], [ 125.507812, 39.368279 ], [ 125.156250, 39.368279 ], [ 125.156250, 39.639538 ], [ 124.101562, 39.639538 ], [ 124.101562, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 40.178873 ], [ 125.156250, 40.178873 ], [ 125.156250, 40.446947 ], [ 125.507812, 40.446947 ], [ 125.507812, 40.713956 ], [ 126.210938, 40.713956 ], [ 126.210938, 40.979898 ], [ 126.562500, 40.979898 ], [ 126.562500, 41.508577 ], [ 128.320312, 41.508577 ], [ 128.320312, 41.771312 ], [ 127.968750, 41.771312 ], [ 127.968750, 42.032974 ], [ 128.671875, 42.032974 ], [ 128.671875, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.553080 ], [ 129.726562, 42.553080 ], [ 129.726562, 42.811522 ], [ 130.429688, 42.811522 ], [ 130.429688, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.429688, 42.811522 ], [ 130.429688, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.771312 ], [ 129.726562, 41.771312 ], [ 129.726562, 40.713956 ], [ 129.023438, 40.713956 ], [ 129.023438, 40.178873 ], [ 128.671875, 40.178873 ], [ 128.671875, 39.909736 ], [ 127.968750, 39.909736 ], [ 127.968750, 39.639538 ], [ 127.617188, 39.639538 ], [ 127.617188, 38.822591 ], [ 127.968750, 38.822591 ], [ 127.968750, 38.548165 ], [ 128.320312, 38.548165 ], [ 128.320312, 38.272689 ], [ 126.914062, 38.272689 ], [ 126.914062, 37.996163 ], [ 126.562500, 37.996163 ], [ 126.562500, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.996163 ], [ 124.804688, 37.996163 ], [ 124.804688, 38.272689 ], [ 125.156250, 38.272689 ], [ 125.156250, 39.095963 ], [ 125.507812, 39.095963 ], [ 125.507812, 39.368279 ], [ 125.156250, 39.368279 ], [ 125.156250, 39.639538 ], [ 124.101562, 39.639538 ], [ 124.101562, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 40.178873 ], [ 125.156250, 40.178873 ], [ 125.156250, 40.446947 ], [ 125.507812, 40.446947 ], [ 125.507812, 40.713956 ], [ 126.210938, 40.713956 ], [ 126.210938, 40.979898 ], [ 126.562500, 40.979898 ], [ 126.562500, 41.508577 ], [ 128.320312, 41.508577 ], [ 128.320312, 41.771312 ], [ 127.968750, 41.771312 ], [ 127.968750, 42.032974 ], [ 128.671875, 42.032974 ], [ 128.671875, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.553080 ], [ 129.726562, 42.553080 ], [ 129.726562, 42.811522 ], [ 130.429688, 42.811522 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.023438, 37.439974 ], [ 129.375000, 37.439974 ], [ 129.375000, 35.460670 ], [ 129.023438, 35.460670 ], [ 129.023438, 34.885931 ], [ 127.968750, 34.885931 ], [ 127.968750, 34.597042 ], [ 127.265625, 34.597042 ], [ 127.265625, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 34.597042 ], [ 126.210938, 34.597042 ], [ 126.210938, 35.173808 ], [ 126.562500, 35.173808 ], [ 126.562500, 36.031332 ], [ 126.210938, 36.031332 ], [ 126.210938, 36.597889 ], [ 126.914062, 36.597889 ], [ 126.914062, 36.879621 ], [ 126.562500, 36.879621 ], [ 126.562500, 37.439974 ], [ 126.210938, 37.439974 ], [ 126.210938, 37.718590 ], [ 126.562500, 37.718590 ], [ 126.562500, 37.996163 ], [ 126.914062, 37.996163 ], [ 126.914062, 38.272689 ], [ 128.671875, 38.272689 ], [ 128.671875, 37.996163 ], [ 129.023438, 37.996163 ], [ 129.023438, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.671875, 38.272689 ], [ 128.671875, 37.996163 ], [ 129.023438, 37.996163 ], [ 129.023438, 37.439974 ], [ 129.375000, 37.439974 ], [ 129.375000, 35.460670 ], [ 129.023438, 35.460670 ], [ 129.023438, 34.885931 ], [ 127.968750, 34.885931 ], [ 127.968750, 34.597042 ], [ 127.265625, 34.597042 ], [ 127.265625, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 34.597042 ], [ 126.210938, 34.597042 ], [ 126.210938, 35.173808 ], [ 126.562500, 35.173808 ], [ 126.562500, 36.031332 ], [ 126.210938, 36.031332 ], [ 126.210938, 36.597889 ], [ 126.914062, 36.597889 ], [ 126.914062, 36.879621 ], [ 126.562500, 36.879621 ], [ 126.562500, 37.439974 ], [ 126.210938, 37.439974 ], [ 126.210938, 37.718590 ], [ 126.562500, 37.718590 ], [ 126.562500, 37.996163 ], [ 126.914062, 37.996163 ], [ 126.914062, 38.272689 ], [ 128.671875, 38.272689 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.562500, 6.664608 ], [ 125.859375, 6.664608 ], [ 125.859375, 7.013668 ], [ 125.507812, 7.013668 ], [ 125.507812, 5.615986 ], [ 124.804688, 5.615986 ], [ 124.804688, 5.965754 ], [ 124.101562, 5.965754 ], [ 124.101562, 7.362467 ], [ 122.695312, 7.362467 ], [ 122.695312, 7.013668 ], [ 121.992188, 7.013668 ], [ 121.992188, 7.710992 ], [ 122.343750, 7.710992 ], [ 122.343750, 8.059230 ], [ 123.046875, 8.059230 ], [ 123.046875, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 8.754795 ], [ 124.804688, 8.754795 ], [ 124.804688, 9.102097 ], [ 125.507812, 9.102097 ], [ 125.507812, 9.449062 ], [ 126.210938, 9.449062 ], [ 126.210938, 8.059230 ], [ 126.562500, 8.059230 ], [ 126.562500, 6.664608 ] ] ], [ [ [ 118.476562, 10.141932 ], [ 118.828125, 10.141932 ], [ 118.828125, 10.487812 ], [ 119.179688, 10.487812 ], [ 119.179688, 11.178402 ], [ 119.531250, 11.178402 ], [ 119.531250, 10.141932 ], [ 119.179688, 10.141932 ], [ 119.179688, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 9.449062 ], [ 118.476562, 9.449062 ], [ 118.476562, 10.141932 ] ] ], [ [ [ 122.695312, 9.795678 ], [ 122.695312, 10.487812 ], [ 123.046875, 10.487812 ], [ 123.046875, 10.833306 ], [ 123.398438, 10.833306 ], [ 123.398438, 10.141932 ], [ 123.750000, 10.141932 ], [ 123.750000, 10.833306 ], [ 124.101562, 10.833306 ], [ 124.101562, 9.795678 ], [ 123.750000, 9.795678 ], [ 123.750000, 9.449062 ], [ 123.398438, 9.449062 ], [ 123.398438, 9.102097 ], [ 122.695312, 9.102097 ], [ 122.695312, 9.449062 ], [ 122.343750, 9.449062 ], [ 122.343750, 9.795678 ], [ 122.695312, 9.795678 ] ] ], [ [ [ 125.859375, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 10.141932 ], [ 124.804688, 10.141932 ], [ 124.804688, 10.833306 ], [ 124.453125, 10.833306 ], [ 124.453125, 11.523088 ], [ 124.804688, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.211180 ], [ 124.101562, 12.211180 ], [ 124.101562, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 12.211180 ], [ 125.507812, 12.211180 ], [ 125.507812, 11.523088 ], [ 125.859375, 11.523088 ], [ 125.859375, 11.178402 ] ] ], [ [ [ 123.046875, 10.833306 ], [ 122.695312, 10.833306 ], [ 122.695312, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.523088 ], [ 123.046875, 11.523088 ], [ 123.046875, 10.833306 ] ] ], [ [ [ 123.046875, 13.923404 ], [ 124.101562, 13.923404 ], [ 124.101562, 13.581921 ], [ 123.750000, 13.581921 ], [ 123.750000, 12.897489 ], [ 124.101562, 12.897489 ], [ 124.101562, 12.554564 ], [ 123.398438, 12.554564 ], [ 123.398438, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.581921 ], [ 121.289062, 13.581921 ], [ 121.289062, 13.239945 ], [ 121.640625, 13.239945 ], [ 121.640625, 12.554564 ], [ 121.289062, 12.554564 ], [ 121.289062, 12.211180 ], [ 120.937500, 12.211180 ], [ 120.937500, 12.554564 ], [ 120.585938, 12.554564 ], [ 120.585938, 13.239945 ], [ 120.234375, 13.239945 ], [ 120.234375, 13.581921 ], [ 120.585938, 13.581921 ], [ 120.585938, 14.264383 ], [ 120.937500, 14.264383 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.944785 ], [ 119.882812, 14.944785 ], [ 119.882812, 15.961329 ], [ 120.234375, 15.961329 ], [ 120.234375, 17.978733 ], [ 120.585938, 17.978733 ], [ 120.585938, 18.646245 ], [ 121.289062, 18.646245 ], [ 121.289062, 18.312811 ], [ 122.343750, 18.312811 ], [ 122.343750, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 14.264383 ], [ 123.046875, 14.264383 ], [ 123.046875, 13.923404 ] ] ], [ [ [ 118.125000, 8.754795 ], [ 117.773438, 8.754795 ], [ 117.773438, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 8.754795 ] ] ], [ [ [ 118.476562, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 9.449062 ], [ 118.476562, 9.449062 ], [ 118.476562, 9.102097 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.449062 ], [ 126.210938, 8.059230 ], [ 126.562500, 8.059230 ], [ 126.562500, 6.664608 ], [ 125.859375, 6.664608 ], [ 125.859375, 7.013668 ], [ 125.507812, 7.013668 ], [ 125.507812, 5.615986 ], [ 124.804688, 5.615986 ], [ 124.804688, 5.965754 ], [ 124.101562, 5.965754 ], [ 124.101562, 7.362467 ], [ 122.695312, 7.362467 ], [ 122.695312, 7.013668 ], [ 121.992188, 7.013668 ], [ 121.992188, 7.710992 ], [ 122.343750, 7.710992 ], [ 122.343750, 8.059230 ], [ 123.046875, 8.059230 ], [ 123.046875, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 8.754795 ], [ 124.804688, 8.754795 ], [ 124.804688, 9.102097 ], [ 125.507812, 9.102097 ], [ 125.507812, 9.449062 ], [ 126.210938, 9.449062 ] ] ], [ [ [ 118.125000, 9.102097 ], [ 118.125000, 8.754795 ], [ 117.773438, 8.754795 ], [ 117.773438, 9.102097 ], [ 118.125000, 9.102097 ] ] ], [ [ [ 123.046875, 10.833306 ], [ 122.695312, 10.833306 ], [ 122.695312, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.523088 ], [ 123.046875, 11.523088 ], [ 123.046875, 10.833306 ] ] ], [ [ [ 118.476562, 9.449062 ], [ 118.476562, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 9.449062 ], [ 118.476562, 9.449062 ] ] ], [ [ [ 119.531250, 10.141932 ], [ 119.179688, 10.141932 ], [ 119.179688, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 9.449062 ], [ 118.476562, 9.449062 ], [ 118.476562, 10.141932 ], [ 118.828125, 10.141932 ], [ 118.828125, 10.487812 ], [ 119.179688, 10.487812 ], [ 119.179688, 11.178402 ], [ 119.531250, 11.178402 ], [ 119.531250, 10.141932 ] ] ], [ [ [ 120.585938, 13.581921 ], [ 120.585938, 14.264383 ], [ 120.937500, 14.264383 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.944785 ], [ 119.882812, 14.944785 ], [ 119.882812, 15.961329 ], [ 120.234375, 15.961329 ], [ 120.234375, 17.978733 ], [ 120.585938, 17.978733 ], [ 120.585938, 18.646245 ], [ 121.289062, 18.646245 ], [ 121.289062, 18.312811 ], [ 122.343750, 18.312811 ], [ 122.343750, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 14.264383 ], [ 123.046875, 14.264383 ], [ 123.046875, 13.923404 ], [ 124.101562, 13.923404 ], [ 124.101562, 13.581921 ], [ 123.750000, 13.581921 ], [ 123.750000, 12.897489 ], [ 124.101562, 12.897489 ], [ 124.101562, 12.554564 ], [ 123.398438, 12.554564 ], [ 123.398438, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.581921 ], [ 121.289062, 13.581921 ], [ 121.289062, 13.239945 ], [ 121.640625, 13.239945 ], [ 121.640625, 12.554564 ], [ 121.289062, 12.554564 ], [ 121.289062, 12.211180 ], [ 120.937500, 12.211180 ], [ 120.937500, 12.554564 ], [ 120.585938, 12.554564 ], [ 120.585938, 13.239945 ], [ 120.234375, 13.239945 ], [ 120.234375, 13.581921 ], [ 120.585938, 13.581921 ] ] ], [ [ [ 123.046875, 10.833306 ], [ 123.398438, 10.833306 ], [ 123.398438, 10.141932 ], [ 123.750000, 10.141932 ], [ 123.750000, 10.833306 ], [ 124.101562, 10.833306 ], [ 124.101562, 9.795678 ], [ 123.750000, 9.795678 ], [ 123.750000, 9.449062 ], [ 123.398438, 9.449062 ], [ 123.398438, 9.102097 ], [ 122.695312, 9.102097 ], [ 122.695312, 9.449062 ], [ 122.343750, 9.449062 ], [ 122.343750, 9.795678 ], [ 122.695312, 9.795678 ], [ 122.695312, 10.487812 ], [ 123.046875, 10.487812 ], [ 123.046875, 10.833306 ] ] ], [ [ [ 124.101562, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 12.211180 ], [ 125.507812, 12.211180 ], [ 125.507812, 11.523088 ], [ 125.859375, 11.523088 ], [ 125.859375, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 10.141932 ], [ 124.804688, 10.141932 ], [ 124.804688, 10.833306 ], [ 124.453125, 10.833306 ], [ 124.453125, 11.523088 ], [ 124.804688, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.211180 ], [ 124.101562, 12.211180 ], [ 124.101562, 12.554564 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.214943 ], [ 114.960938, 4.214943 ], [ 114.960938, 3.864255 ], [ 114.609375, 3.864255 ], [ 114.609375, 4.214943 ], [ 114.257812, 4.214943 ], [ 114.257812, 4.565474 ], [ 114.609375, 4.565474 ], [ 114.609375, 4.915833 ], [ 114.960938, 4.915833 ], [ 114.960938, 5.266008 ], [ 115.312500, 5.266008 ], [ 115.312500, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 5.266008 ], [ 115.312500, 4.214943 ], [ 114.960938, 4.214943 ], [ 114.960938, 3.864255 ], [ 114.609375, 3.864255 ], [ 114.609375, 4.214943 ], [ 114.257812, 4.214943 ], [ 114.257812, 4.565474 ], [ 114.609375, 4.565474 ], [ 114.609375, 4.915833 ], [ 114.960938, 4.915833 ], [ 114.960938, 5.266008 ], [ 115.312500, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.484375, 33.137551 ], [ 131.835938, 33.137551 ], [ 131.835938, 32.249974 ], [ 131.484375, 32.249974 ], [ 131.484375, 31.052934 ], [ 130.078125, 31.052934 ], [ 130.078125, 31.653381 ], [ 130.429688, 31.653381 ], [ 130.429688, 32.249974 ], [ 129.726562, 32.249974 ], [ 129.726562, 32.842674 ], [ 129.375000, 32.842674 ], [ 129.375000, 33.431441 ], [ 130.078125, 33.431441 ], [ 130.078125, 33.724340 ], [ 130.429688, 33.724340 ], [ 130.429688, 34.016242 ], [ 130.781250, 34.016242 ], [ 130.781250, 34.307144 ], [ 131.132812, 34.307144 ], [ 131.132812, 34.597042 ], [ 131.835938, 34.597042 ], [ 131.835938, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.173808 ], [ 132.539062, 35.173808 ], [ 132.539062, 35.460670 ], [ 133.945312, 35.460670 ], [ 133.945312, 35.746512 ], [ 135.000000, 35.746512 ], [ 135.000000, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.746512 ], [ 136.054688, 35.746512 ], [ 136.054688, 36.315125 ], [ 136.406250, 36.315125 ], [ 136.406250, 36.879621 ], [ 136.757812, 36.879621 ], [ 136.757812, 37.160317 ], [ 137.109375, 37.160317 ], [ 137.109375, 36.879621 ], [ 137.812500, 36.879621 ], [ 137.812500, 37.160317 ], [ 138.515625, 37.160317 ], [ 138.515625, 37.439974 ], [ 138.867188, 37.439974 ], [ 138.867188, 37.718590 ], [ 139.218750, 37.718590 ], [ 139.218750, 37.996163 ], [ 139.570312, 37.996163 ], [ 139.570312, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.713956 ], [ 140.273438, 40.713956 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.508577 ], [ 141.328125, 41.508577 ], [ 141.328125, 40.979898 ], [ 141.679688, 40.979898 ], [ 141.679688, 40.178873 ], [ 142.031250, 40.178873 ], [ 142.031250, 38.822591 ], [ 141.679688, 38.822591 ], [ 141.679688, 38.548165 ], [ 141.328125, 38.548165 ], [ 141.328125, 38.272689 ], [ 140.976562, 38.272689 ], [ 140.976562, 36.597889 ], [ 140.625000, 36.597889 ], [ 140.625000, 35.460670 ], [ 140.273438, 35.460670 ], [ 140.273438, 34.885931 ], [ 139.570312, 34.885931 ], [ 139.570312, 34.597042 ], [ 137.109375, 34.597042 ], [ 137.109375, 34.307144 ], [ 136.757812, 34.307144 ], [ 136.757812, 34.016242 ], [ 136.406250, 34.016242 ], [ 136.406250, 33.724340 ], [ 136.054688, 33.724340 ], [ 136.054688, 33.431441 ], [ 135.000000, 33.431441 ], [ 135.000000, 34.597042 ], [ 134.296875, 34.597042 ], [ 134.296875, 34.307144 ], [ 132.890625, 34.307144 ], [ 132.890625, 34.016242 ], [ 131.132812, 34.016242 ], [ 131.132812, 33.724340 ], [ 131.484375, 33.724340 ], [ 131.484375, 33.137551 ] ] ], [ [ [ 134.648438, 33.431441 ], [ 134.296875, 33.431441 ], [ 134.296875, 33.137551 ], [ 133.945312, 33.137551 ], [ 133.945312, 33.431441 ], [ 133.242188, 33.431441 ], [ 133.242188, 33.137551 ], [ 132.890625, 33.137551 ], [ 132.890625, 32.842674 ], [ 132.187500, 32.842674 ], [ 132.187500, 33.137551 ], [ 132.539062, 33.137551 ], [ 132.539062, 33.724340 ], [ 132.890625, 33.724340 ], [ 132.890625, 34.016242 ], [ 134.648438, 34.016242 ], [ 134.648438, 33.431441 ] ] ], [ [ [ 142.734375, 44.590467 ], [ 143.085938, 44.590467 ], [ 143.085938, 44.339565 ], [ 143.437500, 44.339565 ], [ 143.437500, 44.087585 ], [ 143.789062, 44.087585 ], [ 143.789062, 43.834527 ], [ 144.843750, 43.834527 ], [ 144.843750, 44.087585 ], [ 145.195312, 44.087585 ], [ 145.195312, 43.834527 ], [ 145.546875, 43.834527 ], [ 145.546875, 43.325178 ], [ 145.195312, 43.325178 ], [ 145.195312, 43.068888 ], [ 144.140625, 43.068888 ], [ 144.140625, 42.811522 ], [ 143.789062, 42.811522 ], [ 143.789062, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.032974 ], [ 142.382812, 42.032974 ], [ 142.382812, 42.293564 ], [ 141.328125, 42.293564 ], [ 141.328125, 41.771312 ], [ 140.976562, 41.771312 ], [ 140.976562, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.811522 ], [ 140.273438, 42.811522 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 141.328125, 44.087585 ], [ 141.679688, 44.087585 ], [ 141.679688, 45.089036 ], [ 142.031250, 45.089036 ], [ 142.031250, 45.336702 ], [ 142.382812, 45.336702 ], [ 142.382812, 45.089036 ], [ 142.734375, 45.089036 ], [ 142.734375, 44.590467 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, 41.508577 ], [ 141.328125, 41.508577 ], [ 141.328125, 40.979898 ], [ 141.679688, 40.979898 ], [ 141.679688, 40.178873 ], [ 142.031250, 40.178873 ], [ 142.031250, 38.822591 ], [ 141.679688, 38.822591 ], [ 141.679688, 38.548165 ], [ 141.328125, 38.548165 ], [ 141.328125, 38.272689 ], [ 140.976562, 38.272689 ], [ 140.976562, 36.597889 ], [ 140.625000, 36.597889 ], [ 140.625000, 35.460670 ], [ 140.273438, 35.460670 ], [ 140.273438, 34.885931 ], [ 139.570312, 34.885931 ], [ 139.570312, 34.597042 ], [ 137.109375, 34.597042 ], [ 137.109375, 34.307144 ], [ 136.757812, 34.307144 ], [ 136.757812, 34.016242 ], [ 136.406250, 34.016242 ], [ 136.406250, 33.724340 ], [ 136.054688, 33.724340 ], [ 136.054688, 33.431441 ], [ 135.000000, 33.431441 ], [ 135.000000, 34.597042 ], [ 134.296875, 34.597042 ], [ 134.296875, 34.307144 ], [ 134.648438, 34.016242 ], [ 134.648438, 33.431441 ], [ 134.296875, 33.431441 ], [ 134.296875, 33.137551 ], [ 133.945312, 33.137551 ], [ 133.945312, 33.431441 ], [ 133.242188, 33.431441 ], [ 133.242188, 33.137551 ], [ 132.890625, 33.137551 ], [ 132.890625, 32.842674 ], [ 132.187500, 32.842674 ], [ 132.187500, 33.137551 ], [ 132.539062, 33.137551 ], [ 132.539062, 33.724340 ], [ 132.890625, 33.724340 ], [ 132.890625, 34.016242 ], [ 131.132812, 34.016242 ], [ 131.132812, 33.724340 ], [ 131.484375, 33.724340 ], [ 131.484375, 33.137551 ], [ 131.835938, 33.137551 ], [ 131.835938, 32.249974 ], [ 131.484375, 32.249974 ], [ 131.484375, 31.052934 ], [ 130.078125, 31.052934 ], [ 130.078125, 31.653381 ], [ 130.429688, 31.653381 ], [ 130.429688, 32.249974 ], [ 129.726562, 32.249974 ], [ 129.726562, 32.842674 ], [ 129.375000, 32.842674 ], [ 129.375000, 33.431441 ], [ 130.078125, 33.431441 ], [ 130.078125, 33.724340 ], [ 130.429688, 33.724340 ], [ 130.429688, 34.016242 ], [ 130.781250, 34.016242 ], [ 130.781250, 34.307144 ], [ 131.132812, 34.307144 ], [ 131.132812, 34.597042 ], [ 131.835938, 34.597042 ], [ 131.835938, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.173808 ], [ 132.539062, 35.173808 ], [ 132.539062, 35.460670 ], [ 133.945312, 35.460670 ], [ 133.945312, 35.746512 ], [ 135.000000, 35.746512 ], [ 135.000000, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.746512 ], [ 136.054688, 35.746512 ], [ 136.054688, 36.315125 ], [ 136.406250, 36.315125 ], [ 136.406250, 36.879621 ], [ 136.757812, 36.879621 ], [ 136.757812, 37.160317 ], [ 137.109375, 37.160317 ], [ 137.109375, 36.879621 ], [ 137.812500, 36.879621 ], [ 137.812500, 37.160317 ], [ 138.515625, 37.160317 ], [ 138.515625, 37.439974 ], [ 138.867188, 37.439974 ], [ 138.867188, 37.718590 ], [ 139.218750, 37.718590 ], [ 139.218750, 37.996163 ], [ 139.570312, 37.996163 ], [ 139.570312, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.713956 ], [ 140.273438, 40.713956 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.508577 ] ], [ [ 132.890625, 34.016242 ], [ 133.945312, 34.016242 ], [ 133.945312, 34.307144 ], [ 132.890625, 34.307144 ], [ 132.890625, 34.016242 ] ] ], [ [ [ 140.976562, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.811522 ], [ 140.273438, 42.811522 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 141.328125, 44.087585 ], [ 141.679688, 44.087585 ], [ 141.679688, 45.089036 ], [ 142.031250, 45.089036 ], [ 142.031250, 45.336702 ], [ 142.382812, 45.336702 ], [ 142.382812, 45.089036 ], [ 142.734375, 45.089036 ], [ 142.734375, 44.590467 ], [ 143.085938, 44.590467 ], [ 143.085938, 44.339565 ], [ 143.437500, 44.339565 ], [ 143.437500, 44.087585 ], [ 143.789062, 44.087585 ], [ 143.789062, 43.834527 ], [ 144.843750, 43.834527 ], [ 144.843750, 44.087585 ], [ 145.195312, 44.087585 ], [ 145.195312, 43.834527 ], [ 145.546875, 43.834527 ], [ 145.546875, 43.325178 ], [ 145.195312, 43.325178 ], [ 145.195312, 43.068888 ], [ 144.140625, 43.068888 ], [ 144.140625, 42.811522 ], [ 143.789062, 42.811522 ], [ 143.789062, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.032974 ], [ 142.382812, 42.032974 ], [ 142.382812, 42.293564 ], [ 141.328125, 42.293564 ], [ 141.328125, 41.771312 ], [ 140.976562, 41.771312 ], [ 140.976562, 41.508577 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.945312, -1.054628 ], [ 134.296875, -1.054628 ], [ 134.296875, -1.757537 ], [ 131.132812, -1.757537 ], [ 131.132812, -1.406109 ], [ 130.429688, -1.406109 ], [ 130.429688, -1.054628 ], [ 131.484375, -1.054628 ], [ 131.484375, -0.703107 ], [ 132.539062, -0.703107 ], [ 132.539062, -0.351560 ], [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ] ] ], [ [ [ 122.695312, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -1.757537 ], [ 119.179688, -1.757537 ], [ 119.179688, -1.054628 ], [ 119.531250, -1.054628 ], [ 119.531250, -0.351560 ], [ 119.882812, -0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.406109 ] ] ], [ [ [ 117.773438, 2.460181 ], [ 118.125000, 2.460181 ], [ 118.125000, 2.108899 ], [ 117.773438, 2.108899 ], [ 117.773438, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -1.054628 ], [ 117.070312, -1.054628 ], [ 117.070312, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -1.757537 ], [ 109.687500, -1.757537 ], [ 109.687500, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 1.406109 ], [ 109.335938, 1.406109 ], [ 109.335938, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 0.703107 ], [ 111.093750, 0.703107 ], [ 111.093750, 1.054628 ], [ 112.500000, 1.054628 ], [ 112.500000, 1.406109 ], [ 113.203125, 1.406109 ], [ 113.203125, 1.054628 ], [ 114.609375, 1.054628 ], [ 114.609375, 2.108899 ], [ 114.960938, 2.108899 ], [ 114.960938, 2.811371 ], [ 115.664062, 2.811371 ], [ 115.664062, 3.513421 ], [ 116.015625, 3.513421 ], [ 116.015625, 4.214943 ], [ 117.773438, 4.214943 ], [ 117.773438, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 117.773438, 2.811371 ], [ 117.773438, 2.460181 ] ] ], [ [ [ 97.382812, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.565474 ], [ 98.085938, 4.565474 ], [ 98.085938, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 3.864255 ], [ 98.789062, 3.864255 ], [ 98.789062, 3.513421 ], [ 99.140625, 3.513421 ], [ 99.140625, 3.162456 ], [ 99.843750, 3.162456 ], [ 99.843750, 2.811371 ], [ 100.195312, 2.811371 ], [ 100.195312, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.757537 ], [ 102.304688, 1.757537 ], [ 102.304688, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 0.351560 ], [ 103.359375, 0.351560 ], [ 103.359375, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 1.054628 ], [ 98.789062, 1.054628 ], [ 98.789062, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 1.757537 ], [ 98.085938, 1.757537 ], [ 98.085938, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.460181 ], [ 97.382812, 2.460181 ], [ 97.382812, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.162456 ], [ 96.679688, 3.162456 ], [ 96.679688, 3.513421 ], [ 96.328125, 3.513421 ], [ 96.328125, 3.864255 ], [ 95.976562, 3.864255 ], [ 95.976562, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 4.565474 ], [ 95.273438, 4.565474 ], [ 95.273438, 5.266008 ], [ 97.382812, 5.266008 ], [ 97.382812, 4.915833 ] ] ], [ [ [ 127.617188, -0.703107 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.703107 ], [ 127.617188, -0.703107 ] ] ], [ [ [ 120.234375, 0.703107 ], [ 120.234375, 1.054628 ], [ 121.992188, 1.054628 ], [ 121.992188, 0.703107 ], [ 123.750000, 0.703107 ], [ 123.750000, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 1.054628 ], [ 124.804688, 1.054628 ], [ 124.804688, 0.351560 ], [ 120.234375, 0.351560 ], [ 120.234375, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ] ] ], [ [ [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -0.703107 ] ] ], [ [ [ 128.320312, -0.703107 ], [ 128.320312, -1.054628 ], [ 127.968750, -1.054628 ], [ 127.968750, -0.703107 ], [ 128.320312, -0.703107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ], [ 134.296875, -1.054628 ], [ 134.296875, -1.757537 ], [ 131.132812, -1.757537 ], [ 131.132812, -1.406109 ], [ 130.429688, -1.406109 ], [ 130.429688, -1.054628 ], [ 131.484375, -1.054628 ], [ 131.484375, -0.703107 ], [ 132.539062, -0.703107 ], [ 132.539062, -0.351560 ], [ 132.890625, -0.351560 ] ] ], [ [ [ 119.882812, -0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -1.757537 ], [ 119.179688, -1.757537 ], [ 119.179688, -1.054628 ], [ 119.531250, -1.054628 ], [ 119.531250, -0.351560 ], [ 119.882812, -0.351560 ] ] ], [ [ [ 117.773438, 4.214943 ], [ 117.773438, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 117.773438, 2.811371 ], [ 117.773438, 2.460181 ], [ 118.125000, 2.460181 ], [ 118.125000, 2.108899 ], [ 117.773438, 2.108899 ], [ 117.773438, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -1.054628 ], [ 117.070312, -1.054628 ], [ 117.070312, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -1.757537 ], [ 109.687500, -1.757537 ], [ 109.687500, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 1.406109 ], [ 109.335938, 1.406109 ], [ 109.335938, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 0.703107 ], [ 111.093750, 0.703107 ], [ 111.093750, 1.054628 ], [ 112.500000, 1.054628 ], [ 112.500000, 1.406109 ], [ 113.203125, 1.406109 ], [ 113.203125, 1.054628 ], [ 114.609375, 1.054628 ], [ 114.609375, 2.108899 ], [ 114.960938, 2.108899 ], [ 114.960938, 2.811371 ], [ 115.664062, 2.811371 ], [ 115.664062, 3.513421 ], [ 116.015625, 3.513421 ], [ 116.015625, 4.214943 ], [ 117.773438, 4.214943 ] ] ], [ [ [ 97.382812, 5.266008 ], [ 97.382812, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.565474 ], [ 98.085938, 4.565474 ], [ 98.085938, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 3.864255 ], [ 98.789062, 3.864255 ], [ 98.789062, 3.513421 ], [ 99.140625, 3.513421 ], [ 99.140625, 3.162456 ], [ 99.843750, 3.162456 ], [ 99.843750, 2.811371 ], [ 100.195312, 2.811371 ], [ 100.195312, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.757537 ], [ 102.304688, 1.757537 ], [ 102.304688, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 0.351560 ], [ 103.359375, 0.351560 ], [ 103.359375, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 1.054628 ], [ 98.789062, 1.054628 ], [ 98.789062, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 1.757537 ], [ 98.085938, 1.757537 ], [ 98.085938, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.460181 ], [ 97.382812, 2.460181 ], [ 97.382812, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.162456 ], [ 96.679688, 3.162456 ], [ 96.679688, 3.513421 ], [ 96.328125, 3.513421 ], [ 96.328125, 3.864255 ], [ 95.976562, 3.864255 ], [ 95.976562, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 4.565474 ], [ 95.273438, 4.565474 ], [ 95.273438, 5.266008 ], [ 97.382812, 5.266008 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 127.617188, -0.703107 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.703107 ] ] ], [ [ [ 123.398438, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -1.054628 ] ] ], [ [ [ 125.156250, 1.054628 ], [ 124.804688, 1.054628 ], [ 124.804688, 0.351560 ], [ 120.234375, 0.351560 ], [ 120.234375, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 1.054628 ], [ 121.992188, 1.054628 ], [ 121.992188, 0.703107 ], [ 123.750000, 0.703107 ], [ 123.750000, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 1.054628 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -1.054628 ], [ 127.968750, -1.054628 ], [ 127.968750, -0.703107 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 77.466028 ], [ 105.820312, 77.466028 ], [ 105.820312, 77.389504 ], [ 106.171875, 77.389504 ], [ 106.171875, 77.312520 ], [ 105.820312, 77.312520 ], [ 105.820312, 77.235074 ], [ 105.117188, 77.235074 ], [ 105.117188, 77.078784 ], [ 106.171875, 77.078784 ], [ 106.171875, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.760541 ], [ 107.226562, 76.760541 ], [ 107.226562, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.598545 ], [ 107.929688, 76.598545 ], [ 107.929688, 76.679785 ], [ 108.281250, 76.679785 ], [ 108.281250, 76.760541 ], [ 109.335938, 76.760541 ], [ 109.335938, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.598545 ], [ 111.445312, 76.598545 ], [ 111.445312, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.434604 ], [ 112.148438, 76.434604 ], [ 112.148438, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.268695 ], [ 112.851562, 76.268695 ], [ 112.851562, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.100796 ], [ 113.554688, 76.100796 ], [ 113.554688, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.845169 ], [ 114.257812, 75.845169 ], [ 114.257812, 75.584937 ], [ 113.906250, 75.584937 ], [ 113.906250, 75.230667 ], [ 113.554688, 75.230667 ], [ 113.554688, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 75.050354 ], [ 112.851562, 75.050354 ], [ 112.851562, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.867889 ], [ 111.796875, 74.867889 ], [ 111.796875, 74.775843 ], [ 111.445312, 74.775843 ], [ 111.445312, 74.683250 ], [ 111.093750, 74.683250 ], [ 111.093750, 74.590108 ], [ 110.390625, 74.590108 ], [ 110.390625, 74.496413 ], [ 110.039062, 74.496413 ], [ 110.039062, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.211983 ], [ 109.335938, 74.211983 ], [ 109.335938, 74.116047 ], [ 110.039062, 74.116047 ], [ 110.039062, 74.019543 ], [ 110.742188, 74.019543 ], [ 110.742188, 73.922469 ], [ 111.445312, 73.922469 ], [ 111.445312, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.922469 ], [ 112.851562, 73.922469 ], [ 112.851562, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 114.960938, 73.627789 ], [ 114.960938, 73.726595 ], [ 117.070312, 73.726595 ], [ 117.070312, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.327858 ], [ 119.179688, 73.327858 ], [ 119.179688, 73.124945 ], [ 120.937500, 73.124945 ], [ 120.937500, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.327858 ], [ 123.398438, 73.327858 ], [ 123.398438, 73.726595 ], [ 123.750000, 73.726595 ], [ 123.750000, 73.627789 ], [ 124.804688, 73.627789 ], [ 124.804688, 73.528399 ], [ 126.914062, 73.528399 ], [ 126.914062, 73.428424 ], [ 127.265625, 73.428424 ], [ 127.265625, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.140778 ], [ 88.593750, 75.140778 ], [ 88.593750, 75.230667 ], [ 88.945312, 75.230667 ], [ 88.945312, 75.320025 ], [ 89.296875, 75.320025 ], [ 89.296875, 75.408854 ], [ 89.648438, 75.408854 ], [ 89.648438, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.584937 ], [ 90.351562, 75.584937 ], [ 90.351562, 75.672197 ], [ 91.757812, 75.672197 ], [ 91.757812, 75.758940 ], [ 92.812500, 75.758940 ], [ 92.812500, 75.845169 ], [ 93.164062, 75.845169 ], [ 93.164062, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.930885 ], [ 97.031250, 75.930885 ], [ 97.031250, 76.016094 ], [ 97.382812, 76.016094 ], [ 97.382812, 76.100796 ], [ 97.734375, 76.100796 ], [ 97.734375, 76.184995 ], [ 98.085938, 76.184995 ], [ 98.085938, 76.268695 ], [ 98.437500, 76.268695 ], [ 98.437500, 76.351896 ], [ 98.789062, 76.351896 ], [ 98.789062, 76.434604 ], [ 100.898438, 76.434604 ], [ 100.898438, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.389504 ], [ 103.007812, 77.389504 ], [ 103.007812, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.542096 ], [ 103.710938, 77.542096 ], [ 103.710938, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.542096 ], [ 105.468750, 77.542096 ], [ 105.468750, 77.466028 ] ] ], [ [ [ 103.007812, 79.237185 ], [ 103.359375, 79.237185 ], [ 103.359375, 79.171335 ], [ 103.710938, 79.171335 ], [ 103.710938, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.971386 ], [ 104.414062, 78.971386 ], [ 104.414062, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.117188, 78.767792 ], [ 105.117188, 78.699106 ], [ 105.468750, 78.699106 ], [ 105.468750, 78.490552 ], [ 105.117188, 78.490552 ], [ 105.117188, 78.278201 ], [ 104.765625, 78.278201 ], [ 104.765625, 78.206563 ], [ 103.710938, 78.206563 ], [ 103.710938, 78.134493 ], [ 102.656250, 78.134493 ], [ 102.656250, 78.061989 ], [ 101.250000, 78.061989 ], [ 101.250000, 77.989049 ], [ 100.195312, 77.989049 ], [ 100.195312, 77.915669 ], [ 99.492188, 77.915669 ], [ 99.492188, 77.989049 ], [ 99.843750, 77.989049 ], [ 99.843750, 78.278201 ], [ 100.195312, 78.278201 ], [ 100.195312, 78.560488 ], [ 100.546875, 78.560488 ], [ 100.546875, 78.836065 ], [ 100.898438, 78.836065 ], [ 100.898438, 79.105086 ], [ 101.250000, 79.105086 ], [ 101.250000, 79.237185 ], [ 101.601562, 79.237185 ], [ 101.601562, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.367701 ], [ 102.304688, 79.367701 ], [ 102.304688, 79.302640 ], [ 103.007812, 79.302640 ], [ 103.007812, 79.237185 ] ] ], [ [ [ 96.679688, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.872827 ], [ 97.382812, 80.872827 ], [ 97.382812, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.647035 ], [ 98.085938, 80.647035 ], [ 98.085938, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.356995 ], [ 98.789062, 80.356995 ], [ 98.789062, 80.238501 ], [ 99.140625, 80.238501 ], [ 99.140625, 80.118564 ], [ 99.492188, 80.118564 ], [ 99.492188, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 79.812302 ], [ 100.195312, 79.812302 ], [ 100.195312, 79.302640 ], [ 99.843750, 79.302640 ], [ 99.843750, 78.903929 ], [ 99.492188, 78.903929 ], [ 99.492188, 78.836065 ], [ 98.437500, 78.836065 ], [ 98.437500, 78.767792 ], [ 97.031250, 78.767792 ], [ 97.031250, 78.836065 ], [ 96.328125, 78.836065 ], [ 96.328125, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 78.971386 ], [ 94.921875, 78.971386 ], [ 94.921875, 79.038437 ], [ 94.570312, 79.038437 ], [ 94.570312, 79.105086 ], [ 94.218750, 79.105086 ], [ 94.218750, 79.237185 ], [ 93.867188, 79.237185 ], [ 93.867188, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 79.367701 ], [ 93.164062, 79.367701 ], [ 93.164062, 79.560546 ], [ 92.812500, 79.560546 ], [ 92.812500, 79.935918 ], [ 92.460938, 79.935918 ], [ 92.460938, 80.118564 ], [ 92.109375, 80.118564 ], [ 92.109375, 80.178713 ], [ 91.757812, 80.178713 ], [ 91.757812, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.474065 ], [ 91.757812, 80.474065 ], [ 91.757812, 80.532071 ], [ 92.109375, 80.532071 ], [ 92.109375, 80.647035 ], [ 92.460938, 80.647035 ], [ 92.460938, 80.703997 ], [ 92.812500, 80.703997 ], [ 92.812500, 80.816891 ], [ 93.164062, 80.816891 ], [ 93.164062, 80.872827 ], [ 93.515625, 80.872827 ], [ 93.515625, 80.983688 ], [ 93.867188, 80.983688 ], [ 93.867188, 81.038617 ], [ 94.218750, 81.038617 ], [ 94.218750, 81.093214 ], [ 94.921875, 81.093214 ], [ 94.921875, 81.147481 ], [ 95.273438, 81.147481 ], [ 95.273438, 81.201420 ], [ 96.328125, 81.201420 ], [ 96.328125, 81.093214 ], [ 96.679688, 81.093214 ], [ 96.679688, 80.983688 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.765625, 77.617709 ], [ 104.765625, 77.542096 ], [ 105.468750, 77.542096 ], [ 105.468750, 77.466028 ], [ 105.820312, 77.466028 ], [ 105.820312, 77.389504 ], [ 106.171875, 77.389504 ], [ 106.171875, 77.312520 ], [ 105.820312, 77.312520 ], [ 105.820312, 77.235074 ], [ 105.117188, 77.235074 ], [ 105.117188, 77.078784 ], [ 106.171875, 77.078784 ], [ 106.171875, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.760541 ], [ 107.226562, 76.760541 ], [ 107.226562, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.598545 ], [ 107.929688, 76.598545 ], [ 107.929688, 76.679785 ], [ 108.281250, 76.679785 ], [ 108.281250, 76.760541 ], [ 109.335938, 76.760541 ], [ 109.335938, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.598545 ], [ 111.445312, 76.598545 ], [ 111.445312, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.434604 ], [ 112.148438, 76.434604 ], [ 112.148438, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.268695 ], [ 112.851562, 76.268695 ], [ 112.851562, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.100796 ], [ 113.554688, 76.100796 ], [ 113.554688, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.845169 ], [ 114.257812, 75.845169 ], [ 114.257812, 75.584937 ], [ 113.906250, 75.584937 ], [ 113.906250, 75.230667 ], [ 113.554688, 75.230667 ], [ 113.554688, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 75.050354 ], [ 112.851562, 75.050354 ], [ 112.851562, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.867889 ], [ 111.796875, 74.867889 ], [ 111.796875, 74.775843 ], [ 111.445312, 74.775843 ], [ 111.445312, 74.683250 ], [ 111.093750, 74.683250 ], [ 111.093750, 74.590108 ], [ 110.390625, 74.590108 ], [ 110.390625, 74.496413 ], [ 110.039062, 74.496413 ], [ 110.039062, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.211983 ], [ 109.335938, 74.211983 ], [ 109.335938, 74.116047 ], [ 110.039062, 74.116047 ], [ 110.039062, 74.019543 ], [ 110.742188, 74.019543 ], [ 110.742188, 73.922469 ], [ 111.445312, 73.922469 ], [ 111.445312, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.922469 ], [ 112.851562, 73.922469 ], [ 112.851562, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 114.960938, 73.627789 ], [ 114.960938, 73.726595 ], [ 117.070312, 73.726595 ], [ 117.070312, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.327858 ], [ 119.179688, 73.327858 ], [ 119.179688, 73.124945 ], [ 120.937500, 73.124945 ], [ 120.937500, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.327858 ], [ 123.398438, 73.327858 ], [ 123.398438, 73.726595 ], [ 123.750000, 73.726595 ], [ 123.750000, 73.627789 ], [ 124.804688, 73.627789 ], [ 124.804688, 73.528399 ], [ 126.914062, 73.528399 ], [ 126.914062, 73.428424 ], [ 127.265625, 73.428424 ], [ 127.265625, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.140778 ], [ 88.593750, 75.140778 ], [ 88.593750, 75.230667 ], [ 88.945312, 75.230667 ], [ 88.945312, 75.320025 ], [ 89.296875, 75.320025 ], [ 89.296875, 75.408854 ], [ 89.648438, 75.408854 ], [ 89.648438, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.584937 ], [ 90.351562, 75.584937 ], [ 90.351562, 75.672197 ], [ 91.757812, 75.672197 ], [ 91.757812, 75.758940 ], [ 92.812500, 75.758940 ], [ 92.812500, 75.845169 ], [ 93.164062, 75.845169 ], [ 93.164062, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.930885 ], [ 97.031250, 75.930885 ], [ 97.031250, 76.016094 ], [ 97.382812, 76.016094 ], [ 97.382812, 76.100796 ], [ 97.734375, 76.100796 ], [ 97.734375, 76.184995 ], [ 98.085938, 76.184995 ], [ 98.085938, 76.268695 ], [ 98.437500, 76.268695 ], [ 98.437500, 76.351896 ], [ 98.789062, 76.351896 ], [ 98.789062, 76.434604 ], [ 100.898438, 76.434604 ], [ 100.898438, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.389504 ], [ 103.007812, 77.389504 ], [ 103.007812, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.542096 ], [ 103.710938, 77.542096 ], [ 103.710938, 77.617709 ], [ 104.765625, 77.617709 ] ] ], [ [ [ 102.304688, 79.367701 ], [ 102.304688, 79.302640 ], [ 103.007812, 79.302640 ], [ 103.007812, 79.237185 ], [ 103.359375, 79.237185 ], [ 103.359375, 79.171335 ], [ 103.710938, 79.171335 ], [ 103.710938, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.971386 ], [ 104.414062, 78.971386 ], [ 104.414062, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.117188, 78.767792 ], [ 105.117188, 78.699106 ], [ 105.468750, 78.699106 ], [ 105.468750, 78.490552 ], [ 105.117188, 78.490552 ], [ 105.117188, 78.278201 ], [ 104.765625, 78.278201 ], [ 104.765625, 78.206563 ], [ 103.710938, 78.206563 ], [ 103.710938, 78.134493 ], [ 102.656250, 78.134493 ], [ 102.656250, 78.061989 ], [ 101.250000, 78.061989 ], [ 101.250000, 77.989049 ], [ 100.195312, 77.989049 ], [ 100.195312, 77.915669 ], [ 99.492188, 77.915669 ], [ 99.492188, 77.989049 ], [ 99.843750, 77.989049 ], [ 99.843750, 78.278201 ], [ 100.195312, 78.278201 ], [ 100.195312, 78.560488 ], [ 100.546875, 78.560488 ], [ 100.546875, 78.836065 ], [ 100.898438, 78.836065 ], [ 100.898438, 79.105086 ], [ 101.250000, 79.105086 ], [ 101.250000, 79.237185 ], [ 101.601562, 79.237185 ], [ 101.601562, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.367701 ], [ 102.304688, 79.367701 ] ] ], [ [ [ 96.328125, 81.201420 ], [ 96.328125, 81.093214 ], [ 96.679688, 81.093214 ], [ 96.679688, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.872827 ], [ 97.382812, 80.872827 ], [ 97.382812, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.647035 ], [ 98.085938, 80.647035 ], [ 98.085938, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.356995 ], [ 98.789062, 80.356995 ], [ 98.789062, 80.238501 ], [ 99.140625, 80.238501 ], [ 99.140625, 80.118564 ], [ 99.492188, 80.118564 ], [ 99.492188, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 79.812302 ], [ 100.195312, 79.812302 ], [ 100.195312, 79.302640 ], [ 99.843750, 79.302640 ], [ 99.843750, 78.903929 ], [ 99.492188, 78.903929 ], [ 99.492188, 78.836065 ], [ 98.437500, 78.836065 ], [ 98.437500, 78.767792 ], [ 97.031250, 78.767792 ], [ 97.031250, 78.836065 ], [ 96.328125, 78.836065 ], [ 96.328125, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 78.971386 ], [ 94.921875, 78.971386 ], [ 94.921875, 79.038437 ], [ 94.570312, 79.038437 ], [ 94.570312, 79.105086 ], [ 94.218750, 79.105086 ], [ 94.218750, 79.237185 ], [ 93.867188, 79.237185 ], [ 93.867188, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 79.367701 ], [ 93.164062, 79.367701 ], [ 93.164062, 79.560546 ], [ 92.812500, 79.560546 ], [ 92.812500, 79.935918 ], [ 92.460938, 79.935918 ], [ 92.460938, 80.118564 ], [ 92.109375, 80.118564 ], [ 92.109375, 80.178713 ], [ 91.757812, 80.178713 ], [ 91.757812, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.474065 ], [ 91.757812, 80.474065 ], [ 91.757812, 80.532071 ], [ 92.109375, 80.532071 ], [ 92.109375, 80.647035 ], [ 92.460938, 80.647035 ], [ 92.460938, 80.703997 ], [ 92.812500, 80.703997 ], [ 92.812500, 80.816891 ], [ 93.164062, 80.816891 ], [ 93.164062, 80.872827 ], [ 93.515625, 80.872827 ], [ 93.515625, 80.983688 ], [ 93.867188, 80.983688 ], [ 93.867188, 81.038617 ], [ 94.218750, 81.038617 ], [ 94.218750, 81.093214 ], [ 94.921875, 81.093214 ], [ 94.921875, 81.147481 ], [ 95.273438, 81.147481 ], [ 95.273438, 81.201420 ], [ 96.328125, 81.201420 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.242188, 71.524909 ], [ 133.593750, 71.524909 ], [ 133.593750, 71.413177 ], [ 134.648438, 71.413177 ], [ 134.648438, 71.524909 ], [ 135.351562, 71.524909 ], [ 135.351562, 71.635993 ], [ 135.703125, 71.635993 ], [ 135.703125, 71.524909 ], [ 136.406250, 71.524909 ], [ 136.406250, 71.413177 ], [ 137.109375, 71.413177 ], [ 137.109375, 71.300793 ], [ 137.812500, 71.300793 ], [ 137.812500, 71.524909 ], [ 138.164062, 71.524909 ], [ 138.164062, 71.635993 ], [ 138.867188, 71.635993 ], [ 138.867188, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.746432 ], [ 139.570312, 71.746432 ], [ 139.570312, 72.181804 ], [ 139.218750, 72.181804 ], [ 139.218750, 72.395706 ], [ 139.570312, 72.395706 ], [ 139.570312, 72.501722 ], [ 139.921875, 72.501722 ], [ 139.921875, 72.607120 ], [ 140.273438, 72.607120 ], [ 140.273438, 72.711903 ], [ 140.625000, 72.711903 ], [ 140.625000, 72.816074 ], [ 141.328125, 72.816074 ], [ 141.328125, 72.711903 ], [ 142.734375, 72.711903 ], [ 142.734375, 72.607120 ], [ 144.140625, 72.607120 ], [ 144.140625, 72.501722 ], [ 145.546875, 72.501722 ], [ 145.546875, 72.395706 ], [ 146.953125, 72.395706 ], [ 146.953125, 72.289067 ], [ 148.359375, 72.289067 ], [ 148.359375, 72.181804 ], [ 149.414062, 72.181804 ], [ 149.414062, 72.073911 ], [ 149.765625, 72.073911 ], [ 149.765625, 71.856229 ], [ 150.117188, 71.856229 ], [ 150.117188, 71.635993 ], [ 150.468750, 71.635993 ], [ 150.468750, 71.524909 ], [ 150.820312, 71.524909 ], [ 150.820312, 71.413177 ], [ 151.171875, 71.413177 ], [ 151.171875, 71.300793 ], [ 151.523438, 71.300793 ], [ 151.523438, 71.187754 ], [ 151.875000, 71.187754 ], [ 151.875000, 71.074056 ], [ 152.226562, 71.074056 ], [ 152.226562, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.844673 ], [ 154.335938, 70.844673 ], [ 154.335938, 70.959697 ], [ 156.445312, 70.959697 ], [ 156.445312, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.959697 ], [ 158.203125, 70.959697 ], [ 158.203125, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.728979 ], [ 159.257812, 70.728979 ], [ 159.257812, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 70.495574 ], [ 159.960938, 70.495574 ], [ 159.960938, 70.140364 ], [ 159.609375, 70.140364 ], [ 159.609375, 69.657086 ], [ 159.960938, 69.657086 ], [ 159.960938, 69.534518 ], [ 160.664062, 69.534518 ], [ 160.664062, 69.411242 ], [ 161.718750, 69.411242 ], [ 161.718750, 69.534518 ], [ 162.421875, 69.534518 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.534518 ], [ 165.234375, 69.534518 ], [ 165.234375, 69.411242 ], [ 166.992188, 69.411242 ], [ 166.992188, 69.534518 ], [ 167.695312, 69.534518 ], [ 167.695312, 69.411242 ], [ 168.046875, 69.411242 ], [ 168.046875, 69.162558 ], [ 168.398438, 69.162558 ], [ 168.398438, 69.037142 ], [ 168.750000, 69.037142 ], [ 168.750000, 68.911005 ], [ 169.101562, 68.911005 ], [ 169.101562, 68.656555 ], [ 169.804688, 68.656555 ], [ 169.804688, 68.784144 ], [ 170.507812, 68.784144 ], [ 170.507812, 68.911005 ], [ 170.859375, 68.911005 ], [ 170.859375, 69.162558 ], [ 170.507812, 69.162558 ], [ 170.507812, 69.411242 ], [ 170.156250, 69.411242 ], [ 170.156250, 69.900118 ], [ 170.507812, 69.900118 ], [ 170.507812, 70.140364 ], [ 170.859375, 70.140364 ], [ 170.859375, 70.020587 ], [ 171.914062, 70.020587 ], [ 171.914062, 69.900118 ], [ 172.968750, 69.900118 ], [ 172.968750, 69.778952 ], [ 175.078125, 69.778952 ], [ 175.078125, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 69.037142 ], [ 179.648438, 69.037142 ], [ 179.648438, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 65.802776 ], [ 127.265625, 65.802776 ], [ 127.265625, 73.327858 ], [ 127.617188, 73.327858 ], [ 127.617188, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.711903 ], [ 129.023438, 72.711903 ], [ 129.023438, 72.289067 ], [ 128.671875, 72.289067 ], [ 128.671875, 72.073911 ], [ 128.320312, 72.073911 ], [ 128.320312, 71.856229 ], [ 128.671875, 71.856229 ], [ 128.671875, 71.635993 ], [ 129.023438, 71.635993 ], [ 129.023438, 71.413177 ], [ 129.375000, 71.413177 ], [ 129.375000, 71.187754 ], [ 129.726562, 71.187754 ], [ 129.726562, 71.074056 ], [ 130.078125, 71.074056 ], [ 130.078125, 70.959697 ], [ 130.781250, 70.959697 ], [ 130.781250, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.959697 ], [ 131.484375, 70.959697 ], [ 131.484375, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.635993 ], [ 132.187500, 71.635993 ], [ 132.187500, 71.746432 ], [ 132.539062, 71.746432 ], [ 132.539062, 71.635993 ], [ 133.242188, 71.635993 ], [ 133.242188, 71.524909 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 179.648438, 70.844673 ], [ 179.648438, 70.728979 ], [ 178.945312, 70.728979 ], [ 178.945312, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 178.945312, 71.074056 ], [ 178.945312, 71.187754 ], [ 179.296875, 71.187754 ], [ 179.296875, 71.300793 ], [ 179.648438, 71.300793 ], [ 179.648438, 71.413177 ], [ 180.000000, 71.413177 ], [ 180.000000, 70.844673 ] ] ], [ [ [ 142.382812, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.528399 ], [ 143.085938, 73.528399 ], [ 143.085938, 73.428424 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.327858 ], [ 140.273438, 73.327858 ], [ 140.273438, 73.528399 ], [ 140.625000, 73.528399 ], [ 140.625000, 73.627789 ], [ 140.976562, 73.627789 ], [ 140.976562, 73.726595 ], [ 141.679688, 73.726595 ], [ 141.679688, 73.824820 ], [ 142.031250, 73.824820 ], [ 142.031250, 73.726595 ], [ 142.382812, 73.726595 ], [ 142.382812, 73.627789 ] ] ], [ [ [ 142.031250, 75.930885 ], [ 142.734375, 75.930885 ], [ 142.734375, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.758940 ], [ 144.140625, 75.758940 ], [ 144.140625, 75.672197 ], [ 144.843750, 75.672197 ], [ 144.843750, 75.584937 ], [ 145.195312, 75.584937 ], [ 145.195312, 75.408854 ], [ 144.843750, 75.408854 ], [ 144.843750, 75.140778 ], [ 144.492188, 75.140778 ], [ 144.492188, 74.867889 ], [ 144.140625, 74.867889 ], [ 144.140625, 74.775843 ], [ 142.031250, 74.775843 ], [ 142.031250, 74.867889 ], [ 140.625000, 74.867889 ], [ 140.625000, 74.775843 ], [ 139.921875, 74.775843 ], [ 139.921875, 74.683250 ], [ 139.218750, 74.683250 ], [ 139.218750, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.775843 ], [ 138.164062, 74.775843 ], [ 138.164062, 74.867889 ], [ 137.812500, 74.867889 ], [ 137.812500, 74.959392 ], [ 137.460938, 74.959392 ], [ 137.460938, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.584937 ], [ 137.460938, 75.584937 ], [ 137.460938, 75.930885 ], [ 138.164062, 75.930885 ], [ 138.164062, 76.016094 ], [ 138.867188, 76.016094 ], [ 138.867188, 76.100796 ], [ 141.328125, 76.100796 ], [ 141.328125, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.930885 ] ] ], [ [ [ 147.304688, 74.867889 ], [ 147.304688, 74.959392 ], [ 146.601562, 74.959392 ], [ 146.601562, 75.050354 ], [ 146.250000, 75.050354 ], [ 146.250000, 75.497157 ], [ 146.601562, 75.497157 ], [ 146.601562, 75.408854 ], [ 147.656250, 75.408854 ], [ 147.656250, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.230667 ], [ 149.414062, 75.230667 ], [ 149.414062, 75.140778 ], [ 150.117188, 75.140778 ], [ 150.117188, 75.050354 ], [ 150.820312, 75.050354 ], [ 150.820312, 74.959392 ], [ 150.468750, 74.959392 ], [ 150.468750, 74.867889 ], [ 150.117188, 74.867889 ], [ 150.117188, 74.775843 ], [ 149.765625, 74.775843 ], [ 149.765625, 74.683250 ], [ 148.359375, 74.683250 ], [ 148.359375, 74.775843 ], [ 147.656250, 74.775843 ], [ 147.656250, 74.867889 ], [ 147.304688, 74.867889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.617188, 73.327858 ], [ 127.617188, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.711903 ], [ 129.023438, 72.711903 ], [ 129.023438, 72.289067 ], [ 128.671875, 72.289067 ], [ 128.671875, 72.073911 ], [ 128.320312, 72.073911 ], [ 128.320312, 71.856229 ], [ 128.671875, 71.856229 ], [ 128.671875, 71.635993 ], [ 129.023438, 71.635993 ], [ 129.023438, 71.413177 ], [ 129.375000, 71.413177 ], [ 129.375000, 71.187754 ], [ 129.726562, 71.187754 ], [ 129.726562, 71.074056 ], [ 130.078125, 71.074056 ], [ 130.078125, 70.959697 ], [ 130.781250, 70.959697 ], [ 130.781250, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.959697 ], [ 131.484375, 70.959697 ], [ 131.484375, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.635993 ], [ 132.187500, 71.635993 ], [ 132.187500, 71.746432 ], [ 132.539062, 71.746432 ], [ 132.539062, 71.635993 ], [ 133.242188, 71.635993 ], [ 133.242188, 71.524909 ], [ 133.593750, 71.524909 ], [ 133.593750, 71.413177 ], [ 134.648438, 71.413177 ], [ 134.648438, 71.524909 ], [ 135.351562, 71.524909 ], [ 135.351562, 71.635993 ], [ 135.703125, 71.635993 ], [ 135.703125, 71.524909 ], [ 136.406250, 71.524909 ], [ 136.406250, 71.413177 ], [ 137.109375, 71.413177 ], [ 137.109375, 71.300793 ], [ 137.812500, 71.300793 ], [ 137.812500, 71.524909 ], [ 138.164062, 71.524909 ], [ 138.164062, 71.635993 ], [ 138.867188, 71.635993 ], [ 138.867188, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.746432 ], [ 139.570312, 71.746432 ], [ 139.570312, 72.181804 ], [ 139.218750, 72.181804 ], [ 139.218750, 72.395706 ], [ 139.570312, 72.395706 ], [ 139.570312, 72.501722 ], [ 139.921875, 72.501722 ], [ 139.921875, 72.607120 ], [ 140.273438, 72.607120 ], [ 140.273438, 72.711903 ], [ 140.625000, 72.711903 ], [ 140.625000, 72.816074 ], [ 141.328125, 72.816074 ], [ 141.328125, 72.711903 ], [ 142.734375, 72.711903 ], [ 142.734375, 72.607120 ], [ 144.140625, 72.607120 ], [ 144.140625, 72.501722 ], [ 145.546875, 72.501722 ], [ 145.546875, 72.395706 ], [ 146.953125, 72.395706 ], [ 146.953125, 72.289067 ], [ 148.359375, 72.289067 ], [ 148.359375, 72.181804 ], [ 149.414062, 72.181804 ], [ 149.414062, 72.073911 ], [ 149.765625, 72.073911 ], [ 149.765625, 71.856229 ], [ 150.117188, 71.856229 ], [ 150.117188, 71.635993 ], [ 150.468750, 71.635993 ], [ 150.468750, 71.524909 ], [ 150.820312, 71.524909 ], [ 150.820312, 71.413177 ], [ 151.171875, 71.413177 ], [ 151.171875, 71.300793 ], [ 151.523438, 71.300793 ], [ 151.523438, 71.187754 ], [ 151.875000, 71.187754 ], [ 151.875000, 71.074056 ], [ 152.226562, 71.074056 ], [ 152.226562, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.844673 ], [ 154.335938, 70.844673 ], [ 154.335938, 70.959697 ], [ 156.445312, 70.959697 ], [ 156.445312, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.959697 ], [ 158.203125, 70.959697 ], [ 158.203125, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.728979 ], [ 159.257812, 70.728979 ], [ 159.257812, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 70.495574 ], [ 159.960938, 70.495574 ], [ 159.960938, 70.140364 ], [ 159.609375, 70.140364 ], [ 159.609375, 69.657086 ], [ 159.960938, 69.657086 ], [ 159.960938, 69.534518 ], [ 160.664062, 69.534518 ], [ 160.664062, 69.411242 ], [ 161.718750, 69.411242 ], [ 161.718750, 69.534518 ], [ 162.421875, 69.534518 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.534518 ], [ 165.234375, 69.534518 ], [ 165.234375, 69.411242 ], [ 166.992188, 69.411242 ], [ 166.992188, 69.534518 ], [ 167.695312, 69.534518 ], [ 167.695312, 69.411242 ], [ 168.046875, 69.411242 ], [ 168.046875, 69.162558 ], [ 168.398438, 69.162558 ], [ 168.398438, 69.037142 ], [ 168.750000, 69.037142 ], [ 168.750000, 68.911005 ], [ 169.101562, 68.911005 ], [ 169.101562, 68.656555 ], [ 169.804688, 68.656555 ], [ 169.804688, 68.784144 ], [ 170.507812, 68.784144 ], [ 170.507812, 68.911005 ], [ 170.859375, 68.911005 ], [ 170.859375, 69.162558 ], [ 170.507812, 69.162558 ], [ 170.507812, 69.411242 ], [ 170.156250, 69.411242 ], [ 170.156250, 69.900118 ], [ 170.507812, 69.900118 ], [ 170.507812, 70.140364 ], [ 170.859375, 70.140364 ], [ 170.859375, 70.020587 ], [ 171.914062, 70.020587 ], [ 171.914062, 69.900118 ], [ 172.968750, 69.900118 ], [ 172.968750, 69.778952 ], [ 175.078125, 69.778952 ], [ 175.078125, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 69.037142 ], [ 179.648438, 69.037142 ], [ 179.648438, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 65.802776 ], [ 127.265625, 65.802776 ], [ 127.265625, 73.327858 ], [ 127.617188, 73.327858 ] ] ], [ [ [ 180.000000, 71.413177 ], [ 180.000000, 70.844673 ], [ 179.648438, 70.844673 ], [ 179.648438, 70.728979 ], [ 178.945312, 70.728979 ], [ 178.945312, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 178.945312, 71.074056 ], [ 178.945312, 71.187754 ], [ 179.296875, 71.187754 ], [ 179.296875, 71.300793 ], [ 179.648438, 71.300793 ], [ 179.648438, 71.413177 ], [ 180.000000, 71.413177 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 142.031250, 73.726595 ], [ 142.382812, 73.726595 ], [ 142.382812, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.528399 ], [ 143.085938, 73.528399 ], [ 143.085938, 73.428424 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.327858 ], [ 140.273438, 73.327858 ], [ 140.273438, 73.528399 ], [ 140.625000, 73.528399 ], [ 140.625000, 73.627789 ], [ 140.976562, 73.627789 ], [ 140.976562, 73.726595 ], [ 141.679688, 73.726595 ], [ 141.679688, 73.824820 ], [ 142.031250, 73.824820 ] ] ], [ [ [ 141.328125, 76.100796 ], [ 141.328125, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.930885 ], [ 142.734375, 75.930885 ], [ 142.734375, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.758940 ], [ 144.140625, 75.758940 ], [ 144.140625, 75.672197 ], [ 144.843750, 75.672197 ], [ 144.843750, 75.584937 ], [ 145.195312, 75.584937 ], [ 145.195312, 75.408854 ], [ 144.843750, 75.408854 ], [ 144.843750, 75.140778 ], [ 144.492188, 75.140778 ], [ 144.492188, 74.867889 ], [ 144.140625, 74.867889 ], [ 144.140625, 74.775843 ], [ 142.031250, 74.775843 ], [ 142.031250, 74.867889 ], [ 140.625000, 74.867889 ], [ 140.625000, 74.775843 ], [ 139.921875, 74.775843 ], [ 139.921875, 74.683250 ], [ 139.218750, 74.683250 ], [ 139.218750, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.775843 ], [ 138.164062, 74.775843 ], [ 138.164062, 74.867889 ], [ 137.812500, 74.867889 ], [ 137.812500, 74.959392 ], [ 137.460938, 74.959392 ], [ 137.460938, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.584937 ], [ 137.460938, 75.584937 ], [ 137.460938, 75.930885 ], [ 138.164062, 75.930885 ], [ 138.164062, 76.016094 ], [ 138.867188, 76.016094 ], [ 138.867188, 76.100796 ], [ 141.328125, 76.100796 ] ] ], [ [ [ 146.601562, 75.497157 ], [ 146.601562, 75.408854 ], [ 147.656250, 75.408854 ], [ 147.656250, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.230667 ], [ 149.414062, 75.230667 ], [ 149.414062, 75.140778 ], [ 150.117188, 75.140778 ], [ 150.117188, 75.050354 ], [ 150.820312, 75.050354 ], [ 150.820312, 74.959392 ], [ 150.468750, 74.959392 ], [ 150.468750, 74.867889 ], [ 150.117188, 74.867889 ], [ 150.117188, 74.775843 ], [ 149.765625, 74.775843 ], [ 149.765625, 74.683250 ], [ 148.359375, 74.683250 ], [ 148.359375, 74.775843 ], [ 147.656250, 74.775843 ], [ 147.656250, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.959392 ], [ 146.601562, 74.959392 ], [ 146.601562, 75.050354 ], [ 146.250000, 75.050354 ], [ 146.250000, 75.497157 ], [ 146.601562, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.804688, -83.960794 ], [ -169.628906, -83.960794 ], [ -169.628906, -83.997669 ], [ -169.453125, -83.997669 ], [ -169.453125, -84.034319 ], [ -169.277344, -84.034319 ], [ -169.277344, -84.070747 ], [ -169.101562, -84.070747 ], [ -169.101562, -84.106953 ], [ -168.925781, -84.106953 ], [ -168.925781, -84.160849 ], [ -168.750000, -84.160849 ], [ -168.750000, -84.214254 ], [ -168.574219, -84.214254 ], [ -168.574219, -84.267172 ], [ -168.398438, -84.267172 ], [ -168.398438, -84.302183 ], [ -168.222656, -84.302183 ], [ -168.222656, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.371566 ], [ -167.871094, -84.371566 ], [ -167.871094, -84.405941 ], [ -167.695312, -84.405941 ], [ -167.695312, -84.457112 ], [ -167.519531, -84.457112 ], [ -167.519531, -84.490966 ], [ -167.343750, -84.490966 ], [ -167.343750, -84.524614 ], [ -167.167969, -84.524614 ], [ -167.167969, -84.558057 ], [ -166.992188, -84.558057 ], [ -166.992188, -84.591297 ], [ -166.816406, -84.591297 ], [ -166.816406, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.624334 ], [ -166.464844, -84.624334 ], [ -166.464844, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.657170 ], [ -166.113281, -84.657170 ], [ -166.113281, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.689806 ], [ -165.761719, -84.689806 ], [ -165.761719, -84.706049 ], [ -165.410156, -84.706049 ], [ -165.410156, -84.722243 ], [ -165.234375, -84.722243 ], [ -165.234375, -84.738387 ], [ -165.058594, -84.738387 ], [ -165.058594, -84.754482 ], [ -164.882812, -84.754482 ], [ -164.882812, -84.770528 ], [ -164.707031, -84.770528 ], [ -164.707031, -84.786525 ], [ -164.531250, -84.786525 ], [ -164.531250, -84.802474 ], [ -164.355469, -84.802474 ], [ -164.355469, -84.818373 ], [ -164.179688, -84.818373 ], [ -164.179688, -84.834225 ], [ -164.003906, -84.834225 ], [ -164.003906, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.897147 ], [ -163.652344, -84.897147 ], [ -163.652344, -84.912758 ], [ -163.476562, -84.912758 ], [ -163.476562, -84.943837 ], [ -163.300781, -84.943837 ], [ -163.300781, -84.974726 ], [ -163.125000, -84.974726 ], [ -163.125000, -84.990100 ], [ -162.949219, -84.990100 ], [ -162.949219, -85.020708 ], [ -162.773438, -85.020708 ], [ -162.773438, -85.051129 ], [ -162.597656, -85.051129 ], [ -162.597656, -85.066270 ], [ -162.421875, -85.066270 ], [ -162.421875, -85.096413 ], [ -162.246094, -85.096413 ], [ -162.246094, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.673513 ], [ -179.824219, -84.673513 ], [ -179.824219, -84.558057 ], [ -179.648438, -84.558057 ], [ -179.648438, -84.440107 ], [ -179.472656, -84.440107 ], [ -179.472656, -84.336980 ], [ -179.296875, -84.336980 ], [ -179.296875, -84.214254 ], [ -179.121094, -84.214254 ], [ -179.121094, -84.160849 ], [ -178.945312, -84.160849 ], [ -178.945312, -84.196507 ], [ -178.769531, -84.196507 ], [ -178.769531, -84.231947 ], [ -178.593750, -84.231947 ], [ -178.593750, -84.249587 ], [ -178.417969, -84.249587 ], [ -178.417969, -84.284704 ], [ -178.242188, -84.284704 ], [ -178.242188, -84.302183 ], [ -178.066406, -84.302183 ], [ -178.066406, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.371566 ], [ -177.714844, -84.371566 ], [ -177.714844, -84.388780 ], [ -177.539062, -84.388780 ], [ -177.539062, -84.423050 ], [ -177.363281, -84.423050 ], [ -177.363281, -84.457112 ], [ -177.187500, -84.457112 ], [ -177.187500, -84.405941 ], [ -177.011719, -84.405941 ], [ -177.011719, -84.354300 ], [ -176.835938, -84.354300 ], [ -176.835938, -84.302183 ], [ -176.660156, -84.302183 ], [ -176.660156, -84.249587 ], [ -176.484375, -84.249587 ], [ -176.484375, -84.196507 ], [ -176.308594, -84.196507 ], [ -176.308594, -84.142939 ], [ -176.132812, -84.142939 ], [ -176.132812, -84.106953 ], [ -175.957031, -84.106953 ], [ -175.957031, -84.124973 ], [ -175.781250, -84.124973 ], [ -175.781250, -84.160849 ], [ -175.605469, -84.160849 ], [ -175.605469, -84.214254 ], [ -175.429688, -84.214254 ], [ -175.429688, -84.267172 ], [ -175.253906, -84.267172 ], [ -175.253906, -84.319608 ], [ -175.078125, -84.319608 ], [ -175.078125, -84.371566 ], [ -174.902344, -84.371566 ], [ -174.902344, -84.423050 ], [ -174.726562, -84.423050 ], [ -174.726562, -84.474065 ], [ -174.550781, -84.474065 ], [ -174.550781, -84.524614 ], [ -174.199219, -84.524614 ], [ -174.199219, -84.457112 ], [ -174.023438, -84.457112 ], [ -174.023438, -84.405941 ], [ -173.847656, -84.405941 ], [ -173.847656, -84.336980 ], [ -173.671875, -84.336980 ], [ -173.671875, -84.284704 ], [ -173.496094, -84.284704 ], [ -173.496094, -84.231947 ], [ -173.320312, -84.231947 ], [ -173.320312, -84.160849 ], [ -173.144531, -84.160849 ], [ -173.144531, -84.088878 ], [ -172.968750, -84.088878 ], [ -172.968750, -84.052561 ], [ -172.792969, -84.052561 ], [ -172.792969, -84.034319 ], [ -172.441406, -84.034319 ], [ -172.441406, -84.016022 ], [ -172.089844, -84.016022 ], [ -172.089844, -83.997669 ], [ -171.738281, -83.997669 ], [ -171.738281, -83.979259 ], [ -171.386719, -83.979259 ], [ -171.386719, -83.960794 ], [ -171.035156, -83.960794 ], [ -171.035156, -83.942272 ], [ -170.683594, -83.942272 ], [ -170.683594, -83.923693 ], [ -170.332031, -83.923693 ], [ -170.332031, -83.905058 ], [ -169.980469, -83.905058 ], [ -169.980469, -83.923693 ], [ -169.804688, -83.923693 ], [ -169.804688, -83.960794 ] ] ], [ [ [ -154.863281, -85.111416 ], [ -154.863281, -85.126373 ], [ -155.390625, -85.126373 ], [ -155.390625, -85.111416 ], [ -154.863281, -85.111416 ] ] ], [ [ [ -143.613281, -85.111416 ], [ -143.613281, -85.081364 ], [ -143.437500, -85.081364 ], [ -143.437500, -85.066270 ], [ -143.261719, -85.066270 ], [ -143.261719, -85.051129 ], [ -143.085938, -85.051129 ], [ -143.085938, -84.818373 ], [ -142.910156, -84.818373 ], [ -142.910156, -84.574702 ], [ -143.613281, -84.574702 ], [ -143.613281, -84.558057 ], [ -145.019531, -84.558057 ], [ -145.019531, -84.541361 ], [ -146.250000, -84.541361 ], [ -146.250000, -84.524614 ], [ -146.953125, -84.524614 ], [ -146.953125, -84.507816 ], [ -147.304688, -84.507816 ], [ -147.304688, -84.490966 ], [ -147.480469, -84.490966 ], [ -147.480469, -84.474065 ], [ -147.832031, -84.474065 ], [ -147.832031, -84.457112 ], [ -148.007812, -84.457112 ], [ -148.007812, -84.440107 ], [ -148.359375, -84.440107 ], [ -148.359375, -84.423050 ], [ -148.535156, -84.423050 ], [ -148.535156, -84.405941 ], [ -148.710938, -84.405941 ], [ -148.710938, -84.388780 ], [ -149.062500, -84.388780 ], [ -149.062500, -84.371566 ], [ -149.238281, -84.371566 ], [ -149.238281, -84.354300 ], [ -149.589844, -84.354300 ], [ -149.589844, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.319608 ], [ -150.117188, -84.319608 ], [ -150.117188, -84.267172 ], [ -150.292969, -84.267172 ], [ -150.292969, -84.160849 ], [ -150.468750, -84.160849 ], [ -150.468750, -84.070747 ], [ -150.644531, -84.070747 ], [ -150.644531, -83.960794 ], [ -150.820312, -83.960794 ], [ -150.820312, -83.905058 ], [ -150.996094, -83.905058 ], [ -150.996094, -83.886366 ], [ -151.347656, -83.886366 ], [ -151.347656, -83.867616 ], [ -151.523438, -83.867616 ], [ -151.523438, -83.848810 ], [ -151.875000, -83.848810 ], [ -151.875000, -83.829945 ], [ -152.050781, -83.829945 ], [ -152.050781, -83.811024 ], [ -152.402344, -83.811024 ], [ -152.402344, -83.792044 ], [ -152.578125, -83.792044 ], [ -152.578125, -83.773007 ], [ -152.753906, -83.773007 ], [ -152.753906, -83.753911 ], [ -153.105469, -83.753911 ], [ -153.105469, -83.734757 ], [ -153.281250, -83.734757 ], [ -153.281250, -83.715544 ], [ -153.632812, -83.715544 ], [ -153.632812, -83.480366 ], [ -153.457031, -83.480366 ], [ -153.457031, -83.153111 ], [ -153.281250, -83.153111 ], [ -153.281250, -82.940327 ], [ -153.105469, -82.940327 ], [ -153.105469, -82.787476 ], [ -152.929688, -82.787476 ], [ -152.929688, -82.653843 ], [ -152.753906, -82.653843 ], [ -152.753906, -82.517749 ], [ -152.578125, -82.517749 ], [ -152.578125, -82.355800 ], [ -152.753906, -82.355800 ], [ -152.753906, -82.166446 ], [ -152.929688, -82.166446 ], [ -152.929688, -82.045740 ], [ -153.105469, -82.045740 ], [ -153.105469, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.972431 ], [ -153.457031, -81.972431 ], [ -153.457031, -81.947846 ], [ -153.632812, -81.947846 ], [ -153.632812, -81.923186 ], [ -153.808594, -81.923186 ], [ -153.808594, -81.898451 ], [ -153.984375, -81.898451 ], [ -153.984375, -81.873641 ], [ -154.160156, -81.873641 ], [ -154.160156, -81.823794 ], [ -154.335938, -81.823794 ], [ -154.335938, -81.798757 ], [ -154.511719, -81.798757 ], [ -154.511719, -81.748454 ], [ -154.687500, -81.748454 ], [ -154.687500, -81.646927 ], [ -154.863281, -81.646927 ], [ -154.863281, -81.569968 ], [ -155.039062, -81.569968 ], [ -155.039062, -81.466261 ], [ -155.214844, -81.466261 ], [ -155.214844, -81.413933 ], [ -155.390625, -81.413933 ], [ -155.390625, -81.361287 ], [ -155.566406, -81.361287 ], [ -155.566406, -81.334844 ], [ -155.742188, -81.334844 ], [ -155.742188, -81.308321 ], [ -155.917969, -81.308321 ], [ -155.917969, -81.255032 ], [ -156.093750, -81.255032 ], [ -156.093750, -81.228267 ], [ -156.269531, -81.228267 ], [ -156.269531, -81.201420 ], [ -156.445312, -81.201420 ], [ -156.445312, -81.147481 ], [ -156.621094, -81.147481 ], [ -156.621094, -81.120388 ], [ -156.796875, -81.120388 ], [ -156.796875, -81.093214 ], [ -156.269531, -81.093214 ], [ -156.269531, -81.120388 ], [ -155.039062, -81.120388 ], [ -155.039062, -81.147481 ], [ -153.984375, -81.147481 ], [ -153.984375, -81.120388 ], [ -153.632812, -81.120388 ], [ -153.632812, -81.093214 ], [ -153.105469, -81.093214 ], [ -153.105469, -81.065957 ], [ -152.578125, -81.065957 ], [ -152.578125, -81.038617 ], [ -152.226562, -81.038617 ], [ -152.226562, -81.011194 ], [ -152.050781, -81.011194 ], [ -152.050781, -81.038617 ], [ -151.875000, -81.038617 ], [ -151.875000, -81.093214 ], [ -151.699219, -81.093214 ], [ -151.699219, -81.120388 ], [ -151.523438, -81.120388 ], [ -151.523438, -81.174491 ], [ -151.347656, -81.174491 ], [ -151.347656, -81.201420 ], [ -151.171875, -81.201420 ], [ -151.171875, -81.255032 ], [ -150.996094, -81.255032 ], [ -150.996094, -81.281717 ], [ -150.820312, -81.281717 ], [ -150.820312, -81.334844 ], [ -150.468750, -81.334844 ], [ -150.468750, -81.308321 ], [ -150.292969, -81.308321 ], [ -150.292969, -81.281717 ], [ -150.117188, -81.281717 ], [ -150.117188, -81.255032 ], [ -149.941406, -81.255032 ], [ -149.941406, -81.228267 ], [ -149.765625, -81.228267 ], [ -149.765625, -81.174491 ], [ -149.589844, -81.174491 ], [ -149.589844, -81.147481 ], [ -149.414062, -81.147481 ], [ -149.414062, -81.120388 ], [ -149.238281, -81.120388 ], [ -149.238281, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -81.065957 ], [ -148.886719, -81.065957 ], [ -148.886719, -81.038617 ], [ -148.710938, -81.038617 ], [ -148.710938, -80.983688 ], [ -148.535156, -80.983688 ], [ -148.535156, -80.956099 ], [ -148.359375, -80.956099 ], [ -148.359375, -80.900669 ], [ -148.183594, -80.900669 ], [ -148.183594, -80.872827 ], [ -148.007812, -80.872827 ], [ -148.007812, -80.844901 ], [ -147.832031, -80.844901 ], [ -147.832031, -80.788795 ], [ -147.656250, -80.788795 ], [ -147.656250, -80.760615 ], [ -147.480469, -80.760615 ], [ -147.480469, -80.703997 ], [ -147.304688, -80.703997 ], [ -147.304688, -80.647035 ], [ -147.128906, -80.647035 ], [ -147.128906, -80.589727 ], [ -146.953125, -80.589727 ], [ -146.953125, -80.503112 ], [ -146.777344, -80.503112 ], [ -146.777344, -80.444931 ], [ -146.601562, -80.444931 ], [ -146.601562, -80.386396 ], [ -146.425781, -80.386396 ], [ -146.425781, -80.238501 ], [ -146.601562, -80.238501 ], [ -146.601562, -80.058050 ], [ -146.777344, -80.058050 ], [ -146.777344, -79.935918 ], [ -146.953125, -79.935918 ], [ -146.953125, -79.905154 ], [ -147.128906, -79.905154 ], [ -147.128906, -79.843346 ], [ -147.304688, -79.843346 ], [ -147.304688, -79.812302 ], [ -147.480469, -79.812302 ], [ -147.480469, -79.781164 ], [ -147.656250, -79.781164 ], [ -147.656250, -79.718605 ], [ -147.832031, -79.718605 ], [ -147.832031, -79.687184 ], [ -148.007812, -79.687184 ], [ -148.007812, -79.655668 ], [ -148.183594, -79.655668 ], [ -148.183594, -79.624056 ], [ -148.359375, -79.624056 ], [ -148.359375, -79.592349 ], [ -148.535156, -79.592349 ], [ -148.535156, -79.560546 ], [ -148.710938, -79.560546 ], [ -148.710938, -79.528647 ], [ -148.886719, -79.528647 ], [ -148.886719, -79.496652 ], [ -149.062500, -79.496652 ], [ -149.062500, -79.464560 ], [ -149.238281, -79.464560 ], [ -149.238281, -79.432371 ], [ -149.414062, -79.432371 ], [ -149.414062, -79.400085 ], [ -149.589844, -79.400085 ], [ -149.589844, -79.367701 ], [ -150.117188, -79.367701 ], [ -150.117188, -79.335219 ], [ -151.171875, -79.335219 ], [ -151.171875, -79.302640 ], [ -151.875000, -79.302640 ], [ -151.875000, -79.269962 ], [ -152.402344, -79.269962 ], [ -152.402344, -79.237185 ], [ -152.753906, -79.237185 ], [ -152.753906, -79.204309 ], [ -153.281250, -79.204309 ], [ -153.281250, -79.171335 ], [ -153.808594, -79.171335 ], [ -153.808594, -79.138260 ], [ -154.511719, -79.138260 ], [ -154.511719, -79.105086 ], [ -155.214844, -79.105086 ], [ -155.214844, -79.071812 ], [ -155.390625, -79.071812 ], [ -155.390625, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.789062, -85.126373 ], [ -143.789062, -85.111416 ], [ -143.613281, -85.111416 ] ] ], [ [ [ -159.609375, -79.038437 ], [ -159.433594, -79.038437 ], [ -159.433594, -79.269962 ], [ -159.257812, -79.269962 ], [ -159.257812, -79.496652 ], [ -159.433594, -79.496652 ], [ -159.433594, -79.528647 ], [ -159.960938, -79.528647 ], [ -159.960938, -79.560546 ], [ -160.312500, -79.560546 ], [ -160.312500, -79.592349 ], [ -160.839844, -79.592349 ], [ -160.839844, -79.624056 ], [ -161.367188, -79.624056 ], [ -161.367188, -79.560546 ], [ -161.542969, -79.560546 ], [ -161.542969, -79.528647 ], [ -161.718750, -79.528647 ], [ -161.718750, -79.464560 ], [ -161.894531, -79.464560 ], [ -161.894531, -79.400085 ], [ -162.070312, -79.400085 ], [ -162.070312, -79.367701 ], [ -162.246094, -79.367701 ], [ -162.246094, -79.302640 ], [ -162.421875, -79.302640 ], [ -162.421875, -79.237185 ], [ -162.597656, -79.237185 ], [ -162.597656, -79.138260 ], [ -162.773438, -79.138260 ], [ -162.773438, -79.071812 ], [ -162.949219, -79.071812 ], [ -162.949219, -79.004962 ], [ -159.609375, -79.004962 ], [ -159.609375, -79.038437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.905058 ], [ -169.980469, -83.923693 ], [ -169.804688, -83.923693 ], [ -169.804688, -83.960794 ], [ -169.628906, -83.960794 ], [ -169.628906, -83.997669 ], [ -169.453125, -83.997669 ], [ -169.453125, -84.034319 ], [ -169.277344, -84.034319 ], [ -169.277344, -84.070747 ], [ -169.101562, -84.070747 ], [ -169.101562, -84.106953 ], [ -168.925781, -84.106953 ], [ -168.925781, -84.160849 ], [ -168.750000, -84.160849 ], [ -168.750000, -84.214254 ], [ -168.574219, -84.214254 ], [ -168.574219, -84.267172 ], [ -168.398438, -84.267172 ], [ -168.398438, -84.302183 ], [ -168.222656, -84.302183 ], [ -168.222656, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.371566 ], [ -167.871094, -84.371566 ], [ -167.871094, -84.405941 ], [ -167.695312, -84.405941 ], [ -167.695312, -84.457112 ], [ -167.519531, -84.457112 ], [ -167.519531, -84.490966 ], [ -167.343750, -84.490966 ], [ -167.343750, -84.524614 ], [ -167.167969, -84.524614 ], [ -167.167969, -84.558057 ], [ -166.992188, -84.558057 ], [ -166.992188, -84.591297 ], [ -166.816406, -84.591297 ], [ -166.816406, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.624334 ], [ -166.464844, -84.624334 ], [ -166.464844, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.657170 ], [ -166.113281, -84.657170 ], [ -166.113281, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.689806 ], [ -165.761719, -84.689806 ], [ -165.761719, -84.706049 ], [ -165.410156, -84.706049 ], [ -165.410156, -84.722243 ], [ -165.234375, -84.722243 ], [ -165.234375, -84.738387 ], [ -165.058594, -84.738387 ], [ -165.058594, -84.754482 ], [ -164.882812, -84.754482 ], [ -164.882812, -84.770528 ], [ -164.707031, -84.770528 ], [ -164.707031, -84.786525 ], [ -164.531250, -84.786525 ], [ -164.531250, -84.802474 ], [ -164.355469, -84.802474 ], [ -164.355469, -84.818373 ], [ -164.179688, -84.818373 ], [ -164.179688, -84.834225 ], [ -164.003906, -84.834225 ], [ -164.003906, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.897147 ], [ -163.652344, -84.897147 ], [ -163.652344, -84.912758 ], [ -163.476562, -84.912758 ], [ -163.476562, -84.943837 ], [ -163.300781, -84.943837 ], [ -163.300781, -84.974726 ], [ -163.125000, -84.974726 ], [ -163.125000, -84.990100 ], [ -162.949219, -84.990100 ], [ -162.949219, -85.020708 ], [ -162.773438, -85.020708 ], [ -162.773438, -85.051129 ], [ -162.597656, -85.051129 ], [ -162.597656, -85.066270 ], [ -162.421875, -85.066270 ], [ -162.421875, -85.096413 ], [ -162.246094, -85.096413 ], [ -162.246094, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.673513 ], [ -179.824219, -84.673513 ], [ -179.824219, -84.558057 ], [ -179.648438, -84.558057 ], [ -179.648438, -84.440107 ], [ -179.472656, -84.440107 ], [ -179.472656, -84.336980 ], [ -179.296875, -84.336980 ], [ -179.296875, -84.214254 ], [ -179.121094, -84.214254 ], [ -179.121094, -84.160849 ], [ -178.945312, -84.160849 ], [ -178.945312, -84.196507 ], [ -178.769531, -84.196507 ], [ -178.769531, -84.231947 ], [ -178.593750, -84.231947 ], [ -178.593750, -84.249587 ], [ -178.417969, -84.249587 ], [ -178.417969, -84.284704 ], [ -178.242188, -84.284704 ], [ -178.242188, -84.302183 ], [ -178.066406, -84.302183 ], [ -178.066406, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.371566 ], [ -177.714844, -84.371566 ], [ -177.714844, -84.388780 ], [ -177.539062, -84.388780 ], [ -177.539062, -84.423050 ], [ -177.363281, -84.423050 ], [ -177.363281, -84.457112 ], [ -177.187500, -84.457112 ], [ -177.187500, -84.405941 ], [ -177.011719, -84.405941 ], [ -177.011719, -84.354300 ], [ -176.835938, -84.354300 ], [ -176.835938, -84.302183 ], [ -176.660156, -84.302183 ], [ -176.660156, -84.249587 ], [ -176.484375, -84.249587 ], [ -176.484375, -84.196507 ], [ -176.308594, -84.196507 ], [ -176.308594, -84.142939 ], [ -176.132812, -84.142939 ], [ -176.132812, -84.106953 ], [ -175.957031, -84.106953 ], [ -175.957031, -84.124973 ], [ -175.781250, -84.124973 ], [ -175.781250, -84.160849 ], [ -175.605469, -84.160849 ], [ -175.605469, -84.214254 ], [ -175.429688, -84.214254 ], [ -175.429688, -84.267172 ], [ -175.253906, -84.267172 ], [ -175.253906, -84.319608 ], [ -175.078125, -84.319608 ], [ -175.078125, -84.371566 ], [ -174.902344, -84.371566 ], [ -174.902344, -84.423050 ], [ -174.726562, -84.423050 ], [ -174.726562, -84.474065 ], [ -174.550781, -84.474065 ], [ -174.550781, -84.524614 ], [ -174.199219, -84.524614 ], [ -174.199219, -84.457112 ], [ -174.023438, -84.457112 ], [ -174.023438, -84.405941 ], [ -173.847656, -84.405941 ], [ -173.847656, -84.336980 ], [ -173.671875, -84.336980 ], [ -173.671875, -84.284704 ], [ -173.496094, -84.284704 ], [ -173.496094, -84.231947 ], [ -173.320312, -84.231947 ], [ -173.320312, -84.160849 ], [ -173.144531, -84.160849 ], [ -173.144531, -84.088878 ], [ -172.968750, -84.088878 ], [ -172.968750, -84.052561 ], [ -172.792969, -84.052561 ], [ -172.792969, -84.034319 ], [ -172.441406, -84.034319 ], [ -172.441406, -84.016022 ], [ -172.089844, -84.016022 ], [ -172.089844, -83.997669 ], [ -171.738281, -83.997669 ], [ -171.738281, -83.979259 ], [ -171.386719, -83.979259 ], [ -171.386719, -83.960794 ], [ -171.035156, -83.960794 ], [ -171.035156, -83.942272 ], [ -170.683594, -83.942272 ], [ -170.683594, -83.923693 ], [ -170.332031, -83.923693 ], [ -170.332031, -83.905058 ], [ -169.980469, -83.905058 ] ] ], [ [ [ -154.863281, -85.126373 ], [ -155.390625, -85.126373 ], [ -155.390625, -85.111416 ], [ -154.863281, -85.111416 ], [ -154.863281, -85.126373 ] ] ], [ [ [ -134.121094, -85.126373 ], [ -143.789062, -85.126373 ], [ -143.789062, -85.111416 ], [ -143.613281, -85.111416 ], [ -143.613281, -85.081364 ], [ -143.437500, -85.081364 ], [ -143.437500, -85.066270 ], [ -143.261719, -85.066270 ], [ -143.261719, -85.051129 ], [ -143.085938, -85.051129 ], [ -143.085938, -84.818373 ], [ -142.910156, -84.818373 ], [ -142.910156, -84.574702 ], [ -143.613281, -84.574702 ], [ -143.613281, -84.558057 ], [ -145.019531, -84.558057 ], [ -145.019531, -84.541361 ], [ -146.250000, -84.541361 ], [ -146.250000, -84.524614 ], [ -146.953125, -84.524614 ], [ -146.953125, -84.507816 ], [ -147.304688, -84.507816 ], [ -147.304688, -84.490966 ], [ -147.480469, -84.490966 ], [ -147.480469, -84.474065 ], [ -147.832031, -84.474065 ], [ -147.832031, -84.457112 ], [ -148.007812, -84.457112 ], [ -148.007812, -84.440107 ], [ -148.359375, -84.440107 ], [ -148.359375, -84.423050 ], [ -148.535156, -84.423050 ], [ -148.535156, -84.405941 ], [ -148.710938, -84.405941 ], [ -148.710938, -84.388780 ], [ -149.062500, -84.388780 ], [ -149.062500, -84.371566 ], [ -149.238281, -84.371566 ], [ -149.238281, -84.354300 ], [ -149.589844, -84.354300 ], [ -149.589844, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.319608 ], [ -150.117188, -84.319608 ], [ -150.117188, -84.267172 ], [ -150.292969, -84.267172 ], [ -150.292969, -84.160849 ], [ -150.468750, -84.160849 ], [ -150.468750, -84.070747 ], [ -150.644531, -84.070747 ], [ -150.644531, -83.960794 ], [ -150.820312, -83.960794 ], [ -150.820312, -83.905058 ], [ -150.996094, -83.905058 ], [ -150.996094, -83.886366 ], [ -151.347656, -83.886366 ], [ -151.347656, -83.867616 ], [ -151.523438, -83.867616 ], [ -151.523438, -83.848810 ], [ -151.875000, -83.848810 ], [ -151.875000, -83.829945 ], [ -152.050781, -83.829945 ], [ -152.050781, -83.811024 ], [ -152.402344, -83.811024 ], [ -152.402344, -83.792044 ], [ -152.578125, -83.792044 ], [ -152.578125, -83.773007 ], [ -152.753906, -83.773007 ], [ -152.753906, -83.753911 ], [ -153.105469, -83.753911 ], [ -153.105469, -83.734757 ], [ -153.281250, -83.734757 ], [ -153.281250, -83.715544 ], [ -153.632812, -83.715544 ], [ -153.632812, -83.480366 ], [ -153.457031, -83.480366 ], [ -153.457031, -83.153111 ], [ -153.281250, -83.153111 ], [ -153.281250, -82.940327 ], [ -153.105469, -82.940327 ], [ -153.105469, -82.787476 ], [ -152.929688, -82.787476 ], [ -152.929688, -82.653843 ], [ -152.753906, -82.653843 ], [ -152.753906, -82.517749 ], [ -152.578125, -82.517749 ], [ -152.578125, -82.355800 ], [ -152.753906, -82.355800 ], [ -152.753906, -82.166446 ], [ -152.929688, -82.166446 ], [ -152.929688, -82.045740 ], [ -153.105469, -82.045740 ], [ -153.105469, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.972431 ], [ -153.457031, -81.972431 ], [ -153.457031, -81.947846 ], [ -153.632812, -81.947846 ], [ -153.632812, -81.923186 ], [ -153.808594, -81.923186 ], [ -153.808594, -81.898451 ], [ -153.984375, -81.898451 ], [ -153.984375, -81.873641 ], [ -154.160156, -81.873641 ], [ -154.160156, -81.823794 ], [ -154.335938, -81.823794 ], [ -154.335938, -81.798757 ], [ -154.511719, -81.798757 ], [ -154.511719, -81.748454 ], [ -154.687500, -81.748454 ], [ -154.687500, -81.646927 ], [ -154.863281, -81.646927 ], [ -154.863281, -81.569968 ], [ -155.039062, -81.569968 ], [ -155.039062, -81.466261 ], [ -155.214844, -81.466261 ], [ -155.214844, -81.413933 ], [ -155.390625, -81.413933 ], [ -155.390625, -81.361287 ], [ -155.566406, -81.361287 ], [ -155.566406, -81.334844 ], [ -155.742188, -81.334844 ], [ -155.742188, -81.308321 ], [ -155.917969, -81.308321 ], [ -155.917969, -81.255032 ], [ -156.093750, -81.255032 ], [ -156.093750, -81.228267 ], [ -156.269531, -81.228267 ], [ -156.269531, -81.201420 ], [ -156.445312, -81.201420 ], [ -156.445312, -81.147481 ], [ -156.621094, -81.147481 ], [ -156.621094, -81.120388 ], [ -156.796875, -81.120388 ], [ -156.796875, -81.093214 ], [ -156.269531, -81.093214 ], [ -156.269531, -81.120388 ], [ -155.039062, -81.120388 ], [ -155.039062, -81.147481 ], [ -153.984375, -81.147481 ], [ -153.984375, -81.120388 ], [ -153.632812, -81.120388 ], [ -153.632812, -81.093214 ], [ -153.105469, -81.093214 ], [ -153.105469, -81.065957 ], [ -152.578125, -81.065957 ], [ -152.578125, -81.038617 ], [ -152.226562, -81.038617 ], [ -152.226562, -81.011194 ], [ -152.050781, -81.011194 ], [ -152.050781, -81.038617 ], [ -151.875000, -81.038617 ], [ -151.875000, -81.093214 ], [ -151.699219, -81.093214 ], [ -151.699219, -81.120388 ], [ -151.523438, -81.120388 ], [ -151.523438, -81.174491 ], [ -151.347656, -81.174491 ], [ -151.347656, -81.201420 ], [ -151.171875, -81.201420 ], [ -151.171875, -81.255032 ], [ -150.996094, -81.255032 ], [ -150.996094, -81.281717 ], [ -150.820312, -81.281717 ], [ -150.820312, -81.334844 ], [ -150.468750, -81.334844 ], [ -150.468750, -81.308321 ], [ -150.292969, -81.308321 ], [ -150.292969, -81.281717 ], [ -150.117188, -81.281717 ], [ -150.117188, -81.255032 ], [ -149.941406, -81.255032 ], [ -149.941406, -81.228267 ], [ -149.765625, -81.228267 ], [ -149.765625, -81.174491 ], [ -149.589844, -81.174491 ], [ -149.589844, -81.147481 ], [ -149.414062, -81.147481 ], [ -149.414062, -81.120388 ], [ -149.238281, -81.120388 ], [ -149.238281, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -81.065957 ], [ -148.886719, -81.065957 ], [ -148.886719, -81.038617 ], [ -148.710938, -81.038617 ], [ -148.710938, -80.983688 ], [ -148.535156, -80.983688 ], [ -148.535156, -80.956099 ], [ -148.359375, -80.956099 ], [ -148.359375, -80.900669 ], [ -148.183594, -80.900669 ], [ -148.183594, -80.872827 ], [ -148.007812, -80.872827 ], [ -148.007812, -80.844901 ], [ -147.832031, -80.844901 ], [ -147.832031, -80.788795 ], [ -147.656250, -80.788795 ], [ -147.656250, -80.760615 ], [ -147.480469, -80.760615 ], [ -147.480469, -80.703997 ], [ -147.304688, -80.703997 ], [ -147.304688, -80.647035 ], [ -147.128906, -80.647035 ], [ -147.128906, -80.589727 ], [ -146.953125, -80.589727 ], [ -146.953125, -80.503112 ], [ -146.777344, -80.503112 ], [ -146.777344, -80.444931 ], [ -146.601562, -80.444931 ], [ -146.601562, -80.386396 ], [ -146.425781, -80.386396 ], [ -146.425781, -80.238501 ], [ -146.601562, -80.238501 ], [ -146.601562, -80.058050 ], [ -146.777344, -80.058050 ], [ -146.777344, -79.935918 ], [ -146.953125, -79.935918 ], [ -146.953125, -79.905154 ], [ -147.128906, -79.905154 ], [ -147.128906, -79.843346 ], [ -147.304688, -79.843346 ], [ -147.304688, -79.812302 ], [ -147.480469, -79.812302 ], [ -147.480469, -79.781164 ], [ -147.656250, -79.781164 ], [ -147.656250, -79.718605 ], [ -147.832031, -79.718605 ], [ -147.832031, -79.687184 ], [ -148.007812, -79.687184 ], [ -148.007812, -79.655668 ], [ -148.183594, -79.655668 ], [ -148.183594, -79.624056 ], [ -148.359375, -79.624056 ], [ -148.359375, -79.592349 ], [ -148.535156, -79.592349 ], [ -148.535156, -79.560546 ], [ -148.710938, -79.560546 ], [ -148.710938, -79.528647 ], [ -148.886719, -79.528647 ], [ -148.886719, -79.496652 ], [ -149.062500, -79.496652 ], [ -149.062500, -79.464560 ], [ -149.238281, -79.464560 ], [ -149.238281, -79.432371 ], [ -149.414062, -79.432371 ], [ -149.414062, -79.400085 ], [ -149.589844, -79.400085 ], [ -149.589844, -79.367701 ], [ -150.117188, -79.367701 ], [ -150.117188, -79.335219 ], [ -151.171875, -79.335219 ], [ -151.171875, -79.302640 ], [ -151.875000, -79.302640 ], [ -151.875000, -79.269962 ], [ -152.402344, -79.269962 ], [ -152.402344, -79.237185 ], [ -152.753906, -79.237185 ], [ -152.753906, -79.204309 ], [ -153.281250, -79.204309 ], [ -153.281250, -79.171335 ], [ -153.808594, -79.171335 ], [ -153.808594, -79.138260 ], [ -154.511719, -79.138260 ], [ -154.511719, -79.105086 ], [ -155.214844, -79.105086 ], [ -155.214844, -79.071812 ], [ -155.390625, -79.071812 ], [ -155.390625, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ] ] ], [ [ [ -159.609375, -79.004962 ], [ -159.609375, -79.038437 ], [ -159.433594, -79.038437 ], [ -159.433594, -79.269962 ], [ -159.257812, -79.269962 ], [ -159.257812, -79.496652 ], [ -159.433594, -79.496652 ], [ -159.433594, -79.528647 ], [ -159.960938, -79.528647 ], [ -159.960938, -79.560546 ], [ -160.312500, -79.560546 ], [ -160.312500, -79.592349 ], [ -160.839844, -79.592349 ], [ -160.839844, -79.624056 ], [ -161.367188, -79.624056 ], [ -161.367188, -79.560546 ], [ -161.542969, -79.560546 ], [ -161.542969, -79.528647 ], [ -161.718750, -79.528647 ], [ -161.718750, -79.464560 ], [ -161.894531, -79.464560 ], [ -161.894531, -79.400085 ], [ -162.070312, -79.400085 ], [ -162.070312, -79.367701 ], [ -162.246094, -79.367701 ], [ -162.246094, -79.302640 ], [ -162.421875, -79.302640 ], [ -162.421875, -79.237185 ], [ -162.597656, -79.237185 ], [ -162.597656, -79.138260 ], [ -162.773438, -79.138260 ], [ -162.773438, -79.071812 ], [ -162.949219, -79.071812 ], [ -162.949219, -79.004962 ], [ -159.609375, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -162.246094, -78.313860 ], [ -161.894531, -78.313860 ], [ -161.894531, -78.349411 ], [ -161.542969, -78.349411 ], [ -161.542969, -78.384855 ], [ -161.191406, -78.384855 ], [ -161.191406, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.490552 ], [ -160.839844, -78.490552 ], [ -160.839844, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.630006 ], [ -160.488281, -78.630006 ], [ -160.488281, -78.699106 ], [ -160.312500, -78.699106 ], [ -160.312500, -78.733501 ], [ -160.136719, -78.733501 ], [ -160.136719, -78.801980 ], [ -159.960938, -78.801980 ], [ -159.960938, -78.870048 ], [ -159.785156, -78.870048 ], [ -159.785156, -78.937708 ], [ -159.609375, -78.937708 ], [ -159.609375, -79.004962 ], [ -159.433594, -79.004962 ], [ -159.433594, -79.204309 ], [ -159.257812, -79.204309 ], [ -159.257812, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.246094, -79.302640 ], [ -162.421875, -79.302640 ], [ -162.421875, -79.237185 ], [ -162.597656, -79.237185 ], [ -162.597656, -79.105086 ], [ -162.773438, -79.105086 ], [ -162.773438, -79.004962 ], [ -162.949219, -79.004962 ], [ -162.949219, -78.903929 ], [ -163.125000, -78.903929 ], [ -163.125000, -78.836065 ], [ -163.300781, -78.836065 ], [ -163.300781, -78.733501 ], [ -163.476562, -78.733501 ], [ -163.476562, -78.664608 ], [ -163.652344, -78.664608 ], [ -163.652344, -78.560488 ], [ -163.476562, -78.560488 ], [ -163.476562, -78.420193 ], [ -163.300781, -78.420193 ], [ -163.300781, -78.278201 ], [ -163.125000, -78.278201 ], [ -163.125000, -78.206563 ], [ -162.949219, -78.206563 ], [ -162.949219, -78.242436 ], [ -162.597656, -78.242436 ], [ -162.597656, -78.278201 ], [ -162.246094, -78.278201 ], [ -162.246094, -78.313860 ] ] ], [ [ [ -134.472656, -74.402163 ], [ -134.121094, -74.402163 ], [ -134.121094, -79.335219 ], [ -150.996094, -79.335219 ], [ -150.996094, -79.302640 ], [ -151.875000, -79.302640 ], [ -151.875000, -79.269962 ], [ -152.402344, -79.269962 ], [ -152.402344, -79.237185 ], [ -152.753906, -79.237185 ], [ -152.753906, -79.204309 ], [ -153.281250, -79.204309 ], [ -153.281250, -79.171335 ], [ -153.808594, -79.171335 ], [ -153.808594, -79.138260 ], [ -154.511719, -79.138260 ], [ -154.511719, -79.105086 ], [ -155.214844, -79.105086 ], [ -155.214844, -79.071812 ], [ -155.390625, -79.071812 ], [ -155.390625, -79.038437 ], [ -155.566406, -79.038437 ], [ -155.566406, -78.903929 ], [ -155.742188, -78.903929 ], [ -155.742188, -78.767792 ], [ -155.917969, -78.767792 ], [ -155.917969, -78.699106 ], [ -156.093750, -78.699106 ], [ -156.093750, -78.664608 ], [ -156.269531, -78.664608 ], [ -156.269531, -78.630006 ], [ -156.445312, -78.630006 ], [ -156.445312, -78.595299 ], [ -156.621094, -78.595299 ], [ -156.621094, -78.525573 ], [ -156.796875, -78.525573 ], [ -156.796875, -78.490552 ], [ -156.972656, -78.490552 ], [ -156.972656, -78.455425 ], [ -157.148438, -78.455425 ], [ -157.148438, -78.420193 ], [ -157.324219, -78.420193 ], [ -157.324219, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.278201 ], [ -157.675781, -78.278201 ], [ -157.675781, -78.170582 ], [ -157.851562, -78.170582 ], [ -157.851562, -78.098296 ], [ -158.027344, -78.098296 ], [ -158.027344, -77.767582 ], [ -158.203125, -77.767582 ], [ -158.203125, -77.196176 ], [ -158.378906, -77.196176 ], [ -158.378906, -76.920614 ], [ -158.203125, -76.920614 ], [ -158.203125, -76.960334 ], [ -158.027344, -76.960334 ], [ -158.027344, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.039418 ], [ -157.675781, -77.039418 ], [ -157.675781, -77.118032 ], [ -157.500000, -77.118032 ], [ -157.500000, -77.157163 ], [ -157.324219, -77.157163 ], [ -157.324219, -77.235074 ], [ -157.148438, -77.235074 ], [ -157.148438, -77.312520 ], [ -156.621094, -77.312520 ], [ -156.621094, -77.273855 ], [ -156.093750, -77.273855 ], [ -156.093750, -77.235074 ], [ -155.566406, -77.235074 ], [ -155.566406, -77.196176 ], [ -155.039062, -77.196176 ], [ -155.039062, -77.157163 ], [ -154.511719, -77.157163 ], [ -154.511719, -77.118032 ], [ -153.984375, -77.118032 ], [ -153.984375, -77.078784 ], [ -153.808594, -77.078784 ], [ -153.808594, -77.157163 ], [ -153.632812, -77.157163 ], [ -153.632812, -77.235074 ], [ -153.457031, -77.235074 ], [ -153.457031, -77.312520 ], [ -153.281250, -77.312520 ], [ -153.281250, -77.389504 ], [ -153.105469, -77.389504 ], [ -153.105469, -77.466028 ], [ -152.929688, -77.466028 ], [ -152.929688, -77.504119 ], [ -152.578125, -77.504119 ], [ -152.578125, -77.466028 ], [ -152.050781, -77.466028 ], [ -152.050781, -77.427824 ], [ -151.523438, -77.427824 ], [ -151.523438, -77.389504 ], [ -151.171875, -77.389504 ], [ -151.171875, -77.351070 ], [ -150.820312, -77.351070 ], [ -150.820312, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.273855 ], [ -150.292969, -77.273855 ], [ -150.292969, -77.235074 ], [ -149.941406, -77.235074 ], [ -149.941406, -77.196176 ], [ -149.765625, -77.196176 ], [ -149.765625, -77.157163 ], [ -149.589844, -77.157163 ], [ -149.589844, -77.118032 ], [ -149.414062, -77.118032 ], [ -149.414062, -77.078784 ], [ -149.238281, -77.078784 ], [ -149.238281, -77.039418 ], [ -149.062500, -77.039418 ], [ -149.062500, -76.999935 ], [ -148.886719, -76.999935 ], [ -148.886719, -76.960334 ], [ -148.710938, -76.960334 ], [ -148.710938, -76.920614 ], [ -148.535156, -76.920614 ], [ -148.535156, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.800739 ], [ -148.183594, -76.800739 ], [ -148.183594, -76.720223 ], [ -148.007812, -76.720223 ], [ -148.007812, -76.679785 ], [ -147.832031, -76.679785 ], [ -147.832031, -76.598545 ], [ -147.656250, -76.598545 ], [ -147.656250, -76.557743 ], [ -147.128906, -76.557743 ], [ -147.128906, -76.516819 ], [ -146.425781, -76.516819 ], [ -146.425781, -76.475773 ], [ -146.074219, -76.475773 ], [ -146.074219, -76.016094 ], [ -146.250000, -76.016094 ], [ -146.250000, -75.845169 ], [ -146.425781, -75.845169 ], [ -146.425781, -75.541113 ], [ -146.250000, -75.541113 ], [ -146.250000, -75.364506 ], [ -145.898438, -75.364506 ], [ -145.898438, -75.320025 ], [ -145.546875, -75.320025 ], [ -145.546875, -75.275413 ], [ -145.195312, -75.275413 ], [ -145.195312, -75.230667 ], [ -144.843750, -75.230667 ], [ -144.843750, -75.275413 ], [ -144.667969, -75.275413 ], [ -144.667969, -75.364506 ], [ -144.492188, -75.364506 ], [ -144.492188, -75.497157 ], [ -144.316406, -75.497157 ], [ -144.316406, -75.541113 ], [ -144.140625, -75.541113 ], [ -144.140625, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.453071 ], [ -143.437500, -75.453071 ], [ -143.437500, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.364506 ], [ -142.734375, -75.364506 ], [ -142.734375, -75.320025 ], [ -142.558594, -75.320025 ], [ -142.558594, -75.275413 ], [ -142.382812, -75.275413 ], [ -142.382812, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.185789 ], [ -141.855469, -75.185789 ], [ -141.855469, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.095633 ], [ -140.800781, -75.095633 ], [ -140.800781, -75.050354 ], [ -139.746094, -75.050354 ], [ -139.746094, -75.004940 ], [ -139.042969, -75.004940 ], [ -139.042969, -74.959392 ], [ -138.691406, -74.959392 ], [ -138.691406, -74.913708 ], [ -138.339844, -74.913708 ], [ -138.339844, -74.867889 ], [ -137.988281, -74.867889 ], [ -137.988281, -74.821934 ], [ -137.812500, -74.821934 ], [ -137.812500, -74.775843 ], [ -137.460938, -74.775843 ], [ -137.460938, -74.729615 ], [ -137.285156, -74.729615 ], [ -137.285156, -74.683250 ], [ -137.109375, -74.683250 ], [ -137.109375, -74.636748 ], [ -136.757812, -74.636748 ], [ -136.757812, -74.590108 ], [ -136.582031, -74.590108 ], [ -136.582031, -74.543330 ], [ -136.406250, -74.543330 ], [ -136.406250, -74.496413 ], [ -136.230469, -74.496413 ], [ -136.230469, -74.449358 ], [ -135.878906, -74.449358 ], [ -135.878906, -74.402163 ], [ -135.527344, -74.402163 ], [ -135.527344, -74.354828 ], [ -135.175781, -74.354828 ], [ -135.175781, -74.307353 ], [ -135.000000, -74.307353 ], [ -135.000000, -74.354828 ], [ -134.472656, -74.354828 ], [ -134.472656, -74.402163 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -162.949219, -78.206563 ], [ -162.949219, -78.242436 ], [ -162.597656, -78.242436 ], [ -162.597656, -78.278201 ], [ -162.246094, -78.278201 ], [ -162.246094, -78.313860 ], [ -161.894531, -78.313860 ], [ -161.894531, -78.349411 ], [ -161.542969, -78.349411 ], [ -161.542969, -78.384855 ], [ -161.191406, -78.384855 ], [ -161.191406, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.490552 ], [ -160.839844, -78.490552 ], [ -160.839844, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.630006 ], [ -160.488281, -78.630006 ], [ -160.488281, -78.699106 ], [ -160.312500, -78.699106 ], [ -160.312500, -78.733501 ], [ -160.136719, -78.733501 ], [ -160.136719, -78.801980 ], [ -159.960938, -78.801980 ], [ -159.960938, -78.870048 ], [ -159.785156, -78.870048 ], [ -159.785156, -78.937708 ], [ -159.609375, -78.937708 ], [ -159.609375, -79.004962 ], [ -159.433594, -79.004962 ], [ -159.433594, -79.204309 ], [ -159.257812, -79.204309 ], [ -159.257812, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.246094, -79.302640 ], [ -162.421875, -79.302640 ], [ -162.421875, -79.237185 ], [ -162.597656, -79.237185 ], [ -162.597656, -79.105086 ], [ -162.773438, -79.105086 ], [ -162.773438, -79.004962 ], [ -162.949219, -79.004962 ], [ -162.949219, -78.903929 ], [ -163.125000, -78.903929 ], [ -163.125000, -78.836065 ], [ -163.300781, -78.836065 ], [ -163.300781, -78.733501 ], [ -163.476562, -78.733501 ], [ -163.476562, -78.664608 ], [ -163.652344, -78.664608 ], [ -163.652344, -78.560488 ], [ -163.476562, -78.560488 ], [ -163.476562, -78.420193 ], [ -163.300781, -78.420193 ], [ -163.300781, -78.278201 ], [ -163.125000, -78.278201 ], [ -163.125000, -78.206563 ], [ -162.949219, -78.206563 ] ] ], [ [ [ -135.000000, -74.307353 ], [ -135.000000, -74.354828 ], [ -134.472656, -74.354828 ], [ -134.472656, -74.402163 ], [ -134.121094, -74.402163 ], [ -134.121094, -79.335219 ], [ -150.996094, -79.335219 ], [ -150.996094, -79.302640 ], [ -151.875000, -79.302640 ], [ -151.875000, -79.269962 ], [ -152.402344, -79.269962 ], [ -152.402344, -79.237185 ], [ -152.753906, -79.237185 ], [ -152.753906, -79.204309 ], [ -153.281250, -79.204309 ], [ -153.281250, -79.171335 ], [ -153.808594, -79.171335 ], [ -153.808594, -79.138260 ], [ -154.511719, -79.138260 ], [ -154.511719, -79.105086 ], [ -155.214844, -79.105086 ], [ -155.214844, -79.071812 ], [ -155.390625, -79.071812 ], [ -155.390625, -79.038437 ], [ -155.566406, -79.038437 ], [ -155.566406, -78.903929 ], [ -155.742188, -78.903929 ], [ -155.742188, -78.767792 ], [ -155.917969, -78.767792 ], [ -155.917969, -78.699106 ], [ -156.093750, -78.699106 ], [ -156.093750, -78.664608 ], [ -156.269531, -78.664608 ], [ -156.269531, -78.630006 ], [ -156.445312, -78.630006 ], [ -156.445312, -78.595299 ], [ -156.621094, -78.595299 ], [ -156.621094, -78.525573 ], [ -156.796875, -78.525573 ], [ -156.796875, -78.490552 ], [ -156.972656, -78.490552 ], [ -156.972656, -78.455425 ], [ -157.148438, -78.455425 ], [ -157.148438, -78.420193 ], [ -157.324219, -78.420193 ], [ -157.324219, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.278201 ], [ -157.675781, -78.278201 ], [ -157.675781, -78.170582 ], [ -157.851562, -78.170582 ], [ -157.851562, -78.098296 ], [ -158.027344, -78.098296 ], [ -158.027344, -77.767582 ], [ -158.203125, -77.767582 ], [ -158.203125, -77.196176 ], [ -158.378906, -77.196176 ], [ -158.378906, -76.920614 ], [ -158.203125, -76.920614 ], [ -158.203125, -76.960334 ], [ -158.027344, -76.960334 ], [ -158.027344, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.039418 ], [ -157.675781, -77.039418 ], [ -157.675781, -77.118032 ], [ -157.500000, -77.118032 ], [ -157.500000, -77.157163 ], [ -157.324219, -77.157163 ], [ -157.324219, -77.235074 ], [ -157.148438, -77.235074 ], [ -157.148438, -77.312520 ], [ -156.621094, -77.312520 ], [ -156.621094, -77.273855 ], [ -156.093750, -77.273855 ], [ -156.093750, -77.235074 ], [ -155.566406, -77.235074 ], [ -155.566406, -77.196176 ], [ -155.039062, -77.196176 ], [ -155.039062, -77.157163 ], [ -154.511719, -77.157163 ], [ -154.511719, -77.118032 ], [ -153.984375, -77.118032 ], [ -153.984375, -77.078784 ], [ -153.808594, -77.078784 ], [ -153.808594, -77.157163 ], [ -153.632812, -77.157163 ], [ -153.632812, -77.235074 ], [ -153.457031, -77.235074 ], [ -153.457031, -77.312520 ], [ -153.281250, -77.312520 ], [ -153.281250, -77.389504 ], [ -153.105469, -77.389504 ], [ -153.105469, -77.466028 ], [ -152.929688, -77.466028 ], [ -152.929688, -77.504119 ], [ -152.578125, -77.504119 ], [ -152.578125, -77.466028 ], [ -152.050781, -77.466028 ], [ -152.050781, -77.427824 ], [ -151.523438, -77.427824 ], [ -151.523438, -77.389504 ], [ -151.171875, -77.389504 ], [ -151.171875, -77.351070 ], [ -150.820312, -77.351070 ], [ -150.820312, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.273855 ], [ -150.292969, -77.273855 ], [ -150.292969, -77.235074 ], [ -149.941406, -77.235074 ], [ -149.941406, -77.196176 ], [ -149.765625, -77.196176 ], [ -149.765625, -77.157163 ], [ -149.589844, -77.157163 ], [ -149.589844, -77.118032 ], [ -149.414062, -77.118032 ], [ -149.414062, -77.078784 ], [ -149.238281, -77.078784 ], [ -149.238281, -77.039418 ], [ -149.062500, -77.039418 ], [ -149.062500, -76.999935 ], [ -148.886719, -76.999935 ], [ -148.886719, -76.960334 ], [ -148.710938, -76.960334 ], [ -148.710938, -76.920614 ], [ -148.535156, -76.920614 ], [ -148.535156, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.800739 ], [ -148.183594, -76.800739 ], [ -148.183594, -76.720223 ], [ -148.007812, -76.720223 ], [ -148.007812, -76.679785 ], [ -147.832031, -76.679785 ], [ -147.832031, -76.598545 ], [ -147.656250, -76.598545 ], [ -147.656250, -76.557743 ], [ -147.128906, -76.557743 ], [ -147.128906, -76.516819 ], [ -146.425781, -76.516819 ], [ -146.425781, -76.475773 ], [ -146.074219, -76.475773 ], [ -146.074219, -76.016094 ], [ -146.250000, -76.016094 ], [ -146.250000, -75.845169 ], [ -146.425781, -75.845169 ], [ -146.425781, -75.541113 ], [ -146.250000, -75.541113 ], [ -146.250000, -75.364506 ], [ -145.898438, -75.364506 ], [ -145.898438, -75.320025 ], [ -145.546875, -75.320025 ], [ -145.546875, -75.275413 ], [ -145.195312, -75.275413 ], [ -145.195312, -75.230667 ], [ -144.843750, -75.230667 ], [ -144.843750, -75.275413 ], [ -144.667969, -75.275413 ], [ -144.667969, -75.364506 ], [ -144.492188, -75.364506 ], [ -144.492188, -75.497157 ], [ -144.316406, -75.497157 ], [ -144.316406, -75.541113 ], [ -144.140625, -75.541113 ], [ -144.140625, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.453071 ], [ -143.437500, -75.453071 ], [ -143.437500, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.364506 ], [ -142.734375, -75.364506 ], [ -142.734375, -75.320025 ], [ -142.558594, -75.320025 ], [ -142.558594, -75.275413 ], [ -142.382812, -75.275413 ], [ -142.382812, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.185789 ], [ -141.855469, -75.185789 ], [ -141.855469, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.095633 ], [ -140.800781, -75.095633 ], [ -140.800781, -75.050354 ], [ -139.746094, -75.050354 ], [ -139.746094, -75.004940 ], [ -139.042969, -75.004940 ], [ -139.042969, -74.959392 ], [ -138.691406, -74.959392 ], [ -138.691406, -74.913708 ], [ -138.339844, -74.913708 ], [ -138.339844, -74.867889 ], [ -137.988281, -74.867889 ], [ -137.988281, -74.821934 ], [ -137.812500, -74.821934 ], [ -137.812500, -74.775843 ], [ -137.460938, -74.775843 ], [ -137.460938, -74.729615 ], [ -137.285156, -74.729615 ], [ -137.285156, -74.683250 ], [ -137.109375, -74.683250 ], [ -137.109375, -74.636748 ], [ -136.757812, -74.636748 ], [ -136.757812, -74.590108 ], [ -136.582031, -74.590108 ], [ -136.582031, -74.543330 ], [ -136.406250, -74.543330 ], [ -136.406250, -74.496413 ], [ -136.230469, -74.496413 ], [ -136.230469, -74.449358 ], [ -135.878906, -74.449358 ], [ -135.878906, -74.402163 ], [ -135.527344, -74.402163 ], [ -135.527344, -74.354828 ], [ -135.175781, -74.354828 ], [ -135.175781, -74.307353 ], [ -135.000000, -74.307353 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.824219, -16.299051 ], [ -180.000000, -16.299051 ], [ -180.000000, -16.130262 ], [ -179.824219, -16.130262 ], [ -179.824219, -16.299051 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, -16.299051 ], [ -179.824219, -16.299051 ], [ -179.824219, -16.467695 ], [ -180.000000, -16.467695 ], [ -180.000000, -16.299051 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.039062, 19.642588 ], [ -154.863281, 19.642588 ], [ -154.863281, 19.311143 ], [ -155.214844, 19.311143 ], [ -155.214844, 19.145168 ], [ -155.566406, 19.145168 ], [ -155.566406, 18.979026 ], [ -155.917969, 18.979026 ], [ -155.917969, 19.476950 ], [ -156.093750, 19.476950 ], [ -156.093750, 19.808054 ], [ -155.917969, 19.808054 ], [ -155.917969, 20.303418 ], [ -155.742188, 20.303418 ], [ -155.742188, 20.138470 ], [ -155.390625, 20.138470 ], [ -155.390625, 19.973349 ], [ -155.214844, 19.973349 ], [ -155.214844, 19.808054 ], [ -155.039062, 19.808054 ], [ -155.039062, 19.642588 ] ] ], [ [ [ -156.269531, 20.797201 ], [ -155.917969, 20.797201 ], [ -155.917969, 20.632784 ], [ -156.621094, 20.632784 ], [ -156.621094, 20.797201 ], [ -156.796875, 20.797201 ], [ -156.796875, 20.961440 ], [ -156.269531, 20.961440 ], [ -156.269531, 20.797201 ] ] ], [ [ [ -157.148438, 21.125498 ], [ -157.324219, 21.125498 ], [ -157.324219, 21.289374 ], [ -157.148438, 21.289374 ], [ -157.148438, 21.125498 ] ] ], [ [ [ -158.027344, 21.453069 ], [ -157.851562, 21.453069 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -158.027344, 21.616579 ], [ -158.027344, 21.453069 ] ] ], [ [ [ -159.257812, 21.943046 ], [ -159.785156, 21.943046 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ], [ -159.433594, 22.105999 ], [ -159.257812, 22.105999 ], [ -159.257812, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 20.303418 ], [ -155.742188, 20.138470 ], [ -155.390625, 20.138470 ], [ -155.390625, 19.973349 ], [ -155.214844, 19.973349 ], [ -155.214844, 19.808054 ], [ -155.039062, 19.808054 ], [ -155.039062, 19.642588 ], [ -154.863281, 19.642588 ], [ -154.863281, 19.311143 ], [ -155.214844, 19.311143 ], [ -155.214844, 19.145168 ], [ -155.566406, 19.145168 ], [ -155.566406, 18.979026 ], [ -155.917969, 18.979026 ], [ -155.917969, 19.476950 ], [ -156.093750, 19.476950 ], [ -156.093750, 19.808054 ], [ -155.917969, 19.808054 ], [ -155.917969, 20.303418 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.269531, 20.797201 ], [ -155.917969, 20.797201 ], [ -155.917969, 20.632784 ], [ -156.621094, 20.632784 ], [ -156.621094, 20.797201 ], [ -156.796875, 20.797201 ], [ -156.796875, 20.961440 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -157.148438, 21.289374 ], [ -157.148438, 21.125498 ], [ -157.324219, 21.125498 ], [ -157.324219, 21.289374 ], [ -157.148438, 21.289374 ] ] ], [ [ [ -158.027344, 21.616579 ], [ -158.027344, 21.453069 ], [ -157.851562, 21.453069 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -158.027344, 21.616579 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.433594, 22.105999 ], [ -159.257812, 21.943046 ], [ -159.785156, 21.943046 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.824219, 59.085739 ], [ -134.824219, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.623325 ], [ -136.054688, 59.623325 ], [ -136.054688, 59.534318 ], [ -136.230469, 59.534318 ], [ -136.230469, 59.445075 ], [ -136.406250, 59.445075 ], [ -136.406250, 59.355596 ], [ -136.582031, 59.355596 ], [ -136.582031, 59.265881 ], [ -136.757812, 59.265881 ], [ -136.757812, 59.175928 ], [ -136.933594, 59.175928 ], [ -136.933594, 59.085739 ], [ -137.109375, 59.085739 ], [ -137.109375, 58.995311 ], [ -137.285156, 58.995311 ], [ -137.285156, 58.904646 ], [ -137.636719, 58.904646 ], [ -137.636719, 59.085739 ], [ -137.812500, 59.085739 ], [ -137.812500, 59.175928 ], [ -137.988281, 59.175928 ], [ -137.988281, 59.265881 ], [ -138.164062, 59.265881 ], [ -138.164062, 59.445075 ], [ -138.339844, 59.445075 ], [ -138.339844, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.623325 ], [ -138.691406, 59.623325 ], [ -138.691406, 59.800634 ], [ -138.867188, 59.800634 ], [ -138.867188, 59.888937 ], [ -139.042969, 59.888937 ], [ -139.042969, 59.977005 ], [ -139.394531, 59.977005 ], [ -139.394531, 60.064840 ], [ -139.746094, 60.064840 ], [ -139.746094, 60.152442 ], [ -140.097656, 60.152442 ], [ -140.097656, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 60.326948 ], [ -140.976562, 60.326948 ], [ -140.976562, 66.861082 ], [ -134.121094, 66.861082 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.085739 ], [ -134.824219, 59.085739 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.085739 ], [ -134.824219, 59.085739 ], [ -134.824219, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.623325 ], [ -136.054688, 59.623325 ], [ -136.054688, 59.534318 ], [ -136.230469, 59.534318 ], [ -136.230469, 59.445075 ], [ -136.406250, 59.445075 ], [ -136.406250, 59.355596 ], [ -136.582031, 59.355596 ], [ -136.582031, 59.265881 ], [ -136.757812, 59.265881 ], [ -136.757812, 59.175928 ], [ -136.933594, 59.175928 ], [ -136.933594, 59.085739 ], [ -137.109375, 59.085739 ], [ -137.109375, 58.995311 ], [ -137.285156, 58.995311 ], [ -137.285156, 58.904646 ], [ -137.636719, 58.904646 ], [ -137.636719, 59.085739 ], [ -137.812500, 59.085739 ], [ -137.812500, 59.175928 ], [ -137.988281, 59.175928 ], [ -137.988281, 59.265881 ], [ -138.164062, 59.265881 ], [ -138.164062, 59.445075 ], [ -138.339844, 59.445075 ], [ -138.339844, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.623325 ], [ -138.691406, 59.623325 ], [ -138.691406, 59.800634 ], [ -138.867188, 59.800634 ], [ -138.867188, 59.888937 ], [ -139.042969, 59.888937 ], [ -139.042969, 59.977005 ], [ -139.394531, 59.977005 ], [ -139.394531, 60.064840 ], [ -139.746094, 60.064840 ], [ -139.746094, 60.152442 ], [ -140.097656, 60.152442 ], [ -140.097656, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 60.326948 ], [ -140.976562, 60.326948 ], [ -140.976562, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.500000, 58.813742 ], [ -157.500000, 58.722599 ], [ -157.851562, 58.722599 ], [ -157.851562, 58.631217 ], [ -158.378906, 58.631217 ], [ -158.378906, 58.722599 ], [ -158.730469, 58.722599 ], [ -158.730469, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.539595 ], [ -159.433594, 58.539595 ], [ -159.433594, 58.722599 ], [ -159.609375, 58.722599 ], [ -159.609375, 58.813742 ], [ -159.785156, 58.813742 ], [ -159.785156, 58.722599 ], [ -159.960938, 58.722599 ], [ -159.960938, 58.631217 ], [ -160.136719, 58.631217 ], [ -160.136719, 58.904646 ], [ -160.312500, 58.904646 ], [ -160.312500, 58.995311 ], [ -160.488281, 58.995311 ], [ -160.488281, 58.904646 ], [ -160.664062, 58.904646 ], [ -160.664062, 58.813742 ], [ -161.015625, 58.813742 ], [ -161.015625, 58.722599 ], [ -161.191406, 58.722599 ], [ -161.191406, 58.631217 ], [ -161.894531, 58.631217 ], [ -161.894531, 58.904646 ], [ -162.070312, 58.904646 ], [ -162.070312, 59.445075 ], [ -161.894531, 59.445075 ], [ -161.894531, 59.623325 ], [ -162.070312, 59.623325 ], [ -162.070312, 59.712097 ], [ -162.246094, 59.712097 ], [ -162.246094, 59.800634 ], [ -162.421875, 59.800634 ], [ -162.421875, 59.888937 ], [ -162.597656, 59.888937 ], [ -162.597656, 59.977005 ], [ -162.773438, 59.977005 ], [ -162.773438, 59.888937 ], [ -163.476562, 59.888937 ], [ -163.476562, 59.800634 ], [ -164.003906, 59.800634 ], [ -164.003906, 59.888937 ], [ -164.179688, 59.888937 ], [ -164.179688, 59.977005 ], [ -164.355469, 59.977005 ], [ -164.355469, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.152442 ], [ -164.707031, 60.152442 ], [ -164.707031, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.326948 ], [ -165.234375, 60.326948 ], [ -165.234375, 60.413852 ], [ -165.410156, 60.413852 ], [ -165.410156, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.185625 ], [ -165.761719, 61.185625 ], [ -165.761719, 61.354614 ], [ -165.937500, 61.354614 ], [ -165.937500, 61.438767 ], [ -166.113281, 61.438767 ], [ -166.113281, 61.606396 ], [ -165.937500, 61.606396 ], [ -165.937500, 61.938950 ], [ -165.761719, 61.938950 ], [ -165.761719, 62.103883 ], [ -165.585938, 62.103883 ], [ -165.585938, 62.186014 ], [ -165.410156, 62.186014 ], [ -165.410156, 62.349609 ], [ -165.234375, 62.349609 ], [ -165.234375, 62.431074 ], [ -165.058594, 62.431074 ], [ -165.058594, 62.512318 ], [ -164.882812, 62.512318 ], [ -164.882812, 62.674143 ], [ -164.707031, 62.674143 ], [ -164.707031, 62.995158 ], [ -164.531250, 62.995158 ], [ -164.531250, 63.154355 ], [ -164.003906, 63.154355 ], [ -164.003906, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 63.154355 ], [ -163.476562, 63.154355 ], [ -163.476562, 63.074866 ], [ -162.949219, 63.074866 ], [ -162.949219, 63.154355 ], [ -162.773438, 63.154355 ], [ -162.773438, 63.312683 ], [ -162.597656, 63.312683 ], [ -162.597656, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.470145 ], [ -162.246094, 63.470145 ], [ -162.246094, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.470145 ], [ -161.367188, 63.470145 ], [ -161.367188, 63.548552 ], [ -161.191406, 63.548552 ], [ -161.191406, 63.626745 ], [ -161.015625, 63.626745 ], [ -161.015625, 63.704722 ], [ -160.839844, 63.704722 ], [ -160.839844, 64.014496 ], [ -161.015625, 64.014496 ], [ -161.015625, 64.244595 ], [ -161.191406, 64.244595 ], [ -161.191406, 64.320872 ], [ -161.542969, 64.320872 ], [ -161.542969, 64.396938 ], [ -161.367188, 64.396938 ], [ -161.367188, 64.472794 ], [ -161.191406, 64.472794 ], [ -161.191406, 64.623877 ], [ -161.015625, 64.623877 ], [ -161.015625, 64.699105 ], [ -160.839844, 64.699105 ], [ -160.839844, 64.774125 ], [ -161.367188, 64.774125 ], [ -161.367188, 64.699105 ], [ -161.718750, 64.699105 ], [ -161.718750, 64.623877 ], [ -162.070312, 64.623877 ], [ -162.070312, 64.548440 ], [ -162.421875, 64.548440 ], [ -162.421875, 64.472794 ], [ -162.597656, 64.472794 ], [ -162.597656, 64.320872 ], [ -162.949219, 64.320872 ], [ -162.949219, 64.396938 ], [ -163.300781, 64.396938 ], [ -163.300781, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.548440 ], [ -164.003906, 64.548440 ], [ -164.003906, 64.472794 ], [ -165.234375, 64.472794 ], [ -165.234375, 64.548440 ], [ -165.761719, 64.548440 ], [ -165.761719, 64.623877 ], [ -166.289062, 64.623877 ], [ -166.289062, 64.699105 ], [ -166.464844, 64.699105 ], [ -166.464844, 64.774125 ], [ -166.640625, 64.774125 ], [ -166.640625, 64.923542 ], [ -166.816406, 64.923542 ], [ -166.816406, 65.072130 ], [ -166.992188, 65.072130 ], [ -166.992188, 65.146115 ], [ -167.167969, 65.146115 ], [ -167.167969, 65.219894 ], [ -167.343750, 65.219894 ], [ -167.343750, 65.366837 ], [ -167.519531, 65.366837 ], [ -167.519531, 65.440002 ], [ -167.695312, 65.440002 ], [ -167.695312, 65.512963 ], [ -167.871094, 65.512963 ], [ -167.871094, 65.585720 ], [ -168.046875, 65.585720 ], [ -168.046875, 65.658275 ], [ -167.871094, 65.658275 ], [ -167.871094, 65.730626 ], [ -167.519531, 65.730626 ], [ -167.519531, 65.802776 ], [ -167.343750, 65.802776 ], [ -167.343750, 65.874725 ], [ -167.167969, 65.874725 ], [ -167.167969, 65.946472 ], [ -166.816406, 65.946472 ], [ -166.816406, 66.018018 ], [ -166.640625, 66.018018 ], [ -166.640625, 66.089364 ], [ -166.464844, 66.089364 ], [ -166.464844, 66.160511 ], [ -166.113281, 66.160511 ], [ -166.113281, 66.231457 ], [ -165.761719, 66.231457 ], [ -165.761719, 66.302205 ], [ -165.410156, 66.302205 ], [ -165.410156, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.652344, 66.302205 ], [ -163.828125, 66.302205 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.160511 ], [ -161.894531, 66.160511 ], [ -161.894531, 66.302205 ], [ -162.070312, 66.302205 ], [ -162.070312, 66.443107 ], [ -162.246094, 66.443107 ], [ -162.246094, 66.583217 ], [ -162.421875, 66.583217 ], [ -162.421875, 66.722541 ], [ -162.597656, 66.722541 ], [ -162.597656, 66.791909 ], [ -162.949219, 66.791909 ], [ -162.949219, 66.861082 ], [ -156.621094, 66.861082 ], [ -156.621094, 56.848972 ], [ -156.972656, 56.848972 ], [ -156.972656, 56.752723 ], [ -157.324219, 56.752723 ], [ -157.324219, 56.656226 ], [ -157.675781, 56.656226 ], [ -157.675781, 56.559482 ], [ -158.027344, 56.559482 ], [ -158.027344, 56.462490 ], [ -158.203125, 56.462490 ], [ -158.203125, 56.170023 ], [ -158.378906, 56.170023 ], [ -158.378906, 55.875311 ], [ -158.730469, 55.875311 ], [ -158.730469, 55.776573 ], [ -159.082031, 55.776573 ], [ -159.082031, 55.677584 ], [ -159.433594, 55.677584 ], [ -159.433594, 55.578345 ], [ -160.136719, 55.578345 ], [ -160.136719, 55.677584 ], [ -160.312500, 55.677584 ], [ -160.312500, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.478853 ], [ -161.015625, 55.478853 ], [ -161.015625, 55.379110 ], [ -161.191406, 55.379110 ], [ -161.191406, 55.279115 ], [ -161.542969, 55.279115 ], [ -161.542969, 55.178868 ], [ -161.718750, 55.178868 ], [ -161.718750, 55.078367 ], [ -162.070312, 55.078367 ], [ -162.070312, 54.977614 ], [ -162.246094, 54.977614 ], [ -162.246094, 54.876607 ], [ -162.597656, 54.876607 ], [ -162.597656, 54.775346 ], [ -162.949219, 54.775346 ], [ -162.949219, 54.673831 ], [ -163.300781, 54.673831 ], [ -163.300781, 54.572062 ], [ -163.828125, 54.572062 ], [ -163.828125, 54.470038 ], [ -164.355469, 54.470038 ], [ -164.355469, 54.367759 ], [ -164.707031, 54.367759 ], [ -164.707031, 54.470038 ], [ -164.882812, 54.470038 ], [ -164.882812, 54.572062 ], [ -164.707031, 54.572062 ], [ -164.707031, 54.673831 ], [ -164.531250, 54.673831 ], [ -164.531250, 54.775346 ], [ -164.179688, 54.775346 ], [ -164.179688, 54.876607 ], [ -164.003906, 54.876607 ], [ -164.003906, 54.977614 ], [ -163.828125, 54.977614 ], [ -163.828125, 55.078367 ], [ -163.652344, 55.078367 ], [ -163.652344, 55.178868 ], [ -163.300781, 55.178868 ], [ -163.300781, 55.279115 ], [ -162.949219, 55.279115 ], [ -162.949219, 55.379110 ], [ -162.773438, 55.379110 ], [ -162.773438, 55.478853 ], [ -162.421875, 55.478853 ], [ -162.421875, 55.578345 ], [ -162.246094, 55.578345 ], [ -162.246094, 55.677584 ], [ -162.070312, 55.677584 ], [ -162.070312, 55.776573 ], [ -161.718750, 55.776573 ], [ -161.718750, 55.875311 ], [ -161.015625, 55.875311 ], [ -161.015625, 55.973798 ], [ -160.488281, 55.973798 ], [ -160.488281, 56.072035 ], [ -160.312500, 56.072035 ], [ -160.312500, 56.267761 ], [ -160.136719, 56.267761 ], [ -160.136719, 56.462490 ], [ -159.960938, 56.462490 ], [ -159.960938, 56.559482 ], [ -159.609375, 56.559482 ], [ -159.609375, 56.656226 ], [ -159.433594, 56.656226 ], [ -159.433594, 56.752723 ], [ -159.257812, 56.752723 ], [ -159.257812, 56.848972 ], [ -158.906250, 56.848972 ], [ -158.906250, 56.944974 ], [ -158.730469, 56.944974 ], [ -158.730469, 57.040730 ], [ -158.554688, 57.040730 ], [ -158.554688, 57.136239 ], [ -158.378906, 57.136239 ], [ -158.378906, 57.231503 ], [ -158.203125, 57.231503 ], [ -158.203125, 57.326521 ], [ -158.027344, 57.326521 ], [ -158.027344, 57.421294 ], [ -157.851562, 57.421294 ], [ -157.851562, 57.515823 ], [ -157.675781, 57.515823 ], [ -157.675781, 57.984808 ], [ -157.500000, 57.984808 ], [ -157.500000, 58.447733 ], [ -157.324219, 58.447733 ], [ -157.324219, 58.631217 ], [ -157.148438, 58.631217 ], [ -157.148438, 58.813742 ], [ -157.500000, 58.813742 ] ], [ [ -156.972656, 58.813742 ], [ -156.972656, 58.904646 ], [ -157.148438, 58.904646 ], [ -157.148438, 58.813742 ], [ -156.972656, 58.813742 ] ] ], [ [ [ -165.761719, 60.064840 ], [ -165.585938, 60.064840 ], [ -165.585938, 59.800634 ], [ -165.937500, 59.800634 ], [ -165.937500, 59.712097 ], [ -166.289062, 59.712097 ], [ -166.289062, 59.800634 ], [ -166.640625, 59.800634 ], [ -166.640625, 59.888937 ], [ -166.816406, 59.888937 ], [ -166.816406, 59.977005 ], [ -166.992188, 59.977005 ], [ -166.992188, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.152442 ], [ -167.519531, 60.152442 ], [ -167.519531, 60.239811 ], [ -167.167969, 60.239811 ], [ -167.167969, 60.326948 ], [ -166.640625, 60.326948 ], [ -166.640625, 60.413852 ], [ -166.289062, 60.413852 ], [ -166.289062, 60.326948 ], [ -165.761719, 60.326948 ], [ -165.761719, 60.064840 ] ] ], [ [ [ -170.156250, 63.548552 ], [ -169.804688, 63.548552 ], [ -169.804688, 63.470145 ], [ -169.453125, 63.470145 ], [ -169.453125, 63.391522 ], [ -169.101562, 63.391522 ], [ -169.101562, 63.312683 ], [ -168.750000, 63.312683 ], [ -168.750000, 63.074866 ], [ -169.101562, 63.074866 ], [ -169.101562, 62.995158 ], [ -169.628906, 62.995158 ], [ -169.628906, 63.074866 ], [ -169.980469, 63.074866 ], [ -169.980469, 63.154355 ], [ -170.332031, 63.154355 ], [ -170.332031, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.312683 ], [ -170.683594, 63.312683 ], [ -170.683594, 63.391522 ], [ -171.035156, 63.391522 ], [ -171.035156, 63.312683 ], [ -171.738281, 63.312683 ], [ -171.738281, 63.704722 ], [ -171.386719, 63.704722 ], [ -171.386719, 63.626745 ], [ -170.683594, 63.626745 ], [ -170.683594, 63.704722 ], [ -170.507812, 63.704722 ], [ -170.507812, 63.626745 ], [ -170.156250, 63.626745 ], [ -170.156250, 63.548552 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -156.621094, 66.861082 ], [ -156.621094, 56.848972 ], [ -156.972656, 56.848972 ], [ -156.972656, 56.752723 ], [ -157.324219, 56.752723 ], [ -157.324219, 56.656226 ], [ -157.675781, 56.656226 ], [ -157.675781, 56.559482 ], [ -158.027344, 56.559482 ], [ -158.027344, 56.462490 ], [ -158.203125, 56.462490 ], [ -158.203125, 56.170023 ], [ -158.378906, 56.170023 ], [ -158.378906, 55.875311 ], [ -158.730469, 55.875311 ], [ -158.730469, 55.776573 ], [ -159.082031, 55.776573 ], [ -159.082031, 55.677584 ], [ -159.433594, 55.677584 ], [ -159.433594, 55.578345 ], [ -160.136719, 55.578345 ], [ -160.136719, 55.677584 ], [ -160.312500, 55.677584 ], [ -160.312500, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.478853 ], [ -161.015625, 55.478853 ], [ -161.015625, 55.379110 ], [ -161.191406, 55.379110 ], [ -161.191406, 55.279115 ], [ -161.542969, 55.279115 ], [ -161.542969, 55.178868 ], [ -161.718750, 55.178868 ], [ -161.718750, 55.078367 ], [ -162.070312, 55.078367 ], [ -162.070312, 54.977614 ], [ -162.246094, 54.977614 ], [ -162.246094, 54.876607 ], [ -162.597656, 54.876607 ], [ -162.597656, 54.775346 ], [ -162.949219, 54.775346 ], [ -162.949219, 54.673831 ], [ -163.300781, 54.673831 ], [ -163.300781, 54.572062 ], [ -163.828125, 54.572062 ], [ -163.828125, 54.470038 ], [ -164.355469, 54.470038 ], [ -164.355469, 54.367759 ], [ -164.707031, 54.367759 ], [ -164.707031, 54.470038 ], [ -164.882812, 54.470038 ], [ -164.882812, 54.572062 ], [ -164.707031, 54.572062 ], [ -164.707031, 54.673831 ], [ -164.531250, 54.673831 ], [ -164.531250, 54.775346 ], [ -164.179688, 54.775346 ], [ -164.179688, 54.876607 ], [ -164.003906, 54.876607 ], [ -164.003906, 54.977614 ], [ -163.828125, 54.977614 ], [ -163.828125, 55.078367 ], [ -163.652344, 55.078367 ], [ -163.652344, 55.178868 ], [ -163.300781, 55.178868 ], [ -163.300781, 55.279115 ], [ -162.949219, 55.279115 ], [ -162.949219, 55.379110 ], [ -162.773438, 55.379110 ], [ -162.773438, 55.478853 ], [ -162.421875, 55.478853 ], [ -162.421875, 55.578345 ], [ -162.246094, 55.578345 ], [ -162.246094, 55.677584 ], [ -162.070312, 55.677584 ], [ -162.070312, 55.776573 ], [ -161.718750, 55.776573 ], [ -161.718750, 55.875311 ], [ -161.015625, 55.875311 ], [ -161.015625, 55.973798 ], [ -160.488281, 55.973798 ], [ -160.488281, 56.072035 ], [ -160.312500, 56.072035 ], [ -160.312500, 56.267761 ], [ -160.136719, 56.267761 ], [ -160.136719, 56.462490 ], [ -159.960938, 56.462490 ], [ -159.960938, 56.559482 ], [ -159.609375, 56.559482 ], [ -159.609375, 56.656226 ], [ -159.433594, 56.656226 ], [ -159.433594, 56.752723 ], [ -159.257812, 56.752723 ], [ -159.257812, 56.848972 ], [ -158.906250, 56.848972 ], [ -158.906250, 56.944974 ], [ -158.730469, 56.944974 ], [ -158.730469, 57.040730 ], [ -158.554688, 57.040730 ], [ -158.554688, 57.136239 ], [ -158.378906, 57.136239 ], [ -158.378906, 57.231503 ], [ -158.203125, 57.231503 ], [ -158.203125, 57.326521 ], [ -158.027344, 57.326521 ], [ -158.027344, 57.421294 ], [ -157.851562, 57.421294 ], [ -157.851562, 57.515823 ], [ -157.675781, 57.515823 ], [ -157.675781, 57.984808 ], [ -157.500000, 57.984808 ], [ -157.500000, 58.447733 ], [ -157.324219, 58.447733 ], [ -157.324219, 58.631217 ], [ -157.148438, 58.631217 ], [ -157.148438, 58.813742 ], [ -157.500000, 58.813742 ], [ -157.500000, 58.722599 ], [ -157.851562, 58.722599 ], [ -157.851562, 58.631217 ], [ -158.378906, 58.631217 ], [ -158.378906, 58.722599 ], [ -158.730469, 58.722599 ], [ -158.730469, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.539595 ], [ -159.433594, 58.539595 ], [ -159.433594, 58.722599 ], [ -159.609375, 58.722599 ], [ -159.609375, 58.813742 ], [ -159.785156, 58.813742 ], [ -159.785156, 58.722599 ], [ -159.960938, 58.722599 ], [ -159.960938, 58.631217 ], [ -160.136719, 58.631217 ], [ -160.136719, 58.904646 ], [ -160.312500, 58.904646 ], [ -160.312500, 58.995311 ], [ -160.488281, 58.995311 ], [ -160.488281, 58.904646 ], [ -160.664062, 58.904646 ], [ -160.664062, 58.813742 ], [ -161.015625, 58.813742 ], [ -161.015625, 58.722599 ], [ -161.191406, 58.722599 ], [ -161.191406, 58.631217 ], [ -161.894531, 58.631217 ], [ -161.894531, 58.904646 ], [ -162.070312, 58.904646 ], [ -162.070312, 59.445075 ], [ -161.894531, 59.445075 ], [ -161.894531, 59.623325 ], [ -162.070312, 59.623325 ], [ -162.070312, 59.712097 ], [ -162.246094, 59.712097 ], [ -162.246094, 59.800634 ], [ -162.421875, 59.800634 ], [ -162.421875, 59.888937 ], [ -162.597656, 59.888937 ], [ -162.597656, 59.977005 ], [ -162.773438, 59.977005 ], [ -162.773438, 59.888937 ], [ -163.476562, 59.888937 ], [ -163.476562, 59.800634 ], [ -164.003906, 59.800634 ], [ -164.003906, 59.888937 ], [ -164.179688, 59.888937 ], [ -164.179688, 59.977005 ], [ -164.355469, 59.977005 ], [ -164.355469, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.152442 ], [ -164.707031, 60.152442 ], [ -164.707031, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.326948 ], [ -165.234375, 60.326948 ], [ -165.234375, 60.413852 ], [ -165.410156, 60.413852 ], [ -165.410156, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.185625 ], [ -165.761719, 61.185625 ], [ -165.761719, 61.354614 ], [ -165.937500, 61.354614 ], [ -165.937500, 61.438767 ], [ -166.113281, 61.438767 ], [ -166.113281, 61.606396 ], [ -165.937500, 61.606396 ], [ -165.937500, 61.938950 ], [ -165.761719, 61.938950 ], [ -165.761719, 62.103883 ], [ -165.585938, 62.103883 ], [ -165.585938, 62.186014 ], [ -165.410156, 62.186014 ], [ -165.410156, 62.349609 ], [ -165.234375, 62.349609 ], [ -165.234375, 62.431074 ], [ -165.058594, 62.431074 ], [ -165.058594, 62.512318 ], [ -164.882812, 62.512318 ], [ -164.882812, 62.674143 ], [ -164.707031, 62.674143 ], [ -164.707031, 62.995158 ], [ -164.531250, 62.995158 ], [ -164.531250, 63.154355 ], [ -164.003906, 63.154355 ], [ -164.003906, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 63.154355 ], [ -163.476562, 63.154355 ], [ -163.476562, 63.074866 ], [ -162.949219, 63.074866 ], [ -162.949219, 63.154355 ], [ -162.773438, 63.154355 ], [ -162.773438, 63.312683 ], [ -162.597656, 63.312683 ], [ -162.597656, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.470145 ], [ -162.246094, 63.470145 ], [ -162.246094, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.470145 ], [ -161.367188, 63.470145 ], [ -161.367188, 63.548552 ], [ -161.191406, 63.548552 ], [ -161.191406, 63.626745 ], [ -161.015625, 63.626745 ], [ -161.015625, 63.704722 ], [ -160.839844, 63.704722 ], [ -160.839844, 64.014496 ], [ -161.015625, 64.014496 ], [ -161.015625, 64.244595 ], [ -161.191406, 64.244595 ], [ -161.191406, 64.320872 ], [ -161.542969, 64.320872 ], [ -161.542969, 64.396938 ], [ -161.367188, 64.396938 ], [ -161.367188, 64.472794 ], [ -161.191406, 64.472794 ], [ -161.191406, 64.623877 ], [ -161.015625, 64.623877 ], [ -161.015625, 64.699105 ], [ -160.839844, 64.699105 ], [ -160.839844, 64.774125 ], [ -161.367188, 64.774125 ], [ -161.367188, 64.699105 ], [ -161.718750, 64.699105 ], [ -161.718750, 64.623877 ], [ -162.070312, 64.623877 ], [ -162.070312, 64.548440 ], [ -162.421875, 64.548440 ], [ -162.421875, 64.472794 ], [ -162.597656, 64.472794 ], [ -162.597656, 64.320872 ], [ -162.949219, 64.320872 ], [ -162.949219, 64.396938 ], [ -163.300781, 64.396938 ], [ -163.300781, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.548440 ], [ -164.003906, 64.548440 ], [ -164.003906, 64.472794 ], [ -165.234375, 64.472794 ], [ -165.234375, 64.548440 ], [ -165.761719, 64.548440 ], [ -165.761719, 64.623877 ], [ -166.289062, 64.623877 ], [ -166.289062, 64.699105 ], [ -166.464844, 64.699105 ], [ -166.464844, 64.774125 ], [ -166.640625, 64.774125 ], [ -166.640625, 64.923542 ], [ -166.816406, 64.923542 ], [ -166.816406, 65.072130 ], [ -166.992188, 65.072130 ], [ -166.992188, 65.146115 ], [ -167.167969, 65.146115 ], [ -167.167969, 65.219894 ], [ -167.343750, 65.219894 ], [ -167.343750, 65.366837 ], [ -167.519531, 65.366837 ], [ -167.519531, 65.440002 ], [ -167.695312, 65.440002 ], [ -167.695312, 65.512963 ], [ -167.871094, 65.512963 ], [ -167.871094, 65.585720 ], [ -168.046875, 65.585720 ], [ -168.046875, 65.658275 ], [ -167.871094, 65.658275 ], [ -167.871094, 65.730626 ], [ -167.519531, 65.730626 ], [ -167.519531, 65.802776 ], [ -167.343750, 65.802776 ], [ -167.343750, 65.874725 ], [ -167.167969, 65.874725 ], [ -167.167969, 65.946472 ], [ -166.816406, 65.946472 ], [ -166.816406, 66.018018 ], [ -166.640625, 66.018018 ], [ -166.640625, 66.089364 ], [ -166.464844, 66.089364 ], [ -166.464844, 66.160511 ], [ -166.113281, 66.160511 ], [ -166.113281, 66.231457 ], [ -165.761719, 66.231457 ], [ -165.761719, 66.302205 ], [ -165.410156, 66.302205 ], [ -165.410156, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.652344, 66.302205 ], [ -163.828125, 66.302205 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.160511 ], [ -161.894531, 66.160511 ], [ -161.894531, 66.302205 ], [ -162.070312, 66.302205 ], [ -162.070312, 66.443107 ], [ -162.246094, 66.443107 ], [ -162.246094, 66.583217 ], [ -162.421875, 66.583217 ], [ -162.421875, 66.722541 ], [ -162.597656, 66.722541 ], [ -162.597656, 66.791909 ], [ -162.949219, 66.791909 ], [ -162.949219, 66.861082 ], [ -156.621094, 66.861082 ] ], [ [ -157.148438, 58.904646 ], [ -157.148438, 58.813742 ], [ -156.972656, 58.813742 ], [ -156.972656, 58.904646 ], [ -157.148438, 58.904646 ] ] ], [ [ [ -166.289062, 60.413852 ], [ -166.289062, 60.326948 ], [ -165.761719, 60.326948 ], [ -165.761719, 60.064840 ], [ -165.585938, 60.064840 ], [ -165.585938, 59.800634 ], [ -165.937500, 59.800634 ], [ -165.937500, 59.712097 ], [ -166.289062, 59.712097 ], [ -166.289062, 59.800634 ], [ -166.640625, 59.800634 ], [ -166.640625, 59.888937 ], [ -166.816406, 59.888937 ], [ -166.816406, 59.977005 ], [ -166.992188, 59.977005 ], [ -166.992188, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.152442 ], [ -167.519531, 60.152442 ], [ -167.519531, 60.239811 ], [ -167.167969, 60.239811 ], [ -167.167969, 60.326948 ], [ -166.640625, 60.326948 ], [ -166.640625, 60.413852 ], [ -166.289062, 60.413852 ] ] ], [ [ [ -170.507812, 63.704722 ], [ -170.507812, 63.626745 ], [ -170.156250, 63.626745 ], [ -170.156250, 63.548552 ], [ -169.804688, 63.548552 ], [ -169.804688, 63.470145 ], [ -169.453125, 63.470145 ], [ -169.453125, 63.391522 ], [ -169.101562, 63.391522 ], [ -169.101562, 63.312683 ], [ -168.750000, 63.312683 ], [ -168.750000, 63.074866 ], [ -169.101562, 63.074866 ], [ -169.101562, 62.995158 ], [ -169.628906, 62.995158 ], [ -169.628906, 63.074866 ], [ -169.980469, 63.074866 ], [ -169.980469, 63.154355 ], [ -170.332031, 63.154355 ], [ -170.332031, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.312683 ], [ -170.683594, 63.312683 ], [ -170.683594, 63.391522 ], [ -171.035156, 63.391522 ], [ -171.035156, 63.312683 ], [ -171.738281, 63.312683 ], [ -171.738281, 63.704722 ], [ -171.386719, 63.704722 ], [ -171.386719, 63.626745 ], [ -170.683594, 63.626745 ], [ -170.683594, 63.704722 ], [ -170.507812, 63.704722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -152.578125, 57.797944 ], [ -152.402344, 57.797944 ], [ -152.402344, 57.610107 ], [ -152.226562, 57.610107 ], [ -152.226562, 57.515823 ], [ -152.402344, 57.515823 ], [ -152.402344, 57.421294 ], [ -152.578125, 57.421294 ], [ -152.578125, 57.231503 ], [ -152.753906, 57.231503 ], [ -152.753906, 57.136239 ], [ -152.929688, 57.136239 ], [ -152.929688, 57.040730 ], [ -153.281250, 57.040730 ], [ -153.281250, 56.944974 ], [ -153.457031, 56.944974 ], [ -153.457031, 56.848972 ], [ -153.808594, 56.848972 ], [ -153.808594, 56.752723 ], [ -154.160156, 56.752723 ], [ -154.160156, 56.848972 ], [ -154.511719, 56.848972 ], [ -154.511719, 57.136239 ], [ -154.687500, 57.136239 ], [ -154.687500, 57.421294 ], [ -154.511719, 57.421294 ], [ -154.511719, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.610107 ], [ -153.984375, 57.610107 ], [ -153.984375, 57.704147 ], [ -153.808594, 57.704147 ], [ -153.808594, 57.797944 ], [ -153.632812, 57.797944 ], [ -153.632812, 57.891497 ], [ -153.281250, 57.891497 ], [ -153.281250, 57.984808 ], [ -153.105469, 57.984808 ], [ -153.105469, 57.891497 ], [ -152.578125, 57.891497 ], [ -152.578125, 57.797944 ] ] ], [ [ [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.085739 ], [ -134.648438, 59.085739 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.170702 ], [ -136.757812, 58.170702 ], [ -136.757812, 58.263287 ], [ -137.109375, 58.263287 ], [ -137.109375, 58.355630 ], [ -137.460938, 58.355630 ], [ -137.460938, 58.447733 ], [ -137.812500, 58.447733 ], [ -137.812500, 58.539595 ], [ -137.988281, 58.539595 ], [ -137.988281, 58.631217 ], [ -138.164062, 58.631217 ], [ -138.164062, 58.722599 ], [ -138.339844, 58.722599 ], [ -138.339844, 58.813742 ], [ -138.515625, 58.813742 ], [ -138.515625, 58.904646 ], [ -138.691406, 58.904646 ], [ -138.691406, 58.995311 ], [ -139.042969, 58.995311 ], [ -139.042969, 59.085739 ], [ -139.218750, 59.085739 ], [ -139.218750, 59.175928 ], [ -139.394531, 59.175928 ], [ -139.394531, 59.265881 ], [ -139.570312, 59.265881 ], [ -139.570312, 59.355596 ], [ -139.746094, 59.355596 ], [ -139.746094, 59.445075 ], [ -139.921875, 59.445075 ], [ -139.921875, 59.534318 ], [ -140.273438, 59.534318 ], [ -140.273438, 59.623325 ], [ -140.625000, 59.623325 ], [ -140.625000, 59.712097 ], [ -141.152344, 59.712097 ], [ -141.152344, 59.800634 ], [ -141.503906, 59.800634 ], [ -141.503906, 59.888937 ], [ -142.031250, 59.888937 ], [ -142.031250, 59.977005 ], [ -142.382812, 59.977005 ], [ -142.382812, 60.064840 ], [ -143.085938, 60.064840 ], [ -143.085938, 59.977005 ], [ -144.140625, 59.977005 ], [ -144.140625, 60.064840 ], [ -144.492188, 60.064840 ], [ -144.492188, 60.152442 ], [ -144.843750, 60.152442 ], [ -144.843750, 60.239811 ], [ -145.195312, 60.239811 ], [ -145.195312, 60.326948 ], [ -145.546875, 60.326948 ], [ -145.546875, 60.413852 ], [ -145.898438, 60.413852 ], [ -145.898438, 60.500525 ], [ -146.074219, 60.500525 ], [ -146.074219, 60.586967 ], [ -146.425781, 60.586967 ], [ -146.425781, 60.673179 ], [ -146.777344, 60.673179 ], [ -146.777344, 60.759160 ], [ -147.128906, 60.759160 ], [ -147.128906, 60.844911 ], [ -147.304688, 60.844911 ], [ -147.304688, 60.759160 ], [ -147.832031, 60.759160 ], [ -147.832031, 60.673179 ], [ -148.183594, 60.673179 ], [ -148.183594, 60.326948 ], [ -148.007812, 60.326948 ], [ -148.007812, 59.977005 ], [ -148.183594, 59.977005 ], [ -148.183594, 59.888937 ], [ -148.710938, 59.888937 ], [ -148.710938, 59.800634 ], [ -149.414062, 59.800634 ], [ -149.414062, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.623325 ], [ -149.941406, 59.623325 ], [ -149.941406, 59.534318 ], [ -150.292969, 59.534318 ], [ -150.292969, 59.445075 ], [ -150.468750, 59.445075 ], [ -150.468750, 59.355596 ], [ -150.820312, 59.355596 ], [ -150.820312, 59.265881 ], [ -151.347656, 59.265881 ], [ -151.347656, 59.175928 ], [ -151.699219, 59.175928 ], [ -151.699219, 59.445075 ], [ -151.875000, 59.445075 ], [ -151.875000, 59.888937 ], [ -151.699219, 59.888937 ], [ -151.699219, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.586967 ], [ -151.347656, 60.586967 ], [ -151.347656, 60.759160 ], [ -150.996094, 60.759160 ], [ -150.996094, 60.844911 ], [ -150.644531, 60.844911 ], [ -150.644531, 60.930432 ], [ -150.292969, 60.930432 ], [ -150.292969, 61.015725 ], [ -150.468750, 61.015725 ], [ -150.468750, 61.185625 ], [ -150.820312, 61.185625 ], [ -150.820312, 61.100789 ], [ -150.996094, 61.100789 ], [ -150.996094, 61.015725 ], [ -151.347656, 61.015725 ], [ -151.347656, 60.930432 ], [ -151.523438, 60.930432 ], [ -151.523438, 60.844911 ], [ -151.699219, 60.844911 ], [ -151.699219, 60.759160 ], [ -151.875000, 60.759160 ], [ -151.875000, 60.673179 ], [ -152.050781, 60.673179 ], [ -152.050781, 60.500525 ], [ -152.226562, 60.500525 ], [ -152.226562, 60.326948 ], [ -152.402344, 60.326948 ], [ -152.402344, 60.152442 ], [ -152.578125, 60.152442 ], [ -152.578125, 59.977005 ], [ -152.753906, 59.977005 ], [ -152.753906, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.800634 ], [ -153.105469, 59.800634 ], [ -153.105469, 59.712097 ], [ -153.281250, 59.712097 ], [ -153.281250, 59.623325 ], [ -153.457031, 59.623325 ], [ -153.457031, 59.534318 ], [ -153.632812, 59.534318 ], [ -153.632812, 59.445075 ], [ -153.808594, 59.445075 ], [ -153.808594, 59.355596 ], [ -153.984375, 59.355596 ], [ -153.984375, 59.265881 ], [ -153.808594, 59.265881 ], [ -153.808594, 59.175928 ], [ -153.632812, 59.175928 ], [ -153.632812, 58.995311 ], [ -153.457031, 58.995311 ], [ -153.457031, 58.904646 ], [ -153.281250, 58.904646 ], [ -153.281250, 58.813742 ], [ -153.457031, 58.813742 ], [ -153.457031, 58.631217 ], [ -153.632812, 58.631217 ], [ -153.632812, 58.539595 ], [ -153.808594, 58.539595 ], [ -153.808594, 58.355630 ], [ -153.984375, 58.355630 ], [ -153.984375, 58.170702 ], [ -154.160156, 58.170702 ], [ -154.160156, 58.077876 ], [ -154.511719, 58.077876 ], [ -154.511719, 57.984808 ], [ -154.687500, 57.984808 ], [ -154.687500, 57.891497 ], [ -154.863281, 57.891497 ], [ -154.863281, 57.797944 ], [ -155.214844, 57.797944 ], [ -155.214844, 57.704147 ], [ -155.390625, 57.704147 ], [ -155.390625, 57.610107 ], [ -155.742188, 57.610107 ], [ -155.742188, 57.515823 ], [ -156.093750, 57.515823 ], [ -156.093750, 57.421294 ], [ -156.269531, 57.421294 ], [ -156.269531, 57.231503 ], [ -156.445312, 57.231503 ], [ -156.445312, 57.040730 ], [ -156.621094, 57.040730 ], [ -156.621094, 66.861082 ], [ -140.976562, 66.861082 ], [ -140.976562, 60.326948 ], [ -140.625000, 60.326948 ], [ -140.625000, 60.239811 ], [ -140.097656, 60.239811 ], [ -140.097656, 60.152442 ], [ -139.746094, 60.152442 ], [ -139.746094, 60.064840 ], [ -139.394531, 60.064840 ], [ -139.394531, 59.977005 ], [ -139.042969, 59.977005 ], [ -139.042969, 59.888937 ], [ -138.867188, 59.888937 ], [ -138.867188, 59.800634 ], [ -138.691406, 59.800634 ], [ -138.691406, 59.623325 ], [ -138.515625, 59.623325 ], [ -138.515625, 59.534318 ], [ -138.339844, 59.534318 ], [ -138.339844, 59.445075 ], [ -138.164062, 59.445075 ], [ -138.164062, 59.265881 ], [ -137.988281, 59.265881 ], [ -137.988281, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 59.085739 ], [ -137.636719, 59.085739 ], [ -137.636719, 58.904646 ], [ -137.285156, 58.904646 ], [ -137.285156, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.085739 ], [ -136.933594, 59.085739 ], [ -136.933594, 59.175928 ], [ -136.757812, 59.175928 ], [ -136.757812, 59.265881 ], [ -136.582031, 59.265881 ], [ -136.582031, 59.355596 ], [ -136.406250, 59.355596 ], [ -136.406250, 59.445075 ], [ -136.230469, 59.445075 ], [ -136.230469, 59.534318 ], [ -136.054688, 59.534318 ], [ -136.054688, 59.623325 ], [ -135.703125, 59.623325 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -153.105469, 57.984808 ], [ -153.105469, 57.891497 ], [ -152.578125, 57.891497 ], [ -152.578125, 57.797944 ], [ -152.402344, 57.797944 ], [ -152.402344, 57.610107 ], [ -152.226562, 57.610107 ], [ -152.226562, 57.515823 ], [ -152.402344, 57.515823 ], [ -152.402344, 57.421294 ], [ -152.578125, 57.421294 ], [ -152.578125, 57.231503 ], [ -152.753906, 57.231503 ], [ -152.753906, 57.136239 ], [ -152.929688, 57.136239 ], [ -152.929688, 57.040730 ], [ -153.281250, 57.040730 ], [ -153.281250, 56.944974 ], [ -153.457031, 56.944974 ], [ -153.457031, 56.848972 ], [ -153.808594, 56.848972 ], [ -153.808594, 56.752723 ], [ -154.160156, 56.752723 ], [ -154.160156, 56.848972 ], [ -154.511719, 56.848972 ], [ -154.511719, 57.136239 ], [ -154.687500, 57.136239 ], [ -154.687500, 57.421294 ], [ -154.511719, 57.421294 ], [ -154.511719, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.610107 ], [ -153.984375, 57.610107 ], [ -153.984375, 57.704147 ], [ -153.808594, 57.704147 ], [ -153.808594, 57.797944 ], [ -153.632812, 57.797944 ], [ -153.632812, 57.891497 ], [ -153.281250, 57.891497 ], [ -153.281250, 57.984808 ], [ -153.105469, 57.984808 ] ] ], [ [ [ -140.976562, 66.861082 ], [ -140.976562, 60.326948 ], [ -140.625000, 60.326948 ], [ -140.625000, 60.239811 ], [ -140.097656, 60.239811 ], [ -140.097656, 60.152442 ], [ -139.746094, 60.152442 ], [ -139.746094, 60.064840 ], [ -139.394531, 60.064840 ], [ -139.394531, 59.977005 ], [ -139.042969, 59.977005 ], [ -139.042969, 59.888937 ], [ -138.867188, 59.888937 ], [ -138.867188, 59.800634 ], [ -138.691406, 59.800634 ], [ -138.691406, 59.623325 ], [ -138.515625, 59.623325 ], [ -138.515625, 59.534318 ], [ -138.339844, 59.534318 ], [ -138.339844, 59.445075 ], [ -138.164062, 59.445075 ], [ -138.164062, 59.265881 ], [ -137.988281, 59.265881 ], [ -137.988281, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 59.085739 ], [ -137.636719, 59.085739 ], [ -137.636719, 58.904646 ], [ -137.285156, 58.904646 ], [ -137.285156, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.085739 ], [ -136.933594, 59.085739 ], [ -136.933594, 59.175928 ], [ -136.757812, 59.175928 ], [ -136.757812, 59.265881 ], [ -136.582031, 59.265881 ], [ -136.582031, 59.355596 ], [ -136.406250, 59.355596 ], [ -136.406250, 59.445075 ], [ -136.230469, 59.445075 ], [ -136.230469, 59.534318 ], [ -136.054688, 59.534318 ], [ -136.054688, 59.623325 ], [ -135.703125, 59.623325 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.085739 ], [ -134.648438, 59.085739 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.170702 ], [ -136.757812, 58.170702 ], [ -136.757812, 58.263287 ], [ -137.109375, 58.263287 ], [ -137.109375, 58.355630 ], [ -137.460938, 58.355630 ], [ -137.460938, 58.447733 ], [ -137.812500, 58.447733 ], [ -137.812500, 58.539595 ], [ -137.988281, 58.539595 ], [ -137.988281, 58.631217 ], [ -138.164062, 58.631217 ], [ -138.164062, 58.722599 ], [ -138.339844, 58.722599 ], [ -138.339844, 58.813742 ], [ -138.515625, 58.813742 ], [ -138.515625, 58.904646 ], [ -138.691406, 58.904646 ], [ -138.691406, 58.995311 ], [ -139.042969, 58.995311 ], [ -139.042969, 59.085739 ], [ -139.218750, 59.085739 ], [ -139.218750, 59.175928 ], [ -139.394531, 59.175928 ], [ -139.394531, 59.265881 ], [ -139.570312, 59.265881 ], [ -139.570312, 59.355596 ], [ -139.746094, 59.355596 ], [ -139.746094, 59.445075 ], [ -139.921875, 59.445075 ], [ -139.921875, 59.534318 ], [ -140.273438, 59.534318 ], [ -140.273438, 59.623325 ], [ -140.625000, 59.623325 ], [ -140.625000, 59.712097 ], [ -141.152344, 59.712097 ], [ -141.152344, 59.800634 ], [ -141.503906, 59.800634 ], [ -141.503906, 59.888937 ], [ -142.031250, 59.888937 ], [ -142.031250, 59.977005 ], [ -142.382812, 59.977005 ], [ -142.382812, 60.064840 ], [ -143.085938, 60.064840 ], [ -143.085938, 59.977005 ], [ -144.140625, 59.977005 ], [ -144.140625, 60.064840 ], [ -144.492188, 60.064840 ], [ -144.492188, 60.152442 ], [ -144.843750, 60.152442 ], [ -144.843750, 60.239811 ], [ -145.195312, 60.239811 ], [ -145.195312, 60.326948 ], [ -145.546875, 60.326948 ], [ -145.546875, 60.413852 ], [ -145.898438, 60.413852 ], [ -145.898438, 60.500525 ], [ -146.074219, 60.500525 ], [ -146.074219, 60.586967 ], [ -146.425781, 60.586967 ], [ -146.425781, 60.673179 ], [ -146.777344, 60.673179 ], [ -146.777344, 60.759160 ], [ -147.128906, 60.759160 ], [ -147.128906, 60.844911 ], [ -147.304688, 60.844911 ], [ -147.304688, 60.759160 ], [ -147.832031, 60.759160 ], [ -147.832031, 60.673179 ], [ -148.183594, 60.673179 ], [ -148.183594, 60.326948 ], [ -148.007812, 60.326948 ], [ -148.007812, 59.977005 ], [ -148.183594, 59.977005 ], [ -148.183594, 59.888937 ], [ -148.710938, 59.888937 ], [ -148.710938, 59.800634 ], [ -149.414062, 59.800634 ], [ -149.414062, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.623325 ], [ -149.941406, 59.623325 ], [ -149.941406, 59.534318 ], [ -150.292969, 59.534318 ], [ -150.292969, 59.445075 ], [ -150.468750, 59.445075 ], [ -150.468750, 59.355596 ], [ -150.820312, 59.355596 ], [ -150.820312, 59.265881 ], [ -151.347656, 59.265881 ], [ -151.347656, 59.175928 ], [ -151.699219, 59.175928 ], [ -151.699219, 59.445075 ], [ -151.875000, 59.445075 ], [ -151.875000, 59.888937 ], [ -151.699219, 59.888937 ], [ -151.699219, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.586967 ], [ -151.347656, 60.586967 ], [ -151.347656, 60.759160 ], [ -150.996094, 60.759160 ], [ -150.996094, 60.844911 ], [ -150.644531, 60.844911 ], [ -150.644531, 60.930432 ], [ -150.292969, 60.930432 ], [ -150.292969, 61.015725 ], [ -150.468750, 61.015725 ], [ -150.468750, 61.185625 ], [ -150.820312, 61.185625 ], [ -150.820312, 61.100789 ], [ -150.996094, 61.100789 ], [ -150.996094, 61.015725 ], [ -151.347656, 61.015725 ], [ -151.347656, 60.930432 ], [ -151.523438, 60.930432 ], [ -151.523438, 60.844911 ], [ -151.699219, 60.844911 ], [ -151.699219, 60.759160 ], [ -151.875000, 60.759160 ], [ -151.875000, 60.673179 ], [ -152.050781, 60.673179 ], [ -152.050781, 60.500525 ], [ -152.226562, 60.500525 ], [ -152.226562, 60.326948 ], [ -152.402344, 60.326948 ], [ -152.402344, 60.152442 ], [ -152.578125, 60.152442 ], [ -152.578125, 59.977005 ], [ -152.753906, 59.977005 ], [ -152.753906, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.800634 ], [ -153.105469, 59.800634 ], [ -153.105469, 59.712097 ], [ -153.281250, 59.712097 ], [ -153.281250, 59.623325 ], [ -153.457031, 59.623325 ], [ -153.457031, 59.534318 ], [ -153.632812, 59.534318 ], [ -153.632812, 59.445075 ], [ -153.808594, 59.445075 ], [ -153.808594, 59.355596 ], [ -153.984375, 59.355596 ], [ -153.984375, 59.265881 ], [ -153.808594, 59.265881 ], [ -153.808594, 59.175928 ], [ -153.632812, 59.175928 ], [ -153.632812, 58.995311 ], [ -153.457031, 58.995311 ], [ -153.457031, 58.904646 ], [ -153.281250, 58.904646 ], [ -153.281250, 58.813742 ], [ -153.457031, 58.813742 ], [ -153.457031, 58.631217 ], [ -153.632812, 58.631217 ], [ -153.632812, 58.539595 ], [ -153.808594, 58.539595 ], [ -153.808594, 58.355630 ], [ -153.984375, 58.355630 ], [ -153.984375, 58.170702 ], [ -154.160156, 58.170702 ], [ -154.160156, 58.077876 ], [ -154.511719, 58.077876 ], [ -154.511719, 57.984808 ], [ -154.687500, 57.984808 ], [ -154.687500, 57.891497 ], [ -154.863281, 57.891497 ], [ -154.863281, 57.797944 ], [ -155.214844, 57.797944 ], [ -155.214844, 57.704147 ], [ -155.390625, 57.704147 ], [ -155.390625, 57.610107 ], [ -155.742188, 57.610107 ], [ -155.742188, 57.515823 ], [ -156.093750, 57.515823 ], [ -156.093750, 57.421294 ], [ -156.269531, 57.421294 ], [ -156.269531, 57.231503 ], [ -156.445312, 57.231503 ], [ -156.445312, 57.040730 ], [ -156.621094, 57.040730 ], [ -156.621094, 66.861082 ], [ -140.976562, 66.861082 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -170.332031, 66.160511 ], [ -170.332031, 66.018018 ], [ -170.156250, 66.018018 ], [ -170.156250, 65.946472 ], [ -169.980469, 65.946472 ], [ -169.980469, 65.874725 ], [ -170.156250, 65.874725 ], [ -170.156250, 65.802776 ], [ -170.332031, 65.802776 ], [ -170.332031, 65.730626 ], [ -170.507812, 65.730626 ], [ -170.507812, 65.585720 ], [ -170.683594, 65.585720 ], [ -170.683594, 65.512963 ], [ -171.562500, 65.512963 ], [ -171.562500, 65.440002 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.396938 ], [ -172.792969, 64.396938 ], [ -172.792969, 64.244595 ], [ -174.023438, 64.244595 ], [ -174.023438, 64.320872 ], [ -174.199219, 64.320872 ], [ -174.199219, 64.396938 ], [ -174.375000, 64.396938 ], [ -174.375000, 64.472794 ], [ -174.550781, 64.472794 ], [ -174.550781, 64.548440 ], [ -174.726562, 64.548440 ], [ -174.726562, 64.623877 ], [ -174.902344, 64.623877 ], [ -174.902344, 64.699105 ], [ -175.253906, 64.699105 ], [ -175.253906, 64.774125 ], [ -175.605469, 64.774125 ], [ -175.605469, 64.848937 ], [ -175.957031, 64.848937 ], [ -175.957031, 65.146115 ], [ -176.132812, 65.146115 ], [ -176.132812, 65.366837 ], [ -176.484375, 65.366837 ], [ -176.484375, 65.440002 ], [ -177.011719, 65.440002 ], [ -177.011719, 65.512963 ], [ -177.363281, 65.512963 ], [ -177.363281, 65.440002 ], [ -178.066406, 65.440002 ], [ -178.066406, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.512963 ], [ -178.769531, 65.512963 ], [ -178.769531, 65.658275 ], [ -178.945312, 65.658275 ], [ -178.945312, 65.874725 ], [ -178.769531, 65.874725 ], [ -178.769531, 66.018018 ], [ -179.121094, 66.018018 ], [ -179.121094, 65.946472 ], [ -179.472656, 65.946472 ], [ -179.472656, 65.874725 ], [ -179.824219, 65.874725 ], [ -179.824219, 65.730626 ], [ -179.648438, 65.730626 ], [ -179.648438, 65.512963 ], [ -179.472656, 65.512963 ], [ -179.472656, 65.366837 ], [ -179.648438, 65.366837 ], [ -179.648438, 65.219894 ], [ -179.824219, 65.219894 ], [ -179.824219, 65.072130 ], [ -180.000000, 65.072130 ], [ -180.000000, 66.861082 ], [ -174.902344, 66.861082 ], [ -174.902344, 66.722541 ], [ -175.078125, 66.722541 ], [ -175.078125, 66.513260 ], [ -174.902344, 66.513260 ], [ -174.902344, 66.443107 ], [ -174.726562, 66.443107 ], [ -174.726562, 66.372755 ], [ -174.550781, 66.372755 ], [ -174.550781, 66.302205 ], [ -174.375000, 66.302205 ], [ -174.375000, 66.583217 ], [ -174.550781, 66.583217 ], [ -174.550781, 66.861082 ], [ -171.738281, 66.861082 ], [ -171.738281, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.722541 ], [ -171.386719, 66.722541 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.302205 ], [ -170.683594, 66.302205 ], [ -170.683594, 66.231457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.738281, 66.861082 ], [ -171.738281, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.722541 ], [ -171.386719, 66.722541 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.302205 ], [ -170.683594, 66.302205 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -170.332031, 66.160511 ], [ -170.332031, 66.018018 ], [ -170.156250, 66.018018 ], [ -170.156250, 65.946472 ], [ -169.980469, 65.946472 ], [ -169.980469, 65.874725 ], [ -170.156250, 65.874725 ], [ -170.156250, 65.802776 ], [ -170.332031, 65.802776 ], [ -170.332031, 65.730626 ], [ -170.507812, 65.730626 ], [ -170.507812, 65.585720 ], [ -170.683594, 65.585720 ], [ -170.683594, 65.512963 ], [ -171.562500, 65.512963 ], [ -171.562500, 65.440002 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.396938 ], [ -172.792969, 64.396938 ], [ -172.792969, 64.244595 ], [ -174.023438, 64.244595 ], [ -174.023438, 64.320872 ], [ -174.199219, 64.320872 ], [ -174.199219, 64.396938 ], [ -174.375000, 64.396938 ], [ -174.375000, 64.472794 ], [ -174.550781, 64.472794 ], [ -174.550781, 64.548440 ], [ -174.726562, 64.548440 ], [ -174.726562, 64.623877 ], [ -174.902344, 64.623877 ], [ -174.902344, 64.699105 ], [ -175.253906, 64.699105 ], [ -175.253906, 64.774125 ], [ -175.605469, 64.774125 ], [ -175.605469, 64.848937 ], [ -175.957031, 64.848937 ], [ -175.957031, 65.146115 ], [ -176.132812, 65.146115 ], [ -176.132812, 65.366837 ], [ -176.484375, 65.366837 ], [ -176.484375, 65.440002 ], [ -177.011719, 65.440002 ], [ -177.011719, 65.512963 ], [ -177.363281, 65.512963 ], [ -177.363281, 65.440002 ], [ -178.066406, 65.440002 ], [ -178.066406, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.512963 ], [ -178.769531, 65.512963 ], [ -178.769531, 65.658275 ], [ -178.945312, 65.658275 ], [ -178.945312, 65.874725 ], [ -178.769531, 65.874725 ], [ -178.769531, 66.018018 ], [ -179.121094, 66.018018 ], [ -179.121094, 65.946472 ], [ -179.472656, 65.946472 ], [ -179.472656, 65.874725 ], [ -179.824219, 65.874725 ], [ -179.824219, 65.730626 ], [ -179.648438, 65.730626 ], [ -179.648438, 65.512963 ], [ -179.472656, 65.512963 ], [ -179.472656, 65.366837 ], [ -179.648438, 65.366837 ], [ -179.648438, 65.219894 ], [ -179.824219, 65.219894 ], [ -179.824219, 65.072130 ], [ -180.000000, 65.072130 ], [ -180.000000, 66.861082 ], [ -174.902344, 66.861082 ], [ -174.902344, 66.722541 ], [ -175.078125, 66.722541 ], [ -175.078125, 66.513260 ], [ -174.902344, 66.513260 ], [ -174.902344, 66.443107 ], [ -174.726562, 66.443107 ], [ -174.726562, 66.372755 ], [ -174.550781, 66.372755 ], [ -174.550781, 66.302205 ], [ -174.375000, 66.302205 ], [ -174.375000, 66.583217 ], [ -174.550781, 66.583217 ], [ -174.550781, 66.861082 ], [ -171.738281, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.800781, 69.657086 ], [ -140.273438, 69.657086 ], [ -140.273438, 69.595890 ], [ -139.921875, 69.595890 ], [ -139.921875, 69.534518 ], [ -139.394531, 69.534518 ], [ -139.394531, 69.472969 ], [ -139.042969, 69.472969 ], [ -139.042969, 69.411242 ], [ -138.867188, 69.411242 ], [ -138.867188, 69.349339 ], [ -138.691406, 69.349339 ], [ -138.691406, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.224997 ], [ -138.164062, 69.224997 ], [ -138.164062, 69.162558 ], [ -137.988281, 69.162558 ], [ -137.988281, 69.099940 ], [ -137.812500, 69.099940 ], [ -137.812500, 69.037142 ], [ -137.636719, 69.037142 ], [ -137.636719, 68.974164 ], [ -137.109375, 68.974164 ], [ -137.109375, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 68.974164 ], [ -136.230469, 68.974164 ], [ -136.230469, 69.099940 ], [ -136.054688, 69.099940 ], [ -136.054688, 69.162558 ], [ -135.878906, 69.162558 ], [ -135.878906, 69.224997 ], [ -135.703125, 69.224997 ], [ -135.703125, 69.287257 ], [ -135.527344, 69.287257 ], [ -135.527344, 69.349339 ], [ -135.351562, 69.349339 ], [ -135.351562, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -134.824219, 69.472969 ], [ -134.824219, 69.534518 ], [ -134.648438, 69.534518 ], [ -134.648438, 69.595890 ], [ -134.121094, 69.595890 ], [ -134.121094, 66.160511 ], [ -140.976562, 66.160511 ], [ -140.976562, 69.718107 ], [ -140.800781, 69.718107 ], [ -140.800781, 69.657086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.800781, 69.718107 ], [ -140.800781, 69.657086 ], [ -140.273438, 69.657086 ], [ -140.273438, 69.595890 ], [ -139.921875, 69.595890 ], [ -139.921875, 69.534518 ], [ -139.394531, 69.534518 ], [ -139.394531, 69.472969 ], [ -139.042969, 69.472969 ], [ -139.042969, 69.411242 ], [ -138.867188, 69.411242 ], [ -138.867188, 69.349339 ], [ -138.691406, 69.349339 ], [ -138.691406, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.224997 ], [ -138.164062, 69.224997 ], [ -138.164062, 69.162558 ], [ -137.988281, 69.162558 ], [ -137.988281, 69.099940 ], [ -137.812500, 69.099940 ], [ -137.812500, 69.037142 ], [ -137.636719, 69.037142 ], [ -137.636719, 68.974164 ], [ -137.109375, 68.974164 ], [ -137.109375, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 68.974164 ], [ -136.230469, 68.974164 ], [ -136.230469, 69.099940 ], [ -136.054688, 69.099940 ], [ -136.054688, 69.162558 ], [ -135.878906, 69.162558 ], [ -135.878906, 69.224997 ], [ -135.703125, 69.224997 ], [ -135.703125, 69.287257 ], [ -135.527344, 69.287257 ], [ -135.527344, 69.349339 ], [ -135.351562, 69.349339 ], [ -135.351562, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -134.824219, 69.472969 ], [ -134.824219, 69.534518 ], [ -134.648438, 69.534518 ], [ -134.648438, 69.595890 ], [ -134.121094, 69.595890 ], [ -134.121094, 66.160511 ], [ -140.976562, 66.160511 ], [ -140.976562, 69.718107 ], [ -140.800781, 69.718107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.372755 ], [ -163.828125, 66.372755 ], [ -163.828125, 66.160511 ], [ -166.289062, 66.160511 ], [ -166.289062, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.302205 ], [ -165.585938, 66.302205 ], [ -165.585938, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.652344, 66.372755 ] ] ], [ [ [ -156.093750, 71.244356 ], [ -155.742188, 71.244356 ], [ -155.742188, 71.187754 ], [ -155.390625, 71.187754 ], [ -155.390625, 71.130988 ], [ -155.039062, 71.130988 ], [ -155.039062, 71.074056 ], [ -154.863281, 71.074056 ], [ -154.863281, 70.959697 ], [ -154.687500, 70.959697 ], [ -154.687500, 70.844673 ], [ -154.511719, 70.844673 ], [ -154.511719, 70.728979 ], [ -154.160156, 70.728979 ], [ -154.160156, 70.844673 ], [ -153.984375, 70.844673 ], [ -153.984375, 70.902268 ], [ -153.281250, 70.902268 ], [ -153.281250, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.612614 ], [ -152.050781, 70.612614 ], [ -152.050781, 70.554179 ], [ -151.699219, 70.554179 ], [ -151.699219, 70.495574 ], [ -151.171875, 70.495574 ], [ -151.171875, 70.436799 ], [ -150.468750, 70.436799 ], [ -150.468750, 70.495574 ], [ -149.941406, 70.495574 ], [ -149.941406, 70.554179 ], [ -149.765625, 70.554179 ], [ -149.765625, 70.495574 ], [ -149.414062, 70.495574 ], [ -149.414062, 70.436799 ], [ -149.062500, 70.436799 ], [ -149.062500, 70.377854 ], [ -148.710938, 70.377854 ], [ -148.710938, 70.318738 ], [ -148.359375, 70.318738 ], [ -148.359375, 70.259452 ], [ -148.007812, 70.259452 ], [ -148.007812, 70.199994 ], [ -146.777344, 70.199994 ], [ -146.777344, 70.140364 ], [ -145.722656, 70.140364 ], [ -145.722656, 70.080562 ], [ -145.371094, 70.080562 ], [ -145.371094, 70.020587 ], [ -145.019531, 70.020587 ], [ -145.019531, 69.960439 ], [ -144.492188, 69.960439 ], [ -144.492188, 70.020587 ], [ -144.140625, 70.020587 ], [ -144.140625, 70.080562 ], [ -143.789062, 70.080562 ], [ -143.789062, 70.140364 ], [ -143.613281, 70.140364 ], [ -143.613281, 70.080562 ], [ -143.261719, 70.080562 ], [ -143.261719, 70.020587 ], [ -142.910156, 70.020587 ], [ -142.910156, 69.960439 ], [ -142.558594, 69.960439 ], [ -142.558594, 69.900118 ], [ -142.207031, 69.900118 ], [ -142.207031, 69.839622 ], [ -141.855469, 69.839622 ], [ -141.855469, 69.778952 ], [ -141.328125, 69.778952 ], [ -141.328125, 69.718107 ], [ -140.976562, 69.718107 ], [ -140.976562, 66.160511 ], [ -161.718750, 66.160511 ], [ -161.718750, 66.231457 ], [ -161.894531, 66.231457 ], [ -161.894531, 66.372755 ], [ -162.070312, 66.372755 ], [ -162.070312, 66.513260 ], [ -162.246094, 66.513260 ], [ -162.246094, 66.652977 ], [ -162.421875, 66.652977 ], [ -162.421875, 66.722541 ], [ -162.597656, 66.722541 ], [ -162.597656, 66.791909 ], [ -162.773438, 66.791909 ], [ -162.773438, 66.861082 ], [ -162.949219, 66.861082 ], [ -162.949219, 66.930060 ], [ -163.300781, 66.930060 ], [ -163.300781, 66.998844 ], [ -163.476562, 66.998844 ], [ -163.476562, 67.067433 ], [ -163.652344, 67.067433 ], [ -163.652344, 67.135829 ], [ -163.828125, 67.135829 ], [ -163.828125, 67.272043 ], [ -164.003906, 67.272043 ], [ -164.003906, 67.407487 ], [ -164.179688, 67.407487 ], [ -164.179688, 67.542167 ], [ -164.355469, 67.542167 ], [ -164.355469, 67.609221 ], [ -164.531250, 67.609221 ], [ -164.531250, 67.676085 ], [ -164.707031, 67.676085 ], [ -164.707031, 67.742759 ], [ -164.882812, 67.742759 ], [ -164.882812, 67.875541 ], [ -165.058594, 67.875541 ], [ -165.058594, 67.941650 ], [ -165.234375, 67.941650 ], [ -165.234375, 68.007571 ], [ -165.410156, 68.007571 ], [ -165.410156, 68.073305 ], [ -165.761719, 68.073305 ], [ -165.761719, 68.138852 ], [ -166.113281, 68.138852 ], [ -166.113281, 68.204212 ], [ -166.464844, 68.204212 ], [ -166.464844, 68.269387 ], [ -166.816406, 68.269387 ], [ -166.816406, 68.399180 ], [ -166.640625, 68.399180 ], [ -166.640625, 68.592487 ], [ -166.464844, 68.592487 ], [ -166.464844, 68.784144 ], [ -166.289062, 68.784144 ], [ -166.289062, 68.911005 ], [ -164.179688, 68.911005 ], [ -164.179688, 68.974164 ], [ -164.003906, 68.974164 ], [ -164.003906, 69.037142 ], [ -163.828125, 69.037142 ], [ -163.828125, 69.099940 ], [ -163.652344, 69.099940 ], [ -163.652344, 69.162558 ], [ -163.476562, 69.162558 ], [ -163.476562, 69.224997 ], [ -163.300781, 69.224997 ], [ -163.300781, 69.287257 ], [ -163.125000, 69.287257 ], [ -163.125000, 69.595890 ], [ -162.949219, 69.595890 ], [ -162.949219, 69.839622 ], [ -162.773438, 69.839622 ], [ -162.773438, 69.960439 ], [ -162.597656, 69.960439 ], [ -162.597656, 70.020587 ], [ -162.421875, 70.020587 ], [ -162.421875, 70.080562 ], [ -162.246094, 70.080562 ], [ -162.246094, 70.199994 ], [ -162.070312, 70.199994 ], [ -162.070312, 70.259452 ], [ -161.894531, 70.259452 ], [ -161.894531, 70.318738 ], [ -161.542969, 70.318738 ], [ -161.542969, 70.377854 ], [ -161.191406, 70.377854 ], [ -161.191406, 70.436799 ], [ -160.839844, 70.436799 ], [ -160.839844, 70.495574 ], [ -160.488281, 70.495574 ], [ -160.488281, 70.554179 ], [ -160.312500, 70.554179 ], [ -160.312500, 70.612614 ], [ -160.136719, 70.612614 ], [ -160.136719, 70.670881 ], [ -159.785156, 70.670881 ], [ -159.785156, 70.728979 ], [ -159.609375, 70.728979 ], [ -159.609375, 70.786910 ], [ -159.433594, 70.786910 ], [ -159.433594, 70.844673 ], [ -159.082031, 70.844673 ], [ -159.082031, 70.902268 ], [ -158.730469, 70.902268 ], [ -158.730469, 70.844673 ], [ -158.027344, 70.844673 ], [ -158.027344, 70.902268 ], [ -157.851562, 70.902268 ], [ -157.851562, 70.959697 ], [ -157.675781, 70.959697 ], [ -157.675781, 71.016960 ], [ -157.500000, 71.016960 ], [ -157.500000, 71.074056 ], [ -157.324219, 71.074056 ], [ -157.324219, 71.130988 ], [ -157.148438, 71.130988 ], [ -157.148438, 71.187754 ], [ -156.972656, 71.187754 ], [ -156.972656, 71.244356 ], [ -156.796875, 71.244356 ], [ -156.796875, 71.300793 ], [ -156.621094, 71.300793 ], [ -156.621094, 71.357067 ], [ -156.445312, 71.357067 ], [ -156.445312, 71.300793 ], [ -156.093750, 71.300793 ], [ -156.093750, 71.244356 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.583217 ], [ -163.652344, 66.372755 ], [ -163.828125, 66.372755 ], [ -163.828125, 66.160511 ], [ -166.289062, 66.160511 ], [ -166.289062, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.302205 ], [ -165.585938, 66.302205 ], [ -165.585938, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ] ] ], [ [ [ -156.445312, 71.300793 ], [ -156.093750, 71.300793 ], [ -156.093750, 71.244356 ], [ -155.742188, 71.244356 ], [ -155.742188, 71.187754 ], [ -155.390625, 71.187754 ], [ -155.390625, 71.130988 ], [ -155.039062, 71.130988 ], [ -155.039062, 71.074056 ], [ -154.863281, 71.074056 ], [ -154.863281, 70.959697 ], [ -154.687500, 70.959697 ], [ -154.687500, 70.844673 ], [ -154.511719, 70.844673 ], [ -154.511719, 70.728979 ], [ -154.160156, 70.728979 ], [ -154.160156, 70.844673 ], [ -153.984375, 70.844673 ], [ -153.984375, 70.902268 ], [ -153.281250, 70.902268 ], [ -153.281250, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.612614 ], [ -152.050781, 70.612614 ], [ -152.050781, 70.554179 ], [ -151.699219, 70.554179 ], [ -151.699219, 70.495574 ], [ -151.171875, 70.495574 ], [ -151.171875, 70.436799 ], [ -150.468750, 70.436799 ], [ -150.468750, 70.495574 ], [ -149.941406, 70.495574 ], [ -149.941406, 70.554179 ], [ -149.765625, 70.554179 ], [ -149.765625, 70.495574 ], [ -149.414062, 70.495574 ], [ -149.414062, 70.436799 ], [ -149.062500, 70.436799 ], [ -149.062500, 70.377854 ], [ -148.710938, 70.377854 ], [ -148.710938, 70.318738 ], [ -148.359375, 70.318738 ], [ -148.359375, 70.259452 ], [ -148.007812, 70.259452 ], [ -148.007812, 70.199994 ], [ -146.777344, 70.199994 ], [ -146.777344, 70.140364 ], [ -145.722656, 70.140364 ], [ -145.722656, 70.080562 ], [ -145.371094, 70.080562 ], [ -145.371094, 70.020587 ], [ -145.019531, 70.020587 ], [ -145.019531, 69.960439 ], [ -144.492188, 69.960439 ], [ -144.492188, 70.020587 ], [ -144.140625, 70.020587 ], [ -144.140625, 70.080562 ], [ -143.789062, 70.080562 ], [ -143.789062, 70.140364 ], [ -143.613281, 70.140364 ], [ -143.613281, 70.080562 ], [ -143.261719, 70.080562 ], [ -143.261719, 70.020587 ], [ -142.910156, 70.020587 ], [ -142.910156, 69.960439 ], [ -142.558594, 69.960439 ], [ -142.558594, 69.900118 ], [ -142.207031, 69.900118 ], [ -142.207031, 69.839622 ], [ -141.855469, 69.839622 ], [ -141.855469, 69.778952 ], [ -141.328125, 69.778952 ], [ -141.328125, 69.718107 ], [ -140.976562, 69.718107 ], [ -140.976562, 66.160511 ], [ -161.718750, 66.160511 ], [ -161.718750, 66.231457 ], [ -161.894531, 66.231457 ], [ -161.894531, 66.372755 ], [ -162.070312, 66.372755 ], [ -162.070312, 66.513260 ], [ -162.246094, 66.513260 ], [ -162.246094, 66.652977 ], [ -162.421875, 66.652977 ], [ -162.421875, 66.722541 ], [ -162.597656, 66.722541 ], [ -162.597656, 66.791909 ], [ -162.773438, 66.791909 ], [ -162.773438, 66.861082 ], [ -162.949219, 66.861082 ], [ -162.949219, 66.930060 ], [ -163.300781, 66.930060 ], [ -163.300781, 66.998844 ], [ -163.476562, 66.998844 ], [ -163.476562, 67.067433 ], [ -163.652344, 67.067433 ], [ -163.652344, 67.135829 ], [ -163.828125, 67.135829 ], [ -163.828125, 67.272043 ], [ -164.003906, 67.272043 ], [ -164.003906, 67.407487 ], [ -164.179688, 67.407487 ], [ -164.179688, 67.542167 ], [ -164.355469, 67.542167 ], [ -164.355469, 67.609221 ], [ -164.531250, 67.609221 ], [ -164.531250, 67.676085 ], [ -164.707031, 67.676085 ], [ -164.707031, 67.742759 ], [ -164.882812, 67.742759 ], [ -164.882812, 67.875541 ], [ -165.058594, 67.875541 ], [ -165.058594, 67.941650 ], [ -165.234375, 67.941650 ], [ -165.234375, 68.007571 ], [ -165.410156, 68.007571 ], [ -165.410156, 68.073305 ], [ -165.761719, 68.073305 ], [ -165.761719, 68.138852 ], [ -166.113281, 68.138852 ], [ -166.113281, 68.204212 ], [ -166.464844, 68.204212 ], [ -166.464844, 68.269387 ], [ -166.816406, 68.269387 ], [ -166.816406, 68.399180 ], [ -166.640625, 68.399180 ], [ -166.640625, 68.592487 ], [ -166.464844, 68.592487 ], [ -166.464844, 68.784144 ], [ -166.289062, 68.784144 ], [ -166.289062, 68.911005 ], [ -164.179688, 68.911005 ], [ -164.179688, 68.974164 ], [ -164.003906, 68.974164 ], [ -164.003906, 69.037142 ], [ -163.828125, 69.037142 ], [ -163.828125, 69.099940 ], [ -163.652344, 69.099940 ], [ -163.652344, 69.162558 ], [ -163.476562, 69.162558 ], [ -163.476562, 69.224997 ], [ -163.300781, 69.224997 ], [ -163.300781, 69.287257 ], [ -163.125000, 69.287257 ], [ -163.125000, 69.595890 ], [ -162.949219, 69.595890 ], [ -162.949219, 69.839622 ], [ -162.773438, 69.839622 ], [ -162.773438, 69.960439 ], [ -162.597656, 69.960439 ], [ -162.597656, 70.020587 ], [ -162.421875, 70.020587 ], [ -162.421875, 70.080562 ], [ -162.246094, 70.080562 ], [ -162.246094, 70.199994 ], [ -162.070312, 70.199994 ], [ -162.070312, 70.259452 ], [ -161.894531, 70.259452 ], [ -161.894531, 70.318738 ], [ -161.542969, 70.318738 ], [ -161.542969, 70.377854 ], [ -161.191406, 70.377854 ], [ -161.191406, 70.436799 ], [ -160.839844, 70.436799 ], [ -160.839844, 70.495574 ], [ -160.488281, 70.495574 ], [ -160.488281, 70.554179 ], [ -160.312500, 70.554179 ], [ -160.312500, 70.612614 ], [ -160.136719, 70.612614 ], [ -160.136719, 70.670881 ], [ -159.785156, 70.670881 ], [ -159.785156, 70.728979 ], [ -159.609375, 70.728979 ], [ -159.609375, 70.786910 ], [ -159.433594, 70.786910 ], [ -159.433594, 70.844673 ], [ -159.082031, 70.844673 ], [ -159.082031, 70.902268 ], [ -158.730469, 70.902268 ], [ -158.730469, 70.844673 ], [ -158.027344, 70.844673 ], [ -158.027344, 70.902268 ], [ -157.851562, 70.902268 ], [ -157.851562, 70.959697 ], [ -157.675781, 70.959697 ], [ -157.675781, 71.016960 ], [ -157.500000, 71.016960 ], [ -157.500000, 71.074056 ], [ -157.324219, 71.074056 ], [ -157.324219, 71.130988 ], [ -157.148438, 71.130988 ], [ -157.148438, 71.187754 ], [ -156.972656, 71.187754 ], [ -156.972656, 71.244356 ], [ -156.796875, 71.244356 ], [ -156.796875, 71.300793 ], [ -156.621094, 71.300793 ], [ -156.621094, 71.357067 ], [ -156.445312, 71.357067 ], [ -156.445312, 71.300793 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.824219, 68.847665 ], [ -179.648438, 68.847665 ], [ -179.648438, 68.784144 ], [ -179.296875, 68.784144 ], [ -179.296875, 68.720441 ], [ -179.121094, 68.720441 ], [ -179.121094, 68.656555 ], [ -178.945312, 68.656555 ], [ -178.945312, 68.592487 ], [ -178.769531, 68.592487 ], [ -178.769531, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.463800 ], [ -178.417969, 68.463800 ], [ -178.417969, 68.399180 ], [ -178.066406, 68.399180 ], [ -178.066406, 68.334376 ], [ -177.890625, 68.334376 ], [ -177.890625, 68.269387 ], [ -177.714844, 68.269387 ], [ -177.714844, 68.204212 ], [ -177.539062, 68.204212 ], [ -177.539062, 68.138852 ], [ -177.363281, 68.138852 ], [ -177.363281, 68.073305 ], [ -177.187500, 68.073305 ], [ -177.187500, 68.007571 ], [ -177.011719, 68.007571 ], [ -177.011719, 67.941650 ], [ -176.835938, 67.941650 ], [ -176.835938, 67.875541 ], [ -176.660156, 67.875541 ], [ -176.660156, 67.809245 ], [ -176.484375, 67.809245 ], [ -176.484375, 67.742759 ], [ -176.308594, 67.742759 ], [ -176.308594, 67.676085 ], [ -176.132812, 67.676085 ], [ -176.132812, 67.609221 ], [ -175.957031, 67.609221 ], [ -175.957031, 67.542167 ], [ -175.781250, 67.542167 ], [ -175.781250, 67.474922 ], [ -175.605469, 67.474922 ], [ -175.605469, 67.407487 ], [ -175.429688, 67.407487 ], [ -175.429688, 67.339861 ], [ -175.253906, 67.339861 ], [ -175.253906, 67.272043 ], [ -175.078125, 67.272043 ], [ -175.078125, 67.204032 ], [ -174.902344, 67.204032 ], [ -174.902344, 66.861082 ], [ -175.078125, 66.861082 ], [ -175.078125, 66.513260 ], [ -174.902344, 66.513260 ], [ -174.902344, 66.443107 ], [ -174.726562, 66.443107 ], [ -174.726562, 66.372755 ], [ -174.550781, 66.372755 ], [ -174.550781, 66.302205 ], [ -174.375000, 66.302205 ], [ -174.375000, 66.652977 ], [ -174.550781, 66.652977 ], [ -174.550781, 67.067433 ], [ -174.023438, 67.067433 ], [ -174.023438, 66.998844 ], [ -172.617188, 66.998844 ], [ -172.617188, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.861082 ], [ -171.738281, 66.861082 ], [ -171.738281, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.386719, 66.652977 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.372755 ], [ -170.683594, 66.372755 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.911005 ], [ -179.824219, 68.911005 ], [ -179.824219, 68.847665 ] ] ], [ [ [ -178.769531, 71.469124 ], [ -178.417969, 71.469124 ], [ -178.417969, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.357067 ], [ -178.066406, 71.357067 ], [ -178.066406, 71.300793 ], [ -177.714844, 71.300793 ], [ -177.714844, 71.244356 ], [ -177.539062, 71.244356 ], [ -177.539062, 71.187754 ], [ -177.714844, 71.187754 ], [ -177.714844, 71.074056 ], [ -178.066406, 71.074056 ], [ -178.066406, 71.016960 ], [ -178.242188, 71.016960 ], [ -178.242188, 70.959697 ], [ -178.593750, 70.959697 ], [ -178.593750, 70.902268 ], [ -179.296875, 70.902268 ], [ -179.296875, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.824219, 71.524909 ], [ -179.824219, 71.580532 ], [ -178.945312, 71.580532 ], [ -178.945312, 71.524909 ], [ -178.769531, 71.524909 ], [ -178.769531, 71.469124 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -179.824219, 68.911005 ], [ -179.824219, 68.847665 ], [ -179.648438, 68.847665 ], [ -179.648438, 68.784144 ], [ -179.296875, 68.784144 ], [ -179.296875, 68.720441 ], [ -179.121094, 68.720441 ], [ -179.121094, 68.656555 ], [ -178.945312, 68.656555 ], [ -178.945312, 68.592487 ], [ -178.769531, 68.592487 ], [ -178.769531, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.463800 ], [ -178.417969, 68.463800 ], [ -178.417969, 68.399180 ], [ -178.066406, 68.399180 ], [ -178.066406, 68.334376 ], [ -177.890625, 68.334376 ], [ -177.890625, 68.269387 ], [ -177.714844, 68.269387 ], [ -177.714844, 68.204212 ], [ -177.539062, 68.204212 ], [ -177.539062, 68.138852 ], [ -177.363281, 68.138852 ], [ -177.363281, 68.073305 ], [ -177.187500, 68.073305 ], [ -177.187500, 68.007571 ], [ -177.011719, 68.007571 ], [ -177.011719, 67.941650 ], [ -176.835938, 67.941650 ], [ -176.835938, 67.875541 ], [ -176.660156, 67.875541 ], [ -176.660156, 67.809245 ], [ -176.484375, 67.809245 ], [ -176.484375, 67.742759 ], [ -176.308594, 67.742759 ], [ -176.308594, 67.676085 ], [ -176.132812, 67.676085 ], [ -176.132812, 67.609221 ], [ -175.957031, 67.609221 ], [ -175.957031, 67.542167 ], [ -175.781250, 67.542167 ], [ -175.781250, 67.474922 ], [ -175.605469, 67.474922 ], [ -175.605469, 67.407487 ], [ -175.429688, 67.407487 ], [ -175.429688, 67.339861 ], [ -175.253906, 67.339861 ], [ -175.253906, 67.272043 ], [ -175.078125, 67.272043 ], [ -175.078125, 67.204032 ], [ -174.902344, 67.204032 ], [ -174.902344, 66.861082 ], [ -175.078125, 66.861082 ], [ -175.078125, 66.513260 ], [ -174.902344, 66.513260 ], [ -174.902344, 66.443107 ], [ -174.726562, 66.443107 ], [ -174.726562, 66.372755 ], [ -174.550781, 66.372755 ], [ -174.550781, 66.302205 ], [ -174.375000, 66.302205 ], [ -174.375000, 66.652977 ], [ -174.550781, 66.652977 ], [ -174.550781, 67.067433 ], [ -174.023438, 67.067433 ], [ -174.023438, 66.998844 ], [ -172.617188, 66.998844 ], [ -172.617188, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.861082 ], [ -171.738281, 66.861082 ], [ -171.738281, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.386719, 66.652977 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.372755 ], [ -170.683594, 66.372755 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.911005 ], [ -179.824219, 68.911005 ] ] ], [ [ [ -178.945312, 71.580532 ], [ -178.945312, 71.524909 ], [ -178.769531, 71.524909 ], [ -178.769531, 71.469124 ], [ -178.417969, 71.469124 ], [ -178.417969, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.357067 ], [ -178.066406, 71.357067 ], [ -178.066406, 71.300793 ], [ -177.714844, 71.300793 ], [ -177.714844, 71.244356 ], [ -177.539062, 71.244356 ], [ -177.539062, 71.187754 ], [ -177.714844, 71.187754 ], [ -177.714844, 71.074056 ], [ -178.066406, 71.074056 ], [ -178.066406, 71.016960 ], [ -178.242188, 71.016960 ], [ -178.242188, 70.959697 ], [ -178.593750, 70.959697 ], [ -178.593750, 70.902268 ], [ -179.296875, 70.902268 ], [ -179.296875, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.824219, 71.524909 ], [ -179.824219, 71.580532 ], [ -178.945312, 71.580532 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -134.472656, -74.402163 ], [ -134.121094, -74.402163 ], [ -134.121094, -74.449358 ], [ -133.417969, -74.449358 ], [ -133.417969, -74.402163 ], [ -132.890625, -74.402163 ], [ -132.890625, -74.354828 ], [ -132.363281, -74.354828 ], [ -132.363281, -74.307353 ], [ -132.187500, -74.307353 ], [ -132.187500, -74.354828 ], [ -131.835938, -74.354828 ], [ -131.835938, -74.402163 ], [ -131.484375, -74.402163 ], [ -131.484375, -74.449358 ], [ -131.132812, -74.449358 ], [ -131.132812, -74.496413 ], [ -130.078125, -74.496413 ], [ -130.078125, -74.449358 ], [ -129.199219, -74.449358 ], [ -129.199219, -74.402163 ], [ -128.847656, -74.402163 ], [ -128.847656, -74.354828 ], [ -128.496094, -74.354828 ], [ -128.496094, -74.307353 ], [ -128.144531, -74.307353 ], [ -128.144531, -74.354828 ], [ -127.441406, -74.354828 ], [ -127.441406, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.449358 ], [ -125.859375, -74.449358 ], [ -125.859375, -74.496413 ], [ -119.531250, -74.496413 ], [ -119.531250, -74.449358 ], [ -119.355469, -74.449358 ], [ -119.355469, -74.402163 ], [ -119.179688, -74.402163 ], [ -119.179688, -74.307353 ], [ -119.003906, -74.307353 ], [ -119.003906, -74.259738 ], [ -118.828125, -74.259738 ], [ -118.828125, -74.211983 ], [ -118.652344, -74.211983 ], [ -118.652344, -74.164085 ], [ -118.300781, -74.164085 ], [ -118.300781, -74.116047 ], [ -117.949219, -74.116047 ], [ -117.949219, -74.067866 ], [ -117.597656, -74.067866 ], [ -117.597656, -74.019543 ], [ -117.421875, -74.019543 ], [ -117.421875, -74.067866 ], [ -117.070312, -74.067866 ], [ -117.070312, -74.116047 ], [ -116.894531, -74.116047 ], [ -116.894531, -74.164085 ], [ -116.718750, -74.164085 ], [ -116.718750, -74.211983 ], [ -116.367188, -74.211983 ], [ -116.367188, -74.259738 ], [ -116.015625, -74.259738 ], [ -116.015625, -74.211983 ], [ -115.664062, -74.211983 ], [ -115.664062, -74.164085 ], [ -115.312500, -74.164085 ], [ -115.312500, -74.116047 ], [ -114.960938, -74.116047 ], [ -114.960938, -74.067866 ], [ -114.785156, -74.067866 ], [ -114.785156, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.971078 ], [ -114.433594, -73.971078 ], [ -114.433594, -73.873717 ], [ -114.257812, -73.873717 ], [ -114.257812, -73.824820 ], [ -114.082031, -73.824820 ], [ -114.082031, -73.775780 ], [ -113.730469, -73.775780 ], [ -113.730469, -73.873717 ], [ -113.554688, -73.873717 ], [ -113.554688, -73.971078 ], [ -113.378906, -73.971078 ], [ -113.378906, -74.116047 ], [ -113.203125, -74.116047 ], [ -113.203125, -74.307353 ], [ -113.027344, -74.307353 ], [ -113.027344, -74.449358 ], [ -112.851562, -74.449358 ], [ -112.851562, -74.543330 ], [ -112.675781, -74.543330 ], [ -112.675781, -74.636748 ], [ -112.500000, -74.636748 ], [ -112.500000, -74.729615 ], [ -112.148438, -74.729615 ], [ -112.148438, -74.683250 ], [ -111.972656, -74.683250 ], [ -111.972656, -74.636748 ], [ -111.796875, -74.636748 ], [ -111.796875, -74.543330 ], [ -111.621094, -74.543330 ], [ -111.621094, -74.496413 ], [ -111.445312, -74.496413 ], [ -111.445312, -74.449358 ], [ -111.093750, -74.449358 ], [ -111.093750, -74.496413 ], [ -110.917969, -74.496413 ], [ -110.917969, -74.543330 ], [ -110.742188, -74.543330 ], [ -110.742188, -74.590108 ], [ -110.566406, -74.590108 ], [ -110.566406, -74.683250 ], [ -110.390625, -74.683250 ], [ -110.390625, -74.729615 ], [ -110.214844, -74.729615 ], [ -110.214844, -74.775843 ], [ -109.863281, -74.775843 ], [ -109.863281, -74.821934 ], [ -109.511719, -74.821934 ], [ -109.511719, -74.867889 ], [ -108.984375, -74.867889 ], [ -108.984375, -74.913708 ], [ -108.632812, -74.913708 ], [ -108.632812, -74.959392 ], [ -108.457031, -74.959392 ], [ -108.457031, -75.004940 ], [ -108.281250, -75.004940 ], [ -108.281250, -75.050354 ], [ -108.105469, -75.050354 ], [ -108.105469, -75.095633 ], [ -107.929688, -75.095633 ], [ -107.929688, -75.140778 ], [ -107.753906, -75.140778 ], [ -107.753906, -75.185789 ], [ -106.699219, -75.185789 ], [ -106.699219, -75.140778 ], [ -105.996094, -75.140778 ], [ -105.996094, -75.095633 ], [ -105.644531, -75.095633 ], [ -105.644531, -75.050354 ], [ -105.292969, -75.050354 ], [ -105.292969, -75.004940 ], [ -104.941406, -75.004940 ], [ -104.941406, -74.959392 ], [ -104.238281, -74.959392 ], [ -104.238281, -75.004940 ], [ -103.183594, -75.004940 ], [ -103.183594, -75.050354 ], [ -102.832031, -75.050354 ], [ -102.832031, -75.095633 ], [ -102.304688, -75.095633 ], [ -102.304688, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.185789 ], [ -101.601562, -75.185789 ], [ -101.601562, -75.230667 ], [ -101.250000, -75.230667 ], [ -101.250000, -75.275413 ], [ -100.898438, -75.275413 ], [ -100.898438, -75.320025 ], [ -100.722656, -75.320025 ], [ -100.722656, -75.275413 ], [ -100.546875, -75.275413 ], [ -100.546875, -75.095633 ], [ -100.371094, -75.095633 ], [ -100.371094, -74.959392 ], [ -100.195312, -74.959392 ], [ -100.195312, -74.821934 ], [ -100.371094, -74.821934 ], [ -100.371094, -74.729615 ], [ -100.546875, -74.729615 ], [ -100.546875, -74.636748 ], [ -100.722656, -74.636748 ], [ -100.722656, -74.496413 ], [ -100.898438, -74.496413 ], [ -100.898438, -74.354828 ], [ -101.074219, -74.354828 ], [ -101.074219, -74.259738 ], [ -101.250000, -74.259738 ], [ -101.250000, -74.164085 ], [ -101.953125, -74.164085 ], [ -101.953125, -74.116047 ], [ -102.480469, -74.116047 ], [ -102.480469, -74.067866 ], [ -102.656250, -74.067866 ], [ -102.656250, -73.971078 ], [ -102.832031, -73.971078 ], [ -102.832031, -73.873717 ], [ -103.007812, -73.873717 ], [ -103.007812, -73.775780 ], [ -103.183594, -73.775780 ], [ -103.183594, -73.578167 ], [ -103.359375, -73.578167 ], [ -103.359375, -73.226700 ], [ -103.535156, -73.226700 ], [ -103.535156, -72.816074 ], [ -103.710938, -72.816074 ], [ -103.710938, -72.659588 ], [ -103.359375, -72.659588 ], [ -103.359375, -72.711903 ], [ -103.007812, -72.711903 ], [ -103.007812, -72.764065 ], [ -102.304688, -72.764065 ], [ -102.304688, -72.816074 ], [ -100.898438, -72.816074 ], [ -100.898438, -72.764065 ], [ -100.195312, -72.764065 ], [ -100.195312, -72.816074 ], [ -99.843750, -72.816074 ], [ -99.843750, -72.867930 ], [ -99.492188, -72.867930 ], [ -99.492188, -72.919635 ], [ -99.140625, -72.919635 ], [ -99.140625, -72.971189 ], [ -98.964844, -72.971189 ], [ -98.964844, -73.022592 ], [ -98.789062, -73.022592 ], [ -98.789062, -73.073844 ], [ -98.613281, -73.073844 ], [ -98.613281, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.175897 ], [ -98.261719, -73.175897 ], [ -98.261719, -73.226700 ], [ -98.085938, -73.226700 ], [ -98.085938, -73.327858 ], [ -97.910156, -73.327858 ], [ -97.910156, -73.528399 ], [ -97.734375, -73.528399 ], [ -97.734375, -73.578167 ], [ -97.207031, -73.578167 ], [ -97.207031, -73.627789 ], [ -95.976562, -73.627789 ], [ -95.976562, -73.578167 ], [ -95.625000, -73.578167 ], [ -95.625000, -73.528399 ], [ -95.273438, -73.528399 ], [ -95.273438, -73.478485 ], [ -94.746094, -73.478485 ], [ -94.746094, -73.428424 ], [ -94.394531, -73.428424 ], [ -94.394531, -73.378215 ], [ -94.042969, -73.378215 ], [ -94.042969, -73.327858 ], [ -93.691406, -73.327858 ], [ -93.691406, -73.277353 ], [ -93.339844, -73.277353 ], [ -93.339844, -73.226700 ], [ -92.636719, -73.226700 ], [ -92.636719, -73.175897 ], [ -92.460938, -73.175897 ], [ -92.460938, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.277353 ], [ -91.933594, -73.277353 ], [ -91.933594, -73.327858 ], [ -91.582031, -73.327858 ], [ -91.582031, -73.378215 ], [ -90.703125, -73.378215 ], [ -90.703125, -73.327858 ], [ -90.175781, -73.327858 ], [ -90.175781, -73.277353 ], [ -90.000000, -73.277353 ], [ -90.000000, -73.124945 ], [ -89.824219, -73.124945 ], [ -89.824219, -72.971189 ], [ -89.648438, -72.971189 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.402163 ], [ -135.527344, -74.402163 ], [ -135.527344, -74.354828 ], [ -135.175781, -74.354828 ], [ -135.175781, -74.307353 ], [ -135.000000, -74.307353 ], [ -135.000000, -74.354828 ], [ -134.472656, -74.354828 ], [ -134.472656, -74.402163 ] ] ], [ [ [ -121.640625, -73.478485 ], [ -121.289062, -73.478485 ], [ -121.289062, -73.528399 ], [ -120.937500, -73.528399 ], [ -120.937500, -73.578167 ], [ -120.585938, -73.578167 ], [ -120.585938, -73.627789 ], [ -120.234375, -73.627789 ], [ -120.234375, -73.677264 ], [ -119.707031, -73.677264 ], [ -119.707031, -73.627789 ], [ -119.355469, -73.627789 ], [ -119.355469, -73.578167 ], [ -119.003906, -73.578167 ], [ -119.003906, -73.528399 ], [ -118.828125, -73.528399 ], [ -118.828125, -73.627789 ], [ -119.003906, -73.627789 ], [ -119.003906, -73.726595 ], [ -119.179688, -73.726595 ], [ -119.179688, -73.824820 ], [ -119.355469, -73.824820 ], [ -119.355469, -73.873717 ], [ -119.531250, -73.873717 ], [ -119.531250, -73.922469 ], [ -119.707031, -73.922469 ], [ -119.707031, -73.971078 ], [ -119.882812, -73.971078 ], [ -119.882812, -74.019543 ], [ -120.058594, -74.019543 ], [ -120.058594, -74.067866 ], [ -121.113281, -74.067866 ], [ -121.113281, -74.019543 ], [ -121.816406, -74.019543 ], [ -121.816406, -73.971078 ], [ -121.992188, -73.971078 ], [ -121.992188, -73.922469 ], [ -122.167969, -73.922469 ], [ -122.167969, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.775780 ], [ -122.519531, -73.775780 ], [ -122.519531, -73.726595 ], [ -122.695312, -73.726595 ], [ -122.695312, -73.627789 ], [ -122.519531, -73.627789 ], [ -122.519531, -73.428424 ], [ -122.343750, -73.428424 ], [ -122.343750, -73.378215 ], [ -121.992188, -73.378215 ], [ -121.992188, -73.428424 ], [ -121.640625, -73.428424 ], [ -121.640625, -73.478485 ] ] ], [ [ [ -124.980469, -73.824820 ], [ -124.980469, -73.775780 ], [ -125.683594, -73.775780 ], [ -125.683594, -73.726595 ], [ -126.035156, -73.726595 ], [ -126.035156, -73.677264 ], [ -126.386719, -73.677264 ], [ -126.386719, -73.627789 ], [ -126.738281, -73.627789 ], [ -126.738281, -73.578167 ], [ -126.914062, -73.578167 ], [ -126.914062, -73.528399 ], [ -127.265625, -73.528399 ], [ -127.265625, -73.478485 ], [ -127.089844, -73.478485 ], [ -127.089844, -73.428424 ], [ -126.914062, -73.428424 ], [ -126.914062, -73.327858 ], [ -126.738281, -73.327858 ], [ -126.738281, -73.277353 ], [ -126.386719, -73.277353 ], [ -126.386719, -73.327858 ], [ -126.210938, -73.327858 ], [ -126.210938, -73.378215 ], [ -125.859375, -73.378215 ], [ -125.859375, -73.428424 ], [ -125.683594, -73.428424 ], [ -125.683594, -73.478485 ], [ -125.507812, -73.478485 ], [ -125.507812, -73.528399 ], [ -125.332031, -73.528399 ], [ -125.332031, -73.578167 ], [ -125.156250, -73.578167 ], [ -125.156250, -73.627789 ], [ -124.980469, -73.627789 ], [ -124.980469, -73.677264 ], [ -124.804688, -73.677264 ], [ -124.804688, -73.726595 ], [ -124.628906, -73.726595 ], [ -124.628906, -73.775780 ], [ -124.453125, -73.775780 ], [ -124.453125, -73.824820 ], [ -124.980469, -73.824820 ] ] ], [ [ [ -101.250000, -71.801410 ], [ -100.722656, -71.801410 ], [ -100.722656, -71.856229 ], [ -99.843750, -71.856229 ], [ -99.843750, -71.910888 ], [ -98.964844, -71.910888 ], [ -98.964844, -71.965388 ], [ -98.613281, -71.965388 ], [ -98.613281, -72.019729 ], [ -98.261719, -72.019729 ], [ -98.261719, -72.073911 ], [ -97.558594, -72.073911 ], [ -97.558594, -72.019729 ], [ -97.031250, -72.019729 ], [ -97.031250, -71.965388 ], [ -96.855469, -71.965388 ], [ -96.855469, -72.073911 ], [ -96.679688, -72.073911 ], [ -96.679688, -72.181804 ], [ -96.503906, -72.181804 ], [ -96.503906, -72.342464 ], [ -96.328125, -72.342464 ], [ -96.328125, -72.448792 ], [ -96.152344, -72.448792 ], [ -96.152344, -72.501722 ], [ -96.679688, -72.501722 ], [ -96.679688, -72.448792 ], [ -97.558594, -72.448792 ], [ -97.558594, -72.501722 ], [ -98.964844, -72.501722 ], [ -98.964844, -72.448792 ], [ -100.019531, -72.448792 ], [ -100.019531, -72.501722 ], [ -100.898438, -72.501722 ], [ -100.898438, -72.448792 ], [ -101.250000, -72.448792 ], [ -101.250000, -72.395706 ], [ -101.425781, -72.395706 ], [ -101.425781, -72.342464 ], [ -101.777344, -72.342464 ], [ -101.777344, -72.235514 ], [ -101.953125, -72.235514 ], [ -101.953125, -72.127936 ], [ -102.128906, -72.127936 ], [ -102.128906, -72.019729 ], [ -102.304688, -72.019729 ], [ -102.304688, -71.910888 ], [ -102.128906, -71.910888 ], [ -102.128906, -71.801410 ], [ -101.953125, -71.801410 ], [ -101.953125, -71.746432 ], [ -101.777344, -71.746432 ], [ -101.777344, -71.691293 ], [ -101.601562, -71.691293 ], [ -101.601562, -71.746432 ], [ -101.250000, -71.746432 ], [ -101.250000, -71.801410 ] ] ], [ [ [ -124.277344, -73.824820 ], [ -124.277344, -73.873717 ], [ -124.453125, -73.873717 ], [ -124.453125, -73.824820 ], [ -124.277344, -73.824820 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.607120 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.402163 ], [ -135.527344, -74.402163 ], [ -135.527344, -74.354828 ], [ -135.175781, -74.354828 ], [ -135.175781, -74.307353 ], [ -135.000000, -74.307353 ], [ -135.000000, -74.354828 ], [ -134.472656, -74.354828 ], [ -134.472656, -74.402163 ], [ -134.121094, -74.402163 ], [ -134.121094, -74.449358 ], [ -133.417969, -74.449358 ], [ -133.417969, -74.402163 ], [ -132.890625, -74.402163 ], [ -132.890625, -74.354828 ], [ -132.363281, -74.354828 ], [ -132.363281, -74.307353 ], [ -132.187500, -74.307353 ], [ -132.187500, -74.354828 ], [ -131.835938, -74.354828 ], [ -131.835938, -74.402163 ], [ -131.484375, -74.402163 ], [ -131.484375, -74.449358 ], [ -131.132812, -74.449358 ], [ -131.132812, -74.496413 ], [ -130.078125, -74.496413 ], [ -130.078125, -74.449358 ], [ -129.199219, -74.449358 ], [ -129.199219, -74.402163 ], [ -128.847656, -74.402163 ], [ -128.847656, -74.354828 ], [ -128.496094, -74.354828 ], [ -128.496094, -74.307353 ], [ -128.144531, -74.307353 ], [ -128.144531, -74.354828 ], [ -127.441406, -74.354828 ], [ -127.441406, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.449358 ], [ -125.859375, -74.449358 ], [ -125.859375, -74.496413 ], [ -119.531250, -74.496413 ], [ -119.531250, -74.449358 ], [ -119.355469, -74.449358 ], [ -119.355469, -74.402163 ], [ -119.179688, -74.402163 ], [ -119.179688, -74.307353 ], [ -119.003906, -74.307353 ], [ -119.003906, -74.259738 ], [ -118.828125, -74.259738 ], [ -118.828125, -74.211983 ], [ -118.652344, -74.211983 ], [ -118.652344, -74.164085 ], [ -118.300781, -74.164085 ], [ -118.300781, -74.116047 ], [ -117.949219, -74.116047 ], [ -117.949219, -74.067866 ], [ -117.597656, -74.067866 ], [ -117.597656, -74.019543 ], [ -117.421875, -74.019543 ], [ -117.421875, -74.067866 ], [ -117.070312, -74.067866 ], [ -117.070312, -74.116047 ], [ -116.894531, -74.116047 ], [ -116.894531, -74.164085 ], [ -116.718750, -74.164085 ], [ -116.718750, -74.211983 ], [ -116.367188, -74.211983 ], [ -116.367188, -74.259738 ], [ -116.015625, -74.259738 ], [ -116.015625, -74.211983 ], [ -115.664062, -74.211983 ], [ -115.664062, -74.164085 ], [ -115.312500, -74.164085 ], [ -115.312500, -74.116047 ], [ -114.960938, -74.116047 ], [ -114.960938, -74.067866 ], [ -114.785156, -74.067866 ], [ -114.785156, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.971078 ], [ -114.433594, -73.971078 ], [ -114.433594, -73.873717 ], [ -114.257812, -73.873717 ], [ -114.257812, -73.824820 ], [ -114.082031, -73.824820 ], [ -114.082031, -73.775780 ], [ -113.730469, -73.775780 ], [ -113.730469, -73.873717 ], [ -113.554688, -73.873717 ], [ -113.554688, -73.971078 ], [ -113.378906, -73.971078 ], [ -113.378906, -74.116047 ], [ -113.203125, -74.116047 ], [ -113.203125, -74.307353 ], [ -113.027344, -74.307353 ], [ -113.027344, -74.449358 ], [ -112.851562, -74.449358 ], [ -112.851562, -74.543330 ], [ -112.675781, -74.543330 ], [ -112.675781, -74.636748 ], [ -112.500000, -74.636748 ], [ -112.500000, -74.729615 ], [ -112.148438, -74.729615 ], [ -112.148438, -74.683250 ], [ -111.972656, -74.683250 ], [ -111.972656, -74.636748 ], [ -111.796875, -74.636748 ], [ -111.796875, -74.543330 ], [ -111.621094, -74.543330 ], [ -111.621094, -74.496413 ], [ -111.445312, -74.496413 ], [ -111.445312, -74.449358 ], [ -111.093750, -74.449358 ], [ -111.093750, -74.496413 ], [ -110.917969, -74.496413 ], [ -110.917969, -74.543330 ], [ -110.742188, -74.543330 ], [ -110.742188, -74.590108 ], [ -110.566406, -74.590108 ], [ -110.566406, -74.683250 ], [ -110.390625, -74.683250 ], [ -110.390625, -74.729615 ], [ -110.214844, -74.729615 ], [ -110.214844, -74.775843 ], [ -109.863281, -74.775843 ], [ -109.863281, -74.821934 ], [ -109.511719, -74.821934 ], [ -109.511719, -74.867889 ], [ -108.984375, -74.867889 ], [ -108.984375, -74.913708 ], [ -108.632812, -74.913708 ], [ -108.632812, -74.959392 ], [ -108.457031, -74.959392 ], [ -108.457031, -75.004940 ], [ -108.281250, -75.004940 ], [ -108.281250, -75.050354 ], [ -108.105469, -75.050354 ], [ -108.105469, -75.095633 ], [ -107.929688, -75.095633 ], [ -107.929688, -75.140778 ], [ -107.753906, -75.140778 ], [ -107.753906, -75.185789 ], [ -106.699219, -75.185789 ], [ -106.699219, -75.140778 ], [ -105.996094, -75.140778 ], [ -105.996094, -75.095633 ], [ -105.644531, -75.095633 ], [ -105.644531, -75.050354 ], [ -105.292969, -75.050354 ], [ -105.292969, -75.004940 ], [ -104.941406, -75.004940 ], [ -104.941406, -74.959392 ], [ -104.238281, -74.959392 ], [ -104.238281, -75.004940 ], [ -103.183594, -75.004940 ], [ -103.183594, -75.050354 ], [ -102.832031, -75.050354 ], [ -102.832031, -75.095633 ], [ -102.304688, -75.095633 ], [ -102.304688, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.185789 ], [ -101.601562, -75.185789 ], [ -101.601562, -75.230667 ], [ -101.250000, -75.230667 ], [ -101.250000, -75.275413 ], [ -100.898438, -75.275413 ], [ -100.898438, -75.320025 ], [ -100.722656, -75.320025 ], [ -100.722656, -75.275413 ], [ -100.546875, -75.275413 ], [ -100.546875, -75.095633 ], [ -100.371094, -75.095633 ], [ -100.371094, -74.959392 ], [ -100.195312, -74.959392 ], [ -100.195312, -74.821934 ], [ -100.371094, -74.821934 ], [ -100.371094, -74.729615 ], [ -100.546875, -74.729615 ], [ -100.546875, -74.636748 ], [ -100.722656, -74.636748 ], [ -100.722656, -74.496413 ], [ -100.898438, -74.496413 ], [ -100.898438, -74.354828 ], [ -101.074219, -74.354828 ], [ -101.074219, -74.259738 ], [ -101.250000, -74.259738 ], [ -101.250000, -74.164085 ], [ -101.953125, -74.164085 ], [ -101.953125, -74.116047 ], [ -102.480469, -74.116047 ], [ -102.480469, -74.067866 ], [ -102.656250, -74.067866 ], [ -102.656250, -73.971078 ], [ -102.832031, -73.971078 ], [ -102.832031, -73.873717 ], [ -103.007812, -73.873717 ], [ -103.007812, -73.775780 ], [ -103.183594, -73.775780 ], [ -103.183594, -73.578167 ], [ -103.359375, -73.578167 ], [ -103.359375, -73.226700 ], [ -103.535156, -73.226700 ], [ -103.535156, -72.816074 ], [ -103.710938, -72.816074 ], [ -103.710938, -72.659588 ], [ -103.359375, -72.659588 ], [ -103.359375, -72.711903 ], [ -103.007812, -72.711903 ], [ -103.007812, -72.764065 ], [ -102.304688, -72.764065 ], [ -102.304688, -72.816074 ], [ -100.898438, -72.816074 ], [ -100.898438, -72.764065 ], [ -100.195312, -72.764065 ], [ -100.195312, -72.816074 ], [ -99.843750, -72.816074 ], [ -99.843750, -72.867930 ], [ -99.492188, -72.867930 ], [ -99.492188, -72.919635 ], [ -99.140625, -72.919635 ], [ -99.140625, -72.971189 ], [ -98.964844, -72.971189 ], [ -98.964844, -73.022592 ], [ -98.789062, -73.022592 ], [ -98.789062, -73.073844 ], [ -98.613281, -73.073844 ], [ -98.613281, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.175897 ], [ -98.261719, -73.175897 ], [ -98.261719, -73.226700 ], [ -98.085938, -73.226700 ], [ -98.085938, -73.327858 ], [ -97.910156, -73.327858 ], [ -97.910156, -73.528399 ], [ -97.734375, -73.528399 ], [ -97.734375, -73.578167 ], [ -97.207031, -73.578167 ], [ -97.207031, -73.627789 ], [ -95.976562, -73.627789 ], [ -95.976562, -73.578167 ], [ -95.625000, -73.578167 ], [ -95.625000, -73.528399 ], [ -95.273438, -73.528399 ], [ -95.273438, -73.478485 ], [ -94.746094, -73.478485 ], [ -94.746094, -73.428424 ], [ -94.394531, -73.428424 ], [ -94.394531, -73.378215 ], [ -94.042969, -73.378215 ], [ -94.042969, -73.327858 ], [ -93.691406, -73.327858 ], [ -93.691406, -73.277353 ], [ -93.339844, -73.277353 ], [ -93.339844, -73.226700 ], [ -92.636719, -73.226700 ], [ -92.636719, -73.175897 ], [ -92.460938, -73.175897 ], [ -92.460938, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.277353 ], [ -91.933594, -73.277353 ], [ -91.933594, -73.327858 ], [ -91.582031, -73.327858 ], [ -91.582031, -73.378215 ], [ -90.703125, -73.378215 ], [ -90.703125, -73.327858 ], [ -90.175781, -73.327858 ], [ -90.175781, -73.277353 ], [ -90.000000, -73.277353 ], [ -90.000000, -73.124945 ], [ -89.824219, -73.124945 ], [ -89.824219, -72.971189 ], [ -89.648438, -72.971189 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ] ] ], [ [ [ -121.992188, -73.378215 ], [ -121.992188, -73.428424 ], [ -121.640625, -73.428424 ], [ -121.640625, -73.478485 ], [ -121.289062, -73.478485 ], [ -121.289062, -73.528399 ], [ -120.937500, -73.528399 ], [ -120.937500, -73.578167 ], [ -120.585938, -73.578167 ], [ -120.585938, -73.627789 ], [ -120.234375, -73.627789 ], [ -120.234375, -73.677264 ], [ -119.707031, -73.677264 ], [ -119.707031, -73.627789 ], [ -119.355469, -73.627789 ], [ -119.355469, -73.578167 ], [ -119.003906, -73.578167 ], [ -119.003906, -73.528399 ], [ -118.828125, -73.528399 ], [ -118.828125, -73.627789 ], [ -119.003906, -73.627789 ], [ -119.003906, -73.726595 ], [ -119.179688, -73.726595 ], [ -119.179688, -73.824820 ], [ -119.355469, -73.824820 ], [ -119.355469, -73.873717 ], [ -119.531250, -73.873717 ], [ -119.531250, -73.922469 ], [ -119.707031, -73.922469 ], [ -119.707031, -73.971078 ], [ -119.882812, -73.971078 ], [ -119.882812, -74.019543 ], [ -120.058594, -74.019543 ], [ -120.058594, -74.067866 ], [ -121.113281, -74.067866 ], [ -121.113281, -74.019543 ], [ -121.816406, -74.019543 ], [ -121.816406, -73.971078 ], [ -121.992188, -73.971078 ], [ -121.992188, -73.922469 ], [ -122.167969, -73.922469 ], [ -122.167969, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.775780 ], [ -122.519531, -73.775780 ], [ -122.519531, -73.726595 ], [ -122.695312, -73.726595 ], [ -122.695312, -73.627789 ], [ -122.519531, -73.627789 ], [ -122.519531, -73.428424 ], [ -122.343750, -73.428424 ], [ -122.343750, -73.378215 ], [ -121.992188, -73.378215 ] ] ], [ [ [ -124.453125, -73.824820 ], [ -124.980469, -73.824820 ], [ -124.980469, -73.775780 ], [ -125.683594, -73.775780 ], [ -125.683594, -73.726595 ], [ -126.035156, -73.726595 ], [ -126.035156, -73.677264 ], [ -126.386719, -73.677264 ], [ -126.386719, -73.627789 ], [ -126.738281, -73.627789 ], [ -126.738281, -73.578167 ], [ -126.914062, -73.578167 ], [ -126.914062, -73.528399 ], [ -127.265625, -73.528399 ], [ -127.265625, -73.478485 ], [ -127.089844, -73.478485 ], [ -127.089844, -73.428424 ], [ -126.914062, -73.428424 ], [ -126.914062, -73.327858 ], [ -126.738281, -73.327858 ], [ -126.738281, -73.277353 ], [ -126.386719, -73.277353 ], [ -126.386719, -73.327858 ], [ -126.210938, -73.327858 ], [ -126.210938, -73.378215 ], [ -125.859375, -73.378215 ], [ -125.859375, -73.428424 ], [ -125.683594, -73.428424 ], [ -125.683594, -73.478485 ], [ -125.507812, -73.478485 ], [ -125.507812, -73.528399 ], [ -125.332031, -73.528399 ], [ -125.332031, -73.578167 ], [ -125.156250, -73.578167 ], [ -125.156250, -73.627789 ], [ -124.980469, -73.627789 ], [ -124.980469, -73.677264 ], [ -124.804688, -73.677264 ], [ -124.804688, -73.726595 ], [ -124.628906, -73.726595 ], [ -124.628906, -73.775780 ], [ -124.453125, -73.775780 ], [ -124.453125, -73.824820 ] ] ], [ [ [ -101.601562, -71.691293 ], [ -101.601562, -71.746432 ], [ -101.250000, -71.746432 ], [ -101.250000, -71.801410 ], [ -100.722656, -71.801410 ], [ -100.722656, -71.856229 ], [ -99.843750, -71.856229 ], [ -99.843750, -71.910888 ], [ -98.964844, -71.910888 ], [ -98.964844, -71.965388 ], [ -98.613281, -71.965388 ], [ -98.613281, -72.019729 ], [ -98.261719, -72.019729 ], [ -98.261719, -72.073911 ], [ -97.558594, -72.073911 ], [ -97.558594, -72.019729 ], [ -97.031250, -72.019729 ], [ -97.031250, -71.965388 ], [ -96.855469, -71.965388 ], [ -96.855469, -72.073911 ], [ -96.679688, -72.073911 ], [ -96.679688, -72.181804 ], [ -96.503906, -72.181804 ], [ -96.503906, -72.342464 ], [ -96.328125, -72.342464 ], [ -96.328125, -72.448792 ], [ -96.152344, -72.448792 ], [ -96.152344, -72.501722 ], [ -96.679688, -72.501722 ], [ -96.679688, -72.448792 ], [ -97.558594, -72.448792 ], [ -97.558594, -72.501722 ], [ -98.964844, -72.501722 ], [ -98.964844, -72.448792 ], [ -100.019531, -72.448792 ], [ -100.019531, -72.501722 ], [ -100.898438, -72.501722 ], [ -100.898438, -72.448792 ], [ -101.250000, -72.448792 ], [ -101.250000, -72.395706 ], [ -101.425781, -72.395706 ], [ -101.425781, -72.342464 ], [ -101.777344, -72.342464 ], [ -101.777344, -72.235514 ], [ -101.953125, -72.235514 ], [ -101.953125, -72.127936 ], [ -102.128906, -72.127936 ], [ -102.128906, -72.019729 ], [ -102.304688, -72.019729 ], [ -102.304688, -71.910888 ], [ -102.128906, -71.910888 ], [ -102.128906, -71.801410 ], [ -101.953125, -71.801410 ], [ -101.953125, -71.746432 ], [ -101.777344, -71.746432 ], [ -101.777344, -71.691293 ], [ -101.601562, -71.691293 ] ] ], [ [ [ -124.453125, -73.824820 ], [ -124.277344, -73.824820 ], [ -124.277344, -73.873717 ], [ -124.453125, -73.873717 ], [ -124.453125, -73.824820 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.406250, 29.382175 ], [ -91.406250, 29.535230 ], [ -91.582031, 29.535230 ], [ -91.582031, 29.688053 ], [ -91.933594, 29.688053 ], [ -91.933594, 29.535230 ], [ -92.812500, 29.535230 ], [ -92.812500, 29.688053 ], [ -93.164062, 29.688053 ], [ -93.164062, 29.840644 ], [ -93.339844, 29.840644 ], [ -93.339844, 29.688053 ], [ -94.218750, 29.688053 ], [ -94.218750, 29.535230 ], [ -94.746094, 29.535230 ], [ -94.746094, 29.382175 ], [ -94.921875, 29.382175 ], [ -94.921875, 29.228890 ], [ -95.097656, 29.228890 ], [ -95.097656, 29.075375 ], [ -95.273438, 29.075375 ], [ -95.273438, 28.921631 ], [ -95.449219, 28.921631 ], [ -95.449219, 28.767659 ], [ -95.625000, 28.767659 ], [ -95.625000, 28.613459 ], [ -95.976562, 28.613459 ], [ -95.976562, 28.459033 ], [ -96.328125, 28.459033 ], [ -96.328125, 28.304381 ], [ -96.679688, 28.304381 ], [ -96.679688, 28.149503 ], [ -96.855469, 28.149503 ], [ -96.855469, 27.994401 ], [ -97.031250, 27.994401 ], [ -97.031250, 27.839076 ], [ -97.207031, 27.839076 ], [ -97.207031, 27.527758 ], [ -97.382812, 27.527758 ], [ -97.382812, 25.958045 ], [ -97.207031, 25.958045 ], [ -97.207031, 25.799891 ], [ -97.910156, 25.799891 ], [ -97.910156, 25.958045 ], [ -98.261719, 25.958045 ], [ -98.261719, 26.115986 ], [ -98.613281, 26.115986 ], [ -98.613281, 26.273714 ], [ -98.964844, 26.273714 ], [ -98.964844, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 26.745610 ], [ -99.316406, 26.745610 ], [ -99.316406, 27.215556 ], [ -99.492188, 27.215556 ], [ -99.492188, 27.527758 ], [ -99.667969, 27.527758 ], [ -99.667969, 27.683528 ], [ -99.843750, 27.683528 ], [ -99.843750, 27.839076 ], [ -100.019531, 27.839076 ], [ -100.019531, 27.994401 ], [ -100.195312, 27.994401 ], [ -100.195312, 28.459033 ], [ -100.371094, 28.459033 ], [ -100.371094, 28.767659 ], [ -100.546875, 28.767659 ], [ -100.546875, 29.075375 ], [ -100.722656, 29.075375 ], [ -100.722656, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 29.382175 ], [ -101.074219, 29.382175 ], [ -101.074219, 29.535230 ], [ -101.425781, 29.535230 ], [ -101.425781, 29.688053 ], [ -101.601562, 29.688053 ], [ -101.601562, 29.840644 ], [ -101.953125, 29.840644 ], [ -101.953125, 29.688053 ], [ -102.480469, 29.688053 ], [ -102.480469, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 29.382175 ], [ -102.832031, 29.382175 ], [ -102.832031, 29.075375 ], [ -103.007812, 29.075375 ], [ -103.007812, 28.921631 ], [ -103.535156, 28.921631 ], [ -103.535156, 29.075375 ], [ -103.886719, 29.075375 ], [ -103.886719, 29.228890 ], [ -104.062500, 29.228890 ], [ -104.062500, 29.382175 ], [ -104.414062, 29.382175 ], [ -104.414062, 29.688053 ], [ -104.589844, 29.688053 ], [ -104.589844, 29.993002 ], [ -104.765625, 29.993002 ], [ -104.765625, 30.145127 ], [ -104.941406, 30.145127 ], [ -104.941406, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.600094 ], [ -105.292969, 30.600094 ], [ -105.292969, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 30.902225 ], [ -105.644531, 30.902225 ], [ -105.644531, 31.052934 ], [ -105.820312, 31.052934 ], [ -105.820312, 31.203405 ], [ -106.171875, 31.203405 ], [ -106.171875, 31.353637 ], [ -106.347656, 31.353637 ], [ -106.347656, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.445312, 31.353637 ], [ -111.445312, 31.503629 ], [ -111.796875, 31.503629 ], [ -111.796875, 31.653381 ], [ -112.324219, 31.653381 ], [ -112.324219, 31.802893 ], [ -112.851562, 31.802893 ], [ -112.851562, 31.952162 ], [ -113.203125, 31.952162 ], [ -113.203125, 32.101190 ], [ -113.730469, 32.101190 ], [ -113.730469, 32.249974 ], [ -114.257812, 32.249974 ], [ -114.257812, 32.398516 ], [ -114.609375, 32.398516 ], [ -114.609375, 32.546813 ], [ -114.785156, 32.546813 ], [ -114.785156, 32.694866 ], [ -115.312500, 32.694866 ], [ -115.312500, 32.546813 ], [ -117.070312, 32.546813 ], [ -117.070312, 32.694866 ], [ -117.246094, 32.694866 ], [ -117.246094, 32.990236 ], [ -117.421875, 32.990236 ], [ -117.421875, 33.137551 ], [ -117.597656, 33.137551 ], [ -117.597656, 33.284620 ], [ -117.773438, 33.284620 ], [ -117.773438, 33.431441 ], [ -117.949219, 33.431441 ], [ -117.949219, 33.578015 ], [ -118.300781, 33.578015 ], [ -118.300781, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.179688, 34.016242 ], [ -119.179688, 34.161818 ], [ -119.355469, 34.161818 ], [ -119.355469, 34.307144 ], [ -120.058594, 34.307144 ], [ -120.058594, 34.452218 ], [ -120.585938, 34.452218 ], [ -120.585938, 34.885931 ], [ -120.761719, 34.885931 ], [ -120.761719, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.460670 ], [ -121.113281, 35.460670 ], [ -121.113281, 35.603719 ], [ -121.289062, 35.603719 ], [ -121.289062, 35.746512 ], [ -121.464844, 35.746512 ], [ -121.464844, 36.031332 ], [ -121.640625, 36.031332 ], [ -121.640625, 36.315125 ], [ -121.816406, 36.315125 ], [ -121.816406, 36.597889 ], [ -121.992188, 36.597889 ], [ -121.992188, 36.879621 ], [ -122.167969, 36.879621 ], [ -122.167969, 37.160317 ], [ -122.343750, 37.160317 ], [ -122.343750, 37.439974 ], [ -122.519531, 37.439974 ], [ -122.519531, 37.718590 ], [ -122.695312, 37.718590 ], [ -122.695312, 37.996163 ], [ -122.871094, 37.996163 ], [ -122.871094, 38.134557 ], [ -123.046875, 38.134557 ], [ -123.046875, 38.272689 ], [ -123.222656, 38.272689 ], [ -123.222656, 38.548165 ], [ -123.398438, 38.548165 ], [ -123.398438, 38.685510 ], [ -123.574219, 38.685510 ], [ -123.574219, 38.822591 ], [ -123.750000, 38.822591 ], [ -123.750000, 39.368279 ], [ -123.925781, 39.368279 ], [ -123.925781, 39.774769 ], [ -124.101562, 39.774769 ], [ -124.101562, 40.044438 ], [ -124.277344, 40.044438 ], [ -124.277344, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.446947 ], [ -124.277344, 40.446947 ], [ -124.277344, 40.847060 ], [ -124.101562, 40.847060 ], [ -124.101562, 41.376809 ], [ -124.277344, 41.376809 ], [ -124.277344, 41.640078 ], [ -89.121094, 41.640078 ], [ -89.121094, 30.297018 ], [ -89.296875, 30.297018 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.993002 ], [ -89.472656, 29.993002 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.000000, 29.228890 ], [ -90.000000, 29.075375 ], [ -91.054688, 29.075375 ], [ -91.054688, 29.228890 ], [ -91.230469, 29.228890 ], [ -91.230469, 29.382175 ], [ -91.406250, 29.382175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.297018 ], [ -89.296875, 30.297018 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.993002 ], [ -89.472656, 29.993002 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.000000, 29.228890 ], [ -90.000000, 29.075375 ], [ -91.054688, 29.075375 ], [ -91.054688, 29.228890 ], [ -91.230469, 29.228890 ], [ -91.230469, 29.382175 ], [ -91.406250, 29.382175 ], [ -91.406250, 29.535230 ], [ -91.582031, 29.535230 ], [ -91.582031, 29.688053 ], [ -91.933594, 29.688053 ], [ -91.933594, 29.535230 ], [ -92.812500, 29.535230 ], [ -92.812500, 29.688053 ], [ -93.164062, 29.688053 ], [ -93.164062, 29.840644 ], [ -93.339844, 29.840644 ], [ -93.339844, 29.688053 ], [ -94.218750, 29.688053 ], [ -94.218750, 29.535230 ], [ -94.746094, 29.535230 ], [ -94.746094, 29.382175 ], [ -94.921875, 29.382175 ], [ -94.921875, 29.228890 ], [ -95.097656, 29.228890 ], [ -95.097656, 29.075375 ], [ -95.273438, 29.075375 ], [ -95.273438, 28.921631 ], [ -95.449219, 28.921631 ], [ -95.449219, 28.767659 ], [ -95.625000, 28.767659 ], [ -95.625000, 28.613459 ], [ -95.976562, 28.613459 ], [ -95.976562, 28.459033 ], [ -96.328125, 28.459033 ], [ -96.328125, 28.304381 ], [ -96.679688, 28.304381 ], [ -96.679688, 28.149503 ], [ -96.855469, 28.149503 ], [ -96.855469, 27.994401 ], [ -97.031250, 27.994401 ], [ -97.031250, 27.839076 ], [ -97.207031, 27.839076 ], [ -97.207031, 27.527758 ], [ -97.382812, 27.527758 ], [ -97.382812, 25.958045 ], [ -97.207031, 25.958045 ], [ -97.207031, 25.799891 ], [ -97.910156, 25.799891 ], [ -97.910156, 25.958045 ], [ -98.261719, 25.958045 ], [ -98.261719, 26.115986 ], [ -98.613281, 26.115986 ], [ -98.613281, 26.273714 ], [ -98.964844, 26.273714 ], [ -98.964844, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 26.745610 ], [ -99.316406, 26.745610 ], [ -99.316406, 27.215556 ], [ -99.492188, 27.215556 ], [ -99.492188, 27.527758 ], [ -99.667969, 27.527758 ], [ -99.667969, 27.683528 ], [ -99.843750, 27.683528 ], [ -99.843750, 27.839076 ], [ -100.019531, 27.839076 ], [ -100.019531, 27.994401 ], [ -100.195312, 27.994401 ], [ -100.195312, 28.459033 ], [ -100.371094, 28.459033 ], [ -100.371094, 28.767659 ], [ -100.546875, 28.767659 ], [ -100.546875, 29.075375 ], [ -100.722656, 29.075375 ], [ -100.722656, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 29.382175 ], [ -101.074219, 29.382175 ], [ -101.074219, 29.535230 ], [ -101.425781, 29.535230 ], [ -101.425781, 29.688053 ], [ -101.601562, 29.688053 ], [ -101.601562, 29.840644 ], [ -101.953125, 29.840644 ], [ -101.953125, 29.688053 ], [ -102.480469, 29.688053 ], [ -102.480469, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 29.382175 ], [ -102.832031, 29.382175 ], [ -102.832031, 29.075375 ], [ -103.007812, 29.075375 ], [ -103.007812, 28.921631 ], [ -103.535156, 28.921631 ], [ -103.535156, 29.075375 ], [ -103.886719, 29.075375 ], [ -103.886719, 29.228890 ], [ -104.062500, 29.228890 ], [ -104.062500, 29.382175 ], [ -104.414062, 29.382175 ], [ -104.414062, 29.688053 ], [ -104.589844, 29.688053 ], [ -104.589844, 29.993002 ], [ -104.765625, 29.993002 ], [ -104.765625, 30.145127 ], [ -104.941406, 30.145127 ], [ -104.941406, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.600094 ], [ -105.292969, 30.600094 ], [ -105.292969, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 30.902225 ], [ -105.644531, 30.902225 ], [ -105.644531, 31.052934 ], [ -105.820312, 31.052934 ], [ -105.820312, 31.203405 ], [ -106.171875, 31.203405 ], [ -106.171875, 31.353637 ], [ -106.347656, 31.353637 ], [ -106.347656, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.445312, 31.353637 ], [ -111.445312, 31.503629 ], [ -111.796875, 31.503629 ], [ -111.796875, 31.653381 ], [ -112.324219, 31.653381 ], [ -112.324219, 31.802893 ], [ -112.851562, 31.802893 ], [ -112.851562, 31.952162 ], [ -113.203125, 31.952162 ], [ -113.203125, 32.101190 ], [ -113.730469, 32.101190 ], [ -113.730469, 32.249974 ], [ -114.257812, 32.249974 ], [ -114.257812, 32.398516 ], [ -114.609375, 32.398516 ], [ -114.609375, 32.546813 ], [ -114.785156, 32.546813 ], [ -114.785156, 32.694866 ], [ -115.312500, 32.694866 ], [ -115.312500, 32.546813 ], [ -117.070312, 32.546813 ], [ -117.070312, 32.694866 ], [ -117.246094, 32.694866 ], [ -117.246094, 32.990236 ], [ -117.421875, 32.990236 ], [ -117.421875, 33.137551 ], [ -117.597656, 33.137551 ], [ -117.597656, 33.284620 ], [ -117.773438, 33.284620 ], [ -117.773438, 33.431441 ], [ -117.949219, 33.431441 ], [ -117.949219, 33.578015 ], [ -118.300781, 33.578015 ], [ -118.300781, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.179688, 34.016242 ], [ -119.179688, 34.161818 ], [ -119.355469, 34.161818 ], [ -119.355469, 34.307144 ], [ -120.058594, 34.307144 ], [ -120.058594, 34.452218 ], [ -120.585938, 34.452218 ], [ -120.585938, 34.885931 ], [ -120.761719, 34.885931 ], [ -120.761719, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.460670 ], [ -121.113281, 35.460670 ], [ -121.113281, 35.603719 ], [ -121.289062, 35.603719 ], [ -121.289062, 35.746512 ], [ -121.464844, 35.746512 ], [ -121.464844, 36.031332 ], [ -121.640625, 36.031332 ], [ -121.640625, 36.315125 ], [ -121.816406, 36.315125 ], [ -121.816406, 36.597889 ], [ -121.992188, 36.597889 ], [ -121.992188, 36.879621 ], [ -122.167969, 36.879621 ], [ -122.167969, 37.160317 ], [ -122.343750, 37.160317 ], [ -122.343750, 37.439974 ], [ -122.519531, 37.439974 ], [ -122.519531, 37.718590 ], [ -122.695312, 37.718590 ], [ -122.695312, 37.996163 ], [ -122.871094, 37.996163 ], [ -122.871094, 38.134557 ], [ -123.046875, 38.134557 ], [ -123.046875, 38.272689 ], [ -123.222656, 38.272689 ], [ -123.222656, 38.548165 ], [ -123.398438, 38.548165 ], [ -123.398438, 38.685510 ], [ -123.574219, 38.685510 ], [ -123.574219, 38.822591 ], [ -123.750000, 38.822591 ], [ -123.750000, 39.368279 ], [ -123.925781, 39.368279 ], [ -123.925781, 39.774769 ], [ -124.101562, 39.774769 ], [ -124.101562, 40.044438 ], [ -124.277344, 40.044438 ], [ -124.277344, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.446947 ], [ -124.277344, 40.446947 ], [ -124.277344, 40.847060 ], [ -124.101562, 40.847060 ], [ -124.101562, 41.376809 ], [ -124.277344, 41.376809 ], [ -124.277344, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.609375, 32.398516 ], [ -114.257812, 32.398516 ], [ -114.257812, 32.249974 ], [ -113.730469, 32.249974 ], [ -113.730469, 32.101190 ], [ -113.203125, 32.101190 ], [ -113.203125, 31.952162 ], [ -112.851562, 31.952162 ], [ -112.851562, 31.802893 ], [ -112.324219, 31.802893 ], [ -112.324219, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.503629 ], [ -111.445312, 31.503629 ], [ -111.445312, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -106.523438, 31.653381 ], [ -106.347656, 31.653381 ], [ -106.347656, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.203405 ], [ -105.820312, 31.203405 ], [ -105.820312, 31.052934 ], [ -105.644531, 31.052934 ], [ -105.644531, 30.902225 ], [ -105.468750, 30.902225 ], [ -105.468750, 30.751278 ], [ -105.292969, 30.751278 ], [ -105.292969, 30.600094 ], [ -105.117188, 30.600094 ], [ -105.117188, 19.642588 ], [ -105.292969, 19.642588 ], [ -105.292969, 19.808054 ], [ -105.468750, 19.808054 ], [ -105.468750, 20.138470 ], [ -105.644531, 20.138470 ], [ -105.644531, 20.468189 ], [ -105.468750, 20.468189 ], [ -105.468750, 20.961440 ], [ -105.292969, 20.961440 ], [ -105.292969, 21.453069 ], [ -105.468750, 21.453069 ], [ -105.468750, 21.779905 ], [ -105.644531, 21.779905 ], [ -105.644531, 22.268764 ], [ -105.820312, 22.268764 ], [ -105.820312, 22.593726 ], [ -105.996094, 22.593726 ], [ -105.996094, 22.755921 ], [ -106.171875, 22.755921 ], [ -106.171875, 22.917923 ], [ -106.347656, 22.917923 ], [ -106.347656, 23.241346 ], [ -106.523438, 23.241346 ], [ -106.523438, 23.402765 ], [ -106.699219, 23.402765 ], [ -106.699219, 23.563987 ], [ -106.875000, 23.563987 ], [ -106.875000, 23.725012 ], [ -107.050781, 23.725012 ], [ -107.050781, 23.885838 ], [ -107.226562, 23.885838 ], [ -107.226562, 24.046464 ], [ -107.578125, 24.046464 ], [ -107.578125, 24.206890 ], [ -107.753906, 24.206890 ], [ -107.753906, 24.367114 ], [ -107.929688, 24.367114 ], [ -107.929688, 24.527135 ], [ -108.105469, 24.527135 ], [ -108.105469, 24.846565 ], [ -108.281250, 24.846565 ], [ -108.281250, 25.005973 ], [ -108.457031, 25.005973 ], [ -108.457031, 25.165173 ], [ -108.632812, 25.165173 ], [ -108.632812, 25.324167 ], [ -108.984375, 25.324167 ], [ -108.984375, 25.482951 ], [ -109.335938, 25.482951 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.641526 ], [ -109.511719, 26.115986 ], [ -109.335938, 26.115986 ], [ -109.335938, 26.431228 ], [ -109.511719, 26.431228 ], [ -109.511719, 26.588527 ], [ -109.863281, 26.588527 ], [ -109.863281, 26.745610 ], [ -110.039062, 26.745610 ], [ -110.039062, 26.902477 ], [ -110.214844, 26.902477 ], [ -110.214844, 27.059126 ], [ -110.390625, 27.059126 ], [ -110.390625, 27.527758 ], [ -110.566406, 27.527758 ], [ -110.566406, 27.839076 ], [ -110.917969, 27.839076 ], [ -110.917969, 27.994401 ], [ -111.269531, 27.994401 ], [ -111.269531, 28.149503 ], [ -111.621094, 28.149503 ], [ -111.621094, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.459033 ], [ -111.972656, 28.459033 ], [ -111.972656, 28.767659 ], [ -112.148438, 28.767659 ], [ -112.148438, 29.075375 ], [ -112.324219, 29.075375 ], [ -112.324219, 29.228890 ], [ -112.500000, 29.228890 ], [ -112.500000, 29.535230 ], [ -112.675781, 29.535230 ], [ -112.675781, 29.840644 ], [ -112.851562, 29.840644 ], [ -112.851562, 30.145127 ], [ -113.027344, 30.145127 ], [ -113.027344, 30.448674 ], [ -113.203125, 30.448674 ], [ -113.203125, 31.203405 ], [ -113.554688, 31.203405 ], [ -113.554688, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.503629 ], [ -114.433594, 31.503629 ], [ -114.433594, 31.653381 ], [ -114.785156, 31.653381 ], [ -114.785156, 31.503629 ], [ -114.960938, 31.503629 ], [ -114.960938, 31.052934 ], [ -114.785156, 31.052934 ], [ -114.785156, 30.448674 ], [ -114.609375, 30.448674 ], [ -114.609375, 29.993002 ], [ -114.433594, 29.993002 ], [ -114.433594, 29.688053 ], [ -114.257812, 29.688053 ], [ -114.257812, 29.535230 ], [ -114.082031, 29.535230 ], [ -114.082031, 29.382175 ], [ -113.906250, 29.382175 ], [ -113.906250, 29.228890 ], [ -113.730469, 29.228890 ], [ -113.730469, 29.075375 ], [ -113.554688, 29.075375 ], [ -113.554688, 28.921631 ], [ -113.378906, 28.921631 ], [ -113.378906, 28.767659 ], [ -113.203125, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -113.027344, 28.304381 ], [ -112.851562, 28.304381 ], [ -112.851562, 27.994401 ], [ -112.675781, 27.994401 ], [ -112.675781, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 27.371767 ], [ -112.324219, 27.371767 ], [ -112.324219, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.902477 ], [ -111.972656, 26.902477 ], [ -111.972656, 26.745610 ], [ -111.796875, 26.745610 ], [ -111.796875, 26.588527 ], [ -111.621094, 26.588527 ], [ -111.621094, 26.273714 ], [ -111.445312, 26.273714 ], [ -111.445312, 25.958045 ], [ -111.269531, 25.958045 ], [ -111.269531, 25.641526 ], [ -111.093750, 25.641526 ], [ -111.093750, 25.324167 ], [ -110.917969, 25.324167 ], [ -110.917969, 25.005973 ], [ -110.742188, 25.005973 ], [ -110.742188, 24.367114 ], [ -110.566406, 24.367114 ], [ -110.566406, 24.206890 ], [ -110.214844, 24.206890 ], [ -110.214844, 24.046464 ], [ -109.863281, 24.046464 ], [ -109.863281, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 23.725012 ], [ -109.511719, 23.725012 ], [ -109.511719, 23.402765 ], [ -109.335938, 23.402765 ], [ -109.335938, 23.241346 ], [ -109.511719, 23.241346 ], [ -109.511719, 23.079732 ], [ -109.687500, 23.079732 ], [ -109.687500, 22.755921 ], [ -110.039062, 22.755921 ], [ -110.039062, 23.079732 ], [ -110.214844, 23.079732 ], [ -110.214844, 23.402765 ], [ -110.390625, 23.402765 ], [ -110.390625, 23.563987 ], [ -110.566406, 23.563987 ], [ -110.566406, 23.725012 ], [ -110.742188, 23.725012 ], [ -110.742188, 23.885838 ], [ -110.917969, 23.885838 ], [ -110.917969, 24.046464 ], [ -111.093750, 24.046464 ], [ -111.093750, 24.206890 ], [ -111.445312, 24.206890 ], [ -111.445312, 24.367114 ], [ -111.621094, 24.367114 ], [ -111.621094, 24.527135 ], [ -111.972656, 24.527135 ], [ -111.972656, 24.686952 ], [ -112.148438, 24.686952 ], [ -112.148438, 25.641526 ], [ -112.324219, 25.641526 ], [ -112.324219, 25.958045 ], [ -112.500000, 25.958045 ], [ -112.500000, 26.115986 ], [ -112.851562, 26.115986 ], [ -112.851562, 26.273714 ], [ -113.027344, 26.273714 ], [ -113.027344, 26.431228 ], [ -113.203125, 26.431228 ], [ -113.203125, 26.588527 ], [ -113.730469, 26.588527 ], [ -113.730469, 26.745610 ], [ -113.906250, 26.745610 ], [ -113.906250, 26.902477 ], [ -114.082031, 26.902477 ], [ -114.082031, 27.059126 ], [ -114.433594, 27.059126 ], [ -114.433594, 27.215556 ], [ -114.609375, 27.215556 ], [ -114.609375, 27.371767 ], [ -114.960938, 27.371767 ], [ -114.960938, 27.527758 ], [ -115.136719, 27.527758 ], [ -115.136719, 27.683528 ], [ -114.433594, 27.683528 ], [ -114.433594, 27.994401 ], [ -114.257812, 27.994401 ], [ -114.257812, 28.304381 ], [ -114.082031, 28.304381 ], [ -114.082031, 28.613459 ], [ -114.257812, 28.613459 ], [ -114.257812, 28.767659 ], [ -114.433594, 28.767659 ], [ -114.433594, 28.921631 ], [ -114.785156, 28.921631 ], [ -114.785156, 29.075375 ], [ -114.960938, 29.075375 ], [ -114.960938, 29.228890 ], [ -115.136719, 29.228890 ], [ -115.136719, 29.382175 ], [ -115.488281, 29.382175 ], [ -115.488281, 29.688053 ], [ -115.664062, 29.688053 ], [ -115.664062, 29.993002 ], [ -115.839844, 29.993002 ], [ -115.839844, 30.297018 ], [ -116.015625, 30.297018 ], [ -116.015625, 30.600094 ], [ -116.191406, 30.600094 ], [ -116.191406, 30.902225 ], [ -116.367188, 30.902225 ], [ -116.367188, 31.203405 ], [ -116.542969, 31.203405 ], [ -116.542969, 31.503629 ], [ -116.718750, 31.503629 ], [ -116.718750, 31.802893 ], [ -116.894531, 31.802893 ], [ -116.894531, 32.249974 ], [ -117.070312, 32.249974 ], [ -117.070312, 32.546813 ], [ -115.312500, 32.546813 ], [ -115.312500, 32.694866 ], [ -114.785156, 32.694866 ], [ -114.785156, 32.546813 ], [ -114.609375, 32.546813 ], [ -114.609375, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.785156, 32.694866 ], [ -114.785156, 32.546813 ], [ -114.609375, 32.546813 ], [ -114.609375, 32.398516 ], [ -114.257812, 32.398516 ], [ -114.257812, 32.249974 ], [ -113.730469, 32.249974 ], [ -113.730469, 32.101190 ], [ -113.203125, 32.101190 ], [ -113.203125, 31.952162 ], [ -112.851562, 31.952162 ], [ -112.851562, 31.802893 ], [ -112.324219, 31.802893 ], [ -112.324219, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.503629 ], [ -111.445312, 31.503629 ], [ -111.445312, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -106.523438, 31.653381 ], [ -106.347656, 31.653381 ], [ -106.347656, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.203405 ], [ -105.820312, 31.203405 ], [ -105.820312, 31.052934 ], [ -105.644531, 31.052934 ], [ -105.644531, 30.902225 ], [ -105.468750, 30.902225 ], [ -105.468750, 30.751278 ], [ -105.292969, 30.751278 ], [ -105.292969, 30.600094 ], [ -105.117188, 30.600094 ], [ -105.117188, 19.642588 ], [ -105.292969, 19.642588 ], [ -105.292969, 19.808054 ], [ -105.468750, 19.808054 ], [ -105.468750, 20.138470 ], [ -105.644531, 20.138470 ], [ -105.644531, 20.468189 ], [ -105.468750, 20.468189 ], [ -105.468750, 20.961440 ], [ -105.292969, 20.961440 ], [ -105.292969, 21.453069 ], [ -105.468750, 21.453069 ], [ -105.468750, 21.779905 ], [ -105.644531, 21.779905 ], [ -105.644531, 22.268764 ], [ -105.820312, 22.268764 ], [ -105.820312, 22.593726 ], [ -105.996094, 22.593726 ], [ -105.996094, 22.755921 ], [ -106.171875, 22.755921 ], [ -106.171875, 22.917923 ], [ -106.347656, 22.917923 ], [ -106.347656, 23.241346 ], [ -106.523438, 23.241346 ], [ -106.523438, 23.402765 ], [ -106.699219, 23.402765 ], [ -106.699219, 23.563987 ], [ -106.875000, 23.563987 ], [ -106.875000, 23.725012 ], [ -107.050781, 23.725012 ], [ -107.050781, 23.885838 ], [ -107.226562, 23.885838 ], [ -107.226562, 24.046464 ], [ -107.578125, 24.046464 ], [ -107.578125, 24.206890 ], [ -107.753906, 24.206890 ], [ -107.753906, 24.367114 ], [ -107.929688, 24.367114 ], [ -107.929688, 24.527135 ], [ -108.105469, 24.527135 ], [ -108.105469, 24.846565 ], [ -108.281250, 24.846565 ], [ -108.281250, 25.005973 ], [ -108.457031, 25.005973 ], [ -108.457031, 25.165173 ], [ -108.632812, 25.165173 ], [ -108.632812, 25.324167 ], [ -108.984375, 25.324167 ], [ -108.984375, 25.482951 ], [ -109.335938, 25.482951 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.641526 ], [ -109.511719, 26.115986 ], [ -109.335938, 26.115986 ], [ -109.335938, 26.431228 ], [ -109.511719, 26.431228 ], [ -109.511719, 26.588527 ], [ -109.863281, 26.588527 ], [ -109.863281, 26.745610 ], [ -110.039062, 26.745610 ], [ -110.039062, 26.902477 ], [ -110.214844, 26.902477 ], [ -110.214844, 27.059126 ], [ -110.390625, 27.059126 ], [ -110.390625, 27.527758 ], [ -110.566406, 27.527758 ], [ -110.566406, 27.839076 ], [ -110.917969, 27.839076 ], [ -110.917969, 27.994401 ], [ -111.269531, 27.994401 ], [ -111.269531, 28.149503 ], [ -111.621094, 28.149503 ], [ -111.621094, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.459033 ], [ -111.972656, 28.459033 ], [ -111.972656, 28.767659 ], [ -112.148438, 28.767659 ], [ -112.148438, 29.075375 ], [ -112.324219, 29.075375 ], [ -112.324219, 29.228890 ], [ -112.500000, 29.228890 ], [ -112.500000, 29.535230 ], [ -112.675781, 29.535230 ], [ -112.675781, 29.840644 ], [ -112.851562, 29.840644 ], [ -112.851562, 30.145127 ], [ -113.027344, 30.145127 ], [ -113.027344, 30.448674 ], [ -113.203125, 30.448674 ], [ -113.203125, 31.203405 ], [ -113.554688, 31.203405 ], [ -113.554688, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.503629 ], [ -114.433594, 31.503629 ], [ -114.433594, 31.653381 ], [ -114.785156, 31.653381 ], [ -114.785156, 31.503629 ], [ -114.960938, 31.503629 ], [ -114.960938, 31.052934 ], [ -114.785156, 31.052934 ], [ -114.785156, 30.448674 ], [ -114.609375, 30.448674 ], [ -114.609375, 29.993002 ], [ -114.433594, 29.993002 ], [ -114.433594, 29.688053 ], [ -114.257812, 29.688053 ], [ -114.257812, 29.535230 ], [ -114.082031, 29.535230 ], [ -114.082031, 29.382175 ], [ -113.906250, 29.382175 ], [ -113.906250, 29.228890 ], [ -113.730469, 29.228890 ], [ -113.730469, 29.075375 ], [ -113.554688, 29.075375 ], [ -113.554688, 28.921631 ], [ -113.378906, 28.921631 ], [ -113.378906, 28.767659 ], [ -113.203125, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -113.027344, 28.304381 ], [ -112.851562, 28.304381 ], [ -112.851562, 27.994401 ], [ -112.675781, 27.994401 ], [ -112.675781, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 27.371767 ], [ -112.324219, 27.371767 ], [ -112.324219, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.902477 ], [ -111.972656, 26.902477 ], [ -111.972656, 26.745610 ], [ -111.796875, 26.745610 ], [ -111.796875, 26.588527 ], [ -111.621094, 26.588527 ], [ -111.621094, 26.273714 ], [ -111.445312, 26.273714 ], [ -111.445312, 25.958045 ], [ -111.269531, 25.958045 ], [ -111.269531, 25.641526 ], [ -111.093750, 25.641526 ], [ -111.093750, 25.324167 ], [ -110.917969, 25.324167 ], [ -110.917969, 25.005973 ], [ -110.742188, 25.005973 ], [ -110.742188, 24.367114 ], [ -110.566406, 24.367114 ], [ -110.566406, 24.206890 ], [ -110.214844, 24.206890 ], [ -110.214844, 24.046464 ], [ -109.863281, 24.046464 ], [ -109.863281, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 23.725012 ], [ -109.511719, 23.725012 ], [ -109.511719, 23.402765 ], [ -109.335938, 23.402765 ], [ -109.335938, 23.241346 ], [ -109.511719, 23.241346 ], [ -109.511719, 23.079732 ], [ -109.687500, 23.079732 ], [ -109.687500, 22.755921 ], [ -110.039062, 22.755921 ], [ -110.039062, 23.079732 ], [ -110.214844, 23.079732 ], [ -110.214844, 23.402765 ], [ -110.390625, 23.402765 ], [ -110.390625, 23.563987 ], [ -110.566406, 23.563987 ], [ -110.566406, 23.725012 ], [ -110.742188, 23.725012 ], [ -110.742188, 23.885838 ], [ -110.917969, 23.885838 ], [ -110.917969, 24.046464 ], [ -111.093750, 24.046464 ], [ -111.093750, 24.206890 ], [ -111.445312, 24.206890 ], [ -111.445312, 24.367114 ], [ -111.621094, 24.367114 ], [ -111.621094, 24.527135 ], [ -111.972656, 24.527135 ], [ -111.972656, 24.686952 ], [ -112.148438, 24.686952 ], [ -112.148438, 25.641526 ], [ -112.324219, 25.641526 ], [ -112.324219, 25.958045 ], [ -112.500000, 25.958045 ], [ -112.500000, 26.115986 ], [ -112.851562, 26.115986 ], [ -112.851562, 26.273714 ], [ -113.027344, 26.273714 ], [ -113.027344, 26.431228 ], [ -113.203125, 26.431228 ], [ -113.203125, 26.588527 ], [ -113.730469, 26.588527 ], [ -113.730469, 26.745610 ], [ -113.906250, 26.745610 ], [ -113.906250, 26.902477 ], [ -114.082031, 26.902477 ], [ -114.082031, 27.059126 ], [ -114.433594, 27.059126 ], [ -114.433594, 27.215556 ], [ -114.609375, 27.215556 ], [ -114.609375, 27.371767 ], [ -114.960938, 27.371767 ], [ -114.960938, 27.527758 ], [ -115.136719, 27.527758 ], [ -115.136719, 27.683528 ], [ -114.433594, 27.683528 ], [ -114.433594, 27.994401 ], [ -114.257812, 27.994401 ], [ -114.257812, 28.304381 ], [ -114.082031, 28.304381 ], [ -114.082031, 28.613459 ], [ -114.257812, 28.613459 ], [ -114.257812, 28.767659 ], [ -114.433594, 28.767659 ], [ -114.433594, 28.921631 ], [ -114.785156, 28.921631 ], [ -114.785156, 29.075375 ], [ -114.960938, 29.075375 ], [ -114.960938, 29.228890 ], [ -115.136719, 29.228890 ], [ -115.136719, 29.382175 ], [ -115.488281, 29.382175 ], [ -115.488281, 29.688053 ], [ -115.664062, 29.688053 ], [ -115.664062, 29.993002 ], [ -115.839844, 29.993002 ], [ -115.839844, 30.297018 ], [ -116.015625, 30.297018 ], [ -116.015625, 30.600094 ], [ -116.191406, 30.600094 ], [ -116.191406, 30.902225 ], [ -116.367188, 30.902225 ], [ -116.367188, 31.203405 ], [ -116.542969, 31.203405 ], [ -116.542969, 31.503629 ], [ -116.718750, 31.503629 ], [ -116.718750, 31.802893 ], [ -116.894531, 31.802893 ], [ -116.894531, 32.249974 ], [ -117.070312, 32.249974 ], [ -117.070312, 32.546813 ], [ -115.312500, 32.546813 ], [ -115.312500, 32.694866 ], [ -114.785156, 32.694866 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.425781, 29.535230 ], [ -101.074219, 29.535230 ], [ -101.074219, 29.382175 ], [ -100.898438, 29.382175 ], [ -100.898438, 29.228890 ], [ -100.722656, 29.228890 ], [ -100.722656, 29.075375 ], [ -100.546875, 29.075375 ], [ -100.546875, 28.767659 ], [ -100.371094, 28.767659 ], [ -100.371094, 28.459033 ], [ -100.195312, 28.459033 ], [ -100.195312, 27.994401 ], [ -100.019531, 27.994401 ], [ -100.019531, 27.839076 ], [ -99.843750, 27.839076 ], [ -99.843750, 27.683528 ], [ -99.667969, 27.683528 ], [ -99.667969, 27.527758 ], [ -99.492188, 27.527758 ], [ -99.492188, 27.215556 ], [ -99.316406, 27.215556 ], [ -99.316406, 26.745610 ], [ -99.140625, 26.745610 ], [ -99.140625, 26.431228 ], [ -98.964844, 26.431228 ], [ -98.964844, 26.273714 ], [ -98.613281, 26.273714 ], [ -98.613281, 26.115986 ], [ -98.261719, 26.115986 ], [ -98.261719, 25.958045 ], [ -97.910156, 25.958045 ], [ -97.910156, 25.799891 ], [ -97.207031, 25.799891 ], [ -97.207031, 25.482951 ], [ -97.382812, 25.482951 ], [ -97.382812, 25.165173 ], [ -97.558594, 25.165173 ], [ -97.558594, 24.527135 ], [ -97.734375, 24.527135 ], [ -97.734375, 22.593726 ], [ -97.910156, 22.593726 ], [ -97.910156, 22.105999 ], [ -97.734375, 22.105999 ], [ -97.734375, 21.779905 ], [ -97.558594, 21.779905 ], [ -97.558594, 21.453069 ], [ -97.382812, 21.453069 ], [ -97.382812, 20.961440 ], [ -97.207031, 20.961440 ], [ -97.207031, 20.468189 ], [ -97.031250, 20.468189 ], [ -97.031250, 20.303418 ], [ -96.855469, 20.303418 ], [ -96.855469, 20.138470 ], [ -96.679688, 20.138470 ], [ -96.679688, 19.973349 ], [ -96.503906, 19.973349 ], [ -96.503906, 19.642588 ], [ -96.328125, 19.642588 ], [ -96.328125, 19.145168 ], [ -96.152344, 19.145168 ], [ -96.152344, 18.812718 ], [ -95.800781, 18.812718 ], [ -95.800781, 18.646245 ], [ -95.273438, 18.646245 ], [ -95.273438, 18.479609 ], [ -94.921875, 18.479609 ], [ -94.921875, 18.312811 ], [ -94.570312, 18.312811 ], [ -94.570312, 18.145852 ], [ -94.042969, 18.145852 ], [ -94.042969, 18.312811 ], [ -93.691406, 18.312811 ], [ -93.691406, 18.479609 ], [ -92.285156, 18.479609 ], [ -92.285156, 18.646245 ], [ -91.582031, 18.646245 ], [ -91.582031, 18.812718 ], [ -91.230469, 18.812718 ], [ -91.230469, 18.979026 ], [ -90.878906, 18.979026 ], [ -90.878906, 19.145168 ], [ -90.703125, 19.145168 ], [ -90.703125, 19.476950 ], [ -90.527344, 19.476950 ], [ -90.527344, 20.797201 ], [ -90.351562, 20.797201 ], [ -90.351562, 20.961440 ], [ -90.000000, 20.961440 ], [ -90.000000, 21.125498 ], [ -89.648438, 21.125498 ], [ -89.648438, 21.289374 ], [ -89.121094, 21.289374 ], [ -89.121094, 17.811456 ], [ -91.054688, 17.811456 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 17.140790 ], [ -91.230469, 17.140790 ], [ -91.230469, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.804541 ], [ -90.878906, 16.804541 ], [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.351562, 16.467695 ], [ -90.351562, 16.299051 ], [ -90.527344, 16.299051 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -91.757812, 15.961329 ], [ -91.933594, 15.961329 ], [ -91.933594, 15.623037 ], [ -92.109375, 15.623037 ], [ -92.109375, 15.284185 ], [ -92.285156, 15.284185 ], [ -92.285156, 15.114553 ], [ -92.109375, 15.114553 ], [ -92.109375, 14.944785 ], [ -92.285156, 14.944785 ], [ -92.285156, 14.604847 ], [ -92.460938, 14.604847 ], [ -92.460938, 14.774883 ], [ -92.636719, 14.774883 ], [ -92.636719, 14.944785 ], [ -92.812500, 14.944785 ], [ -92.812500, 15.114553 ], [ -92.988281, 15.114553 ], [ -92.988281, 15.284185 ], [ -93.164062, 15.284185 ], [ -93.164062, 15.453680 ], [ -93.339844, 15.453680 ], [ -93.339844, 15.623037 ], [ -93.515625, 15.623037 ], [ -93.515625, 15.792254 ], [ -93.867188, 15.792254 ], [ -93.867188, 15.961329 ], [ -94.394531, 15.961329 ], [ -94.394531, 16.130262 ], [ -95.273438, 16.130262 ], [ -95.273438, 15.961329 ], [ -95.625000, 15.961329 ], [ -95.625000, 15.792254 ], [ -96.152344, 15.792254 ], [ -96.152344, 15.623037 ], [ -96.855469, 15.623037 ], [ -96.855469, 15.792254 ], [ -97.207031, 15.792254 ], [ -97.207031, 15.961329 ], [ -97.734375, 15.961329 ], [ -97.734375, 16.130262 ], [ -98.261719, 16.130262 ], [ -98.261719, 16.299051 ], [ -98.613281, 16.299051 ], [ -98.613281, 16.467695 ], [ -98.964844, 16.467695 ], [ -98.964844, 16.636192 ], [ -100.019531, 16.636192 ], [ -100.019531, 16.804541 ], [ -100.371094, 16.804541 ], [ -100.371094, 16.972741 ], [ -100.722656, 16.972741 ], [ -100.722656, 17.140790 ], [ -101.074219, 17.140790 ], [ -101.074219, 17.308688 ], [ -101.425781, 17.308688 ], [ -101.425781, 17.476432 ], [ -101.601562, 17.476432 ], [ -101.601562, 17.644022 ], [ -101.777344, 17.644022 ], [ -101.777344, 17.811456 ], [ -101.953125, 17.811456 ], [ -101.953125, 17.978733 ], [ -102.832031, 17.978733 ], [ -102.832031, 18.145852 ], [ -103.359375, 18.145852 ], [ -103.359375, 18.312811 ], [ -103.710938, 18.312811 ], [ -103.710938, 18.646245 ], [ -103.886719, 18.646245 ], [ -103.886719, 18.812718 ], [ -104.238281, 18.812718 ], [ -104.238281, 18.979026 ], [ -104.589844, 18.979026 ], [ -104.589844, 19.145168 ], [ -104.941406, 19.145168 ], [ -104.941406, 19.311143 ], [ -105.117188, 19.311143 ], [ -105.117188, 30.448674 ], [ -104.941406, 30.448674 ], [ -104.941406, 30.145127 ], [ -104.765625, 30.145127 ], [ -104.765625, 29.993002 ], [ -104.589844, 29.993002 ], [ -104.589844, 29.688053 ], [ -104.414062, 29.688053 ], [ -104.414062, 29.382175 ], [ -104.062500, 29.382175 ], [ -104.062500, 29.228890 ], [ -103.886719, 29.228890 ], [ -103.886719, 29.075375 ], [ -103.535156, 29.075375 ], [ -103.535156, 28.921631 ], [ -103.007812, 28.921631 ], [ -103.007812, 29.075375 ], [ -102.832031, 29.075375 ], [ -102.832031, 29.382175 ], [ -102.656250, 29.382175 ], [ -102.656250, 29.535230 ], [ -102.480469, 29.535230 ], [ -102.480469, 29.688053 ], [ -101.953125, 29.688053 ], [ -101.953125, 29.840644 ], [ -101.601562, 29.840644 ], [ -101.601562, 29.688053 ], [ -101.425781, 29.688053 ], [ -101.425781, 29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.941406, 30.448674 ], [ -104.941406, 30.145127 ], [ -104.765625, 30.145127 ], [ -104.765625, 29.993002 ], [ -104.589844, 29.993002 ], [ -104.589844, 29.688053 ], [ -104.414062, 29.688053 ], [ -104.414062, 29.382175 ], [ -104.062500, 29.382175 ], [ -104.062500, 29.228890 ], [ -103.886719, 29.228890 ], [ -103.886719, 29.075375 ], [ -103.535156, 29.075375 ], [ -103.535156, 28.921631 ], [ -103.007812, 28.921631 ], [ -103.007812, 29.075375 ], [ -102.832031, 29.075375 ], [ -102.832031, 29.382175 ], [ -102.656250, 29.382175 ], [ -102.656250, 29.535230 ], [ -102.480469, 29.535230 ], [ -102.480469, 29.688053 ], [ -101.953125, 29.688053 ], [ -101.953125, 29.840644 ], [ -101.601562, 29.840644 ], [ -101.601562, 29.688053 ], [ -101.425781, 29.688053 ], [ -101.425781, 29.535230 ], [ -101.074219, 29.535230 ], [ -101.074219, 29.382175 ], [ -100.898438, 29.382175 ], [ -100.898438, 29.228890 ], [ -100.722656, 29.228890 ], [ -100.722656, 29.075375 ], [ -100.546875, 29.075375 ], [ -100.546875, 28.767659 ], [ -100.371094, 28.767659 ], [ -100.371094, 28.459033 ], [ -100.195312, 28.459033 ], [ -100.195312, 27.994401 ], [ -100.019531, 27.994401 ], [ -100.019531, 27.839076 ], [ -99.843750, 27.839076 ], [ -99.843750, 27.683528 ], [ -99.667969, 27.683528 ], [ -99.667969, 27.527758 ], [ -99.492188, 27.527758 ], [ -99.492188, 27.215556 ], [ -99.316406, 27.215556 ], [ -99.316406, 26.745610 ], [ -99.140625, 26.745610 ], [ -99.140625, 26.431228 ], [ -98.964844, 26.431228 ], [ -98.964844, 26.273714 ], [ -98.613281, 26.273714 ], [ -98.613281, 26.115986 ], [ -98.261719, 26.115986 ], [ -98.261719, 25.958045 ], [ -97.910156, 25.958045 ], [ -97.910156, 25.799891 ], [ -97.207031, 25.799891 ], [ -97.207031, 25.482951 ], [ -97.382812, 25.482951 ], [ -97.382812, 25.165173 ], [ -97.558594, 25.165173 ], [ -97.558594, 24.527135 ], [ -97.734375, 24.527135 ], [ -97.734375, 22.593726 ], [ -97.910156, 22.593726 ], [ -97.910156, 22.105999 ], [ -97.734375, 22.105999 ], [ -97.734375, 21.779905 ], [ -97.558594, 21.779905 ], [ -97.558594, 21.453069 ], [ -97.382812, 21.453069 ], [ -97.382812, 20.961440 ], [ -97.207031, 20.961440 ], [ -97.207031, 20.468189 ], [ -97.031250, 20.468189 ], [ -97.031250, 20.303418 ], [ -96.855469, 20.303418 ], [ -96.855469, 20.138470 ], [ -96.679688, 20.138470 ], [ -96.679688, 19.973349 ], [ -96.503906, 19.973349 ], [ -96.503906, 19.642588 ], [ -96.328125, 19.642588 ], [ -96.328125, 19.145168 ], [ -96.152344, 19.145168 ], [ -96.152344, 18.812718 ], [ -95.800781, 18.812718 ], [ -95.800781, 18.646245 ], [ -95.273438, 18.646245 ], [ -95.273438, 18.479609 ], [ -94.921875, 18.479609 ], [ -94.921875, 18.312811 ], [ -94.570312, 18.312811 ], [ -94.570312, 18.145852 ], [ -94.042969, 18.145852 ], [ -94.042969, 18.312811 ], [ -93.691406, 18.312811 ], [ -93.691406, 18.479609 ], [ -92.285156, 18.479609 ], [ -92.285156, 18.646245 ], [ -91.582031, 18.646245 ], [ -91.582031, 18.812718 ], [ -91.230469, 18.812718 ], [ -91.230469, 18.979026 ], [ -90.878906, 18.979026 ], [ -90.878906, 19.145168 ], [ -90.703125, 19.145168 ], [ -90.703125, 19.476950 ], [ -90.527344, 19.476950 ], [ -90.527344, 20.797201 ], [ -90.351562, 20.797201 ], [ -90.351562, 20.961440 ], [ -90.000000, 20.961440 ], [ -90.000000, 21.125498 ], [ -89.648438, 21.125498 ], [ -89.648438, 21.289374 ], [ -89.121094, 21.289374 ], [ -89.121094, 17.811456 ], [ -91.054688, 17.811456 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 17.140790 ], [ -91.230469, 17.140790 ], [ -91.230469, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.804541 ], [ -90.878906, 16.804541 ], [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.351562, 16.467695 ], [ -90.351562, 16.299051 ], [ -90.527344, 16.299051 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -91.757812, 15.961329 ], [ -91.933594, 15.961329 ], [ -91.933594, 15.623037 ], [ -92.109375, 15.623037 ], [ -92.109375, 15.284185 ], [ -92.285156, 15.284185 ], [ -92.285156, 15.114553 ], [ -92.109375, 15.114553 ], [ -92.109375, 14.944785 ], [ -92.285156, 14.944785 ], [ -92.285156, 14.604847 ], [ -92.460938, 14.604847 ], [ -92.460938, 14.774883 ], [ -92.636719, 14.774883 ], [ -92.636719, 14.944785 ], [ -92.812500, 14.944785 ], [ -92.812500, 15.114553 ], [ -92.988281, 15.114553 ], [ -92.988281, 15.284185 ], [ -93.164062, 15.284185 ], [ -93.164062, 15.453680 ], [ -93.339844, 15.453680 ], [ -93.339844, 15.623037 ], [ -93.515625, 15.623037 ], [ -93.515625, 15.792254 ], [ -93.867188, 15.792254 ], [ -93.867188, 15.961329 ], [ -94.394531, 15.961329 ], [ -94.394531, 16.130262 ], [ -95.273438, 16.130262 ], [ -95.273438, 15.961329 ], [ -95.625000, 15.961329 ], [ -95.625000, 15.792254 ], [ -96.152344, 15.792254 ], [ -96.152344, 15.623037 ], [ -96.855469, 15.623037 ], [ -96.855469, 15.792254 ], [ -97.207031, 15.792254 ], [ -97.207031, 15.961329 ], [ -97.734375, 15.961329 ], [ -97.734375, 16.130262 ], [ -98.261719, 16.130262 ], [ -98.261719, 16.299051 ], [ -98.613281, 16.299051 ], [ -98.613281, 16.467695 ], [ -98.964844, 16.467695 ], [ -98.964844, 16.636192 ], [ -100.019531, 16.636192 ], [ -100.019531, 16.804541 ], [ -100.371094, 16.804541 ], [ -100.371094, 16.972741 ], [ -100.722656, 16.972741 ], [ -100.722656, 17.140790 ], [ -101.074219, 17.140790 ], [ -101.074219, 17.308688 ], [ -101.425781, 17.308688 ], [ -101.425781, 17.476432 ], [ -101.601562, 17.476432 ], [ -101.601562, 17.644022 ], [ -101.777344, 17.644022 ], [ -101.777344, 17.811456 ], [ -101.953125, 17.811456 ], [ -101.953125, 17.978733 ], [ -102.832031, 17.978733 ], [ -102.832031, 18.145852 ], [ -103.359375, 18.145852 ], [ -103.359375, 18.312811 ], [ -103.710938, 18.312811 ], [ -103.710938, 18.646245 ], [ -103.886719, 18.646245 ], [ -103.886719, 18.812718 ], [ -104.238281, 18.812718 ], [ -104.238281, 18.979026 ], [ -104.589844, 18.979026 ], [ -104.589844, 19.145168 ], [ -104.941406, 19.145168 ], [ -104.941406, 19.311143 ], [ -105.117188, 19.311143 ], [ -105.117188, 30.448674 ], [ -104.941406, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.774883 ], [ -89.121094, 14.774883 ], [ -89.121094, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.472656, 14.264383 ], [ -89.472656, 14.093957 ], [ -89.648438, 14.093957 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -91.582031, 13.923404 ], [ -91.582031, 14.093957 ], [ -91.933594, 14.093957 ], [ -91.933594, 14.264383 ], [ -92.109375, 14.264383 ], [ -92.109375, 14.434680 ], [ -92.285156, 14.434680 ], [ -92.285156, 14.944785 ], [ -92.109375, 14.944785 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.114553 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 15.623037 ], [ -91.933594, 15.623037 ], [ -91.933594, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 16.804541 ], [ -91.054688, 16.804541 ], [ -91.054688, 16.972741 ], [ -91.230469, 16.972741 ], [ -91.230469, 17.140790 ], [ -91.406250, 17.140790 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.811456 ], [ -89.121094, 17.811456 ], [ -89.121094, 16.467695 ], [ -89.296875, 16.467695 ], [ -89.296875, 15.961329 ], [ -89.121094, 15.961329 ], [ -89.121094, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.811456 ], [ -89.121094, 16.467695 ], [ -89.296875, 16.467695 ], [ -89.296875, 15.961329 ], [ -89.121094, 15.961329 ], [ -89.121094, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.774883 ], [ -89.121094, 14.774883 ], [ -89.121094, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.472656, 14.264383 ], [ -89.472656, 14.093957 ], [ -89.648438, 14.093957 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -91.582031, 13.923404 ], [ -91.582031, 14.093957 ], [ -91.933594, 14.093957 ], [ -91.933594, 14.264383 ], [ -92.109375, 14.264383 ], [ -92.109375, 14.434680 ], [ -92.285156, 14.434680 ], [ -92.285156, 14.944785 ], [ -92.109375, 14.944785 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.114553 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 15.623037 ], [ -91.933594, 15.623037 ], [ -91.933594, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 16.804541 ], [ -91.054688, 16.804541 ], [ -91.054688, 16.972741 ], [ -91.230469, 16.972741 ], [ -91.230469, 17.140790 ], [ -91.406250, 17.140790 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.811456 ], [ -89.121094, 17.811456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 16.467695 ], [ -89.121094, 16.467695 ], [ -89.121094, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 16.467695 ], [ -89.121094, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.121094, 16.467695 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 13.410994 ], [ -89.648438, 13.410994 ], [ -89.648438, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.000000, 13.752725 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.093957 ], [ -89.472656, 14.093957 ], [ -89.472656, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.121094, 14.434680 ], [ -89.121094, 13.410994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.434680 ], [ -89.121094, 13.410994 ], [ -89.648438, 13.410994 ], [ -89.648438, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.000000, 13.752725 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.093957 ], [ -89.472656, 14.093957 ], [ -89.472656, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.121094, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.774883 ], [ -89.296875, 14.774883 ], [ -89.296875, 14.944785 ], [ -89.121094, 14.944785 ], [ -89.121094, 14.774883 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.944785 ], [ -89.121094, 14.774883 ], [ -89.296875, 14.774883 ], [ -89.296875, 14.944785 ], [ -89.121094, 14.944785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.527344, 57.136239 ], [ -90.175781, 57.136239 ], [ -90.175781, 57.040730 ], [ -89.824219, 57.040730 ], [ -89.824219, 56.944974 ], [ -89.472656, 56.944974 ], [ -89.472656, 56.848972 ], [ -89.121094, 56.848972 ], [ -89.121094, 47.989922 ], [ -90.000000, 47.989922 ], [ -90.000000, 48.107431 ], [ -90.703125, 48.107431 ], [ -90.703125, 48.224673 ], [ -91.054688, 48.224673 ], [ -91.054688, 48.107431 ], [ -91.933594, 48.107431 ], [ -91.933594, 48.224673 ], [ -92.285156, 48.224673 ], [ -92.285156, 48.341646 ], [ -92.636719, 48.341646 ], [ -92.636719, 48.458352 ], [ -93.339844, 48.458352 ], [ -93.339844, 48.574790 ], [ -94.218750, 48.574790 ], [ -94.218750, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 49.037868 ], [ -94.746094, 49.037868 ], [ -94.746094, 49.382373 ], [ -95.097656, 49.382373 ], [ -95.097656, 49.037868 ], [ -123.222656, 49.037868 ], [ -123.222656, 49.152970 ], [ -123.574219, 49.152970 ], [ -123.574219, 49.267805 ], [ -123.750000, 49.267805 ], [ -123.750000, 49.382373 ], [ -123.925781, 49.382373 ], [ -123.925781, 49.496675 ], [ -124.277344, 49.496675 ], [ -124.277344, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.724479 ], [ -124.628906, 49.724479 ], [ -124.628906, 49.837982 ], [ -124.980469, 49.837982 ], [ -124.980469, 49.951220 ], [ -125.156250, 49.951220 ], [ -125.156250, 50.064192 ], [ -125.332031, 50.064192 ], [ -125.332031, 50.176898 ], [ -125.507812, 50.176898 ], [ -125.507812, 50.289339 ], [ -125.683594, 50.289339 ], [ -125.683594, 50.401515 ], [ -126.035156, 50.401515 ], [ -126.035156, 50.513427 ], [ -126.386719, 50.513427 ], [ -126.386719, 50.625073 ], [ -126.914062, 50.625073 ], [ -126.914062, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.847573 ], [ -127.441406, 50.847573 ], [ -127.441406, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.289406 ], [ -127.792969, 51.289406 ], [ -127.792969, 51.508742 ], [ -127.968750, 51.508742 ], [ -127.968750, 52.052490 ], [ -127.792969, 52.052490 ], [ -127.792969, 52.375599 ], [ -128.144531, 52.375599 ], [ -128.144531, 52.482780 ], [ -128.496094, 52.482780 ], [ -128.496094, 52.589701 ], [ -128.847656, 52.589701 ], [ -128.847656, 52.696361 ], [ -129.199219, 52.696361 ], [ -129.199219, 53.120405 ], [ -129.375000, 53.120405 ], [ -129.375000, 53.540307 ], [ -129.550781, 53.540307 ], [ -129.550781, 53.644638 ], [ -129.726562, 53.644638 ], [ -129.726562, 53.748711 ], [ -129.902344, 53.748711 ], [ -129.902344, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.059388 ], [ -130.253906, 54.059388 ], [ -130.253906, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.470038 ], [ -130.605469, 54.470038 ], [ -130.605469, 54.775346 ], [ -130.429688, 54.775346 ], [ -130.429688, 54.876607 ], [ -130.253906, 54.876607 ], [ -130.253906, 55.078367 ], [ -130.078125, 55.078367 ], [ -130.078125, 55.178868 ], [ -129.902344, 55.178868 ], [ -129.902344, 55.578345 ], [ -130.078125, 55.578345 ], [ -130.078125, 55.875311 ], [ -130.253906, 55.875311 ], [ -130.253906, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.072035 ], [ -130.781250, 56.072035 ], [ -130.781250, 56.170023 ], [ -130.957031, 56.170023 ], [ -130.957031, 56.267761 ], [ -131.132812, 56.267761 ], [ -131.132812, 56.365250 ], [ -131.484375, 56.365250 ], [ -131.484375, 56.462490 ], [ -131.660156, 56.462490 ], [ -131.660156, 56.656226 ], [ -131.835938, 56.656226 ], [ -131.835938, 56.848972 ], [ -132.011719, 56.848972 ], [ -132.011719, 57.040730 ], [ -132.187500, 57.040730 ], [ -132.187500, 57.231503 ], [ -132.363281, 57.231503 ], [ -132.363281, 57.421294 ], [ -132.539062, 57.421294 ], [ -132.539062, 57.610107 ], [ -132.714844, 57.610107 ], [ -132.714844, 57.797944 ], [ -132.890625, 57.797944 ], [ -132.890625, 57.984808 ], [ -133.066406, 57.984808 ], [ -133.066406, 58.170702 ], [ -133.242188, 58.170702 ], [ -133.242188, 58.355630 ], [ -133.417969, 58.355630 ], [ -133.417969, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.539595 ], [ -133.769531, 58.539595 ], [ -133.769531, 58.631217 ], [ -133.945312, 58.631217 ], [ -133.945312, 58.722599 ], [ -134.121094, 58.722599 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.085739 ], [ -134.824219, 59.085739 ], [ -134.824219, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.623325 ], [ -135.878906, 59.623325 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ], [ -89.121094, 64.091408 ], [ -89.472656, 64.091408 ], [ -89.472656, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.937372 ], [ -90.175781, 63.937372 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.704722 ], [ -90.527344, 63.704722 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 62.995158 ], [ -90.878906, 62.995158 ], [ -90.878906, 62.915233 ], [ -91.582031, 62.915233 ], [ -91.582031, 62.835089 ], [ -91.933594, 62.835089 ], [ -91.933594, 62.754726 ], [ -92.109375, 62.754726 ], [ -92.109375, 62.593341 ], [ -92.285156, 62.593341 ], [ -92.285156, 62.512318 ], [ -92.460938, 62.512318 ], [ -92.460938, 62.431074 ], [ -92.636719, 62.431074 ], [ -92.636719, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 62.186014 ], [ -92.988281, 62.186014 ], [ -92.988281, 62.021528 ], [ -93.164062, 62.021528 ], [ -93.164062, 61.856149 ], [ -93.339844, 61.856149 ], [ -93.339844, 61.689872 ], [ -93.515625, 61.689872 ], [ -93.515625, 61.522695 ], [ -93.691406, 61.522695 ], [ -93.691406, 61.354614 ], [ -93.867188, 61.354614 ], [ -93.867188, 61.185625 ], [ -94.042969, 61.185625 ], [ -94.042969, 61.015725 ], [ -94.218750, 61.015725 ], [ -94.218750, 60.673179 ], [ -94.394531, 60.673179 ], [ -94.394531, 60.326948 ], [ -94.570312, 60.326948 ], [ -94.570312, 59.534318 ], [ -94.746094, 59.534318 ], [ -94.746094, 58.904646 ], [ -94.042969, 58.904646 ], [ -94.042969, 58.813742 ], [ -93.164062, 58.813742 ], [ -93.164062, 58.539595 ], [ -92.988281, 58.539595 ], [ -92.988281, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.704147 ], [ -92.636719, 57.704147 ], [ -92.636719, 57.421294 ], [ -92.460938, 57.421294 ], [ -92.460938, 57.136239 ], [ -92.285156, 57.136239 ], [ -92.285156, 57.040730 ], [ -91.933594, 57.040730 ], [ -91.933594, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.231503 ], [ -91.054688, 57.231503 ], [ -91.054688, 57.326521 ], [ -90.878906, 57.326521 ], [ -90.878906, 57.231503 ], [ -90.527344, 57.231503 ], [ -90.527344, 57.136239 ] ] ], [ [ [ -127.617188, 50.513427 ], [ -127.089844, 50.513427 ], [ -127.089844, 50.401515 ], [ -126.386719, 50.401515 ], [ -126.386719, 50.289339 ], [ -125.683594, 50.289339 ], [ -125.683594, 50.176898 ], [ -125.507812, 50.176898 ], [ -125.507812, 49.951220 ], [ -125.332031, 49.951220 ], [ -125.332031, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 49.610710 ], [ -124.980469, 49.610710 ], [ -124.980469, 49.382373 ], [ -124.628906, 49.382373 ], [ -124.628906, 49.267805 ], [ -124.453125, 49.267805 ], [ -124.453125, 49.152970 ], [ -124.101562, 49.152970 ], [ -124.101562, 49.037868 ], [ -123.925781, 49.037868 ], [ -123.925781, 48.806863 ], [ -123.750000, 48.806863 ], [ -123.750000, 48.574790 ], [ -123.574219, 48.574790 ], [ -123.574219, 48.341646 ], [ -124.277344, 48.341646 ], [ -124.277344, 48.458352 ], [ -124.628906, 48.458352 ], [ -124.628906, 48.574790 ], [ -125.156250, 48.574790 ], [ -125.156250, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.806863 ], [ -125.859375, 48.806863 ], [ -125.859375, 49.037868 ], [ -126.035156, 49.037868 ], [ -126.035156, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.267805 ], [ -126.562500, 49.267805 ], [ -126.562500, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.610710 ], [ -127.089844, 49.610710 ], [ -127.089844, 49.837982 ], [ -127.792969, 49.837982 ], [ -127.792969, 49.951220 ], [ -128.144531, 49.951220 ], [ -128.144531, 50.064192 ], [ -128.320312, 50.064192 ], [ -128.320312, 50.289339 ], [ -128.496094, 50.289339 ], [ -128.496094, 50.625073 ], [ -128.320312, 50.625073 ], [ -128.320312, 50.736455 ], [ -128.144531, 50.736455 ], [ -128.144531, 50.625073 ], [ -127.617188, 50.625073 ], [ -127.617188, 50.513427 ] ] ], [ [ [ -133.066406, 54.059388 ], [ -132.187500, 54.059388 ], [ -132.187500, 54.162434 ], [ -131.835938, 54.162434 ], [ -131.835938, 53.540307 ], [ -132.011719, 53.540307 ], [ -132.011719, 52.908902 ], [ -131.835938, 52.908902 ], [ -131.835938, 52.696361 ], [ -131.660156, 52.696361 ], [ -131.660156, 52.589701 ], [ -131.484375, 52.589701 ], [ -131.484375, 52.375599 ], [ -131.308594, 52.375599 ], [ -131.308594, 52.160455 ], [ -131.835938, 52.160455 ], [ -131.835938, 52.375599 ], [ -132.011719, 52.375599 ], [ -132.011719, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -132.363281, 52.696361 ], [ -132.363281, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.120405 ], [ -132.714844, 53.120405 ], [ -132.714844, 53.225768 ], [ -132.890625, 53.225768 ], [ -132.890625, 53.330873 ], [ -133.066406, 53.330873 ], [ -133.066406, 53.644638 ], [ -133.242188, 53.644638 ], [ -133.242188, 54.162434 ], [ -133.066406, 54.162434 ], [ -133.066406, 54.059388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.091408 ], [ -89.472656, 64.091408 ], [ -89.472656, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.937372 ], [ -90.175781, 63.937372 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.704722 ], [ -90.527344, 63.704722 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 62.995158 ], [ -90.878906, 62.995158 ], [ -90.878906, 62.915233 ], [ -91.582031, 62.915233 ], [ -91.582031, 62.835089 ], [ -91.933594, 62.835089 ], [ -91.933594, 62.754726 ], [ -92.109375, 62.754726 ], [ -92.109375, 62.593341 ], [ -92.285156, 62.593341 ], [ -92.285156, 62.512318 ], [ -92.460938, 62.512318 ], [ -92.460938, 62.431074 ], [ -92.636719, 62.431074 ], [ -92.636719, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 62.186014 ], [ -92.988281, 62.186014 ], [ -92.988281, 62.021528 ], [ -93.164062, 62.021528 ], [ -93.164062, 61.856149 ], [ -93.339844, 61.856149 ], [ -93.339844, 61.689872 ], [ -93.515625, 61.689872 ], [ -93.515625, 61.522695 ], [ -93.691406, 61.522695 ], [ -93.691406, 61.354614 ], [ -93.867188, 61.354614 ], [ -93.867188, 61.185625 ], [ -94.042969, 61.185625 ], [ -94.042969, 61.015725 ], [ -94.218750, 61.015725 ], [ -94.218750, 60.673179 ], [ -94.394531, 60.673179 ], [ -94.394531, 60.326948 ], [ -94.570312, 60.326948 ], [ -94.570312, 59.534318 ], [ -94.746094, 59.534318 ], [ -94.746094, 58.904646 ], [ -94.042969, 58.904646 ], [ -94.042969, 58.813742 ], [ -93.164062, 58.813742 ], [ -93.164062, 58.539595 ], [ -92.988281, 58.539595 ], [ -92.988281, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.704147 ], [ -92.636719, 57.704147 ], [ -92.636719, 57.421294 ], [ -92.460938, 57.421294 ], [ -92.460938, 57.136239 ], [ -92.285156, 57.136239 ], [ -92.285156, 57.040730 ], [ -91.933594, 57.040730 ], [ -91.933594, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.231503 ], [ -91.054688, 57.231503 ], [ -91.054688, 57.326521 ], [ -90.878906, 57.326521 ], [ -90.878906, 57.231503 ], [ -90.527344, 57.231503 ], [ -90.527344, 57.136239 ], [ -90.175781, 57.136239 ], [ -90.175781, 57.040730 ], [ -89.824219, 57.040730 ], [ -89.824219, 56.944974 ], [ -89.472656, 56.944974 ], [ -89.472656, 56.848972 ], [ -89.121094, 56.848972 ], [ -89.121094, 47.989922 ], [ -90.000000, 47.989922 ], [ -90.000000, 48.107431 ], [ -90.703125, 48.107431 ], [ -90.703125, 48.224673 ], [ -91.054688, 48.224673 ], [ -91.054688, 48.107431 ], [ -91.933594, 48.107431 ], [ -91.933594, 48.224673 ], [ -92.285156, 48.224673 ], [ -92.285156, 48.341646 ], [ -92.636719, 48.341646 ], [ -92.636719, 48.458352 ], [ -93.339844, 48.458352 ], [ -93.339844, 48.574790 ], [ -94.218750, 48.574790 ], [ -94.218750, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 49.037868 ], [ -94.746094, 49.037868 ], [ -94.746094, 49.382373 ], [ -95.097656, 49.382373 ], [ -95.097656, 49.037868 ], [ -123.222656, 49.037868 ], [ -123.222656, 49.152970 ], [ -123.574219, 49.152970 ], [ -123.574219, 49.267805 ], [ -123.750000, 49.267805 ], [ -123.750000, 49.382373 ], [ -123.925781, 49.382373 ], [ -123.925781, 49.496675 ], [ -124.277344, 49.496675 ], [ -124.277344, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.724479 ], [ -124.628906, 49.724479 ], [ -124.628906, 49.837982 ], [ -124.980469, 49.837982 ], [ -124.980469, 49.951220 ], [ -125.156250, 49.951220 ], [ -125.156250, 50.064192 ], [ -125.332031, 50.064192 ], [ -125.332031, 50.176898 ], [ -125.507812, 50.176898 ], [ -125.507812, 50.289339 ], [ -125.683594, 50.289339 ], [ -125.683594, 50.401515 ], [ -126.035156, 50.401515 ], [ -126.035156, 50.513427 ], [ -126.386719, 50.513427 ], [ -126.386719, 50.625073 ], [ -126.914062, 50.625073 ], [ -126.914062, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.847573 ], [ -127.441406, 50.847573 ], [ -127.441406, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.289406 ], [ -127.792969, 51.289406 ], [ -127.792969, 51.508742 ], [ -127.968750, 51.508742 ], [ -127.968750, 52.052490 ], [ -127.792969, 52.052490 ], [ -127.792969, 52.375599 ], [ -128.144531, 52.375599 ], [ -128.144531, 52.482780 ], [ -128.496094, 52.482780 ], [ -128.496094, 52.589701 ], [ -128.847656, 52.589701 ], [ -128.847656, 52.696361 ], [ -129.199219, 52.696361 ], [ -129.199219, 53.120405 ], [ -129.375000, 53.120405 ], [ -129.375000, 53.540307 ], [ -129.550781, 53.540307 ], [ -129.550781, 53.644638 ], [ -129.726562, 53.644638 ], [ -129.726562, 53.748711 ], [ -129.902344, 53.748711 ], [ -129.902344, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.059388 ], [ -130.253906, 54.059388 ], [ -130.253906, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.470038 ], [ -130.605469, 54.470038 ], [ -130.605469, 54.775346 ], [ -130.429688, 54.775346 ], [ -130.429688, 54.876607 ], [ -130.253906, 54.876607 ], [ -130.253906, 55.078367 ], [ -130.078125, 55.078367 ], [ -130.078125, 55.178868 ], [ -129.902344, 55.178868 ], [ -129.902344, 55.578345 ], [ -130.078125, 55.578345 ], [ -130.078125, 55.875311 ], [ -130.253906, 55.875311 ], [ -130.253906, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.072035 ], [ -130.781250, 56.072035 ], [ -130.781250, 56.170023 ], [ -130.957031, 56.170023 ], [ -130.957031, 56.267761 ], [ -131.132812, 56.267761 ], [ -131.132812, 56.365250 ], [ -131.484375, 56.365250 ], [ -131.484375, 56.462490 ], [ -131.660156, 56.462490 ], [ -131.660156, 56.656226 ], [ -131.835938, 56.656226 ], [ -131.835938, 56.848972 ], [ -132.011719, 56.848972 ], [ -132.011719, 57.040730 ], [ -132.187500, 57.040730 ], [ -132.187500, 57.231503 ], [ -132.363281, 57.231503 ], [ -132.363281, 57.421294 ], [ -132.539062, 57.421294 ], [ -132.539062, 57.610107 ], [ -132.714844, 57.610107 ], [ -132.714844, 57.797944 ], [ -132.890625, 57.797944 ], [ -132.890625, 57.984808 ], [ -133.066406, 57.984808 ], [ -133.066406, 58.170702 ], [ -133.242188, 58.170702 ], [ -133.242188, 58.355630 ], [ -133.417969, 58.355630 ], [ -133.417969, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.539595 ], [ -133.769531, 58.539595 ], [ -133.769531, 58.631217 ], [ -133.945312, 58.631217 ], [ -133.945312, 58.722599 ], [ -134.121094, 58.722599 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.085739 ], [ -134.824219, 59.085739 ], [ -134.824219, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.623325 ], [ -135.878906, 59.623325 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.144531, 50.736455 ], [ -128.144531, 50.625073 ], [ -127.617188, 50.625073 ], [ -127.617188, 50.513427 ], [ -127.089844, 50.513427 ], [ -127.089844, 50.401515 ], [ -126.386719, 50.401515 ], [ -126.386719, 50.289339 ], [ -125.683594, 50.289339 ], [ -125.683594, 50.176898 ], [ -125.507812, 50.176898 ], [ -125.507812, 49.951220 ], [ -125.332031, 49.951220 ], [ -125.332031, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 49.610710 ], [ -124.980469, 49.610710 ], [ -124.980469, 49.382373 ], [ -124.628906, 49.382373 ], [ -124.628906, 49.267805 ], [ -124.453125, 49.267805 ], [ -124.453125, 49.152970 ], [ -124.101562, 49.152970 ], [ -124.101562, 49.037868 ], [ -123.925781, 49.037868 ], [ -123.925781, 48.806863 ], [ -123.750000, 48.806863 ], [ -123.750000, 48.574790 ], [ -123.574219, 48.574790 ], [ -123.574219, 48.341646 ], [ -124.277344, 48.341646 ], [ -124.277344, 48.458352 ], [ -124.628906, 48.458352 ], [ -124.628906, 48.574790 ], [ -125.156250, 48.574790 ], [ -125.156250, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.806863 ], [ -125.859375, 48.806863 ], [ -125.859375, 49.037868 ], [ -126.035156, 49.037868 ], [ -126.035156, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.267805 ], [ -126.562500, 49.267805 ], [ -126.562500, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.610710 ], [ -127.089844, 49.610710 ], [ -127.089844, 49.837982 ], [ -127.792969, 49.837982 ], [ -127.792969, 49.951220 ], [ -128.144531, 49.951220 ], [ -128.144531, 50.064192 ], [ -128.320312, 50.064192 ], [ -128.320312, 50.289339 ], [ -128.496094, 50.289339 ], [ -128.496094, 50.625073 ], [ -128.320312, 50.625073 ], [ -128.320312, 50.736455 ], [ -128.144531, 50.736455 ] ] ], [ [ [ -131.835938, 54.162434 ], [ -131.835938, 53.540307 ], [ -132.011719, 53.540307 ], [ -132.011719, 52.908902 ], [ -131.835938, 52.908902 ], [ -131.835938, 52.696361 ], [ -131.660156, 52.696361 ], [ -131.660156, 52.589701 ], [ -131.484375, 52.589701 ], [ -131.484375, 52.375599 ], [ -131.308594, 52.375599 ], [ -131.308594, 52.160455 ], [ -131.835938, 52.160455 ], [ -131.835938, 52.375599 ], [ -132.011719, 52.375599 ], [ -132.011719, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -132.363281, 52.696361 ], [ -132.363281, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.120405 ], [ -132.714844, 53.120405 ], [ -132.714844, 53.225768 ], [ -132.890625, 53.225768 ], [ -132.890625, 53.330873 ], [ -133.066406, 53.330873 ], [ -133.066406, 53.644638 ], [ -133.242188, 53.644638 ], [ -133.242188, 54.162434 ], [ -133.066406, 54.162434 ], [ -133.066406, 54.059388 ], [ -132.187500, 54.059388 ], [ -132.187500, 54.162434 ], [ -131.835938, 54.162434 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.570312, 48.690960 ], [ -94.218750, 48.690960 ], [ -94.218750, 48.574790 ], [ -93.339844, 48.574790 ], [ -93.339844, 48.458352 ], [ -92.636719, 48.458352 ], [ -92.636719, 48.341646 ], [ -92.285156, 48.341646 ], [ -92.285156, 48.224673 ], [ -91.933594, 48.224673 ], [ -91.933594, 48.107431 ], [ -91.054688, 48.107431 ], [ -91.054688, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 47.989922 ], [ -89.121094, 47.989922 ], [ -89.121094, 40.313043 ], [ -124.453125, 40.313043 ], [ -124.453125, 40.446947 ], [ -124.277344, 40.446947 ], [ -124.277344, 40.847060 ], [ -124.101562, 40.847060 ], [ -124.101562, 41.508577 ], [ -124.277344, 41.508577 ], [ -124.277344, 42.423457 ], [ -124.453125, 42.423457 ], [ -124.453125, 42.940339 ], [ -124.277344, 42.940339 ], [ -124.277344, 43.452919 ], [ -124.101562, 43.452919 ], [ -124.101562, 45.089036 ], [ -123.925781, 45.089036 ], [ -123.925781, 46.195042 ], [ -124.101562, 46.195042 ], [ -124.101562, 47.040182 ], [ -124.277344, 47.040182 ], [ -124.277344, 47.517201 ], [ -124.453125, 47.517201 ], [ -124.453125, 47.989922 ], [ -124.628906, 47.989922 ], [ -124.628906, 48.341646 ], [ -124.453125, 48.341646 ], [ -124.453125, 48.224673 ], [ -123.925781, 48.224673 ], [ -123.925781, 48.107431 ], [ -123.398438, 48.107431 ], [ -123.398438, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.754098 ], [ -122.871094, 47.754098 ], [ -122.871094, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.159840 ], [ -122.343750, 47.159840 ], [ -122.343750, 47.754098 ], [ -122.519531, 47.754098 ], [ -122.519531, 48.341646 ], [ -122.695312, 48.341646 ], [ -122.695312, 48.806863 ], [ -122.871094, 48.806863 ], [ -122.871094, 49.037868 ], [ -95.097656, 49.037868 ], [ -95.097656, 49.382373 ], [ -94.746094, 49.382373 ], [ -94.746094, 49.037868 ], [ -94.570312, 49.037868 ], [ -94.570312, 48.690960 ] ] ], [ [ [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.085739 ], [ -134.648438, 59.085739 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.722599 ], [ -133.945312, 58.722599 ], [ -133.945312, 58.631217 ], [ -133.769531, 58.631217 ], [ -133.769531, 58.539595 ], [ -133.593750, 58.539595 ], [ -133.593750, 58.447733 ], [ -133.417969, 58.447733 ], [ -133.417969, 58.355630 ], [ -133.242188, 58.355630 ], [ -133.242188, 58.170702 ], [ -133.066406, 58.170702 ], [ -133.066406, 57.984808 ], [ -132.890625, 57.984808 ], [ -132.890625, 57.797944 ], [ -132.714844, 57.797944 ], [ -132.714844, 57.610107 ], [ -132.539062, 57.610107 ], [ -132.539062, 57.421294 ], [ -132.363281, 57.421294 ], [ -132.363281, 57.231503 ], [ -132.187500, 57.231503 ], [ -132.187500, 57.040730 ], [ -132.011719, 57.040730 ], [ -132.011719, 56.848972 ], [ -131.835938, 56.848972 ], [ -131.835938, 56.656226 ], [ -131.660156, 56.656226 ], [ -131.660156, 56.462490 ], [ -131.484375, 56.462490 ], [ -131.484375, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.267761 ], [ -130.957031, 56.267761 ], [ -130.957031, 56.170023 ], [ -130.781250, 56.170023 ], [ -130.781250, 56.072035 ], [ -130.429688, 56.072035 ], [ -130.429688, 55.973798 ], [ -130.253906, 55.973798 ], [ -130.253906, 55.875311 ], [ -130.078125, 55.875311 ], [ -130.078125, 55.578345 ], [ -129.902344, 55.578345 ], [ -129.902344, 55.178868 ], [ -130.078125, 55.178868 ], [ -130.078125, 55.078367 ], [ -130.253906, 55.078367 ], [ -130.253906, 54.876607 ], [ -130.429688, 54.876607 ], [ -130.429688, 54.775346 ], [ -130.781250, 54.775346 ], [ -130.781250, 54.977614 ], [ -130.957031, 54.977614 ], [ -130.957031, 55.078367 ], [ -131.132812, 55.078367 ], [ -131.132812, 55.178868 ], [ -131.308594, 55.178868 ], [ -131.308594, 55.279115 ], [ -131.660156, 55.279115 ], [ -131.660156, 55.379110 ], [ -132.011719, 55.379110 ], [ -132.011719, 55.875311 ], [ -132.187500, 55.875311 ], [ -132.187500, 56.365250 ], [ -132.363281, 56.365250 ], [ -132.363281, 56.462490 ], [ -132.539062, 56.462490 ], [ -132.539062, 56.559482 ], [ -132.714844, 56.559482 ], [ -132.714844, 56.656226 ], [ -132.890625, 56.656226 ], [ -132.890625, 56.752723 ], [ -133.066406, 56.752723 ], [ -133.066406, 56.848972 ], [ -133.242188, 56.848972 ], [ -133.242188, 56.944974 ], [ -133.417969, 56.944974 ], [ -133.417969, 57.040730 ], [ -133.593750, 57.040730 ], [ -133.593750, 57.231503 ], [ -133.769531, 57.231503 ], [ -133.769531, 57.610107 ], [ -133.945312, 57.610107 ], [ -133.945312, 57.891497 ], [ -134.121094, 57.891497 ], [ -134.121094, 58.077876 ], [ -134.648438, 58.077876 ], [ -134.648438, 58.170702 ], [ -135.878906, 58.170702 ], [ -135.878906, 59.623325 ], [ -135.703125, 59.623325 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.746094, 49.382373 ], [ -94.746094, 49.037868 ], [ -94.570312, 49.037868 ], [ -94.570312, 48.690960 ], [ -94.218750, 48.690960 ], [ -94.218750, 48.574790 ], [ -93.339844, 48.574790 ], [ -93.339844, 48.458352 ], [ -92.636719, 48.458352 ], [ -92.636719, 48.341646 ], [ -92.285156, 48.341646 ], [ -92.285156, 48.224673 ], [ -91.933594, 48.224673 ], [ -91.933594, 48.107431 ], [ -91.054688, 48.107431 ], [ -91.054688, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 47.989922 ], [ -89.121094, 47.989922 ], [ -89.121094, 40.313043 ], [ -124.453125, 40.313043 ], [ -124.453125, 40.446947 ], [ -124.277344, 40.446947 ], [ -124.277344, 40.847060 ], [ -124.101562, 40.847060 ], [ -124.101562, 41.508577 ], [ -124.277344, 41.508577 ], [ -124.277344, 42.423457 ], [ -124.453125, 42.423457 ], [ -124.453125, 42.940339 ], [ -124.277344, 42.940339 ], [ -124.277344, 43.452919 ], [ -124.101562, 43.452919 ], [ -124.101562, 45.089036 ], [ -123.925781, 45.089036 ], [ -123.925781, 46.195042 ], [ -124.101562, 46.195042 ], [ -124.101562, 47.040182 ], [ -124.277344, 47.040182 ], [ -124.277344, 47.517201 ], [ -124.453125, 47.517201 ], [ -124.453125, 47.989922 ], [ -124.628906, 47.989922 ], [ -124.628906, 48.341646 ], [ -124.453125, 48.341646 ], [ -124.453125, 48.224673 ], [ -123.925781, 48.224673 ], [ -123.925781, 48.107431 ], [ -123.398438, 48.107431 ], [ -123.398438, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.754098 ], [ -122.871094, 47.754098 ], [ -122.871094, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.159840 ], [ -122.343750, 47.159840 ], [ -122.343750, 47.754098 ], [ -122.519531, 47.754098 ], [ -122.519531, 48.341646 ], [ -122.695312, 48.341646 ], [ -122.695312, 48.806863 ], [ -122.871094, 48.806863 ], [ -122.871094, 49.037868 ], [ -95.097656, 49.037868 ], [ -95.097656, 49.382373 ], [ -94.746094, 49.382373 ] ] ], [ [ [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.085739 ], [ -134.648438, 59.085739 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.722599 ], [ -133.945312, 58.722599 ], [ -133.945312, 58.631217 ], [ -133.769531, 58.631217 ], [ -133.769531, 58.539595 ], [ -133.593750, 58.539595 ], [ -133.593750, 58.447733 ], [ -133.417969, 58.447733 ], [ -133.417969, 58.355630 ], [ -133.242188, 58.355630 ], [ -133.242188, 58.170702 ], [ -133.066406, 58.170702 ], [ -133.066406, 57.984808 ], [ -132.890625, 57.984808 ], [ -132.890625, 57.797944 ], [ -132.714844, 57.797944 ], [ -132.714844, 57.610107 ], [ -132.539062, 57.610107 ], [ -132.539062, 57.421294 ], [ -132.363281, 57.421294 ], [ -132.363281, 57.231503 ], [ -132.187500, 57.231503 ], [ -132.187500, 57.040730 ], [ -132.011719, 57.040730 ], [ -132.011719, 56.848972 ], [ -131.835938, 56.848972 ], [ -131.835938, 56.656226 ], [ -131.660156, 56.656226 ], [ -131.660156, 56.462490 ], [ -131.484375, 56.462490 ], [ -131.484375, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.267761 ], [ -130.957031, 56.267761 ], [ -130.957031, 56.170023 ], [ -130.781250, 56.170023 ], [ -130.781250, 56.072035 ], [ -130.429688, 56.072035 ], [ -130.429688, 55.973798 ], [ -130.253906, 55.973798 ], [ -130.253906, 55.875311 ], [ -130.078125, 55.875311 ], [ -130.078125, 55.578345 ], [ -129.902344, 55.578345 ], [ -129.902344, 55.178868 ], [ -130.078125, 55.178868 ], [ -130.078125, 55.078367 ], [ -130.253906, 55.078367 ], [ -130.253906, 54.876607 ], [ -130.429688, 54.876607 ], [ -130.429688, 54.775346 ], [ -130.781250, 54.775346 ], [ -130.781250, 54.977614 ], [ -130.957031, 54.977614 ], [ -130.957031, 55.078367 ], [ -131.132812, 55.078367 ], [ -131.132812, 55.178868 ], [ -131.308594, 55.178868 ], [ -131.308594, 55.279115 ], [ -131.660156, 55.279115 ], [ -131.660156, 55.379110 ], [ -132.011719, 55.379110 ], [ -132.011719, 55.875311 ], [ -132.187500, 55.875311 ], [ -132.187500, 56.365250 ], [ -132.363281, 56.365250 ], [ -132.363281, 56.462490 ], [ -132.539062, 56.462490 ], [ -132.539062, 56.559482 ], [ -132.714844, 56.559482 ], [ -132.714844, 56.656226 ], [ -132.890625, 56.656226 ], [ -132.890625, 56.752723 ], [ -133.066406, 56.752723 ], [ -133.066406, 56.848972 ], [ -133.242188, 56.848972 ], [ -133.242188, 56.944974 ], [ -133.417969, 56.944974 ], [ -133.417969, 57.040730 ], [ -133.593750, 57.040730 ], [ -133.593750, 57.231503 ], [ -133.769531, 57.231503 ], [ -133.769531, 57.610107 ], [ -133.945312, 57.610107 ], [ -133.945312, 57.891497 ], [ -134.121094, 57.891497 ], [ -134.121094, 58.077876 ], [ -134.648438, 58.077876 ], [ -134.648438, 58.170702 ], [ -135.878906, 58.170702 ], [ -135.878906, 59.623325 ], [ -135.703125, 59.623325 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.113281, 74.354828 ], [ -120.761719, 74.354828 ], [ -120.761719, 74.307353 ], [ -120.410156, 74.307353 ], [ -120.410156, 74.259738 ], [ -119.531250, 74.259738 ], [ -119.531250, 74.211983 ], [ -118.300781, 74.211983 ], [ -118.300781, 74.164085 ], [ -117.597656, 74.164085 ], [ -117.597656, 74.116047 ], [ -117.421875, 74.116047 ], [ -117.421875, 74.067866 ], [ -117.246094, 74.067866 ], [ -117.246094, 74.019543 ], [ -117.070312, 74.019543 ], [ -117.070312, 73.971078 ], [ -116.894531, 73.971078 ], [ -116.894531, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.873717 ], [ -116.542969, 73.873717 ], [ -116.542969, 73.824820 ], [ -116.367188, 73.824820 ], [ -116.367188, 73.775780 ], [ -116.191406, 73.775780 ], [ -116.191406, 73.677264 ], [ -116.015625, 73.677264 ], [ -116.015625, 73.627789 ], [ -115.839844, 73.627789 ], [ -115.839844, 73.578167 ], [ -115.664062, 73.578167 ], [ -115.664062, 73.478485 ], [ -115.488281, 73.478485 ], [ -115.488281, 73.428424 ], [ -115.839844, 73.428424 ], [ -115.839844, 73.378215 ], [ -116.015625, 73.378215 ], [ -116.015625, 73.327858 ], [ -116.191406, 73.327858 ], [ -116.191406, 73.277353 ], [ -124.453125, 73.277353 ], [ -124.453125, 73.327858 ], [ -124.277344, 73.327858 ], [ -124.277344, 73.478485 ], [ -124.101562, 73.478485 ], [ -124.101562, 73.578167 ], [ -123.925781, 73.578167 ], [ -123.925781, 73.726595 ], [ -124.101562, 73.726595 ], [ -124.101562, 73.824820 ], [ -124.277344, 73.824820 ], [ -124.277344, 73.922469 ], [ -124.453125, 73.922469 ], [ -124.453125, 74.019543 ], [ -124.628906, 74.019543 ], [ -124.628906, 74.116047 ], [ -124.804688, 74.116047 ], [ -124.804688, 74.211983 ], [ -124.980469, 74.211983 ], [ -124.980469, 74.307353 ], [ -124.277344, 74.307353 ], [ -124.277344, 74.354828 ], [ -123.046875, 74.354828 ], [ -123.046875, 74.402163 ], [ -121.992188, 74.402163 ], [ -121.992188, 74.449358 ], [ -121.464844, 74.449358 ], [ -121.464844, 74.402163 ], [ -121.113281, 74.402163 ], [ -121.113281, 74.354828 ] ] ], [ [ [ -108.632812, 76.557743 ], [ -108.457031, 76.557743 ], [ -108.457031, 76.310358 ], [ -108.281250, 76.310358 ], [ -108.281250, 76.100796 ], [ -108.105469, 76.100796 ], [ -108.105469, 76.016094 ], [ -107.929688, 76.016094 ], [ -107.929688, 75.888091 ], [ -107.753906, 75.888091 ], [ -107.753906, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 75.888091 ], [ -107.402344, 75.888091 ], [ -107.402344, 75.930885 ], [ -107.050781, 75.930885 ], [ -107.050781, 75.973553 ], [ -106.875000, 75.973553 ], [ -106.875000, 74.959392 ], [ -107.929688, 74.959392 ], [ -107.929688, 74.913708 ], [ -108.984375, 74.913708 ], [ -108.984375, 74.867889 ], [ -109.687500, 74.867889 ], [ -109.687500, 74.821934 ], [ -110.039062, 74.821934 ], [ -110.039062, 74.775843 ], [ -110.214844, 74.775843 ], [ -110.214844, 74.729615 ], [ -110.390625, 74.729615 ], [ -110.390625, 74.683250 ], [ -110.742188, 74.683250 ], [ -110.742188, 74.636748 ], [ -110.917969, 74.636748 ], [ -110.917969, 74.590108 ], [ -111.269531, 74.590108 ], [ -111.269531, 74.543330 ], [ -111.445312, 74.543330 ], [ -111.445312, 74.496413 ], [ -111.621094, 74.496413 ], [ -111.621094, 74.449358 ], [ -111.972656, 74.449358 ], [ -111.972656, 74.402163 ], [ -113.730469, 74.402163 ], [ -113.730469, 74.543330 ], [ -113.906250, 74.543330 ], [ -113.906250, 74.729615 ], [ -113.730469, 74.729615 ], [ -113.730469, 74.775843 ], [ -113.378906, 74.775843 ], [ -113.378906, 74.821934 ], [ -113.203125, 74.821934 ], [ -113.203125, 74.867889 ], [ -113.027344, 74.867889 ], [ -113.027344, 74.913708 ], [ -112.675781, 74.913708 ], [ -112.675781, 74.959392 ], [ -112.500000, 74.959392 ], [ -112.500000, 75.004940 ], [ -112.324219, 75.004940 ], [ -112.324219, 75.050354 ], [ -111.972656, 75.050354 ], [ -111.972656, 75.095633 ], [ -111.796875, 75.095633 ], [ -111.796875, 75.140778 ], [ -112.851562, 75.140778 ], [ -112.851562, 75.095633 ], [ -115.136719, 75.095633 ], [ -115.136719, 75.050354 ], [ -116.718750, 75.050354 ], [ -116.718750, 75.095633 ], [ -117.070312, 75.095633 ], [ -117.070312, 75.140778 ], [ -117.421875, 75.140778 ], [ -117.421875, 75.185789 ], [ -117.773438, 75.185789 ], [ -117.773438, 75.275413 ], [ -117.597656, 75.275413 ], [ -117.597656, 75.408854 ], [ -117.421875, 75.408854 ], [ -117.421875, 75.497157 ], [ -117.246094, 75.497157 ], [ -117.246094, 75.628632 ], [ -117.070312, 75.628632 ], [ -117.070312, 75.758940 ], [ -116.894531, 75.758940 ], [ -116.894531, 75.888091 ], [ -116.718750, 75.888091 ], [ -116.718750, 75.973553 ], [ -116.542969, 75.973553 ], [ -116.542969, 76.100796 ], [ -116.367188, 76.100796 ], [ -116.367188, 76.184995 ], [ -116.191406, 76.184995 ], [ -116.191406, 76.268695 ], [ -116.015625, 76.268695 ], [ -116.015625, 76.310358 ], [ -115.839844, 76.310358 ], [ -115.839844, 76.351896 ], [ -115.664062, 76.351896 ], [ -115.664062, 76.434604 ], [ -115.136719, 76.434604 ], [ -115.136719, 76.393312 ], [ -114.785156, 76.393312 ], [ -114.785156, 76.351896 ], [ -114.433594, 76.351896 ], [ -114.433594, 76.310358 ], [ -114.082031, 76.310358 ], [ -114.082031, 76.268695 ], [ -113.730469, 76.268695 ], [ -113.730469, 76.226907 ], [ -113.378906, 76.226907 ], [ -113.378906, 76.184995 ], [ -113.027344, 76.184995 ], [ -113.027344, 76.142958 ], [ -112.675781, 76.142958 ], [ -112.675781, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 76.058508 ], [ -112.324219, 76.058508 ], [ -112.324219, 75.973553 ], [ -112.148438, 75.973553 ], [ -112.148438, 75.930885 ], [ -111.972656, 75.930885 ], [ -111.972656, 75.888091 ], [ -111.796875, 75.888091 ], [ -111.796875, 75.845169 ], [ -111.621094, 75.845169 ], [ -111.621094, 75.758940 ], [ -111.445312, 75.758940 ], [ -111.445312, 75.715633 ], [ -111.269531, 75.715633 ], [ -111.269531, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.584937 ], [ -110.917969, 75.584937 ], [ -110.917969, 75.541113 ], [ -110.390625, 75.541113 ], [ -110.390625, 75.497157 ], [ -109.511719, 75.497157 ], [ -109.511719, 75.453071 ], [ -108.984375, 75.453071 ], [ -108.984375, 75.497157 ], [ -109.160156, 75.497157 ], [ -109.160156, 75.584937 ], [ -109.335938, 75.584937 ], [ -109.335938, 75.715633 ], [ -109.511719, 75.715633 ], [ -109.511719, 75.802118 ], [ -109.687500, 75.802118 ], [ -109.687500, 75.930885 ], [ -109.863281, 75.930885 ], [ -109.863281, 76.058508 ], [ -110.039062, 76.058508 ], [ -110.039062, 76.142958 ], [ -110.214844, 76.142958 ], [ -110.214844, 76.268695 ], [ -110.390625, 76.268695 ], [ -110.390625, 76.351896 ], [ -110.566406, 76.351896 ], [ -110.566406, 76.434604 ], [ -110.390625, 76.434604 ], [ -110.390625, 76.516819 ], [ -110.214844, 76.516819 ], [ -110.214844, 76.557743 ], [ -110.039062, 76.557743 ], [ -110.039062, 76.639226 ], [ -109.863281, 76.639226 ], [ -109.863281, 76.679785 ], [ -109.687500, 76.679785 ], [ -109.687500, 76.760541 ], [ -109.160156, 76.760541 ], [ -109.160156, 76.720223 ], [ -108.808594, 76.720223 ], [ -108.808594, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.557743 ] ] ], [ [ [ -116.191406, 77.273855 ], [ -116.367188, 77.273855 ], [ -116.367188, 76.800739 ], [ -116.542969, 76.800739 ], [ -116.542969, 76.720223 ], [ -116.718750, 76.720223 ], [ -116.718750, 76.639226 ], [ -116.894531, 76.639226 ], [ -116.894531, 76.557743 ], [ -117.070312, 76.557743 ], [ -117.070312, 76.516819 ], [ -117.421875, 76.516819 ], [ -117.421875, 76.475773 ], [ -118.125000, 76.475773 ], [ -118.125000, 76.434604 ], [ -118.300781, 76.434604 ], [ -118.300781, 76.393312 ], [ -118.476562, 76.393312 ], [ -118.476562, 76.351896 ], [ -118.652344, 76.351896 ], [ -118.652344, 76.310358 ], [ -118.828125, 76.310358 ], [ -118.828125, 76.268695 ], [ -119.003906, 76.268695 ], [ -119.003906, 76.226907 ], [ -119.179688, 76.226907 ], [ -119.179688, 76.184995 ], [ -119.355469, 76.184995 ], [ -119.355469, 76.142958 ], [ -119.531250, 76.142958 ], [ -119.531250, 76.100796 ], [ -119.707031, 76.100796 ], [ -119.707031, 76.058508 ], [ -120.058594, 76.058508 ], [ -120.058594, 76.016094 ], [ -120.410156, 76.016094 ], [ -120.410156, 75.973553 ], [ -120.761719, 75.973553 ], [ -120.761719, 75.930885 ], [ -121.113281, 75.930885 ], [ -121.113281, 75.888091 ], [ -121.640625, 75.888091 ], [ -121.640625, 75.930885 ], [ -121.992188, 75.930885 ], [ -121.992188, 75.973553 ], [ -122.343750, 75.973553 ], [ -122.343750, 76.016094 ], [ -122.519531, 76.016094 ], [ -122.519531, 76.058508 ], [ -122.871094, 76.058508 ], [ -122.871094, 76.100796 ], [ -122.695312, 76.100796 ], [ -122.695312, 76.184995 ], [ -122.519531, 76.184995 ], [ -122.519531, 76.268695 ], [ -122.343750, 76.268695 ], [ -122.343750, 76.351896 ], [ -122.167969, 76.351896 ], [ -122.167969, 76.434604 ], [ -121.992188, 76.434604 ], [ -121.992188, 76.516819 ], [ -121.816406, 76.516819 ], [ -121.816406, 76.598545 ], [ -121.640625, 76.598545 ], [ -121.640625, 76.679785 ], [ -121.464844, 76.679785 ], [ -121.464844, 76.760541 ], [ -121.289062, 76.760541 ], [ -121.289062, 76.840816 ], [ -121.113281, 76.840816 ], [ -121.113281, 76.880775 ], [ -120.937500, 76.880775 ], [ -120.937500, 76.960334 ], [ -120.761719, 76.960334 ], [ -120.761719, 76.999935 ], [ -120.585938, 76.999935 ], [ -120.585938, 77.078784 ], [ -120.410156, 77.078784 ], [ -120.410156, 77.118032 ], [ -120.234375, 77.118032 ], [ -120.234375, 77.196176 ], [ -120.058594, 77.196176 ], [ -120.058594, 77.235074 ], [ -119.882812, 77.235074 ], [ -119.882812, 77.273855 ], [ -119.707031, 77.273855 ], [ -119.707031, 77.351070 ], [ -119.531250, 77.351070 ], [ -119.531250, 77.389504 ], [ -119.355469, 77.389504 ], [ -119.355469, 77.466028 ], [ -119.179688, 77.466028 ], [ -119.179688, 77.504119 ], [ -117.246094, 77.504119 ], [ -117.246094, 77.542096 ], [ -116.894531, 77.542096 ], [ -116.894531, 77.579959 ], [ -116.542969, 77.579959 ], [ -116.542969, 77.617709 ], [ -116.191406, 77.617709 ], [ -116.191406, 77.273855 ] ] ], [ [ [ -110.917969, 78.098296 ], [ -110.742188, 78.098296 ], [ -110.742188, 78.061989 ], [ -110.390625, 78.061989 ], [ -110.390625, 78.025574 ], [ -110.039062, 78.025574 ], [ -110.039062, 77.989049 ], [ -109.863281, 77.989049 ], [ -109.863281, 77.915669 ], [ -110.039062, 77.915669 ], [ -110.039062, 77.767582 ], [ -110.214844, 77.767582 ], [ -110.214844, 77.655346 ], [ -110.566406, 77.655346 ], [ -110.566406, 77.617709 ], [ -110.742188, 77.617709 ], [ -110.742188, 77.579959 ], [ -110.917969, 77.579959 ], [ -110.917969, 77.542096 ], [ -111.269531, 77.542096 ], [ -111.269531, 77.504119 ], [ -111.445312, 77.504119 ], [ -111.445312, 77.466028 ], [ -111.796875, 77.466028 ], [ -111.796875, 77.427824 ], [ -112.148438, 77.427824 ], [ -112.148438, 77.466028 ], [ -112.324219, 77.466028 ], [ -112.324219, 77.504119 ], [ -112.500000, 77.504119 ], [ -112.500000, 77.542096 ], [ -112.675781, 77.542096 ], [ -112.675781, 77.579959 ], [ -113.027344, 77.579959 ], [ -113.027344, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.655346 ], [ -113.378906, 77.655346 ], [ -113.378906, 77.692870 ], [ -113.554688, 77.692870 ], [ -113.554688, 77.730282 ], [ -113.378906, 77.730282 ], [ -113.378906, 77.804771 ], [ -113.203125, 77.804771 ], [ -113.203125, 77.878814 ], [ -113.027344, 77.878814 ], [ -113.027344, 77.952414 ], [ -112.851562, 77.952414 ], [ -112.851562, 78.025574 ], [ -112.675781, 78.025574 ], [ -112.675781, 78.061989 ], [ -112.324219, 78.061989 ], [ -112.324219, 78.098296 ], [ -111.796875, 78.098296 ], [ -111.796875, 78.134493 ], [ -111.445312, 78.134493 ], [ -111.445312, 78.170582 ], [ -111.269531, 78.170582 ], [ -111.269531, 78.134493 ], [ -110.917969, 78.134493 ], [ -110.917969, 78.098296 ] ] ], [ [ [ -110.917969, 78.767792 ], [ -110.742188, 78.767792 ], [ -110.742188, 78.733501 ], [ -110.566406, 78.733501 ], [ -110.566406, 78.699106 ], [ -110.214844, 78.699106 ], [ -110.214844, 78.664608 ], [ -110.039062, 78.664608 ], [ -110.039062, 78.630006 ], [ -109.863281, 78.630006 ], [ -109.863281, 78.595299 ], [ -109.687500, 78.595299 ], [ -109.687500, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.525573 ], [ -110.214844, 78.525573 ], [ -110.214844, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.455425 ], [ -110.742188, 78.455425 ], [ -110.742188, 78.420193 ], [ -112.500000, 78.420193 ], [ -112.500000, 78.560488 ], [ -112.324219, 78.560488 ], [ -112.324219, 78.630006 ], [ -112.148438, 78.630006 ], [ -112.148438, 78.664608 ], [ -111.972656, 78.664608 ], [ -111.972656, 78.699106 ], [ -111.796875, 78.699106 ], [ -111.796875, 78.767792 ], [ -111.621094, 78.767792 ], [ -111.621094, 78.801980 ], [ -111.445312, 78.801980 ], [ -111.445312, 78.836065 ], [ -111.269531, 78.836065 ], [ -111.269531, 78.801980 ], [ -110.917969, 78.801980 ], [ -110.917969, 78.767792 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.464844, 74.449358 ], [ -121.464844, 74.402163 ], [ -121.113281, 74.402163 ], [ -121.113281, 74.354828 ], [ -120.761719, 74.354828 ], [ -120.761719, 74.307353 ], [ -120.410156, 74.307353 ], [ -120.410156, 74.259738 ], [ -119.531250, 74.259738 ], [ -119.531250, 74.211983 ], [ -118.300781, 74.211983 ], [ -118.300781, 74.164085 ], [ -117.597656, 74.164085 ], [ -117.597656, 74.116047 ], [ -117.421875, 74.116047 ], [ -117.421875, 74.067866 ], [ -117.246094, 74.067866 ], [ -117.246094, 74.019543 ], [ -117.070312, 74.019543 ], [ -117.070312, 73.971078 ], [ -116.894531, 73.971078 ], [ -116.894531, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.873717 ], [ -116.542969, 73.873717 ], [ -116.542969, 73.824820 ], [ -116.367188, 73.824820 ], [ -116.367188, 73.775780 ], [ -116.191406, 73.775780 ], [ -116.191406, 73.677264 ], [ -116.015625, 73.677264 ], [ -116.015625, 73.627789 ], [ -115.839844, 73.627789 ], [ -115.839844, 73.578167 ], [ -115.664062, 73.578167 ], [ -115.664062, 73.478485 ], [ -115.488281, 73.478485 ], [ -115.488281, 73.428424 ], [ -115.839844, 73.428424 ], [ -115.839844, 73.378215 ], [ -116.015625, 73.378215 ], [ -116.015625, 73.327858 ], [ -116.191406, 73.327858 ], [ -116.191406, 73.277353 ], [ -124.453125, 73.277353 ], [ -124.453125, 73.327858 ], [ -124.277344, 73.327858 ], [ -124.277344, 73.478485 ], [ -124.101562, 73.478485 ], [ -124.101562, 73.578167 ], [ -123.925781, 73.578167 ], [ -123.925781, 73.726595 ], [ -124.101562, 73.726595 ], [ -124.101562, 73.824820 ], [ -124.277344, 73.824820 ], [ -124.277344, 73.922469 ], [ -124.453125, 73.922469 ], [ -124.453125, 74.019543 ], [ -124.628906, 74.019543 ], [ -124.628906, 74.116047 ], [ -124.804688, 74.116047 ], [ -124.804688, 74.211983 ], [ -124.980469, 74.211983 ], [ -124.980469, 74.307353 ], [ -124.277344, 74.307353 ], [ -124.277344, 74.354828 ], [ -123.046875, 74.354828 ], [ -123.046875, 74.402163 ], [ -121.992188, 74.402163 ], [ -121.992188, 74.449358 ], [ -121.464844, 74.449358 ] ] ], [ [ [ -109.160156, 76.760541 ], [ -109.160156, 76.720223 ], [ -108.808594, 76.720223 ], [ -108.808594, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.557743 ], [ -108.457031, 76.557743 ], [ -108.457031, 76.310358 ], [ -108.281250, 76.310358 ], [ -108.281250, 76.100796 ], [ -108.105469, 76.100796 ], [ -108.105469, 76.016094 ], [ -107.929688, 76.016094 ], [ -107.929688, 75.888091 ], [ -107.753906, 75.888091 ], [ -107.753906, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 75.888091 ], [ -107.402344, 75.888091 ], [ -107.402344, 75.930885 ], [ -107.050781, 75.930885 ], [ -107.050781, 75.973553 ], [ -106.875000, 75.973553 ], [ -106.875000, 74.959392 ], [ -107.929688, 74.959392 ], [ -107.929688, 74.913708 ], [ -108.984375, 74.913708 ], [ -108.984375, 74.867889 ], [ -109.687500, 74.867889 ], [ -109.687500, 74.821934 ], [ -110.039062, 74.821934 ], [ -110.039062, 74.775843 ], [ -110.214844, 74.775843 ], [ -110.214844, 74.729615 ], [ -110.390625, 74.729615 ], [ -110.390625, 74.683250 ], [ -110.742188, 74.683250 ], [ -110.742188, 74.636748 ], [ -110.917969, 74.636748 ], [ -110.917969, 74.590108 ], [ -111.269531, 74.590108 ], [ -111.269531, 74.543330 ], [ -111.445312, 74.543330 ], [ -111.445312, 74.496413 ], [ -111.621094, 74.496413 ], [ -111.621094, 74.449358 ], [ -111.972656, 74.449358 ], [ -111.972656, 74.402163 ], [ -113.730469, 74.402163 ], [ -113.730469, 74.543330 ], [ -113.906250, 74.543330 ], [ -113.906250, 74.729615 ], [ -113.730469, 74.729615 ], [ -113.730469, 74.775843 ], [ -113.378906, 74.775843 ], [ -113.378906, 74.821934 ], [ -113.203125, 74.821934 ], [ -113.203125, 74.867889 ], [ -113.027344, 74.867889 ], [ -113.027344, 74.913708 ], [ -112.675781, 74.913708 ], [ -112.675781, 74.959392 ], [ -112.500000, 74.959392 ], [ -112.500000, 75.004940 ], [ -112.324219, 75.004940 ], [ -112.324219, 75.050354 ], [ -111.972656, 75.050354 ], [ -111.972656, 75.095633 ], [ -111.796875, 75.095633 ], [ -111.796875, 75.140778 ], [ -112.851562, 75.140778 ], [ -112.851562, 75.095633 ], [ -115.136719, 75.095633 ], [ -115.136719, 75.050354 ], [ -116.718750, 75.050354 ], [ -116.718750, 75.095633 ], [ -117.070312, 75.095633 ], [ -117.070312, 75.140778 ], [ -117.421875, 75.140778 ], [ -117.421875, 75.185789 ], [ -117.773438, 75.185789 ], [ -117.773438, 75.275413 ], [ -117.597656, 75.275413 ], [ -117.597656, 75.408854 ], [ -117.421875, 75.408854 ], [ -117.421875, 75.497157 ], [ -117.246094, 75.497157 ], [ -117.246094, 75.628632 ], [ -117.070312, 75.628632 ], [ -117.070312, 75.758940 ], [ -116.894531, 75.758940 ], [ -116.894531, 75.888091 ], [ -116.718750, 75.888091 ], [ -116.718750, 75.973553 ], [ -116.542969, 75.973553 ], [ -116.542969, 76.100796 ], [ -116.367188, 76.100796 ], [ -116.367188, 76.184995 ], [ -116.191406, 76.184995 ], [ -116.191406, 76.268695 ], [ -116.015625, 76.268695 ], [ -116.015625, 76.310358 ], [ -115.839844, 76.310358 ], [ -115.839844, 76.351896 ], [ -115.664062, 76.351896 ], [ -115.664062, 76.434604 ], [ -115.136719, 76.434604 ], [ -115.136719, 76.393312 ], [ -114.785156, 76.393312 ], [ -114.785156, 76.351896 ], [ -114.433594, 76.351896 ], [ -114.433594, 76.310358 ], [ -114.082031, 76.310358 ], [ -114.082031, 76.268695 ], [ -113.730469, 76.268695 ], [ -113.730469, 76.226907 ], [ -113.378906, 76.226907 ], [ -113.378906, 76.184995 ], [ -113.027344, 76.184995 ], [ -113.027344, 76.142958 ], [ -112.675781, 76.142958 ], [ -112.675781, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 76.058508 ], [ -112.324219, 76.058508 ], [ -112.324219, 75.973553 ], [ -112.148438, 75.973553 ], [ -112.148438, 75.930885 ], [ -111.972656, 75.930885 ], [ -111.972656, 75.888091 ], [ -111.796875, 75.888091 ], [ -111.796875, 75.845169 ], [ -111.621094, 75.845169 ], [ -111.621094, 75.758940 ], [ -111.445312, 75.758940 ], [ -111.445312, 75.715633 ], [ -111.269531, 75.715633 ], [ -111.269531, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.584937 ], [ -110.917969, 75.584937 ], [ -110.917969, 75.541113 ], [ -110.390625, 75.541113 ], [ -110.390625, 75.497157 ], [ -109.511719, 75.497157 ], [ -109.511719, 75.453071 ], [ -108.984375, 75.453071 ], [ -108.984375, 75.497157 ], [ -109.160156, 75.497157 ], [ -109.160156, 75.584937 ], [ -109.335938, 75.584937 ], [ -109.335938, 75.715633 ], [ -109.511719, 75.715633 ], [ -109.511719, 75.802118 ], [ -109.687500, 75.802118 ], [ -109.687500, 75.930885 ], [ -109.863281, 75.930885 ], [ -109.863281, 76.058508 ], [ -110.039062, 76.058508 ], [ -110.039062, 76.142958 ], [ -110.214844, 76.142958 ], [ -110.214844, 76.268695 ], [ -110.390625, 76.268695 ], [ -110.390625, 76.351896 ], [ -110.566406, 76.351896 ], [ -110.566406, 76.434604 ], [ -110.390625, 76.434604 ], [ -110.390625, 76.516819 ], [ -110.214844, 76.516819 ], [ -110.214844, 76.557743 ], [ -110.039062, 76.557743 ], [ -110.039062, 76.639226 ], [ -109.863281, 76.639226 ], [ -109.863281, 76.679785 ], [ -109.687500, 76.679785 ], [ -109.687500, 76.760541 ], [ -109.160156, 76.760541 ] ] ], [ [ [ -116.191406, 77.617709 ], [ -116.191406, 77.273855 ], [ -116.367188, 77.273855 ], [ -116.367188, 76.800739 ], [ -116.542969, 76.800739 ], [ -116.542969, 76.720223 ], [ -116.718750, 76.720223 ], [ -116.718750, 76.639226 ], [ -116.894531, 76.639226 ], [ -116.894531, 76.557743 ], [ -117.070312, 76.557743 ], [ -117.070312, 76.516819 ], [ -117.421875, 76.516819 ], [ -117.421875, 76.475773 ], [ -118.125000, 76.475773 ], [ -118.125000, 76.434604 ], [ -118.300781, 76.434604 ], [ -118.300781, 76.393312 ], [ -118.476562, 76.393312 ], [ -118.476562, 76.351896 ], [ -118.652344, 76.351896 ], [ -118.652344, 76.310358 ], [ -118.828125, 76.310358 ], [ -118.828125, 76.268695 ], [ -119.003906, 76.268695 ], [ -119.003906, 76.226907 ], [ -119.179688, 76.226907 ], [ -119.179688, 76.184995 ], [ -119.355469, 76.184995 ], [ -119.355469, 76.142958 ], [ -119.531250, 76.142958 ], [ -119.531250, 76.100796 ], [ -119.707031, 76.100796 ], [ -119.707031, 76.058508 ], [ -120.058594, 76.058508 ], [ -120.058594, 76.016094 ], [ -120.410156, 76.016094 ], [ -120.410156, 75.973553 ], [ -120.761719, 75.973553 ], [ -120.761719, 75.930885 ], [ -121.113281, 75.930885 ], [ -121.113281, 75.888091 ], [ -121.640625, 75.888091 ], [ -121.640625, 75.930885 ], [ -121.992188, 75.930885 ], [ -121.992188, 75.973553 ], [ -122.343750, 75.973553 ], [ -122.343750, 76.016094 ], [ -122.519531, 76.016094 ], [ -122.519531, 76.058508 ], [ -122.871094, 76.058508 ], [ -122.871094, 76.100796 ], [ -122.695312, 76.100796 ], [ -122.695312, 76.184995 ], [ -122.519531, 76.184995 ], [ -122.519531, 76.268695 ], [ -122.343750, 76.268695 ], [ -122.343750, 76.351896 ], [ -122.167969, 76.351896 ], [ -122.167969, 76.434604 ], [ -121.992188, 76.434604 ], [ -121.992188, 76.516819 ], [ -121.816406, 76.516819 ], [ -121.816406, 76.598545 ], [ -121.640625, 76.598545 ], [ -121.640625, 76.679785 ], [ -121.464844, 76.679785 ], [ -121.464844, 76.760541 ], [ -121.289062, 76.760541 ], [ -121.289062, 76.840816 ], [ -121.113281, 76.840816 ], [ -121.113281, 76.880775 ], [ -120.937500, 76.880775 ], [ -120.937500, 76.960334 ], [ -120.761719, 76.960334 ], [ -120.761719, 76.999935 ], [ -120.585938, 76.999935 ], [ -120.585938, 77.078784 ], [ -120.410156, 77.078784 ], [ -120.410156, 77.118032 ], [ -120.234375, 77.118032 ], [ -120.234375, 77.196176 ], [ -120.058594, 77.196176 ], [ -120.058594, 77.235074 ], [ -119.882812, 77.235074 ], [ -119.882812, 77.273855 ], [ -119.707031, 77.273855 ], [ -119.707031, 77.351070 ], [ -119.531250, 77.351070 ], [ -119.531250, 77.389504 ], [ -119.355469, 77.389504 ], [ -119.355469, 77.466028 ], [ -119.179688, 77.466028 ], [ -119.179688, 77.504119 ], [ -117.246094, 77.504119 ], [ -117.246094, 77.542096 ], [ -116.894531, 77.542096 ], [ -116.894531, 77.579959 ], [ -116.542969, 77.579959 ], [ -116.542969, 77.617709 ], [ -116.191406, 77.617709 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -111.269531, 78.134493 ], [ -110.917969, 78.134493 ], [ -110.917969, 78.098296 ], [ -110.742188, 78.098296 ], [ -110.742188, 78.061989 ], [ -110.390625, 78.061989 ], [ -110.390625, 78.025574 ], [ -110.039062, 78.025574 ], [ -110.039062, 77.989049 ], [ -109.863281, 77.989049 ], [ -109.863281, 77.915669 ], [ -110.039062, 77.915669 ], [ -110.039062, 77.767582 ], [ -110.214844, 77.767582 ], [ -110.214844, 77.655346 ], [ -110.566406, 77.655346 ], [ -110.566406, 77.617709 ], [ -110.742188, 77.617709 ], [ -110.742188, 77.579959 ], [ -110.917969, 77.579959 ], [ -110.917969, 77.542096 ], [ -111.269531, 77.542096 ], [ -111.269531, 77.504119 ], [ -111.445312, 77.504119 ], [ -111.445312, 77.466028 ], [ -111.796875, 77.466028 ], [ -111.796875, 77.427824 ], [ -112.148438, 77.427824 ], [ -112.148438, 77.466028 ], [ -112.324219, 77.466028 ], [ -112.324219, 77.504119 ], [ -112.500000, 77.504119 ], [ -112.500000, 77.542096 ], [ -112.675781, 77.542096 ], [ -112.675781, 77.579959 ], [ -113.027344, 77.579959 ], [ -113.027344, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.655346 ], [ -113.378906, 77.655346 ], [ -113.378906, 77.692870 ], [ -113.554688, 77.692870 ], [ -113.554688, 77.730282 ], [ -113.378906, 77.730282 ], [ -113.378906, 77.804771 ], [ -113.203125, 77.804771 ], [ -113.203125, 77.878814 ], [ -113.027344, 77.878814 ], [ -113.027344, 77.952414 ], [ -112.851562, 77.952414 ], [ -112.851562, 78.025574 ], [ -112.675781, 78.025574 ], [ -112.675781, 78.061989 ], [ -112.324219, 78.061989 ], [ -112.324219, 78.098296 ], [ -111.796875, 78.098296 ], [ -111.796875, 78.134493 ], [ -111.445312, 78.134493 ], [ -111.445312, 78.170582 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -111.269531, 78.836065 ], [ -111.269531, 78.801980 ], [ -110.917969, 78.801980 ], [ -110.917969, 78.767792 ], [ -110.742188, 78.767792 ], [ -110.742188, 78.733501 ], [ -110.566406, 78.733501 ], [ -110.566406, 78.699106 ], [ -110.214844, 78.699106 ], [ -110.214844, 78.664608 ], [ -110.039062, 78.664608 ], [ -110.039062, 78.630006 ], [ -109.863281, 78.630006 ], [ -109.863281, 78.595299 ], [ -109.687500, 78.595299 ], [ -109.687500, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.525573 ], [ -110.214844, 78.525573 ], [ -110.214844, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.455425 ], [ -110.742188, 78.455425 ], [ -110.742188, 78.420193 ], [ -112.500000, 78.420193 ], [ -112.500000, 78.560488 ], [ -112.324219, 78.560488 ], [ -112.324219, 78.630006 ], [ -112.148438, 78.630006 ], [ -112.148438, 78.664608 ], [ -111.972656, 78.664608 ], [ -111.972656, 78.699106 ], [ -111.796875, 78.699106 ], [ -111.796875, 78.767792 ], [ -111.621094, 78.767792 ], [ -111.621094, 78.801980 ], [ -111.445312, 78.801980 ], [ -111.445312, 78.836065 ], [ -111.269531, 78.836065 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.562500, 69.839622 ], [ -126.386719, 69.839622 ], [ -126.386719, 69.778952 ], [ -126.210938, 69.778952 ], [ -126.210938, 69.657086 ], [ -126.035156, 69.657086 ], [ -126.035156, 69.595890 ], [ -125.859375, 69.595890 ], [ -125.859375, 69.472969 ], [ -125.507812, 69.472969 ], [ -125.507812, 69.595890 ], [ -125.332031, 69.595890 ], [ -125.332031, 69.657086 ], [ -125.156250, 69.657086 ], [ -125.156250, 69.778952 ], [ -124.980469, 69.778952 ], [ -124.980469, 69.900118 ], [ -124.804688, 69.900118 ], [ -124.804688, 69.960439 ], [ -124.628906, 69.960439 ], [ -124.628906, 70.080562 ], [ -124.453125, 70.080562 ], [ -124.453125, 69.778952 ], [ -124.277344, 69.778952 ], [ -124.277344, 69.411242 ], [ -123.925781, 69.411242 ], [ -123.925781, 69.472969 ], [ -123.222656, 69.472969 ], [ -123.222656, 69.534518 ], [ -123.046875, 69.534518 ], [ -123.046875, 69.595890 ], [ -122.871094, 69.595890 ], [ -122.871094, 69.718107 ], [ -122.695312, 69.718107 ], [ -122.695312, 69.839622 ], [ -122.167969, 69.839622 ], [ -122.167969, 69.778952 ], [ -121.464844, 69.778952 ], [ -121.464844, 69.718107 ], [ -121.289062, 69.718107 ], [ -121.289062, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.595890 ], [ -120.761719, 69.595890 ], [ -120.761719, 69.534518 ], [ -120.585938, 69.534518 ], [ -120.585938, 69.472969 ], [ -120.234375, 69.472969 ], [ -120.234375, 69.411242 ], [ -120.058594, 69.411242 ], [ -120.058594, 69.349339 ], [ -119.707031, 69.349339 ], [ -119.707031, 69.287257 ], [ -119.355469, 69.287257 ], [ -119.355469, 69.224997 ], [ -118.828125, 69.224997 ], [ -118.828125, 69.162558 ], [ -118.300781, 69.162558 ], [ -118.300781, 69.099940 ], [ -117.949219, 69.099940 ], [ -117.949219, 69.037142 ], [ -117.421875, 69.037142 ], [ -117.421875, 68.974164 ], [ -117.070312, 68.974164 ], [ -117.070312, 68.911005 ], [ -116.542969, 68.911005 ], [ -116.542969, 68.847665 ], [ -115.664062, 68.847665 ], [ -115.664062, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.847665 ], [ -115.136719, 68.847665 ], [ -115.136719, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.720441 ], [ -114.785156, 68.720441 ], [ -114.785156, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.592487 ], [ -114.433594, 68.592487 ], [ -114.433594, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.463800 ], [ -114.082031, 68.463800 ], [ -114.082031, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.334376 ], [ -114.082031, 68.334376 ], [ -114.082031, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.204212 ], [ -114.433594, 68.204212 ], [ -114.433594, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 68.073305 ], [ -114.785156, 68.073305 ], [ -114.785156, 68.007571 ], [ -114.960938, 68.007571 ], [ -114.960938, 67.941650 ], [ -115.136719, 67.941650 ], [ -115.136719, 67.809245 ], [ -114.609375, 67.809245 ], [ -114.609375, 67.742759 ], [ -113.906250, 67.742759 ], [ -113.906250, 67.676085 ], [ -112.675781, 67.676085 ], [ -112.675781, 67.742759 ], [ -111.269531, 67.742759 ], [ -111.269531, 67.809245 ], [ -110.566406, 67.809245 ], [ -110.566406, 67.875541 ], [ -110.214844, 67.875541 ], [ -110.214844, 67.941650 ], [ -109.687500, 67.941650 ], [ -109.687500, 67.809245 ], [ -109.511719, 67.809245 ], [ -109.511719, 67.742759 ], [ -109.335938, 67.742759 ], [ -109.335938, 67.609221 ], [ -109.160156, 67.609221 ], [ -109.160156, 67.542167 ], [ -108.984375, 67.542167 ], [ -108.984375, 67.407487 ], [ -108.632812, 67.407487 ], [ -108.632812, 67.474922 ], [ -108.457031, 67.474922 ], [ -108.457031, 67.542167 ], [ -108.281250, 67.542167 ], [ -108.281250, 67.676085 ], [ -108.105469, 67.676085 ], [ -108.105469, 67.742759 ], [ -107.929688, 67.742759 ], [ -107.929688, 67.809245 ], [ -107.753906, 67.809245 ], [ -107.753906, 67.875541 ], [ -107.929688, 67.875541 ], [ -107.929688, 67.941650 ], [ -108.105469, 67.941650 ], [ -108.105469, 68.007571 ], [ -108.281250, 68.007571 ], [ -108.281250, 68.138852 ], [ -108.457031, 68.138852 ], [ -108.457031, 68.204212 ], [ -108.632812, 68.204212 ], [ -108.632812, 68.269387 ], [ -108.808594, 68.269387 ], [ -108.808594, 68.334376 ], [ -108.632812, 68.334376 ], [ -108.632812, 68.399180 ], [ -108.457031, 68.399180 ], [ -108.457031, 68.528235 ], [ -108.281250, 68.528235 ], [ -108.281250, 68.592487 ], [ -108.105469, 68.592487 ], [ -108.105469, 68.656555 ], [ -107.402344, 68.656555 ], [ -107.402344, 68.720441 ], [ -106.875000, 68.720441 ], [ -106.875000, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.224997 ], [ -135.703125, 69.224997 ], [ -135.703125, 69.287257 ], [ -135.527344, 69.287257 ], [ -135.527344, 69.349339 ], [ -135.351562, 69.349339 ], [ -135.351562, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -134.824219, 69.472969 ], [ -134.824219, 69.534518 ], [ -134.648438, 69.534518 ], [ -134.648438, 69.595890 ], [ -134.472656, 69.595890 ], [ -134.472656, 69.657086 ], [ -134.121094, 69.657086 ], [ -134.121094, 69.595890 ], [ -133.417969, 69.595890 ], [ -133.417969, 69.534518 ], [ -132.714844, 69.534518 ], [ -132.714844, 69.595890 ], [ -132.539062, 69.595890 ], [ -132.539062, 69.657086 ], [ -132.363281, 69.657086 ], [ -132.363281, 69.718107 ], [ -132.011719, 69.718107 ], [ -132.011719, 69.778952 ], [ -131.835938, 69.778952 ], [ -131.835938, 69.839622 ], [ -131.660156, 69.839622 ], [ -131.660156, 69.900118 ], [ -131.484375, 69.900118 ], [ -131.484375, 69.960439 ], [ -131.132812, 69.960439 ], [ -131.132812, 70.020587 ], [ -130.781250, 70.020587 ], [ -130.781250, 70.080562 ], [ -130.253906, 70.080562 ], [ -130.253906, 70.140364 ], [ -129.902344, 70.140364 ], [ -129.902344, 70.199994 ], [ -129.726562, 70.199994 ], [ -129.726562, 70.140364 ], [ -129.550781, 70.140364 ], [ -129.550781, 70.020587 ], [ -129.375000, 70.020587 ], [ -129.375000, 69.900118 ], [ -129.199219, 69.900118 ], [ -129.199219, 69.778952 ], [ -128.847656, 69.778952 ], [ -128.847656, 69.839622 ], [ -128.671875, 69.839622 ], [ -128.671875, 69.900118 ], [ -128.496094, 69.900118 ], [ -128.496094, 69.960439 ], [ -128.320312, 69.960439 ], [ -128.320312, 70.259452 ], [ -128.144531, 70.259452 ], [ -128.144531, 70.436799 ], [ -127.792969, 70.436799 ], [ -127.792969, 70.377854 ], [ -127.441406, 70.377854 ], [ -127.441406, 70.318738 ], [ -127.265625, 70.318738 ], [ -127.265625, 70.199994 ], [ -127.089844, 70.199994 ], [ -127.089844, 70.140364 ], [ -126.914062, 70.140364 ], [ -126.914062, 70.020587 ], [ -126.738281, 70.020587 ], [ -126.738281, 69.960439 ], [ -126.562500, 69.960439 ], [ -126.562500, 69.839622 ] ] ], [ [ [ -114.609375, 73.175897 ], [ -114.257812, 73.175897 ], [ -114.257812, 73.124945 ], [ -114.082031, 73.124945 ], [ -114.082031, 73.022592 ], [ -114.257812, 73.022592 ], [ -114.257812, 72.867930 ], [ -114.433594, 72.867930 ], [ -114.433594, 72.711903 ], [ -114.609375, 72.711903 ], [ -114.609375, 72.659588 ], [ -114.257812, 72.659588 ], [ -114.257812, 72.711903 ], [ -113.906250, 72.711903 ], [ -113.906250, 72.764065 ], [ -113.554688, 72.764065 ], [ -113.554688, 72.816074 ], [ -113.203125, 72.816074 ], [ -113.203125, 72.867930 ], [ -112.851562, 72.867930 ], [ -112.851562, 72.919635 ], [ -112.324219, 72.919635 ], [ -112.324219, 72.867930 ], [ -112.148438, 72.867930 ], [ -112.148438, 72.764065 ], [ -111.972656, 72.764065 ], [ -111.972656, 72.711903 ], [ -111.796875, 72.711903 ], [ -111.796875, 72.659588 ], [ -111.621094, 72.659588 ], [ -111.621094, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.501722 ], [ -111.269531, 72.501722 ], [ -111.269531, 72.448792 ], [ -110.917969, 72.448792 ], [ -110.917969, 72.554498 ], [ -110.742188, 72.554498 ], [ -110.742188, 72.607120 ], [ -110.566406, 72.607120 ], [ -110.566406, 72.711903 ], [ -110.390625, 72.711903 ], [ -110.390625, 72.764065 ], [ -110.214844, 72.764065 ], [ -110.214844, 72.816074 ], [ -110.039062, 72.816074 ], [ -110.039062, 72.919635 ], [ -109.687500, 72.919635 ], [ -109.687500, 72.816074 ], [ -109.511719, 72.816074 ], [ -109.511719, 72.764065 ], [ -109.335938, 72.764065 ], [ -109.335938, 72.711903 ], [ -109.160156, 72.711903 ], [ -109.160156, 72.607120 ], [ -108.984375, 72.607120 ], [ -108.984375, 72.501722 ], [ -108.808594, 72.501722 ], [ -108.808594, 72.289067 ], [ -108.632812, 72.289067 ], [ -108.632812, 72.127936 ], [ -108.457031, 72.127936 ], [ -108.457031, 71.910888 ], [ -108.281250, 71.910888 ], [ -108.281250, 71.691293 ], [ -108.105469, 71.691293 ], [ -108.105469, 71.746432 ], [ -107.929688, 71.746432 ], [ -107.929688, 71.965388 ], [ -107.753906, 71.965388 ], [ -107.753906, 72.181804 ], [ -107.929688, 72.181804 ], [ -107.929688, 72.448792 ], [ -108.105469, 72.448792 ], [ -108.105469, 72.659588 ], [ -108.281250, 72.659588 ], [ -108.281250, 72.919635 ], [ -108.457031, 72.919635 ], [ -108.457031, 73.073844 ], [ -108.281250, 73.073844 ], [ -108.281250, 73.124945 ], [ -107.929688, 73.124945 ], [ -107.929688, 73.175897 ], [ -107.226562, 73.175897 ], [ -107.226562, 73.124945 ], [ -106.875000, 73.124945 ], [ -106.875000, 69.099940 ], [ -107.226562, 69.099940 ], [ -107.226562, 69.037142 ], [ -107.578125, 69.037142 ], [ -107.578125, 68.974164 ], [ -107.929688, 68.974164 ], [ -107.929688, 68.911005 ], [ -108.281250, 68.911005 ], [ -108.281250, 68.847665 ], [ -108.632812, 68.847665 ], [ -108.632812, 68.784144 ], [ -109.511719, 68.784144 ], [ -109.511719, 68.720441 ], [ -110.917969, 68.720441 ], [ -110.917969, 68.656555 ], [ -111.972656, 68.656555 ], [ -111.972656, 68.592487 ], [ -112.851562, 68.592487 ], [ -112.851562, 68.528235 ], [ -113.378906, 68.528235 ], [ -113.378906, 68.592487 ], [ -113.554688, 68.592487 ], [ -113.554688, 68.784144 ], [ -113.730469, 68.784144 ], [ -113.730469, 68.911005 ], [ -113.906250, 68.911005 ], [ -113.906250, 69.037142 ], [ -114.082031, 69.037142 ], [ -114.082031, 69.099940 ], [ -114.433594, 69.099940 ], [ -114.433594, 69.162558 ], [ -114.785156, 69.162558 ], [ -114.785156, 69.224997 ], [ -115.136719, 69.224997 ], [ -115.136719, 69.287257 ], [ -115.312500, 69.287257 ], [ -115.312500, 69.224997 ], [ -115.839844, 69.224997 ], [ -115.839844, 69.162558 ], [ -116.367188, 69.162558 ], [ -116.367188, 69.287257 ], [ -116.542969, 69.287257 ], [ -116.542969, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.534518 ], [ -116.894531, 69.534518 ], [ -116.894531, 69.657086 ], [ -117.070312, 69.657086 ], [ -117.070312, 69.778952 ], [ -117.246094, 69.778952 ], [ -117.246094, 69.900118 ], [ -117.421875, 69.900118 ], [ -117.421875, 69.960439 ], [ -117.070312, 69.960439 ], [ -117.070312, 70.020587 ], [ -116.718750, 70.020587 ], [ -116.718750, 70.080562 ], [ -116.367188, 70.080562 ], [ -116.367188, 70.140364 ], [ -115.839844, 70.140364 ], [ -115.839844, 70.199994 ], [ -115.312500, 70.199994 ], [ -115.312500, 70.259452 ], [ -114.609375, 70.259452 ], [ -114.609375, 70.199994 ], [ -113.378906, 70.199994 ], [ -113.378906, 70.259452 ], [ -113.027344, 70.259452 ], [ -113.027344, 70.318738 ], [ -112.675781, 70.318738 ], [ -112.675781, 70.377854 ], [ -112.851562, 70.377854 ], [ -112.851562, 70.436799 ], [ -113.378906, 70.436799 ], [ -113.378906, 70.495574 ], [ -113.730469, 70.495574 ], [ -113.730469, 70.554179 ], [ -114.257812, 70.554179 ], [ -114.257812, 70.612614 ], [ -114.785156, 70.612614 ], [ -114.785156, 70.554179 ], [ -115.839844, 70.554179 ], [ -115.839844, 70.495574 ], [ -117.421875, 70.495574 ], [ -117.421875, 70.554179 ], [ -117.949219, 70.554179 ], [ -117.949219, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.728979 ], [ -118.300781, 70.728979 ], [ -118.300781, 70.844673 ], [ -118.476562, 70.844673 ], [ -118.476562, 70.902268 ], [ -118.300781, 70.902268 ], [ -118.300781, 70.959697 ], [ -117.949219, 70.959697 ], [ -117.949219, 71.016960 ], [ -117.597656, 71.016960 ], [ -117.597656, 71.074056 ], [ -117.246094, 71.074056 ], [ -117.246094, 71.130988 ], [ -116.894531, 71.130988 ], [ -116.894531, 71.187754 ], [ -116.542969, 71.187754 ], [ -116.542969, 71.244356 ], [ -116.191406, 71.244356 ], [ -116.191406, 71.300793 ], [ -117.949219, 71.300793 ], [ -117.949219, 71.357067 ], [ -118.300781, 71.357067 ], [ -118.300781, 71.413177 ], [ -118.652344, 71.413177 ], [ -118.652344, 71.469124 ], [ -119.003906, 71.469124 ], [ -119.003906, 71.524909 ], [ -119.355469, 71.524909 ], [ -119.355469, 71.635993 ], [ -119.179688, 71.635993 ], [ -119.179688, 71.746432 ], [ -119.003906, 71.746432 ], [ -119.003906, 71.910888 ], [ -118.828125, 71.910888 ], [ -118.828125, 72.073911 ], [ -118.652344, 72.073911 ], [ -118.652344, 72.181804 ], [ -118.476562, 72.181804 ], [ -118.476562, 72.342464 ], [ -118.300781, 72.342464 ], [ -118.300781, 72.501722 ], [ -118.125000, 72.501722 ], [ -118.125000, 72.607120 ], [ -117.949219, 72.607120 ], [ -117.949219, 72.711903 ], [ -117.773438, 72.711903 ], [ -117.773438, 72.764065 ], [ -117.421875, 72.764065 ], [ -117.421875, 72.816074 ], [ -117.246094, 72.816074 ], [ -117.246094, 72.867930 ], [ -117.070312, 72.867930 ], [ -117.070312, 72.919635 ], [ -116.718750, 72.919635 ], [ -116.718750, 72.971189 ], [ -116.542969, 72.971189 ], [ -116.542969, 73.022592 ], [ -116.367188, 73.022592 ], [ -116.367188, 73.073844 ], [ -116.015625, 73.073844 ], [ -116.015625, 73.124945 ], [ -115.839844, 73.124945 ], [ -115.839844, 73.175897 ], [ -115.664062, 73.175897 ], [ -115.664062, 73.226700 ], [ -115.312500, 73.226700 ], [ -115.312500, 73.277353 ], [ -114.785156, 73.277353 ], [ -114.785156, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.175897 ] ] ], [ [ [ -116.542969, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.175897 ], [ -116.894531, 73.175897 ], [ -116.894531, 73.124945 ], [ -117.070312, 73.124945 ], [ -117.070312, 73.073844 ], [ -117.246094, 73.073844 ], [ -117.246094, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.971189 ], [ -117.597656, 72.971189 ], [ -117.597656, 72.919635 ], [ -117.773438, 72.919635 ], [ -117.773438, 72.867930 ], [ -117.949219, 72.867930 ], [ -117.949219, 72.816074 ], [ -118.125000, 72.816074 ], [ -118.125000, 72.764065 ], [ -118.300781, 72.764065 ], [ -118.300781, 72.711903 ], [ -118.476562, 72.711903 ], [ -118.476562, 72.659588 ], [ -118.652344, 72.659588 ], [ -118.652344, 72.607120 ], [ -118.828125, 72.607120 ], [ -118.828125, 72.554498 ], [ -119.003906, 72.554498 ], [ -119.003906, 72.501722 ], [ -119.179688, 72.501722 ], [ -119.179688, 72.448792 ], [ -119.355469, 72.448792 ], [ -119.355469, 72.342464 ], [ -119.531250, 72.342464 ], [ -119.531250, 72.235514 ], [ -119.707031, 72.235514 ], [ -119.707031, 72.127936 ], [ -119.882812, 72.127936 ], [ -119.882812, 72.019729 ], [ -120.058594, 72.019729 ], [ -120.058594, 71.910888 ], [ -120.234375, 71.910888 ], [ -120.234375, 71.801410 ], [ -120.410156, 71.801410 ], [ -120.410156, 71.300793 ], [ -120.761719, 71.300793 ], [ -120.761719, 71.244356 ], [ -121.113281, 71.244356 ], [ -121.113281, 71.187754 ], [ -121.464844, 71.187754 ], [ -121.464844, 71.130988 ], [ -121.816406, 71.130988 ], [ -121.816406, 71.074056 ], [ -122.167969, 71.074056 ], [ -122.167969, 71.016960 ], [ -122.519531, 71.016960 ], [ -122.519531, 70.959697 ], [ -122.871094, 70.959697 ], [ -122.871094, 70.902268 ], [ -123.046875, 70.902268 ], [ -123.046875, 70.959697 ], [ -123.222656, 70.959697 ], [ -123.222656, 71.130988 ], [ -123.398438, 71.130988 ], [ -123.398438, 71.244356 ], [ -123.574219, 71.244356 ], [ -123.574219, 71.357067 ], [ -123.750000, 71.357067 ], [ -123.750000, 71.413177 ], [ -124.101562, 71.413177 ], [ -124.101562, 71.469124 ], [ -124.277344, 71.469124 ], [ -124.277344, 71.524909 ], [ -124.628906, 71.524909 ], [ -124.628906, 71.580532 ], [ -124.804688, 71.580532 ], [ -124.804688, 71.635993 ], [ -124.980469, 71.635993 ], [ -124.980469, 71.691293 ], [ -125.332031, 71.691293 ], [ -125.332031, 71.746432 ], [ -125.507812, 71.746432 ], [ -125.507812, 71.801410 ], [ -125.859375, 71.801410 ], [ -125.859375, 71.965388 ], [ -125.683594, 71.965388 ], [ -125.683594, 72.181804 ], [ -125.507812, 72.181804 ], [ -125.507812, 72.342464 ], [ -125.332031, 72.342464 ], [ -125.332031, 72.554498 ], [ -125.156250, 72.554498 ], [ -125.156250, 72.711903 ], [ -124.980469, 72.711903 ], [ -124.980469, 72.919635 ], [ -124.804688, 72.919635 ], [ -124.804688, 73.073844 ], [ -124.628906, 73.073844 ], [ -124.628906, 73.175897 ], [ -124.453125, 73.175897 ], [ -124.453125, 73.277353 ], [ -116.542969, 73.277353 ], [ -116.542969, 73.226700 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.792969, 70.436799 ], [ -127.792969, 70.377854 ], [ -127.441406, 70.377854 ], [ -127.441406, 70.318738 ], [ -127.265625, 70.318738 ], [ -127.265625, 70.199994 ], [ -127.089844, 70.199994 ], [ -127.089844, 70.140364 ], [ -126.914062, 70.140364 ], [ -126.914062, 70.020587 ], [ -126.738281, 70.020587 ], [ -126.738281, 69.960439 ], [ -126.562500, 69.960439 ], [ -126.562500, 69.839622 ], [ -126.386719, 69.839622 ], [ -126.386719, 69.778952 ], [ -126.210938, 69.778952 ], [ -126.210938, 69.657086 ], [ -126.035156, 69.657086 ], [ -126.035156, 69.595890 ], [ -125.859375, 69.595890 ], [ -125.859375, 69.472969 ], [ -125.507812, 69.472969 ], [ -125.507812, 69.595890 ], [ -125.332031, 69.595890 ], [ -125.332031, 69.657086 ], [ -125.156250, 69.657086 ], [ -125.156250, 69.778952 ], [ -124.980469, 69.778952 ], [ -124.980469, 69.900118 ], [ -124.804688, 69.900118 ], [ -124.804688, 69.960439 ], [ -124.628906, 69.960439 ], [ -124.628906, 70.080562 ], [ -124.453125, 70.080562 ], [ -124.453125, 69.778952 ], [ -124.277344, 69.778952 ], [ -124.277344, 69.411242 ], [ -123.925781, 69.411242 ], [ -123.925781, 69.472969 ], [ -123.222656, 69.472969 ], [ -123.222656, 69.534518 ], [ -123.046875, 69.534518 ], [ -123.046875, 69.595890 ], [ -122.871094, 69.595890 ], [ -122.871094, 69.718107 ], [ -122.695312, 69.718107 ], [ -122.695312, 69.839622 ], [ -122.167969, 69.839622 ], [ -122.167969, 69.778952 ], [ -121.464844, 69.778952 ], [ -121.464844, 69.718107 ], [ -121.289062, 69.718107 ], [ -121.289062, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.595890 ], [ -120.761719, 69.595890 ], [ -120.761719, 69.534518 ], [ -120.585938, 69.534518 ], [ -120.585938, 69.472969 ], [ -120.234375, 69.472969 ], [ -120.234375, 69.411242 ], [ -120.058594, 69.411242 ], [ -120.058594, 69.349339 ], [ -119.707031, 69.349339 ], [ -119.707031, 69.287257 ], [ -119.355469, 69.287257 ], [ -119.355469, 69.224997 ], [ -118.828125, 69.224997 ], [ -118.828125, 69.162558 ], [ -118.300781, 69.162558 ], [ -118.300781, 69.099940 ], [ -117.949219, 69.099940 ], [ -117.949219, 69.037142 ], [ -117.421875, 69.037142 ], [ -117.421875, 68.974164 ], [ -117.070312, 68.974164 ], [ -117.070312, 68.911005 ], [ -116.542969, 68.911005 ], [ -116.542969, 68.847665 ], [ -115.664062, 68.847665 ], [ -115.664062, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.847665 ], [ -115.136719, 68.847665 ], [ -115.136719, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.720441 ], [ -114.785156, 68.720441 ], [ -114.785156, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.592487 ], [ -114.433594, 68.592487 ], [ -114.433594, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.463800 ], [ -114.082031, 68.463800 ], [ -114.082031, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.334376 ], [ -114.082031, 68.334376 ], [ -114.082031, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.204212 ], [ -114.433594, 68.204212 ], [ -114.433594, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 68.073305 ], [ -114.785156, 68.073305 ], [ -114.785156, 68.007571 ], [ -114.960938, 68.007571 ], [ -114.960938, 67.941650 ], [ -115.136719, 67.941650 ], [ -115.136719, 67.809245 ], [ -114.609375, 67.809245 ], [ -114.609375, 67.742759 ], [ -113.906250, 67.742759 ], [ -113.906250, 67.676085 ], [ -112.675781, 67.676085 ], [ -112.675781, 67.742759 ], [ -111.269531, 67.742759 ], [ -111.269531, 67.809245 ], [ -110.566406, 67.809245 ], [ -110.566406, 67.875541 ], [ -110.214844, 67.875541 ], [ -110.214844, 67.941650 ], [ -109.687500, 67.941650 ], [ -109.687500, 67.809245 ], [ -109.511719, 67.809245 ], [ -109.511719, 67.742759 ], [ -109.335938, 67.742759 ], [ -109.335938, 67.609221 ], [ -109.160156, 67.609221 ], [ -109.160156, 67.542167 ], [ -108.984375, 67.542167 ], [ -108.984375, 67.407487 ], [ -108.632812, 67.407487 ], [ -108.632812, 67.474922 ], [ -108.457031, 67.474922 ], [ -108.457031, 67.542167 ], [ -108.281250, 67.542167 ], [ -108.281250, 67.676085 ], [ -108.105469, 67.676085 ], [ -108.105469, 67.742759 ], [ -107.929688, 67.742759 ], [ -107.929688, 67.809245 ], [ -107.753906, 67.809245 ], [ -107.753906, 67.875541 ], [ -107.929688, 67.875541 ], [ -107.929688, 67.941650 ], [ -108.105469, 67.941650 ], [ -108.105469, 68.007571 ], [ -108.281250, 68.007571 ], [ -108.281250, 68.138852 ], [ -108.457031, 68.138852 ], [ -108.457031, 68.204212 ], [ -108.632812, 68.204212 ], [ -108.632812, 68.269387 ], [ -108.808594, 68.269387 ], [ -108.808594, 68.334376 ], [ -108.632812, 68.334376 ], [ -108.632812, 68.399180 ], [ -108.457031, 68.399180 ], [ -108.457031, 68.528235 ], [ -108.281250, 68.528235 ], [ -108.281250, 68.592487 ], [ -108.105469, 68.592487 ], [ -108.105469, 68.656555 ], [ -107.402344, 68.656555 ], [ -107.402344, 68.720441 ], [ -106.875000, 68.720441 ], [ -106.875000, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.224997 ], [ -135.703125, 69.224997 ], [ -135.703125, 69.287257 ], [ -135.527344, 69.287257 ], [ -135.527344, 69.349339 ], [ -135.351562, 69.349339 ], [ -135.351562, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -134.824219, 69.472969 ], [ -134.824219, 69.534518 ], [ -134.648438, 69.534518 ], [ -134.648438, 69.595890 ], [ -134.472656, 69.595890 ], [ -134.472656, 69.657086 ], [ -134.121094, 69.657086 ], [ -134.121094, 69.595890 ], [ -133.417969, 69.595890 ], [ -133.417969, 69.534518 ], [ -132.714844, 69.534518 ], [ -132.714844, 69.595890 ], [ -132.539062, 69.595890 ], [ -132.539062, 69.657086 ], [ -132.363281, 69.657086 ], [ -132.363281, 69.718107 ], [ -132.011719, 69.718107 ], [ -132.011719, 69.778952 ], [ -131.835938, 69.778952 ], [ -131.835938, 69.839622 ], [ -131.660156, 69.839622 ], [ -131.660156, 69.900118 ], [ -131.484375, 69.900118 ], [ -131.484375, 69.960439 ], [ -131.132812, 69.960439 ], [ -131.132812, 70.020587 ], [ -130.781250, 70.020587 ], [ -130.781250, 70.080562 ], [ -130.253906, 70.080562 ], [ -130.253906, 70.140364 ], [ -129.902344, 70.140364 ], [ -129.902344, 70.199994 ], [ -129.726562, 70.199994 ], [ -129.726562, 70.140364 ], [ -129.550781, 70.140364 ], [ -129.550781, 70.020587 ], [ -129.375000, 70.020587 ], [ -129.375000, 69.900118 ], [ -129.199219, 69.900118 ], [ -129.199219, 69.778952 ], [ -128.847656, 69.778952 ], [ -128.847656, 69.839622 ], [ -128.671875, 69.839622 ], [ -128.671875, 69.900118 ], [ -128.496094, 69.900118 ], [ -128.496094, 69.960439 ], [ -128.320312, 69.960439 ], [ -128.320312, 70.259452 ], [ -128.144531, 70.259452 ], [ -128.144531, 70.436799 ], [ -127.792969, 70.436799 ] ] ], [ [ [ -114.785156, 73.277353 ], [ -114.785156, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.175897 ], [ -114.257812, 73.175897 ], [ -114.257812, 73.124945 ], [ -114.082031, 73.124945 ], [ -114.082031, 73.022592 ], [ -114.257812, 73.022592 ], [ -114.257812, 72.867930 ], [ -114.433594, 72.867930 ], [ -114.433594, 72.711903 ], [ -114.609375, 72.711903 ], [ -114.609375, 72.659588 ], [ -114.257812, 72.659588 ], [ -114.257812, 72.711903 ], [ -113.906250, 72.711903 ], [ -113.906250, 72.764065 ], [ -113.554688, 72.764065 ], [ -113.554688, 72.816074 ], [ -113.203125, 72.816074 ], [ -113.203125, 72.867930 ], [ -112.851562, 72.867930 ], [ -112.851562, 72.919635 ], [ -112.324219, 72.919635 ], [ -112.324219, 72.867930 ], [ -112.148438, 72.867930 ], [ -112.148438, 72.764065 ], [ -111.972656, 72.764065 ], [ -111.972656, 72.711903 ], [ -111.796875, 72.711903 ], [ -111.796875, 72.659588 ], [ -111.621094, 72.659588 ], [ -111.621094, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.501722 ], [ -111.269531, 72.501722 ], [ -111.269531, 72.448792 ], [ -110.917969, 72.448792 ], [ -110.917969, 72.554498 ], [ -110.742188, 72.554498 ], [ -110.742188, 72.607120 ], [ -110.566406, 72.607120 ], [ -110.566406, 72.711903 ], [ -110.390625, 72.711903 ], [ -110.390625, 72.764065 ], [ -110.214844, 72.764065 ], [ -110.214844, 72.816074 ], [ -110.039062, 72.816074 ], [ -110.039062, 72.919635 ], [ -109.687500, 72.919635 ], [ -109.687500, 72.816074 ], [ -109.511719, 72.816074 ], [ -109.511719, 72.764065 ], [ -109.335938, 72.764065 ], [ -109.335938, 72.711903 ], [ -109.160156, 72.711903 ], [ -109.160156, 72.607120 ], [ -108.984375, 72.607120 ], [ -108.984375, 72.501722 ], [ -108.808594, 72.501722 ], [ -108.808594, 72.289067 ], [ -108.632812, 72.289067 ], [ -108.632812, 72.127936 ], [ -108.457031, 72.127936 ], [ -108.457031, 71.910888 ], [ -108.281250, 71.910888 ], [ -108.281250, 71.691293 ], [ -108.105469, 71.691293 ], [ -108.105469, 71.746432 ], [ -107.929688, 71.746432 ], [ -107.929688, 71.965388 ], [ -107.753906, 71.965388 ], [ -107.753906, 72.181804 ], [ -107.929688, 72.181804 ], [ -107.929688, 72.448792 ], [ -108.105469, 72.448792 ], [ -108.105469, 72.659588 ], [ -108.281250, 72.659588 ], [ -108.281250, 72.919635 ], [ -108.457031, 72.919635 ], [ -108.457031, 73.073844 ], [ -108.281250, 73.073844 ], [ -108.281250, 73.124945 ], [ -107.929688, 73.124945 ], [ -107.929688, 73.175897 ], [ -107.226562, 73.175897 ], [ -107.226562, 73.124945 ], [ -106.875000, 73.124945 ], [ -106.875000, 69.099940 ], [ -107.226562, 69.099940 ], [ -107.226562, 69.037142 ], [ -107.578125, 69.037142 ], [ -107.578125, 68.974164 ], [ -107.929688, 68.974164 ], [ -107.929688, 68.911005 ], [ -108.281250, 68.911005 ], [ -108.281250, 68.847665 ], [ -108.632812, 68.847665 ], [ -108.632812, 68.784144 ], [ -109.511719, 68.784144 ], [ -109.511719, 68.720441 ], [ -110.917969, 68.720441 ], [ -110.917969, 68.656555 ], [ -111.972656, 68.656555 ], [ -111.972656, 68.592487 ], [ -112.851562, 68.592487 ], [ -112.851562, 68.528235 ], [ -113.378906, 68.528235 ], [ -113.378906, 68.592487 ], [ -113.554688, 68.592487 ], [ -113.554688, 68.784144 ], [ -113.730469, 68.784144 ], [ -113.730469, 68.911005 ], [ -113.906250, 68.911005 ], [ -113.906250, 69.037142 ], [ -114.082031, 69.037142 ], [ -114.082031, 69.099940 ], [ -114.433594, 69.099940 ], [ -114.433594, 69.162558 ], [ -114.785156, 69.162558 ], [ -114.785156, 69.224997 ], [ -115.136719, 69.224997 ], [ -115.136719, 69.287257 ], [ -115.312500, 69.287257 ], [ -115.312500, 69.224997 ], [ -115.839844, 69.224997 ], [ -115.839844, 69.162558 ], [ -116.367188, 69.162558 ], [ -116.367188, 69.287257 ], [ -116.542969, 69.287257 ], [ -116.542969, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.534518 ], [ -116.894531, 69.534518 ], [ -116.894531, 69.657086 ], [ -117.070312, 69.657086 ], [ -117.070312, 69.778952 ], [ -117.246094, 69.778952 ], [ -117.246094, 69.900118 ], [ -117.421875, 69.900118 ], [ -117.421875, 69.960439 ], [ -117.070312, 69.960439 ], [ -117.070312, 70.020587 ], [ -116.718750, 70.020587 ], [ -116.718750, 70.080562 ], [ -116.367188, 70.080562 ], [ -116.367188, 70.140364 ], [ -115.839844, 70.140364 ], [ -115.839844, 70.199994 ], [ -115.312500, 70.199994 ], [ -115.312500, 70.259452 ], [ -114.609375, 70.259452 ], [ -114.609375, 70.199994 ], [ -113.378906, 70.199994 ], [ -113.378906, 70.259452 ], [ -113.027344, 70.259452 ], [ -113.027344, 70.318738 ], [ -112.675781, 70.318738 ], [ -112.675781, 70.377854 ], [ -112.851562, 70.377854 ], [ -112.851562, 70.436799 ], [ -113.378906, 70.436799 ], [ -113.378906, 70.495574 ], [ -113.730469, 70.495574 ], [ -113.730469, 70.554179 ], [ -114.257812, 70.554179 ], [ -114.257812, 70.612614 ], [ -114.785156, 70.612614 ], [ -114.785156, 70.554179 ], [ -115.839844, 70.554179 ], [ -115.839844, 70.495574 ], [ -117.421875, 70.495574 ], [ -117.421875, 70.554179 ], [ -117.949219, 70.554179 ], [ -117.949219, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.728979 ], [ -118.300781, 70.728979 ], [ -118.300781, 70.844673 ], [ -118.476562, 70.844673 ], [ -118.476562, 70.902268 ], [ -118.300781, 70.902268 ], [ -118.300781, 70.959697 ], [ -117.949219, 70.959697 ], [ -117.949219, 71.016960 ], [ -117.597656, 71.016960 ], [ -117.597656, 71.074056 ], [ -117.246094, 71.074056 ], [ -117.246094, 71.130988 ], [ -116.894531, 71.130988 ], [ -116.894531, 71.187754 ], [ -116.542969, 71.187754 ], [ -116.542969, 71.244356 ], [ -116.191406, 71.244356 ], [ -116.191406, 71.300793 ], [ -117.949219, 71.300793 ], [ -117.949219, 71.357067 ], [ -118.300781, 71.357067 ], [ -118.300781, 71.413177 ], [ -118.652344, 71.413177 ], [ -118.652344, 71.469124 ], [ -119.003906, 71.469124 ], [ -119.003906, 71.524909 ], [ -119.355469, 71.524909 ], [ -119.355469, 71.635993 ], [ -119.179688, 71.635993 ], [ -119.179688, 71.746432 ], [ -119.003906, 71.746432 ], [ -119.003906, 71.910888 ], [ -118.828125, 71.910888 ], [ -118.828125, 72.073911 ], [ -118.652344, 72.073911 ], [ -118.652344, 72.181804 ], [ -118.476562, 72.181804 ], [ -118.476562, 72.342464 ], [ -118.300781, 72.342464 ], [ -118.300781, 72.501722 ], [ -118.125000, 72.501722 ], [ -118.125000, 72.607120 ], [ -117.949219, 72.607120 ], [ -117.949219, 72.711903 ], [ -117.773438, 72.711903 ], [ -117.773438, 72.764065 ], [ -117.421875, 72.764065 ], [ -117.421875, 72.816074 ], [ -117.246094, 72.816074 ], [ -117.246094, 72.867930 ], [ -117.070312, 72.867930 ], [ -117.070312, 72.919635 ], [ -116.718750, 72.919635 ], [ -116.718750, 72.971189 ], [ -116.542969, 72.971189 ], [ -116.542969, 73.022592 ], [ -116.367188, 73.022592 ], [ -116.367188, 73.073844 ], [ -116.015625, 73.073844 ], [ -116.015625, 73.124945 ], [ -115.839844, 73.124945 ], [ -115.839844, 73.175897 ], [ -115.664062, 73.175897 ], [ -115.664062, 73.226700 ], [ -115.312500, 73.226700 ], [ -115.312500, 73.277353 ], [ -114.785156, 73.277353 ] ] ], [ [ [ -116.542969, 73.277353 ], [ -116.542969, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.175897 ], [ -116.894531, 73.175897 ], [ -116.894531, 73.124945 ], [ -117.070312, 73.124945 ], [ -117.070312, 73.073844 ], [ -117.246094, 73.073844 ], [ -117.246094, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.971189 ], [ -117.597656, 72.971189 ], [ -117.597656, 72.919635 ], [ -117.773438, 72.919635 ], [ -117.773438, 72.867930 ], [ -117.949219, 72.867930 ], [ -117.949219, 72.816074 ], [ -118.125000, 72.816074 ], [ -118.125000, 72.764065 ], [ -118.300781, 72.764065 ], [ -118.300781, 72.711903 ], [ -118.476562, 72.711903 ], [ -118.476562, 72.659588 ], [ -118.652344, 72.659588 ], [ -118.652344, 72.607120 ], [ -118.828125, 72.607120 ], [ -118.828125, 72.554498 ], [ -119.003906, 72.554498 ], [ -119.003906, 72.501722 ], [ -119.179688, 72.501722 ], [ -119.179688, 72.448792 ], [ -119.355469, 72.448792 ], [ -119.355469, 72.342464 ], [ -119.531250, 72.342464 ], [ -119.531250, 72.235514 ], [ -119.707031, 72.235514 ], [ -119.707031, 72.127936 ], [ -119.882812, 72.127936 ], [ -119.882812, 72.019729 ], [ -120.058594, 72.019729 ], [ -120.058594, 71.910888 ], [ -120.234375, 71.910888 ], [ -120.234375, 71.801410 ], [ -120.410156, 71.801410 ], [ -120.410156, 71.300793 ], [ -120.761719, 71.300793 ], [ -120.761719, 71.244356 ], [ -121.113281, 71.244356 ], [ -121.113281, 71.187754 ], [ -121.464844, 71.187754 ], [ -121.464844, 71.130988 ], [ -121.816406, 71.130988 ], [ -121.816406, 71.074056 ], [ -122.167969, 71.074056 ], [ -122.167969, 71.016960 ], [ -122.519531, 71.016960 ], [ -122.519531, 70.959697 ], [ -122.871094, 70.959697 ], [ -122.871094, 70.902268 ], [ -123.046875, 70.902268 ], [ -123.046875, 70.959697 ], [ -123.222656, 70.959697 ], [ -123.222656, 71.130988 ], [ -123.398438, 71.130988 ], [ -123.398438, 71.244356 ], [ -123.574219, 71.244356 ], [ -123.574219, 71.357067 ], [ -123.750000, 71.357067 ], [ -123.750000, 71.413177 ], [ -124.101562, 71.413177 ], [ -124.101562, 71.469124 ], [ -124.277344, 71.469124 ], [ -124.277344, 71.524909 ], [ -124.628906, 71.524909 ], [ -124.628906, 71.580532 ], [ -124.804688, 71.580532 ], [ -124.804688, 71.635993 ], [ -124.980469, 71.635993 ], [ -124.980469, 71.691293 ], [ -125.332031, 71.691293 ], [ -125.332031, 71.746432 ], [ -125.507812, 71.746432 ], [ -125.507812, 71.801410 ], [ -125.859375, 71.801410 ], [ -125.859375, 71.965388 ], [ -125.683594, 71.965388 ], [ -125.683594, 72.181804 ], [ -125.507812, 72.181804 ], [ -125.507812, 72.342464 ], [ -125.332031, 72.342464 ], [ -125.332031, 72.554498 ], [ -125.156250, 72.554498 ], [ -125.156250, 72.711903 ], [ -124.980469, 72.711903 ], [ -124.980469, 72.919635 ], [ -124.804688, 72.919635 ], [ -124.804688, 73.073844 ], [ -124.628906, 73.073844 ], [ -124.628906, 73.175897 ], [ -124.453125, 73.175897 ], [ -124.453125, 73.277353 ], [ -116.542969, 73.277353 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.933594, 74.019543 ], [ -91.582031, 74.019543 ], [ -91.582031, 73.971078 ], [ -94.921875, 73.971078 ], [ -94.921875, 74.019543 ], [ -94.746094, 74.019543 ], [ -94.746094, 74.067866 ], [ -94.570312, 74.067866 ], [ -94.570312, 74.116047 ], [ -92.285156, 74.116047 ], [ -92.285156, 74.067866 ], [ -91.933594, 74.067866 ], [ -91.933594, 74.019543 ] ] ], [ [ [ -94.746094, 77.039418 ], [ -94.570312, 77.039418 ], [ -94.570312, 76.999935 ], [ -94.394531, 76.999935 ], [ -94.394531, 76.960334 ], [ -94.218750, 76.960334 ], [ -94.218750, 76.920614 ], [ -94.042969, 76.920614 ], [ -94.042969, 76.840816 ], [ -93.867188, 76.840816 ], [ -93.867188, 76.800739 ], [ -93.691406, 76.800739 ], [ -93.691406, 76.760541 ], [ -91.582031, 76.760541 ], [ -91.582031, 76.720223 ], [ -91.406250, 76.720223 ], [ -91.406250, 76.639226 ], [ -91.230469, 76.639226 ], [ -91.230469, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.516819 ], [ -90.878906, 76.516819 ], [ -90.878906, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.310358 ], [ -90.878906, 76.310358 ], [ -90.878906, 76.142958 ], [ -91.054688, 76.142958 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.973553 ], [ -90.527344, 75.973553 ], [ -90.527344, 75.930885 ], [ -90.351562, 75.930885 ], [ -90.351562, 75.888091 ], [ -90.000000, 75.888091 ], [ -90.000000, 75.845169 ], [ -89.824219, 75.845169 ], [ -89.824219, 75.802118 ], [ -89.648438, 75.802118 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -89.121094, 75.628632 ], [ -89.121094, 74.449358 ], [ -89.648438, 74.449358 ], [ -89.648438, 74.496413 ], [ -90.175781, 74.496413 ], [ -90.175781, 74.543330 ], [ -90.527344, 74.543330 ], [ -90.527344, 74.590108 ], [ -90.878906, 74.590108 ], [ -90.878906, 74.636748 ], [ -91.230469, 74.636748 ], [ -91.230469, 74.683250 ], [ -91.582031, 74.683250 ], [ -91.582031, 74.729615 ], [ -91.933594, 74.729615 ], [ -91.933594, 74.775843 ], [ -92.285156, 74.775843 ], [ -92.285156, 74.821934 ], [ -92.460938, 74.821934 ], [ -92.460938, 74.959392 ], [ -92.636719, 74.959392 ], [ -92.636719, 75.230667 ], [ -92.812500, 75.230667 ], [ -92.812500, 75.888091 ], [ -92.988281, 75.888091 ], [ -92.988281, 75.973553 ], [ -93.164062, 75.973553 ], [ -93.164062, 76.058508 ], [ -93.339844, 76.058508 ], [ -93.339844, 76.100796 ], [ -93.515625, 76.100796 ], [ -93.515625, 76.184995 ], [ -93.691406, 76.184995 ], [ -93.691406, 76.268695 ], [ -93.867188, 76.268695 ], [ -93.867188, 76.310358 ], [ -94.394531, 76.310358 ], [ -94.394531, 76.351896 ], [ -95.097656, 76.351896 ], [ -95.097656, 76.393312 ], [ -95.800781, 76.393312 ], [ -95.800781, 76.434604 ], [ -96.152344, 76.434604 ], [ -96.152344, 76.475773 ], [ -96.328125, 76.475773 ], [ -96.328125, 76.516819 ], [ -96.503906, 76.516819 ], [ -96.503906, 76.598545 ], [ -96.679688, 76.598545 ], [ -96.679688, 76.639226 ], [ -96.855469, 76.639226 ], [ -96.855469, 76.679785 ], [ -97.031250, 76.679785 ], [ -97.031250, 76.720223 ], [ -97.207031, 76.720223 ], [ -97.207031, 76.800739 ], [ -97.031250, 76.800739 ], [ -97.031250, 76.960334 ], [ -96.855469, 76.960334 ], [ -96.855469, 77.078784 ], [ -96.679688, 77.078784 ], [ -96.679688, 77.157163 ], [ -96.328125, 77.157163 ], [ -96.328125, 77.118032 ], [ -95.273438, 77.118032 ], [ -95.273438, 77.078784 ], [ -94.746094, 77.078784 ], [ -94.746094, 77.039418 ] ] ], [ [ [ -94.570312, 75.453071 ], [ -94.394531, 75.453071 ], [ -94.394531, 75.364506 ], [ -94.218750, 75.364506 ], [ -94.218750, 75.275413 ], [ -94.042969, 75.275413 ], [ -94.042969, 75.185789 ], [ -93.867188, 75.185789 ], [ -93.867188, 75.004940 ], [ -93.691406, 75.004940 ], [ -93.691406, 74.867889 ], [ -93.867188, 74.867889 ], [ -93.867188, 74.775843 ], [ -94.042969, 74.775843 ], [ -94.042969, 74.636748 ], [ -94.218750, 74.636748 ], [ -94.218750, 74.590108 ], [ -94.746094, 74.590108 ], [ -94.746094, 74.636748 ], [ -95.449219, 74.636748 ], [ -95.449219, 74.683250 ], [ -95.800781, 74.683250 ], [ -95.800781, 74.729615 ], [ -96.152344, 74.729615 ], [ -96.152344, 74.775843 ], [ -96.328125, 74.775843 ], [ -96.328125, 74.821934 ], [ -96.503906, 74.821934 ], [ -96.503906, 74.867889 ], [ -96.855469, 74.867889 ], [ -96.855469, 74.959392 ], [ -96.679688, 74.959392 ], [ -96.679688, 75.140778 ], [ -96.503906, 75.140778 ], [ -96.503906, 75.275413 ], [ -96.328125, 75.275413 ], [ -96.328125, 75.364506 ], [ -96.152344, 75.364506 ], [ -96.152344, 75.408854 ], [ -95.800781, 75.408854 ], [ -95.800781, 75.453071 ], [ -95.625000, 75.453071 ], [ -95.625000, 75.497157 ], [ -95.449219, 75.497157 ], [ -95.449219, 75.541113 ], [ -95.097656, 75.541113 ], [ -95.097656, 75.584937 ], [ -94.746094, 75.584937 ], [ -94.746094, 75.497157 ], [ -94.570312, 75.497157 ], [ -94.570312, 75.453071 ] ] ], [ [ [ -98.085938, 76.434604 ], [ -97.910156, 76.434604 ], [ -97.910156, 76.310358 ], [ -97.734375, 76.310358 ], [ -97.734375, 75.541113 ], [ -97.910156, 75.541113 ], [ -97.910156, 75.185789 ], [ -98.085938, 75.185789 ], [ -98.085938, 75.004940 ], [ -98.437500, 75.004940 ], [ -98.437500, 74.959392 ], [ -99.316406, 74.959392 ], [ -99.316406, 74.913708 ], [ -100.195312, 74.913708 ], [ -100.195312, 74.959392 ], [ -100.546875, 74.959392 ], [ -100.546875, 75.004940 ], [ -100.898438, 75.004940 ], [ -100.898438, 75.628632 ], [ -101.601562, 75.628632 ], [ -101.601562, 75.584937 ], [ -102.480469, 75.584937 ], [ -102.480469, 76.351896 ], [ -102.128906, 76.351896 ], [ -102.128906, 76.310358 ], [ -101.250000, 76.310358 ], [ -101.250000, 76.351896 ], [ -101.074219, 76.351896 ], [ -101.074219, 76.393312 ], [ -100.898438, 76.393312 ], [ -100.898438, 76.434604 ], [ -100.722656, 76.434604 ], [ -100.722656, 76.475773 ], [ -100.546875, 76.475773 ], [ -100.546875, 76.516819 ], [ -100.371094, 76.516819 ], [ -100.371094, 76.557743 ], [ -100.195312, 76.557743 ], [ -100.195312, 76.598545 ], [ -100.019531, 76.598545 ], [ -100.019531, 76.639226 ], [ -99.492188, 76.639226 ], [ -99.492188, 76.598545 ], [ -98.613281, 76.598545 ], [ -98.613281, 76.639226 ], [ -98.261719, 76.639226 ], [ -98.261719, 76.516819 ], [ -98.085938, 76.516819 ], [ -98.085938, 76.434604 ] ] ], [ [ [ -106.523438, 75.973553 ], [ -105.820312, 75.973553 ], [ -105.820312, 75.715633 ], [ -105.644531, 75.715633 ], [ -105.644531, 75.408854 ], [ -105.820312, 75.408854 ], [ -105.820312, 75.275413 ], [ -105.996094, 75.275413 ], [ -105.996094, 75.185789 ], [ -106.171875, 75.185789 ], [ -106.171875, 75.050354 ], [ -106.347656, 75.050354 ], [ -106.347656, 75.004940 ], [ -106.875000, 75.004940 ], [ -106.875000, 76.016094 ], [ -106.523438, 76.016094 ], [ -106.523438, 75.973553 ] ] ], [ [ [ -89.121094, 76.475773 ], [ -89.472656, 76.475773 ], [ -89.472656, 76.720223 ], [ -89.648438, 76.720223 ], [ -89.648438, 76.960334 ], [ -89.296875, 76.960334 ], [ -89.296875, 76.999935 ], [ -89.121094, 76.999935 ], [ -89.121094, 76.475773 ] ] ], [ [ [ -95.625000, 77.804771 ], [ -94.394531, 77.804771 ], [ -94.394531, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.730282 ], [ -94.042969, 77.730282 ], [ -94.042969, 77.655346 ], [ -93.867188, 77.655346 ], [ -93.867188, 77.617709 ], [ -93.691406, 77.617709 ], [ -93.691406, 77.542096 ], [ -93.867188, 77.542096 ], [ -93.867188, 77.504119 ], [ -95.273438, 77.504119 ], [ -95.273438, 77.542096 ], [ -96.152344, 77.542096 ], [ -96.152344, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -96.503906, 77.767582 ], [ -96.503906, 77.841848 ], [ -95.625000, 77.841848 ], [ -95.625000, 77.804771 ] ] ], [ [ [ -98.085938, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.801980 ], [ -97.031250, 78.801980 ], [ -97.031250, 78.767792 ], [ -96.679688, 78.767792 ], [ -96.679688, 78.733501 ], [ -96.503906, 78.733501 ], [ -96.503906, 78.664608 ], [ -96.328125, 78.664608 ], [ -96.328125, 78.595299 ], [ -96.152344, 78.595299 ], [ -96.152344, 78.560488 ], [ -95.976562, 78.560488 ], [ -95.976562, 78.490552 ], [ -95.800781, 78.490552 ], [ -95.800781, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.242436 ], [ -95.800781, 78.242436 ], [ -95.800781, 78.025574 ], [ -96.152344, 78.025574 ], [ -96.152344, 77.989049 ], [ -96.328125, 77.989049 ], [ -96.328125, 77.952414 ], [ -96.679688, 77.952414 ], [ -96.679688, 77.915669 ], [ -96.855469, 77.915669 ], [ -96.855469, 77.878814 ], [ -97.207031, 77.878814 ], [ -97.207031, 77.841848 ], [ -97.558594, 77.841848 ], [ -97.558594, 77.915669 ], [ -97.734375, 77.915669 ], [ -97.734375, 77.989049 ], [ -97.910156, 77.989049 ], [ -97.910156, 78.061989 ], [ -98.085938, 78.061989 ], [ -98.085938, 78.134493 ], [ -98.261719, 78.134493 ], [ -98.261719, 78.278201 ], [ -98.437500, 78.278201 ], [ -98.437500, 78.384855 ], [ -98.613281, 78.384855 ], [ -98.613281, 78.870048 ], [ -98.085938, 78.870048 ], [ -98.085938, 78.836065 ] ] ], [ [ [ -100.546875, 78.560488 ], [ -100.371094, 78.560488 ], [ -100.371094, 78.455425 ], [ -100.195312, 78.455425 ], [ -100.195312, 78.349411 ], [ -100.019531, 78.349411 ], [ -100.019531, 78.206563 ], [ -99.843750, 78.206563 ], [ -99.843750, 77.989049 ], [ -99.667969, 77.989049 ], [ -99.667969, 77.915669 ], [ -100.019531, 77.915669 ], [ -100.019531, 77.952414 ], [ -100.546875, 77.952414 ], [ -100.546875, 77.989049 ], [ -101.074219, 77.989049 ], [ -101.074219, 78.025574 ], [ -101.425781, 78.025574 ], [ -101.425781, 78.061989 ], [ -101.601562, 78.061989 ], [ -101.601562, 78.098296 ], [ -101.777344, 78.098296 ], [ -101.777344, 78.134493 ], [ -101.953125, 78.134493 ], [ -101.953125, 78.170582 ], [ -102.304688, 78.170582 ], [ -102.304688, 78.206563 ], [ -102.480469, 78.206563 ], [ -102.480469, 78.242436 ], [ -102.656250, 78.242436 ], [ -102.656250, 78.278201 ], [ -102.832031, 78.278201 ], [ -102.832031, 78.313860 ], [ -103.007812, 78.313860 ], [ -103.007812, 78.349411 ], [ -104.238281, 78.349411 ], [ -104.238281, 78.384855 ], [ -104.941406, 78.384855 ], [ -104.941406, 78.455425 ], [ -104.765625, 78.455425 ], [ -104.765625, 78.525573 ], [ -104.589844, 78.525573 ], [ -104.589844, 78.560488 ], [ -104.414062, 78.560488 ], [ -104.414062, 78.630006 ], [ -104.238281, 78.630006 ], [ -104.238281, 78.664608 ], [ -104.414062, 78.664608 ], [ -104.414062, 78.699106 ], [ -104.589844, 78.699106 ], [ -104.589844, 78.733501 ], [ -104.765625, 78.733501 ], [ -104.765625, 78.767792 ], [ -104.941406, 78.767792 ], [ -104.941406, 78.801980 ], [ -105.117188, 78.801980 ], [ -105.117188, 78.836065 ], [ -105.292969, 78.836065 ], [ -105.292969, 78.870048 ], [ -105.468750, 78.870048 ], [ -105.468750, 79.302640 ], [ -105.292969, 79.302640 ], [ -105.292969, 79.269962 ], [ -104.765625, 79.269962 ], [ -104.765625, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.183594, 79.138260 ], [ -103.183594, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.480469, 79.038437 ], [ -102.480469, 79.004962 ], [ -102.304688, 79.004962 ], [ -102.304688, 78.971386 ], [ -102.128906, 78.971386 ], [ -102.128906, 78.937708 ], [ -101.777344, 78.937708 ], [ -101.777344, 78.903929 ], [ -101.601562, 78.903929 ], [ -101.601562, 78.870048 ], [ -101.425781, 78.870048 ], [ -101.425781, 78.836065 ], [ -101.074219, 78.836065 ], [ -101.074219, 78.801980 ], [ -100.898438, 78.801980 ], [ -100.898438, 78.733501 ], [ -100.722656, 78.733501 ], [ -100.722656, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.560488 ] ] ], [ [ [ -92.109375, 78.278201 ], [ -92.109375, 78.313860 ], [ -92.636719, 78.313860 ], [ -92.636719, 78.349411 ], [ -92.812500, 78.349411 ], [ -92.812500, 78.384855 ], [ -92.988281, 78.384855 ], [ -92.988281, 78.455425 ], [ -93.164062, 78.455425 ], [ -93.164062, 78.525573 ], [ -93.339844, 78.525573 ], [ -93.339844, 78.595299 ], [ -93.515625, 78.595299 ], [ -93.515625, 78.664608 ], [ -93.691406, 78.664608 ], [ -93.691406, 78.733501 ], [ -93.867188, 78.733501 ], [ -93.867188, 79.138260 ], [ -93.691406, 79.138260 ], [ -93.691406, 79.204309 ], [ -93.515625, 79.204309 ], [ -93.515625, 79.269962 ], [ -93.339844, 79.269962 ], [ -93.339844, 79.335219 ], [ -89.121094, 79.335219 ], [ -89.121094, 78.278201 ], [ -89.472656, 78.278201 ], [ -89.472656, 78.242436 ], [ -90.351562, 78.242436 ], [ -90.351562, 78.206563 ], [ -91.230469, 78.206563 ], [ -91.230469, 78.242436 ], [ -91.757812, 78.242436 ], [ -91.757812, 78.278201 ], [ -92.109375, 78.278201 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.285156, 74.116047 ], [ -92.285156, 74.067866 ], [ -91.933594, 74.067866 ], [ -91.933594, 74.019543 ], [ -91.582031, 74.019543 ], [ -91.582031, 73.971078 ], [ -94.921875, 73.971078 ], [ -94.921875, 74.019543 ], [ -94.746094, 74.019543 ], [ -94.746094, 74.067866 ], [ -94.570312, 74.067866 ], [ -94.570312, 74.116047 ], [ -92.285156, 74.116047 ] ] ], [ [ [ -96.328125, 77.157163 ], [ -96.328125, 77.118032 ], [ -95.273438, 77.118032 ], [ -95.273438, 77.078784 ], [ -94.746094, 77.078784 ], [ -94.746094, 77.039418 ], [ -94.570312, 77.039418 ], [ -94.570312, 76.999935 ], [ -94.394531, 76.999935 ], [ -94.394531, 76.960334 ], [ -94.218750, 76.960334 ], [ -94.218750, 76.920614 ], [ -94.042969, 76.920614 ], [ -94.042969, 76.840816 ], [ -93.867188, 76.840816 ], [ -93.867188, 76.800739 ], [ -93.691406, 76.800739 ], [ -93.691406, 76.760541 ], [ -91.582031, 76.760541 ], [ -91.582031, 76.720223 ], [ -91.406250, 76.720223 ], [ -91.406250, 76.639226 ], [ -91.230469, 76.639226 ], [ -91.230469, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.516819 ], [ -90.878906, 76.516819 ], [ -90.878906, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.310358 ], [ -90.878906, 76.310358 ], [ -90.878906, 76.142958 ], [ -91.054688, 76.142958 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.973553 ], [ -90.527344, 75.973553 ], [ -90.527344, 75.930885 ], [ -90.351562, 75.930885 ], [ -90.351562, 75.888091 ], [ -90.000000, 75.888091 ], [ -90.000000, 75.845169 ], [ -89.824219, 75.845169 ], [ -89.824219, 75.802118 ], [ -89.648438, 75.802118 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -89.121094, 75.628632 ], [ -89.121094, 74.449358 ], [ -89.648438, 74.449358 ], [ -89.648438, 74.496413 ], [ -90.175781, 74.496413 ], [ -90.175781, 74.543330 ], [ -90.527344, 74.543330 ], [ -90.527344, 74.590108 ], [ -90.878906, 74.590108 ], [ -90.878906, 74.636748 ], [ -91.230469, 74.636748 ], [ -91.230469, 74.683250 ], [ -91.582031, 74.683250 ], [ -91.582031, 74.729615 ], [ -91.933594, 74.729615 ], [ -91.933594, 74.775843 ], [ -92.285156, 74.775843 ], [ -92.285156, 74.821934 ], [ -92.460938, 74.821934 ], [ -92.460938, 74.959392 ], [ -92.636719, 74.959392 ], [ -92.636719, 75.230667 ], [ -92.812500, 75.230667 ], [ -92.812500, 75.888091 ], [ -92.988281, 75.888091 ], [ -92.988281, 75.973553 ], [ -93.164062, 75.973553 ], [ -93.164062, 76.058508 ], [ -93.339844, 76.058508 ], [ -93.339844, 76.100796 ], [ -93.515625, 76.100796 ], [ -93.515625, 76.184995 ], [ -93.691406, 76.184995 ], [ -93.691406, 76.268695 ], [ -93.867188, 76.268695 ], [ -93.867188, 76.310358 ], [ -94.394531, 76.310358 ], [ -94.394531, 76.351896 ], [ -95.097656, 76.351896 ], [ -95.097656, 76.393312 ], [ -95.800781, 76.393312 ], [ -95.800781, 76.434604 ], [ -96.152344, 76.434604 ], [ -96.152344, 76.475773 ], [ -96.328125, 76.475773 ], [ -96.328125, 76.516819 ], [ -96.503906, 76.516819 ], [ -96.503906, 76.598545 ], [ -96.679688, 76.598545 ], [ -96.679688, 76.639226 ], [ -96.855469, 76.639226 ], [ -96.855469, 76.679785 ], [ -97.031250, 76.679785 ], [ -97.031250, 76.720223 ], [ -97.207031, 76.720223 ], [ -97.207031, 76.800739 ], [ -97.031250, 76.800739 ], [ -97.031250, 76.960334 ], [ -96.855469, 76.960334 ], [ -96.855469, 77.078784 ], [ -96.679688, 77.078784 ], [ -96.679688, 77.157163 ], [ -96.328125, 77.157163 ] ] ], [ [ [ -94.746094, 75.584937 ], [ -94.746094, 75.497157 ], [ -94.570312, 75.497157 ], [ -94.570312, 75.453071 ], [ -94.394531, 75.453071 ], [ -94.394531, 75.364506 ], [ -94.218750, 75.364506 ], [ -94.218750, 75.275413 ], [ -94.042969, 75.275413 ], [ -94.042969, 75.185789 ], [ -93.867188, 75.185789 ], [ -93.867188, 75.004940 ], [ -93.691406, 75.004940 ], [ -93.691406, 74.867889 ], [ -93.867188, 74.867889 ], [ -93.867188, 74.775843 ], [ -94.042969, 74.775843 ], [ -94.042969, 74.636748 ], [ -94.218750, 74.636748 ], [ -94.218750, 74.590108 ], [ -94.746094, 74.590108 ], [ -94.746094, 74.636748 ], [ -95.449219, 74.636748 ], [ -95.449219, 74.683250 ], [ -95.800781, 74.683250 ], [ -95.800781, 74.729615 ], [ -96.152344, 74.729615 ], [ -96.152344, 74.775843 ], [ -96.328125, 74.775843 ], [ -96.328125, 74.821934 ], [ -96.503906, 74.821934 ], [ -96.503906, 74.867889 ], [ -96.855469, 74.867889 ], [ -96.855469, 74.959392 ], [ -96.679688, 74.959392 ], [ -96.679688, 75.140778 ], [ -96.503906, 75.140778 ], [ -96.503906, 75.275413 ], [ -96.328125, 75.275413 ], [ -96.328125, 75.364506 ], [ -96.152344, 75.364506 ], [ -96.152344, 75.408854 ], [ -95.800781, 75.408854 ], [ -95.800781, 75.453071 ], [ -95.625000, 75.453071 ], [ -95.625000, 75.497157 ], [ -95.449219, 75.497157 ], [ -95.449219, 75.541113 ], [ -95.097656, 75.541113 ], [ -95.097656, 75.584937 ], [ -94.746094, 75.584937 ] ] ], [ [ [ -98.261719, 76.639226 ], [ -98.261719, 76.516819 ], [ -98.085938, 76.516819 ], [ -98.085938, 76.434604 ], [ -97.910156, 76.434604 ], [ -97.910156, 76.310358 ], [ -97.734375, 76.310358 ], [ -97.734375, 75.541113 ], [ -97.910156, 75.541113 ], [ -97.910156, 75.185789 ], [ -98.085938, 75.185789 ], [ -98.085938, 75.004940 ], [ -98.437500, 75.004940 ], [ -98.437500, 74.959392 ], [ -99.316406, 74.959392 ], [ -99.316406, 74.913708 ], [ -100.195312, 74.913708 ], [ -100.195312, 74.959392 ], [ -100.546875, 74.959392 ], [ -100.546875, 75.004940 ], [ -100.898438, 75.004940 ], [ -100.898438, 75.628632 ], [ -101.601562, 75.628632 ], [ -101.601562, 75.584937 ], [ -102.480469, 75.584937 ], [ -102.480469, 76.351896 ], [ -102.128906, 76.351896 ], [ -102.128906, 76.310358 ], [ -101.250000, 76.310358 ], [ -101.250000, 76.351896 ], [ -101.074219, 76.351896 ], [ -101.074219, 76.393312 ], [ -100.898438, 76.393312 ], [ -100.898438, 76.434604 ], [ -100.722656, 76.434604 ], [ -100.722656, 76.475773 ], [ -100.546875, 76.475773 ], [ -100.546875, 76.516819 ], [ -100.371094, 76.516819 ], [ -100.371094, 76.557743 ], [ -100.195312, 76.557743 ], [ -100.195312, 76.598545 ], [ -100.019531, 76.598545 ], [ -100.019531, 76.639226 ], [ -99.492188, 76.639226 ], [ -99.492188, 76.598545 ], [ -98.613281, 76.598545 ], [ -98.613281, 76.639226 ], [ -98.261719, 76.639226 ] ] ], [ [ [ -106.523438, 76.016094 ], [ -106.523438, 75.973553 ], [ -105.820312, 75.973553 ], [ -105.820312, 75.715633 ], [ -105.644531, 75.715633 ], [ -105.644531, 75.408854 ], [ -105.820312, 75.408854 ], [ -105.820312, 75.275413 ], [ -105.996094, 75.275413 ], [ -105.996094, 75.185789 ], [ -106.171875, 75.185789 ], [ -106.171875, 75.050354 ], [ -106.347656, 75.050354 ], [ -106.347656, 75.004940 ], [ -106.875000, 75.004940 ], [ -106.875000, 76.016094 ], [ -106.523438, 76.016094 ] ] ], [ [ [ -89.121094, 76.999935 ], [ -89.121094, 76.475773 ], [ -89.472656, 76.475773 ], [ -89.472656, 76.720223 ], [ -89.648438, 76.720223 ], [ -89.648438, 76.960334 ], [ -89.296875, 76.960334 ], [ -89.296875, 76.999935 ], [ -89.121094, 76.999935 ] ] ], [ [ [ -95.625000, 77.841848 ], [ -95.625000, 77.804771 ], [ -94.394531, 77.804771 ], [ -94.394531, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.730282 ], [ -94.042969, 77.730282 ], [ -94.042969, 77.655346 ], [ -93.867188, 77.655346 ], [ -93.867188, 77.617709 ], [ -93.691406, 77.617709 ], [ -93.691406, 77.542096 ], [ -93.867188, 77.504119 ], [ -95.273438, 77.504119 ], [ -95.273438, 77.542096 ], [ -96.152344, 77.542096 ], [ -96.152344, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -96.503906, 77.767582 ], [ -96.503906, 77.841848 ], [ -95.625000, 77.841848 ] ] ], [ [ [ -98.085938, 78.870048 ], [ -98.085938, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.801980 ], [ -97.031250, 78.801980 ], [ -97.031250, 78.767792 ], [ -96.679688, 78.767792 ], [ -96.679688, 78.733501 ], [ -96.503906, 78.733501 ], [ -96.503906, 78.664608 ], [ -96.328125, 78.664608 ], [ -96.328125, 78.595299 ], [ -96.152344, 78.595299 ], [ -96.152344, 78.560488 ], [ -95.976562, 78.560488 ], [ -95.976562, 78.490552 ], [ -95.800781, 78.490552 ], [ -95.800781, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.242436 ], [ -95.800781, 78.242436 ], [ -95.800781, 78.025574 ], [ -96.152344, 78.025574 ], [ -96.152344, 77.989049 ], [ -96.328125, 77.989049 ], [ -96.328125, 77.952414 ], [ -96.679688, 77.952414 ], [ -96.679688, 77.915669 ], [ -96.855469, 77.915669 ], [ -96.855469, 77.878814 ], [ -97.207031, 77.878814 ], [ -97.207031, 77.841848 ], [ -97.558594, 77.841848 ], [ -97.558594, 77.915669 ], [ -97.734375, 77.915669 ], [ -97.734375, 77.989049 ], [ -97.910156, 77.989049 ], [ -97.910156, 78.061989 ], [ -98.085938, 78.061989 ], [ -98.085938, 78.134493 ], [ -98.261719, 78.134493 ], [ -98.261719, 78.278201 ], [ -98.437500, 78.278201 ], [ -98.437500, 78.384855 ], [ -98.613281, 78.384855 ], [ -98.613281, 78.870048 ], [ -98.085938, 78.870048 ] ] ], [ [ [ -105.292969, 79.302640 ], [ -105.292969, 79.269962 ], [ -104.765625, 79.269962 ], [ -104.765625, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.183594, 79.138260 ], [ -103.183594, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.480469, 79.038437 ], [ -102.480469, 79.004962 ], [ -102.304688, 79.004962 ], [ -102.304688, 78.971386 ], [ -102.128906, 78.971386 ], [ -102.128906, 78.937708 ], [ -101.777344, 78.937708 ], [ -101.777344, 78.903929 ], [ -101.601562, 78.903929 ], [ -101.601562, 78.870048 ], [ -101.425781, 78.870048 ], [ -101.425781, 78.836065 ], [ -101.074219, 78.836065 ], [ -101.074219, 78.801980 ], [ -100.898438, 78.801980 ], [ -100.898438, 78.733501 ], [ -100.722656, 78.733501 ], [ -100.722656, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.560488 ], [ -100.371094, 78.560488 ], [ -100.371094, 78.455425 ], [ -100.195312, 78.455425 ], [ -100.195312, 78.349411 ], [ -100.019531, 78.349411 ], [ -100.019531, 78.206563 ], [ -99.843750, 78.206563 ], [ -99.843750, 77.989049 ], [ -99.667969, 77.989049 ], [ -99.667969, 77.915669 ], [ -100.019531, 77.915669 ], [ -100.019531, 77.952414 ], [ -100.546875, 77.952414 ], [ -100.546875, 77.989049 ], [ -101.074219, 77.989049 ], [ -101.074219, 78.025574 ], [ -101.425781, 78.025574 ], [ -101.425781, 78.061989 ], [ -101.601562, 78.061989 ], [ -101.601562, 78.098296 ], [ -101.777344, 78.098296 ], [ -101.777344, 78.134493 ], [ -101.953125, 78.134493 ], [ -101.953125, 78.170582 ], [ -102.304688, 78.170582 ], [ -102.304688, 78.206563 ], [ -102.480469, 78.206563 ], [ -102.480469, 78.242436 ], [ -102.656250, 78.242436 ], [ -102.656250, 78.278201 ], [ -102.832031, 78.278201 ], [ -102.832031, 78.313860 ], [ -103.007812, 78.313860 ], [ -103.007812, 78.349411 ], [ -104.238281, 78.349411 ], [ -104.238281, 78.384855 ], [ -104.941406, 78.384855 ], [ -104.941406, 78.455425 ], [ -104.765625, 78.455425 ], [ -104.765625, 78.525573 ], [ -104.589844, 78.525573 ], [ -104.589844, 78.560488 ], [ -104.414062, 78.560488 ], [ -104.414062, 78.630006 ], [ -104.238281, 78.630006 ], [ -104.238281, 78.664608 ], [ -104.414062, 78.664608 ], [ -104.414062, 78.699106 ], [ -104.589844, 78.699106 ], [ -104.589844, 78.733501 ], [ -104.765625, 78.733501 ], [ -104.765625, 78.767792 ], [ -104.941406, 78.767792 ], [ -104.941406, 78.801980 ], [ -105.117188, 78.801980 ], [ -105.117188, 78.836065 ], [ -105.292969, 78.836065 ], [ -105.292969, 78.870048 ], [ -105.468750, 78.870048 ], [ -105.468750, 79.302640 ], [ -105.292969, 79.302640 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.278201 ], [ -89.472656, 78.278201 ], [ -89.472656, 78.242436 ], [ -90.351562, 78.242436 ], [ -90.351562, 78.206563 ], [ -91.230469, 78.206563 ], [ -91.230469, 78.242436 ], [ -91.757812, 78.242436 ], [ -91.757812, 78.278201 ], [ -92.109375, 78.278201 ], [ -92.109375, 78.313860 ], [ -92.636719, 78.313860 ], [ -92.636719, 78.349411 ], [ -92.812500, 78.349411 ], [ -92.812500, 78.384855 ], [ -92.988281, 78.384855 ], [ -92.988281, 78.455425 ], [ -93.164062, 78.455425 ], [ -93.164062, 78.525573 ], [ -93.339844, 78.525573 ], [ -93.339844, 78.595299 ], [ -93.515625, 78.595299 ], [ -93.515625, 78.664608 ], [ -93.691406, 78.664608 ], [ -93.691406, 78.733501 ], [ -93.867188, 78.733501 ], [ -93.867188, 79.138260 ], [ -93.691406, 79.138260 ], [ -93.691406, 79.204309 ], [ -93.515625, 79.204309 ], [ -93.515625, 79.269962 ], [ -93.339844, 79.269962 ], [ -93.339844, 79.335219 ], [ -89.121094, 79.335219 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.218750, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.691293 ], [ -93.691406, 71.691293 ], [ -93.691406, 71.635993 ], [ -93.515625, 71.635993 ], [ -93.515625, 71.524909 ], [ -93.339844, 71.524909 ], [ -93.339844, 71.469124 ], [ -93.164062, 71.469124 ], [ -93.164062, 71.413177 ], [ -92.988281, 71.413177 ], [ -92.988281, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 71.187754 ], [ -92.636719, 71.187754 ], [ -92.636719, 71.130988 ], [ -96.328125, 71.130988 ], [ -96.328125, 71.244356 ], [ -96.152344, 71.244356 ], [ -96.152344, 71.357067 ], [ -95.976562, 71.357067 ], [ -95.976562, 71.469124 ], [ -95.800781, 71.469124 ], [ -95.800781, 71.580532 ], [ -95.625000, 71.580532 ], [ -95.625000, 71.691293 ], [ -95.449219, 71.691293 ], [ -95.449219, 71.801410 ], [ -95.273438, 71.801410 ], [ -95.273438, 71.910888 ], [ -95.097656, 71.910888 ], [ -95.097656, 71.856229 ], [ -94.746094, 71.856229 ], [ -94.746094, 71.801410 ], [ -94.218750, 71.801410 ], [ -94.218750, 71.746432 ] ] ], [ [ [ -106.523438, 73.022592 ], [ -106.347656, 73.022592 ], [ -106.347656, 72.971189 ], [ -106.171875, 72.971189 ], [ -106.171875, 72.867930 ], [ -105.996094, 72.867930 ], [ -105.996094, 72.816074 ], [ -105.820312, 72.816074 ], [ -105.820312, 72.764065 ], [ -105.644531, 72.764065 ], [ -105.644531, 72.659588 ], [ -105.468750, 72.659588 ], [ -105.468750, 72.501722 ], [ -105.292969, 72.501722 ], [ -105.292969, 72.289067 ], [ -105.117188, 72.289067 ], [ -105.117188, 72.019729 ], [ -104.941406, 72.019729 ], [ -104.941406, 71.801410 ], [ -104.765625, 71.801410 ], [ -104.765625, 71.524909 ], [ -104.589844, 71.524909 ], [ -104.589844, 71.187754 ], [ -104.414062, 71.187754 ], [ -104.414062, 71.130988 ], [ -106.875000, 71.130988 ], [ -106.875000, 73.073844 ], [ -106.523438, 73.073844 ], [ -106.523438, 73.022592 ] ] ], [ [ [ -89.121094, 71.244356 ], [ -89.824219, 71.244356 ], [ -89.824219, 71.469124 ], [ -90.000000, 71.469124 ], [ -90.000000, 71.965388 ], [ -90.175781, 71.965388 ], [ -90.175781, 72.342464 ], [ -90.000000, 72.342464 ], [ -90.000000, 72.554498 ], [ -89.824219, 72.554498 ], [ -89.824219, 72.764065 ], [ -89.648438, 72.764065 ], [ -89.648438, 72.971189 ], [ -89.472656, 72.971189 ], [ -89.472656, 73.124945 ], [ -89.296875, 73.124945 ], [ -89.296875, 73.226700 ], [ -89.121094, 73.226700 ], [ -89.121094, 71.244356 ] ] ], [ [ [ -99.667969, 73.677264 ], [ -99.316406, 73.677264 ], [ -99.316406, 73.627789 ], [ -98.789062, 73.627789 ], [ -98.789062, 73.677264 ], [ -98.085938, 73.677264 ], [ -98.085938, 73.726595 ], [ -97.558594, 73.726595 ], [ -97.558594, 73.775780 ], [ -97.382812, 73.775780 ], [ -97.382812, 73.627789 ], [ -97.207031, 73.627789 ], [ -97.207031, 73.428424 ], [ -97.382812, 73.428424 ], [ -97.382812, 73.327858 ], [ -97.558594, 73.327858 ], [ -97.558594, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 73.124945 ], [ -97.910156, 73.124945 ], [ -97.910156, 73.022592 ], [ -98.085938, 73.022592 ], [ -98.085938, 72.919635 ], [ -97.910156, 72.919635 ], [ -97.910156, 72.867930 ], [ -97.734375, 72.867930 ], [ -97.734375, 72.816074 ], [ -97.558594, 72.816074 ], [ -97.558594, 72.764065 ], [ -97.207031, 72.764065 ], [ -97.207031, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.659588 ], [ -96.855469, 72.659588 ], [ -96.855469, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 72.554498 ], [ -96.503906, 72.554498 ], [ -96.503906, 72.073911 ], [ -96.679688, 72.073911 ], [ -96.679688, 71.580532 ], [ -97.031250, 71.580532 ], [ -97.031250, 71.524909 ], [ -97.382812, 71.524909 ], [ -97.382812, 71.469124 ], [ -97.558594, 71.469124 ], [ -97.558594, 71.413177 ], [ -97.910156, 71.413177 ], [ -97.910156, 71.357067 ], [ -98.261719, 71.357067 ], [ -98.261719, 71.300793 ], [ -98.964844, 71.300793 ], [ -98.964844, 71.357067 ], [ -99.492188, 71.357067 ], [ -99.492188, 71.469124 ], [ -99.667969, 71.469124 ], [ -99.667969, 71.580532 ], [ -99.843750, 71.580532 ], [ -99.843750, 71.691293 ], [ -100.019531, 71.691293 ], [ -100.019531, 71.746432 ], [ -100.195312, 71.746432 ], [ -100.195312, 71.801410 ], [ -100.371094, 71.801410 ], [ -100.371094, 71.856229 ], [ -100.546875, 71.856229 ], [ -100.546875, 71.910888 ], [ -100.722656, 71.910888 ], [ -100.722656, 71.965388 ], [ -100.898438, 71.965388 ], [ -100.898438, 72.019729 ], [ -101.074219, 72.019729 ], [ -101.074219, 72.073911 ], [ -101.250000, 72.073911 ], [ -101.250000, 72.127936 ], [ -101.425781, 72.127936 ], [ -101.425781, 72.181804 ], [ -101.601562, 72.181804 ], [ -101.601562, 72.235514 ], [ -101.777344, 72.235514 ], [ -101.777344, 72.289067 ], [ -101.953125, 72.289067 ], [ -101.953125, 72.342464 ], [ -102.128906, 72.342464 ], [ -102.128906, 72.395706 ], [ -102.304688, 72.395706 ], [ -102.304688, 72.448792 ], [ -102.480469, 72.448792 ], [ -102.480469, 72.816074 ], [ -102.128906, 72.816074 ], [ -102.128906, 72.764065 ], [ -101.074219, 72.764065 ], [ -101.074219, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.816074 ], [ -100.722656, 72.816074 ], [ -100.722656, 72.919635 ], [ -100.898438, 72.919635 ], [ -100.898438, 73.022592 ], [ -101.074219, 73.022592 ], [ -101.074219, 73.124945 ], [ -101.250000, 73.124945 ], [ -101.250000, 73.226700 ], [ -101.425781, 73.226700 ], [ -101.425781, 73.327858 ], [ -101.601562, 73.327858 ], [ -101.601562, 73.378215 ], [ -101.425781, 73.378215 ], [ -101.425781, 73.428424 ], [ -101.250000, 73.428424 ], [ -101.250000, 73.528399 ], [ -101.074219, 73.528399 ], [ -101.074219, 73.578167 ], [ -100.898438, 73.578167 ], [ -100.898438, 73.627789 ], [ -100.722656, 73.627789 ], [ -100.722656, 73.726595 ], [ -100.546875, 73.726595 ], [ -100.546875, 73.775780 ], [ -100.019531, 73.775780 ], [ -100.019531, 73.726595 ], [ -99.667969, 73.726595 ], [ -99.667969, 73.677264 ] ] ], [ [ [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ], [ -90.527344, 73.775780 ], [ -90.703125, 73.775780 ], [ -90.703125, 73.677264 ], [ -90.878906, 73.677264 ], [ -90.878906, 73.578167 ], [ -91.054688, 73.578167 ], [ -91.054688, 73.478485 ], [ -91.230469, 73.478485 ], [ -91.230469, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.226700 ], [ -91.582031, 73.226700 ], [ -91.582031, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 73.022592 ], [ -91.933594, 73.022592 ], [ -91.933594, 72.919635 ], [ -92.285156, 72.919635 ], [ -92.285156, 72.867930 ], [ -92.636719, 72.867930 ], [ -92.636719, 72.816074 ], [ -92.988281, 72.816074 ], [ -92.988281, 72.764065 ], [ -93.164062, 72.764065 ], [ -93.164062, 72.659588 ], [ -93.339844, 72.659588 ], [ -93.339844, 72.554498 ], [ -93.515625, 72.554498 ], [ -93.515625, 72.448792 ], [ -93.691406, 72.448792 ], [ -93.691406, 72.289067 ], [ -93.867188, 72.289067 ], [ -93.867188, 72.181804 ], [ -94.042969, 72.181804 ], [ -94.042969, 72.073911 ], [ -94.218750, 72.073911 ], [ -94.218750, 72.019729 ], [ -94.921875, 72.019729 ], [ -94.921875, 72.073911 ], [ -95.449219, 72.073911 ], [ -95.449219, 72.181804 ], [ -95.625000, 72.181804 ], [ -95.625000, 72.501722 ], [ -95.800781, 72.501722 ], [ -95.800781, 72.764065 ], [ -95.976562, 72.764065 ], [ -95.976562, 73.478485 ], [ -95.800781, 73.478485 ], [ -95.800781, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.775780 ], [ -95.449219, 73.775780 ], [ -95.449219, 73.873717 ], [ -95.273438, 73.873717 ], [ -95.273438, 73.922469 ], [ -95.097656, 73.922469 ], [ -95.097656, 73.971078 ], [ -91.230469, 73.971078 ], [ -91.230469, 73.922469 ], [ -90.878906, 73.922469 ], [ -90.878906, 73.873717 ] ] ], [ [ [ -105.117188, 73.528399 ], [ -104.765625, 73.528399 ], [ -104.765625, 73.478485 ], [ -104.589844, 73.478485 ], [ -104.589844, 73.428424 ], [ -104.414062, 73.428424 ], [ -104.414062, 73.327858 ], [ -104.589844, 73.327858 ], [ -104.589844, 73.226700 ], [ -104.765625, 73.226700 ], [ -104.765625, 73.073844 ], [ -104.941406, 73.073844 ], [ -104.941406, 72.919635 ], [ -105.117188, 72.919635 ], [ -105.117188, 72.816074 ], [ -105.292969, 72.816074 ], [ -105.292969, 72.764065 ], [ -105.468750, 72.764065 ], [ -105.468750, 72.867930 ], [ -105.644531, 72.867930 ], [ -105.644531, 72.919635 ], [ -105.820312, 72.919635 ], [ -105.820312, 73.022592 ], [ -105.996094, 73.022592 ], [ -105.996094, 73.124945 ], [ -106.171875, 73.124945 ], [ -106.171875, 73.175897 ], [ -106.347656, 73.175897 ], [ -106.347656, 73.277353 ], [ -106.523438, 73.277353 ], [ -106.523438, 73.327858 ], [ -106.699219, 73.327858 ], [ -106.699219, 73.428424 ], [ -106.875000, 73.428424 ], [ -106.875000, 73.478485 ], [ -106.699219, 73.478485 ], [ -106.699219, 73.528399 ], [ -106.523438, 73.528399 ], [ -106.523438, 73.578167 ], [ -105.820312, 73.578167 ], [ -105.820312, 73.627789 ], [ -105.292969, 73.627789 ], [ -105.292969, 73.578167 ], [ -105.117188, 73.578167 ], [ -105.117188, 73.528399 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -106.523438, 73.073844 ], [ -106.523438, 73.022592 ], [ -106.347656, 73.022592 ], [ -106.347656, 72.971189 ], [ -106.171875, 72.971189 ], [ -106.171875, 72.867930 ], [ -105.996094, 72.867930 ], [ -105.996094, 72.816074 ], [ -105.820312, 72.816074 ], [ -105.820312, 72.764065 ], [ -105.644531, 72.764065 ], [ -105.644531, 72.659588 ], [ -105.468750, 72.659588 ], [ -105.468750, 72.501722 ], [ -105.292969, 72.501722 ], [ -105.292969, 72.289067 ], [ -105.117188, 72.289067 ], [ -105.117188, 72.019729 ], [ -104.941406, 72.019729 ], [ -104.941406, 71.801410 ], [ -104.765625, 71.801410 ], [ -104.765625, 71.524909 ], [ -104.589844, 71.524909 ], [ -104.589844, 71.187754 ], [ -104.414062, 71.187754 ], [ -104.414062, 71.130988 ], [ -106.875000, 71.130988 ], [ -106.875000, 73.073844 ], [ -106.523438, 73.073844 ] ] ], [ [ [ -95.097656, 71.910888 ], [ -95.097656, 71.856229 ], [ -94.746094, 71.856229 ], [ -94.746094, 71.801410 ], [ -94.218750, 71.801410 ], [ -94.218750, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.691293 ], [ -93.691406, 71.691293 ], [ -93.691406, 71.635993 ], [ -93.515625, 71.635993 ], [ -93.515625, 71.524909 ], [ -93.339844, 71.524909 ], [ -93.339844, 71.469124 ], [ -93.164062, 71.469124 ], [ -93.164062, 71.413177 ], [ -92.988281, 71.413177 ], [ -92.988281, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 71.187754 ], [ -96.328125, 71.130988 ], [ -96.328125, 71.244356 ], [ -96.152344, 71.244356 ], [ -96.152344, 71.357067 ], [ -95.976562, 71.357067 ], [ -95.976562, 71.469124 ], [ -95.800781, 71.469124 ], [ -95.800781, 71.580532 ], [ -95.625000, 71.580532 ], [ -95.625000, 71.691293 ], [ -95.449219, 71.691293 ], [ -95.449219, 71.801410 ], [ -95.273438, 71.801410 ], [ -95.273438, 71.910888 ], [ -95.097656, 71.910888 ] ] ], [ [ [ -89.121094, 73.226700 ], [ -89.121094, 71.244356 ], [ -89.824219, 71.244356 ], [ -89.824219, 71.469124 ], [ -90.000000, 71.469124 ], [ -90.000000, 71.965388 ], [ -90.175781, 71.965388 ], [ -90.175781, 72.342464 ], [ -90.000000, 72.342464 ], [ -90.000000, 72.554498 ], [ -89.824219, 72.554498 ], [ -89.824219, 72.764065 ], [ -89.648438, 72.764065 ], [ -89.648438, 72.971189 ], [ -89.472656, 72.971189 ], [ -89.472656, 73.124945 ], [ -89.296875, 73.124945 ], [ -89.296875, 73.226700 ], [ -89.121094, 73.226700 ] ] ], [ [ [ -97.382812, 73.775780 ], [ -97.382812, 73.627789 ], [ -97.207031, 73.627789 ], [ -97.207031, 73.428424 ], [ -97.382812, 73.428424 ], [ -97.382812, 73.327858 ], [ -97.558594, 73.327858 ], [ -97.558594, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 73.124945 ], [ -97.910156, 73.124945 ], [ -97.910156, 73.022592 ], [ -98.085938, 73.022592 ], [ -98.085938, 72.919635 ], [ -97.910156, 72.919635 ], [ -97.910156, 72.867930 ], [ -97.734375, 72.867930 ], [ -97.734375, 72.816074 ], [ -97.558594, 72.816074 ], [ -97.558594, 72.764065 ], [ -97.207031, 72.764065 ], [ -97.207031, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.659588 ], [ -96.855469, 72.659588 ], [ -96.855469, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 72.554498 ], [ -96.503906, 72.554498 ], [ -96.503906, 72.073911 ], [ -96.679688, 72.073911 ], [ -96.679688, 71.580532 ], [ -97.031250, 71.580532 ], [ -97.031250, 71.524909 ], [ -97.382812, 71.524909 ], [ -97.382812, 71.469124 ], [ -97.558594, 71.469124 ], [ -97.558594, 71.413177 ], [ -97.910156, 71.413177 ], [ -97.910156, 71.357067 ], [ -98.261719, 71.357067 ], [ -98.261719, 71.300793 ], [ -98.964844, 71.300793 ], [ -98.964844, 71.357067 ], [ -99.492188, 71.357067 ], [ -99.492188, 71.469124 ], [ -99.667969, 71.469124 ], [ -99.667969, 71.580532 ], [ -99.843750, 71.580532 ], [ -99.843750, 71.691293 ], [ -100.019531, 71.691293 ], [ -100.019531, 71.746432 ], [ -100.195312, 71.746432 ], [ -100.195312, 71.801410 ], [ -100.371094, 71.801410 ], [ -100.371094, 71.856229 ], [ -100.546875, 71.856229 ], [ -100.546875, 71.910888 ], [ -100.722656, 71.910888 ], [ -100.722656, 71.965388 ], [ -100.898438, 71.965388 ], [ -100.898438, 72.019729 ], [ -101.074219, 72.019729 ], [ -101.074219, 72.073911 ], [ -101.250000, 72.073911 ], [ -101.250000, 72.127936 ], [ -101.425781, 72.127936 ], [ -101.425781, 72.181804 ], [ -101.601562, 72.181804 ], [ -101.601562, 72.235514 ], [ -101.777344, 72.235514 ], [ -101.777344, 72.289067 ], [ -101.953125, 72.289067 ], [ -101.953125, 72.342464 ], [ -102.128906, 72.342464 ], [ -102.128906, 72.395706 ], [ -102.304688, 72.395706 ], [ -102.304688, 72.448792 ], [ -102.480469, 72.448792 ], [ -102.480469, 72.816074 ], [ -102.128906, 72.816074 ], [ -102.128906, 72.764065 ], [ -101.074219, 72.764065 ], [ -101.074219, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.816074 ], [ -100.722656, 72.816074 ], [ -100.722656, 72.919635 ], [ -100.898438, 72.919635 ], [ -100.898438, 73.022592 ], [ -101.074219, 73.022592 ], [ -101.074219, 73.124945 ], [ -101.250000, 73.124945 ], [ -101.250000, 73.226700 ], [ -101.425781, 73.226700 ], [ -101.425781, 73.327858 ], [ -101.601562, 73.327858 ], [ -101.601562, 73.378215 ], [ -101.425781, 73.378215 ], [ -101.425781, 73.428424 ], [ -101.250000, 73.428424 ], [ -101.250000, 73.528399 ], [ -101.074219, 73.528399 ], [ -101.074219, 73.578167 ], [ -100.898438, 73.578167 ], [ -100.898438, 73.627789 ], [ -100.722656, 73.627789 ], [ -100.722656, 73.726595 ], [ -100.546875, 73.726595 ], [ -100.546875, 73.775780 ], [ -100.019531, 73.775780 ], [ -100.019531, 73.726595 ], [ -99.667969, 73.726595 ], [ -99.667969, 73.677264 ], [ -99.316406, 73.677264 ], [ -99.316406, 73.627789 ], [ -98.789062, 73.627789 ], [ -98.789062, 73.677264 ], [ -98.085938, 73.677264 ], [ -98.085938, 73.726595 ], [ -97.558594, 73.726595 ], [ -97.558594, 73.775780 ], [ -97.382812, 73.775780 ] ] ], [ [ [ -91.230469, 73.971078 ], [ -91.230469, 73.922469 ], [ -90.878906, 73.922469 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ], [ -90.527344, 73.775780 ], [ -90.703125, 73.775780 ], [ -90.703125, 73.677264 ], [ -90.878906, 73.677264 ], [ -90.878906, 73.578167 ], [ -91.054688, 73.578167 ], [ -91.054688, 73.478485 ], [ -91.230469, 73.478485 ], [ -91.230469, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.226700 ], [ -91.582031, 73.226700 ], [ -91.582031, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 73.022592 ], [ -91.933594, 73.022592 ], [ -91.933594, 72.919635 ], [ -92.285156, 72.919635 ], [ -92.285156, 72.867930 ], [ -92.636719, 72.867930 ], [ -92.636719, 72.816074 ], [ -92.988281, 72.816074 ], [ -92.988281, 72.764065 ], [ -93.164062, 72.764065 ], [ -93.164062, 72.659588 ], [ -93.339844, 72.659588 ], [ -93.339844, 72.554498 ], [ -93.515625, 72.554498 ], [ -93.515625, 72.448792 ], [ -93.691406, 72.448792 ], [ -93.691406, 72.289067 ], [ -93.867188, 72.289067 ], [ -93.867188, 72.181804 ], [ -94.042969, 72.181804 ], [ -94.042969, 72.073911 ], [ -94.218750, 72.073911 ], [ -94.218750, 72.019729 ], [ -94.921875, 72.019729 ], [ -94.921875, 72.073911 ], [ -95.449219, 72.073911 ], [ -95.449219, 72.181804 ], [ -95.625000, 72.181804 ], [ -95.625000, 72.501722 ], [ -95.800781, 72.501722 ], [ -95.800781, 72.764065 ], [ -95.976562, 72.764065 ], [ -95.976562, 73.478485 ], [ -95.800781, 73.478485 ], [ -95.800781, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.775780 ], [ -95.449219, 73.775780 ], [ -95.449219, 73.873717 ], [ -95.273438, 73.873717 ], [ -95.273438, 73.922469 ], [ -95.097656, 73.922469 ], [ -95.097656, 73.971078 ], [ -91.230469, 73.971078 ] ] ], [ [ [ -105.292969, 73.627789 ], [ -105.292969, 73.578167 ], [ -105.117188, 73.578167 ], [ -105.117188, 73.528399 ], [ -104.765625, 73.528399 ], [ -104.765625, 73.478485 ], [ -104.589844, 73.478485 ], [ -104.589844, 73.428424 ], [ -104.414062, 73.428424 ], [ -104.414062, 73.327858 ], [ -104.589844, 73.327858 ], [ -104.589844, 73.226700 ], [ -104.765625, 73.226700 ], [ -104.765625, 73.073844 ], [ -104.941406, 73.073844 ], [ -104.941406, 72.919635 ], [ -105.117188, 72.919635 ], [ -105.117188, 72.816074 ], [ -105.292969, 72.816074 ], [ -105.292969, 72.764065 ], [ -105.468750, 72.764065 ], [ -105.468750, 72.867930 ], [ -105.644531, 72.867930 ], [ -105.644531, 72.919635 ], [ -105.820312, 72.919635 ], [ -105.820312, 73.022592 ], [ -105.996094, 73.022592 ], [ -105.996094, 73.124945 ], [ -106.171875, 73.124945 ], [ -106.171875, 73.175897 ], [ -106.347656, 73.175897 ], [ -106.347656, 73.277353 ], [ -106.523438, 73.277353 ], [ -106.523438, 73.327858 ], [ -106.699219, 73.327858 ], [ -106.699219, 73.428424 ], [ -106.875000, 73.428424 ], [ -106.875000, 73.478485 ], [ -106.699219, 73.478485 ], [ -106.699219, 73.528399 ], [ -106.523438, 73.528399 ], [ -106.523438, 73.578167 ], [ -105.820312, 73.578167 ], [ -105.820312, 73.627789 ], [ -105.292969, 73.627789 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.820312, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.592487 ], [ -105.292969, 68.592487 ], [ -105.292969, 68.528235 ], [ -105.117188, 68.528235 ], [ -105.117188, 68.399180 ], [ -104.941406, 68.399180 ], [ -104.941406, 68.269387 ], [ -104.765625, 68.269387 ], [ -104.765625, 68.138852 ], [ -104.589844, 68.138852 ], [ -104.589844, 68.007571 ], [ -103.710938, 68.007571 ], [ -103.710938, 68.073305 ], [ -103.183594, 68.073305 ], [ -103.183594, 68.007571 ], [ -102.832031, 68.007571 ], [ -102.832031, 67.941650 ], [ -102.480469, 67.941650 ], [ -102.480469, 67.875541 ], [ -102.304688, 67.875541 ], [ -102.304688, 67.809245 ], [ -101.953125, 67.809245 ], [ -101.953125, 67.742759 ], [ -101.601562, 67.742759 ], [ -101.601562, 67.676085 ], [ -100.898438, 67.676085 ], [ -100.898438, 67.742759 ], [ -100.195312, 67.742759 ], [ -100.195312, 67.809245 ], [ -98.437500, 67.809245 ], [ -98.437500, 68.073305 ], [ -98.613281, 68.073305 ], [ -98.613281, 68.399180 ], [ -98.437500, 68.399180 ], [ -98.437500, 68.463800 ], [ -98.085938, 68.463800 ], [ -98.085938, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.463800 ], [ -97.031250, 68.463800 ], [ -97.031250, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.334376 ], [ -96.328125, 68.334376 ], [ -96.328125, 68.269387 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.339861 ], [ -95.976562, 67.339861 ], [ -95.976562, 67.542167 ], [ -95.800781, 67.542167 ], [ -95.800781, 67.742759 ], [ -95.625000, 67.742759 ], [ -95.625000, 67.941650 ], [ -95.449219, 67.941650 ], [ -95.449219, 68.073305 ], [ -94.746094, 68.073305 ], [ -94.746094, 68.204212 ], [ -94.570312, 68.204212 ], [ -94.570312, 68.592487 ], [ -94.394531, 68.592487 ], [ -94.394531, 68.911005 ], [ -94.218750, 68.911005 ], [ -94.218750, 69.099940 ], [ -94.394531, 69.099940 ], [ -94.394531, 69.224997 ], [ -94.570312, 69.224997 ], [ -94.570312, 69.287257 ], [ -94.746094, 69.287257 ], [ -94.746094, 69.411242 ], [ -94.921875, 69.411242 ], [ -94.921875, 69.472969 ], [ -95.097656, 69.472969 ], [ -95.097656, 69.595890 ], [ -95.273438, 69.595890 ], [ -95.273438, 69.657086 ], [ -95.449219, 69.657086 ], [ -95.449219, 69.718107 ], [ -95.625000, 69.718107 ], [ -95.625000, 69.778952 ], [ -95.800781, 69.778952 ], [ -95.800781, 69.839622 ], [ -95.976562, 69.839622 ], [ -95.976562, 69.900118 ], [ -96.152344, 69.900118 ], [ -96.152344, 69.960439 ], [ -96.328125, 69.960439 ], [ -96.328125, 70.020587 ], [ -96.503906, 70.020587 ], [ -96.503906, 70.612614 ], [ -96.328125, 70.612614 ], [ -96.328125, 71.130988 ], [ -92.636719, 71.130988 ], [ -92.636719, 71.016960 ], [ -92.460938, 71.016960 ], [ -92.460938, 70.902268 ], [ -92.285156, 70.902268 ], [ -92.285156, 70.728979 ], [ -92.109375, 70.728979 ], [ -92.109375, 70.554179 ], [ -91.933594, 70.554179 ], [ -91.933594, 70.436799 ], [ -91.757812, 70.436799 ], [ -91.757812, 70.259452 ], [ -91.582031, 70.259452 ], [ -91.582031, 70.140364 ], [ -91.757812, 70.140364 ], [ -91.757812, 70.020587 ], [ -91.933594, 70.020587 ], [ -91.933594, 69.960439 ], [ -92.109375, 69.960439 ], [ -92.109375, 69.839622 ], [ -92.285156, 69.839622 ], [ -92.285156, 69.657086 ], [ -91.757812, 69.657086 ], [ -91.757812, 69.595890 ], [ -91.406250, 69.595890 ], [ -91.406250, 69.534518 ], [ -90.878906, 69.534518 ], [ -90.878906, 69.472969 ], [ -90.527344, 69.472969 ], [ -90.527344, 68.463800 ], [ -90.351562, 68.463800 ], [ -90.351562, 68.592487 ], [ -90.175781, 68.592487 ], [ -90.175781, 68.720441 ], [ -90.000000, 68.720441 ], [ -90.000000, 68.847665 ], [ -89.824219, 68.847665 ], [ -89.824219, 68.974164 ], [ -89.648438, 68.974164 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 66.160511 ], [ -106.875000, 66.160511 ], [ -106.875000, 68.720441 ], [ -106.347656, 68.720441 ], [ -106.347656, 68.784144 ], [ -106.171875, 68.784144 ], [ -106.171875, 68.720441 ], [ -105.820312, 68.720441 ], [ -105.820312, 68.656555 ] ] ], [ [ [ -97.558594, 69.900118 ], [ -97.382812, 69.900118 ], [ -97.382812, 69.839622 ], [ -97.207031, 69.839622 ], [ -97.207031, 69.778952 ], [ -97.031250, 69.778952 ], [ -97.031250, 69.718107 ], [ -96.679688, 69.718107 ], [ -96.679688, 69.657086 ], [ -96.503906, 69.657086 ], [ -96.503906, 69.534518 ], [ -96.328125, 69.534518 ], [ -96.328125, 69.411242 ], [ -96.152344, 69.411242 ], [ -96.152344, 69.287257 ], [ -95.976562, 69.287257 ], [ -95.976562, 69.224997 ], [ -95.800781, 69.224997 ], [ -95.800781, 69.099940 ], [ -95.625000, 69.099940 ], [ -95.625000, 69.037142 ], [ -95.800781, 69.037142 ], [ -95.800781, 68.974164 ], [ -95.976562, 68.974164 ], [ -95.976562, 68.847665 ], [ -96.152344, 68.847665 ], [ -96.152344, 68.784144 ], [ -96.503906, 68.784144 ], [ -96.503906, 68.847665 ], [ -96.855469, 68.847665 ], [ -96.855469, 68.911005 ], [ -97.207031, 68.911005 ], [ -97.207031, 68.974164 ], [ -97.558594, 68.974164 ], [ -97.558594, 69.037142 ], [ -97.910156, 69.037142 ], [ -97.910156, 68.974164 ], [ -98.613281, 68.974164 ], [ -98.613281, 69.037142 ], [ -98.789062, 69.037142 ], [ -98.789062, 69.099940 ], [ -98.964844, 69.099940 ], [ -98.964844, 69.162558 ], [ -99.316406, 69.162558 ], [ -99.316406, 69.224997 ], [ -99.492188, 69.224997 ], [ -99.492188, 69.287257 ], [ -99.667969, 69.287257 ], [ -99.667969, 69.349339 ], [ -99.843750, 69.349339 ], [ -99.843750, 69.411242 ], [ -99.667969, 69.411242 ], [ -99.667969, 69.472969 ], [ -99.492188, 69.472969 ], [ -99.492188, 69.534518 ], [ -99.316406, 69.534518 ], [ -99.316406, 69.595890 ], [ -99.140625, 69.595890 ], [ -99.140625, 69.657086 ], [ -98.964844, 69.657086 ], [ -98.964844, 69.718107 ], [ -98.789062, 69.718107 ], [ -98.789062, 69.839622 ], [ -98.613281, 69.839622 ], [ -98.613281, 69.960439 ], [ -98.437500, 69.960439 ], [ -98.437500, 70.080562 ], [ -98.085938, 70.080562 ], [ -98.085938, 70.020587 ], [ -97.910156, 70.020587 ], [ -97.910156, 69.960439 ], [ -97.558594, 69.960439 ], [ -97.558594, 69.900118 ] ] ], [ [ [ -104.414062, 70.959697 ], [ -104.238281, 70.959697 ], [ -104.238281, 70.902268 ], [ -104.062500, 70.902268 ], [ -104.062500, 70.844673 ], [ -103.886719, 70.844673 ], [ -103.886719, 70.786910 ], [ -103.710938, 70.786910 ], [ -103.710938, 70.728979 ], [ -103.535156, 70.728979 ], [ -103.535156, 70.670881 ], [ -103.359375, 70.670881 ], [ -103.359375, 70.612614 ], [ -103.183594, 70.612614 ], [ -103.183594, 70.554179 ], [ -103.007812, 70.554179 ], [ -103.007812, 70.495574 ], [ -102.832031, 70.495574 ], [ -102.832031, 70.436799 ], [ -102.480469, 70.436799 ], [ -102.480469, 70.377854 ], [ -102.304688, 70.377854 ], [ -102.304688, 70.318738 ], [ -102.128906, 70.318738 ], [ -102.128906, 70.259452 ], [ -101.777344, 70.259452 ], [ -101.777344, 70.199994 ], [ -101.601562, 70.199994 ], [ -101.601562, 70.140364 ], [ -101.425781, 70.140364 ], [ -101.425781, 70.080562 ], [ -101.074219, 70.080562 ], [ -101.074219, 70.020587 ], [ -100.898438, 70.020587 ], [ -100.898438, 69.778952 ], [ -101.074219, 69.778952 ], [ -101.074219, 69.595890 ], [ -101.777344, 69.595890 ], [ -101.777344, 69.534518 ], [ -102.656250, 69.534518 ], [ -102.656250, 69.411242 ], [ -102.480469, 69.411242 ], [ -102.480469, 69.287257 ], [ -102.304688, 69.287257 ], [ -102.304688, 69.162558 ], [ -102.128906, 69.162558 ], [ -102.128906, 68.974164 ], [ -102.304688, 68.974164 ], [ -102.304688, 68.847665 ], [ -102.480469, 68.847665 ], [ -102.480469, 68.784144 ], [ -103.007812, 68.784144 ], [ -103.007812, 68.847665 ], [ -103.886719, 68.847665 ], [ -103.886719, 68.911005 ], [ -104.589844, 68.911005 ], [ -104.589844, 68.974164 ], [ -104.941406, 68.974164 ], [ -104.941406, 69.037142 ], [ -105.468750, 69.037142 ], [ -105.468750, 69.099940 ], [ -105.820312, 69.099940 ], [ -105.820312, 69.162558 ], [ -106.347656, 69.162558 ], [ -106.347656, 69.099940 ], [ -106.875000, 69.099940 ], [ -106.875000, 71.130988 ], [ -104.414062, 71.130988 ], [ -104.414062, 70.959697 ] ] ], [ [ [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.728979 ], [ -89.472656, 70.728979 ], [ -89.472656, 70.786910 ], [ -89.296875, 70.786910 ], [ -89.296875, 70.902268 ], [ -89.121094, 70.902268 ], [ -89.121094, 70.612614 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.636719, 71.130988 ], [ -92.636719, 71.016960 ], [ -92.460938, 71.016960 ], [ -92.460938, 70.902268 ], [ -92.285156, 70.902268 ], [ -92.285156, 70.728979 ], [ -92.109375, 70.728979 ], [ -92.109375, 70.554179 ], [ -91.933594, 70.554179 ], [ -91.933594, 70.436799 ], [ -91.757812, 70.436799 ], [ -91.757812, 70.259452 ], [ -91.582031, 70.259452 ], [ -91.582031, 70.140364 ], [ -91.757812, 70.140364 ], [ -91.757812, 70.020587 ], [ -91.933594, 70.020587 ], [ -91.933594, 69.960439 ], [ -92.109375, 69.960439 ], [ -92.109375, 69.839622 ], [ -92.285156, 69.839622 ], [ -92.285156, 69.657086 ], [ -91.757812, 69.657086 ], [ -91.757812, 69.595890 ], [ -91.406250, 69.595890 ], [ -91.406250, 69.534518 ], [ -90.878906, 69.534518 ], [ -90.878906, 69.472969 ], [ -90.527344, 69.472969 ], [ -90.527344, 68.463800 ], [ -90.351562, 68.463800 ], [ -90.351562, 68.592487 ], [ -90.175781, 68.592487 ], [ -90.175781, 68.720441 ], [ -90.000000, 68.720441 ], [ -90.000000, 68.847665 ], [ -89.824219, 68.847665 ], [ -89.824219, 68.974164 ], [ -89.648438, 68.974164 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 66.160511 ], [ -106.875000, 66.160511 ], [ -106.875000, 68.720441 ], [ -106.347656, 68.720441 ], [ -106.347656, 68.784144 ], [ -106.171875, 68.784144 ], [ -106.171875, 68.720441 ], [ -105.820312, 68.720441 ], [ -105.820312, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.592487 ], [ -105.292969, 68.592487 ], [ -105.292969, 68.528235 ], [ -105.117188, 68.528235 ], [ -105.117188, 68.399180 ], [ -104.941406, 68.399180 ], [ -104.941406, 68.269387 ], [ -104.765625, 68.269387 ], [ -104.765625, 68.138852 ], [ -104.589844, 68.138852 ], [ -104.589844, 68.007571 ], [ -103.710938, 68.007571 ], [ -103.710938, 68.073305 ], [ -103.183594, 68.073305 ], [ -103.183594, 68.007571 ], [ -102.832031, 68.007571 ], [ -102.832031, 67.941650 ], [ -102.480469, 67.941650 ], [ -102.480469, 67.875541 ], [ -102.304688, 67.875541 ], [ -102.304688, 67.809245 ], [ -101.953125, 67.809245 ], [ -101.953125, 67.742759 ], [ -101.601562, 67.742759 ], [ -101.601562, 67.676085 ], [ -100.898438, 67.676085 ], [ -100.898438, 67.742759 ], [ -100.195312, 67.742759 ], [ -100.195312, 67.809245 ], [ -98.437500, 67.809245 ], [ -98.437500, 68.073305 ], [ -98.613281, 68.073305 ], [ -98.613281, 68.399180 ], [ -98.437500, 68.399180 ], [ -98.437500, 68.463800 ], [ -98.085938, 68.463800 ], [ -98.085938, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.463800 ], [ -97.031250, 68.463800 ], [ -97.031250, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.334376 ], [ -96.328125, 68.334376 ], [ -96.328125, 68.269387 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.339861 ], [ -95.976562, 67.339861 ], [ -95.976562, 67.542167 ], [ -95.800781, 67.542167 ], [ -95.800781, 67.742759 ], [ -95.625000, 67.742759 ], [ -95.625000, 67.941650 ], [ -95.449219, 67.941650 ], [ -95.449219, 68.073305 ], [ -94.746094, 68.073305 ], [ -94.746094, 68.204212 ], [ -94.570312, 68.204212 ], [ -94.570312, 68.592487 ], [ -94.394531, 68.592487 ], [ -94.394531, 68.911005 ], [ -94.218750, 68.911005 ], [ -94.218750, 69.099940 ], [ -94.394531, 69.099940 ], [ -94.394531, 69.224997 ], [ -94.570312, 69.224997 ], [ -94.570312, 69.287257 ], [ -94.746094, 69.287257 ], [ -94.746094, 69.411242 ], [ -94.921875, 69.411242 ], [ -94.921875, 69.472969 ], [ -95.097656, 69.472969 ], [ -95.097656, 69.595890 ], [ -95.273438, 69.595890 ], [ -95.273438, 69.657086 ], [ -95.449219, 69.657086 ], [ -95.449219, 69.718107 ], [ -95.625000, 69.718107 ], [ -95.625000, 69.778952 ], [ -95.800781, 69.778952 ], [ -95.800781, 69.839622 ], [ -95.976562, 69.839622 ], [ -95.976562, 69.900118 ], [ -96.152344, 69.900118 ], [ -96.152344, 69.960439 ], [ -96.328125, 69.960439 ], [ -96.328125, 70.020587 ], [ -96.503906, 70.020587 ], [ -96.503906, 70.612614 ], [ -96.328125, 70.612614 ], [ -96.328125, 71.130988 ], [ -92.636719, 71.130988 ] ] ], [ [ [ -98.085938, 70.080562 ], [ -98.085938, 70.020587 ], [ -97.910156, 70.020587 ], [ -97.910156, 69.960439 ], [ -97.558594, 69.960439 ], [ -97.558594, 69.900118 ], [ -97.382812, 69.900118 ], [ -97.382812, 69.839622 ], [ -97.207031, 69.839622 ], [ -97.207031, 69.778952 ], [ -97.031250, 69.778952 ], [ -97.031250, 69.718107 ], [ -96.679688, 69.718107 ], [ -96.679688, 69.657086 ], [ -96.503906, 69.657086 ], [ -96.503906, 69.534518 ], [ -96.328125, 69.534518 ], [ -96.328125, 69.411242 ], [ -96.152344, 69.411242 ], [ -96.152344, 69.287257 ], [ -95.976562, 69.287257 ], [ -95.976562, 69.224997 ], [ -95.800781, 69.224997 ], [ -95.800781, 69.099940 ], [ -95.625000, 69.099940 ], [ -95.625000, 69.037142 ], [ -95.800781, 69.037142 ], [ -95.800781, 68.974164 ], [ -95.976562, 68.974164 ], [ -95.976562, 68.847665 ], [ -96.152344, 68.847665 ], [ -96.152344, 68.784144 ], [ -96.503906, 68.784144 ], [ -96.503906, 68.847665 ], [ -96.855469, 68.847665 ], [ -96.855469, 68.911005 ], [ -97.207031, 68.911005 ], [ -97.207031, 68.974164 ], [ -97.558594, 68.974164 ], [ -97.558594, 69.037142 ], [ -97.910156, 69.037142 ], [ -97.910156, 68.974164 ], [ -98.613281, 68.974164 ], [ -98.613281, 69.037142 ], [ -98.789062, 69.037142 ], [ -98.789062, 69.099940 ], [ -98.964844, 69.099940 ], [ -98.964844, 69.162558 ], [ -99.316406, 69.162558 ], [ -99.316406, 69.224997 ], [ -99.492188, 69.224997 ], [ -99.492188, 69.287257 ], [ -99.667969, 69.287257 ], [ -99.667969, 69.349339 ], [ -99.843750, 69.349339 ], [ -99.843750, 69.411242 ], [ -99.667969, 69.411242 ], [ -99.667969, 69.472969 ], [ -99.492188, 69.472969 ], [ -99.492188, 69.534518 ], [ -99.316406, 69.534518 ], [ -99.316406, 69.595890 ], [ -99.140625, 69.595890 ], [ -99.140625, 69.657086 ], [ -98.964844, 69.657086 ], [ -98.964844, 69.718107 ], [ -98.789062, 69.718107 ], [ -98.789062, 69.839622 ], [ -98.613281, 69.839622 ], [ -98.613281, 69.960439 ], [ -98.437500, 69.960439 ], [ -98.437500, 70.080562 ], [ -98.085938, 70.080562 ] ] ], [ [ [ -104.414062, 71.130988 ], [ -104.414062, 70.959697 ], [ -104.238281, 70.959697 ], [ -104.238281, 70.902268 ], [ -104.062500, 70.902268 ], [ -104.062500, 70.844673 ], [ -103.886719, 70.844673 ], [ -103.886719, 70.786910 ], [ -103.710938, 70.786910 ], [ -103.710938, 70.728979 ], [ -103.535156, 70.728979 ], [ -103.535156, 70.670881 ], [ -103.359375, 70.670881 ], [ -103.359375, 70.612614 ], [ -103.183594, 70.612614 ], [ -103.183594, 70.554179 ], [ -103.007812, 70.554179 ], [ -103.007812, 70.495574 ], [ -102.832031, 70.495574 ], [ -102.832031, 70.436799 ], [ -102.480469, 70.436799 ], [ -102.480469, 70.377854 ], [ -102.304688, 70.377854 ], [ -102.304688, 70.318738 ], [ -102.128906, 70.318738 ], [ -102.128906, 70.259452 ], [ -101.777344, 70.259452 ], [ -101.777344, 70.199994 ], [ -101.601562, 70.199994 ], [ -101.601562, 70.140364 ], [ -101.425781, 70.140364 ], [ -101.425781, 70.080562 ], [ -101.074219, 70.080562 ], [ -101.074219, 70.020587 ], [ -100.898438, 70.020587 ], [ -100.898438, 69.778952 ], [ -101.074219, 69.778952 ], [ -101.074219, 69.595890 ], [ -101.777344, 69.595890 ], [ -101.777344, 69.534518 ], [ -102.656250, 69.534518 ], [ -102.656250, 69.411242 ], [ -102.480469, 69.411242 ], [ -102.480469, 69.287257 ], [ -102.304688, 69.287257 ], [ -102.304688, 69.162558 ], [ -102.128906, 69.162558 ], [ -102.128906, 68.974164 ], [ -102.304688, 68.974164 ], [ -102.304688, 68.847665 ], [ -102.480469, 68.847665 ], [ -102.480469, 68.784144 ], [ -103.007812, 68.784144 ], [ -103.007812, 68.847665 ], [ -103.886719, 68.847665 ], [ -103.886719, 68.911005 ], [ -104.589844, 68.911005 ], [ -104.589844, 68.974164 ], [ -104.941406, 68.974164 ], [ -104.941406, 69.037142 ], [ -105.468750, 69.037142 ], [ -105.468750, 69.099940 ], [ -105.820312, 69.099940 ], [ -105.820312, 69.162558 ], [ -106.347656, 69.162558 ], [ -106.347656, 69.099940 ], [ -106.875000, 69.099940 ], [ -106.875000, 71.130988 ], [ -104.414062, 71.130988 ] ] ], [ [ [ -89.121094, 70.902268 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.728979 ], [ -89.472656, 70.728979 ], [ -89.472656, 70.786910 ], [ -89.296875, 70.786910 ], [ -89.296875, 70.902268 ], [ -89.121094, 70.902268 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.292969, 79.269962 ], [ -104.765625, 79.269962 ], [ -104.765625, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.183594, 79.138260 ], [ -103.183594, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.480469, 79.038437 ], [ -102.480469, 79.004962 ], [ -105.468750, 79.004962 ], [ -105.468750, 79.302640 ], [ -105.292969, 79.302640 ], [ -105.292969, 79.269962 ] ] ], [ [ [ -92.285156, 81.147481 ], [ -92.109375, 81.147481 ], [ -92.109375, 81.093214 ], [ -91.933594, 81.093214 ], [ -91.933594, 81.011194 ], [ -91.757812, 81.011194 ], [ -91.757812, 80.956099 ], [ -91.582031, 80.956099 ], [ -91.582031, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.816891 ], [ -91.230469, 80.816891 ], [ -91.230469, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.703997 ], [ -90.878906, 80.703997 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.527344, 80.647035 ], [ -90.527344, 80.618424 ], [ -90.175781, 80.618424 ], [ -90.175781, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.824219, 80.560943 ], [ -89.824219, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.503112 ], [ -89.472656, 80.503112 ], [ -89.472656, 80.474065 ], [ -89.121094, 80.474065 ], [ -89.121094, 79.004962 ], [ -93.867188, 79.004962 ], [ -93.867188, 79.138260 ], [ -93.691406, 79.138260 ], [ -93.691406, 79.204309 ], [ -93.515625, 79.204309 ], [ -93.515625, 79.269962 ], [ -93.339844, 79.269962 ], [ -93.339844, 79.335219 ], [ -93.164062, 79.335219 ], [ -93.164062, 79.367701 ], [ -95.097656, 79.367701 ], [ -95.097656, 79.432371 ], [ -95.273438, 79.432371 ], [ -95.273438, 79.464560 ], [ -95.449219, 79.464560 ], [ -95.449219, 79.528647 ], [ -95.625000, 79.528647 ], [ -95.625000, 79.592349 ], [ -95.800781, 79.592349 ], [ -95.800781, 79.624056 ], [ -95.976562, 79.624056 ], [ -95.976562, 79.687184 ], [ -96.152344, 79.687184 ], [ -96.152344, 79.781164 ], [ -96.328125, 79.781164 ], [ -96.328125, 79.935918 ], [ -96.503906, 79.935918 ], [ -96.503906, 80.058050 ], [ -96.679688, 80.058050 ], [ -96.679688, 80.178713 ], [ -96.503906, 80.178713 ], [ -96.503906, 80.297927 ], [ -96.328125, 80.297927 ], [ -96.328125, 80.415707 ], [ -96.152344, 80.415707 ], [ -96.152344, 80.532071 ], [ -95.976562, 80.532071 ], [ -95.976562, 80.618424 ], [ -95.800781, 80.618424 ], [ -95.800781, 80.703997 ], [ -95.625000, 80.703997 ], [ -95.625000, 80.760615 ], [ -95.449219, 80.760615 ], [ -95.449219, 80.844901 ], [ -95.273438, 80.844901 ], [ -95.273438, 80.900669 ], [ -94.921875, 80.900669 ], [ -94.921875, 80.928426 ], [ -94.570312, 80.928426 ], [ -94.570312, 80.956099 ], [ -94.218750, 80.956099 ], [ -94.218750, 81.011194 ], [ -94.394531, 81.011194 ], [ -94.394531, 81.093214 ], [ -94.570312, 81.093214 ], [ -94.570312, 81.147481 ], [ -94.746094, 81.147481 ], [ -94.746094, 81.201420 ], [ -94.042969, 81.201420 ], [ -94.042969, 81.228267 ], [ -92.988281, 81.228267 ], [ -92.988281, 81.255032 ], [ -92.460938, 81.255032 ], [ -92.460938, 81.201420 ], [ -92.285156, 81.201420 ], [ -92.285156, 81.147481 ] ] ], [ [ [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.872827 ], [ -89.472656, 80.872827 ], [ -89.472656, 80.956099 ], [ -89.648438, 80.956099 ], [ -89.648438, 81.038617 ], [ -89.824219, 81.038617 ], [ -89.824219, 81.120388 ], [ -90.000000, 81.120388 ], [ -90.000000, 81.201420 ], [ -90.175781, 81.201420 ], [ -90.175781, 81.255032 ], [ -90.351562, 81.255032 ], [ -90.351562, 81.308321 ], [ -90.527344, 81.308321 ], [ -90.527344, 81.334844 ], [ -90.703125, 81.334844 ], [ -90.703125, 81.387650 ], [ -90.878906, 81.387650 ], [ -90.878906, 81.440137 ], [ -91.054688, 81.440137 ], [ -91.054688, 81.466261 ], [ -91.230469, 81.466261 ], [ -91.230469, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.582031, 81.723188 ], [ -91.582031, 81.898451 ], [ -91.406250, 81.898451 ], [ -91.406250, 81.923186 ], [ -91.230469, 81.923186 ], [ -91.230469, 81.947846 ], [ -91.054688, 81.947846 ], [ -91.054688, 81.972431 ], [ -90.878906, 81.972431 ], [ -90.878906, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -89.121094, 82.118384 ], [ -89.121094, 80.816891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.292969, 79.302640 ], [ -105.292969, 79.269962 ], [ -104.765625, 79.269962 ], [ -104.765625, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.183594, 79.138260 ], [ -103.183594, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.480469, 79.038437 ], [ -102.480469, 79.004962 ], [ -105.468750, 79.004962 ], [ -105.468750, 79.302640 ], [ -105.292969, 79.302640 ] ] ], [ [ [ -92.460938, 81.255032 ], [ -92.460938, 81.201420 ], [ -92.285156, 81.201420 ], [ -92.285156, 81.147481 ], [ -92.109375, 81.147481 ], [ -92.109375, 81.093214 ], [ -91.933594, 81.093214 ], [ -91.933594, 81.011194 ], [ -91.757812, 81.011194 ], [ -91.757812, 80.956099 ], [ -91.582031, 80.956099 ], [ -91.582031, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.816891 ], [ -91.230469, 80.816891 ], [ -91.230469, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.703997 ], [ -90.878906, 80.703997 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.527344, 80.647035 ], [ -90.527344, 80.618424 ], [ -90.175781, 80.618424 ], [ -90.175781, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.824219, 80.560943 ], [ -89.824219, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.503112 ], [ -89.472656, 80.503112 ], [ -89.472656, 80.474065 ], [ -89.121094, 80.474065 ], [ -89.121094, 79.004962 ], [ -93.867188, 79.004962 ], [ -93.867188, 79.138260 ], [ -93.691406, 79.138260 ], [ -93.691406, 79.204309 ], [ -93.515625, 79.204309 ], [ -93.515625, 79.269962 ], [ -93.339844, 79.269962 ], [ -93.339844, 79.335219 ], [ -93.164062, 79.335219 ], [ -93.164062, 79.367701 ], [ -95.097656, 79.367701 ], [ -95.097656, 79.432371 ], [ -95.273438, 79.432371 ], [ -95.273438, 79.464560 ], [ -95.449219, 79.464560 ], [ -95.449219, 79.528647 ], [ -95.625000, 79.528647 ], [ -95.625000, 79.592349 ], [ -95.800781, 79.592349 ], [ -95.800781, 79.624056 ], [ -95.976562, 79.624056 ], [ -95.976562, 79.687184 ], [ -96.152344, 79.687184 ], [ -96.152344, 79.781164 ], [ -96.328125, 79.781164 ], [ -96.328125, 79.935918 ], [ -96.503906, 79.935918 ], [ -96.503906, 80.058050 ], [ -96.679688, 80.058050 ], [ -96.679688, 80.178713 ], [ -96.503906, 80.178713 ], [ -96.503906, 80.297927 ], [ -96.328125, 80.297927 ], [ -96.328125, 80.415707 ], [ -96.152344, 80.415707 ], [ -96.152344, 80.532071 ], [ -95.976562, 80.532071 ], [ -95.976562, 80.618424 ], [ -95.800781, 80.618424 ], [ -95.800781, 80.703997 ], [ -95.625000, 80.703997 ], [ -95.625000, 80.760615 ], [ -95.449219, 80.760615 ], [ -95.449219, 80.844901 ], [ -95.273438, 80.844901 ], [ -95.273438, 80.900669 ], [ -94.921875, 80.900669 ], [ -94.921875, 80.928426 ], [ -94.570312, 80.928426 ], [ -94.570312, 80.956099 ], [ -94.218750, 80.956099 ], [ -94.218750, 81.011194 ], [ -94.394531, 81.011194 ], [ -94.394531, 81.093214 ], [ -94.570312, 81.093214 ], [ -94.570312, 81.147481 ], [ -94.746094, 81.147481 ], [ -94.746094, 81.201420 ], [ -94.042969, 81.201420 ], [ -94.042969, 81.228267 ], [ -92.988281, 81.228267 ], [ -92.988281, 81.255032 ], [ -92.460938, 81.255032 ] ] ], [ [ [ -89.121094, 82.118384 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.872827 ], [ -89.472656, 80.872827 ], [ -89.472656, 80.956099 ], [ -89.648438, 80.956099 ], [ -89.648438, 81.038617 ], [ -89.824219, 81.038617 ], [ -89.824219, 81.120388 ], [ -90.000000, 81.120388 ], [ -90.000000, 81.201420 ], [ -90.175781, 81.201420 ], [ -90.175781, 81.255032 ], [ -90.351562, 81.255032 ], [ -90.351562, 81.308321 ], [ -90.527344, 81.308321 ], [ -90.527344, 81.334844 ], [ -90.703125, 81.334844 ], [ -90.703125, 81.387650 ], [ -90.878906, 81.387650 ], [ -90.878906, 81.440137 ], [ -91.054688, 81.440137 ], [ -91.054688, 81.466261 ], [ -91.230469, 81.466261 ], [ -91.230469, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.582031, 81.723188 ], [ -91.582031, 81.898451 ], [ -91.406250, 81.898451 ], [ -91.406250, 81.923186 ], [ -91.230469, 81.923186 ], [ -91.230469, 81.947846 ], [ -91.054688, 81.947846 ], [ -91.054688, 81.972431 ], [ -90.878906, 81.972431 ], [ -90.878906, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -89.121094, 82.118384 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.757812, -81.748454 ], [ -46.406250, -81.748454 ], [ -46.406250, -81.773644 ], [ -45.878906, -81.773644 ], [ -45.878906, -81.798757 ], [ -45.527344, -81.798757 ], [ -45.527344, -81.823794 ], [ -45.175781, -81.823794 ], [ -45.175781, -81.848756 ], [ -44.824219, -81.848756 ], [ -44.824219, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.046875, -79.004962 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.302640 ], [ -77.519531, -79.302640 ], [ -77.519531, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.432371 ], [ -77.167969, -79.432371 ], [ -77.167969, -79.464560 ], [ -76.992188, -79.464560 ], [ -76.992188, -79.528647 ], [ -76.816406, -79.528647 ], [ -76.816406, -79.718605 ], [ -76.640625, -79.718605 ], [ -76.640625, -79.905154 ], [ -76.464844, -79.905154 ], [ -76.464844, -79.966590 ], [ -76.289062, -79.966590 ], [ -76.289062, -80.027655 ], [ -76.113281, -80.027655 ], [ -76.113281, -80.088352 ], [ -75.937500, -80.088352 ], [ -75.937500, -80.148684 ], [ -75.761719, -80.148684 ], [ -75.761719, -80.208652 ], [ -75.585938, -80.208652 ], [ -75.585938, -80.268259 ], [ -75.234375, -80.268259 ], [ -75.234375, -80.297927 ], [ -74.882812, -80.297927 ], [ -74.882812, -80.327506 ], [ -74.531250, -80.327506 ], [ -74.531250, -80.356995 ], [ -74.003906, -80.356995 ], [ -74.003906, -80.386396 ], [ -73.652344, -80.386396 ], [ -73.652344, -80.415707 ], [ -73.300781, -80.415707 ], [ -73.300781, -80.444931 ], [ -73.125000, -80.444931 ], [ -73.125000, -80.474065 ], [ -72.949219, -80.474065 ], [ -72.949219, -80.503112 ], [ -72.773438, -80.503112 ], [ -72.773438, -80.532071 ], [ -72.597656, -80.532071 ], [ -72.597656, -80.560943 ], [ -72.246094, -80.560943 ], [ -72.246094, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.618424 ], [ -71.894531, -80.618424 ], [ -71.894531, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.675559 ], [ -71.542969, -80.675559 ], [ -71.542969, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.732349 ], [ -71.191406, -80.732349 ], [ -71.191406, -80.788795 ], [ -71.015625, -80.788795 ], [ -71.015625, -80.816891 ], [ -70.839844, -80.816891 ], [ -70.839844, -80.844901 ], [ -70.664062, -80.844901 ], [ -70.664062, -80.900669 ], [ -70.488281, -80.900669 ], [ -70.488281, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.956099 ], [ -70.136719, -80.956099 ], [ -70.136719, -81.011194 ], [ -69.960938, -81.011194 ], [ -69.960938, -81.038617 ], [ -69.785156, -81.038617 ], [ -69.785156, -81.065957 ], [ -69.609375, -81.065957 ], [ -69.609375, -81.093214 ], [ -69.433594, -81.093214 ], [ -69.433594, -81.120388 ], [ -69.257812, -81.120388 ], [ -69.257812, -81.147481 ], [ -69.082031, -81.147481 ], [ -69.082031, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.228267 ], [ -68.730469, -81.228267 ], [ -68.730469, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.281717 ], [ -68.378906, -81.281717 ], [ -68.378906, -81.308321 ], [ -68.027344, -81.308321 ], [ -68.027344, -81.334844 ], [ -67.675781, -81.334844 ], [ -67.675781, -81.361287 ], [ -67.324219, -81.361287 ], [ -67.324219, -81.387650 ], [ -66.796875, -81.387650 ], [ -66.796875, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.440137 ], [ -66.093750, -81.440137 ], [ -66.093750, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.492306 ], [ -65.566406, -81.492306 ], [ -65.566406, -81.518272 ], [ -65.214844, -81.518272 ], [ -65.214844, -81.544159 ], [ -65.039062, -81.544159 ], [ -65.039062, -81.569968 ], [ -64.863281, -81.569968 ], [ -64.863281, -81.595699 ], [ -64.687500, -81.595699 ], [ -64.687500, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.646927 ], [ -64.160156, -81.646927 ], [ -64.160156, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.697844 ], [ -63.632812, -81.697844 ], [ -63.632812, -81.723188 ], [ -63.457031, -81.723188 ], [ -63.457031, -81.748454 ], [ -63.281250, -81.748454 ], [ -63.281250, -81.773644 ], [ -63.105469, -81.773644 ], [ -63.105469, -81.798757 ], [ -62.929688, -81.798757 ], [ -62.929688, -81.823794 ], [ -62.753906, -81.823794 ], [ -62.753906, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.898451 ], [ -62.402344, -81.898451 ], [ -62.402344, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.947846 ], [ -62.050781, -81.947846 ], [ -62.050781, -81.972431 ], [ -61.875000, -81.972431 ], [ -61.875000, -82.021378 ], [ -61.699219, -82.021378 ], [ -61.699219, -82.045740 ], [ -61.523438, -82.045740 ], [ -61.523438, -82.070028 ], [ -61.347656, -82.070028 ], [ -61.347656, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.142451 ], [ -60.996094, -82.142451 ], [ -60.996094, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.214217 ], [ -60.644531, -82.214217 ], [ -60.644531, -82.237994 ], [ -60.468750, -82.237994 ], [ -60.468750, -82.285331 ], [ -60.292969, -82.285331 ], [ -60.292969, -82.308893 ], [ -60.117188, -82.308893 ], [ -60.117188, -82.332382 ], [ -59.941406, -82.332382 ], [ -59.941406, -82.379147 ], [ -59.765625, -82.379147 ], [ -59.765625, -82.425629 ], [ -59.589844, -82.425629 ], [ -59.589844, -82.517749 ], [ -59.414062, -82.517749 ], [ -59.414062, -82.586106 ], [ -59.238281, -82.586106 ], [ -59.238281, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -82.743202 ], [ -58.886719, -82.743202 ], [ -58.886719, -82.831480 ], [ -58.710938, -82.831480 ], [ -58.710938, -82.918690 ], [ -58.535156, -82.918690 ], [ -58.535156, -83.047529 ], [ -58.359375, -83.047529 ], [ -58.359375, -83.174035 ], [ -58.183594, -83.174035 ], [ -58.183594, -83.194896 ], [ -58.007812, -83.194896 ], [ -58.007812, -83.153111 ], [ -57.832031, -83.153111 ], [ -57.832031, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -83.047529 ], [ -57.480469, -83.047529 ], [ -57.480469, -83.004844 ], [ -57.304688, -83.004844 ], [ -57.304688, -82.961898 ], [ -57.128906, -82.961898 ], [ -57.128906, -82.918690 ], [ -56.953125, -82.918690 ], [ -56.953125, -82.875218 ], [ -56.777344, -82.875218 ], [ -56.777344, -82.831480 ], [ -56.601562, -82.831480 ], [ -56.601562, -82.809511 ], [ -56.425781, -82.809511 ], [ -56.425781, -82.765373 ], [ -56.250000, -82.765373 ], [ -56.250000, -82.720964 ], [ -56.074219, -82.720964 ], [ -56.074219, -82.698659 ], [ -55.898438, -82.698659 ], [ -55.898438, -82.653843 ], [ -55.722656, -82.653843 ], [ -55.722656, -82.631333 ], [ -55.546875, -82.631333 ], [ -55.546875, -82.586106 ], [ -55.371094, -82.586106 ], [ -55.371094, -82.563390 ], [ -55.195312, -82.563390 ], [ -55.195312, -82.540604 ], [ -55.019531, -82.540604 ], [ -55.019531, -82.494824 ], [ -54.843750, -82.494824 ], [ -54.843750, -82.471829 ], [ -54.667969, -82.471829 ], [ -54.667969, -82.448764 ], [ -54.492188, -82.448764 ], [ -54.492188, -82.402423 ], [ -54.316406, -82.402423 ], [ -54.316406, -82.379147 ], [ -54.140625, -82.379147 ], [ -54.140625, -82.355800 ], [ -53.964844, -82.355800 ], [ -53.964844, -82.308893 ], [ -53.789062, -82.308893 ], [ -53.789062, -82.285331 ], [ -53.613281, -82.285331 ], [ -53.613281, -82.261699 ], [ -53.437500, -82.261699 ], [ -53.437500, -82.237994 ], [ -53.261719, -82.237994 ], [ -53.261719, -82.214217 ], [ -53.085938, -82.214217 ], [ -53.085938, -82.190368 ], [ -52.910156, -82.190368 ], [ -52.910156, -82.166446 ], [ -52.734375, -82.166446 ], [ -52.734375, -82.142451 ], [ -52.382812, -82.142451 ], [ -52.382812, -82.118384 ], [ -52.207031, -82.118384 ], [ -52.207031, -82.094243 ], [ -52.031250, -82.094243 ], [ -52.031250, -82.070028 ], [ -51.855469, -82.070028 ], [ -51.855469, -82.045740 ], [ -51.679688, -82.045740 ], [ -51.679688, -82.021378 ], [ -51.503906, -82.021378 ], [ -51.503906, -81.996942 ], [ -51.328125, -81.996942 ], [ -51.328125, -81.972431 ], [ -51.152344, -81.972431 ], [ -51.152344, -81.947846 ], [ -50.976562, -81.947846 ], [ -50.976562, -81.923186 ], [ -50.800781, -81.923186 ], [ -50.800781, -81.898451 ], [ -50.625000, -81.898451 ], [ -50.625000, -81.848756 ], [ -50.449219, -81.848756 ], [ -50.449219, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.798757 ], [ -50.097656, -81.798757 ], [ -50.097656, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.748454 ], [ -49.746094, -81.748454 ], [ -49.746094, -81.723188 ], [ -48.339844, -81.723188 ], [ -48.339844, -81.697844 ], [ -47.109375, -81.697844 ], [ -47.109375, -81.723188 ], [ -46.757812, -81.723188 ], [ -46.757812, -81.748454 ] ] ], [ [ [ -52.558594, -80.983688 ], [ -52.558594, -80.956099 ], [ -53.085938, -80.956099 ], [ -53.085938, -80.900669 ], [ -53.261719, -80.900669 ], [ -53.261719, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.613281, -80.816891 ], [ -53.613281, -80.760615 ], [ -53.789062, -80.760615 ], [ -53.789062, -80.732349 ], [ -53.964844, -80.732349 ], [ -53.964844, -80.675559 ], [ -54.140625, -80.675559 ], [ -54.140625, -80.444931 ], [ -53.964844, -80.444931 ], [ -53.964844, -80.208652 ], [ -53.789062, -80.208652 ], [ -53.789062, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.148684 ], [ -53.261719, -80.148684 ], [ -53.261719, -80.118564 ], [ -53.085938, -80.118564 ], [ -53.085938, -80.088352 ], [ -52.734375, -80.088352 ], [ -52.734375, -80.058050 ], [ -52.558594, -80.058050 ], [ -52.558594, -80.027655 ], [ -52.382812, -80.027655 ], [ -52.382812, -79.997168 ], [ -52.031250, -79.997168 ], [ -52.031250, -79.966590 ], [ -51.855469, -79.966590 ], [ -51.855469, -79.905154 ], [ -51.679688, -79.905154 ], [ -51.679688, -79.843346 ], [ -51.503906, -79.843346 ], [ -51.503906, -79.781164 ], [ -51.328125, -79.781164 ], [ -51.328125, -79.718605 ], [ -51.152344, -79.718605 ], [ -51.152344, -79.655668 ], [ -50.976562, -79.655668 ], [ -50.976562, -79.560546 ], [ -50.800781, -79.560546 ], [ -50.800781, -79.400085 ], [ -50.625000, -79.400085 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.071812 ], [ -50.097656, -79.071812 ], [ -50.097656, -79.004962 ], [ -44.121094, -79.004962 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.327506 ], [ -44.824219, -80.327506 ], [ -44.824219, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.386396 ], [ -45.175781, -80.386396 ], [ -45.175781, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.444931 ], [ -45.527344, -80.444931 ], [ -45.527344, -80.474065 ], [ -45.878906, -80.474065 ], [ -45.878906, -80.503112 ], [ -46.054688, -80.503112 ], [ -46.054688, -80.532071 ], [ -46.230469, -80.532071 ], [ -46.230469, -80.560943 ], [ -46.406250, -80.560943 ], [ -46.406250, -80.589727 ], [ -46.582031, -80.589727 ], [ -46.582031, -80.618424 ], [ -46.757812, -80.618424 ], [ -46.757812, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.675559 ], [ -47.285156, -80.675559 ], [ -47.285156, -80.703997 ], [ -47.460938, -80.703997 ], [ -47.460938, -80.732349 ], [ -47.636719, -80.732349 ], [ -47.636719, -80.760615 ], [ -47.988281, -80.760615 ], [ -47.988281, -80.788795 ], [ -48.164062, -80.788795 ], [ -48.164062, -80.816891 ], [ -48.339844, -80.816891 ], [ -48.339844, -80.844901 ], [ -48.691406, -80.844901 ], [ -48.691406, -80.872827 ], [ -48.867188, -80.872827 ], [ -48.867188, -80.900669 ], [ -49.218750, -80.900669 ], [ -49.218750, -80.928426 ], [ -49.394531, -80.928426 ], [ -49.394531, -80.956099 ], [ -49.746094, -80.956099 ], [ -49.746094, -80.983688 ], [ -49.921875, -80.983688 ], [ -49.921875, -81.011194 ], [ -50.273438, -81.011194 ], [ -50.273438, -81.038617 ], [ -50.976562, -81.038617 ], [ -50.976562, -81.011194 ], [ -51.855469, -81.011194 ], [ -51.855469, -80.983688 ], [ -52.558594, -80.983688 ] ] ], [ [ [ -60.117188, -79.874297 ], [ -59.941406, -79.874297 ], [ -59.941406, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -79.997168 ], [ -59.589844, -79.997168 ], [ -59.589844, -80.178713 ], [ -59.765625, -80.178713 ], [ -59.765625, -80.444931 ], [ -59.941406, -80.444931 ], [ -59.941406, -80.788795 ], [ -60.117188, -80.788795 ], [ -60.117188, -81.011194 ], [ -60.468750, -81.011194 ], [ -60.468750, -80.983688 ], [ -60.820312, -80.983688 ], [ -60.820312, -80.956099 ], [ -61.347656, -80.956099 ], [ -61.347656, -80.928426 ], [ -61.699219, -80.928426 ], [ -61.699219, -80.900669 ], [ -62.050781, -80.900669 ], [ -62.050781, -80.872827 ], [ -62.753906, -80.872827 ], [ -62.753906, -80.900669 ], [ -63.808594, -80.900669 ], [ -63.808594, -80.928426 ], [ -64.687500, -80.928426 ], [ -64.687500, -80.872827 ], [ -64.863281, -80.872827 ], [ -64.863281, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.760615 ], [ -65.214844, -80.760615 ], [ -65.214844, -80.732349 ], [ -65.390625, -80.732349 ], [ -65.390625, -80.675559 ], [ -65.566406, -80.675559 ], [ -65.566406, -80.618424 ], [ -65.742188, -80.618424 ], [ -65.742188, -80.532071 ], [ -65.917969, -80.532071 ], [ -65.917969, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.327506 ], [ -66.269531, -80.327506 ], [ -66.269531, -80.268259 ], [ -65.214844, -80.268259 ], [ -65.214844, -80.297927 ], [ -63.808594, -80.297927 ], [ -63.808594, -80.327506 ], [ -63.105469, -80.327506 ], [ -63.105469, -80.356995 ], [ -62.402344, -80.356995 ], [ -62.402344, -80.386396 ], [ -61.875000, -80.386396 ], [ -61.875000, -80.356995 ], [ -61.699219, -80.356995 ], [ -61.699219, -80.238501 ], [ -61.523438, -80.238501 ], [ -61.523438, -80.148684 ], [ -61.347656, -80.148684 ], [ -61.347656, -80.027655 ], [ -61.171875, -80.027655 ], [ -61.171875, -79.935918 ], [ -60.996094, -79.935918 ], [ -60.996094, -79.812302 ], [ -60.820312, -79.812302 ], [ -60.820312, -79.687184 ], [ -60.468750, -79.687184 ], [ -60.468750, -79.749932 ], [ -60.292969, -79.749932 ], [ -60.292969, -79.812302 ], [ -60.117188, -79.812302 ], [ -60.117188, -79.874297 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, -79.004962 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.302640 ], [ -77.519531, -79.302640 ], [ -77.519531, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.432371 ], [ -77.167969, -79.432371 ], [ -77.167969, -79.464560 ], [ -76.992188, -79.464560 ], [ -76.992188, -79.528647 ], [ -76.816406, -79.528647 ], [ -76.816406, -79.718605 ], [ -76.640625, -79.718605 ], [ -76.640625, -79.905154 ], [ -76.464844, -79.905154 ], [ -76.464844, -79.966590 ], [ -76.289062, -79.966590 ], [ -76.289062, -80.027655 ], [ -76.113281, -80.027655 ], [ -76.113281, -80.088352 ], [ -75.937500, -80.088352 ], [ -75.937500, -80.148684 ], [ -75.761719, -80.148684 ], [ -75.761719, -80.208652 ], [ -75.585938, -80.208652 ], [ -75.585938, -80.268259 ], [ -75.234375, -80.268259 ], [ -75.234375, -80.297927 ], [ -74.882812, -80.297927 ], [ -74.882812, -80.327506 ], [ -74.531250, -80.327506 ], [ -74.531250, -80.356995 ], [ -74.003906, -80.356995 ], [ -74.003906, -80.386396 ], [ -73.652344, -80.386396 ], [ -73.652344, -80.415707 ], [ -73.300781, -80.415707 ], [ -73.300781, -80.444931 ], [ -73.125000, -80.444931 ], [ -73.125000, -80.474065 ], [ -72.949219, -80.474065 ], [ -72.949219, -80.503112 ], [ -72.773438, -80.503112 ], [ -72.773438, -80.532071 ], [ -72.597656, -80.532071 ], [ -72.597656, -80.560943 ], [ -72.246094, -80.560943 ], [ -72.246094, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.618424 ], [ -71.894531, -80.618424 ], [ -71.894531, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.675559 ], [ -71.542969, -80.675559 ], [ -71.542969, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.732349 ], [ -71.191406, -80.732349 ], [ -71.191406, -80.788795 ], [ -71.015625, -80.788795 ], [ -71.015625, -80.816891 ], [ -70.839844, -80.816891 ], [ -70.839844, -80.844901 ], [ -70.664062, -80.844901 ], [ -70.664062, -80.900669 ], [ -70.488281, -80.900669 ], [ -70.488281, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.956099 ], [ -70.136719, -80.956099 ], [ -70.136719, -81.011194 ], [ -69.960938, -81.011194 ], [ -69.960938, -81.038617 ], [ -69.785156, -81.038617 ], [ -69.785156, -81.065957 ], [ -69.609375, -81.065957 ], [ -69.609375, -81.093214 ], [ -69.433594, -81.093214 ], [ -69.433594, -81.120388 ], [ -69.257812, -81.120388 ], [ -69.257812, -81.147481 ], [ -69.082031, -81.147481 ], [ -69.082031, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.228267 ], [ -68.730469, -81.228267 ], [ -68.730469, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.281717 ], [ -68.378906, -81.281717 ], [ -68.378906, -81.308321 ], [ -68.027344, -81.308321 ], [ -68.027344, -81.334844 ], [ -67.675781, -81.334844 ], [ -67.675781, -81.361287 ], [ -67.324219, -81.361287 ], [ -67.324219, -81.387650 ], [ -66.796875, -81.387650 ], [ -66.796875, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.440137 ], [ -66.093750, -81.440137 ], [ -66.093750, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.492306 ], [ -65.566406, -81.492306 ], [ -65.566406, -81.518272 ], [ -65.214844, -81.518272 ], [ -65.214844, -81.544159 ], [ -65.039062, -81.544159 ], [ -65.039062, -81.569968 ], [ -64.863281, -81.569968 ], [ -64.863281, -81.595699 ], [ -64.687500, -81.595699 ], [ -64.687500, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.646927 ], [ -64.160156, -81.646927 ], [ -64.160156, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.697844 ], [ -63.632812, -81.697844 ], [ -63.632812, -81.723188 ], [ -63.457031, -81.723188 ], [ -63.457031, -81.748454 ], [ -63.281250, -81.748454 ], [ -63.281250, -81.773644 ], [ -63.105469, -81.773644 ], [ -63.105469, -81.798757 ], [ -62.929688, -81.798757 ], [ -62.929688, -81.823794 ], [ -62.753906, -81.823794 ], [ -62.753906, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.898451 ], [ -62.402344, -81.898451 ], [ -62.402344, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.947846 ], [ -62.050781, -81.947846 ], [ -62.050781, -81.972431 ], [ -61.875000, -81.972431 ], [ -61.875000, -82.021378 ], [ -61.699219, -82.021378 ], [ -61.699219, -82.045740 ], [ -61.523438, -82.045740 ], [ -61.523438, -82.070028 ], [ -61.347656, -82.070028 ], [ -61.347656, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.142451 ], [ -60.996094, -82.142451 ], [ -60.996094, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.214217 ], [ -60.644531, -82.214217 ], [ -60.644531, -82.237994 ], [ -60.468750, -82.237994 ], [ -60.468750, -82.285331 ], [ -60.292969, -82.285331 ], [ -60.292969, -82.308893 ], [ -60.117188, -82.308893 ], [ -60.117188, -82.332382 ], [ -59.941406, -82.332382 ], [ -59.941406, -82.379147 ], [ -59.765625, -82.379147 ], [ -59.765625, -82.425629 ], [ -59.589844, -82.425629 ], [ -59.589844, -82.517749 ], [ -59.414062, -82.517749 ], [ -59.414062, -82.586106 ], [ -59.238281, -82.586106 ], [ -59.238281, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -82.743202 ], [ -58.886719, -82.743202 ], [ -58.886719, -82.831480 ], [ -58.710938, -82.831480 ], [ -58.710938, -82.918690 ], [ -58.535156, -82.918690 ], [ -58.535156, -83.047529 ], [ -58.359375, -83.047529 ], [ -58.359375, -83.174035 ], [ -58.183594, -83.174035 ], [ -58.183594, -83.194896 ], [ -58.007812, -83.194896 ], [ -58.007812, -83.153111 ], [ -57.832031, -83.153111 ], [ -57.832031, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -83.047529 ], [ -57.480469, -83.047529 ], [ -57.480469, -83.004844 ], [ -57.304688, -83.004844 ], [ -57.304688, -82.961898 ], [ -57.128906, -82.961898 ], [ -57.128906, -82.918690 ], [ -56.953125, -82.918690 ], [ -56.953125, -82.875218 ], [ -56.777344, -82.875218 ], [ -56.777344, -82.831480 ], [ -56.601562, -82.831480 ], [ -56.601562, -82.809511 ], [ -56.425781, -82.809511 ], [ -56.425781, -82.765373 ], [ -56.250000, -82.765373 ], [ -56.250000, -82.720964 ], [ -56.074219, -82.720964 ], [ -56.074219, -82.698659 ], [ -55.898438, -82.698659 ], [ -55.898438, -82.653843 ], [ -55.722656, -82.653843 ], [ -55.722656, -82.631333 ], [ -55.546875, -82.631333 ], [ -55.546875, -82.586106 ], [ -55.371094, -82.586106 ], [ -55.371094, -82.563390 ], [ -55.195312, -82.563390 ], [ -55.195312, -82.540604 ], [ -55.019531, -82.540604 ], [ -55.019531, -82.494824 ], [ -54.843750, -82.494824 ], [ -54.843750, -82.471829 ], [ -54.667969, -82.471829 ], [ -54.667969, -82.448764 ], [ -54.492188, -82.448764 ], [ -54.492188, -82.402423 ], [ -54.316406, -82.402423 ], [ -54.316406, -82.379147 ], [ -54.140625, -82.379147 ], [ -54.140625, -82.355800 ], [ -53.964844, -82.355800 ], [ -53.964844, -82.308893 ], [ -53.789062, -82.308893 ], [ -53.789062, -82.285331 ], [ -53.613281, -82.285331 ], [ -53.613281, -82.261699 ], [ -53.437500, -82.261699 ], [ -53.437500, -82.237994 ], [ -53.261719, -82.237994 ], [ -53.261719, -82.214217 ], [ -53.085938, -82.214217 ], [ -53.085938, -82.190368 ], [ -52.910156, -82.190368 ], [ -52.910156, -82.166446 ], [ -52.734375, -82.166446 ], [ -52.734375, -82.142451 ], [ -52.382812, -82.142451 ], [ -52.382812, -82.118384 ], [ -52.207031, -82.118384 ], [ -52.207031, -82.094243 ], [ -52.031250, -82.094243 ], [ -52.031250, -82.070028 ], [ -51.855469, -82.070028 ], [ -51.855469, -82.045740 ], [ -51.679688, -82.045740 ], [ -51.679688, -82.021378 ], [ -51.503906, -82.021378 ], [ -51.503906, -81.996942 ], [ -51.328125, -81.996942 ], [ -51.328125, -81.972431 ], [ -51.152344, -81.972431 ], [ -51.152344, -81.947846 ], [ -50.976562, -81.947846 ], [ -50.976562, -81.923186 ], [ -50.800781, -81.923186 ], [ -50.800781, -81.898451 ], [ -50.625000, -81.898451 ], [ -50.625000, -81.848756 ], [ -50.449219, -81.848756 ], [ -50.449219, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.798757 ], [ -50.097656, -81.798757 ], [ -50.097656, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.748454 ], [ -49.746094, -81.748454 ], [ -49.746094, -81.723188 ], [ -48.339844, -81.723188 ], [ -48.339844, -81.697844 ], [ -47.109375, -81.697844 ], [ -47.109375, -81.723188 ], [ -46.757812, -81.723188 ], [ -46.757812, -81.748454 ], [ -46.406250, -81.748454 ], [ -46.406250, -81.773644 ], [ -45.878906, -81.773644 ], [ -45.878906, -81.798757 ], [ -45.527344, -81.798757 ], [ -45.527344, -81.823794 ], [ -45.175781, -81.823794 ], [ -45.175781, -81.848756 ], [ -44.824219, -81.848756 ], [ -44.824219, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.046875, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.327506 ], [ -44.824219, -80.327506 ], [ -44.824219, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.386396 ], [ -45.175781, -80.386396 ], [ -45.175781, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.444931 ], [ -45.527344, -80.444931 ], [ -45.527344, -80.474065 ], [ -45.878906, -80.474065 ], [ -45.878906, -80.503112 ], [ -46.054688, -80.503112 ], [ -46.054688, -80.532071 ], [ -46.230469, -80.532071 ], [ -46.230469, -80.560943 ], [ -46.406250, -80.560943 ], [ -46.406250, -80.589727 ], [ -46.582031, -80.589727 ], [ -46.582031, -80.618424 ], [ -46.757812, -80.618424 ], [ -46.757812, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.675559 ], [ -47.285156, -80.675559 ], [ -47.285156, -80.703997 ], [ -47.460938, -80.703997 ], [ -47.460938, -80.732349 ], [ -47.636719, -80.732349 ], [ -47.636719, -80.760615 ], [ -47.988281, -80.760615 ], [ -47.988281, -80.788795 ], [ -48.164062, -80.788795 ], [ -48.164062, -80.816891 ], [ -48.339844, -80.816891 ], [ -48.339844, -80.844901 ], [ -48.691406, -80.844901 ], [ -48.691406, -80.872827 ], [ -48.867188, -80.872827 ], [ -48.867188, -80.900669 ], [ -49.218750, -80.900669 ], [ -49.218750, -80.928426 ], [ -49.394531, -80.928426 ], [ -49.394531, -80.956099 ], [ -49.746094, -80.956099 ], [ -49.746094, -80.983688 ], [ -49.921875, -80.983688 ], [ -49.921875, -81.011194 ], [ -50.273438, -81.011194 ], [ -50.273438, -81.038617 ], [ -50.976562, -81.038617 ], [ -50.976562, -81.011194 ], [ -51.855469, -81.011194 ], [ -51.855469, -80.983688 ], [ -52.558594, -80.983688 ], [ -52.558594, -80.956099 ], [ -53.085938, -80.956099 ], [ -53.085938, -80.900669 ], [ -53.261719, -80.900669 ], [ -53.261719, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.613281, -80.816891 ], [ -53.613281, -80.760615 ], [ -53.789062, -80.760615 ], [ -53.789062, -80.732349 ], [ -53.964844, -80.732349 ], [ -53.964844, -80.675559 ], [ -54.140625, -80.675559 ], [ -54.140625, -80.444931 ], [ -53.964844, -80.444931 ], [ -53.964844, -80.208652 ], [ -53.789062, -80.208652 ], [ -53.789062, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.148684 ], [ -53.261719, -80.148684 ], [ -53.261719, -80.118564 ], [ -53.085938, -80.118564 ], [ -53.085938, -80.088352 ], [ -52.734375, -80.088352 ], [ -52.734375, -80.058050 ], [ -52.558594, -80.058050 ], [ -52.558594, -80.027655 ], [ -52.382812, -80.027655 ], [ -52.382812, -79.997168 ], [ -52.031250, -79.997168 ], [ -52.031250, -79.966590 ], [ -51.855469, -79.966590 ], [ -51.855469, -79.905154 ], [ -51.679688, -79.905154 ], [ -51.679688, -79.843346 ], [ -51.503906, -79.843346 ], [ -51.503906, -79.781164 ], [ -51.328125, -79.781164 ], [ -51.328125, -79.718605 ], [ -51.152344, -79.718605 ], [ -51.152344, -79.655668 ], [ -50.976562, -79.655668 ], [ -50.976562, -79.560546 ], [ -50.800781, -79.560546 ], [ -50.800781, -79.400085 ], [ -50.625000, -79.400085 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.071812 ], [ -50.097656, -79.071812 ], [ -50.097656, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.749932 ], [ -60.292969, -79.749932 ], [ -60.292969, -79.812302 ], [ -60.117188, -79.812302 ], [ -60.117188, -79.874297 ], [ -59.941406, -79.874297 ], [ -59.941406, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -79.997168 ], [ -59.589844, -79.997168 ], [ -59.589844, -80.178713 ], [ -59.765625, -80.178713 ], [ -59.765625, -80.444931 ], [ -59.941406, -80.444931 ], [ -59.941406, -80.788795 ], [ -60.117188, -80.788795 ], [ -60.117188, -81.011194 ], [ -60.468750, -81.011194 ], [ -60.468750, -80.983688 ], [ -60.820312, -80.983688 ], [ -60.820312, -80.956099 ], [ -61.347656, -80.956099 ], [ -61.347656, -80.928426 ], [ -61.699219, -80.928426 ], [ -61.699219, -80.900669 ], [ -62.050781, -80.900669 ], [ -62.050781, -80.872827 ], [ -62.753906, -80.872827 ], [ -62.753906, -80.900669 ], [ -63.808594, -80.900669 ], [ -63.808594, -80.928426 ], [ -64.687500, -80.928426 ], [ -64.687500, -80.872827 ], [ -64.863281, -80.872827 ], [ -64.863281, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.760615 ], [ -65.214844, -80.760615 ], [ -65.214844, -80.732349 ], [ -65.390625, -80.732349 ], [ -65.390625, -80.675559 ], [ -65.566406, -80.675559 ], [ -65.566406, -80.618424 ], [ -65.742188, -80.618424 ], [ -65.742188, -80.532071 ], [ -65.917969, -80.532071 ], [ -65.917969, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.327506 ], [ -66.269531, -80.327506 ], [ -66.269531, -80.268259 ], [ -65.214844, -80.268259 ], [ -65.214844, -80.297927 ], [ -63.808594, -80.297927 ], [ -63.808594, -80.327506 ], [ -63.105469, -80.327506 ], [ -63.105469, -80.356995 ], [ -62.402344, -80.356995 ], [ -62.402344, -80.386396 ], [ -61.875000, -80.386396 ], [ -61.875000, -80.356995 ], [ -61.699219, -80.356995 ], [ -61.699219, -80.238501 ], [ -61.523438, -80.238501 ], [ -61.523438, -80.148684 ], [ -61.347656, -80.148684 ], [ -61.347656, -80.027655 ], [ -61.171875, -80.027655 ], [ -61.171875, -79.935918 ], [ -60.996094, -79.935918 ], [ -60.996094, -79.812302 ], [ -60.820312, -79.812302 ], [ -60.820312, -79.687184 ], [ -60.468750, -79.687184 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.769531, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -73.073844 ], [ -87.890625, -73.073844 ], [ -87.890625, -73.124945 ], [ -87.539062, -73.124945 ], [ -87.539062, -73.175897 ], [ -86.835938, -73.175897 ], [ -86.835938, -73.124945 ], [ -86.132812, -73.124945 ], [ -86.132812, -73.073844 ], [ -85.957031, -73.073844 ], [ -85.957031, -73.124945 ], [ -85.781250, -73.124945 ], [ -85.781250, -73.226700 ], [ -85.605469, -73.226700 ], [ -85.605469, -73.327858 ], [ -85.429688, -73.327858 ], [ -85.429688, -73.428424 ], [ -85.253906, -73.428424 ], [ -85.253906, -73.478485 ], [ -84.726562, -73.478485 ], [ -84.726562, -73.528399 ], [ -83.671875, -73.528399 ], [ -83.671875, -73.578167 ], [ -82.968750, -73.578167 ], [ -82.968750, -73.627789 ], [ -82.617188, -73.627789 ], [ -82.617188, -73.677264 ], [ -82.265625, -73.677264 ], [ -82.265625, -73.726595 ], [ -82.089844, -73.726595 ], [ -82.089844, -73.775780 ], [ -81.914062, -73.775780 ], [ -81.914062, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.873717 ], [ -81.386719, -73.873717 ], [ -81.386719, -73.824820 ], [ -81.210938, -73.824820 ], [ -81.210938, -73.726595 ], [ -81.035156, -73.726595 ], [ -81.035156, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.528399 ], [ -80.683594, -73.528399 ], [ -80.683594, -73.428424 ], [ -80.507812, -73.428424 ], [ -80.507812, -73.226700 ], [ -80.332031, -73.226700 ], [ -80.332031, -73.175897 ], [ -80.156250, -73.175897 ], [ -80.156250, -73.226700 ], [ -79.980469, -73.226700 ], [ -79.980469, -73.327858 ], [ -79.804688, -73.327858 ], [ -79.804688, -73.378215 ], [ -79.628906, -73.378215 ], [ -79.628906, -73.428424 ], [ -79.453125, -73.428424 ], [ -79.453125, -73.528399 ], [ -78.750000, -73.528399 ], [ -78.750000, -73.478485 ], [ -78.046875, -73.478485 ], [ -78.046875, -73.428424 ], [ -77.871094, -73.428424 ], [ -77.871094, -73.478485 ], [ -77.695312, -73.478485 ], [ -77.695312, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.578167 ], [ -77.167969, -73.578167 ], [ -77.167969, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.677264 ], [ -76.816406, -73.677264 ], [ -76.816406, -73.775780 ], [ -76.640625, -73.775780 ], [ -76.640625, -73.873717 ], [ -76.464844, -73.873717 ], [ -76.464844, -73.971078 ], [ -75.761719, -73.971078 ], [ -75.761719, -73.922469 ], [ -75.058594, -73.922469 ], [ -75.058594, -73.873717 ], [ -74.707031, -73.873717 ], [ -74.707031, -73.824820 ], [ -74.355469, -73.824820 ], [ -74.355469, -73.775780 ], [ -74.179688, -73.775780 ], [ -74.179688, -73.726595 ], [ -73.828125, -73.726595 ], [ -73.828125, -73.677264 ], [ -73.652344, -73.677264 ], [ -73.652344, -73.627789 ], [ -73.476562, -73.627789 ], [ -73.476562, -73.578167 ], [ -73.300781, -73.578167 ], [ -73.300781, -73.528399 ], [ -73.125000, -73.528399 ], [ -73.125000, -73.478485 ], [ -72.949219, -73.478485 ], [ -72.949219, -73.428424 ], [ -72.773438, -73.428424 ], [ -72.773438, -73.378215 ], [ -72.421875, -73.378215 ], [ -72.421875, -73.327858 ], [ -71.718750, -73.327858 ], [ -71.718750, -73.277353 ], [ -71.191406, -73.277353 ], [ -71.191406, -73.226700 ], [ -70.664062, -73.226700 ], [ -70.664062, -73.175897 ], [ -70.312500, -73.175897 ], [ -70.312500, -73.124945 ], [ -69.785156, -73.124945 ], [ -69.785156, -73.073844 ], [ -69.257812, -73.073844 ], [ -69.257812, -76.184995 ], [ -69.609375, -76.184995 ], [ -69.609375, -76.226907 ], [ -69.785156, -76.226907 ], [ -69.785156, -76.268695 ], [ -69.960938, -76.268695 ], [ -69.960938, -76.351896 ], [ -70.136719, -76.351896 ], [ -70.136719, -76.434604 ], [ -70.312500, -76.434604 ], [ -70.312500, -76.516819 ], [ -70.488281, -76.516819 ], [ -70.488281, -76.598545 ], [ -70.664062, -76.598545 ], [ -70.664062, -76.639226 ], [ -71.367188, -76.639226 ], [ -71.367188, -76.679785 ], [ -73.300781, -76.679785 ], [ -73.300781, -76.639226 ], [ -74.355469, -76.639226 ], [ -74.355469, -76.679785 ], [ -75.058594, -76.679785 ], [ -75.058594, -76.720223 ], [ -77.167969, -76.720223 ], [ -77.167969, -76.920614 ], [ -76.992188, -76.920614 ], [ -76.992188, -77.118032 ], [ -76.816406, -77.118032 ], [ -76.816406, -77.157163 ], [ -76.464844, -77.157163 ], [ -76.464844, -77.196176 ], [ -76.113281, -77.196176 ], [ -76.113281, -77.235074 ], [ -75.761719, -77.235074 ], [ -75.761719, -77.273855 ], [ -75.410156, -77.273855 ], [ -75.410156, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.351070 ], [ -75.058594, -77.351070 ], [ -75.058594, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.466028 ], [ -74.707031, -77.466028 ], [ -74.707031, -77.504119 ], [ -74.531250, -77.504119 ], [ -74.531250, -77.542096 ], [ -74.355469, -77.542096 ], [ -74.355469, -77.617709 ], [ -74.179688, -77.617709 ], [ -74.179688, -77.692870 ], [ -74.003906, -77.692870 ], [ -74.003906, -77.804771 ], [ -73.828125, -77.804771 ], [ -73.828125, -77.878814 ], [ -73.652344, -77.878814 ], [ -73.652344, -77.952414 ], [ -73.828125, -77.952414 ], [ -73.828125, -77.989049 ], [ -74.003906, -77.989049 ], [ -74.003906, -78.061989 ], [ -74.179688, -78.061989 ], [ -74.179688, -78.098296 ], [ -74.355469, -78.098296 ], [ -74.355469, -78.134493 ], [ -74.531250, -78.134493 ], [ -74.531250, -78.206563 ], [ -75.234375, -78.206563 ], [ -75.234375, -78.170582 ], [ -76.113281, -78.170582 ], [ -76.113281, -78.134493 ], [ -76.464844, -78.134493 ], [ -76.464844, -78.170582 ], [ -76.640625, -78.170582 ], [ -76.640625, -78.206563 ], [ -76.816406, -78.206563 ], [ -76.816406, -78.242436 ], [ -76.992188, -78.242436 ], [ -76.992188, -78.278201 ], [ -77.343750, -78.278201 ], [ -77.343750, -78.313860 ], [ -77.519531, -78.313860 ], [ -77.519531, -78.349411 ], [ -77.695312, -78.349411 ], [ -77.695312, -78.384855 ], [ -77.871094, -78.384855 ], [ -77.871094, -78.595299 ], [ -78.046875, -78.595299 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.378215 ], [ -90.351562, -73.378215 ], [ -90.351562, -73.327858 ], [ -90.175781, -73.327858 ], [ -90.175781, -73.277353 ], [ -90.000000, -73.277353 ], [ -90.000000, -73.124945 ], [ -89.824219, -73.124945 ], [ -89.824219, -72.971189 ], [ -89.648438, -72.971189 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ], [ -89.121094, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.816074 ], [ -88.769531, -72.816074 ], [ -88.769531, -72.919635 ] ] ], [ [ [ -69.960938, -69.162558 ], [ -69.785156, -69.162558 ], [ -69.785156, -69.349339 ], [ -69.609375, -69.349339 ], [ -69.609375, -69.534518 ], [ -69.433594, -69.534518 ], [ -69.433594, -69.718107 ], [ -69.257812, -69.718107 ], [ -69.257812, -72.235514 ], [ -69.609375, -72.235514 ], [ -69.609375, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.342464 ], [ -70.312500, -72.342464 ], [ -70.312500, -72.395706 ], [ -70.488281, -72.395706 ], [ -70.488281, -72.448792 ], [ -70.839844, -72.448792 ], [ -70.839844, -72.501722 ], [ -72.421875, -72.501722 ], [ -72.421875, -72.448792 ], [ -72.246094, -72.448792 ], [ -72.246094, -72.289067 ], [ -72.070312, -72.289067 ], [ -72.070312, -72.181804 ], [ -71.894531, -72.181804 ], [ -71.894531, -72.073911 ], [ -72.070312, -72.073911 ], [ -72.070312, -72.127936 ], [ -72.421875, -72.127936 ], [ -72.421875, -72.181804 ], [ -72.773438, -72.181804 ], [ -72.773438, -72.235514 ], [ -73.300781, -72.235514 ], [ -73.300781, -72.289067 ], [ -73.828125, -72.289067 ], [ -73.828125, -72.342464 ], [ -74.355469, -72.342464 ], [ -74.355469, -72.289067 ], [ -74.531250, -72.289067 ], [ -74.531250, -72.181804 ], [ -74.707031, -72.181804 ], [ -74.707031, -72.127936 ], [ -74.882812, -72.127936 ], [ -74.882812, -71.856229 ], [ -75.058594, -71.856229 ], [ -75.058594, -71.635993 ], [ -74.882812, -71.635993 ], [ -74.882812, -71.580532 ], [ -74.707031, -71.580532 ], [ -74.707031, -71.524909 ], [ -74.531250, -71.524909 ], [ -74.531250, -71.469124 ], [ -74.355469, -71.469124 ], [ -74.355469, -71.413177 ], [ -74.179688, -71.413177 ], [ -74.179688, -71.357067 ], [ -74.003906, -71.357067 ], [ -74.003906, -71.300793 ], [ -73.828125, -71.300793 ], [ -73.828125, -71.244356 ], [ -73.652344, -71.244356 ], [ -73.652344, -71.187754 ], [ -73.300781, -71.187754 ], [ -73.300781, -71.130988 ], [ -72.773438, -71.130988 ], [ -72.773438, -71.187754 ], [ -72.070312, -71.187754 ], [ -72.070312, -71.074056 ], [ -71.894531, -71.074056 ], [ -71.894531, -70.844673 ], [ -71.718750, -70.844673 ], [ -71.718750, -69.472969 ], [ -71.542969, -69.472969 ], [ -71.542969, -69.287257 ], [ -71.367188, -69.287257 ], [ -71.367188, -69.162558 ], [ -71.191406, -69.162558 ], [ -71.191406, -69.037142 ], [ -71.015625, -69.037142 ], [ -71.015625, -68.974164 ], [ -70.664062, -68.974164 ], [ -70.664062, -68.911005 ], [ -70.136719, -68.911005 ], [ -70.136719, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.162558 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.607120 ], [ -89.121094, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.816074 ], [ -88.769531, -72.816074 ], [ -88.769531, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -73.073844 ], [ -87.890625, -73.073844 ], [ -87.890625, -73.124945 ], [ -87.539062, -73.124945 ], [ -87.539062, -73.175897 ], [ -86.835938, -73.175897 ], [ -86.835938, -73.124945 ], [ -86.132812, -73.124945 ], [ -86.132812, -73.073844 ], [ -85.957031, -73.073844 ], [ -85.957031, -73.124945 ], [ -85.781250, -73.124945 ], [ -85.781250, -73.226700 ], [ -85.605469, -73.226700 ], [ -85.605469, -73.327858 ], [ -85.429688, -73.327858 ], [ -85.429688, -73.428424 ], [ -85.253906, -73.428424 ], [ -85.253906, -73.478485 ], [ -84.726562, -73.478485 ], [ -84.726562, -73.528399 ], [ -83.671875, -73.528399 ], [ -83.671875, -73.578167 ], [ -82.968750, -73.578167 ], [ -82.968750, -73.627789 ], [ -82.617188, -73.627789 ], [ -82.617188, -73.677264 ], [ -82.265625, -73.677264 ], [ -82.265625, -73.726595 ], [ -82.089844, -73.726595 ], [ -82.089844, -73.775780 ], [ -81.914062, -73.775780 ], [ -81.914062, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.873717 ], [ -81.386719, -73.873717 ], [ -81.386719, -73.824820 ], [ -81.210938, -73.824820 ], [ -81.210938, -73.726595 ], [ -81.035156, -73.726595 ], [ -81.035156, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.528399 ], [ -80.683594, -73.528399 ], [ -80.683594, -73.428424 ], [ -80.507812, -73.428424 ], [ -80.507812, -73.226700 ], [ -80.332031, -73.226700 ], [ -80.332031, -73.175897 ], [ -80.156250, -73.175897 ], [ -80.156250, -73.226700 ], [ -79.980469, -73.226700 ], [ -79.980469, -73.327858 ], [ -79.804688, -73.327858 ], [ -79.804688, -73.378215 ], [ -79.628906, -73.378215 ], [ -79.628906, -73.428424 ], [ -79.453125, -73.428424 ], [ -79.453125, -73.528399 ], [ -78.750000, -73.528399 ], [ -78.750000, -73.478485 ], [ -78.046875, -73.478485 ], [ -78.046875, -73.428424 ], [ -77.871094, -73.428424 ], [ -77.871094, -73.478485 ], [ -77.695312, -73.478485 ], [ -77.695312, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.578167 ], [ -77.167969, -73.578167 ], [ -77.167969, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.677264 ], [ -76.816406, -73.677264 ], [ -76.816406, -73.775780 ], [ -76.640625, -73.775780 ], [ -76.640625, -73.873717 ], [ -76.464844, -73.873717 ], [ -76.464844, -73.971078 ], [ -75.761719, -73.971078 ], [ -75.761719, -73.922469 ], [ -75.058594, -73.922469 ], [ -75.058594, -73.873717 ], [ -74.707031, -73.873717 ], [ -74.707031, -73.824820 ], [ -74.355469, -73.824820 ], [ -74.355469, -73.775780 ], [ -74.179688, -73.775780 ], [ -74.179688, -73.726595 ], [ -73.828125, -73.726595 ], [ -73.828125, -73.677264 ], [ -73.652344, -73.677264 ], [ -73.652344, -73.627789 ], [ -73.476562, -73.627789 ], [ -73.476562, -73.578167 ], [ -73.300781, -73.578167 ], [ -73.300781, -73.528399 ], [ -73.125000, -73.528399 ], [ -73.125000, -73.478485 ], [ -72.949219, -73.478485 ], [ -72.949219, -73.428424 ], [ -72.773438, -73.428424 ], [ -72.773438, -73.378215 ], [ -72.421875, -73.378215 ], [ -72.421875, -73.327858 ], [ -71.718750, -73.327858 ], [ -71.718750, -73.277353 ], [ -71.191406, -73.277353 ], [ -71.191406, -73.226700 ], [ -70.664062, -73.226700 ], [ -70.664062, -73.175897 ], [ -70.312500, -73.175897 ], [ -70.312500, -73.124945 ], [ -69.785156, -73.124945 ], [ -69.785156, -73.073844 ], [ -69.257812, -73.073844 ], [ -69.257812, -76.184995 ], [ -69.609375, -76.184995 ], [ -69.609375, -76.226907 ], [ -69.785156, -76.226907 ], [ -69.785156, -76.268695 ], [ -69.960938, -76.268695 ], [ -69.960938, -76.351896 ], [ -70.136719, -76.351896 ], [ -70.136719, -76.434604 ], [ -70.312500, -76.434604 ], [ -70.312500, -76.516819 ], [ -70.488281, -76.516819 ], [ -70.488281, -76.598545 ], [ -70.664062, -76.598545 ], [ -70.664062, -76.639226 ], [ -71.367188, -76.639226 ], [ -71.367188, -76.679785 ], [ -73.300781, -76.679785 ], [ -73.300781, -76.639226 ], [ -74.355469, -76.639226 ], [ -74.355469, -76.679785 ], [ -75.058594, -76.679785 ], [ -75.058594, -76.720223 ], [ -77.167969, -76.720223 ], [ -77.167969, -76.920614 ], [ -76.992188, -76.920614 ], [ -76.992188, -77.118032 ], [ -76.816406, -77.118032 ], [ -76.816406, -77.157163 ], [ -76.464844, -77.157163 ], [ -76.464844, -77.196176 ], [ -76.113281, -77.196176 ], [ -76.113281, -77.235074 ], [ -75.761719, -77.235074 ], [ -75.761719, -77.273855 ], [ -75.410156, -77.273855 ], [ -75.410156, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.351070 ], [ -75.058594, -77.351070 ], [ -75.058594, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.466028 ], [ -74.707031, -77.466028 ], [ -74.707031, -77.504119 ], [ -74.531250, -77.504119 ], [ -74.531250, -77.542096 ], [ -74.355469, -77.542096 ], [ -74.355469, -77.617709 ], [ -74.179688, -77.617709 ], [ -74.179688, -77.692870 ], [ -74.003906, -77.692870 ], [ -74.003906, -77.804771 ], [ -73.828125, -77.804771 ], [ -73.828125, -77.878814 ], [ -73.652344, -77.878814 ], [ -73.652344, -77.952414 ], [ -73.828125, -77.952414 ], [ -73.828125, -77.989049 ], [ -74.003906, -77.989049 ], [ -74.003906, -78.061989 ], [ -74.179688, -78.061989 ], [ -74.179688, -78.098296 ], [ -74.355469, -78.098296 ], [ -74.355469, -78.134493 ], [ -74.531250, -78.134493 ], [ -74.531250, -78.206563 ], [ -75.234375, -78.206563 ], [ -75.234375, -78.170582 ], [ -76.113281, -78.170582 ], [ -76.113281, -78.134493 ], [ -76.464844, -78.134493 ], [ -76.464844, -78.170582 ], [ -76.640625, -78.170582 ], [ -76.640625, -78.206563 ], [ -76.816406, -78.206563 ], [ -76.816406, -78.242436 ], [ -76.992188, -78.242436 ], [ -76.992188, -78.278201 ], [ -77.343750, -78.278201 ], [ -77.343750, -78.313860 ], [ -77.519531, -78.313860 ], [ -77.519531, -78.349411 ], [ -77.695312, -78.349411 ], [ -77.695312, -78.384855 ], [ -77.871094, -78.384855 ], [ -77.871094, -78.595299 ], [ -78.046875, -78.595299 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.378215 ], [ -90.351562, -73.378215 ], [ -90.351562, -73.327858 ], [ -90.175781, -73.327858 ], [ -90.175781, -73.277353 ], [ -90.000000, -73.277353 ], [ -90.000000, -73.124945 ], [ -89.824219, -73.124945 ], [ -89.824219, -72.971189 ], [ -89.648438, -72.971189 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ] ] ], [ [ [ -70.136719, -68.911005 ], [ -70.136719, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.162558 ], [ -69.785156, -69.162558 ], [ -69.785156, -69.349339 ], [ -69.609375, -69.349339 ], [ -69.609375, -69.534518 ], [ -69.433594, -69.534518 ], [ -69.433594, -69.718107 ], [ -69.257812, -69.718107 ], [ -69.257812, -72.235514 ], [ -69.609375, -72.235514 ], [ -69.609375, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.342464 ], [ -70.312500, -72.342464 ], [ -70.312500, -72.395706 ], [ -70.488281, -72.395706 ], [ -70.488281, -72.448792 ], [ -70.839844, -72.448792 ], [ -70.839844, -72.501722 ], [ -72.421875, -72.501722 ], [ -72.421875, -72.448792 ], [ -72.246094, -72.448792 ], [ -72.246094, -72.289067 ], [ -72.070312, -72.289067 ], [ -72.070312, -72.181804 ], [ -71.894531, -72.181804 ], [ -71.894531, -72.073911 ], [ -72.070312, -72.073911 ], [ -72.070312, -72.127936 ], [ -72.421875, -72.127936 ], [ -72.421875, -72.181804 ], [ -72.773438, -72.181804 ], [ -72.773438, -72.235514 ], [ -73.300781, -72.235514 ], [ -73.300781, -72.289067 ], [ -73.828125, -72.289067 ], [ -73.828125, -72.342464 ], [ -74.355469, -72.342464 ], [ -74.355469, -72.289067 ], [ -74.531250, -72.289067 ], [ -74.531250, -72.181804 ], [ -74.707031, -72.181804 ], [ -74.707031, -72.127936 ], [ -74.882812, -72.127936 ], [ -74.882812, -71.856229 ], [ -75.058594, -71.856229 ], [ -75.058594, -71.635993 ], [ -74.882812, -71.635993 ], [ -74.882812, -71.580532 ], [ -74.707031, -71.580532 ], [ -74.707031, -71.524909 ], [ -74.531250, -71.524909 ], [ -74.531250, -71.469124 ], [ -74.355469, -71.469124 ], [ -74.355469, -71.413177 ], [ -74.179688, -71.413177 ], [ -74.179688, -71.357067 ], [ -74.003906, -71.357067 ], [ -74.003906, -71.300793 ], [ -73.828125, -71.300793 ], [ -73.828125, -71.244356 ], [ -73.652344, -71.244356 ], [ -73.652344, -71.187754 ], [ -73.300781, -71.187754 ], [ -73.300781, -71.130988 ], [ -72.773438, -71.130988 ], [ -72.773438, -71.187754 ], [ -72.070312, -71.187754 ], [ -72.070312, -71.074056 ], [ -71.894531, -71.074056 ], [ -71.894531, -70.844673 ], [ -71.718750, -70.844673 ], [ -71.718750, -69.472969 ], [ -71.542969, -69.472969 ], [ -71.542969, -69.287257 ], [ -71.367188, -69.287257 ], [ -71.367188, -69.162558 ], [ -71.191406, -69.162558 ], [ -71.191406, -69.037142 ], [ -71.015625, -69.037142 ], [ -71.015625, -68.974164 ], [ -70.664062, -68.974164 ], [ -70.664062, -68.911005 ], [ -70.136719, -68.911005 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.054688, -77.952414 ], [ -45.878906, -77.952414 ], [ -45.878906, -77.989049 ], [ -45.703125, -77.989049 ], [ -45.703125, -78.025574 ], [ -45.351562, -78.025574 ], [ -45.351562, -78.061989 ], [ -45.175781, -78.061989 ], [ -45.175781, -78.098296 ], [ -45.000000, -78.098296 ], [ -45.000000, -78.170582 ], [ -44.824219, -78.170582 ], [ -44.824219, -78.242436 ], [ -44.648438, -78.242436 ], [ -44.648438, -78.278201 ], [ -44.472656, -78.278201 ], [ -44.472656, -78.349411 ], [ -44.296875, -78.349411 ], [ -44.296875, -78.420193 ], [ -44.121094, -78.420193 ], [ -44.121094, -79.335219 ], [ -50.625000, -79.335219 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.004962 ], [ -50.097656, -79.004962 ], [ -50.097656, -78.870048 ], [ -49.921875, -78.870048 ], [ -49.921875, -78.767792 ], [ -49.746094, -78.767792 ], [ -49.746094, -78.630006 ], [ -49.570312, -78.630006 ], [ -49.570312, -78.525573 ], [ -49.394531, -78.525573 ], [ -49.394531, -78.420193 ], [ -49.218750, -78.420193 ], [ -49.218750, -78.313860 ], [ -49.042969, -78.313860 ], [ -49.042969, -78.242436 ], [ -48.867188, -78.242436 ], [ -48.867188, -78.134493 ], [ -48.691406, -78.134493 ], [ -48.691406, -78.061989 ], [ -47.988281, -78.061989 ], [ -47.988281, -78.025574 ], [ -47.636719, -78.025574 ], [ -47.636719, -77.989049 ], [ -47.460938, -77.989049 ], [ -47.460938, -77.952414 ], [ -47.109375, -77.952414 ], [ -47.109375, -77.915669 ], [ -46.933594, -77.915669 ], [ -46.933594, -77.878814 ], [ -46.406250, -77.878814 ], [ -46.406250, -77.915669 ], [ -46.054688, -77.915669 ], [ -46.054688, -77.952414 ] ] ], [ [ [ -64.863281, -68.720441 ], [ -64.687500, -68.720441 ], [ -64.687500, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.847665 ], [ -64.160156, -68.847665 ], [ -64.160156, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -68.974164 ], [ -63.808594, -68.974164 ], [ -63.808594, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.162558 ], [ -63.457031, -69.162558 ], [ -63.457031, -69.224997 ], [ -63.281250, -69.224997 ], [ -63.281250, -69.287257 ], [ -63.105469, -69.287257 ], [ -63.105469, -69.411242 ], [ -62.929688, -69.411242 ], [ -62.929688, -69.534518 ], [ -62.753906, -69.534518 ], [ -62.753906, -69.839622 ], [ -62.578125, -69.839622 ], [ -62.578125, -70.140364 ], [ -62.402344, -70.140364 ], [ -62.402344, -70.318738 ], [ -62.226562, -70.318738 ], [ -62.226562, -70.495574 ], [ -62.050781, -70.495574 ], [ -62.050781, -70.670881 ], [ -61.875000, -70.670881 ], [ -61.875000, -70.844673 ], [ -61.699219, -70.844673 ], [ -61.699219, -71.016960 ], [ -61.523438, -71.016960 ], [ -61.523438, -71.580532 ], [ -61.347656, -71.580532 ], [ -61.347656, -72.127936 ], [ -61.171875, -72.127936 ], [ -61.171875, -72.342464 ], [ -60.996094, -72.342464 ], [ -60.996094, -72.867930 ], [ -60.820312, -72.867930 ], [ -60.820312, -73.073844 ], [ -60.644531, -73.073844 ], [ -60.644531, -73.428424 ], [ -60.820312, -73.428424 ], [ -60.820312, -73.775780 ], [ -60.996094, -73.775780 ], [ -60.996094, -73.922469 ], [ -61.171875, -73.922469 ], [ -61.171875, -74.067866 ], [ -61.347656, -74.067866 ], [ -61.347656, -74.164085 ], [ -61.523438, -74.164085 ], [ -61.523438, -74.259738 ], [ -61.699219, -74.259738 ], [ -61.699219, -74.354828 ], [ -61.875000, -74.354828 ], [ -61.875000, -74.449358 ], [ -62.226562, -74.449358 ], [ -62.226562, -74.496413 ], [ -62.578125, -74.496413 ], [ -62.578125, -74.543330 ], [ -62.929688, -74.543330 ], [ -62.929688, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.683250 ], [ -63.457031, -74.683250 ], [ -63.457031, -74.775843 ], [ -63.632812, -74.775843 ], [ -63.632812, -74.867889 ], [ -63.808594, -74.867889 ], [ -63.808594, -75.004940 ], [ -63.984375, -75.004940 ], [ -63.984375, -75.095633 ], [ -64.160156, -75.095633 ], [ -64.160156, -75.230667 ], [ -64.335938, -75.230667 ], [ -64.335938, -75.320025 ], [ -64.511719, -75.320025 ], [ -64.511719, -75.364506 ], [ -64.687500, -75.364506 ], [ -64.687500, -75.408854 ], [ -64.863281, -75.408854 ], [ -64.863281, -75.453071 ], [ -65.214844, -75.453071 ], [ -65.214844, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.541113 ], [ -65.566406, -75.541113 ], [ -65.566406, -75.584937 ], [ -65.742188, -75.584937 ], [ -65.742188, -75.628632 ], [ -65.917969, -75.628632 ], [ -65.917969, -75.672197 ], [ -66.269531, -75.672197 ], [ -66.269531, -75.715633 ], [ -66.621094, -75.715633 ], [ -66.621094, -75.758940 ], [ -66.972656, -75.758940 ], [ -66.972656, -75.802118 ], [ -67.148438, -75.802118 ], [ -67.148438, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -75.888091 ], [ -67.675781, -75.888091 ], [ -67.675781, -75.930885 ], [ -67.851562, -75.930885 ], [ -67.851562, -75.973553 ], [ -68.203125, -75.973553 ], [ -68.203125, -76.016094 ], [ -68.378906, -76.016094 ], [ -68.378906, -76.058508 ], [ -68.730469, -76.058508 ], [ -68.730469, -76.100796 ], [ -68.906250, -76.100796 ], [ -68.906250, -76.142958 ], [ -69.257812, -76.142958 ], [ -69.257812, -73.073844 ], [ -69.082031, -73.073844 ], [ -69.082031, -73.022592 ], [ -68.730469, -73.022592 ], [ -68.730469, -72.971189 ], [ -68.554688, -72.971189 ], [ -68.554688, -72.919635 ], [ -68.203125, -72.919635 ], [ -68.203125, -72.867930 ], [ -68.027344, -72.867930 ], [ -68.027344, -72.816074 ], [ -67.851562, -72.816074 ], [ -67.851562, -72.711903 ], [ -67.675781, -72.711903 ], [ -67.675781, -72.659588 ], [ -67.500000, -72.659588 ], [ -67.500000, -72.554498 ], [ -67.324219, -72.554498 ], [ -67.324219, -72.289067 ], [ -67.148438, -72.289067 ], [ -67.148438, -71.856229 ], [ -67.324219, -71.856229 ], [ -67.324219, -71.469124 ], [ -67.500000, -71.469124 ], [ -67.500000, -71.187754 ], [ -67.675781, -71.187754 ], [ -67.675781, -70.959697 ], [ -67.851562, -70.959697 ], [ -67.851562, -70.786910 ], [ -68.027344, -70.786910 ], [ -68.027344, -70.554179 ], [ -68.203125, -70.554179 ], [ -68.203125, -70.377854 ], [ -68.378906, -70.377854 ], [ -68.378906, -70.199994 ], [ -68.554688, -70.199994 ], [ -68.554688, -69.534518 ], [ -68.378906, -69.534518 ], [ -68.378906, -69.287257 ], [ -68.203125, -69.287257 ], [ -68.203125, -69.099940 ], [ -68.027344, -69.099940 ], [ -68.027344, -68.911005 ], [ -67.851562, -68.911005 ], [ -67.851562, -68.784144 ], [ -67.675781, -68.784144 ], [ -67.675781, -68.656555 ], [ -67.500000, -68.656555 ], [ -67.500000, -67.941650 ], [ -67.675781, -67.941650 ], [ -67.675781, -67.272043 ], [ -67.500000, -67.272043 ], [ -67.500000, -66.998844 ], [ -67.324219, -66.998844 ], [ -67.324219, -66.861082 ], [ -67.148438, -66.861082 ], [ -67.148438, -66.791909 ], [ -66.972656, -66.791909 ], [ -66.972656, -66.722541 ], [ -66.796875, -66.722541 ], [ -66.796875, -66.652977 ], [ -66.621094, -66.652977 ], [ -66.621094, -66.583217 ], [ -66.445312, -66.583217 ], [ -66.445312, -66.443107 ], [ -66.269531, -66.443107 ], [ -66.269531, -66.302205 ], [ -66.093750, -66.302205 ], [ -66.093750, -66.231457 ], [ -65.917969, -66.231457 ], [ -65.917969, -66.160511 ], [ -62.050781, -66.160511 ], [ -62.050781, -66.231457 ], [ -62.226562, -66.231457 ], [ -62.226562, -66.302205 ], [ -62.402344, -66.302205 ], [ -62.402344, -66.372755 ], [ -62.578125, -66.372755 ], [ -62.578125, -66.443107 ], [ -63.105469, -66.443107 ], [ -63.105469, -66.513260 ], [ -63.808594, -66.513260 ], [ -63.808594, -66.583217 ], [ -63.984375, -66.583217 ], [ -63.984375, -66.722541 ], [ -64.160156, -66.722541 ], [ -64.160156, -66.861082 ], [ -64.335938, -66.861082 ], [ -64.335938, -66.930060 ], [ -64.511719, -66.930060 ], [ -64.511719, -66.998844 ], [ -64.687500, -66.998844 ], [ -64.687500, -67.135829 ], [ -64.863281, -67.135829 ], [ -64.863281, -67.204032 ], [ -65.039062, -67.204032 ], [ -65.039062, -67.339861 ], [ -65.214844, -67.339861 ], [ -65.214844, -67.474922 ], [ -65.390625, -67.474922 ], [ -65.390625, -67.609221 ], [ -65.566406, -67.609221 ], [ -65.566406, -67.809245 ], [ -65.742188, -67.809245 ], [ -65.742188, -68.073305 ], [ -65.566406, -68.073305 ], [ -65.566406, -68.269387 ], [ -65.390625, -68.269387 ], [ -65.390625, -68.399180 ], [ -65.214844, -68.399180 ], [ -65.214844, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.656555 ], [ -64.863281, -68.656555 ], [ -64.863281, -68.720441 ] ] ], [ [ [ -69.082031, -70.199994 ], [ -68.906250, -70.199994 ], [ -68.906250, -70.436799 ], [ -68.730469, -70.436799 ], [ -68.730469, -70.612614 ], [ -68.554688, -70.612614 ], [ -68.554688, -70.844673 ], [ -68.378906, -70.844673 ], [ -68.378906, -71.635993 ], [ -68.554688, -71.635993 ], [ -68.554688, -72.019729 ], [ -68.730469, -72.019729 ], [ -68.730469, -72.181804 ], [ -68.906250, -72.181804 ], [ -68.906250, -72.235514 ], [ -69.257812, -72.235514 ], [ -69.257812, -69.960439 ], [ -69.082031, -69.960439 ], [ -69.082031, -70.199994 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.406250, -77.878814 ], [ -46.406250, -77.915669 ], [ -46.054688, -77.915669 ], [ -46.054688, -77.952414 ], [ -45.878906, -77.952414 ], [ -45.878906, -77.989049 ], [ -45.703125, -77.989049 ], [ -45.703125, -78.025574 ], [ -45.351562, -78.025574 ], [ -45.351562, -78.061989 ], [ -45.175781, -78.061989 ], [ -45.175781, -78.098296 ], [ -45.000000, -78.098296 ], [ -45.000000, -78.170582 ], [ -44.824219, -78.170582 ], [ -44.824219, -78.242436 ], [ -44.648438, -78.242436 ], [ -44.648438, -78.278201 ], [ -44.472656, -78.278201 ], [ -44.472656, -78.349411 ], [ -44.296875, -78.349411 ], [ -44.296875, -78.420193 ], [ -44.121094, -78.420193 ], [ -44.121094, -79.335219 ], [ -50.625000, -79.335219 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.004962 ], [ -50.097656, -79.004962 ], [ -50.097656, -78.870048 ], [ -49.921875, -78.870048 ], [ -49.921875, -78.767792 ], [ -49.746094, -78.767792 ], [ -49.746094, -78.630006 ], [ -49.570312, -78.630006 ], [ -49.570312, -78.525573 ], [ -49.394531, -78.525573 ], [ -49.394531, -78.420193 ], [ -49.218750, -78.420193 ], [ -49.218750, -78.313860 ], [ -49.042969, -78.313860 ], [ -49.042969, -78.242436 ], [ -48.867188, -78.242436 ], [ -48.867188, -78.134493 ], [ -48.691406, -78.134493 ], [ -48.691406, -78.061989 ], [ -47.988281, -78.061989 ], [ -47.988281, -78.025574 ], [ -47.636719, -78.025574 ], [ -47.636719, -77.989049 ], [ -47.460938, -77.989049 ], [ -47.460938, -77.952414 ], [ -47.109375, -77.952414 ], [ -47.109375, -77.915669 ], [ -46.933594, -77.915669 ], [ -46.933594, -77.878814 ], [ -46.406250, -77.878814 ] ] ], [ [ [ -62.050781, -66.160511 ], [ -62.050781, -66.231457 ], [ -62.226562, -66.231457 ], [ -62.226562, -66.302205 ], [ -62.402344, -66.302205 ], [ -62.402344, -66.372755 ], [ -62.578125, -66.372755 ], [ -62.578125, -66.443107 ], [ -63.105469, -66.443107 ], [ -63.105469, -66.513260 ], [ -63.808594, -66.513260 ], [ -63.808594, -66.583217 ], [ -63.984375, -66.583217 ], [ -63.984375, -66.722541 ], [ -64.160156, -66.722541 ], [ -64.160156, -66.861082 ], [ -64.335938, -66.861082 ], [ -64.335938, -66.930060 ], [ -64.511719, -66.930060 ], [ -64.511719, -66.998844 ], [ -64.687500, -66.998844 ], [ -64.687500, -67.135829 ], [ -64.863281, -67.135829 ], [ -64.863281, -67.204032 ], [ -65.039062, -67.204032 ], [ -65.039062, -67.339861 ], [ -65.214844, -67.339861 ], [ -65.214844, -67.474922 ], [ -65.390625, -67.474922 ], [ -65.390625, -67.609221 ], [ -65.566406, -67.609221 ], [ -65.566406, -67.809245 ], [ -65.742188, -67.809245 ], [ -65.742188, -68.073305 ], [ -65.566406, -68.073305 ], [ -65.566406, -68.269387 ], [ -65.390625, -68.269387 ], [ -65.390625, -68.399180 ], [ -65.214844, -68.399180 ], [ -65.214844, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.656555 ], [ -64.863281, -68.656555 ], [ -64.863281, -68.720441 ], [ -64.687500, -68.720441 ], [ -64.687500, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.847665 ], [ -64.160156, -68.847665 ], [ -64.160156, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -68.974164 ], [ -63.808594, -68.974164 ], [ -63.808594, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.162558 ], [ -63.457031, -69.162558 ], [ -63.457031, -69.224997 ], [ -63.281250, -69.224997 ], [ -63.281250, -69.287257 ], [ -63.105469, -69.287257 ], [ -63.105469, -69.411242 ], [ -62.929688, -69.411242 ], [ -62.929688, -69.534518 ], [ -62.753906, -69.534518 ], [ -62.753906, -69.839622 ], [ -62.578125, -69.839622 ], [ -62.578125, -70.140364 ], [ -62.402344, -70.140364 ], [ -62.402344, -70.318738 ], [ -62.226562, -70.318738 ], [ -62.226562, -70.495574 ], [ -62.050781, -70.495574 ], [ -62.050781, -70.670881 ], [ -61.875000, -70.670881 ], [ -61.875000, -70.844673 ], [ -61.699219, -70.844673 ], [ -61.699219, -71.016960 ], [ -61.523438, -71.016960 ], [ -61.523438, -71.580532 ], [ -61.347656, -71.580532 ], [ -61.347656, -72.127936 ], [ -61.171875, -72.127936 ], [ -61.171875, -72.342464 ], [ -60.996094, -72.342464 ], [ -60.996094, -72.867930 ], [ -60.820312, -72.867930 ], [ -60.820312, -73.073844 ], [ -60.644531, -73.073844 ], [ -60.644531, -73.428424 ], [ -60.820312, -73.428424 ], [ -60.820312, -73.775780 ], [ -60.996094, -73.775780 ], [ -60.996094, -73.922469 ], [ -61.171875, -73.922469 ], [ -61.171875, -74.067866 ], [ -61.347656, -74.067866 ], [ -61.347656, -74.164085 ], [ -61.523438, -74.164085 ], [ -61.523438, -74.259738 ], [ -61.699219, -74.259738 ], [ -61.699219, -74.354828 ], [ -61.875000, -74.354828 ], [ -61.875000, -74.449358 ], [ -62.226562, -74.449358 ], [ -62.226562, -74.496413 ], [ -62.578125, -74.496413 ], [ -62.578125, -74.543330 ], [ -62.929688, -74.543330 ], [ -62.929688, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.683250 ], [ -63.457031, -74.683250 ], [ -63.457031, -74.775843 ], [ -63.632812, -74.775843 ], [ -63.632812, -74.867889 ], [ -63.808594, -74.867889 ], [ -63.808594, -75.004940 ], [ -63.984375, -75.004940 ], [ -63.984375, -75.095633 ], [ -64.160156, -75.095633 ], [ -64.160156, -75.230667 ], [ -64.335938, -75.230667 ], [ -64.335938, -75.320025 ], [ -64.511719, -75.320025 ], [ -64.511719, -75.364506 ], [ -64.687500, -75.364506 ], [ -64.687500, -75.408854 ], [ -64.863281, -75.408854 ], [ -64.863281, -75.453071 ], [ -65.214844, -75.453071 ], [ -65.214844, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.541113 ], [ -65.566406, -75.541113 ], [ -65.566406, -75.584937 ], [ -65.742188, -75.584937 ], [ -65.742188, -75.628632 ], [ -65.917969, -75.628632 ], [ -65.917969, -75.672197 ], [ -66.269531, -75.672197 ], [ -66.269531, -75.715633 ], [ -66.621094, -75.715633 ], [ -66.621094, -75.758940 ], [ -66.972656, -75.758940 ], [ -66.972656, -75.802118 ], [ -67.148438, -75.802118 ], [ -67.148438, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -75.888091 ], [ -67.675781, -75.888091 ], [ -67.675781, -75.930885 ], [ -67.851562, -75.930885 ], [ -67.851562, -75.973553 ], [ -68.203125, -75.973553 ], [ -68.203125, -76.016094 ], [ -68.378906, -76.016094 ], [ -68.378906, -76.058508 ], [ -68.730469, -76.058508 ], [ -68.730469, -76.100796 ], [ -68.906250, -76.100796 ], [ -68.906250, -76.142958 ], [ -69.257812, -76.142958 ], [ -69.257812, -73.073844 ], [ -69.082031, -73.073844 ], [ -69.082031, -73.022592 ], [ -68.730469, -73.022592 ], [ -68.730469, -72.971189 ], [ -68.554688, -72.971189 ], [ -68.554688, -72.919635 ], [ -68.203125, -72.919635 ], [ -68.203125, -72.867930 ], [ -68.027344, -72.867930 ], [ -68.027344, -72.816074 ], [ -67.851562, -72.816074 ], [ -67.851562, -72.711903 ], [ -67.675781, -72.711903 ], [ -67.675781, -72.659588 ], [ -67.500000, -72.659588 ], [ -67.500000, -72.554498 ], [ -67.324219, -72.554498 ], [ -67.324219, -72.289067 ], [ -67.148438, -72.289067 ], [ -67.148438, -71.856229 ], [ -67.324219, -71.856229 ], [ -67.324219, -71.469124 ], [ -67.500000, -71.469124 ], [ -67.500000, -71.187754 ], [ -67.675781, -71.187754 ], [ -67.675781, -70.959697 ], [ -67.851562, -70.959697 ], [ -67.851562, -70.786910 ], [ -68.027344, -70.786910 ], [ -68.027344, -70.554179 ], [ -68.203125, -70.554179 ], [ -68.203125, -70.377854 ], [ -68.378906, -70.377854 ], [ -68.378906, -70.199994 ], [ -68.554688, -70.199994 ], [ -68.554688, -69.534518 ], [ -68.378906, -69.534518 ], [ -68.378906, -69.287257 ], [ -68.203125, -69.287257 ], [ -68.203125, -69.099940 ], [ -68.027344, -69.099940 ], [ -68.027344, -68.911005 ], [ -67.851562, -68.911005 ], [ -67.851562, -68.784144 ], [ -67.675781, -68.784144 ], [ -67.675781, -68.656555 ], [ -67.500000, -68.656555 ], [ -67.500000, -67.941650 ], [ -67.675781, -67.941650 ], [ -67.675781, -67.272043 ], [ -67.500000, -67.272043 ], [ -67.500000, -66.998844 ], [ -67.324219, -66.998844 ], [ -67.324219, -66.861082 ], [ -67.148438, -66.861082 ], [ -67.148438, -66.791909 ], [ -66.972656, -66.791909 ], [ -66.972656, -66.722541 ], [ -66.796875, -66.722541 ], [ -66.796875, -66.652977 ], [ -66.621094, -66.652977 ], [ -66.621094, -66.583217 ], [ -66.445312, -66.583217 ], [ -66.445312, -66.443107 ], [ -66.269531, -66.443107 ], [ -66.269531, -66.302205 ], [ -66.093750, -66.302205 ], [ -66.093750, -66.231457 ], [ -65.917969, -66.231457 ], [ -65.917969, -66.160511 ], [ -62.050781, -66.160511 ] ] ], [ [ [ -69.082031, -69.960439 ], [ -69.082031, -70.199994 ], [ -68.906250, -70.199994 ], [ -68.906250, -70.436799 ], [ -68.730469, -70.436799 ], [ -68.730469, -70.612614 ], [ -68.554688, -70.612614 ], [ -68.378906, -70.844673 ], [ -68.378906, -71.635993 ], [ -68.554688, -71.635993 ], [ -68.554688, -72.019729 ], [ -68.730469, -72.019729 ], [ -68.730469, -72.181804 ], [ -68.906250, -72.181804 ], [ -68.906250, -72.235514 ], [ -69.257812, -72.235514 ], [ -69.257812, -69.960439 ], [ -69.082031, -69.960439 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.179688, -52.908902 ], [ -74.179688, -53.014783 ], [ -73.828125, -53.014783 ], [ -73.828125, -53.120405 ], [ -73.652344, -53.120405 ], [ -73.652344, -53.225768 ], [ -73.476562, -53.225768 ], [ -73.476562, -53.330873 ], [ -73.300781, -53.330873 ], [ -73.300781, -53.435719 ], [ -72.949219, -53.435719 ], [ -72.949219, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.644638 ], [ -72.597656, -53.644638 ], [ -72.597656, -53.748711 ], [ -72.246094, -53.748711 ], [ -72.246094, -53.852527 ], [ -71.894531, -53.852527 ], [ -71.894531, -53.956086 ], [ -71.542969, -53.956086 ], [ -71.542969, -54.059388 ], [ -71.015625, -54.059388 ], [ -71.015625, -53.852527 ], [ -70.839844, -53.852527 ], [ -70.839844, -53.748711 ], [ -70.664062, -53.748711 ], [ -70.664062, -53.540307 ], [ -70.488281, -53.540307 ], [ -70.488281, -53.120405 ], [ -70.312500, -53.120405 ], [ -70.312500, -52.908902 ], [ -70.136719, -52.908902 ], [ -70.136719, -52.802761 ], [ -69.785156, -52.802761 ], [ -69.785156, -52.696361 ], [ -69.609375, -52.696361 ], [ -69.609375, -52.589701 ], [ -69.257812, -52.589701 ], [ -69.257812, -52.482780 ], [ -69.082031, -52.482780 ], [ -69.082031, -52.589701 ], [ -68.554688, -52.589701 ], [ -68.554688, -54.876607 ], [ -66.972656, -54.876607 ], [ -66.972656, -54.977614 ], [ -67.148438, -54.977614 ], [ -67.148438, -55.178868 ], [ -67.324219, -55.178868 ], [ -67.324219, -55.379110 ], [ -67.675781, -55.379110 ], [ -67.675781, -55.478853 ], [ -68.027344, -55.478853 ], [ -68.027344, -55.578345 ], [ -69.082031, -55.578345 ], [ -69.082031, -55.478853 ], [ -69.433594, -55.478853 ], [ -69.433594, -55.379110 ], [ -69.785156, -55.379110 ], [ -69.785156, -55.279115 ], [ -69.960938, -55.279115 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -55.078367 ], [ -71.191406, -55.078367 ], [ -71.191406, -54.977614 ], [ -71.367188, -54.977614 ], [ -71.367188, -54.876607 ], [ -71.542969, -54.876607 ], [ -71.542969, -54.775346 ], [ -71.894531, -54.775346 ], [ -71.894531, -54.673831 ], [ -72.070312, -54.673831 ], [ -72.070312, -54.572062 ], [ -72.246094, -54.572062 ], [ -72.246094, -54.470038 ], [ -72.421875, -54.470038 ], [ -72.421875, -54.367759 ], [ -72.597656, -54.367759 ], [ -72.597656, -54.265224 ], [ -72.949219, -54.265224 ], [ -72.949219, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -54.059388 ], [ -73.300781, -54.059388 ], [ -73.300781, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.652344, -53.748711 ], [ -73.652344, -53.644638 ], [ -73.828125, -53.644638 ], [ -73.828125, -53.540307 ], [ -74.003906, -53.540307 ], [ -74.003906, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.225768 ], [ -74.355469, -53.225768 ], [ -74.355469, -53.120405 ], [ -74.531250, -53.120405 ], [ -74.531250, -52.908902 ], [ -74.179688, -52.908902 ] ] ], [ [ [ -71.367188, -44.715514 ], [ -71.191406, -44.715514 ], [ -71.191406, -44.840291 ], [ -71.367188, -44.840291 ], [ -71.367188, -44.964798 ], [ -71.718750, -44.964798 ], [ -71.718750, -45.336702 ], [ -71.542969, -45.336702 ], [ -71.542969, -45.951150 ], [ -71.718750, -45.951150 ], [ -71.718750, -46.679594 ], [ -71.894531, -46.679594 ], [ -71.894531, -47.159840 ], [ -72.070312, -47.159840 ], [ -72.070312, -47.398349 ], [ -72.246094, -47.398349 ], [ -72.246094, -47.635784 ], [ -72.421875, -47.635784 ], [ -72.421875, -47.989922 ], [ -72.246094, -47.989922 ], [ -72.246094, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -48.806863 ], [ -72.597656, -48.806863 ], [ -72.597656, -49.037868 ], [ -72.949219, -49.037868 ], [ -72.949219, -49.152970 ], [ -73.300781, -49.152970 ], [ -73.300781, -49.267805 ], [ -73.476562, -49.267805 ], [ -73.476562, -49.837982 ], [ -73.300781, -49.837982 ], [ -73.300781, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -50.625073 ], [ -72.246094, -50.625073 ], [ -72.246094, -51.618017 ], [ -72.070312, -51.618017 ], [ -72.070312, -51.944265 ], [ -71.894531, -51.944265 ], [ -71.894531, -52.052490 ], [ -70.839844, -52.052490 ], [ -70.839844, -52.160455 ], [ -69.082031, -52.160455 ], [ -69.082031, -52.268157 ], [ -69.433594, -52.268157 ], [ -69.433594, -52.375599 ], [ -69.609375, -52.375599 ], [ -69.609375, -52.482780 ], [ -69.785156, -52.482780 ], [ -69.785156, -52.589701 ], [ -69.960938, -52.589701 ], [ -69.960938, -52.696361 ], [ -70.312500, -52.696361 ], [ -70.312500, -52.802761 ], [ -70.664062, -52.802761 ], [ -70.664062, -52.908902 ], [ -70.839844, -52.908902 ], [ -70.839844, -53.435719 ], [ -71.015625, -53.435719 ], [ -71.015625, -53.852527 ], [ -71.718750, -53.852527 ], [ -71.718750, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.644638 ], [ -72.421875, -53.644638 ], [ -72.421875, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.435719 ], [ -72.949219, -53.435719 ], [ -72.949219, -53.330873 ], [ -73.125000, -53.330873 ], [ -73.125000, -53.120405 ], [ -73.300781, -53.120405 ], [ -73.300781, -53.014783 ], [ -73.476562, -53.014783 ], [ -73.476562, -52.908902 ], [ -73.652344, -52.908902 ], [ -73.652344, -52.802761 ], [ -73.828125, -52.802761 ], [ -73.828125, -52.696361 ], [ -74.179688, -52.696361 ], [ -74.179688, -52.589701 ], [ -74.355469, -52.589701 ], [ -74.355469, -52.482780 ], [ -74.531250, -52.482780 ], [ -74.531250, -52.375599 ], [ -74.882812, -52.375599 ], [ -74.882812, -52.160455 ], [ -75.058594, -52.160455 ], [ -75.058594, -51.835778 ], [ -75.234375, -51.835778 ], [ -75.234375, -51.399206 ], [ -75.058594, -51.399206 ], [ -75.058594, -50.958427 ], [ -75.234375, -50.958427 ], [ -75.234375, -50.625073 ], [ -75.410156, -50.625073 ], [ -75.410156, -49.610710 ], [ -75.585938, -49.610710 ], [ -75.585938, -48.458352 ], [ -75.410156, -48.458352 ], [ -75.410156, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.754098 ], [ -75.058594, -47.754098 ], [ -75.058594, -47.635784 ], [ -74.882812, -47.635784 ], [ -74.882812, -47.517201 ], [ -74.707031, -47.517201 ], [ -74.707031, -47.279229 ], [ -74.531250, -47.279229 ], [ -74.531250, -47.159840 ], [ -74.355469, -47.159840 ], [ -74.355469, -47.040182 ], [ -74.179688, -47.040182 ], [ -74.179688, -46.920255 ], [ -74.707031, -46.920255 ], [ -74.707031, -46.800059 ], [ -75.410156, -46.800059 ], [ -75.410156, -46.437857 ], [ -75.234375, -46.437857 ], [ -75.234375, -46.195042 ], [ -75.058594, -46.195042 ], [ -75.058594, -46.073231 ], [ -74.882812, -46.073231 ], [ -74.882812, -45.828799 ], [ -74.707031, -45.828799 ], [ -74.707031, -45.336702 ], [ -74.531250, -45.336702 ], [ -74.531250, -44.590467 ], [ -74.355469, -44.590467 ], [ -74.355469, -44.213710 ], [ -74.003906, -44.213710 ], [ -74.003906, -44.339565 ], [ -73.652344, -44.339565 ], [ -73.652344, -44.465151 ], [ -73.300781, -44.465151 ], [ -73.300781, -44.213710 ], [ -73.125000, -44.213710 ], [ -73.125000, -43.452919 ], [ -72.949219, -43.452919 ], [ -72.949219, -42.811522 ], [ -72.773438, -42.811522 ], [ -72.773438, -42.423457 ], [ -73.125000, -42.423457 ], [ -73.125000, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.652344, -42.811522 ], [ -73.652344, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -43.197167 ], [ -74.355469, -43.197167 ], [ -74.355469, -42.940339 ], [ -74.179688, -42.940339 ], [ -74.179688, -42.163403 ], [ -74.003906, -42.163403 ], [ -74.003906, -41.112469 ], [ -73.828125, -41.112469 ], [ -73.828125, -40.313043 ], [ -71.718750, -40.313043 ], [ -71.718750, -40.580585 ], [ -71.894531, -40.580585 ], [ -71.894531, -41.508577 ], [ -71.718750, -41.508577 ], [ -71.718750, -42.163403 ], [ -71.894531, -42.163403 ], [ -71.894531, -42.293564 ], [ -72.070312, -42.293564 ], [ -72.070312, -42.940339 ], [ -71.894531, -42.940339 ], [ -71.894531, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -71.542969, -43.834527 ], [ -71.542969, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -44.339565 ], [ -71.542969, -44.339565 ], [ -71.542969, -44.465151 ], [ -71.367188, -44.465151 ], [ -71.367188, -44.715514 ] ] ], [ [ [ -74.707031, -52.908902 ], [ -74.707031, -52.802761 ], [ -74.531250, -52.802761 ], [ -74.531250, -52.908902 ], [ -74.707031, -52.908902 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.015625, -53.852527 ], [ -71.718750, -53.852527 ], [ -71.718750, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.644638 ], [ -72.421875, -53.644638 ], [ -72.421875, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.435719 ], [ -72.949219, -53.435719 ], [ -72.949219, -53.330873 ], [ -73.125000, -53.330873 ], [ -73.125000, -53.120405 ], [ -73.300781, -53.120405 ], [ -73.300781, -53.014783 ], [ -73.476562, -53.014783 ], [ -73.476562, -52.908902 ], [ -73.652344, -52.908902 ], [ -73.652344, -52.802761 ], [ -73.828125, -52.802761 ], [ -73.828125, -52.696361 ], [ -74.179688, -52.696361 ], [ -74.179688, -52.589701 ], [ -74.355469, -52.589701 ], [ -74.355469, -52.482780 ], [ -74.531250, -52.482780 ], [ -74.531250, -52.375599 ], [ -74.882812, -52.375599 ], [ -74.882812, -52.160455 ], [ -75.058594, -52.160455 ], [ -75.058594, -51.835778 ], [ -75.234375, -51.835778 ], [ -75.234375, -51.399206 ], [ -75.058594, -51.399206 ], [ -75.058594, -50.958427 ], [ -75.234375, -50.958427 ], [ -75.234375, -50.625073 ], [ -75.410156, -50.625073 ], [ -75.410156, -49.610710 ], [ -75.585938, -49.610710 ], [ -75.585938, -48.458352 ], [ -75.410156, -48.458352 ], [ -75.410156, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.754098 ], [ -75.058594, -47.754098 ], [ -75.058594, -47.635784 ], [ -74.882812, -47.635784 ], [ -74.882812, -47.517201 ], [ -74.707031, -47.517201 ], [ -74.707031, -47.279229 ], [ -74.531250, -47.279229 ], [ -74.531250, -47.159840 ], [ -74.355469, -47.159840 ], [ -74.355469, -47.040182 ], [ -74.179688, -47.040182 ], [ -74.179688, -46.920255 ], [ -74.707031, -46.920255 ], [ -74.707031, -46.800059 ], [ -75.410156, -46.800059 ], [ -75.410156, -46.437857 ], [ -75.234375, -46.437857 ], [ -75.234375, -46.195042 ], [ -75.058594, -46.195042 ], [ -75.058594, -46.073231 ], [ -74.882812, -46.073231 ], [ -74.882812, -45.828799 ], [ -74.707031, -45.828799 ], [ -74.707031, -45.336702 ], [ -74.531250, -45.336702 ], [ -74.531250, -44.590467 ], [ -74.355469, -44.590467 ], [ -74.355469, -44.213710 ], [ -74.003906, -44.213710 ], [ -74.003906, -44.339565 ], [ -73.652344, -44.339565 ], [ -73.652344, -44.465151 ], [ -73.300781, -44.465151 ], [ -73.300781, -44.213710 ], [ -73.125000, -44.213710 ], [ -73.125000, -43.452919 ], [ -72.949219, -43.452919 ], [ -72.949219, -42.811522 ], [ -72.773438, -42.811522 ], [ -72.773438, -42.423457 ], [ -73.125000, -42.423457 ], [ -73.125000, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.652344, -42.811522 ], [ -73.652344, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -43.197167 ], [ -74.355469, -43.197167 ], [ -74.355469, -42.940339 ], [ -74.179688, -42.940339 ], [ -74.179688, -42.163403 ], [ -74.003906, -42.163403 ], [ -74.003906, -41.112469 ], [ -73.828125, -41.112469 ], [ -73.828125, -40.313043 ], [ -71.718750, -40.313043 ], [ -71.718750, -40.580585 ], [ -71.894531, -40.580585 ], [ -71.894531, -41.508577 ], [ -71.718750, -41.508577 ], [ -71.718750, -42.163403 ], [ -71.894531, -42.163403 ], [ -71.894531, -42.293564 ], [ -72.070312, -42.293564 ], [ -72.070312, -42.940339 ], [ -71.894531, -42.940339 ], [ -71.894531, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -71.542969, -43.834527 ], [ -71.542969, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -44.339565 ], [ -71.542969, -44.339565 ], [ -71.542969, -44.465151 ], [ -71.367188, -44.465151 ], [ -71.367188, -44.715514 ], [ -71.191406, -44.715514 ], [ -71.191406, -44.840291 ], [ -71.367188, -44.840291 ], [ -71.367188, -44.964798 ], [ -71.718750, -44.964798 ], [ -71.718750, -45.336702 ], [ -71.542969, -45.336702 ], [ -71.542969, -45.951150 ], [ -71.718750, -45.951150 ], [ -71.718750, -46.679594 ], [ -71.894531, -46.679594 ], [ -71.894531, -47.159840 ], [ -72.070312, -47.159840 ], [ -72.070312, -47.398349 ], [ -72.246094, -47.398349 ], [ -72.246094, -47.635784 ], [ -72.421875, -47.635784 ], [ -72.421875, -47.989922 ], [ -72.246094, -47.989922 ], [ -72.246094, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -48.806863 ], [ -72.597656, -48.806863 ], [ -72.597656, -49.037868 ], [ -72.949219, -49.037868 ], [ -72.949219, -49.152970 ], [ -73.300781, -49.152970 ], [ -73.300781, -49.267805 ], [ -73.476562, -49.267805 ], [ -73.476562, -49.837982 ], [ -73.300781, -49.837982 ], [ -73.300781, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -50.625073 ], [ -72.246094, -50.625073 ], [ -72.246094, -51.618017 ], [ -72.070312, -51.618017 ], [ -72.070312, -51.944265 ], [ -71.894531, -51.944265 ], [ -71.894531, -52.052490 ], [ -70.839844, -52.052490 ], [ -70.839844, -52.160455 ], [ -69.082031, -52.160455 ], [ -69.082031, -52.268157 ], [ -69.433594, -52.268157 ], [ -69.433594, -52.375599 ], [ -69.609375, -52.375599 ], [ -69.609375, -52.482780 ], [ -69.785156, -52.482780 ], [ -69.785156, -52.589701 ], [ -69.960938, -52.589701 ], [ -69.960938, -52.696361 ], [ -70.312500, -52.696361 ], [ -70.312500, -52.802761 ], [ -70.664062, -52.802761 ], [ -70.664062, -52.908902 ], [ -70.839844, -52.908902 ], [ -70.839844, -53.435719 ], [ -71.015625, -53.435719 ], [ -71.015625, -53.852527 ] ] ], [ [ [ -74.531250, -52.908902 ], [ -74.179688, -52.908902 ], [ -74.179688, -53.014783 ], [ -73.828125, -53.014783 ], [ -73.828125, -53.120405 ], [ -73.652344, -53.120405 ], [ -73.652344, -53.225768 ], [ -73.476562, -53.225768 ], [ -73.476562, -53.330873 ], [ -73.300781, -53.330873 ], [ -73.300781, -53.435719 ], [ -72.949219, -53.435719 ], [ -72.949219, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.644638 ], [ -72.597656, -53.644638 ], [ -72.597656, -53.748711 ], [ -72.246094, -53.748711 ], [ -72.246094, -53.852527 ], [ -71.894531, -53.852527 ], [ -71.894531, -53.956086 ], [ -71.542969, -53.956086 ], [ -71.542969, -54.059388 ], [ -71.015625, -54.059388 ], [ -71.015625, -53.852527 ], [ -70.839844, -53.852527 ], [ -70.839844, -53.748711 ], [ -70.664062, -53.748711 ], [ -70.664062, -53.540307 ], [ -70.488281, -53.540307 ], [ -70.488281, -53.120405 ], [ -70.312500, -53.120405 ], [ -70.312500, -52.908902 ], [ -70.136719, -52.908902 ], [ -70.136719, -52.802761 ], [ -69.785156, -52.802761 ], [ -69.785156, -52.696361 ], [ -69.609375, -52.696361 ], [ -69.609375, -52.589701 ], [ -69.257812, -52.589701 ], [ -69.257812, -52.482780 ], [ -69.082031, -52.482780 ], [ -69.082031, -52.589701 ], [ -68.554688, -52.589701 ], [ -68.554688, -54.876607 ], [ -66.972656, -54.876607 ], [ -66.972656, -54.977614 ], [ -67.148438, -54.977614 ], [ -67.148438, -55.178868 ], [ -67.324219, -55.178868 ], [ -67.324219, -55.379110 ], [ -67.675781, -55.379110 ], [ -67.675781, -55.478853 ], [ -68.027344, -55.478853 ], [ -68.027344, -55.578345 ], [ -69.082031, -55.578345 ], [ -69.082031, -55.478853 ], [ -69.433594, -55.478853 ], [ -69.433594, -55.379110 ], [ -69.785156, -55.379110 ], [ -69.785156, -55.279115 ], [ -69.960938, -55.279115 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -55.078367 ], [ -71.191406, -55.078367 ], [ -71.191406, -54.977614 ], [ -71.367188, -54.977614 ], [ -71.367188, -54.876607 ], [ -71.542969, -54.876607 ], [ -71.542969, -54.775346 ], [ -71.894531, -54.775346 ], [ -71.894531, -54.673831 ], [ -72.070312, -54.673831 ], [ -72.070312, -54.572062 ], [ -72.246094, -54.572062 ], [ -72.246094, -54.470038 ], [ -72.421875, -54.470038 ], [ -72.421875, -54.367759 ], [ -72.597656, -54.367759 ], [ -72.597656, -54.265224 ], [ -72.949219, -54.265224 ], [ -72.949219, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -54.059388 ], [ -73.300781, -54.059388 ], [ -73.300781, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.652344, -53.748711 ], [ -73.652344, -53.644638 ], [ -73.828125, -53.644638 ], [ -73.828125, -53.540307 ], [ -74.003906, -53.540307 ], [ -74.003906, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.225768 ], [ -74.355469, -53.225768 ], [ -74.355469, -53.120405 ], [ -74.531250, -53.120405 ], [ -74.531250, -52.908902 ] ] ], [ [ [ -74.531250, -52.908902 ], [ -74.707031, -52.908902 ], [ -74.707031, -52.802761 ], [ -74.531250, -52.802761 ], [ -74.531250, -52.908902 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.378906, -53.014783 ], [ -68.203125, -53.014783 ], [ -68.203125, -53.330873 ], [ -68.027344, -53.330873 ], [ -68.027344, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.748711 ], [ -67.675781, -53.748711 ], [ -67.675781, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.059388 ], [ -67.324219, -54.059388 ], [ -67.324219, -54.162434 ], [ -66.972656, -54.162434 ], [ -66.972656, -54.265224 ], [ -66.796875, -54.265224 ], [ -66.796875, -54.367759 ], [ -66.621094, -54.367759 ], [ -66.621094, -54.470038 ], [ -66.269531, -54.470038 ], [ -66.269531, -54.572062 ], [ -65.566406, -54.572062 ], [ -65.566406, -54.673831 ], [ -65.039062, -54.673831 ], [ -65.039062, -54.775346 ], [ -65.214844, -54.775346 ], [ -65.214844, -54.977614 ], [ -65.390625, -54.977614 ], [ -65.390625, -55.178868 ], [ -65.917969, -55.178868 ], [ -65.917969, -55.279115 ], [ -66.621094, -55.279115 ], [ -66.621094, -55.078367 ], [ -66.796875, -55.078367 ], [ -66.796875, -54.977614 ], [ -66.972656, -54.977614 ], [ -66.972656, -54.876607 ], [ -68.554688, -54.876607 ], [ -68.554688, -52.802761 ], [ -68.378906, -52.802761 ], [ -68.378906, -53.014783 ] ] ], [ [ [ -64.687500, -40.847060 ], [ -64.687500, -40.979898 ], [ -64.863281, -40.979898 ], [ -64.863281, -41.112469 ], [ -65.039062, -41.112469 ], [ -65.039062, -42.163403 ], [ -64.863281, -42.163403 ], [ -64.863281, -42.293564 ], [ -64.511719, -42.293564 ], [ -64.511719, -42.423457 ], [ -64.160156, -42.423457 ], [ -64.160156, -42.293564 ], [ -63.984375, -42.293564 ], [ -63.984375, -42.163403 ], [ -63.632812, -42.163403 ], [ -63.632812, -42.423457 ], [ -63.457031, -42.423457 ], [ -63.457031, -42.553080 ], [ -63.632812, -42.553080 ], [ -63.632812, -42.682435 ], [ -63.984375, -42.682435 ], [ -63.984375, -42.811522 ], [ -64.335938, -42.811522 ], [ -64.335938, -42.940339 ], [ -64.511719, -42.940339 ], [ -64.511719, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.197167 ], [ -64.863281, -43.197167 ], [ -64.863281, -43.325178 ], [ -65.039062, -43.325178 ], [ -65.039062, -43.452919 ], [ -65.214844, -43.452919 ], [ -65.214844, -43.961191 ], [ -65.390625, -43.961191 ], [ -65.390625, -44.840291 ], [ -65.566406, -44.840291 ], [ -65.566406, -45.089036 ], [ -66.445312, -45.089036 ], [ -66.445312, -45.213004 ], [ -66.621094, -45.213004 ], [ -66.621094, -45.336702 ], [ -66.972656, -45.336702 ], [ -66.972656, -45.460131 ], [ -67.148438, -45.460131 ], [ -67.148438, -45.583290 ], [ -67.324219, -45.583290 ], [ -67.324219, -45.951150 ], [ -67.500000, -45.951150 ], [ -67.500000, -46.437857 ], [ -67.324219, -46.437857 ], [ -67.324219, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.679594 ], [ -66.972656, -46.679594 ], [ -66.972656, -46.920255 ], [ -66.796875, -46.920255 ], [ -66.796875, -47.040182 ], [ -66.445312, -47.040182 ], [ -66.445312, -47.159840 ], [ -65.917969, -47.159840 ], [ -65.917969, -47.279229 ], [ -65.566406, -47.279229 ], [ -65.566406, -47.517201 ], [ -65.742188, -47.517201 ], [ -65.742188, -47.989922 ], [ -65.917969, -47.989922 ], [ -65.917969, -48.224673 ], [ -66.269531, -48.224673 ], [ -66.269531, -48.341646 ], [ -66.445312, -48.341646 ], [ -66.445312, -48.458352 ], [ -66.621094, -48.458352 ], [ -66.621094, -48.574790 ], [ -66.972656, -48.574790 ], [ -66.972656, -48.690960 ], [ -67.148438, -48.690960 ], [ -67.148438, -48.922499 ], [ -67.324219, -48.922499 ], [ -67.324219, -49.152970 ], [ -67.500000, -49.152970 ], [ -67.500000, -49.496675 ], [ -67.675781, -49.496675 ], [ -67.675781, -49.724479 ], [ -67.851562, -49.724479 ], [ -67.851562, -49.951220 ], [ -68.027344, -49.951220 ], [ -68.027344, -50.064192 ], [ -68.378906, -50.064192 ], [ -68.378906, -50.176898 ], [ -68.554688, -50.176898 ], [ -68.554688, -50.289339 ], [ -68.730469, -50.289339 ], [ -68.730469, -50.401515 ], [ -68.906250, -50.401515 ], [ -68.906250, -50.625073 ], [ -69.082031, -50.625073 ], [ -69.082031, -51.069017 ], [ -68.906250, -51.069017 ], [ -68.906250, -51.508742 ], [ -68.730469, -51.508742 ], [ -68.730469, -51.835778 ], [ -68.554688, -51.835778 ], [ -68.554688, -52.052490 ], [ -68.378906, -52.052490 ], [ -68.378906, -52.268157 ], [ -68.203125, -52.268157 ], [ -68.203125, -52.375599 ], [ -68.554688, -52.375599 ], [ -68.554688, -52.268157 ], [ -69.082031, -52.268157 ], [ -69.082031, -52.160455 ], [ -70.839844, -52.160455 ], [ -70.839844, -52.052490 ], [ -71.894531, -52.052490 ], [ -71.894531, -51.944265 ], [ -72.070312, -51.944265 ], [ -72.070312, -51.618017 ], [ -72.246094, -51.618017 ], [ -72.246094, -50.625073 ], [ -72.421875, -50.625073 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.300781, -50.513427 ], [ -73.300781, -49.837982 ], [ -73.476562, -49.837982 ], [ -73.476562, -49.267805 ], [ -73.300781, -49.267805 ], [ -73.300781, -49.152970 ], [ -72.949219, -49.152970 ], [ -72.949219, -49.037868 ], [ -72.597656, -49.037868 ], [ -72.597656, -48.806863 ], [ -72.421875, -48.806863 ], [ -72.421875, -48.458352 ], [ -72.246094, -48.458352 ], [ -72.246094, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -47.635784 ], [ -72.246094, -47.635784 ], [ -72.246094, -47.398349 ], [ -72.070312, -47.398349 ], [ -72.070312, -47.159840 ], [ -71.894531, -47.159840 ], [ -71.894531, -46.679594 ], [ -71.718750, -46.679594 ], [ -71.718750, -45.951150 ], [ -71.542969, -45.951150 ], [ -71.542969, -45.336702 ], [ -71.718750, -45.336702 ], [ -71.718750, -44.964798 ], [ -71.367188, -44.964798 ], [ -71.367188, -44.840291 ], [ -71.191406, -44.840291 ], [ -71.191406, -44.715514 ], [ -71.367188, -44.715514 ], [ -71.367188, -44.465151 ], [ -71.542969, -44.465151 ], [ -71.542969, -44.339565 ], [ -71.718750, -44.339565 ], [ -71.718750, -44.087585 ], [ -71.542969, -44.087585 ], [ -71.542969, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -71.894531, -43.580391 ], [ -71.894531, -42.940339 ], [ -72.070312, -42.940339 ], [ -72.070312, -42.293564 ], [ -71.894531, -42.293564 ], [ -71.894531, -42.163403 ], [ -71.718750, -42.163403 ], [ -71.718750, -41.508577 ], [ -71.894531, -41.508577 ], [ -71.894531, -40.580585 ], [ -71.718750, -40.580585 ], [ -71.718750, -40.313043 ], [ -62.226562, -40.313043 ], [ -62.226562, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -64.687500, -40.847060 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.378906, -52.802761 ], [ -68.378906, -53.014783 ], [ -68.203125, -53.014783 ], [ -68.203125, -53.330873 ], [ -68.027344, -53.330873 ], [ -68.027344, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.748711 ], [ -67.675781, -53.748711 ], [ -67.675781, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.059388 ], [ -67.324219, -54.059388 ], [ -67.324219, -54.162434 ], [ -66.972656, -54.162434 ], [ -66.972656, -54.265224 ], [ -66.796875, -54.265224 ], [ -66.796875, -54.367759 ], [ -66.621094, -54.367759 ], [ -66.621094, -54.470038 ], [ -66.269531, -54.470038 ], [ -66.269531, -54.572062 ], [ -65.566406, -54.572062 ], [ -65.566406, -54.673831 ], [ -65.039062, -54.673831 ], [ -65.039062, -54.775346 ], [ -65.214844, -54.775346 ], [ -65.214844, -54.977614 ], [ -65.390625, -54.977614 ], [ -65.390625, -55.178868 ], [ -65.917969, -55.178868 ], [ -65.917969, -55.279115 ], [ -66.621094, -55.279115 ], [ -66.621094, -55.078367 ], [ -66.796875, -55.078367 ], [ -66.796875, -54.977614 ], [ -66.972656, -54.977614 ], [ -66.972656, -54.876607 ], [ -68.554688, -54.876607 ], [ -68.554688, -52.802761 ], [ -68.378906, -52.802761 ] ] ], [ [ [ -62.226562, -40.313043 ], [ -62.226562, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -64.687500, -40.847060 ], [ -64.687500, -40.979898 ], [ -64.863281, -40.979898 ], [ -64.863281, -41.112469 ], [ -65.039062, -41.112469 ], [ -65.039062, -42.163403 ], [ -64.863281, -42.163403 ], [ -64.863281, -42.293564 ], [ -64.511719, -42.293564 ], [ -64.511719, -42.423457 ], [ -64.160156, -42.423457 ], [ -64.160156, -42.293564 ], [ -63.984375, -42.293564 ], [ -63.984375, -42.163403 ], [ -63.632812, -42.163403 ], [ -63.632812, -42.423457 ], [ -63.457031, -42.423457 ], [ -63.457031, -42.553080 ], [ -63.632812, -42.553080 ], [ -63.632812, -42.682435 ], [ -63.984375, -42.682435 ], [ -63.984375, -42.811522 ], [ -64.335938, -42.811522 ], [ -64.335938, -42.940339 ], [ -64.511719, -42.940339 ], [ -64.511719, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.197167 ], [ -64.863281, -43.197167 ], [ -64.863281, -43.325178 ], [ -65.039062, -43.325178 ], [ -65.039062, -43.452919 ], [ -65.214844, -43.452919 ], [ -65.214844, -43.961191 ], [ -65.390625, -43.961191 ], [ -65.390625, -44.840291 ], [ -65.566406, -44.840291 ], [ -65.566406, -45.089036 ], [ -66.445312, -45.089036 ], [ -66.445312, -45.213004 ], [ -66.621094, -45.213004 ], [ -66.621094, -45.336702 ], [ -66.972656, -45.336702 ], [ -66.972656, -45.460131 ], [ -67.148438, -45.460131 ], [ -67.148438, -45.583290 ], [ -67.324219, -45.583290 ], [ -67.324219, -45.951150 ], [ -67.500000, -45.951150 ], [ -67.500000, -46.437857 ], [ -67.324219, -46.437857 ], [ -67.324219, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.679594 ], [ -66.972656, -46.679594 ], [ -66.972656, -46.920255 ], [ -66.796875, -46.920255 ], [ -66.796875, -47.040182 ], [ -66.445312, -47.040182 ], [ -66.445312, -47.159840 ], [ -65.917969, -47.159840 ], [ -65.917969, -47.279229 ], [ -65.566406, -47.279229 ], [ -65.566406, -47.517201 ], [ -65.742188, -47.517201 ], [ -65.742188, -47.989922 ], [ -65.917969, -47.989922 ], [ -65.917969, -48.224673 ], [ -66.269531, -48.224673 ], [ -66.269531, -48.341646 ], [ -66.445312, -48.341646 ], [ -66.445312, -48.458352 ], [ -66.621094, -48.458352 ], [ -66.621094, -48.574790 ], [ -66.972656, -48.574790 ], [ -66.972656, -48.690960 ], [ -67.148438, -48.690960 ], [ -67.148438, -48.922499 ], [ -67.324219, -48.922499 ], [ -67.324219, -49.152970 ], [ -67.500000, -49.152970 ], [ -67.500000, -49.496675 ], [ -67.675781, -49.496675 ], [ -67.675781, -49.724479 ], [ -67.851562, -49.724479 ], [ -67.851562, -49.951220 ], [ -68.027344, -49.951220 ], [ -68.027344, -50.064192 ], [ -68.378906, -50.064192 ], [ -68.378906, -50.176898 ], [ -68.554688, -50.176898 ], [ -68.554688, -50.289339 ], [ -68.730469, -50.289339 ], [ -68.730469, -50.401515 ], [ -68.906250, -50.401515 ], [ -68.906250, -50.625073 ], [ -69.082031, -50.625073 ], [ -69.082031, -51.069017 ], [ -68.906250, -51.069017 ], [ -68.906250, -51.508742 ], [ -68.730469, -51.508742 ], [ -68.730469, -51.835778 ], [ -68.554688, -51.835778 ], [ -68.554688, -52.052490 ], [ -68.378906, -52.052490 ], [ -68.378906, -52.268157 ], [ -68.203125, -52.268157 ], [ -68.203125, -52.375599 ], [ -68.554688, -52.375599 ], [ -68.554688, -52.268157 ], [ -69.082031, -52.268157 ], [ -69.082031, -52.160455 ], [ -70.839844, -52.160455 ], [ -70.839844, -52.052490 ], [ -71.894531, -52.052490 ], [ -71.894531, -51.944265 ], [ -72.070312, -51.944265 ], [ -72.070312, -51.618017 ], [ -72.246094, -51.618017 ], [ -72.246094, -50.625073 ], [ -72.421875, -50.625073 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.300781, -50.513427 ], [ -73.300781, -49.837982 ], [ -73.476562, -49.837982 ], [ -73.476562, -49.267805 ], [ -73.300781, -49.267805 ], [ -73.300781, -49.152970 ], [ -72.949219, -49.152970 ], [ -72.949219, -49.037868 ], [ -72.597656, -49.037868 ], [ -72.597656, -48.806863 ], [ -72.421875, -48.806863 ], [ -72.421875, -48.458352 ], [ -72.246094, -48.458352 ], [ -72.246094, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -47.635784 ], [ -72.246094, -47.635784 ], [ -72.246094, -47.398349 ], [ -72.070312, -47.398349 ], [ -72.070312, -47.159840 ], [ -71.894531, -47.159840 ], [ -71.894531, -46.679594 ], [ -71.718750, -46.679594 ], [ -71.718750, -45.951150 ], [ -71.542969, -45.951150 ], [ -71.542969, -45.336702 ], [ -71.718750, -45.336702 ], [ -71.718750, -44.964798 ], [ -71.367188, -44.964798 ], [ -71.367188, -44.840291 ], [ -71.191406, -44.840291 ], [ -71.191406, -44.715514 ], [ -71.367188, -44.715514 ], [ -71.367188, -44.465151 ], [ -71.542969, -44.465151 ], [ -71.542969, -44.339565 ], [ -71.718750, -44.339565 ], [ -71.718750, -44.087585 ], [ -71.542969, -44.087585 ], [ -71.542969, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -71.894531, -43.580391 ], [ -71.894531, -42.940339 ], [ -72.070312, -42.940339 ], [ -72.070312, -42.293564 ], [ -71.894531, -42.293564 ], [ -71.894531, -42.163403 ], [ -71.718750, -42.163403 ], [ -71.718750, -41.508577 ], [ -71.894531, -41.508577 ], [ -71.894531, -40.580585 ], [ -71.718750, -40.580585 ], [ -71.718750, -40.313043 ], [ -62.226562, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.183594, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.508742 ], [ -57.832031, -51.508742 ], [ -57.832031, -51.727028 ], [ -58.007812, -51.727028 ], [ -58.007812, -51.944265 ], [ -58.183594, -51.944265 ], [ -58.183594, -52.052490 ], [ -58.886719, -52.052490 ], [ -58.886719, -52.160455 ], [ -59.589844, -52.160455 ], [ -59.589844, -51.944265 ], [ -59.941406, -51.944265 ], [ -59.941406, -52.052490 ], [ -60.292969, -52.052490 ], [ -60.292969, -52.160455 ], [ -60.468750, -52.160455 ], [ -60.468750, -52.268157 ], [ -60.820312, -52.268157 ], [ -60.820312, -52.052490 ], [ -60.996094, -52.052490 ], [ -60.996094, -51.944265 ], [ -61.171875, -51.944265 ], [ -61.171875, -51.835778 ], [ -60.996094, -51.835778 ], [ -60.996094, -51.727028 ], [ -60.644531, -51.727028 ], [ -60.644531, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.508742 ], [ -60.292969, -51.508742 ], [ -60.292969, -51.399206 ], [ -59.941406, -51.399206 ], [ -59.941406, -51.289406 ], [ -59.765625, -51.289406 ], [ -59.765625, -51.399206 ], [ -59.414062, -51.399206 ], [ -59.414062, -51.508742 ], [ -58.886719, -51.508742 ], [ -58.886719, -51.289406 ], [ -58.710938, -51.289406 ], [ -58.710938, -51.179343 ], [ -58.359375, -51.179343 ], [ -58.359375, -51.289406 ], [ -58.183594, -51.289406 ], [ -58.183594, -51.399206 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -51.179343 ], [ -58.359375, -51.289406 ], [ -58.183594, -51.289406 ], [ -58.183594, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.508742 ], [ -57.832031, -51.508742 ], [ -57.832031, -51.727028 ], [ -58.007812, -51.727028 ], [ -58.007812, -51.944265 ], [ -58.183594, -51.944265 ], [ -58.183594, -52.052490 ], [ -58.886719, -52.052490 ], [ -58.886719, -52.160455 ], [ -59.589844, -52.160455 ], [ -59.589844, -51.944265 ], [ -59.941406, -51.944265 ], [ -59.941406, -52.052490 ], [ -60.292969, -52.052490 ], [ -60.292969, -52.160455 ], [ -60.468750, -52.160455 ], [ -60.468750, -52.268157 ], [ -60.820312, -52.268157 ], [ -60.820312, -52.052490 ], [ -60.996094, -52.052490 ], [ -60.996094, -51.944265 ], [ -61.171875, -51.944265 ], [ -61.171875, -51.835778 ], [ -60.996094, -51.835778 ], [ -60.996094, -51.727028 ], [ -60.644531, -51.727028 ], [ -60.644531, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.508742 ], [ -60.292969, -51.508742 ], [ -60.292969, -51.399206 ], [ -59.941406, -51.399206 ], [ -59.941406, -51.289406 ], [ -59.765625, -51.289406 ], [ -59.765625, -51.399206 ], [ -59.414062, -51.399206 ], [ -59.414062, -51.508742 ], [ -58.886719, -51.508742 ], [ -58.886719, -51.289406 ], [ -58.710938, -51.289406 ], [ -58.710938, -51.179343 ], [ -58.359375, -51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.480469, -63.548552 ], [ -57.304688, -63.548552 ], [ -57.304688, -63.626745 ], [ -57.480469, -63.626745 ], [ -57.480469, -63.782486 ], [ -57.656250, -63.782486 ], [ -57.656250, -63.937372 ], [ -57.832031, -63.937372 ], [ -57.832031, -64.014496 ], [ -58.183594, -64.014496 ], [ -58.183594, -64.091408 ], [ -58.359375, -64.091408 ], [ -58.359375, -64.168107 ], [ -58.535156, -64.168107 ], [ -58.535156, -64.244595 ], [ -58.710938, -64.244595 ], [ -58.710938, -64.320872 ], [ -58.886719, -64.320872 ], [ -58.886719, -64.396938 ], [ -59.414062, -64.396938 ], [ -59.414062, -64.320872 ], [ -59.765625, -64.320872 ], [ -59.765625, -64.244595 ], [ -60.117188, -64.244595 ], [ -60.117188, -64.320872 ], [ -60.644531, -64.320872 ], [ -60.644531, -64.396938 ], [ -60.820312, -64.396938 ], [ -60.820312, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.548440 ], [ -61.347656, -64.548440 ], [ -61.347656, -64.623877 ], [ -61.523438, -64.623877 ], [ -61.523438, -64.699105 ], [ -61.875000, -64.699105 ], [ -61.875000, -64.774125 ], [ -62.050781, -64.774125 ], [ -62.050781, -64.848937 ], [ -62.226562, -64.848937 ], [ -62.226562, -64.923542 ], [ -62.402344, -64.923542 ], [ -62.402344, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -65.946472 ], [ -62.402344, -65.946472 ], [ -62.402344, -66.018018 ], [ -62.226562, -66.018018 ], [ -62.226562, -66.160511 ], [ -62.050781, -66.160511 ], [ -62.050781, -66.231457 ], [ -62.226562, -66.231457 ], [ -62.226562, -66.302205 ], [ -62.402344, -66.302205 ], [ -62.402344, -66.372755 ], [ -62.578125, -66.372755 ], [ -62.578125, -66.443107 ], [ -63.105469, -66.443107 ], [ -63.105469, -66.513260 ], [ -63.808594, -66.513260 ], [ -63.808594, -66.583217 ], [ -63.984375, -66.583217 ], [ -63.984375, -66.722541 ], [ -64.160156, -66.722541 ], [ -64.160156, -66.861082 ], [ -66.972656, -66.861082 ], [ -66.972656, -66.722541 ], [ -66.796875, -66.722541 ], [ -66.796875, -66.652977 ], [ -66.621094, -66.652977 ], [ -66.621094, -66.583217 ], [ -66.445312, -66.583217 ], [ -66.445312, -66.443107 ], [ -66.269531, -66.443107 ], [ -66.269531, -66.302205 ], [ -66.093750, -66.302205 ], [ -66.093750, -66.231457 ], [ -65.917969, -66.231457 ], [ -65.917969, -66.160511 ], [ -65.742188, -66.160511 ], [ -65.742188, -66.018018 ], [ -65.566406, -66.018018 ], [ -65.566406, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.874725 ], [ -65.214844, -65.874725 ], [ -65.214844, -65.802776 ], [ -65.039062, -65.802776 ], [ -65.039062, -65.730626 ], [ -64.687500, -65.730626 ], [ -64.687500, -65.658275 ], [ -64.511719, -65.658275 ], [ -64.511719, -65.512963 ], [ -64.335938, -65.512963 ], [ -64.335938, -65.293468 ], [ -64.160156, -65.293468 ], [ -64.160156, -65.146115 ], [ -63.984375, -65.146115 ], [ -63.984375, -65.072130 ], [ -63.808594, -65.072130 ], [ -63.808594, -64.997939 ], [ -63.632812, -64.997939 ], [ -63.632812, -64.923542 ], [ -63.457031, -64.923542 ], [ -63.457031, -64.848937 ], [ -63.281250, -64.848937 ], [ -63.281250, -64.774125 ], [ -63.105469, -64.774125 ], [ -63.105469, -64.699105 ], [ -62.929688, -64.699105 ], [ -62.929688, -64.623877 ], [ -62.402344, -64.623877 ], [ -62.402344, -64.548440 ], [ -61.875000, -64.548440 ], [ -61.875000, -64.472794 ], [ -61.699219, -64.472794 ], [ -61.699219, -64.396938 ], [ -61.523438, -64.396938 ], [ -61.523438, -64.320872 ], [ -61.347656, -64.320872 ], [ -61.347656, -64.244595 ], [ -60.996094, -64.244595 ], [ -60.996094, -64.168107 ], [ -60.644531, -64.168107 ], [ -60.644531, -64.091408 ], [ -60.292969, -64.091408 ], [ -60.292969, -64.014496 ], [ -59.941406, -64.014496 ], [ -59.941406, -63.937372 ], [ -59.765625, -63.937372 ], [ -59.765625, -63.860036 ], [ -59.414062, -63.860036 ], [ -59.414062, -63.782486 ], [ -59.238281, -63.782486 ], [ -59.238281, -63.704722 ], [ -59.062500, -63.704722 ], [ -59.062500, -63.626745 ], [ -58.886719, -63.626745 ], [ -58.886719, -63.548552 ], [ -58.710938, -63.548552 ], [ -58.710938, -63.470145 ], [ -58.535156, -63.470145 ], [ -58.535156, -63.391522 ], [ -58.183594, -63.391522 ], [ -58.183594, -63.312683 ], [ -57.656250, -63.312683 ], [ -57.656250, -63.391522 ], [ -57.480469, -63.391522 ], [ -57.480469, -63.548552 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -63.312683 ], [ -57.656250, -63.391522 ], [ -57.480469, -63.391522 ], [ -57.480469, -63.548552 ], [ -57.304688, -63.548552 ], [ -57.304688, -63.626745 ], [ -57.480469, -63.626745 ], [ -57.480469, -63.782486 ], [ -57.656250, -63.782486 ], [ -57.656250, -63.937372 ], [ -57.832031, -63.937372 ], [ -57.832031, -64.014496 ], [ -58.183594, -64.014496 ], [ -58.183594, -64.091408 ], [ -58.359375, -64.091408 ], [ -58.359375, -64.168107 ], [ -58.535156, -64.168107 ], [ -58.535156, -64.244595 ], [ -58.710938, -64.244595 ], [ -58.710938, -64.320872 ], [ -58.886719, -64.320872 ], [ -58.886719, -64.396938 ], [ -59.414062, -64.396938 ], [ -59.414062, -64.320872 ], [ -59.765625, -64.320872 ], [ -59.765625, -64.244595 ], [ -60.117188, -64.244595 ], [ -60.117188, -64.320872 ], [ -60.644531, -64.320872 ], [ -60.644531, -64.396938 ], [ -60.820312, -64.396938 ], [ -60.820312, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.548440 ], [ -61.347656, -64.548440 ], [ -61.347656, -64.623877 ], [ -61.523438, -64.623877 ], [ -61.523438, -64.699105 ], [ -61.875000, -64.699105 ], [ -61.875000, -64.774125 ], [ -62.050781, -64.774125 ], [ -62.050781, -64.848937 ], [ -62.226562, -64.848937 ], [ -62.226562, -64.923542 ], [ -62.402344, -64.923542 ], [ -62.402344, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -65.946472 ], [ -62.402344, -65.946472 ], [ -62.402344, -66.018018 ], [ -62.226562, -66.018018 ], [ -62.226562, -66.160511 ], [ -62.050781, -66.160511 ], [ -62.050781, -66.231457 ], [ -62.226562, -66.231457 ], [ -62.226562, -66.302205 ], [ -62.402344, -66.302205 ], [ -62.402344, -66.372755 ], [ -62.578125, -66.372755 ], [ -62.578125, -66.443107 ], [ -63.105469, -66.443107 ], [ -63.105469, -66.513260 ], [ -63.808594, -66.513260 ], [ -63.808594, -66.583217 ], [ -63.984375, -66.583217 ], [ -63.984375, -66.722541 ], [ -64.160156, -66.722541 ], [ -64.160156, -66.861082 ], [ -66.972656, -66.861082 ], [ -66.972656, -66.722541 ], [ -66.796875, -66.722541 ], [ -66.796875, -66.652977 ], [ -66.621094, -66.652977 ], [ -66.621094, -66.583217 ], [ -66.445312, -66.583217 ], [ -66.445312, -66.443107 ], [ -66.269531, -66.443107 ], [ -66.269531, -66.302205 ], [ -66.093750, -66.302205 ], [ -66.093750, -66.231457 ], [ -65.917969, -66.231457 ], [ -65.917969, -66.160511 ], [ -65.742188, -66.160511 ], [ -65.742188, -66.018018 ], [ -65.566406, -66.018018 ], [ -65.566406, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.874725 ], [ -65.214844, -65.874725 ], [ -65.214844, -65.802776 ], [ -65.039062, -65.802776 ], [ -65.039062, -65.730626 ], [ -64.687500, -65.730626 ], [ -64.687500, -65.658275 ], [ -64.511719, -65.658275 ], [ -64.511719, -65.512963 ], [ -64.335938, -65.512963 ], [ -64.335938, -65.293468 ], [ -64.160156, -65.293468 ], [ -64.160156, -65.146115 ], [ -63.984375, -65.146115 ], [ -63.984375, -65.072130 ], [ -63.808594, -65.072130 ], [ -63.808594, -64.997939 ], [ -63.632812, -64.997939 ], [ -63.632812, -64.923542 ], [ -63.457031, -64.923542 ], [ -63.457031, -64.848937 ], [ -63.281250, -64.848937 ], [ -63.281250, -64.774125 ], [ -63.105469, -64.774125 ], [ -63.105469, -64.699105 ], [ -62.929688, -64.699105 ], [ -62.929688, -64.623877 ], [ -62.402344, -64.623877 ], [ -62.402344, -64.548440 ], [ -61.875000, -64.548440 ], [ -61.875000, -64.472794 ], [ -61.699219, -64.472794 ], [ -61.699219, -64.396938 ], [ -61.523438, -64.396938 ], [ -61.523438, -64.320872 ], [ -61.347656, -64.320872 ], [ -61.347656, -64.244595 ], [ -60.996094, -64.244595 ], [ -60.996094, -64.168107 ], [ -60.644531, -64.168107 ], [ -60.644531, -64.091408 ], [ -60.292969, -64.091408 ], [ -60.292969, -64.014496 ], [ -59.941406, -64.014496 ], [ -59.941406, -63.937372 ], [ -59.765625, -63.937372 ], [ -59.765625, -63.860036 ], [ -59.414062, -63.860036 ], [ -59.414062, -63.782486 ], [ -59.238281, -63.782486 ], [ -59.238281, -63.704722 ], [ -59.062500, -63.704722 ], [ -59.062500, -63.626745 ], [ -58.886719, -63.626745 ], [ -58.886719, -63.548552 ], [ -58.710938, -63.548552 ], [ -58.710938, -63.470145 ], [ -58.535156, -63.470145 ], [ -58.535156, -63.391522 ], [ -58.183594, -63.391522 ], [ -58.183594, -63.312683 ], [ -57.656250, -63.312683 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, 0.527336 ], [ -69.433594, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.527336 ], [ -69.960938, 0.527336 ], [ -69.960938, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.878872 ], [ -69.433594, -0.878872 ], [ -69.433594, -2.108899 ], [ -69.609375, -2.108899 ], [ -69.609375, -2.986927 ], [ -69.785156, -2.986927 ], [ -69.785156, -3.864255 ], [ -69.960938, -3.864255 ], [ -69.960938, -4.214943 ], [ -70.136719, -4.214943 ], [ -70.136719, -3.864255 ], [ -70.312500, -3.864255 ], [ -70.312500, -3.688855 ], [ -70.488281, -3.688855 ], [ -70.488281, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -3.162456 ], [ -70.136719, -3.162456 ], [ -70.136719, -2.986927 ], [ -69.960938, -2.986927 ], [ -69.960938, -2.811371 ], [ -70.136719, -2.811371 ], [ -70.136719, -2.635789 ], [ -70.488281, -2.635789 ], [ -70.488281, -2.460181 ], [ -70.839844, -2.460181 ], [ -70.839844, -2.284551 ], [ -72.070312, -2.284551 ], [ -72.070312, -2.460181 ], [ -72.773438, -2.460181 ], [ -72.773438, -2.284551 ], [ -73.125000, -2.284551 ], [ -73.125000, -2.108899 ], [ -73.300781, -2.108899 ], [ -73.300781, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -1.406109 ], [ -73.652344, -1.406109 ], [ -73.652344, -1.230374 ], [ -74.003906, -1.230374 ], [ -74.003906, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -0.878872 ], [ -74.355469, -0.878872 ], [ -74.355469, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.351560 ], [ -74.882812, -0.351560 ], [ -74.882812, -0.175781 ], [ -75.585938, -0.175781 ], [ -75.585938, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, 0.175781 ], [ -76.113281, 0.175781 ], [ -76.113281, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.175781 ], [ -77.167969, 0.175781 ], [ -77.167969, 0.351560 ], [ -77.519531, 0.351560 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -69.257812, 0.878872 ], [ -69.257812, 0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, 0.878872 ], [ -69.257812, 0.527336 ], [ -69.433594, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.527336 ], [ -69.960938, 0.527336 ], [ -69.960938, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.878872 ], [ -69.433594, -0.878872 ], [ -69.433594, -2.108899 ], [ -69.609375, -2.108899 ], [ -69.609375, -2.986927 ], [ -69.785156, -2.986927 ], [ -69.785156, -3.864255 ], [ -69.960938, -3.864255 ], [ -69.960938, -4.214943 ], [ -70.136719, -4.214943 ], [ -70.136719, -3.864255 ], [ -70.312500, -3.864255 ], [ -70.312500, -3.688855 ], [ -70.488281, -3.688855 ], [ -70.488281, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -3.162456 ], [ -70.136719, -3.162456 ], [ -70.136719, -2.986927 ], [ -69.960938, -2.986927 ], [ -69.960938, -2.811371 ], [ -70.136719, -2.811371 ], [ -70.136719, -2.635789 ], [ -70.488281, -2.635789 ], [ -70.488281, -2.460181 ], [ -70.839844, -2.460181 ], [ -70.839844, -2.284551 ], [ -72.070312, -2.284551 ], [ -72.070312, -2.460181 ], [ -72.773438, -2.460181 ], [ -72.773438, -2.284551 ], [ -73.125000, -2.284551 ], [ -73.125000, -2.108899 ], [ -73.300781, -2.108899 ], [ -73.300781, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -1.406109 ], [ -73.652344, -1.406109 ], [ -73.652344, -1.230374 ], [ -74.003906, -1.230374 ], [ -74.003906, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -0.878872 ], [ -74.355469, -0.878872 ], [ -74.355469, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.351560 ], [ -74.882812, -0.351560 ], [ -74.882812, -0.175781 ], [ -75.585938, -0.175781 ], [ -75.585938, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, 0.175781 ], [ -76.113281, 0.175781 ], [ -76.113281, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.175781 ], [ -77.167969, 0.175781 ], [ -77.167969, 0.351560 ], [ -77.519531, 0.351560 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -69.257812, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.742188, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 0.878872 ], [ -65.742188, 0.878872 ], [ -65.742188, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.742188, 0.878872 ], [ -65.742188, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 0.878872 ], [ -65.742188, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.519531, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.175781 ], [ -76.289062, 0.175781 ], [ -76.289062, 0.351560 ], [ -76.113281, 0.351560 ], [ -76.113281, 0.175781 ], [ -75.761719, 0.175781 ], [ -75.761719, 0.000000 ], [ -75.585938, 0.000000 ], [ -75.585938, -0.175781 ], [ -75.410156, -0.175781 ], [ -75.410156, -0.527336 ], [ -75.234375, -0.527336 ], [ -75.234375, -1.054628 ], [ -75.410156, -1.054628 ], [ -75.410156, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.761719, -1.933227 ], [ -75.937500, -1.933227 ], [ -75.937500, -2.108899 ], [ -76.113281, -2.108899 ], [ -76.113281, -2.284551 ], [ -76.289062, -2.284551 ], [ -76.289062, -2.460181 ], [ -76.464844, -2.460181 ], [ -76.464844, -2.635789 ], [ -76.816406, -2.635789 ], [ -76.816406, -2.811371 ], [ -77.519531, -2.811371 ], [ -77.519531, -2.986927 ], [ -77.871094, -2.986927 ], [ -77.871094, -3.162456 ], [ -78.046875, -3.162456 ], [ -78.046875, -3.513421 ], [ -78.222656, -3.513421 ], [ -78.222656, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -4.214943 ], [ -78.574219, -4.214943 ], [ -78.574219, -4.740675 ], [ -78.925781, -4.740675 ], [ -78.925781, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -79.628906, -4.565474 ], [ -79.628906, -4.390229 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.156250, -4.039618 ], [ -80.156250, -3.688855 ], [ -80.332031, -3.688855 ], [ -80.332031, -3.337954 ], [ -80.156250, -3.337954 ], [ -80.156250, -2.986927 ], [ -79.980469, -2.986927 ], [ -79.980469, -2.811371 ], [ -79.804688, -2.811371 ], [ -79.804688, -2.460181 ], [ -80.156250, -2.460181 ], [ -80.156250, -2.635789 ], [ -80.683594, -2.635789 ], [ -80.683594, -2.460181 ], [ -81.035156, -2.460181 ], [ -81.035156, -2.284551 ], [ -80.859375, -2.284551 ], [ -80.859375, -2.108899 ], [ -80.683594, -2.108899 ], [ -80.683594, -1.581830 ], [ -80.859375, -1.581830 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, -0.703107 ], [ -80.332031, -0.703107 ], [ -80.332031, -0.175781 ], [ -80.156250, -0.175781 ], [ -80.156250, 0.175781 ], [ -79.980469, 0.175781 ], [ -79.980469, 0.527336 ], [ -80.156250, 0.527336 ], [ -80.156250, 0.703107 ], [ -79.804688, 0.703107 ], [ -79.804688, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.351560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.175781 ], [ -76.289062, 0.175781 ], [ -76.289062, 0.351560 ], [ -76.113281, 0.351560 ], [ -76.113281, 0.175781 ], [ -75.761719, 0.175781 ], [ -75.761719, 0.000000 ], [ -75.585938, 0.000000 ], [ -75.585938, -0.175781 ], [ -75.410156, -0.175781 ], [ -75.410156, -0.527336 ], [ -75.234375, -0.527336 ], [ -75.234375, -1.054628 ], [ -75.410156, -1.054628 ], [ -75.410156, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.761719, -1.933227 ], [ -75.937500, -1.933227 ], [ -75.937500, -2.108899 ], [ -76.113281, -2.108899 ], [ -76.113281, -2.284551 ], [ -76.289062, -2.284551 ], [ -76.289062, -2.460181 ], [ -76.464844, -2.460181 ], [ -76.464844, -2.635789 ], [ -76.816406, -2.635789 ], [ -76.816406, -2.811371 ], [ -77.519531, -2.811371 ], [ -77.519531, -2.986927 ], [ -77.871094, -2.986927 ], [ -77.871094, -3.162456 ], [ -78.046875, -3.162456 ], [ -78.046875, -3.513421 ], [ -78.222656, -3.513421 ], [ -78.222656, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -4.214943 ], [ -78.574219, -4.214943 ], [ -78.574219, -4.740675 ], [ -78.925781, -4.740675 ], [ -78.925781, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -79.628906, -4.565474 ], [ -79.628906, -4.390229 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.156250, -4.039618 ], [ -80.156250, -3.688855 ], [ -80.332031, -3.688855 ], [ -80.332031, -3.337954 ], [ -80.156250, -3.337954 ], [ -80.156250, -2.986927 ], [ -79.980469, -2.986927 ], [ -79.980469, -2.811371 ], [ -79.804688, -2.811371 ], [ -79.804688, -2.460181 ], [ -80.156250, -2.460181 ], [ -80.156250, -2.635789 ], [ -80.683594, -2.635789 ], [ -80.683594, -2.460181 ], [ -81.035156, -2.460181 ], [ -81.035156, -2.284551 ], [ -80.859375, -2.284551 ], [ -80.859375, -2.108899 ], [ -80.683594, -2.108899 ], [ -80.683594, -1.581830 ], [ -80.859375, -1.581830 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, -0.703107 ], [ -80.332031, -0.703107 ], [ -80.332031, -0.175781 ], [ -80.156250, -0.175781 ], [ -80.156250, 0.175781 ], [ -79.980469, 0.175781 ], [ -79.980469, 0.527336 ], [ -80.156250, 0.527336 ], [ -80.156250, 0.703107 ], [ -79.804688, 0.703107 ], [ -79.804688, 0.878872 ], [ -77.695312, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.003906, -1.230374 ], [ -73.652344, -1.230374 ], [ -73.652344, -1.406109 ], [ -73.476562, -1.406109 ], [ -73.476562, -1.757537 ], [ -73.300781, -1.757537 ], [ -73.300781, -2.108899 ], [ -73.125000, -2.108899 ], [ -73.125000, -2.284551 ], [ -72.773438, -2.284551 ], [ -72.773438, -2.460181 ], [ -72.070312, -2.460181 ], [ -72.070312, -2.284551 ], [ -70.839844, -2.284551 ], [ -70.839844, -2.460181 ], [ -70.488281, -2.460181 ], [ -70.488281, -2.635789 ], [ -70.136719, -2.635789 ], [ -70.136719, -2.811371 ], [ -69.960938, -2.811371 ], [ -69.960938, -2.986927 ], [ -70.136719, -2.986927 ], [ -70.136719, -3.162456 ], [ -70.312500, -3.162456 ], [ -70.312500, -3.513421 ], [ -70.488281, -3.513421 ], [ -70.488281, -3.688855 ], [ -70.312500, -3.688855 ], [ -70.312500, -3.864255 ], [ -70.136719, -3.864255 ], [ -70.136719, -4.214943 ], [ -70.839844, -4.214943 ], [ -70.839844, -4.390229 ], [ -71.191406, -4.390229 ], [ -71.191406, -4.565474 ], [ -71.718750, -4.565474 ], [ -71.718750, -4.740675 ], [ -72.070312, -4.740675 ], [ -72.070312, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -5.090944 ], [ -72.773438, -5.090944 ], [ -72.773438, -5.266008 ], [ -72.949219, -5.266008 ], [ -72.949219, -5.965754 ], [ -73.125000, -5.965754 ], [ -73.125000, -6.140555 ], [ -73.300781, -6.140555 ], [ -73.300781, -6.489983 ], [ -73.125000, -6.489983 ], [ -73.125000, -6.664608 ], [ -73.300781, -6.664608 ], [ -73.300781, -6.839170 ], [ -73.652344, -6.839170 ], [ -73.652344, -7.536764 ], [ -74.003906, -7.536764 ], [ -74.003906, -7.885147 ], [ -73.828125, -7.885147 ], [ -73.828125, -8.233237 ], [ -73.652344, -8.233237 ], [ -73.652344, -8.581021 ], [ -73.476562, -8.581021 ], [ -73.476562, -8.754795 ], [ -73.300781, -8.754795 ], [ -73.300781, -8.928487 ], [ -73.125000, -8.928487 ], [ -73.125000, -9.102097 ], [ -72.949219, -9.102097 ], [ -72.949219, -9.275622 ], [ -73.125000, -9.275622 ], [ -73.125000, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.597656, -9.622414 ], [ -72.421875, -9.622414 ], [ -72.421875, -9.968851 ], [ -71.894531, -9.968851 ], [ -71.894531, -10.141932 ], [ -71.191406, -10.141932 ], [ -71.191406, -9.968851 ], [ -71.015625, -9.968851 ], [ -71.015625, -9.795678 ], [ -70.664062, -9.795678 ], [ -70.664062, -9.622414 ], [ -70.488281, -9.622414 ], [ -70.488281, -11.178402 ], [ -69.785156, -11.178402 ], [ -69.785156, -11.005904 ], [ -69.609375, -11.005904 ], [ -69.609375, -11.178402 ], [ -69.433594, -11.178402 ], [ -69.433594, -11.523088 ], [ -69.257812, -11.523088 ], [ -69.257812, -11.867351 ], [ -69.082031, -11.867351 ], [ -69.082031, -12.211180 ], [ -68.906250, -12.211180 ], [ -68.906250, -12.554564 ], [ -68.730469, -12.554564 ], [ -68.730469, -12.726084 ], [ -68.906250, -12.726084 ], [ -68.906250, -14.604847 ], [ -69.082031, -14.604847 ], [ -69.082031, -14.944785 ], [ -69.257812, -14.944785 ], [ -69.257812, -15.114553 ], [ -69.082031, -15.114553 ], [ -69.082031, -15.453680 ], [ -69.257812, -15.453680 ], [ -69.257812, -15.623037 ], [ -69.433594, -15.623037 ], [ -69.433594, -15.792254 ], [ -69.257812, -15.792254 ], [ -69.257812, -16.130262 ], [ -69.082031, -16.130262 ], [ -69.082031, -16.467695 ], [ -68.906250, -16.467695 ], [ -68.906250, -16.636192 ], [ -69.082031, -16.636192 ], [ -69.082031, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -17.308688 ], [ -69.433594, -17.308688 ], [ -69.433594, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -17.978733 ], [ -69.785156, -17.978733 ], [ -69.785156, -18.145852 ], [ -69.960938, -18.145852 ], [ -69.960938, -18.312811 ], [ -70.664062, -18.312811 ], [ -70.664062, -18.145852 ], [ -71.015625, -18.145852 ], [ -71.015625, -17.978733 ], [ -71.367188, -17.978733 ], [ -71.367188, -17.644022 ], [ -71.542969, -17.644022 ], [ -71.542969, -17.308688 ], [ -71.718750, -17.308688 ], [ -71.718750, -17.140790 ], [ -72.070312, -17.140790 ], [ -72.070312, -16.972741 ], [ -72.421875, -16.972741 ], [ -72.421875, -16.804541 ], [ -72.773438, -16.804541 ], [ -72.773438, -16.636192 ], [ -73.125000, -16.636192 ], [ -73.125000, -16.467695 ], [ -73.476562, -16.467695 ], [ -73.476562, -16.299051 ], [ -73.652344, -16.299051 ], [ -73.652344, -16.130262 ], [ -74.003906, -16.130262 ], [ -74.003906, -15.961329 ], [ -74.355469, -15.961329 ], [ -74.355469, -15.792254 ], [ -74.531250, -15.792254 ], [ -74.531250, -15.623037 ], [ -74.882812, -15.623037 ], [ -74.882812, -15.453680 ], [ -75.234375, -15.453680 ], [ -75.234375, -15.284185 ], [ -75.410156, -15.284185 ], [ -75.410156, -15.114553 ], [ -75.585938, -15.114553 ], [ -75.585938, -14.944785 ], [ -75.761719, -14.944785 ], [ -75.761719, -14.774883 ], [ -75.937500, -14.774883 ], [ -75.937500, -14.604847 ], [ -76.113281, -14.604847 ], [ -76.113281, -14.264383 ], [ -76.289062, -14.264383 ], [ -76.289062, -13.923404 ], [ -76.464844, -13.923404 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.752725 ], [ -76.289062, -13.581921 ], [ -76.464844, -13.581921 ], [ -76.464844, -13.239945 ], [ -76.640625, -13.239945 ], [ -76.640625, -12.897489 ], [ -76.816406, -12.897489 ], [ -76.816406, -12.726084 ], [ -76.992188, -12.726084 ], [ -76.992188, -12.382928 ], [ -77.167969, -12.382928 ], [ -77.167969, -12.039321 ], [ -77.343750, -12.039321 ], [ -77.343750, -11.695273 ], [ -77.519531, -11.695273 ], [ -77.519531, -11.350797 ], [ -77.695312, -11.350797 ], [ -77.695312, -11.005904 ], [ -77.871094, -11.005904 ], [ -77.871094, -10.660608 ], [ -78.046875, -10.660608 ], [ -78.046875, -10.314919 ], [ -78.222656, -10.314919 ], [ -78.222656, -9.968851 ], [ -78.398438, -9.968851 ], [ -78.398438, -9.622414 ], [ -78.574219, -9.622414 ], [ -78.574219, -9.275622 ], [ -78.750000, -9.275622 ], [ -78.750000, -8.928487 ], [ -78.925781, -8.928487 ], [ -78.925781, -8.581021 ], [ -79.101562, -8.581021 ], [ -79.101562, -8.407168 ], [ -79.277344, -8.407168 ], [ -79.277344, -8.059230 ], [ -79.453125, -8.059230 ], [ -79.453125, -7.710992 ], [ -79.628906, -7.710992 ], [ -79.628906, -7.362467 ], [ -79.804688, -7.362467 ], [ -79.804688, -7.188101 ], [ -79.980469, -7.188101 ], [ -79.980469, -7.013668 ], [ -80.156250, -7.013668 ], [ -80.156250, -6.839170 ], [ -80.332031, -6.839170 ], [ -80.332031, -6.664608 ], [ -80.507812, -6.664608 ], [ -80.507812, -6.489983 ], [ -80.859375, -6.489983 ], [ -80.859375, -6.315299 ], [ -81.210938, -6.315299 ], [ -81.210938, -6.140555 ], [ -81.035156, -6.140555 ], [ -81.035156, -5.790897 ], [ -80.859375, -5.790897 ], [ -80.859375, -5.615986 ], [ -81.035156, -5.615986 ], [ -81.035156, -5.266008 ], [ -81.210938, -5.266008 ], [ -81.210938, -4.915833 ], [ -81.386719, -4.915833 ], [ -81.386719, -4.565474 ], [ -81.210938, -4.565474 ], [ -81.210938, -4.214943 ], [ -81.035156, -4.214943 ], [ -81.035156, -4.039618 ], [ -80.859375, -4.039618 ], [ -80.859375, -3.864255 ], [ -80.683594, -3.864255 ], [ -80.683594, -3.688855 ], [ -80.507812, -3.688855 ], [ -80.507812, -3.513421 ], [ -80.332031, -3.513421 ], [ -80.332031, -3.688855 ], [ -80.156250, -3.688855 ], [ -80.156250, -4.039618 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -79.628906, -4.390229 ], [ -79.628906, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -78.925781, -4.915833 ], [ -78.925781, -4.740675 ], [ -78.574219, -4.740675 ], [ -78.574219, -4.214943 ], [ -78.398438, -4.214943 ], [ -78.398438, -3.864255 ], [ -78.222656, -3.864255 ], [ -78.222656, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -3.162456 ], [ -77.871094, -3.162456 ], [ -77.871094, -2.986927 ], [ -77.519531, -2.986927 ], [ -77.519531, -2.811371 ], [ -76.816406, -2.811371 ], [ -76.816406, -2.635789 ], [ -76.464844, -2.635789 ], [ -76.464844, -2.460181 ], [ -76.289062, -2.460181 ], [ -76.289062, -2.284551 ], [ -76.113281, -2.284551 ], [ -76.113281, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.933227 ], [ -75.761719, -1.933227 ], [ -75.761719, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.410156, -1.406109 ], [ -75.410156, -1.054628 ], [ -75.234375, -1.054628 ], [ -75.234375, -0.527336 ], [ -75.410156, -0.527336 ], [ -75.410156, -0.175781 ], [ -74.882812, -0.175781 ], [ -74.882812, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.527336 ], [ -74.355469, -0.527336 ], [ -74.355469, -0.878872 ], [ -74.179688, -0.878872 ], [ -74.179688, -1.054628 ], [ -74.003906, -1.054628 ], [ -74.003906, -1.230374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.175781 ], [ -74.882812, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.527336 ], [ -74.355469, -0.527336 ], [ -74.355469, -0.878872 ], [ -74.179688, -0.878872 ], [ -74.179688, -1.054628 ], [ -74.003906, -1.054628 ], [ -74.003906, -1.230374 ], [ -73.652344, -1.230374 ], [ -73.652344, -1.406109 ], [ -73.476562, -1.406109 ], [ -73.476562, -1.757537 ], [ -73.300781, -1.757537 ], [ -73.300781, -2.108899 ], [ -73.125000, -2.108899 ], [ -73.125000, -2.284551 ], [ -72.773438, -2.284551 ], [ -72.773438, -2.460181 ], [ -72.070312, -2.460181 ], [ -72.070312, -2.284551 ], [ -70.839844, -2.284551 ], [ -70.839844, -2.460181 ], [ -70.488281, -2.460181 ], [ -70.488281, -2.635789 ], [ -70.136719, -2.635789 ], [ -70.136719, -2.811371 ], [ -69.960938, -2.811371 ], [ -69.960938, -2.986927 ], [ -70.136719, -2.986927 ], [ -70.136719, -3.162456 ], [ -70.312500, -3.162456 ], [ -70.312500, -3.513421 ], [ -70.488281, -3.513421 ], [ -70.488281, -3.688855 ], [ -70.312500, -3.688855 ], [ -70.312500, -3.864255 ], [ -70.136719, -3.864255 ], [ -70.136719, -4.214943 ], [ -70.839844, -4.214943 ], [ -70.839844, -4.390229 ], [ -71.191406, -4.390229 ], [ -71.191406, -4.565474 ], [ -71.718750, -4.565474 ], [ -71.718750, -4.740675 ], [ -72.070312, -4.740675 ], [ -72.070312, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -5.090944 ], [ -72.773438, -5.090944 ], [ -72.773438, -5.266008 ], [ -72.949219, -5.266008 ], [ -72.949219, -5.965754 ], [ -73.125000, -5.965754 ], [ -73.125000, -6.140555 ], [ -73.300781, -6.140555 ], [ -73.300781, -6.489983 ], [ -73.125000, -6.489983 ], [ -73.125000, -6.664608 ], [ -73.300781, -6.664608 ], [ -73.300781, -6.839170 ], [ -73.652344, -6.839170 ], [ -73.652344, -7.536764 ], [ -74.003906, -7.536764 ], [ -74.003906, -7.885147 ], [ -73.828125, -7.885147 ], [ -73.828125, -8.233237 ], [ -73.652344, -8.233237 ], [ -73.652344, -8.581021 ], [ -73.476562, -8.581021 ], [ -73.476562, -8.754795 ], [ -73.300781, -8.754795 ], [ -73.300781, -8.928487 ], [ -73.125000, -8.928487 ], [ -73.125000, -9.102097 ], [ -72.949219, -9.102097 ], [ -72.949219, -9.275622 ], [ -73.125000, -9.275622 ], [ -73.125000, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.597656, -9.622414 ], [ -72.421875, -9.622414 ], [ -72.421875, -9.968851 ], [ -71.894531, -9.968851 ], [ -71.894531, -10.141932 ], [ -71.191406, -10.141932 ], [ -71.191406, -9.968851 ], [ -71.015625, -9.968851 ], [ -71.015625, -9.795678 ], [ -70.664062, -9.795678 ], [ -70.664062, -9.622414 ], [ -70.488281, -9.622414 ], [ -70.488281, -11.178402 ], [ -69.785156, -11.178402 ], [ -69.785156, -11.005904 ], [ -69.609375, -11.005904 ], [ -69.609375, -11.178402 ], [ -69.433594, -11.178402 ], [ -69.433594, -11.523088 ], [ -69.257812, -11.523088 ], [ -69.257812, -11.867351 ], [ -69.082031, -11.867351 ], [ -69.082031, -12.211180 ], [ -68.906250, -12.211180 ], [ -68.906250, -12.554564 ], [ -68.730469, -12.554564 ], [ -68.730469, -12.726084 ], [ -68.906250, -12.726084 ], [ -68.906250, -14.604847 ], [ -69.082031, -14.604847 ], [ -69.082031, -14.944785 ], [ -69.257812, -14.944785 ], [ -69.257812, -15.114553 ], [ -69.082031, -15.114553 ], [ -69.082031, -15.453680 ], [ -69.257812, -15.453680 ], [ -69.257812, -15.623037 ], [ -69.433594, -15.623037 ], [ -69.433594, -15.792254 ], [ -69.257812, -15.792254 ], [ -69.257812, -16.130262 ], [ -69.082031, -16.130262 ], [ -69.082031, -16.467695 ], [ -68.906250, -16.467695 ], [ -68.906250, -16.636192 ], [ -69.082031, -16.636192 ], [ -69.082031, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -17.308688 ], [ -69.433594, -17.308688 ], [ -69.433594, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -17.978733 ], [ -69.785156, -17.978733 ], [ -69.785156, -18.145852 ], [ -69.960938, -18.145852 ], [ -69.960938, -18.312811 ], [ -70.664062, -18.312811 ], [ -70.664062, -18.145852 ], [ -71.015625, -18.145852 ], [ -71.015625, -17.978733 ], [ -71.367188, -17.978733 ], [ -71.367188, -17.644022 ], [ -71.542969, -17.644022 ], [ -71.542969, -17.308688 ], [ -71.718750, -17.308688 ], [ -71.718750, -17.140790 ], [ -72.070312, -17.140790 ], [ -72.070312, -16.972741 ], [ -72.421875, -16.972741 ], [ -72.421875, -16.804541 ], [ -72.773438, -16.804541 ], [ -72.773438, -16.636192 ], [ -73.125000, -16.636192 ], [ -73.125000, -16.467695 ], [ -73.476562, -16.467695 ], [ -73.476562, -16.299051 ], [ -73.652344, -16.299051 ], [ -73.652344, -16.130262 ], [ -74.003906, -16.130262 ], [ -74.003906, -15.961329 ], [ -74.355469, -15.961329 ], [ -74.355469, -15.792254 ], [ -74.531250, -15.792254 ], [ -74.531250, -15.623037 ], [ -74.882812, -15.623037 ], [ -74.882812, -15.453680 ], [ -75.234375, -15.453680 ], [ -75.234375, -15.284185 ], [ -75.410156, -15.284185 ], [ -75.410156, -15.114553 ], [ -75.585938, -15.114553 ], [ -75.585938, -14.944785 ], [ -75.761719, -14.944785 ], [ -75.761719, -14.774883 ], [ -75.937500, -14.774883 ], [ -75.937500, -14.604847 ], [ -76.113281, -14.604847 ], [ -76.113281, -14.264383 ], [ -76.289062, -14.264383 ], [ -76.289062, -13.923404 ], [ -76.464844, -13.923404 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.752725 ], [ -76.289062, -13.581921 ], [ -76.464844, -13.581921 ], [ -76.464844, -13.239945 ], [ -76.640625, -13.239945 ], [ -76.640625, -12.897489 ], [ -76.816406, -12.897489 ], [ -76.816406, -12.726084 ], [ -76.992188, -12.726084 ], [ -76.992188, -12.382928 ], [ -77.167969, -12.382928 ], [ -77.167969, -12.039321 ], [ -77.343750, -12.039321 ], [ -77.343750, -11.695273 ], [ -77.519531, -11.695273 ], [ -77.519531, -11.350797 ], [ -77.695312, -11.350797 ], [ -77.695312, -11.005904 ], [ -77.871094, -11.005904 ], [ -77.871094, -10.660608 ], [ -78.046875, -10.660608 ], [ -78.046875, -10.314919 ], [ -78.222656, -10.314919 ], [ -78.222656, -9.968851 ], [ -78.398438, -9.968851 ], [ -78.398438, -9.622414 ], [ -78.574219, -9.622414 ], [ -78.574219, -9.275622 ], [ -78.750000, -9.275622 ], [ -78.750000, -8.928487 ], [ -78.925781, -8.928487 ], [ -78.925781, -8.581021 ], [ -79.101562, -8.581021 ], [ -79.101562, -8.407168 ], [ -79.277344, -8.407168 ], [ -79.277344, -8.059230 ], [ -79.453125, -8.059230 ], [ -79.453125, -7.710992 ], [ -79.628906, -7.710992 ], [ -79.628906, -7.362467 ], [ -79.804688, -7.362467 ], [ -79.804688, -7.188101 ], [ -79.980469, -7.188101 ], [ -79.980469, -7.013668 ], [ -80.156250, -7.013668 ], [ -80.156250, -6.839170 ], [ -80.332031, -6.839170 ], [ -80.332031, -6.664608 ], [ -80.507812, -6.664608 ], [ -80.507812, -6.489983 ], [ -80.859375, -6.489983 ], [ -80.859375, -6.315299 ], [ -81.210938, -6.315299 ], [ -81.210938, -6.140555 ], [ -81.035156, -6.140555 ], [ -81.035156, -5.790897 ], [ -80.859375, -5.790897 ], [ -80.859375, -5.615986 ], [ -81.035156, -5.615986 ], [ -81.035156, -5.266008 ], [ -81.210938, -5.266008 ], [ -81.210938, -4.915833 ], [ -81.386719, -4.915833 ], [ -81.386719, -4.565474 ], [ -81.210938, -4.565474 ], [ -81.210938, -4.214943 ], [ -81.035156, -4.214943 ], [ -81.035156, -4.039618 ], [ -80.859375, -4.039618 ], [ -80.859375, -3.864255 ], [ -80.683594, -3.864255 ], [ -80.683594, -3.688855 ], [ -80.507812, -3.688855 ], [ -80.507812, -3.513421 ], [ -80.332031, -3.513421 ], [ -80.332031, -3.688855 ], [ -80.156250, -3.688855 ], [ -80.156250, -4.039618 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -79.628906, -4.390229 ], [ -79.628906, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -78.925781, -4.915833 ], [ -78.925781, -4.740675 ], [ -78.574219, -4.740675 ], [ -78.574219, -4.214943 ], [ -78.398438, -4.214943 ], [ -78.398438, -3.864255 ], [ -78.222656, -3.864255 ], [ -78.222656, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -3.162456 ], [ -77.871094, -3.162456 ], [ -77.871094, -2.986927 ], [ -77.519531, -2.986927 ], [ -77.519531, -2.811371 ], [ -76.816406, -2.811371 ], [ -76.816406, -2.635789 ], [ -76.464844, -2.635789 ], [ -76.464844, -2.460181 ], [ -76.289062, -2.460181 ], [ -76.289062, -2.284551 ], [ -76.113281, -2.284551 ], [ -76.113281, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.933227 ], [ -75.761719, -1.933227 ], [ -75.761719, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.410156, -1.406109 ], [ -75.410156, -1.054628 ], [ -75.234375, -1.054628 ], [ -75.234375, -0.527336 ], [ -75.410156, -0.527336 ], [ -75.410156, -0.175781 ], [ -74.882812, -0.175781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, -18.312811 ], [ -69.082031, -18.312811 ], [ -69.082031, -18.646245 ], [ -68.906250, -18.646245 ], [ -68.906250, -19.145168 ], [ -68.730469, -19.145168 ], [ -68.730469, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.476950 ], [ -68.378906, -19.476950 ], [ -68.378906, -19.808054 ], [ -68.554688, -19.808054 ], [ -68.554688, -20.138470 ], [ -68.730469, -20.138470 ], [ -68.730469, -20.632784 ], [ -68.554688, -20.632784 ], [ -68.554688, -20.961440 ], [ -68.378906, -20.961440 ], [ -68.378906, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -21.943046 ], [ -68.027344, -21.943046 ], [ -68.027344, -22.593726 ], [ -67.851562, -22.593726 ], [ -67.851562, -22.917923 ], [ -67.324219, -22.917923 ], [ -67.324219, -22.755921 ], [ -67.148438, -22.755921 ], [ -67.148438, -22.917923 ], [ -66.972656, -22.917923 ], [ -66.972656, -23.241346 ], [ -67.148438, -23.241346 ], [ -67.148438, -23.885838 ], [ -67.324219, -23.885838 ], [ -67.324219, -24.206890 ], [ -67.675781, -24.206890 ], [ -67.675781, -24.367114 ], [ -68.027344, -24.367114 ], [ -68.027344, -24.527135 ], [ -68.378906, -24.527135 ], [ -68.378906, -26.273714 ], [ -68.554688, -26.273714 ], [ -68.554688, -26.745610 ], [ -68.378906, -26.745610 ], [ -68.378906, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -27.215556 ], [ -68.730469, -27.215556 ], [ -68.730469, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.527758 ], [ -69.082031, -27.527758 ], [ -69.082031, -27.683528 ], [ -69.257812, -27.683528 ], [ -69.257812, -27.994401 ], [ -69.433594, -27.994401 ], [ -69.433594, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.767659 ], [ -69.785156, -28.767659 ], [ -69.785156, -29.228890 ], [ -69.960938, -29.228890 ], [ -69.960938, -30.600094 ], [ -70.136719, -30.600094 ], [ -70.136719, -30.902225 ], [ -70.312500, -30.902225 ], [ -70.312500, -31.203405 ], [ -70.488281, -31.203405 ], [ -70.488281, -31.802893 ], [ -70.312500, -31.802893 ], [ -70.312500, -32.694866 ], [ -70.136719, -32.694866 ], [ -70.136719, -33.284620 ], [ -69.785156, -33.284620 ], [ -69.785156, -34.452218 ], [ -69.960938, -34.452218 ], [ -69.960938, -34.741612 ], [ -70.136719, -34.741612 ], [ -70.136719, -35.029996 ], [ -70.312500, -35.029996 ], [ -70.312500, -36.173357 ], [ -70.488281, -36.173357 ], [ -70.488281, -36.315125 ], [ -70.839844, -36.315125 ], [ -70.839844, -36.456636 ], [ -71.015625, -36.456636 ], [ -71.015625, -36.597889 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.857507 ], [ -71.015625, -37.857507 ], [ -71.015625, -38.410558 ], [ -70.839844, -38.410558 ], [ -70.839844, -38.685510 ], [ -71.015625, -38.685510 ], [ -71.015625, -38.822591 ], [ -71.191406, -38.822591 ], [ -71.191406, -38.959409 ], [ -71.367188, -38.959409 ], [ -71.367188, -39.232253 ], [ -71.542969, -39.232253 ], [ -71.542969, -39.639538 ], [ -71.718750, -39.639538 ], [ -71.718750, -40.313043 ], [ -71.894531, -40.313043 ], [ -71.894531, -41.640078 ], [ -74.003906, -41.640078 ], [ -74.003906, -41.244772 ], [ -73.828125, -41.244772 ], [ -73.828125, -40.446947 ], [ -73.652344, -40.446947 ], [ -73.652344, -39.774769 ], [ -73.476562, -39.774769 ], [ -73.476562, -39.504041 ], [ -73.300781, -39.504041 ], [ -73.300781, -38.822591 ], [ -73.476562, -38.822591 ], [ -73.476562, -37.718590 ], [ -73.652344, -37.718590 ], [ -73.652344, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.879621 ], [ -72.949219, -36.879621 ], [ -72.949219, -36.315125 ], [ -72.773438, -36.315125 ], [ -72.773438, -35.746512 ], [ -72.597656, -35.746512 ], [ -72.597656, -35.317366 ], [ -72.421875, -35.317366 ], [ -72.421875, -34.885931 ], [ -72.246094, -34.885931 ], [ -72.246094, -34.597042 ], [ -72.070312, -34.597042 ], [ -72.070312, -34.161818 ], [ -71.894531, -34.161818 ], [ -71.894531, -33.724340 ], [ -71.718750, -33.724340 ], [ -71.718750, -33.137551 ], [ -71.542969, -33.137551 ], [ -71.542969, -32.694866 ], [ -71.367188, -32.694866 ], [ -71.367188, -32.101190 ], [ -71.542969, -32.101190 ], [ -71.542969, -31.353637 ], [ -71.718750, -31.353637 ], [ -71.718750, -30.751278 ], [ -71.542969, -30.751278 ], [ -71.542969, -30.448674 ], [ -71.367188, -30.448674 ], [ -71.367188, -29.535230 ], [ -71.542969, -29.535230 ], [ -71.542969, -28.767659 ], [ -71.367188, -28.767659 ], [ -71.367188, -28.459033 ], [ -71.191406, -28.459033 ], [ -71.191406, -28.149503 ], [ -71.015625, -28.149503 ], [ -71.015625, -27.839076 ], [ -70.839844, -27.839076 ], [ -70.839844, -26.745610 ], [ -70.664062, -26.745610 ], [ -70.664062, -24.686952 ], [ -70.488281, -24.686952 ], [ -70.488281, -23.079732 ], [ -70.312500, -23.079732 ], [ -70.312500, -22.105999 ], [ -70.136719, -22.105999 ], [ -70.136719, -19.145168 ], [ -70.312500, -19.145168 ], [ -70.312500, -18.312811 ], [ -69.960938, -18.312811 ], [ -69.960938, -18.145852 ], [ -69.785156, -18.145852 ], [ -69.785156, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.811456 ], [ -69.433594, -17.811456 ], [ -69.433594, -17.978733 ], [ -69.257812, -17.978733 ], [ -69.257812, -18.312811 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.433594, -17.811456 ], [ -69.433594, -17.978733 ], [ -69.257812, -17.978733 ], [ -69.257812, -18.312811 ], [ -69.082031, -18.312811 ], [ -69.082031, -18.646245 ], [ -68.906250, -18.646245 ], [ -68.906250, -19.145168 ], [ -68.730469, -19.145168 ], [ -68.730469, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.476950 ], [ -68.378906, -19.476950 ], [ -68.378906, -19.808054 ], [ -68.554688, -19.808054 ], [ -68.554688, -20.138470 ], [ -68.730469, -20.138470 ], [ -68.730469, -20.632784 ], [ -68.554688, -20.632784 ], [ -68.554688, -20.961440 ], [ -68.378906, -20.961440 ], [ -68.378906, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -21.943046 ], [ -68.027344, -21.943046 ], [ -68.027344, -22.593726 ], [ -67.851562, -22.593726 ], [ -67.851562, -22.917923 ], [ -67.324219, -22.917923 ], [ -67.324219, -22.755921 ], [ -67.148438, -22.755921 ], [ -67.148438, -22.917923 ], [ -66.972656, -22.917923 ], [ -66.972656, -23.241346 ], [ -67.148438, -23.241346 ], [ -67.148438, -23.885838 ], [ -67.324219, -23.885838 ], [ -67.324219, -24.206890 ], [ -67.675781, -24.206890 ], [ -67.675781, -24.367114 ], [ -68.027344, -24.367114 ], [ -68.027344, -24.527135 ], [ -68.378906, -24.527135 ], [ -68.378906, -26.273714 ], [ -68.554688, -26.273714 ], [ -68.554688, -26.745610 ], [ -68.378906, -26.745610 ], [ -68.378906, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -27.215556 ], [ -68.730469, -27.215556 ], [ -68.730469, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.527758 ], [ -69.082031, -27.527758 ], [ -69.082031, -27.683528 ], [ -69.257812, -27.683528 ], [ -69.257812, -27.994401 ], [ -69.433594, -27.994401 ], [ -69.433594, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.767659 ], [ -69.785156, -28.767659 ], [ -69.785156, -29.228890 ], [ -69.960938, -29.228890 ], [ -69.960938, -30.600094 ], [ -70.136719, -30.600094 ], [ -70.136719, -30.902225 ], [ -70.312500, -30.902225 ], [ -70.312500, -31.203405 ], [ -70.488281, -31.203405 ], [ -70.488281, -31.802893 ], [ -70.312500, -31.802893 ], [ -70.312500, -32.694866 ], [ -70.136719, -32.694866 ], [ -70.136719, -33.284620 ], [ -69.785156, -33.284620 ], [ -69.785156, -34.452218 ], [ -69.960938, -34.452218 ], [ -69.960938, -34.741612 ], [ -70.136719, -34.741612 ], [ -70.136719, -35.029996 ], [ -70.312500, -35.029996 ], [ -70.312500, -36.173357 ], [ -70.488281, -36.173357 ], [ -70.488281, -36.315125 ], [ -70.839844, -36.315125 ], [ -70.839844, -36.456636 ], [ -71.015625, -36.456636 ], [ -71.015625, -36.597889 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.857507 ], [ -71.015625, -37.857507 ], [ -71.015625, -38.410558 ], [ -70.839844, -38.410558 ], [ -70.839844, -38.685510 ], [ -71.015625, -38.685510 ], [ -71.015625, -38.822591 ], [ -71.191406, -38.822591 ], [ -71.191406, -38.959409 ], [ -71.367188, -38.959409 ], [ -71.367188, -39.232253 ], [ -71.542969, -39.232253 ], [ -71.542969, -39.639538 ], [ -71.718750, -39.639538 ], [ -71.718750, -40.313043 ], [ -71.894531, -40.313043 ], [ -71.894531, -41.640078 ], [ -74.003906, -41.640078 ], [ -74.003906, -41.244772 ], [ -73.828125, -41.244772 ], [ -73.828125, -40.446947 ], [ -73.652344, -40.446947 ], [ -73.652344, -39.774769 ], [ -73.476562, -39.774769 ], [ -73.476562, -39.504041 ], [ -73.300781, -39.504041 ], [ -73.300781, -38.822591 ], [ -73.476562, -38.822591 ], [ -73.476562, -37.718590 ], [ -73.652344, -37.718590 ], [ -73.652344, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.879621 ], [ -72.949219, -36.879621 ], [ -72.949219, -36.315125 ], [ -72.773438, -36.315125 ], [ -72.773438, -35.746512 ], [ -72.597656, -35.746512 ], [ -72.597656, -35.317366 ], [ -72.421875, -35.317366 ], [ -72.421875, -34.885931 ], [ -72.246094, -34.885931 ], [ -72.246094, -34.597042 ], [ -72.070312, -34.597042 ], [ -72.070312, -34.161818 ], [ -71.894531, -34.161818 ], [ -71.894531, -33.724340 ], [ -71.718750, -33.724340 ], [ -71.718750, -33.137551 ], [ -71.542969, -33.137551 ], [ -71.542969, -32.694866 ], [ -71.367188, -32.694866 ], [ -71.367188, -32.101190 ], [ -71.542969, -32.101190 ], [ -71.542969, -31.353637 ], [ -71.718750, -31.353637 ], [ -71.718750, -30.751278 ], [ -71.542969, -30.751278 ], [ -71.542969, -30.448674 ], [ -71.367188, -30.448674 ], [ -71.367188, -29.535230 ], [ -71.542969, -29.535230 ], [ -71.542969, -28.767659 ], [ -71.367188, -28.767659 ], [ -71.367188, -28.459033 ], [ -71.191406, -28.459033 ], [ -71.191406, -28.149503 ], [ -71.015625, -28.149503 ], [ -71.015625, -27.839076 ], [ -70.839844, -27.839076 ], [ -70.839844, -26.745610 ], [ -70.664062, -26.745610 ], [ -70.664062, -24.686952 ], [ -70.488281, -24.686952 ], [ -70.488281, -23.079732 ], [ -70.312500, -23.079732 ], [ -70.312500, -22.105999 ], [ -70.136719, -22.105999 ], [ -70.136719, -19.145168 ], [ -70.312500, -19.145168 ], [ -70.312500, -18.312811 ], [ -69.960938, -18.312811 ], [ -69.960938, -18.145852 ], [ -69.785156, -18.145852 ], [ -69.785156, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.811456 ], [ -69.433594, -17.811456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.105469, -12.897489 ], [ -62.929688, -12.897489 ], [ -62.929688, -13.068777 ], [ -62.578125, -13.068777 ], [ -62.578125, -13.239945 ], [ -62.050781, -13.239945 ], [ -62.050781, -13.410994 ], [ -61.171875, -13.410994 ], [ -61.171875, -13.581921 ], [ -60.820312, -13.581921 ], [ -60.820312, -13.752725 ], [ -60.468750, -13.752725 ], [ -60.468750, -14.604847 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.114553 ], [ -60.468750, -15.114553 ], [ -60.468750, -15.453680 ], [ -60.292969, -15.453680 ], [ -60.292969, -16.130262 ], [ -60.117188, -16.130262 ], [ -60.117188, -16.299051 ], [ -58.183594, -16.299051 ], [ -58.183594, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -17.308688 ], [ -58.183594, -17.308688 ], [ -58.183594, -17.476432 ], [ -57.656250, -17.476432 ], [ -57.656250, -17.811456 ], [ -57.480469, -17.811456 ], [ -57.480469, -18.646245 ], [ -57.656250, -18.646245 ], [ -57.656250, -19.145168 ], [ -57.832031, -19.145168 ], [ -57.832031, -19.476950 ], [ -58.007812, -19.476950 ], [ -58.007812, -19.808054 ], [ -57.832031, -19.808054 ], [ -57.832031, -20.138470 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -58.359375, -19.808054 ], [ -58.359375, -19.642588 ], [ -58.710938, -19.642588 ], [ -58.710938, -19.476950 ], [ -59.062500, -19.476950 ], [ -59.062500, -19.311143 ], [ -60.468750, -19.311143 ], [ -60.468750, -19.476950 ], [ -61.171875, -19.476950 ], [ -61.171875, -19.642588 ], [ -61.699219, -19.642588 ], [ -61.699219, -19.808054 ], [ -61.875000, -19.808054 ], [ -61.875000, -20.138470 ], [ -62.050781, -20.138470 ], [ -62.050781, -20.468189 ], [ -62.226562, -20.468189 ], [ -62.226562, -21.453069 ], [ -62.402344, -21.453069 ], [ -62.402344, -21.779905 ], [ -62.578125, -21.779905 ], [ -62.578125, -22.105999 ], [ -62.753906, -22.105999 ], [ -62.753906, -22.268764 ], [ -62.929688, -22.268764 ], [ -62.929688, -22.105999 ], [ -63.632812, -22.105999 ], [ -63.632812, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.268764 ], [ -64.160156, -22.268764 ], [ -64.160156, -22.593726 ], [ -64.335938, -22.593726 ], [ -64.335938, -22.755921 ], [ -64.511719, -22.755921 ], [ -64.511719, -22.593726 ], [ -64.687500, -22.593726 ], [ -64.687500, -22.431340 ], [ -64.863281, -22.431340 ], [ -64.863281, -22.268764 ], [ -65.039062, -22.268764 ], [ -65.039062, -22.105999 ], [ -65.390625, -22.105999 ], [ -65.390625, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -21.779905 ], [ -66.269531, -21.779905 ], [ -66.269531, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -22.105999 ], [ -66.621094, -22.105999 ], [ -66.621094, -22.268764 ], [ -66.796875, -22.268764 ], [ -66.796875, -22.593726 ], [ -66.972656, -22.593726 ], [ -66.972656, -22.755921 ], [ -67.324219, -22.755921 ], [ -67.324219, -22.917923 ], [ -67.851562, -22.917923 ], [ -67.851562, -22.593726 ], [ -68.027344, -22.593726 ], [ -68.027344, -21.943046 ], [ -68.203125, -21.943046 ], [ -68.203125, -21.289374 ], [ -68.378906, -21.289374 ], [ -68.378906, -20.961440 ], [ -68.554688, -20.961440 ], [ -68.554688, -20.632784 ], [ -68.730469, -20.632784 ], [ -68.730469, -20.138470 ], [ -68.554688, -20.138470 ], [ -68.554688, -19.808054 ], [ -68.378906, -19.808054 ], [ -68.378906, -19.476950 ], [ -68.554688, -19.476950 ], [ -68.554688, -19.311143 ], [ -68.730469, -19.311143 ], [ -68.730469, -19.145168 ], [ -68.906250, -19.145168 ], [ -68.906250, -18.646245 ], [ -69.082031, -18.646245 ], [ -69.082031, -18.312811 ], [ -69.257812, -18.312811 ], [ -69.257812, -17.978733 ], [ -69.433594, -17.978733 ], [ -69.433594, -17.811456 ], [ -69.609375, -17.811456 ], [ -69.609375, -17.644022 ], [ -69.433594, -17.644022 ], [ -69.433594, -17.308688 ], [ -69.257812, -17.308688 ], [ -69.257812, -16.972741 ], [ -69.082031, -16.972741 ], [ -69.082031, -16.636192 ], [ -68.906250, -16.636192 ], [ -68.906250, -16.467695 ], [ -69.082031, -16.467695 ], [ -69.082031, -16.130262 ], [ -69.257812, -16.130262 ], [ -69.257812, -15.792254 ], [ -69.433594, -15.792254 ], [ -69.433594, -15.623037 ], [ -69.257812, -15.623037 ], [ -69.257812, -15.453680 ], [ -69.082031, -15.453680 ], [ -69.082031, -15.114553 ], [ -69.257812, -15.114553 ], [ -69.257812, -14.944785 ], [ -69.082031, -14.944785 ], [ -69.082031, -14.604847 ], [ -68.906250, -14.604847 ], [ -68.906250, -12.726084 ], [ -68.730469, -12.726084 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.554564 ], [ -68.906250, -12.211180 ], [ -69.082031, -12.211180 ], [ -69.082031, -11.867351 ], [ -69.257812, -11.867351 ], [ -69.257812, -11.523088 ], [ -69.433594, -11.523088 ], [ -69.433594, -11.178402 ], [ -69.609375, -11.178402 ], [ -69.609375, -11.005904 ], [ -68.203125, -11.005904 ], [ -68.203125, -10.833306 ], [ -68.027344, -10.833306 ], [ -68.027344, -10.660608 ], [ -67.675781, -10.660608 ], [ -67.675781, -10.487812 ], [ -67.324219, -10.487812 ], [ -67.324219, -10.314919 ], [ -66.972656, -10.314919 ], [ -66.972656, -10.141932 ], [ -66.621094, -10.141932 ], [ -66.621094, -9.968851 ], [ -65.917969, -9.968851 ], [ -65.917969, -9.795678 ], [ -65.390625, -9.795678 ], [ -65.390625, -11.695273 ], [ -65.214844, -11.695273 ], [ -65.214844, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.039321 ], [ -64.687500, -12.039321 ], [ -64.687500, -12.211180 ], [ -64.511719, -12.211180 ], [ -64.511719, -12.382928 ], [ -63.984375, -12.382928 ], [ -63.984375, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.726084 ], [ -63.105469, -12.726084 ], [ -63.105469, -12.897489 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.795678 ], [ -65.390625, -11.695273 ], [ -65.214844, -11.695273 ], [ -65.214844, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.039321 ], [ -64.687500, -12.039321 ], [ -64.687500, -12.211180 ], [ -64.511719, -12.211180 ], [ -64.511719, -12.382928 ], [ -63.984375, -12.382928 ], [ -63.984375, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.726084 ], [ -63.105469, -12.726084 ], [ -63.105469, -12.897489 ], [ -62.929688, -12.897489 ], [ -62.929688, -13.068777 ], [ -62.578125, -13.068777 ], [ -62.578125, -13.239945 ], [ -62.050781, -13.239945 ], [ -62.050781, -13.410994 ], [ -61.171875, -13.410994 ], [ -61.171875, -13.581921 ], [ -60.820312, -13.581921 ], [ -60.820312, -13.752725 ], [ -60.468750, -13.752725 ], [ -60.468750, -14.604847 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.114553 ], [ -60.468750, -15.114553 ], [ -60.468750, -15.453680 ], [ -60.292969, -15.453680 ], [ -60.292969, -16.130262 ], [ -60.117188, -16.130262 ], [ -60.117188, -16.299051 ], [ -58.183594, -16.299051 ], [ -58.183594, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -17.308688 ], [ -58.183594, -17.308688 ], [ -58.183594, -17.476432 ], [ -57.656250, -17.476432 ], [ -57.656250, -17.811456 ], [ -57.480469, -17.811456 ], [ -57.480469, -18.646245 ], [ -57.656250, -18.646245 ], [ -57.656250, -19.145168 ], [ -57.832031, -19.145168 ], [ -57.832031, -19.476950 ], [ -58.007812, -19.476950 ], [ -58.007812, -19.808054 ], [ -57.832031, -19.808054 ], [ -57.832031, -20.138470 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -58.359375, -19.808054 ], [ -58.359375, -19.642588 ], [ -58.710938, -19.642588 ], [ -58.710938, -19.476950 ], [ -59.062500, -19.476950 ], [ -59.062500, -19.311143 ], [ -60.468750, -19.311143 ], [ -60.468750, -19.476950 ], [ -61.171875, -19.476950 ], [ -61.171875, -19.642588 ], [ -61.699219, -19.642588 ], [ -61.699219, -19.808054 ], [ -61.875000, -19.808054 ], [ -61.875000, -20.138470 ], [ -62.050781, -20.138470 ], [ -62.050781, -20.468189 ], [ -62.226562, -20.468189 ], [ -62.226562, -21.453069 ], [ -62.402344, -21.453069 ], [ -62.402344, -21.779905 ], [ -62.578125, -21.779905 ], [ -62.578125, -22.105999 ], [ -62.753906, -22.105999 ], [ -62.753906, -22.268764 ], [ -62.929688, -22.268764 ], [ -62.929688, -22.105999 ], [ -63.632812, -22.105999 ], [ -63.632812, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.268764 ], [ -64.160156, -22.268764 ], [ -64.160156, -22.593726 ], [ -64.335938, -22.593726 ], [ -64.335938, -22.755921 ], [ -64.511719, -22.755921 ], [ -64.511719, -22.593726 ], [ -64.687500, -22.593726 ], [ -64.687500, -22.431340 ], [ -64.863281, -22.431340 ], [ -64.863281, -22.268764 ], [ -65.039062, -22.268764 ], [ -65.039062, -22.105999 ], [ -65.390625, -22.105999 ], [ -65.390625, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -21.779905 ], [ -66.269531, -21.779905 ], [ -66.269531, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -22.105999 ], [ -66.621094, -22.105999 ], [ -66.621094, -22.268764 ], [ -66.796875, -22.268764 ], [ -66.796875, -22.593726 ], [ -66.972656, -22.593726 ], [ -66.972656, -22.755921 ], [ -67.324219, -22.755921 ], [ -67.324219, -22.917923 ], [ -67.851562, -22.917923 ], [ -67.851562, -22.593726 ], [ -68.027344, -22.593726 ], [ -68.027344, -21.943046 ], [ -68.203125, -21.943046 ], [ -68.203125, -21.289374 ], [ -68.378906, -21.289374 ], [ -68.378906, -20.961440 ], [ -68.554688, -20.961440 ], [ -68.554688, -20.632784 ], [ -68.730469, -20.632784 ], [ -68.730469, -20.138470 ], [ -68.554688, -20.138470 ], [ -68.554688, -19.808054 ], [ -68.378906, -19.808054 ], [ -68.378906, -19.476950 ], [ -68.554688, -19.476950 ], [ -68.554688, -19.311143 ], [ -68.730469, -19.311143 ], [ -68.730469, -19.145168 ], [ -68.906250, -19.145168 ], [ -68.906250, -18.646245 ], [ -69.082031, -18.646245 ], [ -69.082031, -18.312811 ], [ -69.257812, -18.312811 ], [ -69.257812, -17.978733 ], [ -69.433594, -17.978733 ], [ -69.433594, -17.811456 ], [ -69.609375, -17.811456 ], [ -69.609375, -17.644022 ], [ -69.433594, -17.644022 ], [ -69.433594, -17.308688 ], [ -69.257812, -17.308688 ], [ -69.257812, -16.972741 ], [ -69.082031, -16.972741 ], [ -69.082031, -16.636192 ], [ -68.906250, -16.636192 ], [ -68.906250, -16.467695 ], [ -69.082031, -16.467695 ], [ -69.082031, -16.130262 ], [ -69.257812, -16.130262 ], [ -69.257812, -15.792254 ], [ -69.433594, -15.792254 ], [ -69.433594, -15.623037 ], [ -69.257812, -15.623037 ], [ -69.257812, -15.453680 ], [ -69.082031, -15.453680 ], [ -69.082031, -15.114553 ], [ -69.257812, -15.114553 ], [ -69.257812, -14.944785 ], [ -69.082031, -14.944785 ], [ -69.082031, -14.604847 ], [ -68.906250, -14.604847 ], [ -68.906250, -12.726084 ], [ -68.730469, -12.726084 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.554564 ], [ -68.906250, -12.211180 ], [ -69.082031, -12.211180 ], [ -69.082031, -11.867351 ], [ -69.257812, -11.867351 ], [ -69.257812, -11.523088 ], [ -69.433594, -11.523088 ], [ -69.433594, -11.178402 ], [ -69.609375, -11.178402 ], [ -69.609375, -11.005904 ], [ -68.203125, -11.005904 ], [ -68.203125, -10.833306 ], [ -68.027344, -10.833306 ], [ -68.027344, -10.660608 ], [ -67.675781, -10.660608 ], [ -67.675781, -10.487812 ], [ -67.324219, -10.487812 ], [ -67.324219, -10.314919 ], [ -66.972656, -10.314919 ], [ -66.972656, -10.141932 ], [ -66.621094, -10.141932 ], [ -66.621094, -9.968851 ], [ -65.917969, -9.968851 ], [ -65.917969, -9.795678 ], [ -65.390625, -9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.933594, -0.878872 ], [ -46.406250, -0.878872 ], [ -46.406250, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.230374 ], [ -45.527344, -1.230374 ], [ -45.527344, -1.406109 ], [ -45.175781, -1.406109 ], [ -45.175781, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -44.121094, -2.635789 ], [ -44.121094, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.402765 ], [ -44.648438, -23.402765 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -46.054688, -23.885838 ], [ -46.054688, -24.046464 ], [ -46.406250, -24.046464 ], [ -46.406250, -24.206890 ], [ -46.757812, -24.206890 ], [ -46.757812, -24.367114 ], [ -46.933594, -24.367114 ], [ -46.933594, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -24.686952 ], [ -47.460938, -24.686952 ], [ -47.460938, -24.846565 ], [ -47.636719, -24.846565 ], [ -47.636719, -25.005973 ], [ -47.812500, -25.005973 ], [ -47.812500, -25.165173 ], [ -47.988281, -25.165173 ], [ -47.988281, -25.324167 ], [ -48.164062, -25.324167 ], [ -48.164062, -25.641526 ], [ -48.339844, -25.641526 ], [ -48.339844, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -26.273714 ], [ -48.691406, -26.273714 ], [ -48.691406, -26.902477 ], [ -48.515625, -26.902477 ], [ -48.515625, -27.683528 ], [ -48.691406, -27.683528 ], [ -48.691406, -28.459033 ], [ -48.867188, -28.459033 ], [ -48.867188, -28.767659 ], [ -49.042969, -28.767659 ], [ -49.042969, -28.921631 ], [ -49.218750, -28.921631 ], [ -49.218750, -29.075375 ], [ -49.394531, -29.075375 ], [ -49.394531, -29.228890 ], [ -49.570312, -29.228890 ], [ -49.570312, -29.382175 ], [ -49.746094, -29.382175 ], [ -49.746094, -29.688053 ], [ -49.921875, -29.688053 ], [ -49.921875, -29.993002 ], [ -50.097656, -29.993002 ], [ -50.097656, -30.297018 ], [ -50.273438, -30.297018 ], [ -50.273438, -30.600094 ], [ -50.449219, -30.600094 ], [ -50.449219, -30.902225 ], [ -50.625000, -30.902225 ], [ -50.625000, -31.203405 ], [ -50.800781, -31.203405 ], [ -50.800781, -31.353637 ], [ -50.976562, -31.353637 ], [ -50.976562, -31.503629 ], [ -51.152344, -31.503629 ], [ -51.152344, -31.653381 ], [ -51.328125, -31.653381 ], [ -51.328125, -31.802893 ], [ -51.503906, -31.802893 ], [ -51.503906, -31.952162 ], [ -51.679688, -31.952162 ], [ -51.679688, -32.101190 ], [ -52.031250, -32.101190 ], [ -52.031250, -32.249974 ], [ -52.207031, -32.249974 ], [ -52.207031, -32.398516 ], [ -52.382812, -32.398516 ], [ -52.382812, -32.694866 ], [ -52.558594, -32.694866 ], [ -52.558594, -32.990236 ], [ -52.734375, -32.990236 ], [ -52.734375, -33.284620 ], [ -52.910156, -33.284620 ], [ -52.910156, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.578015 ], [ -53.261719, -33.578015 ], [ -53.261719, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.431441 ], [ -53.613281, -33.431441 ], [ -53.613281, -33.137551 ], [ -53.437500, -33.137551 ], [ -53.437500, -32.842674 ], [ -53.261719, -32.842674 ], [ -53.261719, -32.694866 ], [ -53.437500, -32.694866 ], [ -53.437500, -32.398516 ], [ -53.613281, -32.398516 ], [ -53.613281, -32.249974 ], [ -53.789062, -32.249974 ], [ -53.789062, -32.101190 ], [ -53.964844, -32.101190 ], [ -53.964844, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -31.802893 ], [ -54.316406, -31.802893 ], [ -54.316406, -31.653381 ], [ -54.492188, -31.653381 ], [ -54.492188, -31.503629 ], [ -54.667969, -31.503629 ], [ -54.667969, -31.353637 ], [ -55.019531, -31.353637 ], [ -55.019531, -31.203405 ], [ -55.195312, -31.203405 ], [ -55.195312, -31.052934 ], [ -55.546875, -31.052934 ], [ -55.546875, -30.902225 ], [ -56.074219, -30.902225 ], [ -56.074219, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -30.600094 ], [ -56.601562, -30.600094 ], [ -56.601562, -30.448674 ], [ -56.777344, -30.448674 ], [ -56.777344, -30.297018 ], [ -56.953125, -30.297018 ], [ -56.953125, -30.145127 ], [ -57.480469, -30.145127 ], [ -57.480469, -29.993002 ], [ -57.304688, -29.993002 ], [ -57.304688, -29.840644 ], [ -57.128906, -29.840644 ], [ -57.128906, -29.688053 ], [ -56.953125, -29.688053 ], [ -56.953125, -29.535230 ], [ -56.777344, -29.535230 ], [ -56.777344, -29.382175 ], [ -56.601562, -29.382175 ], [ -56.601562, -29.228890 ], [ -56.425781, -29.228890 ], [ -56.425781, -29.075375 ], [ -56.250000, -29.075375 ], [ -56.250000, -28.921631 ], [ -56.074219, -28.921631 ], [ -56.074219, -28.767659 ], [ -55.898438, -28.767659 ], [ -55.898438, -28.613459 ], [ -55.722656, -28.613459 ], [ -55.722656, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.149503 ], [ -55.371094, -28.149503 ], [ -55.371094, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -27.839076 ], [ -54.843750, -27.839076 ], [ -54.843750, -27.683528 ], [ -54.492188, -27.683528 ], [ -54.492188, -27.527758 ], [ -54.316406, -27.527758 ], [ -54.316406, -27.371767 ], [ -54.140625, -27.371767 ], [ -54.140625, -27.215556 ], [ -53.789062, -27.215556 ], [ -53.789062, -27.059126 ], [ -53.613281, -27.059126 ], [ -53.613281, -26.115986 ], [ -53.789062, -26.115986 ], [ -53.789062, -25.799891 ], [ -53.964844, -25.799891 ], [ -53.964844, -25.641526 ], [ -54.492188, -25.641526 ], [ -54.492188, -25.799891 ], [ -54.667969, -25.799891 ], [ -54.667969, -25.482951 ], [ -54.492188, -25.482951 ], [ -54.492188, -24.846565 ], [ -54.316406, -24.846565 ], [ -54.316406, -24.046464 ], [ -55.371094, -24.046464 ], [ -55.371094, -23.725012 ], [ -55.546875, -23.725012 ], [ -55.546875, -22.593726 ], [ -55.722656, -22.593726 ], [ -55.722656, -22.431340 ], [ -56.074219, -22.431340 ], [ -56.074219, -22.268764 ], [ -56.425781, -22.268764 ], [ -56.425781, -22.105999 ], [ -56.601562, -22.105999 ], [ -56.601562, -22.268764 ], [ -57.656250, -22.268764 ], [ -57.656250, -22.105999 ], [ -58.007812, -22.105999 ], [ -58.007812, -21.453069 ], [ -57.832031, -21.453069 ], [ -57.832031, -20.632784 ], [ -58.007812, -20.632784 ], [ -58.007812, -20.303418 ], [ -58.183594, -20.303418 ], [ -58.183594, -20.138470 ], [ -57.832031, -20.138470 ], [ -57.832031, -19.808054 ], [ -58.007812, -19.808054 ], [ -58.007812, -19.476950 ], [ -57.832031, -19.476950 ], [ -57.832031, -19.145168 ], [ -57.656250, -19.145168 ], [ -57.656250, -18.646245 ], [ -57.480469, -18.646245 ], [ -57.480469, -17.811456 ], [ -57.656250, -17.811456 ], [ -57.656250, -17.476432 ], [ -58.183594, -17.476432 ], [ -58.183594, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.636192 ], [ -58.183594, -16.636192 ], [ -58.183594, -16.299051 ], [ -60.117188, -16.299051 ], [ -60.117188, -16.130262 ], [ -60.292969, -16.130262 ], [ -60.292969, -15.453680 ], [ -60.468750, -15.453680 ], [ -60.468750, -15.114553 ], [ -60.292969, -15.114553 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.604847 ], [ -60.468750, -13.752725 ], [ -60.820312, -13.752725 ], [ -60.820312, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.410994 ], [ -62.050781, -13.410994 ], [ -62.050781, -13.239945 ], [ -62.578125, -13.239945 ], [ -62.578125, -13.068777 ], [ -62.929688, -13.068777 ], [ -62.929688, -12.897489 ], [ -63.105469, -12.897489 ], [ -63.105469, -12.726084 ], [ -63.281250, -12.726084 ], [ -63.281250, -12.554564 ], [ -63.984375, -12.554564 ], [ -63.984375, -12.382928 ], [ -64.511719, -12.382928 ], [ -64.511719, -12.211180 ], [ -64.687500, -12.211180 ], [ -64.687500, -12.039321 ], [ -65.039062, -12.039321 ], [ -65.039062, -11.867351 ], [ -65.214844, -11.867351 ], [ -65.214844, -11.695273 ], [ -65.390625, -11.695273 ], [ -65.390625, -9.795678 ], [ -65.917969, -9.795678 ], [ -65.917969, -9.968851 ], [ -66.621094, -9.968851 ], [ -66.621094, -10.141932 ], [ -66.972656, -10.141932 ], [ -66.972656, -10.314919 ], [ -67.324219, -10.314919 ], [ -67.324219, -10.487812 ], [ -67.675781, -10.487812 ], [ -67.675781, -10.660608 ], [ -68.027344, -10.660608 ], [ -68.027344, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -11.005904 ], [ -69.785156, -11.005904 ], [ -69.785156, -11.178402 ], [ -70.488281, -11.178402 ], [ -70.488281, -9.622414 ], [ -70.664062, -9.622414 ], [ -70.664062, -9.795678 ], [ -71.015625, -9.795678 ], [ -71.015625, -9.968851 ], [ -71.191406, -9.968851 ], [ -71.191406, -10.141932 ], [ -71.894531, -10.141932 ], [ -71.894531, -9.968851 ], [ -72.421875, -9.968851 ], [ -72.421875, -9.622414 ], [ -72.597656, -9.622414 ], [ -72.597656, -9.449062 ], [ -73.125000, -9.449062 ], [ -73.125000, -9.275622 ], [ -72.949219, -9.275622 ], [ -72.949219, -9.102097 ], [ -73.125000, -9.102097 ], [ -73.125000, -8.928487 ], [ -73.300781, -8.928487 ], [ -73.300781, -8.754795 ], [ -73.476562, -8.754795 ], [ -73.476562, -8.581021 ], [ -73.652344, -8.581021 ], [ -73.652344, -8.233237 ], [ -73.828125, -8.233237 ], [ -73.828125, -7.885147 ], [ -74.003906, -7.885147 ], [ -74.003906, -7.536764 ], [ -73.652344, -7.536764 ], [ -73.652344, -6.839170 ], [ -73.300781, -6.839170 ], [ -73.300781, -6.664608 ], [ -73.125000, -6.664608 ], [ -73.125000, -6.489983 ], [ -73.300781, -6.489983 ], [ -73.300781, -6.140555 ], [ -73.125000, -6.140555 ], [ -73.125000, -5.965754 ], [ -72.949219, -5.965754 ], [ -72.949219, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -5.090944 ], [ -72.421875, -5.090944 ], [ -72.421875, -4.915833 ], [ -72.070312, -4.915833 ], [ -72.070312, -4.740675 ], [ -71.718750, -4.740675 ], [ -71.718750, -4.565474 ], [ -71.191406, -4.565474 ], [ -71.191406, -4.390229 ], [ -70.839844, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -3.864255 ], [ -69.785156, -3.864255 ], [ -69.785156, -2.986927 ], [ -69.609375, -2.986927 ], [ -69.609375, -2.108899 ], [ -69.433594, -2.108899 ], [ -69.433594, -0.878872 ], [ -69.609375, -0.878872 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -69.960938, -0.351560 ], [ -69.960938, 0.527336 ], [ -69.609375, 0.527336 ], [ -69.609375, 0.703107 ], [ -69.433594, 0.703107 ], [ -69.433594, 0.527336 ], [ -69.257812, 0.527336 ], [ -69.257812, 0.878872 ], [ -66.445312, 0.878872 ], [ -66.445312, 0.703107 ], [ -65.742188, 0.703107 ], [ -65.742188, 0.878872 ], [ -50.097656, 0.878872 ], [ -50.097656, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.527336 ], [ -50.449219, 0.527336 ], [ -50.449219, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -0.703107 ], [ -48.515625, -0.703107 ], [ -48.515625, -1.230374 ], [ -48.339844, -1.230374 ], [ -48.339844, -1.054628 ], [ -48.164062, -1.054628 ], [ -48.164062, -0.878872 ], [ -47.988281, -0.878872 ], [ -47.988281, -0.703107 ], [ -47.812500, -0.703107 ], [ -47.812500, -0.527336 ], [ -47.636719, -0.527336 ], [ -47.636719, -0.703107 ], [ -46.933594, -0.703107 ], [ -46.933594, -0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.097656, 0.878872 ], [ -50.097656, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.527336 ], [ -50.449219, 0.527336 ], [ -50.449219, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -0.703107 ], [ -48.515625, -0.703107 ], [ -48.515625, -1.230374 ], [ -48.339844, -1.230374 ], [ -48.339844, -1.054628 ], [ -48.164062, -1.054628 ], [ -48.164062, -0.878872 ], [ -47.988281, -0.878872 ], [ -47.988281, -0.703107 ], [ -47.812500, -0.703107 ], [ -47.812500, -0.527336 ], [ -47.636719, -0.527336 ], [ -47.636719, -0.703107 ], [ -46.933594, -0.703107 ], [ -46.933594, -0.878872 ], [ -46.406250, -0.878872 ], [ -46.406250, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.230374 ], [ -45.527344, -1.230374 ], [ -45.527344, -1.406109 ], [ -45.175781, -1.406109 ], [ -45.175781, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -44.121094, -2.635789 ], [ -44.121094, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.402765 ], [ -44.648438, -23.402765 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -46.054688, -23.885838 ], [ -46.054688, -24.046464 ], [ -46.406250, -24.046464 ], [ -46.406250, -24.206890 ], [ -46.757812, -24.206890 ], [ -46.757812, -24.367114 ], [ -46.933594, -24.367114 ], [ -46.933594, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -24.686952 ], [ -47.460938, -24.686952 ], [ -47.460938, -24.846565 ], [ -47.636719, -24.846565 ], [ -47.636719, -25.005973 ], [ -47.812500, -25.005973 ], [ -47.812500, -25.165173 ], [ -47.988281, -25.165173 ], [ -47.988281, -25.324167 ], [ -48.164062, -25.324167 ], [ -48.164062, -25.641526 ], [ -48.339844, -25.641526 ], [ -48.339844, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -26.273714 ], [ -48.691406, -26.273714 ], [ -48.691406, -26.902477 ], [ -48.515625, -26.902477 ], [ -48.515625, -27.683528 ], [ -48.691406, -27.683528 ], [ -48.691406, -28.459033 ], [ -48.867188, -28.459033 ], [ -48.867188, -28.767659 ], [ -49.042969, -28.767659 ], [ -49.042969, -28.921631 ], [ -49.218750, -28.921631 ], [ -49.218750, -29.075375 ], [ -49.394531, -29.075375 ], [ -49.394531, -29.228890 ], [ -49.570312, -29.228890 ], [ -49.570312, -29.382175 ], [ -49.746094, -29.382175 ], [ -49.746094, -29.688053 ], [ -49.921875, -29.688053 ], [ -49.921875, -29.993002 ], [ -50.097656, -29.993002 ], [ -50.097656, -30.297018 ], [ -50.273438, -30.297018 ], [ -50.273438, -30.600094 ], [ -50.449219, -30.600094 ], [ -50.449219, -30.902225 ], [ -50.625000, -30.902225 ], [ -50.625000, -31.203405 ], [ -50.800781, -31.203405 ], [ -50.800781, -31.353637 ], [ -50.976562, -31.353637 ], [ -50.976562, -31.503629 ], [ -51.152344, -31.503629 ], [ -51.152344, -31.653381 ], [ -51.328125, -31.653381 ], [ -51.328125, -31.802893 ], [ -51.503906, -31.802893 ], [ -51.503906, -31.952162 ], [ -51.679688, -31.952162 ], [ -51.679688, -32.101190 ], [ -52.031250, -32.101190 ], [ -52.031250, -32.249974 ], [ -52.207031, -32.249974 ], [ -52.207031, -32.398516 ], [ -52.382812, -32.398516 ], [ -52.382812, -32.694866 ], [ -52.558594, -32.694866 ], [ -52.558594, -32.990236 ], [ -52.734375, -32.990236 ], [ -52.734375, -33.284620 ], [ -52.910156, -33.284620 ], [ -52.910156, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.578015 ], [ -53.261719, -33.578015 ], [ -53.261719, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.431441 ], [ -53.613281, -33.431441 ], [ -53.613281, -33.137551 ], [ -53.437500, -33.137551 ], [ -53.437500, -32.842674 ], [ -53.261719, -32.842674 ], [ -53.261719, -32.694866 ], [ -53.437500, -32.694866 ], [ -53.437500, -32.398516 ], [ -53.613281, -32.398516 ], [ -53.613281, -32.249974 ], [ -53.789062, -32.249974 ], [ -53.789062, -32.101190 ], [ -53.964844, -32.101190 ], [ -53.964844, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -31.802893 ], [ -54.316406, -31.802893 ], [ -54.316406, -31.653381 ], [ -54.492188, -31.653381 ], [ -54.492188, -31.503629 ], [ -54.667969, -31.503629 ], [ -54.667969, -31.353637 ], [ -55.019531, -31.353637 ], [ -55.019531, -31.203405 ], [ -55.195312, -31.203405 ], [ -55.195312, -31.052934 ], [ -55.546875, -31.052934 ], [ -55.546875, -30.902225 ], [ -56.074219, -30.902225 ], [ -56.074219, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -30.600094 ], [ -56.601562, -30.600094 ], [ -56.601562, -30.448674 ], [ -56.777344, -30.448674 ], [ -56.777344, -30.297018 ], [ -56.953125, -30.297018 ], [ -56.953125, -30.145127 ], [ -57.480469, -30.145127 ], [ -57.480469, -29.993002 ], [ -57.304688, -29.993002 ], [ -57.304688, -29.840644 ], [ -57.128906, -29.840644 ], [ -57.128906, -29.688053 ], [ -56.953125, -29.688053 ], [ -56.953125, -29.535230 ], [ -56.777344, -29.535230 ], [ -56.777344, -29.382175 ], [ -56.601562, -29.382175 ], [ -56.601562, -29.228890 ], [ -56.425781, -29.228890 ], [ -56.425781, -29.075375 ], [ -56.250000, -29.075375 ], [ -56.250000, -28.921631 ], [ -56.074219, -28.921631 ], [ -56.074219, -28.767659 ], [ -55.898438, -28.767659 ], [ -55.898438, -28.613459 ], [ -55.722656, -28.613459 ], [ -55.722656, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.149503 ], [ -55.371094, -28.149503 ], [ -55.371094, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -27.839076 ], [ -54.843750, -27.839076 ], [ -54.843750, -27.683528 ], [ -54.492188, -27.683528 ], [ -54.492188, -27.527758 ], [ -54.316406, -27.527758 ], [ -54.316406, -27.371767 ], [ -54.140625, -27.371767 ], [ -54.140625, -27.215556 ], [ -53.789062, -27.215556 ], [ -53.789062, -27.059126 ], [ -53.613281, -27.059126 ], [ -53.613281, -26.115986 ], [ -53.789062, -26.115986 ], [ -53.789062, -25.799891 ], [ -53.964844, -25.799891 ], [ -53.964844, -25.641526 ], [ -54.492188, -25.641526 ], [ -54.492188, -25.799891 ], [ -54.667969, -25.799891 ], [ -54.667969, -25.482951 ], [ -54.492188, -25.482951 ], [ -54.492188, -24.846565 ], [ -54.316406, -24.846565 ], [ -54.316406, -24.046464 ], [ -55.371094, -24.046464 ], [ -55.371094, -23.725012 ], [ -55.546875, -23.725012 ], [ -55.546875, -22.593726 ], [ -55.722656, -22.593726 ], [ -55.722656, -22.431340 ], [ -56.074219, -22.431340 ], [ -56.074219, -22.268764 ], [ -56.425781, -22.268764 ], [ -56.425781, -22.105999 ], [ -56.601562, -22.105999 ], [ -56.601562, -22.268764 ], [ -57.656250, -22.268764 ], [ -57.656250, -22.105999 ], [ -58.007812, -22.105999 ], [ -58.007812, -21.453069 ], [ -57.832031, -21.453069 ], [ -57.832031, -20.632784 ], [ -58.007812, -20.632784 ], [ -58.007812, -20.303418 ], [ -58.183594, -20.303418 ], [ -58.183594, -20.138470 ], [ -57.832031, -20.138470 ], [ -57.832031, -19.808054 ], [ -58.007812, -19.808054 ], [ -58.007812, -19.476950 ], [ -57.832031, -19.476950 ], [ -57.832031, -19.145168 ], [ -57.656250, -19.145168 ], [ -57.656250, -18.646245 ], [ -57.480469, -18.646245 ], [ -57.480469, -17.811456 ], [ -57.656250, -17.811456 ], [ -57.656250, -17.476432 ], [ -58.183594, -17.476432 ], [ -58.183594, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.636192 ], [ -58.183594, -16.636192 ], [ -58.183594, -16.299051 ], [ -60.117188, -16.299051 ], [ -60.117188, -16.130262 ], [ -60.292969, -16.130262 ], [ -60.292969, -15.453680 ], [ -60.468750, -15.453680 ], [ -60.468750, -15.114553 ], [ -60.292969, -15.114553 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.604847 ], [ -60.468750, -13.752725 ], [ -60.820312, -13.752725 ], [ -60.820312, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.410994 ], [ -62.050781, -13.410994 ], [ -62.050781, -13.239945 ], [ -62.578125, -13.239945 ], [ -62.578125, -13.068777 ], [ -62.929688, -13.068777 ], [ -62.929688, -12.897489 ], [ -63.105469, -12.897489 ], [ -63.105469, -12.726084 ], [ -63.281250, -12.726084 ], [ -63.281250, -12.554564 ], [ -63.984375, -12.554564 ], [ -63.984375, -12.382928 ], [ -64.511719, -12.382928 ], [ -64.511719, -12.211180 ], [ -64.687500, -12.211180 ], [ -64.687500, -12.039321 ], [ -65.039062, -12.039321 ], [ -65.039062, -11.867351 ], [ -65.214844, -11.867351 ], [ -65.214844, -11.695273 ], [ -65.390625, -11.695273 ], [ -65.390625, -9.795678 ], [ -65.917969, -9.795678 ], [ -65.917969, -9.968851 ], [ -66.621094, -9.968851 ], [ -66.621094, -10.141932 ], [ -66.972656, -10.141932 ], [ -66.972656, -10.314919 ], [ -67.324219, -10.314919 ], [ -67.324219, -10.487812 ], [ -67.675781, -10.487812 ], [ -67.675781, -10.660608 ], [ -68.027344, -10.660608 ], [ -68.027344, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -11.005904 ], [ -69.785156, -11.005904 ], [ -69.785156, -11.178402 ], [ -70.488281, -11.178402 ], [ -70.488281, -9.622414 ], [ -70.664062, -9.622414 ], [ -70.664062, -9.795678 ], [ -71.015625, -9.795678 ], [ -71.015625, -9.968851 ], [ -71.191406, -9.968851 ], [ -71.191406, -10.141932 ], [ -71.894531, -10.141932 ], [ -71.894531, -9.968851 ], [ -72.421875, -9.968851 ], [ -72.421875, -9.622414 ], [ -72.597656, -9.622414 ], [ -72.597656, -9.449062 ], [ -73.125000, -9.449062 ], [ -73.125000, -9.275622 ], [ -72.949219, -9.275622 ], [ -72.949219, -9.102097 ], [ -73.125000, -9.102097 ], [ -73.125000, -8.928487 ], [ -73.300781, -8.928487 ], [ -73.300781, -8.754795 ], [ -73.476562, -8.754795 ], [ -73.476562, -8.581021 ], [ -73.652344, -8.581021 ], [ -73.652344, -8.233237 ], [ -73.828125, -8.233237 ], [ -73.828125, -7.885147 ], [ -74.003906, -7.885147 ], [ -74.003906, -7.536764 ], [ -73.652344, -7.536764 ], [ -73.652344, -6.839170 ], [ -73.300781, -6.839170 ], [ -73.300781, -6.664608 ], [ -73.125000, -6.664608 ], [ -73.125000, -6.489983 ], [ -73.300781, -6.489983 ], [ -73.300781, -6.140555 ], [ -73.125000, -6.140555 ], [ -73.125000, -5.965754 ], [ -72.949219, -5.965754 ], [ -72.949219, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -5.090944 ], [ -72.421875, -5.090944 ], [ -72.421875, -4.915833 ], [ -72.070312, -4.915833 ], [ -72.070312, -4.740675 ], [ -71.718750, -4.740675 ], [ -71.718750, -4.565474 ], [ -71.191406, -4.565474 ], [ -71.191406, -4.390229 ], [ -70.839844, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -3.864255 ], [ -69.785156, -3.864255 ], [ -69.785156, -2.986927 ], [ -69.609375, -2.986927 ], [ -69.609375, -2.108899 ], [ -69.433594, -2.108899 ], [ -69.433594, -0.878872 ], [ -69.609375, -0.878872 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -69.960938, -0.351560 ], [ -69.960938, 0.527336 ], [ -69.609375, 0.527336 ], [ -69.609375, 0.703107 ], [ -69.433594, 0.703107 ], [ -69.433594, 0.527336 ], [ -69.257812, 0.527336 ], [ -69.257812, 0.878872 ], [ -66.445312, 0.878872 ], [ -66.445312, 0.703107 ], [ -65.742188, 0.703107 ], [ -65.742188, 0.878872 ], [ -50.097656, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.710938, -19.642588 ], [ -58.359375, -19.642588 ], [ -58.359375, -19.808054 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.303418 ], [ -58.007812, -20.303418 ], [ -58.007812, -20.632784 ], [ -57.832031, -20.632784 ], [ -57.832031, -21.453069 ], [ -58.007812, -21.453069 ], [ -58.007812, -22.105999 ], [ -57.656250, -22.105999 ], [ -57.656250, -22.268764 ], [ -56.601562, -22.268764 ], [ -56.601562, -22.105999 ], [ -56.425781, -22.105999 ], [ -56.425781, -22.268764 ], [ -56.074219, -22.268764 ], [ -56.074219, -22.431340 ], [ -55.722656, -22.431340 ], [ -55.722656, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.725012 ], [ -55.371094, -23.725012 ], [ -55.371094, -24.046464 ], [ -54.316406, -24.046464 ], [ -54.316406, -24.846565 ], [ -54.492188, -24.846565 ], [ -54.492188, -25.482951 ], [ -54.667969, -25.482951 ], [ -54.667969, -26.273714 ], [ -54.843750, -26.273714 ], [ -54.843750, -26.745610 ], [ -55.019531, -26.745610 ], [ -55.019531, -26.902477 ], [ -55.195312, -26.902477 ], [ -55.195312, -27.059126 ], [ -55.371094, -27.059126 ], [ -55.371094, -27.215556 ], [ -55.546875, -27.215556 ], [ -55.546875, -27.371767 ], [ -55.898438, -27.371767 ], [ -55.898438, -27.527758 ], [ -57.128906, -27.527758 ], [ -57.128906, -27.371767 ], [ -58.007812, -27.371767 ], [ -58.007812, -27.215556 ], [ -58.359375, -27.215556 ], [ -58.359375, -26.745610 ], [ -58.183594, -26.745610 ], [ -58.183594, -26.431228 ], [ -58.007812, -26.431228 ], [ -58.007812, -26.115986 ], [ -57.832031, -26.115986 ], [ -57.832031, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.482951 ], [ -57.832031, -25.482951 ], [ -57.832031, -25.165173 ], [ -58.183594, -25.165173 ], [ -58.183594, -25.005973 ], [ -58.710938, -25.005973 ], [ -58.710938, -24.846565 ], [ -59.062500, -24.846565 ], [ -59.062500, -24.686952 ], [ -59.238281, -24.686952 ], [ -59.238281, -24.527135 ], [ -59.589844, -24.527135 ], [ -59.589844, -24.367114 ], [ -59.765625, -24.367114 ], [ -59.765625, -24.206890 ], [ -59.941406, -24.206890 ], [ -59.941406, -24.046464 ], [ -60.468750, -24.046464 ], [ -60.468750, -23.885838 ], [ -60.996094, -23.885838 ], [ -60.996094, -23.725012 ], [ -61.171875, -23.725012 ], [ -61.171875, -23.563987 ], [ -61.347656, -23.563987 ], [ -61.347656, -23.402765 ], [ -61.523438, -23.402765 ], [ -61.523438, -23.241346 ], [ -61.699219, -23.241346 ], [ -61.699219, -23.079732 ], [ -62.050781, -23.079732 ], [ -62.050781, -22.917923 ], [ -62.226562, -22.917923 ], [ -62.226562, -22.755921 ], [ -62.402344, -22.755921 ], [ -62.402344, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -22.431340 ], [ -62.753906, -22.431340 ], [ -62.753906, -22.105999 ], [ -62.578125, -22.105999 ], [ -62.578125, -21.779905 ], [ -62.402344, -21.779905 ], [ -62.402344, -21.453069 ], [ -62.226562, -21.453069 ], [ -62.226562, -20.468189 ], [ -62.050781, -20.468189 ], [ -62.050781, -20.138470 ], [ -61.875000, -20.138470 ], [ -61.875000, -19.808054 ], [ -61.699219, -19.808054 ], [ -61.699219, -19.642588 ], [ -61.171875, -19.642588 ], [ -61.171875, -19.476950 ], [ -60.468750, -19.476950 ], [ -60.468750, -19.311143 ], [ -59.062500, -19.311143 ], [ -59.062500, -19.476950 ], [ -58.710938, -19.476950 ], [ -58.710938, -19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.476950 ], [ -58.710938, -19.476950 ], [ -58.710938, -19.642588 ], [ -58.359375, -19.642588 ], [ -58.359375, -19.808054 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.303418 ], [ -58.007812, -20.303418 ], [ -58.007812, -20.632784 ], [ -57.832031, -20.632784 ], [ -57.832031, -21.453069 ], [ -58.007812, -21.453069 ], [ -58.007812, -22.105999 ], [ -57.656250, -22.105999 ], [ -57.656250, -22.268764 ], [ -56.601562, -22.268764 ], [ -56.601562, -22.105999 ], [ -56.425781, -22.105999 ], [ -56.425781, -22.268764 ], [ -56.074219, -22.268764 ], [ -56.074219, -22.431340 ], [ -55.722656, -22.431340 ], [ -55.722656, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.725012 ], [ -55.371094, -23.725012 ], [ -55.371094, -24.046464 ], [ -54.316406, -24.046464 ], [ -54.316406, -24.846565 ], [ -54.492188, -24.846565 ], [ -54.492188, -25.482951 ], [ -54.667969, -25.482951 ], [ -54.667969, -26.273714 ], [ -54.843750, -26.273714 ], [ -54.843750, -26.745610 ], [ -55.019531, -26.745610 ], [ -55.019531, -26.902477 ], [ -55.195312, -26.902477 ], [ -55.195312, -27.059126 ], [ -55.371094, -27.059126 ], [ -55.371094, -27.215556 ], [ -55.546875, -27.215556 ], [ -55.546875, -27.371767 ], [ -55.898438, -27.371767 ], [ -55.898438, -27.527758 ], [ -57.128906, -27.527758 ], [ -57.128906, -27.371767 ], [ -58.007812, -27.371767 ], [ -58.007812, -27.215556 ], [ -58.359375, -27.215556 ], [ -58.359375, -26.745610 ], [ -58.183594, -26.745610 ], [ -58.183594, -26.431228 ], [ -58.007812, -26.431228 ], [ -58.007812, -26.115986 ], [ -57.832031, -26.115986 ], [ -57.832031, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.482951 ], [ -57.832031, -25.482951 ], [ -57.832031, -25.165173 ], [ -58.183594, -25.165173 ], [ -58.183594, -25.005973 ], [ -58.710938, -25.005973 ], [ -58.710938, -24.846565 ], [ -59.062500, -24.846565 ], [ -59.062500, -24.686952 ], [ -59.238281, -24.686952 ], [ -59.238281, -24.527135 ], [ -59.589844, -24.527135 ], [ -59.589844, -24.367114 ], [ -59.765625, -24.367114 ], [ -59.765625, -24.206890 ], [ -59.941406, -24.206890 ], [ -59.941406, -24.046464 ], [ -60.468750, -24.046464 ], [ -60.468750, -23.885838 ], [ -60.996094, -23.885838 ], [ -60.996094, -23.725012 ], [ -61.171875, -23.725012 ], [ -61.171875, -23.563987 ], [ -61.347656, -23.563987 ], [ -61.347656, -23.402765 ], [ -61.523438, -23.402765 ], [ -61.523438, -23.241346 ], [ -61.699219, -23.241346 ], [ -61.699219, -23.079732 ], [ -62.050781, -23.079732 ], [ -62.050781, -22.917923 ], [ -62.226562, -22.917923 ], [ -62.226562, -22.755921 ], [ -62.402344, -22.755921 ], [ -62.402344, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -22.431340 ], [ -62.753906, -22.431340 ], [ -62.753906, -22.105999 ], [ -62.578125, -22.105999 ], [ -62.578125, -21.779905 ], [ -62.402344, -21.779905 ], [ -62.402344, -21.453069 ], [ -62.226562, -21.453069 ], [ -62.226562, -20.468189 ], [ -62.050781, -20.468189 ], [ -62.050781, -20.138470 ], [ -61.875000, -20.138470 ], [ -61.875000, -19.808054 ], [ -61.699219, -19.808054 ], [ -61.699219, -19.642588 ], [ -61.171875, -19.642588 ], [ -61.171875, -19.476950 ], [ -60.468750, -19.476950 ], [ -60.468750, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -22.105999 ], [ -65.039062, -22.105999 ], [ -65.039062, -22.268764 ], [ -64.863281, -22.268764 ], [ -64.863281, -22.431340 ], [ -64.687500, -22.431340 ], [ -64.687500, -22.593726 ], [ -64.511719, -22.593726 ], [ -64.511719, -22.755921 ], [ -64.335938, -22.755921 ], [ -64.335938, -22.593726 ], [ -64.160156, -22.593726 ], [ -64.160156, -22.268764 ], [ -63.984375, -22.268764 ], [ -63.984375, -21.943046 ], [ -63.632812, -21.943046 ], [ -63.632812, -22.105999 ], [ -62.929688, -22.105999 ], [ -62.929688, -22.268764 ], [ -62.753906, -22.268764 ], [ -62.753906, -22.431340 ], [ -62.578125, -22.431340 ], [ -62.578125, -22.593726 ], [ -62.402344, -22.593726 ], [ -62.402344, -22.755921 ], [ -62.226562, -22.755921 ], [ -62.226562, -22.917923 ], [ -62.050781, -22.917923 ], [ -62.050781, -23.079732 ], [ -61.699219, -23.079732 ], [ -61.699219, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.402765 ], [ -61.347656, -23.402765 ], [ -61.347656, -23.563987 ], [ -61.171875, -23.563987 ], [ -61.171875, -23.725012 ], [ -60.996094, -23.725012 ], [ -60.996094, -23.885838 ], [ -60.468750, -23.885838 ], [ -60.468750, -24.046464 ], [ -59.941406, -24.046464 ], [ -59.941406, -24.206890 ], [ -59.765625, -24.206890 ], [ -59.765625, -24.367114 ], [ -59.589844, -24.367114 ], [ -59.589844, -24.527135 ], [ -59.238281, -24.527135 ], [ -59.238281, -24.686952 ], [ -59.062500, -24.686952 ], [ -59.062500, -24.846565 ], [ -58.710938, -24.846565 ], [ -58.710938, -25.005973 ], [ -58.183594, -25.005973 ], [ -58.183594, -25.165173 ], [ -57.832031, -25.165173 ], [ -57.832031, -25.482951 ], [ -57.656250, -25.482951 ], [ -57.656250, -25.799891 ], [ -57.832031, -25.799891 ], [ -57.832031, -26.115986 ], [ -58.007812, -26.115986 ], [ -58.007812, -26.431228 ], [ -58.183594, -26.431228 ], [ -58.183594, -26.745610 ], [ -58.359375, -26.745610 ], [ -58.359375, -27.215556 ], [ -58.007812, -27.215556 ], [ -58.007812, -27.371767 ], [ -57.128906, -27.371767 ], [ -57.128906, -27.527758 ], [ -55.898438, -27.527758 ], [ -55.898438, -27.371767 ], [ -55.546875, -27.371767 ], [ -55.546875, -27.215556 ], [ -55.371094, -27.215556 ], [ -55.371094, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -26.902477 ], [ -55.019531, -26.902477 ], [ -55.019531, -26.745610 ], [ -54.843750, -26.745610 ], [ -54.843750, -26.273714 ], [ -54.667969, -26.273714 ], [ -54.667969, -25.799891 ], [ -54.492188, -25.799891 ], [ -54.492188, -25.641526 ], [ -53.964844, -25.641526 ], [ -53.964844, -25.799891 ], [ -53.789062, -25.799891 ], [ -53.789062, -26.115986 ], [ -53.613281, -26.115986 ], [ -53.613281, -27.059126 ], [ -53.789062, -27.059126 ], [ -53.789062, -27.215556 ], [ -54.140625, -27.215556 ], [ -54.140625, -27.371767 ], [ -54.316406, -27.371767 ], [ -54.316406, -27.527758 ], [ -54.492188, -27.527758 ], [ -54.492188, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -27.839076 ], [ -55.195312, -27.839076 ], [ -55.195312, -27.994401 ], [ -55.371094, -27.994401 ], [ -55.371094, -28.149503 ], [ -55.546875, -28.149503 ], [ -55.546875, -28.304381 ], [ -55.722656, -28.304381 ], [ -55.722656, -28.613459 ], [ -55.898438, -28.613459 ], [ -55.898438, -28.767659 ], [ -56.074219, -28.767659 ], [ -56.074219, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.075375 ], [ -56.425781, -29.075375 ], [ -56.425781, -29.228890 ], [ -56.601562, -29.228890 ], [ -56.601562, -29.382175 ], [ -56.777344, -29.382175 ], [ -56.777344, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -29.688053 ], [ -57.128906, -29.688053 ], [ -57.128906, -29.840644 ], [ -57.304688, -29.840644 ], [ -57.304688, -29.993002 ], [ -57.480469, -29.993002 ], [ -57.480469, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.600094 ], [ -57.832031, -30.600094 ], [ -57.832031, -31.353637 ], [ -58.007812, -31.353637 ], [ -58.007812, -31.952162 ], [ -58.183594, -31.952162 ], [ -58.183594, -33.137551 ], [ -58.359375, -33.137551 ], [ -58.359375, -34.161818 ], [ -58.535156, -34.161818 ], [ -58.535156, -34.597042 ], [ -58.359375, -34.597042 ], [ -58.359375, -34.741612 ], [ -58.183594, -34.741612 ], [ -58.183594, -34.885931 ], [ -57.832031, -34.885931 ], [ -57.832031, -35.029996 ], [ -57.656250, -35.029996 ], [ -57.656250, -35.173808 ], [ -57.480469, -35.173808 ], [ -57.480469, -35.317366 ], [ -57.304688, -35.317366 ], [ -57.304688, -36.173357 ], [ -57.128906, -36.173357 ], [ -57.128906, -36.315125 ], [ -56.953125, -36.315125 ], [ -56.953125, -36.456636 ], [ -56.777344, -36.456636 ], [ -56.777344, -37.020098 ], [ -56.953125, -37.020098 ], [ -56.953125, -37.300275 ], [ -57.128906, -37.300275 ], [ -57.128906, -37.439974 ], [ -57.304688, -37.439974 ], [ -57.304688, -37.718590 ], [ -57.480469, -37.718590 ], [ -57.480469, -37.857507 ], [ -57.656250, -37.857507 ], [ -57.656250, -38.134557 ], [ -57.832031, -38.134557 ], [ -57.832031, -38.272689 ], [ -58.183594, -38.272689 ], [ -58.183594, -38.410558 ], [ -58.535156, -38.410558 ], [ -58.535156, -38.548165 ], [ -58.886719, -38.548165 ], [ -58.886719, -38.685510 ], [ -59.589844, -38.685510 ], [ -59.589844, -38.822591 ], [ -60.644531, -38.822591 ], [ -60.644531, -38.959409 ], [ -61.875000, -38.959409 ], [ -61.875000, -38.822591 ], [ -62.402344, -38.822591 ], [ -62.402344, -38.959409 ], [ -62.226562, -38.959409 ], [ -62.226562, -39.232253 ], [ -62.050781, -39.232253 ], [ -62.050781, -39.639538 ], [ -62.226562, -39.639538 ], [ -62.226562, -40.044438 ], [ -62.402344, -40.044438 ], [ -62.402344, -40.446947 ], [ -62.226562, -40.446947 ], [ -62.226562, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -64.687500, -40.847060 ], [ -64.687500, -40.979898 ], [ -64.863281, -40.979898 ], [ -64.863281, -41.112469 ], [ -65.039062, -41.112469 ], [ -65.039062, -41.640078 ], [ -71.894531, -41.640078 ], [ -71.894531, -40.313043 ], [ -71.718750, -40.313043 ], [ -71.718750, -39.639538 ], [ -71.542969, -39.639538 ], [ -71.542969, -39.232253 ], [ -71.367188, -39.232253 ], [ -71.367188, -38.959409 ], [ -71.191406, -38.959409 ], [ -71.191406, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -38.685510 ], [ -70.839844, -38.685510 ], [ -70.839844, -38.410558 ], [ -71.015625, -38.410558 ], [ -71.015625, -37.857507 ], [ -71.191406, -37.857507 ], [ -71.191406, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -36.456636 ], [ -70.839844, -36.456636 ], [ -70.839844, -36.315125 ], [ -70.488281, -36.315125 ], [ -70.488281, -36.173357 ], [ -70.312500, -36.173357 ], [ -70.312500, -35.029996 ], [ -70.136719, -35.029996 ], [ -70.136719, -34.741612 ], [ -69.960938, -34.741612 ], [ -69.960938, -34.452218 ], [ -69.785156, -34.452218 ], [ -69.785156, -33.284620 ], [ -70.136719, -33.284620 ], [ -70.136719, -32.694866 ], [ -70.312500, -32.694866 ], [ -70.312500, -31.802893 ], [ -70.488281, -31.802893 ], [ -70.488281, -31.203405 ], [ -70.312500, -31.203405 ], [ -70.312500, -30.902225 ], [ -70.136719, -30.902225 ], [ -70.136719, -30.600094 ], [ -69.960938, -30.600094 ], [ -69.960938, -29.228890 ], [ -69.785156, -29.228890 ], [ -69.785156, -28.767659 ], [ -69.609375, -28.767659 ], [ -69.609375, -28.304381 ], [ -69.433594, -28.304381 ], [ -69.433594, -27.994401 ], [ -69.257812, -27.994401 ], [ -69.257812, -27.683528 ], [ -69.082031, -27.683528 ], [ -69.082031, -27.527758 ], [ -68.906250, -27.527758 ], [ -68.906250, -27.371767 ], [ -68.730469, -27.371767 ], [ -68.730469, -27.215556 ], [ -68.554688, -27.215556 ], [ -68.554688, -27.059126 ], [ -68.378906, -27.059126 ], [ -68.378906, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -26.273714 ], [ -68.378906, -26.273714 ], [ -68.378906, -24.527135 ], [ -68.027344, -24.527135 ], [ -68.027344, -24.367114 ], [ -67.675781, -24.367114 ], [ -67.675781, -24.206890 ], [ -67.324219, -24.206890 ], [ -67.324219, -23.885838 ], [ -67.148438, -23.885838 ], [ -67.148438, -23.241346 ], [ -66.972656, -23.241346 ], [ -66.972656, -22.917923 ], [ -67.148438, -22.917923 ], [ -67.148438, -22.755921 ], [ -66.972656, -22.755921 ], [ -66.972656, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -22.268764 ], [ -66.621094, -22.268764 ], [ -66.621094, -22.105999 ], [ -66.445312, -22.105999 ], [ -66.445312, -21.943046 ], [ -66.269531, -21.943046 ], [ -66.269531, -21.779905 ], [ -66.093750, -21.779905 ], [ -66.093750, -21.943046 ], [ -65.390625, -21.943046 ], [ -65.390625, -22.105999 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, -21.779905 ], [ -66.093750, -21.943046 ], [ -65.390625, -21.943046 ], [ -65.390625, -22.105999 ], [ -65.039062, -22.105999 ], [ -65.039062, -22.268764 ], [ -64.863281, -22.268764 ], [ -64.863281, -22.431340 ], [ -64.687500, -22.431340 ], [ -64.687500, -22.593726 ], [ -64.511719, -22.593726 ], [ -64.511719, -22.755921 ], [ -64.335938, -22.755921 ], [ -64.335938, -22.593726 ], [ -64.160156, -22.593726 ], [ -64.160156, -22.268764 ], [ -63.984375, -22.268764 ], [ -63.984375, -21.943046 ], [ -63.632812, -21.943046 ], [ -63.632812, -22.105999 ], [ -62.929688, -22.105999 ], [ -62.929688, -22.268764 ], [ -62.753906, -22.268764 ], [ -62.753906, -22.431340 ], [ -62.578125, -22.431340 ], [ -62.578125, -22.593726 ], [ -62.402344, -22.593726 ], [ -62.402344, -22.755921 ], [ -62.226562, -22.755921 ], [ -62.226562, -22.917923 ], [ -62.050781, -22.917923 ], [ -62.050781, -23.079732 ], [ -61.699219, -23.079732 ], [ -61.699219, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.402765 ], [ -61.347656, -23.402765 ], [ -61.347656, -23.563987 ], [ -61.171875, -23.563987 ], [ -61.171875, -23.725012 ], [ -60.996094, -23.725012 ], [ -60.996094, -23.885838 ], [ -60.468750, -23.885838 ], [ -60.468750, -24.046464 ], [ -59.941406, -24.046464 ], [ -59.941406, -24.206890 ], [ -59.765625, -24.206890 ], [ -59.765625, -24.367114 ], [ -59.589844, -24.367114 ], [ -59.589844, -24.527135 ], [ -59.238281, -24.527135 ], [ -59.238281, -24.686952 ], [ -59.062500, -24.686952 ], [ -59.062500, -24.846565 ], [ -58.710938, -24.846565 ], [ -58.710938, -25.005973 ], [ -58.183594, -25.005973 ], [ -58.183594, -25.165173 ], [ -57.832031, -25.165173 ], [ -57.832031, -25.482951 ], [ -57.656250, -25.482951 ], [ -57.656250, -25.799891 ], [ -57.832031, -25.799891 ], [ -57.832031, -26.115986 ], [ -58.007812, -26.115986 ], [ -58.007812, -26.431228 ], [ -58.183594, -26.431228 ], [ -58.183594, -26.745610 ], [ -58.359375, -26.745610 ], [ -58.359375, -27.215556 ], [ -58.007812, -27.215556 ], [ -58.007812, -27.371767 ], [ -57.128906, -27.371767 ], [ -57.128906, -27.527758 ], [ -55.898438, -27.527758 ], [ -55.898438, -27.371767 ], [ -55.546875, -27.371767 ], [ -55.546875, -27.215556 ], [ -55.371094, -27.215556 ], [ -55.371094, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -26.902477 ], [ -55.019531, -26.902477 ], [ -55.019531, -26.745610 ], [ -54.843750, -26.745610 ], [ -54.843750, -26.273714 ], [ -54.667969, -26.273714 ], [ -54.667969, -25.799891 ], [ -54.492188, -25.799891 ], [ -54.492188, -25.641526 ], [ -53.964844, -25.641526 ], [ -53.964844, -25.799891 ], [ -53.789062, -25.799891 ], [ -53.789062, -26.115986 ], [ -53.613281, -26.115986 ], [ -53.613281, -27.059126 ], [ -53.789062, -27.059126 ], [ -53.789062, -27.215556 ], [ -54.140625, -27.215556 ], [ -54.140625, -27.371767 ], [ -54.316406, -27.371767 ], [ -54.316406, -27.527758 ], [ -54.492188, -27.527758 ], [ -54.492188, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -27.839076 ], [ -55.195312, -27.839076 ], [ -55.195312, -27.994401 ], [ -55.371094, -27.994401 ], [ -55.371094, -28.149503 ], [ -55.546875, -28.149503 ], [ -55.546875, -28.304381 ], [ -55.722656, -28.304381 ], [ -55.722656, -28.613459 ], [ -55.898438, -28.613459 ], [ -55.898438, -28.767659 ], [ -56.074219, -28.767659 ], [ -56.074219, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.075375 ], [ -56.425781, -29.075375 ], [ -56.425781, -29.228890 ], [ -56.601562, -29.228890 ], [ -56.601562, -29.382175 ], [ -56.777344, -29.382175 ], [ -56.777344, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -29.688053 ], [ -57.128906, -29.688053 ], [ -57.128906, -29.840644 ], [ -57.304688, -29.840644 ], [ -57.304688, -29.993002 ], [ -57.480469, -29.993002 ], [ -57.480469, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.600094 ], [ -57.832031, -30.600094 ], [ -57.832031, -31.353637 ], [ -58.007812, -31.353637 ], [ -58.007812, -31.952162 ], [ -58.183594, -31.952162 ], [ -58.183594, -33.137551 ], [ -58.359375, -33.137551 ], [ -58.359375, -34.161818 ], [ -58.535156, -34.161818 ], [ -58.535156, -34.597042 ], [ -58.359375, -34.597042 ], [ -58.359375, -34.741612 ], [ -58.183594, -34.741612 ], [ -58.183594, -34.885931 ], [ -57.832031, -34.885931 ], [ -57.832031, -35.029996 ], [ -57.656250, -35.029996 ], [ -57.656250, -35.173808 ], [ -57.480469, -35.173808 ], [ -57.480469, -35.317366 ], [ -57.304688, -35.317366 ], [ -57.304688, -36.173357 ], [ -57.128906, -36.173357 ], [ -57.128906, -36.315125 ], [ -56.953125, -36.315125 ], [ -56.953125, -36.456636 ], [ -56.777344, -36.456636 ], [ -56.777344, -37.020098 ], [ -56.953125, -37.020098 ], [ -56.953125, -37.300275 ], [ -57.128906, -37.300275 ], [ -57.128906, -37.439974 ], [ -57.304688, -37.439974 ], [ -57.304688, -37.718590 ], [ -57.480469, -37.718590 ], [ -57.480469, -37.857507 ], [ -57.656250, -37.857507 ], [ -57.656250, -38.134557 ], [ -57.832031, -38.134557 ], [ -57.832031, -38.272689 ], [ -58.183594, -38.272689 ], [ -58.183594, -38.410558 ], [ -58.535156, -38.410558 ], [ -58.535156, -38.548165 ], [ -58.886719, -38.548165 ], [ -58.886719, -38.685510 ], [ -59.589844, -38.685510 ], [ -59.589844, -38.822591 ], [ -60.644531, -38.822591 ], [ -60.644531, -38.959409 ], [ -61.875000, -38.959409 ], [ -61.875000, -38.822591 ], [ -62.402344, -38.822591 ], [ -62.402344, -38.959409 ], [ -62.226562, -38.959409 ], [ -62.226562, -39.232253 ], [ -62.050781, -39.232253 ], [ -62.050781, -39.639538 ], [ -62.226562, -39.639538 ], [ -62.226562, -40.044438 ], [ -62.402344, -40.044438 ], [ -62.402344, -40.446947 ], [ -62.226562, -40.446947 ], [ -62.226562, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -64.687500, -40.847060 ], [ -64.687500, -40.979898 ], [ -64.863281, -40.979898 ], [ -64.863281, -41.112469 ], [ -65.039062, -41.112469 ], [ -65.039062, -41.640078 ], [ -71.894531, -41.640078 ], [ -71.894531, -40.313043 ], [ -71.718750, -40.313043 ], [ -71.718750, -39.639538 ], [ -71.542969, -39.639538 ], [ -71.542969, -39.232253 ], [ -71.367188, -39.232253 ], [ -71.367188, -38.959409 ], [ -71.191406, -38.959409 ], [ -71.191406, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -38.685510 ], [ -70.839844, -38.685510 ], [ -70.839844, -38.410558 ], [ -71.015625, -38.410558 ], [ -71.015625, -37.857507 ], [ -71.191406, -37.857507 ], [ -71.191406, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -36.456636 ], [ -70.839844, -36.456636 ], [ -70.839844, -36.315125 ], [ -70.488281, -36.315125 ], [ -70.488281, -36.173357 ], [ -70.312500, -36.173357 ], [ -70.312500, -35.029996 ], [ -70.136719, -35.029996 ], [ -70.136719, -34.741612 ], [ -69.960938, -34.741612 ], [ -69.960938, -34.452218 ], [ -69.785156, -34.452218 ], [ -69.785156, -33.284620 ], [ -70.136719, -33.284620 ], [ -70.136719, -32.694866 ], [ -70.312500, -32.694866 ], [ -70.312500, -31.802893 ], [ -70.488281, -31.802893 ], [ -70.488281, -31.203405 ], [ -70.312500, -31.203405 ], [ -70.312500, -30.902225 ], [ -70.136719, -30.902225 ], [ -70.136719, -30.600094 ], [ -69.960938, -30.600094 ], [ -69.960938, -29.228890 ], [ -69.785156, -29.228890 ], [ -69.785156, -28.767659 ], [ -69.609375, -28.767659 ], [ -69.609375, -28.304381 ], [ -69.433594, -28.304381 ], [ -69.433594, -27.994401 ], [ -69.257812, -27.994401 ], [ -69.257812, -27.683528 ], [ -69.082031, -27.683528 ], [ -69.082031, -27.527758 ], [ -68.906250, -27.527758 ], [ -68.906250, -27.371767 ], [ -68.730469, -27.371767 ], [ -68.730469, -27.215556 ], [ -68.554688, -27.215556 ], [ -68.554688, -27.059126 ], [ -68.378906, -27.059126 ], [ -68.378906, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -26.273714 ], [ -68.378906, -26.273714 ], [ -68.378906, -24.527135 ], [ -68.027344, -24.527135 ], [ -68.027344, -24.367114 ], [ -67.675781, -24.367114 ], [ -67.675781, -24.206890 ], [ -67.324219, -24.206890 ], [ -67.324219, -23.885838 ], [ -67.148438, -23.885838 ], [ -67.148438, -23.241346 ], [ -66.972656, -23.241346 ], [ -66.972656, -22.917923 ], [ -67.148438, -22.917923 ], [ -67.148438, -22.755921 ], [ -66.972656, -22.755921 ], [ -66.972656, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -22.268764 ], [ -66.621094, -22.268764 ], [ -66.621094, -22.105999 ], [ -66.445312, -22.105999 ], [ -66.445312, -21.943046 ], [ -66.269531, -21.943046 ], [ -66.269531, -21.779905 ], [ -66.093750, -21.779905 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, -30.751278 ], [ -56.074219, -30.751278 ], [ -56.074219, -30.902225 ], [ -55.546875, -30.902225 ], [ -55.546875, -31.052934 ], [ -55.195312, -31.052934 ], [ -55.195312, -31.203405 ], [ -55.019531, -31.203405 ], [ -55.019531, -31.353637 ], [ -54.667969, -31.353637 ], [ -54.667969, -31.503629 ], [ -54.492188, -31.503629 ], [ -54.492188, -31.653381 ], [ -54.316406, -31.653381 ], [ -54.316406, -31.802893 ], [ -54.140625, -31.802893 ], [ -54.140625, -31.952162 ], [ -53.964844, -31.952162 ], [ -53.964844, -32.101190 ], [ -53.789062, -32.101190 ], [ -53.789062, -32.249974 ], [ -53.613281, -32.249974 ], [ -53.613281, -32.398516 ], [ -53.437500, -32.398516 ], [ -53.437500, -32.694866 ], [ -53.261719, -32.694866 ], [ -53.261719, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -33.137551 ], [ -53.613281, -33.137551 ], [ -53.613281, -33.431441 ], [ -53.437500, -33.431441 ], [ -53.437500, -34.016242 ], [ -53.613281, -34.016242 ], [ -53.613281, -34.307144 ], [ -53.789062, -34.307144 ], [ -53.789062, -34.452218 ], [ -53.964844, -34.452218 ], [ -53.964844, -34.597042 ], [ -54.316406, -34.597042 ], [ -54.316406, -34.741612 ], [ -54.667969, -34.741612 ], [ -54.667969, -34.885931 ], [ -55.546875, -34.885931 ], [ -55.546875, -34.741612 ], [ -55.898438, -34.741612 ], [ -55.898438, -34.885931 ], [ -56.425781, -34.885931 ], [ -56.425781, -34.741612 ], [ -56.777344, -34.741612 ], [ -56.777344, -34.597042 ], [ -57.128906, -34.597042 ], [ -57.128906, -34.452218 ], [ -58.007812, -34.452218 ], [ -58.007812, -34.161818 ], [ -58.183594, -34.161818 ], [ -58.183594, -34.016242 ], [ -58.359375, -34.016242 ], [ -58.359375, -33.137551 ], [ -58.183594, -33.137551 ], [ -58.183594, -31.952162 ], [ -58.007812, -31.952162 ], [ -58.007812, -31.353637 ], [ -57.832031, -31.353637 ], [ -57.832031, -30.600094 ], [ -57.656250, -30.600094 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ], [ -56.953125, -30.297018 ], [ -56.777344, -30.297018 ], [ -56.777344, -30.448674 ], [ -56.601562, -30.448674 ], [ -56.601562, -30.600094 ], [ -56.250000, -30.600094 ], [ -56.250000, -30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.297018 ], [ -56.777344, -30.297018 ], [ -56.777344, -30.448674 ], [ -56.601562, -30.448674 ], [ -56.601562, -30.600094 ], [ -56.250000, -30.600094 ], [ -56.250000, -30.751278 ], [ -56.074219, -30.751278 ], [ -56.074219, -30.902225 ], [ -55.546875, -30.902225 ], [ -55.546875, -31.052934 ], [ -55.195312, -31.052934 ], [ -55.195312, -31.203405 ], [ -55.019531, -31.203405 ], [ -55.019531, -31.353637 ], [ -54.667969, -31.353637 ], [ -54.667969, -31.503629 ], [ -54.492188, -31.503629 ], [ -54.492188, -31.653381 ], [ -54.316406, -31.653381 ], [ -54.316406, -31.802893 ], [ -54.140625, -31.802893 ], [ -54.140625, -31.952162 ], [ -53.964844, -31.952162 ], [ -53.964844, -32.101190 ], [ -53.789062, -32.101190 ], [ -53.789062, -32.249974 ], [ -53.613281, -32.249974 ], [ -53.613281, -32.398516 ], [ -53.437500, -32.398516 ], [ -53.437500, -32.694866 ], [ -53.261719, -32.694866 ], [ -53.261719, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -33.137551 ], [ -53.613281, -33.137551 ], [ -53.613281, -33.431441 ], [ -53.437500, -33.431441 ], [ -53.437500, -34.016242 ], [ -53.613281, -34.016242 ], [ -53.613281, -34.307144 ], [ -53.789062, -34.307144 ], [ -53.789062, -34.452218 ], [ -53.964844, -34.452218 ], [ -53.964844, -34.597042 ], [ -54.316406, -34.597042 ], [ -54.316406, -34.741612 ], [ -54.667969, -34.741612 ], [ -54.667969, -34.885931 ], [ -55.546875, -34.885931 ], [ -55.546875, -34.741612 ], [ -55.898438, -34.741612 ], [ -55.898438, -34.885931 ], [ -56.425781, -34.885931 ], [ -56.425781, -34.741612 ], [ -56.777344, -34.741612 ], [ -56.777344, -34.597042 ], [ -57.128906, -34.597042 ], [ -57.128906, -34.452218 ], [ -58.007812, -34.452218 ], [ -58.007812, -34.161818 ], [ -58.183594, -34.161818 ], [ -58.183594, -34.016242 ], [ -58.359375, -34.016242 ], [ -58.359375, -33.137551 ], [ -58.183594, -33.137551 ], [ -58.183594, -31.952162 ], [ -58.007812, -31.952162 ], [ -58.007812, -31.353637 ], [ -57.832031, -31.353637 ], [ -57.832031, -30.600094 ], [ -57.656250, -30.600094 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.816406, 37.996163 ], [ -76.464844, 37.996163 ], [ -76.464844, 37.857507 ], [ -76.289062, 37.857507 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.761719, 36.031332 ], [ -75.761719, 35.460670 ], [ -75.937500, 35.460670 ], [ -75.937500, 35.173808 ], [ -76.113281, 35.173808 ], [ -76.113281, 34.885931 ], [ -76.289062, 34.885931 ], [ -76.289062, 34.741612 ], [ -76.464844, 34.741612 ], [ -76.464844, 34.597042 ], [ -76.992188, 34.597042 ], [ -76.992188, 34.452218 ], [ -77.343750, 34.452218 ], [ -77.343750, 34.307144 ], [ -77.519531, 34.307144 ], [ -77.519531, 34.161818 ], [ -77.695312, 34.161818 ], [ -77.695312, 34.016242 ], [ -77.871094, 34.016242 ], [ -77.871094, 33.870416 ], [ -78.574219, 33.870416 ], [ -78.574219, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.578015 ], [ -78.925781, 33.578015 ], [ -78.925781, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 33.284620 ], [ -79.277344, 33.284620 ], [ -79.277344, 32.990236 ], [ -79.628906, 32.990236 ], [ -79.628906, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.694866 ], [ -80.156250, 32.694866 ], [ -80.156250, 32.546813 ], [ -80.332031, 32.546813 ], [ -80.332031, 32.398516 ], [ -80.507812, 32.398516 ], [ -80.507812, 32.249974 ], [ -80.683594, 32.249974 ], [ -80.683594, 32.101190 ], [ -80.859375, 32.101190 ], [ -80.859375, 31.952162 ], [ -81.035156, 31.952162 ], [ -81.035156, 31.802893 ], [ -81.210938, 31.802893 ], [ -81.210938, 31.503629 ], [ -81.386719, 31.503629 ], [ -81.386719, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.297018 ], [ -81.386719, 30.297018 ], [ -81.386719, 29.688053 ], [ -81.210938, 29.688053 ], [ -81.210938, 29.382175 ], [ -81.035156, 29.382175 ], [ -81.035156, 29.075375 ], [ -80.859375, 29.075375 ], [ -80.859375, 28.767659 ], [ -80.683594, 28.767659 ], [ -80.683594, 28.459033 ], [ -80.507812, 28.459033 ], [ -80.507812, 27.683528 ], [ -80.332031, 27.683528 ], [ -80.332031, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 27.059126 ], [ -79.980469, 27.059126 ], [ -79.980469, 26.588527 ], [ -80.156250, 26.588527 ], [ -80.156250, 25.482951 ], [ -80.332031, 25.482951 ], [ -80.332031, 25.005973 ], [ -81.035156, 25.005973 ], [ -81.035156, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.324167 ], [ -81.386719, 25.324167 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.641526 ], [ -81.738281, 25.958045 ], [ -81.914062, 25.958045 ], [ -81.914062, 26.273714 ], [ -82.089844, 26.273714 ], [ -82.089844, 26.588527 ], [ -82.265625, 26.588527 ], [ -82.265625, 26.745610 ], [ -82.441406, 26.745610 ], [ -82.441406, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.371767 ], [ -82.792969, 27.371767 ], [ -82.792969, 28.149503 ], [ -82.617188, 28.149503 ], [ -82.617188, 28.613459 ], [ -82.792969, 28.613459 ], [ -82.792969, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.075375 ], [ -83.144531, 29.075375 ], [ -83.144531, 29.382175 ], [ -83.320312, 29.382175 ], [ -83.320312, 29.535230 ], [ -83.496094, 29.535230 ], [ -83.496094, 29.840644 ], [ -83.671875, 29.840644 ], [ -83.671875, 29.993002 ], [ -84.375000, 29.993002 ], [ -84.375000, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.688053 ], [ -85.429688, 29.688053 ], [ -85.429688, 29.840644 ], [ -85.605469, 29.840644 ], [ -85.605469, 29.993002 ], [ -85.781250, 29.993002 ], [ -85.781250, 30.145127 ], [ -86.132812, 30.145127 ], [ -86.132812, 30.297018 ], [ -86.484375, 30.297018 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.297018 ], [ -88.066406, 30.297018 ], [ -88.066406, 30.448674 ], [ -88.593750, 30.448674 ], [ -88.593750, 30.297018 ], [ -89.296875, 30.297018 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.993002 ], [ -89.472656, 29.993002 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.000000, 29.228890 ], [ -90.000000, 29.075375 ], [ -90.878906, 29.075375 ], [ -90.878906, 41.640078 ], [ -70.136719, 41.640078 ], [ -70.136719, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -71.894531, 41.376809 ], [ -71.894531, 41.244772 ], [ -72.949219, 41.244772 ], [ -72.949219, 41.112469 ], [ -73.300781, 41.112469 ], [ -73.300781, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.112469 ], [ -72.246094, 41.112469 ], [ -72.246094, 40.979898 ], [ -72.070312, 40.979898 ], [ -72.070312, 40.847060 ], [ -72.421875, 40.847060 ], [ -72.421875, 40.713956 ], [ -72.949219, 40.713956 ], [ -72.949219, 40.580585 ], [ -74.179688, 40.580585 ], [ -74.179688, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.044438 ], [ -74.179688, 40.044438 ], [ -74.179688, 39.639538 ], [ -74.355469, 39.639538 ], [ -74.355469, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 39.232253 ], [ -74.707031, 39.232253 ], [ -74.707031, 38.959409 ], [ -74.882812, 38.959409 ], [ -74.882812, 39.095963 ], [ -75.058594, 39.095963 ], [ -75.058594, 39.232253 ], [ -75.410156, 39.232253 ], [ -75.410156, 39.095963 ], [ -75.234375, 39.095963 ], [ -75.234375, 38.822591 ], [ -75.058594, 38.822591 ], [ -75.058594, 38.272689 ], [ -75.234375, 38.272689 ], [ -75.234375, 37.996163 ], [ -75.410156, 37.996163 ], [ -75.410156, 37.857507 ], [ -75.585938, 37.857507 ], [ -75.585938, 37.579413 ], [ -75.761719, 37.579413 ], [ -75.761719, 37.300275 ], [ -75.937500, 37.300275 ], [ -75.937500, 37.160317 ], [ -76.113281, 37.160317 ], [ -76.113281, 37.439974 ], [ -75.937500, 37.439974 ], [ -75.937500, 37.718590 ], [ -75.761719, 37.718590 ], [ -75.761719, 37.996163 ], [ -75.937500, 37.996163 ], [ -75.937500, 38.134557 ], [ -76.816406, 38.134557 ], [ -76.816406, 37.996163 ] ], [ [ -76.816406, 38.272689 ], [ -76.992188, 38.272689 ], [ -76.992188, 38.134557 ], [ -76.816406, 38.134557 ], [ -76.816406, 38.272689 ] ], [ [ -76.289062, 38.822591 ], [ -76.464844, 38.822591 ], [ -76.464844, 38.410558 ], [ -76.289062, 38.410558 ], [ -76.289062, 38.822591 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.816406, 38.134557 ], [ -76.816406, 37.996163 ], [ -76.464844, 37.996163 ], [ -76.464844, 37.857507 ], [ -76.289062, 37.857507 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.761719, 36.031332 ], [ -75.761719, 35.460670 ], [ -75.937500, 35.460670 ], [ -75.937500, 35.173808 ], [ -76.113281, 35.173808 ], [ -76.113281, 34.885931 ], [ -76.289062, 34.885931 ], [ -76.289062, 34.741612 ], [ -76.464844, 34.741612 ], [ -76.464844, 34.597042 ], [ -76.992188, 34.597042 ], [ -76.992188, 34.452218 ], [ -77.343750, 34.452218 ], [ -77.343750, 34.307144 ], [ -77.519531, 34.307144 ], [ -77.519531, 34.161818 ], [ -77.695312, 34.161818 ], [ -77.695312, 34.016242 ], [ -77.871094, 34.016242 ], [ -77.871094, 33.870416 ], [ -78.574219, 33.870416 ], [ -78.574219, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.578015 ], [ -78.925781, 33.578015 ], [ -78.925781, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 33.284620 ], [ -79.277344, 33.284620 ], [ -79.277344, 32.990236 ], [ -79.628906, 32.990236 ], [ -79.628906, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.694866 ], [ -80.156250, 32.694866 ], [ -80.156250, 32.546813 ], [ -80.332031, 32.546813 ], [ -80.332031, 32.398516 ], [ -80.507812, 32.398516 ], [ -80.507812, 32.249974 ], [ -80.683594, 32.249974 ], [ -80.683594, 32.101190 ], [ -80.859375, 32.101190 ], [ -80.859375, 31.952162 ], [ -81.035156, 31.952162 ], [ -81.035156, 31.802893 ], [ -81.210938, 31.802893 ], [ -81.210938, 31.503629 ], [ -81.386719, 31.503629 ], [ -81.386719, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.297018 ], [ -81.386719, 30.297018 ], [ -81.386719, 29.688053 ], [ -81.210938, 29.688053 ], [ -81.210938, 29.382175 ], [ -81.035156, 29.382175 ], [ -81.035156, 29.075375 ], [ -80.859375, 29.075375 ], [ -80.859375, 28.767659 ], [ -80.683594, 28.767659 ], [ -80.683594, 28.459033 ], [ -80.507812, 28.459033 ], [ -80.507812, 27.683528 ], [ -80.332031, 27.683528 ], [ -80.332031, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 27.059126 ], [ -79.980469, 27.059126 ], [ -79.980469, 26.588527 ], [ -80.156250, 26.588527 ], [ -80.156250, 25.482951 ], [ -80.332031, 25.482951 ], [ -80.332031, 25.005973 ], [ -81.035156, 25.005973 ], [ -81.035156, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.324167 ], [ -81.386719, 25.324167 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.641526 ], [ -81.738281, 25.958045 ], [ -81.914062, 25.958045 ], [ -81.914062, 26.273714 ], [ -82.089844, 26.273714 ], [ -82.089844, 26.588527 ], [ -82.265625, 26.588527 ], [ -82.265625, 26.745610 ], [ -82.441406, 26.745610 ], [ -82.441406, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.371767 ], [ -82.792969, 27.371767 ], [ -82.792969, 28.149503 ], [ -82.617188, 28.149503 ], [ -82.617188, 28.613459 ], [ -82.792969, 28.613459 ], [ -82.792969, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.075375 ], [ -83.144531, 29.075375 ], [ -83.144531, 29.382175 ], [ -83.320312, 29.382175 ], [ -83.320312, 29.535230 ], [ -83.496094, 29.535230 ], [ -83.496094, 29.840644 ], [ -83.671875, 29.840644 ], [ -83.671875, 29.993002 ], [ -84.375000, 29.993002 ], [ -84.375000, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.688053 ], [ -85.429688, 29.688053 ], [ -85.429688, 29.840644 ], [ -85.605469, 29.840644 ], [ -85.605469, 29.993002 ], [ -85.781250, 29.993002 ], [ -85.781250, 30.145127 ], [ -86.132812, 30.145127 ], [ -86.132812, 30.297018 ], [ -86.484375, 30.297018 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.297018 ], [ -88.066406, 30.297018 ], [ -88.066406, 30.448674 ], [ -88.593750, 30.448674 ], [ -88.593750, 30.297018 ], [ -89.296875, 30.297018 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.993002 ], [ -89.472656, 29.993002 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.000000, 29.228890 ], [ -90.000000, 29.075375 ], [ -90.878906, 29.075375 ], [ -90.878906, 41.640078 ], [ -70.136719, 41.640078 ], [ -70.136719, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -71.894531, 41.376809 ], [ -71.894531, 41.244772 ], [ -72.949219, 41.244772 ], [ -72.949219, 41.112469 ], [ -73.300781, 41.112469 ], [ -73.300781, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.112469 ], [ -72.246094, 41.112469 ], [ -72.246094, 40.979898 ], [ -72.070312, 40.979898 ], [ -72.070312, 40.847060 ], [ -72.421875, 40.847060 ], [ -72.421875, 40.713956 ], [ -72.949219, 40.713956 ], [ -72.949219, 40.580585 ], [ -74.179688, 40.580585 ], [ -74.179688, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.044438 ], [ -74.179688, 40.044438 ], [ -74.179688, 39.639538 ], [ -74.355469, 39.639538 ], [ -74.355469, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 39.232253 ], [ -74.707031, 39.232253 ], [ -74.707031, 38.959409 ], [ -74.882812, 38.959409 ], [ -74.882812, 39.095963 ], [ -75.058594, 39.095963 ], [ -75.058594, 39.232253 ], [ -75.410156, 39.232253 ], [ -75.410156, 39.095963 ], [ -75.234375, 39.095963 ], [ -75.234375, 38.822591 ], [ -75.058594, 38.822591 ], [ -75.058594, 38.272689 ], [ -75.234375, 38.272689 ], [ -75.234375, 37.996163 ], [ -75.410156, 37.996163 ], [ -75.410156, 37.857507 ], [ -75.585938, 37.857507 ], [ -75.585938, 37.579413 ], [ -75.761719, 37.579413 ], [ -75.761719, 37.300275 ], [ -75.937500, 37.300275 ], [ -75.937500, 37.160317 ], [ -76.113281, 37.160317 ], [ -76.113281, 37.439974 ], [ -75.937500, 37.439974 ], [ -75.937500, 37.718590 ], [ -75.761719, 37.718590 ], [ -75.761719, 37.996163 ], [ -75.937500, 37.996163 ], [ -75.937500, 38.134557 ], [ -76.816406, 38.134557 ] ], [ [ -76.464844, 38.822591 ], [ -76.464844, 38.410558 ], [ -76.289062, 38.410558 ], [ -76.289062, 38.822591 ], [ -76.464844, 38.822591 ] ], [ [ -76.816406, 38.134557 ], [ -76.816406, 38.272689 ], [ -76.992188, 38.272689 ], [ -76.992188, 38.134557 ], [ -76.816406, 38.134557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.835938, 20.632784 ], [ -87.011719, 20.632784 ], [ -87.011719, 20.468189 ], [ -87.187500, 20.468189 ], [ -87.187500, 20.303418 ], [ -87.363281, 20.303418 ], [ -87.363281, 19.973349 ], [ -87.539062, 19.973349 ], [ -87.539062, 19.476950 ], [ -87.363281, 19.476950 ], [ -87.363281, 19.145168 ], [ -87.539062, 19.145168 ], [ -87.539062, 18.812718 ], [ -87.714844, 18.812718 ], [ -87.714844, 18.479609 ], [ -87.890625, 18.479609 ], [ -87.890625, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 18.479609 ], [ -88.417969, 18.479609 ], [ -88.417969, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 17.978733 ], [ -88.769531, 17.978733 ], [ -88.769531, 17.811456 ], [ -88.945312, 17.811456 ], [ -88.945312, 17.978733 ], [ -89.121094, 17.978733 ], [ -89.121094, 17.811456 ], [ -90.878906, 17.811456 ], [ -90.878906, 19.145168 ], [ -90.703125, 19.145168 ], [ -90.703125, 19.476950 ], [ -90.527344, 19.476950 ], [ -90.527344, 20.797201 ], [ -90.351562, 20.797201 ], [ -90.351562, 20.961440 ], [ -90.000000, 20.961440 ], [ -90.000000, 21.125498 ], [ -89.648438, 21.125498 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.453069 ], [ -87.187500, 21.453069 ], [ -87.187500, 21.616579 ], [ -87.011719, 21.616579 ], [ -87.011719, 21.453069 ], [ -86.835938, 21.453069 ], [ -86.835938, 20.632784 ] ] ], [ [ [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.527344, 16.467695 ], [ -90.527344, 16.130262 ], [ -90.878906, 16.130262 ], [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.527344, 16.467695 ], [ -90.527344, 16.130262 ], [ -90.878906, 16.130262 ], [ -90.878906, 16.636192 ] ] ], [ [ [ -87.011719, 21.453069 ], [ -86.835938, 21.453069 ], [ -86.835938, 20.632784 ], [ -87.011719, 20.632784 ], [ -87.011719, 20.468189 ], [ -87.187500, 20.468189 ], [ -87.187500, 20.303418 ], [ -87.363281, 20.303418 ], [ -87.363281, 19.973349 ], [ -87.539062, 19.973349 ], [ -87.539062, 19.476950 ], [ -87.363281, 19.476950 ], [ -87.363281, 19.145168 ], [ -87.539062, 19.145168 ], [ -87.539062, 18.812718 ], [ -87.714844, 18.812718 ], [ -87.714844, 18.479609 ], [ -87.890625, 18.479609 ], [ -87.890625, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 18.479609 ], [ -88.417969, 18.479609 ], [ -88.417969, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 17.978733 ], [ -88.769531, 17.978733 ], [ -88.769531, 17.811456 ], [ -88.945312, 17.811456 ], [ -88.945312, 17.978733 ], [ -89.121094, 17.978733 ], [ -89.121094, 17.811456 ], [ -90.878906, 17.811456 ], [ -90.878906, 19.145168 ], [ -90.703125, 19.145168 ], [ -90.703125, 19.476950 ], [ -90.527344, 19.476950 ], [ -90.527344, 20.797201 ], [ -90.351562, 20.797201 ], [ -90.351562, 20.961440 ], [ -90.000000, 20.961440 ], [ -90.000000, 21.125498 ], [ -89.648438, 21.125498 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.453069 ], [ -87.187500, 21.453069 ], [ -87.187500, 21.616579 ], [ -87.011719, 21.616579 ], [ -87.011719, 21.453069 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 16.467695 ], [ -89.296875, 16.467695 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.792254 ], [ -88.769531, 15.792254 ], [ -88.769531, 15.623037 ], [ -88.593750, 15.623037 ], [ -88.593750, 15.792254 ], [ -88.242188, 15.792254 ], [ -88.242188, 15.623037 ], [ -88.417969, 15.623037 ], [ -88.417969, 15.284185 ], [ -88.769531, 15.284185 ], [ -88.769531, 15.114553 ], [ -89.121094, 15.114553 ], [ -89.121094, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.774883 ], [ -89.121094, 14.774883 ], [ -89.121094, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.472656, 14.264383 ], [ -89.472656, 14.093957 ], [ -89.648438, 14.093957 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 17.811456 ], [ -89.121094, 17.811456 ], [ -89.121094, 16.467695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.811456 ], [ -89.121094, 16.467695 ], [ -89.296875, 16.467695 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.792254 ], [ -88.769531, 15.792254 ], [ -88.769531, 15.623037 ], [ -88.593750, 15.623037 ], [ -88.593750, 15.792254 ], [ -88.242188, 15.792254 ], [ -88.242188, 15.623037 ], [ -88.417969, 15.623037 ], [ -88.417969, 15.284185 ], [ -88.769531, 15.284185 ], [ -88.769531, 15.114553 ], [ -89.121094, 15.114553 ], [ -89.121094, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.774883 ], [ -89.121094, 14.774883 ], [ -89.121094, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.472656, 14.264383 ], [ -89.472656, 14.093957 ], [ -89.648438, 14.093957 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 17.811456 ], [ -89.121094, 17.811456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.695312, 24.527135 ], [ -77.519531, 24.527135 ], [ -77.519531, 23.725012 ], [ -77.871094, 23.725012 ], [ -77.871094, 24.046464 ], [ -78.046875, 24.046464 ], [ -78.046875, 24.206890 ], [ -78.222656, 24.206890 ], [ -78.222656, 24.367114 ], [ -78.398438, 24.367114 ], [ -78.398438, 24.846565 ], [ -78.222656, 24.846565 ], [ -78.222656, 25.165173 ], [ -77.871094, 25.165173 ], [ -77.871094, 24.846565 ], [ -77.695312, 24.846565 ], [ -77.695312, 24.527135 ] ] ], [ [ [ -77.519531, 26.745610 ], [ -77.871094, 26.745610 ], [ -77.871094, 26.588527 ], [ -78.222656, 26.588527 ], [ -78.222656, 26.431228 ], [ -78.925781, 26.431228 ], [ -78.925781, 26.745610 ], [ -78.574219, 26.745610 ], [ -78.574219, 26.902477 ], [ -77.519531, 26.902477 ], [ -77.519531, 26.745610 ] ] ], [ [ [ -77.167969, 26.745610 ], [ -77.167969, 26.588527 ], [ -76.992188, 26.588527 ], [ -76.992188, 26.273714 ], [ -77.167969, 26.273714 ], [ -77.167969, 25.958045 ], [ -77.343750, 25.958045 ], [ -77.343750, 26.588527 ], [ -77.519531, 26.588527 ], [ -77.519531, 26.745610 ], [ -77.167969, 26.745610 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.871094, 25.165173 ], [ -77.871094, 24.846565 ], [ -77.695312, 24.846565 ], [ -77.695312, 24.527135 ], [ -77.519531, 24.527135 ], [ -77.519531, 23.725012 ], [ -77.871094, 23.725012 ], [ -77.871094, 24.046464 ], [ -78.046875, 24.046464 ], [ -78.046875, 24.206890 ], [ -78.222656, 24.206890 ], [ -78.222656, 24.367114 ], [ -78.398438, 24.367114 ], [ -78.398438, 24.846565 ], [ -78.222656, 24.846565 ], [ -78.222656, 25.165173 ], [ -77.871094, 25.165173 ] ] ], [ [ [ -77.519531, 26.902477 ], [ -77.519531, 26.745610 ], [ -77.871094, 26.745610 ], [ -77.871094, 26.588527 ], [ -78.222656, 26.588527 ], [ -78.222656, 26.431228 ], [ -78.925781, 26.431228 ], [ -78.925781, 26.745610 ], [ -78.574219, 26.745610 ], [ -78.574219, 26.902477 ], [ -77.519531, 26.902477 ] ] ], [ [ [ -77.519531, 26.745610 ], [ -77.167969, 26.745610 ], [ -77.167969, 26.588527 ], [ -76.992188, 26.588527 ], [ -76.992188, 26.273714 ], [ -77.167969, 26.273714 ], [ -77.167969, 25.958045 ], [ -77.343750, 25.958045 ], [ -77.343750, 26.588527 ], [ -77.519531, 26.588527 ], [ -77.519531, 26.745610 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.066406, 17.811456 ], [ -88.242188, 17.811456 ], [ -88.242188, 16.636192 ], [ -88.417969, 16.636192 ], [ -88.417969, 16.299051 ], [ -88.769531, 16.299051 ], [ -88.769531, 16.130262 ], [ -88.945312, 16.130262 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 16.467695 ], [ -89.121094, 16.467695 ], [ -89.121094, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 17.811456 ], [ -88.769531, 17.811456 ], [ -88.769531, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 18.312811 ], [ -88.417969, 18.312811 ], [ -88.417969, 18.479609 ], [ -88.242188, 18.479609 ], [ -88.242188, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.479609 ], [ -88.242188, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 17.811456 ], [ -88.242188, 17.811456 ], [ -88.242188, 16.636192 ], [ -88.417969, 16.636192 ], [ -88.417969, 16.299051 ], [ -88.769531, 16.299051 ], [ -88.769531, 16.130262 ], [ -88.945312, 16.130262 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 16.467695 ], [ -89.121094, 16.467695 ], [ -89.121094, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 17.811456 ], [ -88.769531, 17.811456 ], [ -88.769531, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 18.312811 ], [ -88.417969, 18.312811 ], [ -88.417969, 18.479609 ], [ -88.242188, 18.479609 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.769531, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.752725 ], [ -87.714844, 13.752725 ], [ -87.714844, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.068777 ], [ -88.242188, 13.068777 ], [ -88.242188, 13.239945 ], [ -89.121094, 13.239945 ], [ -89.121094, 13.410994 ], [ -89.648438, 13.410994 ], [ -89.648438, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.000000, 13.752725 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.093957 ], [ -89.472656, 14.093957 ], [ -89.472656, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.296875, 14.434680 ], [ -89.296875, 14.264383 ], [ -89.121094, 14.264383 ], [ -89.121094, 14.093957 ], [ -88.769531, 14.093957 ], [ -88.769531, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 14.434680 ], [ -89.296875, 14.264383 ], [ -89.121094, 14.264383 ], [ -89.121094, 14.093957 ], [ -88.769531, 14.093957 ], [ -88.769531, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.752725 ], [ -87.714844, 13.752725 ], [ -87.714844, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.068777 ], [ -88.242188, 13.068777 ], [ -88.242188, 13.239945 ], [ -89.121094, 13.239945 ], [ -89.121094, 13.410994 ], [ -89.648438, 13.410994 ], [ -89.648438, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.000000, 13.752725 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.093957 ], [ -89.472656, 14.093957 ], [ -89.472656, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.296875, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.453680 ], [ -83.847656, 15.453680 ], [ -83.847656, 15.284185 ], [ -83.496094, 15.284185 ], [ -83.496094, 15.114553 ], [ -83.320312, 15.114553 ], [ -83.320312, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.774883 ], [ -84.199219, 14.774883 ], [ -84.199219, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 14.264383 ], [ -85.253906, 14.264383 ], [ -85.253906, 14.093957 ], [ -85.429688, 14.093957 ], [ -85.429688, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 13.752725 ], [ -85.957031, 13.752725 ], [ -85.957031, 13.923404 ], [ -86.308594, 13.923404 ], [ -86.308594, 13.752725 ], [ -86.835938, 13.752725 ], [ -86.835938, 13.410994 ], [ -86.660156, 13.410994 ], [ -86.660156, 13.239945 ], [ -86.835938, 13.239945 ], [ -86.835938, 13.068777 ], [ -87.539062, 13.068777 ], [ -87.539062, 13.239945 ], [ -87.714844, 13.239945 ], [ -87.714844, 13.752725 ], [ -87.890625, 13.752725 ], [ -87.890625, 13.923404 ], [ -88.769531, 13.923404 ], [ -88.769531, 14.093957 ], [ -89.121094, 14.093957 ], [ -89.121094, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.434680 ], [ -89.121094, 14.434680 ], [ -89.121094, 14.774883 ], [ -89.296875, 14.774883 ], [ -89.296875, 14.944785 ], [ -89.121094, 14.944785 ], [ -89.121094, 15.114553 ], [ -88.769531, 15.114553 ], [ -88.769531, 15.284185 ], [ -88.417969, 15.284185 ], [ -88.417969, 15.623037 ], [ -87.890625, 15.623037 ], [ -87.890625, 15.792254 ], [ -86.132812, 15.792254 ], [ -86.132812, 15.961329 ], [ -84.902344, 15.961329 ], [ -84.902344, 15.792254 ], [ -84.375000, 15.792254 ], [ -84.375000, 15.623037 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.902344, 15.961329 ], [ -84.902344, 15.792254 ], [ -84.375000, 15.792254 ], [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.453680 ], [ -83.847656, 15.453680 ], [ -83.847656, 15.284185 ], [ -83.496094, 15.284185 ], [ -83.496094, 15.114553 ], [ -83.320312, 15.114553 ], [ -83.320312, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.774883 ], [ -84.199219, 14.774883 ], [ -84.199219, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 14.264383 ], [ -85.253906, 14.264383 ], [ -85.253906, 14.093957 ], [ -85.429688, 14.093957 ], [ -85.429688, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 13.752725 ], [ -85.957031, 13.752725 ], [ -85.957031, 13.923404 ], [ -86.308594, 13.923404 ], [ -86.308594, 13.752725 ], [ -86.835938, 13.752725 ], [ -86.835938, 13.410994 ], [ -86.660156, 13.410994 ], [ -86.660156, 13.239945 ], [ -86.835938, 13.239945 ], [ -86.835938, 13.068777 ], [ -87.539062, 13.068777 ], [ -87.539062, 13.239945 ], [ -87.714844, 13.239945 ], [ -87.714844, 13.752725 ], [ -87.890625, 13.752725 ], [ -87.890625, 13.923404 ], [ -88.769531, 13.923404 ], [ -88.769531, 14.093957 ], [ -89.121094, 14.093957 ], [ -89.121094, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.434680 ], [ -89.121094, 14.434680 ], [ -89.121094, 14.774883 ], [ -89.296875, 14.774883 ], [ -89.296875, 14.944785 ], [ -89.121094, 14.944785 ], [ -89.121094, 15.114553 ], [ -88.769531, 15.114553 ], [ -88.769531, 15.284185 ], [ -88.417969, 15.284185 ], [ -88.417969, 15.623037 ], [ -87.890625, 15.623037 ], [ -87.890625, 15.792254 ], [ -86.132812, 15.792254 ], [ -86.132812, 15.961329 ], [ -84.902344, 15.961329 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.434680 ], [ -83.144531, 14.434680 ], [ -83.144531, 14.093957 ], [ -83.320312, 14.093957 ], [ -83.320312, 13.923404 ], [ -83.496094, 13.923404 ], [ -83.496094, 12.382928 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.523088 ], [ -83.847656, 11.523088 ], [ -83.847656, 11.005904 ], [ -83.671875, 11.005904 ], [ -83.671875, 10.833306 ], [ -83.847656, 10.833306 ], [ -83.847656, 10.660608 ], [ -84.199219, 10.660608 ], [ -84.199219, 10.833306 ], [ -84.375000, 10.833306 ], [ -84.375000, 11.005904 ], [ -85.429688, 11.005904 ], [ -85.429688, 11.178402 ], [ -85.605469, 11.178402 ], [ -85.605469, 11.005904 ], [ -85.957031, 11.005904 ], [ -85.957031, 11.178402 ], [ -86.132812, 11.178402 ], [ -86.132812, 11.350797 ], [ -86.308594, 11.350797 ], [ -86.308594, 11.695273 ], [ -86.484375, 11.695273 ], [ -86.484375, 12.039321 ], [ -86.660156, 12.039321 ], [ -86.660156, 12.211180 ], [ -87.011719, 12.211180 ], [ -87.011719, 12.382928 ], [ -87.363281, 12.382928 ], [ -87.363281, 12.554564 ], [ -87.539062, 12.554564 ], [ -87.539062, 12.726084 ], [ -87.714844, 12.726084 ], [ -87.714844, 12.897489 ], [ -87.363281, 12.897489 ], [ -87.363281, 13.068777 ], [ -86.835938, 13.068777 ], [ -86.835938, 13.239945 ], [ -86.660156, 13.239945 ], [ -86.660156, 13.410994 ], [ -86.835938, 13.410994 ], [ -86.835938, 13.752725 ], [ -86.308594, 13.752725 ], [ -86.308594, 13.923404 ], [ -85.957031, 13.923404 ], [ -85.957031, 13.752725 ], [ -85.781250, 13.752725 ], [ -85.781250, 13.923404 ], [ -85.429688, 13.923404 ], [ -85.429688, 14.093957 ], [ -85.253906, 14.093957 ], [ -85.253906, 14.264383 ], [ -85.078125, 14.264383 ], [ -85.078125, 14.604847 ], [ -84.199219, 14.604847 ], [ -84.199219, 14.774883 ], [ -83.671875, 14.774883 ], [ -83.671875, 14.944785 ], [ -83.320312, 14.944785 ], [ -83.320312, 14.434680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.944785 ], [ -83.320312, 14.434680 ], [ -83.144531, 14.434680 ], [ -83.144531, 14.093957 ], [ -83.320312, 14.093957 ], [ -83.320312, 13.923404 ], [ -83.496094, 13.923404 ], [ -83.496094, 12.382928 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.523088 ], [ -83.847656, 11.523088 ], [ -83.847656, 11.005904 ], [ -83.671875, 11.005904 ], [ -83.671875, 10.833306 ], [ -83.847656, 10.833306 ], [ -83.847656, 10.660608 ], [ -84.199219, 10.660608 ], [ -84.199219, 10.833306 ], [ -84.375000, 10.833306 ], [ -84.375000, 11.005904 ], [ -85.429688, 11.005904 ], [ -85.429688, 11.178402 ], [ -85.605469, 11.178402 ], [ -85.605469, 11.005904 ], [ -85.957031, 11.005904 ], [ -85.957031, 11.178402 ], [ -86.132812, 11.178402 ], [ -86.132812, 11.350797 ], [ -86.308594, 11.350797 ], [ -86.308594, 11.695273 ], [ -86.484375, 11.695273 ], [ -86.484375, 12.039321 ], [ -86.660156, 12.039321 ], [ -86.660156, 12.211180 ], [ -87.011719, 12.211180 ], [ -87.011719, 12.382928 ], [ -87.363281, 12.382928 ], [ -87.363281, 12.554564 ], [ -87.539062, 12.554564 ], [ -87.539062, 12.726084 ], [ -87.714844, 12.726084 ], [ -87.714844, 12.897489 ], [ -87.363281, 12.897489 ], [ -87.363281, 13.068777 ], [ -86.835938, 13.068777 ], [ -86.835938, 13.239945 ], [ -86.660156, 13.239945 ], [ -86.660156, 13.410994 ], [ -86.835938, 13.410994 ], [ -86.835938, 13.752725 ], [ -86.308594, 13.752725 ], [ -86.308594, 13.923404 ], [ -85.957031, 13.923404 ], [ -85.957031, 13.752725 ], [ -85.781250, 13.752725 ], [ -85.781250, 13.923404 ], [ -85.429688, 13.923404 ], [ -85.429688, 14.093957 ], [ -85.253906, 14.093957 ], [ -85.253906, 14.264383 ], [ -85.078125, 14.264383 ], [ -85.078125, 14.604847 ], [ -84.199219, 14.604847 ], [ -84.199219, 14.774883 ], [ -83.671875, 14.774883 ], [ -83.671875, 14.944785 ], [ -83.320312, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.507812, 22.917923 ], [ -79.980469, 22.917923 ], [ -79.980469, 22.755921 ], [ -79.628906, 22.755921 ], [ -79.628906, 22.593726 ], [ -79.453125, 22.593726 ], [ -79.453125, 22.431340 ], [ -78.398438, 22.431340 ], [ -78.398438, 22.268764 ], [ -78.046875, 22.268764 ], [ -78.046875, 22.105999 ], [ -77.871094, 22.105999 ], [ -77.871094, 21.943046 ], [ -77.519531, 21.943046 ], [ -77.519531, 21.779905 ], [ -77.343750, 21.779905 ], [ -77.343750, 21.616579 ], [ -77.167969, 21.616579 ], [ -77.167969, 21.453069 ], [ -76.992188, 21.453069 ], [ -76.992188, 21.289374 ], [ -76.640625, 21.289374 ], [ -76.640625, 21.125498 ], [ -75.761719, 21.125498 ], [ -75.761719, 20.961440 ], [ -75.585938, 20.961440 ], [ -75.585938, 20.797201 ], [ -75.410156, 20.797201 ], [ -75.410156, 20.632784 ], [ -74.882812, 20.632784 ], [ -74.882812, 20.468189 ], [ -74.531250, 20.468189 ], [ -74.531250, 20.303418 ], [ -74.179688, 20.303418 ], [ -74.179688, 20.138470 ], [ -74.355469, 20.138470 ], [ -74.355469, 19.973349 ], [ -75.058594, 19.973349 ], [ -75.058594, 19.808054 ], [ -76.113281, 19.808054 ], [ -76.113281, 19.973349 ], [ -76.816406, 19.973349 ], [ -76.816406, 19.808054 ], [ -77.519531, 19.808054 ], [ -77.519531, 20.138470 ], [ -77.343750, 20.138470 ], [ -77.343750, 20.303418 ], [ -77.167969, 20.303418 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.468189 ], [ -77.519531, 20.632784 ], [ -78.046875, 20.632784 ], [ -78.046875, 20.797201 ], [ -78.398438, 20.797201 ], [ -78.398438, 21.125498 ], [ -78.574219, 21.125498 ], [ -78.574219, 21.453069 ], [ -78.750000, 21.453069 ], [ -78.750000, 21.616579 ], [ -79.804688, 21.616579 ], [ -79.804688, 21.779905 ], [ -80.332031, 21.779905 ], [ -80.332031, 21.943046 ], [ -80.507812, 21.943046 ], [ -80.507812, 22.105999 ], [ -81.210938, 22.105999 ], [ -81.210938, 22.268764 ], [ -82.089844, 22.268764 ], [ -82.089844, 22.431340 ], [ -81.738281, 22.431340 ], [ -81.738281, 22.593726 ], [ -82.441406, 22.593726 ], [ -82.441406, 22.755921 ], [ -82.792969, 22.755921 ], [ -82.792969, 22.593726 ], [ -82.968750, 22.593726 ], [ -82.968750, 22.431340 ], [ -83.144531, 22.431340 ], [ -83.144531, 22.268764 ], [ -83.320312, 22.268764 ], [ -83.320312, 22.105999 ], [ -83.847656, 22.105999 ], [ -83.847656, 21.943046 ], [ -84.199219, 21.943046 ], [ -84.199219, 21.779905 ], [ -84.902344, 21.779905 ], [ -84.902344, 21.943046 ], [ -84.726562, 21.943046 ], [ -84.726562, 22.105999 ], [ -84.375000, 22.105999 ], [ -84.375000, 22.431340 ], [ -84.199219, 22.431340 ], [ -84.199219, 22.593726 ], [ -83.847656, 22.593726 ], [ -83.847656, 22.755921 ], [ -83.496094, 22.755921 ], [ -83.496094, 22.917923 ], [ -82.792969, 22.917923 ], [ -82.792969, 23.079732 ], [ -82.265625, 23.079732 ], [ -82.265625, 23.241346 ], [ -81.914062, 23.241346 ], [ -81.914062, 23.079732 ], [ -80.507812, 23.079732 ], [ -80.507812, 22.917923 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.914062, 23.241346 ], [ -81.914062, 23.079732 ], [ -80.507812, 23.079732 ], [ -80.507812, 22.917923 ], [ -79.980469, 22.917923 ], [ -79.980469, 22.755921 ], [ -79.628906, 22.755921 ], [ -79.628906, 22.593726 ], [ -79.453125, 22.593726 ], [ -79.453125, 22.431340 ], [ -78.398438, 22.431340 ], [ -78.398438, 22.268764 ], [ -78.046875, 22.268764 ], [ -78.046875, 22.105999 ], [ -77.871094, 22.105999 ], [ -77.871094, 21.943046 ], [ -77.519531, 21.943046 ], [ -77.519531, 21.779905 ], [ -77.343750, 21.779905 ], [ -77.343750, 21.616579 ], [ -77.167969, 21.616579 ], [ -77.167969, 21.453069 ], [ -76.992188, 21.453069 ], [ -76.992188, 21.289374 ], [ -76.640625, 21.289374 ], [ -76.640625, 21.125498 ], [ -75.761719, 21.125498 ], [ -75.761719, 20.961440 ], [ -75.585938, 20.961440 ], [ -75.585938, 20.797201 ], [ -75.410156, 20.797201 ], [ -75.410156, 20.632784 ], [ -74.882812, 20.632784 ], [ -74.882812, 20.468189 ], [ -74.531250, 20.468189 ], [ -74.531250, 20.303418 ], [ -74.179688, 20.303418 ], [ -74.179688, 20.138470 ], [ -74.355469, 20.138470 ], [ -74.355469, 19.973349 ], [ -75.058594, 19.973349 ], [ -75.058594, 19.808054 ], [ -76.113281, 19.808054 ], [ -76.113281, 19.973349 ], [ -76.816406, 19.973349 ], [ -76.816406, 19.808054 ], [ -77.519531, 19.808054 ], [ -77.519531, 20.138470 ], [ -77.343750, 20.138470 ], [ -77.343750, 20.303418 ], [ -77.167969, 20.303418 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.468189 ], [ -77.519531, 20.632784 ], [ -78.046875, 20.632784 ], [ -78.046875, 20.797201 ], [ -78.398438, 20.797201 ], [ -78.398438, 21.125498 ], [ -78.574219, 21.125498 ], [ -78.574219, 21.453069 ], [ -78.750000, 21.453069 ], [ -78.750000, 21.616579 ], [ -79.804688, 21.616579 ], [ -79.804688, 21.779905 ], [ -80.332031, 21.779905 ], [ -80.332031, 21.943046 ], [ -80.507812, 21.943046 ], [ -80.507812, 22.105999 ], [ -81.210938, 22.105999 ], [ -81.210938, 22.268764 ], [ -82.089844, 22.268764 ], [ -82.089844, 22.431340 ], [ -81.738281, 22.431340 ], [ -81.738281, 22.593726 ], [ -82.441406, 22.593726 ], [ -82.441406, 22.755921 ], [ -82.792969, 22.755921 ], [ -82.792969, 22.593726 ], [ -82.968750, 22.593726 ], [ -82.968750, 22.431340 ], [ -83.144531, 22.431340 ], [ -83.144531, 22.268764 ], [ -83.320312, 22.268764 ], [ -83.320312, 22.105999 ], [ -83.847656, 22.105999 ], [ -83.847656, 21.943046 ], [ -84.199219, 21.943046 ], [ -84.199219, 21.779905 ], [ -84.902344, 21.779905 ], [ -84.902344, 21.943046 ], [ -84.726562, 21.943046 ], [ -84.726562, 22.105999 ], [ -84.375000, 22.105999 ], [ -84.375000, 22.431340 ], [ -84.199219, 22.431340 ], [ -84.199219, 22.593726 ], [ -83.847656, 22.593726 ], [ -83.847656, 22.755921 ], [ -83.496094, 22.755921 ], [ -83.496094, 22.917923 ], [ -82.792969, 22.917923 ], [ -82.792969, 23.079732 ], [ -82.265625, 23.079732 ], [ -82.265625, 23.241346 ], [ -81.914062, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 10.833306 ], [ -84.199219, 10.833306 ], [ -84.199219, 10.660608 ], [ -83.847656, 10.660608 ], [ -83.847656, 10.833306 ], [ -83.496094, 10.833306 ], [ -83.496094, 10.487812 ], [ -83.320312, 10.487812 ], [ -83.320312, 10.141932 ], [ -83.144531, 10.141932 ], [ -83.144531, 9.968851 ], [ -82.968750, 9.968851 ], [ -82.968750, 9.795678 ], [ -82.792969, 9.795678 ], [ -82.792969, 9.622414 ], [ -82.617188, 9.622414 ], [ -82.617188, 9.449062 ], [ -82.968750, 9.449062 ], [ -82.968750, 8.928487 ], [ -82.792969, 8.928487 ], [ -82.792969, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 8.233237 ], [ -83.320312, 8.233237 ], [ -83.320312, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -83.847656, 9.102097 ], [ -83.847656, 9.275622 ], [ -84.199219, 9.275622 ], [ -84.199219, 9.449062 ], [ -84.726562, 9.449062 ], [ -84.726562, 9.968851 ], [ -84.902344, 9.968851 ], [ -84.902344, 9.622414 ], [ -85.253906, 9.622414 ], [ -85.253906, 9.795678 ], [ -85.605469, 9.795678 ], [ -85.605469, 9.968851 ], [ -85.781250, 9.968851 ], [ -85.781250, 10.660608 ], [ -85.605469, 10.660608 ], [ -85.605469, 10.833306 ], [ -85.781250, 10.833306 ], [ -85.781250, 11.005904 ], [ -85.605469, 11.005904 ], [ -85.605469, 11.178402 ], [ -85.429688, 11.178402 ], [ -85.429688, 11.005904 ], [ -84.375000, 11.005904 ], [ -84.375000, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.429688, 11.178402 ], [ -85.429688, 11.005904 ], [ -84.375000, 11.005904 ], [ -84.375000, 10.833306 ], [ -84.199219, 10.833306 ], [ -84.199219, 10.660608 ], [ -83.847656, 10.660608 ], [ -83.847656, 10.833306 ], [ -83.496094, 10.833306 ], [ -83.496094, 10.487812 ], [ -83.320312, 10.487812 ], [ -83.320312, 10.141932 ], [ -83.144531, 10.141932 ], [ -83.144531, 9.968851 ], [ -82.968750, 9.968851 ], [ -82.968750, 9.795678 ], [ -82.792969, 9.795678 ], [ -82.792969, 9.622414 ], [ -82.617188, 9.622414 ], [ -82.617188, 9.449062 ], [ -82.968750, 9.449062 ], [ -82.968750, 8.928487 ], [ -82.792969, 8.928487 ], [ -82.792969, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 8.233237 ], [ -83.320312, 8.233237 ], [ -83.320312, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -83.847656, 9.102097 ], [ -83.847656, 9.275622 ], [ -84.199219, 9.275622 ], [ -84.199219, 9.449062 ], [ -84.726562, 9.449062 ], [ -84.726562, 9.968851 ], [ -84.902344, 9.968851 ], [ -84.902344, 9.622414 ], [ -85.253906, 9.622414 ], [ -85.253906, 9.795678 ], [ -85.605469, 9.795678 ], [ -85.605469, 9.968851 ], [ -85.781250, 9.968851 ], [ -85.781250, 10.660608 ], [ -85.605469, 10.660608 ], [ -85.605469, 10.833306 ], [ -85.781250, 10.833306 ], [ -85.781250, 11.005904 ], [ -85.605469, 11.005904 ], [ -85.605469, 11.178402 ], [ -85.429688, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.398438, 9.275622 ], [ -78.046875, 9.275622 ], [ -78.046875, 9.102097 ], [ -77.871094, 9.102097 ], [ -77.871094, 8.928487 ], [ -77.695312, 8.928487 ], [ -77.695312, 8.754795 ], [ -77.343750, 8.754795 ], [ -77.343750, 8.581021 ], [ -77.519531, 8.581021 ], [ -77.519531, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 8.059230 ], [ -77.167969, 8.059230 ], [ -77.167969, 7.710992 ], [ -77.695312, 7.710992 ], [ -77.695312, 7.362467 ], [ -77.871094, 7.362467 ], [ -77.871094, 7.188101 ], [ -78.046875, 7.188101 ], [ -78.046875, 7.362467 ], [ -78.222656, 7.362467 ], [ -78.222656, 7.710992 ], [ -78.398438, 7.710992 ], [ -78.398438, 8.059230 ], [ -78.222656, 8.059230 ], [ -78.222656, 8.233237 ], [ -78.398438, 8.233237 ], [ -78.398438, 8.581021 ], [ -78.574219, 8.581021 ], [ -78.574219, 8.754795 ], [ -78.925781, 8.754795 ], [ -78.925781, 8.928487 ], [ -79.628906, 8.928487 ], [ -79.628906, 8.754795 ], [ -79.804688, 8.754795 ], [ -79.804688, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 8.233237 ], [ -80.332031, 8.233237 ], [ -80.332031, 8.059230 ], [ -80.507812, 8.059230 ], [ -80.507812, 7.885147 ], [ -80.332031, 7.885147 ], [ -80.332031, 7.710992 ], [ -80.156250, 7.710992 ], [ -80.156250, 7.536764 ], [ -79.980469, 7.536764 ], [ -79.980469, 7.362467 ], [ -80.332031, 7.362467 ], [ -80.332031, 7.188101 ], [ -80.859375, 7.188101 ], [ -80.859375, 7.536764 ], [ -81.035156, 7.536764 ], [ -81.035156, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 7.885147 ], [ -81.738281, 7.885147 ], [ -81.738281, 8.059230 ], [ -82.089844, 8.059230 ], [ -82.089844, 8.233237 ], [ -82.792969, 8.233237 ], [ -82.792969, 8.059230 ], [ -82.968750, 8.059230 ], [ -82.968750, 8.407168 ], [ -82.792969, 8.407168 ], [ -82.792969, 8.928487 ], [ -82.968750, 8.928487 ], [ -82.968750, 9.449062 ], [ -82.441406, 9.449062 ], [ -82.441406, 9.275622 ], [ -82.265625, 9.275622 ], [ -82.265625, 8.928487 ], [ -81.562500, 8.928487 ], [ -81.562500, 8.754795 ], [ -81.035156, 8.754795 ], [ -81.035156, 8.928487 ], [ -80.683594, 8.928487 ], [ -80.683594, 9.102097 ], [ -80.156250, 9.102097 ], [ -80.156250, 9.275622 ], [ -79.804688, 9.275622 ], [ -79.804688, 9.449062 ], [ -79.628906, 9.449062 ], [ -79.628906, 9.622414 ], [ -79.101562, 9.622414 ], [ -79.101562, 9.449062 ], [ -78.398438, 9.449062 ], [ -78.398438, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.101562, 9.622414 ], [ -79.101562, 9.449062 ], [ -78.398438, 9.449062 ], [ -78.398438, 9.275622 ], [ -78.046875, 9.275622 ], [ -78.046875, 9.102097 ], [ -77.871094, 9.102097 ], [ -77.871094, 8.928487 ], [ -77.695312, 8.928487 ], [ -77.695312, 8.754795 ], [ -77.343750, 8.754795 ], [ -77.343750, 8.581021 ], [ -77.519531, 8.581021 ], [ -77.519531, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 8.059230 ], [ -77.167969, 8.059230 ], [ -77.167969, 7.710992 ], [ -77.695312, 7.710992 ], [ -77.695312, 7.362467 ], [ -77.871094, 7.362467 ], [ -77.871094, 7.188101 ], [ -78.046875, 7.188101 ], [ -78.046875, 7.362467 ], [ -78.222656, 7.362467 ], [ -78.222656, 7.710992 ], [ -78.398438, 7.710992 ], [ -78.398438, 8.059230 ], [ -78.222656, 8.059230 ], [ -78.222656, 8.233237 ], [ -78.398438, 8.233237 ], [ -78.398438, 8.581021 ], [ -78.574219, 8.581021 ], [ -78.574219, 8.754795 ], [ -78.925781, 8.754795 ], [ -78.925781, 8.928487 ], [ -79.628906, 8.928487 ], [ -79.628906, 8.754795 ], [ -79.804688, 8.754795 ], [ -79.804688, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 8.233237 ], [ -80.332031, 8.233237 ], [ -80.332031, 8.059230 ], [ -80.507812, 8.059230 ], [ -80.507812, 7.885147 ], [ -80.332031, 7.885147 ], [ -80.332031, 7.710992 ], [ -80.156250, 7.710992 ], [ -80.156250, 7.536764 ], [ -79.980469, 7.536764 ], [ -79.980469, 7.362467 ], [ -80.332031, 7.362467 ], [ -80.332031, 7.188101 ], [ -80.859375, 7.188101 ], [ -80.859375, 7.536764 ], [ -81.035156, 7.536764 ], [ -81.035156, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 7.885147 ], [ -81.738281, 7.885147 ], [ -81.738281, 8.059230 ], [ -82.089844, 8.059230 ], [ -82.089844, 8.233237 ], [ -82.792969, 8.233237 ], [ -82.792969, 8.059230 ], [ -82.968750, 8.059230 ], [ -82.968750, 8.407168 ], [ -82.792969, 8.407168 ], [ -82.792969, 8.928487 ], [ -82.968750, 8.928487 ], [ -82.968750, 9.449062 ], [ -82.441406, 9.449062 ], [ -82.441406, 9.275622 ], [ -82.265625, 9.275622 ], [ -82.265625, 8.928487 ], [ -81.562500, 8.928487 ], [ -81.562500, 8.754795 ], [ -81.035156, 8.754795 ], [ -81.035156, 8.928487 ], [ -80.683594, 8.928487 ], [ -80.683594, 9.102097 ], [ -80.156250, 9.102097 ], [ -80.156250, 9.275622 ], [ -79.804688, 9.275622 ], [ -79.804688, 9.449062 ], [ -79.628906, 9.449062 ], [ -79.628906, 9.622414 ], [ -79.101562, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.464844, 18.145852 ], [ -76.289062, 18.145852 ], [ -76.289062, 17.978733 ], [ -76.113281, 17.978733 ], [ -76.113281, 17.811456 ], [ -76.816406, 17.811456 ], [ -76.816406, 17.644022 ], [ -77.519531, 17.644022 ], [ -77.519531, 17.811456 ], [ -78.046875, 17.811456 ], [ -78.046875, 17.978733 ], [ -78.398438, 17.978733 ], [ -78.398438, 18.312811 ], [ -78.222656, 18.312811 ], [ -78.222656, 18.479609 ], [ -76.816406, 18.479609 ], [ -76.816406, 18.312811 ], [ -76.464844, 18.312811 ], [ -76.464844, 18.145852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.816406, 18.479609 ], [ -76.816406, 18.312811 ], [ -76.464844, 18.312811 ], [ -76.464844, 18.145852 ], [ -76.289062, 18.145852 ], [ -76.289062, 17.978733 ], [ -76.113281, 17.978733 ], [ -76.113281, 17.811456 ], [ -76.816406, 17.811456 ], [ -76.816406, 17.644022 ], [ -77.519531, 17.644022 ], [ -77.519531, 17.811456 ], [ -78.046875, 17.811456 ], [ -78.046875, 17.978733 ], [ -78.398438, 17.978733 ], [ -78.398438, 18.312811 ], [ -78.222656, 18.312811 ], [ -78.222656, 18.479609 ], [ -76.816406, 18.479609 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.246094, 19.642588 ], [ -71.718750, 19.642588 ], [ -71.718750, 19.311143 ], [ -71.542969, 19.311143 ], [ -71.542969, 18.979026 ], [ -71.718750, 18.979026 ], [ -71.718750, 18.646245 ], [ -71.894531, 18.646245 ], [ -71.894531, 18.479609 ], [ -71.718750, 18.479609 ], [ -71.718750, 17.978733 ], [ -72.246094, 17.978733 ], [ -72.246094, 18.145852 ], [ -73.652344, 18.145852 ], [ -73.652344, 17.978733 ], [ -74.179688, 17.978733 ], [ -74.179688, 18.145852 ], [ -74.531250, 18.145852 ], [ -74.531250, 18.479609 ], [ -74.355469, 18.479609 ], [ -74.355469, 18.646245 ], [ -74.003906, 18.646245 ], [ -74.003906, 18.479609 ], [ -72.421875, 18.479609 ], [ -72.421875, 18.646245 ], [ -72.597656, 18.646245 ], [ -72.597656, 18.979026 ], [ -72.773438, 18.979026 ], [ -72.773438, 19.476950 ], [ -73.300781, 19.476950 ], [ -73.300781, 19.808054 ], [ -73.125000, 19.808054 ], [ -73.125000, 19.973349 ], [ -72.949219, 19.973349 ], [ -72.949219, 19.808054 ], [ -72.246094, 19.808054 ], [ -72.246094, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.949219, 19.973349 ], [ -72.949219, 19.808054 ], [ -72.246094, 19.808054 ], [ -72.246094, 19.642588 ], [ -71.718750, 19.642588 ], [ -71.718750, 19.311143 ], [ -71.542969, 19.311143 ], [ -71.542969, 18.979026 ], [ -71.718750, 18.979026 ], [ -71.718750, 18.646245 ], [ -71.894531, 18.646245 ], [ -71.894531, 18.479609 ], [ -71.718750, 18.479609 ], [ -71.718750, 17.978733 ], [ -72.246094, 17.978733 ], [ -72.246094, 18.145852 ], [ -73.652344, 18.145852 ], [ -73.652344, 17.978733 ], [ -74.179688, 17.978733 ], [ -74.179688, 18.145852 ], [ -74.531250, 18.145852 ], [ -74.531250, 18.479609 ], [ -74.355469, 18.479609 ], [ -74.355469, 18.646245 ], [ -74.003906, 18.646245 ], [ -74.003906, 18.479609 ], [ -72.421875, 18.479609 ], [ -72.421875, 18.646245 ], [ -72.597656, 18.646245 ], [ -72.597656, 18.979026 ], [ -72.773438, 18.979026 ], [ -72.773438, 19.476950 ], [ -73.300781, 19.476950 ], [ -73.300781, 19.808054 ], [ -73.125000, 19.808054 ], [ -73.125000, 19.973349 ], [ -72.949219, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 19.476950 ], [ -69.785156, 19.476950 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.730469, 18.979026 ], [ -68.730469, 18.812718 ], [ -68.554688, 18.812718 ], [ -68.554688, 18.646245 ], [ -68.378906, 18.646245 ], [ -68.378906, 18.479609 ], [ -68.554688, 18.479609 ], [ -68.554688, 18.145852 ], [ -68.906250, 18.145852 ], [ -68.906250, 18.312811 ], [ -69.082031, 18.312811 ], [ -69.082031, 18.479609 ], [ -69.257812, 18.479609 ], [ -69.257812, 18.312811 ], [ -70.136719, 18.312811 ], [ -70.136719, 18.145852 ], [ -70.488281, 18.145852 ], [ -70.488281, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 18.145852 ], [ -71.191406, 18.145852 ], [ -71.191406, 17.811456 ], [ -71.367188, 17.811456 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 18.479609 ], [ -71.894531, 18.479609 ], [ -71.894531, 18.646245 ], [ -71.718750, 18.646245 ], [ -71.718750, 18.979026 ], [ -71.542969, 18.979026 ], [ -71.542969, 19.311143 ], [ -71.718750, 19.311143 ], [ -71.718750, 19.642588 ], [ -71.542969, 19.642588 ], [ -71.542969, 19.808054 ], [ -70.664062, 19.808054 ], [ -70.664062, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.476950 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.664062, 19.808054 ], [ -70.664062, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.476950 ], [ -69.785156, 19.476950 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.730469, 18.979026 ], [ -68.730469, 18.812718 ], [ -68.554688, 18.812718 ], [ -68.554688, 18.646245 ], [ -68.378906, 18.646245 ], [ -68.378906, 18.479609 ], [ -68.554688, 18.479609 ], [ -68.554688, 18.145852 ], [ -68.906250, 18.145852 ], [ -68.906250, 18.312811 ], [ -69.082031, 18.312811 ], [ -69.082031, 18.479609 ], [ -69.257812, 18.479609 ], [ -69.257812, 18.312811 ], [ -70.136719, 18.312811 ], [ -70.136719, 18.145852 ], [ -70.488281, 18.145852 ], [ -70.488281, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 18.145852 ], [ -71.191406, 18.145852 ], [ -71.191406, 17.811456 ], [ -71.367188, 17.811456 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 18.479609 ], [ -71.894531, 18.479609 ], [ -71.894531, 18.646245 ], [ -71.718750, 18.646245 ], [ -71.718750, 18.979026 ], [ -71.542969, 18.979026 ], [ -71.542969, 19.311143 ], [ -71.718750, 19.311143 ], [ -71.718750, 19.642588 ], [ -71.542969, 19.642588 ], [ -71.542969, 19.808054 ], [ -70.664062, 19.808054 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.191406, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.695273 ], [ -71.542969, 11.695273 ], [ -71.542969, 11.523088 ], [ -71.894531, 11.523088 ], [ -71.894531, 11.350797 ], [ -72.070312, 11.350797 ], [ -72.070312, 11.178402 ], [ -72.246094, 11.178402 ], [ -72.246094, 11.005904 ], [ -72.421875, 11.005904 ], [ -72.421875, 10.833306 ], [ -72.597656, 10.833306 ], [ -72.597656, 10.660608 ], [ -72.773438, 10.660608 ], [ -72.773438, 10.487812 ], [ -72.949219, 10.487812 ], [ -72.949219, 9.622414 ], [ -73.125000, 9.622414 ], [ -73.125000, 9.275622 ], [ -73.300781, 9.275622 ], [ -73.300781, 9.102097 ], [ -72.773438, 9.102097 ], [ -72.773438, 8.754795 ], [ -72.597656, 8.754795 ], [ -72.597656, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.362467 ], [ -72.246094, 7.362467 ], [ -72.246094, 7.188101 ], [ -72.070312, 7.188101 ], [ -72.070312, 7.013668 ], [ -70.136719, 7.013668 ], [ -70.136719, 6.839170 ], [ -69.960938, 6.839170 ], [ -69.960938, 6.664608 ], [ -69.785156, 6.664608 ], [ -69.785156, 6.315299 ], [ -69.609375, 6.315299 ], [ -69.609375, 6.140555 ], [ -67.851562, 6.140555 ], [ -67.851562, 6.315299 ], [ -67.675781, 6.315299 ], [ -67.675781, 6.140555 ], [ -67.324219, 6.140555 ], [ -67.324219, 5.790897 ], [ -67.500000, 5.790897 ], [ -67.500000, 5.441022 ], [ -67.675781, 5.441022 ], [ -67.675781, 4.915833 ], [ -67.851562, 4.915833 ], [ -67.851562, 4.214943 ], [ -67.675781, 4.214943 ], [ -67.675781, 3.688855 ], [ -67.500000, 3.688855 ], [ -67.500000, 3.513421 ], [ -67.324219, 3.513421 ], [ -67.324219, 3.162456 ], [ -67.500000, 3.162456 ], [ -67.500000, 2.986927 ], [ -67.675781, 2.986927 ], [ -67.675781, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 2.635789 ], [ -67.500000, 2.635789 ], [ -67.500000, 2.460181 ], [ -67.324219, 2.460181 ], [ -67.324219, 2.284551 ], [ -67.148438, 2.284551 ], [ -67.148438, 1.933227 ], [ -66.972656, 1.933227 ], [ -66.972656, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.406109 ], [ -67.324219, 1.406109 ], [ -67.324219, 1.933227 ], [ -67.675781, 1.933227 ], [ -67.675781, 1.757537 ], [ -69.785156, 1.757537 ], [ -69.785156, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.527336 ], [ -69.433594, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.527336 ], [ -69.960938, 0.527336 ], [ -69.960938, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.703107 ], [ -69.433594, -0.703107 ], [ -69.433594, -0.878872 ], [ -74.179688, -0.878872 ], [ -74.179688, -0.703107 ], [ -74.355469, -0.703107 ], [ -74.355469, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.351560 ], [ -74.882812, -0.351560 ], [ -74.882812, -0.175781 ], [ -75.761719, -0.175781 ], [ -75.761719, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.175781 ], [ -77.167969, 0.175781 ], [ -77.167969, 0.351560 ], [ -77.519531, 0.351560 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -78.222656, 0.878872 ], [ -78.222656, 1.054628 ], [ -78.574219, 1.054628 ], [ -78.574219, 1.230374 ], [ -78.925781, 1.230374 ], [ -78.925781, 1.757537 ], [ -78.574219, 1.757537 ], [ -78.574219, 1.933227 ], [ -78.750000, 1.933227 ], [ -78.750000, 2.284551 ], [ -78.574219, 2.284551 ], [ -78.574219, 2.460181 ], [ -78.398438, 2.460181 ], [ -78.398438, 2.635789 ], [ -77.871094, 2.635789 ], [ -77.871094, 2.811371 ], [ -77.695312, 2.811371 ], [ -77.695312, 3.162456 ], [ -77.519531, 3.162456 ], [ -77.519531, 3.337954 ], [ -77.343750, 3.337954 ], [ -77.343750, 3.688855 ], [ -77.167969, 3.688855 ], [ -77.167969, 3.864255 ], [ -77.519531, 3.864255 ], [ -77.519531, 4.390229 ], [ -77.343750, 4.390229 ], [ -77.343750, 5.090944 ], [ -77.519531, 5.090944 ], [ -77.519531, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.140555 ], [ -77.519531, 6.140555 ], [ -77.519531, 6.664608 ], [ -77.695312, 6.664608 ], [ -77.695312, 7.013668 ], [ -77.871094, 7.013668 ], [ -77.871094, 7.362467 ], [ -77.695312, 7.362467 ], [ -77.695312, 7.710992 ], [ -77.167969, 7.710992 ], [ -77.167969, 8.059230 ], [ -77.343750, 8.059230 ], [ -77.343750, 8.407168 ], [ -77.519531, 8.407168 ], [ -77.519531, 8.581021 ], [ -77.343750, 8.581021 ], [ -77.343750, 8.754795 ], [ -77.167969, 8.754795 ], [ -77.167969, 8.581021 ], [ -76.640625, 8.581021 ], [ -76.640625, 8.754795 ], [ -76.464844, 8.754795 ], [ -76.464844, 8.928487 ], [ -76.289062, 8.928487 ], [ -76.289062, 9.102097 ], [ -76.113281, 9.102097 ], [ -76.113281, 9.275622 ], [ -75.761719, 9.275622 ], [ -75.761719, 9.622414 ], [ -75.585938, 9.622414 ], [ -75.585938, 10.141932 ], [ -75.410156, 10.141932 ], [ -75.410156, 10.660608 ], [ -75.234375, 10.660608 ], [ -75.234375, 10.833306 ], [ -74.882812, 10.833306 ], [ -74.882812, 11.005904 ], [ -74.531250, 11.005904 ], [ -74.531250, 11.178402 ], [ -74.179688, 11.178402 ], [ -74.179688, 11.350797 ], [ -74.003906, 11.350797 ], [ -74.003906, 11.178402 ], [ -73.300781, 11.178402 ], [ -73.300781, 11.350797 ], [ -72.949219, 11.350797 ], [ -72.949219, 11.523088 ], [ -72.597656, 11.523088 ], [ -72.597656, 11.695273 ], [ -72.421875, 11.695273 ], [ -72.421875, 11.867351 ], [ -72.246094, 11.867351 ], [ -72.246094, 12.039321 ], [ -72.070312, 12.039321 ], [ -72.070312, 12.211180 ], [ -71.718750, 12.211180 ], [ -71.718750, 12.382928 ], [ -71.367188, 12.382928 ], [ -71.367188, 12.211180 ], [ -71.191406, 12.211180 ], [ -71.191406, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.367188, 12.382928 ], [ -71.367188, 12.211180 ], [ -71.191406, 12.211180 ], [ -71.191406, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.695273 ], [ -71.542969, 11.695273 ], [ -71.542969, 11.523088 ], [ -71.894531, 11.523088 ], [ -71.894531, 11.350797 ], [ -72.070312, 11.350797 ], [ -72.070312, 11.178402 ], [ -72.246094, 11.178402 ], [ -72.246094, 11.005904 ], [ -72.421875, 11.005904 ], [ -72.421875, 10.833306 ], [ -72.597656, 10.833306 ], [ -72.597656, 10.660608 ], [ -72.773438, 10.660608 ], [ -72.773438, 10.487812 ], [ -72.949219, 10.487812 ], [ -72.949219, 9.622414 ], [ -73.125000, 9.622414 ], [ -73.125000, 9.275622 ], [ -73.300781, 9.275622 ], [ -73.300781, 9.102097 ], [ -72.773438, 9.102097 ], [ -72.773438, 8.754795 ], [ -72.597656, 8.754795 ], [ -72.597656, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.362467 ], [ -72.246094, 7.362467 ], [ -72.246094, 7.188101 ], [ -72.070312, 7.188101 ], [ -72.070312, 7.013668 ], [ -70.136719, 7.013668 ], [ -70.136719, 6.839170 ], [ -69.960938, 6.839170 ], [ -69.960938, 6.664608 ], [ -69.785156, 6.664608 ], [ -69.785156, 6.315299 ], [ -69.609375, 6.315299 ], [ -69.609375, 6.140555 ], [ -67.851562, 6.140555 ], [ -67.851562, 6.315299 ], [ -67.675781, 6.315299 ], [ -67.675781, 6.140555 ], [ -67.324219, 6.140555 ], [ -67.324219, 5.790897 ], [ -67.500000, 5.790897 ], [ -67.500000, 5.441022 ], [ -67.675781, 5.441022 ], [ -67.675781, 4.915833 ], [ -67.851562, 4.915833 ], [ -67.851562, 4.214943 ], [ -67.675781, 4.214943 ], [ -67.675781, 3.688855 ], [ -67.500000, 3.688855 ], [ -67.500000, 3.513421 ], [ -67.324219, 3.513421 ], [ -67.324219, 3.162456 ], [ -67.500000, 3.162456 ], [ -67.500000, 2.986927 ], [ -67.675781, 2.986927 ], [ -67.675781, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 2.635789 ], [ -67.500000, 2.635789 ], [ -67.500000, 2.460181 ], [ -67.324219, 2.460181 ], [ -67.324219, 2.284551 ], [ -67.148438, 2.284551 ], [ -67.148438, 1.933227 ], [ -66.972656, 1.933227 ], [ -66.972656, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.406109 ], [ -67.324219, 1.406109 ], [ -67.324219, 1.933227 ], [ -67.675781, 1.933227 ], [ -67.675781, 1.757537 ], [ -69.785156, 1.757537 ], [ -69.785156, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.527336 ], [ -69.433594, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.527336 ], [ -69.960938, 0.527336 ], [ -69.960938, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.703107 ], [ -69.433594, -0.703107 ], [ -69.433594, -0.878872 ], [ -74.179688, -0.878872 ], [ -74.179688, -0.703107 ], [ -74.355469, -0.703107 ], [ -74.355469, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.351560 ], [ -74.882812, -0.351560 ], [ -74.882812, -0.175781 ], [ -75.761719, -0.175781 ], [ -75.761719, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.175781 ], [ -77.167969, 0.175781 ], [ -77.167969, 0.351560 ], [ -77.519531, 0.351560 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -78.222656, 0.878872 ], [ -78.222656, 1.054628 ], [ -78.574219, 1.054628 ], [ -78.574219, 1.230374 ], [ -78.925781, 1.230374 ], [ -78.925781, 1.757537 ], [ -78.574219, 1.757537 ], [ -78.574219, 1.933227 ], [ -78.750000, 1.933227 ], [ -78.750000, 2.284551 ], [ -78.574219, 2.284551 ], [ -78.574219, 2.460181 ], [ -78.398438, 2.460181 ], [ -78.398438, 2.635789 ], [ -77.871094, 2.635789 ], [ -77.871094, 2.811371 ], [ -77.695312, 2.811371 ], [ -77.695312, 3.162456 ], [ -77.519531, 3.162456 ], [ -77.519531, 3.337954 ], [ -77.343750, 3.337954 ], [ -77.343750, 3.688855 ], [ -77.167969, 3.688855 ], [ -77.167969, 3.864255 ], [ -77.519531, 3.864255 ], [ -77.519531, 4.390229 ], [ -77.343750, 4.390229 ], [ -77.343750, 5.090944 ], [ -77.519531, 5.090944 ], [ -77.519531, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.140555 ], [ -77.519531, 6.140555 ], [ -77.519531, 6.664608 ], [ -77.695312, 6.664608 ], [ -77.695312, 7.013668 ], [ -77.871094, 7.013668 ], [ -77.871094, 7.362467 ], [ -77.695312, 7.362467 ], [ -77.695312, 7.710992 ], [ -77.167969, 7.710992 ], [ -77.167969, 8.059230 ], [ -77.343750, 8.059230 ], [ -77.343750, 8.407168 ], [ -77.519531, 8.407168 ], [ -77.519531, 8.581021 ], [ -77.343750, 8.581021 ], [ -77.343750, 8.754795 ], [ -77.167969, 8.754795 ], [ -77.167969, 8.581021 ], [ -76.640625, 8.581021 ], [ -76.640625, 8.754795 ], [ -76.464844, 8.754795 ], [ -76.464844, 8.928487 ], [ -76.289062, 8.928487 ], [ -76.289062, 9.102097 ], [ -76.113281, 9.102097 ], [ -76.113281, 9.275622 ], [ -75.761719, 9.275622 ], [ -75.761719, 9.622414 ], [ -75.585938, 9.622414 ], [ -75.585938, 10.141932 ], [ -75.410156, 10.141932 ], [ -75.410156, 10.660608 ], [ -75.234375, 10.660608 ], [ -75.234375, 10.833306 ], [ -74.882812, 10.833306 ], [ -74.882812, 11.005904 ], [ -74.531250, 11.005904 ], [ -74.531250, 11.178402 ], [ -74.179688, 11.178402 ], [ -74.179688, 11.350797 ], [ -74.003906, 11.350797 ], [ -74.003906, 11.178402 ], [ -73.300781, 11.178402 ], [ -73.300781, 11.350797 ], [ -72.949219, 11.350797 ], [ -72.949219, 11.523088 ], [ -72.597656, 11.523088 ], [ -72.597656, 11.695273 ], [ -72.421875, 11.695273 ], [ -72.421875, 11.867351 ], [ -72.246094, 11.867351 ], [ -72.246094, 12.039321 ], [ -72.070312, 12.039321 ], [ -72.070312, 12.211180 ], [ -71.718750, 12.211180 ], [ -71.718750, 12.382928 ], [ -71.367188, 12.382928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.566406, 17.978733 ], [ -67.148438, 17.978733 ], [ -67.148438, 18.145852 ], [ -67.324219, 18.145852 ], [ -67.324219, 18.312811 ], [ -67.148438, 18.312811 ], [ -67.148438, 18.479609 ], [ -65.742188, 18.479609 ], [ -65.742188, 18.312811 ], [ -65.566406, 18.312811 ], [ -65.566406, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.742188, 18.479609 ], [ -65.742188, 18.312811 ], [ -65.566406, 18.312811 ], [ -65.566406, 17.978733 ], [ -67.148438, 17.978733 ], [ -67.148438, 18.145852 ], [ -67.324219, 18.145852 ], [ -67.324219, 18.312811 ], [ -67.148438, 18.312811 ], [ -67.148438, 18.479609 ], [ -65.742188, 18.479609 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.894531, 11.178402 ], [ -71.718750, 11.178402 ], [ -71.718750, 11.005904 ], [ -71.542969, 11.005904 ], [ -71.542969, 10.660608 ], [ -71.718750, 10.660608 ], [ -71.718750, 10.314919 ], [ -71.894531, 10.314919 ], [ -71.894531, 9.968851 ], [ -72.070312, 9.968851 ], [ -72.070312, 9.622414 ], [ -71.894531, 9.622414 ], [ -71.894531, 9.275622 ], [ -71.718750, 9.275622 ], [ -71.718750, 9.102097 ], [ -71.191406, 9.102097 ], [ -71.191406, 9.449062 ], [ -71.015625, 9.449062 ], [ -71.015625, 9.795678 ], [ -71.191406, 9.795678 ], [ -71.191406, 9.968851 ], [ -71.367188, 9.968851 ], [ -71.367188, 11.005904 ], [ -71.015625, 11.005904 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.350797 ], [ -70.136719, 11.350797 ], [ -70.136719, 11.523088 ], [ -70.312500, 11.523088 ], [ -70.312500, 11.867351 ], [ -70.136719, 11.867351 ], [ -70.136719, 12.039321 ], [ -69.785156, 12.039321 ], [ -69.785156, 11.695273 ], [ -69.609375, 11.695273 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.350797 ], [ -68.730469, 11.350797 ], [ -68.730469, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 11.005904 ], [ -68.378906, 11.005904 ], [ -68.378906, 10.833306 ], [ -68.203125, 10.833306 ], [ -68.203125, 10.487812 ], [ -66.621094, 10.487812 ], [ -66.621094, 10.660608 ], [ -66.269531, 10.660608 ], [ -66.269531, 10.487812 ], [ -66.093750, 10.487812 ], [ -66.093750, 10.314919 ], [ -65.917969, 10.314919 ], [ -65.917969, 10.141932 ], [ -64.511719, 10.141932 ], [ -64.511719, 10.314919 ], [ -64.335938, 10.314919 ], [ -64.335938, 10.660608 ], [ -62.226562, 10.660608 ], [ -62.226562, 10.487812 ], [ -62.753906, 10.487812 ], [ -62.753906, 10.314919 ], [ -62.578125, 10.314919 ], [ -62.578125, 9.968851 ], [ -62.050781, 9.968851 ], [ -62.050781, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.622414 ], [ -61.171875, 9.622414 ], [ -61.171875, 9.449062 ], [ -60.820312, 9.449062 ], [ -60.820312, 8.928487 ], [ -60.644531, 8.928487 ], [ -60.644531, 8.581021 ], [ -60.117188, 8.581021 ], [ -60.117188, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 8.233237 ], [ -59.941406, 8.233237 ], [ -59.941406, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 7.885147 ], [ -60.292969, 7.885147 ], [ -60.292969, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 7.536764 ], [ -60.644531, 7.536764 ], [ -60.644531, 7.188101 ], [ -60.468750, 7.188101 ], [ -60.468750, 7.013668 ], [ -60.292969, 7.013668 ], [ -60.292969, 6.839170 ], [ -60.644531, 6.839170 ], [ -60.644531, 6.664608 ], [ -61.171875, 6.664608 ], [ -61.171875, 6.140555 ], [ -61.347656, 6.140555 ], [ -61.347656, 5.790897 ], [ -61.171875, 5.790897 ], [ -61.171875, 5.615986 ], [ -60.996094, 5.615986 ], [ -60.996094, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 5.090944 ], [ -60.644531, 5.090944 ], [ -60.644531, 4.740675 ], [ -60.820312, 4.740675 ], [ -60.820312, 4.565474 ], [ -61.171875, 4.565474 ], [ -61.171875, 4.390229 ], [ -61.699219, 4.390229 ], [ -61.699219, 4.214943 ], [ -62.226562, 4.214943 ], [ -62.226562, 4.039618 ], [ -62.753906, 4.039618 ], [ -62.753906, 3.864255 ], [ -62.929688, 3.864255 ], [ -62.929688, 3.688855 ], [ -63.457031, 3.688855 ], [ -63.457031, 3.864255 ], [ -63.808594, 3.864255 ], [ -63.808594, 4.039618 ], [ -64.335938, 4.039618 ], [ -64.335938, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 3.864255 ], [ -64.335938, 3.864255 ], [ -64.335938, 2.460181 ], [ -63.457031, 2.460181 ], [ -63.457031, 2.108899 ], [ -63.808594, 2.108899 ], [ -63.808594, 1.933227 ], [ -64.160156, 1.933227 ], [ -64.160156, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.230374 ], [ -65.039062, 1.230374 ], [ -65.039062, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.878872 ], [ -65.566406, 0.878872 ], [ -65.566406, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 0.878872 ], [ -66.621094, 0.878872 ], [ -66.621094, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.406109 ], [ -66.972656, 1.406109 ], [ -66.972656, 1.933227 ], [ -67.148438, 1.933227 ], [ -67.148438, 2.284551 ], [ -67.324219, 2.284551 ], [ -67.324219, 2.460181 ], [ -67.500000, 2.460181 ], [ -67.500000, 2.635789 ], [ -67.851562, 2.635789 ], [ -67.851562, 2.811371 ], [ -67.675781, 2.811371 ], [ -67.675781, 2.986927 ], [ -67.500000, 2.986927 ], [ -67.500000, 3.162456 ], [ -67.324219, 3.162456 ], [ -67.324219, 3.513421 ], [ -67.500000, 3.513421 ], [ -67.500000, 3.688855 ], [ -67.675781, 3.688855 ], [ -67.675781, 4.214943 ], [ -67.851562, 4.214943 ], [ -67.851562, 4.915833 ], [ -67.675781, 4.915833 ], [ -67.675781, 5.441022 ], [ -67.500000, 5.441022 ], [ -67.500000, 5.790897 ], [ -67.324219, 5.790897 ], [ -67.324219, 6.140555 ], [ -67.675781, 6.140555 ], [ -67.675781, 6.315299 ], [ -67.851562, 6.315299 ], [ -67.851562, 6.140555 ], [ -69.609375, 6.140555 ], [ -69.609375, 6.315299 ], [ -69.785156, 6.315299 ], [ -69.785156, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 6.839170 ], [ -70.136719, 6.839170 ], [ -70.136719, 7.013668 ], [ -72.070312, 7.013668 ], [ -72.070312, 7.188101 ], [ -72.246094, 7.188101 ], [ -72.246094, 7.362467 ], [ -72.421875, 7.362467 ], [ -72.421875, 8.407168 ], [ -72.597656, 8.407168 ], [ -72.597656, 8.754795 ], [ -72.773438, 8.754795 ], [ -72.773438, 9.102097 ], [ -73.300781, 9.102097 ], [ -73.300781, 9.275622 ], [ -73.125000, 9.275622 ], [ -73.125000, 9.622414 ], [ -72.949219, 9.622414 ], [ -72.949219, 10.487812 ], [ -72.773438, 10.487812 ], [ -72.773438, 10.660608 ], [ -72.597656, 10.660608 ], [ -72.597656, 10.833306 ], [ -72.421875, 10.833306 ], [ -72.421875, 11.005904 ], [ -72.246094, 11.005904 ], [ -72.246094, 11.178402 ], [ -72.070312, 11.178402 ], [ -72.070312, 11.350797 ], [ -71.894531, 11.350797 ], [ -71.894531, 11.178402 ] ] ], [ [ [ -71.542969, 11.695273 ], [ -71.367188, 11.695273 ], [ -71.367188, 11.523088 ], [ -71.542969, 11.523088 ], [ -71.542969, 11.695273 ] ] ], [ [ [ -71.542969, 11.350797 ], [ -71.894531, 11.350797 ], [ -71.894531, 11.523088 ], [ -71.542969, 11.523088 ], [ -71.542969, 11.350797 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 12.039321 ], [ -69.785156, 11.695273 ], [ -69.609375, 11.695273 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.350797 ], [ -68.730469, 11.350797 ], [ -68.730469, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 11.005904 ], [ -68.378906, 11.005904 ], [ -68.378906, 10.833306 ], [ -68.203125, 10.833306 ], [ -68.203125, 10.487812 ], [ -66.621094, 10.487812 ], [ -66.621094, 10.660608 ], [ -66.269531, 10.660608 ], [ -66.269531, 10.487812 ], [ -66.093750, 10.487812 ], [ -66.093750, 10.314919 ], [ -65.917969, 10.314919 ], [ -65.917969, 10.141932 ], [ -64.511719, 10.141932 ], [ -64.511719, 10.314919 ], [ -64.335938, 10.314919 ], [ -64.335938, 10.660608 ], [ -62.226562, 10.660608 ], [ -62.226562, 10.487812 ], [ -62.753906, 10.487812 ], [ -62.753906, 10.314919 ], [ -62.578125, 10.314919 ], [ -62.578125, 9.968851 ], [ -62.050781, 9.968851 ], [ -62.050781, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.622414 ], [ -61.171875, 9.622414 ], [ -61.171875, 9.449062 ], [ -60.820312, 9.449062 ], [ -60.820312, 8.928487 ], [ -60.644531, 8.928487 ], [ -60.644531, 8.581021 ], [ -60.117188, 8.581021 ], [ -60.117188, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 8.233237 ], [ -59.941406, 8.233237 ], [ -59.941406, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 7.885147 ], [ -60.292969, 7.885147 ], [ -60.292969, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 7.536764 ], [ -60.644531, 7.536764 ], [ -60.644531, 7.188101 ], [ -60.468750, 7.188101 ], [ -60.468750, 7.013668 ], [ -60.292969, 7.013668 ], [ -60.292969, 6.839170 ], [ -60.644531, 6.839170 ], [ -60.644531, 6.664608 ], [ -61.171875, 6.664608 ], [ -61.171875, 6.140555 ], [ -61.347656, 6.140555 ], [ -61.347656, 5.790897 ], [ -61.171875, 5.790897 ], [ -61.171875, 5.615986 ], [ -60.996094, 5.615986 ], [ -60.996094, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 5.090944 ], [ -60.644531, 5.090944 ], [ -60.644531, 4.740675 ], [ -60.820312, 4.740675 ], [ -60.820312, 4.565474 ], [ -61.171875, 4.565474 ], [ -61.171875, 4.390229 ], [ -61.699219, 4.390229 ], [ -61.699219, 4.214943 ], [ -62.226562, 4.214943 ], [ -62.226562, 4.039618 ], [ -62.753906, 4.039618 ], [ -62.753906, 3.864255 ], [ -62.929688, 3.864255 ], [ -62.929688, 3.688855 ], [ -63.457031, 3.688855 ], [ -63.457031, 3.864255 ], [ -63.808594, 3.864255 ], [ -63.808594, 4.039618 ], [ -64.335938, 4.039618 ], [ -64.335938, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 3.864255 ], [ -64.335938, 3.864255 ], [ -64.335938, 2.460181 ], [ -63.457031, 2.460181 ], [ -63.457031, 2.108899 ], [ -63.808594, 2.108899 ], [ -63.808594, 1.933227 ], [ -64.160156, 1.933227 ], [ -64.160156, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.230374 ], [ -65.039062, 1.230374 ], [ -65.039062, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.878872 ], [ -65.566406, 0.878872 ], [ -65.566406, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 0.878872 ], [ -66.621094, 0.878872 ], [ -66.621094, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.406109 ], [ -66.972656, 1.406109 ], [ -66.972656, 1.933227 ], [ -67.148438, 1.933227 ], [ -67.148438, 2.284551 ], [ -67.324219, 2.284551 ], [ -67.324219, 2.460181 ], [ -67.500000, 2.460181 ], [ -67.500000, 2.635789 ], [ -67.851562, 2.635789 ], [ -67.851562, 2.811371 ], [ -67.675781, 2.811371 ], [ -67.675781, 2.986927 ], [ -67.500000, 2.986927 ], [ -67.500000, 3.162456 ], [ -67.324219, 3.162456 ], [ -67.324219, 3.513421 ], [ -67.500000, 3.513421 ], [ -67.500000, 3.688855 ], [ -67.675781, 3.688855 ], [ -67.675781, 4.214943 ], [ -67.851562, 4.214943 ], [ -67.851562, 4.915833 ], [ -67.675781, 4.915833 ], [ -67.675781, 5.441022 ], [ -67.500000, 5.441022 ], [ -67.500000, 5.790897 ], [ -67.324219, 5.790897 ], [ -67.324219, 6.140555 ], [ -67.675781, 6.140555 ], [ -67.675781, 6.315299 ], [ -67.851562, 6.315299 ], [ -67.851562, 6.140555 ], [ -69.609375, 6.140555 ], [ -69.609375, 6.315299 ], [ -69.785156, 6.315299 ], [ -69.785156, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 6.839170 ], [ -70.136719, 6.839170 ], [ -70.136719, 7.013668 ], [ -72.070312, 7.013668 ], [ -72.070312, 7.188101 ], [ -72.246094, 7.188101 ], [ -72.246094, 7.362467 ], [ -72.421875, 7.362467 ], [ -72.421875, 8.407168 ], [ -72.597656, 8.407168 ], [ -72.597656, 8.754795 ], [ -72.773438, 8.754795 ], [ -72.773438, 9.102097 ], [ -73.300781, 9.102097 ], [ -73.300781, 9.275622 ], [ -73.125000, 9.275622 ], [ -73.125000, 9.622414 ], [ -72.949219, 9.622414 ], [ -72.949219, 10.487812 ], [ -72.773438, 10.487812 ], [ -72.773438, 10.660608 ], [ -72.597656, 10.660608 ], [ -72.597656, 10.833306 ], [ -72.421875, 10.833306 ], [ -72.421875, 11.005904 ], [ -72.246094, 11.005904 ], [ -72.246094, 11.178402 ], [ -72.070312, 11.178402 ], [ -72.070312, 11.350797 ], [ -71.894531, 11.350797 ], [ -71.894531, 11.178402 ], [ -71.718750, 11.178402 ], [ -71.718750, 11.005904 ], [ -71.542969, 11.005904 ], [ -71.542969, 10.660608 ], [ -71.718750, 10.660608 ], [ -71.718750, 10.314919 ], [ -71.894531, 10.314919 ], [ -71.894531, 9.968851 ], [ -72.070312, 9.968851 ], [ -72.070312, 9.622414 ], [ -71.894531, 9.622414 ], [ -71.894531, 9.275622 ], [ -71.718750, 9.275622 ], [ -71.718750, 9.102097 ], [ -71.191406, 9.102097 ], [ -71.191406, 9.449062 ], [ -71.015625, 9.449062 ], [ -71.015625, 9.795678 ], [ -71.191406, 9.795678 ], [ -71.191406, 9.968851 ], [ -71.367188, 9.968851 ], [ -71.367188, 11.005904 ], [ -71.015625, 11.005904 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.350797 ], [ -70.136719, 11.350797 ], [ -70.136719, 11.523088 ], [ -70.312500, 11.523088 ], [ -70.312500, 11.867351 ], [ -70.136719, 11.867351 ], [ -70.136719, 12.039321 ], [ -69.785156, 12.039321 ] ] ], [ [ [ -71.542969, 11.523088 ], [ -71.542969, 11.350797 ], [ -71.894531, 11.350797 ], [ -71.894531, 11.523088 ], [ -71.542969, 11.523088 ] ] ], [ [ [ -71.367188, 11.523088 ], [ -71.542969, 11.523088 ], [ -71.542969, 11.695273 ], [ -71.367188, 11.695273 ], [ -71.367188, 11.523088 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.820312, 10.487812 ], [ -60.996094, 10.487812 ], [ -60.996094, 10.141932 ], [ -61.171875, 10.141932 ], [ -61.171875, 9.968851 ], [ -61.875000, 9.968851 ], [ -61.875000, 10.141932 ], [ -61.699219, 10.141932 ], [ -61.699219, 10.833306 ], [ -60.820312, 10.833306 ], [ -60.820312, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.820312, 10.833306 ], [ -60.820312, 10.487812 ], [ -60.996094, 10.487812 ], [ -60.996094, 10.141932 ], [ -61.171875, 10.141932 ], [ -61.171875, 9.968851 ], [ -61.875000, 9.968851 ], [ -61.875000, 10.141932 ], [ -61.699219, 10.141932 ], [ -61.699219, 10.833306 ], [ -60.820312, 10.833306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 7.885147 ], [ -58.886719, 7.885147 ], [ -58.886719, 7.710992 ], [ -58.710938, 7.710992 ], [ -58.710938, 7.362467 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.007812, 6.839170 ], [ -58.007812, 6.664608 ], [ -57.832031, 6.664608 ], [ -57.832031, 6.489983 ], [ -57.656250, 6.489983 ], [ -57.656250, 6.315299 ], [ -57.480469, 6.315299 ], [ -57.480469, 6.140555 ], [ -57.304688, 6.140555 ], [ -57.304688, 5.965754 ], [ -57.128906, 5.965754 ], [ -57.128906, 5.441022 ], [ -57.304688, 5.441022 ], [ -57.304688, 4.915833 ], [ -57.656250, 4.915833 ], [ -57.656250, 4.740675 ], [ -57.832031, 4.740675 ], [ -57.832031, 4.214943 ], [ -58.007812, 4.214943 ], [ -58.007812, 3.864255 ], [ -57.832031, 3.864255 ], [ -57.832031, 3.513421 ], [ -57.656250, 3.513421 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.304688, 2.986927 ], [ -57.128906, 2.986927 ], [ -57.128906, 2.635789 ], [ -56.953125, 2.635789 ], [ -56.953125, 2.284551 ], [ -56.777344, 2.284551 ], [ -56.777344, 1.933227 ], [ -57.304688, 1.933227 ], [ -57.304688, 1.757537 ], [ -57.832031, 1.757537 ], [ -57.832031, 1.581830 ], [ -58.183594, 1.581830 ], [ -58.183594, 1.406109 ], [ -58.359375, 1.406109 ], [ -58.359375, 1.230374 ], [ -59.238281, 1.230374 ], [ -59.238281, 1.406109 ], [ -59.414062, 1.406109 ], [ -59.414062, 1.581830 ], [ -59.589844, 1.581830 ], [ -59.589844, 1.933227 ], [ -59.765625, 1.933227 ], [ -59.765625, 2.460181 ], [ -59.941406, 2.460181 ], [ -59.941406, 3.162456 ], [ -59.765625, 3.162456 ], [ -59.765625, 3.864255 ], [ -59.589844, 3.864255 ], [ -59.589844, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.390229 ], [ -60.117188, 4.390229 ], [ -60.117188, 4.740675 ], [ -59.941406, 4.740675 ], [ -59.941406, 5.090944 ], [ -60.292969, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.996094, 5.266008 ], [ -60.996094, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.790897 ], [ -61.347656, 5.790897 ], [ -61.347656, 6.140555 ], [ -61.171875, 6.140555 ], [ -61.171875, 6.664608 ], [ -60.644531, 6.664608 ], [ -60.644531, 6.839170 ], [ -60.292969, 6.839170 ], [ -60.292969, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.188101 ], [ -60.644531, 7.188101 ], [ -60.644531, 7.536764 ], [ -60.468750, 7.536764 ], [ -60.468750, 7.710992 ], [ -60.292969, 7.710992 ], [ -60.292969, 7.885147 ], [ -60.117188, 7.885147 ], [ -60.117188, 8.059230 ], [ -59.941406, 8.059230 ], [ -59.941406, 8.233237 ], [ -59.414062, 8.233237 ], [ -59.414062, 8.059230 ], [ -59.062500, 8.059230 ], [ -59.062500, 7.885147 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.414062, 8.233237 ], [ -59.414062, 8.059230 ], [ -59.062500, 8.059230 ], [ -59.062500, 7.885147 ], [ -58.886719, 7.885147 ], [ -58.886719, 7.710992 ], [ -58.710938, 7.710992 ], [ -58.710938, 7.362467 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.007812, 6.839170 ], [ -58.007812, 6.664608 ], [ -57.832031, 6.664608 ], [ -57.832031, 6.489983 ], [ -57.656250, 6.489983 ], [ -57.656250, 6.315299 ], [ -57.480469, 6.315299 ], [ -57.480469, 6.140555 ], [ -57.304688, 6.140555 ], [ -57.304688, 5.965754 ], [ -57.128906, 5.965754 ], [ -57.128906, 5.441022 ], [ -57.304688, 5.441022 ], [ -57.304688, 4.915833 ], [ -57.656250, 4.915833 ], [ -57.656250, 4.740675 ], [ -57.832031, 4.740675 ], [ -57.832031, 4.214943 ], [ -58.007812, 4.214943 ], [ -58.007812, 3.864255 ], [ -57.832031, 3.864255 ], [ -57.832031, 3.513421 ], [ -57.656250, 3.513421 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.304688, 2.986927 ], [ -57.128906, 2.986927 ], [ -57.128906, 2.635789 ], [ -56.953125, 2.635789 ], [ -56.953125, 2.284551 ], [ -56.777344, 2.284551 ], [ -56.777344, 1.933227 ], [ -57.304688, 1.933227 ], [ -57.304688, 1.757537 ], [ -57.832031, 1.757537 ], [ -57.832031, 1.581830 ], [ -58.183594, 1.581830 ], [ -58.183594, 1.406109 ], [ -58.359375, 1.406109 ], [ -58.359375, 1.230374 ], [ -59.238281, 1.230374 ], [ -59.238281, 1.406109 ], [ -59.414062, 1.406109 ], [ -59.414062, 1.581830 ], [ -59.589844, 1.581830 ], [ -59.589844, 1.933227 ], [ -59.765625, 1.933227 ], [ -59.765625, 2.460181 ], [ -59.941406, 2.460181 ], [ -59.941406, 3.162456 ], [ -59.765625, 3.162456 ], [ -59.765625, 3.864255 ], [ -59.589844, 3.864255 ], [ -59.589844, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.390229 ], [ -60.117188, 4.390229 ], [ -60.117188, 4.740675 ], [ -59.941406, 4.740675 ], [ -59.941406, 5.090944 ], [ -60.292969, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.996094, 5.266008 ], [ -60.996094, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.790897 ], [ -61.347656, 5.790897 ], [ -61.347656, 6.140555 ], [ -61.171875, 6.140555 ], [ -61.171875, 6.664608 ], [ -60.644531, 6.664608 ], [ -60.644531, 6.839170 ], [ -60.292969, 6.839170 ], [ -60.292969, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.188101 ], [ -60.644531, 7.188101 ], [ -60.644531, 7.536764 ], [ -60.468750, 7.536764 ], [ -60.468750, 7.710992 ], [ -60.292969, 7.710992 ], [ -60.292969, 7.885147 ], [ -60.117188, 7.885147 ], [ -60.117188, 8.059230 ], [ -59.941406, 8.059230 ], [ -59.941406, 8.233237 ], [ -59.414062, 8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.615986 ], [ -54.140625, 5.615986 ], [ -54.140625, 5.266008 ], [ -54.316406, 5.266008 ], [ -54.316406, 4.915833 ], [ -54.492188, 4.915833 ], [ -54.492188, 4.565474 ], [ -54.316406, 4.565474 ], [ -54.316406, 4.039618 ], [ -54.140625, 4.039618 ], [ -54.140625, 3.688855 ], [ -53.964844, 3.688855 ], [ -53.964844, 3.337954 ], [ -54.140625, 3.337954 ], [ -54.140625, 2.986927 ], [ -54.316406, 2.986927 ], [ -54.316406, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 2.284551 ], [ -54.843750, 2.284551 ], [ -54.843750, 2.460181 ], [ -55.898438, 2.460181 ], [ -55.898438, 2.284551 ], [ -56.074219, 2.284551 ], [ -56.074219, 2.108899 ], [ -55.898438, 2.108899 ], [ -55.898438, 1.933227 ], [ -56.074219, 1.933227 ], [ -56.074219, 1.757537 ], [ -56.425781, 1.757537 ], [ -56.425781, 1.933227 ], [ -56.777344, 1.933227 ], [ -56.777344, 2.284551 ], [ -56.953125, 2.284551 ], [ -56.953125, 2.635789 ], [ -57.128906, 2.635789 ], [ -57.128906, 2.986927 ], [ -57.304688, 2.986927 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -57.656250, 3.513421 ], [ -57.832031, 3.513421 ], [ -57.832031, 3.864255 ], [ -58.007812, 3.864255 ], [ -58.007812, 4.214943 ], [ -57.832031, 4.214943 ], [ -57.832031, 4.740675 ], [ -57.656250, 4.740675 ], [ -57.656250, 4.915833 ], [ -57.304688, 4.915833 ], [ -57.304688, 5.441022 ], [ -57.128906, 5.441022 ], [ -57.128906, 5.965754 ], [ -56.601562, 5.965754 ], [ -56.601562, 5.790897 ], [ -55.898438, 5.790897 ], [ -55.898438, 5.965754 ], [ -54.667969, 5.965754 ], [ -54.667969, 5.790897 ], [ -53.964844, 5.790897 ], [ -53.964844, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.667969, 5.965754 ], [ -54.667969, 5.790897 ], [ -53.964844, 5.790897 ], [ -53.964844, 5.615986 ], [ -54.140625, 5.615986 ], [ -54.140625, 5.266008 ], [ -54.316406, 5.266008 ], [ -54.316406, 4.915833 ], [ -54.492188, 4.915833 ], [ -54.492188, 4.565474 ], [ -54.316406, 4.565474 ], [ -54.316406, 4.039618 ], [ -54.140625, 4.039618 ], [ -54.140625, 3.688855 ], [ -53.964844, 3.688855 ], [ -53.964844, 3.337954 ], [ -54.140625, 3.337954 ], [ -54.140625, 2.986927 ], [ -54.316406, 2.986927 ], [ -54.316406, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 2.284551 ], [ -54.843750, 2.284551 ], [ -54.843750, 2.460181 ], [ -55.898438, 2.460181 ], [ -55.898438, 2.284551 ], [ -56.074219, 2.284551 ], [ -56.074219, 2.108899 ], [ -55.898438, 2.108899 ], [ -55.898438, 1.933227 ], [ -56.074219, 1.933227 ], [ -56.074219, 1.757537 ], [ -56.425781, 1.757537 ], [ -56.425781, 1.933227 ], [ -56.777344, 1.933227 ], [ -56.777344, 2.284551 ], [ -56.953125, 2.284551 ], [ -56.953125, 2.635789 ], [ -57.128906, 2.635789 ], [ -57.128906, 2.986927 ], [ -57.304688, 2.986927 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -57.656250, 3.513421 ], [ -57.832031, 3.513421 ], [ -57.832031, 3.864255 ], [ -58.007812, 3.864255 ], [ -58.007812, 4.214943 ], [ -57.832031, 4.214943 ], [ -57.832031, 4.740675 ], [ -57.656250, 4.740675 ], [ -57.656250, 4.915833 ], [ -57.304688, 4.915833 ], [ -57.304688, 5.441022 ], [ -57.128906, 5.441022 ], [ -57.128906, 5.965754 ], [ -56.601562, 5.965754 ], [ -56.601562, 5.790897 ], [ -55.898438, 5.790897 ], [ -55.898438, 5.965754 ], [ -54.667969, 5.965754 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.734375, 5.090944 ], [ -52.558594, 5.090944 ], [ -52.558594, 4.915833 ], [ -52.207031, 4.915833 ], [ -52.207031, 4.740675 ], [ -52.031250, 4.740675 ], [ -52.031250, 4.565474 ], [ -51.855469, 4.565474 ], [ -51.855469, 4.390229 ], [ -51.679688, 4.390229 ], [ -51.679688, 4.039618 ], [ -51.855469, 4.039618 ], [ -51.855469, 3.688855 ], [ -52.031250, 3.688855 ], [ -52.031250, 3.337954 ], [ -52.207031, 3.337954 ], [ -52.207031, 2.986927 ], [ -52.382812, 2.986927 ], [ -52.382812, 2.635789 ], [ -52.558594, 2.635789 ], [ -52.558594, 2.284551 ], [ -52.734375, 2.284551 ], [ -52.734375, 2.108899 ], [ -53.613281, 2.108899 ], [ -53.613281, 2.284551 ], [ -53.964844, 2.284551 ], [ -53.964844, 2.108899 ], [ -54.492188, 2.108899 ], [ -54.492188, 2.460181 ], [ -54.316406, 2.460181 ], [ -54.316406, 2.986927 ], [ -54.140625, 2.986927 ], [ -54.140625, 3.337954 ], [ -53.964844, 3.337954 ], [ -53.964844, 3.688855 ], [ -54.140625, 3.688855 ], [ -54.140625, 4.039618 ], [ -54.316406, 4.039618 ], [ -54.316406, 4.565474 ], [ -54.492188, 4.565474 ], [ -54.492188, 4.915833 ], [ -54.316406, 4.915833 ], [ -54.316406, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 5.615986 ], [ -53.437500, 5.615986 ], [ -53.437500, 5.441022 ], [ -52.910156, 5.441022 ], [ -52.910156, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 5.090944 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.437500, 5.615986 ], [ -53.437500, 5.441022 ], [ -52.910156, 5.441022 ], [ -52.910156, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 5.090944 ], [ -52.558594, 5.090944 ], [ -52.558594, 4.915833 ], [ -52.207031, 4.915833 ], [ -52.207031, 4.740675 ], [ -52.031250, 4.740675 ], [ -52.031250, 4.565474 ], [ -51.855469, 4.565474 ], [ -51.855469, 4.390229 ], [ -51.679688, 4.390229 ], [ -51.679688, 4.039618 ], [ -51.855469, 4.039618 ], [ -51.855469, 3.688855 ], [ -52.031250, 3.688855 ], [ -52.031250, 3.337954 ], [ -52.207031, 3.337954 ], [ -52.207031, 2.986927 ], [ -52.382812, 2.986927 ], [ -52.382812, 2.635789 ], [ -52.558594, 2.635789 ], [ -52.558594, 2.284551 ], [ -52.734375, 2.284551 ], [ -52.734375, 2.108899 ], [ -53.613281, 2.108899 ], [ -53.613281, 2.284551 ], [ -53.964844, 2.284551 ], [ -53.964844, 2.108899 ], [ -54.492188, 2.108899 ], [ -54.492188, 2.460181 ], [ -54.316406, 2.460181 ], [ -54.316406, 2.986927 ], [ -54.140625, 2.986927 ], [ -54.140625, 3.337954 ], [ -53.964844, 3.337954 ], [ -53.964844, 3.688855 ], [ -54.140625, 3.688855 ], [ -54.140625, 4.039618 ], [ -54.316406, 4.039618 ], [ -54.316406, 4.565474 ], [ -54.492188, 4.565474 ], [ -54.492188, 4.915833 ], [ -54.316406, 4.915833 ], [ -54.316406, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 5.615986 ], [ -53.437500, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.222656, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.175781 ], [ -75.937500, 0.175781 ], [ -75.937500, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, -0.175781 ], [ -75.410156, -0.175781 ], [ -75.410156, -0.527336 ], [ -75.234375, -0.527336 ], [ -75.234375, -0.878872 ], [ -80.507812, -0.878872 ], [ -80.507812, -0.703107 ], [ -80.332031, -0.703107 ], [ -80.332031, -0.175781 ], [ -80.156250, -0.175781 ], [ -80.156250, 0.175781 ], [ -79.980469, 0.175781 ], [ -79.980469, 0.527336 ], [ -80.156250, 0.527336 ], [ -80.156250, 0.703107 ], [ -79.980469, 0.703107 ], [ -79.980469, 0.878872 ], [ -79.628906, 0.878872 ], [ -79.628906, 1.054628 ], [ -79.277344, 1.054628 ], [ -79.277344, 1.230374 ], [ -78.574219, 1.230374 ], [ -78.574219, 1.054628 ], [ -78.222656, 1.054628 ], [ -78.222656, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.574219, 1.230374 ], [ -78.574219, 1.054628 ], [ -78.222656, 1.054628 ], [ -78.222656, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.175781 ], [ -75.937500, 0.175781 ], [ -75.937500, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, -0.175781 ], [ -75.410156, -0.175781 ], [ -75.410156, -0.527336 ], [ -75.234375, -0.527336 ], [ -75.234375, -0.878872 ], [ -80.507812, -0.878872 ], [ -80.507812, -0.703107 ], [ -80.332031, -0.703107 ], [ -80.332031, -0.175781 ], [ -80.156250, -0.175781 ], [ -80.156250, 0.175781 ], [ -79.980469, 0.175781 ], [ -79.980469, 0.527336 ], [ -80.156250, 0.527336 ], [ -80.156250, 0.703107 ], [ -79.980469, 0.703107 ], [ -79.980469, 0.878872 ], [ -79.628906, 0.878872 ], [ -79.628906, 1.054628 ], [ -79.277344, 1.054628 ], [ -79.277344, 1.230374 ], [ -78.574219, 1.230374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.527336 ], [ -74.355469, -0.527336 ], [ -74.355469, -0.703107 ], [ -74.179688, -0.703107 ], [ -74.179688, -0.878872 ], [ -75.234375, -0.878872 ], [ -75.234375, -0.527336 ], [ -75.410156, -0.527336 ], [ -75.410156, -0.175781 ], [ -74.882812, -0.175781 ], [ -74.882812, -0.351560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.175781 ], [ -74.882812, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.527336 ], [ -74.355469, -0.527336 ], [ -74.355469, -0.703107 ], [ -74.179688, -0.703107 ], [ -74.179688, -0.878872 ], [ -75.234375, -0.878872 ], [ -75.234375, -0.527336 ], [ -75.410156, -0.527336 ], [ -75.410156, -0.175781 ], [ -74.882812, -0.175781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -47.109375, -0.878872 ], [ -47.988281, -0.878872 ], [ -47.988281, -0.703107 ], [ -47.812500, -0.703107 ], [ -47.812500, -0.527336 ], [ -47.636719, -0.527336 ], [ -47.636719, -0.703107 ], [ -47.109375, -0.703107 ], [ -47.109375, -0.878872 ] ] ], [ [ [ -59.765625, 4.214943 ], [ -59.589844, 4.214943 ], [ -59.589844, 3.864255 ], [ -59.765625, 3.864255 ], [ -59.765625, 3.162456 ], [ -59.941406, 3.162456 ], [ -59.941406, 2.460181 ], [ -59.765625, 2.460181 ], [ -59.765625, 1.933227 ], [ -59.589844, 1.933227 ], [ -59.589844, 1.581830 ], [ -59.414062, 1.581830 ], [ -59.414062, 1.406109 ], [ -59.238281, 1.406109 ], [ -59.238281, 1.230374 ], [ -58.359375, 1.230374 ], [ -58.359375, 1.406109 ], [ -58.183594, 1.406109 ], [ -58.183594, 1.581830 ], [ -57.832031, 1.581830 ], [ -57.832031, 1.757537 ], [ -57.304688, 1.757537 ], [ -57.304688, 1.933227 ], [ -56.425781, 1.933227 ], [ -56.425781, 1.757537 ], [ -56.074219, 1.757537 ], [ -56.074219, 1.933227 ], [ -55.898438, 1.933227 ], [ -55.898438, 2.108899 ], [ -56.074219, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.898438, 2.284551 ], [ -55.898438, 2.460181 ], [ -54.843750, 2.460181 ], [ -54.843750, 2.284551 ], [ -54.492188, 2.284551 ], [ -54.492188, 2.108899 ], [ -53.964844, 2.108899 ], [ -53.964844, 2.284551 ], [ -53.613281, 2.284551 ], [ -53.613281, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.284551 ], [ -52.558594, 2.284551 ], [ -52.558594, 2.635789 ], [ -52.382812, 2.635789 ], [ -52.382812, 2.986927 ], [ -52.207031, 2.986927 ], [ -52.207031, 3.337954 ], [ -52.031250, 3.337954 ], [ -52.031250, 3.688855 ], [ -51.855469, 3.688855 ], [ -51.855469, 4.039618 ], [ -51.679688, 4.039618 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.864255 ], [ -51.152344, 3.864255 ], [ -51.152344, 3.337954 ], [ -50.976562, 3.337954 ], [ -50.976562, 2.986927 ], [ -50.800781, 2.986927 ], [ -50.800781, 2.460181 ], [ -50.625000, 2.460181 ], [ -50.625000, 2.108899 ], [ -50.449219, 2.108899 ], [ -50.449219, 1.933227 ], [ -50.273438, 1.933227 ], [ -50.273438, 1.757537 ], [ -49.921875, 1.757537 ], [ -49.921875, 0.878872 ], [ -50.097656, 0.878872 ], [ -50.097656, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.449219, 0.351560 ], [ -50.449219, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -0.527336 ], [ -48.515625, -0.527336 ], [ -48.515625, -0.878872 ], [ -69.433594, -0.878872 ], [ -69.433594, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -69.960938, -0.351560 ], [ -69.960938, 0.527336 ], [ -69.609375, 0.527336 ], [ -69.609375, 0.703107 ], [ -69.433594, 0.703107 ], [ -69.433594, 0.527336 ], [ -69.257812, 0.527336 ], [ -69.257812, 1.054628 ], [ -69.785156, 1.054628 ], [ -69.785156, 1.757537 ], [ -67.675781, 1.757537 ], [ -67.675781, 1.933227 ], [ -67.324219, 1.933227 ], [ -67.324219, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.054628 ], [ -66.621094, 1.054628 ], [ -66.621094, 0.878872 ], [ -66.445312, 0.878872 ], [ -66.445312, 0.703107 ], [ -65.566406, 0.703107 ], [ -65.566406, 0.878872 ], [ -65.390625, 0.878872 ], [ -65.390625, 1.054628 ], [ -65.039062, 1.054628 ], [ -65.039062, 1.230374 ], [ -64.687500, 1.230374 ], [ -64.687500, 1.406109 ], [ -64.160156, 1.406109 ], [ -64.160156, 1.933227 ], [ -63.808594, 1.933227 ], [ -63.808594, 2.108899 ], [ -63.457031, 2.108899 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.460181 ], [ -64.335938, 3.864255 ], [ -64.687500, 3.864255 ], [ -64.687500, 4.214943 ], [ -64.335938, 4.214943 ], [ -64.335938, 4.039618 ], [ -63.808594, 4.039618 ], [ -63.808594, 3.864255 ], [ -63.457031, 3.864255 ], [ -63.457031, 3.688855 ], [ -62.929688, 3.688855 ], [ -62.929688, 3.864255 ], [ -62.753906, 3.864255 ], [ -62.753906, 4.039618 ], [ -62.226562, 4.039618 ], [ -62.226562, 4.214943 ], [ -61.699219, 4.214943 ], [ -61.699219, 4.390229 ], [ -61.171875, 4.390229 ], [ -61.171875, 4.565474 ], [ -60.820312, 4.565474 ], [ -60.820312, 4.740675 ], [ -60.644531, 4.740675 ], [ -60.644531, 5.090944 ], [ -60.820312, 5.090944 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ], [ -60.292969, 5.090944 ], [ -59.941406, 5.090944 ], [ -59.941406, 4.740675 ], [ -60.117188, 4.740675 ], [ -60.117188, 4.390229 ], [ -59.765625, 4.390229 ], [ -59.765625, 4.214943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.292969, 5.266008 ], [ -60.292969, 5.090944 ], [ -59.941406, 5.090944 ], [ -59.941406, 4.740675 ], [ -60.117188, 4.740675 ], [ -60.117188, 4.390229 ], [ -59.765625, 4.390229 ], [ -59.765625, 4.214943 ], [ -59.589844, 4.214943 ], [ -59.589844, 3.864255 ], [ -59.765625, 3.864255 ], [ -59.765625, 3.162456 ], [ -59.941406, 3.162456 ], [ -59.941406, 2.460181 ], [ -59.765625, 2.460181 ], [ -59.765625, 1.933227 ], [ -59.589844, 1.933227 ], [ -59.589844, 1.581830 ], [ -59.414062, 1.581830 ], [ -59.414062, 1.406109 ], [ -59.238281, 1.406109 ], [ -59.238281, 1.230374 ], [ -58.359375, 1.230374 ], [ -58.359375, 1.406109 ], [ -58.183594, 1.406109 ], [ -58.183594, 1.581830 ], [ -57.832031, 1.581830 ], [ -57.832031, 1.757537 ], [ -57.304688, 1.757537 ], [ -57.304688, 1.933227 ], [ -56.425781, 1.933227 ], [ -56.425781, 1.757537 ], [ -56.074219, 1.757537 ], [ -56.074219, 1.933227 ], [ -55.898438, 1.933227 ], [ -55.898438, 2.108899 ], [ -56.074219, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.898438, 2.284551 ], [ -55.898438, 2.460181 ], [ -54.843750, 2.460181 ], [ -54.843750, 2.284551 ], [ -54.492188, 2.284551 ], [ -54.492188, 2.108899 ], [ -53.964844, 2.108899 ], [ -53.964844, 2.284551 ], [ -53.613281, 2.284551 ], [ -53.613281, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.284551 ], [ -52.558594, 2.284551 ], [ -52.558594, 2.635789 ], [ -52.382812, 2.635789 ], [ -52.382812, 2.986927 ], [ -52.207031, 2.986927 ], [ -52.207031, 3.337954 ], [ -52.031250, 3.337954 ], [ -52.031250, 3.688855 ], [ -51.855469, 3.688855 ], [ -51.855469, 4.039618 ], [ -51.679688, 4.039618 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.864255 ], [ -51.152344, 3.864255 ], [ -51.152344, 3.337954 ], [ -50.976562, 3.337954 ], [ -50.976562, 2.986927 ], [ -50.800781, 2.986927 ], [ -50.800781, 2.460181 ], [ -50.625000, 2.460181 ], [ -50.625000, 2.108899 ], [ -50.449219, 2.108899 ], [ -50.449219, 1.933227 ], [ -50.273438, 1.933227 ], [ -50.273438, 1.757537 ], [ -49.921875, 1.757537 ], [ -49.921875, 0.878872 ], [ -50.097656, 0.878872 ], [ -50.097656, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.449219, 0.351560 ], [ -50.449219, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -0.527336 ], [ -48.515625, -0.527336 ], [ -48.515625, -0.878872 ], [ -69.433594, -0.878872 ], [ -69.433594, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -69.960938, -0.351560 ], [ -69.960938, 0.527336 ], [ -69.609375, 0.527336 ], [ -69.609375, 0.703107 ], [ -69.433594, 0.703107 ], [ -69.433594, 0.527336 ], [ -69.257812, 0.527336 ], [ -69.257812, 1.054628 ], [ -69.785156, 1.054628 ], [ -69.785156, 1.757537 ], [ -67.675781, 1.757537 ], [ -67.675781, 1.933227 ], [ -67.324219, 1.933227 ], [ -67.324219, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.054628 ], [ -66.621094, 1.054628 ], [ -66.621094, 0.878872 ], [ -66.445312, 0.878872 ], [ -66.445312, 0.703107 ], [ -65.566406, 0.703107 ], [ -65.566406, 0.878872 ], [ -65.390625, 0.878872 ], [ -65.390625, 1.054628 ], [ -65.039062, 1.054628 ], [ -65.039062, 1.230374 ], [ -64.687500, 1.230374 ], [ -64.687500, 1.406109 ], [ -64.160156, 1.406109 ], [ -64.160156, 1.933227 ], [ -63.808594, 1.933227 ], [ -63.808594, 2.108899 ], [ -63.457031, 2.108899 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.460181 ], [ -64.335938, 3.864255 ], [ -64.687500, 3.864255 ], [ -64.687500, 4.214943 ], [ -64.335938, 4.214943 ], [ -64.335938, 4.039618 ], [ -63.808594, 4.039618 ], [ -63.808594, 3.864255 ], [ -63.457031, 3.864255 ], [ -63.457031, 3.688855 ], [ -62.929688, 3.688855 ], [ -62.929688, 3.864255 ], [ -62.753906, 3.864255 ], [ -62.753906, 4.039618 ], [ -62.226562, 4.039618 ], [ -62.226562, 4.214943 ], [ -61.699219, 4.214943 ], [ -61.699219, 4.390229 ], [ -61.171875, 4.390229 ], [ -61.171875, 4.565474 ], [ -60.820312, 4.565474 ], [ -60.820312, 4.740675 ], [ -60.644531, 4.740675 ], [ -60.644531, 5.090944 ], [ -60.820312, 5.090944 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ] ] ], [ [ [ -47.636719, -0.703107 ], [ -47.109375, -0.703107 ], [ -47.109375, -0.878872 ], [ -47.988281, -0.878872 ], [ -47.988281, -0.703107 ], [ -47.812500, -0.703107 ], [ -47.812500, -0.527336 ], [ -47.636719, -0.527336 ], [ -47.636719, -0.703107 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.640625, 62.349609 ], [ -76.113281, 62.349609 ], [ -76.113281, 62.267923 ], [ -75.410156, 62.267923 ], [ -75.410156, 62.186014 ], [ -75.058594, 62.186014 ], [ -75.058594, 55.973798 ], [ -76.992188, 55.973798 ], [ -76.992188, 56.072035 ], [ -76.816406, 56.072035 ], [ -76.816406, 56.267761 ], [ -76.640625, 56.267761 ], [ -76.640625, 56.462490 ], [ -76.464844, 56.462490 ], [ -76.464844, 56.848972 ], [ -76.640625, 56.848972 ], [ -76.640625, 57.326521 ], [ -76.816406, 57.326521 ], [ -76.816406, 57.515823 ], [ -76.992188, 57.515823 ], [ -76.992188, 57.704147 ], [ -77.167969, 57.704147 ], [ -77.167969, 57.891497 ], [ -77.343750, 57.891497 ], [ -77.343750, 58.077876 ], [ -77.519531, 58.077876 ], [ -77.519531, 58.170702 ], [ -77.695312, 58.170702 ], [ -77.695312, 58.263287 ], [ -77.871094, 58.263287 ], [ -77.871094, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.539595 ], [ -78.222656, 58.539595 ], [ -78.222656, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.722599 ], [ -78.574219, 58.722599 ], [ -78.574219, 58.813742 ], [ -78.398438, 58.813742 ], [ -78.398438, 58.995311 ], [ -78.222656, 58.995311 ], [ -78.222656, 59.175928 ], [ -78.046875, 59.175928 ], [ -78.046875, 59.355596 ], [ -77.871094, 59.355596 ], [ -77.871094, 59.445075 ], [ -77.695312, 59.445075 ], [ -77.695312, 59.623325 ], [ -77.519531, 59.623325 ], [ -77.519531, 59.800634 ], [ -77.343750, 59.800634 ], [ -77.343750, 60.064840 ], [ -77.519531, 60.064840 ], [ -77.519531, 60.500525 ], [ -77.695312, 60.500525 ], [ -77.695312, 61.100789 ], [ -77.871094, 61.100789 ], [ -77.871094, 61.938950 ], [ -78.046875, 61.938950 ], [ -78.046875, 62.349609 ], [ -77.695312, 62.349609 ], [ -77.695312, 62.431074 ], [ -77.343750, 62.431074 ], [ -77.343750, 62.512318 ], [ -77.167969, 62.512318 ], [ -77.167969, 62.431074 ], [ -76.640625, 62.431074 ], [ -76.640625, 62.349609 ] ] ], [ [ [ -85.781250, 66.513260 ], [ -85.781250, 66.443107 ], [ -85.957031, 66.443107 ], [ -85.957031, 66.160511 ], [ -86.132812, 66.160511 ], [ -86.132812, 65.946472 ], [ -86.308594, 65.946472 ], [ -86.308594, 65.802776 ], [ -86.484375, 65.802776 ], [ -86.484375, 65.658275 ], [ -86.660156, 65.658275 ], [ -86.660156, 65.440002 ], [ -86.835938, 65.440002 ], [ -86.835938, 65.293468 ], [ -87.011719, 65.293468 ], [ -87.011719, 65.072130 ], [ -87.187500, 65.072130 ], [ -87.187500, 64.848937 ], [ -87.363281, 64.848937 ], [ -87.363281, 64.699105 ], [ -87.539062, 64.699105 ], [ -87.539062, 64.548440 ], [ -87.714844, 64.548440 ], [ -87.714844, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.320872 ], [ -88.066406, 64.320872 ], [ -88.066406, 64.244595 ], [ -88.242188, 64.244595 ], [ -88.242188, 64.091408 ], [ -89.121094, 64.091408 ], [ -89.121094, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.937372 ], [ -90.175781, 63.937372 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.704722 ], [ -90.527344, 63.704722 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 62.915233 ], [ -90.878906, 62.915233 ], [ -90.878906, 66.861082 ], [ -82.089844, 66.861082 ], [ -82.089844, 66.791909 ], [ -82.265625, 66.791909 ], [ -82.265625, 66.722541 ], [ -82.441406, 66.722541 ], [ -82.441406, 66.652977 ], [ -82.792969, 66.652977 ], [ -82.792969, 66.583217 ], [ -82.968750, 66.583217 ], [ -82.968750, 66.513260 ], [ -83.144531, 66.513260 ], [ -83.144531, 66.443107 ], [ -83.496094, 66.443107 ], [ -83.496094, 66.372755 ], [ -83.847656, 66.372755 ], [ -83.847656, 66.302205 ], [ -84.375000, 66.302205 ], [ -84.375000, 66.231457 ], [ -84.902344, 66.231457 ], [ -84.902344, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ] ] ], [ [ [ -79.277344, 62.021528 ], [ -79.453125, 62.021528 ], [ -79.453125, 61.689872 ], [ -79.628906, 61.689872 ], [ -79.628906, 61.606396 ], [ -79.980469, 61.606396 ], [ -79.980469, 61.689872 ], [ -80.156250, 61.689872 ], [ -80.156250, 61.856149 ], [ -80.332031, 61.856149 ], [ -80.332031, 62.103883 ], [ -80.156250, 62.103883 ], [ -80.156250, 62.267923 ], [ -79.980469, 62.267923 ], [ -79.980469, 62.349609 ], [ -79.453125, 62.349609 ], [ -79.453125, 62.267923 ], [ -79.277344, 62.267923 ], [ -79.277344, 62.021528 ] ] ], [ [ [ -81.914062, 62.593341 ], [ -82.089844, 62.593341 ], [ -82.089844, 62.512318 ], [ -82.265625, 62.512318 ], [ -82.265625, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.349609 ], [ -82.792969, 62.349609 ], [ -82.792969, 62.267923 ], [ -82.968750, 62.267923 ], [ -82.968750, 62.186014 ], [ -83.847656, 62.186014 ], [ -83.847656, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.431074 ], [ -83.847656, 62.431074 ], [ -83.847656, 62.593341 ], [ -83.671875, 62.593341 ], [ -83.671875, 62.674143 ], [ -83.496094, 62.674143 ], [ -83.496094, 62.835089 ], [ -83.320312, 62.835089 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ] ] ], [ [ [ -84.023438, 65.146115 ], [ -83.847656, 65.146115 ], [ -83.847656, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.997939 ], [ -83.496094, 64.997939 ], [ -83.496094, 64.923542 ], [ -83.144531, 64.923542 ], [ -83.144531, 64.848937 ], [ -82.968750, 64.848937 ], [ -82.968750, 64.774125 ], [ -82.792969, 64.774125 ], [ -82.792969, 64.699105 ], [ -82.441406, 64.699105 ], [ -82.441406, 64.623877 ], [ -82.089844, 64.623877 ], [ -82.089844, 64.548440 ], [ -81.738281, 64.548440 ], [ -81.738281, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -81.035156, 64.014496 ], [ -81.035156, 64.091408 ], [ -80.859375, 64.091408 ], [ -80.859375, 64.014496 ], [ -80.683594, 64.014496 ], [ -80.683594, 63.937372 ], [ -80.507812, 63.937372 ], [ -80.507812, 63.782486 ], [ -80.332031, 63.782486 ], [ -80.332031, 63.704722 ], [ -80.156250, 63.704722 ], [ -80.156250, 63.626745 ], [ -80.332031, 63.626745 ], [ -80.332031, 63.548552 ], [ -80.683594, 63.548552 ], [ -80.683594, 63.470145 ], [ -80.859375, 63.470145 ], [ -80.859375, 63.391522 ], [ -81.386719, 63.391522 ], [ -81.386719, 63.470145 ], [ -81.914062, 63.470145 ], [ -81.914062, 63.548552 ], [ -82.441406, 63.548552 ], [ -82.441406, 63.626745 ], [ -82.617188, 63.626745 ], [ -82.617188, 63.704722 ], [ -82.792969, 63.704722 ], [ -82.792969, 63.860036 ], [ -82.968750, 63.860036 ], [ -82.968750, 64.014496 ], [ -83.320312, 64.014496 ], [ -83.320312, 63.860036 ], [ -83.496094, 63.860036 ], [ -83.496094, 63.782486 ], [ -83.671875, 63.782486 ], [ -83.671875, 63.704722 ], [ -83.847656, 63.704722 ], [ -83.847656, 63.548552 ], [ -84.023438, 63.548552 ], [ -84.023438, 63.470145 ], [ -84.375000, 63.470145 ], [ -84.375000, 63.391522 ], [ -84.550781, 63.391522 ], [ -84.550781, 63.312683 ], [ -84.902344, 63.312683 ], [ -84.902344, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 63.154355 ], [ -85.429688, 63.154355 ], [ -85.429688, 63.074866 ], [ -85.605469, 63.074866 ], [ -85.605469, 63.312683 ], [ -85.781250, 63.312683 ], [ -85.781250, 63.626745 ], [ -86.308594, 63.626745 ], [ -86.308594, 63.548552 ], [ -87.011719, 63.548552 ], [ -87.011719, 63.626745 ], [ -86.835938, 63.626745 ], [ -86.835938, 63.782486 ], [ -86.660156, 63.782486 ], [ -86.660156, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 63.937372 ], [ -86.308594, 63.937372 ], [ -86.308594, 65.072130 ], [ -86.132812, 65.072130 ], [ -86.132812, 65.512963 ], [ -85.957031, 65.512963 ], [ -85.957031, 65.730626 ], [ -85.605469, 65.730626 ], [ -85.605469, 65.658275 ], [ -85.078125, 65.658275 ], [ -85.078125, 65.440002 ], [ -84.902344, 65.440002 ], [ -84.902344, 65.219894 ], [ -84.726562, 65.219894 ], [ -84.726562, 65.293468 ], [ -84.375000, 65.293468 ], [ -84.375000, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 65.146115 ] ] ], [ [ [ -75.058594, 64.396938 ], [ -75.410156, 64.396938 ], [ -75.410156, 64.320872 ], [ -76.816406, 64.320872 ], [ -76.816406, 64.244595 ], [ -77.871094, 64.244595 ], [ -77.871094, 64.320872 ], [ -78.046875, 64.320872 ], [ -78.046875, 64.396938 ], [ -78.398438, 64.396938 ], [ -78.398438, 64.472794 ], [ -78.574219, 64.472794 ], [ -78.574219, 64.623877 ], [ -78.398438, 64.623877 ], [ -78.398438, 64.774125 ], [ -78.222656, 64.774125 ], [ -78.222656, 64.997939 ], [ -78.046875, 64.997939 ], [ -78.046875, 65.146115 ], [ -77.871094, 65.146115 ], [ -77.871094, 65.293468 ], [ -75.410156, 65.293468 ], [ -75.410156, 65.366837 ], [ -75.058594, 65.366837 ], [ -75.058594, 64.396938 ] ] ], [ [ [ -90.527344, 57.231503 ], [ -90.527344, 57.136239 ], [ -90.175781, 57.136239 ], [ -90.175781, 57.040730 ], [ -89.824219, 57.040730 ], [ -89.824219, 56.944974 ], [ -89.472656, 56.944974 ], [ -89.472656, 56.848972 ], [ -89.121094, 56.848972 ], [ -89.121094, 56.752723 ], [ -88.769531, 56.752723 ], [ -88.769531, 56.656226 ], [ -88.593750, 56.656226 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 56.462490 ], [ -88.066406, 56.462490 ], [ -88.066406, 56.365250 ], [ -87.890625, 56.365250 ], [ -87.890625, 56.267761 ], [ -87.714844, 56.267761 ], [ -87.714844, 56.072035 ], [ -87.539062, 56.072035 ], [ -87.539062, 55.973798 ], [ -90.878906, 55.973798 ], [ -90.878906, 57.231503 ], [ -90.527344, 57.231503 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 57.231503 ], [ -90.527344, 57.231503 ], [ -90.527344, 57.136239 ], [ -90.175781, 57.136239 ], [ -90.175781, 57.040730 ], [ -89.824219, 57.040730 ], [ -89.824219, 56.944974 ], [ -89.472656, 56.944974 ], [ -89.472656, 56.848972 ], [ -89.121094, 56.848972 ], [ -89.121094, 56.752723 ], [ -88.769531, 56.752723 ], [ -88.769531, 56.656226 ], [ -88.593750, 56.656226 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 56.462490 ], [ -88.066406, 56.462490 ], [ -88.066406, 56.365250 ], [ -87.890625, 56.365250 ], [ -87.890625, 56.267761 ], [ -87.714844, 56.267761 ], [ -87.714844, 56.072035 ], [ -87.539062, 56.072035 ], [ -87.539062, 55.973798 ], [ -90.878906, 55.973798 ], [ -90.878906, 57.231503 ] ] ], [ [ [ -77.167969, 62.431074 ], [ -76.640625, 62.431074 ], [ -76.640625, 62.349609 ], [ -76.113281, 62.349609 ], [ -76.113281, 62.267923 ], [ -75.410156, 62.267923 ], [ -75.410156, 62.186014 ], [ -75.058594, 62.186014 ], [ -75.058594, 55.973798 ], [ -76.992188, 55.973798 ], [ -76.992188, 56.072035 ], [ -76.816406, 56.072035 ], [ -76.816406, 56.267761 ], [ -76.640625, 56.267761 ], [ -76.640625, 56.462490 ], [ -76.464844, 56.462490 ], [ -76.464844, 56.848972 ], [ -76.640625, 56.848972 ], [ -76.640625, 57.326521 ], [ -76.816406, 57.326521 ], [ -76.816406, 57.515823 ], [ -76.992188, 57.515823 ], [ -76.992188, 57.704147 ], [ -77.167969, 57.704147 ], [ -77.167969, 57.891497 ], [ -77.343750, 57.891497 ], [ -77.343750, 58.077876 ], [ -77.519531, 58.077876 ], [ -77.519531, 58.170702 ], [ -77.695312, 58.170702 ], [ -77.695312, 58.263287 ], [ -77.871094, 58.263287 ], [ -77.871094, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.539595 ], [ -78.222656, 58.539595 ], [ -78.222656, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.722599 ], [ -78.574219, 58.722599 ], [ -78.574219, 58.813742 ], [ -78.398438, 58.813742 ], [ -78.398438, 58.995311 ], [ -78.222656, 58.995311 ], [ -78.222656, 59.175928 ], [ -78.046875, 59.175928 ], [ -78.046875, 59.355596 ], [ -77.871094, 59.355596 ], [ -77.871094, 59.445075 ], [ -77.695312, 59.445075 ], [ -77.695312, 59.623325 ], [ -77.519531, 59.623325 ], [ -77.519531, 59.800634 ], [ -77.343750, 59.800634 ], [ -77.343750, 60.064840 ], [ -77.519531, 60.064840 ], [ -77.519531, 60.500525 ], [ -77.695312, 60.500525 ], [ -77.695312, 61.100789 ], [ -77.871094, 61.100789 ], [ -77.871094, 61.938950 ], [ -78.046875, 61.938950 ], [ -78.046875, 62.349609 ], [ -77.695312, 62.349609 ], [ -77.695312, 62.431074 ], [ -77.343750, 62.431074 ], [ -77.343750, 62.512318 ], [ -77.167969, 62.512318 ], [ -77.167969, 62.431074 ] ] ], [ [ [ -79.453125, 62.349609 ], [ -79.453125, 62.267923 ], [ -79.277344, 62.267923 ], [ -79.277344, 62.021528 ], [ -79.453125, 62.021528 ], [ -79.453125, 61.689872 ], [ -79.628906, 61.689872 ], [ -79.628906, 61.606396 ], [ -79.980469, 61.606396 ], [ -79.980469, 61.689872 ], [ -80.156250, 61.689872 ], [ -80.156250, 61.856149 ], [ -80.332031, 61.856149 ], [ -80.332031, 62.103883 ], [ -80.156250, 62.103883 ], [ -80.156250, 62.267923 ], [ -79.980469, 62.267923 ], [ -79.980469, 62.349609 ], [ -79.453125, 62.349609 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ], [ -82.089844, 62.593341 ], [ -82.089844, 62.512318 ], [ -82.265625, 62.512318 ], [ -82.265625, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.349609 ], [ -82.792969, 62.349609 ], [ -82.792969, 62.267923 ], [ -82.968750, 62.267923 ], [ -82.968750, 62.186014 ], [ -83.847656, 62.186014 ], [ -83.847656, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.431074 ], [ -83.847656, 62.431074 ], [ -83.847656, 62.593341 ], [ -83.671875, 62.593341 ], [ -83.671875, 62.674143 ], [ -83.496094, 62.674143 ], [ -83.496094, 62.835089 ], [ -83.320312, 62.835089 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -82.089844, 66.791909 ], [ -82.265625, 66.791909 ], [ -82.265625, 66.722541 ], [ -82.441406, 66.722541 ], [ -82.441406, 66.652977 ], [ -82.792969, 66.652977 ], [ -82.792969, 66.583217 ], [ -82.968750, 66.583217 ], [ -82.968750, 66.513260 ], [ -83.144531, 66.513260 ], [ -83.144531, 66.443107 ], [ -83.496094, 66.443107 ], [ -83.496094, 66.372755 ], [ -83.847656, 66.372755 ], [ -83.847656, 66.302205 ], [ -84.375000, 66.302205 ], [ -84.375000, 66.231457 ], [ -84.902344, 66.231457 ], [ -84.902344, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.443107 ], [ -85.957031, 66.443107 ], [ -85.957031, 66.160511 ], [ -86.132812, 66.160511 ], [ -86.132812, 65.946472 ], [ -86.308594, 65.946472 ], [ -86.308594, 65.802776 ], [ -86.484375, 65.802776 ], [ -86.484375, 65.658275 ], [ -86.660156, 65.658275 ], [ -86.660156, 65.440002 ], [ -86.835938, 65.440002 ], [ -86.835938, 65.293468 ], [ -87.011719, 65.293468 ], [ -87.011719, 65.072130 ], [ -87.187500, 65.072130 ], [ -87.187500, 64.848937 ], [ -87.363281, 64.848937 ], [ -87.363281, 64.699105 ], [ -87.539062, 64.699105 ], [ -87.539062, 64.548440 ], [ -87.714844, 64.548440 ], [ -87.714844, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.320872 ], [ -88.066406, 64.320872 ], [ -88.066406, 64.244595 ], [ -88.242188, 64.244595 ], [ -88.242188, 64.091408 ], [ -89.121094, 64.091408 ], [ -89.121094, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.937372 ], [ -90.175781, 63.937372 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.704722 ], [ -90.527344, 63.704722 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 62.915233 ], [ -90.878906, 62.915233 ], [ -90.878906, 66.861082 ], [ -82.089844, 66.861082 ], [ -82.089844, 66.791909 ] ] ], [ [ [ -85.605469, 65.730626 ], [ -85.605469, 65.658275 ], [ -85.078125, 65.658275 ], [ -85.078125, 65.440002 ], [ -84.902344, 65.440002 ], [ -84.902344, 65.219894 ], [ -84.726562, 65.219894 ], [ -84.726562, 65.293468 ], [ -84.375000, 65.293468 ], [ -84.375000, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 65.146115 ], [ -83.847656, 65.146115 ], [ -83.847656, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.997939 ], [ -83.496094, 64.997939 ], [ -83.496094, 64.923542 ], [ -83.144531, 64.923542 ], [ -83.144531, 64.848937 ], [ -82.968750, 64.848937 ], [ -82.968750, 64.774125 ], [ -82.792969, 64.774125 ], [ -82.792969, 64.699105 ], [ -82.441406, 64.699105 ], [ -82.441406, 64.623877 ], [ -82.089844, 64.623877 ], [ -82.089844, 64.548440 ], [ -81.738281, 64.548440 ], [ -81.738281, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -81.035156, 64.014496 ], [ -81.035156, 64.091408 ], [ -80.859375, 64.091408 ], [ -80.859375, 64.014496 ], [ -80.683594, 64.014496 ], [ -80.683594, 63.937372 ], [ -80.507812, 63.937372 ], [ -80.507812, 63.782486 ], [ -80.332031, 63.782486 ], [ -80.332031, 63.704722 ], [ -80.156250, 63.704722 ], [ -80.156250, 63.626745 ], [ -80.332031, 63.626745 ], [ -80.332031, 63.548552 ], [ -80.683594, 63.548552 ], [ -80.683594, 63.470145 ], [ -80.859375, 63.470145 ], [ -80.859375, 63.391522 ], [ -81.386719, 63.391522 ], [ -81.386719, 63.470145 ], [ -81.914062, 63.470145 ], [ -81.914062, 63.548552 ], [ -82.441406, 63.548552 ], [ -82.441406, 63.626745 ], [ -82.617188, 63.626745 ], [ -82.617188, 63.704722 ], [ -82.792969, 63.704722 ], [ -82.792969, 63.860036 ], [ -82.968750, 63.860036 ], [ -82.968750, 64.014496 ], [ -83.320312, 64.014496 ], [ -83.320312, 63.860036 ], [ -83.496094, 63.860036 ], [ -83.496094, 63.782486 ], [ -83.671875, 63.782486 ], [ -83.671875, 63.704722 ], [ -83.847656, 63.704722 ], [ -83.847656, 63.548552 ], [ -84.023438, 63.548552 ], [ -84.023438, 63.470145 ], [ -84.375000, 63.470145 ], [ -84.375000, 63.391522 ], [ -84.550781, 63.391522 ], [ -84.550781, 63.312683 ], [ -84.902344, 63.312683 ], [ -84.902344, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 63.154355 ], [ -85.429688, 63.154355 ], [ -85.429688, 63.074866 ], [ -85.605469, 63.074866 ], [ -85.605469, 63.312683 ], [ -85.781250, 63.312683 ], [ -85.781250, 63.626745 ], [ -86.308594, 63.626745 ], [ -86.308594, 63.548552 ], [ -87.011719, 63.548552 ], [ -87.011719, 63.626745 ], [ -86.835938, 63.626745 ], [ -86.835938, 63.782486 ], [ -86.660156, 63.782486 ], [ -86.660156, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 63.937372 ], [ -86.308594, 63.937372 ], [ -86.308594, 65.072130 ], [ -86.132812, 65.072130 ], [ -86.132812, 65.512963 ], [ -85.957031, 65.512963 ], [ -85.957031, 65.730626 ], [ -85.605469, 65.730626 ] ] ], [ [ [ -75.058594, 65.366837 ], [ -75.058594, 64.396938 ], [ -75.410156, 64.396938 ], [ -75.410156, 64.320872 ], [ -76.816406, 64.320872 ], [ -76.816406, 64.244595 ], [ -77.871094, 64.244595 ], [ -77.871094, 64.320872 ], [ -78.046875, 64.320872 ], [ -78.046875, 64.396938 ], [ -78.398438, 64.396938 ], [ -78.398438, 64.472794 ], [ -78.574219, 64.472794 ], [ -78.574219, 64.623877 ], [ -78.398438, 64.623877 ], [ -78.398438, 64.774125 ], [ -78.222656, 64.774125 ], [ -78.222656, 64.997939 ], [ -78.046875, 64.997939 ], [ -78.046875, 65.146115 ], [ -77.871094, 65.146115 ], [ -77.871094, 65.293468 ], [ -75.410156, 65.293468 ], [ -75.410156, 65.366837 ], [ -75.058594, 65.366837 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.300781, 62.186014 ], [ -73.125000, 62.186014 ], [ -73.125000, 62.103883 ], [ -72.949219, 62.103883 ], [ -72.949219, 62.021528 ], [ -72.773438, 62.021528 ], [ -72.773438, 61.938950 ], [ -72.597656, 61.938950 ], [ -72.597656, 61.856149 ], [ -72.421875, 61.856149 ], [ -72.421875, 61.773123 ], [ -72.246094, 61.773123 ], [ -72.246094, 61.689872 ], [ -72.070312, 61.689872 ], [ -72.070312, 61.606396 ], [ -71.894531, 61.606396 ], [ -71.894531, 61.522695 ], [ -71.718750, 61.522695 ], [ -71.718750, 61.354614 ], [ -71.542969, 61.354614 ], [ -71.542969, 61.185625 ], [ -71.367188, 61.185625 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 59.888937 ], [ -69.433594, 59.888937 ], [ -69.433594, 59.265881 ], [ -69.257812, 59.265881 ], [ -69.257812, 58.995311 ], [ -69.082031, 58.995311 ], [ -69.082031, 58.904646 ], [ -68.730469, 58.904646 ], [ -68.730469, 58.813742 ], [ -68.378906, 58.813742 ], [ -68.378906, 58.722599 ], [ -68.203125, 58.722599 ], [ -68.203125, 58.539595 ], [ -68.027344, 58.539595 ], [ -68.027344, 58.355630 ], [ -67.851562, 58.355630 ], [ -67.851562, 58.170702 ], [ -67.500000, 58.170702 ], [ -67.500000, 58.263287 ], [ -67.148438, 58.263287 ], [ -67.148438, 58.355630 ], [ -66.972656, 58.355630 ], [ -66.972656, 58.447733 ], [ -66.796875, 58.447733 ], [ -66.796875, 58.539595 ], [ -66.445312, 58.539595 ], [ -66.445312, 58.631217 ], [ -66.269531, 58.631217 ], [ -66.269531, 58.813742 ], [ -66.093750, 58.813742 ], [ -66.093750, 58.995311 ], [ -65.917969, 58.995311 ], [ -65.917969, 59.175928 ], [ -65.742188, 59.175928 ], [ -65.742188, 59.355596 ], [ -65.566406, 59.355596 ], [ -65.566406, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 59.712097 ], [ -65.214844, 59.712097 ], [ -65.214844, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 59.977005 ], [ -64.863281, 59.977005 ], [ -64.863281, 60.152442 ], [ -64.687500, 60.152442 ], [ -64.687500, 60.239811 ], [ -64.511719, 60.239811 ], [ -64.511719, 60.152442 ], [ -64.335938, 60.152442 ], [ -64.335938, 59.977005 ], [ -64.160156, 59.977005 ], [ -64.160156, 59.712097 ], [ -63.984375, 59.712097 ], [ -63.984375, 59.534318 ], [ -63.808594, 59.534318 ], [ -63.808594, 59.355596 ], [ -63.632812, 59.355596 ], [ -63.632812, 59.175928 ], [ -63.457031, 59.175928 ], [ -63.457031, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.813742 ], [ -63.105469, 58.813742 ], [ -63.105469, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.447733 ], [ -62.753906, 58.447733 ], [ -62.753906, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 58.077876 ], [ -62.402344, 58.077876 ], [ -62.402344, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.704147 ], [ -62.050781, 57.704147 ], [ -62.050781, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.326521 ], [ -61.699219, 57.326521 ], [ -61.699219, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.944974 ], [ -61.347656, 56.944974 ], [ -61.347656, 56.848972 ], [ -61.523438, 56.848972 ], [ -61.523438, 56.656226 ], [ -61.699219, 56.656226 ], [ -61.699219, 56.462490 ], [ -61.875000, 56.462490 ], [ -61.875000, 56.267761 ], [ -61.699219, 56.267761 ], [ -61.699219, 56.170023 ], [ -61.347656, 56.170023 ], [ -61.347656, 56.072035 ], [ -61.171875, 56.072035 ], [ -61.171875, 55.973798 ], [ -75.058594, 55.973798 ], [ -75.058594, 62.186014 ], [ -74.531250, 62.186014 ], [ -74.531250, 62.267923 ], [ -74.179688, 62.267923 ], [ -74.179688, 62.349609 ], [ -73.652344, 62.349609 ], [ -73.652344, 62.267923 ], [ -73.300781, 62.267923 ], [ -73.300781, 62.186014 ] ] ], [ [ [ -66.445312, 66.089364 ], [ -66.445312, 66.160511 ], [ -66.621094, 66.160511 ], [ -66.621094, 66.302205 ], [ -66.796875, 66.302205 ], [ -66.796875, 66.372755 ], [ -66.972656, 66.372755 ], [ -66.972656, 66.302205 ], [ -67.675781, 66.302205 ], [ -67.675781, 66.231457 ], [ -68.027344, 66.231457 ], [ -68.027344, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.585720 ], [ -68.027344, 65.585720 ], [ -68.027344, 65.512963 ], [ -67.851562, 65.512963 ], [ -67.851562, 65.366837 ], [ -67.675781, 65.366837 ], [ -67.675781, 65.293468 ], [ -67.500000, 65.293468 ], [ -67.500000, 65.219894 ], [ -67.324219, 65.219894 ], [ -67.324219, 65.072130 ], [ -67.148438, 65.072130 ], [ -67.148438, 64.997939 ], [ -66.972656, 64.997939 ], [ -66.972656, 64.923542 ], [ -66.621094, 64.923542 ], [ -66.621094, 64.848937 ], [ -66.445312, 64.848937 ], [ -66.445312, 64.774125 ], [ -66.269531, 64.774125 ], [ -66.269531, 64.699105 ], [ -65.917969, 64.699105 ], [ -65.917969, 64.623877 ], [ -65.742188, 64.623877 ], [ -65.742188, 64.548440 ], [ -65.566406, 64.548440 ], [ -65.566406, 64.396938 ], [ -65.390625, 64.396938 ], [ -65.390625, 64.244595 ], [ -65.214844, 64.244595 ], [ -65.214844, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.704722 ], [ -64.863281, 63.704722 ], [ -64.863281, 63.470145 ], [ -64.687500, 63.470145 ], [ -64.687500, 63.154355 ], [ -64.863281, 63.154355 ], [ -64.863281, 62.835089 ], [ -65.039062, 62.835089 ], [ -65.039062, 62.674143 ], [ -65.390625, 62.674143 ], [ -65.390625, 62.754726 ], [ -65.742188, 62.754726 ], [ -65.742188, 62.835089 ], [ -66.093750, 62.835089 ], [ -66.093750, 62.915233 ], [ -66.445312, 62.915233 ], [ -66.445312, 62.995158 ], [ -66.621094, 62.995158 ], [ -66.621094, 63.074866 ], [ -66.972656, 63.074866 ], [ -66.972656, 63.154355 ], [ -67.148438, 63.154355 ], [ -67.148438, 63.233627 ], [ -67.324219, 63.233627 ], [ -67.324219, 63.312683 ], [ -67.675781, 63.312683 ], [ -67.675781, 63.391522 ], [ -67.851562, 63.391522 ], [ -67.851562, 63.470145 ], [ -68.027344, 63.470145 ], [ -68.027344, 63.548552 ], [ -68.203125, 63.548552 ], [ -68.203125, 63.626745 ], [ -68.554688, 63.626745 ], [ -68.554688, 63.548552 ], [ -68.378906, 63.548552 ], [ -68.378906, 63.470145 ], [ -68.203125, 63.470145 ], [ -68.203125, 63.391522 ], [ -68.027344, 63.391522 ], [ -68.027344, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 63.154355 ], [ -67.675781, 63.154355 ], [ -67.675781, 63.074866 ], [ -67.500000, 63.074866 ], [ -67.500000, 62.915233 ], [ -67.324219, 62.915233 ], [ -67.324219, 62.835089 ], [ -67.148438, 62.835089 ], [ -67.148438, 62.754726 ], [ -66.972656, 62.754726 ], [ -66.972656, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.512318 ], [ -66.621094, 62.512318 ], [ -66.621094, 62.431074 ], [ -66.445312, 62.431074 ], [ -66.445312, 62.267923 ], [ -66.269531, 62.267923 ], [ -66.269531, 62.103883 ], [ -66.093750, 62.103883 ], [ -66.093750, 61.938950 ], [ -66.445312, 61.938950 ], [ -66.445312, 62.021528 ], [ -66.972656, 62.021528 ], [ -66.972656, 62.103883 ], [ -67.675781, 62.103883 ], [ -67.675781, 62.186014 ], [ -68.203125, 62.186014 ], [ -68.203125, 62.267923 ], [ -68.730469, 62.267923 ], [ -68.730469, 62.349609 ], [ -69.082031, 62.349609 ], [ -69.082031, 62.431074 ], [ -69.433594, 62.431074 ], [ -69.433594, 62.512318 ], [ -69.785156, 62.512318 ], [ -69.785156, 62.593341 ], [ -70.136719, 62.593341 ], [ -70.136719, 62.674143 ], [ -70.312500, 62.674143 ], [ -70.312500, 62.754726 ], [ -70.664062, 62.754726 ], [ -70.664062, 62.835089 ], [ -71.015625, 62.835089 ], [ -71.015625, 62.915233 ], [ -71.191406, 62.915233 ], [ -71.191406, 62.995158 ], [ -71.367188, 62.995158 ], [ -71.367188, 63.074866 ], [ -71.542969, 63.074866 ], [ -71.542969, 63.154355 ], [ -71.894531, 63.154355 ], [ -71.894531, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.312683 ], [ -72.246094, 63.312683 ], [ -72.246094, 63.470145 ], [ -72.070312, 63.470145 ], [ -72.070312, 63.626745 ], [ -71.894531, 63.626745 ], [ -71.894531, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.782486 ], [ -72.421875, 63.782486 ], [ -72.421875, 63.860036 ], [ -72.597656, 63.860036 ], [ -72.597656, 63.937372 ], [ -72.773438, 63.937372 ], [ -72.773438, 64.014496 ], [ -73.125000, 64.014496 ], [ -73.125000, 64.091408 ], [ -73.300781, 64.091408 ], [ -73.300781, 64.168107 ], [ -73.476562, 64.168107 ], [ -73.476562, 64.244595 ], [ -73.652344, 64.244595 ], [ -73.652344, 64.320872 ], [ -74.003906, 64.320872 ], [ -74.003906, 64.396938 ], [ -74.179688, 64.396938 ], [ -74.179688, 64.472794 ], [ -74.355469, 64.472794 ], [ -74.355469, 64.548440 ], [ -74.707031, 64.548440 ], [ -74.707031, 64.623877 ], [ -74.882812, 64.623877 ], [ -74.882812, 64.396938 ], [ -75.058594, 64.396938 ], [ -75.058594, 65.366837 ], [ -74.355469, 65.366837 ], [ -74.355469, 65.440002 ], [ -74.003906, 65.440002 ], [ -74.003906, 65.512963 ], [ -74.179688, 65.512963 ], [ -74.179688, 65.658275 ], [ -74.355469, 65.658275 ], [ -74.355469, 65.874725 ], [ -74.179688, 65.874725 ], [ -74.179688, 66.160511 ], [ -74.003906, 66.160511 ], [ -74.003906, 66.372755 ], [ -73.828125, 66.372755 ], [ -73.828125, 66.513260 ], [ -73.652344, 66.513260 ], [ -73.652344, 66.652977 ], [ -73.476562, 66.652977 ], [ -73.476562, 66.791909 ], [ -73.300781, 66.791909 ], [ -73.300781, 66.861082 ], [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.089364 ], [ -62.402344, 66.089364 ], [ -62.402344, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.874725 ], [ -62.753906, 65.874725 ], [ -62.753906, 65.730626 ], [ -62.929688, 65.730626 ], [ -62.929688, 65.585720 ], [ -63.105469, 65.585720 ], [ -63.105469, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.457031, 65.366837 ], [ -63.457031, 65.293468 ], [ -63.632812, 65.293468 ], [ -63.632812, 65.146115 ], [ -63.808594, 65.146115 ], [ -63.808594, 64.997939 ], [ -64.160156, 64.997939 ], [ -64.160156, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.146115 ], [ -64.511719, 65.146115 ], [ -64.511719, 65.219894 ], [ -64.863281, 65.219894 ], [ -64.863281, 65.293468 ], [ -65.039062, 65.293468 ], [ -65.039062, 65.366837 ], [ -65.214844, 65.366837 ], [ -65.214844, 65.440002 ], [ -65.390625, 65.440002 ], [ -65.390625, 65.585720 ], [ -65.566406, 65.585720 ], [ -65.566406, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -65.917969, 65.802776 ], [ -65.917969, 65.874725 ], [ -66.093750, 65.874725 ], [ -66.093750, 65.946472 ], [ -66.269531, 65.946472 ], [ -66.269531, 66.089364 ], [ -66.445312, 66.089364 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.347656, 56.072035 ], [ -61.171875, 56.072035 ], [ -61.171875, 55.973798 ], [ -61.347656, 56.072035 ] ] ], [ [ [ -64.511719, 60.239811 ], [ -64.511719, 60.152442 ], [ -64.335938, 60.152442 ], [ -64.335938, 59.977005 ], [ -64.160156, 59.977005 ], [ -64.160156, 59.712097 ], [ -63.984375, 59.712097 ], [ -63.984375, 59.534318 ], [ -63.808594, 59.534318 ], [ -63.808594, 59.355596 ], [ -63.632812, 59.355596 ], [ -63.632812, 59.175928 ], [ -63.457031, 59.175928 ], [ -63.457031, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.813742 ], [ -63.105469, 58.813742 ], [ -63.105469, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.447733 ], [ -62.753906, 58.447733 ], [ -62.753906, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 58.077876 ], [ -62.402344, 58.077876 ], [ -62.402344, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.704147 ], [ -62.050781, 57.704147 ], [ -62.050781, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.326521 ], [ -61.699219, 57.326521 ], [ -61.699219, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.944974 ], [ -61.347656, 56.944974 ], [ -61.347656, 56.848972 ], [ -61.523438, 56.848972 ], [ -61.523438, 56.656226 ], [ -61.699219, 56.656226 ], [ -61.699219, 56.462490 ], [ -61.875000, 56.462490 ], [ -61.875000, 56.267761 ], [ -66.445312, 58.539595 ], [ -66.445312, 58.631217 ], [ -66.269531, 58.631217 ], [ -66.269531, 58.813742 ], [ -66.093750, 58.813742 ], [ -66.093750, 58.995311 ], [ -65.917969, 58.995311 ], [ -65.917969, 59.175928 ], [ -65.742188, 59.175928 ], [ -65.742188, 59.355596 ], [ -65.566406, 59.355596 ], [ -65.566406, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 59.712097 ], [ -65.214844, 59.712097 ], [ -65.214844, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 59.977005 ], [ -64.863281, 59.977005 ], [ -64.863281, 60.152442 ], [ -64.687500, 60.152442 ], [ -64.687500, 60.239811 ], [ -64.511719, 60.239811 ] ] ], [ [ [ -69.609375, 59.888937 ], [ -75.058594, 62.186014 ], [ -74.531250, 62.186014 ], [ -74.531250, 62.267923 ], [ -74.179688, 62.267923 ], [ -74.179688, 62.349609 ], [ -73.652344, 62.349609 ], [ -73.652344, 62.267923 ], [ -73.300781, 62.267923 ], [ -73.300781, 62.186014 ], [ -73.125000, 62.186014 ], [ -73.125000, 62.103883 ], [ -72.949219, 62.103883 ], [ -72.949219, 62.021528 ], [ -72.773438, 62.021528 ], [ -72.773438, 61.938950 ], [ -72.597656, 61.938950 ], [ -72.597656, 61.856149 ], [ -72.421875, 61.856149 ], [ -72.421875, 61.773123 ], [ -72.246094, 61.773123 ], [ -72.246094, 61.689872 ], [ -72.070312, 61.689872 ], [ -72.070312, 61.606396 ], [ -71.894531, 61.606396 ], [ -71.894531, 61.522695 ], [ -71.718750, 61.522695 ], [ -71.718750, 61.354614 ], [ -71.542969, 61.354614 ], [ -71.542969, 61.185625 ], [ -71.367188, 61.185625 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 59.888937 ] ] ], [ [ [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.089364 ], [ -62.402344, 66.089364 ], [ -62.402344, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.874725 ], [ -62.753906, 65.874725 ], [ -62.753906, 65.730626 ], [ -62.929688, 65.730626 ], [ -62.929688, 65.585720 ], [ -63.105469, 65.585720 ], [ -63.105469, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.457031, 65.366837 ], [ -63.457031, 65.293468 ], [ -63.632812, 65.293468 ], [ -63.632812, 65.146115 ], [ -63.808594, 65.146115 ], [ -63.808594, 64.997939 ], [ -64.160156, 64.997939 ], [ -64.160156, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.146115 ], [ -64.511719, 65.146115 ], [ -64.511719, 65.219894 ], [ -64.863281, 65.219894 ], [ -64.863281, 65.293468 ], [ -65.039062, 65.293468 ], [ -65.039062, 65.366837 ], [ -65.214844, 65.366837 ], [ -65.214844, 65.440002 ], [ -65.390625, 65.440002 ], [ -65.390625, 65.585720 ], [ -65.566406, 65.585720 ], [ -65.566406, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -65.917969, 65.802776 ], [ -65.917969, 65.874725 ], [ -66.093750, 65.874725 ], [ -66.093750, 65.946472 ], [ -66.269531, 65.946472 ], [ -66.269531, 66.089364 ], [ -66.445312, 66.089364 ], [ -66.445312, 66.160511 ], [ -66.621094, 66.160511 ], [ -66.621094, 66.302205 ], [ -66.796875, 66.302205 ], [ -66.796875, 66.372755 ], [ -66.972656, 66.372755 ], [ -66.972656, 66.302205 ], [ -67.675781, 66.302205 ], [ -67.675781, 66.231457 ], [ -68.027344, 66.231457 ], [ -68.027344, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.585720 ], [ -68.027344, 65.585720 ], [ -68.027344, 65.512963 ], [ -67.851562, 65.512963 ], [ -67.851562, 65.366837 ], [ -67.675781, 65.366837 ], [ -67.675781, 65.293468 ], [ -67.500000, 65.293468 ], [ -67.500000, 65.219894 ], [ -67.324219, 65.219894 ], [ -67.324219, 65.072130 ], [ -67.148438, 65.072130 ], [ -67.148438, 64.997939 ], [ -66.972656, 64.997939 ], [ -66.972656, 64.923542 ], [ -66.621094, 64.923542 ], [ -66.621094, 64.848937 ], [ -66.445312, 64.848937 ], [ -66.445312, 64.774125 ], [ -66.269531, 64.774125 ], [ -66.269531, 64.699105 ], [ -65.917969, 64.699105 ], [ -65.917969, 64.623877 ], [ -65.742188, 64.623877 ], [ -65.742188, 64.548440 ], [ -65.566406, 64.548440 ], [ -65.566406, 64.396938 ], [ -65.390625, 64.396938 ], [ -65.390625, 64.244595 ], [ -65.214844, 64.244595 ], [ -65.214844, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.704722 ], [ -64.863281, 63.704722 ], [ -64.863281, 63.470145 ], [ -64.687500, 63.470145 ], [ -64.687500, 63.154355 ], [ -64.863281, 63.154355 ], [ -64.863281, 62.835089 ], [ -65.039062, 62.835089 ], [ -65.039062, 62.674143 ], [ -65.390625, 62.674143 ], [ -65.390625, 62.754726 ], [ -65.742188, 62.754726 ], [ -65.742188, 62.835089 ], [ -66.093750, 62.835089 ], [ -66.093750, 62.915233 ], [ -66.445312, 62.915233 ], [ -66.445312, 62.995158 ], [ -66.621094, 62.995158 ], [ -66.621094, 63.074866 ], [ -66.972656, 63.074866 ], [ -66.972656, 63.154355 ], [ -67.148438, 63.154355 ], [ -67.148438, 63.233627 ], [ -67.324219, 63.233627 ], [ -67.324219, 63.312683 ], [ -67.675781, 63.312683 ], [ -67.675781, 63.391522 ], [ -67.851562, 63.391522 ], [ -67.851562, 63.470145 ], [ -68.027344, 63.470145 ], [ -68.027344, 63.548552 ], [ -68.203125, 63.548552 ], [ -68.203125, 63.626745 ], [ -68.554688, 63.626745 ], [ -68.554688, 63.548552 ], [ -68.378906, 63.548552 ], [ -68.378906, 63.470145 ], [ -68.203125, 63.470145 ], [ -68.203125, 63.391522 ], [ -68.027344, 63.391522 ], [ -68.027344, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 63.154355 ], [ -67.675781, 63.154355 ], [ -67.675781, 63.074866 ], [ -67.500000, 63.074866 ], [ -67.500000, 62.915233 ], [ -67.324219, 62.915233 ], [ -67.324219, 62.835089 ], [ -67.148438, 62.835089 ], [ -67.148438, 62.754726 ], [ -66.972656, 62.754726 ], [ -66.972656, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.512318 ], [ -66.621094, 62.512318 ], [ -66.621094, 62.431074 ], [ -66.445312, 62.431074 ], [ -66.445312, 62.267923 ], [ -66.269531, 62.267923 ], [ -66.269531, 62.103883 ], [ -66.093750, 62.103883 ], [ -66.093750, 61.938950 ], [ -66.445312, 61.938950 ], [ -66.445312, 62.021528 ], [ -66.972656, 62.021528 ], [ -66.972656, 62.103883 ], [ -67.675781, 62.103883 ], [ -67.675781, 62.186014 ], [ -68.203125, 62.186014 ], [ -68.203125, 62.267923 ], [ -68.730469, 62.267923 ], [ -68.730469, 62.349609 ], [ -69.082031, 62.349609 ], [ -69.082031, 62.431074 ], [ -69.433594, 62.431074 ], [ -69.433594, 62.512318 ], [ -69.785156, 62.512318 ], [ -69.785156, 62.593341 ], [ -70.136719, 62.593341 ], [ -70.136719, 62.674143 ], [ -70.312500, 62.674143 ], [ -70.312500, 62.754726 ], [ -70.664062, 62.754726 ], [ -70.664062, 62.835089 ], [ -71.015625, 62.835089 ], [ -71.015625, 62.915233 ], [ -71.191406, 62.915233 ], [ -71.191406, 62.995158 ], [ -71.367188, 62.995158 ], [ -71.367188, 63.074866 ], [ -71.542969, 63.074866 ], [ -71.542969, 63.154355 ], [ -71.894531, 63.154355 ], [ -71.894531, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.312683 ], [ -72.246094, 63.312683 ], [ -72.246094, 63.470145 ], [ -72.070312, 63.470145 ], [ -72.070312, 63.626745 ], [ -71.894531, 63.626745 ], [ -71.894531, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.782486 ], [ -72.421875, 63.782486 ], [ -72.421875, 63.860036 ], [ -72.597656, 63.860036 ], [ -72.597656, 63.937372 ], [ -72.773438, 63.937372 ], [ -72.773438, 64.014496 ], [ -73.125000, 64.014496 ], [ -73.125000, 64.091408 ], [ -73.300781, 64.091408 ], [ -73.300781, 64.168107 ], [ -73.476562, 64.168107 ], [ -73.476562, 64.244595 ], [ -73.652344, 64.244595 ], [ -73.652344, 64.320872 ], [ -74.003906, 64.320872 ], [ -74.003906, 64.396938 ], [ -74.179688, 64.396938 ], [ -74.179688, 64.472794 ], [ -74.355469, 64.472794 ], [ -74.355469, 64.548440 ], [ -74.707031, 64.548440 ], [ -74.707031, 64.623877 ], [ -74.882812, 64.623877 ], [ -74.882812, 64.396938 ], [ -75.058594, 64.396938 ], [ -75.058594, 65.366837 ], [ -74.355469, 65.366837 ], [ -74.355469, 65.440002 ], [ -74.003906, 65.440002 ], [ -74.003906, 65.512963 ], [ -74.179688, 65.512963 ], [ -74.179688, 65.658275 ], [ -74.355469, 65.658275 ], [ -74.355469, 65.874725 ], [ -74.179688, 65.874725 ], [ -74.179688, 66.160511 ], [ -74.003906, 66.160511 ], [ -74.003906, 66.372755 ], [ -73.828125, 66.372755 ], [ -73.828125, 66.513260 ], [ -73.652344, 66.513260 ], [ -73.652344, 66.652977 ], [ -73.476562, 66.652977 ], [ -73.476562, 66.791909 ], [ -73.300781, 66.791909 ], [ -73.300781, 66.861082 ], [ -61.875000, 66.861082 ] ] ], [ [ [ -61.347656, 56.072035 ], [ -61.523438, 56.170023 ], [ -61.347656, 56.170023 ], [ -61.347656, 56.072035 ] ] ], [ [ [ -69.609375, 59.888937 ], [ -69.433594, 59.888937 ], [ -69.433594, 59.800634 ], [ -69.609375, 59.888937 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.488281, 46.920255 ], [ -70.488281, 47.040182 ], [ -70.136719, 47.040182 ], [ -70.136719, 47.159840 ], [ -69.960938, 47.159840 ], [ -69.960938, 47.398349 ], [ -69.785156, 47.398349 ], [ -69.785156, 47.517201 ], [ -69.609375, 47.517201 ], [ -69.609375, 47.635784 ], [ -69.433594, 47.635784 ], [ -69.433594, 47.754098 ], [ -69.257812, 47.754098 ], [ -69.257812, 47.872144 ], [ -69.082031, 47.872144 ], [ -69.082031, 48.107431 ], [ -68.906250, 48.107431 ], [ -68.906250, 48.224673 ], [ -68.730469, 48.224673 ], [ -68.730469, 48.341646 ], [ -68.554688, 48.341646 ], [ -68.554688, 48.458352 ], [ -68.203125, 48.458352 ], [ -68.203125, 47.279229 ], [ -68.554688, 47.279229 ], [ -68.554688, 47.159840 ], [ -69.082031, 47.159840 ], [ -69.082031, 47.279229 ], [ -69.433594, 47.279229 ], [ -69.433594, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 46.920255 ], [ -69.785156, 46.920255 ], [ -69.785156, 46.679594 ], [ -69.960938, 46.679594 ], [ -69.960938, 46.437857 ], [ -70.136719, 46.437857 ], [ -70.136719, 46.073231 ], [ -70.312500, 46.073231 ], [ -70.312500, 45.828799 ], [ -70.488281, 45.828799 ], [ -70.488281, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.336702 ], [ -71.015625, 45.336702 ], [ -71.015625, 45.213004 ], [ -71.367188, 45.213004 ], [ -71.367188, 45.089036 ], [ -71.542969, 45.089036 ], [ -71.542969, 44.964798 ], [ -74.882812, 44.964798 ], [ -74.882812, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.715514 ], [ -75.410156, 44.715514 ], [ -75.410156, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.465151 ], [ -75.761719, 44.465151 ], [ -75.761719, 44.339565 ], [ -75.937500, 44.339565 ], [ -75.937500, 44.213710 ], [ -76.113281, 44.213710 ], [ -76.113281, 44.087585 ], [ -76.289062, 44.087585 ], [ -76.289062, 43.961191 ], [ -76.464844, 43.961191 ], [ -76.464844, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 43.580391 ], [ -78.750000, 43.580391 ], [ -78.750000, 43.452919 ], [ -79.101562, 43.452919 ], [ -79.101562, 43.325178 ], [ -78.925781, 43.325178 ], [ -78.925781, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.682435 ], [ -79.453125, 42.682435 ], [ -79.453125, 42.553080 ], [ -79.980469, 42.553080 ], [ -79.980469, 42.423457 ], [ -80.507812, 42.423457 ], [ -80.507812, 42.293564 ], [ -80.859375, 42.293564 ], [ -80.859375, 42.163403 ], [ -81.210938, 42.163403 ], [ -81.210938, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 41.902277 ], [ -81.914062, 41.902277 ], [ -81.914062, 41.771312 ], [ -82.265625, 41.771312 ], [ -82.265625, 41.640078 ], [ -82.968750, 41.640078 ], [ -82.968750, 41.902277 ], [ -83.144531, 41.902277 ], [ -83.144531, 42.163403 ], [ -82.968750, 42.163403 ], [ -82.968750, 42.423457 ], [ -82.792969, 42.423457 ], [ -82.792969, 42.682435 ], [ -82.617188, 42.682435 ], [ -82.617188, 42.811522 ], [ -82.441406, 42.811522 ], [ -82.441406, 43.068888 ], [ -82.265625, 43.068888 ], [ -82.265625, 43.325178 ], [ -82.089844, 43.325178 ], [ -82.089844, 43.961191 ], [ -82.265625, 43.961191 ], [ -82.265625, 44.590467 ], [ -82.441406, 44.590467 ], [ -82.441406, 45.089036 ], [ -82.617188, 45.089036 ], [ -82.617188, 45.336702 ], [ -82.792969, 45.336702 ], [ -82.792969, 45.460131 ], [ -83.144531, 45.460131 ], [ -83.144531, 45.583290 ], [ -83.320312, 45.583290 ], [ -83.320312, 45.706179 ], [ -83.671875, 45.706179 ], [ -83.671875, 45.828799 ], [ -83.496094, 45.828799 ], [ -83.496094, 45.951150 ], [ -83.671875, 45.951150 ], [ -83.671875, 46.073231 ], [ -83.847656, 46.073231 ], [ -83.847656, 46.195042 ], [ -84.023438, 46.195042 ], [ -84.023438, 46.437857 ], [ -84.550781, 46.437857 ], [ -84.550781, 46.558860 ], [ -84.726562, 46.558860 ], [ -84.726562, 46.800059 ], [ -84.902344, 46.800059 ], [ -84.902344, 46.920255 ], [ -85.078125, 46.920255 ], [ -85.078125, 47.040182 ], [ -85.429688, 47.040182 ], [ -85.429688, 47.159840 ], [ -85.605469, 47.159840 ], [ -85.605469, 47.279229 ], [ -85.957031, 47.279229 ], [ -85.957031, 47.398349 ], [ -86.308594, 47.398349 ], [ -86.308594, 47.517201 ], [ -86.660156, 47.517201 ], [ -86.660156, 47.635784 ], [ -86.835938, 47.635784 ], [ -86.835938, 47.754098 ], [ -87.187500, 47.754098 ], [ -87.187500, 47.872144 ], [ -87.363281, 47.872144 ], [ -87.363281, 47.989922 ], [ -87.714844, 47.989922 ], [ -87.714844, 48.107431 ], [ -88.066406, 48.107431 ], [ -88.066406, 48.224673 ], [ -88.769531, 48.224673 ], [ -88.769531, 48.107431 ], [ -89.121094, 48.107431 ], [ -89.121094, 47.989922 ], [ -90.000000, 47.989922 ], [ -90.000000, 48.107431 ], [ -90.703125, 48.107431 ], [ -90.703125, 48.224673 ], [ -90.878906, 48.224673 ], [ -90.878906, 55.973798 ], [ -87.187500, 55.973798 ], [ -87.187500, 55.875311 ], [ -86.835938, 55.875311 ], [ -86.835938, 55.776573 ], [ -86.484375, 55.776573 ], [ -86.484375, 55.677584 ], [ -86.132812, 55.677584 ], [ -86.132812, 55.578345 ], [ -85.781250, 55.578345 ], [ -85.781250, 55.478853 ], [ -85.605469, 55.478853 ], [ -85.605469, 55.379110 ], [ -85.253906, 55.379110 ], [ -85.253906, 55.279115 ], [ -82.968750, 55.279115 ], [ -82.968750, 55.178868 ], [ -82.265625, 55.178868 ], [ -82.265625, 54.673831 ], [ -82.441406, 54.673831 ], [ -82.441406, 53.956086 ], [ -82.265625, 53.956086 ], [ -82.265625, 53.435719 ], [ -82.089844, 53.435719 ], [ -82.089844, 53.014783 ], [ -81.914062, 53.014783 ], [ -81.914062, 52.802761 ], [ -81.738281, 52.802761 ], [ -81.738281, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 52.268157 ], [ -81.386719, 52.268157 ], [ -81.386719, 52.052490 ], [ -81.210938, 52.052490 ], [ -81.210938, 51.944265 ], [ -81.035156, 51.944265 ], [ -81.035156, 51.835778 ], [ -80.859375, 51.835778 ], [ -80.859375, 51.727028 ], [ -80.683594, 51.727028 ], [ -80.683594, 51.508742 ], [ -80.507812, 51.508742 ], [ -80.507812, 51.399206 ], [ -80.332031, 51.399206 ], [ -80.332031, 51.289406 ], [ -80.156250, 51.289406 ], [ -80.156250, 51.179343 ], [ -79.804688, 51.179343 ], [ -79.804688, 51.289406 ], [ -79.453125, 51.289406 ], [ -79.453125, 51.399206 ], [ -79.101562, 51.399206 ], [ -79.101562, 51.618017 ], [ -78.925781, 51.618017 ], [ -78.925781, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 52.375599 ], [ -78.574219, 52.375599 ], [ -78.574219, 52.802761 ], [ -78.750000, 52.802761 ], [ -78.750000, 53.330873 ], [ -78.925781, 53.330873 ], [ -78.925781, 53.852527 ], [ -79.101562, 53.852527 ], [ -79.101562, 54.162434 ], [ -79.277344, 54.162434 ], [ -79.277344, 54.265224 ], [ -79.453125, 54.265224 ], [ -79.453125, 54.470038 ], [ -79.628906, 54.470038 ], [ -79.628906, 54.572062 ], [ -79.804688, 54.572062 ], [ -79.804688, 54.673831 ], [ -79.628906, 54.673831 ], [ -79.628906, 54.775346 ], [ -79.277344, 54.775346 ], [ -79.277344, 54.876607 ], [ -78.925781, 54.876607 ], [ -78.925781, 54.977614 ], [ -78.574219, 54.977614 ], [ -78.574219, 55.078367 ], [ -78.222656, 55.078367 ], [ -78.222656, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.279115 ], [ -77.871094, 55.279115 ], [ -77.871094, 55.379110 ], [ -77.695312, 55.379110 ], [ -77.695312, 55.578345 ], [ -77.519531, 55.578345 ], [ -77.519531, 55.677584 ], [ -77.343750, 55.677584 ], [ -77.343750, 55.776573 ], [ -77.167969, 55.776573 ], [ -77.167969, 55.875311 ], [ -76.992188, 55.875311 ], [ -76.992188, 55.973798 ], [ -68.203125, 55.973798 ], [ -68.203125, 49.037868 ], [ -68.554688, 49.037868 ], [ -68.554688, 48.922499 ], [ -68.730469, 48.922499 ], [ -68.730469, 48.690960 ], [ -68.906250, 48.690960 ], [ -68.906250, 48.574790 ], [ -69.082031, 48.574790 ], [ -69.082031, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.433594, 48.224673 ], [ -69.433594, 48.107431 ], [ -69.609375, 48.107431 ], [ -69.609375, 47.989922 ], [ -69.785156, 47.989922 ], [ -69.785156, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.635784 ], [ -70.136719, 47.635784 ], [ -70.136719, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.398349 ], [ -70.488281, 47.398349 ], [ -70.488281, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 47.040182 ], [ -70.839844, 47.040182 ], [ -70.839844, 46.920255 ], [ -70.488281, 46.920255 ] ], [ [ -71.015625, 46.920255 ], [ -71.015625, 46.800059 ], [ -70.839844, 46.800059 ], [ -70.839844, 46.920255 ], [ -71.015625, 46.920255 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.203125, 55.973798 ], [ -68.203125, 49.037868 ], [ -68.554688, 49.037868 ], [ -68.554688, 48.922499 ], [ -68.730469, 48.922499 ], [ -68.730469, 48.690960 ], [ -68.906250, 48.690960 ], [ -68.906250, 48.574790 ], [ -69.082031, 48.574790 ], [ -69.082031, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.433594, 48.224673 ], [ -69.433594, 48.107431 ], [ -69.609375, 48.107431 ], [ -69.609375, 47.989922 ], [ -69.785156, 47.989922 ], [ -69.785156, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.635784 ], [ -70.136719, 47.635784 ], [ -70.136719, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.398349 ], [ -70.488281, 47.398349 ], [ -70.488281, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 47.040182 ], [ -70.839844, 47.040182 ], [ -70.839844, 46.920255 ], [ -70.488281, 46.920255 ], [ -70.488281, 47.040182 ], [ -70.136719, 47.040182 ], [ -70.136719, 47.159840 ], [ -69.960938, 47.159840 ], [ -69.960938, 47.398349 ], [ -69.785156, 47.398349 ], [ -69.785156, 47.517201 ], [ -69.609375, 47.517201 ], [ -69.609375, 47.635784 ], [ -69.433594, 47.635784 ], [ -69.433594, 47.754098 ], [ -69.257812, 47.754098 ], [ -69.257812, 47.872144 ], [ -69.082031, 47.872144 ], [ -69.082031, 48.107431 ], [ -68.906250, 48.107431 ], [ -68.906250, 48.224673 ], [ -68.730469, 48.224673 ], [ -68.730469, 48.341646 ], [ -68.554688, 48.341646 ], [ -68.554688, 48.458352 ], [ -68.203125, 48.458352 ], [ -68.203125, 47.279229 ], [ -68.554688, 47.279229 ], [ -68.554688, 47.159840 ], [ -69.082031, 47.159840 ], [ -69.082031, 47.279229 ], [ -69.433594, 47.279229 ], [ -69.433594, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 46.920255 ], [ -69.785156, 46.920255 ], [ -69.785156, 46.679594 ], [ -69.960938, 46.679594 ], [ -69.960938, 46.437857 ], [ -70.136719, 46.437857 ], [ -70.136719, 46.073231 ], [ -70.312500, 46.073231 ], [ -70.312500, 45.828799 ], [ -70.488281, 45.828799 ], [ -70.488281, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.336702 ], [ -71.015625, 45.336702 ], [ -71.015625, 45.213004 ], [ -71.367188, 45.213004 ], [ -71.367188, 45.089036 ], [ -71.542969, 45.089036 ], [ -71.542969, 44.964798 ], [ -74.882812, 44.964798 ], [ -74.882812, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.715514 ], [ -75.410156, 44.715514 ], [ -75.410156, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.465151 ], [ -75.761719, 44.465151 ], [ -75.761719, 44.339565 ], [ -75.937500, 44.339565 ], [ -75.937500, 44.213710 ], [ -76.113281, 44.213710 ], [ -76.113281, 44.087585 ], [ -76.289062, 44.087585 ], [ -76.289062, 43.961191 ], [ -76.464844, 43.961191 ], [ -76.464844, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 43.580391 ], [ -78.750000, 43.580391 ], [ -78.750000, 43.452919 ], [ -79.101562, 43.452919 ], [ -79.101562, 43.325178 ], [ -78.925781, 43.325178 ], [ -78.925781, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.682435 ], [ -79.453125, 42.682435 ], [ -79.453125, 42.553080 ], [ -79.980469, 42.553080 ], [ -79.980469, 42.423457 ], [ -80.507812, 42.423457 ], [ -80.507812, 42.293564 ], [ -80.859375, 42.293564 ], [ -80.859375, 42.163403 ], [ -81.210938, 42.163403 ], [ -81.210938, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 41.902277 ], [ -81.914062, 41.902277 ], [ -81.914062, 41.771312 ], [ -82.265625, 41.771312 ], [ -82.265625, 41.640078 ], [ -82.968750, 41.640078 ], [ -82.968750, 41.902277 ], [ -83.144531, 41.902277 ], [ -83.144531, 42.163403 ], [ -82.968750, 42.163403 ], [ -82.968750, 42.423457 ], [ -82.792969, 42.423457 ], [ -82.792969, 42.682435 ], [ -82.617188, 42.682435 ], [ -82.617188, 42.811522 ], [ -82.441406, 42.811522 ], [ -82.441406, 43.068888 ], [ -82.265625, 43.068888 ], [ -82.265625, 43.325178 ], [ -82.089844, 43.325178 ], [ -82.089844, 43.961191 ], [ -82.265625, 43.961191 ], [ -82.265625, 44.590467 ], [ -82.441406, 44.590467 ], [ -82.441406, 45.089036 ], [ -82.617188, 45.089036 ], [ -82.617188, 45.336702 ], [ -82.792969, 45.336702 ], [ -82.792969, 45.460131 ], [ -83.144531, 45.460131 ], [ -83.144531, 45.583290 ], [ -83.320312, 45.583290 ], [ -83.320312, 45.706179 ], [ -83.671875, 45.706179 ], [ -83.671875, 45.828799 ], [ -83.496094, 45.828799 ], [ -83.496094, 45.951150 ], [ -83.671875, 45.951150 ], [ -83.671875, 46.073231 ], [ -83.847656, 46.073231 ], [ -83.847656, 46.195042 ], [ -84.023438, 46.195042 ], [ -84.023438, 46.437857 ], [ -84.550781, 46.437857 ], [ -84.550781, 46.558860 ], [ -84.726562, 46.558860 ], [ -84.726562, 46.800059 ], [ -84.902344, 46.800059 ], [ -84.902344, 46.920255 ], [ -85.078125, 46.920255 ], [ -85.078125, 47.040182 ], [ -85.429688, 47.040182 ], [ -85.429688, 47.159840 ], [ -85.605469, 47.159840 ], [ -85.605469, 47.279229 ], [ -85.957031, 47.279229 ], [ -85.957031, 47.398349 ], [ -86.308594, 47.398349 ], [ -86.308594, 47.517201 ], [ -86.660156, 47.517201 ], [ -86.660156, 47.635784 ], [ -86.835938, 47.635784 ], [ -86.835938, 47.754098 ], [ -87.187500, 47.754098 ], [ -87.187500, 47.872144 ], [ -87.363281, 47.872144 ], [ -87.363281, 47.989922 ], [ -87.714844, 47.989922 ], [ -87.714844, 48.107431 ], [ -88.066406, 48.107431 ], [ -88.066406, 48.224673 ], [ -88.769531, 48.224673 ], [ -88.769531, 48.107431 ], [ -89.121094, 48.107431 ], [ -89.121094, 47.989922 ], [ -90.000000, 47.989922 ], [ -90.000000, 48.107431 ], [ -90.703125, 48.107431 ], [ -90.703125, 48.224673 ], [ -90.878906, 48.224673 ], [ -90.878906, 55.973798 ], [ -87.187500, 55.973798 ], [ -87.187500, 55.875311 ], [ -86.835938, 55.875311 ], [ -86.835938, 55.776573 ], [ -86.484375, 55.776573 ], [ -86.484375, 55.677584 ], [ -86.132812, 55.677584 ], [ -86.132812, 55.578345 ], [ -85.781250, 55.578345 ], [ -85.781250, 55.478853 ], [ -85.605469, 55.478853 ], [ -85.605469, 55.379110 ], [ -85.253906, 55.379110 ], [ -85.253906, 55.279115 ], [ -82.968750, 55.279115 ], [ -82.968750, 55.178868 ], [ -82.265625, 55.178868 ], [ -82.265625, 54.673831 ], [ -82.441406, 54.673831 ], [ -82.441406, 53.956086 ], [ -82.265625, 53.956086 ], [ -82.265625, 53.435719 ], [ -82.089844, 53.435719 ], [ -82.089844, 53.014783 ], [ -81.914062, 53.014783 ], [ -81.914062, 52.802761 ], [ -81.738281, 52.802761 ], [ -81.738281, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 52.268157 ], [ -81.386719, 52.268157 ], [ -81.386719, 52.052490 ], [ -81.210938, 52.052490 ], [ -81.210938, 51.944265 ], [ -81.035156, 51.944265 ], [ -81.035156, 51.835778 ], [ -80.859375, 51.835778 ], [ -80.859375, 51.727028 ], [ -80.683594, 51.727028 ], [ -80.683594, 51.508742 ], [ -80.507812, 51.508742 ], [ -80.507812, 51.399206 ], [ -80.332031, 51.399206 ], [ -80.332031, 51.289406 ], [ -80.156250, 51.289406 ], [ -80.156250, 51.179343 ], [ -79.804688, 51.179343 ], [ -79.804688, 51.289406 ], [ -79.453125, 51.289406 ], [ -79.453125, 51.399206 ], [ -79.101562, 51.399206 ], [ -79.101562, 51.618017 ], [ -78.925781, 51.618017 ], [ -78.925781, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 52.375599 ], [ -78.574219, 52.375599 ], [ -78.574219, 52.802761 ], [ -78.750000, 52.802761 ], [ -78.750000, 53.330873 ], [ -78.925781, 53.330873 ], [ -78.925781, 53.852527 ], [ -79.101562, 53.852527 ], [ -79.101562, 54.162434 ], [ -79.277344, 54.162434 ], [ -79.277344, 54.265224 ], [ -79.453125, 54.265224 ], [ -79.453125, 54.470038 ], [ -79.628906, 54.470038 ], [ -79.628906, 54.572062 ], [ -79.804688, 54.572062 ], [ -79.804688, 54.673831 ], [ -79.628906, 54.673831 ], [ -79.628906, 54.775346 ], [ -79.277344, 54.775346 ], [ -79.277344, 54.876607 ], [ -78.925781, 54.876607 ], [ -78.925781, 54.977614 ], [ -78.574219, 54.977614 ], [ -78.574219, 55.078367 ], [ -78.222656, 55.078367 ], [ -78.222656, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.279115 ], [ -77.871094, 55.279115 ], [ -77.871094, 55.379110 ], [ -77.695312, 55.379110 ], [ -77.695312, 55.578345 ], [ -77.519531, 55.578345 ], [ -77.519531, 55.677584 ], [ -77.343750, 55.677584 ], [ -77.343750, 55.776573 ], [ -77.167969, 55.776573 ], [ -77.167969, 55.875311 ], [ -76.992188, 55.875311 ], [ -76.992188, 55.973798 ], [ -68.203125, 55.973798 ] ], [ [ -70.839844, 46.920255 ], [ -71.015625, 46.920255 ], [ -71.015625, 46.800059 ], [ -70.839844, 46.800059 ], [ -70.839844, 46.920255 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.863281, 49.037868 ], [ -64.687500, 49.037868 ], [ -64.687500, 48.922499 ], [ -64.511719, 48.922499 ], [ -64.511719, 48.806863 ], [ -64.335938, 48.806863 ], [ -64.335938, 48.690960 ], [ -64.160156, 48.690960 ], [ -64.160156, 48.574790 ], [ -64.335938, 48.574790 ], [ -64.335938, 48.458352 ], [ -64.511719, 48.458352 ], [ -64.511719, 48.341646 ], [ -64.687500, 48.341646 ], [ -64.687500, 48.224673 ], [ -64.863281, 48.224673 ], [ -64.863281, 48.107431 ], [ -65.039062, 48.107431 ], [ -65.039062, 47.517201 ], [ -64.863281, 47.517201 ], [ -64.863281, 46.800059 ], [ -64.687500, 46.800059 ], [ -64.687500, 46.316584 ], [ -64.511719, 46.316584 ], [ -64.511719, 46.073231 ], [ -64.160156, 46.073231 ], [ -64.160156, 45.951150 ], [ -63.808594, 45.951150 ], [ -63.808594, 45.828799 ], [ -63.457031, 45.828799 ], [ -63.457031, 45.706179 ], [ -62.226562, 45.706179 ], [ -62.226562, 45.828799 ], [ -61.347656, 45.828799 ], [ -61.347656, 46.073231 ], [ -61.171875, 46.073231 ], [ -61.171875, 46.316584 ], [ -60.996094, 46.316584 ], [ -60.996094, 46.437857 ], [ -60.820312, 46.437857 ], [ -60.820312, 46.679594 ], [ -60.644531, 46.679594 ], [ -60.644531, 46.920255 ], [ -60.468750, 46.920255 ], [ -60.468750, 46.195042 ], [ -60.292969, 46.195042 ], [ -60.292969, 46.073231 ], [ -59.941406, 46.073231 ], [ -59.941406, 45.951150 ], [ -59.765625, 45.951150 ], [ -59.765625, 45.828799 ], [ -59.941406, 45.828799 ], [ -59.941406, 45.706179 ], [ -60.117188, 45.706179 ], [ -60.117188, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.460131 ], [ -60.644531, 45.460131 ], [ -60.644531, 45.336702 ], [ -60.820312, 45.336702 ], [ -60.820312, 45.213004 ], [ -61.171875, 45.213004 ], [ -61.171875, 45.089036 ], [ -61.699219, 45.089036 ], [ -61.699219, 44.964798 ], [ -62.402344, 44.964798 ], [ -62.402344, 44.840291 ], [ -62.929688, 44.840291 ], [ -62.929688, 44.715514 ], [ -63.281250, 44.715514 ], [ -63.281250, 44.590467 ], [ -63.457031, 44.590467 ], [ -63.457031, 44.465151 ], [ -63.808594, 44.465151 ], [ -63.808594, 44.339565 ], [ -63.984375, 44.339565 ], [ -63.984375, 44.213710 ], [ -64.160156, 44.213710 ], [ -64.160156, 44.087585 ], [ -64.511719, 44.087585 ], [ -64.511719, 43.961191 ], [ -64.687500, 43.961191 ], [ -64.687500, 43.834527 ], [ -64.863281, 43.834527 ], [ -64.863281, 43.707594 ], [ -65.214844, 43.707594 ], [ -65.214844, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.465151 ], [ -65.917969, 44.465151 ], [ -65.917969, 44.590467 ], [ -65.742188, 44.590467 ], [ -65.742188, 44.715514 ], [ -65.390625, 44.715514 ], [ -65.390625, 44.840291 ], [ -65.214844, 44.840291 ], [ -65.214844, 44.964798 ], [ -65.039062, 44.964798 ], [ -65.039062, 45.089036 ], [ -64.687500, 45.089036 ], [ -64.687500, 45.213004 ], [ -64.511719, 45.213004 ], [ -64.511719, 45.336702 ], [ -65.214844, 45.336702 ], [ -65.214844, 45.213004 ], [ -66.445312, 45.213004 ], [ -66.445312, 45.089036 ], [ -67.324219, 45.089036 ], [ -67.324219, 45.213004 ], [ -67.500000, 45.213004 ], [ -67.500000, 45.460131 ], [ -67.675781, 45.460131 ], [ -67.675781, 45.583290 ], [ -67.851562, 45.583290 ], [ -67.851562, 47.040182 ], [ -68.027344, 47.040182 ], [ -68.027344, 47.279229 ], [ -68.203125, 47.279229 ], [ -68.203125, 48.574790 ], [ -67.851562, 48.574790 ], [ -67.851562, 48.690960 ], [ -67.500000, 48.690960 ], [ -67.500000, 48.806863 ], [ -67.324219, 48.806863 ], [ -67.324219, 48.922499 ], [ -66.972656, 48.922499 ], [ -66.972656, 49.037868 ], [ -66.621094, 49.037868 ], [ -66.621094, 49.152970 ], [ -65.742188, 49.152970 ], [ -65.742188, 49.267805 ], [ -65.039062, 49.267805 ], [ -65.039062, 49.152970 ], [ -64.863281, 49.152970 ], [ -64.863281, 49.037868 ] ] ], [ [ [ -63.632812, 46.558860 ], [ -63.457031, 46.558860 ], [ -63.457031, 46.437857 ], [ -62.050781, 46.437857 ], [ -62.050781, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.195042 ], [ -62.402344, 46.195042 ], [ -62.402344, 46.073231 ], [ -62.578125, 46.073231 ], [ -62.578125, 45.951150 ], [ -63.105469, 45.951150 ], [ -63.105469, 46.073231 ], [ -63.457031, 46.073231 ], [ -63.457031, 46.195042 ], [ -63.808594, 46.195042 ], [ -63.808594, 46.316584 ], [ -64.160156, 46.316584 ], [ -64.160156, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.679594 ], [ -64.160156, 46.679594 ], [ -64.160156, 46.920255 ], [ -63.808594, 46.920255 ], [ -63.808594, 46.679594 ], [ -63.632812, 46.679594 ], [ -63.632812, 46.558860 ] ] ], [ [ [ -56.250000, 49.951220 ], [ -56.250000, 50.064192 ], [ -55.722656, 50.064192 ], [ -55.722656, 49.951220 ], [ -55.546875, 49.951220 ], [ -55.546875, 49.837982 ], [ -55.722656, 49.837982 ], [ -55.722656, 49.610710 ], [ -55.898438, 49.610710 ], [ -55.898438, 49.496675 ], [ -55.546875, 49.496675 ], [ -55.546875, 49.382373 ], [ -55.195312, 49.382373 ], [ -55.195312, 49.267805 ], [ -54.843750, 49.267805 ], [ -54.843750, 49.382373 ], [ -54.667969, 49.382373 ], [ -54.667969, 49.496675 ], [ -54.140625, 49.496675 ], [ -54.140625, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.267805 ], [ -53.437500, 49.267805 ], [ -53.437500, 49.037868 ], [ -53.613281, 49.037868 ], [ -53.613281, 48.690960 ], [ -53.789062, 48.690960 ], [ -53.789062, 48.574790 ], [ -53.261719, 48.574790 ], [ -53.261719, 48.690960 ], [ -53.085938, 48.690960 ], [ -53.085938, 48.341646 ], [ -52.910156, 48.341646 ], [ -52.910156, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.279229 ], [ -52.910156, 47.279229 ], [ -52.910156, 46.800059 ], [ -53.085938, 46.800059 ], [ -53.085938, 46.558860 ], [ -53.789062, 46.558860 ], [ -53.789062, 46.679594 ], [ -54.140625, 46.679594 ], [ -54.140625, 47.159840 ], [ -53.964844, 47.159840 ], [ -53.964844, 47.635784 ], [ -54.492188, 47.635784 ], [ -54.492188, 47.517201 ], [ -54.667969, 47.517201 ], [ -54.667969, 47.398349 ], [ -54.843750, 47.398349 ], [ -54.843750, 47.159840 ], [ -55.019531, 47.159840 ], [ -55.019531, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 46.920255 ], [ -55.898438, 46.920255 ], [ -55.898438, 47.040182 ], [ -55.722656, 47.040182 ], [ -55.722656, 47.159840 ], [ -55.546875, 47.159840 ], [ -55.546875, 47.279229 ], [ -55.371094, 47.279229 ], [ -55.371094, 47.398349 ], [ -55.722656, 47.398349 ], [ -55.722656, 47.517201 ], [ -56.074219, 47.517201 ], [ -56.074219, 47.635784 ], [ -56.601562, 47.635784 ], [ -56.601562, 47.517201 ], [ -58.359375, 47.517201 ], [ -58.359375, 47.635784 ], [ -59.238281, 47.635784 ], [ -59.238281, 47.754098 ], [ -59.414062, 47.754098 ], [ -59.414062, 47.872144 ], [ -59.238281, 47.872144 ], [ -59.238281, 47.989922 ], [ -58.886719, 47.989922 ], [ -58.886719, 48.107431 ], [ -58.710938, 48.107431 ], [ -58.710938, 48.224673 ], [ -58.886719, 48.224673 ], [ -58.886719, 48.341646 ], [ -59.062500, 48.341646 ], [ -59.062500, 48.458352 ], [ -59.238281, 48.458352 ], [ -59.238281, 48.574790 ], [ -59.062500, 48.574790 ], [ -59.062500, 48.690960 ], [ -58.886719, 48.690960 ], [ -58.886719, 48.806863 ], [ -58.710938, 48.806863 ], [ -58.710938, 48.922499 ], [ -58.535156, 48.922499 ], [ -58.535156, 49.037868 ], [ -58.359375, 49.037868 ], [ -58.359375, 49.267805 ], [ -58.183594, 49.267805 ], [ -58.183594, 49.496675 ], [ -58.007812, 49.496675 ], [ -58.007812, 49.724479 ], [ -57.832031, 49.724479 ], [ -57.832031, 50.064192 ], [ -57.656250, 50.064192 ], [ -57.656250, 50.289339 ], [ -57.480469, 50.289339 ], [ -57.480469, 50.513427 ], [ -57.304688, 50.513427 ], [ -57.304688, 50.736455 ], [ -57.128906, 50.736455 ], [ -57.128906, 50.958427 ], [ -56.953125, 50.958427 ], [ -56.953125, 51.179343 ], [ -56.777344, 51.179343 ], [ -56.777344, 51.289406 ], [ -56.601562, 51.289406 ], [ -56.601562, 51.399206 ], [ -56.250000, 51.399206 ], [ -56.250000, 51.508742 ], [ -55.898438, 51.508742 ], [ -55.898438, 51.618017 ], [ -55.371094, 51.618017 ], [ -55.371094, 51.399206 ], [ -55.546875, 51.399206 ], [ -55.546875, 51.179343 ], [ -55.722656, 51.179343 ], [ -55.722656, 50.958427 ], [ -55.898438, 50.958427 ], [ -55.898438, 50.736455 ], [ -56.074219, 50.736455 ], [ -56.074219, 50.625073 ], [ -56.250000, 50.625073 ], [ -56.250000, 50.401515 ], [ -56.425781, 50.401515 ], [ -56.425781, 50.176898 ], [ -56.601562, 50.176898 ], [ -56.601562, 49.951220 ], [ -56.250000, 49.951220 ] ], [ [ -56.777344, 49.951220 ], [ -56.777344, 49.837982 ], [ -56.601562, 49.837982 ], [ -56.601562, 49.951220 ], [ -56.777344, 49.951220 ] ] ], [ [ [ -63.281250, 49.724479 ], [ -62.929688, 49.724479 ], [ -62.929688, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.496675 ], [ -62.402344, 49.496675 ], [ -62.402344, 49.382373 ], [ -62.050781, 49.382373 ], [ -62.050781, 49.267805 ], [ -61.875000, 49.267805 ], [ -61.875000, 49.037868 ], [ -62.578125, 49.037868 ], [ -62.578125, 49.152970 ], [ -63.105469, 49.152970 ], [ -63.105469, 49.267805 ], [ -63.457031, 49.267805 ], [ -63.457031, 49.382373 ], [ -63.808594, 49.382373 ], [ -63.808594, 49.496675 ], [ -63.984375, 49.496675 ], [ -63.984375, 49.610710 ], [ -64.335938, 49.610710 ], [ -64.335938, 49.724479 ], [ -64.511719, 49.724479 ], [ -64.511719, 49.837982 ], [ -64.160156, 49.837982 ], [ -64.160156, 49.951220 ], [ -63.984375, 49.951220 ], [ -63.984375, 49.837982 ], [ -63.281250, 49.837982 ], [ -63.281250, 49.724479 ] ] ], [ [ [ -65.742188, 50.289339 ], [ -65.742188, 50.176898 ], [ -66.445312, 50.176898 ], [ -66.445312, 50.064192 ], [ -66.621094, 50.064192 ], [ -66.621094, 49.837982 ], [ -66.796875, 49.837982 ], [ -66.796875, 49.724479 ], [ -66.972656, 49.724479 ], [ -66.972656, 49.496675 ], [ -67.148438, 49.496675 ], [ -67.148438, 49.382373 ], [ -67.500000, 49.382373 ], [ -67.500000, 49.267805 ], [ -67.851562, 49.267805 ], [ -67.851562, 49.152970 ], [ -68.203125, 49.152970 ], [ -68.203125, 55.973798 ], [ -60.996094, 55.973798 ], [ -60.996094, 55.875311 ], [ -60.644531, 55.875311 ], [ -60.644531, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.677584 ], [ -60.292969, 55.677584 ], [ -60.292969, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.478853 ], [ -59.941406, 55.478853 ], [ -59.941406, 55.279115 ], [ -59.765625, 55.279115 ], [ -59.765625, 55.178868 ], [ -59.238281, 55.178868 ], [ -59.238281, 55.078367 ], [ -58.535156, 55.078367 ], [ -58.535156, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.876607 ], [ -57.832031, 54.876607 ], [ -57.832031, 54.775346 ], [ -57.480469, 54.775346 ], [ -57.480469, 54.673831 ], [ -57.304688, 54.673831 ], [ -57.304688, 54.367759 ], [ -57.128906, 54.367759 ], [ -57.128906, 53.956086 ], [ -56.953125, 53.956086 ], [ -56.953125, 53.748711 ], [ -56.601562, 53.748711 ], [ -56.601562, 53.644638 ], [ -56.074219, 53.644638 ], [ -56.074219, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 53.330873 ], [ -55.722656, 53.330873 ], [ -55.722656, 52.052490 ], [ -55.898438, 52.052490 ], [ -55.898438, 51.944265 ], [ -56.074219, 51.944265 ], [ -56.074219, 51.835778 ], [ -56.250000, 51.835778 ], [ -56.250000, 51.727028 ], [ -56.425781, 51.727028 ], [ -56.425781, 51.618017 ], [ -56.601562, 51.618017 ], [ -56.601562, 51.508742 ], [ -56.953125, 51.508742 ], [ -56.953125, 51.399206 ], [ -57.304688, 51.399206 ], [ -57.304688, 51.289406 ], [ -57.832031, 51.289406 ], [ -57.832031, 51.179343 ], [ -58.359375, 51.179343 ], [ -58.359375, 51.069017 ], [ -58.710938, 51.069017 ], [ -58.710938, 50.958427 ], [ -58.886719, 50.958427 ], [ -58.886719, 50.847573 ], [ -59.062500, 50.847573 ], [ -59.062500, 50.736455 ], [ -59.238281, 50.736455 ], [ -59.238281, 50.625073 ], [ -59.589844, 50.625073 ], [ -59.589844, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.401515 ], [ -59.941406, 50.401515 ], [ -59.941406, 50.289339 ], [ -60.468750, 50.289339 ], [ -60.468750, 50.176898 ], [ -61.171875, 50.176898 ], [ -61.171875, 50.064192 ], [ -62.402344, 50.064192 ], [ -62.402344, 50.176898 ], [ -63.457031, 50.176898 ], [ -63.457031, 50.289339 ], [ -65.742188, 50.289339 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, 49.152970 ], [ -68.203125, 55.973798 ], [ -60.996094, 55.973798 ], [ -60.996094, 55.875311 ], [ -60.644531, 55.875311 ], [ -60.644531, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.677584 ], [ -60.292969, 55.677584 ], [ -60.292969, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.478853 ], [ -59.941406, 55.478853 ], [ -59.941406, 55.279115 ], [ -59.765625, 55.279115 ], [ -59.765625, 55.178868 ], [ -59.238281, 55.178868 ], [ -59.238281, 55.078367 ], [ -58.535156, 55.078367 ], [ -58.535156, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.876607 ], [ -57.832031, 54.876607 ], [ -57.832031, 54.775346 ], [ -57.480469, 54.775346 ], [ -57.480469, 54.673831 ], [ -57.304688, 54.673831 ], [ -57.304688, 54.367759 ], [ -57.128906, 54.367759 ], [ -57.128906, 53.956086 ], [ -56.953125, 53.956086 ], [ -56.953125, 53.748711 ], [ -56.601562, 53.748711 ], [ -56.601562, 53.644638 ], [ -56.074219, 53.644638 ], [ -56.074219, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 53.330873 ], [ -55.722656, 53.330873 ], [ -55.722656, 52.052490 ], [ -55.898438, 52.052490 ], [ -55.898438, 51.944265 ], [ -56.074219, 51.944265 ], [ -56.074219, 51.835778 ], [ -56.250000, 51.835778 ], [ -56.250000, 51.727028 ], [ -56.425781, 51.727028 ], [ -56.425781, 51.618017 ], [ -56.601562, 51.618017 ], [ -56.601562, 51.508742 ], [ -56.953125, 51.508742 ], [ -56.953125, 51.399206 ], [ -57.304688, 51.399206 ], [ -57.304688, 51.289406 ], [ -57.832031, 51.289406 ], [ -57.832031, 51.179343 ], [ -58.359375, 51.179343 ], [ -58.359375, 51.069017 ], [ -58.710938, 51.069017 ], [ -58.710938, 50.958427 ], [ -58.886719, 50.958427 ], [ -58.886719, 50.847573 ], [ -59.062500, 50.847573 ], [ -59.062500, 50.736455 ], [ -59.238281, 50.736455 ], [ -59.238281, 50.625073 ], [ -59.589844, 50.625073 ], [ -59.589844, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.401515 ], [ -59.941406, 50.401515 ], [ -59.941406, 50.289339 ], [ -60.468750, 50.289339 ], [ -60.468750, 50.176898 ], [ -61.171875, 50.176898 ], [ -61.171875, 50.064192 ], [ -62.402344, 50.064192 ], [ -62.402344, 50.176898 ], [ -63.457031, 50.176898 ], [ -63.457031, 50.289339 ], [ -65.742188, 50.289339 ], [ -65.742188, 50.176898 ], [ -66.445312, 50.176898 ], [ -66.445312, 50.064192 ], [ -66.621094, 50.064192 ], [ -66.621094, 49.837982 ], [ -66.796875, 49.837982 ], [ -66.796875, 49.724479 ], [ -66.972656, 49.724479 ], [ -66.972656, 49.496675 ], [ -67.148438, 49.496675 ], [ -67.148438, 49.382373 ], [ -67.500000, 49.382373 ], [ -67.500000, 49.267805 ], [ -67.851562, 49.267805 ], [ -67.851562, 49.152970 ], [ -68.203125, 49.152970 ] ] ], [ [ [ -55.371094, 51.618017 ], [ -55.371094, 51.399206 ], [ -55.546875, 51.399206 ], [ -55.546875, 51.179343 ], [ -55.722656, 51.179343 ], [ -55.722656, 50.958427 ], [ -55.898438, 50.958427 ], [ -55.898438, 50.736455 ], [ -56.074219, 50.736455 ], [ -56.074219, 50.625073 ], [ -56.250000, 50.625073 ], [ -56.250000, 50.401515 ], [ -56.425781, 50.401515 ], [ -56.425781, 50.176898 ], [ -56.601562, 50.176898 ], [ -56.601562, 49.951220 ], [ -56.250000, 49.951220 ], [ -56.250000, 50.064192 ], [ -55.722656, 50.064192 ], [ -55.722656, 49.951220 ], [ -55.546875, 49.951220 ], [ -55.546875, 49.837982 ], [ -55.722656, 49.837982 ], [ -55.722656, 49.610710 ], [ -55.898438, 49.610710 ], [ -55.898438, 49.496675 ], [ -55.546875, 49.496675 ], [ -55.546875, 49.382373 ], [ -55.195312, 49.382373 ], [ -55.195312, 49.267805 ], [ -54.843750, 49.267805 ], [ -54.843750, 49.382373 ], [ -54.667969, 49.382373 ], [ -54.667969, 49.496675 ], [ -54.140625, 49.496675 ], [ -54.140625, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.267805 ], [ -53.437500, 49.267805 ], [ -53.437500, 49.037868 ], [ -53.613281, 49.037868 ], [ -53.613281, 48.690960 ], [ -53.789062, 48.690960 ], [ -53.789062, 48.574790 ], [ -53.261719, 48.574790 ], [ -53.261719, 48.690960 ], [ -53.085938, 48.690960 ], [ -53.085938, 48.341646 ], [ -52.910156, 48.341646 ], [ -52.910156, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.279229 ], [ -52.910156, 47.279229 ], [ -52.910156, 46.800059 ], [ -53.085938, 46.800059 ], [ -53.085938, 46.558860 ], [ -53.789062, 46.558860 ], [ -53.789062, 46.679594 ], [ -54.140625, 46.679594 ], [ -54.140625, 47.159840 ], [ -53.964844, 47.159840 ], [ -53.964844, 47.635784 ], [ -54.492188, 47.635784 ], [ -54.492188, 47.517201 ], [ -54.667969, 47.517201 ], [ -54.667969, 47.398349 ], [ -54.843750, 47.398349 ], [ -54.843750, 47.159840 ], [ -55.019531, 47.159840 ], [ -55.019531, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 46.920255 ], [ -55.898438, 46.920255 ], [ -55.898438, 47.040182 ], [ -55.722656, 47.040182 ], [ -55.722656, 47.159840 ], [ -55.546875, 47.159840 ], [ -55.546875, 47.279229 ], [ -55.371094, 47.279229 ], [ -55.371094, 47.398349 ], [ -55.722656, 47.398349 ], [ -55.722656, 47.517201 ], [ -56.074219, 47.517201 ], [ -56.074219, 47.635784 ], [ -56.601562, 47.635784 ], [ -56.601562, 47.517201 ], [ -58.359375, 47.517201 ], [ -58.359375, 47.635784 ], [ -59.238281, 47.635784 ], [ -59.238281, 47.754098 ], [ -59.414062, 47.754098 ], [ -59.414062, 47.872144 ], [ -59.238281, 47.872144 ], [ -59.238281, 47.989922 ], [ -58.886719, 47.989922 ], [ -58.886719, 48.107431 ], [ -58.710938, 48.107431 ], [ -58.710938, 48.224673 ], [ -58.886719, 48.224673 ], [ -58.886719, 48.341646 ], [ -59.062500, 48.341646 ], [ -59.062500, 48.458352 ], [ -59.238281, 48.458352 ], [ -59.238281, 48.574790 ], [ -59.062500, 48.574790 ], [ -59.062500, 48.690960 ], [ -58.886719, 48.690960 ], [ -58.886719, 48.806863 ], [ -58.710938, 48.806863 ], [ -58.710938, 48.922499 ], [ -58.535156, 48.922499 ], [ -58.535156, 49.037868 ], [ -58.359375, 49.037868 ], [ -58.359375, 49.267805 ], [ -58.183594, 49.267805 ], [ -58.183594, 49.496675 ], [ -58.007812, 49.496675 ], [ -58.007812, 49.724479 ], [ -57.832031, 49.724479 ], [ -57.832031, 50.064192 ], [ -57.656250, 50.064192 ], [ -57.656250, 50.289339 ], [ -57.480469, 50.289339 ], [ -57.480469, 50.513427 ], [ -57.304688, 50.513427 ], [ -57.304688, 50.736455 ], [ -57.128906, 50.736455 ], [ -57.128906, 50.958427 ], [ -56.953125, 50.958427 ], [ -56.953125, 51.179343 ], [ -56.777344, 51.179343 ], [ -56.777344, 51.289406 ], [ -56.601562, 51.289406 ], [ -56.601562, 51.399206 ], [ -56.250000, 51.399206 ], [ -56.250000, 51.508742 ], [ -55.898438, 51.508742 ], [ -55.898438, 51.618017 ], [ -55.371094, 51.618017 ] ], [ [ -56.601562, 49.951220 ], [ -56.777344, 49.951220 ], [ -56.777344, 49.837982 ], [ -56.601562, 49.837982 ], [ -56.601562, 49.951220 ] ] ], [ [ [ -63.808594, 46.920255 ], [ -63.808594, 46.679594 ], [ -63.632812, 46.679594 ], [ -63.632812, 46.558860 ], [ -63.457031, 46.558860 ], [ -63.457031, 46.437857 ], [ -62.050781, 46.437857 ], [ -62.050781, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.195042 ], [ -62.402344, 46.195042 ], [ -62.402344, 46.073231 ], [ -62.578125, 46.073231 ], [ -62.578125, 45.951150 ], [ -63.105469, 45.951150 ], [ -63.105469, 46.073231 ], [ -63.457031, 46.073231 ], [ -63.457031, 46.195042 ], [ -63.808594, 46.195042 ], [ -63.808594, 46.316584 ], [ -64.160156, 46.316584 ], [ -64.160156, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.679594 ], [ -64.160156, 46.679594 ], [ -64.160156, 46.920255 ], [ -63.808594, 46.920255 ] ] ], [ [ [ -63.984375, 49.951220 ], [ -63.984375, 49.837982 ], [ -63.281250, 49.837982 ], [ -63.281250, 49.724479 ], [ -62.929688, 49.724479 ], [ -62.929688, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.496675 ], [ -62.402344, 49.496675 ], [ -62.402344, 49.382373 ], [ -62.050781, 49.382373 ], [ -62.050781, 49.267805 ], [ -61.875000, 49.267805 ], [ -61.875000, 49.037868 ], [ -62.578125, 49.037868 ], [ -62.578125, 49.152970 ], [ -63.105469, 49.152970 ], [ -63.105469, 49.267805 ], [ -63.457031, 49.267805 ], [ -63.457031, 49.382373 ], [ -63.808594, 49.382373 ], [ -63.808594, 49.496675 ], [ -63.984375, 49.496675 ], [ -63.984375, 49.610710 ], [ -64.335938, 49.610710 ], [ -64.335938, 49.724479 ], [ -64.511719, 49.724479 ], [ -64.511719, 49.837982 ], [ -64.160156, 49.837982 ], [ -64.160156, 49.951220 ], [ -63.984375, 49.951220 ] ] ], [ [ [ -68.203125, 48.574790 ], [ -67.851562, 48.574790 ], [ -67.851562, 48.690960 ], [ -67.500000, 48.690960 ], [ -67.500000, 48.806863 ], [ -67.324219, 48.806863 ], [ -67.324219, 48.922499 ], [ -66.972656, 48.922499 ], [ -66.972656, 49.037868 ], [ -66.621094, 49.037868 ], [ -66.621094, 49.152970 ], [ -65.742188, 49.152970 ], [ -65.742188, 49.267805 ], [ -65.039062, 49.267805 ], [ -65.039062, 49.152970 ], [ -64.863281, 49.152970 ], [ -64.863281, 49.037868 ], [ -64.687500, 49.037868 ], [ -64.687500, 48.922499 ], [ -64.511719, 48.922499 ], [ -64.511719, 48.806863 ], [ -64.335938, 48.806863 ], [ -64.335938, 48.690960 ], [ -64.160156, 48.690960 ], [ -64.160156, 48.574790 ], [ -64.335938, 48.574790 ], [ -64.335938, 48.458352 ], [ -64.511719, 48.458352 ], [ -64.511719, 48.341646 ], [ -64.687500, 48.341646 ], [ -64.687500, 48.224673 ], [ -64.863281, 48.224673 ], [ -64.863281, 48.107431 ], [ -65.039062, 48.107431 ], [ -65.039062, 47.517201 ], [ -64.863281, 47.517201 ], [ -64.863281, 46.800059 ], [ -64.687500, 46.800059 ], [ -64.687500, 46.316584 ], [ -64.511719, 46.316584 ], [ -64.511719, 46.073231 ], [ -64.160156, 46.073231 ], [ -64.160156, 45.951150 ], [ -63.808594, 45.951150 ], [ -63.808594, 45.828799 ], [ -63.457031, 45.828799 ], [ -63.457031, 45.706179 ], [ -62.226562, 45.706179 ], [ -62.226562, 45.828799 ], [ -61.347656, 45.828799 ], [ -61.347656, 46.073231 ], [ -61.171875, 46.073231 ], [ -61.171875, 46.316584 ], [ -60.996094, 46.316584 ], [ -60.996094, 46.437857 ], [ -60.820312, 46.437857 ], [ -60.820312, 46.679594 ], [ -60.644531, 46.679594 ], [ -60.644531, 46.920255 ], [ -60.468750, 46.920255 ], [ -60.468750, 46.195042 ], [ -60.292969, 46.195042 ], [ -60.292969, 46.073231 ], [ -59.941406, 46.073231 ], [ -59.941406, 45.951150 ], [ -59.765625, 45.951150 ], [ -59.765625, 45.828799 ], [ -59.941406, 45.828799 ], [ -59.941406, 45.706179 ], [ -60.117188, 45.706179 ], [ -60.117188, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.460131 ], [ -60.644531, 45.460131 ], [ -60.644531, 45.336702 ], [ -60.820312, 45.336702 ], [ -60.820312, 45.213004 ], [ -61.171875, 45.213004 ], [ -61.171875, 45.089036 ], [ -61.699219, 45.089036 ], [ -61.699219, 44.964798 ], [ -62.402344, 44.964798 ], [ -62.402344, 44.840291 ], [ -62.929688, 44.840291 ], [ -62.929688, 44.715514 ], [ -63.281250, 44.715514 ], [ -63.281250, 44.590467 ], [ -63.457031, 44.590467 ], [ -63.457031, 44.465151 ], [ -63.808594, 44.465151 ], [ -63.808594, 44.339565 ], [ -63.984375, 44.339565 ], [ -63.984375, 44.213710 ], [ -64.160156, 44.213710 ], [ -64.160156, 44.087585 ], [ -64.511719, 44.087585 ], [ -64.511719, 43.961191 ], [ -64.687500, 43.961191 ], [ -64.687500, 43.834527 ], [ -64.863281, 43.834527 ], [ -64.863281, 43.707594 ], [ -65.214844, 43.707594 ], [ -65.214844, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.465151 ], [ -65.917969, 44.465151 ], [ -65.917969, 44.590467 ], [ -65.742188, 44.590467 ], [ -65.742188, 44.715514 ], [ -65.390625, 44.715514 ], [ -65.390625, 44.840291 ], [ -65.214844, 44.840291 ], [ -65.214844, 44.964798 ], [ -65.039062, 44.964798 ], [ -65.039062, 45.089036 ], [ -64.687500, 45.089036 ], [ -64.687500, 45.213004 ], [ -64.511719, 45.213004 ], [ -64.511719, 45.336702 ], [ -65.214844, 45.336702 ], [ -65.214844, 45.213004 ], [ -66.445312, 45.213004 ], [ -66.445312, 45.089036 ], [ -67.324219, 45.089036 ], [ -67.324219, 45.213004 ], [ -67.500000, 45.213004 ], [ -67.500000, 45.460131 ], [ -67.675781, 45.460131 ], [ -67.675781, 45.583290 ], [ -67.851562, 45.583290 ], [ -67.851562, 47.040182 ], [ -68.027344, 47.040182 ], [ -68.027344, 47.279229 ], [ -68.203125, 47.279229 ], [ -68.203125, 48.574790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.714844, 47.989922 ], [ -87.363281, 47.989922 ], [ -87.363281, 47.872144 ], [ -87.187500, 47.872144 ], [ -87.187500, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.635784 ], [ -86.660156, 47.635784 ], [ -86.660156, 47.517201 ], [ -86.308594, 47.517201 ], [ -86.308594, 47.398349 ], [ -85.957031, 47.398349 ], [ -85.957031, 47.279229 ], [ -85.605469, 47.279229 ], [ -85.605469, 47.159840 ], [ -85.429688, 47.159840 ], [ -85.429688, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.920255 ], [ -84.902344, 46.920255 ], [ -84.902344, 46.800059 ], [ -84.726562, 46.800059 ], [ -84.726562, 46.558860 ], [ -84.550781, 46.558860 ], [ -84.550781, 46.437857 ], [ -84.023438, 46.437857 ], [ -84.023438, 46.195042 ], [ -83.847656, 46.195042 ], [ -83.847656, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 45.951150 ], [ -83.496094, 45.951150 ], [ -83.496094, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 45.706179 ], [ -83.320312, 45.706179 ], [ -83.320312, 45.583290 ], [ -83.144531, 45.583290 ], [ -83.144531, 45.460131 ], [ -82.792969, 45.460131 ], [ -82.792969, 45.336702 ], [ -82.617188, 45.336702 ], [ -82.617188, 45.089036 ], [ -82.441406, 45.089036 ], [ -82.441406, 44.590467 ], [ -82.265625, 44.590467 ], [ -82.265625, 43.961191 ], [ -82.089844, 43.961191 ], [ -82.089844, 43.325178 ], [ -82.265625, 43.325178 ], [ -82.265625, 43.068888 ], [ -82.441406, 43.068888 ], [ -82.441406, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.682435 ], [ -82.792969, 42.682435 ], [ -82.792969, 42.423457 ], [ -82.968750, 42.423457 ], [ -82.968750, 42.163403 ], [ -83.144531, 42.163403 ], [ -83.144531, 41.902277 ], [ -82.968750, 41.902277 ], [ -82.968750, 41.640078 ], [ -82.265625, 41.640078 ], [ -82.265625, 41.771312 ], [ -81.914062, 41.771312 ], [ -81.914062, 41.902277 ], [ -81.562500, 41.902277 ], [ -81.562500, 42.032974 ], [ -81.210938, 42.032974 ], [ -81.210938, 42.163403 ], [ -80.859375, 42.163403 ], [ -80.859375, 42.293564 ], [ -80.507812, 42.293564 ], [ -80.507812, 42.423457 ], [ -79.980469, 42.423457 ], [ -79.980469, 42.553080 ], [ -79.453125, 42.553080 ], [ -79.453125, 42.682435 ], [ -79.101562, 42.682435 ], [ -79.101562, 42.811522 ], [ -78.925781, 42.811522 ], [ -78.925781, 43.325178 ], [ -79.101562, 43.325178 ], [ -79.101562, 43.452919 ], [ -78.750000, 43.452919 ], [ -78.750000, 43.580391 ], [ -76.640625, 43.580391 ], [ -76.640625, 43.834527 ], [ -76.464844, 43.834527 ], [ -76.464844, 43.961191 ], [ -76.289062, 43.961191 ], [ -76.289062, 44.087585 ], [ -76.113281, 44.087585 ], [ -76.113281, 44.213710 ], [ -75.937500, 44.213710 ], [ -75.937500, 44.339565 ], [ -75.761719, 44.339565 ], [ -75.761719, 44.465151 ], [ -75.585938, 44.465151 ], [ -75.585938, 44.590467 ], [ -75.410156, 44.590467 ], [ -75.410156, 44.715514 ], [ -75.234375, 44.715514 ], [ -75.234375, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 44.964798 ], [ -71.542969, 44.964798 ], [ -71.542969, 45.089036 ], [ -71.367188, 45.089036 ], [ -71.367188, 45.213004 ], [ -71.015625, 45.213004 ], [ -71.015625, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.583290 ], [ -70.488281, 45.583290 ], [ -70.488281, 45.828799 ], [ -70.312500, 45.828799 ], [ -70.312500, 46.073231 ], [ -70.136719, 46.073231 ], [ -70.136719, 46.437857 ], [ -69.960938, 46.437857 ], [ -69.960938, 46.679594 ], [ -69.785156, 46.679594 ], [ -69.785156, 46.920255 ], [ -69.609375, 46.920255 ], [ -69.609375, 47.040182 ], [ -69.433594, 47.040182 ], [ -69.433594, 47.279229 ], [ -69.082031, 47.279229 ], [ -69.082031, 47.159840 ], [ -68.554688, 47.159840 ], [ -68.554688, 47.279229 ], [ -68.027344, 47.279229 ], [ -68.027344, 47.040182 ], [ -67.851562, 47.040182 ], [ -67.851562, 45.583290 ], [ -67.675781, 45.583290 ], [ -67.675781, 45.460131 ], [ -67.500000, 45.460131 ], [ -67.500000, 45.213004 ], [ -67.324219, 45.213004 ], [ -67.324219, 45.089036 ], [ -67.148438, 45.089036 ], [ -67.148438, 44.964798 ], [ -66.972656, 44.964798 ], [ -66.972656, 44.715514 ], [ -67.324219, 44.715514 ], [ -67.324219, 44.590467 ], [ -67.500000, 44.590467 ], [ -67.500000, 44.465151 ], [ -67.851562, 44.465151 ], [ -67.851562, 44.339565 ], [ -68.027344, 44.339565 ], [ -68.027344, 44.213710 ], [ -68.378906, 44.213710 ], [ -68.378906, 44.087585 ], [ -68.730469, 44.087585 ], [ -68.730469, 43.961191 ], [ -69.257812, 43.961191 ], [ -69.257812, 43.834527 ], [ -69.785156, 43.834527 ], [ -69.785156, 43.707594 ], [ -70.136719, 43.707594 ], [ -70.136719, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.325178 ], [ -70.488281, 43.325178 ], [ -70.488281, 43.068888 ], [ -70.664062, 43.068888 ], [ -70.664062, 42.940339 ], [ -70.839844, 42.940339 ], [ -70.839844, 42.163403 ], [ -70.664062, 42.163403 ], [ -70.664062, 41.902277 ], [ -70.488281, 41.902277 ], [ -70.488281, 41.771312 ], [ -70.136719, 41.771312 ], [ -70.136719, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.640078 ], [ -70.136719, 41.640078 ], [ -70.136719, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -71.894531, 41.376809 ], [ -71.894531, 41.244772 ], [ -72.949219, 41.244772 ], [ -72.949219, 41.112469 ], [ -73.300781, 41.112469 ], [ -73.300781, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.112469 ], [ -72.246094, 41.112469 ], [ -72.246094, 40.979898 ], [ -72.070312, 40.979898 ], [ -72.070312, 40.847060 ], [ -72.421875, 40.847060 ], [ -72.421875, 40.713956 ], [ -72.949219, 40.713956 ], [ -72.949219, 40.580585 ], [ -74.179688, 40.580585 ], [ -74.179688, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 47.989922 ], [ -89.121094, 47.989922 ], [ -89.121094, 48.107431 ], [ -88.769531, 48.107431 ], [ -88.769531, 48.224673 ], [ -88.066406, 48.224673 ], [ -88.066406, 48.107431 ], [ -87.714844, 48.107431 ], [ -87.714844, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.066406, 48.224673 ], [ -88.066406, 48.107431 ], [ -87.714844, 48.107431 ], [ -87.714844, 47.989922 ], [ -87.363281, 47.989922 ], [ -87.363281, 47.872144 ], [ -87.187500, 47.872144 ], [ -87.187500, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.635784 ], [ -86.660156, 47.635784 ], [ -86.660156, 47.517201 ], [ -86.308594, 47.517201 ], [ -86.308594, 47.398349 ], [ -85.957031, 47.398349 ], [ -85.957031, 47.279229 ], [ -85.605469, 47.279229 ], [ -85.605469, 47.159840 ], [ -85.429688, 47.159840 ], [ -85.429688, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.920255 ], [ -84.902344, 46.920255 ], [ -84.902344, 46.800059 ], [ -84.726562, 46.800059 ], [ -84.726562, 46.558860 ], [ -84.550781, 46.558860 ], [ -84.550781, 46.437857 ], [ -84.023438, 46.437857 ], [ -84.023438, 46.195042 ], [ -83.847656, 46.195042 ], [ -83.847656, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 45.951150 ], [ -83.496094, 45.951150 ], [ -83.496094, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 45.706179 ], [ -83.320312, 45.706179 ], [ -83.320312, 45.583290 ], [ -83.144531, 45.583290 ], [ -83.144531, 45.460131 ], [ -82.792969, 45.460131 ], [ -82.792969, 45.336702 ], [ -82.617188, 45.336702 ], [ -82.617188, 45.089036 ], [ -82.441406, 45.089036 ], [ -82.441406, 44.590467 ], [ -82.265625, 44.590467 ], [ -82.265625, 43.961191 ], [ -82.089844, 43.961191 ], [ -82.089844, 43.325178 ], [ -82.265625, 43.325178 ], [ -82.265625, 43.068888 ], [ -82.441406, 43.068888 ], [ -82.441406, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.682435 ], [ -82.792969, 42.682435 ], [ -82.792969, 42.423457 ], [ -82.968750, 42.423457 ], [ -82.968750, 42.163403 ], [ -83.144531, 42.163403 ], [ -83.144531, 41.902277 ], [ -82.968750, 41.902277 ], [ -82.968750, 41.640078 ], [ -82.265625, 41.640078 ], [ -82.265625, 41.771312 ], [ -81.914062, 41.771312 ], [ -81.914062, 41.902277 ], [ -81.562500, 41.902277 ], [ -81.562500, 42.032974 ], [ -81.210938, 42.032974 ], [ -81.210938, 42.163403 ], [ -80.859375, 42.163403 ], [ -80.859375, 42.293564 ], [ -80.507812, 42.293564 ], [ -80.507812, 42.423457 ], [ -79.980469, 42.423457 ], [ -79.980469, 42.553080 ], [ -79.453125, 42.553080 ], [ -79.453125, 42.682435 ], [ -79.101562, 42.682435 ], [ -79.101562, 42.811522 ], [ -78.925781, 42.811522 ], [ -78.925781, 43.325178 ], [ -79.101562, 43.325178 ], [ -79.101562, 43.452919 ], [ -78.750000, 43.452919 ], [ -78.750000, 43.580391 ], [ -76.640625, 43.580391 ], [ -76.640625, 43.834527 ], [ -76.464844, 43.834527 ], [ -76.464844, 43.961191 ], [ -76.289062, 43.961191 ], [ -76.289062, 44.087585 ], [ -76.113281, 44.087585 ], [ -76.113281, 44.213710 ], [ -75.937500, 44.213710 ], [ -75.937500, 44.339565 ], [ -75.761719, 44.339565 ], [ -75.761719, 44.465151 ], [ -75.585938, 44.465151 ], [ -75.585938, 44.590467 ], [ -75.410156, 44.590467 ], [ -75.410156, 44.715514 ], [ -75.234375, 44.715514 ], [ -75.234375, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 44.964798 ], [ -71.542969, 44.964798 ], [ -71.542969, 45.089036 ], [ -71.367188, 45.089036 ], [ -71.367188, 45.213004 ], [ -71.015625, 45.213004 ], [ -71.015625, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.583290 ], [ -70.488281, 45.583290 ], [ -70.488281, 45.828799 ], [ -70.312500, 45.828799 ], [ -70.312500, 46.073231 ], [ -70.136719, 46.073231 ], [ -70.136719, 46.437857 ], [ -69.960938, 46.437857 ], [ -69.960938, 46.679594 ], [ -69.785156, 46.679594 ], [ -69.785156, 46.920255 ], [ -69.609375, 46.920255 ], [ -69.609375, 47.040182 ], [ -69.433594, 47.040182 ], [ -69.433594, 47.279229 ], [ -69.082031, 47.279229 ], [ -69.082031, 47.159840 ], [ -68.554688, 47.159840 ], [ -68.554688, 47.279229 ], [ -68.027344, 47.279229 ], [ -68.027344, 47.040182 ], [ -67.851562, 47.040182 ], [ -67.851562, 45.583290 ], [ -67.675781, 45.583290 ], [ -67.675781, 45.460131 ], [ -67.500000, 45.460131 ], [ -67.500000, 45.213004 ], [ -67.324219, 45.213004 ], [ -67.324219, 45.089036 ], [ -67.148438, 45.089036 ], [ -67.148438, 44.964798 ], [ -66.972656, 44.964798 ], [ -66.972656, 44.715514 ], [ -67.324219, 44.715514 ], [ -67.324219, 44.590467 ], [ -67.500000, 44.590467 ], [ -67.500000, 44.465151 ], [ -67.851562, 44.465151 ], [ -67.851562, 44.339565 ], [ -68.027344, 44.339565 ], [ -68.027344, 44.213710 ], [ -68.378906, 44.213710 ], [ -68.378906, 44.087585 ], [ -68.730469, 44.087585 ], [ -68.730469, 43.961191 ], [ -69.257812, 43.961191 ], [ -69.257812, 43.834527 ], [ -69.785156, 43.834527 ], [ -69.785156, 43.707594 ], [ -70.136719, 43.707594 ], [ -70.136719, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.325178 ], [ -70.488281, 43.325178 ], [ -70.488281, 43.068888 ], [ -70.664062, 43.068888 ], [ -70.664062, 42.940339 ], [ -70.839844, 42.940339 ], [ -70.839844, 42.163403 ], [ -70.664062, 42.163403 ], [ -70.664062, 41.902277 ], [ -70.488281, 41.902277 ], [ -70.488281, 41.771312 ], [ -70.136719, 41.771312 ], [ -70.136719, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.640078 ], [ -70.136719, 41.640078 ], [ -70.136719, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -71.894531, 41.376809 ], [ -71.894531, 41.244772 ], [ -72.949219, 41.244772 ], [ -72.949219, 41.112469 ], [ -73.300781, 41.112469 ], [ -73.300781, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.112469 ], [ -72.246094, 41.112469 ], [ -72.246094, 40.979898 ], [ -72.070312, 40.979898 ], [ -72.070312, 40.847060 ], [ -72.421875, 40.847060 ], [ -72.421875, 40.713956 ], [ -72.949219, 40.713956 ], [ -72.949219, 40.580585 ], [ -74.179688, 40.580585 ], [ -74.179688, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 47.989922 ], [ -89.121094, 47.989922 ], [ -89.121094, 48.107431 ], [ -88.769531, 48.107431 ], [ -88.769531, 48.224673 ], [ -88.066406, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.326948 ], [ -45.527344, 60.326948 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 60.673179 ], [ -46.054688, 60.673179 ], [ -46.054688, 60.759160 ], [ -46.230469, 60.759160 ], [ -46.230469, 60.844911 ], [ -48.515625, 60.844911 ], [ -48.515625, 61.015725 ], [ -48.691406, 61.015725 ], [ -48.691406, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.185625 ], [ -49.042969, 61.185625 ], [ -49.042969, 61.354614 ], [ -49.218750, 61.354614 ], [ -49.218750, 61.522695 ], [ -49.394531, 61.522695 ], [ -49.394531, 61.773123 ], [ -49.570312, 61.773123 ], [ -49.570312, 61.938950 ], [ -49.746094, 61.938950 ], [ -49.746094, 62.186014 ], [ -49.921875, 62.186014 ], [ -49.921875, 62.349609 ], [ -50.097656, 62.349609 ], [ -50.097656, 62.512318 ], [ -50.273438, 62.512318 ], [ -50.273438, 62.674143 ], [ -50.449219, 62.674143 ], [ -50.449219, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 62.915233 ], [ -50.800781, 62.915233 ], [ -50.800781, 62.995158 ], [ -50.976562, 62.995158 ], [ -50.976562, 63.154355 ], [ -51.152344, 63.154355 ], [ -51.152344, 63.312683 ], [ -51.328125, 63.312683 ], [ -51.328125, 63.391522 ], [ -51.503906, 63.391522 ], [ -51.503906, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 63.704722 ], [ -51.855469, 63.704722 ], [ -51.855469, 63.937372 ], [ -52.031250, 63.937372 ], [ -52.031250, 64.091408 ], [ -52.207031, 64.091408 ], [ -52.207031, 65.146115 ], [ -52.382812, 65.146115 ], [ -52.382812, 65.293468 ], [ -52.558594, 65.293468 ], [ -52.558594, 65.440002 ], [ -52.734375, 65.440002 ], [ -52.734375, 65.512963 ], [ -52.910156, 65.512963 ], [ -52.910156, 65.658275 ], [ -53.085938, 65.658275 ], [ -53.085938, 65.730626 ], [ -53.261719, 65.730626 ], [ -53.261719, 65.874725 ], [ -53.437500, 65.874725 ], [ -53.437500, 66.018018 ], [ -53.613281, 66.018018 ], [ -53.613281, 66.231457 ], [ -53.437500, 66.231457 ], [ -53.437500, 66.652977 ], [ -53.261719, 66.652977 ], [ -53.261719, 66.861082 ], [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.326948 ], [ -45.527344, 60.326948 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 60.673179 ], [ -46.054688, 60.673179 ], [ -46.054688, 60.759160 ], [ -46.230469, 60.759160 ], [ -46.230469, 60.844911 ], [ -48.515625, 60.844911 ], [ -48.515625, 61.015725 ], [ -48.691406, 61.015725 ], [ -48.691406, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.185625 ], [ -49.042969, 61.185625 ], [ -49.042969, 61.354614 ], [ -49.218750, 61.354614 ], [ -49.218750, 61.522695 ], [ -49.394531, 61.522695 ], [ -49.394531, 61.773123 ], [ -49.570312, 61.773123 ], [ -49.570312, 61.938950 ], [ -49.746094, 61.938950 ], [ -49.746094, 62.186014 ], [ -49.921875, 62.186014 ], [ -49.921875, 62.349609 ], [ -50.097656, 62.349609 ], [ -50.097656, 62.512318 ], [ -50.273438, 62.512318 ], [ -50.273438, 62.674143 ], [ -50.449219, 62.674143 ], [ -50.449219, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 62.915233 ], [ -50.800781, 62.915233 ], [ -50.800781, 62.995158 ], [ -50.976562, 62.995158 ], [ -50.976562, 63.154355 ], [ -51.152344, 63.154355 ], [ -51.152344, 63.312683 ], [ -51.328125, 63.312683 ], [ -51.328125, 63.391522 ], [ -51.503906, 63.391522 ], [ -51.503906, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 63.704722 ], [ -51.855469, 63.704722 ], [ -51.855469, 63.937372 ], [ -52.031250, 63.937372 ], [ -52.031250, 64.091408 ], [ -52.207031, 64.091408 ], [ -52.207031, 65.146115 ], [ -52.382812, 65.146115 ], [ -52.382812, 65.293468 ], [ -52.558594, 65.293468 ], [ -52.558594, 65.440002 ], [ -52.734375, 65.440002 ], [ -52.734375, 65.512963 ], [ -52.910156, 65.512963 ], [ -52.910156, 65.658275 ], [ -53.085938, 65.658275 ], [ -53.085938, 65.730626 ], [ -53.261719, 65.730626 ], [ -53.261719, 65.874725 ], [ -53.437500, 65.874725 ], [ -53.437500, 66.018018 ], [ -53.613281, 66.018018 ], [ -53.613281, 66.231457 ], [ -53.437500, 66.231457 ], [ -53.437500, 66.652977 ], [ -53.261719, 66.652977 ], [ -53.261719, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -79.277344, 73.677264 ], [ -78.574219, 73.677264 ], [ -78.574219, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.578167 ], [ -77.871094, 73.578167 ], [ -77.871094, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.478485 ], [ -77.519531, 73.478485 ], [ -77.519531, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.378215 ], [ -77.167969, 73.378215 ], [ -77.167969, 73.327858 ], [ -76.992188, 73.327858 ], [ -76.992188, 73.277353 ], [ -76.816406, 73.277353 ], [ -76.816406, 73.226700 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.175897 ], [ -76.464844, 73.175897 ], [ -76.464844, 73.124945 ], [ -80.507812, 73.124945 ], [ -80.507812, 73.175897 ], [ -80.683594, 73.175897 ], [ -80.683594, 73.277353 ], [ -80.859375, 73.277353 ], [ -80.859375, 73.677264 ], [ -80.683594, 73.677264 ], [ -80.683594, 73.726595 ], [ -80.332031, 73.726595 ], [ -80.332031, 73.775780 ], [ -79.980469, 73.775780 ], [ -79.980469, 73.726595 ], [ -79.277344, 73.726595 ], [ -79.277344, 73.677264 ] ] ], [ [ [ -82.089844, 73.528399 ], [ -81.914062, 73.528399 ], [ -81.914062, 73.428424 ], [ -81.738281, 73.428424 ], [ -81.738281, 73.327858 ], [ -81.562500, 73.327858 ], [ -81.562500, 73.226700 ], [ -81.386719, 73.226700 ], [ -81.386719, 73.124945 ], [ -85.078125, 73.124945 ], [ -85.078125, 73.226700 ], [ -84.902344, 73.226700 ], [ -84.902344, 73.327858 ], [ -84.726562, 73.327858 ], [ -84.726562, 73.378215 ], [ -84.375000, 73.378215 ], [ -84.375000, 73.428424 ], [ -84.023438, 73.428424 ], [ -84.023438, 73.478485 ], [ -83.671875, 73.478485 ], [ -83.671875, 73.528399 ], [ -83.320312, 73.528399 ], [ -83.320312, 73.578167 ], [ -82.968750, 73.578167 ], [ -82.968750, 73.627789 ], [ -82.617188, 73.627789 ], [ -82.617188, 73.677264 ], [ -82.265625, 73.677264 ], [ -82.265625, 73.627789 ], [ -82.089844, 73.627789 ], [ -82.089844, 73.528399 ] ] ], [ [ [ -85.781250, 73.726595 ], [ -85.957031, 73.726595 ], [ -85.957031, 73.578167 ], [ -86.132812, 73.578167 ], [ -86.132812, 73.378215 ], [ -86.308594, 73.378215 ], [ -86.308594, 73.226700 ], [ -86.484375, 73.226700 ], [ -86.484375, 73.124945 ], [ -89.296875, 73.124945 ], [ -89.296875, 73.226700 ], [ -89.121094, 73.226700 ], [ -89.121094, 73.277353 ], [ -88.945312, 73.277353 ], [ -88.945312, 73.327858 ], [ -88.769531, 73.327858 ], [ -88.769531, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.478485 ], [ -88.417969, 73.478485 ], [ -88.417969, 73.528399 ], [ -88.066406, 73.528399 ], [ -88.066406, 73.578167 ], [ -87.714844, 73.578167 ], [ -87.714844, 73.627789 ], [ -87.187500, 73.627789 ], [ -87.187500, 73.677264 ], [ -86.835938, 73.677264 ], [ -86.835938, 73.726595 ], [ -86.308594, 73.726595 ], [ -86.308594, 73.775780 ], [ -85.957031, 73.775780 ], [ -85.957031, 73.824820 ], [ -85.781250, 73.824820 ], [ -85.781250, 73.726595 ] ] ], [ [ [ -90.527344, 73.775780 ], [ -90.703125, 73.775780 ], [ -90.703125, 73.677264 ], [ -90.878906, 73.677264 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ], [ -90.527344, 73.775780 ] ] ], [ [ [ -81.738281, 75.715633 ], [ -81.210938, 75.715633 ], [ -81.210938, 75.672197 ], [ -81.035156, 75.672197 ], [ -81.035156, 75.628632 ], [ -80.859375, 75.628632 ], [ -80.859375, 75.541113 ], [ -80.683594, 75.541113 ], [ -80.683594, 75.497157 ], [ -80.507812, 75.497157 ], [ -80.507812, 75.453071 ], [ -80.332031, 75.453071 ], [ -80.332031, 75.364506 ], [ -80.156250, 75.364506 ], [ -80.156250, 75.320025 ], [ -79.980469, 75.320025 ], [ -79.980469, 75.095633 ], [ -79.804688, 75.095633 ], [ -79.804688, 74.867889 ], [ -79.980469, 74.867889 ], [ -79.980469, 74.775843 ], [ -80.156250, 74.775843 ], [ -80.156250, 74.729615 ], [ -80.332031, 74.729615 ], [ -80.332031, 74.636748 ], [ -80.507812, 74.636748 ], [ -80.507812, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.543330 ], [ -81.210938, 74.543330 ], [ -81.210938, 74.496413 ], [ -81.562500, 74.496413 ], [ -81.562500, 74.449358 ], [ -82.265625, 74.449358 ], [ -82.265625, 74.496413 ], [ -82.968750, 74.496413 ], [ -82.968750, 74.543330 ], [ -83.496094, 74.543330 ], [ -83.496094, 74.496413 ], [ -84.550781, 74.496413 ], [ -84.550781, 74.449358 ], [ -85.605469, 74.449358 ], [ -85.605469, 74.402163 ], [ -88.593750, 74.402163 ], [ -88.593750, 74.449358 ], [ -89.472656, 74.449358 ], [ -89.472656, 74.496413 ], [ -90.175781, 74.496413 ], [ -90.175781, 74.543330 ], [ -90.527344, 74.543330 ], [ -90.527344, 74.590108 ], [ -90.878906, 74.590108 ], [ -90.878906, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.973553 ], [ -90.527344, 75.973553 ], [ -90.527344, 75.930885 ], [ -90.175781, 75.930885 ], [ -90.175781, 75.888091 ], [ -90.000000, 75.888091 ], [ -90.000000, 75.845169 ], [ -89.824219, 75.845169 ], [ -89.824219, 75.802118 ], [ -89.648438, 75.802118 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -88.593750, 75.628632 ], [ -88.593750, 75.584937 ], [ -87.539062, 75.584937 ], [ -87.539062, 75.541113 ], [ -86.835938, 75.541113 ], [ -86.835938, 75.497157 ], [ -86.132812, 75.497157 ], [ -86.132812, 75.541113 ], [ -85.781250, 75.541113 ], [ -85.781250, 75.584937 ], [ -85.429688, 75.584937 ], [ -85.429688, 75.628632 ], [ -85.078125, 75.628632 ], [ -85.078125, 75.672197 ], [ -84.726562, 75.672197 ], [ -84.726562, 75.715633 ], [ -84.199219, 75.715633 ], [ -84.199219, 75.758940 ], [ -83.144531, 75.758940 ], [ -83.144531, 75.802118 ], [ -82.441406, 75.802118 ], [ -82.441406, 75.758940 ], [ -81.738281, 75.758940 ], [ -81.738281, 75.715633 ] ] ], [ [ [ -85.078125, 77.655346 ], [ -85.253906, 77.655346 ], [ -85.253906, 77.730282 ], [ -85.429688, 77.730282 ], [ -85.429688, 77.804771 ], [ -85.605469, 77.804771 ], [ -85.605469, 77.878814 ], [ -85.781250, 77.878814 ], [ -85.781250, 77.952414 ], [ -85.957031, 77.952414 ], [ -85.957031, 78.025574 ], [ -86.132812, 78.025574 ], [ -86.132812, 78.098296 ], [ -86.308594, 78.098296 ], [ -86.308594, 78.170582 ], [ -86.484375, 78.170582 ], [ -86.484375, 78.206563 ], [ -86.835938, 78.206563 ], [ -86.835938, 78.242436 ], [ -87.011719, 78.242436 ], [ -87.011719, 78.278201 ], [ -87.363281, 78.278201 ], [ -87.363281, 78.313860 ], [ -87.539062, 78.313860 ], [ -87.539062, 78.349411 ], [ -87.890625, 78.349411 ], [ -87.890625, 78.420193 ], [ -87.714844, 78.420193 ], [ -87.714844, 78.525573 ], [ -87.539062, 78.525573 ], [ -87.539062, 78.595299 ], [ -87.363281, 78.595299 ], [ -87.363281, 78.699106 ], [ -87.187500, 78.699106 ], [ -87.187500, 78.767792 ], [ -87.011719, 78.767792 ], [ -87.011719, 78.801980 ], [ -86.660156, 78.801980 ], [ -86.660156, 78.836065 ], [ -86.484375, 78.836065 ], [ -86.484375, 78.870048 ], [ -86.132812, 78.870048 ], [ -86.132812, 78.903929 ], [ -85.957031, 78.903929 ], [ -85.957031, 78.937708 ], [ -85.781250, 78.937708 ], [ -85.781250, 78.971386 ], [ -85.429688, 78.971386 ], [ -85.429688, 79.071812 ], [ -85.253906, 79.071812 ], [ -85.253906, 79.237185 ], [ -85.078125, 79.237185 ], [ -85.078125, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.004962 ], [ -76.289062, 79.004962 ], [ -76.289062, 78.937708 ], [ -76.113281, 78.937708 ], [ -76.113281, 78.836065 ], [ -75.937500, 78.836065 ], [ -75.937500, 78.767792 ], [ -75.761719, 78.767792 ], [ -75.761719, 78.664608 ], [ -75.585938, 78.664608 ], [ -75.585938, 78.560488 ], [ -75.410156, 78.560488 ], [ -75.410156, 78.490552 ], [ -75.585938, 78.490552 ], [ -75.585938, 78.420193 ], [ -75.761719, 78.420193 ], [ -75.761719, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.278201 ], [ -76.113281, 78.278201 ], [ -76.113281, 78.206563 ], [ -76.289062, 78.206563 ], [ -76.289062, 78.134493 ], [ -76.464844, 78.134493 ], [ -76.464844, 78.098296 ], [ -76.816406, 78.098296 ], [ -76.816406, 78.061989 ], [ -76.992188, 78.061989 ], [ -76.992188, 78.025574 ], [ -77.167969, 78.025574 ], [ -77.167969, 77.989049 ], [ -77.519531, 77.989049 ], [ -77.519531, 77.952414 ], [ -77.695312, 77.952414 ], [ -77.695312, 77.915669 ], [ -77.871094, 77.915669 ], [ -77.871094, 77.841848 ], [ -78.046875, 77.841848 ], [ -78.046875, 77.692870 ], [ -78.222656, 77.692870 ], [ -78.222656, 77.542096 ], [ -78.398438, 77.542096 ], [ -78.398438, 77.466028 ], [ -78.574219, 77.466028 ], [ -78.574219, 77.427824 ], [ -78.750000, 77.427824 ], [ -78.750000, 77.389504 ], [ -78.925781, 77.389504 ], [ -78.925781, 77.351070 ], [ -79.101562, 77.351070 ], [ -79.101562, 77.312520 ], [ -79.277344, 77.312520 ], [ -79.277344, 77.273855 ], [ -79.453125, 77.273855 ], [ -79.453125, 77.235074 ], [ -79.628906, 77.235074 ], [ -79.628906, 77.196176 ], [ -79.804688, 77.196176 ], [ -79.804688, 77.078784 ], [ -79.628906, 77.078784 ], [ -79.628906, 76.999935 ], [ -78.574219, 76.999935 ], [ -78.574219, 77.039418 ], [ -77.871094, 77.039418 ], [ -77.871094, 76.720223 ], [ -78.046875, 76.720223 ], [ -78.046875, 76.679785 ], [ -78.222656, 76.679785 ], [ -78.222656, 76.639226 ], [ -78.398438, 76.639226 ], [ -78.398438, 76.598545 ], [ -78.574219, 76.598545 ], [ -78.574219, 76.557743 ], [ -78.750000, 76.557743 ], [ -78.750000, 76.516819 ], [ -78.925781, 76.516819 ], [ -78.925781, 76.475773 ], [ -79.277344, 76.475773 ], [ -79.277344, 76.434604 ], [ -79.453125, 76.434604 ], [ -79.453125, 76.393312 ], [ -79.628906, 76.393312 ], [ -79.628906, 76.351896 ], [ -79.804688, 76.351896 ], [ -79.804688, 76.310358 ], [ -79.980469, 76.310358 ], [ -79.980469, 76.268695 ], [ -80.156250, 76.268695 ], [ -80.156250, 76.226907 ], [ -80.332031, 76.226907 ], [ -80.332031, 76.184995 ], [ -80.859375, 76.184995 ], [ -80.859375, 76.226907 ], [ -81.210938, 76.226907 ], [ -81.210938, 76.268695 ], [ -81.738281, 76.268695 ], [ -81.738281, 76.310358 ], [ -82.089844, 76.310358 ], [ -82.089844, 76.351896 ], [ -82.617188, 76.351896 ], [ -82.617188, 76.393312 ], [ -82.968750, 76.393312 ], [ -82.968750, 76.434604 ], [ -83.496094, 76.434604 ], [ -83.496094, 76.393312 ], [ -84.550781, 76.393312 ], [ -84.550781, 76.351896 ], [ -85.605469, 76.351896 ], [ -85.605469, 76.310358 ], [ -86.484375, 76.310358 ], [ -86.484375, 76.351896 ], [ -87.011719, 76.351896 ], [ -87.011719, 76.393312 ], [ -87.363281, 76.393312 ], [ -87.363281, 76.434604 ], [ -88.593750, 76.434604 ], [ -88.593750, 76.475773 ], [ -89.472656, 76.475773 ], [ -89.472656, 76.720223 ], [ -89.648438, 76.720223 ], [ -89.648438, 76.960334 ], [ -89.472656, 76.960334 ], [ -89.472656, 76.999935 ], [ -89.121094, 76.999935 ], [ -89.121094, 77.039418 ], [ -88.769531, 77.039418 ], [ -88.769531, 77.078784 ], [ -88.417969, 77.078784 ], [ -88.417969, 77.118032 ], [ -88.066406, 77.118032 ], [ -88.066406, 77.157163 ], [ -87.714844, 77.157163 ], [ -87.714844, 77.312520 ], [ -87.890625, 77.312520 ], [ -87.890625, 77.542096 ], [ -88.066406, 77.542096 ], [ -88.066406, 77.767582 ], [ -88.242188, 77.767582 ], [ -88.242188, 77.915669 ], [ -87.890625, 77.915669 ], [ -87.890625, 77.952414 ], [ -87.714844, 77.952414 ], [ -87.714844, 77.915669 ], [ -87.363281, 77.915669 ], [ -87.363281, 77.878814 ], [ -87.187500, 77.878814 ], [ -87.187500, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.804771 ], [ -86.660156, 77.804771 ], [ -86.660156, 77.767582 ], [ -86.484375, 77.767582 ], [ -86.484375, 77.730282 ], [ -86.132812, 77.730282 ], [ -86.132812, 77.692870 ], [ -85.957031, 77.692870 ], [ -85.957031, 77.655346 ], [ -85.605469, 77.655346 ], [ -85.605469, 77.617709 ], [ -85.429688, 77.617709 ], [ -85.429688, 77.579959 ], [ -85.078125, 77.579959 ], [ -85.078125, 77.655346 ] ], [ [ -85.078125, 77.542096 ], [ -84.902344, 77.542096 ], [ -84.902344, 77.579959 ], [ -85.078125, 77.579959 ], [ -85.078125, 77.542096 ] ] ], [ [ [ -85.781250, 79.302640 ], [ -85.957031, 79.302640 ], [ -85.957031, 79.269962 ], [ -86.132812, 79.269962 ], [ -86.132812, 79.237185 ], [ -86.308594, 79.237185 ], [ -86.308594, 79.204309 ], [ -86.484375, 79.204309 ], [ -86.484375, 79.138260 ], [ -86.660156, 79.138260 ], [ -86.660156, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.071812 ], [ -87.011719, 79.071812 ], [ -87.011719, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 79.004962 ], [ -87.363281, 79.004962 ], [ -87.363281, 78.937708 ], [ -87.539062, 78.937708 ], [ -87.539062, 78.870048 ], [ -87.714844, 78.870048 ], [ -87.714844, 78.801980 ], [ -87.890625, 78.801980 ], [ -87.890625, 78.733501 ], [ -88.066406, 78.733501 ], [ -88.066406, 78.664608 ], [ -88.242188, 78.664608 ], [ -88.242188, 78.595299 ], [ -88.417969, 78.595299 ], [ -88.417969, 78.525573 ], [ -88.593750, 78.525573 ], [ -88.593750, 78.455425 ], [ -88.769531, 78.455425 ], [ -88.769531, 78.384855 ], [ -88.945312, 78.384855 ], [ -88.945312, 78.313860 ], [ -89.121094, 78.313860 ], [ -89.121094, 78.278201 ], [ -89.472656, 78.278201 ], [ -89.472656, 78.242436 ], [ -90.351562, 78.242436 ], [ -90.351562, 78.206563 ], [ -90.878906, 78.206563 ], [ -90.878906, 79.335219 ], [ -85.781250, 79.335219 ], [ -85.781250, 79.302640 ] ] ], [ [ [ -90.703125, 76.475773 ], [ -90.703125, 76.310358 ], [ -90.878906, 76.310358 ], [ -90.878906, 76.475773 ], [ -90.703125, 76.475773 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -79.980469, 73.775780 ], [ -79.980469, 73.726595 ], [ -79.277344, 73.726595 ], [ -79.277344, 73.677264 ], [ -78.574219, 73.677264 ], [ -78.574219, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.578167 ], [ -77.871094, 73.578167 ], [ -77.871094, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.478485 ], [ -77.519531, 73.478485 ], [ -77.519531, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.378215 ], [ -77.167969, 73.378215 ], [ -77.167969, 73.327858 ], [ -76.992188, 73.327858 ], [ -76.992188, 73.277353 ], [ -76.816406, 73.277353 ], [ -76.816406, 73.226700 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.175897 ], [ -76.464844, 73.175897 ], [ -76.464844, 73.124945 ], [ -80.507812, 73.124945 ], [ -80.507812, 73.175897 ], [ -80.683594, 73.175897 ], [ -80.683594, 73.277353 ], [ -80.859375, 73.277353 ], [ -80.859375, 73.677264 ], [ -80.683594, 73.677264 ], [ -80.683594, 73.726595 ], [ -80.332031, 73.726595 ], [ -80.332031, 73.775780 ], [ -79.980469, 73.775780 ] ] ], [ [ [ -85.781250, 73.824820 ], [ -85.781250, 73.726595 ], [ -85.957031, 73.726595 ], [ -85.957031, 73.578167 ], [ -86.132812, 73.578167 ], [ -86.132812, 73.378215 ], [ -86.308594, 73.378215 ], [ -86.308594, 73.226700 ], [ -86.484375, 73.226700 ], [ -86.484375, 73.124945 ], [ -89.296875, 73.124945 ], [ -89.296875, 73.226700 ], [ -89.121094, 73.226700 ], [ -89.121094, 73.277353 ], [ -88.945312, 73.277353 ], [ -88.945312, 73.327858 ], [ -88.769531, 73.327858 ], [ -88.769531, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.478485 ], [ -88.417969, 73.478485 ], [ -88.417969, 73.528399 ], [ -88.066406, 73.528399 ], [ -88.066406, 73.578167 ], [ -87.714844, 73.578167 ], [ -87.714844, 73.627789 ], [ -87.187500, 73.627789 ], [ -87.187500, 73.677264 ], [ -86.835938, 73.677264 ], [ -86.835938, 73.726595 ], [ -86.308594, 73.726595 ], [ -86.308594, 73.775780 ], [ -85.957031, 73.775780 ], [ -85.957031, 73.824820 ], [ -85.781250, 73.824820 ] ] ], [ [ [ -82.265625, 73.627789 ], [ -82.089844, 73.627789 ], [ -82.089844, 73.528399 ], [ -81.914062, 73.528399 ], [ -81.914062, 73.428424 ], [ -81.738281, 73.428424 ], [ -81.738281, 73.327858 ], [ -81.562500, 73.327858 ], [ -81.562500, 73.226700 ], [ -81.386719, 73.226700 ], [ -81.386719, 73.124945 ], [ -85.078125, 73.124945 ], [ -85.078125, 73.226700 ], [ -84.902344, 73.226700 ], [ -84.902344, 73.327858 ], [ -84.726562, 73.327858 ], [ -84.726562, 73.378215 ], [ -84.375000, 73.378215 ], [ -84.375000, 73.428424 ], [ -84.023438, 73.428424 ], [ -84.023438, 73.478485 ], [ -83.671875, 73.478485 ], [ -83.671875, 73.528399 ], [ -83.320312, 73.528399 ], [ -83.320312, 73.578167 ], [ -82.968750, 73.578167 ], [ -82.968750, 73.627789 ], [ -82.617188, 73.627789 ], [ -82.617188, 73.677264 ], [ -82.265625, 73.677264 ], [ -82.265625, 73.627789 ] ] ], [ [ [ -90.527344, 73.873717 ], [ -90.527344, 73.775780 ], [ -90.703125, 73.775780 ], [ -90.703125, 73.677264 ], [ -90.878906, 73.677264 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ] ] ], [ [ [ -90.878906, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.973553 ], [ -90.527344, 75.973553 ], [ -90.527344, 75.930885 ], [ -90.175781, 75.930885 ], [ -90.175781, 75.888091 ], [ -90.000000, 75.888091 ], [ -90.000000, 75.845169 ], [ -89.824219, 75.845169 ], [ -89.824219, 75.802118 ], [ -89.648438, 75.802118 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -88.593750, 75.628632 ], [ -88.593750, 75.584937 ], [ -87.539062, 75.584937 ], [ -87.539062, 75.541113 ], [ -86.835938, 75.541113 ], [ -86.835938, 75.497157 ], [ -86.132812, 75.497157 ], [ -86.132812, 75.541113 ], [ -85.781250, 75.541113 ], [ -85.781250, 75.584937 ], [ -85.429688, 75.584937 ], [ -85.429688, 75.628632 ], [ -85.078125, 75.628632 ], [ -85.078125, 75.672197 ], [ -84.726562, 75.672197 ], [ -84.726562, 75.715633 ], [ -84.199219, 75.715633 ], [ -84.199219, 75.758940 ], [ -83.144531, 75.758940 ], [ -83.144531, 75.802118 ], [ -82.441406, 75.802118 ], [ -82.441406, 75.758940 ], [ -81.738281, 75.758940 ], [ -81.738281, 75.715633 ], [ -81.210938, 75.715633 ], [ -81.210938, 75.672197 ], [ -81.035156, 75.672197 ], [ -81.035156, 75.628632 ], [ -80.859375, 75.628632 ], [ -80.859375, 75.541113 ], [ -80.683594, 75.541113 ], [ -80.683594, 75.497157 ], [ -80.507812, 75.497157 ], [ -80.507812, 75.453071 ], [ -80.332031, 75.453071 ], [ -80.332031, 75.364506 ], [ -80.156250, 75.364506 ], [ -80.156250, 75.320025 ], [ -79.980469, 75.320025 ], [ -79.980469, 75.095633 ], [ -79.804688, 75.095633 ], [ -79.804688, 74.867889 ], [ -79.980469, 74.867889 ], [ -79.980469, 74.775843 ], [ -80.156250, 74.775843 ], [ -80.156250, 74.729615 ], [ -80.332031, 74.729615 ], [ -80.332031, 74.636748 ], [ -80.507812, 74.636748 ], [ -80.507812, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.543330 ], [ -81.210938, 74.543330 ], [ -81.210938, 74.496413 ], [ -81.562500, 74.496413 ], [ -81.562500, 74.449358 ], [ -82.265625, 74.449358 ], [ -82.265625, 74.496413 ], [ -82.968750, 74.496413 ], [ -82.968750, 74.543330 ], [ -83.496094, 74.543330 ], [ -83.496094, 74.496413 ], [ -84.550781, 74.496413 ], [ -84.550781, 74.449358 ], [ -85.605469, 74.449358 ], [ -85.605469, 74.402163 ], [ -88.593750, 74.402163 ], [ -88.593750, 74.449358 ], [ -89.472656, 74.449358 ], [ -89.472656, 74.496413 ], [ -90.175781, 74.496413 ], [ -90.175781, 74.543330 ], [ -90.527344, 74.543330 ], [ -90.527344, 74.590108 ], [ -90.878906, 74.590108 ], [ -90.878906, 76.016094 ] ] ], [ [ [ -85.078125, 77.579959 ], [ -85.078125, 77.655346 ], [ -85.253906, 77.655346 ], [ -85.253906, 77.730282 ], [ -85.429688, 77.730282 ], [ -85.429688, 77.804771 ], [ -85.605469, 77.804771 ], [ -85.605469, 77.878814 ], [ -85.781250, 77.878814 ], [ -85.781250, 77.952414 ], [ -85.957031, 77.952414 ], [ -85.957031, 78.025574 ], [ -86.132812, 78.025574 ], [ -86.132812, 78.098296 ], [ -86.308594, 78.098296 ], [ -86.308594, 78.170582 ], [ -86.484375, 78.170582 ], [ -86.484375, 78.206563 ], [ -86.835938, 78.206563 ], [ -86.835938, 78.242436 ], [ -87.011719, 78.242436 ], [ -87.011719, 78.278201 ], [ -87.363281, 78.278201 ], [ -87.363281, 78.313860 ], [ -87.539062, 78.313860 ], [ -87.539062, 78.349411 ], [ -87.890625, 78.349411 ], [ -87.890625, 78.420193 ], [ -87.714844, 78.420193 ], [ -87.714844, 78.525573 ], [ -87.539062, 78.525573 ], [ -87.539062, 78.595299 ], [ -87.363281, 78.595299 ], [ -87.363281, 78.699106 ], [ -87.187500, 78.699106 ], [ -87.187500, 78.767792 ], [ -87.011719, 78.767792 ], [ -87.011719, 78.801980 ], [ -86.660156, 78.801980 ], [ -86.660156, 78.836065 ], [ -86.484375, 78.836065 ], [ -86.484375, 78.870048 ], [ -86.132812, 78.870048 ], [ -86.132812, 78.903929 ], [ -85.957031, 78.903929 ], [ -85.957031, 78.937708 ], [ -85.781250, 78.937708 ], [ -85.781250, 78.971386 ], [ -85.429688, 78.971386 ], [ -85.429688, 79.071812 ], [ -85.253906, 79.071812 ], [ -85.253906, 79.237185 ], [ -85.078125, 79.237185 ], [ -85.078125, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.004962 ], [ -76.289062, 79.004962 ], [ -76.289062, 78.937708 ], [ -76.113281, 78.937708 ], [ -76.113281, 78.836065 ], [ -75.937500, 78.836065 ], [ -75.937500, 78.767792 ], [ -75.761719, 78.767792 ], [ -75.761719, 78.664608 ], [ -75.585938, 78.664608 ], [ -75.585938, 78.560488 ], [ -75.410156, 78.560488 ], [ -75.410156, 78.490552 ], [ -75.585938, 78.490552 ], [ -75.585938, 78.420193 ], [ -75.761719, 78.420193 ], [ -75.761719, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.278201 ], [ -76.113281, 78.278201 ], [ -76.113281, 78.206563 ], [ -76.289062, 78.206563 ], [ -76.289062, 78.134493 ], [ -76.464844, 78.134493 ], [ -76.464844, 78.098296 ], [ -76.816406, 78.098296 ], [ -76.816406, 78.061989 ], [ -76.992188, 78.061989 ], [ -76.992188, 78.025574 ], [ -77.167969, 78.025574 ], [ -77.167969, 77.989049 ], [ -77.519531, 77.989049 ], [ -77.519531, 77.952414 ], [ -77.695312, 77.952414 ], [ -77.695312, 77.915669 ], [ -77.871094, 77.915669 ], [ -77.871094, 77.841848 ], [ -78.046875, 77.841848 ], [ -78.046875, 77.692870 ], [ -78.222656, 77.692870 ], [ -78.222656, 77.542096 ], [ -78.398438, 77.542096 ], [ -78.398438, 77.466028 ], [ -78.574219, 77.466028 ], [ -78.574219, 77.427824 ], [ -78.750000, 77.427824 ], [ -78.750000, 77.389504 ], [ -78.925781, 77.389504 ], [ -78.925781, 77.351070 ], [ -79.101562, 77.351070 ], [ -79.101562, 77.312520 ], [ -79.277344, 77.312520 ], [ -79.277344, 77.273855 ], [ -79.453125, 77.273855 ], [ -79.453125, 77.235074 ], [ -79.628906, 77.235074 ], [ -79.628906, 77.196176 ], [ -79.804688, 77.196176 ], [ -79.804688, 77.078784 ], [ -79.628906, 77.078784 ], [ -79.628906, 76.999935 ], [ -78.574219, 76.999935 ], [ -78.574219, 77.039418 ], [ -77.871094, 77.039418 ], [ -77.871094, 76.720223 ], [ -78.046875, 76.720223 ], [ -78.046875, 76.679785 ], [ -78.222656, 76.679785 ], [ -78.222656, 76.639226 ], [ -78.398438, 76.639226 ], [ -78.398438, 76.598545 ], [ -78.574219, 76.598545 ], [ -78.574219, 76.557743 ], [ -78.750000, 76.557743 ], [ -78.750000, 76.516819 ], [ -78.925781, 76.516819 ], [ -78.925781, 76.475773 ], [ -79.277344, 76.475773 ], [ -79.277344, 76.434604 ], [ -79.453125, 76.434604 ], [ -79.453125, 76.393312 ], [ -79.628906, 76.393312 ], [ -79.628906, 76.351896 ], [ -79.804688, 76.351896 ], [ -79.804688, 76.310358 ], [ -79.980469, 76.310358 ], [ -79.980469, 76.268695 ], [ -80.156250, 76.268695 ], [ -80.156250, 76.226907 ], [ -80.332031, 76.226907 ], [ -80.332031, 76.184995 ], [ -80.859375, 76.184995 ], [ -80.859375, 76.226907 ], [ -81.210938, 76.226907 ], [ -81.210938, 76.268695 ], [ -81.738281, 76.268695 ], [ -81.738281, 76.310358 ], [ -82.089844, 76.310358 ], [ -82.089844, 76.351896 ], [ -82.617188, 76.351896 ], [ -82.617188, 76.393312 ], [ -82.968750, 76.393312 ], [ -82.968750, 76.434604 ], [ -83.496094, 76.434604 ], [ -83.496094, 76.393312 ], [ -84.550781, 76.393312 ], [ -84.550781, 76.351896 ], [ -85.605469, 76.351896 ], [ -85.605469, 76.310358 ], [ -86.484375, 76.310358 ], [ -86.484375, 76.351896 ], [ -87.011719, 76.351896 ], [ -87.011719, 76.393312 ], [ -87.363281, 76.393312 ], [ -87.363281, 76.434604 ], [ -88.593750, 76.434604 ], [ -88.593750, 76.475773 ], [ -89.472656, 76.475773 ], [ -89.472656, 76.720223 ], [ -89.648438, 76.720223 ], [ -89.648438, 76.960334 ], [ -89.472656, 76.960334 ], [ -89.472656, 76.999935 ], [ -89.121094, 76.999935 ], [ -89.121094, 77.039418 ], [ -88.769531, 77.039418 ], [ -88.769531, 77.078784 ], [ -88.417969, 77.078784 ], [ -88.417969, 77.118032 ], [ -88.066406, 77.118032 ], [ -88.066406, 77.157163 ], [ -87.714844, 77.157163 ], [ -87.714844, 77.312520 ], [ -87.890625, 77.312520 ], [ -87.890625, 77.542096 ], [ -88.066406, 77.542096 ], [ -88.066406, 77.767582 ], [ -88.242188, 77.767582 ], [ -88.242188, 77.915669 ], [ -87.890625, 77.915669 ], [ -87.890625, 77.952414 ], [ -87.714844, 77.952414 ], [ -87.714844, 77.915669 ], [ -87.363281, 77.915669 ], [ -87.363281, 77.878814 ], [ -87.187500, 77.878814 ], [ -87.187500, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.804771 ], [ -86.660156, 77.804771 ], [ -86.660156, 77.767582 ], [ -86.484375, 77.767582 ], [ -86.484375, 77.730282 ], [ -86.132812, 77.730282 ], [ -86.132812, 77.692870 ], [ -85.957031, 77.692870 ], [ -85.957031, 77.655346 ], [ -85.605469, 77.655346 ], [ -85.605469, 77.617709 ], [ -85.429688, 77.617709 ], [ -85.429688, 77.579959 ], [ -85.078125, 77.579959 ] ], [ [ -85.078125, 77.579959 ], [ -85.078125, 77.542096 ], [ -84.902344, 77.542096 ], [ -84.902344, 77.579959 ], [ -85.078125, 77.579959 ] ] ], [ [ [ -90.703125, 76.310358 ], [ -90.878906, 76.310358 ], [ -90.878906, 76.475773 ], [ -90.703125, 76.475773 ], [ -90.703125, 76.310358 ] ] ], [ [ [ -85.781250, 79.335219 ], [ -85.781250, 79.302640 ], [ -85.957031, 79.302640 ], [ -85.957031, 79.269962 ], [ -86.132812, 79.269962 ], [ -86.132812, 79.237185 ], [ -86.308594, 79.237185 ], [ -86.308594, 79.204309 ], [ -86.484375, 79.204309 ], [ -86.484375, 79.138260 ], [ -86.660156, 79.138260 ], [ -86.660156, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.071812 ], [ -87.011719, 79.071812 ], [ -87.011719, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 79.004962 ], [ -87.363281, 79.004962 ], [ -87.363281, 78.937708 ], [ -87.539062, 78.937708 ], [ -87.539062, 78.870048 ], [ -87.714844, 78.870048 ], [ -87.714844, 78.801980 ], [ -87.890625, 78.801980 ], [ -87.890625, 78.733501 ], [ -88.066406, 78.733501 ], [ -88.066406, 78.664608 ], [ -88.242188, 78.664608 ], [ -88.242188, 78.595299 ], [ -88.417969, 78.595299 ], [ -88.417969, 78.525573 ], [ -88.593750, 78.525573 ], [ -88.593750, 78.455425 ], [ -88.769531, 78.455425 ], [ -88.769531, 78.384855 ], [ -88.945312, 78.384855 ], [ -88.945312, 78.313860 ], [ -89.121094, 78.313860 ], [ -89.121094, 78.278201 ], [ -89.472656, 78.278201 ], [ -89.472656, 78.242436 ], [ -90.351562, 78.242436 ], [ -90.351562, 78.206563 ], [ -90.878906, 78.206563 ], [ -90.878906, 79.335219 ], [ -85.781250, 79.335219 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.372755 ], [ -85.957031, 66.372755 ], [ -85.957031, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.472969 ], [ -90.527344, 69.472969 ], [ -90.527344, 68.463800 ], [ -90.351562, 68.463800 ], [ -90.351562, 68.592487 ], [ -90.175781, 68.592487 ], [ -90.175781, 68.720441 ], [ -90.000000, 68.720441 ], [ -90.000000, 68.847665 ], [ -89.824219, 68.847665 ], [ -89.824219, 68.974164 ], [ -89.648438, 68.974164 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 69.099940 ], [ -88.945312, 69.099940 ], [ -88.945312, 69.037142 ], [ -88.769531, 69.037142 ], [ -88.769531, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 68.784144 ], [ -88.417969, 68.784144 ], [ -88.417969, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.242188, 68.592487 ], [ -88.066406, 68.592487 ], [ -88.066406, 68.204212 ], [ -88.242188, 68.204212 ], [ -88.242188, 67.809245 ], [ -88.066406, 67.809245 ], [ -88.066406, 67.676085 ], [ -87.890625, 67.676085 ], [ -87.890625, 67.542167 ], [ -87.714844, 67.542167 ], [ -87.714844, 67.407487 ], [ -87.539062, 67.407487 ], [ -87.539062, 67.272043 ], [ -87.363281, 67.272043 ], [ -87.363281, 67.204032 ], [ -87.187500, 67.204032 ], [ -87.187500, 67.339861 ], [ -87.011719, 67.339861 ], [ -87.011719, 67.474922 ], [ -86.835938, 67.474922 ], [ -86.835938, 67.609221 ], [ -86.660156, 67.609221 ], [ -86.660156, 67.742759 ], [ -86.484375, 67.742759 ], [ -86.484375, 67.875541 ], [ -86.308594, 67.875541 ], [ -86.308594, 68.007571 ], [ -86.132812, 68.007571 ], [ -86.132812, 68.204212 ], [ -85.957031, 68.204212 ], [ -85.957031, 68.463800 ], [ -85.781250, 68.463800 ], [ -85.781250, 68.656555 ], [ -85.605469, 68.656555 ], [ -85.605469, 69.900118 ], [ -85.253906, 69.900118 ], [ -85.253906, 69.839622 ], [ -84.550781, 69.839622 ], [ -84.550781, 69.778952 ], [ -83.847656, 69.778952 ], [ -83.847656, 69.718107 ], [ -83.144531, 69.718107 ], [ -83.144531, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.595890 ], [ -82.441406, 69.595890 ], [ -82.441406, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.472969 ], [ -82.089844, 69.472969 ], [ -82.089844, 69.411242 ], [ -81.914062, 69.411242 ], [ -81.914062, 69.349339 ], [ -81.738281, 69.349339 ], [ -81.738281, 69.287257 ], [ -81.562500, 69.287257 ], [ -81.562500, 69.224997 ], [ -81.386719, 69.224997 ], [ -81.386719, 69.162558 ], [ -81.210938, 69.162558 ], [ -81.210938, 68.592487 ], [ -81.386719, 68.592487 ], [ -81.386719, 68.463800 ], [ -81.562500, 68.463800 ], [ -81.562500, 68.334376 ], [ -81.738281, 68.334376 ], [ -81.738281, 68.204212 ], [ -81.914062, 68.204212 ], [ -81.914062, 68.073305 ], [ -81.738281, 68.073305 ], [ -81.738281, 67.941650 ], [ -81.562500, 67.941650 ], [ -81.562500, 67.809245 ], [ -81.386719, 67.809245 ], [ -81.386719, 67.676085 ], [ -81.210938, 67.676085 ], [ -81.210938, 67.339861 ], [ -81.386719, 67.339861 ], [ -81.386719, 67.067433 ], [ -81.562500, 67.067433 ], [ -81.562500, 66.998844 ], [ -81.738281, 66.998844 ], [ -81.738281, 66.930060 ], [ -81.914062, 66.930060 ], [ -81.914062, 66.861082 ], [ -82.089844, 66.861082 ], [ -82.089844, 66.791909 ], [ -82.441406, 66.791909 ], [ -82.441406, 66.722541 ], [ -82.617188, 66.722541 ], [ -82.617188, 66.652977 ], [ -82.792969, 66.652977 ], [ -82.792969, 66.583217 ], [ -82.968750, 66.583217 ], [ -82.968750, 66.513260 ], [ -83.144531, 66.513260 ], [ -83.144531, 66.443107 ], [ -83.496094, 66.443107 ], [ -83.496094, 66.372755 ], [ -83.847656, 66.372755 ], [ -83.847656, 66.302205 ], [ -84.375000, 66.302205 ], [ -84.375000, 66.231457 ], [ -84.902344, 66.231457 ], [ -84.902344, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.443107 ], [ -85.605469, 66.443107 ] ] ], [ [ [ -85.957031, 72.607120 ], [ -85.605469, 72.607120 ], [ -85.605469, 72.764065 ], [ -85.429688, 72.764065 ], [ -85.429688, 72.919635 ], [ -85.253906, 72.919635 ], [ -85.253906, 73.073844 ], [ -85.078125, 73.073844 ], [ -85.078125, 73.124945 ], [ -81.386719, 73.124945 ], [ -81.386719, 73.073844 ], [ -81.210938, 73.073844 ], [ -81.210938, 72.971189 ], [ -81.035156, 72.971189 ], [ -81.035156, 72.867930 ], [ -80.859375, 72.867930 ], [ -80.859375, 72.764065 ], [ -80.683594, 72.764065 ], [ -80.683594, 72.073911 ], [ -80.332031, 72.073911 ], [ -80.332031, 72.127936 ], [ -79.980469, 72.127936 ], [ -79.980469, 72.181804 ], [ -79.628906, 72.181804 ], [ -79.628906, 72.235514 ], [ -79.277344, 72.235514 ], [ -79.277344, 72.289067 ], [ -78.925781, 72.289067 ], [ -78.925781, 72.342464 ], [ -78.574219, 72.342464 ], [ -78.574219, 72.448792 ], [ -78.398438, 72.448792 ], [ -78.398438, 72.554498 ], [ -78.222656, 72.554498 ], [ -78.222656, 72.607120 ], [ -78.046875, 72.607120 ], [ -78.046875, 72.711903 ], [ -77.695312, 72.711903 ], [ -77.695312, 72.659588 ], [ -77.343750, 72.659588 ], [ -77.343750, 72.607120 ], [ -77.167969, 72.607120 ], [ -77.167969, 72.554498 ], [ -76.992188, 72.554498 ], [ -76.992188, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.448792 ], [ -76.464844, 72.448792 ], [ -76.464844, 72.395706 ], [ -76.289062, 72.395706 ], [ -76.289062, 72.342464 ], [ -75.937500, 72.342464 ], [ -75.937500, 72.289067 ], [ -75.761719, 72.289067 ], [ -75.761719, 72.235514 ], [ -75.585938, 72.235514 ], [ -75.585938, 72.181804 ], [ -75.410156, 72.181804 ], [ -75.410156, 72.127936 ], [ -75.234375, 72.127936 ], [ -75.234375, 72.073911 ], [ -75.058594, 72.073911 ], [ -75.058594, 72.019729 ], [ -74.882812, 72.019729 ], [ -74.882812, 71.910888 ], [ -74.707031, 71.910888 ], [ -74.707031, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.801410 ], [ -74.355469, 71.801410 ], [ -74.355469, 71.746432 ], [ -74.179688, 71.746432 ], [ -74.179688, 71.357067 ], [ -73.828125, 71.357067 ], [ -73.828125, 71.413177 ], [ -73.300781, 71.413177 ], [ -73.300781, 71.469124 ], [ -72.949219, 71.469124 ], [ -72.949219, 71.524909 ], [ -72.421875, 71.524909 ], [ -72.421875, 71.580532 ], [ -72.246094, 71.580532 ], [ -72.246094, 71.524909 ], [ -72.070312, 71.524909 ], [ -72.070312, 71.413177 ], [ -71.894531, 71.413177 ], [ -71.894531, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 71.187754 ], [ -71.542969, 71.187754 ], [ -71.542969, 71.074056 ], [ -71.367188, 71.074056 ], [ -71.367188, 70.959697 ], [ -71.191406, 70.959697 ], [ -71.191406, 70.902268 ], [ -71.015625, 70.902268 ], [ -71.015625, 70.844673 ], [ -70.664062, 70.844673 ], [ -70.664062, 70.786910 ], [ -70.312500, 70.786910 ], [ -70.312500, 70.728979 ], [ -69.785156, 70.728979 ], [ -69.785156, 70.670881 ], [ -69.433594, 70.670881 ], [ -69.433594, 70.612614 ], [ -69.082031, 70.612614 ], [ -69.082031, 70.554179 ], [ -68.730469, 70.554179 ], [ -68.730469, 70.495574 ], [ -68.554688, 70.495574 ], [ -68.554688, 70.377854 ], [ -68.378906, 70.377854 ], [ -68.378906, 70.318738 ], [ -68.203125, 70.318738 ], [ -68.203125, 70.259452 ], [ -68.027344, 70.259452 ], [ -68.027344, 70.140364 ], [ -67.851562, 70.140364 ], [ -67.851562, 70.020587 ], [ -67.675781, 70.020587 ], [ -67.675781, 69.839622 ], [ -67.500000, 69.839622 ], [ -67.500000, 69.657086 ], [ -67.324219, 69.657086 ], [ -67.324219, 69.411242 ], [ -67.148438, 69.411242 ], [ -67.148438, 69.224997 ], [ -66.972656, 69.224997 ], [ -66.972656, 69.099940 ], [ -67.324219, 69.099940 ], [ -67.324219, 69.037142 ], [ -67.500000, 69.037142 ], [ -67.500000, 68.974164 ], [ -67.675781, 68.974164 ], [ -67.675781, 68.911005 ], [ -68.027344, 68.911005 ], [ -68.027344, 68.847665 ], [ -68.203125, 68.847665 ], [ -68.203125, 68.784144 ], [ -68.554688, 68.784144 ], [ -68.554688, 68.720441 ], [ -68.730469, 68.720441 ], [ -68.730469, 68.656555 ], [ -68.554688, 68.656555 ], [ -68.554688, 68.592487 ], [ -68.203125, 68.592487 ], [ -68.203125, 68.528235 ], [ -68.027344, 68.528235 ], [ -68.027344, 68.463800 ], [ -67.851562, 68.463800 ], [ -67.851562, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.334376 ], [ -67.324219, 68.334376 ], [ -67.324219, 68.269387 ], [ -67.148438, 68.269387 ], [ -67.148438, 68.204212 ], [ -66.796875, 68.204212 ], [ -66.796875, 68.138852 ], [ -66.621094, 68.138852 ], [ -66.621094, 68.073305 ], [ -66.269531, 68.073305 ], [ -66.269531, 68.007571 ], [ -65.742188, 68.007571 ], [ -65.742188, 67.941650 ], [ -65.214844, 67.941650 ], [ -65.214844, 67.875541 ], [ -64.863281, 67.875541 ], [ -64.863281, 67.809245 ], [ -64.687500, 67.809245 ], [ -64.687500, 67.676085 ], [ -64.511719, 67.676085 ], [ -64.511719, 67.542167 ], [ -64.335938, 67.542167 ], [ -64.335938, 67.407487 ], [ -64.160156, 67.407487 ], [ -64.160156, 67.339861 ], [ -63.984375, 67.339861 ], [ -63.984375, 67.204032 ], [ -63.808594, 67.204032 ], [ -63.808594, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -62.753906, 66.930060 ], [ -62.753906, 66.861082 ], [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.160511 ], [ -66.445312, 66.160511 ], [ -66.445312, 66.231457 ], [ -66.621094, 66.231457 ], [ -66.621094, 66.302205 ], [ -66.796875, 66.302205 ], [ -66.796875, 66.372755 ], [ -66.972656, 66.372755 ], [ -66.972656, 66.302205 ], [ -67.675781, 66.302205 ], [ -67.675781, 66.231457 ], [ -68.027344, 66.231457 ], [ -68.027344, 66.160511 ], [ -74.003906, 66.160511 ], [ -74.003906, 66.302205 ], [ -73.828125, 66.302205 ], [ -73.828125, 66.443107 ], [ -73.652344, 66.443107 ], [ -73.652344, 66.583217 ], [ -73.476562, 66.583217 ], [ -73.476562, 66.722541 ], [ -73.300781, 66.722541 ], [ -73.300781, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 66.930060 ], [ -72.949219, 66.930060 ], [ -72.949219, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -72.597656, 67.204032 ], [ -72.597656, 67.339861 ], [ -72.773438, 67.339861 ], [ -72.773438, 67.609221 ], [ -72.949219, 67.609221 ], [ -72.949219, 67.809245 ], [ -73.125000, 67.809245 ], [ -73.125000, 67.941650 ], [ -73.300781, 67.941650 ], [ -73.300781, 68.073305 ], [ -73.476562, 68.073305 ], [ -73.476562, 68.138852 ], [ -73.652344, 68.138852 ], [ -73.652344, 68.204212 ], [ -74.003906, 68.204212 ], [ -74.003906, 68.269387 ], [ -74.179688, 68.269387 ], [ -74.179688, 68.334376 ], [ -74.355469, 68.334376 ], [ -74.355469, 68.399180 ], [ -74.707031, 68.399180 ], [ -74.707031, 68.463800 ], [ -74.882812, 68.463800 ], [ -74.882812, 68.528235 ], [ -75.058594, 68.528235 ], [ -75.058594, 68.592487 ], [ -75.410156, 68.592487 ], [ -75.410156, 68.656555 ], [ -75.761719, 68.656555 ], [ -75.761719, 68.720441 ], [ -76.113281, 68.720441 ], [ -76.113281, 68.784144 ], [ -76.464844, 68.784144 ], [ -76.464844, 68.847665 ], [ -76.816406, 68.847665 ], [ -76.816406, 68.911005 ], [ -76.640625, 68.911005 ], [ -76.640625, 69.037142 ], [ -76.464844, 69.037142 ], [ -76.464844, 69.099940 ], [ -76.289062, 69.099940 ], [ -76.289062, 69.162558 ], [ -76.464844, 69.162558 ], [ -76.464844, 69.287257 ], [ -76.640625, 69.287257 ], [ -76.640625, 69.411242 ], [ -76.816406, 69.411242 ], [ -76.816406, 69.472969 ], [ -76.992188, 69.472969 ], [ -76.992188, 69.595890 ], [ -77.167969, 69.595890 ], [ -77.167969, 69.718107 ], [ -77.343750, 69.718107 ], [ -77.343750, 69.778952 ], [ -77.871094, 69.778952 ], [ -77.871094, 69.839622 ], [ -78.398438, 69.839622 ], [ -78.398438, 69.900118 ], [ -78.574219, 69.900118 ], [ -78.574219, 70.020587 ], [ -78.750000, 70.020587 ], [ -78.750000, 70.080562 ], [ -79.101562, 70.080562 ], [ -79.101562, 70.020587 ], [ -79.277344, 70.020587 ], [ -79.277344, 69.900118 ], [ -79.628906, 69.900118 ], [ -79.628906, 69.839622 ], [ -80.332031, 69.839622 ], [ -80.332031, 69.778952 ], [ -81.035156, 69.778952 ], [ -81.035156, 69.718107 ], [ -81.914062, 69.718107 ], [ -81.914062, 69.778952 ], [ -82.792969, 69.778952 ], [ -82.792969, 69.839622 ], [ -83.671875, 69.839622 ], [ -83.671875, 69.900118 ], [ -84.550781, 69.900118 ], [ -84.550781, 69.960439 ], [ -85.253906, 69.960439 ], [ -85.253906, 70.020587 ], [ -85.605469, 70.020587 ], [ -85.605469, 70.080562 ], [ -86.132812, 70.080562 ], [ -86.132812, 70.140364 ], [ -86.484375, 70.140364 ], [ -86.484375, 70.199994 ], [ -86.835938, 70.199994 ], [ -86.835938, 70.259452 ], [ -87.363281, 70.259452 ], [ -87.363281, 70.318738 ], [ -88.066406, 70.318738 ], [ -88.066406, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.436799 ], [ -88.945312, 70.436799 ], [ -88.945312, 70.554179 ], [ -89.121094, 70.554179 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.728979 ], [ -89.472656, 70.728979 ], [ -89.472656, 70.786910 ], [ -89.296875, 70.786910 ], [ -89.296875, 70.902268 ], [ -89.121094, 70.902268 ], [ -89.121094, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.016960 ], [ -88.769531, 71.016960 ], [ -88.769531, 71.130988 ], [ -88.593750, 71.130988 ], [ -88.593750, 71.187754 ], [ -88.417969, 71.187754 ], [ -88.417969, 71.244356 ], [ -89.824219, 71.244356 ], [ -89.824219, 71.469124 ], [ -90.000000, 71.469124 ], [ -90.000000, 71.965388 ], [ -90.175781, 71.965388 ], [ -90.175781, 72.342464 ], [ -90.000000, 72.342464 ], [ -90.000000, 72.554498 ], [ -89.824219, 72.554498 ], [ -89.824219, 72.764065 ], [ -89.648438, 72.764065 ], [ -89.648438, 72.971189 ], [ -89.472656, 72.971189 ], [ -89.472656, 73.124945 ], [ -86.484375, 73.124945 ], [ -86.484375, 73.073844 ], [ -86.308594, 73.073844 ], [ -86.308594, 72.919635 ], [ -86.132812, 72.919635 ], [ -86.132812, 72.764065 ], [ -85.957031, 72.764065 ], [ -85.957031, 72.607120 ] ] ], [ [ [ -75.761719, 68.138852 ], [ -75.410156, 68.138852 ], [ -75.410156, 68.073305 ], [ -75.234375, 68.073305 ], [ -75.234375, 68.007571 ], [ -75.058594, 68.007571 ], [ -75.058594, 67.542167 ], [ -75.234375, 67.542167 ], [ -75.234375, 67.407487 ], [ -75.410156, 67.407487 ], [ -75.410156, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.761719, 67.135829 ], [ -76.289062, 67.135829 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.339861 ], [ -77.167969, 67.339861 ], [ -77.167969, 67.742759 ], [ -76.992188, 67.742759 ], [ -76.992188, 68.007571 ], [ -76.816406, 68.007571 ], [ -76.816406, 68.138852 ], [ -76.464844, 68.138852 ], [ -76.464844, 68.204212 ], [ -76.113281, 68.204212 ], [ -76.113281, 68.269387 ], [ -75.937500, 68.269387 ], [ -75.937500, 68.204212 ], [ -75.761719, 68.204212 ], [ -75.761719, 68.138852 ] ] ], [ [ [ -76.289062, 72.816074 ], [ -76.992188, 72.816074 ], [ -76.992188, 72.867930 ], [ -78.574219, 72.867930 ], [ -78.574219, 72.816074 ], [ -79.101562, 72.816074 ], [ -79.101562, 72.764065 ], [ -79.804688, 72.764065 ], [ -79.804688, 72.816074 ], [ -79.980469, 72.816074 ], [ -79.980469, 72.919635 ], [ -80.156250, 72.919635 ], [ -80.156250, 73.022592 ], [ -80.332031, 73.022592 ], [ -80.332031, 73.073844 ], [ -80.507812, 73.073844 ], [ -80.507812, 73.124945 ], [ -76.289062, 73.124945 ], [ -76.289062, 72.816074 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.253906, 69.900118 ], [ -85.253906, 69.839622 ], [ -84.550781, 69.839622 ], [ -84.550781, 69.778952 ], [ -83.847656, 69.778952 ], [ -83.847656, 69.718107 ], [ -83.144531, 69.718107 ], [ -83.144531, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.595890 ], [ -82.441406, 69.595890 ], [ -82.441406, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.472969 ], [ -82.089844, 69.472969 ], [ -82.089844, 69.411242 ], [ -81.914062, 69.411242 ], [ -81.914062, 69.349339 ], [ -81.738281, 69.349339 ], [ -81.738281, 69.287257 ], [ -81.562500, 69.287257 ], [ -81.562500, 69.224997 ], [ -81.386719, 69.224997 ], [ -81.386719, 69.162558 ], [ -81.210938, 69.162558 ], [ -81.210938, 68.592487 ], [ -81.386719, 68.592487 ], [ -81.386719, 68.463800 ], [ -81.562500, 68.463800 ], [ -81.562500, 68.334376 ], [ -81.738281, 68.334376 ], [ -81.738281, 68.204212 ], [ -81.914062, 68.204212 ], [ -81.914062, 68.073305 ], [ -81.738281, 68.073305 ], [ -81.738281, 67.941650 ], [ -81.562500, 67.941650 ], [ -81.562500, 67.809245 ], [ -81.386719, 67.809245 ], [ -81.386719, 67.676085 ], [ -81.210938, 67.676085 ], [ -81.210938, 67.339861 ], [ -81.386719, 67.339861 ], [ -81.386719, 67.067433 ], [ -81.562500, 67.067433 ], [ -81.562500, 66.998844 ], [ -81.738281, 66.998844 ], [ -81.738281, 66.930060 ], [ -81.914062, 66.930060 ], [ -81.914062, 66.861082 ], [ -82.089844, 66.861082 ], [ -82.089844, 66.791909 ], [ -82.441406, 66.791909 ], [ -82.441406, 66.722541 ], [ -82.617188, 66.722541 ], [ -82.617188, 66.652977 ], [ -82.792969, 66.652977 ], [ -82.792969, 66.583217 ], [ -82.968750, 66.583217 ], [ -82.968750, 66.513260 ], [ -83.144531, 66.513260 ], [ -83.144531, 66.443107 ], [ -83.496094, 66.443107 ], [ -83.496094, 66.372755 ], [ -83.847656, 66.372755 ], [ -83.847656, 66.302205 ], [ -84.375000, 66.302205 ], [ -84.375000, 66.231457 ], [ -84.902344, 66.231457 ], [ -84.902344, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.372755 ], [ -85.957031, 66.372755 ], [ -85.957031, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.472969 ], [ -90.527344, 69.472969 ], [ -90.527344, 68.463800 ], [ -90.351562, 68.463800 ], [ -90.351562, 68.592487 ], [ -90.175781, 68.592487 ], [ -90.175781, 68.720441 ], [ -90.000000, 68.720441 ], [ -90.000000, 68.847665 ], [ -89.824219, 68.847665 ], [ -89.824219, 68.974164 ], [ -89.648438, 68.974164 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 69.099940 ], [ -88.945312, 69.099940 ], [ -88.945312, 69.037142 ], [ -88.769531, 69.037142 ], [ -88.769531, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 68.784144 ], [ -88.417969, 68.784144 ], [ -88.417969, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.242188, 68.592487 ], [ -88.066406, 68.592487 ], [ -88.066406, 68.204212 ], [ -88.242188, 68.204212 ], [ -88.242188, 67.809245 ], [ -88.066406, 67.809245 ], [ -88.066406, 67.676085 ], [ -87.890625, 67.676085 ], [ -87.890625, 67.542167 ], [ -87.714844, 67.542167 ], [ -87.714844, 67.407487 ], [ -87.539062, 67.407487 ], [ -87.539062, 67.272043 ], [ -87.363281, 67.272043 ], [ -87.363281, 67.204032 ], [ -87.187500, 67.204032 ], [ -87.187500, 67.339861 ], [ -87.011719, 67.339861 ], [ -87.011719, 67.474922 ], [ -86.835938, 67.474922 ], [ -86.835938, 67.609221 ], [ -86.660156, 67.609221 ], [ -86.660156, 67.742759 ], [ -86.484375, 67.742759 ], [ -86.484375, 67.875541 ], [ -86.308594, 67.875541 ], [ -86.308594, 68.007571 ], [ -86.132812, 68.007571 ], [ -86.132812, 68.204212 ], [ -85.957031, 68.204212 ], [ -85.957031, 68.463800 ], [ -85.781250, 68.463800 ], [ -85.781250, 68.656555 ], [ -85.605469, 68.656555 ], [ -85.605469, 69.900118 ], [ -85.253906, 69.900118 ] ] ], [ [ [ -81.386719, 73.124945 ], [ -81.386719, 73.073844 ], [ -81.210938, 73.073844 ], [ -81.210938, 72.971189 ], [ -81.035156, 72.971189 ], [ -81.035156, 72.867930 ], [ -80.859375, 72.867930 ], [ -80.859375, 72.764065 ], [ -80.683594, 72.764065 ], [ -80.683594, 72.073911 ], [ -80.332031, 72.073911 ], [ -80.332031, 72.127936 ], [ -79.980469, 72.127936 ], [ -79.980469, 72.181804 ], [ -79.628906, 72.181804 ], [ -79.628906, 72.235514 ], [ -79.277344, 72.235514 ], [ -79.277344, 72.289067 ], [ -78.925781, 72.289067 ], [ -78.925781, 72.342464 ], [ -78.574219, 72.342464 ], [ -78.574219, 72.448792 ], [ -78.398438, 72.448792 ], [ -78.398438, 72.554498 ], [ -78.222656, 72.554498 ], [ -78.222656, 72.607120 ], [ -78.046875, 72.607120 ], [ -78.046875, 72.711903 ], [ -77.695312, 72.711903 ], [ -77.695312, 72.659588 ], [ -77.343750, 72.659588 ], [ -77.343750, 72.607120 ], [ -77.167969, 72.607120 ], [ -77.167969, 72.554498 ], [ -76.992188, 72.554498 ], [ -76.992188, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.448792 ], [ -76.464844, 72.448792 ], [ -76.464844, 72.395706 ], [ -76.289062, 72.395706 ], [ -76.289062, 72.342464 ], [ -75.937500, 72.342464 ], [ -75.937500, 72.289067 ], [ -75.761719, 72.289067 ], [ -75.761719, 72.235514 ], [ -75.585938, 72.235514 ], [ -75.585938, 72.181804 ], [ -75.410156, 72.181804 ], [ -75.410156, 72.127936 ], [ -75.234375, 72.127936 ], [ -75.234375, 72.073911 ], [ -75.058594, 72.073911 ], [ -75.058594, 72.019729 ], [ -74.882812, 72.019729 ], [ -74.882812, 71.910888 ], [ -74.707031, 71.910888 ], [ -74.707031, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.801410 ], [ -74.355469, 71.801410 ], [ -74.355469, 71.746432 ], [ -74.179688, 71.746432 ], [ -74.179688, 71.357067 ], [ -73.828125, 71.357067 ], [ -73.828125, 71.413177 ], [ -73.300781, 71.413177 ], [ -73.300781, 71.469124 ], [ -72.949219, 71.469124 ], [ -72.949219, 71.524909 ], [ -72.421875, 71.524909 ], [ -72.421875, 71.580532 ], [ -72.246094, 71.580532 ], [ -72.246094, 71.524909 ], [ -72.070312, 71.524909 ], [ -72.070312, 71.413177 ], [ -71.894531, 71.413177 ], [ -71.894531, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 71.187754 ], [ -71.542969, 71.187754 ], [ -71.542969, 71.074056 ], [ -71.367188, 71.074056 ], [ -71.367188, 70.959697 ], [ -71.191406, 70.959697 ], [ -71.191406, 70.902268 ], [ -71.015625, 70.902268 ], [ -71.015625, 70.844673 ], [ -70.664062, 70.844673 ], [ -70.664062, 70.786910 ], [ -70.312500, 70.786910 ], [ -70.312500, 70.728979 ], [ -69.785156, 70.728979 ], [ -69.785156, 70.670881 ], [ -69.433594, 70.670881 ], [ -69.433594, 70.612614 ], [ -69.082031, 70.612614 ], [ -69.082031, 70.554179 ], [ -68.730469, 70.554179 ], [ -68.730469, 70.495574 ], [ -68.554688, 70.495574 ], [ -68.554688, 70.377854 ], [ -68.378906, 70.377854 ], [ -68.378906, 70.318738 ], [ -68.203125, 70.318738 ], [ -68.203125, 70.259452 ], [ -68.027344, 70.259452 ], [ -68.027344, 70.140364 ], [ -67.851562, 70.140364 ], [ -67.851562, 70.020587 ], [ -67.675781, 70.020587 ], [ -67.675781, 69.839622 ], [ -67.500000, 69.839622 ], [ -67.500000, 69.657086 ], [ -67.324219, 69.657086 ], [ -67.324219, 69.411242 ], [ -67.148438, 69.411242 ], [ -67.148438, 69.224997 ], [ -66.972656, 69.224997 ], [ -66.972656, 69.099940 ], [ -67.324219, 69.099940 ], [ -67.324219, 69.037142 ], [ -67.500000, 69.037142 ], [ -67.500000, 68.974164 ], [ -67.675781, 68.974164 ], [ -67.675781, 68.911005 ], [ -68.027344, 68.911005 ], [ -68.027344, 68.847665 ], [ -68.203125, 68.847665 ], [ -68.203125, 68.784144 ], [ -68.554688, 68.784144 ], [ -68.554688, 68.720441 ], [ -68.730469, 68.720441 ], [ -68.730469, 68.656555 ], [ -68.554688, 68.656555 ], [ -68.554688, 68.592487 ], [ -68.203125, 68.592487 ], [ -68.203125, 68.528235 ], [ -68.027344, 68.528235 ], [ -68.027344, 68.463800 ], [ -67.851562, 68.463800 ], [ -67.851562, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.334376 ], [ -67.324219, 68.334376 ], [ -67.324219, 68.269387 ], [ -67.148438, 68.269387 ], [ -67.148438, 68.204212 ], [ -66.796875, 68.204212 ], [ -66.796875, 68.138852 ], [ -66.621094, 68.138852 ], [ -66.621094, 68.073305 ], [ -66.269531, 68.073305 ], [ -66.269531, 68.007571 ], [ -65.742188, 68.007571 ], [ -65.742188, 67.941650 ], [ -65.214844, 67.941650 ], [ -65.214844, 67.875541 ], [ -64.863281, 67.875541 ], [ -64.863281, 67.809245 ], [ -64.687500, 67.809245 ], [ -64.687500, 67.676085 ], [ -64.511719, 67.676085 ], [ -64.511719, 67.542167 ], [ -64.335938, 67.542167 ], [ -64.335938, 67.407487 ], [ -64.160156, 67.407487 ], [ -64.160156, 67.339861 ], [ -63.984375, 67.339861 ], [ -63.984375, 67.204032 ], [ -63.808594, 67.204032 ], [ -63.808594, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -62.753906, 66.930060 ], [ -62.753906, 66.861082 ], [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.160511 ], [ -66.445312, 66.160511 ], [ -66.445312, 66.231457 ], [ -66.621094, 66.231457 ], [ -66.621094, 66.302205 ], [ -66.796875, 66.302205 ], [ -66.796875, 66.372755 ], [ -66.972656, 66.372755 ], [ -66.972656, 66.302205 ], [ -67.675781, 66.302205 ], [ -67.675781, 66.231457 ], [ -68.027344, 66.231457 ], [ -68.027344, 66.160511 ], [ -74.003906, 66.160511 ], [ -74.003906, 66.302205 ], [ -73.828125, 66.302205 ], [ -73.828125, 66.443107 ], [ -73.652344, 66.443107 ], [ -73.652344, 66.583217 ], [ -73.476562, 66.583217 ], [ -73.476562, 66.722541 ], [ -73.300781, 66.722541 ], [ -73.300781, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 66.930060 ], [ -72.949219, 66.930060 ], [ -72.949219, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -72.597656, 67.204032 ], [ -72.597656, 67.339861 ], [ -72.773438, 67.339861 ], [ -72.773438, 67.609221 ], [ -72.949219, 67.609221 ], [ -72.949219, 67.809245 ], [ -73.125000, 67.809245 ], [ -73.125000, 67.941650 ], [ -73.300781, 67.941650 ], [ -73.300781, 68.073305 ], [ -73.476562, 68.073305 ], [ -73.476562, 68.138852 ], [ -73.652344, 68.138852 ], [ -73.652344, 68.204212 ], [ -74.003906, 68.204212 ], [ -74.003906, 68.269387 ], [ -74.179688, 68.269387 ], [ -74.179688, 68.334376 ], [ -74.355469, 68.334376 ], [ -74.355469, 68.399180 ], [ -74.707031, 68.399180 ], [ -74.707031, 68.463800 ], [ -74.882812, 68.463800 ], [ -74.882812, 68.528235 ], [ -75.058594, 68.528235 ], [ -75.058594, 68.592487 ], [ -75.410156, 68.592487 ], [ -75.410156, 68.656555 ], [ -75.761719, 68.656555 ], [ -75.761719, 68.720441 ], [ -76.113281, 68.720441 ], [ -76.113281, 68.784144 ], [ -76.464844, 68.784144 ], [ -76.464844, 68.847665 ], [ -76.816406, 68.847665 ], [ -76.816406, 68.911005 ], [ -76.640625, 68.911005 ], [ -76.640625, 69.037142 ], [ -76.464844, 69.037142 ], [ -76.464844, 69.099940 ], [ -76.289062, 69.099940 ], [ -76.289062, 69.162558 ], [ -76.464844, 69.162558 ], [ -76.464844, 69.287257 ], [ -76.640625, 69.287257 ], [ -76.640625, 69.411242 ], [ -76.816406, 69.411242 ], [ -76.816406, 69.472969 ], [ -76.992188, 69.472969 ], [ -76.992188, 69.595890 ], [ -77.167969, 69.595890 ], [ -77.167969, 69.718107 ], [ -77.343750, 69.718107 ], [ -77.343750, 69.778952 ], [ -77.871094, 69.778952 ], [ -77.871094, 69.839622 ], [ -78.398438, 69.839622 ], [ -78.398438, 69.900118 ], [ -78.574219, 69.900118 ], [ -78.574219, 70.020587 ], [ -78.750000, 70.020587 ], [ -78.750000, 70.080562 ], [ -79.101562, 70.080562 ], [ -79.101562, 70.020587 ], [ -79.277344, 70.020587 ], [ -79.277344, 69.900118 ], [ -79.628906, 69.900118 ], [ -79.628906, 69.839622 ], [ -80.332031, 69.839622 ], [ -80.332031, 69.778952 ], [ -81.035156, 69.778952 ], [ -81.035156, 69.718107 ], [ -81.914062, 69.718107 ], [ -81.914062, 69.778952 ], [ -82.792969, 69.778952 ], [ -82.792969, 69.839622 ], [ -83.671875, 69.839622 ], [ -83.671875, 69.900118 ], [ -84.550781, 69.900118 ], [ -84.550781, 69.960439 ], [ -85.253906, 69.960439 ], [ -85.253906, 70.020587 ], [ -85.605469, 70.020587 ], [ -85.605469, 70.080562 ], [ -86.132812, 70.080562 ], [ -86.132812, 70.140364 ], [ -86.484375, 70.140364 ], [ -86.484375, 70.199994 ], [ -86.835938, 70.199994 ], [ -86.835938, 70.259452 ], [ -87.363281, 70.259452 ], [ -87.363281, 70.318738 ], [ -88.066406, 70.318738 ], [ -88.066406, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.436799 ], [ -88.945312, 70.436799 ], [ -88.945312, 70.554179 ], [ -89.121094, 70.554179 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.728979 ], [ -89.472656, 70.728979 ], [ -89.472656, 70.786910 ], [ -89.296875, 70.786910 ], [ -89.296875, 70.902268 ], [ -89.121094, 70.902268 ], [ -89.121094, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.016960 ], [ -88.769531, 71.016960 ], [ -88.769531, 71.130988 ], [ -88.593750, 71.130988 ], [ -88.593750, 71.187754 ], [ -88.417969, 71.187754 ], [ -88.417969, 71.244356 ], [ -89.824219, 71.244356 ], [ -89.824219, 71.469124 ], [ -90.000000, 71.469124 ], [ -90.000000, 71.965388 ], [ -90.175781, 71.965388 ], [ -90.175781, 72.342464 ], [ -90.000000, 72.342464 ], [ -90.000000, 72.554498 ], [ -89.824219, 72.554498 ], [ -89.824219, 72.764065 ], [ -89.648438, 72.764065 ], [ -89.648438, 72.971189 ], [ -89.472656, 72.971189 ], [ -89.472656, 73.124945 ], [ -86.484375, 73.124945 ], [ -86.484375, 73.073844 ], [ -86.308594, 73.073844 ], [ -86.308594, 72.919635 ], [ -86.132812, 72.919635 ], [ -86.132812, 72.764065 ], [ -85.957031, 72.764065 ], [ -85.957031, 72.607120 ], [ -85.605469, 72.607120 ], [ -85.605469, 72.764065 ], [ -85.429688, 72.764065 ], [ -85.429688, 72.919635 ], [ -85.253906, 72.919635 ], [ -85.253906, 73.073844 ], [ -85.078125, 73.073844 ], [ -85.078125, 73.124945 ], [ -81.386719, 73.124945 ] ] ], [ [ [ -75.937500, 68.269387 ], [ -75.937500, 68.204212 ], [ -75.761719, 68.204212 ], [ -75.761719, 68.138852 ], [ -75.410156, 68.138852 ], [ -75.410156, 68.073305 ], [ -75.234375, 68.073305 ], [ -75.234375, 68.007571 ], [ -75.058594, 68.007571 ], [ -75.058594, 67.542167 ], [ -75.234375, 67.542167 ], [ -75.234375, 67.407487 ], [ -75.410156, 67.407487 ], [ -75.410156, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.761719, 67.135829 ], [ -76.289062, 67.135829 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.339861 ], [ -77.167969, 67.339861 ], [ -77.167969, 67.742759 ], [ -76.992188, 67.742759 ], [ -76.992188, 68.007571 ], [ -76.816406, 68.007571 ], [ -76.816406, 68.138852 ], [ -76.464844, 68.138852 ], [ -76.464844, 68.204212 ], [ -76.113281, 68.204212 ], [ -76.113281, 68.269387 ], [ -75.937500, 68.269387 ] ] ], [ [ [ -76.289062, 73.124945 ], [ -76.289062, 72.816074 ], [ -76.992188, 72.816074 ], [ -76.992188, 72.867930 ], [ -78.574219, 72.867930 ], [ -78.574219, 72.816074 ], [ -79.101562, 72.816074 ], [ -79.101562, 72.764065 ], [ -79.804688, 72.764065 ], [ -79.804688, 72.816074 ], [ -79.980469, 72.816074 ], [ -79.980469, 72.919635 ], [ -80.156250, 72.919635 ], [ -80.156250, 73.022592 ], [ -80.332031, 73.022592 ], [ -80.332031, 73.073844 ], [ -80.507812, 73.073844 ], [ -80.507812, 73.124945 ], [ -76.289062, 73.124945 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.679688, 70.670881 ], [ -51.855469, 70.670881 ], [ -51.855469, 70.728979 ], [ -52.031250, 70.728979 ], [ -52.031250, 70.786910 ], [ -52.207031, 70.786910 ], [ -52.207031, 70.902268 ], [ -52.382812, 70.902268 ], [ -52.382812, 70.959697 ], [ -52.558594, 70.959697 ], [ -52.558594, 71.016960 ], [ -52.734375, 71.016960 ], [ -52.734375, 71.074056 ], [ -52.910156, 71.074056 ], [ -52.910156, 71.130988 ], [ -53.085938, 71.130988 ], [ -53.085938, 71.187754 ], [ -53.261719, 71.187754 ], [ -53.261719, 71.244356 ], [ -53.437500, 71.244356 ], [ -53.437500, 71.357067 ], [ -53.613281, 71.357067 ], [ -53.613281, 71.413177 ], [ -53.789062, 71.413177 ], [ -53.789062, 71.469124 ], [ -53.964844, 71.469124 ], [ -53.964844, 71.524909 ], [ -54.140625, 71.524909 ], [ -54.140625, 71.469124 ], [ -54.667969, 71.469124 ], [ -54.667969, 71.413177 ], [ -55.195312, 71.413177 ], [ -55.195312, 71.469124 ], [ -55.371094, 71.469124 ], [ -55.371094, 71.524909 ], [ -55.722656, 71.524909 ], [ -55.722656, 71.580532 ], [ -55.898438, 71.580532 ], [ -55.898438, 71.691293 ], [ -55.722656, 71.691293 ], [ -55.722656, 71.801410 ], [ -55.546875, 71.801410 ], [ -55.546875, 71.965388 ], [ -55.371094, 71.965388 ], [ -55.371094, 72.127936 ], [ -55.195312, 72.127936 ], [ -55.195312, 72.235514 ], [ -55.019531, 72.235514 ], [ -55.019531, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.501722 ], [ -54.667969, 72.501722 ], [ -54.667969, 72.607120 ], [ -54.843750, 72.607120 ], [ -54.843750, 72.711903 ], [ -55.019531, 72.711903 ], [ -55.019531, 72.816074 ], [ -55.195312, 72.816074 ], [ -55.195312, 72.919635 ], [ -55.371094, 72.919635 ], [ -55.371094, 73.022592 ], [ -55.546875, 73.022592 ], [ -55.546875, 73.175897 ], [ -55.722656, 73.175897 ], [ -55.722656, 73.378215 ], [ -55.898438, 73.378215 ], [ -55.898438, 73.528399 ], [ -56.074219, 73.528399 ], [ -56.074219, 73.677264 ], [ -56.250000, 73.677264 ], [ -56.250000, 73.824820 ], [ -56.425781, 73.824820 ], [ -56.425781, 74.019543 ], [ -56.601562, 74.019543 ], [ -56.601562, 74.164085 ], [ -56.777344, 74.164085 ], [ -56.777344, 74.307353 ], [ -56.953125, 74.307353 ], [ -56.953125, 74.496413 ], [ -57.128906, 74.496413 ], [ -57.128906, 74.636748 ], [ -57.304688, 74.636748 ], [ -57.304688, 74.729615 ], [ -57.480469, 74.729615 ], [ -57.480469, 74.775843 ], [ -57.656250, 74.775843 ], [ -57.656250, 74.821934 ], [ -57.832031, 74.821934 ], [ -57.832031, 74.913708 ], [ -58.007812, 74.913708 ], [ -58.007812, 74.959392 ], [ -58.183594, 74.959392 ], [ -58.183594, 75.004940 ], [ -58.359375, 75.004940 ], [ -58.359375, 75.050354 ], [ -58.535156, 75.050354 ], [ -58.535156, 75.497157 ], [ -58.710938, 75.497157 ], [ -58.710938, 75.541113 ], [ -58.886719, 75.541113 ], [ -58.886719, 75.584937 ], [ -59.062500, 75.584937 ], [ -59.062500, 75.628632 ], [ -59.414062, 75.628632 ], [ -59.414062, 75.672197 ], [ -59.589844, 75.672197 ], [ -59.589844, 75.715633 ], [ -59.765625, 75.715633 ], [ -59.765625, 75.758940 ], [ -59.941406, 75.758940 ], [ -59.941406, 75.802118 ], [ -60.117188, 75.802118 ], [ -60.117188, 75.845169 ], [ -60.292969, 75.845169 ], [ -60.292969, 75.888091 ], [ -60.468750, 75.888091 ], [ -60.468750, 75.930885 ], [ -60.820312, 75.930885 ], [ -60.820312, 75.973553 ], [ -60.996094, 75.973553 ], [ -60.996094, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.058508 ], [ -61.347656, 76.058508 ], [ -61.347656, 76.100796 ], [ -62.050781, 76.100796 ], [ -62.050781, 76.142958 ], [ -63.105469, 76.142958 ], [ -63.105469, 76.184995 ], [ -64.687500, 76.184995 ], [ -64.687500, 76.142958 ], [ -66.621094, 76.142958 ], [ -66.621094, 76.100796 ], [ -67.851562, 76.100796 ], [ -67.851562, 76.058508 ], [ -68.730469, 76.058508 ], [ -68.730469, 76.142958 ], [ -68.906250, 76.142958 ], [ -68.906250, 76.184995 ], [ -69.082031, 76.184995 ], [ -69.082031, 76.226907 ], [ -69.257812, 76.226907 ], [ -69.257812, 76.310358 ], [ -69.433594, 76.310358 ], [ -69.433594, 76.351896 ], [ -69.609375, 76.351896 ], [ -69.609375, 76.393312 ], [ -69.785156, 76.393312 ], [ -69.785156, 76.475773 ], [ -69.960938, 76.475773 ], [ -69.960938, 76.516819 ], [ -70.136719, 76.516819 ], [ -70.136719, 76.598545 ], [ -70.312500, 76.598545 ], [ -70.312500, 76.639226 ], [ -70.488281, 76.639226 ], [ -70.488281, 76.720223 ], [ -70.664062, 76.720223 ], [ -70.664062, 76.760541 ], [ -70.839844, 76.760541 ], [ -70.839844, 76.840816 ], [ -71.015625, 76.840816 ], [ -71.015625, 76.880775 ], [ -71.191406, 76.880775 ], [ -71.191406, 76.960334 ], [ -71.367188, 76.960334 ], [ -71.367188, 76.999935 ], [ -71.191406, 76.999935 ], [ -71.191406, 77.039418 ], [ -70.839844, 77.039418 ], [ -70.839844, 77.078784 ], [ -70.488281, 77.078784 ], [ -70.488281, 77.118032 ], [ -70.136719, 77.118032 ], [ -70.136719, 77.157163 ], [ -69.785156, 77.157163 ], [ -69.785156, 77.196176 ], [ -69.433594, 77.196176 ], [ -69.433594, 77.235074 ], [ -69.082031, 77.235074 ], [ -69.082031, 77.273855 ], [ -68.730469, 77.273855 ], [ -68.730469, 77.312520 ], [ -68.203125, 77.312520 ], [ -68.203125, 77.351070 ], [ -67.148438, 77.351070 ], [ -67.148438, 77.389504 ], [ -67.324219, 77.389504 ], [ -67.324219, 77.427824 ], [ -68.027344, 77.427824 ], [ -68.027344, 77.466028 ], [ -68.730469, 77.466028 ], [ -68.730469, 77.504119 ], [ -69.433594, 77.504119 ], [ -69.433594, 77.542096 ], [ -70.136719, 77.542096 ], [ -70.136719, 77.579959 ], [ -70.839844, 77.579959 ], [ -70.839844, 77.617709 ], [ -71.191406, 77.617709 ], [ -71.191406, 77.655346 ], [ -71.367188, 77.655346 ], [ -71.367188, 77.692870 ], [ -71.542969, 77.692870 ], [ -71.542969, 77.730282 ], [ -71.718750, 77.730282 ], [ -71.718750, 77.767582 ], [ -71.894531, 77.767582 ], [ -71.894531, 77.804771 ], [ -72.070312, 77.804771 ], [ -72.070312, 77.841848 ], [ -72.421875, 77.841848 ], [ -72.421875, 77.878814 ], [ -72.597656, 77.878814 ], [ -72.597656, 77.915669 ], [ -72.773438, 77.915669 ], [ -72.773438, 77.952414 ], [ -72.949219, 77.952414 ], [ -72.949219, 77.989049 ], [ -73.125000, 77.989049 ], [ -73.125000, 78.025574 ], [ -73.300781, 78.025574 ], [ -73.300781, 78.242436 ], [ -73.125000, 78.242436 ], [ -73.125000, 78.420193 ], [ -72.949219, 78.420193 ], [ -72.949219, 78.455425 ], [ -72.597656, 78.455425 ], [ -72.597656, 78.490552 ], [ -72.421875, 78.490552 ], [ -72.421875, 78.525573 ], [ -72.070312, 78.525573 ], [ -72.070312, 78.560488 ], [ -71.894531, 78.560488 ], [ -71.894531, 78.595299 ], [ -71.542969, 78.595299 ], [ -71.542969, 78.630006 ], [ -71.367188, 78.630006 ], [ -71.367188, 78.664608 ], [ -71.015625, 78.664608 ], [ -71.015625, 78.699106 ], [ -70.839844, 78.699106 ], [ -70.839844, 78.733501 ], [ -70.488281, 78.733501 ], [ -70.488281, 78.767792 ], [ -70.312500, 78.767792 ], [ -70.312500, 78.801980 ], [ -69.960938, 78.801980 ], [ -69.960938, 78.836065 ], [ -69.785156, 78.836065 ], [ -69.785156, 78.870048 ], [ -69.433594, 78.870048 ], [ -69.433594, 78.903929 ], [ -69.257812, 78.903929 ], [ -69.257812, 78.937708 ], [ -68.906250, 78.937708 ], [ -68.906250, 78.971386 ], [ -68.730469, 78.971386 ], [ -68.730469, 79.004962 ], [ -68.378906, 79.004962 ], [ -68.378906, 79.038437 ], [ -68.203125, 79.038437 ], [ -68.203125, 79.071812 ], [ -67.851562, 79.071812 ], [ -67.851562, 79.105086 ], [ -67.675781, 79.105086 ], [ -67.675781, 79.138260 ], [ -67.500000, 79.138260 ], [ -67.500000, 79.171335 ], [ -67.148438, 79.171335 ], [ -67.148438, 79.204309 ], [ -66.972656, 79.204309 ], [ -66.972656, 79.237185 ], [ -66.621094, 79.237185 ], [ -66.621094, 79.269962 ], [ -66.445312, 79.269962 ], [ -66.445312, 79.302640 ], [ -66.093750, 79.302640 ], [ -66.093750, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.613281, 66.160511 ], [ -53.613281, 66.302205 ], [ -53.437500, 66.302205 ], [ -53.437500, 66.652977 ], [ -53.261719, 66.652977 ], [ -53.261719, 66.861082 ], [ -53.437500, 66.861082 ], [ -53.437500, 66.930060 ], [ -53.613281, 66.930060 ], [ -53.613281, 67.067433 ], [ -53.789062, 67.067433 ], [ -53.789062, 67.135829 ], [ -53.964844, 67.135829 ], [ -53.964844, 67.272043 ], [ -53.789062, 67.272043 ], [ -53.789062, 67.474922 ], [ -53.613281, 67.474922 ], [ -53.613281, 67.676085 ], [ -53.437500, 67.676085 ], [ -53.437500, 67.809245 ], [ -53.261719, 67.809245 ], [ -53.261719, 68.007571 ], [ -53.085938, 68.007571 ], [ -53.085938, 68.204212 ], [ -52.910156, 68.204212 ], [ -52.910156, 68.334376 ], [ -52.734375, 68.334376 ], [ -52.734375, 68.399180 ], [ -52.382812, 68.399180 ], [ -52.382812, 68.463800 ], [ -52.207031, 68.463800 ], [ -52.207031, 68.528235 ], [ -52.031250, 68.528235 ], [ -52.031250, 68.592487 ], [ -51.679688, 68.592487 ], [ -51.679688, 68.656555 ], [ -51.503906, 68.656555 ], [ -51.503906, 68.784144 ], [ -51.328125, 68.784144 ], [ -51.328125, 69.037142 ], [ -51.152344, 69.037142 ], [ -51.152344, 69.349339 ], [ -50.976562, 69.349339 ], [ -50.976562, 69.718107 ], [ -50.800781, 69.718107 ], [ -50.800781, 69.839622 ], [ -51.152344, 69.839622 ], [ -51.152344, 69.778952 ], [ -51.328125, 69.778952 ], [ -51.328125, 69.718107 ], [ -51.503906, 69.718107 ], [ -51.503906, 69.657086 ], [ -51.855469, 69.657086 ], [ -51.855469, 69.595890 ], [ -52.031250, 69.595890 ], [ -52.031250, 69.534518 ], [ -52.207031, 69.534518 ], [ -52.207031, 69.472969 ], [ -52.382812, 69.472969 ], [ -52.382812, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.349339 ], [ -53.085938, 69.349339 ], [ -53.085938, 69.287257 ], [ -53.613281, 69.287257 ], [ -53.613281, 69.349339 ], [ -53.964844, 69.349339 ], [ -53.964844, 69.411242 ], [ -54.140625, 69.411242 ], [ -54.140625, 69.472969 ], [ -54.316406, 69.472969 ], [ -54.316406, 69.534518 ], [ -54.667969, 69.534518 ], [ -54.667969, 70.436799 ], [ -54.492188, 70.436799 ], [ -54.492188, 70.670881 ], [ -54.316406, 70.670881 ], [ -54.316406, 70.844673 ], [ -53.261719, 70.844673 ], [ -53.261719, 70.786910 ], [ -52.910156, 70.786910 ], [ -52.910156, 70.728979 ], [ -52.558594, 70.728979 ], [ -52.558594, 70.670881 ], [ -52.031250, 70.670881 ], [ -52.031250, 70.612614 ], [ -51.679688, 70.612614 ], [ -51.679688, 70.670881 ] ], [ [ -51.679688, 70.554179 ], [ -51.503906, 70.554179 ], [ -51.503906, 70.612614 ], [ -51.679688, 70.612614 ], [ -51.679688, 70.554179 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.679688, 70.612614 ], [ -51.679688, 70.670881 ], [ -51.855469, 70.670881 ], [ -51.855469, 70.728979 ], [ -52.031250, 70.728979 ], [ -52.031250, 70.786910 ], [ -52.207031, 70.786910 ], [ -52.207031, 70.902268 ], [ -52.382812, 70.902268 ], [ -52.382812, 70.959697 ], [ -52.558594, 70.959697 ], [ -52.558594, 71.016960 ], [ -52.734375, 71.016960 ], [ -52.734375, 71.074056 ], [ -52.910156, 71.074056 ], [ -52.910156, 71.130988 ], [ -53.085938, 71.130988 ], [ -53.085938, 71.187754 ], [ -53.261719, 71.187754 ], [ -53.261719, 71.244356 ], [ -53.437500, 71.244356 ], [ -53.437500, 71.357067 ], [ -53.613281, 71.357067 ], [ -53.613281, 71.413177 ], [ -53.789062, 71.413177 ], [ -53.789062, 71.469124 ], [ -53.964844, 71.469124 ], [ -53.964844, 71.524909 ], [ -54.140625, 71.524909 ], [ -54.140625, 71.469124 ], [ -54.667969, 71.469124 ], [ -54.667969, 71.413177 ], [ -55.195312, 71.413177 ], [ -55.195312, 71.469124 ], [ -55.371094, 71.469124 ], [ -55.371094, 71.524909 ], [ -55.722656, 71.524909 ], [ -55.722656, 71.580532 ], [ -55.898438, 71.580532 ], [ -55.898438, 71.691293 ], [ -55.722656, 71.691293 ], [ -55.722656, 71.801410 ], [ -55.546875, 71.801410 ], [ -55.546875, 71.965388 ], [ -55.371094, 71.965388 ], [ -55.371094, 72.127936 ], [ -55.195312, 72.127936 ], [ -55.195312, 72.235514 ], [ -55.019531, 72.235514 ], [ -55.019531, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.501722 ], [ -54.667969, 72.501722 ], [ -54.667969, 72.607120 ], [ -54.843750, 72.607120 ], [ -54.843750, 72.711903 ], [ -55.019531, 72.711903 ], [ -55.019531, 72.816074 ], [ -55.195312, 72.816074 ], [ -55.195312, 72.919635 ], [ -55.371094, 72.919635 ], [ -55.371094, 73.022592 ], [ -55.546875, 73.022592 ], [ -55.546875, 73.175897 ], [ -55.722656, 73.175897 ], [ -55.722656, 73.378215 ], [ -55.898438, 73.378215 ], [ -55.898438, 73.528399 ], [ -56.074219, 73.528399 ], [ -56.074219, 73.677264 ], [ -56.250000, 73.677264 ], [ -56.250000, 73.824820 ], [ -56.425781, 73.824820 ], [ -56.425781, 74.019543 ], [ -56.601562, 74.019543 ], [ -56.601562, 74.164085 ], [ -56.777344, 74.164085 ], [ -56.777344, 74.307353 ], [ -56.953125, 74.307353 ], [ -56.953125, 74.496413 ], [ -57.128906, 74.496413 ], [ -57.128906, 74.636748 ], [ -57.304688, 74.636748 ], [ -57.304688, 74.729615 ], [ -57.480469, 74.729615 ], [ -57.480469, 74.775843 ], [ -57.656250, 74.775843 ], [ -57.656250, 74.821934 ], [ -57.832031, 74.821934 ], [ -57.832031, 74.913708 ], [ -58.007812, 74.913708 ], [ -58.007812, 74.959392 ], [ -58.183594, 74.959392 ], [ -58.183594, 75.004940 ], [ -58.359375, 75.004940 ], [ -58.359375, 75.050354 ], [ -58.535156, 75.050354 ], [ -58.535156, 75.497157 ], [ -58.710938, 75.497157 ], [ -58.710938, 75.541113 ], [ -58.886719, 75.541113 ], [ -58.886719, 75.584937 ], [ -59.062500, 75.584937 ], [ -59.062500, 75.628632 ], [ -59.414062, 75.628632 ], [ -59.414062, 75.672197 ], [ -59.589844, 75.672197 ], [ -59.589844, 75.715633 ], [ -59.765625, 75.715633 ], [ -59.765625, 75.758940 ], [ -59.941406, 75.758940 ], [ -59.941406, 75.802118 ], [ -60.117188, 75.802118 ], [ -60.117188, 75.845169 ], [ -60.292969, 75.845169 ], [ -60.292969, 75.888091 ], [ -60.468750, 75.888091 ], [ -60.468750, 75.930885 ], [ -60.820312, 75.930885 ], [ -60.820312, 75.973553 ], [ -60.996094, 75.973553 ], [ -60.996094, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.058508 ], [ -61.347656, 76.058508 ], [ -61.347656, 76.100796 ], [ -62.050781, 76.100796 ], [ -62.050781, 76.142958 ], [ -63.105469, 76.142958 ], [ -63.105469, 76.184995 ], [ -64.687500, 76.184995 ], [ -64.687500, 76.142958 ], [ -66.621094, 76.142958 ], [ -66.621094, 76.100796 ], [ -67.851562, 76.100796 ], [ -67.851562, 76.058508 ], [ -68.730469, 76.058508 ], [ -68.730469, 76.142958 ], [ -68.906250, 76.142958 ], [ -68.906250, 76.184995 ], [ -69.082031, 76.184995 ], [ -69.082031, 76.226907 ], [ -69.257812, 76.226907 ], [ -69.257812, 76.310358 ], [ -69.433594, 76.310358 ], [ -69.433594, 76.351896 ], [ -69.609375, 76.351896 ], [ -69.609375, 76.393312 ], [ -69.785156, 76.393312 ], [ -69.785156, 76.475773 ], [ -69.960938, 76.475773 ], [ -69.960938, 76.516819 ], [ -70.136719, 76.516819 ], [ -70.136719, 76.598545 ], [ -70.312500, 76.598545 ], [ -70.312500, 76.639226 ], [ -70.488281, 76.639226 ], [ -70.488281, 76.720223 ], [ -70.664062, 76.720223 ], [ -70.664062, 76.760541 ], [ -70.839844, 76.760541 ], [ -70.839844, 76.840816 ], [ -71.015625, 76.840816 ], [ -71.015625, 76.880775 ], [ -71.191406, 76.880775 ], [ -71.191406, 76.960334 ], [ -71.367188, 76.960334 ], [ -71.367188, 76.999935 ], [ -71.191406, 76.999935 ], [ -71.191406, 77.039418 ], [ -70.839844, 77.039418 ], [ -70.839844, 77.078784 ], [ -70.488281, 77.078784 ], [ -70.488281, 77.118032 ], [ -70.136719, 77.118032 ], [ -70.136719, 77.157163 ], [ -69.785156, 77.157163 ], [ -69.785156, 77.196176 ], [ -69.433594, 77.196176 ], [ -69.433594, 77.235074 ], [ -69.082031, 77.235074 ], [ -69.082031, 77.273855 ], [ -68.730469, 77.273855 ], [ -68.730469, 77.312520 ], [ -68.203125, 77.312520 ], [ -68.203125, 77.351070 ], [ -67.148438, 77.351070 ], [ -67.148438, 77.389504 ], [ -67.324219, 77.389504 ], [ -67.324219, 77.427824 ], [ -68.027344, 77.427824 ], [ -68.027344, 77.466028 ], [ -68.730469, 77.466028 ], [ -68.730469, 77.504119 ], [ -69.433594, 77.504119 ], [ -69.433594, 77.542096 ], [ -70.136719, 77.542096 ], [ -70.136719, 77.579959 ], [ -70.839844, 77.579959 ], [ -70.839844, 77.617709 ], [ -71.191406, 77.617709 ], [ -71.191406, 77.655346 ], [ -71.367188, 77.655346 ], [ -71.367188, 77.692870 ], [ -71.542969, 77.692870 ], [ -71.542969, 77.730282 ], [ -71.718750, 77.730282 ], [ -71.718750, 77.767582 ], [ -71.894531, 77.767582 ], [ -71.894531, 77.804771 ], [ -72.070312, 77.804771 ], [ -72.070312, 77.841848 ], [ -72.421875, 77.841848 ], [ -72.421875, 77.878814 ], [ -72.597656, 77.878814 ], [ -72.597656, 77.915669 ], [ -72.773438, 77.915669 ], [ -72.773438, 77.952414 ], [ -72.949219, 77.952414 ], [ -72.949219, 77.989049 ], [ -73.125000, 77.989049 ], [ -73.125000, 78.025574 ], [ -73.300781, 78.025574 ], [ -73.300781, 78.242436 ], [ -73.125000, 78.242436 ], [ -73.125000, 78.420193 ], [ -72.949219, 78.420193 ], [ -72.949219, 78.455425 ], [ -72.597656, 78.455425 ], [ -72.597656, 78.490552 ], [ -72.421875, 78.490552 ], [ -72.421875, 78.525573 ], [ -72.070312, 78.525573 ], [ -72.070312, 78.560488 ], [ -71.894531, 78.560488 ], [ -71.894531, 78.595299 ], [ -71.542969, 78.595299 ], [ -71.542969, 78.630006 ], [ -71.367188, 78.630006 ], [ -71.367188, 78.664608 ], [ -71.015625, 78.664608 ], [ -71.015625, 78.699106 ], [ -70.839844, 78.699106 ], [ -70.839844, 78.733501 ], [ -70.488281, 78.733501 ], [ -70.488281, 78.767792 ], [ -70.312500, 78.767792 ], [ -70.312500, 78.801980 ], [ -69.960938, 78.801980 ], [ -69.960938, 78.836065 ], [ -69.785156, 78.836065 ], [ -69.785156, 78.870048 ], [ -69.433594, 78.870048 ], [ -69.433594, 78.903929 ], [ -69.257812, 78.903929 ], [ -69.257812, 78.937708 ], [ -68.906250, 78.937708 ], [ -68.906250, 78.971386 ], [ -68.730469, 78.971386 ], [ -68.730469, 79.004962 ], [ -68.378906, 79.004962 ], [ -68.378906, 79.038437 ], [ -68.203125, 79.038437 ], [ -68.203125, 79.071812 ], [ -67.851562, 79.071812 ], [ -67.851562, 79.105086 ], [ -67.675781, 79.105086 ], [ -67.675781, 79.138260 ], [ -67.500000, 79.138260 ], [ -67.500000, 79.171335 ], [ -67.148438, 79.171335 ], [ -67.148438, 79.204309 ], [ -66.972656, 79.204309 ], [ -66.972656, 79.237185 ], [ -66.621094, 79.237185 ], [ -66.621094, 79.269962 ], [ -66.445312, 79.269962 ], [ -66.445312, 79.302640 ], [ -66.093750, 79.302640 ], [ -66.093750, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.613281, 66.160511 ], [ -53.613281, 66.302205 ], [ -53.437500, 66.302205 ], [ -53.437500, 66.652977 ], [ -53.261719, 66.652977 ], [ -53.261719, 66.861082 ], [ -53.437500, 66.861082 ], [ -53.437500, 66.930060 ], [ -53.613281, 66.930060 ], [ -53.613281, 67.067433 ], [ -53.789062, 67.067433 ], [ -53.789062, 67.135829 ], [ -53.964844, 67.135829 ], [ -53.964844, 67.272043 ], [ -53.789062, 67.272043 ], [ -53.789062, 67.474922 ], [ -53.613281, 67.474922 ], [ -53.613281, 67.676085 ], [ -53.437500, 67.676085 ], [ -53.437500, 67.809245 ], [ -53.261719, 67.809245 ], [ -53.261719, 68.007571 ], [ -53.085938, 68.007571 ], [ -53.085938, 68.204212 ], [ -52.910156, 68.204212 ], [ -52.910156, 68.334376 ], [ -52.734375, 68.334376 ], [ -52.734375, 68.399180 ], [ -52.382812, 68.399180 ], [ -52.382812, 68.463800 ], [ -52.207031, 68.463800 ], [ -52.207031, 68.528235 ], [ -52.031250, 68.528235 ], [ -52.031250, 68.592487 ], [ -51.679688, 68.592487 ], [ -51.679688, 68.656555 ], [ -51.503906, 68.656555 ], [ -51.503906, 68.784144 ], [ -51.328125, 68.784144 ], [ -51.328125, 69.037142 ], [ -51.152344, 69.037142 ], [ -51.152344, 69.349339 ], [ -50.976562, 69.349339 ], [ -50.976562, 69.718107 ], [ -50.800781, 69.718107 ], [ -50.800781, 69.839622 ], [ -51.152344, 69.839622 ], [ -51.152344, 69.778952 ], [ -51.328125, 69.778952 ], [ -51.328125, 69.718107 ], [ -51.503906, 69.718107 ], [ -51.503906, 69.657086 ], [ -51.855469, 69.657086 ], [ -51.855469, 69.595890 ], [ -52.031250, 69.595890 ], [ -52.031250, 69.534518 ], [ -52.207031, 69.534518 ], [ -52.207031, 69.472969 ], [ -52.382812, 69.472969 ], [ -52.382812, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.349339 ], [ -53.085938, 69.349339 ], [ -53.085938, 69.287257 ], [ -53.613281, 69.287257 ], [ -53.613281, 69.349339 ], [ -53.964844, 69.349339 ], [ -53.964844, 69.411242 ], [ -54.140625, 69.411242 ], [ -54.140625, 69.472969 ], [ -54.316406, 69.472969 ], [ -54.316406, 69.534518 ], [ -54.667969, 69.534518 ], [ -54.667969, 70.436799 ], [ -54.492188, 70.436799 ], [ -54.492188, 70.670881 ], [ -54.316406, 70.670881 ], [ -54.316406, 70.844673 ], [ -53.261719, 70.844673 ], [ -53.261719, 70.786910 ], [ -52.910156, 70.786910 ], [ -52.910156, 70.728979 ], [ -52.558594, 70.728979 ], [ -52.558594, 70.670881 ], [ -52.031250, 70.670881 ], [ -52.031250, 70.612614 ], [ -51.679688, 70.612614 ] ], [ [ -51.679688, 70.612614 ], [ -51.679688, 70.554179 ], [ -51.503906, 70.554179 ], [ -51.503906, 70.612614 ], [ -51.679688, 70.612614 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.703125, 80.647035 ], [ -90.527344, 80.647035 ], [ -90.527344, 80.618424 ], [ -90.351562, 80.618424 ], [ -90.351562, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.824219, 80.560943 ], [ -89.824219, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.503112 ], [ -89.472656, 80.503112 ], [ -89.472656, 80.474065 ], [ -89.121094, 80.474065 ], [ -89.121094, 80.444931 ], [ -88.945312, 80.444931 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.386396 ], [ -88.417969, 80.386396 ], [ -88.417969, 80.356995 ], [ -88.066406, 80.356995 ], [ -88.066406, 80.327506 ], [ -87.890625, 80.327506 ], [ -87.890625, 80.238501 ], [ -87.714844, 80.238501 ], [ -87.714844, 80.118564 ], [ -87.539062, 80.118564 ], [ -87.539062, 79.997168 ], [ -87.363281, 79.997168 ], [ -87.363281, 79.843346 ], [ -87.187500, 79.843346 ], [ -87.187500, 79.718605 ], [ -87.011719, 79.718605 ], [ -87.011719, 79.624056 ], [ -86.835938, 79.624056 ], [ -86.835938, 79.560546 ], [ -86.660156, 79.560546 ], [ -86.660156, 79.528647 ], [ -86.484375, 79.528647 ], [ -86.484375, 79.496652 ], [ -86.308594, 79.496652 ], [ -86.308594, 79.432371 ], [ -86.132812, 79.432371 ], [ -86.132812, 79.400085 ], [ -85.957031, 79.400085 ], [ -85.957031, 79.335219 ], [ -85.781250, 79.335219 ], [ -85.781250, 79.302640 ], [ -85.957031, 79.302640 ], [ -85.957031, 79.269962 ], [ -86.132812, 79.269962 ], [ -86.132812, 79.237185 ], [ -86.308594, 79.237185 ], [ -86.308594, 79.204309 ], [ -86.484375, 79.204309 ], [ -86.484375, 79.138260 ], [ -86.660156, 79.138260 ], [ -86.660156, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.071812 ], [ -87.011719, 79.071812 ], [ -87.011719, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ] ] ], [ [ [ -71.894531, 83.194896 ], [ -71.191406, 83.194896 ], [ -71.191406, 83.174035 ], [ -70.488281, 83.174035 ], [ -70.488281, 83.153111 ], [ -69.785156, 83.153111 ], [ -69.785156, 83.132123 ], [ -69.082031, 83.132123 ], [ -69.082031, 83.111071 ], [ -68.378906, 83.111071 ], [ -68.378906, 83.089955 ], [ -67.675781, 83.089955 ], [ -67.675781, 83.068774 ], [ -66.972656, 83.068774 ], [ -66.972656, 83.047529 ], [ -66.269531, 83.047529 ], [ -66.269531, 83.026219 ], [ -65.742188, 83.026219 ], [ -65.742188, 83.004844 ], [ -65.390625, 83.004844 ], [ -65.390625, 82.983404 ], [ -65.039062, 82.983404 ], [ -65.039062, 82.961898 ], [ -64.687500, 82.961898 ], [ -64.687500, 82.940327 ], [ -64.335938, 82.940327 ], [ -64.335938, 82.918690 ], [ -63.984375, 82.918690 ], [ -63.984375, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.875218 ], [ -63.457031, 82.875218 ], [ -63.457031, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.831480 ], [ -63.105469, 82.831480 ], [ -63.105469, 82.787476 ], [ -62.929688, 82.787476 ], [ -62.929688, 82.765373 ], [ -62.753906, 82.765373 ], [ -62.753906, 82.743202 ], [ -62.578125, 82.743202 ], [ -62.578125, 82.720964 ], [ -62.402344, 82.720964 ], [ -62.402344, 82.698659 ], [ -62.226562, 82.698659 ], [ -62.226562, 82.653843 ], [ -62.050781, 82.653843 ], [ -62.050781, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.332382 ], [ -62.050781, 82.332382 ], [ -62.050781, 82.308893 ], [ -62.226562, 82.308893 ], [ -62.226562, 82.261699 ], [ -62.402344, 82.261699 ], [ -62.402344, 82.237994 ], [ -62.578125, 82.237994 ], [ -62.578125, 82.214217 ], [ -62.753906, 82.214217 ], [ -62.753906, 82.166446 ], [ -62.929688, 82.166446 ], [ -62.929688, 82.142451 ], [ -63.105469, 82.142451 ], [ -63.105469, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 82.094243 ], [ -63.457031, 82.094243 ], [ -63.457031, 82.045740 ], [ -63.632812, 82.045740 ], [ -63.632812, 82.021378 ], [ -63.808594, 82.021378 ], [ -63.808594, 81.996942 ], [ -63.984375, 81.996942 ], [ -63.984375, 81.947846 ], [ -64.160156, 81.947846 ], [ -64.160156, 81.923186 ], [ -64.335938, 81.923186 ], [ -64.335938, 81.898451 ], [ -64.687500, 81.898451 ], [ -64.687500, 81.873641 ], [ -65.039062, 81.873641 ], [ -65.039062, 81.848756 ], [ -65.390625, 81.848756 ], [ -65.390625, 81.823794 ], [ -65.566406, 81.823794 ], [ -65.566406, 81.798757 ], [ -65.917969, 81.798757 ], [ -65.917969, 81.773644 ], [ -66.269531, 81.773644 ], [ -66.269531, 81.748454 ], [ -66.621094, 81.748454 ], [ -66.621094, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.697844 ], [ -66.972656, 81.697844 ], [ -66.972656, 81.646927 ], [ -67.148438, 81.646927 ], [ -67.148438, 81.595699 ], [ -67.324219, 81.595699 ], [ -67.324219, 81.544159 ], [ -67.500000, 81.544159 ], [ -67.500000, 81.492306 ], [ -66.445312, 81.492306 ], [ -66.445312, 81.518272 ], [ -65.566406, 81.518272 ], [ -65.566406, 81.492306 ], [ -65.742188, 81.492306 ], [ -65.742188, 81.440137 ], [ -65.917969, 81.440137 ], [ -65.917969, 81.387650 ], [ -66.093750, 81.387650 ], [ -66.093750, 81.334844 ], [ -66.269531, 81.334844 ], [ -66.269531, 81.308321 ], [ -66.445312, 81.308321 ], [ -66.445312, 81.255032 ], [ -66.621094, 81.255032 ], [ -66.621094, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 81.147481 ], [ -66.972656, 81.147481 ], [ -66.972656, 81.093214 ], [ -67.148438, 81.093214 ], [ -67.148438, 81.065957 ], [ -67.324219, 81.065957 ], [ -67.324219, 81.011194 ], [ -67.500000, 81.011194 ], [ -67.500000, 80.956099 ], [ -67.675781, 80.956099 ], [ -67.675781, 80.900669 ], [ -67.851562, 80.900669 ], [ -67.851562, 80.872827 ], [ -68.027344, 80.872827 ], [ -68.027344, 80.844901 ], [ -68.203125, 80.844901 ], [ -68.203125, 80.816891 ], [ -68.378906, 80.816891 ], [ -68.378906, 80.788795 ], [ -68.554688, 80.788795 ], [ -68.554688, 80.760615 ], [ -68.730469, 80.760615 ], [ -68.730469, 80.703997 ], [ -68.906250, 80.703997 ], [ -68.906250, 80.675559 ], [ -69.082031, 80.675559 ], [ -69.082031, 80.647035 ], [ -69.257812, 80.647035 ], [ -69.257812, 80.618424 ], [ -69.433594, 80.618424 ], [ -69.433594, 80.560943 ], [ -69.609375, 80.560943 ], [ -69.609375, 80.474065 ], [ -69.785156, 80.474065 ], [ -69.785156, 80.415707 ], [ -69.960938, 80.415707 ], [ -69.960938, 80.327506 ], [ -70.136719, 80.327506 ], [ -70.136719, 80.238501 ], [ -70.312500, 80.238501 ], [ -70.312500, 80.178713 ], [ -70.488281, 80.178713 ], [ -70.488281, 80.088352 ], [ -70.664062, 80.088352 ], [ -70.664062, 79.997168 ], [ -70.839844, 79.997168 ], [ -70.839844, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.843346 ], [ -71.191406, 79.843346 ], [ -71.191406, 79.781164 ], [ -71.542969, 79.781164 ], [ -71.542969, 79.749932 ], [ -71.894531, 79.749932 ], [ -71.894531, 79.718605 ], [ -72.246094, 79.718605 ], [ -72.246094, 79.687184 ], [ -72.597656, 79.687184 ], [ -72.597656, 79.655668 ], [ -72.949219, 79.655668 ], [ -72.949219, 79.624056 ], [ -73.300781, 79.624056 ], [ -73.300781, 79.592349 ], [ -73.476562, 79.592349 ], [ -73.476562, 79.528647 ], [ -73.652344, 79.528647 ], [ -73.652344, 79.464560 ], [ -73.828125, 79.464560 ], [ -73.828125, 79.432371 ], [ -74.179688, 79.432371 ], [ -74.179688, 79.400085 ], [ -75.234375, 79.400085 ], [ -75.234375, 79.367701 ], [ -76.289062, 79.367701 ], [ -76.289062, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.004962 ], [ -85.429688, 79.004962 ], [ -85.429688, 79.071812 ], [ -85.253906, 79.071812 ], [ -85.253906, 79.237185 ], [ -85.078125, 79.237185 ], [ -85.078125, 79.335219 ], [ -85.253906, 79.335219 ], [ -85.253906, 79.400085 ], [ -85.429688, 79.400085 ], [ -85.429688, 79.464560 ], [ -85.605469, 79.464560 ], [ -85.605469, 79.496652 ], [ -85.781250, 79.496652 ], [ -85.781250, 79.560546 ], [ -85.957031, 79.560546 ], [ -85.957031, 79.592349 ], [ -86.132812, 79.592349 ], [ -86.132812, 79.655668 ], [ -86.308594, 79.655668 ], [ -86.308594, 79.718605 ], [ -86.484375, 79.718605 ], [ -86.484375, 79.812302 ], [ -86.660156, 79.812302 ], [ -86.660156, 79.997168 ], [ -86.835938, 79.997168 ], [ -86.835938, 80.148684 ], [ -87.011719, 80.148684 ], [ -87.011719, 80.238501 ], [ -85.781250, 80.238501 ], [ -85.781250, 80.208652 ], [ -84.199219, 80.208652 ], [ -84.199219, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.148684 ], [ -83.847656, 80.148684 ], [ -83.847656, 80.118564 ], [ -83.671875, 80.118564 ], [ -83.671875, 80.088352 ], [ -83.320312, 80.088352 ], [ -83.320312, 80.148684 ], [ -83.144531, 80.148684 ], [ -83.144531, 80.178713 ], [ -82.968750, 80.178713 ], [ -82.968750, 80.238501 ], [ -82.792969, 80.238501 ], [ -82.792969, 80.268259 ], [ -82.617188, 80.268259 ], [ -82.617188, 80.297927 ], [ -82.441406, 80.297927 ], [ -82.441406, 80.356995 ], [ -82.265625, 80.356995 ], [ -82.265625, 80.386396 ], [ -82.089844, 80.386396 ], [ -82.089844, 80.444931 ], [ -81.914062, 80.444931 ], [ -81.914062, 80.474065 ], [ -82.265625, 80.474065 ], [ -82.265625, 80.503112 ], [ -82.792969, 80.503112 ], [ -82.792969, 80.532071 ], [ -83.320312, 80.532071 ], [ -83.320312, 80.560943 ], [ -83.847656, 80.560943 ], [ -83.847656, 80.589727 ], [ -84.550781, 80.589727 ], [ -84.550781, 80.560943 ], [ -85.605469, 80.560943 ], [ -85.605469, 80.532071 ], [ -86.835938, 80.532071 ], [ -86.835938, 80.503112 ], [ -87.714844, 80.503112 ], [ -87.714844, 80.532071 ], [ -87.890625, 80.532071 ], [ -87.890625, 80.589727 ], [ -88.066406, 80.589727 ], [ -88.066406, 80.618424 ], [ -88.242188, 80.618424 ], [ -88.242188, 80.647035 ], [ -88.417969, 80.647035 ], [ -88.417969, 80.675559 ], [ -88.593750, 80.675559 ], [ -88.593750, 80.703997 ], [ -88.769531, 80.703997 ], [ -88.769531, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.788795 ], [ -89.121094, 80.788795 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.872827 ], [ -89.472656, 80.872827 ], [ -89.472656, 80.956099 ], [ -89.648438, 80.956099 ], [ -89.648438, 81.038617 ], [ -89.824219, 81.038617 ], [ -89.824219, 81.120388 ], [ -90.000000, 81.120388 ], [ -90.000000, 81.201420 ], [ -90.175781, 81.201420 ], [ -90.175781, 81.255032 ], [ -90.351562, 81.255032 ], [ -90.351562, 81.308321 ], [ -90.527344, 81.308321 ], [ -90.527344, 81.361287 ], [ -90.703125, 81.361287 ], [ -90.703125, 81.413933 ], [ -90.878906, 81.413933 ], [ -90.878906, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -88.769531, 82.118384 ], [ -88.769531, 82.142451 ], [ -88.417969, 82.142451 ], [ -88.417969, 82.166446 ], [ -88.242188, 82.166446 ], [ -88.242188, 82.190368 ], [ -87.890625, 82.190368 ], [ -87.890625, 82.214217 ], [ -87.539062, 82.214217 ], [ -87.539062, 82.237994 ], [ -87.363281, 82.237994 ], [ -87.363281, 82.261699 ], [ -87.011719, 82.261699 ], [ -87.011719, 82.285331 ], [ -86.835938, 82.285331 ], [ -86.835938, 82.332382 ], [ -86.660156, 82.332382 ], [ -86.660156, 82.379147 ], [ -86.484375, 82.379147 ], [ -86.484375, 82.425629 ], [ -86.308594, 82.425629 ], [ -86.308594, 82.471829 ], [ -86.132812, 82.471829 ], [ -86.132812, 82.494824 ], [ -85.957031, 82.494824 ], [ -85.957031, 82.540604 ], [ -85.781250, 82.540604 ], [ -85.781250, 82.586106 ], [ -85.605469, 82.586106 ], [ -85.605469, 82.631333 ], [ -85.429688, 82.631333 ], [ -85.429688, 82.653843 ], [ -85.253906, 82.653843 ], [ -85.253906, 82.631333 ], [ -84.550781, 82.631333 ], [ -84.550781, 82.608754 ], [ -84.199219, 82.608754 ], [ -84.199219, 82.563390 ], [ -84.023438, 82.563390 ], [ -84.023438, 82.517749 ], [ -83.847656, 82.517749 ], [ -83.847656, 82.471829 ], [ -83.671875, 82.471829 ], [ -83.671875, 82.425629 ], [ -83.496094, 82.425629 ], [ -83.496094, 82.379147 ], [ -83.320312, 82.379147 ], [ -83.320312, 82.332382 ], [ -83.144531, 82.332382 ], [ -83.144531, 82.379147 ], [ -82.968750, 82.379147 ], [ -82.968750, 82.517749 ], [ -82.792969, 82.517749 ], [ -82.792969, 82.653843 ], [ -82.617188, 82.653843 ], [ -82.617188, 82.787476 ], [ -82.441406, 82.787476 ], [ -82.441406, 82.853382 ], [ -82.265625, 82.853382 ], [ -82.265625, 82.875218 ], [ -82.089844, 82.875218 ], [ -82.089844, 82.896987 ], [ -81.914062, 82.896987 ], [ -81.914062, 82.918690 ], [ -81.738281, 82.918690 ], [ -81.738281, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 82.961898 ], [ -81.386719, 82.961898 ], [ -81.386719, 82.983404 ], [ -81.210938, 82.983404 ], [ -81.210938, 83.004844 ], [ -81.035156, 83.004844 ], [ -81.035156, 83.026219 ], [ -80.683594, 83.026219 ], [ -80.683594, 83.047529 ], [ -80.332031, 83.047529 ], [ -80.332031, 83.068774 ], [ -79.980469, 83.068774 ], [ -79.980469, 83.089955 ], [ -79.628906, 83.089955 ], [ -79.628906, 83.111071 ], [ -79.277344, 83.111071 ], [ -79.277344, 83.132123 ], [ -78.398438, 83.132123 ], [ -78.398438, 83.153111 ], [ -76.992188, 83.153111 ], [ -76.992188, 83.174035 ], [ -76.289062, 83.174035 ], [ -76.289062, 83.153111 ], [ -76.113281, 83.153111 ], [ -76.113281, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -75.410156, 83.068774 ], [ -75.410156, 83.089955 ], [ -75.058594, 83.089955 ], [ -75.058594, 83.111071 ], [ -74.707031, 83.111071 ], [ -74.707031, 83.132123 ], [ -74.355469, 83.132123 ], [ -74.355469, 83.153111 ], [ -74.003906, 83.153111 ], [ -74.003906, 83.174035 ], [ -73.652344, 83.174035 ], [ -73.652344, 83.194896 ], [ -73.300781, 83.194896 ], [ -73.300781, 83.215693 ], [ -72.949219, 83.215693 ], [ -72.949219, 83.236426 ], [ -72.597656, 83.236426 ], [ -72.597656, 83.215693 ], [ -71.894531, 83.215693 ], [ -71.894531, 83.194896 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.527344, 80.647035 ], [ -90.527344, 80.618424 ], [ -90.351562, 80.618424 ], [ -90.351562, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.824219, 80.560943 ], [ -89.824219, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.503112 ], [ -89.472656, 80.503112 ], [ -89.472656, 80.474065 ], [ -89.121094, 80.474065 ], [ -89.121094, 80.444931 ], [ -88.945312, 80.444931 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.386396 ], [ -88.417969, 80.386396 ], [ -88.417969, 80.356995 ], [ -88.066406, 80.356995 ], [ -88.066406, 80.327506 ], [ -87.890625, 80.327506 ], [ -87.890625, 80.238501 ], [ -87.714844, 80.238501 ], [ -87.714844, 80.118564 ], [ -87.539062, 80.118564 ], [ -87.539062, 79.997168 ], [ -87.363281, 79.997168 ], [ -87.363281, 79.843346 ], [ -87.187500, 79.843346 ], [ -87.187500, 79.718605 ], [ -87.011719, 79.718605 ], [ -87.011719, 79.624056 ], [ -86.835938, 79.624056 ], [ -86.835938, 79.560546 ], [ -86.660156, 79.560546 ], [ -86.660156, 79.528647 ], [ -86.484375, 79.528647 ], [ -86.484375, 79.496652 ], [ -86.308594, 79.496652 ], [ -86.308594, 79.432371 ], [ -86.132812, 79.432371 ], [ -86.132812, 79.400085 ], [ -85.957031, 79.400085 ], [ -85.957031, 79.335219 ], [ -85.781250, 79.335219 ], [ -85.781250, 79.302640 ], [ -85.957031, 79.302640 ], [ -85.957031, 79.269962 ], [ -86.132812, 79.269962 ], [ -86.132812, 79.237185 ], [ -86.308594, 79.237185 ], [ -86.308594, 79.204309 ], [ -86.484375, 79.204309 ], [ -86.484375, 79.138260 ], [ -86.660156, 79.138260 ], [ -86.660156, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.071812 ], [ -87.011719, 79.071812 ], [ -87.011719, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ] ] ], [ [ [ -72.597656, 83.236426 ], [ -72.597656, 83.215693 ], [ -71.894531, 83.215693 ], [ -71.894531, 83.194896 ], [ -71.191406, 83.194896 ], [ -71.191406, 83.174035 ], [ -70.488281, 83.174035 ], [ -70.488281, 83.153111 ], [ -69.785156, 83.153111 ], [ -69.785156, 83.132123 ], [ -69.082031, 83.132123 ], [ -69.082031, 83.111071 ], [ -68.378906, 83.111071 ], [ -68.378906, 83.089955 ], [ -67.675781, 83.089955 ], [ -67.675781, 83.068774 ], [ -66.972656, 83.068774 ], [ -66.972656, 83.047529 ], [ -66.269531, 83.047529 ], [ -66.269531, 83.026219 ], [ -65.742188, 83.026219 ], [ -65.742188, 83.004844 ], [ -65.390625, 83.004844 ], [ -65.390625, 82.983404 ], [ -65.039062, 82.983404 ], [ -65.039062, 82.961898 ], [ -64.687500, 82.961898 ], [ -64.687500, 82.940327 ], [ -64.335938, 82.940327 ], [ -64.335938, 82.918690 ], [ -63.984375, 82.918690 ], [ -63.984375, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.875218 ], [ -63.457031, 82.875218 ], [ -63.457031, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.831480 ], [ -63.105469, 82.831480 ], [ -63.105469, 82.787476 ], [ -62.929688, 82.787476 ], [ -62.929688, 82.765373 ], [ -62.753906, 82.765373 ], [ -62.753906, 82.743202 ], [ -62.578125, 82.743202 ], [ -62.578125, 82.720964 ], [ -62.402344, 82.720964 ], [ -62.402344, 82.698659 ], [ -62.226562, 82.698659 ], [ -62.226562, 82.653843 ], [ -62.050781, 82.653843 ], [ -62.050781, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.332382 ], [ -62.050781, 82.332382 ], [ -62.050781, 82.308893 ], [ -62.226562, 82.308893 ], [ -62.226562, 82.261699 ], [ -62.402344, 82.261699 ], [ -62.402344, 82.237994 ], [ -62.578125, 82.237994 ], [ -62.578125, 82.214217 ], [ -62.753906, 82.214217 ], [ -62.753906, 82.166446 ], [ -62.929688, 82.166446 ], [ -62.929688, 82.142451 ], [ -63.105469, 82.142451 ], [ -63.105469, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 82.094243 ], [ -63.457031, 82.094243 ], [ -63.457031, 82.045740 ], [ -63.632812, 82.045740 ], [ -63.632812, 82.021378 ], [ -63.808594, 82.021378 ], [ -63.808594, 81.996942 ], [ -63.984375, 81.996942 ], [ -63.984375, 81.947846 ], [ -64.160156, 81.947846 ], [ -64.160156, 81.923186 ], [ -64.335938, 81.923186 ], [ -64.335938, 81.898451 ], [ -64.687500, 81.898451 ], [ -64.687500, 81.873641 ], [ -65.039062, 81.873641 ], [ -65.039062, 81.848756 ], [ -65.390625, 81.848756 ], [ -65.390625, 81.823794 ], [ -65.566406, 81.823794 ], [ -65.566406, 81.798757 ], [ -65.917969, 81.798757 ], [ -65.917969, 81.773644 ], [ -66.269531, 81.773644 ], [ -66.269531, 81.748454 ], [ -66.621094, 81.748454 ], [ -66.621094, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.697844 ], [ -66.972656, 81.697844 ], [ -66.972656, 81.646927 ], [ -67.148438, 81.646927 ], [ -67.148438, 81.595699 ], [ -67.324219, 81.595699 ], [ -67.324219, 81.544159 ], [ -67.500000, 81.544159 ], [ -67.500000, 81.492306 ], [ -66.445312, 81.492306 ], [ -66.445312, 81.518272 ], [ -65.566406, 81.518272 ], [ -65.566406, 81.492306 ], [ -65.742188, 81.492306 ], [ -65.742188, 81.440137 ], [ -65.917969, 81.440137 ], [ -65.917969, 81.387650 ], [ -66.093750, 81.387650 ], [ -66.093750, 81.334844 ], [ -66.269531, 81.334844 ], [ -66.269531, 81.308321 ], [ -66.445312, 81.308321 ], [ -66.445312, 81.255032 ], [ -66.621094, 81.255032 ], [ -66.621094, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 81.147481 ], [ -66.972656, 81.147481 ], [ -66.972656, 81.093214 ], [ -67.148438, 81.093214 ], [ -67.148438, 81.065957 ], [ -67.324219, 81.065957 ], [ -67.324219, 81.011194 ], [ -67.500000, 81.011194 ], [ -67.500000, 80.956099 ], [ -67.675781, 80.956099 ], [ -67.675781, 80.900669 ], [ -67.851562, 80.900669 ], [ -67.851562, 80.872827 ], [ -68.027344, 80.872827 ], [ -68.027344, 80.844901 ], [ -68.203125, 80.844901 ], [ -68.203125, 80.816891 ], [ -68.378906, 80.816891 ], [ -68.378906, 80.788795 ], [ -68.554688, 80.788795 ], [ -68.554688, 80.760615 ], [ -68.730469, 80.760615 ], [ -68.730469, 80.703997 ], [ -68.906250, 80.703997 ], [ -68.906250, 80.675559 ], [ -69.082031, 80.675559 ], [ -69.082031, 80.647035 ], [ -69.257812, 80.647035 ], [ -69.257812, 80.618424 ], [ -69.433594, 80.618424 ], [ -69.433594, 80.560943 ], [ -69.609375, 80.560943 ], [ -69.609375, 80.474065 ], [ -69.785156, 80.474065 ], [ -69.785156, 80.415707 ], [ -69.960938, 80.415707 ], [ -69.960938, 80.327506 ], [ -70.136719, 80.327506 ], [ -70.136719, 80.238501 ], [ -70.312500, 80.238501 ], [ -70.312500, 80.178713 ], [ -70.488281, 80.178713 ], [ -70.488281, 80.088352 ], [ -70.664062, 80.088352 ], [ -70.664062, 79.997168 ], [ -70.839844, 79.997168 ], [ -70.839844, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.843346 ], [ -71.191406, 79.843346 ], [ -71.191406, 79.781164 ], [ -71.542969, 79.781164 ], [ -71.542969, 79.749932 ], [ -71.894531, 79.749932 ], [ -71.894531, 79.718605 ], [ -72.246094, 79.718605 ], [ -72.246094, 79.687184 ], [ -72.597656, 79.687184 ], [ -72.597656, 79.655668 ], [ -72.949219, 79.655668 ], [ -72.949219, 79.624056 ], [ -73.300781, 79.624056 ], [ -73.300781, 79.592349 ], [ -73.476562, 79.592349 ], [ -73.476562, 79.528647 ], [ -73.652344, 79.528647 ], [ -73.652344, 79.464560 ], [ -73.828125, 79.464560 ], [ -73.828125, 79.432371 ], [ -74.179688, 79.432371 ], [ -74.179688, 79.400085 ], [ -75.234375, 79.400085 ], [ -75.234375, 79.367701 ], [ -76.289062, 79.367701 ], [ -76.289062, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.004962 ], [ -85.429688, 79.004962 ], [ -85.429688, 79.071812 ], [ -85.253906, 79.071812 ], [ -85.253906, 79.237185 ], [ -85.078125, 79.237185 ], [ -85.078125, 79.335219 ], [ -85.253906, 79.335219 ], [ -85.253906, 79.400085 ], [ -85.429688, 79.400085 ], [ -85.429688, 79.464560 ], [ -85.605469, 79.464560 ], [ -85.605469, 79.496652 ], [ -85.781250, 79.496652 ], [ -85.781250, 79.560546 ], [ -85.957031, 79.560546 ], [ -85.957031, 79.592349 ], [ -86.132812, 79.592349 ], [ -86.132812, 79.655668 ], [ -86.308594, 79.655668 ], [ -86.308594, 79.718605 ], [ -86.484375, 79.718605 ], [ -86.484375, 79.812302 ], [ -86.660156, 79.812302 ], [ -86.660156, 79.997168 ], [ -86.835938, 79.997168 ], [ -86.835938, 80.148684 ], [ -87.011719, 80.148684 ], [ -87.011719, 80.238501 ], [ -85.781250, 80.238501 ], [ -85.781250, 80.208652 ], [ -84.199219, 80.208652 ], [ -84.199219, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.148684 ], [ -83.847656, 80.148684 ], [ -83.847656, 80.118564 ], [ -83.671875, 80.118564 ], [ -83.671875, 80.088352 ], [ -83.320312, 80.088352 ], [ -83.320312, 80.148684 ], [ -83.144531, 80.148684 ], [ -83.144531, 80.178713 ], [ -82.968750, 80.178713 ], [ -82.968750, 80.238501 ], [ -82.792969, 80.238501 ], [ -82.792969, 80.268259 ], [ -82.617188, 80.268259 ], [ -82.617188, 80.297927 ], [ -82.441406, 80.297927 ], [ -82.441406, 80.356995 ], [ -82.265625, 80.356995 ], [ -82.265625, 80.386396 ], [ -82.089844, 80.386396 ], [ -82.089844, 80.444931 ], [ -81.914062, 80.444931 ], [ -81.914062, 80.474065 ], [ -82.265625, 80.474065 ], [ -82.265625, 80.503112 ], [ -82.792969, 80.503112 ], [ -82.792969, 80.532071 ], [ -83.320312, 80.532071 ], [ -83.320312, 80.560943 ], [ -83.847656, 80.560943 ], [ -83.847656, 80.589727 ], [ -84.550781, 80.589727 ], [ -84.550781, 80.560943 ], [ -85.605469, 80.560943 ], [ -85.605469, 80.532071 ], [ -86.835938, 80.532071 ], [ -86.835938, 80.503112 ], [ -87.714844, 80.503112 ], [ -87.714844, 80.532071 ], [ -87.890625, 80.532071 ], [ -87.890625, 80.589727 ], [ -88.066406, 80.589727 ], [ -88.066406, 80.618424 ], [ -88.242188, 80.618424 ], [ -88.242188, 80.647035 ], [ -88.417969, 80.647035 ], [ -88.417969, 80.675559 ], [ -88.593750, 80.675559 ], [ -88.593750, 80.703997 ], [ -88.769531, 80.703997 ], [ -88.769531, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.788795 ], [ -89.121094, 80.788795 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.872827 ], [ -89.472656, 80.872827 ], [ -89.472656, 80.956099 ], [ -89.648438, 80.956099 ], [ -89.648438, 81.038617 ], [ -89.824219, 81.038617 ], [ -89.824219, 81.120388 ], [ -90.000000, 81.120388 ], [ -90.000000, 81.201420 ], [ -90.175781, 81.201420 ], [ -90.175781, 81.255032 ], [ -90.351562, 81.255032 ], [ -90.351562, 81.308321 ], [ -90.527344, 81.308321 ], [ -90.527344, 81.361287 ], [ -90.703125, 81.361287 ], [ -90.703125, 81.413933 ], [ -90.878906, 81.413933 ], [ -90.878906, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -88.769531, 82.118384 ], [ -88.769531, 82.142451 ], [ -88.417969, 82.142451 ], [ -88.417969, 82.166446 ], [ -88.242188, 82.166446 ], [ -88.242188, 82.190368 ], [ -87.890625, 82.190368 ], [ -87.890625, 82.214217 ], [ -87.539062, 82.214217 ], [ -87.539062, 82.237994 ], [ -87.363281, 82.237994 ], [ -87.363281, 82.261699 ], [ -87.011719, 82.261699 ], [ -87.011719, 82.285331 ], [ -86.835938, 82.285331 ], [ -86.835938, 82.332382 ], [ -86.660156, 82.332382 ], [ -86.660156, 82.379147 ], [ -86.484375, 82.379147 ], [ -86.484375, 82.425629 ], [ -86.308594, 82.425629 ], [ -86.308594, 82.471829 ], [ -86.132812, 82.471829 ], [ -86.132812, 82.494824 ], [ -85.957031, 82.494824 ], [ -85.957031, 82.540604 ], [ -85.781250, 82.540604 ], [ -85.781250, 82.586106 ], [ -85.605469, 82.586106 ], [ -85.605469, 82.631333 ], [ -85.429688, 82.631333 ], [ -85.429688, 82.653843 ], [ -85.253906, 82.653843 ], [ -85.253906, 82.631333 ], [ -84.550781, 82.631333 ], [ -84.550781, 82.608754 ], [ -84.199219, 82.608754 ], [ -84.199219, 82.563390 ], [ -84.023438, 82.563390 ], [ -84.023438, 82.517749 ], [ -83.847656, 82.517749 ], [ -83.847656, 82.471829 ], [ -83.671875, 82.471829 ], [ -83.671875, 82.425629 ], [ -83.496094, 82.425629 ], [ -83.496094, 82.379147 ], [ -83.320312, 82.379147 ], [ -83.320312, 82.332382 ], [ -83.144531, 82.332382 ], [ -83.144531, 82.379147 ], [ -82.968750, 82.379147 ], [ -82.968750, 82.517749 ], [ -82.792969, 82.517749 ], [ -82.792969, 82.653843 ], [ -82.617188, 82.653843 ], [ -82.617188, 82.787476 ], [ -82.441406, 82.787476 ], [ -82.441406, 82.853382 ], [ -82.265625, 82.853382 ], [ -82.265625, 82.875218 ], [ -82.089844, 82.875218 ], [ -82.089844, 82.896987 ], [ -81.914062, 82.896987 ], [ -81.914062, 82.918690 ], [ -81.738281, 82.918690 ], [ -81.738281, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 82.961898 ], [ -81.386719, 82.961898 ], [ -81.386719, 82.983404 ], [ -81.210938, 82.983404 ], [ -81.210938, 83.004844 ], [ -81.035156, 83.004844 ], [ -81.035156, 83.026219 ], [ -80.683594, 83.026219 ], [ -80.683594, 83.047529 ], [ -80.332031, 83.047529 ], [ -80.332031, 83.068774 ], [ -79.980469, 83.068774 ], [ -79.980469, 83.089955 ], [ -79.628906, 83.089955 ], [ -79.628906, 83.111071 ], [ -79.277344, 83.111071 ], [ -79.277344, 83.132123 ], [ -78.398438, 83.132123 ], [ -78.398438, 83.153111 ], [ -76.992188, 83.153111 ], [ -76.992188, 83.174035 ], [ -76.289062, 83.174035 ], [ -76.289062, 83.153111 ], [ -76.113281, 83.153111 ], [ -76.113281, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -75.410156, 83.068774 ], [ -75.410156, 83.089955 ], [ -75.058594, 83.089955 ], [ -75.058594, 83.111071 ], [ -74.707031, 83.111071 ], [ -74.707031, 83.132123 ], [ -74.355469, 83.132123 ], [ -74.355469, 83.153111 ], [ -74.003906, 83.153111 ], [ -74.003906, 83.174035 ], [ -73.652344, 83.174035 ], [ -73.652344, 83.194896 ], [ -73.300781, 83.194896 ], [ -73.300781, 83.215693 ], [ -72.949219, 83.215693 ], [ -72.949219, 83.236426 ], [ -72.597656, 83.236426 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, 81.798757 ], [ -45.175781, 81.798757 ], [ -45.175781, 81.823794 ], [ -45.351562, 81.823794 ], [ -45.351562, 81.873641 ], [ -45.527344, 81.873641 ], [ -45.527344, 81.898451 ], [ -45.703125, 81.898451 ], [ -45.703125, 81.947846 ], [ -45.878906, 81.947846 ], [ -45.878906, 81.972431 ], [ -46.054688, 81.972431 ], [ -46.054688, 82.021378 ], [ -46.230469, 82.021378 ], [ -46.230469, 82.045740 ], [ -46.406250, 82.045740 ], [ -46.406250, 82.094243 ], [ -46.582031, 82.094243 ], [ -46.582031, 82.118384 ], [ -46.757812, 82.118384 ], [ -46.757812, 82.166446 ], [ -46.933594, 82.166446 ], [ -46.933594, 82.402423 ], [ -46.757812, 82.402423 ], [ -46.757812, 82.631333 ], [ -46.582031, 82.631333 ], [ -46.582031, 82.676285 ], [ -46.406250, 82.676285 ], [ -46.406250, 82.698659 ], [ -46.230469, 82.698659 ], [ -46.230469, 82.743202 ], [ -46.054688, 82.743202 ], [ -46.054688, 82.765373 ], [ -45.878906, 82.765373 ], [ -45.878906, 82.809511 ], [ -45.703125, 82.809511 ], [ -45.703125, 82.831480 ], [ -45.527344, 82.831480 ], [ -45.527344, 82.875218 ], [ -45.351562, 82.875218 ], [ -45.351562, 82.896987 ], [ -45.175781, 82.896987 ], [ -45.175781, 82.918690 ], [ -45.000000, 82.918690 ], [ -45.000000, 82.961898 ], [ -44.824219, 82.961898 ], [ -44.824219, 82.983404 ], [ -44.648438, 82.983404 ], [ -44.648438, 83.026219 ], [ -44.472656, 83.026219 ], [ -44.472656, 83.047529 ], [ -44.296875, 83.047529 ], [ -44.296875, 83.089955 ], [ -44.121094, 83.089955 ], [ -44.121094, 79.004962 ], [ -68.554688, 79.004962 ], [ -68.554688, 79.038437 ], [ -68.203125, 79.038437 ], [ -68.203125, 79.071812 ], [ -68.027344, 79.071812 ], [ -68.027344, 79.105086 ], [ -67.851562, 79.105086 ], [ -67.851562, 79.138260 ], [ -67.500000, 79.138260 ], [ -67.500000, 79.171335 ], [ -67.324219, 79.171335 ], [ -67.324219, 79.204309 ], [ -66.972656, 79.204309 ], [ -66.972656, 79.237185 ], [ -66.796875, 79.237185 ], [ -66.796875, 79.269962 ], [ -66.445312, 79.269962 ], [ -66.445312, 79.302640 ], [ -66.269531, 79.302640 ], [ -66.269531, 79.335219 ], [ -66.093750, 79.335219 ], [ -66.093750, 79.367701 ], [ -65.742188, 79.367701 ], [ -65.742188, 79.464560 ], [ -65.566406, 79.464560 ], [ -65.566406, 79.655668 ], [ -65.390625, 79.655668 ], [ -65.390625, 79.749932 ], [ -65.566406, 79.749932 ], [ -65.566406, 79.781164 ], [ -65.742188, 79.781164 ], [ -65.742188, 79.812302 ], [ -66.093750, 79.812302 ], [ -66.093750, 79.843346 ], [ -66.269531, 79.843346 ], [ -66.269531, 79.874297 ], [ -66.445312, 79.874297 ], [ -66.445312, 79.905154 ], [ -66.621094, 79.905154 ], [ -66.621094, 79.935918 ], [ -66.972656, 79.935918 ], [ -66.972656, 79.966590 ], [ -67.148438, 79.966590 ], [ -67.148438, 79.997168 ], [ -67.324219, 79.997168 ], [ -67.324219, 80.027655 ], [ -67.500000, 80.027655 ], [ -67.500000, 80.058050 ], [ -67.851562, 80.058050 ], [ -67.851562, 80.088352 ], [ -68.027344, 80.088352 ], [ -68.027344, 80.148684 ], [ -67.851562, 80.148684 ], [ -67.851562, 80.208652 ], [ -67.675781, 80.208652 ], [ -67.675781, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.386396 ], [ -67.324219, 80.386396 ], [ -67.324219, 80.444931 ], [ -67.148438, 80.444931 ], [ -67.148438, 80.503112 ], [ -66.972656, 80.503112 ], [ -66.972656, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.589727 ], [ -66.621094, 80.589727 ], [ -66.621094, 80.618424 ], [ -66.445312, 80.618424 ], [ -66.445312, 80.647035 ], [ -66.269531, 80.647035 ], [ -66.269531, 80.675559 ], [ -66.093750, 80.675559 ], [ -66.093750, 80.732349 ], [ -65.917969, 80.732349 ], [ -65.917969, 80.760615 ], [ -65.742188, 80.760615 ], [ -65.742188, 80.788795 ], [ -65.566406, 80.788795 ], [ -65.566406, 80.816891 ], [ -65.390625, 80.816891 ], [ -65.390625, 80.872827 ], [ -65.214844, 80.872827 ], [ -65.214844, 80.900669 ], [ -65.039062, 80.900669 ], [ -65.039062, 80.928426 ], [ -64.863281, 80.928426 ], [ -64.863281, 80.956099 ], [ -64.687500, 80.956099 ], [ -64.687500, 81.011194 ], [ -64.511719, 81.011194 ], [ -64.511719, 81.038617 ], [ -64.335938, 81.038617 ], [ -64.335938, 81.065957 ], [ -64.160156, 81.065957 ], [ -64.160156, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.147481 ], [ -63.808594, 81.147481 ], [ -63.808594, 81.174491 ], [ -63.632812, 81.174491 ], [ -63.632812, 81.201420 ], [ -63.281250, 81.201420 ], [ -63.281250, 81.228267 ], [ -62.929688, 81.228267 ], [ -62.929688, 81.255032 ], [ -62.578125, 81.255032 ], [ -62.578125, 81.281717 ], [ -62.226562, 81.281717 ], [ -62.226562, 81.413933 ], [ -62.402344, 81.413933 ], [ -62.402344, 81.646927 ], [ -62.578125, 81.646927 ], [ -62.578125, 81.773644 ], [ -62.402344, 81.773644 ], [ -62.402344, 81.798757 ], [ -62.226562, 81.798757 ], [ -62.226562, 81.823794 ], [ -62.050781, 81.823794 ], [ -62.050781, 81.848756 ], [ -61.699219, 81.848756 ], [ -61.699219, 81.873641 ], [ -61.523438, 81.873641 ], [ -61.523438, 81.898451 ], [ -61.347656, 81.898451 ], [ -61.347656, 81.923186 ], [ -61.171875, 81.923186 ], [ -61.171875, 81.947846 ], [ -60.996094, 81.947846 ], [ -60.996094, 81.972431 ], [ -60.644531, 81.972431 ], [ -60.644531, 81.996942 ], [ -60.468750, 81.996942 ], [ -60.468750, 82.021378 ], [ -60.292969, 82.021378 ], [ -60.292969, 82.045740 ], [ -59.941406, 82.045740 ], [ -59.941406, 82.070028 ], [ -59.414062, 82.070028 ], [ -59.414062, 82.094243 ], [ -58.886719, 82.094243 ], [ -58.886719, 82.118384 ], [ -58.359375, 82.118384 ], [ -58.359375, 82.142451 ], [ -57.832031, 82.142451 ], [ -57.832031, 82.166446 ], [ -57.304688, 82.166446 ], [ -57.304688, 82.190368 ], [ -54.140625, 82.190368 ], [ -54.140625, 82.166446 ], [ -53.964844, 82.166446 ], [ -53.964844, 82.118384 ], [ -53.789062, 82.118384 ], [ -53.789062, 82.070028 ], [ -53.613281, 82.070028 ], [ -53.613281, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.972431 ], [ -53.261719, 81.972431 ], [ -53.261719, 81.923186 ], [ -53.085938, 81.923186 ], [ -53.085938, 81.898451 ], [ -52.910156, 81.898451 ], [ -52.910156, 81.947846 ], [ -52.734375, 81.947846 ], [ -52.734375, 81.972431 ], [ -52.558594, 81.972431 ], [ -52.558594, 82.021378 ], [ -52.382812, 82.021378 ], [ -52.382812, 82.045740 ], [ -52.207031, 82.045740 ], [ -52.207031, 82.094243 ], [ -52.031250, 82.094243 ], [ -52.031250, 82.118384 ], [ -51.855469, 82.118384 ], [ -51.855469, 82.166446 ], [ -51.679688, 82.166446 ], [ -51.679688, 82.214217 ], [ -51.503906, 82.214217 ], [ -51.503906, 82.237994 ], [ -51.328125, 82.237994 ], [ -51.328125, 82.285331 ], [ -51.152344, 82.285331 ], [ -51.152344, 82.308893 ], [ -50.976562, 82.308893 ], [ -50.976562, 82.355800 ], [ -50.800781, 82.355800 ], [ -50.800781, 82.379147 ], [ -50.625000, 82.379147 ], [ -50.625000, 82.425629 ], [ -50.273438, 82.425629 ], [ -50.273438, 82.402423 ], [ -50.097656, 82.402423 ], [ -50.097656, 82.379147 ], [ -49.921875, 82.379147 ], [ -49.921875, 82.355800 ], [ -49.746094, 82.355800 ], [ -49.746094, 82.308893 ], [ -49.570312, 82.308893 ], [ -49.570312, 82.285331 ], [ -49.394531, 82.285331 ], [ -49.394531, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.237994 ], [ -49.042969, 82.237994 ], [ -49.042969, 82.214217 ], [ -48.867188, 82.214217 ], [ -48.867188, 82.190368 ], [ -48.691406, 82.190368 ], [ -48.691406, 82.166446 ], [ -48.515625, 82.166446 ], [ -48.515625, 82.118384 ], [ -48.339844, 82.118384 ], [ -48.339844, 82.094243 ], [ -48.164062, 82.094243 ], [ -48.164062, 82.070028 ], [ -47.812500, 82.070028 ], [ -47.812500, 82.045740 ], [ -47.460938, 82.045740 ], [ -47.460938, 82.021378 ], [ -46.933594, 82.021378 ], [ -46.933594, 81.996942 ], [ -46.582031, 81.996942 ], [ -46.582031, 81.972431 ], [ -46.406250, 81.972431 ], [ -46.406250, 81.947846 ], [ -46.230469, 81.947846 ], [ -46.230469, 81.923186 ], [ -46.054688, 81.923186 ], [ -46.054688, 81.898451 ], [ -45.878906, 81.898451 ], [ -45.878906, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.848756 ], [ -45.527344, 81.848756 ], [ -45.527344, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.773644 ], [ -45.175781, 81.773644 ], [ -45.175781, 81.748454 ], [ -45.000000, 81.748454 ], [ -45.000000, 81.798757 ] ], [ [ -44.824219, 81.697844 ], [ -44.648438, 81.697844 ], [ -44.648438, 81.723188 ], [ -44.824219, 81.723188 ], [ -44.824219, 81.697844 ] ], [ [ -45.000000, 81.723188 ], [ -44.824219, 81.723188 ], [ -44.824219, 81.748454 ], [ -45.000000, 81.748454 ], [ -45.000000, 81.723188 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, 81.748454 ], [ -45.000000, 81.798757 ], [ -45.175781, 81.798757 ], [ -45.175781, 81.823794 ], [ -45.351562, 81.823794 ], [ -45.351562, 81.873641 ], [ -45.527344, 81.873641 ], [ -45.527344, 81.898451 ], [ -45.703125, 81.898451 ], [ -45.703125, 81.947846 ], [ -45.878906, 81.947846 ], [ -45.878906, 81.972431 ], [ -46.054688, 81.972431 ], [ -46.054688, 82.021378 ], [ -46.230469, 82.021378 ], [ -46.230469, 82.045740 ], [ -46.406250, 82.045740 ], [ -46.406250, 82.094243 ], [ -46.582031, 82.094243 ], [ -46.582031, 82.118384 ], [ -46.757812, 82.118384 ], [ -46.757812, 82.166446 ], [ -46.933594, 82.166446 ], [ -46.933594, 82.402423 ], [ -46.757812, 82.402423 ], [ -46.757812, 82.631333 ], [ -46.582031, 82.631333 ], [ -46.582031, 82.676285 ], [ -46.406250, 82.676285 ], [ -46.406250, 82.698659 ], [ -46.230469, 82.698659 ], [ -46.230469, 82.743202 ], [ -46.054688, 82.743202 ], [ -46.054688, 82.765373 ], [ -45.878906, 82.765373 ], [ -45.878906, 82.809511 ], [ -45.703125, 82.809511 ], [ -45.703125, 82.831480 ], [ -45.527344, 82.831480 ], [ -45.527344, 82.875218 ], [ -45.351562, 82.875218 ], [ -45.351562, 82.896987 ], [ -45.175781, 82.896987 ], [ -45.175781, 82.918690 ], [ -45.000000, 82.918690 ], [ -45.000000, 82.961898 ], [ -44.824219, 82.961898 ], [ -44.824219, 82.983404 ], [ -44.648438, 82.983404 ], [ -44.648438, 83.026219 ], [ -44.472656, 83.026219 ], [ -44.472656, 83.047529 ], [ -44.296875, 83.047529 ], [ -44.296875, 83.089955 ], [ -44.121094, 83.089955 ], [ -44.121094, 79.004962 ], [ -68.554688, 79.004962 ], [ -68.554688, 79.038437 ], [ -68.203125, 79.038437 ], [ -68.203125, 79.071812 ], [ -68.027344, 79.071812 ], [ -68.027344, 79.105086 ], [ -67.851562, 79.105086 ], [ -67.851562, 79.138260 ], [ -67.500000, 79.138260 ], [ -67.500000, 79.171335 ], [ -67.324219, 79.171335 ], [ -67.324219, 79.204309 ], [ -66.972656, 79.204309 ], [ -66.972656, 79.237185 ], [ -66.796875, 79.237185 ], [ -66.796875, 79.269962 ], [ -66.445312, 79.269962 ], [ -66.445312, 79.302640 ], [ -66.269531, 79.302640 ], [ -66.269531, 79.335219 ], [ -66.093750, 79.335219 ], [ -66.093750, 79.367701 ], [ -65.742188, 79.367701 ], [ -65.742188, 79.464560 ], [ -65.566406, 79.464560 ], [ -65.566406, 79.655668 ], [ -65.390625, 79.655668 ], [ -65.390625, 79.749932 ], [ -65.566406, 79.749932 ], [ -65.566406, 79.781164 ], [ -65.742188, 79.781164 ], [ -65.742188, 79.812302 ], [ -66.093750, 79.812302 ], [ -66.093750, 79.843346 ], [ -66.269531, 79.843346 ], [ -66.269531, 79.874297 ], [ -66.445312, 79.874297 ], [ -66.445312, 79.905154 ], [ -66.621094, 79.905154 ], [ -66.621094, 79.935918 ], [ -66.972656, 79.935918 ], [ -66.972656, 79.966590 ], [ -67.148438, 79.966590 ], [ -67.148438, 79.997168 ], [ -67.324219, 79.997168 ], [ -67.324219, 80.027655 ], [ -67.500000, 80.027655 ], [ -67.500000, 80.058050 ], [ -67.851562, 80.058050 ], [ -67.851562, 80.088352 ], [ -68.027344, 80.088352 ], [ -68.027344, 80.148684 ], [ -67.851562, 80.148684 ], [ -67.851562, 80.208652 ], [ -67.675781, 80.208652 ], [ -67.675781, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.386396 ], [ -67.324219, 80.386396 ], [ -67.324219, 80.444931 ], [ -67.148438, 80.444931 ], [ -67.148438, 80.503112 ], [ -66.972656, 80.503112 ], [ -66.972656, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.589727 ], [ -66.621094, 80.589727 ], [ -66.621094, 80.618424 ], [ -66.445312, 80.618424 ], [ -66.445312, 80.647035 ], [ -66.269531, 80.647035 ], [ -66.269531, 80.675559 ], [ -66.093750, 80.675559 ], [ -66.093750, 80.732349 ], [ -65.917969, 80.732349 ], [ -65.917969, 80.760615 ], [ -65.742188, 80.760615 ], [ -65.742188, 80.788795 ], [ -65.566406, 80.788795 ], [ -65.566406, 80.816891 ], [ -65.390625, 80.816891 ], [ -65.390625, 80.872827 ], [ -65.214844, 80.872827 ], [ -65.214844, 80.900669 ], [ -65.039062, 80.900669 ], [ -65.039062, 80.928426 ], [ -64.863281, 80.928426 ], [ -64.863281, 80.956099 ], [ -64.687500, 80.956099 ], [ -64.687500, 81.011194 ], [ -64.511719, 81.011194 ], [ -64.511719, 81.038617 ], [ -64.335938, 81.038617 ], [ -64.335938, 81.065957 ], [ -64.160156, 81.065957 ], [ -64.160156, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.147481 ], [ -63.808594, 81.147481 ], [ -63.808594, 81.174491 ], [ -63.632812, 81.174491 ], [ -63.632812, 81.201420 ], [ -63.281250, 81.201420 ], [ -63.281250, 81.228267 ], [ -62.929688, 81.228267 ], [ -62.929688, 81.255032 ], [ -62.578125, 81.255032 ], [ -62.578125, 81.281717 ], [ -62.226562, 81.281717 ], [ -62.226562, 81.413933 ], [ -62.402344, 81.413933 ], [ -62.402344, 81.646927 ], [ -62.578125, 81.646927 ], [ -62.578125, 81.773644 ], [ -62.402344, 81.773644 ], [ -62.402344, 81.798757 ], [ -62.226562, 81.798757 ], [ -62.226562, 81.823794 ], [ -62.050781, 81.823794 ], [ -62.050781, 81.848756 ], [ -61.699219, 81.848756 ], [ -61.699219, 81.873641 ], [ -61.523438, 81.873641 ], [ -61.523438, 81.898451 ], [ -61.347656, 81.898451 ], [ -61.347656, 81.923186 ], [ -61.171875, 81.923186 ], [ -61.171875, 81.947846 ], [ -60.996094, 81.947846 ], [ -60.996094, 81.972431 ], [ -60.644531, 81.972431 ], [ -60.644531, 81.996942 ], [ -60.468750, 81.996942 ], [ -60.468750, 82.021378 ], [ -60.292969, 82.021378 ], [ -60.292969, 82.045740 ], [ -59.941406, 82.045740 ], [ -59.941406, 82.070028 ], [ -59.414062, 82.070028 ], [ -59.414062, 82.094243 ], [ -58.886719, 82.094243 ], [ -58.886719, 82.118384 ], [ -58.359375, 82.118384 ], [ -58.359375, 82.142451 ], [ -57.832031, 82.142451 ], [ -57.832031, 82.166446 ], [ -57.304688, 82.166446 ], [ -57.304688, 82.190368 ], [ -54.140625, 82.190368 ], [ -54.140625, 82.166446 ], [ -53.964844, 82.166446 ], [ -53.964844, 82.118384 ], [ -53.789062, 82.118384 ], [ -53.789062, 82.070028 ], [ -53.613281, 82.070028 ], [ -53.613281, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.972431 ], [ -53.261719, 81.972431 ], [ -53.261719, 81.923186 ], [ -53.085938, 81.923186 ], [ -53.085938, 81.898451 ], [ -52.910156, 81.898451 ], [ -52.910156, 81.947846 ], [ -52.734375, 81.947846 ], [ -52.734375, 81.972431 ], [ -52.558594, 81.972431 ], [ -52.558594, 82.021378 ], [ -52.382812, 82.021378 ], [ -52.382812, 82.045740 ], [ -52.207031, 82.045740 ], [ -52.207031, 82.094243 ], [ -52.031250, 82.094243 ], [ -52.031250, 82.118384 ], [ -51.855469, 82.118384 ], [ -51.855469, 82.166446 ], [ -51.679688, 82.166446 ], [ -51.679688, 82.214217 ], [ -51.503906, 82.214217 ], [ -51.503906, 82.237994 ], [ -51.328125, 82.237994 ], [ -51.328125, 82.285331 ], [ -51.152344, 82.285331 ], [ -51.152344, 82.308893 ], [ -50.976562, 82.308893 ], [ -50.976562, 82.355800 ], [ -50.800781, 82.355800 ], [ -50.800781, 82.379147 ], [ -50.625000, 82.379147 ], [ -50.625000, 82.425629 ], [ -50.273438, 82.425629 ], [ -50.273438, 82.402423 ], [ -50.097656, 82.402423 ], [ -50.097656, 82.379147 ], [ -49.921875, 82.379147 ], [ -49.921875, 82.355800 ], [ -49.746094, 82.355800 ], [ -49.746094, 82.308893 ], [ -49.570312, 82.308893 ], [ -49.570312, 82.285331 ], [ -49.394531, 82.285331 ], [ -49.394531, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.237994 ], [ -49.042969, 82.237994 ], [ -49.042969, 82.214217 ], [ -48.867188, 82.214217 ], [ -48.867188, 82.190368 ], [ -48.691406, 82.190368 ], [ -48.691406, 82.166446 ], [ -48.515625, 82.166446 ], [ -48.515625, 82.118384 ], [ -48.339844, 82.118384 ], [ -48.339844, 82.094243 ], [ -48.164062, 82.094243 ], [ -48.164062, 82.070028 ], [ -47.812500, 82.070028 ], [ -47.812500, 82.045740 ], [ -47.460938, 82.045740 ], [ -47.460938, 82.021378 ], [ -46.933594, 82.021378 ], [ -46.933594, 81.996942 ], [ -46.582031, 81.996942 ], [ -46.582031, 81.972431 ], [ -46.406250, 81.972431 ], [ -46.406250, 81.947846 ], [ -46.230469, 81.947846 ], [ -46.230469, 81.923186 ], [ -46.054688, 81.923186 ], [ -46.054688, 81.898451 ], [ -45.878906, 81.898451 ], [ -45.878906, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.848756 ], [ -45.527344, 81.848756 ], [ -45.527344, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.773644 ], [ -45.175781, 81.773644 ], [ -45.175781, 81.748454 ], [ -45.000000, 81.748454 ] ], [ [ -44.824219, 81.723188 ], [ -44.824219, 81.697844 ], [ -44.648438, 81.697844 ], [ -44.648438, 81.723188 ], [ -44.824219, 81.723188 ] ], [ [ -45.000000, 81.748454 ], [ -45.000000, 81.723188 ], [ -44.824219, 81.723188 ], [ -44.824219, 81.748454 ], [ -45.000000, 81.748454 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -28.828125, -80.208652 ], [ -28.828125, -80.148684 ], [ -29.003906, -80.148684 ], [ -29.003906, -80.058050 ], [ -29.179688, -80.058050 ], [ -29.179688, -79.935918 ], [ -29.355469, -79.935918 ], [ -29.355469, -79.812302 ], [ -29.531250, -79.812302 ], [ -29.531250, -79.687184 ], [ -29.707031, -79.687184 ], [ -29.707031, -79.269962 ], [ -30.585938, -79.269962 ], [ -30.585938, -79.302640 ], [ -31.816406, -79.302640 ], [ -31.816406, -79.335219 ], [ -32.167969, -79.335219 ], [ -32.167969, -79.367701 ], [ -32.519531, -79.367701 ], [ -32.519531, -79.400085 ], [ -33.046875, -79.400085 ], [ -33.046875, -79.432371 ], [ -33.398438, -79.432371 ], [ -33.398438, -79.464560 ], [ -35.683594, -79.464560 ], [ -35.683594, -79.269962 ], [ -35.859375, -79.269962 ], [ -35.859375, -79.004962 ], [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.798757 ], [ -45.703125, -81.798757 ], [ -45.703125, -81.823794 ], [ -45.175781, -81.823794 ], [ -45.175781, -81.848756 ], [ -44.824219, -81.848756 ], [ -44.824219, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -81.947846 ], [ -43.945312, -81.947846 ], [ -43.945312, -81.972431 ], [ -43.769531, -81.972431 ], [ -43.769531, -81.996942 ], [ -43.593750, -81.996942 ], [ -43.593750, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.045740 ], [ -43.066406, -82.045740 ], [ -43.066406, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -82.021378 ], [ -42.714844, -82.021378 ], [ -42.714844, -81.923186 ], [ -42.539062, -81.923186 ], [ -42.539062, -81.823794 ], [ -42.363281, -81.823794 ], [ -42.363281, -81.723188 ], [ -42.187500, -81.723188 ], [ -42.187500, -81.646927 ], [ -42.011719, -81.646927 ], [ -42.011719, -81.595699 ], [ -41.835938, -81.595699 ], [ -41.835938, -81.569968 ], [ -41.660156, -81.569968 ], [ -41.660156, -81.544159 ], [ -41.484375, -81.544159 ], [ -41.484375, -81.492306 ], [ -41.308594, -81.492306 ], [ -41.308594, -81.466261 ], [ -41.132812, -81.466261 ], [ -41.132812, -81.440137 ], [ -40.957031, -81.440137 ], [ -40.957031, -81.387650 ], [ -40.781250, -81.387650 ], [ -40.781250, -81.361287 ], [ -39.375000, -81.361287 ], [ -39.375000, -81.334844 ], [ -38.144531, -81.334844 ], [ -38.144531, -81.308321 ], [ -37.792969, -81.308321 ], [ -37.792969, -81.281717 ], [ -37.617188, -81.281717 ], [ -37.617188, -81.255032 ], [ -37.265625, -81.255032 ], [ -37.265625, -81.228267 ], [ -37.089844, -81.228267 ], [ -37.089844, -81.201420 ], [ -36.738281, -81.201420 ], [ -36.738281, -81.174491 ], [ -36.562500, -81.174491 ], [ -36.562500, -81.147481 ], [ -36.210938, -81.147481 ], [ -36.210938, -81.120388 ], [ -36.035156, -81.120388 ], [ -36.035156, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -81.065957 ], [ -35.507812, -81.065957 ], [ -35.507812, -81.038617 ], [ -35.332031, -81.038617 ], [ -35.332031, -81.011194 ], [ -35.156250, -81.011194 ], [ -35.156250, -80.983688 ], [ -34.980469, -80.983688 ], [ -34.980469, -80.956099 ], [ -34.628906, -80.956099 ], [ -34.628906, -80.928426 ], [ -34.453125, -80.928426 ], [ -34.453125, -80.900669 ], [ -34.101562, -80.900669 ], [ -34.101562, -80.872827 ], [ -33.750000, -80.872827 ], [ -33.750000, -80.844901 ], [ -33.222656, -80.844901 ], [ -33.222656, -80.816891 ], [ -32.871094, -80.816891 ], [ -32.871094, -80.788795 ], [ -32.519531, -80.788795 ], [ -32.519531, -80.760615 ], [ -31.992188, -80.760615 ], [ -31.992188, -80.732349 ], [ -31.640625, -80.732349 ], [ -31.640625, -80.703997 ], [ -31.289062, -80.703997 ], [ -31.289062, -80.675559 ], [ -30.937500, -80.675559 ], [ -30.937500, -80.647035 ], [ -30.585938, -80.647035 ], [ -30.585938, -80.618424 ], [ -30.234375, -80.618424 ], [ -30.234375, -80.589727 ], [ -29.882812, -80.589727 ], [ -29.882812, -80.560943 ], [ -29.707031, -80.560943 ], [ -29.707031, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.503112 ], [ -29.355469, -80.503112 ], [ -29.355469, -80.474065 ], [ -29.179688, -80.474065 ], [ -29.179688, -80.444931 ], [ -29.003906, -80.444931 ], [ -29.003906, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.386396 ], [ -28.652344, -80.386396 ], [ -28.652344, -80.356995 ], [ -28.476562, -80.356995 ], [ -28.476562, -80.297927 ], [ -28.652344, -80.297927 ], [ -28.652344, -80.208652 ], [ -28.828125, -80.208652 ] ] ], [ [ [ -43.593750, -79.038437 ], [ -43.417969, -79.038437 ], [ -43.417969, -80.058050 ], [ -43.593750, -80.058050 ], [ -43.593750, -80.088352 ], [ -43.769531, -80.088352 ], [ -43.769531, -80.148684 ], [ -43.945312, -80.148684 ], [ -43.945312, -80.178713 ], [ -44.121094, -80.178713 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.327506 ], [ -44.824219, -80.327506 ], [ -44.824219, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.386396 ], [ -45.175781, -80.386396 ], [ -45.175781, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.444931 ], [ -45.527344, -80.444931 ], [ -45.527344, -80.474065 ], [ -45.703125, -80.474065 ], [ -45.703125, -80.503112 ], [ -45.878906, -80.503112 ], [ -45.878906, -79.004962 ], [ -43.593750, -79.004962 ], [ -43.593750, -79.038437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.798757 ], [ -45.703125, -81.798757 ], [ -45.703125, -81.823794 ], [ -45.175781, -81.823794 ], [ -45.175781, -81.848756 ], [ -44.824219, -81.848756 ], [ -44.824219, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -81.947846 ], [ -43.945312, -81.947846 ], [ -43.945312, -81.972431 ], [ -43.769531, -81.972431 ], [ -43.769531, -81.996942 ], [ -43.593750, -81.996942 ], [ -43.593750, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.045740 ], [ -43.066406, -82.045740 ], [ -43.066406, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -82.021378 ], [ -42.714844, -82.021378 ], [ -42.714844, -81.923186 ], [ -42.539062, -81.923186 ], [ -42.539062, -81.823794 ], [ -42.363281, -81.823794 ], [ -42.363281, -81.723188 ], [ -42.187500, -81.723188 ], [ -42.187500, -81.646927 ], [ -42.011719, -81.646927 ], [ -42.011719, -81.595699 ], [ -41.835938, -81.595699 ], [ -41.835938, -81.569968 ], [ -41.660156, -81.569968 ], [ -41.660156, -81.544159 ], [ -41.484375, -81.544159 ], [ -41.484375, -81.492306 ], [ -41.308594, -81.492306 ], [ -41.308594, -81.466261 ], [ -41.132812, -81.466261 ], [ -41.132812, -81.440137 ], [ -40.957031, -81.440137 ], [ -40.957031, -81.387650 ], [ -40.781250, -81.387650 ], [ -40.781250, -81.361287 ], [ -39.375000, -81.361287 ], [ -39.375000, -81.334844 ], [ -38.144531, -81.334844 ], [ -38.144531, -81.308321 ], [ -37.792969, -81.308321 ], [ -37.792969, -81.281717 ], [ -37.617188, -81.281717 ], [ -37.617188, -81.255032 ], [ -37.265625, -81.255032 ], [ -37.265625, -81.228267 ], [ -37.089844, -81.228267 ], [ -37.089844, -81.201420 ], [ -36.738281, -81.201420 ], [ -36.738281, -81.174491 ], [ -36.562500, -81.174491 ], [ -36.562500, -81.147481 ], [ -36.210938, -81.147481 ], [ -36.210938, -81.120388 ], [ -36.035156, -81.120388 ], [ -36.035156, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -81.065957 ], [ -35.507812, -81.065957 ], [ -35.507812, -81.038617 ], [ -35.332031, -81.038617 ], [ -35.332031, -81.011194 ], [ -35.156250, -81.011194 ], [ -35.156250, -80.983688 ], [ -34.980469, -80.983688 ], [ -34.980469, -80.956099 ], [ -34.628906, -80.956099 ], [ -34.628906, -80.928426 ], [ -34.453125, -80.928426 ], [ -34.453125, -80.900669 ], [ -34.101562, -80.900669 ], [ -34.101562, -80.872827 ], [ -33.750000, -80.872827 ], [ -33.750000, -80.844901 ], [ -33.222656, -80.844901 ], [ -33.222656, -80.816891 ], [ -32.871094, -80.816891 ], [ -32.871094, -80.788795 ], [ -32.519531, -80.788795 ], [ -32.519531, -80.760615 ], [ -31.992188, -80.760615 ], [ -31.992188, -80.732349 ], [ -31.640625, -80.732349 ], [ -31.640625, -80.703997 ], [ -31.289062, -80.703997 ], [ -31.289062, -80.675559 ], [ -30.937500, -80.675559 ], [ -30.937500, -80.647035 ], [ -30.585938, -80.647035 ], [ -30.585938, -80.618424 ], [ -30.234375, -80.618424 ], [ -30.234375, -80.589727 ], [ -29.882812, -80.589727 ], [ -29.882812, -80.560943 ], [ -29.707031, -80.560943 ], [ -29.707031, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.503112 ], [ -29.355469, -80.503112 ], [ -29.355469, -80.474065 ], [ -29.179688, -80.474065 ], [ -29.179688, -80.444931 ], [ -29.003906, -80.444931 ], [ -29.003906, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.386396 ], [ -28.652344, -80.386396 ], [ -28.652344, -80.356995 ], [ -28.476562, -80.356995 ], [ -28.476562, -80.297927 ], [ -28.652344, -80.297927 ], [ -28.652344, -80.208652 ], [ -28.828125, -80.208652 ], [ -28.828125, -80.148684 ], [ -29.003906, -80.148684 ], [ -29.003906, -80.058050 ], [ -29.179688, -80.058050 ], [ -29.179688, -79.935918 ], [ -29.355469, -79.935918 ], [ -29.355469, -79.812302 ], [ -29.531250, -79.812302 ], [ -29.531250, -79.687184 ], [ -29.707031, -79.687184 ], [ -29.707031, -79.269962 ], [ -30.585938, -79.269962 ], [ -30.585938, -79.302640 ], [ -31.816406, -79.302640 ], [ -31.816406, -79.335219 ], [ -32.167969, -79.335219 ], [ -32.167969, -79.367701 ], [ -32.519531, -79.367701 ], [ -32.519531, -79.400085 ], [ -33.046875, -79.400085 ], [ -33.046875, -79.432371 ], [ -33.398438, -79.432371 ], [ -33.398438, -79.464560 ], [ -35.683594, -79.464560 ], [ -35.683594, -79.269962 ], [ -35.859375, -79.269962 ], [ -35.859375, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -43.593750, -79.004962 ], [ -43.593750, -79.038437 ], [ -43.417969, -79.038437 ], [ -43.417969, -80.058050 ], [ -43.593750, -80.058050 ], [ -43.593750, -80.088352 ], [ -43.769531, -80.088352 ], [ -43.769531, -80.148684 ], [ -43.945312, -80.148684 ], [ -43.945312, -80.178713 ], [ -44.121094, -80.178713 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.327506 ], [ -44.824219, -80.327506 ], [ -44.824219, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.386396 ], [ -45.175781, -80.386396 ], [ -45.175781, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.444931 ], [ -45.527344, -80.444931 ], [ -45.527344, -80.474065 ], [ -45.703125, -80.474065 ], [ -45.703125, -80.503112 ], [ -45.878906, -80.503112 ], [ -45.878906, -79.004962 ], [ -43.593750, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.703125, -78.025574 ], [ -45.351562, -78.025574 ], [ -45.351562, -78.061989 ], [ -45.175781, -78.061989 ], [ -45.175781, -78.098296 ], [ -45.000000, -78.098296 ], [ -45.000000, -78.170582 ], [ -44.824219, -78.170582 ], [ -44.824219, -78.242436 ], [ -44.648438, -78.242436 ], [ -44.648438, -78.278201 ], [ -44.472656, -78.278201 ], [ -44.472656, -78.349411 ], [ -44.296875, -78.349411 ], [ -44.296875, -78.420193 ], [ -44.121094, -78.420193 ], [ -44.121094, -78.490552 ], [ -43.945312, -78.490552 ], [ -43.945312, -78.595299 ], [ -43.769531, -78.595299 ], [ -43.769531, -78.801980 ], [ -43.593750, -78.801980 ], [ -43.593750, -79.004962 ], [ -43.417969, -79.004962 ], [ -43.417969, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.989049 ], [ -45.703125, -77.989049 ], [ -45.703125, -78.025574 ] ] ], [ [ [ -5.800781, -71.130988 ], [ -5.625000, -71.130988 ], [ -5.625000, -71.357067 ], [ -5.449219, -71.357067 ], [ -5.449219, -71.413177 ], [ -5.097656, -71.413177 ], [ -5.097656, -71.469124 ], [ -4.042969, -71.469124 ], [ -4.042969, -71.413177 ], [ -3.515625, -71.413177 ], [ -3.515625, -71.357067 ], [ -3.164062, -71.357067 ], [ -3.164062, -71.300793 ], [ -2.636719, -71.300793 ], [ -2.636719, -71.244356 ], [ -1.933594, -71.244356 ], [ -1.933594, -71.187754 ], [ -1.406250, -71.187754 ], [ -1.406250, -71.244356 ], [ -0.703125, -71.244356 ], [ -0.703125, -71.357067 ], [ -0.527344, -71.357067 ], [ -0.527344, -71.469124 ], [ -0.351562, -71.469124 ], [ -0.351562, -71.580532 ], [ -0.175781, -71.580532 ], [ -0.175781, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.580532 ], [ 0.175781, -71.580532 ], [ 0.175781, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.469124 ], [ 0.527344, -71.469124 ], [ 0.527344, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.357067 ], [ 0.878906, -71.357067 ], [ 0.878906, -79.335219 ], [ -29.707031, -79.335219 ], [ -29.707031, -79.269962 ], [ -30.585938, -79.269962 ], [ -30.585938, -79.302640 ], [ -31.816406, -79.302640 ], [ -31.816406, -79.335219 ], [ -35.683594, -79.335219 ], [ -35.683594, -79.204309 ], [ -35.859375, -79.204309 ], [ -35.859375, -78.313860 ], [ -35.683594, -78.313860 ], [ -35.683594, -78.242436 ], [ -35.507812, -78.242436 ], [ -35.507812, -78.170582 ], [ -35.332031, -78.170582 ], [ -35.332031, -78.134493 ], [ -35.156250, -78.134493 ], [ -35.156250, -78.098296 ], [ -34.980469, -78.098296 ], [ -34.980469, -78.061989 ], [ -34.804688, -78.061989 ], [ -34.804688, -78.025574 ], [ -34.453125, -78.025574 ], [ -34.453125, -77.989049 ], [ -34.277344, -77.989049 ], [ -34.277344, -77.952414 ], [ -34.101562, -77.952414 ], [ -34.101562, -77.915669 ], [ -33.925781, -77.915669 ], [ -33.925781, -77.878814 ], [ -33.750000, -77.878814 ], [ -33.750000, -77.841848 ], [ -33.398438, -77.841848 ], [ -33.398438, -77.804771 ], [ -33.046875, -77.804771 ], [ -33.046875, -77.767582 ], [ -32.871094, -77.767582 ], [ -32.871094, -77.730282 ], [ -32.519531, -77.730282 ], [ -32.519531, -77.692870 ], [ -32.167969, -77.692870 ], [ -32.167969, -77.655346 ], [ -31.992188, -77.655346 ], [ -31.992188, -77.617709 ], [ -31.816406, -77.617709 ], [ -31.816406, -77.579959 ], [ -31.640625, -77.579959 ], [ -31.640625, -77.504119 ], [ -31.464844, -77.504119 ], [ -31.464844, -77.466028 ], [ -31.289062, -77.466028 ], [ -31.289062, -77.427824 ], [ -31.113281, -77.427824 ], [ -31.113281, -77.389504 ], [ -30.937500, -77.389504 ], [ -30.937500, -77.351070 ], [ -30.761719, -77.351070 ], [ -30.761719, -77.312520 ], [ -30.585938, -77.312520 ], [ -30.585938, -77.273855 ], [ -30.410156, -77.273855 ], [ -30.410156, -77.235074 ], [ -30.234375, -77.235074 ], [ -30.234375, -77.196176 ], [ -30.058594, -77.196176 ], [ -30.058594, -77.157163 ], [ -29.882812, -77.157163 ], [ -29.882812, -77.118032 ], [ -29.707031, -77.118032 ], [ -29.707031, -77.039418 ], [ -29.531250, -77.039418 ], [ -29.531250, -76.960334 ], [ -29.355469, -76.960334 ], [ -29.355469, -76.880775 ], [ -29.179688, -76.880775 ], [ -29.179688, -76.800739 ], [ -29.003906, -76.800739 ], [ -29.003906, -76.720223 ], [ -28.828125, -76.720223 ], [ -28.828125, -76.679785 ], [ -28.652344, -76.679785 ], [ -28.652344, -76.639226 ], [ -28.300781, -76.639226 ], [ -28.300781, -76.598545 ], [ -27.949219, -76.598545 ], [ -27.949219, -76.557743 ], [ -27.597656, -76.557743 ], [ -27.597656, -76.516819 ], [ -27.246094, -76.516819 ], [ -27.246094, -76.475773 ], [ -26.894531, -76.475773 ], [ -26.894531, -76.434604 ], [ -26.542969, -76.434604 ], [ -26.542969, -76.393312 ], [ -26.191406, -76.393312 ], [ -26.191406, -76.351896 ], [ -25.839844, -76.351896 ], [ -25.839844, -76.310358 ], [ -25.488281, -76.310358 ], [ -25.488281, -76.268695 ], [ -24.609375, -76.268695 ], [ -24.609375, -76.226907 ], [ -23.554688, -76.226907 ], [ -23.554688, -76.184995 ], [ -23.027344, -76.184995 ], [ -23.027344, -76.142958 ], [ -22.675781, -76.142958 ], [ -22.675781, -76.100796 ], [ -22.324219, -76.100796 ], [ -22.324219, -76.058508 ], [ -21.972656, -76.058508 ], [ -21.972656, -76.016094 ], [ -21.796875, -76.016094 ], [ -21.796875, -75.973553 ], [ -21.621094, -75.973553 ], [ -21.621094, -75.930885 ], [ -21.269531, -75.930885 ], [ -21.269531, -75.888091 ], [ -21.093750, -75.888091 ], [ -21.093750, -75.845169 ], [ -20.742188, -75.845169 ], [ -20.742188, -75.802118 ], [ -20.566406, -75.802118 ], [ -20.566406, -75.758940 ], [ -20.390625, -75.758940 ], [ -20.390625, -75.715633 ], [ -20.039062, -75.715633 ], [ -20.039062, -75.672197 ], [ -19.863281, -75.672197 ], [ -19.863281, -75.628632 ], [ -19.687500, -75.628632 ], [ -19.687500, -75.584937 ], [ -19.335938, -75.584937 ], [ -19.335938, -75.541113 ], [ -19.160156, -75.541113 ], [ -19.160156, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.453071 ], [ -18.808594, -75.453071 ], [ -18.808594, -75.408854 ], [ -18.632812, -75.408854 ], [ -18.632812, -75.364506 ], [ -18.457031, -75.364506 ], [ -18.457031, -75.320025 ], [ -18.105469, -75.320025 ], [ -18.105469, -75.275413 ], [ -17.929688, -75.275413 ], [ -17.929688, -75.230667 ], [ -17.753906, -75.230667 ], [ -17.753906, -75.185789 ], [ -17.578125, -75.185789 ], [ -17.578125, -75.140778 ], [ -17.402344, -75.140778 ], [ -17.402344, -75.050354 ], [ -17.226562, -75.050354 ], [ -17.226562, -74.959392 ], [ -17.050781, -74.959392 ], [ -17.050781, -74.913708 ], [ -16.875000, -74.913708 ], [ -16.875000, -74.821934 ], [ -16.699219, -74.821934 ], [ -16.699219, -74.775843 ], [ -16.523438, -74.775843 ], [ -16.523438, -74.729615 ], [ -16.347656, -74.729615 ], [ -16.347656, -74.683250 ], [ -16.171875, -74.683250 ], [ -16.171875, -74.636748 ], [ -15.996094, -74.636748 ], [ -15.996094, -74.590108 ], [ -15.820312, -74.590108 ], [ -15.820312, -74.543330 ], [ -15.644531, -74.543330 ], [ -15.644531, -74.307353 ], [ -15.468750, -74.307353 ], [ -15.468750, -74.116047 ], [ -15.644531, -74.116047 ], [ -15.644531, -74.067866 ], [ -15.820312, -74.067866 ], [ -15.820312, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.971078 ], [ -16.347656, -73.971078 ], [ -16.347656, -73.922469 ], [ -16.523438, -73.922469 ], [ -16.523438, -73.775780 ], [ -16.347656, -73.775780 ], [ -16.347656, -73.578167 ], [ -16.171875, -73.578167 ], [ -16.171875, -73.478485 ], [ -15.996094, -73.478485 ], [ -15.996094, -73.378215 ], [ -15.820312, -73.378215 ], [ -15.820312, -73.277353 ], [ -15.644531, -73.277353 ], [ -15.644531, -73.175897 ], [ -15.468750, -73.175897 ], [ -15.468750, -73.124945 ], [ -15.117188, -73.124945 ], [ -15.117188, -73.073844 ], [ -14.765625, -73.073844 ], [ -14.765625, -73.022592 ], [ -14.414062, -73.022592 ], [ -14.414062, -72.971189 ], [ -14.238281, -72.971189 ], [ -14.238281, -72.919635 ], [ -14.062500, -72.919635 ], [ -14.062500, -72.867930 ], [ -13.710938, -72.867930 ], [ -13.710938, -72.816074 ], [ -13.535156, -72.816074 ], [ -13.535156, -72.764065 ], [ -13.359375, -72.764065 ], [ -13.359375, -72.711903 ], [ -13.183594, -72.711903 ], [ -13.183594, -72.659588 ], [ -13.007812, -72.659588 ], [ -13.007812, -72.607120 ], [ -12.832031, -72.607120 ], [ -12.832031, -72.554498 ], [ -12.656250, -72.554498 ], [ -12.656250, -72.501722 ], [ -12.480469, -72.501722 ], [ -12.480469, -72.448792 ], [ -12.304688, -72.448792 ], [ -12.304688, -72.395706 ], [ -12.128906, -72.395706 ], [ -12.128906, -72.289067 ], [ -11.953125, -72.289067 ], [ -11.953125, -72.235514 ], [ -11.777344, -72.235514 ], [ -11.777344, -72.181804 ], [ -11.601562, -72.181804 ], [ -11.601562, -72.073911 ], [ -11.425781, -72.073911 ], [ -11.425781, -71.910888 ], [ -11.250000, -71.910888 ], [ -11.250000, -71.691293 ], [ -11.074219, -71.691293 ], [ -11.074219, -71.524909 ], [ -10.898438, -71.524909 ], [ -10.898438, -71.469124 ], [ -10.722656, -71.469124 ], [ -10.722656, -71.357067 ], [ -10.546875, -71.357067 ], [ -10.546875, -71.300793 ], [ -10.371094, -71.300793 ], [ -10.371094, -71.244356 ], [ -9.843750, -71.244356 ], [ -9.843750, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.357067 ], [ -8.964844, -71.357067 ], [ -8.964844, -71.469124 ], [ -8.789062, -71.469124 ], [ -8.789062, -71.580532 ], [ -8.613281, -71.580532 ], [ -8.613281, -71.635993 ], [ -8.085938, -71.635993 ], [ -8.085938, -71.691293 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.244356 ], [ -7.207031, -71.244356 ], [ -7.207031, -71.130988 ], [ -7.031250, -71.130988 ], [ -7.031250, -71.016960 ], [ -6.855469, -71.016960 ], [ -6.855469, -70.959697 ], [ -6.503906, -70.959697 ], [ -6.503906, -71.016960 ], [ -5.800781, -71.016960 ], [ -5.800781, -71.130988 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.703125, -77.989049 ], [ -45.703125, -78.025574 ], [ -45.351562, -78.025574 ], [ -45.351562, -78.061989 ], [ -45.175781, -78.061989 ], [ -45.175781, -78.098296 ], [ -45.000000, -78.098296 ], [ -45.000000, -78.170582 ], [ -44.824219, -78.170582 ], [ -44.824219, -78.242436 ], [ -44.648438, -78.242436 ], [ -44.648438, -78.278201 ], [ -44.472656, -78.278201 ], [ -44.472656, -78.349411 ], [ -44.296875, -78.349411 ], [ -44.296875, -78.420193 ], [ -44.121094, -78.420193 ], [ -44.121094, -78.490552 ], [ -43.945312, -78.490552 ], [ -43.945312, -78.595299 ], [ -43.769531, -78.595299 ], [ -43.769531, -78.801980 ], [ -43.593750, -78.801980 ], [ -43.593750, -79.004962 ], [ -43.417969, -79.004962 ], [ -43.417969, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.989049 ], [ -45.703125, -77.989049 ] ] ], [ [ [ -6.503906, -70.959697 ], [ -6.503906, -71.016960 ], [ -5.800781, -71.016960 ], [ -5.800781, -71.130988 ], [ -5.625000, -71.130988 ], [ -5.625000, -71.357067 ], [ -5.449219, -71.357067 ], [ -5.449219, -71.413177 ], [ -5.097656, -71.413177 ], [ -5.097656, -71.469124 ], [ -4.042969, -71.469124 ], [ -4.042969, -71.413177 ], [ -3.515625, -71.413177 ], [ -3.515625, -71.357067 ], [ -3.164062, -71.357067 ], [ -3.164062, -71.300793 ], [ -2.636719, -71.300793 ], [ -2.636719, -71.244356 ], [ -1.933594, -71.244356 ], [ -1.933594, -71.187754 ], [ -1.406250, -71.187754 ], [ -1.406250, -71.244356 ], [ -0.703125, -71.244356 ], [ -0.703125, -71.357067 ], [ -0.527344, -71.357067 ], [ -0.527344, -71.469124 ], [ -0.351562, -71.469124 ], [ -0.351562, -71.580532 ], [ -0.175781, -71.580532 ], [ -0.175781, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.580532 ], [ 0.175781, -71.580532 ], [ 0.175781, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.469124 ], [ 0.527344, -71.469124 ], [ 0.527344, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.357067 ], [ 0.878906, -71.357067 ], [ 0.878906, -79.335219 ], [ -29.707031, -79.335219 ], [ -29.707031, -79.269962 ], [ -30.585938, -79.269962 ], [ -30.585938, -79.302640 ], [ -31.816406, -79.302640 ], [ -31.816406, -79.335219 ], [ -35.683594, -79.335219 ], [ -35.683594, -79.204309 ], [ -35.859375, -79.204309 ], [ -35.859375, -78.313860 ], [ -35.683594, -78.313860 ], [ -35.683594, -78.242436 ], [ -35.507812, -78.242436 ], [ -35.507812, -78.170582 ], [ -35.332031, -78.170582 ], [ -35.332031, -78.134493 ], [ -35.156250, -78.134493 ], [ -35.156250, -78.098296 ], [ -34.980469, -78.098296 ], [ -34.980469, -78.061989 ], [ -34.804688, -78.061989 ], [ -34.804688, -78.025574 ], [ -34.453125, -78.025574 ], [ -34.453125, -77.989049 ], [ -34.277344, -77.989049 ], [ -34.277344, -77.952414 ], [ -34.101562, -77.952414 ], [ -34.101562, -77.915669 ], [ -33.925781, -77.915669 ], [ -33.925781, -77.878814 ], [ -33.750000, -77.878814 ], [ -33.750000, -77.841848 ], [ -33.398438, -77.841848 ], [ -33.398438, -77.804771 ], [ -33.046875, -77.804771 ], [ -33.046875, -77.767582 ], [ -32.871094, -77.767582 ], [ -32.871094, -77.730282 ], [ -32.519531, -77.730282 ], [ -32.519531, -77.692870 ], [ -32.167969, -77.692870 ], [ -32.167969, -77.655346 ], [ -31.992188, -77.655346 ], [ -31.992188, -77.617709 ], [ -31.816406, -77.617709 ], [ -31.816406, -77.579959 ], [ -31.640625, -77.579959 ], [ -31.640625, -77.504119 ], [ -31.464844, -77.504119 ], [ -31.464844, -77.466028 ], [ -31.289062, -77.466028 ], [ -31.289062, -77.427824 ], [ -31.113281, -77.427824 ], [ -31.113281, -77.389504 ], [ -30.937500, -77.389504 ], [ -30.937500, -77.351070 ], [ -30.761719, -77.351070 ], [ -30.761719, -77.312520 ], [ -30.585938, -77.312520 ], [ -30.585938, -77.273855 ], [ -30.410156, -77.273855 ], [ -30.410156, -77.235074 ], [ -30.234375, -77.235074 ], [ -30.234375, -77.196176 ], [ -30.058594, -77.196176 ], [ -30.058594, -77.157163 ], [ -29.882812, -77.157163 ], [ -29.882812, -77.118032 ], [ -29.707031, -77.118032 ], [ -29.707031, -77.039418 ], [ -29.531250, -77.039418 ], [ -29.531250, -76.960334 ], [ -29.355469, -76.960334 ], [ -29.355469, -76.880775 ], [ -29.179688, -76.880775 ], [ -29.179688, -76.800739 ], [ -29.003906, -76.800739 ], [ -29.003906, -76.720223 ], [ -28.828125, -76.720223 ], [ -28.828125, -76.679785 ], [ -28.652344, -76.679785 ], [ -28.652344, -76.639226 ], [ -28.300781, -76.639226 ], [ -28.300781, -76.598545 ], [ -27.949219, -76.598545 ], [ -27.949219, -76.557743 ], [ -27.597656, -76.557743 ], [ -27.597656, -76.516819 ], [ -27.246094, -76.516819 ], [ -27.246094, -76.475773 ], [ -26.894531, -76.475773 ], [ -26.894531, -76.434604 ], [ -26.542969, -76.434604 ], [ -26.542969, -76.393312 ], [ -26.191406, -76.393312 ], [ -26.191406, -76.351896 ], [ -25.839844, -76.351896 ], [ -25.839844, -76.310358 ], [ -25.488281, -76.310358 ], [ -25.488281, -76.268695 ], [ -24.609375, -76.268695 ], [ -24.609375, -76.226907 ], [ -23.554688, -76.226907 ], [ -23.554688, -76.184995 ], [ -23.027344, -76.184995 ], [ -23.027344, -76.142958 ], [ -22.675781, -76.142958 ], [ -22.675781, -76.100796 ], [ -22.324219, -76.100796 ], [ -22.324219, -76.058508 ], [ -21.972656, -76.058508 ], [ -21.972656, -76.016094 ], [ -21.796875, -76.016094 ], [ -21.796875, -75.973553 ], [ -21.621094, -75.973553 ], [ -21.621094, -75.930885 ], [ -21.269531, -75.930885 ], [ -21.269531, -75.888091 ], [ -21.093750, -75.888091 ], [ -21.093750, -75.845169 ], [ -20.742188, -75.845169 ], [ -20.742188, -75.802118 ], [ -20.566406, -75.802118 ], [ -20.566406, -75.758940 ], [ -20.390625, -75.758940 ], [ -20.390625, -75.715633 ], [ -20.039062, -75.715633 ], [ -20.039062, -75.672197 ], [ -19.863281, -75.672197 ], [ -19.863281, -75.628632 ], [ -19.687500, -75.628632 ], [ -19.687500, -75.584937 ], [ -19.335938, -75.584937 ], [ -19.335938, -75.541113 ], [ -19.160156, -75.541113 ], [ -19.160156, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.453071 ], [ -18.808594, -75.453071 ], [ -18.808594, -75.408854 ], [ -18.632812, -75.408854 ], [ -18.632812, -75.364506 ], [ -18.457031, -75.364506 ], [ -18.457031, -75.320025 ], [ -18.105469, -75.320025 ], [ -18.105469, -75.275413 ], [ -17.929688, -75.275413 ], [ -17.929688, -75.230667 ], [ -17.753906, -75.230667 ], [ -17.753906, -75.185789 ], [ -17.578125, -75.185789 ], [ -17.578125, -75.140778 ], [ -17.402344, -75.140778 ], [ -17.402344, -75.050354 ], [ -17.226562, -75.050354 ], [ -17.226562, -74.959392 ], [ -17.050781, -74.959392 ], [ -17.050781, -74.913708 ], [ -16.875000, -74.913708 ], [ -16.875000, -74.821934 ], [ -16.699219, -74.821934 ], [ -16.699219, -74.775843 ], [ -16.523438, -74.775843 ], [ -16.523438, -74.729615 ], [ -16.347656, -74.729615 ], [ -16.347656, -74.683250 ], [ -16.171875, -74.683250 ], [ -16.171875, -74.636748 ], [ -15.996094, -74.636748 ], [ -15.996094, -74.590108 ], [ -15.820312, -74.590108 ], [ -15.820312, -74.543330 ], [ -15.644531, -74.543330 ], [ -15.644531, -74.307353 ], [ -15.468750, -74.307353 ], [ -15.468750, -74.116047 ], [ -15.644531, -74.116047 ], [ -15.644531, -74.067866 ], [ -15.820312, -74.067866 ], [ -15.820312, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.971078 ], [ -16.347656, -73.971078 ], [ -16.347656, -73.922469 ], [ -16.523438, -73.922469 ], [ -16.523438, -73.775780 ], [ -16.347656, -73.775780 ], [ -16.347656, -73.578167 ], [ -16.171875, -73.578167 ], [ -16.171875, -73.478485 ], [ -15.996094, -73.478485 ], [ -15.996094, -73.378215 ], [ -15.820312, -73.378215 ], [ -15.820312, -73.277353 ], [ -15.644531, -73.277353 ], [ -15.644531, -73.175897 ], [ -15.468750, -73.175897 ], [ -15.468750, -73.124945 ], [ -15.117188, -73.124945 ], [ -15.117188, -73.073844 ], [ -14.765625, -73.073844 ], [ -14.765625, -73.022592 ], [ -14.414062, -73.022592 ], [ -14.414062, -72.971189 ], [ -14.238281, -72.971189 ], [ -14.238281, -72.919635 ], [ -14.062500, -72.919635 ], [ -14.062500, -72.867930 ], [ -13.710938, -72.867930 ], [ -13.710938, -72.816074 ], [ -13.535156, -72.816074 ], [ -13.535156, -72.764065 ], [ -13.359375, -72.764065 ], [ -13.359375, -72.711903 ], [ -13.183594, -72.711903 ], [ -13.183594, -72.659588 ], [ -13.007812, -72.659588 ], [ -13.007812, -72.607120 ], [ -12.832031, -72.607120 ], [ -12.832031, -72.554498 ], [ -12.656250, -72.554498 ], [ -12.656250, -72.501722 ], [ -12.480469, -72.501722 ], [ -12.480469, -72.448792 ], [ -12.304688, -72.448792 ], [ -12.304688, -72.395706 ], [ -12.128906, -72.395706 ], [ -12.128906, -72.289067 ], [ -11.953125, -72.289067 ], [ -11.953125, -72.235514 ], [ -11.777344, -72.235514 ], [ -11.777344, -72.181804 ], [ -11.601562, -72.181804 ], [ -11.601562, -72.073911 ], [ -11.425781, -72.073911 ], [ -11.425781, -71.910888 ], [ -11.250000, -71.910888 ], [ -11.250000, -71.691293 ], [ -11.074219, -71.691293 ], [ -11.074219, -71.524909 ], [ -10.898438, -71.524909 ], [ -10.898438, -71.469124 ], [ -10.722656, -71.469124 ], [ -10.722656, -71.357067 ], [ -10.546875, -71.357067 ], [ -10.546875, -71.300793 ], [ -10.371094, -71.300793 ], [ -10.371094, -71.244356 ], [ -9.843750, -71.244356 ], [ -9.843750, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.357067 ], [ -8.964844, -71.357067 ], [ -8.964844, -71.469124 ], [ -8.789062, -71.469124 ], [ -8.789062, -71.580532 ], [ -8.613281, -71.580532 ], [ -8.613281, -71.635993 ], [ -8.085938, -71.635993 ], [ -8.085938, -71.691293 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.244356 ], [ -7.207031, -71.244356 ], [ -7.207031, -71.130988 ], [ -7.031250, -71.130988 ], [ -7.031250, -71.016960 ], [ -6.855469, -71.016960 ], [ -6.855469, -70.959697 ], [ -6.503906, -70.959697 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -42.539062, -2.811371 ], [ -41.835938, -2.811371 ], [ -41.835938, -2.986927 ], [ -40.605469, -2.986927 ], [ -40.605469, -2.811371 ], [ -39.902344, -2.811371 ], [ -39.902344, -2.986927 ], [ -39.550781, -2.986927 ], [ -39.550781, -3.162456 ], [ -39.375000, -3.162456 ], [ -39.375000, -3.337954 ], [ -39.023438, -3.337954 ], [ -39.023438, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -3.688855 ], [ -38.496094, -3.688855 ], [ -38.496094, -3.864255 ], [ -38.320312, -3.864255 ], [ -38.320312, -4.039618 ], [ -38.144531, -4.039618 ], [ -38.144531, -4.214943 ], [ -37.792969, -4.214943 ], [ -37.792969, -4.390229 ], [ -37.617188, -4.390229 ], [ -37.617188, -4.565474 ], [ -37.441406, -4.565474 ], [ -37.441406, -4.740675 ], [ -37.089844, -4.740675 ], [ -37.089844, -4.915833 ], [ -36.738281, -4.915833 ], [ -36.738281, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.683594, -5.266008 ], [ -35.332031, -5.266008 ], [ -35.332031, -5.441022 ], [ -35.156250, -5.441022 ], [ -35.156250, -6.140555 ], [ -34.980469, -6.140555 ], [ -34.980469, -7.013668 ], [ -34.804688, -7.013668 ], [ -34.804688, -7.885147 ], [ -34.980469, -7.885147 ], [ -34.980469, -8.581021 ], [ -35.156250, -8.581021 ], [ -35.156250, -9.102097 ], [ -35.332031, -9.102097 ], [ -35.332031, -9.275622 ], [ -35.507812, -9.275622 ], [ -35.507812, -9.622414 ], [ -35.683594, -9.622414 ], [ -35.683594, -9.795678 ], [ -35.859375, -9.795678 ], [ -35.859375, -9.968851 ], [ -36.035156, -9.968851 ], [ -36.035156, -10.141932 ], [ -36.210938, -10.141932 ], [ -36.210938, -10.314919 ], [ -36.386719, -10.314919 ], [ -36.386719, -10.487812 ], [ -36.562500, -10.487812 ], [ -36.562500, -10.660608 ], [ -36.738281, -10.660608 ], [ -36.738281, -10.833306 ], [ -36.914062, -10.833306 ], [ -36.914062, -11.005904 ], [ -37.089844, -11.005904 ], [ -37.089844, -11.350797 ], [ -37.265625, -11.350797 ], [ -37.265625, -11.695273 ], [ -37.441406, -11.695273 ], [ -37.441406, -12.039321 ], [ -37.617188, -12.039321 ], [ -37.617188, -12.382928 ], [ -37.792969, -12.382928 ], [ -37.792969, -12.554564 ], [ -37.968750, -12.554564 ], [ -37.968750, -12.726084 ], [ -38.144531, -12.726084 ], [ -38.144531, -12.897489 ], [ -38.320312, -12.897489 ], [ -38.320312, -13.068777 ], [ -38.671875, -13.068777 ], [ -38.671875, -13.239945 ], [ -38.847656, -13.239945 ], [ -38.847656, -13.581921 ], [ -39.023438, -13.581921 ], [ -39.023438, -14.774883 ], [ -38.847656, -14.774883 ], [ -38.847656, -16.130262 ], [ -39.023438, -16.130262 ], [ -39.023438, -16.804541 ], [ -39.199219, -16.804541 ], [ -39.199219, -17.978733 ], [ -39.375000, -17.978733 ], [ -39.375000, -18.312811 ], [ -39.550781, -18.312811 ], [ -39.550781, -18.979026 ], [ -39.726562, -18.979026 ], [ -39.726562, -19.808054 ], [ -39.902344, -19.808054 ], [ -39.902344, -19.973349 ], [ -40.078125, -19.973349 ], [ -40.078125, -20.303418 ], [ -40.253906, -20.303418 ], [ -40.253906, -20.468189 ], [ -40.429688, -20.468189 ], [ -40.429688, -20.632784 ], [ -40.605469, -20.632784 ], [ -40.605469, -20.961440 ], [ -40.781250, -20.961440 ], [ -40.781250, -21.453069 ], [ -40.957031, -21.453069 ], [ -40.957031, -22.105999 ], [ -41.308594, -22.105999 ], [ -41.308594, -22.268764 ], [ -41.660156, -22.268764 ], [ -41.660156, -22.431340 ], [ -41.835938, -22.431340 ], [ -41.835938, -22.755921 ], [ -42.011719, -22.755921 ], [ -42.011719, -22.917923 ], [ -43.242188, -22.917923 ], [ -43.242188, -23.079732 ], [ -43.769531, -23.079732 ], [ -43.769531, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.402765 ], [ -44.648438, -23.402765 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -45.878906, -23.885838 ], [ -45.878906, -1.230374 ], [ -45.703125, -1.230374 ], [ -45.703125, -1.406109 ], [ -45.175781, -1.406109 ], [ -45.175781, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -43.945312, -2.635789 ], [ -43.945312, -2.460181 ], [ -43.242188, -2.460181 ], [ -43.242188, -2.635789 ], [ -42.539062, -2.635789 ], [ -42.539062, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.703125, -1.230374 ], [ -45.703125, -1.406109 ], [ -45.175781, -1.406109 ], [ -45.175781, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -43.945312, -2.635789 ], [ -43.945312, -2.460181 ], [ -43.242188, -2.460181 ], [ -43.242188, -2.635789 ], [ -42.539062, -2.635789 ], [ -42.539062, -2.811371 ], [ -41.835938, -2.811371 ], [ -41.835938, -2.986927 ], [ -40.605469, -2.986927 ], [ -40.605469, -2.811371 ], [ -39.902344, -2.811371 ], [ -39.902344, -2.986927 ], [ -39.550781, -2.986927 ], [ -39.550781, -3.162456 ], [ -39.375000, -3.162456 ], [ -39.375000, -3.337954 ], [ -39.023438, -3.337954 ], [ -39.023438, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -3.688855 ], [ -38.496094, -3.688855 ], [ -38.496094, -3.864255 ], [ -38.320312, -3.864255 ], [ -38.320312, -4.039618 ], [ -38.144531, -4.039618 ], [ -38.144531, -4.214943 ], [ -37.792969, -4.214943 ], [ -37.792969, -4.390229 ], [ -37.617188, -4.390229 ], [ -37.617188, -4.565474 ], [ -37.441406, -4.565474 ], [ -37.441406, -4.740675 ], [ -37.089844, -4.740675 ], [ -37.089844, -4.915833 ], [ -36.738281, -4.915833 ], [ -36.738281, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.683594, -5.266008 ], [ -35.332031, -5.266008 ], [ -35.332031, -5.441022 ], [ -35.156250, -5.441022 ], [ -35.156250, -6.140555 ], [ -34.980469, -6.140555 ], [ -34.980469, -7.013668 ], [ -34.804688, -7.013668 ], [ -34.804688, -7.885147 ], [ -34.980469, -7.885147 ], [ -34.980469, -8.581021 ], [ -35.156250, -8.581021 ], [ -35.156250, -9.102097 ], [ -35.332031, -9.102097 ], [ -35.332031, -9.275622 ], [ -35.507812, -9.275622 ], [ -35.507812, -9.622414 ], [ -35.683594, -9.622414 ], [ -35.683594, -9.795678 ], [ -35.859375, -9.795678 ], [ -35.859375, -9.968851 ], [ -36.035156, -9.968851 ], [ -36.035156, -10.141932 ], [ -36.210938, -10.141932 ], [ -36.210938, -10.314919 ], [ -36.386719, -10.314919 ], [ -36.386719, -10.487812 ], [ -36.562500, -10.487812 ], [ -36.562500, -10.660608 ], [ -36.738281, -10.660608 ], [ -36.738281, -10.833306 ], [ -36.914062, -10.833306 ], [ -36.914062, -11.005904 ], [ -37.089844, -11.005904 ], [ -37.089844, -11.350797 ], [ -37.265625, -11.350797 ], [ -37.265625, -11.695273 ], [ -37.441406, -11.695273 ], [ -37.441406, -12.039321 ], [ -37.617188, -12.039321 ], [ -37.617188, -12.382928 ], [ -37.792969, -12.382928 ], [ -37.792969, -12.554564 ], [ -37.968750, -12.554564 ], [ -37.968750, -12.726084 ], [ -38.144531, -12.726084 ], [ -38.144531, -12.897489 ], [ -38.320312, -12.897489 ], [ -38.320312, -13.068777 ], [ -38.671875, -13.068777 ], [ -38.671875, -13.239945 ], [ -38.847656, -13.239945 ], [ -38.847656, -13.581921 ], [ -39.023438, -13.581921 ], [ -39.023438, -14.774883 ], [ -38.847656, -14.774883 ], [ -38.847656, -16.130262 ], [ -39.023438, -16.130262 ], [ -39.023438, -16.804541 ], [ -39.199219, -16.804541 ], [ -39.199219, -17.978733 ], [ -39.375000, -17.978733 ], [ -39.375000, -18.312811 ], [ -39.550781, -18.312811 ], [ -39.550781, -18.979026 ], [ -39.726562, -18.979026 ], [ -39.726562, -19.808054 ], [ -39.902344, -19.808054 ], [ -39.902344, -19.973349 ], [ -40.078125, -19.973349 ], [ -40.078125, -20.303418 ], [ -40.253906, -20.303418 ], [ -40.253906, -20.468189 ], [ -40.429688, -20.468189 ], [ -40.429688, -20.632784 ], [ -40.605469, -20.632784 ], [ -40.605469, -20.961440 ], [ -40.781250, -20.961440 ], [ -40.781250, -21.453069 ], [ -40.957031, -21.453069 ], [ -40.957031, -22.105999 ], [ -41.308594, -22.105999 ], [ -41.308594, -22.268764 ], [ -41.660156, -22.268764 ], [ -41.660156, -22.431340 ], [ -41.835938, -22.431340 ], [ -41.835938, -22.755921 ], [ -42.011719, -22.755921 ], [ -42.011719, -22.917923 ], [ -43.242188, -22.917923 ], [ -43.242188, -23.079732 ], [ -43.769531, -23.079732 ], [ -43.769531, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.402765 ], [ -44.648438, -23.402765 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -45.878906, -23.885838 ], [ -45.878906, -1.230374 ], [ -45.703125, -1.230374 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.304688, 23.402765 ], [ -12.304688, 23.241346 ], [ -12.832031, 23.241346 ], [ -12.832031, 23.079732 ], [ -13.007812, 23.079732 ], [ -13.007812, 22.755921 ], [ -13.183594, 22.755921 ], [ -13.183594, 21.943046 ], [ -13.007812, 21.943046 ], [ -13.007812, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.125498 ], [ -17.050781, 21.125498 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.453069 ], [ -14.765625, 21.616579 ], [ -14.589844, 21.616579 ], [ -14.589844, 21.779905 ], [ -14.414062, 21.779905 ], [ -14.414062, 22.105999 ], [ -14.238281, 22.105999 ], [ -14.238281, 22.593726 ], [ -14.062500, 22.593726 ], [ -14.062500, 23.241346 ], [ -13.886719, 23.241346 ], [ -13.886719, 23.725012 ], [ -13.710938, 23.725012 ], [ -13.710938, 23.885838 ], [ -13.535156, 23.885838 ], [ -13.535156, 24.046464 ], [ -13.359375, 24.046464 ], [ -13.359375, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.367114 ], [ -12.832031, 24.367114 ], [ -12.832031, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 24.686952 ], [ -12.480469, 24.686952 ], [ -12.480469, 25.005973 ], [ -12.304688, 25.005973 ], [ -12.304688, 25.324167 ], [ -12.128906, 25.324167 ], [ -12.128906, 25.641526 ], [ -11.953125, 25.641526 ], [ -11.953125, 23.402765 ], [ -12.304688, 23.402765 ] ] ], [ [ [ -11.601562, 26.273714 ], [ -11.601562, 26.588527 ], [ -11.425781, 26.588527 ], [ -11.425781, 26.902477 ], [ -10.898438, 26.902477 ], [ -10.898438, 27.059126 ], [ -10.546875, 27.059126 ], [ -10.546875, 26.902477 ], [ -9.492188, 26.902477 ], [ -9.492188, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 27.683528 ], [ -8.613281, 27.683528 ], [ -8.613281, 25.958045 ], [ -11.777344, 25.958045 ], [ -11.777344, 26.273714 ], [ -11.601562, 26.273714 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.641526 ], [ -11.953125, 23.402765 ], [ -12.304688, 23.402765 ], [ -12.304688, 23.241346 ], [ -12.832031, 23.241346 ], [ -12.832031, 23.079732 ], [ -13.007812, 23.079732 ], [ -13.007812, 22.755921 ], [ -13.183594, 22.755921 ], [ -13.183594, 21.943046 ], [ -13.007812, 21.943046 ], [ -13.007812, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.125498 ], [ -17.050781, 21.125498 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.453069 ], [ -14.765625, 21.616579 ], [ -14.589844, 21.616579 ], [ -14.589844, 21.779905 ], [ -14.414062, 21.779905 ], [ -14.414062, 22.105999 ], [ -14.238281, 22.105999 ], [ -14.238281, 22.593726 ], [ -14.062500, 22.593726 ], [ -14.062500, 23.241346 ], [ -13.886719, 23.241346 ], [ -13.886719, 23.725012 ], [ -13.710938, 23.725012 ], [ -13.710938, 23.885838 ], [ -13.535156, 23.885838 ], [ -13.535156, 24.046464 ], [ -13.359375, 24.046464 ], [ -13.359375, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.367114 ], [ -12.832031, 24.367114 ], [ -12.832031, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 24.686952 ], [ -12.480469, 24.686952 ], [ -12.480469, 25.005973 ], [ -12.304688, 25.005973 ], [ -12.304688, 25.324167 ], [ -12.128906, 25.324167 ], [ -12.128906, 25.641526 ], [ -11.953125, 25.641526 ] ] ], [ [ [ -8.613281, 25.958045 ], [ -11.777344, 25.958045 ], [ -11.777344, 26.273714 ], [ -11.601562, 26.273714 ], [ -11.601562, 26.588527 ], [ -11.425781, 26.588527 ], [ -11.425781, 26.902477 ], [ -10.898438, 26.902477 ], [ -10.898438, 27.059126 ], [ -10.546875, 27.059126 ], [ -10.546875, 26.902477 ], [ -9.492188, 26.902477 ], [ -9.492188, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 27.683528 ], [ -8.613281, 27.683528 ], [ -8.613281, 25.958045 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 39.368279 ], [ -7.207031, 39.368279 ], [ -7.207031, 39.095963 ], [ -7.031250, 39.095963 ], [ -7.031250, 38.822591 ], [ -7.207031, 38.822591 ], [ -7.207031, 38.548165 ], [ -7.382812, 38.548165 ], [ -7.382812, 38.272689 ], [ -7.207031, 38.272689 ], [ -7.207031, 38.134557 ], [ -7.031250, 38.134557 ], [ -7.031250, 37.996163 ], [ -7.207031, 37.996163 ], [ -7.207031, 37.718590 ], [ -7.382812, 37.718590 ], [ -7.382812, 37.439974 ], [ -7.558594, 37.439974 ], [ -7.558594, 37.300275 ], [ -7.382812, 37.300275 ], [ -7.382812, 37.020098 ], [ -7.734375, 37.020098 ], [ -7.734375, 36.879621 ], [ -8.261719, 36.879621 ], [ -8.261719, 37.020098 ], [ -8.613281, 37.020098 ], [ -8.613281, 36.879621 ], [ -8.964844, 36.879621 ], [ -8.964844, 37.300275 ], [ -8.789062, 37.300275 ], [ -8.789062, 38.272689 ], [ -9.140625, 38.272689 ], [ -9.140625, 38.410558 ], [ -9.316406, 38.410558 ], [ -9.316406, 38.548165 ], [ -9.492188, 38.548165 ], [ -9.492188, 39.368279 ], [ -9.316406, 39.368279 ], [ -9.316406, 39.504041 ], [ -9.140625, 39.504041 ], [ -9.140625, 39.639538 ], [ -8.964844, 39.639538 ], [ -8.964844, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.376809 ], [ -8.964844, 41.376809 ], [ -8.964844, 41.640078 ], [ -6.503906, 41.640078 ], [ -6.503906, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.178873 ], [ -7.031250, 40.178873 ], [ -7.031250, 39.774769 ], [ -7.207031, 39.774769 ], [ -7.207031, 39.639538 ], [ -7.558594, 39.639538 ], [ -7.558594, 39.504041 ], [ -7.382812, 39.504041 ], [ -7.382812, 39.368279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.503906, 41.640078 ], [ -6.503906, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.178873 ], [ -7.031250, 40.178873 ], [ -7.031250, 39.774769 ], [ -7.207031, 39.774769 ], [ -7.207031, 39.639538 ], [ -7.558594, 39.639538 ], [ -7.558594, 39.504041 ], [ -7.382812, 39.504041 ], [ -7.382812, 39.368279 ], [ -7.207031, 39.368279 ], [ -7.207031, 39.095963 ], [ -7.031250, 39.095963 ], [ -7.031250, 38.822591 ], [ -7.207031, 38.822591 ], [ -7.207031, 38.548165 ], [ -7.382812, 38.548165 ], [ -7.382812, 38.272689 ], [ -7.207031, 38.272689 ], [ -7.207031, 38.134557 ], [ -7.031250, 38.134557 ], [ -7.031250, 37.996163 ], [ -7.207031, 37.996163 ], [ -7.207031, 37.718590 ], [ -7.382812, 37.718590 ], [ -7.382812, 37.439974 ], [ -7.558594, 37.439974 ], [ -7.558594, 37.300275 ], [ -7.382812, 37.300275 ], [ -7.382812, 37.020098 ], [ -7.734375, 37.020098 ], [ -7.734375, 36.879621 ], [ -8.261719, 36.879621 ], [ -8.261719, 37.020098 ], [ -8.613281, 37.020098 ], [ -8.613281, 36.879621 ], [ -8.964844, 36.879621 ], [ -8.964844, 37.300275 ], [ -8.789062, 37.300275 ], [ -8.789062, 38.272689 ], [ -9.140625, 38.272689 ], [ -9.140625, 38.410558 ], [ -9.316406, 38.410558 ], [ -9.316406, 38.548165 ], [ -9.492188, 38.548165 ], [ -9.492188, 39.368279 ], [ -9.316406, 39.368279 ], [ -9.316406, 39.504041 ], [ -9.140625, 39.504041 ], [ -9.140625, 39.639538 ], [ -8.964844, 39.639538 ], [ -8.964844, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.376809 ], [ -8.964844, 41.376809 ], [ -8.964844, 41.640078 ], [ -6.503906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.175781, 40.178873 ], [ 0.175781, 40.044438 ], [ 0.000000, 40.044438 ], [ 0.000000, 39.774769 ], [ -0.175781, 39.774769 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ 0.175781, 38.685510 ], [ 0.175781, 38.548165 ], [ 0.000000, 38.548165 ], [ 0.000000, 38.410558 ], [ -0.351562, 38.410558 ], [ -0.351562, 38.272689 ], [ -0.527344, 38.272689 ], [ -0.527344, 37.857507 ], [ -0.703125, 37.857507 ], [ -0.703125, 37.579413 ], [ -0.878906, 37.579413 ], [ -0.878906, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.300275 ], [ -1.582031, 37.300275 ], [ -1.582031, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 36.879621 ], [ -1.933594, 36.879621 ], [ -1.933594, 36.738884 ], [ -2.636719, 36.738884 ], [ -2.636719, 36.597889 ], [ -4.042969, 36.597889 ], [ -4.042969, 36.738884 ], [ -4.394531, 36.738884 ], [ -4.394531, 36.597889 ], [ -4.570312, 36.597889 ], [ -4.570312, 36.456636 ], [ -4.746094, 36.456636 ], [ -4.746094, 36.315125 ], [ -4.921875, 36.315125 ], [ -4.921875, 36.173357 ], [ -5.097656, 36.173357 ], [ -5.097656, 36.031332 ], [ -5.273438, 36.031332 ], [ -5.273438, 35.889050 ], [ -5.800781, 35.889050 ], [ -5.800781, 36.031332 ], [ -5.976562, 36.031332 ], [ -5.976562, 36.173357 ], [ -6.152344, 36.173357 ], [ -6.152344, 36.456636 ], [ -6.328125, 36.456636 ], [ -6.328125, 36.738884 ], [ -6.503906, 36.738884 ], [ -6.503906, 36.879621 ], [ -6.855469, 36.879621 ], [ -6.855469, 37.020098 ], [ -7.207031, 37.020098 ], [ -7.207031, 37.160317 ], [ -7.382812, 37.160317 ], [ -7.382812, 37.300275 ], [ -7.558594, 37.300275 ], [ -7.558594, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 37.718590 ], [ -7.207031, 37.718590 ], [ -7.207031, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 38.134557 ], [ -7.207031, 38.134557 ], [ -7.207031, 38.272689 ], [ -7.382812, 38.272689 ], [ -7.382812, 38.548165 ], [ -7.207031, 38.548165 ], [ -7.207031, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 39.095963 ], [ -7.207031, 39.095963 ], [ -7.207031, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 39.504041 ], [ -7.558594, 39.504041 ], [ -7.558594, 39.639538 ], [ -7.207031, 39.639538 ], [ -7.207031, 39.774769 ], [ -7.031250, 39.774769 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.178873 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.640078 ], [ 0.878906, 41.640078 ], [ 0.878906, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.175781, 40.178873 ], [ 0.175781, 40.044438 ], [ 0.000000, 40.044438 ], [ 0.000000, 39.774769 ], [ -0.175781, 39.774769 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ 0.175781, 38.685510 ], [ 0.175781, 38.548165 ], [ 0.000000, 38.548165 ], [ 0.000000, 38.410558 ], [ -0.351562, 38.410558 ], [ -0.351562, 38.272689 ], [ -0.527344, 38.272689 ], [ -0.527344, 37.857507 ], [ -0.703125, 37.857507 ], [ -0.703125, 37.579413 ], [ -0.878906, 37.579413 ], [ -0.878906, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.300275 ], [ -1.582031, 37.300275 ], [ -1.582031, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 36.879621 ], [ -1.933594, 36.879621 ], [ -1.933594, 36.738884 ], [ -2.636719, 36.738884 ], [ -2.636719, 36.597889 ], [ -4.042969, 36.597889 ], [ -4.042969, 36.738884 ], [ -4.394531, 36.738884 ], [ -4.394531, 36.597889 ], [ -4.570312, 36.597889 ], [ -4.570312, 36.456636 ], [ -4.746094, 36.456636 ], [ -4.746094, 36.315125 ], [ -4.921875, 36.315125 ], [ -4.921875, 36.173357 ], [ -5.097656, 36.173357 ], [ -5.097656, 36.031332 ], [ -5.273438, 36.031332 ], [ -5.273438, 35.889050 ], [ -5.800781, 35.889050 ], [ -5.800781, 36.031332 ], [ -5.976562, 36.031332 ], [ -5.976562, 36.173357 ], [ -6.152344, 36.173357 ], [ -6.152344, 36.456636 ], [ -6.328125, 36.456636 ], [ -6.328125, 36.738884 ], [ -6.503906, 36.738884 ], [ -6.503906, 36.879621 ], [ -6.855469, 36.879621 ], [ -6.855469, 37.020098 ], [ -7.207031, 37.020098 ], [ -7.207031, 37.160317 ], [ -7.382812, 37.160317 ], [ -7.382812, 37.300275 ], [ -7.558594, 37.300275 ], [ -7.558594, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 37.718590 ], [ -7.207031, 37.718590 ], [ -7.207031, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 38.134557 ], [ -7.207031, 38.134557 ], [ -7.207031, 38.272689 ], [ -7.382812, 38.272689 ], [ -7.382812, 38.548165 ], [ -7.207031, 38.548165 ], [ -7.207031, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 39.095963 ], [ -7.207031, 39.095963 ], [ -7.207031, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 39.504041 ], [ -7.558594, 39.504041 ], [ -7.558594, 39.639538 ], [ -7.207031, 39.639538 ], [ -7.207031, 39.774769 ], [ -7.031250, 39.774769 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.178873 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.097656, 35.460670 ], [ -4.746094, 35.460670 ], [ -4.746094, 35.317366 ], [ -4.042969, 35.317366 ], [ -4.042969, 35.460670 ], [ -3.515625, 35.460670 ], [ -3.515625, 35.317366 ], [ -2.988281, 35.317366 ], [ -2.988281, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 35.029996 ], [ -1.933594, 35.029996 ], [ -1.933594, 34.741612 ], [ -1.757812, 34.741612 ], [ -1.757812, 33.578015 ], [ -1.582031, 33.578015 ], [ -1.582031, 32.990236 ], [ -1.406250, 32.990236 ], [ -1.406250, 32.694866 ], [ -1.054688, 32.694866 ], [ -1.054688, 32.398516 ], [ -1.230469, 32.398516 ], [ -1.230469, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 32.101190 ], [ -2.636719, 32.101190 ], [ -2.636719, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 31.653381 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -3.867188, 30.902225 ], [ -3.867188, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 30.600094 ], [ -4.570312, 30.600094 ], [ -4.570312, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.297018 ], [ -5.097656, 30.297018 ], [ -5.097656, 29.993002 ], [ -5.273438, 29.993002 ], [ -5.273438, 29.840644 ], [ -5.625000, 29.840644 ], [ -5.625000, 29.688053 ], [ -6.328125, 29.688053 ], [ -6.328125, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 29.382175 ], [ -7.382812, 29.382175 ], [ -7.382812, 29.228890 ], [ -7.734375, 29.228890 ], [ -7.734375, 29.075375 ], [ -8.085938, 29.075375 ], [ -8.085938, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 28.767659 ], [ -8.613281, 28.767659 ], [ -8.613281, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 26.902477 ], [ -10.546875, 26.902477 ], [ -10.546875, 27.059126 ], [ -10.898438, 27.059126 ], [ -10.898438, 26.902477 ], [ -11.425781, 26.902477 ], [ -11.425781, 26.588527 ], [ -11.601562, 26.588527 ], [ -11.601562, 26.273714 ], [ -11.777344, 26.273714 ], [ -11.777344, 25.958045 ], [ -11.953125, 25.958045 ], [ -11.953125, 25.641526 ], [ -12.128906, 25.641526 ], [ -12.128906, 25.324167 ], [ -12.304688, 25.324167 ], [ -12.304688, 25.005973 ], [ -12.480469, 25.005973 ], [ -12.480469, 24.686952 ], [ -12.656250, 24.686952 ], [ -12.656250, 24.527135 ], [ -12.832031, 24.527135 ], [ -12.832031, 24.367114 ], [ -13.007812, 24.367114 ], [ -13.007812, 24.206890 ], [ -13.359375, 24.206890 ], [ -13.359375, 24.046464 ], [ -13.535156, 24.046464 ], [ -13.535156, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 23.725012 ], [ -13.886719, 23.725012 ], [ -13.886719, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 22.593726 ], [ -14.238281, 22.593726 ], [ -14.238281, 22.105999 ], [ -14.414062, 22.105999 ], [ -14.414062, 21.779905 ], [ -14.589844, 21.779905 ], [ -14.589844, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.453069 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.699219, 21.943046 ], [ -16.699219, 22.105999 ], [ -16.523438, 22.105999 ], [ -16.523438, 22.431340 ], [ -16.347656, 22.431340 ], [ -16.347656, 23.241346 ], [ -16.171875, 23.241346 ], [ -16.171875, 23.563987 ], [ -15.996094, 23.563987 ], [ -15.996094, 23.725012 ], [ -15.820312, 23.725012 ], [ -15.820312, 24.046464 ], [ -15.644531, 24.046464 ], [ -15.644531, 24.206890 ], [ -15.468750, 24.206890 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.367114 ], [ -15.117188, 24.686952 ], [ -14.941406, 24.686952 ], [ -14.941406, 25.005973 ], [ -14.765625, 25.005973 ], [ -14.765625, 25.799891 ], [ -14.589844, 25.799891 ], [ -14.589844, 26.115986 ], [ -14.414062, 26.115986 ], [ -14.414062, 26.273714 ], [ -14.062500, 26.273714 ], [ -14.062500, 26.431228 ], [ -13.710938, 26.431228 ], [ -13.710938, 26.745610 ], [ -13.535156, 26.745610 ], [ -13.535156, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.371767 ], [ -13.183594, 27.371767 ], [ -13.183594, 27.683528 ], [ -13.007812, 27.683528 ], [ -13.007812, 27.839076 ], [ -12.656250, 27.839076 ], [ -12.656250, 27.994401 ], [ -11.953125, 27.994401 ], [ -11.953125, 28.149503 ], [ -11.425781, 28.149503 ], [ -11.425781, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.459033 ], [ -11.074219, 28.459033 ], [ -11.074219, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.767659 ], [ -10.722656, 28.767659 ], [ -10.722656, 28.921631 ], [ -10.371094, 28.921631 ], [ -10.371094, 29.075375 ], [ -10.195312, 29.075375 ], [ -10.195312, 29.228890 ], [ -10.019531, 29.228890 ], [ -10.019531, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 29.688053 ], [ -9.667969, 29.688053 ], [ -9.667969, 29.840644 ], [ -9.492188, 29.840644 ], [ -9.492188, 30.297018 ], [ -9.667969, 30.297018 ], [ -9.667969, 30.902225 ], [ -9.843750, 30.902225 ], [ -9.843750, 31.353637 ], [ -9.667969, 31.353637 ], [ -9.667969, 31.802893 ], [ -9.492188, 31.802893 ], [ -9.492188, 32.249974 ], [ -9.316406, 32.249974 ], [ -9.316406, 32.546813 ], [ -9.140625, 32.546813 ], [ -9.140625, 32.694866 ], [ -8.964844, 32.694866 ], [ -8.964844, 32.990236 ], [ -8.789062, 32.990236 ], [ -8.789062, 33.137551 ], [ -8.613281, 33.137551 ], [ -8.613281, 33.284620 ], [ -8.437500, 33.284620 ], [ -8.437500, 33.431441 ], [ -8.085938, 33.431441 ], [ -8.085938, 33.578015 ], [ -7.734375, 33.578015 ], [ -7.734375, 33.724340 ], [ -7.558594, 33.724340 ], [ -7.558594, 33.870416 ], [ -7.207031, 33.870416 ], [ -7.207031, 34.016242 ], [ -6.855469, 34.016242 ], [ -6.855469, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.597042 ], [ -6.503906, 34.597042 ], [ -6.503906, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.317366 ], [ -6.152344, 35.317366 ], [ -6.152344, 35.603719 ], [ -5.976562, 35.603719 ], [ -5.976562, 35.746512 ], [ -5.273438, 35.746512 ], [ -5.273438, 35.603719 ], [ -5.097656, 35.603719 ], [ -5.097656, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.746512 ], [ -5.273438, 35.603719 ], [ -5.097656, 35.603719 ], [ -5.097656, 35.460670 ], [ -4.746094, 35.460670 ], [ -4.746094, 35.317366 ], [ -4.042969, 35.317366 ], [ -4.042969, 35.460670 ], [ -3.515625, 35.460670 ], [ -3.515625, 35.317366 ], [ -2.988281, 35.317366 ], [ -2.988281, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 35.029996 ], [ -1.933594, 35.029996 ], [ -1.933594, 34.741612 ], [ -1.757812, 34.741612 ], [ -1.757812, 33.578015 ], [ -1.582031, 33.578015 ], [ -1.582031, 32.990236 ], [ -1.406250, 32.990236 ], [ -1.406250, 32.694866 ], [ -1.054688, 32.694866 ], [ -1.054688, 32.398516 ], [ -1.230469, 32.398516 ], [ -1.230469, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 32.101190 ], [ -2.636719, 32.101190 ], [ -2.636719, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 31.653381 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -3.867188, 30.902225 ], [ -3.867188, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 30.600094 ], [ -4.570312, 30.600094 ], [ -4.570312, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.297018 ], [ -5.097656, 30.297018 ], [ -5.097656, 29.993002 ], [ -5.273438, 29.993002 ], [ -5.273438, 29.840644 ], [ -5.625000, 29.840644 ], [ -5.625000, 29.688053 ], [ -6.328125, 29.688053 ], [ -6.328125, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 29.382175 ], [ -7.382812, 29.382175 ], [ -7.382812, 29.228890 ], [ -7.734375, 29.228890 ], [ -7.734375, 29.075375 ], [ -8.085938, 29.075375 ], [ -8.085938, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 28.767659 ], [ -8.613281, 28.767659 ], [ -8.613281, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 26.902477 ], [ -10.546875, 26.902477 ], [ -10.546875, 27.059126 ], [ -10.898438, 27.059126 ], [ -10.898438, 26.902477 ], [ -11.425781, 26.902477 ], [ -11.425781, 26.588527 ], [ -11.601562, 26.588527 ], [ -11.601562, 26.273714 ], [ -11.777344, 26.273714 ], [ -11.777344, 25.958045 ], [ -11.953125, 25.958045 ], [ -11.953125, 25.641526 ], [ -12.128906, 25.641526 ], [ -12.128906, 25.324167 ], [ -12.304688, 25.324167 ], [ -12.304688, 25.005973 ], [ -12.480469, 25.005973 ], [ -12.480469, 24.686952 ], [ -12.656250, 24.686952 ], [ -12.656250, 24.527135 ], [ -12.832031, 24.527135 ], [ -12.832031, 24.367114 ], [ -13.007812, 24.367114 ], [ -13.007812, 24.206890 ], [ -13.359375, 24.206890 ], [ -13.359375, 24.046464 ], [ -13.535156, 24.046464 ], [ -13.535156, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 23.725012 ], [ -13.886719, 23.725012 ], [ -13.886719, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 22.593726 ], [ -14.238281, 22.593726 ], [ -14.238281, 22.105999 ], [ -14.414062, 22.105999 ], [ -14.414062, 21.779905 ], [ -14.589844, 21.779905 ], [ -14.589844, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.453069 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.699219, 21.943046 ], [ -16.699219, 22.105999 ], [ -16.523438, 22.105999 ], [ -16.523438, 22.431340 ], [ -16.347656, 22.431340 ], [ -16.347656, 23.241346 ], [ -16.171875, 23.241346 ], [ -16.171875, 23.563987 ], [ -15.996094, 23.563987 ], [ -15.996094, 23.725012 ], [ -15.820312, 23.725012 ], [ -15.820312, 24.046464 ], [ -15.644531, 24.046464 ], [ -15.644531, 24.206890 ], [ -15.468750, 24.206890 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.367114 ], [ -15.117188, 24.686952 ], [ -14.941406, 24.686952 ], [ -14.941406, 25.005973 ], [ -14.765625, 25.005973 ], [ -14.765625, 25.799891 ], [ -14.589844, 25.799891 ], [ -14.589844, 26.115986 ], [ -14.414062, 26.115986 ], [ -14.414062, 26.273714 ], [ -14.062500, 26.273714 ], [ -14.062500, 26.431228 ], [ -13.710938, 26.431228 ], [ -13.710938, 26.745610 ], [ -13.535156, 26.745610 ], [ -13.535156, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.371767 ], [ -13.183594, 27.371767 ], [ -13.183594, 27.683528 ], [ -13.007812, 27.683528 ], [ -13.007812, 27.839076 ], [ -12.656250, 27.839076 ], [ -12.656250, 27.994401 ], [ -11.953125, 27.994401 ], [ -11.953125, 28.149503 ], [ -11.425781, 28.149503 ], [ -11.425781, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.459033 ], [ -11.074219, 28.459033 ], [ -11.074219, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.767659 ], [ -10.722656, 28.767659 ], [ -10.722656, 28.921631 ], [ -10.371094, 28.921631 ], [ -10.371094, 29.075375 ], [ -10.195312, 29.075375 ], [ -10.195312, 29.228890 ], [ -10.019531, 29.228890 ], [ -10.019531, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 29.688053 ], [ -9.667969, 29.688053 ], [ -9.667969, 29.840644 ], [ -9.492188, 29.840644 ], [ -9.492188, 30.297018 ], [ -9.667969, 30.297018 ], [ -9.667969, 30.902225 ], [ -9.843750, 30.902225 ], [ -9.843750, 31.353637 ], [ -9.667969, 31.353637 ], [ -9.667969, 31.802893 ], [ -9.492188, 31.802893 ], [ -9.492188, 32.249974 ], [ -9.316406, 32.249974 ], [ -9.316406, 32.546813 ], [ -9.140625, 32.546813 ], [ -9.140625, 32.694866 ], [ -8.964844, 32.694866 ], [ -8.964844, 32.990236 ], [ -8.789062, 32.990236 ], [ -8.789062, 33.137551 ], [ -8.613281, 33.137551 ], [ -8.613281, 33.284620 ], [ -8.437500, 33.284620 ], [ -8.437500, 33.431441 ], [ -8.085938, 33.431441 ], [ -8.085938, 33.578015 ], [ -7.734375, 33.578015 ], [ -7.734375, 33.724340 ], [ -7.558594, 33.724340 ], [ -7.558594, 33.870416 ], [ -7.207031, 33.870416 ], [ -7.207031, 34.016242 ], [ -6.855469, 34.016242 ], [ -6.855469, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.597042 ], [ -6.503906, 34.597042 ], [ -6.503906, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.317366 ], [ -6.152344, 35.317366 ], [ -6.152344, 35.603719 ], [ -5.976562, 35.603719 ], [ -5.976562, 35.746512 ], [ -5.273438, 35.746512 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.238281, 16.299051 ], [ -14.062500, 16.299051 ], [ -14.062500, 16.130262 ], [ -13.710938, 16.130262 ], [ -13.710938, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.792254 ], [ -13.183594, 15.792254 ], [ -13.183594, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.284185 ], [ -12.832031, 15.284185 ], [ -12.832031, 15.114553 ], [ -12.656250, 15.114553 ], [ -12.656250, 14.944785 ], [ -12.480469, 14.944785 ], [ -12.480469, 14.774883 ], [ -12.304688, 14.774883 ], [ -12.304688, 14.604847 ], [ -12.128906, 14.604847 ], [ -12.128906, 13.581921 ], [ -11.953125, 13.581921 ], [ -11.953125, 13.239945 ], [ -11.777344, 13.239945 ], [ -11.777344, 13.068777 ], [ -11.601562, 13.068777 ], [ -11.601562, 12.897489 ], [ -11.425781, 12.897489 ], [ -11.425781, 12.554564 ], [ -11.601562, 12.554564 ], [ -11.601562, 12.382928 ], [ -13.007812, 12.382928 ], [ -13.007812, 12.554564 ], [ -16.347656, 12.554564 ], [ -16.347656, 12.382928 ], [ -16.699219, 12.382928 ], [ -16.699219, 12.726084 ], [ -16.875000, 12.726084 ], [ -16.875000, 13.068777 ], [ -15.644531, 13.068777 ], [ -15.644531, 13.239945 ], [ -15.292969, 13.239945 ], [ -15.292969, 13.410994 ], [ -14.941406, 13.410994 ], [ -14.941406, 13.239945 ], [ -14.062500, 13.239945 ], [ -14.062500, 13.410994 ], [ -13.886719, 13.410994 ], [ -13.886719, 13.581921 ], [ -14.941406, 13.581921 ], [ -14.941406, 13.752725 ], [ -15.117188, 13.752725 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 13.752725 ], [ -15.644531, 13.752725 ], [ -15.644531, 13.581921 ], [ -16.699219, 13.581921 ], [ -16.699219, 13.752725 ], [ -16.875000, 13.752725 ], [ -16.875000, 14.093957 ], [ -17.050781, 14.093957 ], [ -17.050781, 14.434680 ], [ -17.226562, 14.434680 ], [ -17.226562, 14.604847 ], [ -17.578125, 14.604847 ], [ -17.578125, 14.774883 ], [ -17.226562, 14.774883 ], [ -17.226562, 14.944785 ], [ -17.050781, 14.944785 ], [ -17.050781, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.453680 ], [ -16.699219, 15.453680 ], [ -16.699219, 15.792254 ], [ -16.523438, 15.792254 ], [ -16.523438, 16.130262 ], [ -16.347656, 16.130262 ], [ -16.347656, 16.299051 ], [ -16.171875, 16.299051 ], [ -16.171875, 16.467695 ], [ -15.996094, 16.467695 ], [ -15.996094, 16.299051 ], [ -15.468750, 16.299051 ], [ -15.468750, 16.467695 ], [ -15.117188, 16.467695 ], [ -15.117188, 16.636192 ], [ -14.589844, 16.636192 ], [ -14.589844, 16.467695 ], [ -14.238281, 16.467695 ], [ -14.238281, 16.299051 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -14.589844, 16.467695 ], [ -14.238281, 16.467695 ], [ -14.238281, 16.299051 ], [ -14.062500, 16.299051 ], [ -14.062500, 16.130262 ], [ -13.710938, 16.130262 ], [ -13.710938, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.792254 ], [ -13.183594, 15.792254 ], [ -13.183594, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.284185 ], [ -12.832031, 15.284185 ], [ -12.832031, 15.114553 ], [ -12.656250, 15.114553 ], [ -12.656250, 14.944785 ], [ -12.480469, 14.944785 ], [ -12.480469, 14.774883 ], [ -12.304688, 14.774883 ], [ -12.304688, 14.604847 ], [ -12.128906, 14.604847 ], [ -12.128906, 13.581921 ], [ -11.953125, 13.581921 ], [ -11.953125, 13.239945 ], [ -11.777344, 13.239945 ], [ -11.777344, 13.068777 ], [ -11.601562, 13.068777 ], [ -11.601562, 12.897489 ], [ -11.425781, 12.897489 ], [ -11.425781, 12.554564 ], [ -11.601562, 12.554564 ], [ -11.601562, 12.382928 ], [ -13.007812, 12.382928 ], [ -13.007812, 12.554564 ], [ -16.347656, 12.554564 ], [ -16.347656, 12.382928 ], [ -16.699219, 12.382928 ], [ -16.699219, 12.726084 ], [ -16.875000, 12.726084 ], [ -16.875000, 13.068777 ], [ -15.644531, 13.068777 ], [ -15.644531, 13.239945 ], [ -15.292969, 13.239945 ], [ -15.292969, 13.410994 ], [ -14.941406, 13.410994 ], [ -14.941406, 13.239945 ], [ -14.062500, 13.239945 ], [ -14.062500, 13.410994 ], [ -13.886719, 13.410994 ], [ -13.886719, 13.581921 ], [ -14.941406, 13.581921 ], [ -14.941406, 13.752725 ], [ -15.117188, 13.752725 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 13.752725 ], [ -15.644531, 13.752725 ], [ -15.644531, 13.581921 ], [ -16.699219, 13.581921 ], [ -16.699219, 13.752725 ], [ -16.875000, 13.752725 ], [ -16.875000, 14.093957 ], [ -17.050781, 14.093957 ], [ -17.050781, 14.434680 ], [ -17.226562, 14.434680 ], [ -17.226562, 14.604847 ], [ -17.578125, 14.604847 ], [ -17.578125, 14.774883 ], [ -17.226562, 14.774883 ], [ -17.226562, 14.944785 ], [ -17.050781, 14.944785 ], [ -17.050781, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.453680 ], [ -16.699219, 15.453680 ], [ -16.699219, 15.792254 ], [ -16.523438, 15.792254 ], [ -16.523438, 16.130262 ], [ -16.347656, 16.130262 ], [ -16.347656, 16.299051 ], [ -16.171875, 16.299051 ], [ -16.171875, 16.467695 ], [ -15.996094, 16.467695 ], [ -15.996094, 16.299051 ], [ -15.468750, 16.299051 ], [ -15.468750, 16.467695 ], [ -15.117188, 16.467695 ], [ -15.117188, 16.636192 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.941406, 13.581921 ], [ -13.886719, 13.581921 ], [ -13.886719, 13.410994 ], [ -14.062500, 13.410994 ], [ -14.062500, 13.239945 ], [ -14.941406, 13.239945 ], [ -14.941406, 13.410994 ], [ -15.292969, 13.410994 ], [ -15.292969, 13.239945 ], [ -15.644531, 13.239945 ], [ -15.644531, 13.068777 ], [ -16.875000, 13.068777 ], [ -16.875000, 13.239945 ], [ -16.699219, 13.239945 ], [ -16.699219, 13.581921 ], [ -15.644531, 13.581921 ], [ -15.644531, 13.752725 ], [ -15.468750, 13.752725 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ], [ -15.117188, 13.752725 ], [ -14.941406, 13.752725 ], [ -14.941406, 13.581921 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -15.117188, 13.752725 ], [ -14.941406, 13.752725 ], [ -14.941406, 13.581921 ], [ -13.886719, 13.581921 ], [ -13.886719, 13.410994 ], [ -14.062500, 13.410994 ], [ -14.062500, 13.239945 ], [ -14.941406, 13.239945 ], [ -14.941406, 13.410994 ], [ -15.292969, 13.410994 ], [ -15.292969, 13.239945 ], [ -15.644531, 13.239945 ], [ -15.644531, 13.068777 ], [ -16.875000, 13.068777 ], [ -16.875000, 13.239945 ], [ -16.699219, 13.239945 ], [ -16.699219, 13.581921 ], [ -15.644531, 13.581921 ], [ -15.644531, 13.752725 ], [ -15.468750, 13.752725 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.211180 ], [ -13.886719, 12.211180 ], [ -13.886719, 12.039321 ], [ -13.710938, 12.039321 ], [ -13.710938, 11.695273 ], [ -14.062500, 11.695273 ], [ -14.062500, 11.523088 ], [ -14.765625, 11.523088 ], [ -14.765625, 11.350797 ], [ -14.941406, 11.350797 ], [ -14.941406, 11.005904 ], [ -15.292969, 11.005904 ], [ -15.292969, 11.178402 ], [ -15.468750, 11.178402 ], [ -15.468750, 11.350797 ], [ -15.644531, 11.350797 ], [ -15.644531, 11.523088 ], [ -16.171875, 11.523088 ], [ -16.171875, 11.695273 ], [ -16.347656, 11.695273 ], [ -16.347656, 12.039321 ], [ -16.699219, 12.039321 ], [ -16.699219, 12.382928 ], [ -16.347656, 12.382928 ], [ -16.347656, 12.554564 ], [ -13.710938, 12.554564 ], [ -13.710938, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.554564 ], [ -13.710938, 12.211180 ], [ -13.886719, 12.211180 ], [ -13.886719, 12.039321 ], [ -13.710938, 12.039321 ], [ -13.710938, 11.695273 ], [ -14.062500, 11.695273 ], [ -14.062500, 11.523088 ], [ -14.765625, 11.523088 ], [ -14.765625, 11.350797 ], [ -14.941406, 11.350797 ], [ -14.941406, 11.005904 ], [ -15.292969, 11.005904 ], [ -15.292969, 11.178402 ], [ -15.468750, 11.178402 ], [ -15.468750, 11.350797 ], [ -15.644531, 11.350797 ], [ -15.644531, 11.523088 ], [ -16.171875, 11.523088 ], [ -16.171875, 11.695273 ], [ -16.347656, 11.695273 ], [ -16.347656, 12.039321 ], [ -16.699219, 12.039321 ], [ -16.699219, 12.382928 ], [ -16.347656, 12.382928 ], [ -16.347656, 12.554564 ], [ -13.710938, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.425781, 12.039321 ], [ -11.074219, 12.039321 ], [ -11.074219, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 12.039321 ], [ -10.722656, 12.039321 ], [ -10.722656, 11.867351 ], [ -9.843750, 11.867351 ], [ -9.843750, 12.039321 ], [ -9.492188, 12.039321 ], [ -9.492188, 12.211180 ], [ -9.316406, 12.211180 ], [ -9.316406, 12.382928 ], [ -9.140625, 12.382928 ], [ -9.140625, 12.211180 ], [ -8.964844, 12.211180 ], [ -8.964844, 11.867351 ], [ -8.789062, 11.867351 ], [ -8.789062, 11.695273 ], [ -8.613281, 11.695273 ], [ -8.613281, 11.350797 ], [ -8.437500, 11.350797 ], [ -8.437500, 11.178402 ], [ -8.613281, 11.178402 ], [ -8.613281, 10.833306 ], [ -8.261719, 10.833306 ], [ -8.261719, 10.314919 ], [ -8.085938, 10.314919 ], [ -8.085938, 10.141932 ], [ -8.261719, 10.141932 ], [ -8.261719, 9.622414 ], [ -8.085938, 9.622414 ], [ -8.085938, 8.928487 ], [ -7.910156, 8.928487 ], [ -7.910156, 8.407168 ], [ -8.261719, 8.407168 ], [ -8.261719, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.536764 ], [ -8.964844, 7.536764 ], [ -8.964844, 7.362467 ], [ -9.316406, 7.362467 ], [ -9.316406, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 8.754795 ], [ -10.722656, 8.754795 ], [ -10.722656, 9.102097 ], [ -10.546875, 9.102097 ], [ -10.546875, 9.275622 ], [ -10.722656, 9.275622 ], [ -10.722656, 9.449062 ], [ -10.898438, 9.449062 ], [ -10.898438, 9.795678 ], [ -11.074219, 9.795678 ], [ -11.074219, 9.968851 ], [ -11.953125, 9.968851 ], [ -11.953125, 9.795678 ], [ -12.480469, 9.795678 ], [ -12.480469, 9.622414 ], [ -12.656250, 9.622414 ], [ -12.656250, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 8.928487 ], [ -13.359375, 8.928487 ], [ -13.359375, 9.102097 ], [ -13.535156, 9.102097 ], [ -13.535156, 9.275622 ], [ -13.710938, 9.275622 ], [ -13.710938, 9.449062 ], [ -13.886719, 9.449062 ], [ -13.886719, 9.795678 ], [ -14.062500, 9.795678 ], [ -14.062500, 9.968851 ], [ -14.589844, 9.968851 ], [ -14.589844, 10.314919 ], [ -14.765625, 10.314919 ], [ -14.765625, 10.833306 ], [ -15.117188, 10.833306 ], [ -15.117188, 11.005904 ], [ -14.941406, 11.005904 ], [ -14.941406, 11.350797 ], [ -14.765625, 11.350797 ], [ -14.765625, 11.523088 ], [ -14.062500, 11.523088 ], [ -14.062500, 11.695273 ], [ -13.710938, 11.695273 ], [ -13.710938, 12.039321 ], [ -13.886719, 12.039321 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.211180 ], [ -13.710938, 12.554564 ], [ -13.007812, 12.554564 ], [ -13.007812, 12.382928 ], [ -11.601562, 12.382928 ], [ -11.601562, 12.211180 ], [ -11.425781, 12.211180 ], [ -11.425781, 12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.007812, 12.554564 ], [ -13.007812, 12.382928 ], [ -11.601562, 12.382928 ], [ -11.601562, 12.211180 ], [ -11.425781, 12.211180 ], [ -11.425781, 12.039321 ], [ -11.074219, 12.039321 ], [ -11.074219, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 12.039321 ], [ -10.722656, 12.039321 ], [ -10.722656, 11.867351 ], [ -9.843750, 11.867351 ], [ -9.843750, 12.039321 ], [ -9.492188, 12.039321 ], [ -9.492188, 12.211180 ], [ -9.316406, 12.211180 ], [ -9.316406, 12.382928 ], [ -9.140625, 12.382928 ], [ -9.140625, 12.211180 ], [ -8.964844, 12.211180 ], [ -8.964844, 11.867351 ], [ -8.789062, 11.867351 ], [ -8.789062, 11.695273 ], [ -8.613281, 11.695273 ], [ -8.613281, 11.350797 ], [ -8.437500, 11.350797 ], [ -8.437500, 11.178402 ], [ -8.613281, 11.178402 ], [ -8.613281, 10.833306 ], [ -8.261719, 10.833306 ], [ -8.261719, 10.314919 ], [ -8.085938, 10.314919 ], [ -8.085938, 10.141932 ], [ -8.261719, 10.141932 ], [ -8.261719, 9.622414 ], [ -8.085938, 9.622414 ], [ -8.085938, 8.928487 ], [ -7.910156, 8.928487 ], [ -7.910156, 8.407168 ], [ -8.261719, 8.407168 ], [ -8.261719, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.536764 ], [ -8.964844, 7.536764 ], [ -8.964844, 7.362467 ], [ -9.316406, 7.362467 ], [ -9.316406, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 8.754795 ], [ -10.722656, 8.754795 ], [ -10.722656, 9.102097 ], [ -10.546875, 9.102097 ], [ -10.546875, 9.275622 ], [ -10.722656, 9.275622 ], [ -10.722656, 9.449062 ], [ -10.898438, 9.449062 ], [ -10.898438, 9.795678 ], [ -11.074219, 9.795678 ], [ -11.074219, 9.968851 ], [ -11.953125, 9.968851 ], [ -11.953125, 9.795678 ], [ -12.480469, 9.795678 ], [ -12.480469, 9.622414 ], [ -12.656250, 9.622414 ], [ -12.656250, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 8.928487 ], [ -13.359375, 8.928487 ], [ -13.359375, 9.102097 ], [ -13.535156, 9.102097 ], [ -13.535156, 9.275622 ], [ -13.710938, 9.275622 ], [ -13.710938, 9.449062 ], [ -13.886719, 9.449062 ], [ -13.886719, 9.795678 ], [ -14.062500, 9.795678 ], [ -14.062500, 9.968851 ], [ -14.589844, 9.968851 ], [ -14.589844, 10.314919 ], [ -14.765625, 10.314919 ], [ -14.765625, 10.833306 ], [ -15.117188, 10.833306 ], [ -15.117188, 11.005904 ], [ -14.941406, 11.005904 ], [ -14.941406, 11.350797 ], [ -14.765625, 11.350797 ], [ -14.765625, 11.523088 ], [ -14.062500, 11.523088 ], [ -14.062500, 11.695273 ], [ -13.710938, 11.695273 ], [ -13.710938, 12.039321 ], [ -13.886719, 12.039321 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.211180 ], [ -13.710938, 12.554564 ], [ -13.007812, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.898438, 9.449062 ], [ -10.722656, 9.449062 ], [ -10.722656, 9.275622 ], [ -10.546875, 9.275622 ], [ -10.546875, 9.102097 ], [ -10.722656, 9.102097 ], [ -10.722656, 8.754795 ], [ -10.546875, 8.754795 ], [ -10.546875, 8.407168 ], [ -10.195312, 8.407168 ], [ -10.195312, 8.233237 ], [ -10.371094, 8.233237 ], [ -10.371094, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 7.885147 ], [ -10.722656, 7.885147 ], [ -10.722656, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 7.362467 ], [ -11.074219, 7.362467 ], [ -11.074219, 7.188101 ], [ -11.250000, 7.188101 ], [ -11.250000, 7.013668 ], [ -11.425781, 7.013668 ], [ -11.425781, 6.839170 ], [ -12.128906, 6.839170 ], [ -12.128906, 7.013668 ], [ -12.480469, 7.013668 ], [ -12.480469, 7.188101 ], [ -12.656250, 7.188101 ], [ -12.656250, 7.536764 ], [ -12.832031, 7.536764 ], [ -12.832031, 7.710992 ], [ -13.007812, 7.710992 ], [ -13.007812, 8.059230 ], [ -13.183594, 8.059230 ], [ -13.183594, 8.928487 ], [ -13.007812, 8.928487 ], [ -13.007812, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.622414 ], [ -12.480469, 9.622414 ], [ -12.480469, 9.795678 ], [ -11.953125, 9.795678 ], [ -11.953125, 9.968851 ], [ -11.074219, 9.968851 ], [ -11.074219, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 9.449062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.074219, 9.968851 ], [ -11.074219, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 9.449062 ], [ -10.722656, 9.449062 ], [ -10.722656, 9.275622 ], [ -10.546875, 9.275622 ], [ -10.546875, 9.102097 ], [ -10.722656, 9.102097 ], [ -10.722656, 8.754795 ], [ -10.546875, 8.754795 ], [ -10.546875, 8.407168 ], [ -10.195312, 8.407168 ], [ -10.195312, 8.233237 ], [ -10.371094, 8.233237 ], [ -10.371094, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 7.885147 ], [ -10.722656, 7.885147 ], [ -10.722656, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 7.362467 ], [ -11.074219, 7.362467 ], [ -11.074219, 7.188101 ], [ -11.250000, 7.188101 ], [ -11.250000, 7.013668 ], [ -11.425781, 6.839170 ], [ -12.128906, 6.839170 ], [ -12.128906, 7.013668 ], [ -12.480469, 7.013668 ], [ -12.480469, 7.188101 ], [ -12.656250, 7.188101 ], [ -12.656250, 7.536764 ], [ -12.832031, 7.536764 ], [ -12.832031, 7.710992 ], [ -13.007812, 7.710992 ], [ -13.007812, 8.059230 ], [ -13.183594, 8.059230 ], [ -13.183594, 8.928487 ], [ -13.007812, 8.928487 ], [ -13.007812, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.622414 ], [ -12.480469, 9.622414 ], [ -12.480469, 9.795678 ], [ -11.953125, 9.795678 ], [ -11.953125, 9.968851 ], [ -11.074219, 9.968851 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 25.799891 ], [ -6.152344, 25.799891 ], [ -6.152344, 25.641526 ], [ -5.800781, 25.641526 ], [ -5.800781, 25.482951 ], [ -5.625000, 25.482951 ], [ -5.625000, 25.324167 ], [ -5.449219, 25.324167 ], [ -5.449219, 25.165173 ], [ -5.097656, 25.165173 ], [ -5.097656, 25.005973 ], [ -6.503906, 25.005973 ], [ -6.503906, 24.206890 ], [ -6.328125, 24.206890 ], [ -6.328125, 22.755921 ], [ -6.152344, 22.755921 ], [ -6.152344, 21.289374 ], [ -5.976562, 21.289374 ], [ -5.976562, 19.808054 ], [ -5.800781, 19.808054 ], [ -5.800781, 18.479609 ], [ -5.625000, 18.479609 ], [ -5.625000, 16.972741 ], [ -5.449219, 16.972741 ], [ -5.449219, 16.130262 ], [ -5.273438, 16.130262 ], [ -5.273438, 15.961329 ], [ -5.449219, 15.961329 ], [ -5.449219, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 15.453680 ], [ -9.492188, 15.453680 ], [ -9.492188, 15.284185 ], [ -10.195312, 15.284185 ], [ -10.195312, 15.114553 ], [ -11.074219, 15.114553 ], [ -11.074219, 15.284185 ], [ -11.425781, 15.284185 ], [ -11.425781, 15.453680 ], [ -11.601562, 15.453680 ], [ -11.601562, 15.114553 ], [ -11.777344, 15.114553 ], [ -11.777344, 14.604847 ], [ -12.304688, 14.604847 ], [ -12.304688, 14.774883 ], [ -12.480469, 14.774883 ], [ -12.480469, 14.944785 ], [ -12.656250, 14.944785 ], [ -12.656250, 15.114553 ], [ -12.832031, 15.114553 ], [ -12.832031, 15.284185 ], [ -13.007812, 15.284185 ], [ -13.007812, 15.623037 ], [ -13.183594, 15.623037 ], [ -13.183594, 15.792254 ], [ -13.359375, 15.792254 ], [ -13.359375, 15.961329 ], [ -13.710938, 15.961329 ], [ -13.710938, 16.130262 ], [ -14.062500, 16.130262 ], [ -14.062500, 16.299051 ], [ -14.238281, 16.299051 ], [ -14.238281, 16.467695 ], [ -14.589844, 16.467695 ], [ -14.589844, 16.636192 ], [ -15.117188, 16.636192 ], [ -15.117188, 16.467695 ], [ -15.468750, 16.467695 ], [ -15.468750, 16.299051 ], [ -15.996094, 16.299051 ], [ -15.996094, 16.467695 ], [ -16.171875, 16.467695 ], [ -16.171875, 16.299051 ], [ -16.347656, 16.299051 ], [ -16.347656, 16.130262 ], [ -16.523438, 16.130262 ], [ -16.523438, 16.804541 ], [ -16.347656, 16.804541 ], [ -16.347656, 17.644022 ], [ -16.171875, 17.644022 ], [ -16.171875, 19.311143 ], [ -16.347656, 19.311143 ], [ -16.347656, 20.303418 ], [ -16.523438, 20.303418 ], [ -16.523438, 20.632784 ], [ -16.699219, 20.632784 ], [ -16.699219, 20.797201 ], [ -17.050781, 20.797201 ], [ -17.050781, 21.125498 ], [ -16.875000, 21.125498 ], [ -16.875000, 21.289374 ], [ -13.007812, 21.289374 ], [ -13.007812, 21.943046 ], [ -13.183594, 21.943046 ], [ -13.183594, 22.755921 ], [ -13.007812, 22.755921 ], [ -13.007812, 23.079732 ], [ -12.832031, 23.079732 ], [ -12.832031, 23.241346 ], [ -12.304688, 23.241346 ], [ -12.304688, 23.402765 ], [ -11.953125, 23.402765 ], [ -11.953125, 25.958045 ], [ -8.613281, 25.958045 ], [ -8.613281, 27.215556 ], [ -8.261719, 27.215556 ], [ -8.261719, 27.059126 ], [ -8.085938, 27.059126 ], [ -8.085938, 26.902477 ], [ -7.910156, 26.902477 ], [ -7.910156, 26.745610 ], [ -7.558594, 26.745610 ], [ -7.558594, 26.588527 ], [ -7.382812, 26.588527 ], [ -7.382812, 26.431228 ], [ -7.031250, 26.431228 ], [ -7.031250, 26.273714 ], [ -6.855469, 26.273714 ], [ -6.855469, 26.115986 ], [ -6.679688, 26.115986 ], [ -6.679688, 25.958045 ], [ -6.328125, 25.958045 ], [ -6.328125, 25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 27.215556 ], [ -8.261719, 27.059126 ], [ -8.085938, 27.059126 ], [ -8.085938, 26.902477 ], [ -7.910156, 26.902477 ], [ -7.910156, 26.745610 ], [ -7.558594, 26.745610 ], [ -7.558594, 26.588527 ], [ -7.382812, 26.588527 ], [ -7.382812, 26.431228 ], [ -7.031250, 26.431228 ], [ -7.031250, 26.273714 ], [ -6.855469, 26.273714 ], [ -6.855469, 26.115986 ], [ -6.679688, 26.115986 ], [ -6.679688, 25.958045 ], [ -6.328125, 25.958045 ], [ -6.328125, 25.799891 ], [ -6.152344, 25.799891 ], [ -6.152344, 25.641526 ], [ -5.800781, 25.641526 ], [ -5.800781, 25.482951 ], [ -5.625000, 25.482951 ], [ -5.625000, 25.324167 ], [ -5.449219, 25.324167 ], [ -5.449219, 25.165173 ], [ -5.097656, 25.165173 ], [ -5.097656, 25.005973 ], [ -6.503906, 25.005973 ], [ -6.503906, 24.206890 ], [ -6.328125, 24.206890 ], [ -6.328125, 22.755921 ], [ -6.152344, 22.755921 ], [ -6.152344, 21.289374 ], [ -5.976562, 21.289374 ], [ -5.976562, 19.808054 ], [ -5.800781, 19.808054 ], [ -5.800781, 18.479609 ], [ -5.625000, 18.479609 ], [ -5.625000, 16.972741 ], [ -5.449219, 16.972741 ], [ -5.449219, 16.130262 ], [ -5.273438, 16.130262 ], [ -5.273438, 15.961329 ], [ -5.449219, 15.961329 ], [ -5.449219, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 15.453680 ], [ -9.492188, 15.453680 ], [ -9.492188, 15.284185 ], [ -10.195312, 15.284185 ], [ -10.195312, 15.114553 ], [ -11.074219, 15.114553 ], [ -11.074219, 15.284185 ], [ -11.425781, 15.284185 ], [ -11.425781, 15.453680 ], [ -11.601562, 15.453680 ], [ -11.601562, 15.114553 ], [ -11.777344, 15.114553 ], [ -11.777344, 14.604847 ], [ -12.304688, 14.604847 ], [ -12.304688, 14.774883 ], [ -12.480469, 14.774883 ], [ -12.480469, 14.944785 ], [ -12.656250, 14.944785 ], [ -12.656250, 15.114553 ], [ -12.832031, 15.114553 ], [ -12.832031, 15.284185 ], [ -13.007812, 15.284185 ], [ -13.007812, 15.623037 ], [ -13.183594, 15.623037 ], [ -13.183594, 15.792254 ], [ -13.359375, 15.792254 ], [ -13.359375, 15.961329 ], [ -13.710938, 15.961329 ], [ -13.710938, 16.130262 ], [ -14.062500, 16.130262 ], [ -14.062500, 16.299051 ], [ -14.238281, 16.299051 ], [ -14.238281, 16.467695 ], [ -14.589844, 16.467695 ], [ -14.589844, 16.636192 ], [ -15.117188, 16.636192 ], [ -15.117188, 16.467695 ], [ -15.468750, 16.467695 ], [ -15.468750, 16.299051 ], [ -15.996094, 16.299051 ], [ -15.996094, 16.467695 ], [ -16.171875, 16.467695 ], [ -16.171875, 16.299051 ], [ -16.347656, 16.299051 ], [ -16.347656, 16.130262 ], [ -16.523438, 16.130262 ], [ -16.523438, 16.804541 ], [ -16.347656, 16.804541 ], [ -16.347656, 17.644022 ], [ -16.171875, 17.644022 ], [ -16.171875, 19.311143 ], [ -16.347656, 19.311143 ], [ -16.347656, 20.303418 ], [ -16.523438, 20.303418 ], [ -16.523438, 20.632784 ], [ -16.699219, 20.632784 ], [ -16.699219, 20.797201 ], [ -17.050781, 20.797201 ], [ -17.050781, 21.125498 ], [ -16.875000, 21.125498 ], [ -16.875000, 21.289374 ], [ -13.007812, 21.289374 ], [ -13.007812, 21.943046 ], [ -13.183594, 21.943046 ], [ -13.183594, 22.755921 ], [ -13.007812, 22.755921 ], [ -13.007812, 23.079732 ], [ -12.832031, 23.079732 ], [ -12.832031, 23.241346 ], [ -12.304688, 23.241346 ], [ -12.304688, 23.402765 ], [ -11.953125, 23.402765 ], [ -11.953125, 25.958045 ], [ -8.613281, 25.958045 ], [ -8.613281, 27.215556 ], [ -8.261719, 27.215556 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.679688, 10.487812 ], [ -6.679688, 10.314919 ], [ -6.855469, 10.314919 ], [ -6.855469, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 10.314919 ], [ -8.261719, 10.314919 ], [ -8.261719, 10.833306 ], [ -8.613281, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.178402 ], [ -8.437500, 11.350797 ], [ -8.613281, 11.350797 ], [ -8.613281, 11.695273 ], [ -8.789062, 11.695273 ], [ -8.789062, 11.867351 ], [ -8.964844, 11.867351 ], [ -8.964844, 12.211180 ], [ -9.140625, 12.211180 ], [ -9.140625, 12.382928 ], [ -9.316406, 12.382928 ], [ -9.316406, 12.211180 ], [ -9.492188, 12.211180 ], [ -9.492188, 12.039321 ], [ -9.843750, 12.039321 ], [ -9.843750, 11.867351 ], [ -10.722656, 11.867351 ], [ -10.722656, 12.039321 ], [ -10.898438, 12.039321 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.211180 ], [ -11.074219, 12.039321 ], [ -11.425781, 12.039321 ], [ -11.425781, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 12.554564 ], [ -11.425781, 12.554564 ], [ -11.425781, 12.897489 ], [ -11.601562, 12.897489 ], [ -11.601562, 13.068777 ], [ -11.777344, 13.068777 ], [ -11.777344, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 13.581921 ], [ -12.128906, 13.581921 ], [ -12.128906, 14.604847 ], [ -11.777344, 14.604847 ], [ -11.777344, 15.114553 ], [ -11.601562, 15.114553 ], [ -11.601562, 15.453680 ], [ -11.425781, 15.453680 ], [ -11.425781, 15.284185 ], [ -11.074219, 15.284185 ], [ -11.074219, 15.114553 ], [ -10.195312, 15.114553 ], [ -10.195312, 15.284185 ], [ -9.492188, 15.284185 ], [ -9.492188, 15.453680 ], [ -5.625000, 15.453680 ], [ -5.625000, 15.623037 ], [ -5.449219, 15.623037 ], [ -5.449219, 15.961329 ], [ -5.273438, 15.961329 ], [ -5.273438, 16.130262 ], [ -5.449219, 16.130262 ], [ -5.449219, 16.972741 ], [ -5.625000, 16.972741 ], [ -5.625000, 18.479609 ], [ -5.800781, 18.479609 ], [ -5.800781, 19.808054 ], [ -5.976562, 19.808054 ], [ -5.976562, 21.289374 ], [ -6.152344, 21.289374 ], [ -6.152344, 22.755921 ], [ -6.328125, 22.755921 ], [ -6.328125, 24.206890 ], [ -6.503906, 24.206890 ], [ -6.503906, 25.005973 ], [ -4.921875, 25.005973 ], [ -4.921875, 24.846565 ], [ -4.570312, 24.846565 ], [ -4.570312, 24.686952 ], [ -4.394531, 24.686952 ], [ -4.394531, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 24.367114 ], [ -3.867188, 24.367114 ], [ -3.867188, 24.206890 ], [ -3.691406, 24.206890 ], [ -3.691406, 24.046464 ], [ -3.515625, 24.046464 ], [ -3.515625, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.725012 ], [ -2.988281, 23.725012 ], [ -2.988281, 23.563987 ], [ -2.812500, 23.563987 ], [ -2.812500, 23.402765 ], [ -2.460938, 23.402765 ], [ -2.460938, 23.241346 ], [ -2.285156, 23.241346 ], [ -2.285156, 23.079732 ], [ -2.109375, 23.079732 ], [ -2.109375, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 22.755921 ], [ -1.582031, 22.755921 ], [ -1.582031, 22.593726 ], [ -1.230469, 22.593726 ], [ -1.230469, 22.431340 ], [ -1.054688, 22.431340 ], [ -1.054688, 22.268764 ], [ -0.703125, 22.268764 ], [ -0.703125, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.703125, 21.453069 ], [ 0.703125, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 14.944785 ], [ -0.527344, 14.944785 ], [ -0.527344, 15.114553 ], [ -0.703125, 15.114553 ], [ -0.703125, 14.944785 ], [ -1.230469, 14.944785 ], [ -1.230469, 14.774883 ], [ -1.582031, 14.774883 ], [ -1.582031, 14.604847 ], [ -1.933594, 14.604847 ], [ -1.933594, 14.434680 ], [ -2.109375, 14.434680 ], [ -2.109375, 14.093957 ], [ -2.460938, 14.093957 ], [ -2.460938, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.752725 ], [ -2.988281, 13.752725 ], [ -2.988281, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.410994 ], [ -4.042969, 13.410994 ], [ -4.042969, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 12.897489 ], [ -4.394531, 12.897489 ], [ -4.394531, 12.382928 ], [ -4.570312, 12.382928 ], [ -4.570312, 12.211180 ], [ -4.746094, 12.211180 ], [ -4.746094, 12.039321 ], [ -4.921875, 12.039321 ], [ -4.921875, 11.867351 ], [ -5.097656, 11.867351 ], [ -5.097656, 11.695273 ], [ -5.273438, 11.695273 ], [ -5.273438, 11.178402 ], [ -5.449219, 11.178402 ], [ -5.449219, 10.141932 ], [ -5.976562, 10.141932 ], [ -5.976562, 10.314919 ], [ -6.152344, 10.314919 ], [ -6.152344, 10.487812 ], [ -6.679688, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.005973 ], [ -4.921875, 24.846565 ], [ -4.570312, 24.846565 ], [ -4.570312, 24.686952 ], [ -4.394531, 24.686952 ], [ -4.394531, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 24.367114 ], [ -3.867188, 24.367114 ], [ -3.867188, 24.206890 ], [ -3.691406, 24.206890 ], [ -3.691406, 24.046464 ], [ -3.515625, 24.046464 ], [ -3.515625, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.725012 ], [ -2.988281, 23.725012 ], [ -2.988281, 23.563987 ], [ -2.812500, 23.563987 ], [ -2.812500, 23.402765 ], [ -2.460938, 23.402765 ], [ -2.460938, 23.241346 ], [ -2.285156, 23.241346 ], [ -2.285156, 23.079732 ], [ -2.109375, 23.079732 ], [ -2.109375, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 22.755921 ], [ -1.582031, 22.755921 ], [ -1.582031, 22.593726 ], [ -1.230469, 22.593726 ], [ -1.230469, 22.431340 ], [ -1.054688, 22.431340 ], [ -1.054688, 22.268764 ], [ -0.703125, 22.268764 ], [ -0.703125, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.703125, 21.453069 ], [ 0.703125, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 14.944785 ], [ -0.527344, 14.944785 ], [ -0.527344, 15.114553 ], [ -0.703125, 15.114553 ], [ -0.703125, 14.944785 ], [ -1.230469, 14.944785 ], [ -1.230469, 14.774883 ], [ -1.582031, 14.774883 ], [ -1.582031, 14.604847 ], [ -1.933594, 14.604847 ], [ -1.933594, 14.434680 ], [ -2.109375, 14.434680 ], [ -2.109375, 14.093957 ], [ -2.460938, 14.093957 ], [ -2.460938, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.752725 ], [ -2.988281, 13.752725 ], [ -2.988281, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.410994 ], [ -4.042969, 13.410994 ], [ -4.042969, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 12.897489 ], [ -4.394531, 12.897489 ], [ -4.394531, 12.382928 ], [ -4.570312, 12.382928 ], [ -4.570312, 12.211180 ], [ -4.746094, 12.211180 ], [ -4.746094, 12.039321 ], [ -4.921875, 12.039321 ], [ -4.921875, 11.867351 ], [ -5.097656, 11.867351 ], [ -5.097656, 11.695273 ], [ -5.273438, 11.695273 ], [ -5.273438, 11.178402 ], [ -5.449219, 11.178402 ], [ -5.449219, 10.141932 ], [ -5.976562, 10.141932 ], [ -5.976562, 10.314919 ], [ -6.152344, 10.314919 ], [ -6.152344, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.314919 ], [ -6.855469, 10.314919 ], [ -6.855469, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 10.314919 ], [ -8.261719, 10.314919 ], [ -8.261719, 10.833306 ], [ -8.613281, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.178402 ], [ -8.437500, 11.350797 ], [ -8.613281, 11.350797 ], [ -8.613281, 11.695273 ], [ -8.789062, 11.695273 ], [ -8.789062, 11.867351 ], [ -8.964844, 11.867351 ], [ -8.964844, 12.211180 ], [ -9.140625, 12.211180 ], [ -9.140625, 12.382928 ], [ -9.316406, 12.382928 ], [ -9.316406, 12.211180 ], [ -9.492188, 12.211180 ], [ -9.492188, 12.039321 ], [ -9.843750, 12.039321 ], [ -9.843750, 11.867351 ], [ -10.722656, 11.867351 ], [ -10.722656, 12.039321 ], [ -10.898438, 12.039321 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.211180 ], [ -11.074219, 12.039321 ], [ -11.425781, 12.039321 ], [ -11.425781, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 12.554564 ], [ -11.425781, 12.554564 ], [ -11.425781, 12.897489 ], [ -11.601562, 12.897489 ], [ -11.601562, 13.068777 ], [ -11.777344, 13.068777 ], [ -11.777344, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 13.581921 ], [ -12.128906, 13.581921 ], [ -12.128906, 14.604847 ], [ -11.777344, 14.604847 ], [ -11.777344, 15.114553 ], [ -11.601562, 15.114553 ], [ -11.601562, 15.453680 ], [ -11.425781, 15.453680 ], [ -11.425781, 15.284185 ], [ -11.074219, 15.284185 ], [ -11.074219, 15.114553 ], [ -10.195312, 15.114553 ], [ -10.195312, 15.284185 ], [ -9.492188, 15.284185 ], [ -9.492188, 15.453680 ], [ -5.625000, 15.453680 ], [ -5.625000, 15.623037 ], [ -5.449219, 15.623037 ], [ -5.449219, 15.961329 ], [ -5.273438, 15.961329 ], [ -5.273438, 16.130262 ], [ -5.449219, 16.130262 ], [ -5.449219, 16.972741 ], [ -5.625000, 16.972741 ], [ -5.625000, 18.479609 ], [ -5.800781, 18.479609 ], [ -5.800781, 19.808054 ], [ -5.976562, 19.808054 ], [ -5.976562, 21.289374 ], [ -6.152344, 21.289374 ], [ -6.152344, 22.755921 ], [ -6.328125, 22.755921 ], [ -6.328125, 24.206890 ], [ -6.503906, 24.206890 ], [ -6.503906, 25.005973 ], [ -4.921875, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.410994 ], [ 0.878906, 13.410994 ], [ 0.878906, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.988281, 9.968851 ], [ -2.812500, 9.968851 ], [ -2.812500, 9.622414 ], [ -3.164062, 9.622414 ], [ -3.164062, 9.795678 ], [ -3.515625, 9.795678 ], [ -3.515625, 9.968851 ], [ -3.691406, 9.968851 ], [ -3.691406, 9.795678 ], [ -4.042969, 9.795678 ], [ -4.042969, 9.622414 ], [ -4.746094, 9.622414 ], [ -4.746094, 9.968851 ], [ -4.921875, 9.968851 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.314919 ], [ -5.449219, 10.314919 ], [ -5.449219, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.695273 ], [ -5.097656, 11.695273 ], [ -5.097656, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.039321 ], [ -4.746094, 12.039321 ], [ -4.746094, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 12.382928 ], [ -4.394531, 12.382928 ], [ -4.394531, 12.897489 ], [ -4.218750, 12.897489 ], [ -4.218750, 13.239945 ], [ -4.042969, 13.239945 ], [ -4.042969, 13.410994 ], [ -3.164062, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.581921 ], [ -2.988281, 13.752725 ], [ -2.812500, 13.752725 ], [ -2.812500, 13.923404 ], [ -2.460938, 13.923404 ], [ -2.460938, 14.093957 ], [ -2.109375, 14.093957 ], [ -2.109375, 14.434680 ], [ -1.933594, 14.434680 ], [ -1.933594, 14.604847 ], [ -1.582031, 14.604847 ], [ -1.582031, 14.774883 ], [ -1.230469, 14.774883 ], [ -1.230469, 14.944785 ], [ -0.703125, 14.944785 ], [ -0.703125, 15.114553 ], [ -0.527344, 15.114553 ], [ -0.527344, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 13.752725 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.527344, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.410994 ], [ 0.878906, 13.410994 ], [ 0.878906, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.988281, 9.968851 ], [ -2.812500, 9.968851 ], [ -2.812500, 9.622414 ], [ -3.164062, 9.622414 ], [ -3.164062, 9.795678 ], [ -3.515625, 9.795678 ], [ -3.515625, 9.968851 ], [ -3.691406, 9.968851 ], [ -3.691406, 9.795678 ], [ -4.042969, 9.795678 ], [ -4.042969, 9.622414 ], [ -4.746094, 9.622414 ], [ -4.746094, 9.968851 ], [ -4.921875, 9.968851 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.314919 ], [ -5.449219, 10.314919 ], [ -5.449219, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.695273 ], [ -5.097656, 11.695273 ], [ -5.097656, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.039321 ], [ -4.746094, 12.039321 ], [ -4.746094, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 12.382928 ], [ -4.394531, 12.382928 ], [ -4.394531, 12.897489 ], [ -4.218750, 12.897489 ], [ -4.218750, 13.239945 ], [ -4.042969, 13.239945 ], [ -4.042969, 13.410994 ], [ -3.164062, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.581921 ], [ -2.988281, 13.752725 ], [ -2.812500, 13.752725 ], [ -2.812500, 13.923404 ], [ -2.460938, 13.923404 ], [ -2.460938, 14.093957 ], [ -2.109375, 14.093957 ], [ -2.109375, 14.434680 ], [ -1.933594, 14.434680 ], [ -1.933594, 14.604847 ], [ -1.582031, 14.604847 ], [ -1.582031, 14.774883 ], [ -1.230469, 14.774883 ], [ -1.230469, 14.944785 ], [ -0.703125, 14.944785 ], [ -0.703125, 15.114553 ], [ -0.527344, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.316406, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.964844, 7.536764 ], [ -8.789062, 7.536764 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 6.664608 ], [ -8.613281, 6.664608 ], [ -8.613281, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 6.140555 ], [ -7.910156, 6.140555 ], [ -7.910156, 5.965754 ], [ -7.734375, 5.965754 ], [ -7.734375, 5.790897 ], [ -7.558594, 5.790897 ], [ -7.558594, 4.740675 ], [ -7.734375, 4.740675 ], [ -7.734375, 4.390229 ], [ -8.261719, 4.390229 ], [ -8.261719, 4.565474 ], [ -8.613281, 4.565474 ], [ -8.613281, 4.740675 ], [ -8.964844, 4.740675 ], [ -8.964844, 4.915833 ], [ -9.140625, 4.915833 ], [ -9.140625, 5.090944 ], [ -9.316406, 5.090944 ], [ -9.316406, 5.266008 ], [ -9.667969, 5.266008 ], [ -9.667969, 5.441022 ], [ -9.843750, 5.441022 ], [ -9.843750, 5.615986 ], [ -10.019531, 5.615986 ], [ -10.019531, 5.790897 ], [ -10.371094, 5.790897 ], [ -10.371094, 5.965754 ], [ -10.722656, 5.965754 ], [ -10.722656, 6.140555 ], [ -10.898438, 6.140555 ], [ -10.898438, 6.315299 ], [ -11.074219, 6.315299 ], [ -11.074219, 6.489983 ], [ -11.250000, 6.489983 ], [ -11.250000, 6.664608 ], [ -11.425781, 6.664608 ], [ -11.425781, 7.013668 ], [ -11.250000, 7.013668 ], [ -11.250000, 7.188101 ], [ -11.074219, 7.188101 ], [ -11.074219, 7.362467 ], [ -10.898438, 7.362467 ], [ -10.898438, 7.710992 ], [ -10.722656, 7.710992 ], [ -10.722656, 7.885147 ], [ -10.546875, 7.885147 ], [ -10.546875, 8.059230 ], [ -10.371094, 8.059230 ], [ -10.371094, 8.233237 ], [ -10.195312, 8.233237 ], [ -10.195312, 8.407168 ], [ -9.492188, 8.407168 ], [ -9.492188, 8.059230 ], [ -9.316406, 8.059230 ], [ -9.316406, 7.362467 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.492188, 8.407168 ], [ -9.492188, 8.059230 ], [ -9.316406, 8.059230 ], [ -9.316406, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.964844, 7.536764 ], [ -8.789062, 7.536764 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 6.664608 ], [ -8.613281, 6.664608 ], [ -8.613281, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 6.140555 ], [ -7.910156, 6.140555 ], [ -7.910156, 5.965754 ], [ -7.734375, 5.965754 ], [ -7.734375, 5.790897 ], [ -7.558594, 5.790897 ], [ -7.558594, 4.740675 ], [ -7.734375, 4.390229 ], [ -8.261719, 4.390229 ], [ -8.261719, 4.565474 ], [ -8.613281, 4.565474 ], [ -8.613281, 4.740675 ], [ -8.964844, 4.740675 ], [ -8.964844, 4.915833 ], [ -9.140625, 4.915833 ], [ -9.140625, 5.090944 ], [ -9.316406, 5.090944 ], [ -9.316406, 5.266008 ], [ -9.667969, 5.266008 ], [ -9.667969, 5.441022 ], [ -9.843750, 5.441022 ], [ -9.843750, 5.615986 ], [ -10.019531, 5.615986 ], [ -10.019531, 5.790897 ], [ -10.371094, 5.790897 ], [ -10.371094, 5.965754 ], [ -10.722656, 5.965754 ], [ -10.722656, 6.140555 ], [ -10.898438, 6.140555 ], [ -10.898438, 6.315299 ], [ -11.074219, 6.315299 ], [ -11.074219, 6.489983 ], [ -11.250000, 6.489983 ], [ -11.250000, 6.664608 ], [ -11.425781, 6.664608 ], [ -11.425781, 7.013668 ], [ -11.250000, 7.013668 ], [ -11.250000, 7.188101 ], [ -11.074219, 7.188101 ], [ -11.074219, 7.362467 ], [ -10.898438, 7.362467 ], [ -10.898438, 7.710992 ], [ -10.722656, 7.710992 ], [ -10.722656, 7.885147 ], [ -10.546875, 7.885147 ], [ -10.546875, 8.059230 ], [ -10.371094, 8.059230 ], [ -10.371094, 8.233237 ], [ -10.195312, 8.233237 ], [ -10.195312, 8.407168 ], [ -9.492188, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.976562, 10.141932 ], [ -5.449219, 10.141932 ], [ -5.449219, 10.314919 ], [ -5.273438, 10.314919 ], [ -5.273438, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.968851 ], [ -4.746094, 9.968851 ], [ -4.746094, 9.622414 ], [ -4.042969, 9.622414 ], [ -4.042969, 9.795678 ], [ -3.691406, 9.795678 ], [ -3.691406, 9.968851 ], [ -3.515625, 9.968851 ], [ -3.515625, 9.795678 ], [ -3.164062, 9.795678 ], [ -3.164062, 9.622414 ], [ -2.812500, 9.622414 ], [ -2.812500, 8.928487 ], [ -2.636719, 8.928487 ], [ -2.636719, 7.885147 ], [ -2.812500, 7.885147 ], [ -2.812500, 7.536764 ], [ -2.988281, 7.536764 ], [ -2.988281, 6.839170 ], [ -3.164062, 6.839170 ], [ -3.164062, 5.965754 ], [ -2.988281, 5.965754 ], [ -2.988281, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.691406, 4.915833 ], [ -3.691406, 5.090944 ], [ -4.042969, 5.090944 ], [ -4.042969, 5.266008 ], [ -4.218750, 5.266008 ], [ -4.218750, 5.090944 ], [ -5.097656, 5.090944 ], [ -5.097656, 4.915833 ], [ -5.976562, 4.915833 ], [ -5.976562, 4.740675 ], [ -6.679688, 4.740675 ], [ -6.679688, 4.565474 ], [ -7.207031, 4.565474 ], [ -7.207031, 4.390229 ], [ -7.734375, 4.390229 ], [ -7.734375, 4.740675 ], [ -7.558594, 4.740675 ], [ -7.558594, 5.790897 ], [ -7.734375, 5.790897 ], [ -7.734375, 5.965754 ], [ -7.910156, 5.965754 ], [ -7.910156, 6.140555 ], [ -8.437500, 6.140555 ], [ -8.437500, 6.315299 ], [ -8.613281, 6.315299 ], [ -8.613281, 6.664608 ], [ -8.437500, 6.664608 ], [ -8.437500, 7.710992 ], [ -8.261719, 7.710992 ], [ -8.261719, 8.407168 ], [ -7.910156, 8.407168 ], [ -7.910156, 8.928487 ], [ -8.085938, 8.928487 ], [ -8.085938, 9.622414 ], [ -8.261719, 9.622414 ], [ -8.261719, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.855469, 10.314919 ], [ -6.679688, 10.314919 ], [ -6.679688, 10.487812 ], [ -6.152344, 10.487812 ], [ -6.152344, 10.314919 ], [ -5.976562, 10.314919 ], [ -5.976562, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.152344, 10.487812 ], [ -6.152344, 10.314919 ], [ -5.976562, 10.314919 ], [ -5.976562, 10.141932 ], [ -5.449219, 10.141932 ], [ -5.449219, 10.314919 ], [ -5.273438, 10.314919 ], [ -5.273438, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.968851 ], [ -4.746094, 9.968851 ], [ -4.746094, 9.622414 ], [ -4.042969, 9.622414 ], [ -4.042969, 9.795678 ], [ -3.691406, 9.795678 ], [ -3.691406, 9.968851 ], [ -3.515625, 9.968851 ], [ -3.515625, 9.795678 ], [ -3.164062, 9.795678 ], [ -3.164062, 9.622414 ], [ -2.812500, 9.622414 ], [ -2.812500, 8.928487 ], [ -2.636719, 8.928487 ], [ -2.636719, 7.885147 ], [ -2.812500, 7.885147 ], [ -2.812500, 7.536764 ], [ -2.988281, 7.536764 ], [ -2.988281, 6.839170 ], [ -3.164062, 6.839170 ], [ -3.164062, 5.965754 ], [ -2.988281, 5.965754 ], [ -2.988281, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.691406, 4.915833 ], [ -3.691406, 5.090944 ], [ -4.042969, 5.090944 ], [ -4.042969, 5.266008 ], [ -4.218750, 5.266008 ], [ -4.218750, 5.090944 ], [ -5.097656, 5.090944 ], [ -5.097656, 4.915833 ], [ -5.976562, 4.915833 ], [ -5.976562, 4.740675 ], [ -6.679688, 4.740675 ], [ -6.679688, 4.565474 ], [ -7.207031, 4.565474 ], [ -7.207031, 4.390229 ], [ -7.734375, 4.390229 ], [ -7.734375, 4.740675 ], [ -7.558594, 4.740675 ], [ -7.558594, 5.790897 ], [ -7.734375, 5.790897 ], [ -7.734375, 5.965754 ], [ -7.910156, 5.965754 ], [ -7.910156, 6.140555 ], [ -8.437500, 6.140555 ], [ -8.437500, 6.315299 ], [ -8.613281, 6.315299 ], [ -8.613281, 6.664608 ], [ -8.437500, 6.664608 ], [ -8.437500, 7.710992 ], [ -8.261719, 7.710992 ], [ -8.261719, 8.407168 ], [ -7.910156, 8.407168 ], [ -7.910156, 8.928487 ], [ -8.085938, 8.928487 ], [ -8.085938, 9.622414 ], [ -8.261719, 9.622414 ], [ -8.261719, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.855469, 10.314919 ], [ -6.679688, 10.314919 ], [ -6.679688, 10.487812 ], [ -6.152344, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.141932 ], [ 0.351562, 10.141932 ], [ 0.351562, 9.102097 ], [ 0.527344, 9.102097 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 5.790897 ], [ 0.703125, 5.790897 ], [ 0.703125, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.441022 ], [ -0.175781, 5.441022 ], [ -0.175781, 5.266008 ], [ -0.527344, 5.266008 ], [ -0.527344, 5.090944 ], [ -0.878906, 5.090944 ], [ -0.878906, 4.915833 ], [ -1.406250, 4.915833 ], [ -1.406250, 4.740675 ], [ -2.460938, 4.740675 ], [ -2.460938, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -2.988281, 5.615986 ], [ -2.988281, 5.965754 ], [ -3.164062, 5.965754 ], [ -3.164062, 6.839170 ], [ -2.988281, 6.839170 ], [ -2.988281, 7.536764 ], [ -2.812500, 7.536764 ], [ -2.812500, 7.885147 ], [ -2.636719, 7.885147 ], [ -2.636719, 8.928487 ], [ -2.812500, 8.928487 ], [ -2.812500, 9.968851 ], [ -2.988281, 9.968851 ], [ -2.988281, 11.005904 ], [ 0.000000, 11.005904 ], [ 0.000000, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.005904 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.141932 ], [ 0.351562, 10.141932 ], [ 0.351562, 9.102097 ], [ 0.527344, 9.102097 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 5.790897 ], [ 0.703125, 5.790897 ], [ 0.703125, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.441022 ], [ -0.175781, 5.441022 ], [ -0.175781, 5.266008 ], [ -0.527344, 5.266008 ], [ -0.527344, 5.090944 ], [ -0.878906, 5.090944 ], [ -0.878906, 4.915833 ], [ -1.406250, 4.915833 ], [ -1.406250, 4.740675 ], [ -2.460938, 4.740675 ], [ -2.460938, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -2.988281, 5.615986 ], [ -2.988281, 5.965754 ], [ -3.164062, 5.965754 ], [ -3.164062, 6.839170 ], [ -2.988281, 6.839170 ], [ -2.988281, 7.536764 ], [ -2.812500, 7.536764 ], [ -2.812500, 7.885147 ], [ -2.636719, 7.885147 ], [ -2.636719, 8.928487 ], [ -2.812500, 8.928487 ], [ -2.812500, 9.968851 ], [ -2.988281, 9.968851 ], [ -2.988281, 11.005904 ], [ 0.000000, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ -0.175781, 21.779905 ], [ -0.175781, 21.943046 ], [ -0.527344, 21.943046 ], [ -0.527344, 22.105999 ], [ -0.703125, 22.105999 ], [ -0.703125, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.431340 ], [ -1.230469, 22.431340 ], [ -1.230469, 22.593726 ], [ -1.582031, 22.593726 ], [ -1.582031, 22.755921 ], [ -1.757812, 22.755921 ], [ -1.757812, 22.917923 ], [ -2.109375, 22.917923 ], [ -2.109375, 23.079732 ], [ -2.285156, 23.079732 ], [ -2.285156, 23.241346 ], [ -2.460938, 23.241346 ], [ -2.460938, 23.402765 ], [ -2.812500, 23.402765 ], [ -2.812500, 23.563987 ], [ -2.988281, 23.563987 ], [ -2.988281, 23.725012 ], [ -3.164062, 23.725012 ], [ -3.164062, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 24.046464 ], [ -3.691406, 24.046464 ], [ -3.691406, 24.206890 ], [ -3.867188, 24.206890 ], [ -3.867188, 24.367114 ], [ -4.218750, 24.367114 ], [ -4.218750, 24.527135 ], [ -4.394531, 24.527135 ], [ -4.394531, 24.686952 ], [ -4.570312, 24.686952 ], [ -4.570312, 24.846565 ], [ -4.921875, 24.846565 ], [ -4.921875, 25.005973 ], [ -5.097656, 25.005973 ], [ -5.097656, 25.165173 ], [ -5.449219, 25.165173 ], [ -5.449219, 25.324167 ], [ -5.625000, 25.324167 ], [ -5.625000, 25.482951 ], [ -5.800781, 25.482951 ], [ -5.800781, 25.641526 ], [ -6.152344, 25.641526 ], [ -6.152344, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 25.958045 ], [ -6.679688, 25.958045 ], [ -6.679688, 26.115986 ], [ -6.855469, 26.115986 ], [ -6.855469, 26.273714 ], [ -7.031250, 26.273714 ], [ -7.031250, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.588527 ], [ -7.558594, 26.588527 ], [ -7.558594, 26.745610 ], [ -7.910156, 26.745610 ], [ -7.910156, 26.902477 ], [ -8.085938, 26.902477 ], [ -8.085938, 27.059126 ], [ -8.261719, 27.059126 ], [ -8.261719, 27.215556 ], [ -8.613281, 27.215556 ], [ -8.613281, 28.767659 ], [ -8.437500, 28.767659 ], [ -8.437500, 28.921631 ], [ -8.085938, 28.921631 ], [ -8.085938, 29.075375 ], [ -7.734375, 29.075375 ], [ -7.734375, 29.228890 ], [ -7.382812, 29.228890 ], [ -7.382812, 29.382175 ], [ -7.031250, 29.382175 ], [ -7.031250, 29.535230 ], [ -6.328125, 29.535230 ], [ -6.328125, 29.688053 ], [ -5.625000, 29.688053 ], [ -5.625000, 29.840644 ], [ -5.273438, 29.840644 ], [ -5.273438, 29.993002 ], [ -5.097656, 29.993002 ], [ -5.097656, 30.297018 ], [ -4.921875, 30.297018 ], [ -4.921875, 30.448674 ], [ -4.570312, 30.448674 ], [ -4.570312, 30.600094 ], [ -4.218750, 30.600094 ], [ -4.218750, 30.751278 ], [ -3.867188, 30.751278 ], [ -3.867188, 30.902225 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -2.812500, 31.653381 ], [ -2.812500, 31.952162 ], [ -2.636719, 31.952162 ], [ -2.636719, 32.101190 ], [ -1.757812, 32.101190 ], [ -1.757812, 32.249974 ], [ -1.230469, 32.249974 ], [ -1.230469, 32.398516 ], [ -1.054688, 32.398516 ], [ -1.054688, 32.694866 ], [ -1.406250, 32.694866 ], [ -1.406250, 32.990236 ], [ -1.582031, 32.990236 ], [ -1.582031, 33.578015 ], [ -1.757812, 33.578015 ], [ -1.757812, 34.741612 ], [ -1.933594, 34.741612 ], [ -1.933594, 35.029996 ], [ -2.109375, 35.029996 ], [ -2.109375, 35.173808 ], [ -1.933594, 35.173808 ], [ -1.933594, 35.317366 ], [ -1.757812, 35.317366 ], [ -1.757812, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 35.603719 ], [ -1.230469, 35.603719 ], [ -1.230469, 35.746512 ], [ -0.527344, 35.746512 ], [ -0.527344, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.173357 ], [ 0.527344, 36.173357 ], [ 0.527344, 36.315125 ], [ 0.878906, 36.315125 ], [ 0.878906, 21.289374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.315125 ], [ 0.878906, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ -0.175781, 21.779905 ], [ -0.175781, 21.943046 ], [ -0.527344, 21.943046 ], [ -0.527344, 22.105999 ], [ -0.703125, 22.105999 ], [ -0.703125, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.431340 ], [ -1.230469, 22.431340 ], [ -1.230469, 22.593726 ], [ -1.582031, 22.593726 ], [ -1.582031, 22.755921 ], [ -1.757812, 22.755921 ], [ -1.757812, 22.917923 ], [ -2.109375, 22.917923 ], [ -2.109375, 23.079732 ], [ -2.285156, 23.079732 ], [ -2.285156, 23.241346 ], [ -2.460938, 23.241346 ], [ -2.460938, 23.402765 ], [ -2.812500, 23.402765 ], [ -2.812500, 23.563987 ], [ -2.988281, 23.563987 ], [ -2.988281, 23.725012 ], [ -3.164062, 23.725012 ], [ -3.164062, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 24.046464 ], [ -3.691406, 24.046464 ], [ -3.691406, 24.206890 ], [ -3.867188, 24.206890 ], [ -3.867188, 24.367114 ], [ -4.218750, 24.367114 ], [ -4.218750, 24.527135 ], [ -4.394531, 24.527135 ], [ -4.394531, 24.686952 ], [ -4.570312, 24.686952 ], [ -4.570312, 24.846565 ], [ -4.921875, 24.846565 ], [ -4.921875, 25.005973 ], [ -5.097656, 25.005973 ], [ -5.097656, 25.165173 ], [ -5.449219, 25.165173 ], [ -5.449219, 25.324167 ], [ -5.625000, 25.324167 ], [ -5.625000, 25.482951 ], [ -5.800781, 25.482951 ], [ -5.800781, 25.641526 ], [ -6.152344, 25.641526 ], [ -6.152344, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 25.958045 ], [ -6.679688, 25.958045 ], [ -6.679688, 26.115986 ], [ -6.855469, 26.115986 ], [ -6.855469, 26.273714 ], [ -7.031250, 26.273714 ], [ -7.031250, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.588527 ], [ -7.558594, 26.588527 ], [ -7.558594, 26.745610 ], [ -7.910156, 26.745610 ], [ -7.910156, 26.902477 ], [ -8.085938, 26.902477 ], [ -8.085938, 27.059126 ], [ -8.261719, 27.059126 ], [ -8.261719, 27.215556 ], [ -8.613281, 27.215556 ], [ -8.613281, 28.767659 ], [ -8.437500, 28.767659 ], [ -8.437500, 28.921631 ], [ -8.085938, 28.921631 ], [ -8.085938, 29.075375 ], [ -7.734375, 29.075375 ], [ -7.734375, 29.228890 ], [ -7.382812, 29.228890 ], [ -7.382812, 29.382175 ], [ -7.031250, 29.382175 ], [ -7.031250, 29.535230 ], [ -6.328125, 29.535230 ], [ -6.328125, 29.688053 ], [ -5.625000, 29.688053 ], [ -5.625000, 29.840644 ], [ -5.273438, 29.840644 ], [ -5.273438, 29.993002 ], [ -5.097656, 29.993002 ], [ -5.097656, 30.297018 ], [ -4.921875, 30.297018 ], [ -4.921875, 30.448674 ], [ -4.570312, 30.448674 ], [ -4.570312, 30.600094 ], [ -4.218750, 30.600094 ], [ -4.218750, 30.751278 ], [ -3.867188, 30.751278 ], [ -3.867188, 30.902225 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -2.812500, 31.653381 ], [ -2.812500, 31.952162 ], [ -2.636719, 31.952162 ], [ -2.636719, 32.101190 ], [ -1.757812, 32.101190 ], [ -1.757812, 32.249974 ], [ -1.230469, 32.249974 ], [ -1.230469, 32.398516 ], [ -1.054688, 32.398516 ], [ -1.054688, 32.694866 ], [ -1.406250, 32.694866 ], [ -1.406250, 32.990236 ], [ -1.582031, 32.990236 ], [ -1.582031, 33.578015 ], [ -1.757812, 33.578015 ], [ -1.757812, 34.741612 ], [ -1.933594, 34.741612 ], [ -1.933594, 35.029996 ], [ -2.109375, 35.029996 ], [ -2.109375, 35.173808 ], [ -1.933594, 35.173808 ], [ -1.933594, 35.317366 ], [ -1.757812, 35.317366 ], [ -1.757812, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 35.603719 ], [ -1.230469, 35.603719 ], [ -1.230469, 35.746512 ], [ -0.527344, 35.746512 ], [ -0.527344, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.173357 ], [ 0.527344, 36.173357 ], [ 0.527344, 36.315125 ], [ 0.878906, 36.315125 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 13.410994 ], [ 0.703125, 13.410994 ], [ 0.703125, 13.581921 ], [ 0.527344, 13.581921 ], [ 0.527344, 13.752725 ], [ 0.351562, 13.752725 ], [ 0.351562, 14.944785 ], [ 0.878906, 14.944785 ], [ 0.878906, 13.410994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.944785 ], [ 0.878906, 13.410994 ], [ 0.703125, 13.410994 ], [ 0.703125, 13.581921 ], [ 0.527344, 13.581921 ], [ 0.527344, 13.752725 ], [ 0.351562, 13.752725 ], [ 0.351562, 14.944785 ], [ 0.878906, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.314919 ], [ 0.878906, 10.314919 ], [ 0.878906, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 9.102097 ], [ 0.351562, 9.102097 ], [ 0.351562, 10.141932 ], [ 0.175781, 10.141932 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.314919 ], [ 0.878906, 10.314919 ], [ 0.878906, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 9.102097 ], [ 0.351562, 9.102097 ], [ 0.351562, 10.141932 ], [ 0.175781, 10.141932 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.314919 ], [ 0.703125, 10.314919 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ], [ 0.878906, 10.314919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.660608 ], [ 0.878906, 10.314919 ], [ 0.703125, 10.314919 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.925781, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.652977 ], [ -34.277344, 66.652977 ], [ -34.277344, 66.583217 ], [ -34.453125, 66.583217 ], [ -34.453125, 66.513260 ], [ -34.628906, 66.513260 ], [ -34.628906, 66.443107 ], [ -34.980469, 66.443107 ], [ -34.980469, 66.372755 ], [ -35.156250, 66.372755 ], [ -35.156250, 66.302205 ], [ -35.332031, 66.302205 ], [ -35.332031, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.160511 ], [ -35.683594, 66.160511 ], [ -35.683594, 66.089364 ], [ -36.035156, 66.089364 ], [ -36.035156, 66.018018 ], [ -36.210938, 66.018018 ], [ -36.210938, 65.946472 ], [ -37.089844, 65.946472 ], [ -37.089844, 65.874725 ], [ -37.441406, 65.874725 ], [ -37.441406, 65.802776 ], [ -37.792969, 65.802776 ], [ -37.792969, 65.730626 ], [ -38.144531, 65.730626 ], [ -38.144531, 65.658275 ], [ -38.496094, 65.658275 ], [ -38.496094, 65.585720 ], [ -38.847656, 65.585720 ], [ -38.847656, 65.512963 ], [ -39.375000, 65.512963 ], [ -39.375000, 65.440002 ], [ -39.726562, 65.440002 ], [ -39.726562, 65.366837 ], [ -39.902344, 65.366837 ], [ -39.902344, 65.219894 ], [ -40.078125, 65.219894 ], [ -40.078125, 65.146115 ], [ -40.253906, 65.146115 ], [ -40.253906, 64.997939 ], [ -40.429688, 64.997939 ], [ -40.429688, 64.848937 ], [ -40.605469, 64.848937 ], [ -40.605469, 64.014496 ], [ -40.781250, 64.014496 ], [ -40.781250, 63.782486 ], [ -40.957031, 63.782486 ], [ -40.957031, 63.548552 ], [ -41.132812, 63.548552 ], [ -41.132812, 63.391522 ], [ -41.308594, 63.391522 ], [ -41.308594, 63.312683 ], [ -41.484375, 63.312683 ], [ -41.484375, 63.233627 ], [ -41.660156, 63.233627 ], [ -41.660156, 63.154355 ], [ -41.835938, 63.154355 ], [ -41.835938, 63.074866 ], [ -42.011719, 63.074866 ], [ -42.011719, 62.995158 ], [ -42.187500, 62.995158 ], [ -42.187500, 62.915233 ], [ -42.363281, 62.915233 ], [ -42.363281, 62.835089 ], [ -42.539062, 62.835089 ], [ -42.539062, 62.754726 ], [ -42.714844, 62.754726 ], [ -42.714844, 62.674143 ], [ -42.890625, 62.674143 ], [ -42.890625, 62.512318 ], [ -42.714844, 62.512318 ], [ -42.714844, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 62.021528 ], [ -42.363281, 62.021528 ], [ -42.363281, 61.773123 ], [ -42.539062, 61.773123 ], [ -42.539062, 61.522695 ], [ -42.714844, 61.522695 ], [ -42.714844, 61.185625 ], [ -42.890625, 61.185625 ], [ -42.890625, 60.930432 ], [ -43.066406, 60.930432 ], [ -43.066406, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.239811 ], [ -43.417969, 60.239811 ], [ -43.417969, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.527344, 60.413852 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 66.861082 ], [ -33.925781, 66.861082 ], [ -33.925781, 66.791909 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.925781, 66.861082 ], [ -33.925781, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.652977 ], [ -34.277344, 66.652977 ], [ -34.277344, 66.583217 ], [ -34.453125, 66.583217 ], [ -34.453125, 66.513260 ], [ -34.628906, 66.513260 ], [ -34.628906, 66.443107 ], [ -34.980469, 66.443107 ], [ -34.980469, 66.372755 ], [ -35.156250, 66.372755 ], [ -35.156250, 66.302205 ], [ -35.332031, 66.302205 ], [ -35.332031, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.160511 ], [ -35.683594, 66.160511 ], [ -35.683594, 66.089364 ], [ -36.035156, 66.089364 ], [ -36.035156, 66.018018 ], [ -36.210938, 66.018018 ], [ -36.210938, 65.946472 ], [ -37.089844, 65.946472 ], [ -37.089844, 65.874725 ], [ -37.441406, 65.874725 ], [ -37.441406, 65.802776 ], [ -37.792969, 65.802776 ], [ -37.792969, 65.730626 ], [ -38.144531, 65.730626 ], [ -38.144531, 65.658275 ], [ -38.496094, 65.658275 ], [ -38.496094, 65.585720 ], [ -38.847656, 65.585720 ], [ -38.847656, 65.512963 ], [ -39.375000, 65.512963 ], [ -39.375000, 65.440002 ], [ -39.726562, 65.440002 ], [ -39.726562, 65.366837 ], [ -39.902344, 65.366837 ], [ -39.902344, 65.219894 ], [ -40.078125, 65.219894 ], [ -40.078125, 65.146115 ], [ -40.253906, 65.146115 ], [ -40.253906, 64.997939 ], [ -40.429688, 64.997939 ], [ -40.429688, 64.848937 ], [ -40.605469, 64.848937 ], [ -40.605469, 64.014496 ], [ -40.781250, 64.014496 ], [ -40.781250, 63.782486 ], [ -40.957031, 63.782486 ], [ -40.957031, 63.548552 ], [ -41.132812, 63.548552 ], [ -41.132812, 63.391522 ], [ -41.308594, 63.391522 ], [ -41.308594, 63.312683 ], [ -41.484375, 63.312683 ], [ -41.484375, 63.233627 ], [ -41.660156, 63.233627 ], [ -41.660156, 63.154355 ], [ -41.835938, 63.154355 ], [ -41.835938, 63.074866 ], [ -42.011719, 63.074866 ], [ -42.011719, 62.995158 ], [ -42.187500, 62.995158 ], [ -42.187500, 62.915233 ], [ -42.363281, 62.915233 ], [ -42.363281, 62.835089 ], [ -42.539062, 62.835089 ], [ -42.539062, 62.754726 ], [ -42.714844, 62.754726 ], [ -42.714844, 62.674143 ], [ -42.890625, 62.674143 ], [ -42.890625, 62.512318 ], [ -42.714844, 62.512318 ], [ -42.714844, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 62.021528 ], [ -42.363281, 62.021528 ], [ -42.363281, 61.773123 ], [ -42.539062, 61.773123 ], [ -42.539062, 61.522695 ], [ -42.714844, 61.522695 ], [ -42.714844, 61.185625 ], [ -42.890625, 61.185625 ], [ -42.890625, 60.930432 ], [ -43.066406, 60.930432 ], [ -43.066406, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.239811 ], [ -43.417969, 60.239811 ], [ -43.417969, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.527344, 60.413852 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 66.861082 ], [ -33.925781, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.730626 ], [ -14.589844, 65.730626 ], [ -14.589844, 65.658275 ], [ -14.414062, 65.658275 ], [ -14.414062, 65.512963 ], [ -14.238281, 65.512963 ], [ -14.238281, 65.440002 ], [ -14.062500, 65.440002 ], [ -14.062500, 65.366837 ], [ -13.886719, 65.366837 ], [ -13.886719, 65.219894 ], [ -13.710938, 65.219894 ], [ -13.710938, 65.146115 ], [ -13.535156, 65.146115 ], [ -13.535156, 65.072130 ], [ -13.710938, 65.072130 ], [ -13.710938, 64.997939 ], [ -13.886719, 64.997939 ], [ -13.886719, 64.848937 ], [ -14.062500, 64.848937 ], [ -14.062500, 64.774125 ], [ -14.238281, 64.774125 ], [ -14.238281, 64.699105 ], [ -14.414062, 64.699105 ], [ -14.414062, 64.623877 ], [ -14.589844, 64.623877 ], [ -14.589844, 64.472794 ], [ -14.765625, 64.472794 ], [ -14.765625, 64.396938 ], [ -14.941406, 64.396938 ], [ -14.941406, 64.320872 ], [ -15.292969, 64.320872 ], [ -15.292969, 64.244595 ], [ -15.644531, 64.244595 ], [ -15.644531, 64.168107 ], [ -15.996094, 64.168107 ], [ -15.996094, 64.091408 ], [ -16.171875, 64.091408 ], [ -16.171875, 64.014496 ], [ -16.523438, 64.014496 ], [ -16.523438, 63.937372 ], [ -16.875000, 63.937372 ], [ -16.875000, 63.860036 ], [ -17.226562, 63.860036 ], [ -17.226562, 63.782486 ], [ -17.578125, 63.782486 ], [ -17.578125, 63.704722 ], [ -17.753906, 63.704722 ], [ -17.753906, 63.626745 ], [ -18.105469, 63.626745 ], [ -18.105469, 63.548552 ], [ -18.457031, 63.548552 ], [ -18.457031, 63.470145 ], [ -19.160156, 63.470145 ], [ -19.160156, 63.548552 ], [ -19.863281, 63.548552 ], [ -19.863281, 63.626745 ], [ -20.390625, 63.626745 ], [ -20.390625, 63.704722 ], [ -21.093750, 63.704722 ], [ -21.093750, 63.782486 ], [ -21.796875, 63.782486 ], [ -21.796875, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.014496 ], [ -22.324219, 64.014496 ], [ -22.324219, 64.168107 ], [ -22.148438, 64.168107 ], [ -22.148438, 64.244595 ], [ -21.972656, 64.244595 ], [ -21.972656, 64.320872 ], [ -21.796875, 64.320872 ], [ -21.796875, 64.396938 ], [ -21.972656, 64.396938 ], [ -21.972656, 64.472794 ], [ -22.324219, 64.472794 ], [ -22.324219, 64.548440 ], [ -22.675781, 64.548440 ], [ -22.675781, 64.623877 ], [ -23.027344, 64.623877 ], [ -23.027344, 64.699105 ], [ -23.203125, 64.699105 ], [ -23.203125, 64.774125 ], [ -23.554688, 64.774125 ], [ -23.554688, 64.848937 ], [ -23.906250, 64.848937 ], [ -23.906250, 64.923542 ], [ -23.378906, 64.923542 ], [ -23.378906, 64.997939 ], [ -22.500000, 64.997939 ], [ -22.500000, 65.072130 ], [ -22.148438, 65.072130 ], [ -22.148438, 65.366837 ], [ -22.675781, 65.366837 ], [ -22.675781, 65.440002 ], [ -23.378906, 65.440002 ], [ -23.378906, 65.512963 ], [ -24.082031, 65.512963 ], [ -24.082031, 65.585720 ], [ -24.257812, 65.585720 ], [ -24.257812, 65.658275 ], [ -24.082031, 65.658275 ], [ -24.082031, 65.874725 ], [ -23.906250, 65.874725 ], [ -23.906250, 66.089364 ], [ -23.730469, 66.089364 ], [ -23.730469, 66.231457 ], [ -23.378906, 66.231457 ], [ -23.378906, 66.302205 ], [ -22.851562, 66.302205 ], [ -22.851562, 66.372755 ], [ -22.324219, 66.372755 ], [ -22.324219, 66.443107 ], [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.231457 ], [ -21.621094, 66.231457 ], [ -21.621094, 66.160511 ], [ -21.445312, 66.160511 ], [ -21.445312, 66.089364 ], [ -21.269531, 66.089364 ], [ -21.269531, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.874725 ], [ -20.917969, 65.874725 ], [ -20.917969, 65.802776 ], [ -20.742188, 65.802776 ], [ -20.742188, 65.730626 ], [ -20.390625, 65.730626 ], [ -20.390625, 65.802776 ], [ -20.214844, 65.802776 ], [ -20.214844, 65.874725 ], [ -20.039062, 65.874725 ], [ -20.039062, 65.946472 ], [ -19.863281, 65.946472 ], [ -19.863281, 66.018018 ], [ -19.511719, 66.018018 ], [ -19.511719, 66.089364 ], [ -19.335938, 66.089364 ], [ -19.335938, 66.160511 ], [ -19.160156, 66.160511 ], [ -19.160156, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.160511 ], [ -18.281250, 66.160511 ], [ -18.281250, 66.089364 ], [ -17.929688, 66.089364 ], [ -17.929688, 66.018018 ], [ -17.578125, 66.018018 ], [ -17.578125, 66.089364 ], [ -17.402344, 66.089364 ], [ -17.402344, 66.160511 ], [ -17.050781, 66.160511 ], [ -17.050781, 66.231457 ], [ -16.875000, 66.231457 ], [ -16.875000, 66.302205 ], [ -16.699219, 66.302205 ], [ -16.699219, 66.372755 ], [ -16.347656, 66.372755 ], [ -16.347656, 66.443107 ], [ -16.171875, 66.443107 ], [ -16.171875, 66.513260 ], [ -15.468750, 66.513260 ], [ -15.468750, 66.443107 ], [ -14.589844, 66.443107 ], [ -14.589844, 66.089364 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 66.513260 ], [ -15.468750, 66.443107 ], [ -14.589844, 66.443107 ], [ -14.589844, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.730626 ], [ -14.589844, 65.730626 ], [ -14.589844, 65.658275 ], [ -14.414062, 65.658275 ], [ -14.414062, 65.512963 ], [ -14.238281, 65.512963 ], [ -14.238281, 65.440002 ], [ -14.062500, 65.440002 ], [ -14.062500, 65.366837 ], [ -13.886719, 65.366837 ], [ -13.886719, 65.219894 ], [ -13.710938, 65.219894 ], [ -13.710938, 65.146115 ], [ -13.535156, 65.146115 ], [ -13.535156, 65.072130 ], [ -13.710938, 65.072130 ], [ -13.710938, 64.997939 ], [ -13.886719, 64.997939 ], [ -13.886719, 64.848937 ], [ -14.062500, 64.848937 ], [ -14.062500, 64.774125 ], [ -14.238281, 64.774125 ], [ -14.238281, 64.699105 ], [ -14.414062, 64.699105 ], [ -14.414062, 64.623877 ], [ -14.589844, 64.623877 ], [ -14.589844, 64.472794 ], [ -14.765625, 64.472794 ], [ -14.765625, 64.396938 ], [ -14.941406, 64.396938 ], [ -14.941406, 64.320872 ], [ -15.292969, 64.320872 ], [ -15.292969, 64.244595 ], [ -15.644531, 64.244595 ], [ -15.644531, 64.168107 ], [ -15.996094, 64.168107 ], [ -15.996094, 64.091408 ], [ -16.171875, 64.091408 ], [ -16.171875, 64.014496 ], [ -16.523438, 64.014496 ], [ -16.523438, 63.937372 ], [ -16.875000, 63.937372 ], [ -16.875000, 63.860036 ], [ -17.226562, 63.860036 ], [ -17.226562, 63.782486 ], [ -17.578125, 63.782486 ], [ -17.578125, 63.704722 ], [ -17.753906, 63.704722 ], [ -17.753906, 63.626745 ], [ -18.105469, 63.626745 ], [ -18.105469, 63.548552 ], [ -18.457031, 63.548552 ], [ -18.457031, 63.470145 ], [ -19.160156, 63.470145 ], [ -19.160156, 63.548552 ], [ -19.863281, 63.548552 ], [ -19.863281, 63.626745 ], [ -20.390625, 63.626745 ], [ -20.390625, 63.704722 ], [ -21.093750, 63.704722 ], [ -21.093750, 63.782486 ], [ -21.796875, 63.782486 ], [ -21.796875, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.014496 ], [ -22.324219, 64.014496 ], [ -22.324219, 64.168107 ], [ -22.148438, 64.168107 ], [ -22.148438, 64.244595 ], [ -21.972656, 64.244595 ], [ -21.972656, 64.320872 ], [ -21.796875, 64.320872 ], [ -21.796875, 64.396938 ], [ -21.972656, 64.396938 ], [ -21.972656, 64.472794 ], [ -22.324219, 64.472794 ], [ -22.324219, 64.548440 ], [ -22.675781, 64.548440 ], [ -22.675781, 64.623877 ], [ -23.027344, 64.623877 ], [ -23.027344, 64.699105 ], [ -23.203125, 64.699105 ], [ -23.203125, 64.774125 ], [ -23.554688, 64.774125 ], [ -23.554688, 64.848937 ], [ -23.906250, 64.848937 ], [ -23.906250, 64.923542 ], [ -23.378906, 64.923542 ], [ -23.378906, 64.997939 ], [ -22.500000, 64.997939 ], [ -22.500000, 65.072130 ], [ -22.148438, 65.072130 ], [ -22.148438, 65.366837 ], [ -22.675781, 65.366837 ], [ -22.675781, 65.440002 ], [ -23.378906, 65.440002 ], [ -23.378906, 65.512963 ], [ -24.082031, 65.512963 ], [ -24.082031, 65.585720 ], [ -24.257812, 65.585720 ], [ -24.257812, 65.658275 ], [ -24.082031, 65.658275 ], [ -24.082031, 65.874725 ], [ -23.906250, 65.874725 ], [ -23.906250, 66.089364 ], [ -23.730469, 66.089364 ], [ -23.730469, 66.231457 ], [ -23.378906, 66.231457 ], [ -23.378906, 66.302205 ], [ -22.851562, 66.302205 ], [ -22.851562, 66.372755 ], [ -22.324219, 66.372755 ], [ -22.324219, 66.443107 ], [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.231457 ], [ -21.621094, 66.231457 ], [ -21.621094, 66.160511 ], [ -21.445312, 66.160511 ], [ -21.445312, 66.089364 ], [ -21.269531, 66.089364 ], [ -21.269531, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.874725 ], [ -20.917969, 65.874725 ], [ -20.917969, 65.802776 ], [ -20.742188, 65.802776 ], [ -20.742188, 65.730626 ], [ -20.390625, 65.730626 ], [ -20.390625, 65.802776 ], [ -20.214844, 65.802776 ], [ -20.214844, 65.874725 ], [ -20.039062, 65.874725 ], [ -20.039062, 65.946472 ], [ -19.863281, 65.946472 ], [ -19.863281, 66.018018 ], [ -19.511719, 66.018018 ], [ -19.511719, 66.089364 ], [ -19.335938, 66.089364 ], [ -19.335938, 66.160511 ], [ -19.160156, 66.160511 ], [ -19.160156, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.160511 ], [ -18.281250, 66.160511 ], [ -18.281250, 66.089364 ], [ -17.929688, 66.089364 ], [ -17.929688, 66.018018 ], [ -17.578125, 66.018018 ], [ -17.578125, 66.089364 ], [ -17.402344, 66.089364 ], [ -17.402344, 66.160511 ], [ -17.050781, 66.160511 ], [ -17.050781, 66.231457 ], [ -16.875000, 66.231457 ], [ -16.875000, 66.302205 ], [ -16.699219, 66.302205 ], [ -16.699219, 66.372755 ], [ -16.347656, 66.372755 ], [ -16.347656, 66.443107 ], [ -16.171875, 66.443107 ], [ -16.171875, 66.513260 ], [ -15.468750, 66.513260 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.855469, 53.956086 ], [ -6.503906, 53.956086 ], [ -6.503906, 53.852527 ], [ -6.152344, 53.852527 ], [ -6.152344, 53.435719 ], [ -5.976562, 53.435719 ], [ -5.976562, 53.014783 ], [ -6.152344, 53.014783 ], [ -6.152344, 52.802761 ], [ -6.328125, 52.802761 ], [ -6.328125, 52.696361 ], [ -6.503906, 52.696361 ], [ -6.503906, 52.482780 ], [ -6.679688, 52.482780 ], [ -6.679688, 52.268157 ], [ -6.855469, 52.268157 ], [ -6.855469, 52.160455 ], [ -7.207031, 52.160455 ], [ -7.207031, 52.052490 ], [ -7.558594, 52.052490 ], [ -7.558594, 51.944265 ], [ -7.734375, 51.944265 ], [ -7.734375, 51.835778 ], [ -8.085938, 51.835778 ], [ -8.085938, 51.727028 ], [ -8.437500, 51.727028 ], [ -8.437500, 51.618017 ], [ -9.140625, 51.618017 ], [ -9.140625, 51.727028 ], [ -9.843750, 51.727028 ], [ -9.843750, 51.835778 ], [ -10.019531, 51.835778 ], [ -10.019531, 51.944265 ], [ -9.843750, 51.944265 ], [ -9.843750, 52.160455 ], [ -9.667969, 52.160455 ], [ -9.667969, 52.375599 ], [ -9.492188, 52.375599 ], [ -9.492188, 52.589701 ], [ -9.316406, 52.589701 ], [ -9.316406, 52.802761 ], [ -9.140625, 52.802761 ], [ -9.140625, 53.014783 ], [ -9.316406, 53.014783 ], [ -9.316406, 53.330873 ], [ -9.492188, 53.330873 ], [ -9.492188, 53.644638 ], [ -9.667969, 53.644638 ], [ -9.667969, 53.852527 ], [ -9.492188, 53.852527 ], [ -9.492188, 53.956086 ], [ -9.316406, 53.956086 ], [ -9.316406, 54.059388 ], [ -9.140625, 54.059388 ], [ -9.140625, 54.162434 ], [ -8.964844, 54.162434 ], [ -8.964844, 54.265224 ], [ -8.789062, 54.265224 ], [ -8.789062, 54.367759 ], [ -8.613281, 54.367759 ], [ -8.613281, 54.470038 ], [ -8.437500, 54.470038 ], [ -8.437500, 54.572062 ], [ -8.261719, 54.572062 ], [ -8.261719, 54.673831 ], [ -8.085938, 54.673831 ], [ -8.085938, 54.775346 ], [ -7.910156, 54.775346 ], [ -7.910156, 54.977614 ], [ -7.734375, 54.977614 ], [ -7.734375, 55.078367 ], [ -7.558594, 55.078367 ], [ -7.558594, 54.876607 ], [ -7.382812, 54.876607 ], [ -7.382812, 54.265224 ], [ -7.558594, 54.265224 ], [ -7.558594, 54.059388 ], [ -6.855469, 54.059388 ], [ -6.855469, 53.956086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.558594, 55.078367 ], [ -7.558594, 54.876607 ], [ -7.382812, 54.876607 ], [ -7.382812, 54.265224 ], [ -7.558594, 54.265224 ], [ -7.558594, 54.059388 ], [ -6.855469, 54.059388 ], [ -6.855469, 53.956086 ], [ -6.503906, 53.956086 ], [ -6.503906, 53.852527 ], [ -6.152344, 53.852527 ], [ -6.152344, 53.435719 ], [ -5.976562, 53.435719 ], [ -5.976562, 53.014783 ], [ -6.152344, 53.014783 ], [ -6.152344, 52.802761 ], [ -6.328125, 52.802761 ], [ -6.328125, 52.696361 ], [ -6.503906, 52.696361 ], [ -6.503906, 52.482780 ], [ -6.679688, 52.482780 ], [ -6.679688, 52.268157 ], [ -6.855469, 52.268157 ], [ -6.855469, 52.160455 ], [ -7.207031, 52.160455 ], [ -7.207031, 52.052490 ], [ -7.558594, 52.052490 ], [ -7.558594, 51.944265 ], [ -7.734375, 51.944265 ], [ -7.734375, 51.835778 ], [ -8.085938, 51.835778 ], [ -8.085938, 51.727028 ], [ -8.437500, 51.727028 ], [ -8.437500, 51.618017 ], [ -9.140625, 51.618017 ], [ -9.140625, 51.727028 ], [ -9.843750, 51.727028 ], [ -9.843750, 51.835778 ], [ -10.019531, 51.835778 ], [ -10.019531, 51.944265 ], [ -9.843750, 51.944265 ], [ -9.843750, 52.160455 ], [ -9.667969, 52.160455 ], [ -9.667969, 52.375599 ], [ -9.492188, 52.375599 ], [ -9.492188, 52.589701 ], [ -9.316406, 52.589701 ], [ -9.316406, 52.802761 ], [ -9.140625, 52.802761 ], [ -9.140625, 53.014783 ], [ -9.316406, 53.014783 ], [ -9.316406, 53.330873 ], [ -9.492188, 53.330873 ], [ -9.492188, 53.644638 ], [ -9.667969, 53.644638 ], [ -9.667969, 53.852527 ], [ -9.492188, 53.852527 ], [ -9.492188, 53.956086 ], [ -9.316406, 53.956086 ], [ -9.316406, 54.059388 ], [ -9.140625, 54.059388 ], [ -9.140625, 54.162434 ], [ -8.964844, 54.162434 ], [ -8.964844, 54.265224 ], [ -8.789062, 54.265224 ], [ -8.789062, 54.367759 ], [ -8.613281, 54.367759 ], [ -8.613281, 54.470038 ], [ -8.437500, 54.470038 ], [ -8.437500, 54.572062 ], [ -8.261719, 54.572062 ], [ -8.261719, 54.673831 ], [ -8.085938, 54.673831 ], [ -8.085938, 54.775346 ], [ -7.910156, 54.775346 ], [ -7.910156, 54.977614 ], [ -7.734375, 54.977614 ], [ -7.734375, 55.078367 ], [ -7.558594, 55.078367 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.582031, 55.178868 ], [ -1.406250, 55.178868 ], [ -1.406250, 54.977614 ], [ -1.230469, 54.977614 ], [ -1.230469, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 54.470038 ], [ -0.351562, 54.470038 ], [ -0.351562, 54.265224 ], [ -0.175781, 54.265224 ], [ -0.175781, 53.852527 ], [ 0.000000, 53.852527 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.225768 ], [ 0.351562, 53.225768 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.878906, 52.908902 ], [ 0.878906, 50.847573 ], [ 0.703125, 50.847573 ], [ 0.703125, 50.736455 ], [ -1.054688, 50.736455 ], [ -1.054688, 50.625073 ], [ -1.933594, 50.625073 ], [ -1.933594, 50.513427 ], [ -2.636719, 50.513427 ], [ -2.636719, 50.625073 ], [ -3.164062, 50.625073 ], [ -3.164062, 50.513427 ], [ -3.339844, 50.513427 ], [ -3.339844, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 50.176898 ], [ -4.218750, 50.176898 ], [ -4.218750, 50.289339 ], [ -4.570312, 50.289339 ], [ -4.570312, 50.176898 ], [ -4.746094, 50.176898 ], [ -4.746094, 50.064192 ], [ -5.097656, 50.064192 ], [ -5.097656, 49.951220 ], [ -5.449219, 49.951220 ], [ -5.449219, 50.064192 ], [ -5.800781, 50.064192 ], [ -5.800781, 50.176898 ], [ -5.625000, 50.176898 ], [ -5.625000, 50.289339 ], [ -5.449219, 50.289339 ], [ -5.449219, 50.401515 ], [ -5.273438, 50.401515 ], [ -5.273438, 50.513427 ], [ -5.097656, 50.513427 ], [ -5.097656, 50.736455 ], [ -4.921875, 50.736455 ], [ -4.921875, 50.847573 ], [ -4.746094, 50.847573 ], [ -4.746094, 50.958427 ], [ -4.570312, 50.958427 ], [ -4.570312, 51.069017 ], [ -4.394531, 51.069017 ], [ -4.394531, 51.179343 ], [ -4.042969, 51.179343 ], [ -4.042969, 51.289406 ], [ -3.515625, 51.289406 ], [ -3.515625, 51.399206 ], [ -3.867188, 51.399206 ], [ -3.867188, 51.508742 ], [ -4.570312, 51.508742 ], [ -4.570312, 51.618017 ], [ -5.097656, 51.618017 ], [ -5.097656, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 51.944265 ], [ -4.921875, 51.944265 ], [ -4.921875, 52.052490 ], [ -4.570312, 52.052490 ], [ -4.570312, 52.160455 ], [ -4.218750, 52.160455 ], [ -4.218750, 52.268157 ], [ -4.394531, 52.268157 ], [ -4.394531, 52.482780 ], [ -4.570312, 52.482780 ], [ -4.570312, 52.696361 ], [ -4.746094, 52.696361 ], [ -4.746094, 53.120405 ], [ -4.570312, 53.120405 ], [ -4.570312, 53.540307 ], [ -4.042969, 53.540307 ], [ -4.042969, 53.435719 ], [ -3.164062, 53.435719 ], [ -3.164062, 53.644638 ], [ -2.988281, 53.644638 ], [ -2.988281, 53.956086 ], [ -3.164062, 53.956086 ], [ -3.164062, 54.162434 ], [ -3.339844, 54.162434 ], [ -3.339844, 54.265224 ], [ -3.515625, 54.265224 ], [ -3.515625, 54.470038 ], [ -3.691406, 54.470038 ], [ -3.691406, 54.572062 ], [ -4.042969, 54.572062 ], [ -4.042969, 54.673831 ], [ -4.746094, 54.673831 ], [ -4.746094, 54.775346 ], [ -4.921875, 54.775346 ], [ -4.921875, 54.876607 ], [ -5.097656, 54.876607 ], [ -5.097656, 55.178868 ], [ -4.921875, 55.178868 ], [ -4.921875, 55.379110 ], [ -4.746094, 55.379110 ], [ -4.746094, 55.478853 ], [ -4.921875, 55.478853 ], [ -4.921875, 55.677584 ], [ -5.273438, 55.677584 ], [ -5.273438, 55.478853 ], [ -5.449219, 55.478853 ], [ -5.449219, 55.279115 ], [ -5.625000, 55.279115 ], [ -5.625000, 56.267761 ], [ -5.800781, 56.267761 ], [ -5.800781, 56.462490 ], [ -5.976562, 56.462490 ], [ -5.976562, 56.656226 ], [ -6.152344, 56.656226 ], [ -6.152344, 56.944974 ], [ -5.976562, 56.944974 ], [ -5.976562, 57.515823 ], [ -5.800781, 57.515823 ], [ -5.800781, 57.891497 ], [ -5.625000, 57.891497 ], [ -5.625000, 58.077876 ], [ -5.449219, 58.077876 ], [ -5.449219, 58.263287 ], [ -5.273438, 58.263287 ], [ -5.273438, 58.447733 ], [ -5.097656, 58.447733 ], [ -5.097656, 58.631217 ], [ -4.746094, 58.631217 ], [ -4.746094, 58.539595 ], [ -3.515625, 58.539595 ], [ -3.515625, 58.631217 ], [ -2.988281, 58.631217 ], [ -2.988281, 58.539595 ], [ -3.164062, 58.539595 ], [ -3.164062, 58.355630 ], [ -3.339844, 58.355630 ], [ -3.339844, 58.170702 ], [ -3.515625, 58.170702 ], [ -3.515625, 57.984808 ], [ -3.691406, 57.984808 ], [ -3.691406, 57.797944 ], [ -3.867188, 57.797944 ], [ -3.867188, 57.610107 ], [ -4.042969, 57.610107 ], [ -4.042969, 57.515823 ], [ -3.691406, 57.515823 ], [ -3.691406, 57.610107 ], [ -3.164062, 57.610107 ], [ -3.164062, 57.704147 ], [ -1.933594, 57.704147 ], [ -1.933594, 57.421294 ], [ -2.109375, 57.421294 ], [ -2.109375, 57.040730 ], [ -2.285156, 57.040730 ], [ -2.285156, 56.752723 ], [ -2.460938, 56.752723 ], [ -2.460938, 56.559482 ], [ -2.636719, 56.559482 ], [ -2.636719, 56.365250 ], [ -2.812500, 56.365250 ], [ -2.812500, 56.170023 ], [ -2.988281, 56.170023 ], [ -2.988281, 55.973798 ], [ -2.812500, 55.973798 ], [ -2.812500, 55.875311 ], [ -2.109375, 55.875311 ], [ -2.109375, 55.776573 ], [ -1.933594, 55.776573 ], [ -1.933594, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 55.379110 ], [ -1.582031, 55.379110 ], [ -1.582031, 55.178868 ] ] ], [ [ [ -6.679688, 55.078367 ], [ -6.503906, 55.078367 ], [ -6.503906, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.876607 ], [ -6.152344, 54.876607 ], [ -6.152344, 54.775346 ], [ -5.976562, 54.775346 ], [ -5.976562, 54.673831 ], [ -5.800781, 54.673831 ], [ -5.800781, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.367759 ], [ -5.800781, 54.367759 ], [ -5.800781, 54.162434 ], [ -5.976562, 54.162434 ], [ -5.976562, 53.956086 ], [ -6.152344, 53.956086 ], [ -6.152344, 53.852527 ], [ -6.503906, 53.852527 ], [ -6.503906, 53.956086 ], [ -6.855469, 53.956086 ], [ -6.855469, 54.059388 ], [ -7.558594, 54.059388 ], [ -7.558594, 54.265224 ], [ -7.382812, 54.265224 ], [ -7.382812, 54.876607 ], [ -7.558594, 54.876607 ], [ -7.558594, 55.178868 ], [ -6.679688, 55.178868 ], [ -6.679688, 55.078367 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.988281, 58.631217 ], [ -2.988281, 58.539595 ], [ -3.164062, 58.539595 ], [ -3.164062, 58.355630 ], [ -3.339844, 58.355630 ], [ -3.339844, 58.170702 ], [ -3.515625, 58.170702 ], [ -3.515625, 57.984808 ], [ -3.691406, 57.984808 ], [ -3.691406, 57.797944 ], [ -3.867188, 57.797944 ], [ -3.867188, 57.610107 ], [ -4.042969, 57.610107 ], [ -4.042969, 57.515823 ], [ -3.691406, 57.515823 ], [ -3.691406, 57.610107 ], [ -3.164062, 57.610107 ], [ -3.164062, 57.704147 ], [ -1.933594, 57.704147 ], [ -1.933594, 57.421294 ], [ -2.109375, 57.421294 ], [ -2.109375, 57.040730 ], [ -2.285156, 57.040730 ], [ -2.285156, 56.752723 ], [ -2.460938, 56.752723 ], [ -2.460938, 56.559482 ], [ -2.636719, 56.559482 ], [ -2.636719, 56.365250 ], [ -2.812500, 56.365250 ], [ -2.812500, 56.170023 ], [ -2.988281, 56.170023 ], [ -2.988281, 55.973798 ], [ -2.812500, 55.973798 ], [ -2.812500, 55.875311 ], [ -2.109375, 55.875311 ], [ -2.109375, 55.776573 ], [ -1.933594, 55.776573 ], [ -1.933594, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 55.379110 ], [ -1.582031, 55.379110 ], [ -1.582031, 55.178868 ], [ -1.406250, 55.178868 ], [ -1.406250, 54.977614 ], [ -1.230469, 54.977614 ], [ -1.230469, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 54.470038 ], [ -0.351562, 54.470038 ], [ -0.351562, 54.265224 ], [ -0.175781, 54.265224 ], [ -0.175781, 53.852527 ], [ 0.000000, 53.852527 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.225768 ], [ 0.351562, 53.225768 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.878906, 52.908902 ], [ 0.878906, 50.847573 ], [ 0.703125, 50.847573 ], [ 0.703125, 50.736455 ], [ -1.054688, 50.736455 ], [ -1.054688, 50.625073 ], [ -1.933594, 50.625073 ], [ -1.933594, 50.513427 ], [ -2.636719, 50.513427 ], [ -2.636719, 50.625073 ], [ -3.164062, 50.625073 ], [ -3.164062, 50.513427 ], [ -3.339844, 50.513427 ], [ -3.339844, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 50.176898 ], [ -4.218750, 50.176898 ], [ -4.218750, 50.289339 ], [ -4.570312, 50.289339 ], [ -4.570312, 50.176898 ], [ -4.746094, 50.176898 ], [ -4.746094, 50.064192 ], [ -5.097656, 50.064192 ], [ -5.097656, 49.951220 ], [ -5.449219, 49.951220 ], [ -5.449219, 50.064192 ], [ -5.800781, 50.064192 ], [ -5.800781, 50.176898 ], [ -5.625000, 50.176898 ], [ -5.625000, 50.289339 ], [ -5.449219, 50.289339 ], [ -5.449219, 50.401515 ], [ -5.273438, 50.401515 ], [ -5.273438, 50.513427 ], [ -5.097656, 50.513427 ], [ -5.097656, 50.736455 ], [ -4.921875, 50.736455 ], [ -4.921875, 50.847573 ], [ -4.746094, 50.847573 ], [ -4.746094, 50.958427 ], [ -4.570312, 50.958427 ], [ -4.570312, 51.069017 ], [ -4.394531, 51.069017 ], [ -4.394531, 51.179343 ], [ -4.042969, 51.179343 ], [ -4.042969, 51.289406 ], [ -3.515625, 51.289406 ], [ -3.515625, 51.399206 ], [ -3.867188, 51.399206 ], [ -3.867188, 51.508742 ], [ -4.570312, 51.508742 ], [ -4.570312, 51.618017 ], [ -5.097656, 51.618017 ], [ -5.097656, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 51.944265 ], [ -4.921875, 51.944265 ], [ -4.921875, 52.052490 ], [ -4.570312, 52.052490 ], [ -4.570312, 52.160455 ], [ -4.218750, 52.160455 ], [ -4.218750, 52.268157 ], [ -4.394531, 52.268157 ], [ -4.394531, 52.482780 ], [ -4.570312, 52.482780 ], [ -4.570312, 52.696361 ], [ -4.746094, 52.696361 ], [ -4.746094, 53.120405 ], [ -4.570312, 53.120405 ], [ -4.570312, 53.540307 ], [ -4.042969, 53.540307 ], [ -4.042969, 53.435719 ], [ -3.164062, 53.435719 ], [ -3.164062, 53.644638 ], [ -2.988281, 53.644638 ], [ -2.988281, 53.956086 ], [ -3.164062, 53.956086 ], [ -3.164062, 54.162434 ], [ -3.339844, 54.162434 ], [ -3.339844, 54.265224 ], [ -3.515625, 54.265224 ], [ -3.515625, 54.470038 ], [ -3.691406, 54.470038 ], [ -3.691406, 54.572062 ], [ -4.042969, 54.572062 ], [ -4.042969, 54.673831 ], [ -4.746094, 54.673831 ], [ -4.746094, 54.775346 ], [ -4.921875, 54.775346 ], [ -4.921875, 54.876607 ], [ -5.097656, 54.876607 ], [ -5.097656, 55.178868 ], [ -4.921875, 55.178868 ], [ -4.921875, 55.379110 ], [ -4.746094, 55.379110 ], [ -4.746094, 55.478853 ], [ -4.921875, 55.478853 ], [ -4.921875, 55.677584 ], [ -5.273438, 55.677584 ], [ -5.273438, 55.478853 ], [ -5.449219, 55.478853 ], [ -5.449219, 55.279115 ], [ -5.625000, 55.279115 ], [ -5.625000, 56.267761 ], [ -5.800781, 56.267761 ], [ -5.800781, 56.462490 ], [ -5.976562, 56.462490 ], [ -5.976562, 56.656226 ], [ -6.152344, 56.656226 ], [ -6.152344, 56.944974 ], [ -5.976562, 56.944974 ], [ -5.976562, 57.515823 ], [ -5.800781, 57.515823 ], [ -5.800781, 57.891497 ], [ -5.625000, 57.891497 ], [ -5.625000, 58.077876 ], [ -5.449219, 58.077876 ], [ -5.449219, 58.263287 ], [ -5.273438, 58.263287 ], [ -5.273438, 58.447733 ], [ -5.097656, 58.447733 ], [ -5.097656, 58.631217 ], [ -4.746094, 58.631217 ], [ -4.746094, 58.539595 ], [ -3.515625, 58.539595 ], [ -3.515625, 58.631217 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -6.679688, 55.178868 ], [ -6.679688, 55.078367 ], [ -6.503906, 55.078367 ], [ -6.503906, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.876607 ], [ -6.152344, 54.876607 ], [ -6.152344, 54.775346 ], [ -5.976562, 54.775346 ], [ -5.976562, 54.673831 ], [ -5.800781, 54.673831 ], [ -5.800781, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.367759 ], [ -5.800781, 54.367759 ], [ -5.800781, 54.162434 ], [ -5.976562, 54.162434 ], [ -5.976562, 53.956086 ], [ -6.152344, 53.956086 ], [ -6.152344, 53.852527 ], [ -6.503906, 53.852527 ], [ -6.503906, 53.956086 ], [ -6.855469, 53.956086 ], [ -6.855469, 54.059388 ], [ -7.558594, 54.059388 ], [ -7.558594, 54.265224 ], [ -7.382812, 54.265224 ], [ -7.382812, 54.876607 ], [ -7.558594, 54.876607 ], [ -7.558594, 55.178868 ], [ -6.679688, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 48.690960 ], [ -1.582031, 48.690960 ], [ -1.582031, 48.922499 ], [ -1.757812, 48.922499 ], [ -1.757812, 49.382373 ], [ -1.933594, 49.382373 ], [ -1.933594, 49.610710 ], [ -1.582031, 49.610710 ], [ -1.582031, 49.496675 ], [ -1.230469, 49.496675 ], [ -1.230469, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.496675 ], [ -0.351562, 49.496675 ], [ -0.351562, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.724479 ], [ 0.351562, 49.724479 ], [ 0.351562, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 49.951220 ], [ 0.878906, 49.951220 ], [ 0.878906, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.553080 ], [ 0.000000, 42.553080 ], [ 0.000000, 42.682435 ], [ -0.527344, 42.682435 ], [ -0.527344, 42.811522 ], [ -0.878906, 42.811522 ], [ -0.878906, 42.940339 ], [ -1.406250, 42.940339 ], [ -1.406250, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.325178 ], [ -1.933594, 43.325178 ], [ -1.933594, 43.452919 ], [ -1.757812, 43.452919 ], [ -1.757812, 43.707594 ], [ -1.582031, 43.707594 ], [ -1.582031, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 44.964798 ], [ -1.230469, 44.964798 ], [ -1.230469, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.582031, 46.316584 ], [ -1.582031, 46.437857 ], [ -1.757812, 46.437857 ], [ -1.757812, 46.558860 ], [ -1.933594, 46.558860 ], [ -1.933594, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 46.920255 ], [ -2.285156, 46.920255 ], [ -2.285156, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.159840 ], [ -2.636719, 47.159840 ], [ -2.636719, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.398349 ], [ -2.988281, 47.398349 ], [ -2.988281, 47.517201 ], [ -3.339844, 47.517201 ], [ -3.339844, 47.635784 ], [ -3.691406, 47.635784 ], [ -3.691406, 47.754098 ], [ -4.042969, 47.754098 ], [ -4.042969, 47.872144 ], [ -4.394531, 47.872144 ], [ -4.394531, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -4.218750, 48.690960 ], [ -4.218750, 48.806863 ], [ -3.515625, 48.806863 ], [ -3.515625, 48.922499 ], [ -2.988281, 48.922499 ], [ -2.988281, 48.806863 ], [ -2.109375, 48.806863 ], [ -2.109375, 48.690960 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.951220 ], [ 0.878906, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.553080 ], [ 0.000000, 42.553080 ], [ 0.000000, 42.682435 ], [ -0.527344, 42.682435 ], [ -0.527344, 42.811522 ], [ -0.878906, 42.811522 ], [ -0.878906, 42.940339 ], [ -1.406250, 42.940339 ], [ -1.406250, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.325178 ], [ -1.933594, 43.325178 ], [ -1.933594, 43.452919 ], [ -1.757812, 43.452919 ], [ -1.757812, 43.707594 ], [ -1.582031, 43.707594 ], [ -1.582031, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 44.964798 ], [ -1.230469, 44.964798 ], [ -1.230469, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.582031, 46.316584 ], [ -1.582031, 46.437857 ], [ -1.757812, 46.437857 ], [ -1.757812, 46.558860 ], [ -1.933594, 46.558860 ], [ -1.933594, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 46.920255 ], [ -2.285156, 46.920255 ], [ -2.285156, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.159840 ], [ -2.636719, 47.159840 ], [ -2.636719, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.398349 ], [ -2.988281, 47.398349 ], [ -2.988281, 47.517201 ], [ -3.339844, 47.517201 ], [ -3.339844, 47.635784 ], [ -3.691406, 47.635784 ], [ -3.691406, 47.754098 ], [ -4.042969, 47.754098 ], [ -4.042969, 47.872144 ], [ -4.394531, 47.872144 ], [ -4.394531, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -4.218750, 48.690960 ], [ -4.218750, 48.806863 ], [ -3.515625, 48.806863 ], [ -3.515625, 48.922499 ], [ -2.988281, 48.922499 ], [ -2.988281, 48.806863 ], [ -2.109375, 48.806863 ], [ -2.109375, 48.690960 ], [ -1.582031, 48.690960 ], [ -1.582031, 48.922499 ], [ -1.757812, 48.922499 ], [ -1.757812, 49.382373 ], [ -1.933594, 49.382373 ], [ -1.933594, 49.610710 ], [ -1.582031, 49.610710 ], [ -1.582031, 49.496675 ], [ -1.230469, 49.496675 ], [ -1.230469, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.496675 ], [ -0.351562, 49.496675 ], [ -0.351562, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.724479 ], [ 0.351562, 49.724479 ], [ 0.351562, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 49.951220 ], [ 0.878906, 49.951220 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 41.771312 ], [ -7.207031, 41.771312 ], [ -7.207031, 41.902277 ], [ -6.679688, 41.902277 ], [ -6.679688, 41.771312 ], [ -6.503906, 41.771312 ], [ -6.503906, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.313043 ], [ -8.964844, 40.313043 ], [ -8.964844, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.376809 ], [ -8.964844, 41.376809 ], [ -8.964844, 41.902277 ], [ -8.789062, 41.902277 ], [ -8.789062, 42.032974 ], [ -8.613281, 42.032974 ], [ -8.613281, 42.163403 ], [ -8.261719, 42.163403 ], [ -8.261719, 42.032974 ], [ -8.085938, 42.032974 ], [ -8.085938, 41.771312 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.163403 ], [ -8.261719, 42.032974 ], [ -8.085938, 42.032974 ], [ -8.085938, 41.771312 ], [ -7.207031, 41.771312 ], [ -7.207031, 41.902277 ], [ -6.679688, 41.902277 ], [ -6.679688, 41.771312 ], [ -6.503906, 41.771312 ], [ -6.503906, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.313043 ], [ -8.964844, 40.313043 ], [ -8.964844, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.376809 ], [ -8.964844, 41.376809 ], [ -8.964844, 41.902277 ], [ -8.789062, 41.902277 ], [ -8.789062, 42.032974 ], [ -8.613281, 42.032974 ], [ -8.613281, 42.163403 ], [ -8.261719, 42.163403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.097656, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.933594, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 42.811522 ], [ -0.527344, 42.811522 ], [ -0.527344, 42.682435 ], [ 0.000000, 42.682435 ], [ 0.000000, 42.553080 ], [ 0.527344, 42.553080 ], [ 0.527344, 42.682435 ], [ 0.878906, 42.682435 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.313043 ], [ -6.855469, 40.313043 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.771312 ], [ -6.679688, 41.771312 ], [ -6.679688, 41.902277 ], [ -7.207031, 41.902277 ], [ -7.207031, 41.771312 ], [ -8.085938, 41.771312 ], [ -8.085938, 42.032974 ], [ -8.261719, 42.032974 ], [ -8.261719, 42.163403 ], [ -8.613281, 42.163403 ], [ -8.613281, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.789062, 41.902277 ], [ -8.964844, 41.902277 ], [ -8.964844, 42.682435 ], [ -9.140625, 42.682435 ], [ -9.140625, 42.940339 ], [ -9.316406, 42.940339 ], [ -9.316406, 43.068888 ], [ -9.140625, 43.068888 ], [ -9.140625, 43.197167 ], [ -8.789062, 43.197167 ], [ -8.789062, 43.325178 ], [ -8.437500, 43.325178 ], [ -8.437500, 43.452919 ], [ -8.261719, 43.452919 ], [ -8.261719, 43.580391 ], [ -7.910156, 43.580391 ], [ -7.910156, 43.707594 ], [ -7.382812, 43.707594 ], [ -7.382812, 43.580391 ], [ -5.097656, 43.580391 ], [ -5.097656, 43.452919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 43.707594 ], [ -7.382812, 43.580391 ], [ -5.097656, 43.580391 ], [ -5.097656, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.933594, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 42.811522 ], [ -0.527344, 42.811522 ], [ -0.527344, 42.682435 ], [ 0.000000, 42.682435 ], [ 0.000000, 42.553080 ], [ 0.527344, 42.553080 ], [ 0.527344, 42.682435 ], [ 0.878906, 42.682435 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.313043 ], [ -6.855469, 40.313043 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.771312 ], [ -6.679688, 41.771312 ], [ -6.679688, 41.902277 ], [ -7.207031, 41.902277 ], [ -7.207031, 41.771312 ], [ -8.085938, 41.771312 ], [ -8.085938, 42.032974 ], [ -8.261719, 42.032974 ], [ -8.261719, 42.163403 ], [ -8.613281, 42.163403 ], [ -8.613281, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.964844, 41.902277 ], [ -8.964844, 42.682435 ], [ -9.140625, 42.682435 ], [ -9.140625, 42.940339 ], [ -9.316406, 42.940339 ], [ -9.316406, 43.068888 ], [ -9.140625, 43.068888 ], [ -9.140625, 43.197167 ], [ -8.789062, 43.197167 ], [ -8.789062, 43.325178 ], [ -8.437500, 43.325178 ], [ -8.437500, 43.452919 ], [ -8.261719, 43.452919 ], [ -8.261719, 43.580391 ], [ -7.910156, 43.580391 ], [ -7.910156, 43.707594 ], [ -7.382812, 43.707594 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -25.312500, 70.902268 ], [ -25.136719, 70.902268 ], [ -25.136719, 70.670881 ], [ -25.312500, 70.670881 ], [ -25.312500, 70.612614 ], [ -25.488281, 70.612614 ], [ -25.488281, 70.495574 ], [ -25.664062, 70.495574 ], [ -25.664062, 70.436799 ], [ -25.839844, 70.436799 ], [ -25.839844, 70.377854 ], [ -26.015625, 70.377854 ], [ -26.015625, 70.259452 ], [ -26.191406, 70.259452 ], [ -26.191406, 70.199994 ], [ -23.203125, 70.199994 ], [ -23.203125, 70.140364 ], [ -22.324219, 70.140364 ], [ -22.324219, 70.080562 ], [ -22.500000, 70.080562 ], [ -22.500000, 70.020587 ], [ -22.675781, 70.020587 ], [ -22.675781, 69.960439 ], [ -22.851562, 69.960439 ], [ -22.851562, 69.900118 ], [ -23.027344, 69.900118 ], [ -23.027344, 69.839622 ], [ -23.203125, 69.839622 ], [ -23.203125, 69.778952 ], [ -23.378906, 69.778952 ], [ -23.378906, 69.718107 ], [ -23.730469, 69.718107 ], [ -23.730469, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.595890 ], [ -24.082031, 69.595890 ], [ -24.082031, 69.534518 ], [ -24.257812, 69.534518 ], [ -24.257812, 69.472969 ], [ -24.433594, 69.472969 ], [ -24.433594, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.349339 ], [ -24.785156, 69.349339 ], [ -24.785156, 69.287257 ], [ -24.960938, 69.287257 ], [ -24.960938, 69.224997 ], [ -25.136719, 69.224997 ], [ -25.136719, 69.162558 ], [ -25.488281, 69.162558 ], [ -25.488281, 69.099940 ], [ -25.664062, 69.099940 ], [ -25.664062, 69.037142 ], [ -25.839844, 69.037142 ], [ -25.839844, 68.974164 ], [ -26.015625, 68.974164 ], [ -26.015625, 68.911005 ], [ -26.191406, 68.911005 ], [ -26.191406, 68.847665 ], [ -26.542969, 68.847665 ], [ -26.542969, 68.784144 ], [ -26.718750, 68.784144 ], [ -26.718750, 68.720441 ], [ -26.894531, 68.720441 ], [ -26.894531, 68.656555 ], [ -27.070312, 68.656555 ], [ -27.070312, 68.592487 ], [ -27.421875, 68.592487 ], [ -27.421875, 68.528235 ], [ -27.597656, 68.528235 ], [ -27.597656, 68.463800 ], [ -27.949219, 68.463800 ], [ -27.949219, 68.399180 ], [ -28.476562, 68.399180 ], [ -28.476562, 68.334376 ], [ -29.003906, 68.334376 ], [ -29.003906, 68.269387 ], [ -29.707031, 68.269387 ], [ -29.707031, 68.204212 ], [ -30.234375, 68.204212 ], [ -30.234375, 68.138852 ], [ -31.816406, 68.138852 ], [ -31.816406, 68.073305 ], [ -31.992188, 68.073305 ], [ -31.992188, 68.007571 ], [ -32.167969, 68.007571 ], [ -32.167969, 67.941650 ], [ -32.343750, 67.941650 ], [ -32.343750, 67.875541 ], [ -32.519531, 67.875541 ], [ -32.519531, 67.809245 ], [ -32.695312, 67.809245 ], [ -32.695312, 67.742759 ], [ -32.871094, 67.742759 ], [ -32.871094, 67.676085 ], [ -33.046875, 67.676085 ], [ -33.046875, 67.542167 ], [ -33.222656, 67.542167 ], [ -33.222656, 67.407487 ], [ -33.398438, 67.407487 ], [ -33.398438, 67.272043 ], [ -33.574219, 67.272043 ], [ -33.574219, 67.135829 ], [ -33.750000, 67.135829 ], [ -33.750000, 66.998844 ], [ -33.925781, 66.998844 ], [ -33.925781, 66.861082 ], [ -34.101562, 66.861082 ], [ -34.101562, 66.722541 ], [ -34.277344, 66.722541 ], [ -34.277344, 66.583217 ], [ -34.453125, 66.583217 ], [ -34.453125, 66.513260 ], [ -34.804688, 66.513260 ], [ -34.804688, 66.443107 ], [ -34.980469, 66.443107 ], [ -34.980469, 66.372755 ], [ -35.156250, 66.372755 ], [ -35.156250, 66.302205 ], [ -35.507812, 66.302205 ], [ -35.507812, 66.231457 ], [ -35.683594, 66.231457 ], [ -35.683594, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.984375, 79.335219 ], [ -18.984375, 79.237185 ], [ -19.160156, 79.237185 ], [ -19.160156, 79.105086 ], [ -19.335938, 79.105086 ], [ -19.335938, 78.971386 ], [ -19.511719, 78.971386 ], [ -19.511719, 78.836065 ], [ -19.687500, 78.836065 ], [ -19.687500, 77.579959 ], [ -19.511719, 77.579959 ], [ -19.511719, 77.504119 ], [ -19.335938, 77.504119 ], [ -19.335938, 77.389504 ], [ -19.160156, 77.389504 ], [ -19.160156, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 77.235074 ], [ -18.808594, 77.235074 ], [ -18.808594, 77.118032 ], [ -18.632812, 77.118032 ], [ -18.632812, 77.039418 ], [ -18.457031, 77.039418 ], [ -18.457031, 76.999935 ], [ -19.160156, 76.999935 ], [ -19.160156, 76.960334 ], [ -20.039062, 76.960334 ], [ -20.039062, 76.920614 ], [ -20.214844, 76.920614 ], [ -20.214844, 76.880775 ], [ -20.390625, 76.880775 ], [ -20.390625, 76.840816 ], [ -20.566406, 76.840816 ], [ -20.566406, 76.800739 ], [ -20.917969, 76.800739 ], [ -20.917969, 76.760541 ], [ -21.093750, 76.760541 ], [ -21.093750, 76.720223 ], [ -21.269531, 76.720223 ], [ -21.269531, 76.679785 ], [ -21.445312, 76.679785 ], [ -21.445312, 76.639226 ], [ -21.621094, 76.639226 ], [ -21.621094, 76.598545 ], [ -21.445312, 76.598545 ], [ -21.445312, 76.557743 ], [ -21.269531, 76.557743 ], [ -21.269531, 76.475773 ], [ -21.093750, 76.475773 ], [ -21.093750, 76.434604 ], [ -20.917969, 76.434604 ], [ -20.917969, 76.393312 ], [ -20.742188, 76.393312 ], [ -20.742188, 76.310358 ], [ -20.566406, 76.310358 ], [ -20.566406, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.226907 ], [ -20.214844, 76.226907 ], [ -20.214844, 76.142958 ], [ -20.039062, 76.142958 ], [ -20.039062, 76.100796 ], [ -19.863281, 76.100796 ], [ -19.863281, 75.888091 ], [ -19.687500, 75.888091 ], [ -19.687500, 75.453071 ], [ -19.511719, 75.453071 ], [ -19.511719, 75.230667 ], [ -19.687500, 75.230667 ], [ -19.687500, 75.185789 ], [ -20.390625, 75.185789 ], [ -20.390625, 75.140778 ], [ -20.742188, 75.140778 ], [ -20.742188, 75.050354 ], [ -20.566406, 75.050354 ], [ -20.566406, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.867889 ], [ -20.214844, 74.867889 ], [ -20.214844, 74.775843 ], [ -20.039062, 74.775843 ], [ -20.039062, 74.636748 ], [ -19.863281, 74.636748 ], [ -19.863281, 74.543330 ], [ -19.687500, 74.543330 ], [ -19.687500, 74.449358 ], [ -19.511719, 74.449358 ], [ -19.511719, 74.354828 ], [ -19.335938, 74.354828 ], [ -19.335938, 74.307353 ], [ -19.863281, 74.307353 ], [ -19.863281, 74.259738 ], [ -20.917969, 74.259738 ], [ -20.917969, 74.211983 ], [ -21.621094, 74.211983 ], [ -21.621094, 74.164085 ], [ -21.445312, 74.164085 ], [ -21.445312, 74.116047 ], [ -21.269531, 74.116047 ], [ -21.269531, 74.067866 ], [ -21.093750, 74.067866 ], [ -21.093750, 74.019543 ], [ -20.917969, 74.019543 ], [ -20.917969, 73.922469 ], [ -20.742188, 73.922469 ], [ -20.742188, 73.873717 ], [ -20.566406, 73.873717 ], [ -20.566406, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.726595 ], [ -20.566406, 73.726595 ], [ -20.566406, 73.528399 ], [ -20.742188, 73.528399 ], [ -20.742188, 73.478485 ], [ -20.917969, 73.478485 ], [ -20.917969, 73.428424 ], [ -21.269531, 73.428424 ], [ -21.269531, 73.378215 ], [ -21.796875, 73.378215 ], [ -21.796875, 73.327858 ], [ -23.554688, 73.327858 ], [ -23.554688, 73.277353 ], [ -23.378906, 73.277353 ], [ -23.378906, 73.175897 ], [ -23.203125, 73.175897 ], [ -23.203125, 73.073844 ], [ -23.027344, 73.073844 ], [ -23.027344, 72.971189 ], [ -22.851562, 72.971189 ], [ -22.851562, 72.867930 ], [ -22.675781, 72.867930 ], [ -22.675781, 72.764065 ], [ -22.500000, 72.764065 ], [ -22.500000, 72.659588 ], [ -22.324219, 72.659588 ], [ -22.324219, 72.181804 ], [ -22.500000, 72.181804 ], [ -22.500000, 72.235514 ], [ -22.851562, 72.235514 ], [ -22.851562, 72.289067 ], [ -23.027344, 72.289067 ], [ -23.027344, 72.342464 ], [ -23.203125, 72.342464 ], [ -23.203125, 72.395706 ], [ -23.554688, 72.395706 ], [ -23.554688, 72.448792 ], [ -23.730469, 72.448792 ], [ -23.730469, 72.501722 ], [ -23.906250, 72.501722 ], [ -23.906250, 72.554498 ], [ -24.433594, 72.554498 ], [ -24.433594, 72.448792 ], [ -24.609375, 72.448792 ], [ -24.609375, 72.342464 ], [ -24.785156, 72.342464 ], [ -24.785156, 72.289067 ], [ -24.433594, 72.289067 ], [ -24.433594, 72.235514 ], [ -24.257812, 72.235514 ], [ -24.257812, 72.181804 ], [ -23.906250, 72.181804 ], [ -23.906250, 72.127936 ], [ -23.554688, 72.127936 ], [ -23.554688, 72.073911 ], [ -23.378906, 72.073911 ], [ -23.378906, 72.019729 ], [ -23.203125, 72.019729 ], [ -23.203125, 71.910888 ], [ -23.027344, 71.910888 ], [ -23.027344, 71.856229 ], [ -22.851562, 71.856229 ], [ -22.851562, 71.746432 ], [ -22.675781, 71.746432 ], [ -22.675781, 71.635993 ], [ -22.500000, 71.635993 ], [ -22.500000, 71.580532 ], [ -22.324219, 71.580532 ], [ -22.324219, 71.469124 ], [ -22.148438, 71.469124 ], [ -22.148438, 71.244356 ], [ -21.972656, 71.244356 ], [ -21.972656, 70.844673 ], [ -21.796875, 70.844673 ], [ -21.796875, 70.670881 ], [ -21.972656, 70.670881 ], [ -21.972656, 70.612614 ], [ -22.500000, 70.612614 ], [ -22.500000, 70.554179 ], [ -23.203125, 70.554179 ], [ -23.203125, 70.495574 ], [ -23.730469, 70.495574 ], [ -23.730469, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 70.670881 ], [ -24.082031, 70.670881 ], [ -24.082031, 70.786910 ], [ -24.257812, 70.786910 ], [ -24.257812, 70.844673 ], [ -24.433594, 70.844673 ], [ -24.433594, 70.959697 ], [ -24.609375, 70.959697 ], [ -24.609375, 71.016960 ], [ -24.785156, 71.016960 ], [ -24.785156, 71.130988 ], [ -24.960938, 71.130988 ], [ -24.960938, 71.187754 ], [ -25.136719, 71.187754 ], [ -25.136719, 71.244356 ], [ -25.312500, 71.244356 ], [ -25.312500, 70.902268 ] ], [ [ -25.312500, 71.357067 ], [ -25.488281, 71.357067 ], [ -25.488281, 71.244356 ], [ -25.312500, 71.244356 ], [ -25.312500, 71.357067 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -25.312500, 71.244356 ], [ -25.312500, 70.902268 ], [ -25.136719, 70.902268 ], [ -25.136719, 70.670881 ], [ -25.312500, 70.670881 ], [ -25.312500, 70.612614 ], [ -25.488281, 70.612614 ], [ -25.488281, 70.495574 ], [ -25.664062, 70.495574 ], [ -25.664062, 70.436799 ], [ -25.839844, 70.436799 ], [ -25.839844, 70.377854 ], [ -26.015625, 70.377854 ], [ -26.015625, 70.259452 ], [ -26.191406, 70.259452 ], [ -26.191406, 70.199994 ], [ -23.203125, 70.199994 ], [ -23.203125, 70.140364 ], [ -22.324219, 70.140364 ], [ -22.324219, 70.080562 ], [ -22.500000, 70.080562 ], [ -22.500000, 70.020587 ], [ -22.675781, 70.020587 ], [ -22.675781, 69.960439 ], [ -22.851562, 69.960439 ], [ -22.851562, 69.900118 ], [ -23.027344, 69.900118 ], [ -23.027344, 69.839622 ], [ -23.203125, 69.839622 ], [ -23.203125, 69.778952 ], [ -23.378906, 69.778952 ], [ -23.378906, 69.718107 ], [ -23.730469, 69.718107 ], [ -23.730469, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.595890 ], [ -24.082031, 69.595890 ], [ -24.082031, 69.534518 ], [ -24.257812, 69.534518 ], [ -24.257812, 69.472969 ], [ -24.433594, 69.472969 ], [ -24.433594, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.349339 ], [ -24.785156, 69.349339 ], [ -24.785156, 69.287257 ], [ -24.960938, 69.287257 ], [ -24.960938, 69.224997 ], [ -25.136719, 69.224997 ], [ -25.136719, 69.162558 ], [ -25.488281, 69.162558 ], [ -25.488281, 69.099940 ], [ -25.664062, 69.099940 ], [ -25.664062, 69.037142 ], [ -25.839844, 69.037142 ], [ -25.839844, 68.974164 ], [ -26.015625, 68.974164 ], [ -26.015625, 68.911005 ], [ -26.191406, 68.911005 ], [ -26.191406, 68.847665 ], [ -26.542969, 68.847665 ], [ -26.542969, 68.784144 ], [ -26.718750, 68.784144 ], [ -26.718750, 68.720441 ], [ -26.894531, 68.720441 ], [ -26.894531, 68.656555 ], [ -27.070312, 68.656555 ], [ -27.070312, 68.592487 ], [ -27.421875, 68.592487 ], [ -27.421875, 68.528235 ], [ -27.597656, 68.528235 ], [ -27.597656, 68.463800 ], [ -27.949219, 68.463800 ], [ -27.949219, 68.399180 ], [ -28.476562, 68.399180 ], [ -28.476562, 68.334376 ], [ -29.003906, 68.334376 ], [ -29.003906, 68.269387 ], [ -29.707031, 68.269387 ], [ -29.707031, 68.204212 ], [ -30.234375, 68.204212 ], [ -30.234375, 68.138852 ], [ -31.816406, 68.138852 ], [ -31.816406, 68.073305 ], [ -31.992188, 68.073305 ], [ -31.992188, 68.007571 ], [ -32.167969, 68.007571 ], [ -32.167969, 67.941650 ], [ -32.343750, 67.941650 ], [ -32.343750, 67.875541 ], [ -32.519531, 67.875541 ], [ -32.519531, 67.809245 ], [ -32.695312, 67.809245 ], [ -32.695312, 67.742759 ], [ -32.871094, 67.742759 ], [ -32.871094, 67.676085 ], [ -33.046875, 67.676085 ], [ -33.046875, 67.542167 ], [ -33.222656, 67.542167 ], [ -33.222656, 67.407487 ], [ -33.398438, 67.407487 ], [ -33.398438, 67.272043 ], [ -33.574219, 67.272043 ], [ -33.574219, 67.135829 ], [ -33.750000, 67.135829 ], [ -33.750000, 66.998844 ], [ -33.925781, 66.998844 ], [ -33.925781, 66.861082 ], [ -34.101562, 66.861082 ], [ -34.101562, 66.722541 ], [ -34.277344, 66.722541 ], [ -34.277344, 66.583217 ], [ -34.453125, 66.583217 ], [ -34.453125, 66.513260 ], [ -34.804688, 66.513260 ], [ -34.804688, 66.443107 ], [ -34.980469, 66.443107 ], [ -34.980469, 66.372755 ], [ -35.156250, 66.372755 ], [ -35.156250, 66.302205 ], [ -35.507812, 66.302205 ], [ -35.507812, 66.231457 ], [ -35.683594, 66.231457 ], [ -35.683594, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.984375, 79.335219 ], [ -18.984375, 79.237185 ], [ -19.160156, 79.237185 ], [ -19.160156, 79.105086 ], [ -19.335938, 79.105086 ], [ -19.335938, 78.971386 ], [ -19.511719, 78.971386 ], [ -19.511719, 78.836065 ], [ -19.687500, 78.836065 ], [ -19.687500, 77.579959 ], [ -19.511719, 77.579959 ], [ -19.511719, 77.504119 ], [ -19.335938, 77.504119 ], [ -19.335938, 77.389504 ], [ -19.160156, 77.389504 ], [ -19.160156, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 77.235074 ], [ -18.808594, 77.235074 ], [ -18.808594, 77.118032 ], [ -18.632812, 77.118032 ], [ -18.632812, 77.039418 ], [ -18.457031, 77.039418 ], [ -18.457031, 76.999935 ], [ -19.160156, 76.999935 ], [ -19.160156, 76.960334 ], [ -20.039062, 76.960334 ], [ -20.039062, 76.920614 ], [ -20.214844, 76.920614 ], [ -20.214844, 76.880775 ], [ -20.390625, 76.880775 ], [ -20.390625, 76.840816 ], [ -20.566406, 76.840816 ], [ -20.566406, 76.800739 ], [ -20.917969, 76.800739 ], [ -20.917969, 76.760541 ], [ -21.093750, 76.760541 ], [ -21.093750, 76.720223 ], [ -21.269531, 76.720223 ], [ -21.269531, 76.679785 ], [ -21.445312, 76.679785 ], [ -21.445312, 76.639226 ], [ -21.621094, 76.639226 ], [ -21.621094, 76.598545 ], [ -21.445312, 76.598545 ], [ -21.445312, 76.557743 ], [ -21.269531, 76.557743 ], [ -21.269531, 76.475773 ], [ -21.093750, 76.475773 ], [ -21.093750, 76.434604 ], [ -20.917969, 76.434604 ], [ -20.917969, 76.393312 ], [ -20.742188, 76.393312 ], [ -20.742188, 76.310358 ], [ -20.566406, 76.310358 ], [ -20.566406, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.226907 ], [ -20.214844, 76.226907 ], [ -20.214844, 76.142958 ], [ -20.039062, 76.142958 ], [ -20.039062, 76.100796 ], [ -19.863281, 76.100796 ], [ -19.863281, 75.888091 ], [ -19.687500, 75.888091 ], [ -19.687500, 75.453071 ], [ -19.511719, 75.453071 ], [ -19.511719, 75.230667 ], [ -19.687500, 75.230667 ], [ -19.687500, 75.185789 ], [ -20.390625, 75.185789 ], [ -20.390625, 75.140778 ], [ -20.742188, 75.140778 ], [ -20.742188, 75.050354 ], [ -20.566406, 75.050354 ], [ -20.566406, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.867889 ], [ -20.214844, 74.867889 ], [ -20.214844, 74.775843 ], [ -20.039062, 74.775843 ], [ -20.039062, 74.636748 ], [ -19.863281, 74.636748 ], [ -19.863281, 74.543330 ], [ -19.687500, 74.543330 ], [ -19.687500, 74.449358 ], [ -19.511719, 74.449358 ], [ -19.511719, 74.354828 ], [ -19.335938, 74.354828 ], [ -19.335938, 74.307353 ], [ -19.863281, 74.307353 ], [ -19.863281, 74.259738 ], [ -20.917969, 74.259738 ], [ -20.917969, 74.211983 ], [ -21.621094, 74.211983 ], [ -21.621094, 74.164085 ], [ -21.445312, 74.164085 ], [ -21.445312, 74.116047 ], [ -21.269531, 74.116047 ], [ -21.269531, 74.067866 ], [ -21.093750, 74.067866 ], [ -21.093750, 74.019543 ], [ -20.917969, 74.019543 ], [ -20.917969, 73.922469 ], [ -20.742188, 73.922469 ], [ -20.742188, 73.873717 ], [ -20.566406, 73.873717 ], [ -20.566406, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.726595 ], [ -20.566406, 73.726595 ], [ -20.566406, 73.528399 ], [ -20.742188, 73.528399 ], [ -20.742188, 73.478485 ], [ -20.917969, 73.478485 ], [ -20.917969, 73.428424 ], [ -21.269531, 73.428424 ], [ -21.269531, 73.378215 ], [ -21.796875, 73.378215 ], [ -21.796875, 73.327858 ], [ -23.554688, 73.327858 ], [ -23.554688, 73.277353 ], [ -23.378906, 73.277353 ], [ -23.378906, 73.175897 ], [ -23.203125, 73.175897 ], [ -23.203125, 73.073844 ], [ -23.027344, 73.073844 ], [ -23.027344, 72.971189 ], [ -22.851562, 72.971189 ], [ -22.851562, 72.867930 ], [ -22.675781, 72.867930 ], [ -22.675781, 72.764065 ], [ -22.500000, 72.764065 ], [ -22.500000, 72.659588 ], [ -22.324219, 72.659588 ], [ -22.324219, 72.181804 ], [ -22.500000, 72.181804 ], [ -22.500000, 72.235514 ], [ -22.851562, 72.235514 ], [ -22.851562, 72.289067 ], [ -23.027344, 72.289067 ], [ -23.027344, 72.342464 ], [ -23.203125, 72.342464 ], [ -23.203125, 72.395706 ], [ -23.554688, 72.395706 ], [ -23.554688, 72.448792 ], [ -23.730469, 72.448792 ], [ -23.730469, 72.501722 ], [ -23.906250, 72.501722 ], [ -23.906250, 72.554498 ], [ -24.433594, 72.554498 ], [ -24.433594, 72.448792 ], [ -24.609375, 72.448792 ], [ -24.609375, 72.342464 ], [ -24.785156, 72.342464 ], [ -24.785156, 72.289067 ], [ -24.433594, 72.289067 ], [ -24.433594, 72.235514 ], [ -24.257812, 72.235514 ], [ -24.257812, 72.181804 ], [ -23.906250, 72.181804 ], [ -23.906250, 72.127936 ], [ -23.554688, 72.127936 ], [ -23.554688, 72.073911 ], [ -23.378906, 72.073911 ], [ -23.378906, 72.019729 ], [ -23.203125, 72.019729 ], [ -23.203125, 71.910888 ], [ -23.027344, 71.910888 ], [ -23.027344, 71.856229 ], [ -22.851562, 71.856229 ], [ -22.851562, 71.746432 ], [ -22.675781, 71.746432 ], [ -22.675781, 71.635993 ], [ -22.500000, 71.635993 ], [ -22.500000, 71.580532 ], [ -22.324219, 71.580532 ], [ -22.324219, 71.469124 ], [ -22.148438, 71.469124 ], [ -22.148438, 71.244356 ], [ -21.972656, 71.244356 ], [ -21.972656, 70.844673 ], [ -21.796875, 70.844673 ], [ -21.796875, 70.670881 ], [ -21.972656, 70.670881 ], [ -21.972656, 70.612614 ], [ -22.500000, 70.612614 ], [ -22.500000, 70.554179 ], [ -23.203125, 70.554179 ], [ -23.203125, 70.495574 ], [ -23.730469, 70.495574 ], [ -23.730469, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 70.670881 ], [ -24.082031, 70.670881 ], [ -24.082031, 70.786910 ], [ -24.257812, 70.786910 ], [ -24.257812, 70.844673 ], [ -24.433594, 70.844673 ], [ -24.433594, 70.959697 ], [ -24.609375, 70.959697 ], [ -24.609375, 71.016960 ], [ -24.785156, 71.016960 ], [ -24.785156, 71.130988 ], [ -24.960938, 71.130988 ], [ -24.960938, 71.187754 ], [ -25.136719, 71.187754 ], [ -25.136719, 71.244356 ], [ -25.312500, 71.244356 ] ], [ [ -25.312500, 71.244356 ], [ -25.312500, 71.357067 ], [ -25.488281, 71.357067 ], [ -25.488281, 71.244356 ], [ -25.312500, 71.244356 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.160511 ], [ -23.730469, 66.160511 ], [ -23.730469, 66.231457 ], [ -23.378906, 66.231457 ], [ -23.378906, 66.302205 ], [ -22.851562, 66.302205 ], [ -22.851562, 66.372755 ], [ -22.324219, 66.372755 ], [ -22.324219, 66.443107 ], [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ] ] ], [ [ [ -18.632812, 66.231457 ], [ -18.632812, 66.160511 ], [ -19.160156, 66.160511 ], [ -19.160156, 66.231457 ], [ -18.632812, 66.231457 ] ] ], [ [ [ -14.589844, 66.160511 ], [ -17.050781, 66.160511 ], [ -17.050781, 66.231457 ], [ -16.875000, 66.231457 ], [ -16.875000, 66.302205 ], [ -16.523438, 66.302205 ], [ -16.523438, 66.372755 ], [ -16.347656, 66.372755 ], [ -16.347656, 66.443107 ], [ -16.171875, 66.443107 ], [ -16.171875, 66.513260 ], [ -15.468750, 66.513260 ], [ -15.468750, 66.443107 ], [ -14.589844, 66.443107 ], [ -14.589844, 66.160511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.160511 ], [ -23.730469, 66.160511 ], [ -23.730469, 66.231457 ], [ -23.378906, 66.231457 ], [ -23.378906, 66.302205 ], [ -22.851562, 66.302205 ], [ -22.851562, 66.372755 ], [ -22.324219, 66.372755 ], [ -22.324219, 66.443107 ], [ -22.148438, 66.443107 ] ] ], [ [ [ -18.632812, 66.160511 ], [ -19.160156, 66.160511 ], [ -19.160156, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.160511 ] ] ], [ [ [ -15.468750, 66.443107 ], [ -14.589844, 66.443107 ], [ -14.589844, 66.160511 ], [ -17.050781, 66.160511 ], [ -17.050781, 66.231457 ], [ -16.875000, 66.231457 ], [ -16.875000, 66.302205 ], [ -16.523438, 66.302205 ], [ -16.523438, 66.372755 ], [ -16.347656, 66.372755 ], [ -16.347656, 66.443107 ], [ -16.171875, 66.443107 ], [ -16.171875, 66.513260 ], [ -15.468750, 66.513260 ], [ -15.468750, 66.443107 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, 81.798757 ], [ -45.175781, 81.798757 ], [ -45.175781, 81.823794 ], [ -45.351562, 81.823794 ], [ -45.351562, 81.873641 ], [ -45.527344, 81.873641 ], [ -45.527344, 81.898451 ], [ -45.703125, 81.898451 ], [ -45.703125, 81.947846 ], [ -45.878906, 81.947846 ], [ -45.878906, 82.787476 ], [ -45.703125, 82.787476 ], [ -45.703125, 82.831480 ], [ -45.527344, 82.831480 ], [ -45.527344, 82.853382 ], [ -45.351562, 82.853382 ], [ -45.351562, 82.896987 ], [ -45.175781, 82.896987 ], [ -45.175781, 82.918690 ], [ -45.000000, 82.918690 ], [ -45.000000, 82.940327 ], [ -44.824219, 82.940327 ], [ -44.824219, 82.983404 ], [ -44.648438, 82.983404 ], [ -44.648438, 83.004844 ], [ -44.472656, 83.004844 ], [ -44.472656, 83.047529 ], [ -44.296875, 83.047529 ], [ -44.296875, 83.068774 ], [ -44.121094, 83.068774 ], [ -44.121094, 83.111071 ], [ -43.945312, 83.111071 ], [ -43.945312, 83.132123 ], [ -43.769531, 83.132123 ], [ -43.769531, 83.153111 ], [ -43.593750, 83.153111 ], [ -43.593750, 83.194896 ], [ -43.417969, 83.194896 ], [ -43.417969, 83.215693 ], [ -42.714844, 83.215693 ], [ -42.714844, 83.194896 ], [ -40.957031, 83.194896 ], [ -40.957031, 83.174035 ], [ -39.902344, 83.174035 ], [ -39.902344, 83.194896 ], [ -39.726562, 83.194896 ], [ -39.726562, 83.236426 ], [ -39.550781, 83.236426 ], [ -39.550781, 83.298250 ], [ -39.375000, 83.298250 ], [ -39.375000, 83.359511 ], [ -39.199219, 83.359511 ], [ -39.199219, 83.400042 ], [ -39.023438, 83.400042 ], [ -39.023438, 83.460377 ], [ -38.847656, 83.460377 ], [ -38.847656, 83.500295 ], [ -38.671875, 83.500295 ], [ -38.671875, 83.539970 ], [ -38.144531, 83.539970 ], [ -38.144531, 83.559717 ], [ -37.441406, 83.559717 ], [ -37.441406, 83.579404 ], [ -36.738281, 83.579404 ], [ -36.738281, 83.599031 ], [ -36.035156, 83.599031 ], [ -36.035156, 83.618598 ], [ -35.332031, 83.618598 ], [ -35.332031, 83.638106 ], [ -34.628906, 83.638106 ], [ -34.628906, 83.618598 ], [ -33.222656, 83.618598 ], [ -33.222656, 83.599031 ], [ -31.816406, 83.599031 ], [ -31.816406, 83.579404 ], [ -30.585938, 83.579404 ], [ -30.585938, 83.559717 ], [ -29.179688, 83.559717 ], [ -29.179688, 83.539970 ], [ -27.773438, 83.539970 ], [ -27.773438, 83.520162 ], [ -27.070312, 83.520162 ], [ -27.070312, 83.500295 ], [ -26.894531, 83.500295 ], [ -26.894531, 83.480366 ], [ -26.718750, 83.480366 ], [ -26.718750, 83.460377 ], [ -26.542969, 83.460377 ], [ -26.542969, 83.440326 ], [ -26.367188, 83.440326 ], [ -26.367188, 83.420215 ], [ -26.191406, 83.420215 ], [ -26.191406, 83.400042 ], [ -26.015625, 83.400042 ], [ -26.015625, 83.359511 ], [ -25.839844, 83.359511 ], [ -25.839844, 83.339153 ], [ -25.664062, 83.339153 ], [ -25.664062, 83.318733 ], [ -25.488281, 83.318733 ], [ -25.488281, 83.298250 ], [ -25.312500, 83.298250 ], [ -25.312500, 83.277705 ], [ -25.136719, 83.277705 ], [ -25.136719, 83.257097 ], [ -24.960938, 83.257097 ], [ -24.960938, 83.236426 ], [ -24.785156, 83.236426 ], [ -24.785156, 83.215693 ], [ -24.609375, 83.215693 ], [ -24.609375, 83.194896 ], [ -24.433594, 83.194896 ], [ -24.433594, 83.174035 ], [ -24.257812, 83.174035 ], [ -24.257812, 83.153111 ], [ -24.082031, 83.153111 ], [ -24.082031, 83.132123 ], [ -23.906250, 83.132123 ], [ -23.906250, 83.089955 ], [ -23.730469, 83.089955 ], [ -23.730469, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.047529 ], [ -23.378906, 83.047529 ], [ -23.378906, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 83.004844 ], [ -23.027344, 83.004844 ], [ -23.027344, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.961898 ], [ -22.675781, 82.961898 ], [ -22.675781, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.918690 ], [ -22.324219, 82.918690 ], [ -22.324219, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.875218 ], [ -21.972656, 82.875218 ], [ -21.972656, 82.831480 ], [ -21.796875, 82.831480 ], [ -21.796875, 82.809511 ], [ -21.621094, 82.809511 ], [ -21.621094, 82.787476 ], [ -21.445312, 82.787476 ], [ -21.445312, 82.765373 ], [ -21.269531, 82.765373 ], [ -21.269531, 82.743202 ], [ -21.093750, 82.743202 ], [ -21.093750, 82.720964 ], [ -20.917969, 82.720964 ], [ -20.917969, 82.698659 ], [ -21.093750, 82.698659 ], [ -21.093750, 82.653843 ], [ -21.269531, 82.653843 ], [ -21.269531, 82.608754 ], [ -21.445312, 82.608754 ], [ -21.445312, 82.586106 ], [ -21.621094, 82.586106 ], [ -21.621094, 82.540604 ], [ -21.796875, 82.540604 ], [ -21.796875, 82.494824 ], [ -21.972656, 82.494824 ], [ -21.972656, 82.448764 ], [ -22.148438, 82.448764 ], [ -22.148438, 82.425629 ], [ -22.324219, 82.425629 ], [ -22.324219, 82.379147 ], [ -22.500000, 82.379147 ], [ -22.500000, 82.332382 ], [ -24.433594, 82.332382 ], [ -24.433594, 82.308893 ], [ -26.894531, 82.308893 ], [ -26.894531, 82.285331 ], [ -27.949219, 82.285331 ], [ -27.949219, 82.261699 ], [ -29.003906, 82.261699 ], [ -29.003906, 82.237994 ], [ -30.058594, 82.237994 ], [ -30.058594, 82.214217 ], [ -31.113281, 82.214217 ], [ -31.113281, 82.190368 ], [ -31.816406, 82.190368 ], [ -31.816406, 82.142451 ], [ -31.640625, 82.142451 ], [ -31.640625, 82.045740 ], [ -31.464844, 82.045740 ], [ -31.464844, 82.021378 ], [ -30.937500, 82.021378 ], [ -30.937500, 82.045740 ], [ -30.234375, 82.045740 ], [ -30.234375, 82.070028 ], [ -29.531250, 82.070028 ], [ -29.531250, 82.094243 ], [ -28.828125, 82.094243 ], [ -28.828125, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.142451 ], [ -27.773438, 82.142451 ], [ -27.773438, 82.118384 ], [ -27.597656, 82.118384 ], [ -27.597656, 82.094243 ], [ -27.246094, 82.094243 ], [ -27.246094, 82.070028 ], [ -27.070312, 82.070028 ], [ -27.070312, 82.045740 ], [ -26.894531, 82.045740 ], [ -26.894531, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.996942 ], [ -26.542969, 81.996942 ], [ -26.542969, 81.972431 ], [ -26.191406, 81.972431 ], [ -26.191406, 81.947846 ], [ -26.015625, 81.947846 ], [ -26.015625, 81.923186 ], [ -25.839844, 81.923186 ], [ -25.839844, 81.898451 ], [ -25.664062, 81.898451 ], [ -25.664062, 81.873641 ], [ -25.488281, 81.873641 ], [ -25.488281, 81.848756 ], [ -25.136719, 81.848756 ], [ -25.136719, 81.823794 ], [ -24.960938, 81.823794 ], [ -24.960938, 81.798757 ], [ -24.609375, 81.798757 ], [ -24.609375, 81.823794 ], [ -24.433594, 81.823794 ], [ -24.433594, 81.848756 ], [ -24.257812, 81.848756 ], [ -24.257812, 81.873641 ], [ -24.082031, 81.873641 ], [ -24.082031, 81.898451 ], [ -23.906250, 81.898451 ], [ -23.906250, 81.947846 ], [ -23.730469, 81.947846 ], [ -23.730469, 81.972431 ], [ -23.554688, 81.972431 ], [ -23.554688, 81.996942 ], [ -23.378906, 81.996942 ], [ -23.378906, 82.021378 ], [ -23.203125, 82.021378 ], [ -23.203125, 82.045740 ], [ -23.027344, 82.045740 ], [ -23.027344, 82.070028 ], [ -22.851562, 82.070028 ], [ -22.851562, 82.045740 ], [ -22.675781, 82.045740 ], [ -22.675781, 81.947846 ], [ -22.500000, 81.947846 ], [ -22.500000, 81.848756 ], [ -22.324219, 81.848756 ], [ -22.324219, 81.748454 ], [ -22.148438, 81.748454 ], [ -22.148438, 81.672424 ], [ -22.324219, 81.672424 ], [ -22.324219, 81.569968 ], [ -22.500000, 81.569968 ], [ -22.500000, 81.466261 ], [ -22.675781, 81.466261 ], [ -22.675781, 81.387650 ], [ -22.851562, 81.387650 ], [ -22.851562, 81.281717 ], [ -23.027344, 81.281717 ], [ -23.027344, 81.174491 ], [ -22.851562, 81.174491 ], [ -22.851562, 81.201420 ], [ -22.675781, 81.201420 ], [ -22.675781, 81.228267 ], [ -22.500000, 81.228267 ], [ -22.500000, 81.255032 ], [ -22.324219, 81.255032 ], [ -22.324219, 81.281717 ], [ -22.148438, 81.281717 ], [ -22.148438, 81.308321 ], [ -21.972656, 81.308321 ], [ -21.972656, 81.334844 ], [ -21.621094, 81.334844 ], [ -21.621094, 81.361287 ], [ -21.445312, 81.361287 ], [ -21.445312, 81.387650 ], [ -21.269531, 81.387650 ], [ -21.269531, 81.413933 ], [ -21.093750, 81.413933 ], [ -21.093750, 81.440137 ], [ -20.917969, 81.440137 ], [ -20.917969, 81.466261 ], [ -20.742188, 81.466261 ], [ -20.742188, 81.492306 ], [ -20.566406, 81.492306 ], [ -20.566406, 81.518272 ], [ -20.390625, 81.518272 ], [ -20.390625, 81.544159 ], [ -20.039062, 81.544159 ], [ -20.039062, 81.569968 ], [ -19.687500, 81.569968 ], [ -19.687500, 81.595699 ], [ -19.511719, 81.595699 ], [ -19.511719, 81.621352 ], [ -19.160156, 81.621352 ], [ -19.160156, 81.646927 ], [ -18.808594, 81.646927 ], [ -18.808594, 81.672424 ], [ -18.632812, 81.672424 ], [ -18.632812, 81.697844 ], [ -18.281250, 81.697844 ], [ -18.281250, 81.723188 ], [ -17.929688, 81.723188 ], [ -17.929688, 81.748454 ], [ -17.578125, 81.748454 ], [ -17.578125, 81.773644 ], [ -17.402344, 81.773644 ], [ -17.402344, 81.798757 ], [ -17.050781, 81.798757 ], [ -17.050781, 81.823794 ], [ -16.699219, 81.823794 ], [ -16.699219, 81.848756 ], [ -16.523438, 81.848756 ], [ -16.523438, 81.873641 ], [ -16.171875, 81.873641 ], [ -16.171875, 81.898451 ], [ -15.820312, 81.898451 ], [ -15.820312, 81.923186 ], [ -15.644531, 81.923186 ], [ -15.644531, 81.898451 ], [ -15.292969, 81.898451 ], [ -15.292969, 81.873641 ], [ -14.941406, 81.873641 ], [ -14.941406, 81.848756 ], [ -14.589844, 81.848756 ], [ -14.589844, 81.823794 ], [ -14.238281, 81.823794 ], [ -14.238281, 81.798757 ], [ -13.886719, 81.798757 ], [ -13.886719, 81.773644 ], [ -13.535156, 81.773644 ], [ -13.535156, 81.748454 ], [ -13.183594, 81.748454 ], [ -13.183594, 81.723188 ], [ -12.832031, 81.723188 ], [ -12.832031, 81.646927 ], [ -12.656250, 81.646927 ], [ -12.656250, 81.544159 ], [ -12.480469, 81.544159 ], [ -12.480469, 81.440137 ], [ -12.304688, 81.440137 ], [ -12.304688, 81.334844 ], [ -12.128906, 81.334844 ], [ -12.128906, 81.255032 ], [ -12.304688, 81.255032 ], [ -12.304688, 81.228267 ], [ -12.480469, 81.228267 ], [ -12.480469, 81.201420 ], [ -12.656250, 81.201420 ], [ -12.656250, 81.174491 ], [ -12.832031, 81.174491 ], [ -12.832031, 81.147481 ], [ -13.007812, 81.147481 ], [ -13.007812, 81.120388 ], [ -13.183594, 81.120388 ], [ -13.183594, 81.093214 ], [ -13.359375, 81.093214 ], [ -13.359375, 81.065957 ], [ -13.535156, 81.065957 ], [ -13.535156, 81.038617 ], [ -13.710938, 81.038617 ], [ -13.710938, 81.011194 ], [ -13.886719, 81.011194 ], [ -13.886719, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.956099 ], [ -14.238281, 80.956099 ], [ -14.238281, 80.900669 ], [ -14.414062, 80.900669 ], [ -14.414062, 80.872827 ], [ -14.589844, 80.872827 ], [ -14.589844, 80.844901 ], [ -14.765625, 80.844901 ], [ -14.765625, 80.816891 ], [ -14.941406, 80.816891 ], [ -14.941406, 80.788795 ], [ -15.117188, 80.788795 ], [ -15.117188, 80.760615 ], [ -15.292969, 80.760615 ], [ -15.292969, 80.732349 ], [ -15.468750, 80.732349 ], [ -15.468750, 80.703997 ], [ -15.644531, 80.703997 ], [ -15.644531, 80.675559 ], [ -15.820312, 80.675559 ], [ -15.820312, 80.647035 ], [ -15.996094, 80.647035 ], [ -15.996094, 80.618424 ], [ -16.171875, 80.618424 ], [ -16.171875, 80.589727 ], [ -16.347656, 80.589727 ], [ -16.347656, 80.532071 ], [ -16.523438, 80.532071 ], [ -16.523438, 80.474065 ], [ -16.699219, 80.474065 ], [ -16.699219, 80.386396 ], [ -16.875000, 80.386396 ], [ -16.875000, 80.356995 ], [ -17.050781, 80.356995 ], [ -17.050781, 80.327506 ], [ -17.578125, 80.327506 ], [ -17.578125, 80.297927 ], [ -18.105469, 80.297927 ], [ -18.105469, 80.268259 ], [ -18.632812, 80.268259 ], [ -18.632812, 80.238501 ], [ -19.160156, 80.238501 ], [ -19.160156, 80.208652 ], [ -19.687500, 80.208652 ], [ -19.687500, 80.178713 ], [ -19.511719, 80.178713 ], [ -19.511719, 80.148684 ], [ -18.457031, 80.148684 ], [ -18.457031, 80.118564 ], [ -17.753906, 80.118564 ], [ -17.753906, 80.058050 ], [ -17.929688, 80.058050 ], [ -17.929688, 79.966590 ], [ -18.105469, 79.966590 ], [ -18.105469, 79.843346 ], [ -18.281250, 79.843346 ], [ -18.281250, 79.749932 ], [ -18.457031, 79.749932 ], [ -18.457031, 79.655668 ], [ -18.632812, 79.655668 ], [ -18.632812, 79.528647 ], [ -18.808594, 79.528647 ], [ -18.808594, 79.432371 ], [ -18.984375, 79.432371 ], [ -18.984375, 79.302640 ], [ -19.160156, 79.302640 ], [ -19.160156, 79.105086 ], [ -19.335938, 79.105086 ], [ -19.335938, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.848756 ], [ -45.703125, 81.848756 ], [ -45.703125, 81.823794 ], [ -45.527344, 81.823794 ], [ -45.527344, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.773644 ], [ -45.175781, 81.773644 ], [ -45.175781, 81.748454 ], [ -45.000000, 81.748454 ], [ -45.000000, 81.798757 ] ], [ [ -23.203125, 81.174491 ], [ -23.203125, 81.147481 ], [ -23.027344, 81.147481 ], [ -23.027344, 81.174491 ], [ -23.203125, 81.174491 ] ], [ [ -44.824219, 81.697844 ], [ -44.648438, 81.697844 ], [ -44.648438, 81.723188 ], [ -44.824219, 81.723188 ], [ -44.824219, 81.697844 ] ], [ [ -45.000000, 81.723188 ], [ -44.824219, 81.723188 ], [ -44.824219, 81.748454 ], [ -45.000000, 81.748454 ], [ -45.000000, 81.723188 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, 81.748454 ], [ -45.000000, 81.798757 ], [ -45.175781, 81.798757 ], [ -45.175781, 81.823794 ], [ -45.351562, 81.823794 ], [ -45.351562, 81.873641 ], [ -45.527344, 81.873641 ], [ -45.527344, 81.898451 ], [ -45.703125, 81.898451 ], [ -45.703125, 81.947846 ], [ -45.878906, 81.947846 ], [ -45.878906, 82.787476 ], [ -45.703125, 82.787476 ], [ -45.703125, 82.831480 ], [ -45.527344, 82.831480 ], [ -45.527344, 82.853382 ], [ -45.351562, 82.853382 ], [ -45.351562, 82.896987 ], [ -45.175781, 82.896987 ], [ -45.175781, 82.918690 ], [ -45.000000, 82.918690 ], [ -45.000000, 82.940327 ], [ -44.824219, 82.940327 ], [ -44.824219, 82.983404 ], [ -44.648438, 82.983404 ], [ -44.648438, 83.004844 ], [ -44.472656, 83.004844 ], [ -44.472656, 83.047529 ], [ -44.296875, 83.047529 ], [ -44.296875, 83.068774 ], [ -44.121094, 83.068774 ], [ -44.121094, 83.111071 ], [ -43.945312, 83.111071 ], [ -43.945312, 83.132123 ], [ -43.769531, 83.132123 ], [ -43.769531, 83.153111 ], [ -43.593750, 83.153111 ], [ -43.593750, 83.194896 ], [ -43.417969, 83.194896 ], [ -43.417969, 83.215693 ], [ -42.714844, 83.215693 ], [ -42.714844, 83.194896 ], [ -40.957031, 83.194896 ], [ -40.957031, 83.174035 ], [ -39.902344, 83.174035 ], [ -39.902344, 83.194896 ], [ -39.726562, 83.194896 ], [ -39.726562, 83.236426 ], [ -39.550781, 83.236426 ], [ -39.550781, 83.298250 ], [ -39.375000, 83.298250 ], [ -39.375000, 83.359511 ], [ -39.199219, 83.359511 ], [ -39.199219, 83.400042 ], [ -39.023438, 83.400042 ], [ -39.023438, 83.460377 ], [ -38.847656, 83.460377 ], [ -38.847656, 83.500295 ], [ -38.671875, 83.500295 ], [ -38.671875, 83.539970 ], [ -38.144531, 83.539970 ], [ -38.144531, 83.559717 ], [ -37.441406, 83.559717 ], [ -37.441406, 83.579404 ], [ -36.738281, 83.579404 ], [ -36.738281, 83.599031 ], [ -36.035156, 83.599031 ], [ -36.035156, 83.618598 ], [ -35.332031, 83.618598 ], [ -35.332031, 83.638106 ], [ -34.628906, 83.638106 ], [ -34.628906, 83.618598 ], [ -33.222656, 83.618598 ], [ -33.222656, 83.599031 ], [ -31.816406, 83.599031 ], [ -31.816406, 83.579404 ], [ -30.585938, 83.579404 ], [ -30.585938, 83.559717 ], [ -29.179688, 83.559717 ], [ -29.179688, 83.539970 ], [ -27.773438, 83.539970 ], [ -27.773438, 83.520162 ], [ -27.070312, 83.520162 ], [ -27.070312, 83.500295 ], [ -26.894531, 83.500295 ], [ -26.894531, 83.480366 ], [ -26.718750, 83.480366 ], [ -26.718750, 83.460377 ], [ -26.542969, 83.460377 ], [ -26.542969, 83.440326 ], [ -26.367188, 83.440326 ], [ -26.367188, 83.420215 ], [ -26.191406, 83.420215 ], [ -26.191406, 83.400042 ], [ -26.015625, 83.400042 ], [ -26.015625, 83.359511 ], [ -25.839844, 83.359511 ], [ -25.839844, 83.339153 ], [ -25.664062, 83.339153 ], [ -25.664062, 83.318733 ], [ -25.488281, 83.318733 ], [ -25.488281, 83.298250 ], [ -25.312500, 83.298250 ], [ -25.312500, 83.277705 ], [ -25.136719, 83.277705 ], [ -25.136719, 83.257097 ], [ -24.960938, 83.257097 ], [ -24.960938, 83.236426 ], [ -24.785156, 83.236426 ], [ -24.785156, 83.215693 ], [ -24.609375, 83.215693 ], [ -24.609375, 83.194896 ], [ -24.433594, 83.194896 ], [ -24.433594, 83.174035 ], [ -24.257812, 83.174035 ], [ -24.257812, 83.153111 ], [ -24.082031, 83.153111 ], [ -24.082031, 83.132123 ], [ -23.906250, 83.132123 ], [ -23.906250, 83.089955 ], [ -23.730469, 83.089955 ], [ -23.730469, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.047529 ], [ -23.378906, 83.047529 ], [ -23.378906, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 83.004844 ], [ -23.027344, 83.004844 ], [ -23.027344, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.961898 ], [ -22.675781, 82.961898 ], [ -22.675781, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.918690 ], [ -22.324219, 82.918690 ], [ -22.324219, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.875218 ], [ -21.972656, 82.875218 ], [ -21.972656, 82.831480 ], [ -21.796875, 82.831480 ], [ -21.796875, 82.809511 ], [ -21.621094, 82.809511 ], [ -21.621094, 82.787476 ], [ -21.445312, 82.787476 ], [ -21.445312, 82.765373 ], [ -21.269531, 82.765373 ], [ -21.269531, 82.743202 ], [ -21.093750, 82.743202 ], [ -21.093750, 82.720964 ], [ -20.917969, 82.720964 ], [ -20.917969, 82.698659 ], [ -21.093750, 82.698659 ], [ -21.093750, 82.653843 ], [ -21.269531, 82.653843 ], [ -21.269531, 82.608754 ], [ -21.445312, 82.608754 ], [ -21.445312, 82.586106 ], [ -21.621094, 82.586106 ], [ -21.621094, 82.540604 ], [ -21.796875, 82.540604 ], [ -21.796875, 82.494824 ], [ -21.972656, 82.494824 ], [ -21.972656, 82.448764 ], [ -22.148438, 82.448764 ], [ -22.148438, 82.425629 ], [ -22.324219, 82.425629 ], [ -22.324219, 82.379147 ], [ -22.500000, 82.379147 ], [ -22.500000, 82.332382 ], [ -24.433594, 82.332382 ], [ -24.433594, 82.308893 ], [ -26.894531, 82.308893 ], [ -26.894531, 82.285331 ], [ -27.949219, 82.285331 ], [ -27.949219, 82.261699 ], [ -29.003906, 82.261699 ], [ -29.003906, 82.237994 ], [ -30.058594, 82.237994 ], [ -30.058594, 82.214217 ], [ -31.113281, 82.214217 ], [ -31.113281, 82.190368 ], [ -31.816406, 82.190368 ], [ -31.816406, 82.142451 ], [ -31.640625, 82.142451 ], [ -31.640625, 82.045740 ], [ -31.464844, 82.045740 ], [ -31.464844, 82.021378 ], [ -30.937500, 82.021378 ], [ -30.937500, 82.045740 ], [ -30.234375, 82.045740 ], [ -30.234375, 82.070028 ], [ -29.531250, 82.070028 ], [ -29.531250, 82.094243 ], [ -28.828125, 82.094243 ], [ -28.828125, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.142451 ], [ -27.773438, 82.142451 ], [ -27.773438, 82.118384 ], [ -27.597656, 82.118384 ], [ -27.597656, 82.094243 ], [ -27.246094, 82.094243 ], [ -27.246094, 82.070028 ], [ -27.070312, 82.070028 ], [ -27.070312, 82.045740 ], [ -26.894531, 82.045740 ], [ -26.894531, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.996942 ], [ -26.542969, 81.996942 ], [ -26.542969, 81.972431 ], [ -26.191406, 81.972431 ], [ -26.191406, 81.947846 ], [ -26.015625, 81.947846 ], [ -26.015625, 81.923186 ], [ -25.839844, 81.923186 ], [ -25.839844, 81.898451 ], [ -25.664062, 81.898451 ], [ -25.664062, 81.873641 ], [ -25.488281, 81.873641 ], [ -25.488281, 81.848756 ], [ -25.136719, 81.848756 ], [ -25.136719, 81.823794 ], [ -24.960938, 81.823794 ], [ -24.960938, 81.798757 ], [ -24.609375, 81.798757 ], [ -24.609375, 81.823794 ], [ -24.433594, 81.823794 ], [ -24.433594, 81.848756 ], [ -24.257812, 81.848756 ], [ -24.257812, 81.873641 ], [ -24.082031, 81.873641 ], [ -24.082031, 81.898451 ], [ -23.906250, 81.898451 ], [ -23.906250, 81.947846 ], [ -23.730469, 81.947846 ], [ -23.730469, 81.972431 ], [ -23.554688, 81.972431 ], [ -23.554688, 81.996942 ], [ -23.378906, 81.996942 ], [ -23.378906, 82.021378 ], [ -23.203125, 82.021378 ], [ -23.203125, 82.045740 ], [ -23.027344, 82.045740 ], [ -23.027344, 82.070028 ], [ -22.851562, 82.070028 ], [ -22.851562, 82.045740 ], [ -22.675781, 82.045740 ], [ -22.675781, 81.947846 ], [ -22.500000, 81.947846 ], [ -22.500000, 81.848756 ], [ -22.324219, 81.848756 ], [ -22.324219, 81.748454 ], [ -22.148438, 81.748454 ], [ -22.148438, 81.672424 ], [ -22.324219, 81.672424 ], [ -22.324219, 81.569968 ], [ -22.500000, 81.569968 ], [ -22.500000, 81.466261 ], [ -22.675781, 81.466261 ], [ -22.675781, 81.387650 ], [ -22.851562, 81.387650 ], [ -22.851562, 81.281717 ], [ -23.027344, 81.281717 ], [ -23.027344, 81.174491 ], [ -22.851562, 81.174491 ], [ -22.851562, 81.201420 ], [ -22.675781, 81.201420 ], [ -22.675781, 81.228267 ], [ -22.500000, 81.228267 ], [ -22.500000, 81.255032 ], [ -22.324219, 81.255032 ], [ -22.324219, 81.281717 ], [ -22.148438, 81.281717 ], [ -22.148438, 81.308321 ], [ -21.972656, 81.308321 ], [ -21.972656, 81.334844 ], [ -21.621094, 81.334844 ], [ -21.621094, 81.361287 ], [ -21.445312, 81.361287 ], [ -21.445312, 81.387650 ], [ -21.269531, 81.387650 ], [ -21.269531, 81.413933 ], [ -21.093750, 81.413933 ], [ -21.093750, 81.440137 ], [ -20.917969, 81.440137 ], [ -20.917969, 81.466261 ], [ -20.742188, 81.466261 ], [ -20.742188, 81.492306 ], [ -20.566406, 81.492306 ], [ -20.566406, 81.518272 ], [ -20.390625, 81.518272 ], [ -20.390625, 81.544159 ], [ -20.039062, 81.544159 ], [ -20.039062, 81.569968 ], [ -19.687500, 81.569968 ], [ -19.687500, 81.595699 ], [ -19.511719, 81.595699 ], [ -19.511719, 81.621352 ], [ -19.160156, 81.621352 ], [ -19.160156, 81.646927 ], [ -18.808594, 81.646927 ], [ -18.808594, 81.672424 ], [ -18.632812, 81.672424 ], [ -18.632812, 81.697844 ], [ -18.281250, 81.697844 ], [ -18.281250, 81.723188 ], [ -17.929688, 81.723188 ], [ -17.929688, 81.748454 ], [ -17.578125, 81.748454 ], [ -17.578125, 81.773644 ], [ -17.402344, 81.773644 ], [ -17.402344, 81.798757 ], [ -17.050781, 81.798757 ], [ -17.050781, 81.823794 ], [ -16.699219, 81.823794 ], [ -16.699219, 81.848756 ], [ -16.523438, 81.848756 ], [ -16.523438, 81.873641 ], [ -16.171875, 81.873641 ], [ -16.171875, 81.898451 ], [ -15.820312, 81.898451 ], [ -15.820312, 81.923186 ], [ -15.644531, 81.923186 ], [ -15.644531, 81.898451 ], [ -15.292969, 81.898451 ], [ -15.292969, 81.873641 ], [ -14.941406, 81.873641 ], [ -14.941406, 81.848756 ], [ -14.589844, 81.848756 ], [ -14.589844, 81.823794 ], [ -14.238281, 81.823794 ], [ -14.238281, 81.798757 ], [ -13.886719, 81.798757 ], [ -13.886719, 81.773644 ], [ -13.535156, 81.773644 ], [ -13.535156, 81.748454 ], [ -13.183594, 81.748454 ], [ -13.183594, 81.723188 ], [ -12.832031, 81.723188 ], [ -12.832031, 81.646927 ], [ -12.656250, 81.646927 ], [ -12.656250, 81.544159 ], [ -12.480469, 81.544159 ], [ -12.480469, 81.440137 ], [ -12.304688, 81.440137 ], [ -12.304688, 81.334844 ], [ -12.128906, 81.334844 ], [ -12.128906, 81.255032 ], [ -12.304688, 81.255032 ], [ -12.304688, 81.228267 ], [ -12.480469, 81.228267 ], [ -12.480469, 81.201420 ], [ -12.656250, 81.201420 ], [ -12.656250, 81.174491 ], [ -12.832031, 81.174491 ], [ -12.832031, 81.147481 ], [ -13.007812, 81.147481 ], [ -13.007812, 81.120388 ], [ -13.183594, 81.120388 ], [ -13.183594, 81.093214 ], [ -13.359375, 81.093214 ], [ -13.359375, 81.065957 ], [ -13.535156, 81.065957 ], [ -13.535156, 81.038617 ], [ -13.710938, 81.038617 ], [ -13.710938, 81.011194 ], [ -13.886719, 81.011194 ], [ -13.886719, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.956099 ], [ -14.238281, 80.956099 ], [ -14.238281, 80.900669 ], [ -14.414062, 80.900669 ], [ -14.414062, 80.872827 ], [ -14.589844, 80.872827 ], [ -14.589844, 80.844901 ], [ -14.765625, 80.844901 ], [ -14.765625, 80.816891 ], [ -14.941406, 80.816891 ], [ -14.941406, 80.788795 ], [ -15.117188, 80.788795 ], [ -15.117188, 80.760615 ], [ -15.292969, 80.760615 ], [ -15.292969, 80.732349 ], [ -15.468750, 80.732349 ], [ -15.468750, 80.703997 ], [ -15.644531, 80.703997 ], [ -15.644531, 80.675559 ], [ -15.820312, 80.675559 ], [ -15.820312, 80.647035 ], [ -15.996094, 80.647035 ], [ -15.996094, 80.618424 ], [ -16.171875, 80.618424 ], [ -16.171875, 80.589727 ], [ -16.347656, 80.589727 ], [ -16.347656, 80.532071 ], [ -16.523438, 80.532071 ], [ -16.523438, 80.474065 ], [ -16.699219, 80.474065 ], [ -16.699219, 80.386396 ], [ -16.875000, 80.386396 ], [ -16.875000, 80.356995 ], [ -17.050781, 80.356995 ], [ -17.050781, 80.327506 ], [ -17.578125, 80.327506 ], [ -17.578125, 80.297927 ], [ -18.105469, 80.297927 ], [ -18.105469, 80.268259 ], [ -18.632812, 80.268259 ], [ -18.632812, 80.238501 ], [ -19.160156, 80.238501 ], [ -19.160156, 80.208652 ], [ -19.687500, 80.208652 ], [ -19.687500, 80.178713 ], [ -19.511719, 80.178713 ], [ -19.511719, 80.148684 ], [ -18.457031, 80.148684 ], [ -18.457031, 80.118564 ], [ -17.753906, 80.118564 ], [ -17.753906, 80.058050 ], [ -17.929688, 80.058050 ], [ -17.929688, 79.966590 ], [ -18.105469, 79.966590 ], [ -18.105469, 79.843346 ], [ -18.281250, 79.843346 ], [ -18.281250, 79.749932 ], [ -18.457031, 79.749932 ], [ -18.457031, 79.655668 ], [ -18.632812, 79.655668 ], [ -18.632812, 79.528647 ], [ -18.808594, 79.528647 ], [ -18.808594, 79.432371 ], [ -18.984375, 79.432371 ], [ -18.984375, 79.302640 ], [ -19.160156, 79.302640 ], [ -19.160156, 79.105086 ], [ -19.335938, 79.105086 ], [ -19.335938, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.848756 ], [ -45.703125, 81.848756 ], [ -45.703125, 81.823794 ], [ -45.527344, 81.823794 ], [ -45.527344, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.773644 ], [ -45.175781, 81.773644 ], [ -45.175781, 81.748454 ], [ -45.000000, 81.748454 ] ], [ [ -23.027344, 81.174491 ], [ -23.203125, 81.174491 ], [ -23.203125, 81.147481 ], [ -23.027344, 81.147481 ], [ -23.027344, 81.174491 ] ], [ [ -44.824219, 81.723188 ], [ -44.824219, 81.697844 ], [ -44.648438, 81.697844 ], [ -44.648438, 81.723188 ], [ -44.824219, 81.723188 ] ], [ [ -45.000000, 81.748454 ], [ -45.000000, 81.723188 ], [ -44.824219, 81.723188 ], [ -44.824219, 81.748454 ], [ -45.000000, 81.748454 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.261719, -70.140364 ], [ 8.789062, -70.140364 ], [ 8.789062, -70.080562 ], [ 9.316406, -70.080562 ], [ 9.316406, -70.020587 ], [ 9.492188, -70.020587 ], [ 9.492188, -70.080562 ], [ 9.667969, -70.080562 ], [ 9.667969, -70.199994 ], [ 9.843750, -70.199994 ], [ 9.843750, -70.318738 ], [ 10.019531, -70.318738 ], [ 10.019531, -70.436799 ], [ 10.195312, -70.436799 ], [ 10.195312, -70.554179 ], [ 10.371094, -70.554179 ], [ 10.371094, -70.670881 ], [ 10.546875, -70.670881 ], [ 10.546875, -70.728979 ], [ 10.722656, -70.728979 ], [ 10.722656, -70.844673 ], [ 11.074219, -70.844673 ], [ 11.074219, -70.786910 ], [ 11.425781, -70.786910 ], [ 11.425781, -70.728979 ], [ 11.601562, -70.728979 ], [ 11.601562, -70.670881 ], [ 11.953125, -70.670881 ], [ 11.953125, -70.554179 ], [ 12.128906, -70.554179 ], [ 12.128906, -70.436799 ], [ 12.304688, -70.436799 ], [ 12.304688, -70.318738 ], [ 12.480469, -70.318738 ], [ 12.480469, -70.259452 ], [ 12.656250, -70.259452 ], [ 12.656250, -70.199994 ], [ 12.832031, -70.199994 ], [ 12.832031, -70.140364 ], [ 13.007812, -70.140364 ], [ 13.007812, -70.080562 ], [ 13.183594, -70.080562 ], [ 13.183594, -70.020587 ], [ 13.359375, -70.020587 ], [ 13.359375, -69.960439 ], [ 13.886719, -69.960439 ], [ 13.886719, -70.020587 ], [ 14.765625, -70.020587 ], [ 14.765625, -70.140364 ], [ 14.941406, -70.140364 ], [ 14.941406, -70.318738 ], [ 15.117188, -70.318738 ], [ 15.117188, -70.377854 ], [ 15.292969, -70.377854 ], [ 15.292969, -70.318738 ], [ 15.468750, -70.318738 ], [ 15.468750, -70.199994 ], [ 15.644531, -70.199994 ], [ 15.644531, -70.140364 ], [ 15.820312, -70.140364 ], [ 15.820312, -70.080562 ], [ 15.996094, -70.080562 ], [ 15.996094, -70.020587 ], [ 16.347656, -70.020587 ], [ 16.347656, -69.960439 ], [ 16.875000, -69.960439 ], [ 16.875000, -69.900118 ], [ 19.511719, -69.900118 ], [ 19.511719, -69.960439 ], [ 20.039062, -69.960439 ], [ 20.039062, -70.020587 ], [ 20.742188, -70.020587 ], [ 20.742188, -70.080562 ], [ 21.445312, -70.080562 ], [ 21.445312, -70.140364 ], [ 21.621094, -70.140364 ], [ 21.621094, -70.259452 ], [ 21.796875, -70.259452 ], [ 21.796875, -70.377854 ], [ 21.972656, -70.377854 ], [ 21.972656, -70.436799 ], [ 22.148438, -70.436799 ], [ 22.148438, -70.554179 ], [ 22.324219, -70.554179 ], [ 22.324219, -70.670881 ], [ 22.851562, -70.670881 ], [ 22.851562, -70.612614 ], [ 23.203125, -70.612614 ], [ 23.203125, -70.554179 ], [ 23.554688, -70.554179 ], [ 23.554688, -70.495574 ], [ 26.718750, -70.495574 ], [ 26.718750, -70.436799 ], [ 27.421875, -70.436799 ], [ 27.421875, -70.377854 ], [ 27.949219, -70.377854 ], [ 27.949219, -70.318738 ], [ 28.476562, -70.318738 ], [ 28.476562, -70.259452 ], [ 29.003906, -70.259452 ], [ 29.003906, -70.199994 ], [ 29.355469, -70.199994 ], [ 29.355469, -70.140364 ], [ 29.531250, -70.140364 ], [ 29.531250, -70.080562 ], [ 29.882812, -70.080562 ], [ 29.882812, -70.020587 ], [ 30.058594, -70.020587 ], [ 30.058594, -69.960439 ], [ 30.234375, -69.960439 ], [ 30.234375, -69.900118 ], [ 30.585938, -69.900118 ], [ 30.585938, -69.839622 ], [ 30.937500, -69.839622 ], [ 30.937500, -69.778952 ], [ 31.289062, -69.778952 ], [ 31.289062, -69.718107 ], [ 31.816406, -69.718107 ], [ 31.816406, -69.657086 ], [ 32.167969, -69.657086 ], [ 32.167969, -69.595890 ], [ 32.343750, -69.595890 ], [ 32.343750, -69.534518 ], [ 32.519531, -69.534518 ], [ 32.519531, -69.472969 ], [ 32.695312, -69.472969 ], [ 32.695312, -69.349339 ], [ 32.871094, -69.349339 ], [ 32.871094, -69.162558 ], [ 33.046875, -69.162558 ], [ 33.046875, -68.974164 ], [ 33.222656, -68.974164 ], [ 33.222656, -68.847665 ], [ 33.398438, -68.847665 ], [ 33.398438, -68.784144 ], [ 33.574219, -68.784144 ], [ 33.574219, -68.656555 ], [ 33.750000, -68.656555 ], [ 33.750000, -68.592487 ], [ 33.925781, -68.592487 ], [ 33.925781, -68.528235 ], [ 34.101562, -68.528235 ], [ 34.101562, -68.592487 ], [ 34.628906, -68.592487 ], [ 34.628906, -68.656555 ], [ 34.980469, -68.656555 ], [ 34.980469, -68.784144 ], [ 35.156250, -68.784144 ], [ 35.156250, -68.974164 ], [ 35.332031, -68.974164 ], [ 35.332031, -69.099940 ], [ 35.683594, -69.099940 ], [ 35.683594, -69.162558 ], [ 36.035156, -69.162558 ], [ 36.035156, -69.224997 ], [ 36.914062, -69.224997 ], [ 36.914062, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.224997 ], [ 37.441406, -69.224997 ], [ 37.441406, -69.349339 ], [ 37.617188, -69.349339 ], [ 37.617188, -69.411242 ], [ 37.792969, -69.411242 ], [ 37.792969, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.595890 ], [ 38.144531, -69.595890 ], [ 38.144531, -69.657086 ], [ 38.320312, -69.657086 ], [ 38.320312, -69.718107 ], [ 38.496094, -69.718107 ], [ 38.496094, -69.778952 ], [ 38.847656, -69.778952 ], [ 38.847656, -69.718107 ], [ 39.199219, -69.718107 ], [ 39.199219, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.595890 ], [ 39.726562, -69.595890 ], [ 39.726562, -69.472969 ], [ 39.902344, -69.472969 ], [ 39.902344, -69.224997 ], [ 40.078125, -69.224997 ], [ 40.078125, -69.099940 ], [ 40.253906, -69.099940 ], [ 40.253906, -69.037142 ], [ 40.605469, -69.037142 ], [ 40.605469, -68.974164 ], [ 40.957031, -68.974164 ], [ 40.957031, -68.911005 ], [ 41.132812, -68.911005 ], [ 41.132812, -68.847665 ], [ 41.308594, -68.847665 ], [ 41.308594, -68.784144 ], [ 41.660156, -68.784144 ], [ 41.660156, -68.720441 ], [ 41.835938, -68.720441 ], [ 41.835938, -68.656555 ], [ 42.011719, -68.656555 ], [ 42.011719, -68.592487 ], [ 42.363281, -68.592487 ], [ 42.363281, -68.528235 ], [ 42.714844, -68.528235 ], [ 42.714844, -68.463800 ], [ 43.242188, -68.463800 ], [ 43.242188, -68.399180 ], [ 43.593750, -68.399180 ], [ 43.593750, -68.334376 ], [ 43.945312, -68.334376 ], [ 43.945312, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.204212 ], [ 44.648438, -68.204212 ], [ 44.648438, -68.138852 ], [ 44.824219, -68.138852 ], [ 44.824219, -68.073305 ], [ 45.000000, -68.073305 ], [ 45.000000, -68.007571 ], [ 45.175781, -68.007571 ], [ 45.175781, -67.941650 ], [ 45.527344, -67.941650 ], [ 45.527344, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.244356 ], [ -0.703125, -71.244356 ], [ -0.703125, -71.357067 ], [ -0.527344, -71.357067 ], [ -0.527344, -71.469124 ], [ -0.351562, -71.469124 ], [ -0.351562, -71.580532 ], [ -0.175781, -71.580532 ], [ -0.175781, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.580532 ], [ 0.175781, -71.580532 ], [ 0.175781, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.469124 ], [ 0.527344, -71.469124 ], [ 0.527344, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.357067 ], [ 0.878906, -71.357067 ], [ 0.878906, -71.300793 ], [ 1.230469, -71.300793 ], [ 1.230469, -71.244356 ], [ 1.582031, -71.244356 ], [ 1.582031, -71.187754 ], [ 1.933594, -71.187754 ], [ 1.933594, -71.130988 ], [ 2.285156, -71.130988 ], [ 2.285156, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -71.016960 ], [ 3.339844, -71.016960 ], [ 3.339844, -70.959697 ], [ 3.691406, -70.959697 ], [ 3.691406, -70.902268 ], [ 4.042969, -70.902268 ], [ 4.042969, -70.844673 ], [ 4.394531, -70.844673 ], [ 4.394531, -70.786910 ], [ 4.570312, -70.786910 ], [ 4.570312, -70.728979 ], [ 4.921875, -70.728979 ], [ 4.921875, -70.670881 ], [ 5.097656, -70.670881 ], [ 5.097656, -70.612614 ], [ 5.449219, -70.612614 ], [ 5.449219, -70.554179 ], [ 5.800781, -70.554179 ], [ 5.800781, -70.495574 ], [ 6.152344, -70.495574 ], [ 6.152344, -70.436799 ], [ 6.503906, -70.436799 ], [ 6.503906, -70.377854 ], [ 6.855469, -70.377854 ], [ 6.855469, -70.318738 ], [ 7.207031, -70.318738 ], [ 7.207031, -70.199994 ], [ 7.382812, -70.199994 ], [ 7.382812, -70.080562 ], [ 7.558594, -70.080562 ], [ 7.558594, -69.960439 ], [ 7.910156, -69.960439 ], [ 7.910156, -70.020587 ], [ 8.085938, -70.020587 ], [ 8.085938, -70.080562 ], [ 8.261719, -70.080562 ], [ 8.261719, -70.140364 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.809245 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.244356 ], [ -0.703125, -71.244356 ], [ -0.703125, -71.357067 ], [ -0.527344, -71.357067 ], [ -0.527344, -71.469124 ], [ -0.351562, -71.469124 ], [ -0.351562, -71.580532 ], [ -0.175781, -71.580532 ], [ -0.175781, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.580532 ], [ 0.175781, -71.580532 ], [ 0.175781, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.469124 ], [ 0.527344, -71.469124 ], [ 0.527344, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.357067 ], [ 0.878906, -71.357067 ], [ 0.878906, -71.300793 ], [ 1.230469, -71.300793 ], [ 1.230469, -71.244356 ], [ 1.582031, -71.244356 ], [ 1.582031, -71.187754 ], [ 1.933594, -71.187754 ], [ 1.933594, -71.130988 ], [ 2.285156, -71.130988 ], [ 2.285156, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -71.016960 ], [ 3.339844, -71.016960 ], [ 3.339844, -70.959697 ], [ 3.691406, -70.959697 ], [ 3.691406, -70.902268 ], [ 4.042969, -70.902268 ], [ 4.042969, -70.844673 ], [ 4.394531, -70.844673 ], [ 4.394531, -70.786910 ], [ 4.570312, -70.786910 ], [ 4.570312, -70.728979 ], [ 4.921875, -70.728979 ], [ 4.921875, -70.670881 ], [ 5.097656, -70.670881 ], [ 5.097656, -70.612614 ], [ 5.449219, -70.612614 ], [ 5.449219, -70.554179 ], [ 5.800781, -70.554179 ], [ 5.800781, -70.495574 ], [ 6.152344, -70.495574 ], [ 6.152344, -70.436799 ], [ 6.503906, -70.436799 ], [ 6.503906, -70.377854 ], [ 6.855469, -70.377854 ], [ 6.855469, -70.318738 ], [ 7.207031, -70.318738 ], [ 7.207031, -70.199994 ], [ 7.382812, -70.199994 ], [ 7.382812, -70.080562 ], [ 7.558594, -70.080562 ], [ 7.558594, -69.960439 ], [ 7.910156, -69.960439 ], [ 7.910156, -70.020587 ], [ 8.085938, -70.020587 ], [ 8.085938, -70.080562 ], [ 8.261719, -70.080562 ], [ 8.261719, -70.140364 ], [ 8.789062, -70.140364 ], [ 8.789062, -70.080562 ], [ 9.316406, -70.080562 ], [ 9.316406, -70.020587 ], [ 9.492188, -70.020587 ], [ 9.492188, -70.080562 ], [ 9.667969, -70.080562 ], [ 9.667969, -70.199994 ], [ 9.843750, -70.199994 ], [ 9.843750, -70.318738 ], [ 10.019531, -70.318738 ], [ 10.019531, -70.436799 ], [ 10.195312, -70.436799 ], [ 10.195312, -70.554179 ], [ 10.371094, -70.554179 ], [ 10.371094, -70.670881 ], [ 10.546875, -70.670881 ], [ 10.546875, -70.728979 ], [ 10.722656, -70.728979 ], [ 10.722656, -70.844673 ], [ 11.074219, -70.844673 ], [ 11.074219, -70.786910 ], [ 11.425781, -70.786910 ], [ 11.425781, -70.728979 ], [ 11.601562, -70.728979 ], [ 11.601562, -70.670881 ], [ 11.953125, -70.670881 ], [ 11.953125, -70.554179 ], [ 12.128906, -70.554179 ], [ 12.128906, -70.436799 ], [ 12.304688, -70.436799 ], [ 12.304688, -70.318738 ], [ 12.480469, -70.318738 ], [ 12.480469, -70.259452 ], [ 12.656250, -70.259452 ], [ 12.656250, -70.199994 ], [ 12.832031, -70.199994 ], [ 12.832031, -70.140364 ], [ 13.007812, -70.140364 ], [ 13.007812, -70.080562 ], [ 13.183594, -70.080562 ], [ 13.183594, -70.020587 ], [ 13.359375, -70.020587 ], [ 13.359375, -69.960439 ], [ 13.886719, -69.960439 ], [ 13.886719, -70.020587 ], [ 14.765625, -70.020587 ], [ 14.765625, -70.140364 ], [ 14.941406, -70.140364 ], [ 14.941406, -70.318738 ], [ 15.117188, -70.318738 ], [ 15.117188, -70.377854 ], [ 15.292969, -70.377854 ], [ 15.292969, -70.318738 ], [ 15.468750, -70.318738 ], [ 15.468750, -70.199994 ], [ 15.644531, -70.199994 ], [ 15.644531, -70.140364 ], [ 15.820312, -70.140364 ], [ 15.820312, -70.080562 ], [ 15.996094, -70.080562 ], [ 15.996094, -70.020587 ], [ 16.347656, -70.020587 ], [ 16.347656, -69.960439 ], [ 16.875000, -69.960439 ], [ 16.875000, -69.900118 ], [ 19.511719, -69.900118 ], [ 19.511719, -69.960439 ], [ 20.039062, -69.960439 ], [ 20.039062, -70.020587 ], [ 20.742188, -70.020587 ], [ 20.742188, -70.080562 ], [ 21.445312, -70.080562 ], [ 21.445312, -70.140364 ], [ 21.621094, -70.140364 ], [ 21.621094, -70.259452 ], [ 21.796875, -70.259452 ], [ 21.796875, -70.377854 ], [ 21.972656, -70.377854 ], [ 21.972656, -70.436799 ], [ 22.148438, -70.436799 ], [ 22.148438, -70.554179 ], [ 22.324219, -70.554179 ], [ 22.324219, -70.670881 ], [ 22.851562, -70.670881 ], [ 22.851562, -70.612614 ], [ 23.203125, -70.612614 ], [ 23.203125, -70.554179 ], [ 23.554688, -70.554179 ], [ 23.554688, -70.495574 ], [ 26.718750, -70.495574 ], [ 26.718750, -70.436799 ], [ 27.421875, -70.436799 ], [ 27.421875, -70.377854 ], [ 27.949219, -70.377854 ], [ 27.949219, -70.318738 ], [ 28.476562, -70.318738 ], [ 28.476562, -70.259452 ], [ 29.003906, -70.259452 ], [ 29.003906, -70.199994 ], [ 29.355469, -70.199994 ], [ 29.355469, -70.140364 ], [ 29.531250, -70.140364 ], [ 29.531250, -70.080562 ], [ 29.882812, -70.080562 ], [ 29.882812, -70.020587 ], [ 30.058594, -70.020587 ], [ 30.058594, -69.960439 ], [ 30.234375, -69.960439 ], [ 30.234375, -69.900118 ], [ 30.585938, -69.900118 ], [ 30.585938, -69.839622 ], [ 30.937500, -69.839622 ], [ 30.937500, -69.778952 ], [ 31.289062, -69.778952 ], [ 31.289062, -69.718107 ], [ 31.816406, -69.718107 ], [ 31.816406, -69.657086 ], [ 32.167969, -69.657086 ], [ 32.167969, -69.595890 ], [ 32.343750, -69.595890 ], [ 32.343750, -69.534518 ], [ 32.519531, -69.534518 ], [ 32.519531, -69.472969 ], [ 32.695312, -69.472969 ], [ 32.695312, -69.349339 ], [ 32.871094, -69.349339 ], [ 32.871094, -69.162558 ], [ 33.046875, -69.162558 ], [ 33.046875, -68.974164 ], [ 33.222656, -68.974164 ], [ 33.222656, -68.847665 ], [ 33.398438, -68.847665 ], [ 33.398438, -68.784144 ], [ 33.574219, -68.784144 ], [ 33.574219, -68.656555 ], [ 33.750000, -68.656555 ], [ 33.750000, -68.592487 ], [ 33.925781, -68.592487 ], [ 33.925781, -68.528235 ], [ 34.101562, -68.528235 ], [ 34.101562, -68.592487 ], [ 34.628906, -68.592487 ], [ 34.628906, -68.656555 ], [ 34.980469, -68.656555 ], [ 34.980469, -68.784144 ], [ 35.156250, -68.784144 ], [ 35.156250, -68.974164 ], [ 35.332031, -68.974164 ], [ 35.332031, -69.099940 ], [ 35.683594, -69.099940 ], [ 35.683594, -69.162558 ], [ 36.035156, -69.162558 ], [ 36.035156, -69.224997 ], [ 36.914062, -69.224997 ], [ 36.914062, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.224997 ], [ 37.441406, -69.224997 ], [ 37.441406, -69.349339 ], [ 37.617188, -69.349339 ], [ 37.617188, -69.411242 ], [ 37.792969, -69.411242 ], [ 37.792969, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.595890 ], [ 38.144531, -69.595890 ], [ 38.144531, -69.657086 ], [ 38.320312, -69.657086 ], [ 38.320312, -69.718107 ], [ 38.496094, -69.718107 ], [ 38.496094, -69.778952 ], [ 38.847656, -69.778952 ], [ 38.847656, -69.718107 ], [ 39.199219, -69.718107 ], [ 39.199219, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.595890 ], [ 39.726562, -69.595890 ], [ 39.726562, -69.472969 ], [ 39.902344, -69.472969 ], [ 39.902344, -69.224997 ], [ 40.078125, -69.224997 ], [ 40.078125, -69.099940 ], [ 40.253906, -69.099940 ], [ 40.253906, -69.037142 ], [ 40.605469, -69.037142 ], [ 40.605469, -68.974164 ], [ 40.957031, -68.974164 ], [ 40.957031, -68.911005 ], [ 41.132812, -68.911005 ], [ 41.132812, -68.847665 ], [ 41.308594, -68.847665 ], [ 41.308594, -68.784144 ], [ 41.660156, -68.784144 ], [ 41.660156, -68.720441 ], [ 41.835938, -68.720441 ], [ 41.835938, -68.656555 ], [ 42.011719, -68.656555 ], [ 42.011719, -68.592487 ], [ 42.363281, -68.592487 ], [ 42.363281, -68.528235 ], [ 42.714844, -68.528235 ], [ 42.714844, -68.463800 ], [ 43.242188, -68.463800 ], [ 43.242188, -68.399180 ], [ 43.593750, -68.399180 ], [ 43.593750, -68.334376 ], [ 43.945312, -68.334376 ], [ 43.945312, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.204212 ], [ 44.648438, -68.204212 ], [ 44.648438, -68.138852 ], [ 44.824219, -68.138852 ], [ 44.824219, -68.073305 ], [ 45.000000, -68.073305 ], [ 45.000000, -68.007571 ], [ 45.175781, -68.007571 ], [ 45.175781, -67.941650 ], [ 45.527344, -67.941650 ], [ 45.527344, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 0.703107 ], [ 34.277344, 0.703107 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, -0.878872 ], [ 33.046875, -0.878872 ], [ 33.046875, -1.054628 ], [ 30.410156, -1.054628 ], [ 30.410156, -1.230374 ], [ 30.058594, -1.230374 ], [ 30.058594, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.527336 ], [ 29.707031, -0.527336 ], [ 29.707031, -0.351560 ], [ 29.882812, -0.351560 ], [ 29.882812, 0.703107 ], [ 30.058594, 0.703107 ], [ 30.058594, 0.878872 ], [ 34.453125, 0.878872 ], [ 34.453125, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 0.878872 ], [ 34.453125, 0.703107 ], [ 34.277344, 0.703107 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, -0.878872 ], [ 33.046875, -1.054628 ], [ 30.410156, -1.054628 ], [ 30.410156, -1.230374 ], [ 30.058594, -1.230374 ], [ 30.058594, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.527336 ], [ 29.707031, -0.527336 ], [ 29.707031, -0.351560 ], [ 29.882812, -0.351560 ], [ 29.882812, 0.703107 ], [ 30.058594, 0.703107 ], [ 30.058594, 0.878872 ], [ 34.453125, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.957031, -1.054628 ], [ 41.132812, -1.054628 ], [ 41.132812, -1.230374 ], [ 41.308594, -1.230374 ], [ 41.308594, -1.581830 ], [ 41.484375, -1.581830 ], [ 41.484375, -1.757537 ], [ 41.660156, -1.757537 ], [ 41.660156, -1.933227 ], [ 41.308594, -1.933227 ], [ 41.308594, -2.108899 ], [ 40.957031, -2.108899 ], [ 40.957031, -2.284551 ], [ 40.781250, -2.284551 ], [ 40.781250, -2.460181 ], [ 40.605469, -2.460181 ], [ 40.605469, -2.635789 ], [ 40.253906, -2.635789 ], [ 40.253906, -2.986927 ], [ 40.078125, -2.986927 ], [ 40.078125, -3.513421 ], [ 39.902344, -3.513421 ], [ 39.902344, -3.688855 ], [ 39.726562, -3.688855 ], [ 39.726562, -4.039618 ], [ 39.550781, -4.039618 ], [ 39.550781, -4.565474 ], [ 39.375000, -4.565474 ], [ 39.375000, -4.740675 ], [ 39.023438, -4.740675 ], [ 39.023438, -4.565474 ], [ 38.671875, -4.565474 ], [ 38.671875, -4.390229 ], [ 38.496094, -4.390229 ], [ 38.496094, -4.214943 ], [ 38.320312, -4.214943 ], [ 38.320312, -4.039618 ], [ 37.968750, -4.039618 ], [ 37.968750, -3.864255 ], [ 37.792969, -3.864255 ], [ 37.792969, -3.513421 ], [ 37.617188, -3.513421 ], [ 37.617188, -3.162456 ], [ 37.441406, -3.162456 ], [ 37.441406, -2.986927 ], [ 37.089844, -2.986927 ], [ 37.089844, -2.811371 ], [ 36.738281, -2.811371 ], [ 36.738281, -2.635789 ], [ 36.562500, -2.635789 ], [ 36.562500, -2.460181 ], [ 36.210938, -2.460181 ], [ 36.210938, -2.284551 ], [ 35.859375, -2.284551 ], [ 35.859375, -2.108899 ], [ 35.683594, -2.108899 ], [ 35.683594, -1.933227 ], [ 35.332031, -1.933227 ], [ 35.332031, -1.757537 ], [ 34.980469, -1.757537 ], [ 34.980469, -1.581830 ], [ 34.804688, -1.581830 ], [ 34.804688, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -1.230374 ], [ 34.101562, -1.230374 ], [ 34.101562, -1.054628 ], [ 33.925781, -1.054628 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.527336 ], [ 34.277344, 0.527336 ], [ 34.277344, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.878872 ], [ 40.957031, 0.878872 ], [ 40.957031, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.957031, 0.878872 ], [ 40.957031, -1.054628 ], [ 41.132812, -1.054628 ], [ 41.132812, -1.230374 ], [ 41.308594, -1.230374 ], [ 41.308594, -1.581830 ], [ 41.484375, -1.581830 ], [ 41.484375, -1.757537 ], [ 41.660156, -1.757537 ], [ 41.660156, -1.933227 ], [ 41.308594, -1.933227 ], [ 41.308594, -2.108899 ], [ 40.957031, -2.108899 ], [ 40.957031, -2.284551 ], [ 40.781250, -2.284551 ], [ 40.781250, -2.460181 ], [ 40.605469, -2.460181 ], [ 40.605469, -2.635789 ], [ 40.253906, -2.635789 ], [ 40.253906, -2.986927 ], [ 40.078125, -2.986927 ], [ 40.078125, -3.513421 ], [ 39.902344, -3.513421 ], [ 39.902344, -3.688855 ], [ 39.726562, -3.688855 ], [ 39.726562, -4.039618 ], [ 39.550781, -4.039618 ], [ 39.550781, -4.565474 ], [ 39.375000, -4.565474 ], [ 39.375000, -4.740675 ], [ 39.023438, -4.740675 ], [ 39.023438, -4.565474 ], [ 38.671875, -4.565474 ], [ 38.671875, -4.390229 ], [ 38.496094, -4.390229 ], [ 38.496094, -4.214943 ], [ 38.320312, -4.214943 ], [ 38.320312, -4.039618 ], [ 37.968750, -4.039618 ], [ 37.968750, -3.864255 ], [ 37.792969, -3.864255 ], [ 37.792969, -3.513421 ], [ 37.617188, -3.513421 ], [ 37.617188, -3.162456 ], [ 37.441406, -3.162456 ], [ 37.441406, -2.986927 ], [ 37.089844, -2.986927 ], [ 37.089844, -2.811371 ], [ 36.738281, -2.811371 ], [ 36.738281, -2.635789 ], [ 36.562500, -2.635789 ], [ 36.562500, -2.460181 ], [ 36.210938, -2.460181 ], [ 36.210938, -2.284551 ], [ 35.859375, -2.284551 ], [ 35.859375, -2.108899 ], [ 35.683594, -2.108899 ], [ 35.683594, -1.933227 ], [ 35.332031, -1.933227 ], [ 35.332031, -1.757537 ], [ 34.980469, -1.757537 ], [ 34.980469, -1.581830 ], [ 34.804688, -1.581830 ], [ 34.804688, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -1.230374 ], [ 34.101562, -1.230374 ], [ 34.101562, -1.054628 ], [ 33.925781, -1.054628 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.527336 ], [ 34.277344, 0.527336 ], [ 34.277344, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.878872 ], [ 40.957031, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.769531, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 42.011719, -0.878872 ], [ 42.011719, -1.230374 ], [ 41.835938, -1.230374 ], [ 41.835938, -1.581830 ], [ 41.660156, -1.581830 ], [ 41.660156, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.581830 ], [ 41.308594, -1.581830 ], [ 41.308594, -1.230374 ], [ 41.132812, -1.230374 ], [ 41.132812, -1.054628 ], [ 40.957031, -1.054628 ], [ 40.957031, 0.878872 ], [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 42.011719, -0.878872 ], [ 42.011719, -1.230374 ], [ 41.835938, -1.230374 ], [ 41.835938, -1.581830 ], [ 41.660156, -1.581830 ], [ 41.660156, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.581830 ], [ 41.308594, -1.581830 ], [ 41.308594, -1.230374 ], [ 41.132812, -1.230374 ], [ 41.132812, -1.054628 ], [ 40.957031, -1.054628 ], [ 40.957031, 0.878872 ], [ 43.769531, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, -2.108899 ], [ 12.656250, -2.284551 ], [ 12.480469, -2.284551 ], [ 12.480469, -2.460181 ], [ 11.777344, -2.460181 ], [ 11.777344, -2.635789 ], [ 11.601562, -2.635789 ], [ 11.601562, -2.811371 ], [ 11.425781, -2.811371 ], [ 11.425781, -2.986927 ], [ 11.601562, -2.986927 ], [ 11.601562, -3.337954 ], [ 11.777344, -3.337954 ], [ 11.777344, -3.688855 ], [ 11.601562, -3.688855 ], [ 11.601562, -3.864255 ], [ 11.250000, -3.864255 ], [ 11.250000, -4.039618 ], [ 10.898438, -4.039618 ], [ 10.898438, -3.864255 ], [ 10.722656, -3.864255 ], [ 10.722656, -3.688855 ], [ 10.546875, -3.688855 ], [ 10.546875, -3.513421 ], [ 10.371094, -3.513421 ], [ 10.371094, -3.337954 ], [ 10.195312, -3.337954 ], [ 10.195312, -3.162456 ], [ 10.019531, -3.162456 ], [ 10.019531, -2.986927 ], [ 9.843750, -2.986927 ], [ 9.843750, -2.635789 ], [ 9.667969, -2.635789 ], [ 9.667969, -2.284551 ], [ 9.492188, -2.284551 ], [ 9.492188, -2.108899 ], [ 9.316406, -2.108899 ], [ 9.316406, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.581830 ], [ 8.964844, -1.581830 ], [ 8.964844, -1.230374 ], [ 8.789062, -1.230374 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.703107 ], [ 8.964844, -0.351560 ], [ 9.140625, -0.351560 ], [ 9.140625, 0.000000 ], [ 9.316406, 0.000000 ], [ 9.316406, 0.527336 ], [ 9.492188, 0.527336 ], [ 9.492188, 0.878872 ], [ 14.238281, 0.878872 ], [ 14.238281, 0.527336 ], [ 14.062500, 0.527336 ], [ 14.062500, 0.175781 ], [ 13.886719, 0.175781 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -1.054628 ], [ 14.414062, -1.054628 ], [ 14.414062, -1.757537 ], [ 14.238281, -1.757537 ], [ 14.238281, -2.284551 ], [ 14.062500, -2.284551 ], [ 14.062500, -2.460181 ], [ 13.007812, -2.460181 ], [ 13.007812, -2.284551 ], [ 12.832031, -2.284551 ], [ 12.832031, -2.108899 ], [ 12.656250, -2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.238281, 0.878872 ], [ 14.238281, 0.527336 ], [ 14.062500, 0.527336 ], [ 14.062500, 0.175781 ], [ 13.886719, 0.175781 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -1.054628 ], [ 14.414062, -1.054628 ], [ 14.414062, -1.757537 ], [ 14.238281, -1.757537 ], [ 14.238281, -2.284551 ], [ 14.062500, -2.284551 ], [ 14.062500, -2.460181 ], [ 13.007812, -2.460181 ], [ 13.007812, -2.284551 ], [ 12.832031, -2.284551 ], [ 12.832031, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.284551 ], [ 12.480469, -2.284551 ], [ 12.480469, -2.460181 ], [ 11.777344, -2.460181 ], [ 11.777344, -2.635789 ], [ 11.601562, -2.635789 ], [ 11.601562, -2.811371 ], [ 11.425781, -2.811371 ], [ 11.425781, -2.986927 ], [ 11.601562, -2.986927 ], [ 11.601562, -3.337954 ], [ 11.777344, -3.337954 ], [ 11.777344, -3.688855 ], [ 11.601562, -3.688855 ], [ 11.601562, -3.864255 ], [ 11.250000, -3.864255 ], [ 11.250000, -4.039618 ], [ 10.898438, -4.039618 ], [ 10.898438, -3.864255 ], [ 10.722656, -3.864255 ], [ 10.722656, -3.688855 ], [ 10.546875, -3.688855 ], [ 10.546875, -3.513421 ], [ 10.371094, -3.513421 ], [ 10.371094, -3.337954 ], [ 10.195312, -3.337954 ], [ 10.195312, -3.162456 ], [ 10.019531, -3.162456 ], [ 10.019531, -2.986927 ], [ 9.843750, -2.986927 ], [ 9.843750, -2.635789 ], [ 9.667969, -2.635789 ], [ 9.667969, -2.284551 ], [ 9.492188, -2.284551 ], [ 9.492188, -2.108899 ], [ 9.316406, -2.108899 ], [ 9.316406, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.581830 ], [ 8.964844, -1.581830 ], [ 8.964844, -1.230374 ], [ 8.789062, -1.230374 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.703107 ], [ 8.964844, -0.351560 ], [ 9.140625, -0.351560 ], [ 9.140625, 0.000000 ], [ 9.316406, 0.000000 ], [ 9.316406, 0.527336 ], [ 9.492188, 0.527336 ], [ 9.492188, 0.878872 ], [ 14.238281, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.535156, -4.565474 ], [ 13.535156, -4.740675 ], [ 13.359375, -4.740675 ], [ 13.359375, -4.915833 ], [ 13.007812, -4.915833 ], [ 13.007812, -4.740675 ], [ 12.832031, -4.740675 ], [ 12.832031, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.740675 ], [ 12.128906, -4.740675 ], [ 12.128906, -5.090944 ], [ 11.777344, -5.090944 ], [ 11.777344, -4.915833 ], [ 11.601562, -4.915833 ], [ 11.601562, -4.565474 ], [ 11.425781, -4.565474 ], [ 11.425781, -4.390229 ], [ 11.250000, -4.390229 ], [ 11.250000, -4.214943 ], [ 11.074219, -4.214943 ], [ 11.074219, -4.039618 ], [ 11.250000, -4.039618 ], [ 11.250000, -3.864255 ], [ 11.601562, -3.864255 ], [ 11.601562, -3.688855 ], [ 11.777344, -3.688855 ], [ 11.777344, -3.337954 ], [ 11.601562, -3.337954 ], [ 11.601562, -2.986927 ], [ 11.425781, -2.986927 ], [ 11.425781, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -2.635789 ], [ 11.777344, -2.635789 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.460181 ], [ 12.480469, -2.284551 ], [ 12.656250, -2.284551 ], [ 12.656250, -2.108899 ], [ 12.832031, -2.108899 ], [ 12.832031, -2.284551 ], [ 13.007812, -2.284551 ], [ 13.007812, -2.460181 ], [ 14.062500, -2.460181 ], [ 14.062500, -2.284551 ], [ 14.238281, -2.284551 ], [ 14.238281, -1.757537 ], [ 14.414062, -1.757537 ], [ 14.414062, -1.054628 ], [ 14.238281, -1.054628 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.175781 ], [ 14.062500, 0.175781 ], [ 14.062500, 0.527336 ], [ 14.238281, 0.527336 ], [ 14.238281, 0.878872 ], [ 17.753906, 0.878872 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.878872 ], [ 17.402344, -0.878872 ], [ 17.402344, -1.054628 ], [ 17.050781, -1.054628 ], [ 17.050781, -1.230374 ], [ 16.875000, -1.230374 ], [ 16.875000, -1.406109 ], [ 16.699219, -1.406109 ], [ 16.699219, -1.581830 ], [ 16.523438, -1.581830 ], [ 16.523438, -1.757537 ], [ 16.347656, -1.757537 ], [ 16.347656, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -2.460181 ], [ 15.996094, -2.460181 ], [ 15.996094, -3.688855 ], [ 15.820312, -3.688855 ], [ 15.820312, -4.039618 ], [ 15.644531, -4.039618 ], [ 15.644531, -4.214943 ], [ 15.292969, -4.214943 ], [ 15.292969, -4.390229 ], [ 15.117188, -4.390229 ], [ 15.117188, -4.565474 ], [ 14.941406, -4.565474 ], [ 14.941406, -4.740675 ], [ 14.765625, -4.740675 ], [ 14.765625, -4.915833 ], [ 14.238281, -4.915833 ], [ 14.238281, -4.740675 ], [ 14.062500, -4.740675 ], [ 14.062500, -4.565474 ], [ 13.535156, -4.565474 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.753906, 0.878872 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.878872 ], [ 17.402344, -0.878872 ], [ 17.402344, -1.054628 ], [ 17.050781, -1.054628 ], [ 17.050781, -1.230374 ], [ 16.875000, -1.230374 ], [ 16.875000, -1.406109 ], [ 16.699219, -1.406109 ], [ 16.699219, -1.581830 ], [ 16.523438, -1.581830 ], [ 16.523438, -1.757537 ], [ 16.347656, -1.757537 ], [ 16.347656, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -2.460181 ], [ 15.996094, -2.460181 ], [ 15.996094, -3.688855 ], [ 15.820312, -3.688855 ], [ 15.820312, -4.039618 ], [ 15.644531, -4.039618 ], [ 15.644531, -4.214943 ], [ 15.292969, -4.214943 ], [ 15.292969, -4.390229 ], [ 15.117188, -4.390229 ], [ 15.117188, -4.565474 ], [ 14.941406, -4.565474 ], [ 14.941406, -4.740675 ], [ 14.765625, -4.740675 ], [ 14.765625, -4.915833 ], [ 14.238281, -4.915833 ], [ 14.238281, -4.740675 ], [ 14.062500, -4.740675 ], [ 14.062500, -4.565474 ], [ 13.535156, -4.565474 ], [ 13.535156, -4.740675 ], [ 13.359375, -4.740675 ], [ 13.359375, -4.915833 ], [ 13.007812, -4.915833 ], [ 13.007812, -4.740675 ], [ 12.832031, -4.740675 ], [ 12.832031, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.740675 ], [ 12.128906, -4.740675 ], [ 12.128906, -5.090944 ], [ 11.777344, -5.090944 ], [ 11.777344, -4.915833 ], [ 11.601562, -4.915833 ], [ 11.601562, -4.565474 ], [ 11.425781, -4.565474 ], [ 11.425781, -4.390229 ], [ 11.250000, -4.390229 ], [ 11.250000, -4.214943 ], [ 11.074219, -4.214943 ], [ 11.074219, -4.039618 ], [ 11.250000, -4.039618 ], [ 11.250000, -3.864255 ], [ 11.601562, -3.864255 ], [ 11.601562, -3.688855 ], [ 11.777344, -3.688855 ], [ 11.777344, -3.337954 ], [ 11.601562, -3.337954 ], [ 11.601562, -2.986927 ], [ 11.425781, -2.986927 ], [ 11.425781, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -2.635789 ], [ 11.777344, -2.635789 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.460181 ], [ 12.480469, -2.284551 ], [ 12.656250, -2.284551 ], [ 12.656250, -2.108899 ], [ 12.832031, -2.108899 ], [ 12.832031, -2.284551 ], [ 13.007812, -2.284551 ], [ 13.007812, -2.460181 ], [ 14.062500, -2.460181 ], [ 14.062500, -2.284551 ], [ 14.238281, -2.284551 ], [ 14.238281, -1.757537 ], [ 14.414062, -1.757537 ], [ 14.414062, -1.054628 ], [ 14.238281, -1.054628 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.175781 ], [ 14.062500, 0.175781 ], [ 14.062500, 0.527336 ], [ 14.238281, 0.527336 ], [ 14.238281, 0.878872 ], [ 17.753906, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -5.790897 ], [ 29.355469, -5.790897 ], [ 29.355469, -6.140555 ], [ 29.531250, -6.140555 ], [ 29.531250, -6.489983 ], [ 29.707031, -6.489983 ], [ 29.707031, -6.664608 ], [ 29.882812, -6.664608 ], [ 29.882812, -6.839170 ], [ 30.058594, -6.839170 ], [ 30.058594, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.362467 ], [ 30.410156, -7.362467 ], [ 30.410156, -7.710992 ], [ 30.585938, -7.710992 ], [ 30.585938, -8.233237 ], [ 30.761719, -8.233237 ], [ 30.761719, -8.407168 ], [ 30.410156, -8.407168 ], [ 30.410156, -8.233237 ], [ 29.882812, -8.233237 ], [ 29.882812, -8.407168 ], [ 29.003906, -8.407168 ], [ 29.003906, -8.581021 ], [ 28.652344, -8.581021 ], [ 28.652344, -8.928487 ], [ 28.476562, -8.928487 ], [ 28.476562, -9.449062 ], [ 28.652344, -9.449062 ], [ 28.652344, -10.314919 ], [ 28.476562, -10.314919 ], [ 28.476562, -11.350797 ], [ 28.300781, -11.350797 ], [ 28.300781, -12.039321 ], [ 28.652344, -12.039321 ], [ 28.652344, -12.211180 ], [ 29.003906, -12.211180 ], [ 29.003906, -12.382928 ], [ 29.531250, -12.382928 ], [ 29.531250, -12.726084 ], [ 29.707031, -12.726084 ], [ 29.707031, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -13.068777 ], [ 28.652344, -13.068777 ], [ 28.652344, -12.897489 ], [ 28.476562, -12.897489 ], [ 28.476562, -12.726084 ], [ 28.300781, -12.726084 ], [ 28.300781, -12.382928 ], [ 28.125000, -12.382928 ], [ 28.125000, -12.211180 ], [ 27.421875, -12.211180 ], [ 27.421875, -11.867351 ], [ 27.246094, -11.867351 ], [ 27.246094, -11.695273 ], [ 26.894531, -11.695273 ], [ 26.894531, -11.867351 ], [ 25.664062, -11.867351 ], [ 25.664062, -11.523088 ], [ 25.488281, -11.523088 ], [ 25.488281, -11.350797 ], [ 24.960938, -11.350797 ], [ 24.960938, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -11.005904 ], [ 23.554688, -11.005904 ], [ 23.554688, -10.833306 ], [ 23.203125, -10.833306 ], [ 23.203125, -11.005904 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.968851 ], [ 21.972656, -9.968851 ], [ 21.972656, -9.622414 ], [ 21.796875, -9.622414 ], [ 21.796875, -8.581021 ], [ 21.972656, -8.581021 ], [ 21.972656, -8.059230 ], [ 21.796875, -8.059230 ], [ 21.796875, -7.362467 ], [ 20.566406, -7.362467 ], [ 20.566406, -7.013668 ], [ 20.039062, -7.013668 ], [ 20.039062, -7.188101 ], [ 19.335938, -7.188101 ], [ 19.335938, -7.536764 ], [ 19.160156, -7.536764 ], [ 19.160156, -7.885147 ], [ 18.984375, -7.885147 ], [ 18.984375, -8.059230 ], [ 18.632812, -8.059230 ], [ 18.632812, -7.885147 ], [ 18.457031, -7.885147 ], [ 18.457031, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 17.050781, -7.710992 ], [ 17.050781, -7.362467 ], [ 16.875000, -7.362467 ], [ 16.875000, -7.188101 ], [ 16.699219, -7.188101 ], [ 16.699219, -6.839170 ], [ 16.523438, -6.839170 ], [ 16.523438, -6.315299 ], [ 16.347656, -6.315299 ], [ 16.347656, -5.790897 ], [ 13.359375, -5.790897 ], [ 13.359375, -5.965754 ], [ 12.656250, -5.965754 ], [ 12.656250, -6.140555 ], [ 12.304688, -6.140555 ], [ 12.304688, -5.965754 ], [ 12.128906, -5.965754 ], [ 12.128906, -5.790897 ], [ 12.480469, -5.790897 ], [ 12.480469, -5.090944 ], [ 12.656250, -5.090944 ], [ 12.656250, -4.915833 ], [ 13.359375, -4.915833 ], [ 13.359375, -4.740675 ], [ 13.535156, -4.740675 ], [ 13.535156, -4.565474 ], [ 14.062500, -4.565474 ], [ 14.062500, -4.740675 ], [ 14.238281, -4.740675 ], [ 14.238281, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.740675 ], [ 14.941406, -4.740675 ], [ 14.941406, -4.565474 ], [ 15.117188, -4.565474 ], [ 15.117188, -4.390229 ], [ 15.292969, -4.390229 ], [ 15.292969, -4.214943 ], [ 15.644531, -4.214943 ], [ 15.644531, -4.039618 ], [ 15.820312, -4.039618 ], [ 15.820312, -3.688855 ], [ 15.996094, -3.688855 ], [ 15.996094, -2.460181 ], [ 16.171875, -2.460181 ], [ 16.171875, -2.108899 ], [ 16.347656, -2.108899 ], [ 16.347656, -1.757537 ], [ 16.523438, -1.757537 ], [ 16.523438, -1.581830 ], [ 16.699219, -1.581830 ], [ 16.699219, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.230374 ], [ 17.050781, -1.230374 ], [ 17.050781, -1.054628 ], [ 17.402344, -1.054628 ], [ 17.402344, -0.878872 ], [ 17.578125, -0.878872 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 0.878872 ], [ 30.058594, 0.878872 ], [ 30.058594, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, -0.527336 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.581830 ], [ 29.355469, -1.581830 ], [ 29.355469, -1.933227 ], [ 29.179688, -1.933227 ], [ 29.179688, -2.635789 ], [ 29.003906, -2.635789 ], [ 29.003906, -2.986927 ], [ 29.179688, -2.986927 ], [ 29.179688, -3.337954 ], [ 29.355469, -3.337954 ], [ 29.355469, -5.090944 ], [ 29.531250, -5.090944 ], [ 29.531250, -5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.058594, 0.878872 ], [ 30.058594, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, -0.527336 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.581830 ], [ 29.355469, -1.581830 ], [ 29.355469, -1.933227 ], [ 29.179688, -1.933227 ], [ 29.179688, -2.635789 ], [ 29.003906, -2.635789 ], [ 29.003906, -2.986927 ], [ 29.179688, -2.986927 ], [ 29.179688, -3.337954 ], [ 29.355469, -3.337954 ], [ 29.355469, -5.090944 ], [ 29.531250, -5.090944 ], [ 29.531250, -5.790897 ], [ 29.355469, -5.790897 ], [ 29.355469, -6.140555 ], [ 29.531250, -6.140555 ], [ 29.531250, -6.489983 ], [ 29.707031, -6.489983 ], [ 29.707031, -6.664608 ], [ 29.882812, -6.664608 ], [ 29.882812, -6.839170 ], [ 30.058594, -6.839170 ], [ 30.058594, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.362467 ], [ 30.410156, -7.362467 ], [ 30.410156, -7.710992 ], [ 30.585938, -7.710992 ], [ 30.585938, -8.233237 ], [ 30.761719, -8.233237 ], [ 30.761719, -8.407168 ], [ 30.410156, -8.407168 ], [ 30.410156, -8.233237 ], [ 29.882812, -8.233237 ], [ 29.882812, -8.407168 ], [ 29.003906, -8.407168 ], [ 29.003906, -8.581021 ], [ 28.652344, -8.581021 ], [ 28.652344, -8.928487 ], [ 28.476562, -8.928487 ], [ 28.476562, -9.449062 ], [ 28.652344, -9.449062 ], [ 28.652344, -10.314919 ], [ 28.476562, -10.314919 ], [ 28.476562, -11.350797 ], [ 28.300781, -11.350797 ], [ 28.300781, -12.039321 ], [ 28.652344, -12.039321 ], [ 28.652344, -12.211180 ], [ 29.003906, -12.211180 ], [ 29.003906, -12.382928 ], [ 29.531250, -12.382928 ], [ 29.531250, -12.726084 ], [ 29.707031, -12.726084 ], [ 29.707031, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -13.068777 ], [ 28.652344, -13.068777 ], [ 28.652344, -12.897489 ], [ 28.476562, -12.897489 ], [ 28.476562, -12.726084 ], [ 28.300781, -12.726084 ], [ 28.300781, -12.382928 ], [ 28.125000, -12.382928 ], [ 28.125000, -12.211180 ], [ 27.421875, -12.211180 ], [ 27.421875, -11.867351 ], [ 27.246094, -11.867351 ], [ 27.246094, -11.695273 ], [ 26.894531, -11.695273 ], [ 26.894531, -11.867351 ], [ 25.664062, -11.867351 ], [ 25.664062, -11.523088 ], [ 25.488281, -11.523088 ], [ 25.488281, -11.350797 ], [ 24.960938, -11.350797 ], [ 24.960938, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -11.005904 ], [ 23.554688, -11.005904 ], [ 23.554688, -10.833306 ], [ 23.203125, -10.833306 ], [ 23.203125, -11.005904 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.968851 ], [ 21.972656, -9.968851 ], [ 21.972656, -9.622414 ], [ 21.796875, -9.622414 ], [ 21.796875, -8.581021 ], [ 21.972656, -8.581021 ], [ 21.972656, -8.059230 ], [ 21.796875, -8.059230 ], [ 21.796875, -7.362467 ], [ 20.566406, -7.362467 ], [ 20.566406, -7.013668 ], [ 20.039062, -7.013668 ], [ 20.039062, -7.188101 ], [ 19.335938, -7.188101 ], [ 19.335938, -7.536764 ], [ 19.160156, -7.536764 ], [ 19.160156, -7.885147 ], [ 18.984375, -7.885147 ], [ 18.984375, -8.059230 ], [ 18.632812, -8.059230 ], [ 18.632812, -7.885147 ], [ 18.457031, -7.885147 ], [ 18.457031, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 17.050781, -7.710992 ], [ 17.050781, -7.362467 ], [ 16.875000, -7.362467 ], [ 16.875000, -7.188101 ], [ 16.699219, -7.188101 ], [ 16.699219, -6.839170 ], [ 16.523438, -6.839170 ], [ 16.523438, -6.315299 ], [ 16.347656, -6.315299 ], [ 16.347656, -5.790897 ], [ 13.359375, -5.790897 ], [ 13.359375, -5.965754 ], [ 12.656250, -5.965754 ], [ 12.656250, -6.140555 ], [ 12.304688, -6.140555 ], [ 12.304688, -5.965754 ], [ 12.128906, -5.965754 ], [ 12.128906, -5.790897 ], [ 12.480469, -5.790897 ], [ 12.480469, -5.090944 ], [ 12.656250, -5.090944 ], [ 12.656250, -4.915833 ], [ 13.359375, -4.915833 ], [ 13.359375, -4.740675 ], [ 13.535156, -4.740675 ], [ 13.535156, -4.565474 ], [ 14.062500, -4.565474 ], [ 14.062500, -4.740675 ], [ 14.238281, -4.740675 ], [ 14.238281, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.740675 ], [ 14.941406, -4.740675 ], [ 14.941406, -4.565474 ], [ 15.117188, -4.565474 ], [ 15.117188, -4.390229 ], [ 15.292969, -4.390229 ], [ 15.292969, -4.214943 ], [ 15.644531, -4.214943 ], [ 15.644531, -4.039618 ], [ 15.820312, -4.039618 ], [ 15.820312, -3.688855 ], [ 15.996094, -3.688855 ], [ 15.996094, -2.460181 ], [ 16.171875, -2.460181 ], [ 16.171875, -2.108899 ], [ 16.347656, -2.108899 ], [ 16.347656, -1.757537 ], [ 16.523438, -1.757537 ], [ 16.523438, -1.581830 ], [ 16.699219, -1.581830 ], [ 16.699219, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.230374 ], [ 17.050781, -1.230374 ], [ 17.050781, -1.054628 ], [ 17.402344, -1.054628 ], [ 17.402344, -0.878872 ], [ 17.578125, -0.878872 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 0.878872 ], [ 30.058594, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.972656, -8.581021 ], [ 21.796875, -8.581021 ], [ 21.796875, -9.622414 ], [ 21.972656, -9.622414 ], [ 21.972656, -9.968851 ], [ 22.148438, -9.968851 ], [ 22.148438, -11.005904 ], [ 23.203125, -11.005904 ], [ 23.203125, -10.833306 ], [ 23.554688, -10.833306 ], [ 23.554688, -11.005904 ], [ 23.906250, -11.005904 ], [ 23.906250, -11.178402 ], [ 24.082031, -11.178402 ], [ 24.082031, -11.523088 ], [ 23.906250, -11.523088 ], [ 23.906250, -12.039321 ], [ 24.082031, -12.039321 ], [ 24.082031, -12.382928 ], [ 23.906250, -12.382928 ], [ 23.906250, -12.726084 ], [ 24.082031, -12.726084 ], [ 24.082031, -12.897489 ], [ 21.972656, -12.897489 ], [ 21.972656, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.636192 ], [ 22.324219, -16.636192 ], [ 22.324219, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -17.140790 ], [ 22.675781, -17.140790 ], [ 22.675781, -17.308688 ], [ 23.027344, -17.308688 ], [ 23.027344, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.811456 ], [ 21.796875, -17.811456 ], [ 21.796875, -17.978733 ], [ 20.039062, -17.978733 ], [ 20.039062, -17.811456 ], [ 18.808594, -17.811456 ], [ 18.808594, -17.644022 ], [ 18.457031, -17.644022 ], [ 18.457031, -17.476432 ], [ 18.281250, -17.476432 ], [ 18.281250, -17.308688 ], [ 14.238281, -17.308688 ], [ 14.238281, -17.476432 ], [ 13.886719, -17.476432 ], [ 13.886719, -17.308688 ], [ 13.710938, -17.308688 ], [ 13.710938, -17.140790 ], [ 13.535156, -17.140790 ], [ 13.535156, -16.972741 ], [ 12.656250, -16.972741 ], [ 12.656250, -17.140790 ], [ 12.128906, -17.140790 ], [ 12.128906, -17.308688 ], [ 11.777344, -17.308688 ], [ 11.777344, -16.972741 ], [ 11.601562, -16.972741 ], [ 11.601562, -16.299051 ], [ 11.777344, -16.299051 ], [ 11.777344, -15.623037 ], [ 11.953125, -15.623037 ], [ 11.953125, -15.284185 ], [ 12.128906, -15.284185 ], [ 12.128906, -14.264383 ], [ 12.304688, -14.264383 ], [ 12.304688, -13.923404 ], [ 12.480469, -13.923404 ], [ 12.480469, -13.410994 ], [ 12.656250, -13.410994 ], [ 12.656250, -13.068777 ], [ 12.832031, -13.068777 ], [ 12.832031, -12.897489 ], [ 13.183594, -12.897489 ], [ 13.183594, -12.726084 ], [ 13.359375, -12.726084 ], [ 13.359375, -12.554564 ], [ 13.535156, -12.554564 ], [ 13.535156, -12.211180 ], [ 13.710938, -12.211180 ], [ 13.710938, -10.660608 ], [ 13.535156, -10.660608 ], [ 13.535156, -10.487812 ], [ 13.359375, -10.487812 ], [ 13.359375, -10.141932 ], [ 13.183594, -10.141932 ], [ 13.183594, -9.622414 ], [ 13.007812, -9.622414 ], [ 13.007812, -9.275622 ], [ 12.832031, -9.275622 ], [ 12.832031, -9.102097 ], [ 13.007812, -9.102097 ], [ 13.007812, -8.754795 ], [ 13.183594, -8.754795 ], [ 13.183594, -8.059230 ], [ 13.007812, -8.059230 ], [ 13.007812, -7.536764 ], [ 12.832031, -7.536764 ], [ 12.832031, -7.188101 ], [ 12.656250, -7.188101 ], [ 12.656250, -6.839170 ], [ 12.480469, -6.839170 ], [ 12.480469, -6.489983 ], [ 12.304688, -6.489983 ], [ 12.304688, -6.140555 ], [ 12.656250, -6.140555 ], [ 12.656250, -5.965754 ], [ 13.359375, -5.965754 ], [ 13.359375, -5.790897 ], [ 16.347656, -5.790897 ], [ 16.347656, -6.315299 ], [ 16.523438, -6.315299 ], [ 16.523438, -6.839170 ], [ 16.699219, -6.839170 ], [ 16.699219, -7.188101 ], [ 16.875000, -7.188101 ], [ 16.875000, -7.362467 ], [ 17.050781, -7.362467 ], [ 17.050781, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 18.457031, -8.059230 ], [ 18.457031, -7.885147 ], [ 18.632812, -7.885147 ], [ 18.632812, -8.059230 ], [ 18.984375, -8.059230 ], [ 18.984375, -7.885147 ], [ 19.160156, -7.885147 ], [ 19.160156, -7.536764 ], [ 19.335938, -7.536764 ], [ 19.335938, -7.188101 ], [ 20.039062, -7.188101 ], [ 20.039062, -7.013668 ], [ 20.566406, -7.013668 ], [ 20.566406, -7.362467 ], [ 21.796875, -7.362467 ], [ 21.796875, -8.059230 ], [ 21.972656, -8.059230 ], [ 21.972656, -8.581021 ] ] ], [ [ [ 13.007812, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -5.090944 ], [ 12.480469, -5.090944 ], [ 12.480469, -5.790897 ], [ 12.128906, -5.790897 ], [ 12.128906, -5.441022 ], [ 11.953125, -5.441022 ], [ 11.953125, -5.090944 ], [ 12.128906, -5.090944 ], [ 12.128906, -4.740675 ], [ 12.304688, -4.740675 ], [ 12.304688, -4.565474 ], [ 12.832031, -4.565474 ], [ 12.832031, -4.740675 ], [ 13.007812, -4.740675 ], [ 13.007812, -4.915833 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.347656, -5.790897 ], [ 16.347656, -6.315299 ], [ 16.523438, -6.315299 ], [ 16.523438, -6.839170 ], [ 16.699219, -6.839170 ], [ 16.699219, -7.188101 ], [ 16.875000, -7.188101 ], [ 16.875000, -7.362467 ], [ 17.050781, -7.362467 ], [ 17.050781, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 18.457031, -8.059230 ], [ 18.457031, -7.885147 ], [ 18.632812, -7.885147 ], [ 18.632812, -8.059230 ], [ 18.984375, -8.059230 ], [ 18.984375, -7.885147 ], [ 19.160156, -7.885147 ], [ 19.160156, -7.536764 ], [ 19.335938, -7.536764 ], [ 19.335938, -7.188101 ], [ 20.039062, -7.188101 ], [ 20.039062, -7.013668 ], [ 20.566406, -7.013668 ], [ 20.566406, -7.362467 ], [ 21.796875, -7.362467 ], [ 21.796875, -8.059230 ], [ 21.972656, -8.059230 ], [ 21.972656, -8.581021 ], [ 21.796875, -8.581021 ], [ 21.796875, -9.622414 ], [ 21.972656, -9.622414 ], [ 21.972656, -9.968851 ], [ 22.148438, -9.968851 ], [ 22.148438, -11.005904 ], [ 23.203125, -11.005904 ], [ 23.203125, -10.833306 ], [ 23.554688, -10.833306 ], [ 23.554688, -11.005904 ], [ 23.906250, -11.005904 ], [ 23.906250, -11.178402 ], [ 24.082031, -11.178402 ], [ 24.082031, -11.523088 ], [ 23.906250, -11.523088 ], [ 23.906250, -12.039321 ], [ 24.082031, -12.039321 ], [ 24.082031, -12.382928 ], [ 23.906250, -12.382928 ], [ 23.906250, -12.726084 ], [ 24.082031, -12.726084 ], [ 24.082031, -12.897489 ], [ 21.972656, -12.897489 ], [ 21.972656, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.636192 ], [ 22.324219, -16.636192 ], [ 22.324219, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -17.140790 ], [ 22.675781, -17.140790 ], [ 22.675781, -17.308688 ], [ 23.027344, -17.308688 ], [ 23.027344, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.811456 ], [ 21.796875, -17.811456 ], [ 21.796875, -17.978733 ], [ 20.039062, -17.978733 ], [ 20.039062, -17.811456 ], [ 18.808594, -17.811456 ], [ 18.808594, -17.644022 ], [ 18.457031, -17.644022 ], [ 18.457031, -17.476432 ], [ 18.281250, -17.476432 ], [ 18.281250, -17.308688 ], [ 14.238281, -17.308688 ], [ 14.238281, -17.476432 ], [ 13.886719, -17.476432 ], [ 13.886719, -17.308688 ], [ 13.710938, -17.308688 ], [ 13.710938, -17.140790 ], [ 13.535156, -17.140790 ], [ 13.535156, -16.972741 ], [ 12.656250, -16.972741 ], [ 12.656250, -17.140790 ], [ 12.128906, -17.140790 ], [ 12.128906, -17.308688 ], [ 11.777344, -17.308688 ], [ 11.777344, -16.972741 ], [ 11.601562, -16.972741 ], [ 11.601562, -16.299051 ], [ 11.777344, -16.299051 ], [ 11.777344, -15.623037 ], [ 11.953125, -15.623037 ], [ 11.953125, -15.284185 ], [ 12.128906, -15.284185 ], [ 12.128906, -14.264383 ], [ 12.304688, -14.264383 ], [ 12.304688, -13.923404 ], [ 12.480469, -13.923404 ], [ 12.480469, -13.410994 ], [ 12.656250, -13.410994 ], [ 12.656250, -13.068777 ], [ 12.832031, -13.068777 ], [ 12.832031, -12.897489 ], [ 13.183594, -12.897489 ], [ 13.183594, -12.726084 ], [ 13.359375, -12.726084 ], [ 13.359375, -12.554564 ], [ 13.535156, -12.554564 ], [ 13.535156, -12.211180 ], [ 13.710938, -12.211180 ], [ 13.710938, -10.660608 ], [ 13.535156, -10.660608 ], [ 13.535156, -10.487812 ], [ 13.359375, -10.487812 ], [ 13.359375, -10.141932 ], [ 13.183594, -10.141932 ], [ 13.183594, -9.622414 ], [ 13.007812, -9.622414 ], [ 13.007812, -9.275622 ], [ 12.832031, -9.275622 ], [ 12.832031, -9.102097 ], [ 13.007812, -9.102097 ], [ 13.007812, -8.754795 ], [ 13.183594, -8.754795 ], [ 13.183594, -8.059230 ], [ 13.007812, -8.059230 ], [ 13.007812, -7.536764 ], [ 12.832031, -7.536764 ], [ 12.832031, -7.188101 ], [ 12.656250, -7.188101 ], [ 12.656250, -6.839170 ], [ 12.480469, -6.839170 ], [ 12.480469, -6.489983 ], [ 12.304688, -6.489983 ], [ 12.304688, -6.140555 ], [ 12.656250, -6.140555 ], [ 12.656250, -5.965754 ], [ 13.359375, -5.965754 ], [ 13.359375, -5.790897 ], [ 16.347656, -5.790897 ] ] ], [ [ [ 12.832031, -4.565474 ], [ 12.832031, -4.740675 ], [ 13.007812, -4.740675 ], [ 13.007812, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -5.090944 ], [ 12.480469, -5.090944 ], [ 12.480469, -5.790897 ], [ 12.128906, -5.790897 ], [ 12.128906, -5.441022 ], [ 11.953125, -5.441022 ], [ 11.953125, -5.090944 ], [ 12.128906, -5.090944 ], [ 12.128906, -4.740675 ], [ 12.304688, -4.740675 ], [ 12.304688, -4.565474 ], [ 12.832031, -4.565474 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.710938, -17.308688 ], [ 13.886719, -17.308688 ], [ 13.886719, -17.476432 ], [ 14.238281, -17.476432 ], [ 14.238281, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.476432 ], [ 18.457031, -17.476432 ], [ 18.457031, -17.644022 ], [ 18.808594, -17.644022 ], [ 18.808594, -17.811456 ], [ 20.039062, -17.811456 ], [ 20.039062, -17.978733 ], [ 21.796875, -17.978733 ], [ 21.796875, -17.811456 ], [ 22.500000, -17.811456 ], [ 22.500000, -17.644022 ], [ 23.027344, -17.644022 ], [ 23.027344, -17.476432 ], [ 23.730469, -17.476432 ], [ 23.730469, -17.308688 ], [ 24.609375, -17.308688 ], [ 24.609375, -17.476432 ], [ 24.960938, -17.476432 ], [ 24.960938, -17.811456 ], [ 24.257812, -17.811456 ], [ 24.257812, -17.978733 ], [ 24.082031, -17.978733 ], [ 24.082031, -18.145852 ], [ 23.730469, -18.145852 ], [ 23.730469, -18.312811 ], [ 23.378906, -18.312811 ], [ 23.378906, -17.978733 ], [ 23.203125, -17.978733 ], [ 23.203125, -17.811456 ], [ 22.851562, -17.811456 ], [ 22.851562, -17.978733 ], [ 22.148438, -17.978733 ], [ 22.148438, -18.145852 ], [ 21.445312, -18.145852 ], [ 21.445312, -18.312811 ], [ 20.917969, -18.312811 ], [ 20.917969, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.613459 ], [ 19.511719, -28.613459 ], [ 19.511719, -28.767659 ], [ 19.160156, -28.767659 ], [ 19.160156, -28.921631 ], [ 18.808594, -28.921631 ], [ 18.808594, -29.075375 ], [ 17.929688, -29.075375 ], [ 17.929688, -28.921631 ], [ 17.402344, -28.921631 ], [ 17.402344, -28.613459 ], [ 17.226562, -28.613459 ], [ 17.226562, -28.304381 ], [ 16.699219, -28.304381 ], [ 16.699219, -28.459033 ], [ 16.523438, -28.459033 ], [ 16.523438, -28.613459 ], [ 16.171875, -28.613459 ], [ 16.171875, -28.459033 ], [ 15.996094, -28.459033 ], [ 15.996094, -28.149503 ], [ 15.820312, -28.149503 ], [ 15.820312, -27.994401 ], [ 15.644531, -27.994401 ], [ 15.644531, -27.683528 ], [ 15.468750, -27.683528 ], [ 15.468750, -27.371767 ], [ 15.292969, -27.371767 ], [ 15.292969, -26.902477 ], [ 15.117188, -26.902477 ], [ 15.117188, -26.431228 ], [ 14.941406, -26.431228 ], [ 14.941406, -25.799891 ], [ 14.765625, -25.799891 ], [ 14.765625, -25.005973 ], [ 14.589844, -25.005973 ], [ 14.589844, -24.367114 ], [ 14.414062, -24.367114 ], [ 14.414062, -22.431340 ], [ 14.238281, -22.431340 ], [ 14.238281, -22.105999 ], [ 14.062500, -22.105999 ], [ 14.062500, -21.943046 ], [ 13.886719, -21.943046 ], [ 13.886719, -21.616579 ], [ 13.710938, -21.616579 ], [ 13.710938, -21.289374 ], [ 13.535156, -21.289374 ], [ 13.535156, -20.961440 ], [ 13.359375, -20.961440 ], [ 13.359375, -20.632784 ], [ 13.183594, -20.632784 ], [ 13.183594, -20.303418 ], [ 13.007812, -20.303418 ], [ 13.007812, -19.973349 ], [ 12.832031, -19.973349 ], [ 12.832031, -19.311143 ], [ 12.656250, -19.311143 ], [ 12.656250, -18.979026 ], [ 12.480469, -18.979026 ], [ 12.480469, -18.812718 ], [ 12.304688, -18.812718 ], [ 12.304688, -18.646245 ], [ 12.128906, -18.646245 ], [ 12.128906, -18.479609 ], [ 11.953125, -18.479609 ], [ 11.953125, -18.312811 ], [ 11.777344, -18.312811 ], [ 11.777344, -17.308688 ], [ 12.128906, -17.308688 ], [ 12.128906, -17.140790 ], [ 12.656250, -17.140790 ], [ 12.656250, -16.972741 ], [ 13.535156, -16.972741 ], [ 13.535156, -17.140790 ], [ 13.710938, -17.140790 ], [ 13.710938, -17.308688 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.535156, -16.972741 ], [ 13.535156, -17.140790 ], [ 13.710938, -17.140790 ], [ 13.710938, -17.308688 ], [ 13.886719, -17.308688 ], [ 13.886719, -17.476432 ], [ 14.238281, -17.476432 ], [ 14.238281, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.476432 ], [ 18.457031, -17.476432 ], [ 18.457031, -17.644022 ], [ 18.808594, -17.644022 ], [ 18.808594, -17.811456 ], [ 20.039062, -17.811456 ], [ 20.039062, -17.978733 ], [ 21.796875, -17.978733 ], [ 21.796875, -17.811456 ], [ 22.500000, -17.811456 ], [ 22.500000, -17.644022 ], [ 23.027344, -17.644022 ], [ 23.027344, -17.476432 ], [ 23.730469, -17.476432 ], [ 23.730469, -17.308688 ], [ 24.609375, -17.308688 ], [ 24.609375, -17.476432 ], [ 24.960938, -17.476432 ], [ 24.960938, -17.811456 ], [ 24.257812, -17.811456 ], [ 24.257812, -17.978733 ], [ 24.082031, -17.978733 ], [ 24.082031, -18.145852 ], [ 23.730469, -18.145852 ], [ 23.730469, -18.312811 ], [ 23.378906, -18.312811 ], [ 23.378906, -17.978733 ], [ 23.203125, -17.978733 ], [ 23.203125, -17.811456 ], [ 22.851562, -17.811456 ], [ 22.851562, -17.978733 ], [ 22.148438, -17.978733 ], [ 22.148438, -18.145852 ], [ 21.445312, -18.145852 ], [ 21.445312, -18.312811 ], [ 20.917969, -18.312811 ], [ 20.917969, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.613459 ], [ 19.511719, -28.613459 ], [ 19.511719, -28.767659 ], [ 19.160156, -28.767659 ], [ 19.160156, -28.921631 ], [ 18.808594, -28.921631 ], [ 18.808594, -29.075375 ], [ 17.929688, -29.075375 ], [ 17.929688, -28.921631 ], [ 17.402344, -28.921631 ], [ 17.402344, -28.613459 ], [ 17.226562, -28.613459 ], [ 17.226562, -28.304381 ], [ 16.699219, -28.304381 ], [ 16.699219, -28.459033 ], [ 16.523438, -28.459033 ], [ 16.523438, -28.613459 ], [ 16.171875, -28.613459 ], [ 16.171875, -28.459033 ], [ 15.996094, -28.459033 ], [ 15.996094, -28.149503 ], [ 15.820312, -28.149503 ], [ 15.820312, -27.994401 ], [ 15.644531, -27.994401 ], [ 15.644531, -27.683528 ], [ 15.468750, -27.683528 ], [ 15.468750, -27.371767 ], [ 15.292969, -27.371767 ], [ 15.292969, -26.902477 ], [ 15.117188, -26.902477 ], [ 15.117188, -26.431228 ], [ 14.941406, -26.431228 ], [ 14.941406, -25.799891 ], [ 14.765625, -25.799891 ], [ 14.765625, -25.005973 ], [ 14.589844, -25.005973 ], [ 14.589844, -24.367114 ], [ 14.414062, -24.367114 ], [ 14.414062, -22.431340 ], [ 14.238281, -22.431340 ], [ 14.238281, -22.105999 ], [ 14.062500, -22.105999 ], [ 14.062500, -21.943046 ], [ 13.886719, -21.943046 ], [ 13.886719, -21.616579 ], [ 13.710938, -21.616579 ], [ 13.710938, -21.289374 ], [ 13.535156, -21.289374 ], [ 13.535156, -20.961440 ], [ 13.359375, -20.961440 ], [ 13.359375, -20.632784 ], [ 13.183594, -20.632784 ], [ 13.183594, -20.303418 ], [ 13.007812, -20.303418 ], [ 13.007812, -19.973349 ], [ 12.832031, -19.973349 ], [ 12.832031, -19.311143 ], [ 12.656250, -19.311143 ], [ 12.656250, -18.979026 ], [ 12.480469, -18.979026 ], [ 12.480469, -18.812718 ], [ 12.304688, -18.812718 ], [ 12.304688, -18.646245 ], [ 12.128906, -18.646245 ], [ 12.128906, -18.479609 ], [ 11.953125, -18.479609 ], [ 11.953125, -18.312811 ], [ 11.777344, -18.312811 ], [ 11.777344, -17.308688 ], [ 12.128906, -17.308688 ], [ 12.128906, -17.140790 ], [ 12.656250, -17.140790 ], [ 12.656250, -16.972741 ], [ 13.535156, -16.972741 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, -2.460181 ], [ 30.058594, -2.460181 ], [ 30.058594, -2.284551 ], [ 29.882812, -2.284551 ], [ 29.882812, -2.635789 ], [ 29.707031, -2.635789 ], [ 29.707031, -2.986927 ], [ 29.179688, -2.986927 ], [ 29.179688, -2.811371 ], [ 29.003906, -2.811371 ], [ 29.003906, -2.635789 ], [ 29.179688, -2.635789 ], [ 29.179688, -1.933227 ], [ 29.355469, -1.933227 ], [ 29.355469, -1.581830 ], [ 29.531250, -1.581830 ], [ 29.531250, -1.406109 ], [ 30.058594, -1.406109 ], [ 30.058594, -1.230374 ], [ 30.585938, -1.230374 ], [ 30.585938, -1.581830 ], [ 30.761719, -1.581830 ], [ 30.761719, -2.460181 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -1.230374 ], [ 30.585938, -1.581830 ], [ 30.761719, -1.581830 ], [ 30.761719, -2.460181 ], [ 30.058594, -2.460181 ], [ 30.058594, -2.284551 ], [ 29.882812, -2.284551 ], [ 29.882812, -2.635789 ], [ 29.707031, -2.635789 ], [ 29.707031, -2.986927 ], [ 29.179688, -2.986927 ], [ 29.179688, -2.811371 ], [ 29.003906, -2.811371 ], [ 29.003906, -2.635789 ], [ 29.179688, -2.635789 ], [ 29.179688, -1.933227 ], [ 29.355469, -1.933227 ], [ 29.355469, -1.581830 ], [ 29.531250, -1.581830 ], [ 29.531250, -1.406109 ], [ 30.058594, -1.406109 ], [ 30.058594, -1.230374 ], [ 30.585938, -1.230374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.707031, -2.986927 ], [ 29.707031, -2.635789 ], [ 29.882812, -2.635789 ], [ 29.882812, -2.284551 ], [ 30.058594, -2.284551 ], [ 30.058594, -2.460181 ], [ 30.410156, -2.460181 ], [ 30.410156, -2.635789 ], [ 30.585938, -2.635789 ], [ 30.585938, -2.986927 ], [ 30.761719, -2.986927 ], [ 30.761719, -3.513421 ], [ 30.585938, -3.513421 ], [ 30.585938, -3.688855 ], [ 30.410156, -3.688855 ], [ 30.410156, -3.864255 ], [ 30.234375, -3.864255 ], [ 30.234375, -4.039618 ], [ 30.058594, -4.039618 ], [ 30.058594, -4.214943 ], [ 29.882812, -4.214943 ], [ 29.882812, -4.390229 ], [ 29.707031, -4.390229 ], [ 29.707031, -4.565474 ], [ 29.355469, -4.565474 ], [ 29.355469, -3.337954 ], [ 29.179688, -3.337954 ], [ 29.179688, -2.986927 ], [ 29.707031, -2.986927 ] ] ], [ [ [ 29.003906, -2.986927 ], [ 29.003906, -2.811371 ], [ 29.179688, -2.811371 ], [ 29.179688, -2.986927 ], [ 29.003906, -2.986927 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.179688, -2.986927 ], [ 29.707031, -2.986927 ], [ 29.707031, -2.635789 ], [ 29.882812, -2.635789 ], [ 29.882812, -2.284551 ], [ 30.058594, -2.284551 ], [ 30.058594, -2.460181 ], [ 30.410156, -2.460181 ], [ 30.410156, -2.635789 ], [ 30.585938, -2.635789 ], [ 30.585938, -2.986927 ], [ 30.761719, -2.986927 ], [ 30.761719, -3.513421 ], [ 30.585938, -3.513421 ], [ 30.585938, -3.688855 ], [ 30.410156, -3.688855 ], [ 30.410156, -3.864255 ], [ 30.234375, -3.864255 ], [ 30.234375, -4.039618 ], [ 30.058594, -4.039618 ], [ 30.058594, -4.214943 ], [ 29.882812, -4.214943 ], [ 29.882812, -4.390229 ], [ 29.707031, -4.390229 ], [ 29.707031, -4.565474 ], [ 29.355469, -4.565474 ], [ 29.355469, -3.337954 ], [ 29.179688, -3.337954 ], [ 29.179688, -2.986927 ] ] ], [ [ [ 29.179688, -2.986927 ], [ 29.003906, -2.986927 ], [ 29.003906, -2.811371 ], [ 29.179688, -2.811371 ], [ 29.179688, -2.986927 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, -8.581021 ], [ 31.289062, -8.581021 ], [ 31.289062, -8.754795 ], [ 31.816406, -8.754795 ], [ 31.816406, -8.928487 ], [ 32.167969, -8.928487 ], [ 32.167969, -9.102097 ], [ 32.519531, -9.102097 ], [ 32.519531, -9.275622 ], [ 32.695312, -9.275622 ], [ 32.695312, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.622414 ], [ 33.222656, -9.622414 ], [ 33.222656, -10.141932 ], [ 33.398438, -10.141932 ], [ 33.398438, -11.005904 ], [ 33.222656, -11.005904 ], [ 33.222656, -11.350797 ], [ 33.046875, -11.350797 ], [ 33.046875, -12.039321 ], [ 33.222656, -12.039321 ], [ 33.222656, -12.554564 ], [ 33.046875, -12.554564 ], [ 33.046875, -13.068777 ], [ 32.871094, -13.068777 ], [ 32.871094, -13.581921 ], [ 32.695312, -13.581921 ], [ 32.695312, -13.752725 ], [ 32.871094, -13.752725 ], [ 32.871094, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.093957 ], [ 32.343750, -14.093957 ], [ 32.343750, -14.264383 ], [ 31.816406, -14.264383 ], [ 31.816406, -14.434680 ], [ 31.289062, -14.434680 ], [ 31.289062, -14.604847 ], [ 30.585938, -14.604847 ], [ 30.585938, -14.774883 ], [ 30.234375, -14.774883 ], [ 30.234375, -15.453680 ], [ 30.058594, -15.453680 ], [ 30.058594, -15.623037 ], [ 29.531250, -15.623037 ], [ 29.531250, -15.792254 ], [ 29.179688, -15.792254 ], [ 29.179688, -15.961329 ], [ 29.003906, -15.961329 ], [ 29.003906, -16.299051 ], [ 28.828125, -16.299051 ], [ 28.828125, -16.467695 ], [ 28.476562, -16.467695 ], [ 28.476562, -16.636192 ], [ 28.300781, -16.636192 ], [ 28.300781, -16.804541 ], [ 28.125000, -16.804541 ], [ 28.125000, -16.972741 ], [ 27.949219, -16.972741 ], [ 27.949219, -17.140790 ], [ 27.773438, -17.140790 ], [ 27.773438, -17.308688 ], [ 27.597656, -17.308688 ], [ 27.597656, -17.476432 ], [ 27.421875, -17.476432 ], [ 27.421875, -17.644022 ], [ 27.246094, -17.644022 ], [ 27.246094, -17.978733 ], [ 26.367188, -17.978733 ], [ 26.367188, -17.811456 ], [ 25.136719, -17.811456 ], [ 25.136719, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.476432 ], [ 24.609375, -17.476432 ], [ 24.609375, -17.308688 ], [ 23.730469, -17.308688 ], [ 23.730469, -17.476432 ], [ 23.027344, -17.476432 ], [ 23.027344, -17.308688 ], [ 22.675781, -17.308688 ], [ 22.675781, -17.140790 ], [ 22.500000, -17.140790 ], [ 22.500000, -16.972741 ], [ 22.324219, -16.972741 ], [ 22.324219, -16.636192 ], [ 22.148438, -16.636192 ], [ 22.148438, -16.299051 ], [ 21.972656, -16.299051 ], [ 21.972656, -12.897489 ], [ 24.082031, -12.897489 ], [ 24.082031, -12.726084 ], [ 23.906250, -12.726084 ], [ 23.906250, -12.382928 ], [ 24.082031, -12.382928 ], [ 24.082031, -12.039321 ], [ 23.906250, -12.039321 ], [ 23.906250, -11.523088 ], [ 24.082031, -11.523088 ], [ 24.082031, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -11.005904 ], [ 24.257812, -11.005904 ], [ 24.257812, -11.178402 ], [ 24.960938, -11.178402 ], [ 24.960938, -11.350797 ], [ 25.488281, -11.350797 ], [ 25.488281, -11.523088 ], [ 25.664062, -11.523088 ], [ 25.664062, -11.867351 ], [ 26.894531, -11.867351 ], [ 26.894531, -11.695273 ], [ 27.246094, -11.695273 ], [ 27.246094, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.382928 ], [ 28.300781, -12.382928 ], [ 28.300781, -12.726084 ], [ 28.476562, -12.726084 ], [ 28.476562, -12.897489 ], [ 28.652344, -12.897489 ], [ 28.652344, -13.068777 ], [ 28.828125, -13.068777 ], [ 28.828125, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.707031, -12.726084 ], [ 29.531250, -12.726084 ], [ 29.531250, -12.382928 ], [ 29.003906, -12.382928 ], [ 29.003906, -12.211180 ], [ 28.652344, -12.211180 ], [ 28.652344, -12.039321 ], [ 28.300781, -12.039321 ], [ 28.300781, -11.350797 ], [ 28.476562, -11.350797 ], [ 28.476562, -10.314919 ], [ 28.652344, -10.314919 ], [ 28.652344, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -8.928487 ], [ 28.652344, -8.928487 ], [ 28.652344, -8.581021 ], [ 29.003906, -8.581021 ], [ 29.003906, -8.407168 ], [ 29.882812, -8.407168 ], [ 29.882812, -8.233237 ], [ 30.410156, -8.233237 ], [ 30.410156, -8.407168 ], [ 30.761719, -8.407168 ], [ 30.761719, -8.581021 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -8.233237 ], [ 30.410156, -8.407168 ], [ 30.761719, -8.407168 ], [ 30.761719, -8.581021 ], [ 31.289062, -8.581021 ], [ 31.289062, -8.754795 ], [ 31.816406, -8.754795 ], [ 31.816406, -8.928487 ], [ 32.167969, -8.928487 ], [ 32.167969, -9.102097 ], [ 32.519531, -9.102097 ], [ 32.519531, -9.275622 ], [ 32.695312, -9.275622 ], [ 32.695312, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.622414 ], [ 33.222656, -9.622414 ], [ 33.222656, -10.141932 ], [ 33.398438, -10.141932 ], [ 33.398438, -11.005904 ], [ 33.222656, -11.005904 ], [ 33.222656, -11.350797 ], [ 33.046875, -11.350797 ], [ 33.046875, -12.039321 ], [ 33.222656, -12.039321 ], [ 33.222656, -12.554564 ], [ 33.046875, -12.554564 ], [ 33.046875, -13.068777 ], [ 32.871094, -13.068777 ], [ 32.871094, -13.581921 ], [ 32.695312, -13.581921 ], [ 32.695312, -13.752725 ], [ 32.871094, -13.752725 ], [ 32.871094, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.093957 ], [ 32.343750, -14.093957 ], [ 32.343750, -14.264383 ], [ 31.816406, -14.264383 ], [ 31.816406, -14.434680 ], [ 31.289062, -14.434680 ], [ 31.289062, -14.604847 ], [ 30.585938, -14.604847 ], [ 30.585938, -14.774883 ], [ 30.234375, -14.774883 ], [ 30.234375, -15.453680 ], [ 30.058594, -15.453680 ], [ 30.058594, -15.623037 ], [ 29.531250, -15.623037 ], [ 29.531250, -15.792254 ], [ 29.179688, -15.792254 ], [ 29.179688, -15.961329 ], [ 29.003906, -15.961329 ], [ 29.003906, -16.299051 ], [ 28.828125, -16.299051 ], [ 28.828125, -16.467695 ], [ 28.476562, -16.467695 ], [ 28.476562, -16.636192 ], [ 28.300781, -16.636192 ], [ 28.300781, -16.804541 ], [ 28.125000, -16.804541 ], [ 28.125000, -16.972741 ], [ 27.949219, -16.972741 ], [ 27.949219, -17.140790 ], [ 27.773438, -17.140790 ], [ 27.773438, -17.308688 ], [ 27.597656, -17.308688 ], [ 27.597656, -17.476432 ], [ 27.421875, -17.476432 ], [ 27.421875, -17.644022 ], [ 27.246094, -17.644022 ], [ 27.246094, -17.978733 ], [ 26.367188, -17.978733 ], [ 26.367188, -17.811456 ], [ 25.136719, -17.811456 ], [ 25.136719, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.476432 ], [ 24.609375, -17.476432 ], [ 24.609375, -17.308688 ], [ 23.730469, -17.308688 ], [ 23.730469, -17.476432 ], [ 23.027344, -17.476432 ], [ 23.027344, -17.308688 ], [ 22.675781, -17.308688 ], [ 22.675781, -17.140790 ], [ 22.500000, -17.140790 ], [ 22.500000, -16.972741 ], [ 22.324219, -16.972741 ], [ 22.324219, -16.636192 ], [ 22.148438, -16.636192 ], [ 22.148438, -16.299051 ], [ 21.972656, -16.299051 ], [ 21.972656, -12.897489 ], [ 24.082031, -12.897489 ], [ 24.082031, -12.726084 ], [ 23.906250, -12.726084 ], [ 23.906250, -12.382928 ], [ 24.082031, -12.382928 ], [ 24.082031, -12.039321 ], [ 23.906250, -12.039321 ], [ 23.906250, -11.523088 ], [ 24.082031, -11.523088 ], [ 24.082031, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -11.005904 ], [ 24.257812, -11.005904 ], [ 24.257812, -11.178402 ], [ 24.960938, -11.178402 ], [ 24.960938, -11.350797 ], [ 25.488281, -11.350797 ], [ 25.488281, -11.523088 ], [ 25.664062, -11.523088 ], [ 25.664062, -11.867351 ], [ 26.894531, -11.867351 ], [ 26.894531, -11.695273 ], [ 27.246094, -11.695273 ], [ 27.246094, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.382928 ], [ 28.300781, -12.382928 ], [ 28.300781, -12.726084 ], [ 28.476562, -12.726084 ], [ 28.476562, -12.897489 ], [ 28.652344, -12.897489 ], [ 28.652344, -13.068777 ], [ 28.828125, -13.068777 ], [ 28.828125, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.707031, -12.726084 ], [ 29.531250, -12.726084 ], [ 29.531250, -12.382928 ], [ 29.003906, -12.382928 ], [ 29.003906, -12.211180 ], [ 28.652344, -12.211180 ], [ 28.652344, -12.039321 ], [ 28.300781, -12.039321 ], [ 28.300781, -11.350797 ], [ 28.476562, -11.350797 ], [ 28.476562, -10.314919 ], [ 28.652344, -10.314919 ], [ 28.652344, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -8.928487 ], [ 28.652344, -8.928487 ], [ 28.652344, -8.581021 ], [ 29.003906, -8.581021 ], [ 29.003906, -8.407168 ], [ 29.882812, -8.407168 ], [ 29.882812, -8.233237 ], [ 30.410156, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -15.961329 ], [ 30.937500, -15.961329 ], [ 30.937500, -15.792254 ], [ 31.113281, -15.792254 ], [ 31.113281, -15.961329 ], [ 31.464844, -15.961329 ], [ 31.464844, -16.130262 ], [ 31.640625, -16.130262 ], [ 31.640625, -16.299051 ], [ 31.992188, -16.299051 ], [ 31.992188, -16.467695 ], [ 32.519531, -16.467695 ], [ 32.519531, -16.636192 ], [ 32.871094, -16.636192 ], [ 32.871094, -18.312811 ], [ 32.695312, -18.312811 ], [ 32.695312, -20.468189 ], [ 32.519531, -20.468189 ], [ 32.519531, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -20.961440 ], [ 32.167969, -20.961440 ], [ 32.167969, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -21.453069 ], [ 31.816406, -21.453069 ], [ 31.816406, -21.616579 ], [ 31.640625, -21.616579 ], [ 31.640625, -21.943046 ], [ 31.464844, -21.943046 ], [ 31.464844, -22.105999 ], [ 31.289062, -22.105999 ], [ 31.289062, -22.268764 ], [ 30.761719, -22.268764 ], [ 30.761719, -22.105999 ], [ 30.585938, -22.105999 ], [ 30.585938, -22.268764 ], [ 30.058594, -22.268764 ], [ 30.058594, -22.105999 ], [ 29.179688, -22.105999 ], [ 29.179688, -21.943046 ], [ 29.003906, -21.943046 ], [ 29.003906, -21.779905 ], [ 28.828125, -21.779905 ], [ 28.828125, -21.616579 ], [ 28.300781, -21.616579 ], [ 28.300781, -21.453069 ], [ 27.949219, -21.453069 ], [ 27.949219, -21.125498 ], [ 27.773438, -21.125498 ], [ 27.773438, -20.468189 ], [ 27.070312, -20.468189 ], [ 27.070312, -20.303418 ], [ 26.894531, -20.303418 ], [ 26.894531, -20.138470 ], [ 26.718750, -20.138470 ], [ 26.718750, -19.808054 ], [ 26.542969, -19.808054 ], [ 26.542969, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.476950 ], [ 26.191406, -19.476950 ], [ 26.191406, -19.145168 ], [ 26.015625, -19.145168 ], [ 26.015625, -18.812718 ], [ 25.839844, -18.812718 ], [ 25.839844, -18.646245 ], [ 25.664062, -18.646245 ], [ 25.664062, -18.312811 ], [ 25.488281, -18.312811 ], [ 25.488281, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -17.811456 ], [ 26.367188, -17.811456 ], [ 26.367188, -17.978733 ], [ 27.246094, -17.978733 ], [ 27.246094, -17.644022 ], [ 27.421875, -17.644022 ], [ 27.421875, -17.476432 ], [ 27.597656, -17.476432 ], [ 27.597656, -17.308688 ], [ 27.773438, -17.308688 ], [ 27.773438, -17.140790 ], [ 27.949219, -17.140790 ], [ 27.949219, -16.972741 ], [ 28.125000, -16.972741 ], [ 28.125000, -16.804541 ], [ 28.300781, -16.804541 ], [ 28.300781, -16.636192 ], [ 28.476562, -16.636192 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.467695 ], [ 28.828125, -16.299051 ], [ 29.003906, -16.299051 ], [ 29.003906, -15.961329 ], [ 29.179688, -15.961329 ], [ 29.179688, -15.792254 ], [ 29.531250, -15.792254 ], [ 29.531250, -15.623037 ], [ 30.058594, -15.623037 ], [ 30.058594, -15.453680 ], [ 30.234375, -15.453680 ], [ 30.234375, -15.792254 ], [ 30.410156, -15.792254 ], [ 30.410156, -15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 30.234375, -15.792254 ], [ 30.410156, -15.792254 ], [ 30.410156, -15.961329 ], [ 30.937500, -15.961329 ], [ 30.937500, -15.792254 ], [ 31.113281, -15.792254 ], [ 31.113281, -15.961329 ], [ 31.464844, -15.961329 ], [ 31.464844, -16.130262 ], [ 31.640625, -16.130262 ], [ 31.640625, -16.299051 ], [ 31.992188, -16.299051 ], [ 31.992188, -16.467695 ], [ 32.519531, -16.467695 ], [ 32.519531, -16.636192 ], [ 32.871094, -16.636192 ], [ 32.871094, -18.312811 ], [ 32.695312, -18.312811 ], [ 32.695312, -20.468189 ], [ 32.519531, -20.468189 ], [ 32.519531, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -20.961440 ], [ 32.167969, -20.961440 ], [ 32.167969, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -21.453069 ], [ 31.816406, -21.453069 ], [ 31.816406, -21.616579 ], [ 31.640625, -21.616579 ], [ 31.640625, -21.943046 ], [ 31.464844, -21.943046 ], [ 31.464844, -22.105999 ], [ 31.289062, -22.105999 ], [ 31.289062, -22.268764 ], [ 30.761719, -22.268764 ], [ 30.761719, -22.105999 ], [ 30.585938, -22.105999 ], [ 30.585938, -22.268764 ], [ 30.058594, -22.268764 ], [ 30.058594, -22.105999 ], [ 29.179688, -22.105999 ], [ 29.179688, -21.943046 ], [ 29.003906, -21.943046 ], [ 29.003906, -21.779905 ], [ 28.828125, -21.779905 ], [ 28.828125, -21.616579 ], [ 28.300781, -21.616579 ], [ 28.300781, -21.453069 ], [ 27.949219, -21.453069 ], [ 27.949219, -21.125498 ], [ 27.773438, -21.125498 ], [ 27.773438, -20.468189 ], [ 27.070312, -20.468189 ], [ 27.070312, -20.303418 ], [ 26.894531, -20.303418 ], [ 26.894531, -20.138470 ], [ 26.718750, -20.138470 ], [ 26.718750, -19.808054 ], [ 26.542969, -19.808054 ], [ 26.542969, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.476950 ], [ 26.191406, -19.476950 ], [ 26.191406, -19.145168 ], [ 26.015625, -19.145168 ], [ 26.015625, -18.812718 ], [ 25.839844, -18.812718 ], [ 25.839844, -18.646245 ], [ 25.664062, -18.646245 ], [ 25.664062, -18.312811 ], [ 25.488281, -18.312811 ], [ 25.488281, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -17.811456 ], [ 26.367188, -17.811456 ], [ 26.367188, -17.978733 ], [ 27.246094, -17.978733 ], [ 27.246094, -17.644022 ], [ 27.421875, -17.644022 ], [ 27.421875, -17.476432 ], [ 27.597656, -17.476432 ], [ 27.597656, -17.308688 ], [ 27.773438, -17.308688 ], [ 27.773438, -17.140790 ], [ 27.949219, -17.140790 ], [ 27.949219, -16.972741 ], [ 28.125000, -16.972741 ], [ 28.125000, -16.804541 ], [ 28.300781, -16.804541 ], [ 28.300781, -16.636192 ], [ 28.476562, -16.636192 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.467695 ], [ 28.828125, -16.299051 ], [ 29.003906, -16.299051 ], [ 29.003906, -15.961329 ], [ 29.179688, -15.961329 ], [ 29.179688, -15.792254 ], [ 29.531250, -15.792254 ], [ 29.531250, -15.623037 ], [ 30.058594, -15.623037 ], [ 30.058594, -15.453680 ], [ 30.234375, -15.453680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, -1.230374 ], [ 34.453125, -1.230374 ], [ 34.453125, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.581830 ], [ 34.980469, -1.581830 ], [ 34.980469, -1.757537 ], [ 35.332031, -1.757537 ], [ 35.332031, -1.933227 ], [ 35.683594, -1.933227 ], [ 35.683594, -2.108899 ], [ 35.859375, -2.108899 ], [ 35.859375, -2.284551 ], [ 36.210938, -2.284551 ], [ 36.210938, -2.460181 ], [ 36.562500, -2.460181 ], [ 36.562500, -2.635789 ], [ 36.738281, -2.635789 ], [ 36.738281, -2.811371 ], [ 37.089844, -2.811371 ], [ 37.089844, -2.986927 ], [ 37.441406, -2.986927 ], [ 37.441406, -3.162456 ], [ 37.617188, -3.162456 ], [ 37.617188, -3.513421 ], [ 37.792969, -3.513421 ], [ 37.792969, -3.864255 ], [ 37.968750, -3.864255 ], [ 37.968750, -4.039618 ], [ 38.320312, -4.039618 ], [ 38.320312, -4.214943 ], [ 38.496094, -4.214943 ], [ 38.496094, -4.390229 ], [ 38.671875, -4.390229 ], [ 38.671875, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.740675 ], [ 39.199219, -4.740675 ], [ 39.199219, -5.090944 ], [ 39.023438, -5.090944 ], [ 39.023438, -5.441022 ], [ 38.847656, -5.441022 ], [ 38.847656, -5.790897 ], [ 38.671875, -5.790897 ], [ 38.671875, -6.315299 ], [ 38.847656, -6.315299 ], [ 38.847656, -6.664608 ], [ 39.199219, -6.664608 ], [ 39.199219, -6.839170 ], [ 39.375000, -6.839170 ], [ 39.375000, -7.013668 ], [ 39.550781, -7.013668 ], [ 39.550781, -7.188101 ], [ 39.375000, -7.188101 ], [ 39.375000, -7.536764 ], [ 39.199219, -7.536764 ], [ 39.199219, -8.581021 ], [ 39.375000, -8.581021 ], [ 39.375000, -8.928487 ], [ 39.550781, -8.928487 ], [ 39.550781, -9.449062 ], [ 39.726562, -9.449062 ], [ 39.726562, -9.968851 ], [ 39.902344, -9.968851 ], [ 39.902344, -10.314919 ], [ 40.253906, -10.314919 ], [ 40.253906, -10.487812 ], [ 40.078125, -10.487812 ], [ 40.078125, -10.660608 ], [ 39.726562, -10.660608 ], [ 39.726562, -10.833306 ], [ 39.550781, -10.833306 ], [ 39.550781, -11.005904 ], [ 39.199219, -11.005904 ], [ 39.199219, -11.178402 ], [ 38.847656, -11.178402 ], [ 38.847656, -11.350797 ], [ 37.792969, -11.350797 ], [ 37.792969, -11.523088 ], [ 36.738281, -11.523088 ], [ 36.738281, -11.695273 ], [ 35.859375, -11.695273 ], [ 35.859375, -11.523088 ], [ 34.628906, -11.523088 ], [ 34.628906, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.487812 ], [ 34.277344, -10.487812 ], [ 34.277344, -10.141932 ], [ 34.101562, -10.141932 ], [ 34.101562, -9.795678 ], [ 33.925781, -9.795678 ], [ 33.925781, -9.622414 ], [ 33.750000, -9.622414 ], [ 33.750000, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.275622 ], [ 32.519531, -9.275622 ], [ 32.519531, -9.102097 ], [ 32.167969, -9.102097 ], [ 32.167969, -8.928487 ], [ 31.816406, -8.928487 ], [ 31.816406, -8.754795 ], [ 31.289062, -8.754795 ], [ 31.289062, -8.581021 ], [ 30.761719, -8.581021 ], [ 30.761719, -8.233237 ], [ 30.585938, -8.233237 ], [ 30.585938, -7.710992 ], [ 30.410156, -7.710992 ], [ 30.410156, -7.362467 ], [ 30.234375, -7.362467 ], [ 30.234375, -7.013668 ], [ 30.058594, -7.013668 ], [ 30.058594, -6.839170 ], [ 29.882812, -6.839170 ], [ 29.882812, -6.664608 ], [ 29.707031, -6.664608 ], [ 29.707031, -6.489983 ], [ 29.531250, -6.489983 ], [ 29.531250, -6.140555 ], [ 29.355469, -6.140555 ], [ 29.355469, -5.790897 ], [ 29.531250, -5.790897 ], [ 29.531250, -5.090944 ], [ 29.355469, -5.090944 ], [ 29.355469, -4.565474 ], [ 29.707031, -4.565474 ], [ 29.707031, -4.390229 ], [ 29.882812, -4.390229 ], [ 29.882812, -4.214943 ], [ 30.058594, -4.214943 ], [ 30.058594, -4.039618 ], [ 30.234375, -4.039618 ], [ 30.234375, -3.864255 ], [ 30.410156, -3.864255 ], [ 30.410156, -3.688855 ], [ 30.585938, -3.688855 ], [ 30.585938, -3.513421 ], [ 30.761719, -3.513421 ], [ 30.761719, -2.986927 ], [ 30.585938, -2.986927 ], [ 30.585938, -2.635789 ], [ 30.410156, -2.635789 ], [ 30.410156, -2.460181 ], [ 30.761719, -2.460181 ], [ 30.761719, -1.581830 ], [ 30.585938, -1.581830 ], [ 30.585938, -1.230374 ], [ 30.410156, -1.230374 ], [ 30.410156, -1.054628 ], [ 33.046875, -1.054628 ], [ 33.046875, -0.878872 ], [ 33.925781, -0.878872 ], [ 33.925781, -1.054628 ], [ 34.101562, -1.054628 ], [ 34.101562, -1.230374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, -0.878872 ], [ 33.925781, -1.054628 ], [ 34.101562, -1.054628 ], [ 34.101562, -1.230374 ], [ 34.453125, -1.230374 ], [ 34.453125, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.581830 ], [ 34.980469, -1.581830 ], [ 34.980469, -1.757537 ], [ 35.332031, -1.757537 ], [ 35.332031, -1.933227 ], [ 35.683594, -1.933227 ], [ 35.683594, -2.108899 ], [ 35.859375, -2.108899 ], [ 35.859375, -2.284551 ], [ 36.210938, -2.284551 ], [ 36.210938, -2.460181 ], [ 36.562500, -2.460181 ], [ 36.562500, -2.635789 ], [ 36.738281, -2.635789 ], [ 36.738281, -2.811371 ], [ 37.089844, -2.811371 ], [ 37.089844, -2.986927 ], [ 37.441406, -2.986927 ], [ 37.441406, -3.162456 ], [ 37.617188, -3.162456 ], [ 37.617188, -3.513421 ], [ 37.792969, -3.513421 ], [ 37.792969, -3.864255 ], [ 37.968750, -3.864255 ], [ 37.968750, -4.039618 ], [ 38.320312, -4.039618 ], [ 38.320312, -4.214943 ], [ 38.496094, -4.214943 ], [ 38.496094, -4.390229 ], [ 38.671875, -4.390229 ], [ 38.671875, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.740675 ], [ 39.199219, -4.740675 ], [ 39.199219, -5.090944 ], [ 39.023438, -5.090944 ], [ 39.023438, -5.441022 ], [ 38.847656, -5.441022 ], [ 38.847656, -5.790897 ], [ 38.671875, -5.790897 ], [ 38.671875, -6.315299 ], [ 38.847656, -6.315299 ], [ 38.847656, -6.664608 ], [ 39.199219, -6.664608 ], [ 39.199219, -6.839170 ], [ 39.375000, -6.839170 ], [ 39.375000, -7.013668 ], [ 39.550781, -7.013668 ], [ 39.550781, -7.188101 ], [ 39.375000, -7.188101 ], [ 39.375000, -7.536764 ], [ 39.199219, -7.536764 ], [ 39.199219, -8.581021 ], [ 39.375000, -8.581021 ], [ 39.375000, -8.928487 ], [ 39.550781, -8.928487 ], [ 39.550781, -9.449062 ], [ 39.726562, -9.449062 ], [ 39.726562, -9.968851 ], [ 39.902344, -9.968851 ], [ 39.902344, -10.314919 ], [ 40.253906, -10.314919 ], [ 40.253906, -10.487812 ], [ 40.078125, -10.487812 ], [ 40.078125, -10.660608 ], [ 39.726562, -10.660608 ], [ 39.726562, -10.833306 ], [ 39.550781, -10.833306 ], [ 39.550781, -11.005904 ], [ 39.199219, -11.005904 ], [ 39.199219, -11.178402 ], [ 38.847656, -11.178402 ], [ 38.847656, -11.350797 ], [ 37.792969, -11.350797 ], [ 37.792969, -11.523088 ], [ 36.738281, -11.523088 ], [ 36.738281, -11.695273 ], [ 35.859375, -11.695273 ], [ 35.859375, -11.523088 ], [ 34.628906, -11.523088 ], [ 34.628906, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.487812 ], [ 34.277344, -10.487812 ], [ 34.277344, -10.141932 ], [ 34.101562, -10.141932 ], [ 34.101562, -9.795678 ], [ 33.925781, -9.795678 ], [ 33.925781, -9.622414 ], [ 33.750000, -9.622414 ], [ 33.750000, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.275622 ], [ 32.519531, -9.275622 ], [ 32.519531, -9.102097 ], [ 32.167969, -9.102097 ], [ 32.167969, -8.928487 ], [ 31.816406, -8.928487 ], [ 31.816406, -8.754795 ], [ 31.289062, -8.754795 ], [ 31.289062, -8.581021 ], [ 30.761719, -8.581021 ], [ 30.761719, -8.233237 ], [ 30.585938, -8.233237 ], [ 30.585938, -7.710992 ], [ 30.410156, -7.710992 ], [ 30.410156, -7.362467 ], [ 30.234375, -7.362467 ], [ 30.234375, -7.013668 ], [ 30.058594, -7.013668 ], [ 30.058594, -6.839170 ], [ 29.882812, -6.839170 ], [ 29.882812, -6.664608 ], [ 29.707031, -6.664608 ], [ 29.707031, -6.489983 ], [ 29.531250, -6.489983 ], [ 29.531250, -6.140555 ], [ 29.355469, -6.140555 ], [ 29.355469, -5.790897 ], [ 29.531250, -5.790897 ], [ 29.531250, -5.090944 ], [ 29.355469, -5.090944 ], [ 29.355469, -4.565474 ], [ 29.707031, -4.565474 ], [ 29.707031, -4.390229 ], [ 29.882812, -4.390229 ], [ 29.882812, -4.214943 ], [ 30.058594, -4.214943 ], [ 30.058594, -4.039618 ], [ 30.234375, -4.039618 ], [ 30.234375, -3.864255 ], [ 30.410156, -3.864255 ], [ 30.410156, -3.688855 ], [ 30.585938, -3.688855 ], [ 30.585938, -3.513421 ], [ 30.761719, -3.513421 ], [ 30.761719, -2.986927 ], [ 30.585938, -2.986927 ], [ 30.585938, -2.635789 ], [ 30.410156, -2.635789 ], [ 30.410156, -2.460181 ], [ 30.761719, -2.460181 ], [ 30.761719, -1.581830 ], [ 30.585938, -1.581830 ], [ 30.585938, -1.230374 ], [ 30.410156, -1.230374 ], [ 30.410156, -1.054628 ], [ 33.046875, -1.054628 ], [ 33.046875, -0.878872 ], [ 33.925781, -0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, -9.449062 ], [ 33.750000, -9.622414 ], [ 33.925781, -9.622414 ], [ 33.925781, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.141932 ], [ 34.277344, -10.141932 ], [ 34.277344, -10.487812 ], [ 34.453125, -10.487812 ], [ 34.453125, -11.178402 ], [ 34.628906, -11.178402 ], [ 34.628906, -11.695273 ], [ 34.453125, -11.695273 ], [ 34.453125, -12.039321 ], [ 34.277344, -12.039321 ], [ 34.277344, -12.554564 ], [ 34.453125, -12.554564 ], [ 34.453125, -13.239945 ], [ 34.628906, -13.239945 ], [ 34.628906, -13.581921 ], [ 34.980469, -13.581921 ], [ 34.980469, -13.752725 ], [ 35.156250, -13.752725 ], [ 35.156250, -13.923404 ], [ 35.332031, -13.923404 ], [ 35.332031, -14.093957 ], [ 35.507812, -14.093957 ], [ 35.507812, -14.434680 ], [ 35.683594, -14.434680 ], [ 35.683594, -15.284185 ], [ 35.859375, -15.284185 ], [ 35.859375, -15.961329 ], [ 35.683594, -15.961329 ], [ 35.683594, -16.130262 ], [ 35.332031, -16.130262 ], [ 35.332031, -16.299051 ], [ 35.156250, -16.299051 ], [ 35.156250, -16.636192 ], [ 34.980469, -16.636192 ], [ 34.980469, -16.804541 ], [ 34.804688, -16.804541 ], [ 34.804688, -16.467695 ], [ 34.628906, -16.467695 ], [ 34.628906, -16.299051 ], [ 34.453125, -16.299051 ], [ 34.453125, -15.792254 ], [ 34.277344, -15.792254 ], [ 34.277344, -15.284185 ], [ 34.453125, -15.284185 ], [ 34.453125, -14.604847 ], [ 34.101562, -14.604847 ], [ 34.101562, -14.434680 ], [ 33.574219, -14.434680 ], [ 33.574219, -14.264383 ], [ 33.398438, -14.264383 ], [ 33.398438, -14.093957 ], [ 33.222656, -14.093957 ], [ 33.222656, -13.923404 ], [ 32.871094, -13.923404 ], [ 32.871094, -13.752725 ], [ 32.695312, -13.752725 ], [ 32.695312, -13.581921 ], [ 32.871094, -13.581921 ], [ 32.871094, -13.068777 ], [ 33.046875, -13.068777 ], [ 33.046875, -12.554564 ], [ 33.222656, -12.554564 ], [ 33.222656, -12.039321 ], [ 33.046875, -12.039321 ], [ 33.046875, -11.350797 ], [ 33.222656, -11.350797 ], [ 33.222656, -11.005904 ], [ 33.398438, -11.005904 ], [ 33.398438, -10.141932 ], [ 33.222656, -10.141932 ], [ 33.222656, -9.622414 ], [ 33.046875, -9.622414 ], [ 33.046875, -9.449062 ], [ 33.750000, -9.449062 ] ] ], [ [ [ 32.695312, -9.449062 ], [ 32.695312, -9.275622 ], [ 33.046875, -9.275622 ], [ 33.046875, -9.449062 ], [ 32.695312, -9.449062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.046875, -9.449062 ], [ 33.750000, -9.449062 ], [ 33.750000, -9.622414 ], [ 33.925781, -9.622414 ], [ 33.925781, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.141932 ], [ 34.277344, -10.141932 ], [ 34.277344, -10.487812 ], [ 34.453125, -10.487812 ], [ 34.453125, -11.178402 ], [ 34.628906, -11.178402 ], [ 34.628906, -11.695273 ], [ 34.453125, -11.695273 ], [ 34.453125, -12.039321 ], [ 34.277344, -12.039321 ], [ 34.277344, -12.554564 ], [ 34.453125, -12.554564 ], [ 34.453125, -13.239945 ], [ 34.628906, -13.239945 ], [ 34.628906, -13.581921 ], [ 34.980469, -13.581921 ], [ 34.980469, -13.752725 ], [ 35.156250, -13.752725 ], [ 35.156250, -13.923404 ], [ 35.332031, -13.923404 ], [ 35.332031, -14.093957 ], [ 35.507812, -14.093957 ], [ 35.507812, -14.434680 ], [ 35.683594, -14.434680 ], [ 35.683594, -15.284185 ], [ 35.859375, -15.284185 ], [ 35.859375, -15.961329 ], [ 35.683594, -15.961329 ], [ 35.683594, -16.130262 ], [ 35.332031, -16.130262 ], [ 35.332031, -16.299051 ], [ 35.156250, -16.299051 ], [ 35.156250, -16.636192 ], [ 34.980469, -16.636192 ], [ 34.980469, -16.804541 ], [ 34.804688, -16.804541 ], [ 34.804688, -16.467695 ], [ 34.628906, -16.467695 ], [ 34.628906, -16.299051 ], [ 34.453125, -16.299051 ], [ 34.453125, -15.792254 ], [ 34.277344, -15.792254 ], [ 34.277344, -15.284185 ], [ 34.453125, -15.284185 ], [ 34.453125, -14.604847 ], [ 34.101562, -14.604847 ], [ 34.101562, -14.434680 ], [ 33.574219, -14.434680 ], [ 33.574219, -14.264383 ], [ 33.398438, -14.264383 ], [ 33.398438, -14.093957 ], [ 33.222656, -14.093957 ], [ 33.222656, -13.923404 ], [ 32.871094, -13.923404 ], [ 32.871094, -13.752725 ], [ 32.695312, -13.752725 ], [ 32.695312, -13.581921 ], [ 32.871094, -13.581921 ], [ 32.871094, -13.068777 ], [ 33.046875, -13.068777 ], [ 33.046875, -12.554564 ], [ 33.222656, -12.554564 ], [ 33.222656, -12.039321 ], [ 33.046875, -12.039321 ], [ 33.046875, -11.350797 ], [ 33.222656, -11.350797 ], [ 33.222656, -11.005904 ], [ 33.398438, -11.005904 ], [ 33.398438, -10.141932 ], [ 33.222656, -10.141932 ], [ 33.222656, -9.622414 ], [ 33.046875, -9.622414 ], [ 33.046875, -9.449062 ] ] ], [ [ [ 33.046875, -9.449062 ], [ 32.695312, -9.449062 ], [ 32.695312, -9.275622 ], [ 33.046875, -9.275622 ], [ 33.046875, -9.449062 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -12.211180 ], [ 40.605469, -12.211180 ], [ 40.605469, -14.604847 ], [ 40.781250, -14.604847 ], [ 40.781250, -14.944785 ], [ 40.605469, -14.944785 ], [ 40.605469, -15.284185 ], [ 40.429688, -15.284185 ], [ 40.429688, -15.623037 ], [ 40.253906, -15.623037 ], [ 40.253906, -15.961329 ], [ 40.078125, -15.961329 ], [ 40.078125, -16.299051 ], [ 39.902344, -16.299051 ], [ 39.902344, -16.467695 ], [ 39.726562, -16.467695 ], [ 39.726562, -16.636192 ], [ 39.550781, -16.636192 ], [ 39.550781, -16.804541 ], [ 39.199219, -16.804541 ], [ 39.199219, -16.972741 ], [ 38.847656, -16.972741 ], [ 38.847656, -17.140790 ], [ 38.496094, -17.140790 ], [ 38.496094, -17.308688 ], [ 38.144531, -17.308688 ], [ 38.144531, -17.476432 ], [ 37.792969, -17.476432 ], [ 37.792969, -17.644022 ], [ 37.441406, -17.644022 ], [ 37.441406, -17.811456 ], [ 37.265625, -17.811456 ], [ 37.265625, -17.978733 ], [ 37.089844, -17.978733 ], [ 37.089844, -18.145852 ], [ 36.738281, -18.145852 ], [ 36.738281, -18.312811 ], [ 36.562500, -18.312811 ], [ 36.562500, -18.479609 ], [ 36.386719, -18.479609 ], [ 36.386719, -18.646245 ], [ 36.210938, -18.646245 ], [ 36.210938, -18.812718 ], [ 35.859375, -18.812718 ], [ 35.859375, -18.979026 ], [ 35.683594, -18.979026 ], [ 35.683594, -19.145168 ], [ 35.507812, -19.145168 ], [ 35.507812, -19.311143 ], [ 35.332031, -19.311143 ], [ 35.332031, -19.476950 ], [ 35.156250, -19.476950 ], [ 35.156250, -19.642588 ], [ 34.980469, -19.642588 ], [ 34.980469, -19.808054 ], [ 34.804688, -19.808054 ], [ 34.804688, -20.138470 ], [ 34.628906, -20.138470 ], [ 34.628906, -20.632784 ], [ 34.804688, -20.632784 ], [ 34.804688, -20.961440 ], [ 34.980469, -20.961440 ], [ 34.980469, -21.289374 ], [ 35.156250, -21.289374 ], [ 35.156250, -21.616579 ], [ 35.332031, -21.616579 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.105999 ], [ 35.507812, -23.402765 ], [ 35.332031, -23.402765 ], [ 35.332031, -23.725012 ], [ 35.683594, -23.725012 ], [ 35.683594, -23.885838 ], [ 35.507812, -23.885838 ], [ 35.507812, -24.206890 ], [ 35.332031, -24.206890 ], [ 35.332031, -24.367114 ], [ 35.156250, -24.367114 ], [ 35.156250, -24.527135 ], [ 34.980469, -24.527135 ], [ 34.980469, -24.686952 ], [ 34.628906, -24.686952 ], [ 34.628906, -24.846565 ], [ 34.101562, -24.846565 ], [ 34.101562, -25.005973 ], [ 33.750000, -25.005973 ], [ 33.750000, -25.165173 ], [ 33.398438, -25.165173 ], [ 33.398438, -25.324167 ], [ 33.046875, -25.324167 ], [ 33.046875, -25.482951 ], [ 32.871094, -25.482951 ], [ 32.871094, -25.641526 ], [ 32.695312, -25.641526 ], [ 32.695312, -25.799891 ], [ 32.519531, -25.799891 ], [ 32.519531, -25.958045 ], [ 32.695312, -25.958045 ], [ 32.695312, -26.273714 ], [ 32.871094, -26.273714 ], [ 32.871094, -26.745610 ], [ 31.992188, -26.745610 ], [ 31.992188, -26.115986 ], [ 31.816406, -26.115986 ], [ 31.816406, -25.005973 ], [ 31.992188, -25.005973 ], [ 31.992188, -24.206890 ], [ 31.816406, -24.206890 ], [ 31.816406, -23.885838 ], [ 31.640625, -23.885838 ], [ 31.640625, -23.563987 ], [ 31.464844, -23.563987 ], [ 31.464844, -23.079732 ], [ 31.289062, -23.079732 ], [ 31.289062, -22.593726 ], [ 31.113281, -22.593726 ], [ 31.113281, -22.268764 ], [ 31.289062, -22.268764 ], [ 31.289062, -22.105999 ], [ 31.464844, -22.105999 ], [ 31.464844, -21.943046 ], [ 31.640625, -21.943046 ], [ 31.640625, -21.616579 ], [ 31.816406, -21.616579 ], [ 31.816406, -21.453069 ], [ 31.992188, -21.453069 ], [ 31.992188, -21.289374 ], [ 32.167969, -21.289374 ], [ 32.167969, -20.961440 ], [ 32.343750, -20.961440 ], [ 32.343750, -20.632784 ], [ 32.519531, -20.632784 ], [ 32.519531, -20.468189 ], [ 32.695312, -20.468189 ], [ 32.695312, -18.312811 ], [ 32.871094, -18.312811 ], [ 32.871094, -16.636192 ], [ 32.519531, -16.636192 ], [ 32.519531, -16.467695 ], [ 31.992188, -16.467695 ], [ 31.992188, -16.299051 ], [ 31.640625, -16.299051 ], [ 31.640625, -16.130262 ], [ 31.464844, -16.130262 ], [ 31.464844, -15.961329 ], [ 31.113281, -15.961329 ], [ 31.113281, -15.792254 ], [ 30.937500, -15.792254 ], [ 30.937500, -15.961329 ], [ 30.410156, -15.961329 ], [ 30.410156, -15.792254 ], [ 30.234375, -15.792254 ], [ 30.234375, -14.774883 ], [ 30.585938, -14.774883 ], [ 30.585938, -14.604847 ], [ 31.289062, -14.604847 ], [ 31.289062, -14.434680 ], [ 31.816406, -14.434680 ], [ 31.816406, -14.264383 ], [ 32.343750, -14.264383 ], [ 32.343750, -14.093957 ], [ 33.046875, -14.093957 ], [ 33.046875, -13.923404 ], [ 33.222656, -13.923404 ], [ 33.222656, -14.093957 ], [ 33.398438, -14.093957 ], [ 33.398438, -14.264383 ], [ 33.574219, -14.264383 ], [ 33.574219, -14.434680 ], [ 34.101562, -14.434680 ], [ 34.101562, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -15.284185 ], [ 34.277344, -15.284185 ], [ 34.277344, -15.792254 ], [ 34.453125, -15.792254 ], [ 34.453125, -16.299051 ], [ 34.628906, -16.299051 ], [ 34.628906, -16.467695 ], [ 34.804688, -16.467695 ], [ 34.804688, -16.804541 ], [ 34.980469, -16.804541 ], [ 34.980469, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -16.299051 ], [ 35.332031, -16.299051 ], [ 35.332031, -16.130262 ], [ 35.683594, -16.130262 ], [ 35.683594, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -15.284185 ], [ 35.683594, -15.284185 ], [ 35.683594, -14.434680 ], [ 35.507812, -14.434680 ], [ 35.507812, -14.093957 ], [ 35.332031, -14.093957 ], [ 35.332031, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -13.752725 ], [ 34.980469, -13.752725 ], [ 34.980469, -13.581921 ], [ 34.628906, -13.581921 ], [ 34.628906, -13.239945 ], [ 34.453125, -13.239945 ], [ 34.453125, -12.554564 ], [ 34.277344, -12.554564 ], [ 34.277344, -12.039321 ], [ 34.453125, -12.039321 ], [ 34.453125, -11.695273 ], [ 34.628906, -11.695273 ], [ 34.628906, -11.523088 ], [ 35.859375, -11.523088 ], [ 35.859375, -11.695273 ], [ 36.738281, -11.695273 ], [ 36.738281, -11.523088 ], [ 37.792969, -11.523088 ], [ 37.792969, -11.350797 ], [ 38.847656, -11.350797 ], [ 38.847656, -11.178402 ], [ 39.199219, -11.178402 ], [ 39.199219, -11.005904 ], [ 39.550781, -11.005904 ], [ 39.550781, -10.833306 ], [ 39.726562, -10.833306 ], [ 39.726562, -10.660608 ], [ 40.078125, -10.660608 ], [ 40.078125, -10.487812 ], [ 40.253906, -10.487812 ], [ 40.253906, -10.660608 ], [ 40.429688, -10.660608 ], [ 40.429688, -12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, -10.487812 ], [ 40.253906, -10.660608 ], [ 40.429688, -10.660608 ], [ 40.429688, -12.211180 ], [ 40.605469, -12.211180 ], [ 40.605469, -14.604847 ], [ 40.781250, -14.604847 ], [ 40.781250, -14.944785 ], [ 40.605469, -14.944785 ], [ 40.605469, -15.284185 ], [ 40.429688, -15.284185 ], [ 40.429688, -15.623037 ], [ 40.253906, -15.623037 ], [ 40.253906, -15.961329 ], [ 40.078125, -15.961329 ], [ 40.078125, -16.299051 ], [ 39.902344, -16.299051 ], [ 39.902344, -16.467695 ], [ 39.726562, -16.467695 ], [ 39.726562, -16.636192 ], [ 39.550781, -16.636192 ], [ 39.550781, -16.804541 ], [ 39.199219, -16.804541 ], [ 39.199219, -16.972741 ], [ 38.847656, -16.972741 ], [ 38.847656, -17.140790 ], [ 38.496094, -17.140790 ], [ 38.496094, -17.308688 ], [ 38.144531, -17.308688 ], [ 38.144531, -17.476432 ], [ 37.792969, -17.476432 ], [ 37.792969, -17.644022 ], [ 37.441406, -17.644022 ], [ 37.441406, -17.811456 ], [ 37.265625, -17.811456 ], [ 37.265625, -17.978733 ], [ 37.089844, -17.978733 ], [ 37.089844, -18.145852 ], [ 36.738281, -18.145852 ], [ 36.738281, -18.312811 ], [ 36.562500, -18.312811 ], [ 36.562500, -18.479609 ], [ 36.386719, -18.479609 ], [ 36.386719, -18.646245 ], [ 36.210938, -18.646245 ], [ 36.210938, -18.812718 ], [ 35.859375, -18.812718 ], [ 35.859375, -18.979026 ], [ 35.683594, -18.979026 ], [ 35.683594, -19.145168 ], [ 35.507812, -19.145168 ], [ 35.507812, -19.311143 ], [ 35.332031, -19.311143 ], [ 35.332031, -19.476950 ], [ 35.156250, -19.476950 ], [ 35.156250, -19.642588 ], [ 34.980469, -19.642588 ], [ 34.980469, -19.808054 ], [ 34.804688, -19.808054 ], [ 34.804688, -20.138470 ], [ 34.628906, -20.138470 ], [ 34.628906, -20.632784 ], [ 34.804688, -20.632784 ], [ 34.804688, -20.961440 ], [ 34.980469, -20.961440 ], [ 34.980469, -21.289374 ], [ 35.156250, -21.289374 ], [ 35.156250, -21.616579 ], [ 35.332031, -21.616579 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.105999 ], [ 35.507812, -23.402765 ], [ 35.332031, -23.402765 ], [ 35.332031, -23.725012 ], [ 35.683594, -23.725012 ], [ 35.683594, -23.885838 ], [ 35.507812, -23.885838 ], [ 35.507812, -24.206890 ], [ 35.332031, -24.206890 ], [ 35.332031, -24.367114 ], [ 35.156250, -24.367114 ], [ 35.156250, -24.527135 ], [ 34.980469, -24.527135 ], [ 34.980469, -24.686952 ], [ 34.628906, -24.686952 ], [ 34.628906, -24.846565 ], [ 34.101562, -24.846565 ], [ 34.101562, -25.005973 ], [ 33.750000, -25.005973 ], [ 33.750000, -25.165173 ], [ 33.398438, -25.165173 ], [ 33.398438, -25.324167 ], [ 33.046875, -25.324167 ], [ 33.046875, -25.482951 ], [ 32.871094, -25.482951 ], [ 32.871094, -25.641526 ], [ 32.695312, -25.641526 ], [ 32.695312, -25.799891 ], [ 32.519531, -25.799891 ], [ 32.519531, -25.958045 ], [ 32.695312, -25.958045 ], [ 32.695312, -26.273714 ], [ 32.871094, -26.273714 ], [ 32.871094, -26.745610 ], [ 31.992188, -26.745610 ], [ 31.992188, -26.115986 ], [ 31.816406, -26.115986 ], [ 31.816406, -25.005973 ], [ 31.992188, -25.005973 ], [ 31.992188, -24.206890 ], [ 31.816406, -24.206890 ], [ 31.816406, -23.885838 ], [ 31.640625, -23.885838 ], [ 31.640625, -23.563987 ], [ 31.464844, -23.563987 ], [ 31.464844, -23.079732 ], [ 31.289062, -23.079732 ], [ 31.289062, -22.593726 ], [ 31.113281, -22.593726 ], [ 31.113281, -22.268764 ], [ 31.289062, -22.268764 ], [ 31.289062, -22.105999 ], [ 31.464844, -22.105999 ], [ 31.464844, -21.943046 ], [ 31.640625, -21.943046 ], [ 31.640625, -21.616579 ], [ 31.816406, -21.616579 ], [ 31.816406, -21.453069 ], [ 31.992188, -21.453069 ], [ 31.992188, -21.289374 ], [ 32.167969, -21.289374 ], [ 32.167969, -20.961440 ], [ 32.343750, -20.961440 ], [ 32.343750, -20.632784 ], [ 32.519531, -20.632784 ], [ 32.519531, -20.468189 ], [ 32.695312, -20.468189 ], [ 32.695312, -18.312811 ], [ 32.871094, -18.312811 ], [ 32.871094, -16.636192 ], [ 32.519531, -16.636192 ], [ 32.519531, -16.467695 ], [ 31.992188, -16.467695 ], [ 31.992188, -16.299051 ], [ 31.640625, -16.299051 ], [ 31.640625, -16.130262 ], [ 31.464844, -16.130262 ], [ 31.464844, -15.961329 ], [ 31.113281, -15.961329 ], [ 31.113281, -15.792254 ], [ 30.937500, -15.792254 ], [ 30.937500, -15.961329 ], [ 30.410156, -15.961329 ], [ 30.410156, -15.792254 ], [ 30.234375, -15.792254 ], [ 30.234375, -14.774883 ], [ 30.585938, -14.774883 ], [ 30.585938, -14.604847 ], [ 31.289062, -14.604847 ], [ 31.289062, -14.434680 ], [ 31.816406, -14.434680 ], [ 31.816406, -14.264383 ], [ 32.343750, -14.264383 ], [ 32.343750, -14.093957 ], [ 33.046875, -14.093957 ], [ 33.046875, -13.923404 ], [ 33.222656, -13.923404 ], [ 33.222656, -14.093957 ], [ 33.398438, -14.093957 ], [ 33.398438, -14.264383 ], [ 33.574219, -14.264383 ], [ 33.574219, -14.434680 ], [ 34.101562, -14.434680 ], [ 34.101562, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -15.284185 ], [ 34.277344, -15.284185 ], [ 34.277344, -15.792254 ], [ 34.453125, -15.792254 ], [ 34.453125, -16.299051 ], [ 34.628906, -16.299051 ], [ 34.628906, -16.467695 ], [ 34.804688, -16.467695 ], [ 34.804688, -16.804541 ], [ 34.980469, -16.804541 ], [ 34.980469, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -16.299051 ], [ 35.332031, -16.299051 ], [ 35.332031, -16.130262 ], [ 35.683594, -16.130262 ], [ 35.683594, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -15.284185 ], [ 35.683594, -15.284185 ], [ 35.683594, -14.434680 ], [ 35.507812, -14.434680 ], [ 35.507812, -14.093957 ], [ 35.332031, -14.093957 ], [ 35.332031, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -13.752725 ], [ 34.980469, -13.752725 ], [ 34.980469, -13.581921 ], [ 34.628906, -13.581921 ], [ 34.628906, -13.239945 ], [ 34.453125, -13.239945 ], [ 34.453125, -12.554564 ], [ 34.277344, -12.554564 ], [ 34.277344, -12.039321 ], [ 34.453125, -12.039321 ], [ 34.453125, -11.695273 ], [ 34.628906, -11.523088 ], [ 35.859375, -11.523088 ], [ 35.859375, -11.695273 ], [ 36.738281, -11.695273 ], [ 36.738281, -11.523088 ], [ 37.792969, -11.523088 ], [ 37.792969, -11.350797 ], [ 38.847656, -11.350797 ], [ 38.847656, -11.178402 ], [ 39.199219, -11.178402 ], [ 39.199219, -11.005904 ], [ 39.550781, -11.005904 ], [ 39.550781, -10.833306 ], [ 39.726562, -10.833306 ], [ 39.726562, -10.660608 ], [ 40.078125, -10.660608 ], [ 40.078125, -10.487812 ], [ 40.253906, -10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 25.488281, -17.978733 ], [ 25.488281, -18.312811 ], [ 25.664062, -18.312811 ], [ 25.664062, -18.646245 ], [ 25.839844, -18.646245 ], [ 25.839844, -18.812718 ], [ 26.015625, -18.812718 ], [ 26.015625, -19.145168 ], [ 26.191406, -19.145168 ], [ 26.191406, -19.476950 ], [ 26.367188, -19.476950 ], [ 26.367188, -19.642588 ], [ 26.542969, -19.642588 ], [ 26.542969, -19.808054 ], [ 26.718750, -19.808054 ], [ 26.718750, -20.138470 ], [ 26.894531, -20.138470 ], [ 26.894531, -20.303418 ], [ 27.070312, -20.303418 ], [ 27.070312, -20.468189 ], [ 27.773438, -20.468189 ], [ 27.773438, -21.125498 ], [ 27.949219, -21.125498 ], [ 27.949219, -21.453069 ], [ 28.300781, -21.453069 ], [ 28.300781, -21.616579 ], [ 28.828125, -21.616579 ], [ 28.828125, -21.779905 ], [ 29.003906, -21.779905 ], [ 29.003906, -21.943046 ], [ 29.179688, -21.943046 ], [ 29.179688, -22.105999 ], [ 29.355469, -22.105999 ], [ 29.355469, -22.268764 ], [ 29.003906, -22.268764 ], [ 29.003906, -22.431340 ], [ 28.652344, -22.431340 ], [ 28.652344, -22.593726 ], [ 28.300781, -22.593726 ], [ 28.300781, -22.755921 ], [ 27.949219, -22.755921 ], [ 27.949219, -22.917923 ], [ 27.773438, -22.917923 ], [ 27.773438, -23.079732 ], [ 27.597656, -23.079732 ], [ 27.597656, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -23.402765 ], [ 27.246094, -23.402765 ], [ 27.246094, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.725012 ], [ 26.894531, -23.725012 ], [ 26.894531, -24.046464 ], [ 26.718750, -24.046464 ], [ 26.718750, -24.527135 ], [ 26.542969, -24.527135 ], [ 26.542969, -24.686952 ], [ 26.015625, -24.686952 ], [ 26.015625, -25.005973 ], [ 25.839844, -25.005973 ], [ 25.839844, -25.324167 ], [ 25.664062, -25.324167 ], [ 25.664062, -25.482951 ], [ 25.488281, -25.482951 ], [ 25.488281, -25.641526 ], [ 24.082031, -25.641526 ], [ 24.082031, -25.482951 ], [ 23.730469, -25.482951 ], [ 23.730469, -25.324167 ], [ 23.203125, -25.324167 ], [ 23.203125, -25.482951 ], [ 22.851562, -25.482951 ], [ 22.851562, -25.641526 ], [ 22.675781, -25.641526 ], [ 22.675781, -25.958045 ], [ 22.500000, -25.958045 ], [ 22.500000, -26.115986 ], [ 22.324219, -26.115986 ], [ 22.324219, -26.273714 ], [ 22.148438, -26.273714 ], [ 22.148438, -26.431228 ], [ 21.972656, -26.431228 ], [ 21.972656, -26.588527 ], [ 21.796875, -26.588527 ], [ 21.796875, -26.745610 ], [ 21.445312, -26.745610 ], [ 21.445312, -26.902477 ], [ 20.917969, -26.902477 ], [ 20.917969, -26.745610 ], [ 20.742188, -26.745610 ], [ 20.742188, -25.641526 ], [ 20.566406, -25.641526 ], [ 20.566406, -25.324167 ], [ 20.390625, -25.324167 ], [ 20.390625, -25.005973 ], [ 20.214844, -25.005973 ], [ 20.214844, -24.846565 ], [ 19.863281, -24.846565 ], [ 19.863281, -21.779905 ], [ 20.917969, -21.779905 ], [ 20.917969, -18.312811 ], [ 21.445312, -18.312811 ], [ 21.445312, -18.145852 ], [ 22.148438, -18.145852 ], [ 22.148438, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -17.811456 ], [ 23.203125, -17.811456 ], [ 23.203125, -17.978733 ], [ 23.378906, -17.978733 ], [ 23.378906, -18.312811 ], [ 23.730469, -18.312811 ], [ 23.730469, -18.145852 ], [ 24.082031, -18.145852 ], [ 24.082031, -17.978733 ], [ 24.257812, -17.978733 ], [ 24.257812, -17.811456 ], [ 24.960938, -17.811456 ], [ 24.960938, -17.644022 ], [ 25.136719, -17.644022 ], [ 25.136719, -17.811456 ], [ 25.312500, -17.811456 ], [ 25.312500, -17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, -17.644022 ], [ 25.136719, -17.811456 ], [ 25.312500, -17.811456 ], [ 25.312500, -17.978733 ], [ 25.488281, -17.978733 ], [ 25.488281, -18.312811 ], [ 25.664062, -18.312811 ], [ 25.664062, -18.646245 ], [ 25.839844, -18.646245 ], [ 25.839844, -18.812718 ], [ 26.015625, -18.812718 ], [ 26.015625, -19.145168 ], [ 26.191406, -19.145168 ], [ 26.191406, -19.476950 ], [ 26.367188, -19.476950 ], [ 26.367188, -19.642588 ], [ 26.542969, -19.642588 ], [ 26.542969, -19.808054 ], [ 26.718750, -19.808054 ], [ 26.718750, -20.138470 ], [ 26.894531, -20.138470 ], [ 26.894531, -20.303418 ], [ 27.070312, -20.303418 ], [ 27.070312, -20.468189 ], [ 27.773438, -20.468189 ], [ 27.773438, -21.125498 ], [ 27.949219, -21.125498 ], [ 27.949219, -21.453069 ], [ 28.300781, -21.453069 ], [ 28.300781, -21.616579 ], [ 28.828125, -21.616579 ], [ 28.828125, -21.779905 ], [ 29.003906, -21.779905 ], [ 29.003906, -21.943046 ], [ 29.179688, -21.943046 ], [ 29.179688, -22.105999 ], [ 29.355469, -22.105999 ], [ 29.355469, -22.268764 ], [ 29.003906, -22.268764 ], [ 29.003906, -22.431340 ], [ 28.652344, -22.431340 ], [ 28.652344, -22.593726 ], [ 28.300781, -22.593726 ], [ 28.300781, -22.755921 ], [ 27.949219, -22.755921 ], [ 27.949219, -22.917923 ], [ 27.773438, -22.917923 ], [ 27.773438, -23.079732 ], [ 27.597656, -23.079732 ], [ 27.597656, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -23.402765 ], [ 27.246094, -23.402765 ], [ 27.246094, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.725012 ], [ 26.894531, -23.725012 ], [ 26.894531, -24.046464 ], [ 26.718750, -24.046464 ], [ 26.718750, -24.527135 ], [ 26.542969, -24.527135 ], [ 26.542969, -24.686952 ], [ 26.015625, -24.686952 ], [ 26.015625, -25.005973 ], [ 25.839844, -25.005973 ], [ 25.839844, -25.324167 ], [ 25.664062, -25.324167 ], [ 25.664062, -25.482951 ], [ 25.488281, -25.482951 ], [ 25.488281, -25.641526 ], [ 24.082031, -25.641526 ], [ 24.082031, -25.482951 ], [ 23.730469, -25.482951 ], [ 23.730469, -25.324167 ], [ 23.203125, -25.324167 ], [ 23.203125, -25.482951 ], [ 22.851562, -25.482951 ], [ 22.851562, -25.641526 ], [ 22.675781, -25.641526 ], [ 22.675781, -25.958045 ], [ 22.500000, -25.958045 ], [ 22.500000, -26.115986 ], [ 22.324219, -26.115986 ], [ 22.324219, -26.273714 ], [ 22.148438, -26.273714 ], [ 22.148438, -26.431228 ], [ 21.972656, -26.431228 ], [ 21.972656, -26.588527 ], [ 21.796875, -26.588527 ], [ 21.796875, -26.745610 ], [ 21.445312, -26.745610 ], [ 21.445312, -26.902477 ], [ 20.917969, -26.902477 ], [ 20.917969, -26.745610 ], [ 20.742188, -26.745610 ], [ 20.742188, -25.641526 ], [ 20.566406, -25.641526 ], [ 20.566406, -25.324167 ], [ 20.390625, -25.324167 ], [ 20.390625, -25.005973 ], [ 20.214844, -25.005973 ], [ 20.214844, -24.846565 ], [ 19.863281, -24.846565 ], [ 19.863281, -21.779905 ], [ 20.917969, -21.779905 ], [ 20.917969, -18.312811 ], [ 21.445312, -18.312811 ], [ 21.445312, -18.145852 ], [ 22.148438, -18.145852 ], [ 22.148438, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -17.811456 ], [ 23.203125, -17.811456 ], [ 23.203125, -17.978733 ], [ 23.378906, -17.978733 ], [ 23.378906, -18.312811 ], [ 23.730469, -18.312811 ], [ 23.730469, -18.145852 ], [ 24.082031, -18.145852 ], [ 24.082031, -17.978733 ], [ 24.257812, -17.978733 ], [ 24.257812, -17.811456 ], [ 24.960938, -17.811456 ], [ 24.960938, -17.644022 ], [ 25.136719, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.113281, -22.593726 ], [ 31.289062, -22.593726 ], [ 31.289062, -23.079732 ], [ 31.464844, -23.079732 ], [ 31.464844, -23.563987 ], [ 31.640625, -23.563987 ], [ 31.640625, -23.885838 ], [ 31.816406, -23.885838 ], [ 31.816406, -24.206890 ], [ 31.992188, -24.206890 ], [ 31.992188, -25.005973 ], [ 31.816406, -25.005973 ], [ 31.816406, -25.799891 ], [ 31.464844, -25.799891 ], [ 31.464844, -25.641526 ], [ 31.289062, -25.641526 ], [ 31.289062, -25.799891 ], [ 31.113281, -25.799891 ], [ 31.113281, -25.958045 ], [ 30.937500, -25.958045 ], [ 30.937500, -26.273714 ], [ 30.761719, -26.273714 ], [ 30.761719, -26.902477 ], [ 30.937500, -26.902477 ], [ 30.937500, -27.059126 ], [ 31.113281, -27.059126 ], [ 31.113281, -27.215556 ], [ 31.816406, -27.215556 ], [ 31.816406, -27.059126 ], [ 31.992188, -27.059126 ], [ 31.992188, -26.745610 ], [ 32.871094, -26.745610 ], [ 32.871094, -27.059126 ], [ 32.695312, -27.059126 ], [ 32.695312, -27.371767 ], [ 32.519531, -27.371767 ], [ 32.519531, -28.459033 ], [ 32.343750, -28.459033 ], [ 32.343750, -28.767659 ], [ 32.167969, -28.767659 ], [ 32.167969, -28.921631 ], [ 31.992188, -28.921631 ], [ 31.992188, -29.075375 ], [ 31.640625, -29.075375 ], [ 31.640625, -29.228890 ], [ 31.464844, -29.228890 ], [ 31.464844, -29.382175 ], [ 31.289062, -29.382175 ], [ 31.289062, -29.535230 ], [ 31.113281, -29.535230 ], [ 31.113281, -29.840644 ], [ 30.937500, -29.840644 ], [ 30.937500, -29.993002 ], [ 30.761719, -29.993002 ], [ 30.761719, -30.297018 ], [ 30.585938, -30.297018 ], [ 30.585938, -30.600094 ], [ 30.410156, -30.600094 ], [ 30.410156, -30.902225 ], [ 30.234375, -30.902225 ], [ 30.234375, -31.203405 ], [ 30.058594, -31.203405 ], [ 30.058594, -31.353637 ], [ 29.882812, -31.353637 ], [ 29.882812, -31.503629 ], [ 29.707031, -31.503629 ], [ 29.707031, -31.653381 ], [ 29.531250, -31.653381 ], [ 29.531250, -31.802893 ], [ 29.355469, -31.802893 ], [ 29.355469, -31.952162 ], [ 29.179688, -31.952162 ], [ 29.179688, -32.101190 ], [ 29.003906, -32.101190 ], [ 29.003906, -32.249974 ], [ 28.828125, -32.249974 ], [ 28.828125, -32.398516 ], [ 28.652344, -32.398516 ], [ 28.652344, -32.694866 ], [ 28.476562, -32.694866 ], [ 28.476562, -32.842674 ], [ 28.300781, -32.842674 ], [ 28.300781, -32.990236 ], [ 27.949219, -32.990236 ], [ 27.949219, -33.137551 ], [ 27.597656, -33.137551 ], [ 27.597656, -33.284620 ], [ 27.246094, -33.284620 ], [ 27.246094, -33.431441 ], [ 26.718750, -33.431441 ], [ 26.718750, -33.578015 ], [ 26.191406, -33.578015 ], [ 26.191406, -33.724340 ], [ 25.839844, -33.724340 ], [ 25.839844, -34.016242 ], [ 25.488281, -34.016242 ], [ 25.488281, -33.870416 ], [ 24.785156, -33.870416 ], [ 24.785156, -34.016242 ], [ 24.257812, -34.016242 ], [ 24.257812, -33.870416 ], [ 23.730469, -33.870416 ], [ 23.730469, -33.724340 ], [ 23.378906, -33.724340 ], [ 23.378906, -33.870416 ], [ 22.500000, -33.870416 ], [ 22.500000, -34.016242 ], [ 22.148438, -34.016242 ], [ 22.148438, -34.161818 ], [ 21.796875, -34.161818 ], [ 21.796875, -34.307144 ], [ 21.269531, -34.307144 ], [ 21.269531, -34.452218 ], [ 20.742188, -34.452218 ], [ 20.742188, -34.597042 ], [ 20.390625, -34.597042 ], [ 20.390625, -34.741612 ], [ 20.039062, -34.741612 ], [ 20.039062, -34.885931 ], [ 19.511719, -34.885931 ], [ 19.511719, -34.741612 ], [ 19.335938, -34.741612 ], [ 19.335938, -34.597042 ], [ 19.160156, -34.597042 ], [ 19.160156, -34.452218 ], [ 18.632812, -34.452218 ], [ 18.632812, -34.161818 ], [ 18.457031, -34.161818 ], [ 18.457031, -34.016242 ], [ 18.281250, -34.016242 ], [ 18.281250, -33.137551 ], [ 18.105469, -33.137551 ], [ 18.105469, -32.842674 ], [ 17.929688, -32.842674 ], [ 17.929688, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.653381 ], [ 18.105469, -31.653381 ], [ 18.105469, -31.353637 ], [ 17.929688, -31.353637 ], [ 17.929688, -31.203405 ], [ 17.753906, -31.203405 ], [ 17.753906, -30.902225 ], [ 17.578125, -30.902225 ], [ 17.578125, -30.600094 ], [ 17.402344, -30.600094 ], [ 17.402344, -30.297018 ], [ 17.226562, -30.297018 ], [ 17.226562, -29.993002 ], [ 17.050781, -29.993002 ], [ 17.050781, -29.688053 ], [ 16.875000, -29.688053 ], [ 16.875000, -29.382175 ], [ 16.699219, -29.382175 ], [ 16.699219, -29.075375 ], [ 16.523438, -29.075375 ], [ 16.523438, -28.767659 ], [ 16.347656, -28.767659 ], [ 16.347656, -28.613459 ], [ 16.523438, -28.613459 ], [ 16.523438, -28.459033 ], [ 16.699219, -28.459033 ], [ 16.699219, -28.304381 ], [ 17.226562, -28.304381 ], [ 17.226562, -28.613459 ], [ 17.402344, -28.613459 ], [ 17.402344, -28.921631 ], [ 17.929688, -28.921631 ], [ 17.929688, -29.075375 ], [ 18.808594, -29.075375 ], [ 18.808594, -28.921631 ], [ 19.160156, -28.921631 ], [ 19.160156, -28.767659 ], [ 19.511719, -28.767659 ], [ 19.511719, -28.613459 ], [ 19.863281, -28.613459 ], [ 19.863281, -24.846565 ], [ 20.214844, -24.846565 ], [ 20.214844, -25.005973 ], [ 20.390625, -25.005973 ], [ 20.390625, -25.324167 ], [ 20.566406, -25.324167 ], [ 20.566406, -25.641526 ], [ 20.742188, -25.641526 ], [ 20.742188, -26.745610 ], [ 20.917969, -26.745610 ], [ 20.917969, -26.902477 ], [ 21.445312, -26.902477 ], [ 21.445312, -26.745610 ], [ 21.796875, -26.745610 ], [ 21.796875, -26.588527 ], [ 21.972656, -26.588527 ], [ 21.972656, -26.431228 ], [ 22.148438, -26.431228 ], [ 22.148438, -26.273714 ], [ 22.324219, -26.273714 ], [ 22.324219, -26.115986 ], [ 22.500000, -26.115986 ], [ 22.500000, -25.958045 ], [ 22.675781, -25.958045 ], [ 22.675781, -25.641526 ], [ 22.851562, -25.641526 ], [ 22.851562, -25.482951 ], [ 23.203125, -25.482951 ], [ 23.203125, -25.324167 ], [ 23.730469, -25.324167 ], [ 23.730469, -25.482951 ], [ 24.082031, -25.482951 ], [ 24.082031, -25.641526 ], [ 25.488281, -25.641526 ], [ 25.488281, -25.482951 ], [ 25.664062, -25.482951 ], [ 25.664062, -25.324167 ], [ 25.839844, -25.324167 ], [ 25.839844, -25.005973 ], [ 26.015625, -25.005973 ], [ 26.015625, -24.686952 ], [ 26.542969, -24.686952 ], [ 26.542969, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -24.046464 ], [ 26.894531, -24.046464 ], [ 26.894531, -23.725012 ], [ 27.070312, -23.725012 ], [ 27.070312, -23.563987 ], [ 27.246094, -23.563987 ], [ 27.246094, -23.402765 ], [ 27.421875, -23.402765 ], [ 27.421875, -23.241346 ], [ 27.597656, -23.241346 ], [ 27.597656, -23.079732 ], [ 27.773438, -23.079732 ], [ 27.773438, -22.917923 ], [ 27.949219, -22.917923 ], [ 27.949219, -22.755921 ], [ 28.300781, -22.755921 ], [ 28.300781, -22.593726 ], [ 28.652344, -22.593726 ], [ 28.652344, -22.431340 ], [ 29.003906, -22.431340 ], [ 29.003906, -22.268764 ], [ 29.355469, -22.268764 ], [ 29.355469, -22.105999 ], [ 30.058594, -22.105999 ], [ 30.058594, -22.268764 ], [ 30.585938, -22.268764 ], [ 30.585938, -22.105999 ], [ 30.761719, -22.105999 ], [ 30.761719, -22.268764 ], [ 31.113281, -22.268764 ], [ 31.113281, -22.593726 ] ], [ [ 29.003906, -29.075375 ], [ 29.003906, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -28.767659 ], [ 28.300781, -28.767659 ], [ 28.300781, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -29.075375 ], [ 27.773438, -29.075375 ], [ 27.773438, -29.228890 ], [ 27.597656, -29.228890 ], [ 27.597656, -29.382175 ], [ 27.421875, -29.382175 ], [ 27.421875, -29.535230 ], [ 27.246094, -29.535230 ], [ 27.246094, -29.840644 ], [ 27.070312, -29.840644 ], [ 27.070312, -29.993002 ], [ 27.246094, -29.993002 ], [ 27.246094, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -30.448674 ], [ 27.597656, -30.448674 ], [ 27.597656, -30.600094 ], [ 28.125000, -30.600094 ], [ 28.125000, -30.448674 ], [ 28.300781, -30.448674 ], [ 28.300781, -30.297018 ], [ 28.652344, -30.297018 ], [ 28.652344, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -29.993002 ], [ 29.003906, -29.993002 ], [ 29.003906, -29.688053 ], [ 29.179688, -29.688053 ], [ 29.179688, -29.382175 ], [ 29.355469, -29.382175 ], [ 29.355469, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -29.075375 ], [ 29.003906, -29.075375 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, -22.105999 ], [ 30.761719, -22.268764 ], [ 31.113281, -22.268764 ], [ 31.113281, -22.593726 ], [ 31.289062, -22.593726 ], [ 31.289062, -23.079732 ], [ 31.464844, -23.079732 ], [ 31.464844, -23.563987 ], [ 31.640625, -23.563987 ], [ 31.640625, -23.885838 ], [ 31.816406, -23.885838 ], [ 31.816406, -24.206890 ], [ 31.992188, -24.206890 ], [ 31.992188, -25.005973 ], [ 31.816406, -25.005973 ], [ 31.816406, -25.799891 ], [ 31.464844, -25.799891 ], [ 31.464844, -25.641526 ], [ 31.289062, -25.641526 ], [ 31.289062, -25.799891 ], [ 31.113281, -25.799891 ], [ 31.113281, -25.958045 ], [ 30.937500, -25.958045 ], [ 30.937500, -26.273714 ], [ 30.761719, -26.273714 ], [ 30.761719, -26.902477 ], [ 30.937500, -26.902477 ], [ 30.937500, -27.059126 ], [ 31.113281, -27.059126 ], [ 31.113281, -27.215556 ], [ 31.816406, -27.215556 ], [ 31.816406, -27.059126 ], [ 31.992188, -27.059126 ], [ 31.992188, -26.745610 ], [ 32.871094, -26.745610 ], [ 32.871094, -27.059126 ], [ 32.695312, -27.059126 ], [ 32.695312, -27.371767 ], [ 32.519531, -27.371767 ], [ 32.519531, -28.459033 ], [ 32.343750, -28.459033 ], [ 32.343750, -28.767659 ], [ 32.167969, -28.767659 ], [ 32.167969, -28.921631 ], [ 31.992188, -28.921631 ], [ 31.992188, -29.075375 ], [ 31.640625, -29.075375 ], [ 31.640625, -29.228890 ], [ 31.464844, -29.228890 ], [ 31.464844, -29.382175 ], [ 31.289062, -29.382175 ], [ 31.289062, -29.535230 ], [ 31.113281, -29.535230 ], [ 31.113281, -29.840644 ], [ 30.937500, -29.840644 ], [ 30.937500, -29.993002 ], [ 30.761719, -29.993002 ], [ 30.761719, -30.297018 ], [ 30.585938, -30.297018 ], [ 30.585938, -30.600094 ], [ 30.410156, -30.600094 ], [ 30.410156, -30.902225 ], [ 30.234375, -30.902225 ], [ 30.234375, -31.203405 ], [ 30.058594, -31.203405 ], [ 30.058594, -31.353637 ], [ 29.882812, -31.353637 ], [ 29.882812, -31.503629 ], [ 29.707031, -31.503629 ], [ 29.707031, -31.653381 ], [ 29.531250, -31.653381 ], [ 29.531250, -31.802893 ], [ 29.355469, -31.802893 ], [ 29.355469, -31.952162 ], [ 29.179688, -31.952162 ], [ 29.179688, -32.101190 ], [ 29.003906, -32.101190 ], [ 29.003906, -32.249974 ], [ 28.828125, -32.249974 ], [ 28.828125, -32.398516 ], [ 28.652344, -32.398516 ], [ 28.652344, -32.694866 ], [ 28.476562, -32.694866 ], [ 28.476562, -32.842674 ], [ 28.300781, -32.842674 ], [ 28.300781, -32.990236 ], [ 27.949219, -32.990236 ], [ 27.949219, -33.137551 ], [ 27.597656, -33.137551 ], [ 27.597656, -33.284620 ], [ 27.246094, -33.284620 ], [ 27.246094, -33.431441 ], [ 26.718750, -33.431441 ], [ 26.718750, -33.578015 ], [ 26.191406, -33.578015 ], [ 26.191406, -33.724340 ], [ 25.839844, -33.724340 ], [ 25.839844, -34.016242 ], [ 25.488281, -34.016242 ], [ 25.488281, -33.870416 ], [ 24.785156, -33.870416 ], [ 24.785156, -34.016242 ], [ 24.257812, -34.016242 ], [ 24.257812, -33.870416 ], [ 23.730469, -33.870416 ], [ 23.730469, -33.724340 ], [ 23.378906, -33.724340 ], [ 23.378906, -33.870416 ], [ 22.500000, -33.870416 ], [ 22.500000, -34.016242 ], [ 22.148438, -34.016242 ], [ 22.148438, -34.161818 ], [ 21.796875, -34.161818 ], [ 21.796875, -34.307144 ], [ 21.269531, -34.307144 ], [ 21.269531, -34.452218 ], [ 20.742188, -34.452218 ], [ 20.742188, -34.597042 ], [ 20.390625, -34.597042 ], [ 20.390625, -34.741612 ], [ 20.039062, -34.741612 ], [ 20.039062, -34.885931 ], [ 19.511719, -34.885931 ], [ 19.511719, -34.741612 ], [ 19.335938, -34.741612 ], [ 19.335938, -34.597042 ], [ 19.160156, -34.597042 ], [ 19.160156, -34.452218 ], [ 18.632812, -34.452218 ], [ 18.632812, -34.161818 ], [ 18.457031, -34.161818 ], [ 18.457031, -34.016242 ], [ 18.281250, -34.016242 ], [ 18.281250, -33.137551 ], [ 18.105469, -33.137551 ], [ 18.105469, -32.842674 ], [ 17.929688, -32.842674 ], [ 17.929688, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.653381 ], [ 18.105469, -31.653381 ], [ 18.105469, -31.353637 ], [ 17.929688, -31.353637 ], [ 17.929688, -31.203405 ], [ 17.753906, -31.203405 ], [ 17.753906, -30.902225 ], [ 17.578125, -30.902225 ], [ 17.578125, -30.600094 ], [ 17.402344, -30.600094 ], [ 17.402344, -30.297018 ], [ 17.226562, -30.297018 ], [ 17.226562, -29.993002 ], [ 17.050781, -29.993002 ], [ 17.050781, -29.688053 ], [ 16.875000, -29.688053 ], [ 16.875000, -29.382175 ], [ 16.699219, -29.382175 ], [ 16.699219, -29.075375 ], [ 16.523438, -29.075375 ], [ 16.523438, -28.767659 ], [ 16.347656, -28.767659 ], [ 16.347656, -28.613459 ], [ 16.523438, -28.613459 ], [ 16.523438, -28.459033 ], [ 16.699219, -28.459033 ], [ 16.699219, -28.304381 ], [ 17.226562, -28.304381 ], [ 17.226562, -28.613459 ], [ 17.402344, -28.613459 ], [ 17.402344, -28.921631 ], [ 17.929688, -28.921631 ], [ 17.929688, -29.075375 ], [ 18.808594, -29.075375 ], [ 18.808594, -28.921631 ], [ 19.160156, -28.921631 ], [ 19.160156, -28.767659 ], [ 19.511719, -28.767659 ], [ 19.511719, -28.613459 ], [ 19.863281, -28.613459 ], [ 19.863281, -24.846565 ], [ 20.214844, -24.846565 ], [ 20.214844, -25.005973 ], [ 20.390625, -25.005973 ], [ 20.390625, -25.324167 ], [ 20.566406, -25.324167 ], [ 20.566406, -25.641526 ], [ 20.742188, -25.641526 ], [ 20.742188, -26.745610 ], [ 20.917969, -26.745610 ], [ 20.917969, -26.902477 ], [ 21.445312, -26.902477 ], [ 21.445312, -26.745610 ], [ 21.796875, -26.745610 ], [ 21.796875, -26.588527 ], [ 21.972656, -26.588527 ], [ 21.972656, -26.431228 ], [ 22.148438, -26.431228 ], [ 22.148438, -26.273714 ], [ 22.324219, -26.273714 ], [ 22.324219, -26.115986 ], [ 22.500000, -26.115986 ], [ 22.500000, -25.958045 ], [ 22.675781, -25.958045 ], [ 22.675781, -25.641526 ], [ 22.851562, -25.641526 ], [ 22.851562, -25.482951 ], [ 23.203125, -25.482951 ], [ 23.203125, -25.324167 ], [ 23.730469, -25.324167 ], [ 23.730469, -25.482951 ], [ 24.082031, -25.482951 ], [ 24.082031, -25.641526 ], [ 25.488281, -25.641526 ], [ 25.488281, -25.482951 ], [ 25.664062, -25.482951 ], [ 25.664062, -25.324167 ], [ 25.839844, -25.324167 ], [ 25.839844, -25.005973 ], [ 26.015625, -25.005973 ], [ 26.015625, -24.686952 ], [ 26.542969, -24.686952 ], [ 26.542969, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -24.046464 ], [ 26.894531, -24.046464 ], [ 26.894531, -23.725012 ], [ 27.070312, -23.725012 ], [ 27.070312, -23.563987 ], [ 27.246094, -23.563987 ], [ 27.246094, -23.402765 ], [ 27.421875, -23.402765 ], [ 27.421875, -23.241346 ], [ 27.597656, -23.241346 ], [ 27.597656, -23.079732 ], [ 27.773438, -23.079732 ], [ 27.773438, -22.917923 ], [ 27.949219, -22.917923 ], [ 27.949219, -22.755921 ], [ 28.300781, -22.755921 ], [ 28.300781, -22.593726 ], [ 28.652344, -22.593726 ], [ 28.652344, -22.431340 ], [ 29.003906, -22.431340 ], [ 29.003906, -22.268764 ], [ 29.355469, -22.268764 ], [ 29.355469, -22.105999 ], [ 30.058594, -22.105999 ], [ 30.058594, -22.268764 ], [ 30.585938, -22.268764 ], [ 30.585938, -22.105999 ], [ 30.761719, -22.105999 ] ], [ [ 28.300781, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -29.075375 ], [ 27.773438, -29.075375 ], [ 27.773438, -29.228890 ], [ 27.597656, -29.228890 ], [ 27.597656, -29.382175 ], [ 27.421875, -29.382175 ], [ 27.421875, -29.535230 ], [ 27.246094, -29.535230 ], [ 27.246094, -29.840644 ], [ 27.070312, -29.840644 ], [ 27.070312, -29.993002 ], [ 27.246094, -29.993002 ], [ 27.246094, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -30.448674 ], [ 27.597656, -30.448674 ], [ 27.597656, -30.600094 ], [ 28.125000, -30.600094 ], [ 28.125000, -30.448674 ], [ 28.300781, -30.448674 ], [ 28.300781, -30.297018 ], [ 28.652344, -30.297018 ], [ 28.652344, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -29.993002 ], [ 29.003906, -29.993002 ], [ 29.003906, -29.688053 ], [ 29.179688, -29.688053 ], [ 29.179688, -29.382175 ], [ 29.355469, -29.382175 ], [ 29.355469, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -29.075375 ], [ 29.003906, -29.075375 ], [ 29.003906, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -28.767659 ], [ 28.300781, -28.767659 ], [ 28.300781, -28.921631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -26.115986 ], [ 31.992188, -26.115986 ], [ 31.992188, -27.059126 ], [ 31.816406, -27.059126 ], [ 31.816406, -27.215556 ], [ 31.113281, -27.215556 ], [ 31.113281, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -26.902477 ], [ 30.761719, -26.902477 ], [ 30.761719, -26.273714 ], [ 30.937500, -26.273714 ], [ 30.937500, -25.958045 ], [ 31.113281, -25.958045 ], [ 31.113281, -25.799891 ], [ 31.289062, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.464844, -25.641526 ], [ 31.464844, -25.799891 ], [ 31.816406, -25.799891 ], [ 31.816406, -26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.464844, -25.641526 ], [ 31.464844, -25.799891 ], [ 31.816406, -25.799891 ], [ 31.816406, -26.115986 ], [ 31.992188, -26.115986 ], [ 31.992188, -27.059126 ], [ 31.816406, -27.059126 ], [ 31.816406, -27.215556 ], [ 31.113281, -27.215556 ], [ 31.113281, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -26.902477 ], [ 30.761719, -26.902477 ], [ 30.761719, -26.273714 ], [ 30.937500, -26.273714 ], [ 30.937500, -25.958045 ], [ 31.113281, -25.958045 ], [ 31.113281, -25.799891 ], [ 31.289062, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.464844, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, -29.075375 ], [ 29.179688, -29.075375 ], [ 29.179688, -29.228890 ], [ 29.355469, -29.228890 ], [ 29.355469, -29.382175 ], [ 29.179688, -29.382175 ], [ 29.179688, -29.688053 ], [ 29.003906, -29.688053 ], [ 29.003906, -29.993002 ], [ 28.828125, -29.993002 ], [ 28.828125, -30.145127 ], [ 28.652344, -30.145127 ], [ 28.652344, -30.297018 ], [ 28.300781, -30.297018 ], [ 28.300781, -30.448674 ], [ 28.125000, -30.448674 ], [ 28.125000, -30.600094 ], [ 27.597656, -30.600094 ], [ 27.597656, -30.448674 ], [ 27.421875, -30.448674 ], [ 27.421875, -30.145127 ], [ 27.246094, -30.145127 ], [ 27.246094, -29.993002 ], [ 27.070312, -29.993002 ], [ 27.070312, -29.840644 ], [ 27.246094, -29.840644 ], [ 27.246094, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -29.382175 ], [ 27.597656, -29.382175 ], [ 27.597656, -29.228890 ], [ 27.773438, -29.228890 ], [ 27.773438, -29.075375 ], [ 28.125000, -29.075375 ], [ 28.125000, -28.921631 ], [ 28.300781, -28.921631 ], [ 28.300781, -28.767659 ], [ 28.828125, -28.767659 ], [ 28.828125, -28.921631 ], [ 29.003906, -28.921631 ], [ 29.003906, -29.075375 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.767659 ], [ 28.828125, -28.921631 ], [ 29.003906, -28.921631 ], [ 29.003906, -29.075375 ], [ 29.179688, -29.075375 ], [ 29.179688, -29.228890 ], [ 29.355469, -29.228890 ], [ 29.355469, -29.382175 ], [ 29.179688, -29.382175 ], [ 29.179688, -29.688053 ], [ 29.003906, -29.688053 ], [ 29.003906, -29.993002 ], [ 28.828125, -29.993002 ], [ 28.828125, -30.145127 ], [ 28.652344, -30.145127 ], [ 28.652344, -30.297018 ], [ 28.300781, -30.297018 ], [ 28.300781, -30.448674 ], [ 28.125000, -30.448674 ], [ 28.125000, -30.600094 ], [ 27.597656, -30.600094 ], [ 27.597656, -30.448674 ], [ 27.421875, -30.448674 ], [ 27.421875, -30.145127 ], [ 27.246094, -30.145127 ], [ 27.246094, -29.993002 ], [ 27.070312, -29.993002 ], [ 27.070312, -29.840644 ], [ 27.246094, -29.840644 ], [ 27.246094, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -29.382175 ], [ 27.597656, -29.382175 ], [ 27.597656, -29.228890 ], [ 27.773438, -29.228890 ], [ 27.773438, -29.075375 ], [ 28.125000, -29.075375 ], [ 28.125000, -28.921631 ], [ 28.300781, -28.921631 ], [ 28.300781, -28.767659 ], [ 28.828125, -28.767659 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -25.482951 ], [ 45.527344, -25.482951 ], [ 45.527344, -25.641526 ], [ 45.175781, -25.641526 ], [ 45.175781, -25.482951 ], [ 44.824219, -25.482951 ], [ 44.824219, -25.324167 ], [ 44.472656, -25.324167 ], [ 44.472656, -25.165173 ], [ 44.121094, -25.165173 ], [ 44.121094, -25.005973 ], [ 43.945312, -25.005973 ], [ 43.945312, -24.686952 ], [ 43.769531, -24.686952 ], [ 43.769531, -23.402765 ], [ 43.593750, -23.402765 ], [ 43.593750, -23.079732 ], [ 43.417969, -23.079732 ], [ 43.417969, -22.431340 ], [ 43.242188, -22.431340 ], [ 43.242188, -21.779905 ], [ 43.417969, -21.779905 ], [ 43.417969, -21.289374 ], [ 43.769531, -21.289374 ], [ 43.769531, -21.125498 ], [ 43.945312, -21.125498 ], [ 43.945312, -20.632784 ], [ 44.121094, -20.632784 ], [ 44.121094, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -19.808054 ], [ 44.472656, -19.808054 ], [ 44.472656, -19.311143 ], [ 44.296875, -19.311143 ], [ 44.296875, -18.646245 ], [ 44.121094, -18.646245 ], [ 44.121094, -17.978733 ], [ 43.945312, -17.978733 ], [ 43.945312, -17.308688 ], [ 44.121094, -17.308688 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.636192 ], [ 44.472656, -16.636192 ], [ 44.472656, -16.299051 ], [ 44.824219, -16.299051 ], [ 44.824219, -16.130262 ], [ 45.351562, -16.130262 ], [ 45.351562, -15.961329 ], [ 45.878906, -15.961329 ], [ 45.878906, -25.482951 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.961329 ], [ 45.878906, -25.482951 ], [ 45.527344, -25.482951 ], [ 45.527344, -25.641526 ], [ 45.175781, -25.641526 ], [ 45.175781, -25.482951 ], [ 44.824219, -25.482951 ], [ 44.824219, -25.324167 ], [ 44.472656, -25.324167 ], [ 44.472656, -25.165173 ], [ 44.121094, -25.165173 ], [ 44.121094, -25.005973 ], [ 43.945312, -25.005973 ], [ 43.945312, -24.686952 ], [ 43.769531, -24.686952 ], [ 43.769531, -23.402765 ], [ 43.593750, -23.402765 ], [ 43.593750, -23.079732 ], [ 43.417969, -23.079732 ], [ 43.417969, -22.431340 ], [ 43.242188, -22.431340 ], [ 43.242188, -21.779905 ], [ 43.417969, -21.779905 ], [ 43.417969, -21.289374 ], [ 43.769531, -21.289374 ], [ 43.769531, -21.125498 ], [ 43.945312, -21.125498 ], [ 43.945312, -20.632784 ], [ 44.121094, -20.632784 ], [ 44.121094, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -19.808054 ], [ 44.472656, -19.808054 ], [ 44.472656, -19.311143 ], [ 44.296875, -19.311143 ], [ 44.296875, -18.646245 ], [ 44.121094, -18.646245 ], [ 44.121094, -17.978733 ], [ 43.945312, -17.978733 ], [ 43.945312, -17.308688 ], [ 44.121094, -17.308688 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.636192 ], [ 44.472656, -16.636192 ], [ 44.472656, -16.299051 ], [ 44.824219, -16.299051 ], [ 44.824219, -16.130262 ], [ 45.351562, -16.130262 ], [ 45.351562, -15.961329 ], [ 45.878906, -15.961329 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.316406, 41.376809 ], [ 9.140625, 41.376809 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.640078 ], [ 9.316406, 41.640078 ], [ 9.316406, 41.376809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.316406, 41.640078 ], [ 9.316406, 41.376809 ], [ 9.140625, 41.376809 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.640078 ], [ 9.316406, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.636719, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.376809 ], [ 2.285156, 41.376809 ], [ 2.285156, 41.244772 ], [ 1.933594, 41.244772 ], [ 1.933594, 41.112469 ], [ 1.230469, 41.112469 ], [ 1.230469, 40.979898 ], [ 0.878906, 40.979898 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.175781, 40.178873 ], [ 0.175781, 40.044438 ], [ 0.000000, 40.044438 ], [ 0.000000, 39.774769 ], [ -0.175781, 39.774769 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ 0.175781, 38.685510 ], [ 0.175781, 38.548165 ], [ 0.000000, 38.548165 ], [ 0.000000, 38.410558 ], [ -0.351562, 38.410558 ], [ -0.351562, 38.272689 ], [ -0.527344, 38.272689 ], [ -0.527344, 37.857507 ], [ -0.703125, 37.857507 ], [ -0.703125, 37.579413 ], [ -0.878906, 37.579413 ], [ -0.878906, 41.640078 ], [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.376809 ], [ 2.285156, 41.376809 ], [ 2.285156, 41.244772 ], [ 1.933594, 41.244772 ], [ 1.933594, 41.112469 ], [ 1.230469, 41.112469 ], [ 1.230469, 40.979898 ], [ 0.878906, 40.979898 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.175781, 40.178873 ], [ 0.175781, 40.044438 ], [ 0.000000, 40.044438 ], [ 0.000000, 39.774769 ], [ -0.175781, 39.774769 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ 0.175781, 38.685510 ], [ 0.175781, 38.548165 ], [ 0.000000, 38.548165 ], [ 0.000000, 38.410558 ], [ -0.351562, 38.410558 ], [ -0.351562, 38.272689 ], [ -0.527344, 38.272689 ], [ -0.527344, 37.857507 ], [ -0.703125, 37.857507 ], [ -0.703125, 37.579413 ], [ -0.878906, 37.579413 ], [ -0.878906, 41.640078 ], [ 2.636719, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 22.105999 ], [ -0.351562, 22.105999 ], [ -0.351562, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.527344, 21.453069 ], [ 0.527344, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 21.125498 ], [ 1.054688, 21.125498 ], [ 1.054688, 20.961440 ], [ 1.230469, 20.961440 ], [ 1.230469, 20.797201 ], [ 1.582031, 20.797201 ], [ 1.582031, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.468189 ], [ 1.933594, 20.468189 ], [ 1.933594, 20.138470 ], [ 2.109375, 20.138470 ], [ 2.109375, 19.973349 ], [ 2.460938, 19.973349 ], [ 2.460938, 19.808054 ], [ 2.812500, 19.808054 ], [ 2.812500, 19.642588 ], [ 3.164062, 19.642588 ], [ 3.164062, 18.979026 ], [ 3.867188, 18.979026 ], [ 3.867188, 19.145168 ], [ 4.218750, 19.145168 ], [ 4.218750, 16.636192 ], [ 4.042969, 16.636192 ], [ 4.042969, 16.467695 ], [ 3.867188, 16.467695 ], [ 3.867188, 16.130262 ], [ 3.691406, 16.130262 ], [ 3.691406, 15.623037 ], [ 3.339844, 15.623037 ], [ 3.339844, 15.453680 ], [ 2.285156, 15.453680 ], [ 2.285156, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 15.114553 ], [ 1.230469, 15.114553 ], [ 1.230469, 14.944785 ], [ -0.878906, 14.944785 ], [ -0.878906, 22.268764 ], [ -0.527344, 22.268764 ], [ -0.527344, 22.105999 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 22.268764 ], [ -0.527344, 22.105999 ], [ -0.351562, 22.105999 ], [ -0.351562, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.527344, 21.453069 ], [ 0.527344, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 21.125498 ], [ 1.054688, 21.125498 ], [ 1.054688, 20.961440 ], [ 1.230469, 20.961440 ], [ 1.230469, 20.797201 ], [ 1.582031, 20.797201 ], [ 1.582031, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.468189 ], [ 1.933594, 20.468189 ], [ 1.933594, 20.138470 ], [ 2.109375, 20.138470 ], [ 2.109375, 19.973349 ], [ 2.460938, 19.973349 ], [ 2.460938, 19.808054 ], [ 2.812500, 19.808054 ], [ 2.812500, 19.642588 ], [ 3.164062, 19.642588 ], [ 3.164062, 18.979026 ], [ 3.867188, 18.979026 ], [ 3.867188, 19.145168 ], [ 4.218750, 19.145168 ], [ 4.218750, 16.636192 ], [ 4.042969, 16.636192 ], [ 4.042969, 16.467695 ], [ 3.867188, 16.467695 ], [ 3.867188, 16.130262 ], [ 3.691406, 16.130262 ], [ 3.691406, 15.623037 ], [ 3.339844, 15.623037 ], [ 3.339844, 15.453680 ], [ 2.285156, 15.453680 ], [ 2.285156, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 15.114553 ], [ 1.230469, 15.114553 ], [ 1.230469, 14.944785 ], [ -0.878906, 14.944785 ], [ -0.878906, 22.268764 ], [ -0.527344, 22.268764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.581921 ], [ 0.878906, 13.581921 ], [ 0.878906, 13.410994 ], [ 1.054688, 13.410994 ], [ 1.054688, 12.897489 ], [ 1.230469, 12.897489 ], [ 1.230469, 12.726084 ], [ 1.757812, 12.726084 ], [ 1.757812, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.695273 ], [ 1.757812, 11.695273 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 11.350797 ], [ 1.230469, 11.350797 ], [ 1.230469, 11.005904 ], [ -0.351562, 11.005904 ], [ -0.351562, 11.178402 ], [ -0.527344, 11.178402 ], [ -0.527344, 11.005904 ], [ -0.878906, 11.005904 ], [ -0.878906, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 13.752725 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.581921 ], [ 0.878906, 13.581921 ], [ 0.878906, 13.410994 ], [ 1.054688, 13.410994 ], [ 1.054688, 12.897489 ], [ 1.230469, 12.897489 ], [ 1.230469, 12.726084 ], [ 1.757812, 12.726084 ], [ 1.757812, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.695273 ], [ 1.757812, 11.695273 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 11.350797 ], [ 1.230469, 11.350797 ], [ 1.230469, 11.005904 ], [ -0.351562, 11.005904 ], [ -0.351562, 11.178402 ], [ -0.527344, 11.178402 ], [ -0.527344, 11.005904 ], [ -0.703125, 11.005904 ], [ -0.878906, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.141932 ], [ 0.351562, 10.141932 ], [ 0.351562, 9.102097 ], [ 0.527344, 9.102097 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 6.140555 ], [ 1.054688, 6.140555 ], [ 1.054688, 5.965754 ], [ 0.878906, 5.965754 ], [ 0.878906, 5.790897 ], [ 0.527344, 5.790897 ], [ 0.527344, 5.615986 ], [ 0.175781, 5.615986 ], [ 0.175781, 5.441022 ], [ -0.175781, 5.441022 ], [ -0.175781, 5.266008 ], [ -0.527344, 5.266008 ], [ -0.527344, 5.090944 ], [ -0.878906, 5.090944 ], [ -0.878906, 11.005904 ], [ -0.527344, 11.005904 ], [ -0.527344, 11.178402 ], [ -0.351562, 11.178402 ], [ -0.351562, 11.005904 ], [ 0.000000, 11.005904 ], [ 0.000000, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.351562, 11.178402 ], [ -0.351562, 11.005904 ], [ 0.000000, 11.005904 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.141932 ], [ 0.351562, 10.141932 ], [ 0.351562, 9.102097 ], [ 0.527344, 9.102097 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 6.140555 ], [ 1.054688, 6.140555 ], [ 1.054688, 5.965754 ], [ 0.878906, 5.965754 ], [ 0.878906, 5.790897 ], [ 0.527344, 5.790897 ], [ 0.527344, 5.615986 ], [ 0.175781, 5.615986 ], [ 0.175781, 5.441022 ], [ -0.175781, 5.441022 ], [ -0.175781, 5.266008 ], [ -0.527344, 5.266008 ], [ -0.527344, 5.090944 ], [ -0.878906, 5.090944 ], [ -0.878906, 11.005904 ], [ -0.527344, 11.005904 ], [ -0.527344, 11.178402 ], [ -0.351562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 37.996163 ], [ 15.292969, 37.996163 ], [ 15.292969, 37.579413 ], [ 15.117188, 37.579413 ], [ 15.117188, 37.300275 ], [ 15.292969, 37.300275 ], [ 15.292969, 36.879621 ], [ 15.117188, 36.879621 ], [ 15.117188, 36.597889 ], [ 14.941406, 36.597889 ], [ 14.941406, 36.738884 ], [ 14.589844, 36.738884 ], [ 14.589844, 36.879621 ], [ 14.414062, 36.879621 ], [ 14.414062, 37.020098 ], [ 14.062500, 37.020098 ], [ 14.062500, 37.160317 ], [ 13.535156, 37.160317 ], [ 13.535156, 37.300275 ], [ 13.007812, 37.300275 ], [ 13.007812, 37.439974 ], [ 12.656250, 37.439974 ], [ 12.656250, 37.579413 ], [ 12.480469, 37.579413 ], [ 12.480469, 37.857507 ], [ 12.656250, 37.857507 ], [ 12.656250, 38.134557 ], [ 13.007812, 38.134557 ], [ 13.007812, 37.996163 ], [ 14.414062, 37.996163 ], [ 14.414062, 38.134557 ], [ 15.292969, 38.134557 ], [ 15.292969, 38.272689 ], [ 15.468750, 38.272689 ], [ 15.468750, 37.996163 ] ] ], [ [ [ 17.226562, 40.313043 ], [ 17.226562, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 40.178873 ], [ 16.699219, 40.178873 ], [ 16.699219, 39.909736 ], [ 16.523438, 39.909736 ], [ 16.523438, 39.639538 ], [ 16.699219, 39.639538 ], [ 16.699219, 39.504041 ], [ 17.050781, 39.504041 ], [ 17.050781, 39.368279 ], [ 17.226562, 39.368279 ], [ 17.226562, 39.095963 ], [ 17.050781, 39.095963 ], [ 17.050781, 38.822591 ], [ 16.699219, 38.822591 ], [ 16.699219, 38.685510 ], [ 16.523438, 38.685510 ], [ 16.523438, 38.410558 ], [ 16.347656, 38.410558 ], [ 16.347656, 38.134557 ], [ 16.171875, 38.134557 ], [ 16.171875, 37.996163 ], [ 15.996094, 37.996163 ], [ 15.996094, 37.857507 ], [ 15.644531, 37.857507 ], [ 15.644531, 38.410558 ], [ 15.820312, 38.410558 ], [ 15.820312, 38.685510 ], [ 15.996094, 38.685510 ], [ 15.996094, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 38.959409 ], [ 15.996094, 38.959409 ], [ 15.996094, 39.232253 ], [ 15.820312, 39.232253 ], [ 15.820312, 39.368279 ], [ 15.644531, 39.368279 ], [ 15.644531, 39.774769 ], [ 15.468750, 39.774769 ], [ 15.468750, 40.044438 ], [ 15.117188, 40.044438 ], [ 15.117188, 40.178873 ], [ 14.941406, 40.178873 ], [ 14.941406, 40.313043 ], [ 14.765625, 40.313043 ], [ 14.765625, 40.580585 ], [ 14.414062, 40.580585 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 41.112469 ], [ 13.710938, 41.112469 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.376809 ], [ 12.304688, 41.376809 ], [ 12.304688, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 15.996094, 41.640078 ], [ 15.996094, 41.376809 ], [ 16.347656, 41.376809 ], [ 16.347656, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.753906, 40.713956 ], [ 17.753906, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 18.457031, 40.313043 ], [ 18.457031, 39.909736 ], [ 18.281250, 39.909736 ], [ 18.281250, 39.774769 ], [ 18.105469, 39.774769 ], [ 18.105469, 40.044438 ], [ 17.929688, 40.044438 ], [ 17.929688, 40.178873 ], [ 17.753906, 40.178873 ], [ 17.753906, 40.313043 ], [ 17.226562, 40.313043 ] ] ], [ [ [ 9.492188, 40.713956 ], [ 9.667969, 40.713956 ], [ 9.667969, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.774769 ], [ 9.667969, 39.774769 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.232253 ], [ 9.140625, 39.095963 ], [ 8.964844, 39.095963 ], [ 8.964844, 38.959409 ], [ 8.613281, 38.959409 ], [ 8.613281, 39.095963 ], [ 8.437500, 39.095963 ], [ 8.437500, 40.446947 ], [ 8.261719, 40.446947 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.261719, 40.979898 ], [ 8.261719, 40.847060 ], [ 8.964844, 40.847060 ], [ 8.964844, 41.112469 ], [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.713956 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.996163 ], [ 15.292969, 37.996163 ], [ 15.292969, 37.579413 ], [ 15.117188, 37.579413 ], [ 15.117188, 37.300275 ], [ 15.292969, 37.300275 ], [ 15.292969, 36.879621 ], [ 15.117188, 36.879621 ], [ 15.117188, 36.597889 ], [ 14.941406, 36.597889 ], [ 14.941406, 36.738884 ], [ 14.589844, 36.738884 ], [ 14.589844, 36.879621 ], [ 14.414062, 36.879621 ], [ 14.414062, 37.020098 ], [ 14.062500, 37.020098 ], [ 14.062500, 37.160317 ], [ 13.535156, 37.160317 ], [ 13.535156, 37.300275 ], [ 13.007812, 37.300275 ], [ 13.007812, 37.439974 ], [ 12.656250, 37.439974 ], [ 12.656250, 37.579413 ], [ 12.480469, 37.579413 ], [ 12.480469, 37.857507 ], [ 12.656250, 37.857507 ], [ 12.656250, 38.134557 ], [ 13.007812, 38.134557 ], [ 13.007812, 37.996163 ], [ 14.414062, 37.996163 ], [ 14.414062, 38.134557 ], [ 15.292969, 38.134557 ], [ 15.292969, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 15.996094, 41.640078 ], [ 15.996094, 41.376809 ], [ 16.347656, 41.376809 ], [ 16.347656, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.753906, 40.713956 ], [ 17.753906, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 18.457031, 40.313043 ], [ 18.457031, 39.909736 ], [ 18.281250, 39.909736 ], [ 18.281250, 39.774769 ], [ 18.105469, 39.774769 ], [ 18.105469, 40.044438 ], [ 17.929688, 40.044438 ], [ 17.929688, 40.178873 ], [ 17.753906, 40.178873 ], [ 17.753906, 40.313043 ], [ 17.226562, 40.313043 ], [ 17.226562, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 40.178873 ], [ 16.699219, 40.178873 ], [ 16.699219, 39.909736 ], [ 16.523438, 39.909736 ], [ 16.523438, 39.639538 ], [ 16.699219, 39.639538 ], [ 16.699219, 39.504041 ], [ 17.050781, 39.504041 ], [ 17.050781, 39.368279 ], [ 17.226562, 39.368279 ], [ 17.226562, 39.095963 ], [ 17.050781, 39.095963 ], [ 17.050781, 38.822591 ], [ 16.699219, 38.822591 ], [ 16.699219, 38.685510 ], [ 16.523438, 38.685510 ], [ 16.523438, 38.410558 ], [ 16.347656, 38.410558 ], [ 16.347656, 38.134557 ], [ 16.171875, 38.134557 ], [ 16.171875, 37.996163 ], [ 15.996094, 37.996163 ], [ 15.996094, 37.857507 ], [ 15.644531, 37.857507 ], [ 15.644531, 38.410558 ], [ 15.820312, 38.410558 ], [ 15.820312, 38.685510 ], [ 15.996094, 38.685510 ], [ 15.996094, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 38.959409 ], [ 15.996094, 38.959409 ], [ 15.996094, 39.232253 ], [ 15.820312, 39.232253 ], [ 15.820312, 39.368279 ], [ 15.644531, 39.368279 ], [ 15.644531, 39.774769 ], [ 15.468750, 39.774769 ], [ 15.468750, 40.044438 ], [ 15.117188, 40.044438 ], [ 15.117188, 40.178873 ], [ 14.941406, 40.178873 ], [ 14.941406, 40.313043 ], [ 14.765625, 40.313043 ], [ 14.765625, 40.580585 ], [ 14.414062, 40.580585 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 41.112469 ], [ 13.710938, 41.112469 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.376809 ], [ 12.304688, 41.376809 ], [ 12.304688, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 15.996094, 41.640078 ] ] ], [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.713956 ], [ 9.667969, 40.713956 ], [ 9.667969, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.774769 ], [ 9.667969, 39.774769 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.232253 ], [ 9.140625, 39.095963 ], [ 8.964844, 39.095963 ], [ 8.964844, 38.959409 ], [ 8.613281, 38.959409 ], [ 8.613281, 39.095963 ], [ 8.437500, 39.095963 ], [ 8.437500, 40.446947 ], [ 8.261719, 40.446947 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.261719, 40.979898 ], [ 8.261719, 40.847060 ], [ 8.964844, 40.847060 ], [ 8.964844, 41.112469 ], [ 9.316406, 41.112469 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 41.508577 ], [ 20.390625, 41.508577 ], [ 20.390625, 41.244772 ], [ 20.566406, 41.244772 ], [ 20.566406, 40.979898 ], [ 20.917969, 40.979898 ], [ 20.917969, 40.847060 ], [ 21.093750, 40.847060 ], [ 21.093750, 40.713956 ], [ 20.917969, 40.713956 ], [ 20.917969, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.178873 ], [ 20.566406, 40.178873 ], [ 20.566406, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 39.639538 ], [ 20.039062, 39.639538 ], [ 20.039062, 39.909736 ], [ 19.863281, 39.909736 ], [ 19.863281, 40.044438 ], [ 19.511719, 40.044438 ], [ 19.511719, 40.178873 ], [ 19.335938, 40.178873 ], [ 19.335938, 41.508577 ], [ 19.511719, 41.508577 ], [ 19.511719, 41.640078 ], [ 20.566406, 41.640078 ], [ 20.566406, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 41.640078 ], [ 20.566406, 41.508577 ], [ 20.390625, 41.508577 ], [ 20.390625, 41.244772 ], [ 20.566406, 41.244772 ], [ 20.566406, 40.979898 ], [ 20.917969, 40.979898 ], [ 20.917969, 40.847060 ], [ 21.093750, 40.847060 ], [ 21.093750, 40.713956 ], [ 20.917969, 40.713956 ], [ 20.917969, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.178873 ], [ 20.566406, 40.178873 ], [ 20.566406, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 39.639538 ], [ 20.039062, 39.639538 ], [ 20.039062, 39.909736 ], [ 19.863281, 39.909736 ], [ 19.863281, 40.044438 ], [ 19.511719, 40.044438 ], [ 19.511719, 40.178873 ], [ 19.335938, 40.178873 ], [ 19.335938, 41.508577 ], [ 19.511719, 41.508577 ], [ 19.511719, 41.640078 ], [ 20.566406, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.027344, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.508577 ], [ 20.566406, 41.508577 ], [ 20.566406, 41.640078 ], [ 22.851562, 41.640078 ], [ 22.851562, 41.508577 ], [ 23.027344, 41.508577 ], [ 23.027344, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 41.640078 ], [ 22.851562, 41.508577 ], [ 23.027344, 41.508577 ], [ 23.027344, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.508577 ], [ 20.566406, 41.508577 ], [ 20.566406, 41.640078 ], [ 22.851562, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 41.376809 ], [ 25.839844, 41.376809 ], [ 25.839844, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.082031, 41.508577 ], [ 24.082031, 41.376809 ], [ 23.027344, 41.376809 ], [ 23.027344, 41.508577 ], [ 22.851562, 41.508577 ], [ 22.851562, 41.640078 ], [ 26.191406, 41.640078 ], [ 26.191406, 41.376809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 41.640078 ], [ 26.191406, 41.376809 ], [ 25.839844, 41.376809 ], [ 25.839844, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.082031, 41.508577 ], [ 24.082031, 41.376809 ], [ 23.027344, 41.376809 ], [ 23.027344, 41.508577 ], [ 22.851562, 41.508577 ], [ 22.851562, 41.640078 ], [ 26.191406, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.472656, 41.244772 ], [ 44.472656, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.890625, 41.376809 ], [ 42.890625, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 45.878906, 41.640078 ], [ 45.878906, 41.112469 ] ] ], [ [ [ 41.660156, 41.508577 ], [ 41.660156, 41.640078 ], [ 42.187500, 41.640078 ], [ 42.187500, 41.508577 ], [ 41.660156, 41.508577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.472656, 41.244772 ], [ 44.472656, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.890625, 41.376809 ], [ 42.890625, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 45.878906, 41.640078 ] ] ], [ [ [ 42.187500, 41.640078 ], [ 42.187500, 41.508577 ], [ 41.660156, 41.508577 ], [ 41.660156, 41.640078 ], [ 42.187500, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 36.738884 ], [ 10.371094, 36.738884 ], [ 10.371094, 36.879621 ], [ 10.722656, 36.879621 ], [ 10.722656, 37.020098 ], [ 11.074219, 37.020098 ], [ 11.074219, 36.738884 ], [ 10.898438, 36.738884 ], [ 10.898438, 36.597889 ], [ 10.722656, 36.597889 ], [ 10.722656, 36.456636 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 35.317366 ], [ 10.722656, 35.317366 ], [ 10.722656, 34.741612 ], [ 10.546875, 34.741612 ], [ 10.546875, 34.597042 ], [ 10.371094, 34.597042 ], [ 10.371094, 34.307144 ], [ 10.195312, 34.307144 ], [ 10.195312, 34.016242 ], [ 10.371094, 34.016242 ], [ 10.371094, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.431441 ], [ 11.074219, 33.431441 ], [ 11.074219, 33.137551 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.249974 ], [ 11.074219, 32.249974 ], [ 11.074219, 32.101190 ], [ 10.898438, 32.101190 ], [ 10.898438, 31.952162 ], [ 10.722656, 31.952162 ], [ 10.722656, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.503629 ], [ 10.195312, 31.503629 ], [ 10.195312, 31.353637 ], [ 10.019531, 31.353637 ], [ 10.019531, 30.448674 ], [ 9.667969, 30.448674 ], [ 9.667969, 30.297018 ], [ 9.492188, 30.297018 ], [ 9.492188, 30.751278 ], [ 9.316406, 30.751278 ], [ 9.316406, 31.653381 ], [ 9.140625, 31.653381 ], [ 9.140625, 32.101190 ], [ 8.964844, 32.101190 ], [ 8.964844, 32.249974 ], [ 8.613281, 32.249974 ], [ 8.613281, 32.398516 ], [ 8.437500, 32.398516 ], [ 8.437500, 32.694866 ], [ 8.261719, 32.694866 ], [ 8.261719, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 32.990236 ], [ 7.734375, 32.990236 ], [ 7.734375, 33.137551 ], [ 7.558594, 33.137551 ], [ 7.558594, 34.161818 ], [ 7.734375, 34.161818 ], [ 7.734375, 34.307144 ], [ 7.910156, 34.307144 ], [ 7.910156, 34.452218 ], [ 8.085938, 34.452218 ], [ 8.085938, 34.741612 ], [ 8.261719, 34.741612 ], [ 8.261719, 35.173808 ], [ 8.437500, 35.173808 ], [ 8.437500, 35.889050 ], [ 8.261719, 35.889050 ], [ 8.261719, 36.597889 ], [ 8.437500, 36.597889 ], [ 8.437500, 36.879621 ], [ 8.789062, 36.879621 ], [ 8.789062, 37.020098 ], [ 9.140625, 37.020098 ], [ 9.140625, 37.160317 ], [ 9.492188, 37.160317 ], [ 9.492188, 37.300275 ], [ 9.667969, 37.300275 ], [ 9.667969, 37.160317 ], [ 10.195312, 37.160317 ], [ 10.195312, 36.738884 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.667969, 37.300275 ], [ 9.667969, 37.160317 ], [ 10.195312, 37.160317 ], [ 10.195312, 36.738884 ], [ 10.371094, 36.738884 ], [ 10.371094, 36.879621 ], [ 10.722656, 36.879621 ], [ 10.722656, 37.020098 ], [ 11.074219, 37.020098 ], [ 11.074219, 36.738884 ], [ 10.898438, 36.738884 ], [ 10.898438, 36.597889 ], [ 10.722656, 36.597889 ], [ 10.722656, 36.456636 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 35.317366 ], [ 10.722656, 35.317366 ], [ 10.722656, 34.741612 ], [ 10.546875, 34.741612 ], [ 10.546875, 34.597042 ], [ 10.371094, 34.597042 ], [ 10.371094, 34.307144 ], [ 10.195312, 34.307144 ], [ 10.195312, 34.016242 ], [ 10.371094, 34.016242 ], [ 10.371094, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.431441 ], [ 11.074219, 33.431441 ], [ 11.074219, 33.137551 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.249974 ], [ 11.074219, 32.249974 ], [ 11.074219, 32.101190 ], [ 10.898438, 32.101190 ], [ 10.898438, 31.952162 ], [ 10.722656, 31.952162 ], [ 10.722656, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.503629 ], [ 10.195312, 31.503629 ], [ 10.195312, 31.353637 ], [ 10.019531, 31.353637 ], [ 10.019531, 30.448674 ], [ 9.667969, 30.448674 ], [ 9.667969, 30.297018 ], [ 9.492188, 30.297018 ], [ 9.492188, 30.751278 ], [ 9.316406, 30.751278 ], [ 9.316406, 31.653381 ], [ 9.140625, 31.653381 ], [ 9.140625, 32.101190 ], [ 8.964844, 32.101190 ], [ 8.964844, 32.249974 ], [ 8.613281, 32.249974 ], [ 8.613281, 32.398516 ], [ 8.437500, 32.398516 ], [ 8.437500, 32.694866 ], [ 8.261719, 32.694866 ], [ 8.261719, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 32.990236 ], [ 7.734375, 32.990236 ], [ 7.734375, 33.137551 ], [ 7.558594, 33.137551 ], [ 7.558594, 34.161818 ], [ 7.734375, 34.161818 ], [ 7.734375, 34.307144 ], [ 7.910156, 34.307144 ], [ 7.910156, 34.452218 ], [ 8.085938, 34.452218 ], [ 8.085938, 34.741612 ], [ 8.261719, 34.741612 ], [ 8.261719, 35.173808 ], [ 8.437500, 35.173808 ], [ 8.437500, 35.889050 ], [ 8.261719, 35.889050 ], [ 8.261719, 36.597889 ], [ 8.437500, 36.597889 ], [ 8.437500, 36.879621 ], [ 8.789062, 36.879621 ], [ 8.789062, 37.020098 ], [ 9.140625, 37.020098 ], [ 9.140625, 37.160317 ], [ 9.492188, 37.160317 ], [ 9.492188, 37.300275 ], [ 9.667969, 37.300275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.558594, 36.879621 ], [ 8.437500, 36.879621 ], [ 8.437500, 36.597889 ], [ 8.261719, 36.597889 ], [ 8.261719, 35.889050 ], [ 8.437500, 35.889050 ], [ 8.437500, 35.173808 ], [ 8.261719, 35.173808 ], [ 8.261719, 34.741612 ], [ 8.085938, 34.741612 ], [ 8.085938, 34.452218 ], [ 7.910156, 34.452218 ], [ 7.910156, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.161818 ], [ 7.558594, 34.161818 ], [ 7.558594, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 32.990236 ], [ 8.085938, 32.990236 ], [ 8.085938, 32.842674 ], [ 8.261719, 32.842674 ], [ 8.261719, 32.694866 ], [ 8.437500, 32.694866 ], [ 8.437500, 32.398516 ], [ 8.613281, 32.398516 ], [ 8.613281, 32.249974 ], [ 8.964844, 32.249974 ], [ 8.964844, 32.101190 ], [ 9.140625, 32.101190 ], [ 9.140625, 31.653381 ], [ 9.316406, 31.653381 ], [ 9.316406, 30.751278 ], [ 9.492188, 30.751278 ], [ 9.492188, 29.993002 ], [ 9.667969, 29.993002 ], [ 9.667969, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 28.459033 ], [ 9.667969, 28.459033 ], [ 9.667969, 27.839076 ], [ 9.843750, 27.839076 ], [ 9.843750, 27.371767 ], [ 9.667969, 27.371767 ], [ 9.667969, 26.431228 ], [ 9.492188, 26.431228 ], [ 9.492188, 26.115986 ], [ 9.316406, 26.115986 ], [ 9.316406, 25.958045 ], [ 9.492188, 25.958045 ], [ 9.492188, 25.641526 ], [ 9.667969, 25.641526 ], [ 9.667969, 25.324167 ], [ 9.843750, 25.324167 ], [ 9.843750, 25.165173 ], [ 10.019531, 25.165173 ], [ 10.019531, 24.846565 ], [ 10.195312, 24.846565 ], [ 10.195312, 24.527135 ], [ 10.371094, 24.527135 ], [ 10.371094, 24.367114 ], [ 11.074219, 24.367114 ], [ 11.074219, 24.206890 ], [ 11.425781, 24.206890 ], [ 11.425781, 24.046464 ], [ 11.601562, 24.046464 ], [ 11.601562, 23.885838 ], [ 11.777344, 23.885838 ], [ 11.777344, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.241346 ], [ 11.601562, 23.241346 ], [ 11.601562, 23.079732 ], [ 11.250000, 23.079732 ], [ 11.250000, 22.917923 ], [ 10.898438, 22.917923 ], [ 10.898438, 22.755921 ], [ 10.722656, 22.755921 ], [ 10.722656, 22.593726 ], [ 10.371094, 22.593726 ], [ 10.371094, 22.431340 ], [ 10.019531, 22.431340 ], [ 10.019531, 22.268764 ], [ 9.843750, 22.268764 ], [ 9.843750, 22.105999 ], [ 9.492188, 22.105999 ], [ 9.492188, 21.943046 ], [ 9.140625, 21.943046 ], [ 9.140625, 21.779905 ], [ 8.789062, 21.779905 ], [ 8.789062, 21.616579 ], [ 8.613281, 21.616579 ], [ 8.613281, 21.453069 ], [ 8.261719, 21.453069 ], [ 8.261719, 21.289374 ], [ 8.085938, 21.289374 ], [ 8.085938, 21.125498 ], [ 7.910156, 21.125498 ], [ 7.910156, 20.961440 ], [ 7.558594, 20.961440 ], [ 7.558594, 20.797201 ], [ 7.382812, 20.797201 ], [ 7.382812, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.468189 ], [ 6.855469, 20.468189 ], [ 6.855469, 20.303418 ], [ 6.503906, 20.303418 ], [ 6.503906, 20.138470 ], [ 6.328125, 20.138470 ], [ 6.328125, 19.973349 ], [ 6.152344, 19.973349 ], [ 6.152344, 19.808054 ], [ 5.800781, 19.808054 ], [ 5.800781, 19.642588 ], [ 5.449219, 19.642588 ], [ 5.449219, 19.476950 ], [ 5.097656, 19.476950 ], [ 5.097656, 19.311143 ], [ 4.570312, 19.311143 ], [ 4.570312, 19.145168 ], [ 3.867188, 19.145168 ], [ 3.867188, 18.979026 ], [ 3.164062, 18.979026 ], [ 3.164062, 19.642588 ], [ 2.812500, 19.642588 ], [ 2.812500, 19.808054 ], [ 2.460938, 19.808054 ], [ 2.460938, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.138470 ], [ 1.933594, 20.138470 ], [ 1.933594, 20.468189 ], [ 1.757812, 20.468189 ], [ 1.757812, 20.632784 ], [ 1.582031, 20.632784 ], [ 1.582031, 20.797201 ], [ 1.230469, 20.797201 ], [ 1.230469, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.125498 ], [ 0.878906, 21.125498 ], [ 0.878906, 21.289374 ], [ 0.527344, 21.289374 ], [ 0.527344, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ -0.175781, 21.779905 ], [ -0.175781, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 22.268764 ], [ -0.878906, 22.268764 ], [ -0.878906, 35.746512 ], [ -0.351562, 35.746512 ], [ -0.351562, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.173357 ], [ 0.527344, 36.173357 ], [ 0.527344, 36.315125 ], [ 0.878906, 36.315125 ], [ 0.878906, 36.456636 ], [ 1.230469, 36.456636 ], [ 1.230469, 36.597889 ], [ 2.460938, 36.597889 ], [ 2.460938, 36.738884 ], [ 4.042969, 36.738884 ], [ 4.042969, 36.879621 ], [ 4.921875, 36.879621 ], [ 4.921875, 36.738884 ], [ 5.625000, 36.738884 ], [ 5.625000, 36.879621 ], [ 5.976562, 36.879621 ], [ 5.976562, 37.020098 ], [ 6.328125, 37.020098 ], [ 6.328125, 37.160317 ], [ 7.382812, 37.160317 ], [ 7.382812, 37.020098 ], [ 7.558594, 37.020098 ], [ 7.558594, 36.879621 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.382812, 37.160317 ], [ 7.382812, 37.020098 ], [ 7.558594, 37.020098 ], [ 7.558594, 36.879621 ], [ 8.437500, 36.879621 ], [ 8.437500, 36.597889 ], [ 8.261719, 36.597889 ], [ 8.261719, 35.889050 ], [ 8.437500, 35.889050 ], [ 8.437500, 35.173808 ], [ 8.261719, 35.173808 ], [ 8.261719, 34.741612 ], [ 8.085938, 34.741612 ], [ 8.085938, 34.452218 ], [ 7.910156, 34.452218 ], [ 7.910156, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.161818 ], [ 7.558594, 34.161818 ], [ 7.558594, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 32.990236 ], [ 8.085938, 32.990236 ], [ 8.085938, 32.842674 ], [ 8.261719, 32.842674 ], [ 8.261719, 32.694866 ], [ 8.437500, 32.694866 ], [ 8.437500, 32.398516 ], [ 8.613281, 32.398516 ], [ 8.613281, 32.249974 ], [ 8.964844, 32.249974 ], [ 8.964844, 32.101190 ], [ 9.140625, 32.101190 ], [ 9.140625, 31.653381 ], [ 9.316406, 31.653381 ], [ 9.316406, 30.751278 ], [ 9.492188, 30.751278 ], [ 9.492188, 29.993002 ], [ 9.667969, 29.993002 ], [ 9.667969, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 28.459033 ], [ 9.667969, 28.459033 ], [ 9.667969, 27.839076 ], [ 9.843750, 27.839076 ], [ 9.843750, 27.371767 ], [ 9.667969, 27.371767 ], [ 9.667969, 26.431228 ], [ 9.492188, 26.431228 ], [ 9.492188, 26.115986 ], [ 9.316406, 26.115986 ], [ 9.316406, 25.958045 ], [ 9.492188, 25.958045 ], [ 9.492188, 25.641526 ], [ 9.667969, 25.641526 ], [ 9.667969, 25.324167 ], [ 9.843750, 25.324167 ], [ 9.843750, 25.165173 ], [ 10.019531, 25.165173 ], [ 10.019531, 24.846565 ], [ 10.195312, 24.846565 ], [ 10.195312, 24.527135 ], [ 10.371094, 24.527135 ], [ 10.371094, 24.367114 ], [ 11.074219, 24.367114 ], [ 11.074219, 24.206890 ], [ 11.425781, 24.206890 ], [ 11.425781, 24.046464 ], [ 11.601562, 24.046464 ], [ 11.601562, 23.885838 ], [ 11.777344, 23.885838 ], [ 11.777344, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.241346 ], [ 11.601562, 23.241346 ], [ 11.601562, 23.079732 ], [ 11.250000, 23.079732 ], [ 11.250000, 22.917923 ], [ 10.898438, 22.917923 ], [ 10.898438, 22.755921 ], [ 10.722656, 22.755921 ], [ 10.722656, 22.593726 ], [ 10.371094, 22.593726 ], [ 10.371094, 22.431340 ], [ 10.019531, 22.431340 ], [ 10.019531, 22.268764 ], [ 9.843750, 22.268764 ], [ 9.843750, 22.105999 ], [ 9.492188, 22.105999 ], [ 9.492188, 21.943046 ], [ 9.140625, 21.943046 ], [ 9.140625, 21.779905 ], [ 8.789062, 21.779905 ], [ 8.789062, 21.616579 ], [ 8.613281, 21.616579 ], [ 8.613281, 21.453069 ], [ 8.261719, 21.453069 ], [ 8.261719, 21.289374 ], [ 8.085938, 21.289374 ], [ 8.085938, 21.125498 ], [ 7.910156, 21.125498 ], [ 7.910156, 20.961440 ], [ 7.558594, 20.961440 ], [ 7.558594, 20.797201 ], [ 7.382812, 20.797201 ], [ 7.382812, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.468189 ], [ 6.855469, 20.468189 ], [ 6.855469, 20.303418 ], [ 6.503906, 20.303418 ], [ 6.503906, 20.138470 ], [ 6.328125, 20.138470 ], [ 6.328125, 19.973349 ], [ 6.152344, 19.973349 ], [ 6.152344, 19.808054 ], [ 5.800781, 19.808054 ], [ 5.800781, 19.642588 ], [ 5.449219, 19.642588 ], [ 5.449219, 19.476950 ], [ 5.097656, 19.476950 ], [ 5.097656, 19.311143 ], [ 4.570312, 19.311143 ], [ 4.570312, 19.145168 ], [ 3.867188, 19.145168 ], [ 3.867188, 18.979026 ], [ 3.164062, 18.979026 ], [ 3.164062, 19.642588 ], [ 2.812500, 19.642588 ], [ 2.812500, 19.808054 ], [ 2.460938, 19.808054 ], [ 2.460938, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.138470 ], [ 1.933594, 20.138470 ], [ 1.933594, 20.468189 ], [ 1.757812, 20.468189 ], [ 1.757812, 20.632784 ], [ 1.582031, 20.632784 ], [ 1.582031, 20.797201 ], [ 1.230469, 20.797201 ], [ 1.230469, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.125498 ], [ 0.878906, 21.125498 ], [ 0.878906, 21.289374 ], [ 0.527344, 21.289374 ], [ 0.527344, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ -0.175781, 21.779905 ], [ -0.175781, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 22.268764 ], [ -0.878906, 22.268764 ], [ -0.878906, 35.746512 ], [ -0.351562, 35.746512 ], [ -0.351562, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.173357 ], [ 0.527344, 36.173357 ], [ 0.527344, 36.315125 ], [ 0.878906, 36.315125 ], [ 0.878906, 36.456636 ], [ 1.230469, 36.456636 ], [ 1.230469, 36.597889 ], [ 2.460938, 36.597889 ], [ 2.460938, 36.738884 ], [ 4.042969, 36.738884 ], [ 4.042969, 36.879621 ], [ 4.921875, 36.879621 ], [ 4.921875, 36.738884 ], [ 5.625000, 36.738884 ], [ 5.625000, 36.879621 ], [ 5.976562, 36.879621 ], [ 5.976562, 37.020098 ], [ 6.328125, 37.020098 ], [ 6.328125, 37.160317 ], [ 7.382812, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.503629 ], [ 15.644531, 31.503629 ], [ 15.644531, 31.353637 ], [ 15.996094, 31.353637 ], [ 15.996094, 31.203405 ], [ 16.875000, 31.203405 ], [ 16.875000, 31.052934 ], [ 17.226562, 31.052934 ], [ 17.226562, 30.902225 ], [ 17.753906, 30.902225 ], [ 17.753906, 30.751278 ], [ 18.105469, 30.751278 ], [ 18.105469, 30.600094 ], [ 18.457031, 30.600094 ], [ 18.457031, 30.448674 ], [ 18.808594, 30.448674 ], [ 18.808594, 30.297018 ], [ 19.335938, 30.297018 ], [ 19.335938, 30.448674 ], [ 19.511719, 30.448674 ], [ 19.511719, 30.600094 ], [ 19.687500, 30.600094 ], [ 19.687500, 30.751278 ], [ 19.863281, 30.751278 ], [ 19.863281, 30.902225 ], [ 20.039062, 30.902225 ], [ 20.039062, 31.353637 ], [ 19.863281, 31.353637 ], [ 19.863281, 31.802893 ], [ 20.039062, 31.802893 ], [ 20.039062, 32.101190 ], [ 20.214844, 32.101190 ], [ 20.214844, 32.249974 ], [ 20.390625, 32.249974 ], [ 20.390625, 32.398516 ], [ 20.742188, 32.398516 ], [ 20.742188, 32.546813 ], [ 20.917969, 32.546813 ], [ 20.917969, 32.694866 ], [ 21.445312, 32.694866 ], [ 21.445312, 32.842674 ], [ 22.148438, 32.842674 ], [ 22.148438, 32.694866 ], [ 22.851562, 32.694866 ], [ 22.851562, 32.546813 ], [ 23.027344, 32.546813 ], [ 23.027344, 32.249974 ], [ 23.554688, 32.249974 ], [ 23.554688, 32.101190 ], [ 23.730469, 32.101190 ], [ 23.730469, 31.952162 ], [ 24.960938, 31.952162 ], [ 24.960938, 31.653381 ], [ 25.136719, 31.653381 ], [ 25.136719, 31.353637 ], [ 24.960938, 31.353637 ], [ 24.960938, 31.052934 ], [ 24.785156, 31.052934 ], [ 24.785156, 30.751278 ], [ 24.960938, 30.751278 ], [ 24.960938, 30.297018 ], [ 24.785156, 30.297018 ], [ 24.785156, 29.535230 ], [ 24.960938, 29.535230 ], [ 24.960938, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.642588 ], [ 23.554688, 19.642588 ], [ 23.554688, 19.808054 ], [ 23.203125, 19.808054 ], [ 23.203125, 19.973349 ], [ 22.851562, 19.973349 ], [ 22.851562, 20.138470 ], [ 22.500000, 20.138470 ], [ 22.500000, 20.303418 ], [ 22.148438, 20.303418 ], [ 22.148438, 20.468189 ], [ 21.796875, 20.468189 ], [ 21.796875, 20.632784 ], [ 21.445312, 20.632784 ], [ 21.445312, 20.797201 ], [ 21.093750, 20.797201 ], [ 21.093750, 20.961440 ], [ 20.742188, 20.961440 ], [ 20.742188, 21.125498 ], [ 20.390625, 21.125498 ], [ 20.390625, 21.289374 ], [ 20.039062, 21.289374 ], [ 20.039062, 21.453069 ], [ 19.687500, 21.453069 ], [ 19.687500, 21.616579 ], [ 19.335938, 21.616579 ], [ 19.335938, 21.779905 ], [ 18.984375, 21.779905 ], [ 18.984375, 21.943046 ], [ 18.632812, 21.943046 ], [ 18.632812, 22.105999 ], [ 18.281250, 22.105999 ], [ 18.281250, 22.268764 ], [ 17.929688, 22.268764 ], [ 17.929688, 22.431340 ], [ 17.578125, 22.431340 ], [ 17.578125, 22.593726 ], [ 17.226562, 22.593726 ], [ 17.226562, 22.755921 ], [ 16.875000, 22.755921 ], [ 16.875000, 22.917923 ], [ 16.523438, 22.917923 ], [ 16.523438, 23.079732 ], [ 16.171875, 23.079732 ], [ 16.171875, 23.241346 ], [ 15.468750, 23.241346 ], [ 15.468750, 23.079732 ], [ 15.117188, 23.079732 ], [ 15.117188, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.755921 ], [ 14.589844, 22.755921 ], [ 14.589844, 22.593726 ], [ 14.238281, 22.593726 ], [ 14.238281, 22.431340 ], [ 13.886719, 22.431340 ], [ 13.886719, 22.755921 ], [ 13.710938, 22.755921 ], [ 13.710938, 22.917923 ], [ 13.535156, 22.917923 ], [ 13.535156, 23.079732 ], [ 13.007812, 23.079732 ], [ 13.007812, 23.241346 ], [ 12.304688, 23.241346 ], [ 12.304688, 23.402765 ], [ 11.953125, 23.402765 ], [ 11.953125, 23.563987 ], [ 11.777344, 23.563987 ], [ 11.777344, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 24.046464 ], [ 11.425781, 24.046464 ], [ 11.425781, 24.206890 ], [ 11.074219, 24.206890 ], [ 11.074219, 24.367114 ], [ 10.371094, 24.367114 ], [ 10.371094, 24.527135 ], [ 10.195312, 24.527135 ], [ 10.195312, 24.846565 ], [ 10.019531, 24.846565 ], [ 10.019531, 25.165173 ], [ 9.843750, 25.165173 ], [ 9.843750, 25.324167 ], [ 9.667969, 25.324167 ], [ 9.667969, 25.641526 ], [ 9.492188, 25.641526 ], [ 9.492188, 25.958045 ], [ 9.316406, 25.958045 ], [ 9.316406, 26.115986 ], [ 9.492188, 26.115986 ], [ 9.492188, 26.431228 ], [ 9.667969, 26.431228 ], [ 9.667969, 27.371767 ], [ 9.843750, 27.371767 ], [ 9.843750, 27.839076 ], [ 9.667969, 27.839076 ], [ 9.667969, 28.459033 ], [ 9.843750, 28.459033 ], [ 9.843750, 29.535230 ], [ 9.667969, 29.535230 ], [ 9.667969, 29.993002 ], [ 9.492188, 29.993002 ], [ 9.492188, 30.297018 ], [ 9.667969, 30.297018 ], [ 9.667969, 30.448674 ], [ 10.019531, 30.448674 ], [ 10.019531, 31.353637 ], [ 10.195312, 31.353637 ], [ 10.195312, 31.503629 ], [ 10.546875, 31.503629 ], [ 10.546875, 31.653381 ], [ 10.722656, 31.653381 ], [ 10.722656, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 32.101190 ], [ 11.074219, 32.101190 ], [ 11.074219, 32.249974 ], [ 11.425781, 32.249974 ], [ 11.425781, 33.137551 ], [ 11.601562, 33.137551 ], [ 11.601562, 32.990236 ], [ 12.304688, 32.990236 ], [ 12.304688, 32.842674 ], [ 13.359375, 32.842674 ], [ 13.359375, 32.694866 ], [ 14.062500, 32.694866 ], [ 14.062500, 32.546813 ], [ 14.414062, 32.546813 ], [ 14.414062, 32.398516 ], [ 14.941406, 32.398516 ], [ 14.941406, 32.249974 ], [ 15.292969, 32.249974 ], [ 15.292969, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.601562, 33.137551 ], [ 11.601562, 32.990236 ], [ 12.304688, 32.990236 ], [ 12.304688, 32.842674 ], [ 13.359375, 32.842674 ], [ 13.359375, 32.694866 ], [ 14.062500, 32.694866 ], [ 14.062500, 32.546813 ], [ 14.414062, 32.546813 ], [ 14.414062, 32.398516 ], [ 14.941406, 32.398516 ], [ 14.941406, 32.249974 ], [ 15.292969, 32.249974 ], [ 15.292969, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.503629 ], [ 15.644531, 31.503629 ], [ 15.644531, 31.353637 ], [ 15.996094, 31.353637 ], [ 15.996094, 31.203405 ], [ 16.875000, 31.203405 ], [ 16.875000, 31.052934 ], [ 17.226562, 31.052934 ], [ 17.226562, 30.902225 ], [ 17.753906, 30.902225 ], [ 17.753906, 30.751278 ], [ 18.105469, 30.751278 ], [ 18.105469, 30.600094 ], [ 18.457031, 30.600094 ], [ 18.457031, 30.448674 ], [ 18.808594, 30.448674 ], [ 18.808594, 30.297018 ], [ 19.335938, 30.297018 ], [ 19.335938, 30.448674 ], [ 19.511719, 30.448674 ], [ 19.511719, 30.600094 ], [ 19.687500, 30.600094 ], [ 19.687500, 30.751278 ], [ 19.863281, 30.751278 ], [ 19.863281, 30.902225 ], [ 20.039062, 30.902225 ], [ 20.039062, 31.353637 ], [ 19.863281, 31.353637 ], [ 19.863281, 31.802893 ], [ 20.039062, 31.802893 ], [ 20.039062, 32.101190 ], [ 20.214844, 32.101190 ], [ 20.214844, 32.249974 ], [ 20.390625, 32.249974 ], [ 20.390625, 32.398516 ], [ 20.742188, 32.398516 ], [ 20.742188, 32.546813 ], [ 20.917969, 32.546813 ], [ 20.917969, 32.694866 ], [ 21.445312, 32.694866 ], [ 21.445312, 32.842674 ], [ 22.148438, 32.842674 ], [ 22.148438, 32.694866 ], [ 22.851562, 32.694866 ], [ 22.851562, 32.546813 ], [ 23.027344, 32.546813 ], [ 23.027344, 32.249974 ], [ 23.554688, 32.249974 ], [ 23.554688, 32.101190 ], [ 23.730469, 32.101190 ], [ 23.730469, 31.952162 ], [ 24.960938, 31.952162 ], [ 24.960938, 31.653381 ], [ 25.136719, 31.653381 ], [ 25.136719, 31.353637 ], [ 24.960938, 31.353637 ], [ 24.960938, 31.052934 ], [ 24.785156, 31.052934 ], [ 24.785156, 30.751278 ], [ 24.960938, 30.751278 ], [ 24.960938, 30.297018 ], [ 24.785156, 30.297018 ], [ 24.785156, 29.535230 ], [ 24.960938, 29.535230 ], [ 24.960938, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.642588 ], [ 23.554688, 19.642588 ], [ 23.554688, 19.808054 ], [ 23.203125, 19.808054 ], [ 23.203125, 19.973349 ], [ 22.851562, 19.973349 ], [ 22.851562, 20.138470 ], [ 22.500000, 20.138470 ], [ 22.500000, 20.303418 ], [ 22.148438, 20.303418 ], [ 22.148438, 20.468189 ], [ 21.796875, 20.468189 ], [ 21.796875, 20.632784 ], [ 21.445312, 20.632784 ], [ 21.445312, 20.797201 ], [ 21.093750, 20.797201 ], [ 21.093750, 20.961440 ], [ 20.742188, 20.961440 ], [ 20.742188, 21.125498 ], [ 20.390625, 21.125498 ], [ 20.390625, 21.289374 ], [ 20.039062, 21.289374 ], [ 20.039062, 21.453069 ], [ 19.687500, 21.453069 ], [ 19.687500, 21.616579 ], [ 19.335938, 21.616579 ], [ 19.335938, 21.779905 ], [ 18.984375, 21.779905 ], [ 18.984375, 21.943046 ], [ 18.632812, 21.943046 ], [ 18.632812, 22.105999 ], [ 18.281250, 22.105999 ], [ 18.281250, 22.268764 ], [ 17.929688, 22.268764 ], [ 17.929688, 22.431340 ], [ 17.578125, 22.431340 ], [ 17.578125, 22.593726 ], [ 17.226562, 22.593726 ], [ 17.226562, 22.755921 ], [ 16.875000, 22.755921 ], [ 16.875000, 22.917923 ], [ 16.523438, 22.917923 ], [ 16.523438, 23.079732 ], [ 16.171875, 23.079732 ], [ 16.171875, 23.241346 ], [ 15.468750, 23.241346 ], [ 15.468750, 23.079732 ], [ 15.117188, 23.079732 ], [ 15.117188, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.755921 ], [ 14.589844, 22.755921 ], [ 14.589844, 22.593726 ], [ 14.238281, 22.593726 ], [ 14.238281, 22.431340 ], [ 13.886719, 22.431340 ], [ 13.886719, 22.755921 ], [ 13.710938, 22.755921 ], [ 13.710938, 22.917923 ], [ 13.535156, 22.917923 ], [ 13.535156, 23.079732 ], [ 13.007812, 23.079732 ], [ 13.007812, 23.241346 ], [ 12.304688, 23.241346 ], [ 12.304688, 23.402765 ], [ 11.953125, 23.402765 ], [ 11.953125, 23.563987 ], [ 11.777344, 23.563987 ], [ 11.777344, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 24.046464 ], [ 11.425781, 24.046464 ], [ 11.425781, 24.206890 ], [ 11.074219, 24.206890 ], [ 11.074219, 24.367114 ], [ 10.371094, 24.367114 ], [ 10.371094, 24.527135 ], [ 10.195312, 24.527135 ], [ 10.195312, 24.846565 ], [ 10.019531, 24.846565 ], [ 10.019531, 25.165173 ], [ 9.843750, 25.165173 ], [ 9.843750, 25.324167 ], [ 9.667969, 25.324167 ], [ 9.667969, 25.641526 ], [ 9.492188, 25.641526 ], [ 9.492188, 25.958045 ], [ 9.316406, 25.958045 ], [ 9.316406, 26.115986 ], [ 9.492188, 26.115986 ], [ 9.492188, 26.431228 ], [ 9.667969, 26.431228 ], [ 9.667969, 27.371767 ], [ 9.843750, 27.371767 ], [ 9.843750, 27.839076 ], [ 9.667969, 27.839076 ], [ 9.667969, 28.459033 ], [ 9.843750, 28.459033 ], [ 9.843750, 29.535230 ], [ 9.667969, 29.535230 ], [ 9.667969, 29.993002 ], [ 9.492188, 29.993002 ], [ 9.492188, 30.297018 ], [ 9.667969, 30.297018 ], [ 9.667969, 30.448674 ], [ 10.019531, 30.448674 ], [ 10.019531, 31.353637 ], [ 10.195312, 31.353637 ], [ 10.195312, 31.503629 ], [ 10.546875, 31.503629 ], [ 10.546875, 31.653381 ], [ 10.722656, 31.653381 ], [ 10.722656, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 32.101190 ], [ 11.074219, 32.101190 ], [ 11.074219, 32.249974 ], [ 11.425781, 32.249974 ], [ 11.425781, 33.137551 ], [ 11.601562, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 23.079732 ], [ 13.535156, 23.079732 ], [ 13.535156, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.755921 ], [ 13.886719, 22.755921 ], [ 13.886719, 22.431340 ], [ 14.238281, 22.431340 ], [ 14.238281, 22.593726 ], [ 14.589844, 22.593726 ], [ 14.589844, 22.755921 ], [ 14.765625, 22.755921 ], [ 14.765625, 22.431340 ], [ 14.941406, 22.431340 ], [ 14.941406, 21.616579 ], [ 15.117188, 21.616579 ], [ 15.117188, 21.125498 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.632784 ], [ 15.644531, 20.632784 ], [ 15.644531, 20.468189 ], [ 15.820312, 20.468189 ], [ 15.820312, 20.138470 ], [ 15.644531, 20.138470 ], [ 15.644531, 19.476950 ], [ 15.468750, 19.476950 ], [ 15.468750, 18.479609 ], [ 15.292969, 18.479609 ], [ 15.292969, 16.467695 ], [ 15.117188, 16.467695 ], [ 15.117188, 16.299051 ], [ 14.765625, 16.299051 ], [ 14.765625, 16.130262 ], [ 14.589844, 16.130262 ], [ 14.589844, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 15.792254 ], [ 14.062500, 15.792254 ], [ 14.062500, 15.623037 ], [ 13.886719, 15.623037 ], [ 13.886719, 15.284185 ], [ 13.710938, 15.284185 ], [ 13.710938, 14.604847 ], [ 13.535156, 14.604847 ], [ 13.535156, 14.264383 ], [ 13.710938, 14.264383 ], [ 13.710938, 13.923404 ], [ 13.886719, 13.923404 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.589844, 13.068777 ], [ 14.414062, 13.068777 ], [ 14.414062, 12.726084 ], [ 14.238281, 12.726084 ], [ 14.238281, 12.382928 ], [ 13.886719, 12.382928 ], [ 13.886719, 12.726084 ], [ 13.710938, 12.726084 ], [ 13.710938, 13.068777 ], [ 13.535156, 13.068777 ], [ 13.535156, 13.410994 ], [ 13.359375, 13.410994 ], [ 13.359375, 13.581921 ], [ 13.007812, 13.581921 ], [ 13.007812, 13.410994 ], [ 12.832031, 13.410994 ], [ 12.832031, 13.239945 ], [ 12.480469, 13.239945 ], [ 12.480469, 13.068777 ], [ 11.953125, 13.068777 ], [ 11.953125, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 13.410994 ], [ 11.074219, 13.410994 ], [ 11.074219, 13.239945 ], [ 10.195312, 13.239945 ], [ 10.195312, 13.068777 ], [ 9.843750, 13.068777 ], [ 9.843750, 12.897489 ], [ 8.613281, 12.897489 ], [ 8.613281, 13.068777 ], [ 8.261719, 13.068777 ], [ 8.261719, 13.239945 ], [ 7.910156, 13.239945 ], [ 7.910156, 13.410994 ], [ 7.734375, 13.410994 ], [ 7.734375, 13.239945 ], [ 7.558594, 13.239945 ], [ 7.558594, 13.068777 ], [ 6.679688, 13.068777 ], [ 6.679688, 13.239945 ], [ 6.503906, 13.239945 ], [ 6.503906, 13.410994 ], [ 6.152344, 13.410994 ], [ 6.152344, 13.581921 ], [ 5.800781, 13.581921 ], [ 5.800781, 13.752725 ], [ 5.449219, 13.752725 ], [ 5.449219, 13.923404 ], [ 5.097656, 13.923404 ], [ 5.097656, 13.752725 ], [ 4.394531, 13.752725 ], [ 4.394531, 13.581921 ], [ 4.042969, 13.581921 ], [ 4.042969, 12.726084 ], [ 3.867188, 12.726084 ], [ 3.867188, 12.554564 ], [ 3.691406, 12.554564 ], [ 3.691406, 11.695273 ], [ 3.515625, 11.695273 ], [ 3.515625, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 12.039321 ], [ 2.812500, 12.039321 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 12.039321 ], [ 2.285156, 12.039321 ], [ 2.285156, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 1.757812, 12.554564 ], [ 1.757812, 12.726084 ], [ 1.230469, 12.726084 ], [ 1.230469, 12.897489 ], [ 1.054688, 12.897489 ], [ 1.054688, 13.410994 ], [ 0.878906, 13.410994 ], [ 0.878906, 13.581921 ], [ 0.527344, 13.581921 ], [ 0.527344, 13.752725 ], [ 0.351562, 13.752725 ], [ 0.351562, 14.944785 ], [ 1.230469, 14.944785 ], [ 1.230469, 15.114553 ], [ 1.406250, 15.114553 ], [ 1.406250, 15.284185 ], [ 2.285156, 15.284185 ], [ 2.285156, 15.453680 ], [ 3.339844, 15.453680 ], [ 3.339844, 15.623037 ], [ 3.691406, 15.623037 ], [ 3.691406, 16.130262 ], [ 3.867188, 16.130262 ], [ 3.867188, 16.467695 ], [ 4.042969, 16.467695 ], [ 4.042969, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.145168 ], [ 4.570312, 19.145168 ], [ 4.570312, 19.311143 ], [ 5.097656, 19.311143 ], [ 5.097656, 19.476950 ], [ 5.449219, 19.476950 ], [ 5.449219, 19.642588 ], [ 5.800781, 19.642588 ], [ 5.800781, 19.808054 ], [ 6.152344, 19.808054 ], [ 6.152344, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 20.138470 ], [ 6.503906, 20.138470 ], [ 6.503906, 20.303418 ], [ 6.855469, 20.303418 ], [ 6.855469, 20.468189 ], [ 7.031250, 20.468189 ], [ 7.031250, 20.632784 ], [ 7.382812, 20.632784 ], [ 7.382812, 20.797201 ], [ 7.558594, 20.797201 ], [ 7.558594, 20.961440 ], [ 7.910156, 20.961440 ], [ 7.910156, 21.125498 ], [ 8.085938, 21.125498 ], [ 8.085938, 21.289374 ], [ 8.261719, 21.289374 ], [ 8.261719, 21.453069 ], [ 8.613281, 21.453069 ], [ 8.613281, 21.616579 ], [ 8.789062, 21.616579 ], [ 8.789062, 21.779905 ], [ 9.140625, 21.779905 ], [ 9.140625, 21.943046 ], [ 9.492188, 21.943046 ], [ 9.492188, 22.105999 ], [ 9.843750, 22.105999 ], [ 9.843750, 22.268764 ], [ 10.019531, 22.268764 ], [ 10.019531, 22.431340 ], [ 10.371094, 22.431340 ], [ 10.371094, 22.593726 ], [ 10.722656, 22.593726 ], [ 10.722656, 22.755921 ], [ 10.898438, 22.755921 ], [ 10.898438, 22.917923 ], [ 11.250000, 22.917923 ], [ 11.250000, 23.079732 ], [ 11.601562, 23.079732 ], [ 11.601562, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.402765 ], [ 12.304688, 23.402765 ], [ 12.304688, 23.241346 ], [ 13.007812, 23.241346 ], [ 13.007812, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.304688, 23.402765 ], [ 12.304688, 23.241346 ], [ 13.007812, 23.241346 ], [ 13.007812, 23.079732 ], [ 13.535156, 23.079732 ], [ 13.535156, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.755921 ], [ 13.886719, 22.755921 ], [ 13.886719, 22.431340 ], [ 14.238281, 22.431340 ], [ 14.238281, 22.593726 ], [ 14.589844, 22.593726 ], [ 14.589844, 22.755921 ], [ 14.765625, 22.755921 ], [ 14.765625, 22.431340 ], [ 14.941406, 22.431340 ], [ 14.941406, 21.616579 ], [ 15.117188, 21.616579 ], [ 15.117188, 21.125498 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.632784 ], [ 15.644531, 20.632784 ], [ 15.644531, 20.468189 ], [ 15.820312, 20.468189 ], [ 15.820312, 20.138470 ], [ 15.644531, 20.138470 ], [ 15.644531, 19.476950 ], [ 15.468750, 19.476950 ], [ 15.468750, 18.479609 ], [ 15.292969, 18.479609 ], [ 15.292969, 16.467695 ], [ 15.117188, 16.467695 ], [ 15.117188, 16.299051 ], [ 14.765625, 16.299051 ], [ 14.765625, 16.130262 ], [ 14.589844, 16.130262 ], [ 14.589844, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 15.792254 ], [ 14.062500, 15.792254 ], [ 14.062500, 15.623037 ], [ 13.886719, 15.623037 ], [ 13.886719, 15.284185 ], [ 13.710938, 15.284185 ], [ 13.710938, 14.604847 ], [ 13.535156, 14.604847 ], [ 13.535156, 14.264383 ], [ 13.710938, 14.264383 ], [ 13.710938, 13.923404 ], [ 13.886719, 13.923404 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.589844, 13.068777 ], [ 14.414062, 13.068777 ], [ 14.414062, 12.726084 ], [ 14.238281, 12.726084 ], [ 14.238281, 12.382928 ], [ 13.886719, 12.382928 ], [ 13.886719, 12.726084 ], [ 13.710938, 12.726084 ], [ 13.710938, 13.068777 ], [ 13.535156, 13.068777 ], [ 13.535156, 13.410994 ], [ 13.359375, 13.410994 ], [ 13.359375, 13.581921 ], [ 13.007812, 13.581921 ], [ 13.007812, 13.410994 ], [ 12.832031, 13.410994 ], [ 12.832031, 13.239945 ], [ 12.480469, 13.239945 ], [ 12.480469, 13.068777 ], [ 11.953125, 13.068777 ], [ 11.953125, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 13.410994 ], [ 11.074219, 13.410994 ], [ 11.074219, 13.239945 ], [ 10.195312, 13.239945 ], [ 10.195312, 13.068777 ], [ 9.843750, 13.068777 ], [ 9.843750, 12.897489 ], [ 8.613281, 12.897489 ], [ 8.613281, 13.068777 ], [ 8.261719, 13.068777 ], [ 8.261719, 13.239945 ], [ 7.910156, 13.239945 ], [ 7.910156, 13.410994 ], [ 7.734375, 13.410994 ], [ 7.734375, 13.239945 ], [ 7.558594, 13.239945 ], [ 7.558594, 13.068777 ], [ 6.679688, 13.068777 ], [ 6.679688, 13.239945 ], [ 6.503906, 13.239945 ], [ 6.503906, 13.410994 ], [ 6.152344, 13.410994 ], [ 6.152344, 13.581921 ], [ 5.800781, 13.581921 ], [ 5.800781, 13.752725 ], [ 5.449219, 13.752725 ], [ 5.449219, 13.923404 ], [ 5.097656, 13.923404 ], [ 5.097656, 13.752725 ], [ 4.394531, 13.752725 ], [ 4.394531, 13.581921 ], [ 4.042969, 13.581921 ], [ 4.042969, 12.726084 ], [ 3.867188, 12.726084 ], [ 3.867188, 12.554564 ], [ 3.691406, 12.554564 ], [ 3.691406, 11.695273 ], [ 3.515625, 11.695273 ], [ 3.515625, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 12.039321 ], [ 2.812500, 12.039321 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 12.039321 ], [ 2.285156, 12.039321 ], [ 2.285156, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 1.757812, 12.554564 ], [ 1.757812, 12.726084 ], [ 1.230469, 12.726084 ], [ 1.230469, 12.897489 ], [ 1.054688, 12.897489 ], [ 1.054688, 13.410994 ], [ 0.878906, 13.410994 ], [ 0.878906, 13.581921 ], [ 0.527344, 13.581921 ], [ 0.527344, 13.752725 ], [ 0.351562, 13.752725 ], [ 0.351562, 14.944785 ], [ 1.230469, 14.944785 ], [ 1.230469, 15.114553 ], [ 1.406250, 15.114553 ], [ 1.406250, 15.284185 ], [ 2.285156, 15.284185 ], [ 2.285156, 15.453680 ], [ 3.339844, 15.453680 ], [ 3.339844, 15.623037 ], [ 3.691406, 15.623037 ], [ 3.691406, 16.130262 ], [ 3.867188, 16.130262 ], [ 3.867188, 16.467695 ], [ 4.042969, 16.467695 ], [ 4.042969, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.145168 ], [ 4.570312, 19.145168 ], [ 4.570312, 19.311143 ], [ 5.097656, 19.311143 ], [ 5.097656, 19.476950 ], [ 5.449219, 19.476950 ], [ 5.449219, 19.642588 ], [ 5.800781, 19.642588 ], [ 5.800781, 19.808054 ], [ 6.152344, 19.808054 ], [ 6.152344, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 20.138470 ], [ 6.503906, 20.138470 ], [ 6.503906, 20.303418 ], [ 6.855469, 20.303418 ], [ 6.855469, 20.468189 ], [ 7.031250, 20.468189 ], [ 7.031250, 20.632784 ], [ 7.382812, 20.632784 ], [ 7.382812, 20.797201 ], [ 7.558594, 20.797201 ], [ 7.558594, 20.961440 ], [ 7.910156, 20.961440 ], [ 7.910156, 21.125498 ], [ 8.085938, 21.125498 ], [ 8.085938, 21.289374 ], [ 8.261719, 21.289374 ], [ 8.261719, 21.453069 ], [ 8.613281, 21.453069 ], [ 8.613281, 21.616579 ], [ 8.789062, 21.616579 ], [ 8.789062, 21.779905 ], [ 9.140625, 21.779905 ], [ 9.140625, 21.943046 ], [ 9.492188, 21.943046 ], [ 9.492188, 22.105999 ], [ 9.843750, 22.105999 ], [ 9.843750, 22.268764 ], [ 10.019531, 22.268764 ], [ 10.019531, 22.431340 ], [ 10.371094, 22.431340 ], [ 10.371094, 22.593726 ], [ 10.722656, 22.593726 ], [ 10.722656, 22.755921 ], [ 10.898438, 22.755921 ], [ 10.898438, 22.917923 ], [ 11.250000, 22.917923 ], [ 11.250000, 23.079732 ], [ 11.601562, 23.079732 ], [ 11.601562, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.402765 ], [ 12.304688, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.314919 ], [ 0.878906, 10.314919 ], [ 0.878906, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.968851 ], [ 1.230469, 9.968851 ], [ 1.230469, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.582031, 9.102097 ], [ 1.582031, 6.664608 ], [ 1.757812, 6.664608 ], [ 1.757812, 6.315299 ], [ 1.933594, 6.315299 ], [ 1.933594, 6.140555 ], [ 1.582031, 6.140555 ], [ 1.582031, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 6.140555 ], [ 0.878906, 6.140555 ], [ 0.878906, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 9.102097 ], [ 0.351562, 9.102097 ], [ 0.351562, 10.141932 ], [ 0.175781, 10.141932 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.314919 ], [ 0.878906, 10.314919 ], [ 0.878906, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.968851 ], [ 1.230469, 9.968851 ], [ 1.230469, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.582031, 9.102097 ], [ 1.582031, 6.664608 ], [ 1.757812, 6.664608 ], [ 1.757812, 6.315299 ], [ 1.933594, 6.315299 ], [ 1.933594, 6.140555 ], [ 1.582031, 6.140555 ], [ 1.582031, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 6.140555 ], [ 0.878906, 6.140555 ], [ 0.878906, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 9.102097 ], [ 0.351562, 9.102097 ], [ 0.351562, 10.141932 ], [ 0.175781, 10.141932 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.164062, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 11.695273 ], [ 3.691406, 11.695273 ], [ 3.691406, 11.523088 ], [ 3.515625, 11.523088 ], [ 3.515625, 11.178402 ], [ 3.691406, 11.178402 ], [ 3.691406, 10.833306 ], [ 3.867188, 10.833306 ], [ 3.867188, 10.487812 ], [ 3.691406, 10.487812 ], [ 3.691406, 10.314919 ], [ 3.515625, 10.314919 ], [ 3.515625, 10.141932 ], [ 3.691406, 10.141932 ], [ 3.691406, 9.968851 ], [ 3.515625, 9.968851 ], [ 3.515625, 9.795678 ], [ 3.339844, 9.795678 ], [ 3.339844, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.275622 ], [ 2.988281, 9.275622 ], [ 2.988281, 8.928487 ], [ 2.812500, 8.928487 ], [ 2.812500, 8.581021 ], [ 2.636719, 8.581021 ], [ 2.636719, 8.233237 ], [ 2.812500, 8.233237 ], [ 2.812500, 7.013668 ], [ 2.636719, 7.013668 ], [ 2.636719, 6.315299 ], [ 2.460938, 6.315299 ], [ 2.460938, 6.140555 ], [ 1.933594, 6.140555 ], [ 1.933594, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.757812, 6.664608 ], [ 1.582031, 6.664608 ], [ 1.582031, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.230469, 9.795678 ], [ 1.230469, 9.968851 ], [ 1.054688, 9.968851 ], [ 1.054688, 10.141932 ], [ 0.878906, 10.141932 ], [ 0.878906, 10.314919 ], [ 0.703125, 10.314919 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.005904 ], [ 1.230469, 11.350797 ], [ 1.406250, 11.350797 ], [ 1.406250, 11.523088 ], [ 1.757812, 11.523088 ], [ 1.757812, 11.695273 ], [ 2.109375, 11.695273 ], [ 2.109375, 11.867351 ], [ 2.285156, 11.867351 ], [ 2.285156, 12.039321 ], [ 2.460938, 12.039321 ], [ 2.460938, 12.211180 ], [ 2.812500, 12.211180 ], [ 2.812500, 12.039321 ], [ 3.164062, 12.039321 ], [ 3.164062, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.211180 ], [ 2.812500, 12.039321 ], [ 3.164062, 12.039321 ], [ 3.164062, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 11.695273 ], [ 3.691406, 11.695273 ], [ 3.691406, 11.523088 ], [ 3.515625, 11.523088 ], [ 3.515625, 11.178402 ], [ 3.691406, 11.178402 ], [ 3.691406, 10.833306 ], [ 3.867188, 10.833306 ], [ 3.867188, 10.487812 ], [ 3.691406, 10.487812 ], [ 3.691406, 10.314919 ], [ 3.515625, 10.314919 ], [ 3.515625, 10.141932 ], [ 3.691406, 10.141932 ], [ 3.691406, 9.968851 ], [ 3.515625, 9.968851 ], [ 3.515625, 9.795678 ], [ 3.339844, 9.795678 ], [ 3.339844, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.275622 ], [ 2.988281, 9.275622 ], [ 2.988281, 8.928487 ], [ 2.812500, 8.928487 ], [ 2.812500, 8.581021 ], [ 2.636719, 8.581021 ], [ 2.636719, 8.233237 ], [ 2.812500, 8.233237 ], [ 2.812500, 7.013668 ], [ 2.636719, 7.013668 ], [ 2.636719, 6.315299 ], [ 2.460938, 6.315299 ], [ 2.460938, 6.140555 ], [ 1.933594, 6.140555 ], [ 1.933594, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.757812, 6.664608 ], [ 1.582031, 6.664608 ], [ 1.582031, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.230469, 9.795678 ], [ 1.230469, 9.968851 ], [ 1.054688, 9.968851 ], [ 1.054688, 10.141932 ], [ 0.878906, 10.141932 ], [ 0.878906, 10.314919 ], [ 0.703125, 10.314919 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.005904 ], [ 1.230469, 11.350797 ], [ 1.406250, 11.350797 ], [ 1.406250, 11.523088 ], [ 1.757812, 11.523088 ], [ 1.757812, 11.695273 ], [ 2.109375, 11.695273 ], [ 2.109375, 11.867351 ], [ 2.285156, 11.867351 ], [ 2.285156, 12.039321 ], [ 2.460938, 12.039321 ], [ 2.460938, 12.211180 ], [ 2.812500, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.800781, 13.581921 ], [ 6.152344, 13.581921 ], [ 6.152344, 13.410994 ], [ 6.503906, 13.410994 ], [ 6.503906, 13.239945 ], [ 6.679688, 13.239945 ], [ 6.679688, 13.068777 ], [ 7.558594, 13.068777 ], [ 7.558594, 13.239945 ], [ 7.734375, 13.239945 ], [ 7.734375, 13.410994 ], [ 7.910156, 13.410994 ], [ 7.910156, 13.239945 ], [ 8.261719, 13.239945 ], [ 8.261719, 13.068777 ], [ 8.613281, 13.068777 ], [ 8.613281, 12.897489 ], [ 9.843750, 12.897489 ], [ 9.843750, 13.068777 ], [ 10.195312, 13.068777 ], [ 10.195312, 13.239945 ], [ 11.074219, 13.239945 ], [ 11.074219, 13.410994 ], [ 11.601562, 13.410994 ], [ 11.601562, 13.239945 ], [ 11.953125, 13.239945 ], [ 11.953125, 13.068777 ], [ 12.480469, 13.068777 ], [ 12.480469, 13.239945 ], [ 12.832031, 13.239945 ], [ 12.832031, 13.410994 ], [ 13.007812, 13.410994 ], [ 13.007812, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.359375, 13.410994 ], [ 13.535156, 13.410994 ], [ 13.535156, 13.068777 ], [ 13.710938, 13.068777 ], [ 13.710938, 12.726084 ], [ 13.886719, 12.726084 ], [ 13.886719, 12.382928 ], [ 14.414062, 12.382928 ], [ 14.414062, 12.039321 ], [ 14.589844, 12.039321 ], [ 14.589844, 11.867351 ], [ 14.414062, 11.867351 ], [ 14.414062, 11.350797 ], [ 14.238281, 11.350797 ], [ 14.238281, 11.178402 ], [ 13.886719, 11.178402 ], [ 13.886719, 11.005904 ], [ 13.710938, 11.005904 ], [ 13.710938, 10.833306 ], [ 13.535156, 10.833306 ], [ 13.535156, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.795678 ], [ 13.183594, 9.795678 ], [ 13.183594, 9.449062 ], [ 13.007812, 9.449062 ], [ 13.007812, 9.102097 ], [ 12.832031, 9.102097 ], [ 12.832031, 8.581021 ], [ 12.656250, 8.581021 ], [ 12.656250, 8.407168 ], [ 12.480469, 8.407168 ], [ 12.480469, 8.233237 ], [ 12.304688, 8.233237 ], [ 12.304688, 8.059230 ], [ 12.128906, 8.059230 ], [ 12.128906, 7.710992 ], [ 11.953125, 7.710992 ], [ 11.953125, 7.362467 ], [ 11.777344, 7.362467 ], [ 11.777344, 6.839170 ], [ 11.425781, 6.839170 ], [ 11.425781, 6.664608 ], [ 10.898438, 6.664608 ], [ 10.898438, 6.839170 ], [ 10.546875, 6.839170 ], [ 10.546875, 7.013668 ], [ 10.195312, 7.013668 ], [ 10.195312, 6.839170 ], [ 10.019531, 6.839170 ], [ 10.019531, 6.664608 ], [ 9.667969, 6.664608 ], [ 9.667969, 6.489983 ], [ 9.316406, 6.489983 ], [ 9.316406, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.965754 ], [ 8.964844, 5.965754 ], [ 8.964844, 5.615986 ], [ 8.789062, 5.615986 ], [ 8.789062, 5.266008 ], [ 8.613281, 5.266008 ], [ 8.613281, 4.915833 ], [ 8.437500, 4.915833 ], [ 8.437500, 4.740675 ], [ 8.261719, 4.740675 ], [ 8.261719, 4.565474 ], [ 7.734375, 4.565474 ], [ 7.734375, 4.390229 ], [ 7.031250, 4.390229 ], [ 7.031250, 4.214943 ], [ 5.800781, 4.214943 ], [ 5.800781, 4.565474 ], [ 5.625000, 4.565474 ], [ 5.625000, 4.740675 ], [ 5.449219, 4.740675 ], [ 5.449219, 5.090944 ], [ 5.273438, 5.090944 ], [ 5.273438, 5.441022 ], [ 5.097656, 5.441022 ], [ 5.097656, 5.615986 ], [ 4.921875, 5.615986 ], [ 4.921875, 5.790897 ], [ 4.746094, 5.790897 ], [ 4.746094, 5.965754 ], [ 4.570312, 5.965754 ], [ 4.570312, 6.140555 ], [ 4.394531, 6.140555 ], [ 4.394531, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 7.013668 ], [ 2.812500, 7.013668 ], [ 2.812500, 8.233237 ], [ 2.636719, 8.233237 ], [ 2.636719, 8.581021 ], [ 2.812500, 8.581021 ], [ 2.812500, 8.928487 ], [ 2.988281, 8.928487 ], [ 2.988281, 9.275622 ], [ 3.164062, 9.275622 ], [ 3.164062, 9.449062 ], [ 3.339844, 9.449062 ], [ 3.339844, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 9.968851 ], [ 3.691406, 9.968851 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.141932 ], [ 3.515625, 10.314919 ], [ 3.691406, 10.314919 ], [ 3.691406, 10.487812 ], [ 3.867188, 10.487812 ], [ 3.867188, 10.833306 ], [ 3.691406, 10.833306 ], [ 3.691406, 11.178402 ], [ 3.515625, 11.178402 ], [ 3.515625, 11.523088 ], [ 3.691406, 11.523088 ], [ 3.691406, 12.554564 ], [ 3.867188, 12.554564 ], [ 3.867188, 12.726084 ], [ 4.042969, 12.726084 ], [ 4.042969, 13.581921 ], [ 4.394531, 13.581921 ], [ 4.394531, 13.752725 ], [ 5.097656, 13.752725 ], [ 5.097656, 13.923404 ], [ 5.449219, 13.923404 ], [ 5.449219, 13.752725 ], [ 5.800781, 13.752725 ], [ 5.800781, 13.581921 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.923404 ], [ 5.449219, 13.752725 ], [ 5.800781, 13.752725 ], [ 5.800781, 13.581921 ], [ 6.152344, 13.581921 ], [ 6.152344, 13.410994 ], [ 6.503906, 13.410994 ], [ 6.503906, 13.239945 ], [ 6.679688, 13.239945 ], [ 6.679688, 13.068777 ], [ 7.558594, 13.068777 ], [ 7.558594, 13.239945 ], [ 7.734375, 13.239945 ], [ 7.734375, 13.410994 ], [ 7.910156, 13.410994 ], [ 7.910156, 13.239945 ], [ 8.261719, 13.239945 ], [ 8.261719, 13.068777 ], [ 8.613281, 13.068777 ], [ 8.613281, 12.897489 ], [ 9.843750, 12.897489 ], [ 9.843750, 13.068777 ], [ 10.195312, 13.068777 ], [ 10.195312, 13.239945 ], [ 11.074219, 13.239945 ], [ 11.074219, 13.410994 ], [ 11.601562, 13.410994 ], [ 11.601562, 13.239945 ], [ 11.953125, 13.239945 ], [ 11.953125, 13.068777 ], [ 12.480469, 13.068777 ], [ 12.480469, 13.239945 ], [ 12.832031, 13.239945 ], [ 12.832031, 13.410994 ], [ 13.007812, 13.410994 ], [ 13.007812, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.359375, 13.410994 ], [ 13.535156, 13.410994 ], [ 13.535156, 13.068777 ], [ 13.710938, 13.068777 ], [ 13.710938, 12.726084 ], [ 13.886719, 12.726084 ], [ 13.886719, 12.382928 ], [ 14.414062, 12.382928 ], [ 14.414062, 12.039321 ], [ 14.589844, 12.039321 ], [ 14.589844, 11.867351 ], [ 14.414062, 11.867351 ], [ 14.414062, 11.350797 ], [ 14.238281, 11.350797 ], [ 14.238281, 11.178402 ], [ 13.886719, 11.178402 ], [ 13.886719, 11.005904 ], [ 13.710938, 11.005904 ], [ 13.710938, 10.833306 ], [ 13.535156, 10.833306 ], [ 13.535156, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.795678 ], [ 13.183594, 9.795678 ], [ 13.183594, 9.449062 ], [ 13.007812, 9.449062 ], [ 13.007812, 9.102097 ], [ 12.832031, 9.102097 ], [ 12.832031, 8.581021 ], [ 12.656250, 8.581021 ], [ 12.656250, 8.407168 ], [ 12.480469, 8.407168 ], [ 12.480469, 8.233237 ], [ 12.304688, 8.233237 ], [ 12.304688, 8.059230 ], [ 12.128906, 8.059230 ], [ 12.128906, 7.710992 ], [ 11.953125, 7.710992 ], [ 11.953125, 7.362467 ], [ 11.777344, 7.362467 ], [ 11.777344, 6.839170 ], [ 11.425781, 6.839170 ], [ 11.425781, 6.664608 ], [ 10.898438, 6.664608 ], [ 10.898438, 6.839170 ], [ 10.546875, 6.839170 ], [ 10.546875, 7.013668 ], [ 10.195312, 7.013668 ], [ 10.195312, 6.839170 ], [ 10.019531, 6.839170 ], [ 10.019531, 6.664608 ], [ 9.667969, 6.664608 ], [ 9.667969, 6.489983 ], [ 9.316406, 6.489983 ], [ 9.316406, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.965754 ], [ 8.964844, 5.965754 ], [ 8.964844, 5.615986 ], [ 8.789062, 5.615986 ], [ 8.789062, 5.266008 ], [ 8.613281, 5.266008 ], [ 8.613281, 4.915833 ], [ 8.437500, 4.915833 ], [ 8.437500, 4.740675 ], [ 8.261719, 4.740675 ], [ 8.261719, 4.565474 ], [ 7.734375, 4.565474 ], [ 7.734375, 4.390229 ], [ 7.031250, 4.390229 ], [ 7.031250, 4.214943 ], [ 5.800781, 4.214943 ], [ 5.800781, 4.565474 ], [ 5.625000, 4.565474 ], [ 5.625000, 4.740675 ], [ 5.449219, 4.740675 ], [ 5.449219, 5.090944 ], [ 5.273438, 5.090944 ], [ 5.273438, 5.441022 ], [ 5.097656, 5.441022 ], [ 5.097656, 5.615986 ], [ 4.921875, 5.615986 ], [ 4.921875, 5.790897 ], [ 4.746094, 5.790897 ], [ 4.746094, 5.965754 ], [ 4.570312, 5.965754 ], [ 4.570312, 6.140555 ], [ 4.394531, 6.140555 ], [ 4.394531, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 7.013668 ], [ 2.812500, 7.013668 ], [ 2.812500, 8.233237 ], [ 2.636719, 8.233237 ], [ 2.636719, 8.581021 ], [ 2.812500, 8.581021 ], [ 2.812500, 8.928487 ], [ 2.988281, 8.928487 ], [ 2.988281, 9.275622 ], [ 3.164062, 9.275622 ], [ 3.164062, 9.449062 ], [ 3.339844, 9.449062 ], [ 3.339844, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 9.968851 ], [ 3.691406, 9.968851 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.141932 ], [ 3.515625, 10.314919 ], [ 3.691406, 10.314919 ], [ 3.691406, 10.487812 ], [ 3.867188, 10.487812 ], [ 3.867188, 10.833306 ], [ 3.691406, 10.833306 ], [ 3.691406, 11.178402 ], [ 3.515625, 11.178402 ], [ 3.515625, 11.523088 ], [ 3.691406, 11.523088 ], [ 3.691406, 12.554564 ], [ 3.867188, 12.554564 ], [ 3.867188, 12.726084 ], [ 4.042969, 12.726084 ], [ 4.042969, 13.581921 ], [ 4.394531, 13.581921 ], [ 4.394531, 13.752725 ], [ 5.097656, 13.752725 ], [ 5.097656, 13.923404 ], [ 5.449219, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.054628 ], [ 9.316406, 1.054628 ], [ 9.316406, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.933227 ], [ 9.667969, 1.933227 ], [ 9.667969, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.054628 ], [ 9.316406, 1.054628 ], [ 9.316406, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.933227 ], [ 9.667969, 1.933227 ], [ 9.667969, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 22.917923 ], [ 16.875000, 22.917923 ], [ 16.875000, 22.755921 ], [ 17.226562, 22.755921 ], [ 17.226562, 22.593726 ], [ 17.578125, 22.593726 ], [ 17.578125, 22.431340 ], [ 17.929688, 22.431340 ], [ 17.929688, 22.268764 ], [ 18.281250, 22.268764 ], [ 18.281250, 22.105999 ], [ 18.632812, 22.105999 ], [ 18.632812, 21.943046 ], [ 18.984375, 21.943046 ], [ 18.984375, 21.779905 ], [ 19.335938, 21.779905 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.453069 ], [ 20.039062, 21.453069 ], [ 20.039062, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 21.125498 ], [ 20.742188, 21.125498 ], [ 20.742188, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.797201 ], [ 21.445312, 20.797201 ], [ 21.445312, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.468189 ], [ 22.148438, 20.468189 ], [ 22.148438, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 20.138470 ], [ 22.851562, 20.138470 ], [ 22.851562, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.808054 ], [ 23.554688, 19.808054 ], [ 23.554688, 19.642588 ], [ 23.906250, 19.642588 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.623037 ], [ 23.027344, 15.453680 ], [ 22.851562, 15.453680 ], [ 22.851562, 15.284185 ], [ 22.675781, 15.284185 ], [ 22.675781, 14.944785 ], [ 22.500000, 14.944785 ], [ 22.500000, 14.604847 ], [ 22.324219, 14.604847 ], [ 22.324219, 14.093957 ], [ 22.500000, 14.093957 ], [ 22.500000, 13.923404 ], [ 22.324219, 13.923404 ], [ 22.324219, 13.752725 ], [ 22.148438, 13.752725 ], [ 22.148438, 13.581921 ], [ 22.324219, 13.581921 ], [ 22.324219, 13.239945 ], [ 22.148438, 13.239945 ], [ 22.148438, 12.897489 ], [ 21.972656, 12.897489 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.554564 ], [ 22.324219, 12.382928 ], [ 22.500000, 12.382928 ], [ 22.500000, 11.523088 ], [ 22.675781, 11.523088 ], [ 22.675781, 11.350797 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.675781, 11.178402 ], [ 22.675781, 11.005904 ], [ 22.148438, 11.005904 ], [ 22.148438, 10.833306 ], [ 21.972656, 10.833306 ], [ 21.972656, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 10.314919 ], [ 21.621094, 10.314919 ], [ 21.621094, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 9.968851 ], [ 21.269531, 9.968851 ], [ 21.269531, 9.622414 ], [ 21.093750, 9.622414 ], [ 21.093750, 9.449062 ], [ 20.917969, 9.449062 ], [ 20.917969, 9.275622 ], [ 20.566406, 9.275622 ], [ 20.566406, 9.102097 ], [ 20.214844, 9.102097 ], [ 20.214844, 8.928487 ], [ 19.511719, 8.928487 ], [ 19.511719, 9.102097 ], [ 19.160156, 9.102097 ], [ 19.160156, 8.928487 ], [ 18.808594, 8.928487 ], [ 18.808594, 8.754795 ], [ 18.984375, 8.754795 ], [ 18.984375, 8.407168 ], [ 18.632812, 8.407168 ], [ 18.632812, 8.233237 ], [ 18.457031, 8.233237 ], [ 18.457031, 8.059230 ], [ 18.105469, 8.059230 ], [ 18.105469, 7.885147 ], [ 17.753906, 7.885147 ], [ 17.753906, 7.710992 ], [ 17.050781, 7.710992 ], [ 17.050781, 7.536764 ], [ 16.523438, 7.536764 ], [ 16.523438, 7.710992 ], [ 16.347656, 7.710992 ], [ 16.347656, 7.536764 ], [ 15.820312, 7.536764 ], [ 15.820312, 7.362467 ], [ 15.292969, 7.362467 ], [ 15.292969, 7.536764 ], [ 15.468750, 7.536764 ], [ 15.468750, 7.885147 ], [ 15.292969, 7.885147 ], [ 15.292969, 8.233237 ], [ 15.117188, 8.233237 ], [ 15.117188, 8.581021 ], [ 14.941406, 8.581021 ], [ 14.941406, 8.754795 ], [ 14.589844, 8.754795 ], [ 14.589844, 8.928487 ], [ 14.414062, 8.928487 ], [ 14.414062, 9.102097 ], [ 14.238281, 9.102097 ], [ 14.238281, 9.275622 ], [ 14.062500, 9.275622 ], [ 14.062500, 9.449062 ], [ 13.886719, 9.449062 ], [ 13.886719, 9.622414 ], [ 14.062500, 9.622414 ], [ 14.062500, 9.795678 ], [ 14.238281, 9.795678 ], [ 14.238281, 9.968851 ], [ 15.292969, 9.968851 ], [ 15.292969, 10.314919 ], [ 15.117188, 10.314919 ], [ 15.117188, 10.660608 ], [ 14.941406, 10.660608 ], [ 14.941406, 12.211180 ], [ 14.765625, 12.211180 ], [ 14.765625, 12.554564 ], [ 14.589844, 12.554564 ], [ 14.589844, 12.726084 ], [ 14.414062, 12.726084 ], [ 14.414062, 13.068777 ], [ 14.589844, 13.068777 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 13.923404 ], [ 13.710938, 13.923404 ], [ 13.710938, 14.264383 ], [ 13.535156, 14.264383 ], [ 13.535156, 14.604847 ], [ 13.710938, 14.604847 ], [ 13.710938, 15.284185 ], [ 13.886719, 15.284185 ], [ 13.886719, 15.623037 ], [ 14.062500, 15.623037 ], [ 14.062500, 15.792254 ], [ 14.414062, 15.792254 ], [ 14.414062, 15.961329 ], [ 14.589844, 15.961329 ], [ 14.589844, 16.130262 ], [ 14.765625, 16.130262 ], [ 14.765625, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 16.467695 ], [ 15.292969, 16.467695 ], [ 15.292969, 18.479609 ], [ 15.468750, 18.479609 ], [ 15.468750, 19.476950 ], [ 15.644531, 19.476950 ], [ 15.644531, 20.138470 ], [ 15.820312, 20.138470 ], [ 15.820312, 20.468189 ], [ 15.644531, 20.468189 ], [ 15.644531, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.125498 ], [ 15.117188, 21.125498 ], [ 15.117188, 21.616579 ], [ 14.941406, 21.616579 ], [ 14.941406, 22.431340 ], [ 14.765625, 22.431340 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.079732 ], [ 15.468750, 23.079732 ], [ 15.468750, 23.241346 ], [ 16.171875, 23.241346 ], [ 16.171875, 23.079732 ], [ 16.523438, 23.079732 ], [ 16.523438, 22.917923 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 23.241346 ], [ 16.171875, 23.079732 ], [ 16.523438, 23.079732 ], [ 16.523438, 22.917923 ], [ 16.875000, 22.917923 ], [ 16.875000, 22.755921 ], [ 17.226562, 22.755921 ], [ 17.226562, 22.593726 ], [ 17.578125, 22.593726 ], [ 17.578125, 22.431340 ], [ 17.929688, 22.431340 ], [ 17.929688, 22.268764 ], [ 18.281250, 22.268764 ], [ 18.281250, 22.105999 ], [ 18.632812, 22.105999 ], [ 18.632812, 21.943046 ], [ 18.984375, 21.943046 ], [ 18.984375, 21.779905 ], [ 19.335938, 21.779905 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.453069 ], [ 20.039062, 21.453069 ], [ 20.039062, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 21.125498 ], [ 20.742188, 21.125498 ], [ 20.742188, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.797201 ], [ 21.445312, 20.797201 ], [ 21.445312, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.468189 ], [ 22.148438, 20.468189 ], [ 22.148438, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 20.138470 ], [ 22.851562, 20.138470 ], [ 22.851562, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.808054 ], [ 23.554688, 19.808054 ], [ 23.554688, 19.642588 ], [ 23.906250, 19.642588 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.623037 ], [ 23.027344, 15.453680 ], [ 22.851562, 15.453680 ], [ 22.851562, 15.284185 ], [ 22.675781, 15.284185 ], [ 22.675781, 14.944785 ], [ 22.500000, 14.944785 ], [ 22.500000, 14.604847 ], [ 22.324219, 14.604847 ], [ 22.324219, 14.093957 ], [ 22.500000, 14.093957 ], [ 22.500000, 13.923404 ], [ 22.324219, 13.923404 ], [ 22.324219, 13.752725 ], [ 22.148438, 13.752725 ], [ 22.148438, 13.581921 ], [ 22.324219, 13.581921 ], [ 22.324219, 13.239945 ], [ 22.148438, 13.239945 ], [ 22.148438, 12.897489 ], [ 21.972656, 12.897489 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.554564 ], [ 22.324219, 12.382928 ], [ 22.500000, 12.382928 ], [ 22.500000, 11.523088 ], [ 22.675781, 11.523088 ], [ 22.675781, 11.350797 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.675781, 11.178402 ], [ 22.675781, 11.005904 ], [ 22.148438, 11.005904 ], [ 22.148438, 10.833306 ], [ 21.972656, 10.833306 ], [ 21.972656, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 10.314919 ], [ 21.621094, 10.314919 ], [ 21.621094, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 9.968851 ], [ 21.269531, 9.968851 ], [ 21.269531, 9.622414 ], [ 21.093750, 9.622414 ], [ 21.093750, 9.449062 ], [ 20.917969, 9.449062 ], [ 20.917969, 9.275622 ], [ 20.566406, 9.275622 ], [ 20.566406, 9.102097 ], [ 20.214844, 9.102097 ], [ 20.214844, 8.928487 ], [ 19.511719, 8.928487 ], [ 19.511719, 9.102097 ], [ 19.160156, 9.102097 ], [ 19.160156, 8.928487 ], [ 18.808594, 8.928487 ], [ 18.808594, 8.754795 ], [ 18.984375, 8.754795 ], [ 18.984375, 8.407168 ], [ 18.632812, 8.407168 ], [ 18.632812, 8.233237 ], [ 18.457031, 8.233237 ], [ 18.457031, 8.059230 ], [ 18.105469, 8.059230 ], [ 18.105469, 7.885147 ], [ 17.753906, 7.885147 ], [ 17.753906, 7.710992 ], [ 17.050781, 7.710992 ], [ 17.050781, 7.536764 ], [ 16.523438, 7.536764 ], [ 16.523438, 7.710992 ], [ 16.347656, 7.710992 ], [ 16.347656, 7.536764 ], [ 15.820312, 7.536764 ], [ 15.820312, 7.362467 ], [ 15.292969, 7.362467 ], [ 15.292969, 7.536764 ], [ 15.468750, 7.536764 ], [ 15.468750, 7.885147 ], [ 15.292969, 7.885147 ], [ 15.292969, 8.233237 ], [ 15.117188, 8.233237 ], [ 15.117188, 8.581021 ], [ 14.941406, 8.581021 ], [ 14.941406, 8.754795 ], [ 14.589844, 8.754795 ], [ 14.589844, 8.928487 ], [ 14.414062, 8.928487 ], [ 14.414062, 9.102097 ], [ 14.238281, 9.102097 ], [ 14.238281, 9.275622 ], [ 14.062500, 9.275622 ], [ 14.062500, 9.449062 ], [ 13.886719, 9.449062 ], [ 13.886719, 9.622414 ], [ 14.062500, 9.622414 ], [ 14.062500, 9.795678 ], [ 14.238281, 9.795678 ], [ 14.238281, 9.968851 ], [ 15.292969, 9.968851 ], [ 15.292969, 10.314919 ], [ 15.117188, 10.314919 ], [ 15.117188, 10.660608 ], [ 14.941406, 10.660608 ], [ 14.941406, 12.211180 ], [ 14.765625, 12.211180 ], [ 14.765625, 12.554564 ], [ 14.589844, 12.554564 ], [ 14.589844, 12.726084 ], [ 14.414062, 12.726084 ], [ 14.414062, 13.068777 ], [ 14.589844, 13.068777 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 13.923404 ], [ 13.710938, 13.923404 ], [ 13.710938, 14.264383 ], [ 13.535156, 14.264383 ], [ 13.535156, 14.604847 ], [ 13.710938, 14.604847 ], [ 13.710938, 15.284185 ], [ 13.886719, 15.284185 ], [ 13.886719, 15.623037 ], [ 14.062500, 15.623037 ], [ 14.062500, 15.792254 ], [ 14.414062, 15.792254 ], [ 14.414062, 15.961329 ], [ 14.589844, 15.961329 ], [ 14.589844, 16.130262 ], [ 14.765625, 16.130262 ], [ 14.765625, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 16.467695 ], [ 15.292969, 16.467695 ], [ 15.292969, 18.479609 ], [ 15.468750, 18.479609 ], [ 15.468750, 19.476950 ], [ 15.644531, 19.476950 ], [ 15.644531, 20.138470 ], [ 15.820312, 20.138470 ], [ 15.820312, 20.468189 ], [ 15.644531, 20.468189 ], [ 15.644531, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.125498 ], [ 15.117188, 21.125498 ], [ 15.117188, 21.616579 ], [ 14.941406, 21.616579 ], [ 14.941406, 22.431340 ], [ 14.765625, 22.431340 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.079732 ], [ 15.468750, 23.079732 ], [ 15.468750, 23.241346 ], [ 16.171875, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 9.275622 ], [ 14.238281, 9.275622 ], [ 14.238281, 9.102097 ], [ 14.414062, 9.102097 ], [ 14.414062, 8.928487 ], [ 14.589844, 8.928487 ], [ 14.589844, 8.754795 ], [ 14.941406, 8.754795 ], [ 14.941406, 8.581021 ], [ 15.117188, 8.581021 ], [ 15.117188, 8.233237 ], [ 15.292969, 8.233237 ], [ 15.292969, 7.885147 ], [ 15.468750, 7.885147 ], [ 15.468750, 7.536764 ], [ 15.292969, 7.536764 ], [ 15.292969, 7.188101 ], [ 15.117188, 7.188101 ], [ 15.117188, 6.839170 ], [ 14.941406, 6.839170 ], [ 14.941406, 6.489983 ], [ 14.765625, 6.489983 ], [ 14.765625, 6.315299 ], [ 14.589844, 6.315299 ], [ 14.589844, 5.790897 ], [ 14.414062, 5.790897 ], [ 14.414062, 5.266008 ], [ 14.589844, 5.266008 ], [ 14.589844, 4.915833 ], [ 14.414062, 4.915833 ], [ 14.414062, 4.565474 ], [ 14.589844, 4.565474 ], [ 14.589844, 4.390229 ], [ 14.765625, 4.390229 ], [ 14.765625, 4.214943 ], [ 14.941406, 4.214943 ], [ 14.941406, 4.039618 ], [ 15.117188, 4.039618 ], [ 15.117188, 3.688855 ], [ 15.292969, 3.688855 ], [ 15.292969, 3.337954 ], [ 15.468750, 3.337954 ], [ 15.468750, 3.162456 ], [ 15.644531, 3.162456 ], [ 15.644531, 2.986927 ], [ 15.820312, 2.986927 ], [ 15.820312, 2.460181 ], [ 15.996094, 2.460181 ], [ 15.996094, 1.757537 ], [ 15.468750, 1.757537 ], [ 15.468750, 1.933227 ], [ 14.765625, 1.933227 ], [ 14.765625, 2.108899 ], [ 14.414062, 2.108899 ], [ 14.414062, 2.284551 ], [ 12.832031, 2.284551 ], [ 12.832031, 2.108899 ], [ 11.953125, 2.108899 ], [ 11.953125, 2.284551 ], [ 9.667969, 2.284551 ], [ 9.667969, 2.635789 ], [ 9.843750, 2.635789 ], [ 9.843750, 3.162456 ], [ 9.667969, 3.162456 ], [ 9.667969, 3.513421 ], [ 9.492188, 3.513421 ], [ 9.492188, 3.688855 ], [ 9.140625, 3.688855 ], [ 9.140625, 3.864255 ], [ 8.964844, 3.864255 ], [ 8.964844, 4.039618 ], [ 8.789062, 4.039618 ], [ 8.789062, 4.390229 ], [ 8.437500, 4.390229 ], [ 8.437500, 4.915833 ], [ 8.613281, 4.915833 ], [ 8.613281, 5.266008 ], [ 8.789062, 5.266008 ], [ 8.789062, 5.615986 ], [ 8.964844, 5.615986 ], [ 8.964844, 5.965754 ], [ 9.140625, 5.965754 ], [ 9.140625, 6.315299 ], [ 9.316406, 6.315299 ], [ 9.316406, 6.489983 ], [ 9.667969, 6.489983 ], [ 9.667969, 6.664608 ], [ 10.019531, 6.664608 ], [ 10.019531, 6.839170 ], [ 10.195312, 6.839170 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.839170 ], [ 10.898438, 6.839170 ], [ 10.898438, 6.664608 ], [ 11.425781, 6.664608 ], [ 11.425781, 6.839170 ], [ 11.777344, 6.839170 ], [ 11.777344, 7.362467 ], [ 11.953125, 7.362467 ], [ 11.953125, 7.710992 ], [ 12.128906, 7.710992 ], [ 12.128906, 8.059230 ], [ 12.304688, 8.059230 ], [ 12.304688, 8.233237 ], [ 12.480469, 8.233237 ], [ 12.480469, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 8.581021 ], [ 12.832031, 8.581021 ], [ 12.832031, 9.102097 ], [ 13.007812, 9.102097 ], [ 13.007812, 9.449062 ], [ 13.183594, 9.449062 ], [ 13.183594, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 10.487812 ], [ 13.535156, 10.487812 ], [ 13.535156, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 11.005904 ], [ 13.886719, 11.005904 ], [ 13.886719, 11.178402 ], [ 14.238281, 11.178402 ], [ 14.238281, 11.350797 ], [ 14.414062, 11.350797 ], [ 14.414062, 11.867351 ], [ 14.589844, 11.867351 ], [ 14.589844, 12.039321 ], [ 14.414062, 12.039321 ], [ 14.414062, 12.382928 ], [ 14.238281, 12.382928 ], [ 14.238281, 12.726084 ], [ 14.589844, 12.726084 ], [ 14.589844, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 12.211180 ], [ 14.941406, 12.211180 ], [ 14.941406, 10.660608 ], [ 15.117188, 10.660608 ], [ 15.117188, 10.314919 ], [ 15.292969, 10.314919 ], [ 15.292969, 9.968851 ], [ 14.238281, 9.968851 ], [ 14.238281, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.622414 ], [ 13.886719, 9.622414 ], [ 13.886719, 9.449062 ], [ 14.062500, 9.449062 ], [ 14.062500, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.589844, 12.726084 ], [ 14.589844, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 12.211180 ], [ 14.941406, 12.211180 ], [ 14.941406, 10.660608 ], [ 15.117188, 10.660608 ], [ 15.117188, 10.314919 ], [ 15.292969, 10.314919 ], [ 15.292969, 9.968851 ], [ 14.238281, 9.968851 ], [ 14.238281, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.622414 ], [ 13.886719, 9.622414 ], [ 13.886719, 9.449062 ], [ 14.062500, 9.449062 ], [ 14.062500, 9.275622 ], [ 14.238281, 9.275622 ], [ 14.238281, 9.102097 ], [ 14.414062, 9.102097 ], [ 14.414062, 8.928487 ], [ 14.589844, 8.928487 ], [ 14.589844, 8.754795 ], [ 14.941406, 8.754795 ], [ 14.941406, 8.581021 ], [ 15.117188, 8.581021 ], [ 15.117188, 8.233237 ], [ 15.292969, 8.233237 ], [ 15.292969, 7.885147 ], [ 15.468750, 7.885147 ], [ 15.468750, 7.536764 ], [ 15.292969, 7.536764 ], [ 15.292969, 7.188101 ], [ 15.117188, 7.188101 ], [ 15.117188, 6.839170 ], [ 14.941406, 6.839170 ], [ 14.941406, 6.489983 ], [ 14.765625, 6.489983 ], [ 14.765625, 6.315299 ], [ 14.589844, 6.315299 ], [ 14.589844, 5.790897 ], [ 14.414062, 5.790897 ], [ 14.414062, 5.266008 ], [ 14.589844, 5.266008 ], [ 14.589844, 4.915833 ], [ 14.414062, 4.915833 ], [ 14.414062, 4.565474 ], [ 14.589844, 4.565474 ], [ 14.589844, 4.390229 ], [ 14.765625, 4.390229 ], [ 14.765625, 4.214943 ], [ 14.941406, 4.214943 ], [ 14.941406, 4.039618 ], [ 15.117188, 4.039618 ], [ 15.117188, 3.688855 ], [ 15.292969, 3.688855 ], [ 15.292969, 3.337954 ], [ 15.468750, 3.337954 ], [ 15.468750, 3.162456 ], [ 15.644531, 3.162456 ], [ 15.644531, 2.986927 ], [ 15.820312, 2.986927 ], [ 15.820312, 2.460181 ], [ 15.996094, 2.460181 ], [ 15.996094, 1.757537 ], [ 15.468750, 1.757537 ], [ 15.468750, 1.933227 ], [ 14.765625, 1.933227 ], [ 14.765625, 2.108899 ], [ 14.414062, 2.108899 ], [ 14.414062, 2.284551 ], [ 12.832031, 2.284551 ], [ 12.832031, 2.108899 ], [ 11.953125, 2.108899 ], [ 11.953125, 2.284551 ], [ 9.667969, 2.284551 ], [ 9.667969, 2.635789 ], [ 9.843750, 2.635789 ], [ 9.843750, 3.162456 ], [ 9.667969, 3.162456 ], [ 9.667969, 3.513421 ], [ 9.492188, 3.513421 ], [ 9.492188, 3.688855 ], [ 9.140625, 3.688855 ], [ 9.140625, 3.864255 ], [ 8.964844, 3.864255 ], [ 8.964844, 4.039618 ], [ 8.789062, 4.039618 ], [ 8.789062, 4.390229 ], [ 8.437500, 4.390229 ], [ 8.437500, 4.915833 ], [ 8.613281, 4.915833 ], [ 8.613281, 5.266008 ], [ 8.789062, 5.266008 ], [ 8.789062, 5.615986 ], [ 8.964844, 5.615986 ], [ 8.964844, 5.965754 ], [ 9.140625, 5.965754 ], [ 9.140625, 6.315299 ], [ 9.316406, 6.315299 ], [ 9.316406, 6.489983 ], [ 9.667969, 6.489983 ], [ 9.667969, 6.664608 ], [ 10.019531, 6.664608 ], [ 10.019531, 6.839170 ], [ 10.195312, 6.839170 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.839170 ], [ 10.898438, 6.839170 ], [ 10.898438, 6.664608 ], [ 11.425781, 6.664608 ], [ 11.425781, 6.839170 ], [ 11.777344, 6.839170 ], [ 11.777344, 7.362467 ], [ 11.953125, 7.362467 ], [ 11.953125, 7.710992 ], [ 12.128906, 7.710992 ], [ 12.128906, 8.059230 ], [ 12.304688, 8.059230 ], [ 12.304688, 8.233237 ], [ 12.480469, 8.233237 ], [ 12.480469, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 8.581021 ], [ 12.832031, 8.581021 ], [ 12.832031, 9.102097 ], [ 13.007812, 9.102097 ], [ 13.007812, 9.449062 ], [ 13.183594, 9.449062 ], [ 13.183594, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 10.487812 ], [ 13.535156, 10.487812 ], [ 13.535156, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 11.005904 ], [ 13.886719, 11.005904 ], [ 13.886719, 11.178402 ], [ 14.238281, 11.178402 ], [ 14.238281, 11.350797 ], [ 14.414062, 11.350797 ], [ 14.414062, 11.867351 ], [ 14.589844, 11.867351 ], [ 14.589844, 12.039321 ], [ 14.414062, 12.039321 ], [ 14.414062, 12.382928 ], [ 14.238281, 12.382928 ], [ 14.238281, 12.726084 ], [ 14.589844, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.027344, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.314919 ], [ 23.378906, 10.314919 ], [ 23.378906, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 9.449062 ], [ 23.378906, 9.449062 ], [ 23.378906, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 8.581021 ], [ 23.906250, 8.581021 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.233237 ], [ 24.609375, 8.233237 ], [ 24.609375, 8.059230 ], [ 24.960938, 8.059230 ], [ 24.960938, 7.885147 ], [ 25.136719, 7.885147 ], [ 25.136719, 7.362467 ], [ 25.312500, 7.362467 ], [ 25.312500, 7.188101 ], [ 25.664062, 7.188101 ], [ 25.664062, 7.013668 ], [ 25.839844, 7.013668 ], [ 25.839844, 6.839170 ], [ 26.015625, 6.839170 ], [ 26.015625, 6.489983 ], [ 26.191406, 6.489983 ], [ 26.191406, 6.315299 ], [ 26.367188, 6.315299 ], [ 26.367188, 5.965754 ], [ 26.542969, 5.965754 ], [ 26.542969, 5.790897 ], [ 26.894531, 5.790897 ], [ 26.894531, 5.615986 ], [ 27.246094, 5.615986 ], [ 27.246094, 5.441022 ], [ 27.421875, 5.441022 ], [ 27.421875, 5.090944 ], [ 25.839844, 5.090944 ], [ 25.839844, 5.266008 ], [ 25.664062, 5.266008 ], [ 25.664062, 5.090944 ], [ 25.312500, 5.090944 ], [ 25.312500, 4.915833 ], [ 24.082031, 4.915833 ], [ 24.082031, 4.740675 ], [ 23.730469, 4.740675 ], [ 23.730469, 4.565474 ], [ 23.027344, 4.565474 ], [ 23.027344, 4.740675 ], [ 22.851562, 4.740675 ], [ 22.851562, 4.565474 ], [ 22.675781, 4.565474 ], [ 22.675781, 4.390229 ], [ 22.500000, 4.390229 ], [ 22.500000, 4.039618 ], [ 21.796875, 4.039618 ], [ 21.796875, 4.214943 ], [ 21.093750, 4.214943 ], [ 21.093750, 4.390229 ], [ 20.566406, 4.390229 ], [ 20.566406, 4.565474 ], [ 20.214844, 4.565474 ], [ 20.214844, 4.740675 ], [ 19.863281, 4.740675 ], [ 19.863281, 4.915833 ], [ 19.160156, 4.915833 ], [ 19.160156, 4.740675 ], [ 18.984375, 4.740675 ], [ 18.984375, 4.565474 ], [ 18.808594, 4.565474 ], [ 18.808594, 4.390229 ], [ 18.632812, 4.390229 ], [ 18.632812, 4.214943 ], [ 18.457031, 4.214943 ], [ 18.457031, 3.513421 ], [ 17.226562, 3.513421 ], [ 17.226562, 3.688855 ], [ 17.050781, 3.688855 ], [ 17.050781, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.337954 ], [ 16.699219, 3.337954 ], [ 16.699219, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 2.986927 ], [ 16.347656, 2.986927 ], [ 16.347656, 2.635789 ], [ 16.171875, 2.635789 ], [ 16.171875, 2.284551 ], [ 15.996094, 2.284551 ], [ 15.996094, 2.460181 ], [ 15.820312, 2.460181 ], [ 15.820312, 2.986927 ], [ 15.644531, 2.986927 ], [ 15.644531, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.337954 ], [ 15.292969, 3.337954 ], [ 15.292969, 3.688855 ], [ 15.117188, 3.688855 ], [ 15.117188, 4.039618 ], [ 14.941406, 4.039618 ], [ 14.941406, 4.214943 ], [ 14.765625, 4.214943 ], [ 14.765625, 4.390229 ], [ 14.589844, 4.390229 ], [ 14.589844, 4.565474 ], [ 14.414062, 4.565474 ], [ 14.414062, 4.915833 ], [ 14.589844, 4.915833 ], [ 14.589844, 5.266008 ], [ 14.414062, 5.266008 ], [ 14.414062, 5.790897 ], [ 14.589844, 5.790897 ], [ 14.589844, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.489983 ], [ 14.941406, 6.489983 ], [ 14.941406, 6.839170 ], [ 15.117188, 6.839170 ], [ 15.117188, 7.188101 ], [ 15.292969, 7.188101 ], [ 15.292969, 7.362467 ], [ 15.820312, 7.362467 ], [ 15.820312, 7.536764 ], [ 16.347656, 7.536764 ], [ 16.347656, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.536764 ], [ 17.050781, 7.536764 ], [ 17.050781, 7.710992 ], [ 17.753906, 7.710992 ], [ 17.753906, 7.885147 ], [ 18.105469, 7.885147 ], [ 18.105469, 8.059230 ], [ 18.457031, 8.059230 ], [ 18.457031, 8.233237 ], [ 18.632812, 8.233237 ], [ 18.632812, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 8.754795 ], [ 18.808594, 8.754795 ], [ 18.808594, 8.928487 ], [ 19.160156, 8.928487 ], [ 19.160156, 9.102097 ], [ 19.511719, 9.102097 ], [ 19.511719, 8.928487 ], [ 20.214844, 8.928487 ], [ 20.214844, 9.102097 ], [ 20.566406, 9.102097 ], [ 20.566406, 9.275622 ], [ 20.917969, 9.275622 ], [ 20.917969, 9.449062 ], [ 21.093750, 9.449062 ], [ 21.093750, 9.622414 ], [ 21.269531, 9.622414 ], [ 21.269531, 9.968851 ], [ 21.445312, 9.968851 ], [ 21.445312, 10.141932 ], [ 21.621094, 10.141932 ], [ 21.621094, 10.314919 ], [ 21.796875, 10.314919 ], [ 21.796875, 10.487812 ], [ 21.972656, 10.487812 ], [ 21.972656, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 11.005904 ], [ 22.675781, 11.005904 ], [ 22.675781, 11.178402 ], [ 22.851562, 11.178402 ], [ 22.851562, 10.833306 ], [ 23.027344, 10.833306 ], [ 23.027344, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.851562, 10.833306 ], [ 23.027344, 10.833306 ], [ 23.027344, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.314919 ], [ 23.378906, 10.314919 ], [ 23.378906, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 9.449062 ], [ 23.378906, 9.449062 ], [ 23.378906, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 8.581021 ], [ 23.906250, 8.581021 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.233237 ], [ 24.609375, 8.233237 ], [ 24.609375, 8.059230 ], [ 24.960938, 8.059230 ], [ 24.960938, 7.885147 ], [ 25.136719, 7.885147 ], [ 25.136719, 7.362467 ], [ 25.312500, 7.362467 ], [ 25.312500, 7.188101 ], [ 25.664062, 7.188101 ], [ 25.664062, 7.013668 ], [ 25.839844, 7.013668 ], [ 25.839844, 6.839170 ], [ 26.015625, 6.839170 ], [ 26.015625, 6.489983 ], [ 26.191406, 6.489983 ], [ 26.191406, 6.315299 ], [ 26.367188, 6.315299 ], [ 26.367188, 5.965754 ], [ 26.542969, 5.965754 ], [ 26.542969, 5.790897 ], [ 26.894531, 5.790897 ], [ 26.894531, 5.615986 ], [ 27.246094, 5.615986 ], [ 27.246094, 5.441022 ], [ 27.421875, 5.441022 ], [ 27.421875, 5.090944 ], [ 25.839844, 5.090944 ], [ 25.839844, 5.266008 ], [ 25.664062, 5.266008 ], [ 25.664062, 5.090944 ], [ 25.312500, 5.090944 ], [ 25.312500, 4.915833 ], [ 24.082031, 4.915833 ], [ 24.082031, 4.740675 ], [ 23.730469, 4.740675 ], [ 23.730469, 4.565474 ], [ 23.027344, 4.565474 ], [ 23.027344, 4.740675 ], [ 22.851562, 4.740675 ], [ 22.851562, 4.565474 ], [ 22.675781, 4.565474 ], [ 22.675781, 4.390229 ], [ 22.500000, 4.390229 ], [ 22.500000, 4.039618 ], [ 21.796875, 4.039618 ], [ 21.796875, 4.214943 ], [ 21.093750, 4.214943 ], [ 21.093750, 4.390229 ], [ 20.566406, 4.390229 ], [ 20.566406, 4.565474 ], [ 20.214844, 4.565474 ], [ 20.214844, 4.740675 ], [ 19.863281, 4.740675 ], [ 19.863281, 4.915833 ], [ 19.160156, 4.915833 ], [ 19.160156, 4.740675 ], [ 18.984375, 4.740675 ], [ 18.984375, 4.565474 ], [ 18.808594, 4.565474 ], [ 18.808594, 4.390229 ], [ 18.632812, 4.390229 ], [ 18.632812, 4.214943 ], [ 18.457031, 4.214943 ], [ 18.457031, 3.513421 ], [ 17.226562, 3.513421 ], [ 17.226562, 3.688855 ], [ 17.050781, 3.688855 ], [ 17.050781, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.337954 ], [ 16.699219, 3.337954 ], [ 16.699219, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 2.986927 ], [ 16.347656, 2.986927 ], [ 16.347656, 2.635789 ], [ 16.171875, 2.635789 ], [ 16.171875, 2.284551 ], [ 15.996094, 2.284551 ], [ 15.996094, 2.460181 ], [ 15.820312, 2.460181 ], [ 15.820312, 2.986927 ], [ 15.644531, 2.986927 ], [ 15.644531, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.337954 ], [ 15.292969, 3.337954 ], [ 15.292969, 3.688855 ], [ 15.117188, 3.688855 ], [ 15.117188, 4.039618 ], [ 14.941406, 4.039618 ], [ 14.941406, 4.214943 ], [ 14.765625, 4.214943 ], [ 14.765625, 4.390229 ], [ 14.589844, 4.390229 ], [ 14.589844, 4.565474 ], [ 14.414062, 4.565474 ], [ 14.414062, 4.915833 ], [ 14.589844, 4.915833 ], [ 14.589844, 5.266008 ], [ 14.414062, 5.266008 ], [ 14.414062, 5.790897 ], [ 14.589844, 5.790897 ], [ 14.589844, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.489983 ], [ 14.941406, 6.489983 ], [ 14.941406, 6.839170 ], [ 15.117188, 6.839170 ], [ 15.117188, 7.188101 ], [ 15.292969, 7.188101 ], [ 15.292969, 7.362467 ], [ 15.820312, 7.362467 ], [ 15.820312, 7.536764 ], [ 16.347656, 7.536764 ], [ 16.347656, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.536764 ], [ 17.050781, 7.536764 ], [ 17.050781, 7.710992 ], [ 17.753906, 7.710992 ], [ 17.753906, 7.885147 ], [ 18.105469, 7.885147 ], [ 18.105469, 8.059230 ], [ 18.457031, 8.059230 ], [ 18.457031, 8.233237 ], [ 18.632812, 8.233237 ], [ 18.632812, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 8.754795 ], [ 18.808594, 8.754795 ], [ 18.808594, 8.928487 ], [ 19.160156, 8.928487 ], [ 19.160156, 9.102097 ], [ 19.511719, 9.102097 ], [ 19.511719, 8.928487 ], [ 20.214844, 8.928487 ], [ 20.214844, 9.102097 ], [ 20.566406, 9.102097 ], [ 20.566406, 9.275622 ], [ 20.917969, 9.275622 ], [ 20.917969, 9.449062 ], [ 21.093750, 9.449062 ], [ 21.093750, 9.622414 ], [ 21.269531, 9.622414 ], [ 21.269531, 9.968851 ], [ 21.445312, 9.968851 ], [ 21.445312, 10.141932 ], [ 21.621094, 10.141932 ], [ 21.621094, 10.314919 ], [ 21.796875, 10.314919 ], [ 21.796875, 10.487812 ], [ 21.972656, 10.487812 ], [ 21.972656, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 11.005904 ], [ 22.675781, 11.005904 ], [ 22.675781, 11.178402 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.191406, 35.029996 ], [ 25.664062, 35.029996 ], [ 25.664062, 34.885931 ], [ 24.785156, 34.885931 ], [ 24.785156, 35.029996 ], [ 24.433594, 35.029996 ], [ 24.433594, 35.173808 ], [ 23.730469, 35.173808 ], [ 23.730469, 35.317366 ], [ 23.554688, 35.317366 ], [ 23.554688, 35.460670 ], [ 23.730469, 35.460670 ], [ 23.730469, 35.603719 ], [ 23.906250, 35.603719 ], [ 23.906250, 35.460670 ], [ 24.082031, 35.460670 ], [ 24.082031, 35.317366 ], [ 24.785156, 35.317366 ], [ 24.785156, 35.460670 ], [ 25.312500, 35.460670 ], [ 25.312500, 35.317366 ], [ 25.839844, 35.317366 ], [ 25.839844, 35.173808 ], [ 26.191406, 35.173808 ], [ 26.191406, 35.029996 ] ] ], [ [ [ 24.082031, 40.313043 ], [ 24.257812, 40.313043 ], [ 24.257812, 40.178873 ], [ 24.433594, 40.178873 ], [ 24.433594, 40.044438 ], [ 24.082031, 40.044438 ], [ 24.082031, 39.909736 ], [ 23.203125, 39.909736 ], [ 23.203125, 40.178873 ], [ 23.027344, 40.178873 ], [ 23.027344, 40.313043 ], [ 22.675781, 40.313043 ], [ 22.675781, 39.909736 ], [ 22.851562, 39.909736 ], [ 22.851562, 39.504041 ], [ 23.027344, 39.504041 ], [ 23.027344, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 39.232253 ], [ 23.378906, 39.232253 ], [ 23.378906, 39.095963 ], [ 23.203125, 39.095963 ], [ 23.203125, 38.959409 ], [ 23.027344, 38.959409 ], [ 23.027344, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.685510 ], [ 23.378906, 38.685510 ], [ 23.378906, 38.548165 ], [ 23.554688, 38.548165 ], [ 23.554688, 38.410558 ], [ 23.906250, 38.410558 ], [ 23.906250, 38.272689 ], [ 24.082031, 38.272689 ], [ 24.082031, 37.718590 ], [ 23.378906, 37.718590 ], [ 23.378906, 37.857507 ], [ 23.027344, 37.857507 ], [ 23.027344, 37.718590 ], [ 23.203125, 37.718590 ], [ 23.203125, 37.300275 ], [ 22.851562, 37.300275 ], [ 22.851562, 37.020098 ], [ 23.027344, 37.020098 ], [ 23.027344, 36.597889 ], [ 23.203125, 36.597889 ], [ 23.203125, 36.456636 ], [ 22.324219, 36.456636 ], [ 22.324219, 36.597889 ], [ 21.972656, 36.597889 ], [ 21.972656, 36.738884 ], [ 21.621094, 36.738884 ], [ 21.621094, 37.020098 ], [ 21.445312, 37.020098 ], [ 21.445312, 37.300275 ], [ 21.269531, 37.300275 ], [ 21.269531, 37.857507 ], [ 21.093750, 37.857507 ], [ 21.093750, 38.410558 ], [ 20.917969, 38.410558 ], [ 20.917969, 38.685510 ], [ 20.742188, 38.685510 ], [ 20.742188, 38.822591 ], [ 20.566406, 38.822591 ], [ 20.566406, 39.095963 ], [ 20.390625, 39.095963 ], [ 20.390625, 39.232253 ], [ 20.214844, 39.232253 ], [ 20.214844, 39.639538 ], [ 20.390625, 39.639538 ], [ 20.390625, 39.909736 ], [ 20.566406, 39.909736 ], [ 20.566406, 40.178873 ], [ 20.742188, 40.178873 ], [ 20.742188, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.972656, 40.979898 ], [ 21.972656, 41.112469 ], [ 22.675781, 41.112469 ], [ 22.675781, 41.244772 ], [ 23.027344, 41.244772 ], [ 23.027344, 41.376809 ], [ 24.082031, 41.376809 ], [ 24.082031, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.839844, 41.244772 ], [ 25.839844, 41.376809 ], [ 26.191406, 41.376809 ], [ 26.191406, 41.640078 ], [ 26.542969, 41.640078 ], [ 26.542969, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.847060 ], [ 25.136719, 40.847060 ], [ 25.136719, 40.979898 ], [ 24.785156, 40.979898 ], [ 24.785156, 40.847060 ], [ 24.082031, 40.847060 ], [ 24.082031, 40.713956 ], [ 23.730469, 40.713956 ], [ 23.730469, 40.580585 ], [ 23.906250, 40.580585 ], [ 23.906250, 40.446947 ], [ 24.082031, 40.446947 ], [ 24.082031, 40.313043 ] ] ], [ [ [ 26.191406, 35.317366 ], [ 26.367188, 35.317366 ], [ 26.367188, 35.173808 ], [ 26.191406, 35.173808 ], [ 26.191406, 35.317366 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.906250, 35.603719 ], [ 23.906250, 35.460670 ], [ 24.082031, 35.460670 ], [ 24.082031, 35.317366 ], [ 24.785156, 35.317366 ], [ 24.785156, 35.460670 ], [ 25.312500, 35.460670 ], [ 25.312500, 35.317366 ], [ 25.839844, 35.317366 ], [ 25.839844, 35.173808 ], [ 26.191406, 35.173808 ], [ 26.191406, 35.029996 ], [ 25.664062, 35.029996 ], [ 25.664062, 34.885931 ], [ 24.785156, 34.885931 ], [ 24.785156, 35.029996 ], [ 24.433594, 35.029996 ], [ 24.433594, 35.173808 ], [ 23.730469, 35.173808 ], [ 23.730469, 35.317366 ], [ 23.554688, 35.317366 ], [ 23.554688, 35.460670 ], [ 23.730469, 35.460670 ], [ 23.730469, 35.603719 ], [ 23.906250, 35.603719 ] ] ], [ [ [ 26.367188, 35.173808 ], [ 26.191406, 35.173808 ], [ 26.191406, 35.317366 ], [ 26.367188, 35.317366 ], [ 26.367188, 35.173808 ] ] ], [ [ [ 26.542969, 41.640078 ], [ 26.542969, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.847060 ], [ 25.136719, 40.847060 ], [ 25.136719, 40.979898 ], [ 24.785156, 40.979898 ], [ 24.785156, 40.847060 ], [ 24.082031, 40.847060 ], [ 24.082031, 40.713956 ], [ 23.730469, 40.713956 ], [ 23.730469, 40.580585 ], [ 23.906250, 40.580585 ], [ 23.906250, 40.446947 ], [ 24.082031, 40.446947 ], [ 24.082031, 40.313043 ], [ 24.257812, 40.313043 ], [ 24.257812, 40.178873 ], [ 24.433594, 40.178873 ], [ 24.433594, 40.044438 ], [ 24.082031, 40.044438 ], [ 24.082031, 39.909736 ], [ 23.203125, 39.909736 ], [ 23.203125, 40.178873 ], [ 23.027344, 40.178873 ], [ 23.027344, 40.313043 ], [ 22.675781, 40.313043 ], [ 22.675781, 39.909736 ], [ 22.851562, 39.909736 ], [ 22.851562, 39.504041 ], [ 23.027344, 39.504041 ], [ 23.027344, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 39.232253 ], [ 23.378906, 39.232253 ], [ 23.378906, 39.095963 ], [ 23.203125, 39.095963 ], [ 23.203125, 38.959409 ], [ 23.027344, 38.959409 ], [ 23.027344, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.685510 ], [ 23.378906, 38.685510 ], [ 23.378906, 38.548165 ], [ 23.554688, 38.548165 ], [ 23.554688, 38.410558 ], [ 23.906250, 38.410558 ], [ 23.906250, 38.272689 ], [ 24.082031, 38.272689 ], [ 24.082031, 37.718590 ], [ 23.378906, 37.718590 ], [ 23.378906, 37.857507 ], [ 23.027344, 37.857507 ], [ 23.027344, 37.718590 ], [ 23.203125, 37.718590 ], [ 23.203125, 37.300275 ], [ 22.851562, 37.300275 ], [ 22.851562, 37.020098 ], [ 23.027344, 37.020098 ], [ 23.027344, 36.597889 ], [ 23.203125, 36.597889 ], [ 23.203125, 36.456636 ], [ 22.324219, 36.456636 ], [ 22.324219, 36.597889 ], [ 21.972656, 36.597889 ], [ 21.972656, 36.738884 ], [ 21.621094, 36.738884 ], [ 21.621094, 37.020098 ], [ 21.445312, 37.020098 ], [ 21.445312, 37.300275 ], [ 21.269531, 37.300275 ], [ 21.269531, 37.857507 ], [ 21.093750, 37.857507 ], [ 21.093750, 38.410558 ], [ 20.917969, 38.410558 ], [ 20.917969, 38.685510 ], [ 20.742188, 38.685510 ], [ 20.742188, 38.822591 ], [ 20.566406, 38.822591 ], [ 20.566406, 39.095963 ], [ 20.390625, 39.095963 ], [ 20.390625, 39.232253 ], [ 20.214844, 39.232253 ], [ 20.214844, 39.639538 ], [ 20.390625, 39.639538 ], [ 20.390625, 39.909736 ], [ 20.566406, 39.909736 ], [ 20.566406, 40.178873 ], [ 20.742188, 40.178873 ], [ 20.742188, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.972656, 40.979898 ], [ 21.972656, 41.112469 ], [ 22.675781, 41.112469 ], [ 22.675781, 41.244772 ], [ 23.027344, 41.244772 ], [ 23.027344, 41.376809 ], [ 24.082031, 41.376809 ], [ 24.082031, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.839844, 41.244772 ], [ 25.839844, 41.376809 ], [ 26.191406, 41.376809 ], [ 26.191406, 41.640078 ], [ 26.542969, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.398438, 35.029996 ], [ 33.398438, 35.173808 ], [ 33.222656, 35.173808 ], [ 33.222656, 35.029996 ], [ 32.695312, 35.029996 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.173808 ], [ 32.871094, 35.317366 ], [ 33.925781, 35.317366 ], [ 33.925781, 35.029996 ], [ 33.398438, 35.029996 ] ] ], [ [ [ 34.277344, 35.460670 ], [ 34.277344, 35.317366 ], [ 34.101562, 35.317366 ], [ 34.101562, 35.460670 ], [ 34.277344, 35.460670 ] ] ], [ [ [ 34.628906, 35.603719 ], [ 34.628906, 35.460670 ], [ 34.453125, 35.460670 ], [ 34.453125, 35.603719 ], [ 34.628906, 35.603719 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.925781, 35.317366 ], [ 33.925781, 35.029996 ], [ 33.398438, 35.029996 ], [ 33.398438, 35.173808 ], [ 33.222656, 35.173808 ], [ 33.222656, 35.029996 ], [ 32.695312, 35.029996 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.173808 ], [ 32.871094, 35.317366 ], [ 33.925781, 35.317366 ] ] ], [ [ [ 34.277344, 35.460670 ], [ 34.277344, 35.317366 ], [ 34.101562, 35.317366 ], [ 34.101562, 35.460670 ], [ 34.277344, 35.460670 ] ] ], [ [ [ 34.628906, 35.460670 ], [ 34.453125, 35.460670 ], [ 34.453125, 35.603719 ], [ 34.628906, 35.603719 ], [ 34.628906, 35.460670 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 34.885931 ], [ 33.574219, 34.885931 ], [ 33.574219, 34.741612 ], [ 33.222656, 34.741612 ], [ 33.222656, 34.597042 ], [ 32.695312, 34.597042 ], [ 32.695312, 34.741612 ], [ 32.519531, 34.741612 ], [ 32.519531, 34.885931 ], [ 32.343750, 34.885931 ], [ 32.343750, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.695312, 35.029996 ], [ 33.222656, 35.029996 ], [ 33.222656, 35.173808 ], [ 33.398438, 35.173808 ], [ 33.398438, 35.029996 ], [ 33.925781, 35.029996 ], [ 33.925781, 34.885931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 35.173808 ], [ 33.398438, 35.029996 ], [ 33.925781, 35.029996 ], [ 33.925781, 34.885931 ], [ 33.574219, 34.885931 ], [ 33.574219, 34.741612 ], [ 33.222656, 34.741612 ], [ 33.222656, 34.597042 ], [ 32.695312, 34.597042 ], [ 32.695312, 34.741612 ], [ 32.519531, 34.741612 ], [ 32.519531, 34.885931 ], [ 32.343750, 34.885931 ], [ 32.343750, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.695312, 35.029996 ], [ 33.222656, 35.029996 ], [ 33.222656, 35.173808 ], [ 33.398438, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.519531, 28.921631 ], [ 32.695312, 28.921631 ], [ 32.695312, 28.613459 ], [ 32.871094, 28.613459 ], [ 32.871094, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 27.994401 ], [ 33.222656, 27.994401 ], [ 33.222656, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 27.371767 ], [ 33.574219, 27.371767 ], [ 33.574219, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.588527 ], [ 33.925781, 26.588527 ], [ 33.925781, 26.273714 ], [ 34.101562, 26.273714 ], [ 34.101562, 25.958045 ], [ 34.277344, 25.958045 ], [ 34.277344, 25.641526 ], [ 34.453125, 25.641526 ], [ 34.453125, 25.482951 ], [ 34.628906, 25.482951 ], [ 34.628906, 25.165173 ], [ 34.804688, 25.165173 ], [ 34.804688, 24.846565 ], [ 34.980469, 24.846565 ], [ 34.980469, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 24.367114 ], [ 35.332031, 24.367114 ], [ 35.332031, 24.206890 ], [ 35.507812, 24.206890 ], [ 35.507812, 23.885838 ], [ 35.683594, 23.885838 ], [ 35.683594, 23.725012 ], [ 35.507812, 23.725012 ], [ 35.507812, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.755921 ], [ 36.035156, 22.755921 ], [ 36.035156, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.431340 ], [ 36.562500, 22.431340 ], [ 36.562500, 22.268764 ], [ 36.738281, 22.268764 ], [ 36.738281, 22.105999 ], [ 36.914062, 22.105999 ], [ 36.914062, 21.943046 ], [ 24.960938, 21.943046 ], [ 24.960938, 29.535230 ], [ 24.785156, 29.535230 ], [ 24.785156, 30.297018 ], [ 24.960938, 30.297018 ], [ 24.960938, 30.751278 ], [ 24.785156, 30.751278 ], [ 24.785156, 31.052934 ], [ 24.960938, 31.052934 ], [ 24.960938, 31.353637 ], [ 25.136719, 31.353637 ], [ 25.136719, 31.503629 ], [ 26.015625, 31.503629 ], [ 26.015625, 31.653381 ], [ 26.718750, 31.653381 ], [ 26.718750, 31.503629 ], [ 27.070312, 31.503629 ], [ 27.070312, 31.353637 ], [ 27.597656, 31.353637 ], [ 27.597656, 31.203405 ], [ 28.125000, 31.203405 ], [ 28.125000, 31.052934 ], [ 28.476562, 31.052934 ], [ 28.476562, 30.902225 ], [ 29.179688, 30.902225 ], [ 29.179688, 31.052934 ], [ 29.531250, 31.052934 ], [ 29.531250, 31.203405 ], [ 29.882812, 31.203405 ], [ 29.882812, 31.353637 ], [ 30.058594, 31.353637 ], [ 30.058594, 31.503629 ], [ 31.640625, 31.503629 ], [ 31.640625, 31.353637 ], [ 31.816406, 31.353637 ], [ 31.816406, 31.052934 ], [ 32.167969, 31.052934 ], [ 32.167969, 31.203405 ], [ 32.519531, 31.203405 ], [ 32.519531, 31.052934 ], [ 33.222656, 31.052934 ], [ 33.222656, 30.902225 ], [ 33.925781, 30.902225 ], [ 33.925781, 31.052934 ], [ 34.277344, 31.052934 ], [ 34.277344, 30.902225 ], [ 34.453125, 30.902225 ], [ 34.453125, 30.448674 ], [ 34.628906, 30.448674 ], [ 34.628906, 30.145127 ], [ 34.804688, 30.145127 ], [ 34.804688, 29.688053 ], [ 34.980469, 29.688053 ], [ 34.980469, 29.382175 ], [ 34.804688, 29.382175 ], [ 34.804688, 29.075375 ], [ 34.628906, 29.075375 ], [ 34.628906, 28.613459 ], [ 34.453125, 28.613459 ], [ 34.453125, 28.149503 ], [ 34.277344, 28.149503 ], [ 34.277344, 27.839076 ], [ 34.101562, 27.839076 ], [ 34.101562, 27.683528 ], [ 33.750000, 27.683528 ], [ 33.750000, 27.839076 ], [ 33.574219, 27.839076 ], [ 33.574219, 27.994401 ], [ 33.398438, 27.994401 ], [ 33.398438, 28.304381 ], [ 33.222656, 28.304381 ], [ 33.222656, 28.459033 ], [ 33.046875, 28.459033 ], [ 33.046875, 28.767659 ], [ 32.871094, 28.767659 ], [ 32.871094, 29.075375 ], [ 32.695312, 29.075375 ], [ 32.695312, 29.382175 ], [ 32.519531, 29.382175 ], [ 32.519531, 28.921631 ] ], [ [ 32.519531, 29.688053 ], [ 32.343750, 29.688053 ], [ 32.343750, 29.382175 ], [ 32.519531, 29.382175 ], [ 32.519531, 29.688053 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.519531, 29.382175 ], [ 32.519531, 28.921631 ], [ 32.695312, 28.921631 ], [ 32.695312, 28.613459 ], [ 32.871094, 28.613459 ], [ 32.871094, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 27.994401 ], [ 33.222656, 27.994401 ], [ 33.222656, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 27.371767 ], [ 33.574219, 27.371767 ], [ 33.574219, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.588527 ], [ 33.925781, 26.588527 ], [ 33.925781, 26.273714 ], [ 34.101562, 26.273714 ], [ 34.101562, 25.958045 ], [ 34.277344, 25.958045 ], [ 34.277344, 25.641526 ], [ 34.453125, 25.641526 ], [ 34.453125, 25.482951 ], [ 34.628906, 25.482951 ], [ 34.628906, 25.165173 ], [ 34.804688, 25.165173 ], [ 34.804688, 24.846565 ], [ 34.980469, 24.846565 ], [ 34.980469, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 24.367114 ], [ 35.332031, 24.367114 ], [ 35.332031, 24.206890 ], [ 35.507812, 24.206890 ], [ 35.507812, 23.885838 ], [ 35.683594, 23.885838 ], [ 35.683594, 23.725012 ], [ 35.507812, 23.725012 ], [ 35.507812, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.755921 ], [ 36.035156, 22.755921 ], [ 36.035156, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.431340 ], [ 36.562500, 22.431340 ], [ 36.562500, 22.268764 ], [ 36.738281, 22.268764 ], [ 36.738281, 22.105999 ], [ 36.914062, 22.105999 ], [ 36.914062, 21.943046 ], [ 24.960938, 21.943046 ], [ 24.960938, 29.535230 ], [ 24.785156, 29.535230 ], [ 24.785156, 30.297018 ], [ 24.960938, 30.297018 ], [ 24.960938, 30.751278 ], [ 24.785156, 30.751278 ], [ 24.785156, 31.052934 ], [ 24.960938, 31.052934 ], [ 24.960938, 31.353637 ], [ 25.136719, 31.353637 ], [ 25.136719, 31.503629 ], [ 26.015625, 31.503629 ], [ 26.015625, 31.653381 ], [ 26.718750, 31.653381 ], [ 26.718750, 31.503629 ], [ 27.070312, 31.503629 ], [ 27.070312, 31.353637 ], [ 27.597656, 31.353637 ], [ 27.597656, 31.203405 ], [ 28.125000, 31.203405 ], [ 28.125000, 31.052934 ], [ 28.476562, 31.052934 ], [ 28.476562, 30.902225 ], [ 29.179688, 30.902225 ], [ 29.179688, 31.052934 ], [ 29.531250, 31.052934 ], [ 29.531250, 31.203405 ], [ 29.882812, 31.203405 ], [ 29.882812, 31.353637 ], [ 30.058594, 31.353637 ], [ 30.058594, 31.503629 ], [ 31.640625, 31.503629 ], [ 31.640625, 31.353637 ], [ 31.816406, 31.353637 ], [ 31.816406, 31.052934 ], [ 32.167969, 31.052934 ], [ 32.167969, 31.203405 ], [ 32.519531, 31.203405 ], [ 32.519531, 31.052934 ], [ 33.222656, 31.052934 ], [ 33.222656, 30.902225 ], [ 33.925781, 30.902225 ], [ 33.925781, 31.052934 ], [ 34.277344, 31.052934 ], [ 34.277344, 30.902225 ], [ 34.453125, 30.902225 ], [ 34.453125, 30.448674 ], [ 34.628906, 30.448674 ], [ 34.628906, 30.145127 ], [ 34.804688, 30.145127 ], [ 34.804688, 29.688053 ], [ 34.980469, 29.688053 ], [ 34.980469, 29.382175 ], [ 34.804688, 29.382175 ], [ 34.804688, 29.075375 ], [ 34.628906, 29.075375 ], [ 34.628906, 28.613459 ], [ 34.453125, 28.613459 ], [ 34.453125, 28.149503 ], [ 34.277344, 28.149503 ], [ 34.277344, 27.839076 ], [ 34.101562, 27.839076 ], [ 34.101562, 27.683528 ], [ 33.750000, 27.683528 ], [ 33.750000, 27.839076 ], [ 33.574219, 27.839076 ], [ 33.574219, 27.994401 ], [ 33.398438, 27.994401 ], [ 33.398438, 28.304381 ], [ 33.222656, 28.304381 ], [ 33.222656, 28.459033 ], [ 33.046875, 28.459033 ], [ 33.046875, 28.767659 ], [ 32.871094, 28.767659 ], [ 32.871094, 29.075375 ], [ 32.695312, 29.075375 ], [ 32.695312, 29.382175 ], [ 32.519531, 29.382175 ] ], [ [ 32.519531, 29.382175 ], [ 32.519531, 29.688053 ], [ 32.343750, 29.688053 ], [ 32.343750, 29.382175 ], [ 32.519531, 29.382175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.562500, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 39.902344, 41.112469 ], [ 39.902344, 40.979898 ], [ 40.605469, 40.979898 ], [ 40.605469, 41.112469 ], [ 40.957031, 41.112469 ], [ 40.957031, 41.244772 ], [ 41.132812, 41.244772 ], [ 41.132812, 41.376809 ], [ 41.484375, 41.376809 ], [ 41.484375, 41.508577 ], [ 42.187500, 41.508577 ], [ 42.187500, 41.640078 ], [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.417969, 41.244772 ], [ 43.417969, 41.112469 ], [ 43.593750, 41.112469 ], [ 43.593750, 40.847060 ], [ 43.769531, 40.847060 ], [ 43.769531, 40.446947 ], [ 43.593750, 40.446947 ], [ 43.593750, 40.313043 ], [ 43.769531, 40.313043 ], [ 43.769531, 40.178873 ], [ 44.121094, 40.178873 ], [ 44.121094, 40.044438 ], [ 44.472656, 40.044438 ], [ 44.472656, 39.909736 ], [ 44.648438, 39.909736 ], [ 44.648438, 39.774769 ], [ 44.824219, 39.774769 ], [ 44.824219, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.504041 ], [ 44.296875, 39.504041 ], [ 44.296875, 39.368279 ], [ 44.121094, 39.368279 ], [ 44.121094, 39.095963 ], [ 44.296875, 39.095963 ], [ 44.296875, 38.548165 ], [ 44.472656, 38.548165 ], [ 44.472656, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 37.857507 ], [ 44.472656, 37.857507 ], [ 44.472656, 37.579413 ], [ 44.648438, 37.579413 ], [ 44.648438, 37.300275 ], [ 44.824219, 37.300275 ], [ 44.824219, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.121094, 37.020098 ], [ 44.121094, 37.160317 ], [ 43.945312, 37.160317 ], [ 43.945312, 37.300275 ], [ 43.242188, 37.300275 ], [ 43.242188, 37.439974 ], [ 42.714844, 37.439974 ], [ 42.714844, 37.300275 ], [ 42.539062, 37.300275 ], [ 42.539062, 37.160317 ], [ 41.835938, 37.160317 ], [ 41.835938, 37.020098 ], [ 40.781250, 37.020098 ], [ 40.781250, 37.160317 ], [ 40.605469, 37.160317 ], [ 40.605469, 37.020098 ], [ 40.253906, 37.020098 ], [ 40.253906, 36.879621 ], [ 39.902344, 36.879621 ], [ 39.902344, 36.738884 ], [ 38.320312, 36.738884 ], [ 38.320312, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 36.738884 ], [ 37.441406, 36.738884 ], [ 37.441406, 36.597889 ], [ 36.914062, 36.597889 ], [ 36.914062, 36.738884 ], [ 36.738281, 36.738884 ], [ 36.738281, 36.173357 ], [ 36.562500, 36.173357 ], [ 36.562500, 36.031332 ], [ 36.386719, 36.031332 ], [ 36.386719, 35.889050 ], [ 36.035156, 35.889050 ], [ 36.035156, 36.173357 ], [ 35.859375, 36.173357 ], [ 35.859375, 36.315125 ], [ 36.035156, 36.315125 ], [ 36.035156, 36.456636 ], [ 36.210938, 36.456636 ], [ 36.210938, 36.597889 ], [ 34.980469, 36.597889 ], [ 34.980469, 36.738884 ], [ 34.628906, 36.738884 ], [ 34.628906, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.456636 ], [ 34.277344, 36.456636 ], [ 34.277344, 36.173357 ], [ 32.343750, 36.173357 ], [ 32.343750, 36.315125 ], [ 31.992188, 36.315125 ], [ 31.992188, 36.456636 ], [ 31.640625, 36.456636 ], [ 31.640625, 36.597889 ], [ 30.937500, 36.597889 ], [ 30.937500, 36.738884 ], [ 30.585938, 36.738884 ], [ 30.585938, 36.456636 ], [ 30.410156, 36.456636 ], [ 30.410156, 36.315125 ], [ 30.234375, 36.315125 ], [ 30.234375, 36.173357 ], [ 29.531250, 36.173357 ], [ 29.531250, 36.315125 ], [ 29.179688, 36.315125 ], [ 29.179688, 36.456636 ], [ 29.003906, 36.456636 ], [ 29.003906, 36.597889 ], [ 28.652344, 36.597889 ], [ 28.652344, 36.738884 ], [ 28.300781, 36.738884 ], [ 28.300781, 36.597889 ], [ 27.597656, 36.597889 ], [ 27.597656, 36.738884 ], [ 27.421875, 36.738884 ], [ 27.421875, 37.160317 ], [ 27.246094, 37.160317 ], [ 27.246094, 37.439974 ], [ 27.070312, 37.439974 ], [ 27.070312, 37.718590 ], [ 26.894531, 37.718590 ], [ 26.894531, 37.857507 ], [ 26.718750, 37.857507 ], [ 26.718750, 37.996163 ], [ 26.542969, 37.996163 ], [ 26.542969, 38.134557 ], [ 26.367188, 38.134557 ], [ 26.367188, 38.410558 ], [ 26.542969, 38.410558 ], [ 26.542969, 38.685510 ], [ 26.718750, 38.685510 ], [ 26.718750, 38.959409 ], [ 26.542969, 38.959409 ], [ 26.542969, 39.232253 ], [ 26.367188, 39.232253 ], [ 26.367188, 39.368279 ], [ 26.191406, 39.368279 ], [ 26.191406, 39.504041 ], [ 26.367188, 39.504041 ], [ 26.367188, 39.639538 ], [ 26.542969, 39.639538 ], [ 26.542969, 39.774769 ], [ 26.718750, 39.774769 ], [ 26.718750, 40.044438 ], [ 26.894531, 40.044438 ], [ 26.894531, 40.178873 ], [ 27.070312, 40.178873 ], [ 27.070312, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.580585 ], [ 29.003906, 40.580585 ], [ 29.003906, 40.979898 ], [ 29.179688, 40.979898 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 32.167969, 41.508577 ], [ 32.167969, 41.640078 ], [ 36.210938, 41.640078 ], [ 36.210938, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.376809 ] ] ], [ [ [ 29.003906, 41.112469 ], [ 28.300781, 41.112469 ], [ 28.300781, 40.979898 ], [ 27.597656, 40.979898 ], [ 27.597656, 40.847060 ], [ 27.421875, 40.847060 ], [ 27.421875, 40.713956 ], [ 27.246094, 40.713956 ], [ 27.246094, 40.580585 ], [ 27.070312, 40.580585 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.313043 ], [ 26.542969, 40.313043 ], [ 26.542969, 40.178873 ], [ 26.191406, 40.178873 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.367188, 40.847060 ], [ 26.367188, 41.244772 ], [ 26.542969, 41.244772 ], [ 26.542969, 41.640078 ], [ 28.125000, 41.640078 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 29.003906, 41.244772 ], [ 29.003906, 41.112469 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.417969, 41.244772 ], [ 43.417969, 41.112469 ], [ 43.593750, 41.112469 ], [ 43.593750, 40.847060 ], [ 43.769531, 40.847060 ], [ 43.769531, 40.446947 ], [ 43.593750, 40.446947 ], [ 43.593750, 40.313043 ], [ 43.769531, 40.313043 ], [ 43.769531, 40.178873 ], [ 44.121094, 40.178873 ], [ 44.121094, 40.044438 ], [ 44.472656, 40.044438 ], [ 44.472656, 39.909736 ], [ 44.648438, 39.909736 ], [ 44.648438, 39.774769 ], [ 44.824219, 39.774769 ], [ 44.824219, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.504041 ], [ 44.296875, 39.504041 ], [ 44.296875, 39.368279 ], [ 44.121094, 39.368279 ], [ 44.121094, 39.095963 ], [ 44.296875, 39.095963 ], [ 44.296875, 38.548165 ], [ 44.472656, 38.548165 ], [ 44.472656, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 37.857507 ], [ 44.472656, 37.857507 ], [ 44.472656, 37.579413 ], [ 44.648438, 37.579413 ], [ 44.648438, 37.300275 ], [ 44.824219, 37.300275 ], [ 44.824219, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.121094, 37.020098 ], [ 44.121094, 37.160317 ], [ 43.945312, 37.160317 ], [ 43.945312, 37.300275 ], [ 43.242188, 37.300275 ], [ 43.242188, 37.439974 ], [ 42.714844, 37.439974 ], [ 42.714844, 37.300275 ], [ 42.539062, 37.300275 ], [ 42.539062, 37.160317 ], [ 41.835938, 37.160317 ], [ 41.835938, 37.020098 ], [ 40.781250, 37.020098 ], [ 40.781250, 37.160317 ], [ 40.605469, 37.160317 ], [ 40.605469, 37.020098 ], [ 40.253906, 37.020098 ], [ 40.253906, 36.879621 ], [ 39.902344, 36.879621 ], [ 39.902344, 36.738884 ], [ 38.320312, 36.738884 ], [ 38.320312, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 36.738884 ], [ 37.441406, 36.738884 ], [ 37.441406, 36.597889 ], [ 36.914062, 36.597889 ], [ 36.914062, 36.738884 ], [ 36.738281, 36.738884 ], [ 36.738281, 36.173357 ], [ 36.562500, 36.173357 ], [ 36.562500, 36.031332 ], [ 36.386719, 36.031332 ], [ 36.386719, 35.889050 ], [ 36.035156, 35.889050 ], [ 36.035156, 36.173357 ], [ 35.859375, 36.173357 ], [ 35.859375, 36.315125 ], [ 36.035156, 36.315125 ], [ 36.035156, 36.456636 ], [ 36.210938, 36.456636 ], [ 36.210938, 36.597889 ], [ 34.980469, 36.597889 ], [ 34.980469, 36.738884 ], [ 34.628906, 36.738884 ], [ 34.628906, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.456636 ], [ 34.277344, 36.456636 ], [ 34.277344, 36.173357 ], [ 32.343750, 36.173357 ], [ 32.343750, 36.315125 ], [ 31.992188, 36.315125 ], [ 31.992188, 36.456636 ], [ 31.640625, 36.456636 ], [ 31.640625, 36.597889 ], [ 30.937500, 36.597889 ], [ 30.937500, 36.738884 ], [ 30.585938, 36.738884 ], [ 30.585938, 36.456636 ], [ 30.410156, 36.456636 ], [ 30.410156, 36.315125 ], [ 30.234375, 36.315125 ], [ 30.234375, 36.173357 ], [ 29.531250, 36.173357 ], [ 29.531250, 36.315125 ], [ 29.179688, 36.315125 ], [ 29.179688, 36.456636 ], [ 29.003906, 36.456636 ], [ 29.003906, 36.597889 ], [ 28.652344, 36.597889 ], [ 28.652344, 36.738884 ], [ 28.300781, 36.738884 ], [ 28.300781, 36.597889 ], [ 27.597656, 36.597889 ], [ 27.597656, 36.738884 ], [ 27.421875, 36.738884 ], [ 27.421875, 37.160317 ], [ 27.246094, 37.160317 ], [ 27.246094, 37.439974 ], [ 27.070312, 37.439974 ], [ 27.070312, 37.718590 ], [ 26.894531, 37.718590 ], [ 26.894531, 37.857507 ], [ 26.718750, 37.857507 ], [ 26.718750, 37.996163 ], [ 26.542969, 37.996163 ], [ 26.542969, 38.134557 ], [ 26.367188, 38.134557 ], [ 26.367188, 38.410558 ], [ 26.542969, 38.410558 ], [ 26.542969, 38.685510 ], [ 26.718750, 38.685510 ], [ 26.718750, 38.959409 ], [ 26.542969, 38.959409 ], [ 26.542969, 39.232253 ], [ 26.367188, 39.232253 ], [ 26.367188, 39.368279 ], [ 26.191406, 39.368279 ], [ 26.191406, 39.504041 ], [ 26.367188, 39.504041 ], [ 26.367188, 39.639538 ], [ 26.542969, 39.639538 ], [ 26.542969, 39.774769 ], [ 26.718750, 39.774769 ], [ 26.718750, 40.044438 ], [ 26.894531, 40.044438 ], [ 26.894531, 40.178873 ], [ 27.070312, 40.178873 ], [ 27.070312, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.580585 ], [ 29.003906, 40.580585 ], [ 29.003906, 40.979898 ], [ 29.179688, 40.979898 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 32.167969, 41.508577 ], [ 32.167969, 41.640078 ], [ 36.210938, 41.640078 ], [ 36.210938, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 39.902344, 41.112469 ], [ 39.902344, 40.979898 ], [ 40.605469, 40.979898 ], [ 40.605469, 41.112469 ], [ 40.957031, 41.112469 ], [ 40.957031, 41.244772 ], [ 41.132812, 41.244772 ], [ 41.132812, 41.376809 ], [ 41.484375, 41.376809 ], [ 41.484375, 41.508577 ], [ 42.187500, 41.508577 ], [ 42.187500, 41.640078 ], [ 42.539062, 41.640078 ] ] ], [ [ [ 28.125000, 41.640078 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 29.003906, 41.244772 ], [ 29.003906, 41.112469 ], [ 28.300781, 41.112469 ], [ 28.300781, 40.979898 ], [ 27.597656, 40.979898 ], [ 27.597656, 40.847060 ], [ 27.421875, 40.847060 ], [ 27.421875, 40.713956 ], [ 27.246094, 40.713956 ], [ 27.246094, 40.580585 ], [ 27.070312, 40.580585 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.313043 ], [ 26.542969, 40.313043 ], [ 26.542969, 40.178873 ], [ 26.191406, 40.178873 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.367188, 40.847060 ], [ 26.367188, 41.244772 ], [ 26.542969, 41.244772 ], [ 26.542969, 41.640078 ], [ 28.125000, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 34.307144 ], [ 36.562500, 34.307144 ], [ 36.562500, 34.016242 ], [ 36.210938, 34.016242 ], [ 36.210938, 33.870416 ], [ 36.035156, 33.870416 ], [ 36.035156, 33.578015 ], [ 35.859375, 33.578015 ], [ 35.859375, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.507812, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 33.284620 ], [ 35.332031, 33.284620 ], [ 35.332031, 33.578015 ], [ 35.507812, 33.578015 ], [ 35.507812, 33.870416 ], [ 35.683594, 33.870416 ], [ 35.683594, 34.161818 ], [ 35.859375, 34.161818 ], [ 35.859375, 34.452218 ], [ 36.035156, 34.452218 ], [ 36.035156, 34.597042 ], [ 36.386719, 34.597042 ], [ 36.386719, 34.307144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 34.597042 ], [ 36.386719, 34.307144 ], [ 36.562500, 34.307144 ], [ 36.562500, 34.016242 ], [ 36.210938, 34.016242 ], [ 36.210938, 33.870416 ], [ 36.035156, 33.870416 ], [ 36.035156, 33.578015 ], [ 35.859375, 33.578015 ], [ 35.859375, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.507812, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 33.284620 ], [ 35.332031, 33.284620 ], [ 35.332031, 33.578015 ], [ 35.507812, 33.578015 ], [ 35.507812, 33.870416 ], [ 35.683594, 33.870416 ], [ 35.683594, 34.161818 ], [ 35.859375, 34.161818 ], [ 35.859375, 34.452218 ], [ 36.035156, 34.452218 ], [ 36.035156, 34.597042 ], [ 36.386719, 34.597042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 37.020098 ], [ 41.835938, 37.020098 ], [ 41.835938, 37.160317 ], [ 42.363281, 37.160317 ], [ 42.363281, 37.020098 ], [ 42.187500, 37.020098 ], [ 42.187500, 36.879621 ], [ 42.011719, 36.879621 ], [ 42.011719, 36.597889 ], [ 41.835938, 36.597889 ], [ 41.835938, 36.456636 ], [ 41.484375, 36.456636 ], [ 41.484375, 36.315125 ], [ 41.308594, 36.315125 ], [ 41.308594, 35.317366 ], [ 41.132812, 35.317366 ], [ 41.132812, 34.741612 ], [ 40.957031, 34.741612 ], [ 40.957031, 34.307144 ], [ 40.605469, 34.307144 ], [ 40.605469, 34.161818 ], [ 40.253906, 34.161818 ], [ 40.253906, 34.016242 ], [ 40.078125, 34.016242 ], [ 40.078125, 33.870416 ], [ 39.726562, 33.870416 ], [ 39.726562, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.578015 ], [ 39.023438, 33.578015 ], [ 39.023438, 33.431441 ], [ 38.847656, 33.431441 ], [ 38.847656, 33.284620 ], [ 38.496094, 33.284620 ], [ 38.496094, 33.137551 ], [ 38.320312, 33.137551 ], [ 38.320312, 32.990236 ], [ 38.144531, 32.990236 ], [ 38.144531, 32.842674 ], [ 37.792969, 32.842674 ], [ 37.792969, 32.694866 ], [ 37.617188, 32.694866 ], [ 37.617188, 32.546813 ], [ 37.441406, 32.546813 ], [ 37.441406, 32.398516 ], [ 37.089844, 32.398516 ], [ 37.089844, 32.249974 ], [ 36.562500, 32.249974 ], [ 36.562500, 32.398516 ], [ 36.210938, 32.398516 ], [ 36.210938, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.578015 ], [ 36.035156, 33.578015 ], [ 36.035156, 33.870416 ], [ 36.210938, 33.870416 ], [ 36.210938, 34.016242 ], [ 36.562500, 34.016242 ], [ 36.562500, 34.307144 ], [ 36.386719, 34.307144 ], [ 36.386719, 34.597042 ], [ 36.035156, 34.597042 ], [ 36.035156, 35.029996 ], [ 35.859375, 35.029996 ], [ 35.859375, 35.460670 ], [ 36.035156, 35.460670 ], [ 36.035156, 35.746512 ], [ 36.210938, 35.746512 ], [ 36.210938, 35.889050 ], [ 36.386719, 35.889050 ], [ 36.386719, 36.031332 ], [ 36.562500, 36.031332 ], [ 36.562500, 36.173357 ], [ 36.738281, 36.173357 ], [ 36.738281, 36.738884 ], [ 36.914062, 36.738884 ], [ 36.914062, 36.597889 ], [ 37.441406, 36.597889 ], [ 37.441406, 36.738884 ], [ 37.968750, 36.738884 ], [ 37.968750, 36.879621 ], [ 38.320312, 36.879621 ], [ 38.320312, 36.738884 ], [ 39.902344, 36.738884 ], [ 39.902344, 36.879621 ], [ 40.253906, 36.879621 ], [ 40.253906, 37.020098 ], [ 40.605469, 37.020098 ], [ 40.605469, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 37.020098 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 37.160317 ], [ 42.363281, 37.020098 ], [ 42.187500, 37.020098 ], [ 42.187500, 36.879621 ], [ 42.011719, 36.879621 ], [ 42.011719, 36.597889 ], [ 41.835938, 36.597889 ], [ 41.835938, 36.456636 ], [ 41.484375, 36.456636 ], [ 41.484375, 36.315125 ], [ 41.308594, 36.315125 ], [ 41.308594, 35.317366 ], [ 41.132812, 35.317366 ], [ 41.132812, 34.741612 ], [ 40.957031, 34.741612 ], [ 40.957031, 34.307144 ], [ 40.605469, 34.307144 ], [ 40.605469, 34.161818 ], [ 40.253906, 34.161818 ], [ 40.253906, 34.016242 ], [ 40.078125, 34.016242 ], [ 40.078125, 33.870416 ], [ 39.726562, 33.870416 ], [ 39.726562, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.578015 ], [ 39.023438, 33.578015 ], [ 39.023438, 33.431441 ], [ 38.847656, 33.431441 ], [ 38.847656, 33.284620 ], [ 38.496094, 33.284620 ], [ 38.496094, 33.137551 ], [ 38.320312, 33.137551 ], [ 38.320312, 32.990236 ], [ 38.144531, 32.990236 ], [ 38.144531, 32.842674 ], [ 37.792969, 32.842674 ], [ 37.792969, 32.694866 ], [ 37.617188, 32.694866 ], [ 37.617188, 32.546813 ], [ 37.441406, 32.546813 ], [ 37.441406, 32.398516 ], [ 37.089844, 32.398516 ], [ 37.089844, 32.249974 ], [ 36.562500, 32.249974 ], [ 36.562500, 32.398516 ], [ 36.210938, 32.398516 ], [ 36.210938, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.578015 ], [ 36.035156, 33.578015 ], [ 36.035156, 33.870416 ], [ 36.210938, 33.870416 ], [ 36.210938, 34.016242 ], [ 36.562500, 34.016242 ], [ 36.562500, 34.307144 ], [ 36.386719, 34.307144 ], [ 36.386719, 34.597042 ], [ 36.035156, 34.597042 ], [ 36.035156, 35.029996 ], [ 35.859375, 35.029996 ], [ 35.859375, 35.460670 ], [ 36.035156, 35.460670 ], [ 36.035156, 35.746512 ], [ 36.210938, 35.746512 ], [ 36.210938, 35.889050 ], [ 36.386719, 35.889050 ], [ 36.386719, 36.031332 ], [ 36.562500, 36.031332 ], [ 36.562500, 36.173357 ], [ 36.738281, 36.173357 ], [ 36.738281, 36.738884 ], [ 36.914062, 36.738884 ], [ 36.914062, 36.597889 ], [ 37.441406, 36.597889 ], [ 37.441406, 36.738884 ], [ 37.968750, 36.738884 ], [ 37.968750, 36.879621 ], [ 38.320312, 36.879621 ], [ 38.320312, 36.738884 ], [ 39.902344, 36.738884 ], [ 39.902344, 36.879621 ], [ 40.253906, 36.879621 ], [ 40.253906, 37.020098 ], [ 40.605469, 37.020098 ], [ 40.605469, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 37.020098 ], [ 41.835938, 37.020098 ], [ 41.835938, 37.160317 ], [ 42.363281, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.945312, 37.160317 ], [ 44.121094, 37.160317 ], [ 44.121094, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.160317 ], [ 44.824219, 37.160317 ], [ 44.824219, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.597889 ], [ 45.175781, 36.597889 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 35.889050 ], [ 45.703125, 35.889050 ], [ 45.703125, 35.746512 ], [ 45.878906, 35.746512 ], [ 45.878906, 34.741612 ], [ 45.703125, 34.741612 ], [ 45.703125, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.161818 ], [ 45.351562, 34.161818 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.578015 ], [ 45.703125, 33.578015 ], [ 45.703125, 33.284620 ], [ 45.878906, 33.284620 ], [ 45.878906, 29.075375 ], [ 45.175781, 29.075375 ], [ 45.175781, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.296875, 29.382175 ], [ 44.296875, 29.535230 ], [ 43.945312, 29.535230 ], [ 43.945312, 29.688053 ], [ 43.769531, 29.688053 ], [ 43.769531, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 29.993002 ], [ 43.417969, 29.993002 ], [ 43.417969, 30.145127 ], [ 43.066406, 30.145127 ], [ 43.066406, 30.297018 ], [ 42.890625, 30.297018 ], [ 42.890625, 30.448674 ], [ 42.714844, 30.448674 ], [ 42.714844, 30.600094 ], [ 42.539062, 30.600094 ], [ 42.539062, 30.751278 ], [ 42.363281, 30.751278 ], [ 42.363281, 30.902225 ], [ 42.011719, 30.902225 ], [ 42.011719, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 31.203405 ], [ 41.660156, 31.203405 ], [ 41.660156, 31.353637 ], [ 41.308594, 31.353637 ], [ 41.308594, 31.503629 ], [ 40.957031, 31.503629 ], [ 40.957031, 31.653381 ], [ 40.781250, 31.653381 ], [ 40.781250, 31.802893 ], [ 40.429688, 31.802893 ], [ 40.429688, 31.952162 ], [ 39.726562, 31.952162 ], [ 39.726562, 32.101190 ], [ 39.199219, 32.101190 ], [ 39.199219, 32.398516 ], [ 39.023438, 32.398516 ], [ 39.023438, 32.990236 ], [ 38.847656, 32.990236 ], [ 38.847656, 33.431441 ], [ 39.023438, 33.431441 ], [ 39.023438, 33.578015 ], [ 39.375000, 33.578015 ], [ 39.375000, 33.724340 ], [ 39.726562, 33.724340 ], [ 39.726562, 33.870416 ], [ 40.078125, 33.870416 ], [ 40.078125, 34.016242 ], [ 40.253906, 34.016242 ], [ 40.253906, 34.161818 ], [ 40.605469, 34.161818 ], [ 40.605469, 34.307144 ], [ 40.957031, 34.307144 ], [ 40.957031, 34.741612 ], [ 41.132812, 34.741612 ], [ 41.132812, 35.317366 ], [ 41.308594, 35.317366 ], [ 41.308594, 36.315125 ], [ 41.484375, 36.315125 ], [ 41.484375, 36.456636 ], [ 41.835938, 36.456636 ], [ 41.835938, 36.597889 ], [ 42.011719, 36.597889 ], [ 42.011719, 36.879621 ], [ 42.187500, 36.879621 ], [ 42.187500, 37.020098 ], [ 42.363281, 37.020098 ], [ 42.363281, 37.160317 ], [ 42.539062, 37.160317 ], [ 42.539062, 37.300275 ], [ 42.714844, 37.300275 ], [ 42.714844, 37.439974 ], [ 43.242188, 37.439974 ], [ 43.242188, 37.300275 ], [ 43.945312, 37.300275 ], [ 43.945312, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 37.439974 ], [ 43.242188, 37.300275 ], [ 43.945312, 37.300275 ], [ 43.945312, 37.160317 ], [ 44.121094, 37.160317 ], [ 44.121094, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.160317 ], [ 44.824219, 37.160317 ], [ 44.824219, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.597889 ], [ 45.175781, 36.597889 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 35.889050 ], [ 45.703125, 35.889050 ], [ 45.703125, 35.746512 ], [ 45.878906, 35.746512 ], [ 45.878906, 34.741612 ], [ 45.703125, 34.741612 ], [ 45.703125, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.161818 ], [ 45.351562, 34.161818 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.578015 ], [ 45.703125, 33.578015 ], [ 45.703125, 33.284620 ], [ 45.878906, 33.284620 ], [ 45.878906, 29.075375 ], [ 45.175781, 29.075375 ], [ 45.175781, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.296875, 29.382175 ], [ 44.296875, 29.535230 ], [ 43.945312, 29.535230 ], [ 43.945312, 29.688053 ], [ 43.769531, 29.688053 ], [ 43.769531, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 29.993002 ], [ 43.417969, 29.993002 ], [ 43.417969, 30.145127 ], [ 43.066406, 30.145127 ], [ 43.066406, 30.297018 ], [ 42.890625, 30.297018 ], [ 42.890625, 30.448674 ], [ 42.714844, 30.448674 ], [ 42.714844, 30.600094 ], [ 42.539062, 30.600094 ], [ 42.539062, 30.751278 ], [ 42.363281, 30.751278 ], [ 42.363281, 30.902225 ], [ 42.011719, 30.902225 ], [ 42.011719, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 31.203405 ], [ 41.660156, 31.203405 ], [ 41.660156, 31.353637 ], [ 41.308594, 31.353637 ], [ 41.308594, 31.503629 ], [ 40.957031, 31.503629 ], [ 40.957031, 31.653381 ], [ 40.781250, 31.653381 ], [ 40.781250, 31.802893 ], [ 40.429688, 31.802893 ], [ 40.429688, 31.952162 ], [ 39.726562, 31.952162 ], [ 39.726562, 32.101190 ], [ 39.199219, 32.101190 ], [ 39.199219, 32.398516 ], [ 39.023438, 32.398516 ], [ 39.023438, 32.990236 ], [ 38.847656, 32.990236 ], [ 38.847656, 33.431441 ], [ 39.023438, 33.431441 ], [ 39.023438, 33.578015 ], [ 39.375000, 33.578015 ], [ 39.375000, 33.724340 ], [ 39.726562, 33.724340 ], [ 39.726562, 33.870416 ], [ 40.078125, 33.870416 ], [ 40.078125, 34.016242 ], [ 40.253906, 34.016242 ], [ 40.253906, 34.161818 ], [ 40.605469, 34.161818 ], [ 40.605469, 34.307144 ], [ 40.957031, 34.307144 ], [ 40.957031, 34.741612 ], [ 41.132812, 34.741612 ], [ 41.132812, 35.317366 ], [ 41.308594, 35.317366 ], [ 41.308594, 36.315125 ], [ 41.484375, 36.315125 ], [ 41.484375, 36.456636 ], [ 41.835938, 36.456636 ], [ 41.835938, 36.597889 ], [ 42.011719, 36.597889 ], [ 42.011719, 36.879621 ], [ 42.187500, 36.879621 ], [ 42.187500, 37.020098 ], [ 42.363281, 37.020098 ], [ 42.363281, 37.160317 ], [ 42.539062, 37.160317 ], [ 42.539062, 37.300275 ], [ 42.714844, 37.300275 ], [ 42.714844, 37.439974 ], [ 43.242188, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.332031, 31.203405 ], [ 35.507812, 31.203405 ], [ 35.507812, 30.751278 ], [ 35.332031, 30.751278 ], [ 35.332031, 30.297018 ], [ 35.156250, 30.297018 ], [ 35.156250, 29.688053 ], [ 34.804688, 29.688053 ], [ 34.804688, 30.145127 ], [ 34.628906, 30.145127 ], [ 34.628906, 30.448674 ], [ 34.453125, 30.448674 ], [ 34.453125, 30.902225 ], [ 34.277344, 30.902225 ], [ 34.277344, 31.203405 ], [ 34.453125, 31.203405 ], [ 34.453125, 31.353637 ], [ 34.628906, 31.353637 ], [ 34.628906, 31.503629 ], [ 34.453125, 31.503629 ], [ 34.453125, 31.653381 ], [ 34.628906, 31.653381 ], [ 34.628906, 31.952162 ], [ 34.804688, 31.952162 ], [ 34.804688, 32.398516 ], [ 34.980469, 32.398516 ], [ 34.980469, 32.990236 ], [ 35.156250, 32.990236 ], [ 35.156250, 33.137551 ], [ 35.507812, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.859375, 33.284620 ], [ 35.859375, 32.694866 ], [ 35.683594, 32.694866 ], [ 35.683594, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.398516 ], [ 35.156250, 32.101190 ], [ 34.980469, 32.101190 ], [ 34.980469, 31.802893 ], [ 35.156250, 31.802893 ], [ 35.156250, 31.653381 ], [ 34.980469, 31.653381 ], [ 34.980469, 31.353637 ], [ 35.332031, 31.353637 ], [ 35.332031, 31.203405 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 33.284620 ], [ 35.859375, 32.694866 ], [ 35.683594, 32.694866 ], [ 35.683594, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.398516 ], [ 35.156250, 32.101190 ], [ 34.980469, 32.101190 ], [ 34.980469, 31.802893 ], [ 35.156250, 31.802893 ], [ 35.156250, 31.653381 ], [ 34.980469, 31.653381 ], [ 34.980469, 31.353637 ], [ 35.332031, 31.353637 ], [ 35.332031, 31.203405 ], [ 35.507812, 31.203405 ], [ 35.507812, 30.751278 ], [ 35.332031, 30.751278 ], [ 35.332031, 30.297018 ], [ 35.156250, 30.297018 ], [ 35.156250, 29.688053 ], [ 34.804688, 29.688053 ], [ 34.804688, 30.145127 ], [ 34.628906, 30.145127 ], [ 34.628906, 30.448674 ], [ 34.453125, 30.448674 ], [ 34.453125, 30.902225 ], [ 34.277344, 30.902225 ], [ 34.277344, 31.203405 ], [ 34.453125, 31.203405 ], [ 34.453125, 31.353637 ], [ 34.628906, 31.353637 ], [ 34.628906, 31.503629 ], [ 34.453125, 31.503629 ], [ 34.453125, 31.653381 ], [ 34.628906, 31.653381 ], [ 34.628906, 31.952162 ], [ 34.804688, 31.952162 ], [ 34.804688, 32.398516 ], [ 34.980469, 32.398516 ], [ 34.980469, 32.990236 ], [ 35.156250, 32.990236 ], [ 35.156250, 33.137551 ], [ 35.507812, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.859375, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 31.653381 ], [ 35.332031, 31.653381 ], [ 35.332031, 31.353637 ], [ 34.980469, 31.353637 ], [ 34.980469, 31.653381 ], [ 35.156250, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.980469, 31.802893 ], [ 34.980469, 32.101190 ], [ 35.156250, 32.101190 ], [ 35.156250, 32.398516 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.653381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.653381 ], [ 35.332031, 31.653381 ], [ 35.332031, 31.353637 ], [ 34.980469, 31.353637 ], [ 34.980469, 31.653381 ], [ 35.156250, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.980469, 31.802893 ], [ 34.980469, 32.101190 ], [ 35.156250, 32.101190 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.023438, 32.398516 ], [ 39.199219, 32.398516 ], [ 39.199219, 31.952162 ], [ 38.847656, 31.952162 ], [ 38.847656, 31.802893 ], [ 38.144531, 31.802893 ], [ 38.144531, 31.653381 ], [ 37.441406, 31.653381 ], [ 37.441406, 31.503629 ], [ 37.089844, 31.503629 ], [ 37.089844, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.052934 ], [ 37.441406, 31.052934 ], [ 37.441406, 30.902225 ], [ 37.617188, 30.902225 ], [ 37.617188, 30.751278 ], [ 37.792969, 30.751278 ], [ 37.792969, 30.448674 ], [ 37.968750, 30.448674 ], [ 37.968750, 30.297018 ], [ 37.617188, 30.297018 ], [ 37.617188, 30.145127 ], [ 37.441406, 30.145127 ], [ 37.441406, 29.993002 ], [ 37.265625, 29.993002 ], [ 37.265625, 29.840644 ], [ 36.738281, 29.840644 ], [ 36.738281, 29.688053 ], [ 36.562500, 29.688053 ], [ 36.562500, 29.382175 ], [ 36.210938, 29.382175 ], [ 36.210938, 29.228890 ], [ 35.332031, 29.228890 ], [ 35.332031, 29.382175 ], [ 34.980469, 29.382175 ], [ 34.980469, 29.688053 ], [ 35.156250, 29.688053 ], [ 35.156250, 30.297018 ], [ 35.332031, 30.297018 ], [ 35.332031, 30.751278 ], [ 35.507812, 30.751278 ], [ 35.507812, 31.203405 ], [ 35.332031, 31.203405 ], [ 35.332031, 31.653381 ], [ 35.507812, 31.653381 ], [ 35.507812, 32.546813 ], [ 35.683594, 32.546813 ], [ 35.683594, 32.694866 ], [ 35.859375, 32.694866 ], [ 35.859375, 32.546813 ], [ 36.210938, 32.546813 ], [ 36.210938, 32.398516 ], [ 36.562500, 32.398516 ], [ 36.562500, 32.249974 ], [ 37.089844, 32.249974 ], [ 37.089844, 32.398516 ], [ 37.441406, 32.398516 ], [ 37.441406, 32.546813 ], [ 37.617188, 32.546813 ], [ 37.617188, 32.694866 ], [ 37.792969, 32.694866 ], [ 37.792969, 32.842674 ], [ 38.144531, 32.842674 ], [ 38.144531, 32.990236 ], [ 38.320312, 32.990236 ], [ 38.320312, 33.137551 ], [ 38.496094, 33.137551 ], [ 38.496094, 33.284620 ], [ 38.847656, 33.284620 ], [ 38.847656, 32.990236 ], [ 39.023438, 32.990236 ], [ 39.023438, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.847656, 33.284620 ], [ 38.847656, 32.990236 ], [ 39.023438, 32.990236 ], [ 39.023438, 32.398516 ], [ 39.199219, 32.398516 ], [ 39.199219, 31.952162 ], [ 38.847656, 31.952162 ], [ 38.847656, 31.802893 ], [ 38.144531, 31.802893 ], [ 38.144531, 31.653381 ], [ 37.441406, 31.653381 ], [ 37.441406, 31.503629 ], [ 37.089844, 31.503629 ], [ 37.089844, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.052934 ], [ 37.441406, 31.052934 ], [ 37.441406, 30.902225 ], [ 37.617188, 30.902225 ], [ 37.617188, 30.751278 ], [ 37.792969, 30.751278 ], [ 37.792969, 30.448674 ], [ 37.968750, 30.448674 ], [ 37.968750, 30.297018 ], [ 37.617188, 30.297018 ], [ 37.617188, 30.145127 ], [ 37.441406, 30.145127 ], [ 37.441406, 29.993002 ], [ 37.265625, 29.993002 ], [ 37.265625, 29.840644 ], [ 36.738281, 29.840644 ], [ 36.738281, 29.688053 ], [ 36.562500, 29.688053 ], [ 36.562500, 29.382175 ], [ 36.210938, 29.382175 ], [ 36.210938, 29.228890 ], [ 35.332031, 29.228890 ], [ 35.332031, 29.382175 ], [ 34.980469, 29.382175 ], [ 34.980469, 29.688053 ], [ 35.156250, 29.688053 ], [ 35.156250, 30.297018 ], [ 35.332031, 30.297018 ], [ 35.332031, 30.751278 ], [ 35.507812, 30.751278 ], [ 35.507812, 31.203405 ], [ 35.332031, 31.203405 ], [ 35.332031, 31.653381 ], [ 35.507812, 31.653381 ], [ 35.507812, 32.546813 ], [ 35.683594, 32.546813 ], [ 35.683594, 32.694866 ], [ 35.859375, 32.694866 ], [ 35.859375, 32.546813 ], [ 36.210938, 32.546813 ], [ 36.210938, 32.398516 ], [ 36.562500, 32.398516 ], [ 36.562500, 32.249974 ], [ 37.089844, 32.249974 ], [ 37.089844, 32.398516 ], [ 37.441406, 32.398516 ], [ 37.441406, 32.546813 ], [ 37.617188, 32.546813 ], [ 37.617188, 32.694866 ], [ 37.792969, 32.694866 ], [ 37.792969, 32.842674 ], [ 38.144531, 32.842674 ], [ 38.144531, 32.990236 ], [ 38.320312, 32.990236 ], [ 38.320312, 33.137551 ], [ 38.496094, 33.137551 ], [ 38.496094, 33.284620 ], [ 38.847656, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.574219, 10.314919 ], [ 33.574219, 10.487812 ], [ 33.222656, 10.487812 ], [ 33.222656, 11.005904 ], [ 33.046875, 11.005904 ], [ 33.046875, 11.867351 ], [ 33.222656, 11.867351 ], [ 33.222656, 12.211180 ], [ 32.695312, 12.211180 ], [ 32.695312, 12.039321 ], [ 31.992188, 12.039321 ], [ 31.992188, 11.867351 ], [ 32.167969, 11.867351 ], [ 32.167969, 11.695273 ], [ 32.343750, 11.695273 ], [ 32.343750, 10.833306 ], [ 32.167969, 10.833306 ], [ 32.167969, 10.660608 ], [ 31.992188, 10.660608 ], [ 31.992188, 10.487812 ], [ 31.816406, 10.487812 ], [ 31.816406, 10.314919 ], [ 31.640625, 10.314919 ], [ 31.640625, 10.141932 ], [ 31.464844, 10.141932 ], [ 31.464844, 9.795678 ], [ 31.113281, 9.795678 ], [ 31.113281, 9.622414 ], [ 30.585938, 9.622414 ], [ 30.585938, 9.795678 ], [ 30.410156, 9.795678 ], [ 30.410156, 9.968851 ], [ 30.234375, 9.968851 ], [ 30.234375, 10.141932 ], [ 30.058594, 10.141932 ], [ 30.058594, 10.314919 ], [ 29.882812, 10.314919 ], [ 29.882812, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.795678 ], [ 29.355469, 9.795678 ], [ 29.355469, 9.622414 ], [ 29.003906, 9.622414 ], [ 29.003906, 9.449062 ], [ 27.773438, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.622414 ], [ 27.070312, 9.449062 ], [ 26.542969, 9.449062 ], [ 26.542969, 9.622414 ], [ 26.367188, 9.622414 ], [ 26.367188, 9.795678 ], [ 26.191406, 9.795678 ], [ 26.191406, 9.968851 ], [ 26.015625, 9.968851 ], [ 26.015625, 10.314919 ], [ 25.839844, 10.314919 ], [ 25.839844, 10.487812 ], [ 25.664062, 10.487812 ], [ 25.664062, 10.314919 ], [ 25.136719, 10.314919 ], [ 25.136719, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 9.795678 ], [ 24.785156, 9.795678 ], [ 24.785156, 9.275622 ], [ 24.609375, 9.275622 ], [ 24.609375, 8.754795 ], [ 24.257812, 8.754795 ], [ 24.257812, 8.581021 ], [ 23.554688, 8.581021 ], [ 23.554688, 8.754795 ], [ 23.378906, 8.754795 ], [ 23.378906, 9.449062 ], [ 23.554688, 9.449062 ], [ 23.554688, 10.141932 ], [ 23.378906, 10.141932 ], [ 23.378906, 10.314919 ], [ 23.203125, 10.314919 ], [ 23.203125, 10.487812 ], [ 23.027344, 10.487812 ], [ 23.027344, 10.833306 ], [ 22.851562, 10.833306 ], [ 22.851562, 11.350797 ], [ 22.675781, 11.350797 ], [ 22.675781, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.382928 ], [ 22.324219, 12.382928 ], [ 22.324219, 12.554564 ], [ 21.972656, 12.554564 ], [ 21.972656, 12.897489 ], [ 22.148438, 12.897489 ], [ 22.148438, 13.239945 ], [ 22.324219, 13.239945 ], [ 22.324219, 13.581921 ], [ 22.148438, 13.581921 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.752725 ], [ 22.324219, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 14.093957 ], [ 22.324219, 14.093957 ], [ 22.324219, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 14.944785 ], [ 22.675781, 14.944785 ], [ 22.675781, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.453680 ], [ 23.027344, 15.453680 ], [ 23.027344, 15.623037 ], [ 23.906250, 15.623037 ], [ 23.906250, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 21.943046 ], [ 36.914062, 21.943046 ], [ 36.914062, 21.616579 ], [ 37.089844, 21.616579 ], [ 37.089844, 21.125498 ], [ 37.265625, 21.125498 ], [ 37.265625, 20.797201 ], [ 36.914062, 20.797201 ], [ 36.914062, 20.303418 ], [ 37.089844, 20.303418 ], [ 37.089844, 19.476950 ], [ 37.265625, 19.476950 ], [ 37.265625, 18.812718 ], [ 37.441406, 18.812718 ], [ 37.441406, 18.479609 ], [ 37.617188, 18.479609 ], [ 37.617188, 18.312811 ], [ 37.792969, 18.312811 ], [ 37.792969, 18.145852 ], [ 38.144531, 18.145852 ], [ 38.144531, 17.978733 ], [ 38.496094, 17.978733 ], [ 38.496094, 17.811456 ], [ 38.320312, 17.811456 ], [ 38.320312, 17.644022 ], [ 38.144531, 17.644022 ], [ 38.144531, 17.476432 ], [ 37.617188, 17.476432 ], [ 37.617188, 17.308688 ], [ 37.089844, 17.308688 ], [ 37.089844, 17.140790 ], [ 36.914062, 17.140790 ], [ 36.914062, 16.636192 ], [ 36.738281, 16.636192 ], [ 36.738281, 15.792254 ], [ 36.562500, 15.792254 ], [ 36.562500, 15.114553 ], [ 36.386719, 15.114553 ], [ 36.386719, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 13.239945 ], [ 36.035156, 13.239945 ], [ 36.035156, 12.726084 ], [ 35.859375, 12.726084 ], [ 35.859375, 12.382928 ], [ 35.683594, 12.382928 ], [ 35.683594, 12.211180 ], [ 35.507812, 12.211180 ], [ 35.507812, 12.039321 ], [ 35.332031, 12.039321 ], [ 35.332031, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 11.695273 ], [ 34.980469, 11.695273 ], [ 34.980469, 11.350797 ], [ 34.804688, 11.350797 ], [ 34.804688, 10.833306 ], [ 34.628906, 10.833306 ], [ 34.628906, 10.660608 ], [ 34.277344, 10.660608 ], [ 34.277344, 10.314919 ], [ 34.101562, 10.314919 ], [ 34.101562, 9.795678 ], [ 33.925781, 9.795678 ], [ 33.925781, 10.141932 ], [ 33.750000, 10.141932 ], [ 33.750000, 10.314919 ], [ 33.574219, 10.314919 ] ] ], [ [ [ 33.750000, 9.449062 ], [ 33.750000, 9.622414 ], [ 33.925781, 9.622414 ], [ 33.925781, 9.449062 ], [ 33.750000, 9.449062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.914062, 21.943046 ], [ 36.914062, 21.616579 ], [ 37.089844, 21.616579 ], [ 37.089844, 21.125498 ], [ 37.265625, 21.125498 ], [ 37.265625, 20.797201 ], [ 36.914062, 20.797201 ], [ 36.914062, 20.303418 ], [ 37.089844, 20.303418 ], [ 37.089844, 19.476950 ], [ 37.265625, 19.476950 ], [ 37.265625, 18.812718 ], [ 37.441406, 18.812718 ], [ 37.441406, 18.479609 ], [ 37.617188, 18.479609 ], [ 37.617188, 18.312811 ], [ 37.792969, 18.312811 ], [ 37.792969, 18.145852 ], [ 38.144531, 18.145852 ], [ 38.144531, 17.978733 ], [ 38.496094, 17.978733 ], [ 38.496094, 17.811456 ], [ 38.320312, 17.811456 ], [ 38.320312, 17.644022 ], [ 38.144531, 17.644022 ], [ 38.144531, 17.476432 ], [ 37.617188, 17.476432 ], [ 37.617188, 17.308688 ], [ 37.089844, 17.308688 ], [ 37.089844, 17.140790 ], [ 36.914062, 17.140790 ], [ 36.914062, 16.636192 ], [ 36.738281, 16.636192 ], [ 36.738281, 15.792254 ], [ 36.562500, 15.792254 ], [ 36.562500, 15.114553 ], [ 36.386719, 15.114553 ], [ 36.386719, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 13.239945 ], [ 36.035156, 13.239945 ], [ 36.035156, 12.726084 ], [ 35.859375, 12.726084 ], [ 35.859375, 12.382928 ], [ 35.683594, 12.382928 ], [ 35.683594, 12.211180 ], [ 35.507812, 12.211180 ], [ 35.507812, 12.039321 ], [ 35.332031, 12.039321 ], [ 35.332031, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 11.695273 ], [ 34.980469, 11.695273 ], [ 34.980469, 11.350797 ], [ 34.804688, 11.350797 ], [ 34.804688, 10.833306 ], [ 34.628906, 10.833306 ], [ 34.628906, 10.660608 ], [ 34.277344, 10.660608 ], [ 34.277344, 10.314919 ], [ 34.101562, 10.314919 ], [ 34.101562, 9.795678 ], [ 33.925781, 9.795678 ], [ 33.925781, 10.141932 ], [ 33.750000, 10.141932 ], [ 33.750000, 10.314919 ], [ 33.574219, 10.314919 ], [ 33.574219, 10.487812 ], [ 33.222656, 10.487812 ], [ 33.222656, 11.005904 ], [ 33.046875, 11.005904 ], [ 33.046875, 11.867351 ], [ 33.222656, 11.867351 ], [ 33.222656, 12.211180 ], [ 32.695312, 12.211180 ], [ 32.695312, 12.039321 ], [ 31.992188, 12.039321 ], [ 31.992188, 11.867351 ], [ 32.167969, 11.867351 ], [ 32.167969, 11.695273 ], [ 32.343750, 11.695273 ], [ 32.343750, 10.833306 ], [ 32.167969, 10.833306 ], [ 32.167969, 10.660608 ], [ 31.992188, 10.660608 ], [ 31.992188, 10.487812 ], [ 31.816406, 10.487812 ], [ 31.816406, 10.314919 ], [ 31.640625, 10.314919 ], [ 31.640625, 10.141932 ], [ 31.464844, 10.141932 ], [ 31.464844, 9.795678 ], [ 31.113281, 9.795678 ], [ 31.113281, 9.622414 ], [ 30.585938, 9.622414 ], [ 30.585938, 9.795678 ], [ 30.410156, 9.795678 ], [ 30.410156, 9.968851 ], [ 30.234375, 9.968851 ], [ 30.234375, 10.141932 ], [ 30.058594, 10.141932 ], [ 30.058594, 10.314919 ], [ 29.882812, 10.314919 ], [ 29.882812, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.795678 ], [ 29.355469, 9.795678 ], [ 29.355469, 9.622414 ], [ 29.003906, 9.622414 ], [ 29.003906, 9.449062 ], [ 27.773438, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.622414 ], [ 27.070312, 9.449062 ], [ 26.542969, 9.449062 ], [ 26.542969, 9.622414 ], [ 26.367188, 9.622414 ], [ 26.367188, 9.795678 ], [ 26.191406, 9.795678 ], [ 26.191406, 9.968851 ], [ 26.015625, 9.968851 ], [ 26.015625, 10.314919 ], [ 25.839844, 10.314919 ], [ 25.839844, 10.487812 ], [ 25.664062, 10.487812 ], [ 25.664062, 10.314919 ], [ 25.136719, 10.314919 ], [ 25.136719, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 9.795678 ], [ 24.785156, 9.795678 ], [ 24.785156, 9.275622 ], [ 24.609375, 9.275622 ], [ 24.609375, 8.754795 ], [ 24.257812, 8.754795 ], [ 24.257812, 8.581021 ], [ 23.554688, 8.581021 ], [ 23.554688, 8.754795 ], [ 23.378906, 8.754795 ], [ 23.378906, 9.449062 ], [ 23.554688, 9.449062 ], [ 23.554688, 10.141932 ], [ 23.378906, 10.141932 ], [ 23.378906, 10.314919 ], [ 23.203125, 10.314919 ], [ 23.203125, 10.487812 ], [ 23.027344, 10.487812 ], [ 23.027344, 10.833306 ], [ 22.851562, 10.833306 ], [ 22.851562, 11.350797 ], [ 22.675781, 11.350797 ], [ 22.675781, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.382928 ], [ 22.324219, 12.382928 ], [ 22.324219, 12.554564 ], [ 21.972656, 12.554564 ], [ 21.972656, 12.897489 ], [ 22.148438, 12.897489 ], [ 22.148438, 13.239945 ], [ 22.324219, 13.239945 ], [ 22.324219, 13.581921 ], [ 22.148438, 13.581921 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.752725 ], [ 22.324219, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 14.093957 ], [ 22.324219, 14.093957 ], [ 22.324219, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 14.944785 ], [ 22.675781, 14.944785 ], [ 22.675781, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.453680 ], [ 23.027344, 15.453680 ], [ 23.027344, 15.623037 ], [ 23.906250, 15.623037 ], [ 23.906250, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 21.943046 ], [ 36.914062, 21.943046 ] ] ], [ [ [ 33.925781, 9.622414 ], [ 33.925781, 9.449062 ], [ 33.750000, 9.449062 ], [ 33.750000, 9.622414 ], [ 33.925781, 9.622414 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.574219, 10.314919 ], [ 33.750000, 10.314919 ], [ 33.750000, 10.141932 ], [ 33.925781, 10.141932 ], [ 33.925781, 9.622414 ], [ 33.750000, 9.622414 ], [ 33.750000, 9.449062 ], [ 33.925781, 9.449062 ], [ 33.925781, 8.581021 ], [ 33.750000, 8.581021 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 33.222656, 8.233237 ], [ 33.046875, 8.233237 ], [ 33.046875, 7.885147 ], [ 32.871094, 7.885147 ], [ 32.871094, 7.710992 ], [ 33.574219, 7.710992 ], [ 33.574219, 7.536764 ], [ 33.750000, 7.536764 ], [ 33.750000, 7.362467 ], [ 33.925781, 7.362467 ], [ 33.925781, 7.188101 ], [ 34.101562, 7.188101 ], [ 34.101562, 7.013668 ], [ 34.277344, 7.013668 ], [ 34.277344, 6.664608 ], [ 34.628906, 6.664608 ], [ 34.628906, 6.489983 ], [ 34.804688, 6.489983 ], [ 34.804688, 6.140555 ], [ 34.980469, 6.140555 ], [ 34.980469, 5.790897 ], [ 35.156250, 5.790897 ], [ 35.156250, 5.441022 ], [ 35.332031, 5.441022 ], [ 35.332031, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.090944 ], [ 34.804688, 5.090944 ], [ 34.804688, 4.915833 ], [ 34.628906, 4.915833 ], [ 34.628906, 4.740675 ], [ 34.453125, 4.740675 ], [ 34.453125, 4.565474 ], [ 34.277344, 4.565474 ], [ 34.277344, 4.390229 ], [ 34.101562, 4.390229 ], [ 34.101562, 4.214943 ], [ 33.925781, 4.214943 ], [ 33.925781, 4.039618 ], [ 33.574219, 4.039618 ], [ 33.574219, 3.864255 ], [ 32.519531, 3.864255 ], [ 32.519531, 3.688855 ], [ 32.167969, 3.688855 ], [ 32.167969, 3.513421 ], [ 31.640625, 3.513421 ], [ 31.640625, 3.688855 ], [ 30.937500, 3.688855 ], [ 30.937500, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.688855 ], [ 30.410156, 3.688855 ], [ 30.410156, 3.864255 ], [ 30.058594, 3.864255 ], [ 30.058594, 4.039618 ], [ 29.882812, 4.039618 ], [ 29.882812, 4.390229 ], [ 29.707031, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.531250, 4.565474 ], [ 29.531250, 4.390229 ], [ 28.652344, 4.390229 ], [ 28.652344, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.390229 ], [ 27.773438, 4.390229 ], [ 27.773438, 4.740675 ], [ 27.597656, 4.740675 ], [ 27.597656, 5.090944 ], [ 27.421875, 5.090944 ], [ 27.421875, 5.441022 ], [ 27.246094, 5.441022 ], [ 27.246094, 5.615986 ], [ 26.894531, 5.615986 ], [ 26.894531, 5.790897 ], [ 26.542969, 5.790897 ], [ 26.542969, 5.965754 ], [ 26.367188, 5.965754 ], [ 26.367188, 6.315299 ], [ 26.191406, 6.315299 ], [ 26.191406, 6.489983 ], [ 26.015625, 6.489983 ], [ 26.015625, 6.839170 ], [ 25.839844, 6.839170 ], [ 25.839844, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 7.188101 ], [ 25.312500, 7.188101 ], [ 25.312500, 7.362467 ], [ 25.136719, 7.362467 ], [ 25.136719, 7.885147 ], [ 24.960938, 7.885147 ], [ 24.960938, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 8.233237 ], [ 24.257812, 8.233237 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.581021 ], [ 24.257812, 8.581021 ], [ 24.257812, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.275622 ], [ 24.785156, 9.275622 ], [ 24.785156, 9.795678 ], [ 24.960938, 9.795678 ], [ 24.960938, 10.141932 ], [ 25.136719, 10.141932 ], [ 25.136719, 10.314919 ], [ 25.664062, 10.314919 ], [ 25.664062, 10.487812 ], [ 25.839844, 10.487812 ], [ 25.839844, 10.314919 ], [ 26.015625, 10.314919 ], [ 26.015625, 9.968851 ], [ 26.191406, 9.968851 ], [ 26.191406, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.622414 ], [ 26.542969, 9.622414 ], [ 26.542969, 9.449062 ], [ 27.070312, 9.449062 ], [ 27.070312, 9.622414 ], [ 27.773438, 9.622414 ], [ 27.773438, 9.449062 ], [ 29.003906, 9.449062 ], [ 29.003906, 9.622414 ], [ 29.355469, 9.622414 ], [ 29.355469, 9.795678 ], [ 29.531250, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.882812, 10.141932 ], [ 29.882812, 10.314919 ], [ 30.058594, 10.314919 ], [ 30.058594, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.968851 ], [ 30.410156, 9.968851 ], [ 30.410156, 9.795678 ], [ 30.585938, 9.795678 ], [ 30.585938, 9.622414 ], [ 31.113281, 9.622414 ], [ 31.113281, 9.795678 ], [ 31.464844, 9.795678 ], [ 31.464844, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 10.314919 ], [ 31.816406, 10.314919 ], [ 31.816406, 10.487812 ], [ 31.992188, 10.487812 ], [ 31.992188, 10.660608 ], [ 32.167969, 10.660608 ], [ 32.167969, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.695273 ], [ 32.167969, 11.695273 ], [ 32.167969, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 12.039321 ], [ 32.695312, 12.039321 ], [ 32.695312, 12.211180 ], [ 33.222656, 12.211180 ], [ 33.222656, 11.867351 ], [ 33.046875, 11.867351 ], [ 33.046875, 11.005904 ], [ 33.222656, 11.005904 ], [ 33.222656, 10.487812 ], [ 33.574219, 10.487812 ], [ 33.574219, 10.314919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.222656, 12.211180 ], [ 33.222656, 11.867351 ], [ 33.046875, 11.867351 ], [ 33.046875, 11.005904 ], [ 33.222656, 11.005904 ], [ 33.222656, 10.487812 ], [ 33.574219, 10.487812 ], [ 33.574219, 10.314919 ], [ 33.750000, 10.314919 ], [ 33.750000, 10.141932 ], [ 33.925781, 10.141932 ], [ 33.925781, 9.622414 ], [ 33.750000, 9.622414 ], [ 33.750000, 9.449062 ], [ 33.925781, 9.449062 ], [ 33.925781, 8.581021 ], [ 33.750000, 8.581021 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 33.222656, 8.233237 ], [ 33.046875, 8.233237 ], [ 33.046875, 7.885147 ], [ 32.871094, 7.885147 ], [ 32.871094, 7.710992 ], [ 33.574219, 7.710992 ], [ 33.574219, 7.536764 ], [ 33.750000, 7.536764 ], [ 33.750000, 7.362467 ], [ 33.925781, 7.362467 ], [ 33.925781, 7.188101 ], [ 34.101562, 7.188101 ], [ 34.101562, 7.013668 ], [ 34.277344, 7.013668 ], [ 34.277344, 6.664608 ], [ 34.628906, 6.664608 ], [ 34.628906, 6.489983 ], [ 34.804688, 6.489983 ], [ 34.804688, 6.140555 ], [ 34.980469, 6.140555 ], [ 34.980469, 5.790897 ], [ 35.156250, 5.790897 ], [ 35.156250, 5.441022 ], [ 35.332031, 5.441022 ], [ 35.332031, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.090944 ], [ 34.804688, 5.090944 ], [ 34.804688, 4.915833 ], [ 34.628906, 4.915833 ], [ 34.628906, 4.740675 ], [ 34.453125, 4.740675 ], [ 34.453125, 4.565474 ], [ 34.277344, 4.565474 ], [ 34.277344, 4.390229 ], [ 34.101562, 4.390229 ], [ 34.101562, 4.214943 ], [ 33.925781, 4.214943 ], [ 33.925781, 4.039618 ], [ 33.574219, 4.039618 ], [ 33.574219, 3.864255 ], [ 32.519531, 3.864255 ], [ 32.519531, 3.688855 ], [ 32.167969, 3.688855 ], [ 32.167969, 3.513421 ], [ 31.640625, 3.513421 ], [ 31.640625, 3.688855 ], [ 30.937500, 3.688855 ], [ 30.937500, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.688855 ], [ 30.410156, 3.688855 ], [ 30.410156, 3.864255 ], [ 30.058594, 3.864255 ], [ 30.058594, 4.039618 ], [ 29.882812, 4.039618 ], [ 29.882812, 4.390229 ], [ 29.707031, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.531250, 4.565474 ], [ 29.531250, 4.390229 ], [ 28.652344, 4.390229 ], [ 28.652344, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.390229 ], [ 27.773438, 4.390229 ], [ 27.773438, 4.740675 ], [ 27.597656, 4.740675 ], [ 27.597656, 5.090944 ], [ 27.421875, 5.090944 ], [ 27.421875, 5.441022 ], [ 27.246094, 5.441022 ], [ 27.246094, 5.615986 ], [ 26.894531, 5.615986 ], [ 26.894531, 5.790897 ], [ 26.542969, 5.790897 ], [ 26.542969, 5.965754 ], [ 26.367188, 5.965754 ], [ 26.367188, 6.315299 ], [ 26.191406, 6.315299 ], [ 26.191406, 6.489983 ], [ 26.015625, 6.489983 ], [ 26.015625, 6.839170 ], [ 25.839844, 6.839170 ], [ 25.839844, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 7.188101 ], [ 25.312500, 7.188101 ], [ 25.312500, 7.362467 ], [ 25.136719, 7.362467 ], [ 25.136719, 7.885147 ], [ 24.960938, 7.885147 ], [ 24.960938, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 8.233237 ], [ 24.257812, 8.233237 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.581021 ], [ 24.257812, 8.581021 ], [ 24.257812, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.275622 ], [ 24.785156, 9.275622 ], [ 24.785156, 9.795678 ], [ 24.960938, 9.795678 ], [ 24.960938, 10.141932 ], [ 25.136719, 10.141932 ], [ 25.136719, 10.314919 ], [ 25.664062, 10.314919 ], [ 25.664062, 10.487812 ], [ 25.839844, 10.487812 ], [ 25.839844, 10.314919 ], [ 26.015625, 10.314919 ], [ 26.015625, 9.968851 ], [ 26.191406, 9.968851 ], [ 26.191406, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.622414 ], [ 26.542969, 9.622414 ], [ 26.542969, 9.449062 ], [ 27.070312, 9.449062 ], [ 27.070312, 9.622414 ], [ 27.773438, 9.622414 ], [ 27.773438, 9.449062 ], [ 29.003906, 9.449062 ], [ 29.003906, 9.622414 ], [ 29.355469, 9.622414 ], [ 29.355469, 9.795678 ], [ 29.531250, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.882812, 10.141932 ], [ 29.882812, 10.314919 ], [ 30.058594, 10.314919 ], [ 30.058594, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.968851 ], [ 30.410156, 9.968851 ], [ 30.410156, 9.795678 ], [ 30.585938, 9.795678 ], [ 30.585938, 9.622414 ], [ 31.113281, 9.622414 ], [ 31.113281, 9.795678 ], [ 31.464844, 9.795678 ], [ 31.464844, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 10.314919 ], [ 31.816406, 10.314919 ], [ 31.816406, 10.487812 ], [ 31.992188, 10.487812 ], [ 31.992188, 10.660608 ], [ 32.167969, 10.660608 ], [ 32.167969, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.695273 ], [ 32.167969, 11.695273 ], [ 32.167969, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 12.039321 ], [ 32.695312, 12.039321 ], [ 32.695312, 12.211180 ], [ 33.222656, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.277344, 3.513421 ], [ 34.453125, 3.513421 ], [ 34.453125, 3.162456 ], [ 34.628906, 3.162456 ], [ 34.628906, 2.635789 ], [ 34.804688, 2.635789 ], [ 34.804688, 2.108899 ], [ 34.980469, 2.108899 ], [ 34.980469, 1.757537 ], [ 34.804688, 1.757537 ], [ 34.804688, 1.406109 ], [ 34.628906, 1.406109 ], [ 34.628906, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 0.878872 ], [ 34.277344, 0.878872 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, -0.878872 ], [ 29.531250, -0.878872 ], [ 29.531250, -0.527336 ], [ 29.707031, -0.527336 ], [ 29.707031, -0.351560 ], [ 29.882812, -0.351560 ], [ 29.882812, 0.703107 ], [ 30.058594, 0.703107 ], [ 30.058594, 1.054628 ], [ 30.234375, 1.054628 ], [ 30.234375, 1.406109 ], [ 30.410156, 1.406109 ], [ 30.410156, 1.581830 ], [ 30.585938, 1.581830 ], [ 30.585938, 1.757537 ], [ 30.937500, 1.757537 ], [ 30.937500, 2.108899 ], [ 31.113281, 2.108899 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.284551 ], [ 30.761719, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 3.688855 ], [ 31.640625, 3.688855 ], [ 31.640625, 3.513421 ], [ 32.167969, 3.513421 ], [ 32.167969, 3.688855 ], [ 32.519531, 3.688855 ], [ 32.519531, 3.864255 ], [ 33.574219, 3.864255 ], [ 33.574219, 4.039618 ], [ 34.101562, 4.039618 ], [ 34.101562, 3.864255 ], [ 34.277344, 3.864255 ], [ 34.277344, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 4.039618 ], [ 34.101562, 3.864255 ], [ 34.277344, 3.864255 ], [ 34.277344, 3.513421 ], [ 34.453125, 3.513421 ], [ 34.453125, 3.162456 ], [ 34.628906, 3.162456 ], [ 34.628906, 2.635789 ], [ 34.804688, 2.635789 ], [ 34.804688, 2.108899 ], [ 34.980469, 2.108899 ], [ 34.980469, 1.757537 ], [ 34.804688, 1.757537 ], [ 34.804688, 1.406109 ], [ 34.628906, 1.406109 ], [ 34.628906, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 0.878872 ], [ 34.277344, 0.878872 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, -0.878872 ], [ 29.531250, -0.878872 ], [ 29.531250, -0.527336 ], [ 29.707031, -0.527336 ], [ 29.707031, -0.351560 ], [ 29.882812, -0.351560 ], [ 29.882812, 0.703107 ], [ 30.058594, 0.703107 ], [ 30.058594, 1.054628 ], [ 30.234375, 1.054628 ], [ 30.234375, 1.406109 ], [ 30.410156, 1.406109 ], [ 30.410156, 1.581830 ], [ 30.585938, 1.581830 ], [ 30.585938, 1.757537 ], [ 30.937500, 1.757537 ], [ 30.937500, 2.108899 ], [ 31.113281, 2.108899 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.284551 ], [ 30.761719, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 3.688855 ], [ 31.640625, 3.688855 ], [ 31.640625, 3.513421 ], [ 32.167969, 3.513421 ], [ 32.167969, 3.688855 ], [ 32.519531, 3.688855 ], [ 32.519531, 3.864255 ], [ 33.574219, 3.864255 ], [ 33.574219, 4.039618 ], [ 34.101562, 4.039618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 17.308688 ], [ 38.847656, 17.308688 ], [ 38.847656, 16.972741 ], [ 39.023438, 16.972741 ], [ 39.023438, 16.299051 ], [ 39.199219, 16.299051 ], [ 39.199219, 15.792254 ], [ 39.375000, 15.792254 ], [ 39.375000, 15.623037 ], [ 39.550781, 15.623037 ], [ 39.550781, 15.453680 ], [ 39.726562, 15.453680 ], [ 39.726562, 15.284185 ], [ 39.902344, 15.284185 ], [ 39.902344, 15.114553 ], [ 40.253906, 15.114553 ], [ 40.253906, 14.944785 ], [ 40.429688, 14.944785 ], [ 40.429688, 14.774883 ], [ 40.605469, 14.774883 ], [ 40.605469, 14.604847 ], [ 40.957031, 14.604847 ], [ 40.957031, 14.434680 ], [ 41.132812, 14.434680 ], [ 41.132812, 14.264383 ], [ 41.308594, 14.264383 ], [ 41.308594, 14.093957 ], [ 41.484375, 14.093957 ], [ 41.484375, 13.923404 ], [ 41.660156, 13.923404 ], [ 41.660156, 13.752725 ], [ 41.835938, 13.752725 ], [ 41.835938, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 13.410994 ], [ 42.363281, 13.410994 ], [ 42.363281, 13.239945 ], [ 42.539062, 13.239945 ], [ 42.539062, 12.897489 ], [ 42.890625, 12.897489 ], [ 42.890625, 12.726084 ], [ 43.066406, 12.726084 ], [ 43.066406, 12.554564 ], [ 42.890625, 12.554564 ], [ 42.890625, 12.382928 ], [ 42.363281, 12.382928 ], [ 42.363281, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.726084 ], [ 42.011719, 12.726084 ], [ 42.011719, 12.897489 ], [ 41.835938, 12.897489 ], [ 41.835938, 13.239945 ], [ 41.660156, 13.239945 ], [ 41.660156, 13.410994 ], [ 41.484375, 13.410994 ], [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.957031, 13.923404 ], [ 40.957031, 14.093957 ], [ 40.605469, 14.093957 ], [ 40.605469, 14.264383 ], [ 40.253906, 14.264383 ], [ 40.253906, 14.434680 ], [ 39.550781, 14.434680 ], [ 39.550781, 14.604847 ], [ 38.671875, 14.604847 ], [ 38.671875, 14.434680 ], [ 38.320312, 14.434680 ], [ 38.320312, 14.604847 ], [ 38.144531, 14.604847 ], [ 38.144531, 14.774883 ], [ 37.792969, 14.774883 ], [ 37.792969, 14.434680 ], [ 37.617188, 14.434680 ], [ 37.617188, 14.264383 ], [ 36.914062, 14.264383 ], [ 36.914062, 14.434680 ], [ 36.386719, 14.434680 ], [ 36.386719, 15.114553 ], [ 36.562500, 15.114553 ], [ 36.562500, 15.792254 ], [ 36.738281, 15.792254 ], [ 36.738281, 16.636192 ], [ 36.914062, 16.636192 ], [ 36.914062, 17.140790 ], [ 37.089844, 17.140790 ], [ 37.089844, 17.308688 ], [ 37.617188, 17.308688 ], [ 37.617188, 17.476432 ], [ 38.144531, 17.476432 ], [ 38.144531, 17.644022 ], [ 38.320312, 17.644022 ], [ 38.320312, 17.811456 ], [ 38.496094, 17.811456 ], [ 38.496094, 17.644022 ], [ 38.671875, 17.644022 ], [ 38.671875, 17.308688 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 17.811456 ], [ 38.496094, 17.644022 ], [ 38.671875, 17.644022 ], [ 38.671875, 17.308688 ], [ 38.847656, 17.308688 ], [ 38.847656, 16.972741 ], [ 39.023438, 16.972741 ], [ 39.023438, 16.299051 ], [ 39.199219, 16.299051 ], [ 39.199219, 15.792254 ], [ 39.375000, 15.792254 ], [ 39.375000, 15.623037 ], [ 39.550781, 15.623037 ], [ 39.550781, 15.453680 ], [ 39.726562, 15.453680 ], [ 39.726562, 15.284185 ], [ 39.902344, 15.284185 ], [ 39.902344, 15.114553 ], [ 40.253906, 15.114553 ], [ 40.253906, 14.944785 ], [ 40.429688, 14.944785 ], [ 40.429688, 14.774883 ], [ 40.605469, 14.774883 ], [ 40.605469, 14.604847 ], [ 40.957031, 14.604847 ], [ 40.957031, 14.434680 ], [ 41.132812, 14.434680 ], [ 41.132812, 14.264383 ], [ 41.308594, 14.264383 ], [ 41.308594, 14.093957 ], [ 41.484375, 14.093957 ], [ 41.484375, 13.923404 ], [ 41.660156, 13.923404 ], [ 41.660156, 13.752725 ], [ 41.835938, 13.752725 ], [ 41.835938, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 13.410994 ], [ 42.363281, 13.410994 ], [ 42.363281, 13.239945 ], [ 42.539062, 13.239945 ], [ 42.539062, 12.897489 ], [ 42.890625, 12.897489 ], [ 42.890625, 12.726084 ], [ 43.066406, 12.726084 ], [ 43.066406, 12.554564 ], [ 42.890625, 12.554564 ], [ 42.890625, 12.382928 ], [ 42.363281, 12.382928 ], [ 42.363281, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.726084 ], [ 42.011719, 12.726084 ], [ 42.011719, 12.897489 ], [ 41.835938, 12.897489 ], [ 41.835938, 13.239945 ], [ 41.660156, 13.239945 ], [ 41.660156, 13.410994 ], [ 41.484375, 13.410994 ], [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.957031, 13.923404 ], [ 40.957031, 14.093957 ], [ 40.605469, 14.093957 ], [ 40.605469, 14.264383 ], [ 40.253906, 14.264383 ], [ 40.253906, 14.434680 ], [ 39.550781, 14.434680 ], [ 39.550781, 14.604847 ], [ 38.671875, 14.604847 ], [ 38.671875, 14.434680 ], [ 38.320312, 14.434680 ], [ 38.320312, 14.604847 ], [ 38.144531, 14.604847 ], [ 38.144531, 14.774883 ], [ 37.792969, 14.774883 ], [ 37.792969, 14.434680 ], [ 37.617188, 14.434680 ], [ 37.617188, 14.264383 ], [ 36.914062, 14.264383 ], [ 36.914062, 14.434680 ], [ 36.386719, 14.434680 ], [ 36.386719, 15.114553 ], [ 36.562500, 15.114553 ], [ 36.562500, 15.792254 ], [ 36.738281, 15.792254 ], [ 36.738281, 16.636192 ], [ 36.914062, 16.636192 ], [ 36.914062, 17.140790 ], [ 37.089844, 17.140790 ], [ 37.089844, 17.308688 ], [ 37.617188, 17.308688 ], [ 37.617188, 17.476432 ], [ 38.144531, 17.476432 ], [ 38.144531, 17.644022 ], [ 38.320312, 17.644022 ], [ 38.320312, 17.811456 ], [ 38.496094, 17.811456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.695273 ], [ 42.714844, 11.695273 ], [ 42.714844, 11.523088 ], [ 43.066406, 11.523088 ], [ 43.066406, 11.350797 ], [ 42.890625, 11.350797 ], [ 42.890625, 11.005904 ], [ 41.835938, 11.005904 ], [ 41.835938, 11.178402 ], [ 41.660156, 11.178402 ], [ 41.660156, 11.695273 ], [ 41.835938, 11.695273 ], [ 41.835938, 11.867351 ], [ 42.011719, 11.867351 ], [ 42.011719, 12.039321 ], [ 42.187500, 12.039321 ], [ 42.187500, 12.382928 ], [ 42.890625, 12.382928 ], [ 42.890625, 12.554564 ], [ 43.242188, 12.554564 ], [ 43.242188, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.554564 ], [ 43.242188, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.695273 ], [ 42.714844, 11.695273 ], [ 42.714844, 11.523088 ], [ 43.066406, 11.523088 ], [ 43.066406, 11.350797 ], [ 42.890625, 11.350797 ], [ 42.890625, 11.005904 ], [ 41.835938, 11.005904 ], [ 41.835938, 11.178402 ], [ 41.660156, 11.178402 ], [ 41.660156, 11.695273 ], [ 41.835938, 11.695273 ], [ 41.835938, 11.867351 ], [ 42.011719, 11.867351 ], [ 42.011719, 12.039321 ], [ 42.187500, 12.039321 ], [ 42.187500, 12.382928 ], [ 42.890625, 12.382928 ], [ 42.890625, 12.554564 ], [ 43.242188, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 4.565474 ], [ 36.035156, 4.565474 ], [ 36.035156, 4.390229 ], [ 36.914062, 4.390229 ], [ 36.914062, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 4.039618 ], [ 37.441406, 4.039618 ], [ 37.441406, 3.864255 ], [ 37.617188, 3.864255 ], [ 37.617188, 3.688855 ], [ 37.968750, 3.688855 ], [ 37.968750, 3.513421 ], [ 39.023438, 3.513421 ], [ 39.023438, 3.337954 ], [ 39.726562, 3.337954 ], [ 39.726562, 3.688855 ], [ 39.902344, 3.688855 ], [ 39.902344, 3.864255 ], [ 40.253906, 3.864255 ], [ 40.253906, 4.039618 ], [ 40.605469, 4.039618 ], [ 40.605469, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 4.039618 ], [ 40.957031, 4.039618 ], [ 40.957031, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 3.688855 ], [ 41.660156, 3.688855 ], [ 41.660156, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 3.337954 ], [ 41.308594, 3.337954 ], [ 41.308594, 2.986927 ], [ 41.132812, 2.986927 ], [ 41.132812, 2.811371 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 33.925781, -0.878872 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.527336 ], [ 34.277344, 0.527336 ], [ 34.277344, 0.878872 ], [ 34.453125, 0.878872 ], [ 34.453125, 1.054628 ], [ 34.628906, 1.054628 ], [ 34.628906, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 1.757537 ], [ 34.980469, 1.757537 ], [ 34.980469, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.635789 ], [ 34.628906, 2.635789 ], [ 34.628906, 3.162456 ], [ 34.453125, 3.162456 ], [ 34.453125, 3.513421 ], [ 34.277344, 3.513421 ], [ 34.277344, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.039618 ], [ 33.925781, 4.039618 ], [ 33.925781, 4.214943 ], [ 34.101562, 4.214943 ], [ 34.101562, 4.390229 ], [ 34.277344, 4.390229 ], [ 34.277344, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.740675 ], [ 34.628906, 4.740675 ], [ 34.628906, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.090944 ], [ 35.156250, 5.090944 ], [ 35.156250, 5.266008 ], [ 35.332031, 5.266008 ], [ 35.332031, 5.441022 ], [ 35.507812, 5.441022 ], [ 35.507812, 5.266008 ], [ 35.859375, 5.266008 ], [ 35.859375, 4.565474 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 5.441022 ], [ 35.507812, 5.266008 ], [ 35.859375, 5.266008 ], [ 35.859375, 4.565474 ], [ 36.035156, 4.565474 ], [ 36.035156, 4.390229 ], [ 36.914062, 4.390229 ], [ 36.914062, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 4.039618 ], [ 37.441406, 4.039618 ], [ 37.441406, 3.864255 ], [ 37.617188, 3.864255 ], [ 37.617188, 3.688855 ], [ 37.968750, 3.688855 ], [ 37.968750, 3.513421 ], [ 39.023438, 3.513421 ], [ 39.023438, 3.337954 ], [ 39.726562, 3.337954 ], [ 39.726562, 3.688855 ], [ 39.902344, 3.688855 ], [ 39.902344, 3.864255 ], [ 40.253906, 3.864255 ], [ 40.253906, 4.039618 ], [ 40.605469, 4.039618 ], [ 40.605469, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 4.039618 ], [ 40.957031, 4.039618 ], [ 40.957031, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 3.688855 ], [ 41.660156, 3.688855 ], [ 41.660156, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 3.337954 ], [ 41.308594, 3.337954 ], [ 41.308594, 2.986927 ], [ 41.132812, 2.986927 ], [ 41.132812, 2.811371 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 33.925781, -0.878872 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.527336 ], [ 34.277344, 0.527336 ], [ 34.277344, 0.878872 ], [ 34.453125, 0.878872 ], [ 34.453125, 1.054628 ], [ 34.628906, 1.054628 ], [ 34.628906, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 1.757537 ], [ 34.980469, 1.757537 ], [ 34.980469, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.635789 ], [ 34.628906, 2.635789 ], [ 34.628906, 3.162456 ], [ 34.453125, 3.162456 ], [ 34.453125, 3.513421 ], [ 34.277344, 3.513421 ], [ 34.277344, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.039618 ], [ 33.925781, 4.039618 ], [ 33.925781, 4.214943 ], [ 34.101562, 4.214943 ], [ 34.101562, 4.390229 ], [ 34.277344, 4.390229 ], [ 34.277344, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.740675 ], [ 34.628906, 4.740675 ], [ 34.628906, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.090944 ], [ 35.156250, 5.090944 ], [ 35.156250, 5.266008 ], [ 35.332031, 5.266008 ], [ 35.332031, 5.441022 ], [ 35.507812, 5.441022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, 14.264383 ], [ 40.605469, 14.264383 ], [ 40.605469, 14.093957 ], [ 40.957031, 14.093957 ], [ 40.957031, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.410994 ], [ 41.660156, 13.410994 ], [ 41.660156, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.897489 ], [ 42.011719, 12.897489 ], [ 42.011719, 12.726084 ], [ 42.187500, 12.726084 ], [ 42.187500, 12.554564 ], [ 42.363281, 12.554564 ], [ 42.363281, 12.382928 ], [ 42.187500, 12.382928 ], [ 42.187500, 12.039321 ], [ 42.011719, 12.039321 ], [ 42.011719, 11.867351 ], [ 41.835938, 11.867351 ], [ 41.835938, 11.695273 ], [ 41.660156, 11.695273 ], [ 41.660156, 11.178402 ], [ 41.835938, 11.178402 ], [ 41.835938, 11.005904 ], [ 42.714844, 11.005904 ], [ 42.714844, 10.660608 ], [ 42.539062, 10.660608 ], [ 42.539062, 10.314919 ], [ 42.714844, 10.314919 ], [ 42.714844, 9.968851 ], [ 42.890625, 9.968851 ], [ 42.890625, 9.795678 ], [ 43.066406, 9.795678 ], [ 43.066406, 9.622414 ], [ 43.242188, 9.622414 ], [ 43.242188, 9.449062 ], [ 43.417969, 9.449062 ], [ 43.417969, 9.102097 ], [ 43.769531, 9.102097 ], [ 43.769531, 8.928487 ], [ 44.296875, 8.928487 ], [ 44.296875, 8.754795 ], [ 45.000000, 8.754795 ], [ 45.000000, 8.581021 ], [ 45.527344, 8.581021 ], [ 45.527344, 8.407168 ], [ 45.878906, 8.407168 ], [ 45.878906, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.615986 ], [ 45.527344, 5.615986 ], [ 45.527344, 5.441022 ], [ 45.351562, 5.441022 ], [ 45.351562, 5.090944 ], [ 45.175781, 5.090944 ], [ 45.175781, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.740675 ], [ 43.417969, 4.740675 ], [ 43.417969, 4.565474 ], [ 43.066406, 4.565474 ], [ 43.066406, 4.390229 ], [ 42.890625, 4.390229 ], [ 42.890625, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 4.039618 ], [ 42.011719, 4.039618 ], [ 42.011719, 3.864255 ], [ 40.957031, 3.864255 ], [ 40.957031, 4.039618 ], [ 40.781250, 4.039618 ], [ 40.781250, 4.214943 ], [ 40.605469, 4.214943 ], [ 40.605469, 4.039618 ], [ 40.253906, 4.039618 ], [ 40.253906, 3.864255 ], [ 39.902344, 3.864255 ], [ 39.902344, 3.688855 ], [ 39.726562, 3.688855 ], [ 39.726562, 3.337954 ], [ 39.023438, 3.337954 ], [ 39.023438, 3.513421 ], [ 37.968750, 3.513421 ], [ 37.968750, 3.688855 ], [ 37.617188, 3.688855 ], [ 37.617188, 3.864255 ], [ 37.441406, 3.864255 ], [ 37.441406, 4.039618 ], [ 37.265625, 4.039618 ], [ 37.265625, 4.214943 ], [ 36.914062, 4.214943 ], [ 36.914062, 4.390229 ], [ 36.035156, 4.390229 ], [ 36.035156, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 5.266008 ], [ 35.507812, 5.266008 ], [ 35.507812, 5.441022 ], [ 35.156250, 5.441022 ], [ 35.156250, 5.790897 ], [ 34.980469, 5.790897 ], [ 34.980469, 6.140555 ], [ 34.804688, 6.140555 ], [ 34.804688, 6.489983 ], [ 34.628906, 6.489983 ], [ 34.628906, 6.664608 ], [ 34.277344, 6.664608 ], [ 34.277344, 7.013668 ], [ 34.101562, 7.013668 ], [ 34.101562, 7.188101 ], [ 33.925781, 7.188101 ], [ 33.925781, 7.362467 ], [ 33.750000, 7.362467 ], [ 33.750000, 7.536764 ], [ 33.574219, 7.536764 ], [ 33.574219, 7.710992 ], [ 32.871094, 7.710992 ], [ 32.871094, 7.885147 ], [ 33.046875, 7.885147 ], [ 33.046875, 8.233237 ], [ 33.222656, 8.233237 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 8.581021 ], [ 33.925781, 8.581021 ], [ 33.925781, 9.795678 ], [ 34.101562, 9.795678 ], [ 34.101562, 10.314919 ], [ 34.277344, 10.314919 ], [ 34.277344, 10.660608 ], [ 34.628906, 10.660608 ], [ 34.628906, 10.833306 ], [ 34.804688, 10.833306 ], [ 34.804688, 11.350797 ], [ 34.980469, 11.350797 ], [ 34.980469, 11.695273 ], [ 35.156250, 11.695273 ], [ 35.156250, 11.867351 ], [ 35.332031, 11.867351 ], [ 35.332031, 12.039321 ], [ 35.507812, 12.039321 ], [ 35.507812, 12.211180 ], [ 35.683594, 12.211180 ], [ 35.683594, 12.382928 ], [ 35.859375, 12.382928 ], [ 35.859375, 12.726084 ], [ 36.035156, 12.726084 ], [ 36.035156, 13.239945 ], [ 36.210938, 13.239945 ], [ 36.210938, 13.923404 ], [ 36.386719, 13.923404 ], [ 36.386719, 14.434680 ], [ 36.914062, 14.434680 ], [ 36.914062, 14.264383 ], [ 37.617188, 14.264383 ], [ 37.617188, 14.434680 ], [ 37.792969, 14.434680 ], [ 37.792969, 14.774883 ], [ 38.144531, 14.774883 ], [ 38.144531, 14.604847 ], [ 38.320312, 14.604847 ], [ 38.320312, 14.434680 ], [ 38.671875, 14.434680 ], [ 38.671875, 14.604847 ], [ 39.550781, 14.604847 ], [ 39.550781, 14.434680 ], [ 40.253906, 14.434680 ], [ 40.253906, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.144531, 14.774883 ], [ 38.144531, 14.604847 ], [ 38.320312, 14.604847 ], [ 38.320312, 14.434680 ], [ 38.671875, 14.434680 ], [ 38.671875, 14.604847 ], [ 39.550781, 14.604847 ], [ 39.550781, 14.434680 ], [ 40.253906, 14.434680 ], [ 40.253906, 14.264383 ], [ 40.605469, 14.264383 ], [ 40.605469, 14.093957 ], [ 40.957031, 14.093957 ], [ 40.957031, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.410994 ], [ 41.660156, 13.410994 ], [ 41.660156, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.897489 ], [ 42.011719, 12.897489 ], [ 42.011719, 12.726084 ], [ 42.187500, 12.726084 ], [ 42.187500, 12.554564 ], [ 42.363281, 12.554564 ], [ 42.363281, 12.382928 ], [ 42.187500, 12.382928 ], [ 42.187500, 12.039321 ], [ 42.011719, 12.039321 ], [ 42.011719, 11.867351 ], [ 41.835938, 11.867351 ], [ 41.835938, 11.695273 ], [ 41.660156, 11.695273 ], [ 41.660156, 11.178402 ], [ 41.835938, 11.178402 ], [ 41.835938, 11.005904 ], [ 42.714844, 11.005904 ], [ 42.714844, 10.660608 ], [ 42.539062, 10.660608 ], [ 42.539062, 10.314919 ], [ 42.714844, 10.314919 ], [ 42.714844, 9.968851 ], [ 42.890625, 9.968851 ], [ 42.890625, 9.795678 ], [ 43.066406, 9.795678 ], [ 43.066406, 9.622414 ], [ 43.242188, 9.622414 ], [ 43.242188, 9.449062 ], [ 43.417969, 9.449062 ], [ 43.417969, 9.102097 ], [ 43.769531, 9.102097 ], [ 43.769531, 8.928487 ], [ 44.296875, 8.928487 ], [ 44.296875, 8.754795 ], [ 45.000000, 8.754795 ], [ 45.000000, 8.581021 ], [ 45.527344, 8.581021 ], [ 45.527344, 8.407168 ], [ 45.878906, 8.407168 ], [ 45.878906, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.615986 ], [ 45.527344, 5.615986 ], [ 45.527344, 5.441022 ], [ 45.351562, 5.441022 ], [ 45.351562, 5.090944 ], [ 45.175781, 5.090944 ], [ 45.175781, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.740675 ], [ 43.417969, 4.740675 ], [ 43.417969, 4.565474 ], [ 43.066406, 4.565474 ], [ 43.066406, 4.390229 ], [ 42.890625, 4.390229 ], [ 42.890625, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 4.039618 ], [ 42.011719, 4.039618 ], [ 42.011719, 3.864255 ], [ 40.957031, 3.864255 ], [ 40.957031, 4.039618 ], [ 40.781250, 4.039618 ], [ 40.781250, 4.214943 ], [ 40.605469, 4.214943 ], [ 40.605469, 4.039618 ], [ 40.253906, 4.039618 ], [ 40.253906, 3.864255 ], [ 39.902344, 3.864255 ], [ 39.902344, 3.688855 ], [ 39.726562, 3.688855 ], [ 39.726562, 3.337954 ], [ 39.023438, 3.337954 ], [ 39.023438, 3.513421 ], [ 37.968750, 3.513421 ], [ 37.968750, 3.688855 ], [ 37.617188, 3.688855 ], [ 37.617188, 3.864255 ], [ 37.441406, 3.864255 ], [ 37.441406, 4.039618 ], [ 37.265625, 4.039618 ], [ 37.265625, 4.214943 ], [ 36.914062, 4.214943 ], [ 36.914062, 4.390229 ], [ 36.035156, 4.390229 ], [ 36.035156, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 5.266008 ], [ 35.507812, 5.266008 ], [ 35.507812, 5.441022 ], [ 35.156250, 5.441022 ], [ 35.156250, 5.790897 ], [ 34.980469, 5.790897 ], [ 34.980469, 6.140555 ], [ 34.804688, 6.140555 ], [ 34.804688, 6.489983 ], [ 34.628906, 6.489983 ], [ 34.628906, 6.664608 ], [ 34.277344, 6.664608 ], [ 34.277344, 7.013668 ], [ 34.101562, 7.013668 ], [ 34.101562, 7.188101 ], [ 33.925781, 7.188101 ], [ 33.925781, 7.362467 ], [ 33.750000, 7.362467 ], [ 33.750000, 7.536764 ], [ 33.574219, 7.536764 ], [ 33.574219, 7.710992 ], [ 32.871094, 7.710992 ], [ 32.871094, 7.885147 ], [ 33.046875, 7.885147 ], [ 33.046875, 8.233237 ], [ 33.222656, 8.233237 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 8.581021 ], [ 33.925781, 8.581021 ], [ 33.925781, 9.795678 ], [ 34.101562, 9.795678 ], [ 34.101562, 10.314919 ], [ 34.277344, 10.314919 ], [ 34.277344, 10.660608 ], [ 34.628906, 10.660608 ], [ 34.628906, 10.833306 ], [ 34.804688, 10.833306 ], [ 34.804688, 11.350797 ], [ 34.980469, 11.350797 ], [ 34.980469, 11.695273 ], [ 35.156250, 11.695273 ], [ 35.156250, 11.867351 ], [ 35.332031, 11.867351 ], [ 35.332031, 12.039321 ], [ 35.507812, 12.039321 ], [ 35.507812, 12.211180 ], [ 35.683594, 12.211180 ], [ 35.683594, 12.382928 ], [ 35.859375, 12.382928 ], [ 35.859375, 12.726084 ], [ 36.035156, 12.726084 ], [ 36.035156, 13.239945 ], [ 36.210938, 13.239945 ], [ 36.210938, 13.923404 ], [ 36.386719, 13.923404 ], [ 36.386719, 14.434680 ], [ 36.914062, 14.434680 ], [ 36.914062, 14.264383 ], [ 37.617188, 14.264383 ], [ 37.617188, 14.434680 ], [ 37.792969, 14.434680 ], [ 37.792969, 14.774883 ], [ 38.144531, 14.774883 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ], [ 45.878906, 40.044438 ], [ 45.703125, 40.044438 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.878906, 39.774769 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 40.044438 ], [ 44.121094, 40.044438 ], [ 44.121094, 40.178873 ], [ 43.769531, 40.178873 ], [ 43.769531, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.446947 ], [ 43.769531, 40.446947 ], [ 43.769531, 40.847060 ], [ 43.593750, 40.847060 ], [ 43.593750, 41.112469 ], [ 44.472656, 41.112469 ], [ 44.472656, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ], [ 45.878906, 40.044438 ], [ 45.703125, 40.044438 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.878906, 39.774769 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 40.044438 ], [ 44.121094, 40.044438 ], [ 44.121094, 40.178873 ], [ 43.769531, 40.178873 ], [ 43.769531, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.446947 ], [ 43.769531, 40.446947 ], [ 43.769531, 40.847060 ], [ 43.593750, 40.847060 ], [ 43.593750, 41.112469 ], [ 44.472656, 41.112469 ], [ 44.472656, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.774769 ], [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ] ] ], [ [ [ 45.703125, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 45.878906, 41.112469 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 40.313043 ] ] ], [ [ [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.044438 ], [ 45.878906, 40.044438 ], [ 45.878906, 39.774769 ], [ 45.527344, 39.774769 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.774769 ], [ 45.000000, 39.774769 ] ] ], [ [ [ 45.878906, 40.044438 ], [ 45.878906, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.044438 ], [ 45.878906, 40.044438 ] ] ], [ [ [ 45.527344, 41.112469 ], [ 45.878906, 41.112469 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.232253 ], [ 45.175781, 39.232253 ], [ 45.175781, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 45.878906, 38.822591 ], [ 45.878906, 35.746512 ], [ 45.703125, 35.746512 ], [ 45.703125, 35.889050 ], [ 45.351562, 35.889050 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 36.879621 ], [ 44.824219, 36.879621 ], [ 44.824219, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 38.134557 ], [ 44.472656, 38.134557 ], [ 44.472656, 38.548165 ], [ 44.296875, 38.548165 ], [ 44.296875, 39.095963 ], [ 44.121094, 39.095963 ], [ 44.121094, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 39.504041 ], [ 44.648438, 39.504041 ], [ 44.648438, 39.639538 ], [ 44.824219, 39.639538 ], [ 44.824219, 39.504041 ], [ 45.000000, 39.504041 ], [ 45.000000, 39.232253 ] ] ], [ [ [ 45.703125, 33.284620 ], [ 45.703125, 33.578015 ], [ 45.527344, 33.578015 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.161818 ], [ 45.527344, 34.161818 ], [ 45.527344, 34.452218 ], [ 45.703125, 34.452218 ], [ 45.703125, 34.741612 ], [ 45.878906, 34.741612 ], [ 45.878906, 33.284620 ], [ 45.703125, 33.284620 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.741612 ], [ 45.878906, 33.284620 ], [ 45.703125, 33.284620 ], [ 45.703125, 33.578015 ], [ 45.527344, 33.578015 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.161818 ], [ 45.527344, 34.161818 ], [ 45.527344, 34.452218 ], [ 45.703125, 34.452218 ], [ 45.703125, 34.741612 ], [ 45.878906, 34.741612 ] ] ], [ [ [ 44.824219, 39.504041 ], [ 45.000000, 39.504041 ], [ 45.000000, 39.232253 ], [ 45.175781, 39.232253 ], [ 45.175781, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 45.878906, 38.822591 ], [ 45.878906, 35.746512 ], [ 45.703125, 35.746512 ], [ 45.703125, 35.889050 ], [ 45.351562, 35.889050 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 36.879621 ], [ 44.824219, 36.879621 ], [ 44.824219, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 38.134557 ], [ 44.472656, 38.134557 ], [ 44.472656, 38.548165 ], [ 44.296875, 38.548165 ], [ 44.296875, 39.095963 ], [ 44.121094, 39.095963 ], [ 44.121094, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 39.504041 ], [ 44.648438, 39.504041 ], [ 44.648438, 39.639538 ], [ 44.824219, 39.639538 ], [ 44.824219, 39.504041 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, 31.802893 ], [ 40.781250, 31.802893 ], [ 40.781250, 31.653381 ], [ 40.957031, 31.653381 ], [ 40.957031, 31.503629 ], [ 41.308594, 31.503629 ], [ 41.308594, 31.353637 ], [ 41.660156, 31.353637 ], [ 41.660156, 31.203405 ], [ 41.835938, 31.203405 ], [ 41.835938, 31.052934 ], [ 42.011719, 31.052934 ], [ 42.011719, 30.902225 ], [ 42.363281, 30.902225 ], [ 42.363281, 30.751278 ], [ 42.539062, 30.751278 ], [ 42.539062, 30.600094 ], [ 42.714844, 30.600094 ], [ 42.714844, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.297018 ], [ 43.066406, 30.297018 ], [ 43.066406, 30.145127 ], [ 43.417969, 30.145127 ], [ 43.417969, 29.993002 ], [ 43.593750, 29.993002 ], [ 43.593750, 29.840644 ], [ 43.769531, 29.840644 ], [ 43.769531, 29.688053 ], [ 43.945312, 29.688053 ], [ 43.945312, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.382175 ], [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 45.175781, 29.228890 ], [ 45.175781, 29.075375 ], [ 45.878906, 29.075375 ], [ 45.878906, 17.308688 ], [ 45.175781, 17.308688 ], [ 45.175781, 17.476432 ], [ 44.121094, 17.476432 ], [ 44.121094, 17.308688 ], [ 43.593750, 17.308688 ], [ 43.593750, 17.476432 ], [ 43.242188, 17.476432 ], [ 43.242188, 17.140790 ], [ 43.066406, 17.140790 ], [ 43.066406, 16.804541 ], [ 43.242188, 16.804541 ], [ 43.242188, 16.467695 ], [ 42.890625, 16.467695 ], [ 42.890625, 16.299051 ], [ 42.714844, 16.299051 ], [ 42.714844, 16.804541 ], [ 42.539062, 16.804541 ], [ 42.539062, 16.972741 ], [ 42.363281, 16.972741 ], [ 42.363281, 17.308688 ], [ 42.187500, 17.308688 ], [ 42.187500, 17.476432 ], [ 42.011719, 17.476432 ], [ 42.011719, 17.644022 ], [ 41.835938, 17.644022 ], [ 41.835938, 17.811456 ], [ 41.660156, 17.811456 ], [ 41.660156, 18.145852 ], [ 41.484375, 18.145852 ], [ 41.484375, 18.479609 ], [ 41.308594, 18.479609 ], [ 41.308594, 18.812718 ], [ 41.132812, 18.812718 ], [ 41.132812, 19.145168 ], [ 40.957031, 19.145168 ], [ 40.957031, 19.476950 ], [ 40.781250, 19.476950 ], [ 40.781250, 19.642588 ], [ 40.605469, 19.642588 ], [ 40.605469, 19.808054 ], [ 40.429688, 19.808054 ], [ 40.429688, 19.973349 ], [ 40.253906, 19.973349 ], [ 40.253906, 20.138470 ], [ 39.902344, 20.138470 ], [ 39.902344, 20.303418 ], [ 39.726562, 20.303418 ], [ 39.726562, 20.468189 ], [ 39.550781, 20.468189 ], [ 39.550781, 20.797201 ], [ 39.375000, 20.797201 ], [ 39.375000, 21.125498 ], [ 39.199219, 21.125498 ], [ 39.199219, 21.616579 ], [ 39.023438, 21.616579 ], [ 39.023438, 22.755921 ], [ 38.847656, 22.755921 ], [ 38.847656, 23.079732 ], [ 38.671875, 23.079732 ], [ 38.671875, 23.402765 ], [ 38.496094, 23.402765 ], [ 38.496094, 23.725012 ], [ 38.320312, 23.725012 ], [ 38.320312, 23.885838 ], [ 37.968750, 23.885838 ], [ 37.968750, 24.046464 ], [ 37.617188, 24.046464 ], [ 37.617188, 24.206890 ], [ 37.441406, 24.206890 ], [ 37.441406, 24.367114 ], [ 37.265625, 24.367114 ], [ 37.265625, 24.686952 ], [ 37.089844, 24.686952 ], [ 37.089844, 24.846565 ], [ 37.265625, 24.846565 ], [ 37.265625, 25.165173 ], [ 37.089844, 25.165173 ], [ 37.089844, 25.482951 ], [ 36.914062, 25.482951 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.641526 ], [ 36.562500, 25.958045 ], [ 36.386719, 25.958045 ], [ 36.386719, 26.273714 ], [ 36.210938, 26.273714 ], [ 36.210938, 26.588527 ], [ 36.035156, 26.588527 ], [ 36.035156, 26.902477 ], [ 35.859375, 26.902477 ], [ 35.859375, 27.215556 ], [ 35.683594, 27.215556 ], [ 35.683594, 27.371767 ], [ 35.507812, 27.371767 ], [ 35.507812, 27.683528 ], [ 35.332031, 27.683528 ], [ 35.332031, 27.839076 ], [ 35.156250, 27.839076 ], [ 35.156250, 27.994401 ], [ 34.628906, 27.994401 ], [ 34.628906, 28.304381 ], [ 34.804688, 28.304381 ], [ 34.804688, 29.075375 ], [ 34.980469, 29.075375 ], [ 34.980469, 29.382175 ], [ 35.332031, 29.382175 ], [ 35.332031, 29.228890 ], [ 36.210938, 29.228890 ], [ 36.210938, 29.382175 ], [ 36.562500, 29.382175 ], [ 36.562500, 29.688053 ], [ 36.738281, 29.688053 ], [ 36.738281, 29.840644 ], [ 37.265625, 29.840644 ], [ 37.265625, 29.993002 ], [ 37.441406, 29.993002 ], [ 37.441406, 30.145127 ], [ 37.617188, 30.145127 ], [ 37.617188, 30.297018 ], [ 37.968750, 30.297018 ], [ 37.968750, 30.448674 ], [ 37.792969, 30.448674 ], [ 37.792969, 30.751278 ], [ 37.617188, 30.751278 ], [ 37.617188, 30.902225 ], [ 37.441406, 30.902225 ], [ 37.441406, 31.052934 ], [ 37.265625, 31.052934 ], [ 37.265625, 31.353637 ], [ 37.089844, 31.353637 ], [ 37.089844, 31.503629 ], [ 37.441406, 31.503629 ], [ 37.441406, 31.653381 ], [ 38.144531, 31.653381 ], [ 38.144531, 31.802893 ], [ 38.847656, 31.802893 ], [ 38.847656, 31.952162 ], [ 39.199219, 31.952162 ], [ 39.199219, 32.101190 ], [ 39.726562, 32.101190 ], [ 39.726562, 31.952162 ], [ 40.429688, 31.952162 ], [ 40.429688, 31.802893 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.726562, 32.101190 ], [ 39.726562, 31.952162 ], [ 40.429688, 31.952162 ], [ 40.429688, 31.802893 ], [ 40.781250, 31.802893 ], [ 40.781250, 31.653381 ], [ 40.957031, 31.653381 ], [ 40.957031, 31.503629 ], [ 41.308594, 31.503629 ], [ 41.308594, 31.353637 ], [ 41.660156, 31.353637 ], [ 41.660156, 31.203405 ], [ 41.835938, 31.203405 ], [ 41.835938, 31.052934 ], [ 42.011719, 31.052934 ], [ 42.011719, 30.902225 ], [ 42.363281, 30.902225 ], [ 42.363281, 30.751278 ], [ 42.539062, 30.751278 ], [ 42.539062, 30.600094 ], [ 42.714844, 30.600094 ], [ 42.714844, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.297018 ], [ 43.066406, 30.297018 ], [ 43.066406, 30.145127 ], [ 43.417969, 30.145127 ], [ 43.417969, 29.993002 ], [ 43.593750, 29.993002 ], [ 43.593750, 29.840644 ], [ 43.769531, 29.840644 ], [ 43.769531, 29.688053 ], [ 43.945312, 29.688053 ], [ 43.945312, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.382175 ], [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 45.175781, 29.228890 ], [ 45.175781, 29.075375 ], [ 45.878906, 29.075375 ], [ 45.878906, 17.308688 ], [ 45.175781, 17.308688 ], [ 45.175781, 17.476432 ], [ 44.121094, 17.476432 ], [ 44.121094, 17.308688 ], [ 43.593750, 17.308688 ], [ 43.593750, 17.476432 ], [ 43.242188, 17.476432 ], [ 43.242188, 17.140790 ], [ 43.066406, 17.140790 ], [ 43.066406, 16.804541 ], [ 43.242188, 16.804541 ], [ 43.242188, 16.467695 ], [ 42.890625, 16.467695 ], [ 42.890625, 16.299051 ], [ 42.714844, 16.299051 ], [ 42.714844, 16.804541 ], [ 42.539062, 16.804541 ], [ 42.539062, 16.972741 ], [ 42.363281, 16.972741 ], [ 42.363281, 17.308688 ], [ 42.187500, 17.308688 ], [ 42.187500, 17.476432 ], [ 42.011719, 17.476432 ], [ 42.011719, 17.644022 ], [ 41.835938, 17.644022 ], [ 41.835938, 17.811456 ], [ 41.660156, 17.811456 ], [ 41.660156, 18.145852 ], [ 41.484375, 18.145852 ], [ 41.484375, 18.479609 ], [ 41.308594, 18.479609 ], [ 41.308594, 18.812718 ], [ 41.132812, 18.812718 ], [ 41.132812, 19.145168 ], [ 40.957031, 19.145168 ], [ 40.957031, 19.476950 ], [ 40.781250, 19.476950 ], [ 40.781250, 19.642588 ], [ 40.605469, 19.642588 ], [ 40.605469, 19.808054 ], [ 40.429688, 19.808054 ], [ 40.429688, 19.973349 ], [ 40.253906, 19.973349 ], [ 40.253906, 20.138470 ], [ 39.902344, 20.138470 ], [ 39.902344, 20.303418 ], [ 39.726562, 20.303418 ], [ 39.726562, 20.468189 ], [ 39.550781, 20.468189 ], [ 39.550781, 20.797201 ], [ 39.375000, 20.797201 ], [ 39.375000, 21.125498 ], [ 39.199219, 21.125498 ], [ 39.199219, 21.616579 ], [ 39.023438, 21.616579 ], [ 39.023438, 22.755921 ], [ 38.847656, 22.755921 ], [ 38.847656, 23.079732 ], [ 38.671875, 23.079732 ], [ 38.671875, 23.402765 ], [ 38.496094, 23.402765 ], [ 38.496094, 23.725012 ], [ 38.320312, 23.725012 ], [ 38.320312, 23.885838 ], [ 37.968750, 23.885838 ], [ 37.968750, 24.046464 ], [ 37.617188, 24.046464 ], [ 37.617188, 24.206890 ], [ 37.441406, 24.206890 ], [ 37.441406, 24.367114 ], [ 37.265625, 24.367114 ], [ 37.265625, 24.686952 ], [ 37.089844, 24.686952 ], [ 37.089844, 24.846565 ], [ 37.265625, 24.846565 ], [ 37.265625, 25.165173 ], [ 37.089844, 25.165173 ], [ 37.089844, 25.482951 ], [ 36.914062, 25.482951 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.641526 ], [ 36.562500, 25.958045 ], [ 36.386719, 25.958045 ], [ 36.386719, 26.273714 ], [ 36.210938, 26.273714 ], [ 36.210938, 26.588527 ], [ 36.035156, 26.588527 ], [ 36.035156, 26.902477 ], [ 35.859375, 26.902477 ], [ 35.859375, 27.215556 ], [ 35.683594, 27.215556 ], [ 35.683594, 27.371767 ], [ 35.507812, 27.371767 ], [ 35.507812, 27.683528 ], [ 35.332031, 27.683528 ], [ 35.332031, 27.839076 ], [ 35.156250, 27.839076 ], [ 35.156250, 27.994401 ], [ 34.628906, 27.994401 ], [ 34.628906, 28.304381 ], [ 34.804688, 28.304381 ], [ 34.804688, 29.075375 ], [ 34.980469, 29.075375 ], [ 34.980469, 29.382175 ], [ 35.332031, 29.382175 ], [ 35.332031, 29.228890 ], [ 36.210938, 29.228890 ], [ 36.210938, 29.382175 ], [ 36.562500, 29.382175 ], [ 36.562500, 29.688053 ], [ 36.738281, 29.688053 ], [ 36.738281, 29.840644 ], [ 37.265625, 29.840644 ], [ 37.265625, 29.993002 ], [ 37.441406, 29.993002 ], [ 37.441406, 30.145127 ], [ 37.617188, 30.145127 ], [ 37.617188, 30.297018 ], [ 37.968750, 30.297018 ], [ 37.968750, 30.448674 ], [ 37.792969, 30.448674 ], [ 37.792969, 30.751278 ], [ 37.617188, 30.751278 ], [ 37.617188, 30.902225 ], [ 37.441406, 30.902225 ], [ 37.441406, 31.052934 ], [ 37.265625, 31.052934 ], [ 37.265625, 31.353637 ], [ 37.089844, 31.353637 ], [ 37.089844, 31.503629 ], [ 37.441406, 31.503629 ], [ 37.441406, 31.653381 ], [ 38.144531, 31.653381 ], [ 38.144531, 31.802893 ], [ 38.847656, 31.802893 ], [ 38.847656, 31.952162 ], [ 39.199219, 31.952162 ], [ 39.199219, 32.101190 ], [ 39.726562, 32.101190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 13.068777 ], [ 45.351562, 13.068777 ], [ 45.351562, 12.897489 ], [ 45.175781, 12.897489 ], [ 45.175781, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.472656, 12.554564 ], [ 43.417969, 12.554564 ], [ 43.417969, 12.897489 ], [ 43.242188, 12.897489 ], [ 43.242188, 13.923404 ], [ 43.066406, 13.923404 ], [ 43.066406, 14.434680 ], [ 42.890625, 14.434680 ], [ 42.890625, 14.774883 ], [ 42.714844, 14.774883 ], [ 42.714844, 15.114553 ], [ 42.539062, 15.114553 ], [ 42.539062, 15.284185 ], [ 42.890625, 15.284185 ], [ 42.890625, 15.453680 ], [ 42.714844, 15.453680 ], [ 42.714844, 15.792254 ], [ 42.890625, 15.792254 ], [ 42.890625, 16.130262 ], [ 42.714844, 16.130262 ], [ 42.714844, 16.299051 ], [ 42.890625, 16.299051 ], [ 42.890625, 16.467695 ], [ 43.242188, 16.467695 ], [ 43.242188, 16.804541 ], [ 43.066406, 16.804541 ], [ 43.066406, 17.140790 ], [ 43.242188, 17.140790 ], [ 43.242188, 17.476432 ], [ 43.593750, 17.476432 ], [ 43.593750, 17.308688 ], [ 44.121094, 17.308688 ], [ 44.121094, 17.476432 ], [ 45.175781, 17.476432 ], [ 45.175781, 17.308688 ], [ 45.878906, 17.308688 ], [ 45.878906, 13.239945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 17.476432 ], [ 45.175781, 17.308688 ], [ 45.878906, 17.308688 ], [ 45.878906, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 13.068777 ], [ 45.351562, 13.068777 ], [ 45.351562, 12.897489 ], [ 45.175781, 12.897489 ], [ 45.175781, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.472656, 12.554564 ], [ 43.417969, 12.554564 ], [ 43.417969, 12.897489 ], [ 43.242188, 12.897489 ], [ 43.242188, 13.923404 ], [ 43.066406, 13.923404 ], [ 43.066406, 14.434680 ], [ 42.890625, 14.434680 ], [ 42.890625, 14.774883 ], [ 42.714844, 14.774883 ], [ 42.714844, 15.114553 ], [ 42.539062, 15.114553 ], [ 42.539062, 15.284185 ], [ 42.890625, 15.284185 ], [ 42.890625, 15.453680 ], [ 42.714844, 15.453680 ], [ 42.714844, 15.792254 ], [ 42.890625, 15.792254 ], [ 42.890625, 16.130262 ], [ 42.714844, 16.130262 ], [ 42.714844, 16.299051 ], [ 42.890625, 16.299051 ], [ 42.890625, 16.467695 ], [ 43.242188, 16.467695 ], [ 43.242188, 16.804541 ], [ 43.066406, 16.804541 ], [ 43.066406, 17.140790 ], [ 43.242188, 17.140790 ], [ 43.242188, 17.476432 ], [ 43.593750, 17.476432 ], [ 43.593750, 17.308688 ], [ 44.121094, 17.308688 ], [ 44.121094, 17.476432 ], [ 45.175781, 17.476432 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 10.660608 ], [ 43.945312, 10.660608 ], [ 43.945312, 10.487812 ], [ 45.175781, 10.487812 ], [ 45.175781, 10.660608 ], [ 45.878906, 10.660608 ], [ 45.878906, 8.407168 ], [ 45.527344, 8.407168 ], [ 45.527344, 8.581021 ], [ 45.000000, 8.581021 ], [ 45.000000, 8.754795 ], [ 44.296875, 8.754795 ], [ 44.296875, 8.928487 ], [ 43.769531, 8.928487 ], [ 43.769531, 9.102097 ], [ 43.417969, 9.102097 ], [ 43.417969, 9.449062 ], [ 43.242188, 9.449062 ], [ 43.242188, 9.622414 ], [ 43.066406, 9.622414 ], [ 43.066406, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 9.968851 ], [ 42.714844, 9.968851 ], [ 42.714844, 10.314919 ], [ 42.539062, 10.314919 ], [ 42.539062, 10.660608 ], [ 42.714844, 10.660608 ], [ 42.714844, 11.005904 ], [ 42.890625, 11.005904 ], [ 42.890625, 11.350797 ], [ 43.417969, 11.350797 ], [ 43.417969, 11.005904 ], [ 43.593750, 11.005904 ], [ 43.593750, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 11.350797 ], [ 43.417969, 11.005904 ], [ 43.593750, 11.005904 ], [ 43.593750, 10.660608 ], [ 43.945312, 10.660608 ], [ 43.945312, 10.487812 ], [ 45.175781, 10.487812 ], [ 45.175781, 10.660608 ], [ 45.878906, 10.660608 ], [ 45.878906, 8.407168 ], [ 45.527344, 8.407168 ], [ 45.527344, 8.581021 ], [ 45.000000, 8.581021 ], [ 45.000000, 8.754795 ], [ 44.296875, 8.754795 ], [ 44.296875, 8.928487 ], [ 43.769531, 8.928487 ], [ 43.769531, 9.102097 ], [ 43.417969, 9.102097 ], [ 43.417969, 9.449062 ], [ 43.242188, 9.449062 ], [ 43.242188, 9.622414 ], [ 43.066406, 9.622414 ], [ 43.066406, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 9.968851 ], [ 42.714844, 9.968851 ], [ 42.714844, 10.314919 ], [ 42.539062, 10.314919 ], [ 42.539062, 10.660608 ], [ 42.714844, 10.660608 ], [ 42.714844, 11.005904 ], [ 42.890625, 11.005904 ], [ 42.890625, 11.350797 ], [ 43.417969, 11.350797 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.351562, 1.933227 ], [ 45.351562, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.824219, 1.581830 ], [ 44.824219, 1.406109 ], [ 44.648438, 1.406109 ], [ 44.648438, 1.230374 ], [ 44.296875, 1.230374 ], [ 44.296875, 1.054628 ], [ 44.121094, 1.054628 ], [ 44.121094, 0.878872 ], [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 40.957031, -0.878872 ], [ 40.957031, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, 2.986927 ], [ 41.308594, 2.986927 ], [ 41.308594, 3.337954 ], [ 41.484375, 3.337954 ], [ 41.484375, 3.513421 ], [ 41.660156, 3.513421 ], [ 41.660156, 3.688855 ], [ 41.835938, 3.688855 ], [ 41.835938, 3.864255 ], [ 42.011719, 3.864255 ], [ 42.011719, 4.039618 ], [ 42.187500, 4.039618 ], [ 42.187500, 4.214943 ], [ 42.890625, 4.214943 ], [ 42.890625, 4.390229 ], [ 43.066406, 4.390229 ], [ 43.066406, 4.565474 ], [ 43.417969, 4.565474 ], [ 43.417969, 4.740675 ], [ 43.593750, 4.740675 ], [ 43.593750, 4.915833 ], [ 45.175781, 4.915833 ], [ 45.175781, 5.090944 ], [ 45.351562, 5.090944 ], [ 45.351562, 5.441022 ], [ 45.527344, 5.441022 ], [ 45.527344, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 5.790897 ], [ 45.878906, 5.790897 ], [ 45.878906, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.790897 ], [ 45.878906, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.351562, 1.933227 ], [ 45.351562, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.824219, 1.581830 ], [ 44.824219, 1.406109 ], [ 44.648438, 1.406109 ], [ 44.648438, 1.230374 ], [ 44.296875, 1.230374 ], [ 44.296875, 1.054628 ], [ 44.121094, 1.054628 ], [ 44.121094, 0.878872 ], [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 40.957031, -0.878872 ], [ 40.957031, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, 2.986927 ], [ 41.308594, 2.986927 ], [ 41.308594, 3.337954 ], [ 41.484375, 3.337954 ], [ 41.484375, 3.513421 ], [ 41.660156, 3.513421 ], [ 41.660156, 3.688855 ], [ 41.835938, 3.688855 ], [ 41.835938, 3.864255 ], [ 42.011719, 3.864255 ], [ 42.011719, 4.039618 ], [ 42.187500, 4.039618 ], [ 42.187500, 4.214943 ], [ 42.890625, 4.214943 ], [ 42.890625, 4.390229 ], [ 43.066406, 4.390229 ], [ 43.066406, 4.565474 ], [ 43.417969, 4.565474 ], [ 43.417969, 4.740675 ], [ 43.593750, 4.740675 ], [ 43.593750, 4.915833 ], [ 45.175781, 4.915833 ], [ 45.175781, 5.090944 ], [ 45.351562, 5.090944 ], [ 45.351562, 5.441022 ], [ 45.527344, 5.441022 ], [ 45.527344, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 5.790897 ], [ 45.878906, 5.790897 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.238281, 0.878872 ], [ 14.062500, 0.878872 ], [ 14.062500, 0.175781 ], [ 13.886719, 0.175781 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -0.878872 ], [ 8.789062, -0.878872 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.703107 ], [ 8.964844, -0.351560 ], [ 9.140625, -0.351560 ], [ 9.140625, 0.000000 ], [ 9.316406, 0.000000 ], [ 9.316406, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.284551 ], [ 11.953125, 2.284551 ], [ 11.953125, 2.108899 ], [ 12.832031, 2.108899 ], [ 12.832031, 2.284551 ], [ 13.007812, 2.284551 ], [ 13.007812, 1.581830 ], [ 13.183594, 1.581830 ], [ 13.183594, 1.230374 ], [ 13.886719, 1.230374 ], [ 13.886719, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.230374 ], [ 14.238281, 1.230374 ], [ 14.238281, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.284551 ], [ 13.007812, 1.581830 ], [ 13.183594, 1.581830 ], [ 13.183594, 1.230374 ], [ 13.886719, 1.230374 ], [ 13.886719, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.230374 ], [ 14.238281, 1.230374 ], [ 14.238281, 0.878872 ], [ 14.062500, 0.878872 ], [ 14.062500, 0.175781 ], [ 13.886719, 0.175781 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -0.878872 ], [ 8.789062, -0.878872 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.703107 ], [ 8.964844, -0.351560 ], [ 9.140625, -0.351560 ], [ 9.140625, 0.000000 ], [ 9.316406, 0.000000 ], [ 9.316406, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.284551 ], [ 11.953125, 2.284551 ], [ 11.953125, 2.108899 ], [ 12.832031, 2.108899 ], [ 12.832031, 2.284551 ], [ 13.007812, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.457031, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 2.460181 ], [ 18.105469, 2.460181 ], [ 18.105469, 1.933227 ], [ 17.929688, 1.933227 ], [ 17.929688, 1.230374 ], [ 17.753906, 1.230374 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.878872 ], [ 14.414062, -0.878872 ], [ 14.414062, -0.703107 ], [ 14.238281, -0.703107 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.175781 ], [ 14.062500, 0.175781 ], [ 14.062500, 0.878872 ], [ 14.238281, 0.878872 ], [ 14.238281, 1.230374 ], [ 14.062500, 1.230374 ], [ 14.062500, 1.406109 ], [ 13.886719, 1.406109 ], [ 13.886719, 1.230374 ], [ 13.183594, 1.230374 ], [ 13.183594, 1.581830 ], [ 13.007812, 1.581830 ], [ 13.007812, 2.284551 ], [ 14.414062, 2.284551 ], [ 14.414062, 2.108899 ], [ 14.765625, 2.108899 ], [ 14.765625, 1.933227 ], [ 15.468750, 1.933227 ], [ 15.468750, 1.757537 ], [ 15.996094, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.171875, 2.284551 ], [ 16.171875, 2.635789 ], [ 16.347656, 2.635789 ], [ 16.347656, 2.986927 ], [ 16.523438, 2.986927 ], [ 16.523438, 3.162456 ], [ 16.699219, 3.162456 ], [ 16.699219, 3.337954 ], [ 16.875000, 3.337954 ], [ 16.875000, 3.513421 ], [ 17.050781, 3.513421 ], [ 17.050781, 3.688855 ], [ 17.226562, 3.688855 ], [ 17.226562, 3.513421 ], [ 18.457031, 3.513421 ], [ 18.457031, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.226562, 3.688855 ], [ 17.226562, 3.513421 ], [ 18.457031, 3.513421 ], [ 18.457031, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 2.460181 ], [ 18.105469, 2.460181 ], [ 18.105469, 1.933227 ], [ 17.929688, 1.933227 ], [ 17.929688, 1.230374 ], [ 17.753906, 1.230374 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.878872 ], [ 14.414062, -0.878872 ], [ 14.414062, -0.703107 ], [ 14.238281, -0.703107 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.175781 ], [ 14.062500, 0.175781 ], [ 14.062500, 0.878872 ], [ 14.238281, 0.878872 ], [ 14.238281, 1.230374 ], [ 14.062500, 1.230374 ], [ 14.062500, 1.406109 ], [ 13.886719, 1.406109 ], [ 13.886719, 1.230374 ], [ 13.183594, 1.230374 ], [ 13.183594, 1.581830 ], [ 13.007812, 1.581830 ], [ 13.007812, 2.284551 ], [ 14.414062, 2.284551 ], [ 14.414062, 2.108899 ], [ 14.765625, 2.108899 ], [ 14.765625, 1.933227 ], [ 15.468750, 1.933227 ], [ 15.468750, 1.757537 ], [ 15.996094, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.171875, 2.284551 ], [ 16.171875, 2.635789 ], [ 16.347656, 2.635789 ], [ 16.347656, 2.986927 ], [ 16.523438, 2.986927 ], [ 16.523438, 3.162456 ], [ 16.699219, 3.162456 ], [ 16.699219, 3.337954 ], [ 16.875000, 3.337954 ], [ 16.875000, 3.513421 ], [ 17.050781, 3.513421 ], [ 17.050781, 3.688855 ], [ 17.226562, 3.688855 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.597656, 4.740675 ], [ 27.773438, 4.740675 ], [ 27.773438, 4.390229 ], [ 28.125000, 4.390229 ], [ 28.125000, 4.214943 ], [ 28.652344, 4.214943 ], [ 28.652344, 4.390229 ], [ 29.531250, 4.390229 ], [ 29.531250, 4.565474 ], [ 29.707031, 4.565474 ], [ 29.707031, 4.390229 ], [ 29.882812, 4.390229 ], [ 29.882812, 4.039618 ], [ 30.058594, 4.039618 ], [ 30.058594, 3.864255 ], [ 30.410156, 3.864255 ], [ 30.410156, 3.688855 ], [ 30.585938, 3.688855 ], [ 30.585938, 3.513421 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.284551 ], [ 31.113281, 2.284551 ], [ 31.113281, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.581830 ], [ 30.410156, 1.581830 ], [ 30.410156, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 1.054628 ], [ 30.058594, 1.054628 ], [ 30.058594, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, -0.527336 ], [ 29.531250, -0.527336 ], [ 29.531250, -0.878872 ], [ 17.578125, -0.878872 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 1.230374 ], [ 17.929688, 1.230374 ], [ 17.929688, 1.933227 ], [ 18.105469, 1.933227 ], [ 18.105469, 2.460181 ], [ 18.281250, 2.460181 ], [ 18.281250, 2.811371 ], [ 18.457031, 2.811371 ], [ 18.457031, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 4.390229 ], [ 18.808594, 4.390229 ], [ 18.808594, 4.565474 ], [ 18.984375, 4.565474 ], [ 18.984375, 4.740675 ], [ 19.160156, 4.740675 ], [ 19.160156, 4.915833 ], [ 19.863281, 4.915833 ], [ 19.863281, 4.740675 ], [ 20.214844, 4.740675 ], [ 20.214844, 4.565474 ], [ 20.566406, 4.565474 ], [ 20.566406, 4.390229 ], [ 21.093750, 4.390229 ], [ 21.093750, 4.214943 ], [ 21.796875, 4.214943 ], [ 21.796875, 4.039618 ], [ 22.500000, 4.039618 ], [ 22.500000, 4.390229 ], [ 22.675781, 4.390229 ], [ 22.675781, 4.565474 ], [ 22.851562, 4.565474 ], [ 22.851562, 4.740675 ], [ 23.027344, 4.740675 ], [ 23.027344, 4.565474 ], [ 23.730469, 4.565474 ], [ 23.730469, 4.740675 ], [ 24.082031, 4.740675 ], [ 24.082031, 4.915833 ], [ 25.312500, 4.915833 ], [ 25.312500, 5.090944 ], [ 25.664062, 5.090944 ], [ 25.664062, 5.266008 ], [ 25.839844, 5.266008 ], [ 25.839844, 5.090944 ], [ 27.597656, 5.090944 ], [ 27.597656, 4.740675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 5.266008 ], [ 25.839844, 5.090944 ], [ 27.597656, 5.090944 ], [ 27.597656, 4.740675 ], [ 27.773438, 4.740675 ], [ 27.773438, 4.390229 ], [ 28.125000, 4.390229 ], [ 28.125000, 4.214943 ], [ 28.652344, 4.214943 ], [ 28.652344, 4.390229 ], [ 29.531250, 4.390229 ], [ 29.531250, 4.565474 ], [ 29.707031, 4.565474 ], [ 29.707031, 4.390229 ], [ 29.882812, 4.390229 ], [ 29.882812, 4.039618 ], [ 30.058594, 4.039618 ], [ 30.058594, 3.864255 ], [ 30.410156, 3.864255 ], [ 30.410156, 3.688855 ], [ 30.585938, 3.688855 ], [ 30.585938, 3.513421 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.284551 ], [ 31.113281, 2.284551 ], [ 31.113281, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.581830 ], [ 30.410156, 1.581830 ], [ 30.410156, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 1.054628 ], [ 30.058594, 1.054628 ], [ 30.058594, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, -0.527336 ], [ 29.531250, -0.527336 ], [ 29.531250, -0.878872 ], [ 17.578125, -0.878872 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 1.230374 ], [ 17.929688, 1.230374 ], [ 17.929688, 1.933227 ], [ 18.105469, 1.933227 ], [ 18.105469, 2.460181 ], [ 18.281250, 2.460181 ], [ 18.281250, 2.811371 ], [ 18.457031, 2.811371 ], [ 18.457031, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 4.390229 ], [ 18.808594, 4.390229 ], [ 18.808594, 4.565474 ], [ 18.984375, 4.565474 ], [ 18.984375, 4.740675 ], [ 19.160156, 4.740675 ], [ 19.160156, 4.915833 ], [ 19.863281, 4.915833 ], [ 19.863281, 4.740675 ], [ 20.214844, 4.740675 ], [ 20.214844, 4.565474 ], [ 20.566406, 4.565474 ], [ 20.566406, 4.390229 ], [ 21.093750, 4.390229 ], [ 21.093750, 4.214943 ], [ 21.796875, 4.214943 ], [ 21.796875, 4.039618 ], [ 22.500000, 4.039618 ], [ 22.500000, 4.390229 ], [ 22.675781, 4.390229 ], [ 22.675781, 4.565474 ], [ 22.851562, 4.565474 ], [ 22.851562, 4.740675 ], [ 23.027344, 4.740675 ], [ 23.027344, 4.565474 ], [ 23.730469, 4.565474 ], [ 23.730469, 4.740675 ], [ 24.082031, 4.740675 ], [ 24.082031, 4.915833 ], [ 25.312500, 4.915833 ], [ 25.312500, 5.090944 ], [ 25.664062, 5.090944 ], [ 25.664062, 5.266008 ], [ 25.839844, 5.266008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 54.470038 ], [ -0.351562, 54.470038 ], [ -0.351562, 54.265224 ], [ -0.175781, 54.265224 ], [ -0.175781, 53.852527 ], [ 0.000000, 53.852527 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.225768 ], [ 0.351562, 53.225768 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.802761 ], [ 1.406250, 52.802761 ], [ 1.406250, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.375599 ], [ 1.582031, 52.375599 ], [ 1.582031, 51.944265 ], [ 1.230469, 51.944265 ], [ 1.230469, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.230469, 51.618017 ], [ 1.230469, 51.399206 ], [ 1.406250, 51.399206 ], [ 1.406250, 51.179343 ], [ 1.230469, 51.179343 ], [ 1.230469, 51.069017 ], [ 1.054688, 51.069017 ], [ 1.054688, 50.958427 ], [ 0.878906, 50.958427 ], [ 0.878906, 50.847573 ], [ 0.703125, 50.847573 ], [ 0.703125, 50.736455 ], [ -0.878906, 50.736455 ], [ -0.878906, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 54.470038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 54.572062 ], [ -0.703125, 54.470038 ], [ -0.351562, 54.470038 ], [ -0.351562, 54.265224 ], [ -0.175781, 54.265224 ], [ -0.175781, 53.852527 ], [ 0.000000, 53.852527 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.225768 ], [ 0.351562, 53.225768 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.802761 ], [ 1.406250, 52.802761 ], [ 1.406250, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.375599 ], [ 1.582031, 52.375599 ], [ 1.582031, 51.944265 ], [ 1.230469, 51.944265 ], [ 1.230469, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.230469, 51.618017 ], [ 1.230469, 51.399206 ], [ 1.406250, 51.399206 ], [ 1.406250, 51.179343 ], [ 1.230469, 51.179343 ], [ 1.230469, 51.069017 ], [ 1.054688, 51.069017 ], [ 1.054688, 50.958427 ], [ 0.878906, 50.958427 ], [ 0.878906, 50.847573 ], [ 0.703125, 50.847573 ], [ 0.703125, 50.736455 ], [ -0.878906, 50.736455 ], [ -0.878906, 54.572062 ], [ -0.703125, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 42.553080 ], [ 9.492188, 42.553080 ], [ 9.492188, 41.771312 ], [ 9.316406, 41.771312 ], [ 9.316406, 41.376809 ], [ 9.140625, 41.376809 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.902277 ], [ 8.613281, 41.902277 ], [ 8.613281, 42.423457 ], [ 8.789062, 42.423457 ], [ 8.789062, 42.682435 ], [ 8.964844, 42.682435 ], [ 8.964844, 42.811522 ], [ 9.140625, 42.811522 ], [ 9.140625, 42.940339 ], [ 9.316406, 42.940339 ], [ 9.316406, 42.553080 ] ] ], [ [ [ 6.855469, 47.159840 ], [ 6.679688, 47.159840 ], [ 6.679688, 47.040182 ], [ 6.503906, 47.040182 ], [ 6.503906, 46.920255 ], [ 6.328125, 46.920255 ], [ 6.328125, 46.800059 ], [ 6.152344, 46.800059 ], [ 6.152344, 46.679594 ], [ 5.976562, 46.679594 ], [ 5.976562, 46.316584 ], [ 6.328125, 46.316584 ], [ 6.328125, 46.437857 ], [ 6.503906, 46.437857 ], [ 6.503906, 46.316584 ], [ 6.679688, 46.316584 ], [ 6.679688, 46.073231 ], [ 6.855469, 46.073231 ], [ 6.855469, 45.460131 ], [ 7.031250, 45.460131 ], [ 7.031250, 45.213004 ], [ 6.855469, 45.213004 ], [ 6.855469, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.840291 ], [ 6.855469, 44.840291 ], [ 6.855469, 44.339565 ], [ 7.031250, 44.339565 ], [ 7.031250, 44.213710 ], [ 7.207031, 44.213710 ], [ 7.207031, 44.087585 ], [ 7.558594, 44.087585 ], [ 7.558594, 43.834527 ], [ 7.382812, 43.834527 ], [ 7.382812, 43.580391 ], [ 7.207031, 43.580391 ], [ 7.207031, 43.452919 ], [ 7.031250, 43.452919 ], [ 7.031250, 43.325178 ], [ 6.855469, 43.325178 ], [ 6.855469, 43.197167 ], [ 6.679688, 43.197167 ], [ 6.679688, 43.068888 ], [ 6.152344, 43.068888 ], [ 6.152344, 43.197167 ], [ 5.449219, 43.197167 ], [ 5.449219, 43.325178 ], [ 4.746094, 43.325178 ], [ 4.746094, 43.452919 ], [ 4.394531, 43.452919 ], [ 4.394531, 43.325178 ], [ 4.042969, 43.325178 ], [ 4.042969, 43.197167 ], [ 3.515625, 43.197167 ], [ 3.515625, 43.068888 ], [ 3.164062, 43.068888 ], [ 3.164062, 42.682435 ], [ 2.988281, 42.682435 ], [ 2.988281, 42.423457 ], [ 2.460938, 42.423457 ], [ 2.460938, 42.293564 ], [ 1.582031, 42.293564 ], [ 1.582031, 42.423457 ], [ 1.230469, 42.423457 ], [ 1.230469, 42.553080 ], [ 1.054688, 42.553080 ], [ 1.054688, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.553080 ], [ 0.000000, 42.553080 ], [ 0.000000, 42.682435 ], [ -0.351562, 42.682435 ], [ -0.351562, 42.811522 ], [ -0.703125, 42.811522 ], [ -0.703125, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.496675 ], [ -0.351562, 49.496675 ], [ -0.351562, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.724479 ], [ 0.351562, 49.724479 ], [ 0.351562, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 49.951220 ], [ 1.054688, 49.951220 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.582031, 50.513427 ], [ 1.582031, 50.958427 ], [ 1.933594, 50.958427 ], [ 1.933594, 51.069017 ], [ 2.285156, 51.069017 ], [ 2.285156, 51.179343 ], [ 2.460938, 51.179343 ], [ 2.460938, 50.958427 ], [ 2.636719, 50.958427 ], [ 2.636719, 50.847573 ], [ 2.812500, 50.847573 ], [ 2.812500, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.625073 ], [ 3.339844, 50.625073 ], [ 3.339844, 50.401515 ], [ 3.515625, 50.401515 ], [ 3.515625, 50.289339 ], [ 3.691406, 50.289339 ], [ 3.691406, 50.176898 ], [ 3.867188, 50.176898 ], [ 3.867188, 50.064192 ], [ 4.042969, 50.064192 ], [ 4.042969, 49.951220 ], [ 4.746094, 49.951220 ], [ 4.746094, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.724479 ], [ 5.273438, 49.724479 ], [ 5.273438, 49.610710 ], [ 5.449219, 49.610710 ], [ 5.449219, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.152344, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 49.267805 ], [ 6.503906, 49.267805 ], [ 6.503906, 49.152970 ], [ 7.207031, 49.152970 ], [ 7.207031, 49.037868 ], [ 8.085938, 49.037868 ], [ 8.085938, 48.922499 ], [ 7.910156, 48.922499 ], [ 7.910156, 48.690960 ], [ 7.734375, 48.690960 ], [ 7.734375, 48.458352 ], [ 7.558594, 48.458352 ], [ 7.558594, 47.989922 ], [ 7.382812, 47.989922 ], [ 7.382812, 47.517201 ], [ 7.207031, 47.517201 ], [ 7.207031, 47.398349 ], [ 6.855469, 47.398349 ], [ 6.855469, 47.159840 ] ], [ [ 6.855469, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.398349 ], [ 6.855469, 47.398349 ], [ 6.855469, 47.517201 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 42.940339 ], [ 9.316406, 42.553080 ], [ 9.492188, 42.553080 ], [ 9.492188, 41.771312 ], [ 9.316406, 41.771312 ], [ 9.316406, 41.376809 ], [ 9.140625, 41.376809 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.902277 ], [ 8.613281, 41.902277 ], [ 8.613281, 42.423457 ], [ 8.789062, 42.423457 ], [ 8.789062, 42.682435 ], [ 8.964844, 42.682435 ], [ 8.964844, 42.811522 ], [ 9.140625, 42.811522 ], [ 9.140625, 42.940339 ], [ 9.316406, 42.940339 ] ] ], [ [ [ 6.855469, 47.398349 ], [ 6.855469, 47.159840 ], [ 6.679688, 47.159840 ], [ 6.679688, 47.040182 ], [ 6.503906, 47.040182 ], [ 6.503906, 46.920255 ], [ 6.328125, 46.920255 ], [ 6.328125, 46.800059 ], [ 6.152344, 46.800059 ], [ 6.152344, 46.679594 ], [ 5.976562, 46.679594 ], [ 5.976562, 46.316584 ], [ 6.328125, 46.316584 ], [ 6.328125, 46.437857 ], [ 6.503906, 46.437857 ], [ 6.503906, 46.316584 ], [ 6.679688, 46.316584 ], [ 6.679688, 46.073231 ], [ 6.855469, 46.073231 ], [ 6.855469, 45.460131 ], [ 7.031250, 45.460131 ], [ 7.031250, 45.213004 ], [ 6.855469, 45.213004 ], [ 6.855469, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.840291 ], [ 6.855469, 44.840291 ], [ 6.855469, 44.339565 ], [ 7.031250, 44.339565 ], [ 7.031250, 44.213710 ], [ 7.207031, 44.213710 ], [ 7.207031, 44.087585 ], [ 7.558594, 44.087585 ], [ 7.558594, 43.834527 ], [ 7.382812, 43.834527 ], [ 7.382812, 43.580391 ], [ 7.207031, 43.580391 ], [ 7.207031, 43.452919 ], [ 7.031250, 43.452919 ], [ 7.031250, 43.325178 ], [ 6.855469, 43.325178 ], [ 6.855469, 43.197167 ], [ 6.679688, 43.197167 ], [ 6.679688, 43.068888 ], [ 6.152344, 43.068888 ], [ 6.152344, 43.197167 ], [ 5.449219, 43.197167 ], [ 5.449219, 43.325178 ], [ 4.746094, 43.325178 ], [ 4.746094, 43.452919 ], [ 4.394531, 43.452919 ], [ 4.394531, 43.325178 ], [ 4.042969, 43.325178 ], [ 4.042969, 43.197167 ], [ 3.515625, 43.197167 ], [ 3.515625, 43.068888 ], [ 3.164062, 43.068888 ], [ 3.164062, 42.682435 ], [ 2.988281, 42.682435 ], [ 2.988281, 42.423457 ], [ 2.460938, 42.423457 ], [ 2.460938, 42.293564 ], [ 1.582031, 42.293564 ], [ 1.582031, 42.423457 ], [ 1.230469, 42.423457 ], [ 1.230469, 42.553080 ], [ 1.054688, 42.553080 ], [ 1.054688, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.553080 ], [ 0.000000, 42.553080 ], [ 0.000000, 42.682435 ], [ -0.351562, 42.682435 ], [ -0.351562, 42.811522 ], [ -0.703125, 42.811522 ], [ -0.703125, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.496675 ], [ -0.351562, 49.496675 ], [ -0.351562, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.724479 ], [ 0.351562, 49.724479 ], [ 0.351562, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 49.951220 ], [ 1.054688, 49.951220 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.582031, 50.513427 ], [ 1.582031, 50.958427 ], [ 1.933594, 50.958427 ], [ 1.933594, 51.069017 ], [ 2.285156, 51.069017 ], [ 2.285156, 51.179343 ], [ 2.460938, 51.179343 ], [ 2.460938, 50.958427 ], [ 2.636719, 50.958427 ], [ 2.636719, 50.847573 ], [ 2.812500, 50.847573 ], [ 2.812500, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.625073 ], [ 3.339844, 50.625073 ], [ 3.339844, 50.401515 ], [ 3.515625, 50.401515 ], [ 3.515625, 50.289339 ], [ 3.691406, 50.289339 ], [ 3.691406, 50.176898 ], [ 3.867188, 50.176898 ], [ 3.867188, 50.064192 ], [ 4.042969, 50.064192 ], [ 4.042969, 49.951220 ], [ 4.746094, 49.951220 ], [ 4.746094, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.724479 ], [ 5.273438, 49.724479 ], [ 5.273438, 49.610710 ], [ 5.449219, 49.610710 ], [ 5.449219, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.152344, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 49.267805 ], [ 6.503906, 49.267805 ], [ 6.503906, 49.152970 ], [ 7.207031, 49.152970 ], [ 7.207031, 49.037868 ], [ 8.085938, 49.037868 ], [ 8.085938, 48.922499 ], [ 7.910156, 48.922499 ], [ 7.910156, 48.690960 ], [ 7.734375, 48.690960 ], [ 7.734375, 48.458352 ], [ 7.558594, 48.458352 ], [ 7.558594, 47.989922 ], [ 7.382812, 47.989922 ], [ 7.382812, 47.517201 ], [ 7.207031, 47.517201 ], [ 7.207031, 47.398349 ], [ 6.855469, 47.398349 ] ], [ [ 6.855469, 47.398349 ], [ 6.855469, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.398349 ], [ 6.855469, 47.398349 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.230469, 42.423457 ], [ 1.582031, 42.423457 ], [ 1.582031, 42.293564 ], [ 2.460938, 42.293564 ], [ 2.460938, 42.423457 ], [ 2.988281, 42.423457 ], [ 2.988281, 41.771312 ], [ 2.812500, 41.771312 ], [ 2.812500, 41.640078 ], [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.376809 ], [ 2.285156, 41.376809 ], [ 2.285156, 41.244772 ], [ 1.933594, 41.244772 ], [ 1.933594, 41.112469 ], [ 1.230469, 41.112469 ], [ 1.230469, 40.979898 ], [ 0.878906, 40.979898 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.940339 ], [ -0.703125, 42.940339 ], [ -0.703125, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.682435 ], [ 0.000000, 42.682435 ], [ 0.000000, 42.553080 ], [ 0.527344, 42.553080 ], [ 0.527344, 42.682435 ], [ 1.054688, 42.682435 ], [ 1.054688, 42.553080 ], [ 1.230469, 42.553080 ], [ 1.230469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 42.940339 ], [ -0.703125, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.682435 ], [ 0.000000, 42.682435 ], [ 0.000000, 42.553080 ], [ 0.527344, 42.553080 ], [ 0.527344, 42.682435 ], [ 1.054688, 42.682435 ], [ 1.054688, 42.553080 ], [ 1.230469, 42.553080 ], [ 1.230469, 42.423457 ], [ 1.582031, 42.423457 ], [ 1.582031, 42.293564 ], [ 2.460938, 42.293564 ], [ 2.460938, 42.423457 ], [ 2.988281, 42.423457 ], [ 2.988281, 41.771312 ], [ 2.812500, 41.771312 ], [ 2.812500, 41.640078 ], [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.376809 ], [ 2.285156, 41.376809 ], [ 2.285156, 41.244772 ], [ 1.933594, 41.244772 ], [ 1.933594, 41.112469 ], [ 1.230469, 41.112469 ], [ 1.230469, 40.979898 ], [ 0.878906, 40.979898 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.940339 ], [ -0.703125, 42.940339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.101562, 66.722541 ], [ 34.101562, 66.791909 ], [ 33.925781, 66.791909 ], [ 33.925781, 66.722541 ], [ 33.574219, 66.722541 ], [ 33.574219, 66.652977 ], [ 33.222656, 66.652977 ], [ 33.222656, 66.583217 ], [ 33.398438, 66.583217 ], [ 33.398438, 66.513260 ], [ 33.574219, 66.513260 ], [ 33.574219, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.302205 ], [ 33.925781, 66.302205 ], [ 33.925781, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.160511 ], [ 34.277344, 66.160511 ], [ 34.277344, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.628906, 65.946472 ], [ 34.628906, 65.874725 ], [ 34.804688, 65.874725 ], [ 34.804688, 64.923542 ], [ 34.980469, 64.923542 ], [ 34.980469, 64.320872 ], [ 35.332031, 64.320872 ], [ 35.332031, 64.244595 ], [ 35.683594, 64.244595 ], [ 35.683594, 64.168107 ], [ 36.035156, 64.168107 ], [ 36.035156, 64.091408 ], [ 36.210938, 64.091408 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.937372 ], [ 36.914062, 63.937372 ], [ 36.914062, 63.860036 ], [ 37.089844, 63.860036 ], [ 37.089844, 64.396938 ], [ 36.914062, 64.396938 ], [ 36.914062, 64.548440 ], [ 36.738281, 64.548440 ], [ 36.738281, 64.699105 ], [ 36.562500, 64.699105 ], [ 36.562500, 64.774125 ], [ 36.738281, 64.774125 ], [ 36.738281, 64.923542 ], [ 36.914062, 64.923542 ], [ 36.914062, 65.072130 ], [ 37.441406, 65.072130 ], [ 37.441406, 64.997939 ], [ 37.792969, 64.997939 ], [ 37.792969, 64.923542 ], [ 38.144531, 64.923542 ], [ 38.144531, 64.848937 ], [ 38.320312, 64.848937 ], [ 38.320312, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.699105 ], [ 39.023438, 64.699105 ], [ 39.023438, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.548440 ], [ 39.726562, 64.548440 ], [ 39.726562, 64.623877 ], [ 40.078125, 64.623877 ], [ 40.078125, 64.699105 ], [ 40.429688, 64.699105 ], [ 40.429688, 64.848937 ], [ 40.253906, 64.848937 ], [ 40.253906, 64.997939 ], [ 40.078125, 64.997939 ], [ 40.078125, 65.219894 ], [ 39.902344, 65.219894 ], [ 39.902344, 65.366837 ], [ 39.726562, 65.366837 ], [ 39.726562, 65.512963 ], [ 39.902344, 65.512963 ], [ 39.902344, 65.585720 ], [ 40.078125, 65.585720 ], [ 40.078125, 65.658275 ], [ 40.253906, 65.658275 ], [ 40.253906, 65.730626 ], [ 40.429688, 65.730626 ], [ 40.429688, 65.802776 ], [ 40.605469, 65.802776 ], [ 40.605469, 65.874725 ], [ 40.781250, 65.874725 ], [ 40.781250, 65.946472 ], [ 40.957031, 65.946472 ], [ 40.957031, 66.018018 ], [ 41.132812, 66.018018 ], [ 41.132812, 66.089364 ], [ 41.308594, 66.089364 ], [ 41.308594, 66.160511 ], [ 41.484375, 66.160511 ], [ 41.484375, 66.231457 ], [ 41.660156, 66.231457 ], [ 41.660156, 66.302205 ], [ 41.835938, 66.302205 ], [ 41.835938, 66.372755 ], [ 42.011719, 66.372755 ], [ 42.011719, 66.443107 ], [ 43.066406, 66.443107 ], [ 43.066406, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.302205 ], [ 43.417969, 66.302205 ], [ 43.417969, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.160511 ], [ 43.769531, 66.160511 ], [ 43.769531, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.527344, 42.293564 ], [ 45.527344, 42.553080 ], [ 44.824219, 42.553080 ], [ 44.824219, 42.682435 ], [ 44.296875, 42.682435 ], [ 44.296875, 42.553080 ], [ 43.769531, 42.553080 ], [ 43.769531, 42.682435 ], [ 43.417969, 42.682435 ], [ 43.417969, 42.811522 ], [ 43.066406, 42.811522 ], [ 43.066406, 42.940339 ], [ 42.714844, 42.940339 ], [ 42.714844, 43.068888 ], [ 42.363281, 43.068888 ], [ 42.363281, 43.197167 ], [ 41.484375, 43.197167 ], [ 41.484375, 43.325178 ], [ 40.605469, 43.325178 ], [ 40.605469, 43.452919 ], [ 40.253906, 43.452919 ], [ 40.253906, 43.580391 ], [ 40.078125, 43.580391 ], [ 40.078125, 43.452919 ], [ 39.726562, 43.452919 ], [ 39.726562, 43.580391 ], [ 39.550781, 43.580391 ], [ 39.550781, 43.707594 ], [ 39.375000, 43.707594 ], [ 39.375000, 43.834527 ], [ 39.199219, 43.834527 ], [ 39.199219, 43.961191 ], [ 39.023438, 43.961191 ], [ 39.023438, 44.087585 ], [ 38.847656, 44.087585 ], [ 38.847656, 44.213710 ], [ 38.671875, 44.213710 ], [ 38.671875, 44.339565 ], [ 38.320312, 44.339565 ], [ 38.320312, 44.465151 ], [ 37.968750, 44.465151 ], [ 37.968750, 44.590467 ], [ 37.617188, 44.590467 ], [ 37.617188, 44.715514 ], [ 37.441406, 44.715514 ], [ 37.441406, 44.840291 ], [ 37.265625, 44.840291 ], [ 37.265625, 44.964798 ], [ 36.914062, 44.964798 ], [ 36.914062, 45.089036 ], [ 36.738281, 45.089036 ], [ 36.738281, 45.213004 ], [ 37.089844, 45.213004 ], [ 37.089844, 45.336702 ], [ 37.441406, 45.336702 ], [ 37.441406, 45.460131 ], [ 37.617188, 45.460131 ], [ 37.617188, 45.583290 ], [ 37.792969, 45.583290 ], [ 37.792969, 45.828799 ], [ 37.968750, 45.828799 ], [ 37.968750, 45.951150 ], [ 38.144531, 45.951150 ], [ 38.144531, 46.073231 ], [ 38.320312, 46.073231 ], [ 38.320312, 46.195042 ], [ 38.144531, 46.195042 ], [ 38.144531, 46.316584 ], [ 37.968750, 46.316584 ], [ 37.968750, 46.437857 ], [ 37.792969, 46.437857 ], [ 37.792969, 46.558860 ], [ 37.617188, 46.558860 ], [ 37.617188, 46.679594 ], [ 37.968750, 46.679594 ], [ 37.968750, 46.800059 ], [ 38.496094, 46.800059 ], [ 38.496094, 46.920255 ], [ 39.023438, 46.920255 ], [ 39.023438, 47.040182 ], [ 39.199219, 47.040182 ], [ 39.199219, 47.279229 ], [ 38.847656, 47.279229 ], [ 38.847656, 47.159840 ], [ 38.144531, 47.159840 ], [ 38.144531, 47.279229 ], [ 38.320312, 47.279229 ], [ 38.320312, 47.517201 ], [ 38.496094, 47.517201 ], [ 38.496094, 47.635784 ], [ 38.671875, 47.635784 ], [ 38.671875, 47.754098 ], [ 38.847656, 47.754098 ], [ 38.847656, 47.872144 ], [ 39.726562, 47.872144 ], [ 39.726562, 47.989922 ], [ 39.902344, 47.989922 ], [ 39.902344, 48.458352 ], [ 39.726562, 48.458352 ], [ 39.726562, 48.922499 ], [ 39.902344, 48.922499 ], [ 39.902344, 49.152970 ], [ 40.078125, 49.152970 ], [ 40.078125, 49.610710 ], [ 39.726562, 49.610710 ], [ 39.726562, 49.724479 ], [ 39.199219, 49.724479 ], [ 39.199219, 49.837982 ], [ 38.847656, 49.837982 ], [ 38.847656, 49.951220 ], [ 37.792969, 49.951220 ], [ 37.792969, 50.176898 ], [ 37.617188, 50.176898 ], [ 37.617188, 50.289339 ], [ 37.441406, 50.289339 ], [ 37.441406, 50.401515 ], [ 37.265625, 50.401515 ], [ 37.265625, 50.289339 ], [ 36.914062, 50.289339 ], [ 36.914062, 50.176898 ], [ 36.386719, 50.176898 ], [ 36.386719, 50.289339 ], [ 36.035156, 50.289339 ], [ 36.035156, 50.401515 ], [ 35.683594, 50.401515 ], [ 35.683594, 50.513427 ], [ 35.332031, 50.513427 ], [ 35.332031, 50.847573 ], [ 35.156250, 50.847573 ], [ 35.156250, 51.069017 ], [ 34.980469, 51.069017 ], [ 34.980469, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 51.289406 ], [ 34.277344, 51.289406 ], [ 34.277344, 51.399206 ], [ 34.101562, 51.399206 ], [ 34.101562, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.727028 ], [ 34.277344, 51.727028 ], [ 34.277344, 51.944265 ], [ 34.101562, 51.944265 ], [ 34.101562, 52.052490 ], [ 33.925781, 52.052490 ], [ 33.925781, 52.268157 ], [ 33.750000, 52.268157 ], [ 33.750000, 52.375599 ], [ 33.398438, 52.375599 ], [ 33.398438, 52.268157 ], [ 32.343750, 52.268157 ], [ 32.343750, 52.160455 ], [ 32.167969, 52.160455 ], [ 32.167969, 52.052490 ], [ 31.816406, 52.052490 ], [ 31.816406, 52.160455 ], [ 31.640625, 52.160455 ], [ 31.640625, 52.482780 ], [ 31.464844, 52.482780 ], [ 31.464844, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 32.519531, 53.120405 ], [ 32.519531, 53.225768 ], [ 32.695312, 53.225768 ], [ 32.695312, 53.330873 ], [ 32.519531, 53.330873 ], [ 32.519531, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.644638 ], [ 31.992188, 53.644638 ], [ 31.992188, 53.748711 ], [ 31.816406, 53.748711 ], [ 31.816406, 53.956086 ], [ 31.640625, 53.956086 ], [ 31.640625, 54.059388 ], [ 31.464844, 54.059388 ], [ 31.464844, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 54.367759 ], [ 31.113281, 54.367759 ], [ 31.113281, 54.470038 ], [ 30.937500, 54.470038 ], [ 30.937500, 54.673831 ], [ 30.761719, 54.673831 ], [ 30.761719, 54.876607 ], [ 30.937500, 54.876607 ], [ 30.937500, 55.578345 ], [ 30.585938, 55.578345 ], [ 30.585938, 55.677584 ], [ 30.058594, 55.677584 ], [ 30.058594, 55.776573 ], [ 29.707031, 55.776573 ], [ 29.707031, 55.677584 ], [ 29.355469, 55.677584 ], [ 29.355469, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.875311 ], [ 28.828125, 55.875311 ], [ 28.828125, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.072035 ], [ 28.125000, 56.072035 ], [ 28.125000, 56.267761 ], [ 27.949219, 56.267761 ], [ 27.949219, 56.559482 ], [ 27.773438, 56.559482 ], [ 27.773438, 57.231503 ], [ 27.597656, 57.231503 ], [ 27.597656, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.421294 ], [ 27.246094, 57.421294 ], [ 27.246094, 57.515823 ], [ 27.421875, 57.515823 ], [ 27.421875, 57.610107 ], [ 27.597656, 57.610107 ], [ 27.597656, 57.704147 ], [ 27.773438, 57.704147 ], [ 27.773438, 57.984808 ], [ 27.597656, 57.984808 ], [ 27.597656, 58.447733 ], [ 27.421875, 58.447733 ], [ 27.421875, 58.722599 ], [ 27.597656, 58.722599 ], [ 27.597656, 58.904646 ], [ 27.773438, 58.904646 ], [ 27.773438, 58.995311 ], [ 27.949219, 58.995311 ], [ 27.949219, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.355596 ], [ 27.949219, 59.355596 ], [ 27.949219, 59.445075 ], [ 28.125000, 59.445075 ], [ 28.125000, 59.534318 ], [ 28.300781, 59.534318 ], [ 28.300781, 59.623325 ], [ 28.476562, 59.623325 ], [ 28.476562, 59.712097 ], [ 28.652344, 59.712097 ], [ 28.652344, 59.800634 ], [ 28.828125, 59.800634 ], [ 28.828125, 59.888937 ], [ 29.003906, 59.888937 ], [ 29.003906, 59.977005 ], [ 29.179688, 59.977005 ], [ 29.179688, 60.064840 ], [ 29.003906, 60.064840 ], [ 29.003906, 60.152442 ], [ 28.828125, 60.152442 ], [ 28.828125, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.326948 ], [ 28.300781, 60.326948 ], [ 28.300781, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.500525 ], [ 28.300781, 60.500525 ], [ 28.300781, 60.586967 ], [ 28.476562, 60.586967 ], [ 28.476562, 60.759160 ], [ 28.652344, 60.759160 ], [ 28.652344, 60.844911 ], [ 28.828125, 60.844911 ], [ 28.828125, 60.930432 ], [ 29.003906, 60.930432 ], [ 29.003906, 61.015725 ], [ 29.179688, 61.015725 ], [ 29.179688, 61.185625 ], [ 29.355469, 61.185625 ], [ 29.355469, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.354614 ], [ 29.707031, 61.354614 ], [ 29.707031, 61.438767 ], [ 29.882812, 61.438767 ], [ 29.882812, 61.606396 ], [ 30.058594, 61.606396 ], [ 30.058594, 61.689872 ], [ 30.234375, 61.689872 ], [ 30.234375, 61.773123 ], [ 30.410156, 61.773123 ], [ 30.410156, 61.938950 ], [ 30.585938, 61.938950 ], [ 30.585938, 62.021528 ], [ 30.761719, 62.021528 ], [ 30.761719, 62.103883 ], [ 30.937500, 62.103883 ], [ 30.937500, 62.267923 ], [ 31.113281, 62.267923 ], [ 31.113281, 62.431074 ], [ 31.289062, 62.431074 ], [ 31.289062, 62.674143 ], [ 31.464844, 62.674143 ], [ 31.464844, 62.835089 ], [ 31.289062, 62.835089 ], [ 31.289062, 62.915233 ], [ 31.113281, 62.915233 ], [ 31.113281, 62.995158 ], [ 30.937500, 62.995158 ], [ 30.937500, 63.074866 ], [ 30.761719, 63.074866 ], [ 30.761719, 63.233627 ], [ 30.585938, 63.233627 ], [ 30.585938, 63.312683 ], [ 30.410156, 63.312683 ], [ 30.410156, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.470145 ], [ 30.058594, 63.470145 ], [ 30.058594, 63.704722 ], [ 30.234375, 63.704722 ], [ 30.234375, 64.014496 ], [ 30.410156, 64.014496 ], [ 30.410156, 64.244595 ], [ 30.234375, 64.244595 ], [ 30.234375, 64.396938 ], [ 30.058594, 64.396938 ], [ 30.058594, 64.548440 ], [ 29.882812, 64.548440 ], [ 29.882812, 64.699105 ], [ 29.707031, 64.699105 ], [ 29.707031, 64.848937 ], [ 29.531250, 64.848937 ], [ 29.531250, 64.997939 ], [ 29.707031, 64.997939 ], [ 29.707031, 65.219894 ], [ 29.882812, 65.219894 ], [ 29.882812, 65.440002 ], [ 30.058594, 65.440002 ], [ 30.058594, 65.658275 ], [ 30.234375, 65.658275 ], [ 30.234375, 65.874725 ], [ 30.058594, 65.874725 ], [ 30.058594, 66.018018 ], [ 29.882812, 66.018018 ], [ 29.882812, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.583217 ], [ 29.355469, 66.583217 ], [ 29.355469, 66.722541 ], [ 29.179688, 66.722541 ], [ 29.179688, 66.861082 ], [ 41.132812, 66.861082 ], [ 41.132812, 66.722541 ], [ 40.957031, 66.722541 ], [ 40.957031, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.605469, 66.513260 ], [ 40.605469, 66.443107 ], [ 40.429688, 66.443107 ], [ 40.429688, 66.372755 ], [ 40.253906, 66.372755 ], [ 40.253906, 66.231457 ], [ 39.902344, 66.231457 ], [ 39.902344, 66.160511 ], [ 39.375000, 66.160511 ], [ 39.375000, 66.089364 ], [ 38.671875, 66.089364 ], [ 38.671875, 66.018018 ], [ 37.968750, 66.018018 ], [ 37.968750, 66.089364 ], [ 37.617188, 66.089364 ], [ 37.617188, 66.160511 ], [ 37.265625, 66.160511 ], [ 37.265625, 66.231457 ], [ 36.914062, 66.231457 ], [ 36.914062, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 36.035156, 66.372755 ], [ 36.035156, 66.443107 ], [ 35.683594, 66.443107 ], [ 35.683594, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.804688, 66.583217 ], [ 34.804688, 66.652977 ], [ 34.453125, 66.652977 ], [ 34.453125, 66.722541 ], [ 34.101562, 66.722541 ] ] ], [ [ [ 21.972656, 54.977614 ], [ 22.324219, 54.977614 ], [ 22.324219, 54.876607 ], [ 22.675781, 54.876607 ], [ 22.675781, 54.367759 ], [ 21.972656, 54.367759 ], [ 21.972656, 54.265224 ], [ 20.566406, 54.265224 ], [ 20.566406, 54.367759 ], [ 19.863281, 54.367759 ], [ 19.863281, 54.470038 ], [ 19.687500, 54.470038 ], [ 19.687500, 54.673831 ], [ 19.863281, 54.673831 ], [ 19.863281, 54.876607 ], [ 20.214844, 54.876607 ], [ 20.214844, 54.977614 ], [ 20.742188, 54.977614 ], [ 20.742188, 55.078367 ], [ 21.093750, 55.078367 ], [ 21.093750, 55.178868 ], [ 21.445312, 55.178868 ], [ 21.445312, 55.078367 ], [ 21.972656, 55.078367 ], [ 21.972656, 54.977614 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.527344, 42.293564 ], [ 45.527344, 42.553080 ], [ 44.824219, 42.553080 ], [ 44.824219, 42.682435 ], [ 44.296875, 42.682435 ], [ 44.296875, 42.553080 ], [ 43.769531, 42.553080 ], [ 43.769531, 42.682435 ], [ 43.417969, 42.682435 ], [ 43.417969, 42.811522 ], [ 43.066406, 42.811522 ], [ 43.066406, 42.940339 ], [ 42.714844, 42.940339 ], [ 42.714844, 43.068888 ], [ 42.363281, 43.068888 ], [ 42.363281, 43.197167 ], [ 41.484375, 43.197167 ], [ 41.484375, 43.325178 ], [ 40.605469, 43.325178 ], [ 40.605469, 43.452919 ], [ 40.253906, 43.452919 ], [ 40.253906, 43.580391 ], [ 40.078125, 43.580391 ], [ 40.078125, 43.452919 ], [ 39.726562, 43.452919 ], [ 39.726562, 43.580391 ], [ 39.550781, 43.580391 ], [ 39.550781, 43.707594 ], [ 39.375000, 43.707594 ], [ 39.375000, 43.834527 ], [ 39.199219, 43.834527 ], [ 39.199219, 43.961191 ], [ 39.023438, 43.961191 ], [ 39.023438, 44.087585 ], [ 38.847656, 44.087585 ], [ 38.847656, 44.213710 ], [ 38.671875, 44.213710 ], [ 38.671875, 44.339565 ], [ 38.320312, 44.339565 ], [ 38.320312, 44.465151 ], [ 37.968750, 44.465151 ], [ 37.968750, 44.590467 ], [ 37.617188, 44.590467 ], [ 37.617188, 44.715514 ], [ 37.441406, 44.715514 ], [ 37.441406, 44.840291 ], [ 37.265625, 44.840291 ], [ 37.265625, 44.964798 ], [ 36.914062, 44.964798 ], [ 36.914062, 45.089036 ], [ 36.738281, 45.089036 ], [ 36.738281, 45.213004 ], [ 37.089844, 45.213004 ], [ 37.089844, 45.336702 ], [ 37.441406, 45.336702 ], [ 37.441406, 45.460131 ], [ 37.617188, 45.460131 ], [ 37.617188, 45.583290 ], [ 37.792969, 45.583290 ], [ 37.792969, 45.828799 ], [ 37.968750, 45.828799 ], [ 37.968750, 45.951150 ], [ 38.144531, 45.951150 ], [ 38.144531, 46.073231 ], [ 38.320312, 46.073231 ], [ 38.320312, 46.195042 ], [ 38.144531, 46.195042 ], [ 38.144531, 46.316584 ], [ 37.968750, 46.316584 ], [ 37.968750, 46.437857 ], [ 37.792969, 46.437857 ], [ 37.792969, 46.558860 ], [ 37.617188, 46.558860 ], [ 37.617188, 46.679594 ], [ 37.968750, 46.679594 ], [ 37.968750, 46.800059 ], [ 38.496094, 46.800059 ], [ 38.496094, 46.920255 ], [ 39.023438, 46.920255 ], [ 39.023438, 47.040182 ], [ 39.199219, 47.040182 ], [ 39.199219, 47.279229 ], [ 38.847656, 47.279229 ], [ 38.847656, 47.159840 ], [ 38.144531, 47.159840 ], [ 38.144531, 47.279229 ], [ 38.320312, 47.279229 ], [ 38.320312, 47.517201 ], [ 38.496094, 47.517201 ], [ 38.496094, 47.635784 ], [ 38.671875, 47.635784 ], [ 38.671875, 47.754098 ], [ 38.847656, 47.754098 ], [ 38.847656, 47.872144 ], [ 39.726562, 47.872144 ], [ 39.726562, 47.989922 ], [ 39.902344, 47.989922 ], [ 39.902344, 48.458352 ], [ 39.726562, 48.458352 ], [ 39.726562, 48.922499 ], [ 39.902344, 48.922499 ], [ 39.902344, 49.152970 ], [ 40.078125, 49.152970 ], [ 40.078125, 49.610710 ], [ 39.726562, 49.610710 ], [ 39.726562, 49.724479 ], [ 39.199219, 49.724479 ], [ 39.199219, 49.837982 ], [ 38.847656, 49.837982 ], [ 38.847656, 49.951220 ], [ 37.792969, 49.951220 ], [ 37.792969, 50.176898 ], [ 37.617188, 50.176898 ], [ 37.617188, 50.289339 ], [ 37.441406, 50.289339 ], [ 37.441406, 50.401515 ], [ 37.265625, 50.401515 ], [ 37.265625, 50.289339 ], [ 36.914062, 50.289339 ], [ 36.914062, 50.176898 ], [ 36.386719, 50.176898 ], [ 36.386719, 50.289339 ], [ 36.035156, 50.289339 ], [ 36.035156, 50.401515 ], [ 35.683594, 50.401515 ], [ 35.683594, 50.513427 ], [ 35.332031, 50.513427 ], [ 35.332031, 50.847573 ], [ 35.156250, 50.847573 ], [ 35.156250, 51.069017 ], [ 34.980469, 51.069017 ], [ 34.980469, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 51.289406 ], [ 34.277344, 51.289406 ], [ 34.277344, 51.399206 ], [ 34.101562, 51.399206 ], [ 34.101562, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.727028 ], [ 34.277344, 51.727028 ], [ 34.277344, 51.944265 ], [ 34.101562, 51.944265 ], [ 34.101562, 52.052490 ], [ 33.925781, 52.052490 ], [ 33.925781, 52.268157 ], [ 33.750000, 52.268157 ], [ 33.750000, 52.375599 ], [ 33.398438, 52.375599 ], [ 33.398438, 52.268157 ], [ 32.343750, 52.268157 ], [ 32.343750, 52.160455 ], [ 32.167969, 52.160455 ], [ 32.167969, 52.052490 ], [ 31.816406, 52.052490 ], [ 31.816406, 52.160455 ], [ 31.640625, 52.160455 ], [ 31.640625, 52.482780 ], [ 31.464844, 52.482780 ], [ 31.464844, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 32.519531, 53.120405 ], [ 32.519531, 53.225768 ], [ 32.695312, 53.225768 ], [ 32.695312, 53.330873 ], [ 32.519531, 53.330873 ], [ 32.519531, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.644638 ], [ 31.992188, 53.644638 ], [ 31.992188, 53.748711 ], [ 31.816406, 53.748711 ], [ 31.816406, 53.956086 ], [ 31.640625, 53.956086 ], [ 31.640625, 54.059388 ], [ 31.464844, 54.059388 ], [ 31.464844, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 54.367759 ], [ 31.113281, 54.367759 ], [ 31.113281, 54.470038 ], [ 30.937500, 54.470038 ], [ 30.937500, 54.673831 ], [ 30.761719, 54.673831 ], [ 30.761719, 54.876607 ], [ 30.937500, 54.876607 ], [ 30.937500, 55.578345 ], [ 30.585938, 55.578345 ], [ 30.585938, 55.677584 ], [ 30.058594, 55.677584 ], [ 30.058594, 55.776573 ], [ 29.707031, 55.776573 ], [ 29.707031, 55.677584 ], [ 29.355469, 55.677584 ], [ 29.355469, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.875311 ], [ 28.828125, 55.875311 ], [ 28.828125, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.072035 ], [ 28.125000, 56.072035 ], [ 28.125000, 56.267761 ], [ 27.949219, 56.267761 ], [ 27.949219, 56.559482 ], [ 27.773438, 56.559482 ], [ 27.773438, 57.231503 ], [ 27.597656, 57.231503 ], [ 27.597656, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.421294 ], [ 27.246094, 57.421294 ], [ 27.246094, 57.515823 ], [ 27.421875, 57.515823 ], [ 27.421875, 57.610107 ], [ 27.597656, 57.610107 ], [ 27.597656, 57.704147 ], [ 27.773438, 57.704147 ], [ 27.773438, 57.984808 ], [ 27.597656, 57.984808 ], [ 27.597656, 58.447733 ], [ 27.421875, 58.447733 ], [ 27.421875, 58.722599 ], [ 27.597656, 58.722599 ], [ 27.597656, 58.904646 ], [ 27.773438, 58.904646 ], [ 27.773438, 58.995311 ], [ 27.949219, 58.995311 ], [ 27.949219, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.355596 ], [ 27.949219, 59.355596 ], [ 27.949219, 59.445075 ], [ 28.125000, 59.445075 ], [ 28.125000, 59.534318 ], [ 28.300781, 59.534318 ], [ 28.300781, 59.623325 ], [ 28.476562, 59.623325 ], [ 28.476562, 59.712097 ], [ 28.652344, 59.712097 ], [ 28.652344, 59.800634 ], [ 28.828125, 59.800634 ], [ 28.828125, 59.888937 ], [ 29.003906, 59.888937 ], [ 29.003906, 59.977005 ], [ 29.179688, 59.977005 ], [ 29.179688, 60.064840 ], [ 29.003906, 60.064840 ], [ 29.003906, 60.152442 ], [ 28.828125, 60.152442 ], [ 28.828125, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.326948 ], [ 28.300781, 60.326948 ], [ 28.300781, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.500525 ], [ 28.300781, 60.500525 ], [ 28.300781, 60.586967 ], [ 28.476562, 60.586967 ], [ 28.476562, 60.759160 ], [ 28.652344, 60.759160 ], [ 28.652344, 60.844911 ], [ 28.828125, 60.844911 ], [ 28.828125, 60.930432 ], [ 29.003906, 60.930432 ], [ 29.003906, 61.015725 ], [ 29.179688, 61.015725 ], [ 29.179688, 61.185625 ], [ 29.355469, 61.185625 ], [ 29.355469, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.354614 ], [ 29.707031, 61.354614 ], [ 29.707031, 61.438767 ], [ 29.882812, 61.438767 ], [ 29.882812, 61.606396 ], [ 30.058594, 61.606396 ], [ 30.058594, 61.689872 ], [ 30.234375, 61.689872 ], [ 30.234375, 61.773123 ], [ 30.410156, 61.773123 ], [ 30.410156, 61.938950 ], [ 30.585938, 61.938950 ], [ 30.585938, 62.021528 ], [ 30.761719, 62.021528 ], [ 30.761719, 62.103883 ], [ 30.937500, 62.103883 ], [ 30.937500, 62.267923 ], [ 31.113281, 62.267923 ], [ 31.113281, 62.431074 ], [ 31.289062, 62.431074 ], [ 31.289062, 62.674143 ], [ 31.464844, 62.674143 ], [ 31.464844, 62.835089 ], [ 31.289062, 62.835089 ], [ 31.289062, 62.915233 ], [ 31.113281, 62.915233 ], [ 31.113281, 62.995158 ], [ 30.937500, 62.995158 ], [ 30.937500, 63.074866 ], [ 30.761719, 63.074866 ], [ 30.761719, 63.233627 ], [ 30.585938, 63.233627 ], [ 30.585938, 63.312683 ], [ 30.410156, 63.312683 ], [ 30.410156, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.470145 ], [ 30.058594, 63.470145 ], [ 30.058594, 63.704722 ], [ 30.234375, 63.704722 ], [ 30.234375, 64.014496 ], [ 30.410156, 64.014496 ], [ 30.410156, 64.244595 ], [ 30.234375, 64.244595 ], [ 30.234375, 64.396938 ], [ 30.058594, 64.396938 ], [ 30.058594, 64.548440 ], [ 29.882812, 64.548440 ], [ 29.882812, 64.699105 ], [ 29.707031, 64.699105 ], [ 29.707031, 64.848937 ], [ 29.531250, 64.848937 ], [ 29.531250, 64.997939 ], [ 29.707031, 64.997939 ], [ 29.707031, 65.219894 ], [ 29.882812, 65.219894 ], [ 29.882812, 65.440002 ], [ 30.058594, 65.440002 ], [ 30.058594, 65.658275 ], [ 30.234375, 65.658275 ], [ 30.234375, 65.874725 ], [ 30.058594, 65.874725 ], [ 30.058594, 66.018018 ], [ 29.882812, 66.018018 ], [ 29.882812, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.583217 ], [ 29.355469, 66.583217 ], [ 29.355469, 66.722541 ], [ 29.179688, 66.722541 ], [ 29.179688, 66.861082 ], [ 41.132812, 66.861082 ], [ 41.132812, 66.722541 ], [ 40.957031, 66.722541 ], [ 40.957031, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.605469, 66.513260 ], [ 40.605469, 66.443107 ], [ 40.429688, 66.443107 ], [ 40.429688, 66.372755 ], [ 40.253906, 66.372755 ], [ 40.253906, 66.231457 ], [ 39.902344, 66.231457 ], [ 39.902344, 66.160511 ], [ 39.375000, 66.160511 ], [ 39.375000, 66.089364 ], [ 38.671875, 66.089364 ], [ 38.671875, 66.018018 ], [ 37.968750, 66.018018 ], [ 37.968750, 66.089364 ], [ 37.617188, 66.089364 ], [ 37.617188, 66.160511 ], [ 37.265625, 66.160511 ], [ 37.265625, 66.231457 ], [ 36.914062, 66.231457 ], [ 36.914062, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 36.035156, 66.372755 ], [ 36.035156, 66.443107 ], [ 35.683594, 66.443107 ], [ 35.683594, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.804688, 66.583217 ], [ 34.804688, 66.652977 ], [ 34.453125, 66.652977 ], [ 34.453125, 66.722541 ], [ 34.101562, 66.722541 ], [ 34.101562, 66.791909 ], [ 33.925781, 66.791909 ], [ 33.925781, 66.722541 ], [ 33.574219, 66.722541 ], [ 33.574219, 66.652977 ], [ 33.222656, 66.652977 ], [ 33.222656, 66.583217 ], [ 33.398438, 66.583217 ], [ 33.398438, 66.513260 ], [ 33.574219, 66.513260 ], [ 33.574219, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.302205 ], [ 33.925781, 66.302205 ], [ 33.925781, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.160511 ], [ 34.277344, 66.160511 ], [ 34.277344, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.628906, 65.946472 ], [ 34.628906, 65.874725 ], [ 34.804688, 65.874725 ], [ 34.804688, 64.923542 ], [ 34.980469, 64.923542 ], [ 34.980469, 64.320872 ], [ 35.332031, 64.320872 ], [ 35.332031, 64.244595 ], [ 35.683594, 64.244595 ], [ 35.683594, 64.168107 ], [ 36.035156, 64.168107 ], [ 36.035156, 64.091408 ], [ 36.210938, 64.091408 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.937372 ], [ 36.914062, 63.937372 ], [ 36.914062, 63.860036 ], [ 37.089844, 63.860036 ], [ 37.089844, 64.396938 ], [ 36.914062, 64.396938 ], [ 36.914062, 64.548440 ], [ 36.738281, 64.548440 ], [ 36.738281, 64.699105 ], [ 36.562500, 64.699105 ], [ 36.562500, 64.774125 ], [ 36.738281, 64.774125 ], [ 36.738281, 64.923542 ], [ 36.914062, 64.923542 ], [ 36.914062, 65.072130 ], [ 37.441406, 65.072130 ], [ 37.441406, 64.997939 ], [ 37.792969, 64.997939 ], [ 37.792969, 64.923542 ], [ 38.144531, 64.923542 ], [ 38.144531, 64.848937 ], [ 38.320312, 64.848937 ], [ 38.320312, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.699105 ], [ 39.023438, 64.699105 ], [ 39.023438, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.548440 ], [ 39.726562, 64.548440 ], [ 39.726562, 64.623877 ], [ 40.078125, 64.623877 ], [ 40.078125, 64.699105 ], [ 40.429688, 64.699105 ], [ 40.429688, 64.848937 ], [ 40.253906, 64.848937 ], [ 40.253906, 64.997939 ], [ 40.078125, 64.997939 ], [ 40.078125, 65.219894 ], [ 39.902344, 65.219894 ], [ 39.902344, 65.366837 ], [ 39.726562, 65.366837 ], [ 39.726562, 65.512963 ], [ 39.902344, 65.512963 ], [ 39.902344, 65.585720 ], [ 40.078125, 65.585720 ], [ 40.078125, 65.658275 ], [ 40.253906, 65.658275 ], [ 40.253906, 65.730626 ], [ 40.429688, 65.730626 ], [ 40.429688, 65.802776 ], [ 40.605469, 65.802776 ], [ 40.605469, 65.874725 ], [ 40.781250, 65.874725 ], [ 40.781250, 65.946472 ], [ 40.957031, 65.946472 ], [ 40.957031, 66.018018 ], [ 41.132812, 66.018018 ], [ 41.132812, 66.089364 ], [ 41.308594, 66.089364 ], [ 41.308594, 66.160511 ], [ 41.484375, 66.160511 ], [ 41.484375, 66.231457 ], [ 41.660156, 66.231457 ], [ 41.660156, 66.302205 ], [ 41.835938, 66.302205 ], [ 41.835938, 66.372755 ], [ 42.011719, 66.372755 ], [ 42.011719, 66.443107 ], [ 43.066406, 66.443107 ], [ 43.066406, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.302205 ], [ 43.417969, 66.302205 ], [ 43.417969, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.160511 ], [ 43.769531, 66.160511 ], [ 43.769531, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.445312, 55.178868 ], [ 21.445312, 55.078367 ], [ 21.972656, 55.078367 ], [ 21.972656, 54.977614 ], [ 22.324219, 54.977614 ], [ 22.324219, 54.876607 ], [ 22.675781, 54.876607 ], [ 22.675781, 54.367759 ], [ 21.972656, 54.367759 ], [ 21.972656, 54.265224 ], [ 20.566406, 54.265224 ], [ 20.566406, 54.367759 ], [ 19.863281, 54.367759 ], [ 19.863281, 54.470038 ], [ 19.687500, 54.470038 ], [ 19.687500, 54.673831 ], [ 19.863281, 54.673831 ], [ 19.863281, 54.876607 ], [ 20.214844, 54.876607 ], [ 20.214844, 54.977614 ], [ 20.742188, 54.977614 ], [ 20.742188, 55.078367 ], [ 21.093750, 55.078367 ], [ 21.093750, 55.178868 ], [ 21.445312, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.546875, 59.175928 ], [ 10.546875, 59.355596 ], [ 10.195312, 59.355596 ], [ 10.195312, 59.265881 ], [ 10.019531, 59.265881 ], [ 10.019531, 59.175928 ], [ 9.843750, 59.175928 ], [ 9.843750, 59.085739 ], [ 9.667969, 59.085739 ], [ 9.667969, 58.995311 ], [ 9.492188, 58.995311 ], [ 9.492188, 58.904646 ], [ 9.316406, 58.904646 ], [ 9.316406, 58.722599 ], [ 9.140625, 58.722599 ], [ 9.140625, 58.631217 ], [ 8.964844, 58.631217 ], [ 8.964844, 58.539595 ], [ 8.789062, 58.539595 ], [ 8.789062, 58.447733 ], [ 8.613281, 58.447733 ], [ 8.613281, 58.355630 ], [ 8.261719, 58.355630 ], [ 8.261719, 58.263287 ], [ 7.910156, 58.263287 ], [ 7.910156, 58.170702 ], [ 7.382812, 58.170702 ], [ 7.382812, 58.077876 ], [ 6.855469, 58.077876 ], [ 6.855469, 58.170702 ], [ 6.503906, 58.170702 ], [ 6.503906, 58.263287 ], [ 6.328125, 58.263287 ], [ 6.328125, 58.355630 ], [ 6.152344, 58.355630 ], [ 6.152344, 58.447733 ], [ 5.800781, 58.447733 ], [ 5.800781, 58.539595 ], [ 5.625000, 58.539595 ], [ 5.625000, 58.813742 ], [ 5.449219, 58.813742 ], [ 5.449219, 59.355596 ], [ 5.273438, 59.355596 ], [ 5.273438, 60.152442 ], [ 5.097656, 60.152442 ], [ 5.097656, 61.354614 ], [ 4.921875, 61.354614 ], [ 4.921875, 61.938950 ], [ 5.097656, 61.938950 ], [ 5.097656, 62.103883 ], [ 5.273438, 62.103883 ], [ 5.273438, 62.186014 ], [ 5.449219, 62.186014 ], [ 5.449219, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.431074 ], [ 5.800781, 62.431074 ], [ 5.800781, 62.512318 ], [ 5.976562, 62.512318 ], [ 5.976562, 62.593341 ], [ 6.152344, 62.593341 ], [ 6.152344, 62.674143 ], [ 6.503906, 62.674143 ], [ 6.503906, 62.754726 ], [ 6.679688, 62.754726 ], [ 6.679688, 62.835089 ], [ 6.855469, 62.835089 ], [ 6.855469, 62.915233 ], [ 7.207031, 62.915233 ], [ 7.207031, 62.995158 ], [ 7.382812, 62.995158 ], [ 7.382812, 63.074866 ], [ 7.558594, 63.074866 ], [ 7.558594, 63.154355 ], [ 7.910156, 63.154355 ], [ 7.910156, 63.233627 ], [ 8.085938, 63.233627 ], [ 8.085938, 63.312683 ], [ 8.261719, 63.312683 ], [ 8.261719, 63.391522 ], [ 8.613281, 63.391522 ], [ 8.613281, 63.470145 ], [ 8.789062, 63.470145 ], [ 8.789062, 63.548552 ], [ 8.964844, 63.548552 ], [ 8.964844, 63.626745 ], [ 9.140625, 63.626745 ], [ 9.140625, 63.782486 ], [ 9.316406, 63.782486 ], [ 9.316406, 63.860036 ], [ 9.492188, 63.860036 ], [ 9.492188, 63.937372 ], [ 9.667969, 63.937372 ], [ 9.667969, 64.014496 ], [ 9.843750, 64.014496 ], [ 9.843750, 64.091408 ], [ 10.019531, 64.091408 ], [ 10.019531, 64.244595 ], [ 10.195312, 64.244595 ], [ 10.195312, 64.320872 ], [ 10.371094, 64.320872 ], [ 10.371094, 64.396938 ], [ 10.546875, 64.396938 ], [ 10.546875, 64.472794 ], [ 10.722656, 64.472794 ], [ 10.722656, 64.623877 ], [ 10.898438, 64.623877 ], [ 10.898438, 64.774125 ], [ 11.074219, 64.774125 ], [ 11.074219, 64.923542 ], [ 11.250000, 64.923542 ], [ 11.250000, 65.072130 ], [ 11.425781, 65.072130 ], [ 11.425781, 65.219894 ], [ 11.601562, 65.219894 ], [ 11.601562, 65.366837 ], [ 11.777344, 65.366837 ], [ 11.777344, 65.512963 ], [ 11.953125, 65.512963 ], [ 11.953125, 65.658275 ], [ 12.128906, 65.658275 ], [ 12.128906, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 65.946472 ], [ 12.480469, 65.946472 ], [ 12.480469, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.791909 ], [ 13.535156, 66.791909 ], [ 13.535156, 66.861082 ], [ 15.644531, 66.861082 ], [ 15.644531, 66.722541 ], [ 15.468750, 66.722541 ], [ 15.468750, 66.513260 ], [ 15.292969, 66.513260 ], [ 15.292969, 66.231457 ], [ 15.117188, 66.231457 ], [ 15.117188, 66.018018 ], [ 14.941406, 66.018018 ], [ 14.941406, 65.874725 ], [ 14.765625, 65.874725 ], [ 14.765625, 65.730626 ], [ 14.589844, 65.730626 ], [ 14.589844, 65.585720 ], [ 14.414062, 65.585720 ], [ 14.414062, 65.440002 ], [ 14.238281, 65.440002 ], [ 14.238281, 65.293468 ], [ 14.062500, 65.293468 ], [ 14.062500, 65.146115 ], [ 13.886719, 65.146115 ], [ 13.886719, 64.997939 ], [ 13.710938, 64.997939 ], [ 13.710938, 64.848937 ], [ 13.535156, 64.848937 ], [ 13.535156, 64.699105 ], [ 13.710938, 64.699105 ], [ 13.710938, 64.548440 ], [ 13.886719, 64.548440 ], [ 13.886719, 64.320872 ], [ 13.710938, 64.320872 ], [ 13.710938, 64.091408 ], [ 13.535156, 64.091408 ], [ 13.535156, 64.014496 ], [ 13.007812, 64.014496 ], [ 13.007812, 64.091408 ], [ 12.656250, 64.091408 ], [ 12.656250, 63.937372 ], [ 12.480469, 63.937372 ], [ 12.480469, 63.704722 ], [ 12.304688, 63.704722 ], [ 12.304688, 63.470145 ], [ 12.128906, 63.470145 ], [ 12.128906, 63.233627 ], [ 11.953125, 63.233627 ], [ 11.953125, 61.689872 ], [ 12.128906, 61.689872 ], [ 12.128906, 61.522695 ], [ 12.304688, 61.522695 ], [ 12.304688, 61.438767 ], [ 12.480469, 61.438767 ], [ 12.480469, 61.270233 ], [ 12.656250, 61.270233 ], [ 12.656250, 60.930432 ], [ 12.480469, 60.930432 ], [ 12.480469, 60.413852 ], [ 12.304688, 60.413852 ], [ 12.304688, 60.064840 ], [ 12.128906, 60.064840 ], [ 12.128906, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 59.800634 ], [ 11.777344, 59.800634 ], [ 11.777344, 59.623325 ], [ 11.601562, 59.623325 ], [ 11.601562, 59.445075 ], [ 11.425781, 59.445075 ], [ 11.425781, 59.265881 ], [ 11.250000, 59.265881 ], [ 11.250000, 58.904646 ], [ 11.074219, 58.904646 ], [ 11.074219, 58.813742 ], [ 10.898438, 58.813742 ], [ 10.898438, 58.995311 ], [ 10.722656, 58.995311 ], [ 10.722656, 59.175928 ], [ 10.546875, 59.175928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.644531, 66.861082 ], [ 15.644531, 66.722541 ], [ 15.468750, 66.722541 ], [ 15.468750, 66.513260 ], [ 15.292969, 66.513260 ], [ 15.292969, 66.231457 ], [ 15.117188, 66.231457 ], [ 15.117188, 66.018018 ], [ 14.941406, 66.018018 ], [ 14.941406, 65.874725 ], [ 14.765625, 65.874725 ], [ 14.765625, 65.730626 ], [ 14.589844, 65.730626 ], [ 14.589844, 65.585720 ], [ 14.414062, 65.585720 ], [ 14.414062, 65.440002 ], [ 14.238281, 65.440002 ], [ 14.238281, 65.293468 ], [ 14.062500, 65.293468 ], [ 14.062500, 65.146115 ], [ 13.886719, 65.146115 ], [ 13.886719, 64.997939 ], [ 13.710938, 64.997939 ], [ 13.710938, 64.848937 ], [ 13.535156, 64.848937 ], [ 13.535156, 64.699105 ], [ 13.710938, 64.699105 ], [ 13.710938, 64.548440 ], [ 13.886719, 64.548440 ], [ 13.886719, 64.320872 ], [ 13.710938, 64.320872 ], [ 13.710938, 64.091408 ], [ 13.535156, 64.091408 ], [ 13.535156, 64.014496 ], [ 13.007812, 64.014496 ], [ 13.007812, 64.091408 ], [ 12.656250, 64.091408 ], [ 12.656250, 63.937372 ], [ 12.480469, 63.937372 ], [ 12.480469, 63.704722 ], [ 12.304688, 63.704722 ], [ 12.304688, 63.470145 ], [ 12.128906, 63.470145 ], [ 12.128906, 63.233627 ], [ 11.953125, 63.233627 ], [ 11.953125, 61.689872 ], [ 12.128906, 61.689872 ], [ 12.128906, 61.522695 ], [ 12.304688, 61.522695 ], [ 12.304688, 61.438767 ], [ 12.480469, 61.438767 ], [ 12.480469, 61.270233 ], [ 12.656250, 61.270233 ], [ 12.656250, 60.930432 ], [ 12.480469, 60.930432 ], [ 12.480469, 60.413852 ], [ 12.304688, 60.413852 ], [ 12.304688, 60.064840 ], [ 12.128906, 60.064840 ], [ 12.128906, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 59.800634 ], [ 11.777344, 59.800634 ], [ 11.777344, 59.623325 ], [ 11.601562, 59.623325 ], [ 11.601562, 59.445075 ], [ 11.425781, 59.445075 ], [ 11.425781, 59.265881 ], [ 11.250000, 59.265881 ], [ 11.250000, 58.904646 ], [ 11.074219, 58.904646 ], [ 11.074219, 58.813742 ], [ 10.898438, 58.813742 ], [ 10.898438, 58.995311 ], [ 10.722656, 58.995311 ], [ 10.722656, 59.175928 ], [ 10.546875, 59.175928 ], [ 10.546875, 59.355596 ], [ 10.195312, 59.355596 ], [ 10.195312, 59.265881 ], [ 10.019531, 59.265881 ], [ 10.019531, 59.175928 ], [ 9.843750, 59.175928 ], [ 9.843750, 59.085739 ], [ 9.667969, 59.085739 ], [ 9.667969, 58.995311 ], [ 9.492188, 58.995311 ], [ 9.492188, 58.904646 ], [ 9.316406, 58.904646 ], [ 9.316406, 58.722599 ], [ 9.140625, 58.722599 ], [ 9.140625, 58.631217 ], [ 8.964844, 58.631217 ], [ 8.964844, 58.539595 ], [ 8.789062, 58.539595 ], [ 8.789062, 58.447733 ], [ 8.613281, 58.447733 ], [ 8.613281, 58.355630 ], [ 8.261719, 58.355630 ], [ 8.261719, 58.263287 ], [ 7.910156, 58.263287 ], [ 7.910156, 58.170702 ], [ 7.382812, 58.170702 ], [ 7.382812, 58.077876 ], [ 6.855469, 58.077876 ], [ 6.855469, 58.170702 ], [ 6.503906, 58.170702 ], [ 6.503906, 58.263287 ], [ 6.328125, 58.263287 ], [ 6.328125, 58.355630 ], [ 6.152344, 58.355630 ], [ 6.152344, 58.447733 ], [ 5.800781, 58.447733 ], [ 5.800781, 58.539595 ], [ 5.625000, 58.539595 ], [ 5.625000, 58.813742 ], [ 5.449219, 58.813742 ], [ 5.449219, 59.355596 ], [ 5.273438, 59.355596 ], [ 5.273438, 60.152442 ], [ 5.097656, 60.152442 ], [ 5.097656, 61.354614 ], [ 4.921875, 61.354614 ], [ 4.921875, 61.938950 ], [ 5.097656, 61.938950 ], [ 5.097656, 62.103883 ], [ 5.273438, 62.103883 ], [ 5.273438, 62.186014 ], [ 5.449219, 62.186014 ], [ 5.449219, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.431074 ], [ 5.800781, 62.431074 ], [ 5.800781, 62.512318 ], [ 5.976562, 62.512318 ], [ 5.976562, 62.593341 ], [ 6.152344, 62.593341 ], [ 6.152344, 62.674143 ], [ 6.503906, 62.674143 ], [ 6.503906, 62.754726 ], [ 6.679688, 62.754726 ], [ 6.679688, 62.835089 ], [ 6.855469, 62.835089 ], [ 6.855469, 62.915233 ], [ 7.207031, 62.915233 ], [ 7.207031, 62.995158 ], [ 7.382812, 62.995158 ], [ 7.382812, 63.074866 ], [ 7.558594, 63.074866 ], [ 7.558594, 63.154355 ], [ 7.910156, 63.154355 ], [ 7.910156, 63.233627 ], [ 8.085938, 63.233627 ], [ 8.085938, 63.312683 ], [ 8.261719, 63.312683 ], [ 8.261719, 63.391522 ], [ 8.613281, 63.391522 ], [ 8.613281, 63.470145 ], [ 8.789062, 63.470145 ], [ 8.789062, 63.548552 ], [ 8.964844, 63.548552 ], [ 8.964844, 63.626745 ], [ 9.140625, 63.626745 ], [ 9.140625, 63.782486 ], [ 9.316406, 63.782486 ], [ 9.316406, 63.860036 ], [ 9.492188, 63.860036 ], [ 9.492188, 63.937372 ], [ 9.667969, 63.937372 ], [ 9.667969, 64.014496 ], [ 9.843750, 64.014496 ], [ 9.843750, 64.091408 ], [ 10.019531, 64.091408 ], [ 10.019531, 64.244595 ], [ 10.195312, 64.244595 ], [ 10.195312, 64.320872 ], [ 10.371094, 64.320872 ], [ 10.371094, 64.396938 ], [ 10.546875, 64.396938 ], [ 10.546875, 64.472794 ], [ 10.722656, 64.472794 ], [ 10.722656, 64.623877 ], [ 10.898438, 64.623877 ], [ 10.898438, 64.774125 ], [ 11.074219, 64.774125 ], [ 11.074219, 64.923542 ], [ 11.250000, 64.923542 ], [ 11.250000, 65.072130 ], [ 11.425781, 65.072130 ], [ 11.425781, 65.219894 ], [ 11.601562, 65.219894 ], [ 11.601562, 65.366837 ], [ 11.777344, 65.366837 ], [ 11.777344, 65.512963 ], [ 11.953125, 65.512963 ], [ 11.953125, 65.658275 ], [ 12.128906, 65.658275 ], [ 12.128906, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 65.946472 ], [ 12.480469, 65.946472 ], [ 12.480469, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.791909 ], [ 13.535156, 66.791909 ], [ 13.535156, 66.861082 ], [ 15.644531, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.480469, 55.677584 ], [ 12.656250, 55.677584 ], [ 12.656250, 55.379110 ], [ 12.480469, 55.379110 ], [ 12.480469, 55.178868 ], [ 12.304688, 55.178868 ], [ 12.304688, 54.876607 ], [ 12.128906, 54.876607 ], [ 12.128906, 54.775346 ], [ 11.953125, 54.775346 ], [ 11.953125, 54.876607 ], [ 11.777344, 54.876607 ], [ 11.777344, 54.977614 ], [ 11.601562, 54.977614 ], [ 11.601562, 55.078367 ], [ 11.425781, 55.078367 ], [ 11.425781, 55.178868 ], [ 11.250000, 55.178868 ], [ 11.250000, 55.279115 ], [ 11.074219, 55.279115 ], [ 11.074219, 55.578345 ], [ 10.898438, 55.578345 ], [ 10.898438, 55.776573 ], [ 11.250000, 55.776573 ], [ 11.250000, 55.875311 ], [ 11.777344, 55.875311 ], [ 11.777344, 55.973798 ], [ 12.128906, 55.973798 ], [ 12.128906, 56.072035 ], [ 12.304688, 56.072035 ], [ 12.304688, 55.875311 ], [ 12.480469, 55.875311 ], [ 12.480469, 55.677584 ] ] ], [ [ [ 10.546875, 57.136239 ], [ 10.371094, 57.136239 ], [ 10.371094, 56.944974 ], [ 10.195312, 56.944974 ], [ 10.195312, 56.752723 ], [ 10.371094, 56.752723 ], [ 10.371094, 56.559482 ], [ 10.722656, 56.559482 ], [ 10.722656, 56.462490 ], [ 10.898438, 56.462490 ], [ 10.898438, 56.267761 ], [ 10.722656, 56.267761 ], [ 10.722656, 56.072035 ], [ 10.195312, 56.072035 ], [ 10.195312, 55.875311 ], [ 10.019531, 55.875311 ], [ 10.019531, 55.677584 ], [ 9.843750, 55.677584 ], [ 9.843750, 55.478853 ], [ 9.667969, 55.478853 ], [ 9.667969, 55.178868 ], [ 9.843750, 55.178868 ], [ 9.843750, 54.977614 ], [ 9.667969, 54.977614 ], [ 9.667969, 54.876607 ], [ 8.789062, 54.876607 ], [ 8.789062, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 55.178868 ], [ 8.261719, 55.178868 ], [ 8.261719, 55.379110 ], [ 8.085938, 55.379110 ], [ 8.085938, 56.656226 ], [ 8.261719, 56.656226 ], [ 8.261719, 56.848972 ], [ 8.437500, 56.848972 ], [ 8.437500, 57.040730 ], [ 8.613281, 57.040730 ], [ 8.613281, 57.136239 ], [ 9.667969, 57.136239 ], [ 9.667969, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 57.421294 ], [ 10.019531, 57.421294 ], [ 10.019531, 57.515823 ], [ 10.371094, 57.515823 ], [ 10.371094, 57.610107 ], [ 10.546875, 57.610107 ], [ 10.546875, 57.136239 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.072035 ], [ 12.304688, 55.875311 ], [ 12.480469, 55.875311 ], [ 12.480469, 55.677584 ], [ 12.656250, 55.677584 ], [ 12.656250, 55.379110 ], [ 12.480469, 55.379110 ], [ 12.480469, 55.178868 ], [ 12.304688, 55.178868 ], [ 12.304688, 54.876607 ], [ 12.128906, 54.876607 ], [ 12.128906, 54.775346 ], [ 11.953125, 54.775346 ], [ 11.953125, 54.876607 ], [ 11.777344, 54.876607 ], [ 11.777344, 54.977614 ], [ 11.601562, 54.977614 ], [ 11.601562, 55.078367 ], [ 11.425781, 55.078367 ], [ 11.425781, 55.178868 ], [ 11.250000, 55.178868 ], [ 11.250000, 55.279115 ], [ 11.074219, 55.279115 ], [ 11.074219, 55.578345 ], [ 10.898438, 55.578345 ], [ 10.898438, 55.776573 ], [ 11.250000, 55.776573 ], [ 11.250000, 55.875311 ], [ 11.777344, 55.875311 ], [ 11.777344, 55.973798 ], [ 12.128906, 55.973798 ], [ 12.128906, 56.072035 ], [ 12.304688, 56.072035 ] ] ], [ [ [ 10.546875, 57.610107 ], [ 10.546875, 57.136239 ], [ 10.371094, 57.136239 ], [ 10.371094, 56.944974 ], [ 10.195312, 56.944974 ], [ 10.195312, 56.752723 ], [ 10.371094, 56.752723 ], [ 10.371094, 56.559482 ], [ 10.722656, 56.559482 ], [ 10.722656, 56.462490 ], [ 10.898438, 56.462490 ], [ 10.898438, 56.267761 ], [ 10.722656, 56.267761 ], [ 10.722656, 56.072035 ], [ 10.195312, 56.072035 ], [ 10.195312, 55.875311 ], [ 10.019531, 55.875311 ], [ 10.019531, 55.677584 ], [ 9.843750, 55.677584 ], [ 9.843750, 55.478853 ], [ 9.667969, 55.478853 ], [ 9.667969, 55.178868 ], [ 9.843750, 55.178868 ], [ 9.843750, 54.977614 ], [ 9.667969, 54.977614 ], [ 9.667969, 54.876607 ], [ 8.789062, 54.876607 ], [ 8.789062, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 55.178868 ], [ 8.261719, 55.178868 ], [ 8.261719, 55.379110 ], [ 8.085938, 55.379110 ], [ 8.085938, 56.656226 ], [ 8.261719, 56.656226 ], [ 8.261719, 56.848972 ], [ 8.437500, 56.848972 ], [ 8.437500, 57.040730 ], [ 8.613281, 57.040730 ], [ 8.613281, 57.136239 ], [ 9.667969, 57.136239 ], [ 9.667969, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 57.421294 ], [ 10.019531, 57.421294 ], [ 10.019531, 57.515823 ], [ 10.371094, 57.515823 ], [ 10.371094, 57.610107 ], [ 10.546875, 57.610107 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.730469, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 66.018018 ], [ 23.730469, 66.018018 ], [ 23.730469, 65.946472 ], [ 23.378906, 65.946472 ], [ 23.378906, 65.874725 ], [ 22.851562, 65.874725 ], [ 22.851562, 65.802776 ], [ 22.500000, 65.802776 ], [ 22.500000, 65.730626 ], [ 22.148438, 65.730626 ], [ 22.148438, 65.658275 ], [ 21.972656, 65.658275 ], [ 21.972656, 65.512963 ], [ 21.796875, 65.512963 ], [ 21.796875, 65.366837 ], [ 21.621094, 65.366837 ], [ 21.621094, 65.219894 ], [ 21.445312, 65.219894 ], [ 21.445312, 65.072130 ], [ 21.269531, 65.072130 ], [ 21.269531, 64.699105 ], [ 21.445312, 64.699105 ], [ 21.445312, 64.320872 ], [ 21.269531, 64.320872 ], [ 21.269531, 64.244595 ], [ 21.093750, 64.244595 ], [ 21.093750, 64.168107 ], [ 20.917969, 64.168107 ], [ 20.917969, 64.091408 ], [ 20.742188, 64.091408 ], [ 20.742188, 64.014496 ], [ 20.566406, 64.014496 ], [ 20.566406, 63.860036 ], [ 20.390625, 63.860036 ], [ 20.390625, 63.782486 ], [ 20.214844, 63.782486 ], [ 20.214844, 63.704722 ], [ 20.039062, 63.704722 ], [ 20.039062, 63.626745 ], [ 19.863281, 63.626745 ], [ 19.863281, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.511719, 63.470145 ], [ 19.511719, 63.391522 ], [ 19.335938, 63.391522 ], [ 19.335938, 63.312683 ], [ 19.160156, 63.312683 ], [ 19.160156, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 63.154355 ], [ 18.808594, 63.154355 ], [ 18.808594, 63.074866 ], [ 18.632812, 63.074866 ], [ 18.632812, 62.995158 ], [ 18.457031, 62.995158 ], [ 18.457031, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.835089 ], [ 18.105469, 62.835089 ], [ 18.105469, 62.754726 ], [ 17.929688, 62.754726 ], [ 17.929688, 62.593341 ], [ 17.753906, 62.593341 ], [ 17.753906, 62.267923 ], [ 17.578125, 62.267923 ], [ 17.578125, 62.021528 ], [ 17.402344, 62.021528 ], [ 17.402344, 61.773123 ], [ 17.226562, 61.773123 ], [ 17.226562, 61.438767 ], [ 17.050781, 61.438767 ], [ 17.050781, 61.270233 ], [ 17.226562, 61.270233 ], [ 17.226562, 61.100789 ], [ 17.402344, 61.100789 ], [ 17.402344, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.759160 ], [ 17.753906, 60.759160 ], [ 17.753906, 60.586967 ], [ 17.929688, 60.586967 ], [ 17.929688, 60.500525 ], [ 18.105469, 60.500525 ], [ 18.105469, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.239811 ], [ 18.457031, 60.239811 ], [ 18.457031, 60.152442 ], [ 18.632812, 60.152442 ], [ 18.632812, 60.064840 ], [ 18.808594, 60.064840 ], [ 18.808594, 59.888937 ], [ 18.632812, 59.888937 ], [ 18.632812, 59.712097 ], [ 18.457031, 59.712097 ], [ 18.457031, 59.534318 ], [ 18.281250, 59.534318 ], [ 18.281250, 59.265881 ], [ 18.105469, 59.265881 ], [ 18.105469, 59.085739 ], [ 17.929688, 59.085739 ], [ 17.929688, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.813742 ], [ 17.226562, 58.813742 ], [ 17.226562, 58.722599 ], [ 16.875000, 58.722599 ], [ 16.875000, 58.263287 ], [ 16.699219, 58.263287 ], [ 16.699219, 57.421294 ], [ 16.523438, 57.421294 ], [ 16.523438, 56.848972 ], [ 16.347656, 56.848972 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 16.171875, 56.365250 ], [ 15.996094, 56.365250 ], [ 15.996094, 56.170023 ], [ 15.820312, 56.170023 ], [ 15.820312, 56.072035 ], [ 15.117188, 56.072035 ], [ 15.117188, 56.170023 ], [ 14.589844, 56.170023 ], [ 14.589844, 55.973798 ], [ 14.414062, 55.973798 ], [ 14.414062, 55.776573 ], [ 14.238281, 55.776573 ], [ 14.238281, 55.478853 ], [ 14.062500, 55.478853 ], [ 14.062500, 55.379110 ], [ 13.007812, 55.379110 ], [ 13.007812, 55.578345 ], [ 12.832031, 55.578345 ], [ 12.832031, 55.973798 ], [ 12.656250, 55.973798 ], [ 12.656250, 56.365250 ], [ 12.480469, 56.365250 ], [ 12.480469, 56.559482 ], [ 12.304688, 56.559482 ], [ 12.304688, 56.848972 ], [ 12.128906, 56.848972 ], [ 12.128906, 57.040730 ], [ 11.953125, 57.040730 ], [ 11.953125, 57.231503 ], [ 11.777344, 57.231503 ], [ 11.777344, 57.515823 ], [ 11.601562, 57.515823 ], [ 11.601562, 57.891497 ], [ 11.425781, 57.891497 ], [ 11.425781, 58.263287 ], [ 11.250000, 58.263287 ], [ 11.250000, 58.631217 ], [ 11.074219, 58.631217 ], [ 11.074219, 58.904646 ], [ 11.250000, 58.904646 ], [ 11.250000, 59.265881 ], [ 11.425781, 59.265881 ], [ 11.425781, 59.445075 ], [ 11.601562, 59.445075 ], [ 11.601562, 59.623325 ], [ 11.777344, 59.623325 ], [ 11.777344, 59.800634 ], [ 11.953125, 59.800634 ], [ 11.953125, 59.888937 ], [ 12.128906, 59.888937 ], [ 12.128906, 60.064840 ], [ 12.304688, 60.064840 ], [ 12.304688, 60.413852 ], [ 12.480469, 60.413852 ], [ 12.480469, 60.930432 ], [ 12.656250, 60.930432 ], [ 12.656250, 61.270233 ], [ 12.480469, 61.270233 ], [ 12.480469, 61.438767 ], [ 12.304688, 61.438767 ], [ 12.304688, 61.522695 ], [ 12.128906, 61.522695 ], [ 12.128906, 61.689872 ], [ 11.953125, 61.689872 ], [ 11.953125, 63.233627 ], [ 12.128906, 63.233627 ], [ 12.128906, 63.470145 ], [ 12.304688, 63.470145 ], [ 12.304688, 63.704722 ], [ 12.480469, 63.704722 ], [ 12.480469, 63.937372 ], [ 12.656250, 63.937372 ], [ 12.656250, 64.091408 ], [ 13.007812, 64.091408 ], [ 13.007812, 64.014496 ], [ 13.535156, 64.014496 ], [ 13.535156, 64.091408 ], [ 13.710938, 64.091408 ], [ 13.710938, 64.320872 ], [ 13.886719, 64.320872 ], [ 13.886719, 64.548440 ], [ 13.710938, 64.548440 ], [ 13.710938, 64.699105 ], [ 13.535156, 64.699105 ], [ 13.535156, 64.848937 ], [ 13.710938, 64.848937 ], [ 13.710938, 64.997939 ], [ 13.886719, 64.997939 ], [ 13.886719, 65.146115 ], [ 14.062500, 65.146115 ], [ 14.062500, 65.293468 ], [ 14.238281, 65.293468 ], [ 14.238281, 65.440002 ], [ 14.414062, 65.440002 ], [ 14.414062, 65.585720 ], [ 14.589844, 65.585720 ], [ 14.589844, 65.730626 ], [ 14.765625, 65.730626 ], [ 14.765625, 65.874725 ], [ 14.941406, 65.874725 ], [ 14.941406, 66.018018 ], [ 15.117188, 66.018018 ], [ 15.117188, 66.231457 ], [ 15.292969, 66.231457 ], [ 15.292969, 66.513260 ], [ 15.468750, 66.513260 ], [ 15.468750, 66.722541 ], [ 15.644531, 66.722541 ], [ 15.644531, 66.861082 ], [ 23.554688, 66.861082 ], [ 23.554688, 66.231457 ], [ 23.730469, 66.231457 ], [ 23.730469, 66.089364 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.554688, 66.231457 ], [ 23.730469, 66.231457 ], [ 23.730469, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 66.018018 ], [ 23.730469, 66.018018 ], [ 23.730469, 65.946472 ], [ 23.378906, 65.946472 ], [ 23.378906, 65.874725 ], [ 22.851562, 65.874725 ], [ 22.851562, 65.802776 ], [ 22.500000, 65.802776 ], [ 22.500000, 65.730626 ], [ 22.148438, 65.730626 ], [ 22.148438, 65.658275 ], [ 21.972656, 65.658275 ], [ 21.972656, 65.512963 ], [ 21.796875, 65.512963 ], [ 21.796875, 65.366837 ], [ 21.621094, 65.366837 ], [ 21.621094, 65.219894 ], [ 21.445312, 65.219894 ], [ 21.445312, 65.072130 ], [ 21.269531, 65.072130 ], [ 21.269531, 64.699105 ], [ 21.445312, 64.699105 ], [ 21.445312, 64.320872 ], [ 21.269531, 64.320872 ], [ 21.269531, 64.244595 ], [ 21.093750, 64.244595 ], [ 21.093750, 64.168107 ], [ 20.917969, 64.168107 ], [ 20.917969, 64.091408 ], [ 20.742188, 64.091408 ], [ 20.742188, 64.014496 ], [ 20.566406, 64.014496 ], [ 20.566406, 63.860036 ], [ 20.390625, 63.860036 ], [ 20.390625, 63.782486 ], [ 20.214844, 63.782486 ], [ 20.214844, 63.704722 ], [ 20.039062, 63.704722 ], [ 20.039062, 63.626745 ], [ 19.863281, 63.626745 ], [ 19.863281, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.511719, 63.470145 ], [ 19.511719, 63.391522 ], [ 19.335938, 63.391522 ], [ 19.335938, 63.312683 ], [ 19.160156, 63.312683 ], [ 19.160156, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 63.154355 ], [ 18.808594, 63.154355 ], [ 18.808594, 63.074866 ], [ 18.632812, 63.074866 ], [ 18.632812, 62.995158 ], [ 18.457031, 62.995158 ], [ 18.457031, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.835089 ], [ 18.105469, 62.835089 ], [ 18.105469, 62.754726 ], [ 17.929688, 62.754726 ], [ 17.929688, 62.593341 ], [ 17.753906, 62.593341 ], [ 17.753906, 62.267923 ], [ 17.578125, 62.267923 ], [ 17.578125, 62.021528 ], [ 17.402344, 62.021528 ], [ 17.402344, 61.773123 ], [ 17.226562, 61.773123 ], [ 17.226562, 61.438767 ], [ 17.050781, 61.438767 ], [ 17.050781, 61.270233 ], [ 17.226562, 61.270233 ], [ 17.226562, 61.100789 ], [ 17.402344, 61.100789 ], [ 17.402344, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.759160 ], [ 17.753906, 60.759160 ], [ 17.753906, 60.586967 ], [ 17.929688, 60.586967 ], [ 17.929688, 60.500525 ], [ 18.105469, 60.500525 ], [ 18.105469, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.239811 ], [ 18.457031, 60.239811 ], [ 18.457031, 60.152442 ], [ 18.632812, 60.152442 ], [ 18.632812, 60.064840 ], [ 18.808594, 60.064840 ], [ 18.808594, 59.888937 ], [ 18.632812, 59.888937 ], [ 18.632812, 59.712097 ], [ 18.457031, 59.712097 ], [ 18.457031, 59.534318 ], [ 18.281250, 59.534318 ], [ 18.281250, 59.265881 ], [ 18.105469, 59.265881 ], [ 18.105469, 59.085739 ], [ 17.929688, 59.085739 ], [ 17.929688, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.813742 ], [ 17.226562, 58.813742 ], [ 17.226562, 58.722599 ], [ 16.875000, 58.722599 ], [ 16.875000, 58.263287 ], [ 16.699219, 58.263287 ], [ 16.699219, 57.421294 ], [ 16.523438, 57.421294 ], [ 16.523438, 56.848972 ], [ 16.347656, 56.848972 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 16.171875, 56.365250 ], [ 15.996094, 56.365250 ], [ 15.996094, 56.170023 ], [ 15.820312, 56.170023 ], [ 15.820312, 56.072035 ], [ 15.117188, 56.072035 ], [ 15.117188, 56.170023 ], [ 14.589844, 56.170023 ], [ 14.589844, 55.973798 ], [ 14.414062, 55.973798 ], [ 14.414062, 55.776573 ], [ 14.238281, 55.776573 ], [ 14.238281, 55.478853 ], [ 14.062500, 55.478853 ], [ 14.062500, 55.379110 ], [ 13.007812, 55.379110 ], [ 13.007812, 55.578345 ], [ 12.832031, 55.578345 ], [ 12.832031, 55.973798 ], [ 12.656250, 55.973798 ], [ 12.656250, 56.365250 ], [ 12.480469, 56.365250 ], [ 12.480469, 56.559482 ], [ 12.304688, 56.559482 ], [ 12.304688, 56.848972 ], [ 12.128906, 56.848972 ], [ 12.128906, 57.040730 ], [ 11.953125, 57.040730 ], [ 11.953125, 57.231503 ], [ 11.777344, 57.231503 ], [ 11.777344, 57.515823 ], [ 11.601562, 57.515823 ], [ 11.601562, 57.891497 ], [ 11.425781, 57.891497 ], [ 11.425781, 58.263287 ], [ 11.250000, 58.263287 ], [ 11.250000, 58.631217 ], [ 11.074219, 58.631217 ], [ 11.074219, 58.904646 ], [ 11.250000, 58.904646 ], [ 11.250000, 59.265881 ], [ 11.425781, 59.265881 ], [ 11.425781, 59.445075 ], [ 11.601562, 59.445075 ], [ 11.601562, 59.623325 ], [ 11.777344, 59.623325 ], [ 11.777344, 59.800634 ], [ 11.953125, 59.800634 ], [ 11.953125, 59.888937 ], [ 12.128906, 59.888937 ], [ 12.128906, 60.064840 ], [ 12.304688, 60.064840 ], [ 12.304688, 60.413852 ], [ 12.480469, 60.413852 ], [ 12.480469, 60.930432 ], [ 12.656250, 60.930432 ], [ 12.656250, 61.270233 ], [ 12.480469, 61.270233 ], [ 12.480469, 61.438767 ], [ 12.304688, 61.438767 ], [ 12.304688, 61.522695 ], [ 12.128906, 61.522695 ], [ 12.128906, 61.689872 ], [ 11.953125, 61.689872 ], [ 11.953125, 63.233627 ], [ 12.128906, 63.233627 ], [ 12.128906, 63.470145 ], [ 12.304688, 63.470145 ], [ 12.304688, 63.704722 ], [ 12.480469, 63.704722 ], [ 12.480469, 63.937372 ], [ 12.656250, 63.937372 ], [ 12.656250, 64.091408 ], [ 13.007812, 64.091408 ], [ 13.007812, 64.014496 ], [ 13.535156, 64.014496 ], [ 13.535156, 64.091408 ], [ 13.710938, 64.091408 ], [ 13.710938, 64.320872 ], [ 13.886719, 64.320872 ], [ 13.886719, 64.548440 ], [ 13.710938, 64.548440 ], [ 13.710938, 64.699105 ], [ 13.535156, 64.699105 ], [ 13.535156, 64.848937 ], [ 13.710938, 64.848937 ], [ 13.710938, 64.997939 ], [ 13.886719, 64.997939 ], [ 13.886719, 65.146115 ], [ 14.062500, 65.146115 ], [ 14.062500, 65.293468 ], [ 14.238281, 65.293468 ], [ 14.238281, 65.440002 ], [ 14.414062, 65.440002 ], [ 14.414062, 65.585720 ], [ 14.589844, 65.585720 ], [ 14.589844, 65.730626 ], [ 14.765625, 65.730626 ], [ 14.765625, 65.874725 ], [ 14.941406, 65.874725 ], [ 14.941406, 66.018018 ], [ 15.117188, 66.018018 ], [ 15.117188, 66.231457 ], [ 15.292969, 66.231457 ], [ 15.292969, 66.513260 ], [ 15.468750, 66.513260 ], [ 15.468750, 66.722541 ], [ 15.644531, 66.722541 ], [ 15.644531, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.855469, 53.225768 ], [ 7.031250, 53.225768 ], [ 7.031250, 52.696361 ], [ 6.855469, 52.696361 ], [ 6.855469, 52.160455 ], [ 6.679688, 52.160455 ], [ 6.679688, 51.944265 ], [ 6.503906, 51.944265 ], [ 6.503906, 51.835778 ], [ 5.976562, 51.835778 ], [ 5.976562, 51.289406 ], [ 6.152344, 51.289406 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.847573 ], [ 5.976562, 50.958427 ], [ 5.625000, 50.958427 ], [ 5.625000, 51.069017 ], [ 5.449219, 51.069017 ], [ 5.449219, 51.179343 ], [ 5.273438, 51.179343 ], [ 5.273438, 51.289406 ], [ 5.097656, 51.289406 ], [ 5.097656, 51.399206 ], [ 4.921875, 51.399206 ], [ 4.921875, 51.508742 ], [ 4.746094, 51.508742 ], [ 4.746094, 51.399206 ], [ 4.394531, 51.399206 ], [ 4.394531, 51.289406 ], [ 3.515625, 51.289406 ], [ 3.515625, 51.508742 ], [ 3.867188, 51.508742 ], [ 3.867188, 51.727028 ], [ 4.042969, 51.727028 ], [ 4.042969, 52.052490 ], [ 4.218750, 52.052490 ], [ 4.218750, 52.375599 ], [ 4.394531, 52.375599 ], [ 4.394531, 52.589701 ], [ 4.570312, 52.589701 ], [ 4.570312, 52.908902 ], [ 4.746094, 52.908902 ], [ 4.746094, 53.120405 ], [ 5.097656, 53.120405 ], [ 5.097656, 53.225768 ], [ 5.449219, 53.225768 ], [ 5.449219, 53.330873 ], [ 5.800781, 53.330873 ], [ 5.800781, 53.435719 ], [ 6.152344, 53.435719 ], [ 6.152344, 53.540307 ], [ 6.328125, 53.540307 ], [ 6.328125, 53.435719 ], [ 6.855469, 53.435719 ], [ 6.855469, 53.225768 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 53.540307 ], [ 6.328125, 53.435719 ], [ 6.855469, 53.435719 ], [ 6.855469, 53.225768 ], [ 7.031250, 53.225768 ], [ 7.031250, 52.696361 ], [ 6.855469, 52.696361 ], [ 6.855469, 52.160455 ], [ 6.679688, 52.160455 ], [ 6.679688, 51.944265 ], [ 6.503906, 51.944265 ], [ 6.503906, 51.835778 ], [ 5.976562, 51.835778 ], [ 5.976562, 51.289406 ], [ 6.152344, 51.289406 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.847573 ], [ 5.976562, 50.958427 ], [ 5.625000, 50.958427 ], [ 5.625000, 51.069017 ], [ 5.449219, 51.069017 ], [ 5.449219, 51.179343 ], [ 5.273438, 51.179343 ], [ 5.273438, 51.289406 ], [ 5.097656, 51.289406 ], [ 5.097656, 51.399206 ], [ 4.921875, 51.399206 ], [ 4.921875, 51.508742 ], [ 4.746094, 51.508742 ], [ 4.746094, 51.399206 ], [ 4.394531, 51.399206 ], [ 4.394531, 51.289406 ], [ 3.515625, 51.289406 ], [ 3.515625, 51.508742 ], [ 3.867188, 51.508742 ], [ 3.867188, 51.727028 ], [ 4.042969, 51.727028 ], [ 4.042969, 52.052490 ], [ 4.218750, 52.052490 ], [ 4.218750, 52.375599 ], [ 4.394531, 52.375599 ], [ 4.394531, 52.589701 ], [ 4.570312, 52.589701 ], [ 4.570312, 52.908902 ], [ 4.746094, 52.908902 ], [ 4.746094, 53.120405 ], [ 5.097656, 53.120405 ], [ 5.097656, 53.225768 ], [ 5.449219, 53.225768 ], [ 5.449219, 53.330873 ], [ 5.800781, 53.330873 ], [ 5.800781, 53.435719 ], [ 6.152344, 53.435719 ], [ 6.152344, 53.540307 ], [ 6.328125, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.097656, 51.289406 ], [ 5.273438, 51.289406 ], [ 5.273438, 51.179343 ], [ 5.449219, 51.179343 ], [ 5.449219, 51.069017 ], [ 5.625000, 51.069017 ], [ 5.625000, 50.958427 ], [ 5.976562, 50.958427 ], [ 5.976562, 50.847573 ], [ 6.152344, 50.847573 ], [ 6.152344, 50.513427 ], [ 5.976562, 50.513427 ], [ 5.976562, 50.064192 ], [ 5.800781, 50.064192 ], [ 5.800781, 49.724479 ], [ 5.625000, 49.724479 ], [ 5.625000, 49.496675 ], [ 5.449219, 49.496675 ], [ 5.449219, 49.610710 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.724479 ], [ 4.921875, 49.724479 ], [ 4.921875, 49.837982 ], [ 4.746094, 49.837982 ], [ 4.746094, 49.951220 ], [ 4.042969, 49.951220 ], [ 4.042969, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 50.176898 ], [ 3.691406, 50.176898 ], [ 3.691406, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 50.401515 ], [ 3.339844, 50.401515 ], [ 3.339844, 50.625073 ], [ 3.164062, 50.625073 ], [ 3.164062, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.847573 ], [ 2.636719, 50.847573 ], [ 2.636719, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.812500, 51.179343 ], [ 2.812500, 51.289406 ], [ 3.164062, 51.289406 ], [ 3.164062, 51.399206 ], [ 3.515625, 51.399206 ], [ 3.515625, 51.289406 ], [ 4.394531, 51.289406 ], [ 4.394531, 51.399206 ], [ 4.746094, 51.399206 ], [ 4.746094, 51.508742 ], [ 4.921875, 51.508742 ], [ 4.921875, 51.399206 ], [ 5.097656, 51.399206 ], [ 5.097656, 51.289406 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 4.921875, 51.399206 ], [ 5.097656, 51.399206 ], [ 5.097656, 51.289406 ], [ 5.273438, 51.289406 ], [ 5.273438, 51.179343 ], [ 5.449219, 51.179343 ], [ 5.449219, 51.069017 ], [ 5.625000, 51.069017 ], [ 5.625000, 50.958427 ], [ 5.976562, 50.958427 ], [ 5.976562, 50.847573 ], [ 6.152344, 50.847573 ], [ 6.152344, 50.513427 ], [ 5.976562, 50.513427 ], [ 5.976562, 50.064192 ], [ 5.800781, 50.064192 ], [ 5.800781, 49.724479 ], [ 5.625000, 49.724479 ], [ 5.625000, 49.496675 ], [ 5.449219, 49.496675 ], [ 5.449219, 49.610710 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.724479 ], [ 4.921875, 49.724479 ], [ 4.921875, 49.837982 ], [ 4.746094, 49.837982 ], [ 4.746094, 49.951220 ], [ 4.042969, 49.951220 ], [ 4.042969, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 50.176898 ], [ 3.691406, 50.176898 ], [ 3.691406, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 50.401515 ], [ 3.339844, 50.401515 ], [ 3.339844, 50.625073 ], [ 3.164062, 50.625073 ], [ 3.164062, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.847573 ], [ 2.636719, 50.847573 ], [ 2.636719, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.812500, 51.179343 ], [ 2.812500, 51.289406 ], [ 3.164062, 51.289406 ], [ 3.164062, 51.399206 ], [ 3.515625, 51.399206 ], [ 3.515625, 51.289406 ], [ 4.394531, 51.289406 ], [ 4.394531, 51.399206 ], [ 4.746094, 51.399206 ], [ 4.746094, 51.508742 ], [ 4.921875, 51.508742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.152344, 49.951220 ], [ 6.328125, 49.951220 ], [ 6.328125, 49.724479 ], [ 6.152344, 49.724479 ], [ 6.152344, 49.496675 ], [ 5.625000, 49.496675 ], [ 5.625000, 49.724479 ], [ 5.800781, 49.724479 ], [ 5.800781, 50.064192 ], [ 6.152344, 50.064192 ], [ 6.152344, 49.951220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.152344, 50.064192 ], [ 6.152344, 49.951220 ], [ 6.328125, 49.951220 ], [ 6.328125, 49.724479 ], [ 6.152344, 49.724479 ], [ 6.152344, 49.496675 ], [ 5.625000, 49.496675 ], [ 5.625000, 49.724479 ], [ 5.800781, 49.724479 ], [ 5.800781, 50.064192 ], [ 6.152344, 50.064192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.183594, 54.162434 ], [ 13.535156, 54.162434 ], [ 13.535156, 54.059388 ], [ 13.710938, 54.059388 ], [ 13.710938, 53.956086 ], [ 13.886719, 53.956086 ], [ 13.886719, 53.748711 ], [ 14.062500, 53.748711 ], [ 14.062500, 53.540307 ], [ 14.238281, 53.540307 ], [ 14.238281, 53.330873 ], [ 14.414062, 53.330873 ], [ 14.414062, 53.120405 ], [ 14.238281, 53.120405 ], [ 14.238281, 53.014783 ], [ 14.062500, 53.014783 ], [ 14.062500, 52.908902 ], [ 14.238281, 52.908902 ], [ 14.238281, 52.696361 ], [ 14.414062, 52.696361 ], [ 14.414062, 52.375599 ], [ 14.589844, 52.375599 ], [ 14.589844, 52.160455 ], [ 14.765625, 52.160455 ], [ 14.765625, 51.835778 ], [ 14.589844, 51.835778 ], [ 14.589844, 51.508742 ], [ 14.765625, 51.508742 ], [ 14.765625, 51.179343 ], [ 14.941406, 51.179343 ], [ 14.941406, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 50.847573 ], [ 13.710938, 50.847573 ], [ 13.710938, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.625073 ], [ 13.183594, 50.625073 ], [ 13.183594, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.401515 ], [ 12.656250, 50.401515 ], [ 12.656250, 50.289339 ], [ 12.304688, 50.289339 ], [ 12.304688, 50.064192 ], [ 12.480469, 50.064192 ], [ 12.480469, 49.382373 ], [ 12.832031, 49.382373 ], [ 12.832031, 49.267805 ], [ 13.007812, 49.267805 ], [ 13.007812, 49.152970 ], [ 13.183594, 49.152970 ], [ 13.183594, 49.037868 ], [ 13.359375, 49.037868 ], [ 13.359375, 48.922499 ], [ 13.535156, 48.922499 ], [ 13.535156, 48.806863 ], [ 13.359375, 48.806863 ], [ 13.359375, 48.574790 ], [ 13.183594, 48.574790 ], [ 13.183594, 48.341646 ], [ 12.832031, 48.341646 ], [ 12.832031, 47.989922 ], [ 13.007812, 47.989922 ], [ 13.007812, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 47.635784 ], [ 12.304688, 47.635784 ], [ 12.304688, 47.754098 ], [ 12.128906, 47.754098 ], [ 12.128906, 47.635784 ], [ 11.777344, 47.635784 ], [ 11.777344, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.398349 ], [ 10.371094, 47.398349 ], [ 10.371094, 47.279229 ], [ 10.195312, 47.279229 ], [ 10.195312, 47.398349 ], [ 10.019531, 47.398349 ], [ 10.019531, 47.517201 ], [ 9.316406, 47.517201 ], [ 9.316406, 47.635784 ], [ 8.964844, 47.635784 ], [ 8.964844, 47.754098 ], [ 8.613281, 47.754098 ], [ 8.613281, 47.872144 ], [ 8.437500, 47.872144 ], [ 8.437500, 47.754098 ], [ 8.261719, 47.754098 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.382812, 47.989922 ], [ 7.558594, 47.989922 ], [ 7.558594, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 48.690960 ], [ 7.910156, 48.690960 ], [ 7.910156, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 49.037868 ], [ 7.207031, 49.037868 ], [ 7.207031, 49.152970 ], [ 6.503906, 49.152970 ], [ 6.503906, 49.267805 ], [ 6.328125, 49.267805 ], [ 6.328125, 49.382373 ], [ 6.152344, 49.382373 ], [ 6.152344, 49.724479 ], [ 6.328125, 49.724479 ], [ 6.328125, 49.951220 ], [ 6.152344, 49.951220 ], [ 6.152344, 50.064192 ], [ 5.976562, 50.064192 ], [ 5.976562, 50.513427 ], [ 6.152344, 50.513427 ], [ 6.152344, 51.289406 ], [ 5.976562, 51.289406 ], [ 5.976562, 51.835778 ], [ 6.503906, 51.835778 ], [ 6.503906, 51.944265 ], [ 6.679688, 51.944265 ], [ 6.679688, 52.160455 ], [ 6.855469, 52.160455 ], [ 6.855469, 52.696361 ], [ 7.031250, 52.696361 ], [ 7.031250, 53.225768 ], [ 6.855469, 53.225768 ], [ 6.855469, 53.540307 ], [ 7.031250, 53.540307 ], [ 7.031250, 53.644638 ], [ 7.558594, 53.644638 ], [ 7.558594, 53.748711 ], [ 7.910156, 53.748711 ], [ 7.910156, 53.644638 ], [ 8.085938, 53.644638 ], [ 8.085938, 53.540307 ], [ 8.261719, 53.540307 ], [ 8.261719, 53.644638 ], [ 8.437500, 53.644638 ], [ 8.437500, 53.852527 ], [ 8.613281, 53.852527 ], [ 8.613281, 53.956086 ], [ 8.789062, 53.956086 ], [ 8.789062, 54.162434 ], [ 8.613281, 54.162434 ], [ 8.613281, 54.977614 ], [ 8.789062, 54.977614 ], [ 8.789062, 54.876607 ], [ 9.667969, 54.876607 ], [ 9.667969, 54.977614 ], [ 9.843750, 54.977614 ], [ 9.843750, 54.775346 ], [ 10.019531, 54.775346 ], [ 10.019531, 54.572062 ], [ 10.195312, 54.572062 ], [ 10.195312, 54.470038 ], [ 10.546875, 54.470038 ], [ 10.546875, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.601562, 54.059388 ], [ 11.601562, 54.162434 ], [ 12.128906, 54.162434 ], [ 12.128906, 54.265224 ], [ 12.304688, 54.265224 ], [ 12.304688, 54.367759 ], [ 12.832031, 54.367759 ], [ 12.832031, 54.265224 ], [ 13.183594, 54.265224 ], [ 13.183594, 54.162434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.775346 ], [ 10.019531, 54.775346 ], [ 10.019531, 54.572062 ], [ 10.195312, 54.572062 ], [ 10.195312, 54.470038 ], [ 10.546875, 54.470038 ], [ 10.546875, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.601562, 54.059388 ], [ 11.601562, 54.162434 ], [ 12.128906, 54.162434 ], [ 12.128906, 54.265224 ], [ 12.304688, 54.265224 ], [ 12.304688, 54.367759 ], [ 12.832031, 54.367759 ], [ 12.832031, 54.265224 ], [ 13.183594, 54.265224 ], [ 13.183594, 54.162434 ], [ 13.535156, 54.162434 ], [ 13.535156, 54.059388 ], [ 13.710938, 54.059388 ], [ 13.710938, 53.956086 ], [ 13.886719, 53.956086 ], [ 13.886719, 53.748711 ], [ 14.062500, 53.748711 ], [ 14.062500, 53.540307 ], [ 14.238281, 53.540307 ], [ 14.238281, 53.330873 ], [ 14.414062, 53.330873 ], [ 14.414062, 53.120405 ], [ 14.238281, 53.120405 ], [ 14.238281, 53.014783 ], [ 14.062500, 53.014783 ], [ 14.062500, 52.908902 ], [ 14.238281, 52.908902 ], [ 14.238281, 52.696361 ], [ 14.414062, 52.696361 ], [ 14.414062, 52.375599 ], [ 14.589844, 52.375599 ], [ 14.589844, 52.160455 ], [ 14.765625, 52.160455 ], [ 14.765625, 51.835778 ], [ 14.589844, 51.835778 ], [ 14.589844, 51.508742 ], [ 14.765625, 51.508742 ], [ 14.765625, 51.179343 ], [ 14.941406, 51.179343 ], [ 14.941406, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 50.847573 ], [ 13.710938, 50.847573 ], [ 13.710938, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.625073 ], [ 13.183594, 50.625073 ], [ 13.183594, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.401515 ], [ 12.656250, 50.401515 ], [ 12.656250, 50.289339 ], [ 12.304688, 50.289339 ], [ 12.304688, 50.064192 ], [ 12.480469, 50.064192 ], [ 12.480469, 49.382373 ], [ 12.832031, 49.382373 ], [ 12.832031, 49.267805 ], [ 13.007812, 49.267805 ], [ 13.007812, 49.152970 ], [ 13.183594, 49.152970 ], [ 13.183594, 49.037868 ], [ 13.359375, 49.037868 ], [ 13.359375, 48.922499 ], [ 13.535156, 48.922499 ], [ 13.535156, 48.806863 ], [ 13.359375, 48.806863 ], [ 13.359375, 48.574790 ], [ 13.183594, 48.574790 ], [ 13.183594, 48.341646 ], [ 12.832031, 48.341646 ], [ 12.832031, 47.989922 ], [ 13.007812, 47.989922 ], [ 13.007812, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 47.635784 ], [ 12.304688, 47.635784 ], [ 12.304688, 47.754098 ], [ 12.128906, 47.754098 ], [ 12.128906, 47.635784 ], [ 11.777344, 47.635784 ], [ 11.777344, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.398349 ], [ 10.371094, 47.398349 ], [ 10.371094, 47.279229 ], [ 10.195312, 47.279229 ], [ 10.195312, 47.398349 ], [ 10.019531, 47.398349 ], [ 10.019531, 47.517201 ], [ 9.316406, 47.517201 ], [ 9.316406, 47.635784 ], [ 8.964844, 47.635784 ], [ 8.964844, 47.754098 ], [ 8.613281, 47.754098 ], [ 8.613281, 47.872144 ], [ 8.437500, 47.872144 ], [ 8.437500, 47.754098 ], [ 8.261719, 47.754098 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.382812, 47.989922 ], [ 7.558594, 47.989922 ], [ 7.558594, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 48.690960 ], [ 7.910156, 48.690960 ], [ 7.910156, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 49.037868 ], [ 7.207031, 49.037868 ], [ 7.207031, 49.152970 ], [ 6.503906, 49.152970 ], [ 6.503906, 49.267805 ], [ 6.328125, 49.267805 ], [ 6.328125, 49.382373 ], [ 6.152344, 49.382373 ], [ 6.152344, 49.724479 ], [ 6.328125, 49.724479 ], [ 6.328125, 49.951220 ], [ 6.152344, 49.951220 ], [ 6.152344, 50.064192 ], [ 5.976562, 50.064192 ], [ 5.976562, 50.513427 ], [ 6.152344, 50.513427 ], [ 6.152344, 51.289406 ], [ 5.976562, 51.289406 ], [ 5.976562, 51.835778 ], [ 6.503906, 51.835778 ], [ 6.503906, 51.944265 ], [ 6.679688, 51.944265 ], [ 6.679688, 52.160455 ], [ 6.855469, 52.160455 ], [ 6.855469, 52.696361 ], [ 7.031250, 52.696361 ], [ 7.031250, 53.225768 ], [ 6.855469, 53.225768 ], [ 6.855469, 53.540307 ], [ 7.031250, 53.540307 ], [ 7.031250, 53.644638 ], [ 7.558594, 53.644638 ], [ 7.558594, 53.748711 ], [ 7.910156, 53.748711 ], [ 7.910156, 53.644638 ], [ 8.085938, 53.644638 ], [ 8.085938, 53.540307 ], [ 8.261719, 53.540307 ], [ 8.261719, 53.644638 ], [ 8.437500, 53.644638 ], [ 8.437500, 53.852527 ], [ 8.613281, 53.852527 ], [ 8.613281, 53.956086 ], [ 8.789062, 53.956086 ], [ 8.789062, 54.162434 ], [ 8.613281, 54.162434 ], [ 8.613281, 54.977614 ], [ 8.789062, 54.977614 ], [ 8.789062, 54.876607 ], [ 9.667969, 54.876607 ], [ 9.667969, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.207031, 47.398349 ], [ 7.207031, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.261719, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.872144 ], [ 8.613281, 47.872144 ], [ 8.613281, 47.754098 ], [ 8.964844, 47.754098 ], [ 8.964844, 47.635784 ], [ 9.316406, 47.635784 ], [ 9.316406, 47.517201 ], [ 9.667969, 47.517201 ], [ 9.667969, 47.279229 ], [ 9.492188, 47.279229 ], [ 9.492188, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 46.920255 ], [ 10.371094, 46.920255 ], [ 10.371094, 46.437857 ], [ 10.195312, 46.437857 ], [ 10.195312, 46.316584 ], [ 9.316406, 46.316584 ], [ 9.316406, 46.437857 ], [ 9.140625, 46.437857 ], [ 9.140625, 46.195042 ], [ 8.964844, 46.195042 ], [ 8.964844, 46.073231 ], [ 8.789062, 46.073231 ], [ 8.789062, 45.951150 ], [ 8.437500, 45.951150 ], [ 8.437500, 46.073231 ], [ 8.085938, 46.073231 ], [ 8.085938, 45.951150 ], [ 7.910156, 45.951150 ], [ 7.910156, 45.828799 ], [ 6.855469, 45.828799 ], [ 6.855469, 46.073231 ], [ 6.679688, 46.073231 ], [ 6.679688, 46.316584 ], [ 6.503906, 46.316584 ], [ 6.503906, 46.437857 ], [ 6.328125, 46.437857 ], [ 6.328125, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.679594 ], [ 6.152344, 46.679594 ], [ 6.152344, 46.800059 ], [ 6.328125, 46.800059 ], [ 6.328125, 46.920255 ], [ 6.503906, 46.920255 ], [ 6.503906, 47.040182 ], [ 6.679688, 47.040182 ], [ 6.679688, 47.159840 ], [ 6.855469, 47.159840 ], [ 6.855469, 47.398349 ], [ 7.207031, 47.398349 ] ] ], [ [ [ 6.679688, 47.398349 ], [ 6.679688, 47.517201 ], [ 6.855469, 47.517201 ], [ 6.855469, 47.398349 ], [ 6.679688, 47.398349 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.855469, 47.398349 ], [ 7.207031, 47.398349 ], [ 7.207031, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.261719, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.872144 ], [ 8.613281, 47.872144 ], [ 8.613281, 47.754098 ], [ 8.964844, 47.754098 ], [ 8.964844, 47.635784 ], [ 9.316406, 47.635784 ], [ 9.667969, 47.517201 ], [ 9.667969, 47.279229 ], [ 9.492188, 47.279229 ], [ 9.492188, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 46.920255 ], [ 10.371094, 46.920255 ], [ 10.371094, 46.437857 ], [ 10.195312, 46.437857 ], [ 10.195312, 46.316584 ], [ 9.316406, 46.316584 ], [ 9.316406, 46.437857 ], [ 9.140625, 46.437857 ], [ 9.140625, 46.195042 ], [ 8.964844, 46.195042 ], [ 8.964844, 46.073231 ], [ 8.789062, 46.073231 ], [ 8.789062, 45.951150 ], [ 8.437500, 45.951150 ], [ 8.437500, 46.073231 ], [ 8.085938, 46.073231 ], [ 8.085938, 45.951150 ], [ 7.910156, 45.951150 ], [ 7.910156, 45.828799 ], [ 6.855469, 45.828799 ], [ 6.855469, 46.073231 ], [ 6.679688, 46.073231 ], [ 6.679688, 46.316584 ], [ 6.503906, 46.316584 ], [ 6.503906, 46.437857 ], [ 6.328125, 46.437857 ], [ 6.328125, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.679594 ], [ 6.152344, 46.679594 ], [ 6.152344, 46.800059 ], [ 6.328125, 46.800059 ], [ 6.328125, 46.920255 ], [ 6.503906, 46.920255 ], [ 6.503906, 47.040182 ], [ 6.679688, 47.040182 ], [ 6.679688, 47.159840 ], [ 6.855469, 47.159840 ], [ 6.855469, 47.398349 ] ] ], [ [ [ 6.855469, 47.398349 ], [ 6.679688, 47.398349 ], [ 6.679688, 47.517201 ], [ 6.855469, 47.517201 ], [ 6.855469, 47.398349 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 16.523438, 50.289339 ], [ 16.523438, 50.176898 ], [ 16.699219, 50.176898 ], [ 16.699219, 50.289339 ], [ 16.875000, 50.289339 ], [ 16.875000, 50.513427 ], [ 17.050781, 50.513427 ], [ 17.050781, 50.401515 ], [ 17.578125, 50.401515 ], [ 17.578125, 50.064192 ], [ 17.929688, 50.064192 ], [ 17.929688, 49.951220 ], [ 18.457031, 49.951220 ], [ 18.457031, 49.837982 ], [ 18.632812, 49.837982 ], [ 18.632812, 49.610710 ], [ 18.808594, 49.610710 ], [ 18.808594, 49.496675 ], [ 18.632812, 49.496675 ], [ 18.632812, 49.382373 ], [ 18.457031, 49.382373 ], [ 18.457031, 49.267805 ], [ 18.105469, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 49.037868 ], [ 17.929688, 48.806863 ], [ 17.050781, 48.806863 ], [ 17.050781, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 48.574790 ], [ 16.699219, 48.574790 ], [ 16.699219, 48.690960 ], [ 16.523438, 48.690960 ], [ 16.523438, 48.806863 ], [ 16.347656, 48.806863 ], [ 16.347656, 48.690960 ], [ 15.820312, 48.690960 ], [ 15.820312, 48.806863 ], [ 15.468750, 48.806863 ], [ 15.468750, 48.922499 ], [ 14.941406, 48.922499 ], [ 14.941406, 48.806863 ], [ 14.765625, 48.806863 ], [ 14.765625, 48.690960 ], [ 14.589844, 48.690960 ], [ 14.589844, 48.574790 ], [ 14.238281, 48.574790 ], [ 14.238281, 48.690960 ], [ 13.886719, 48.690960 ], [ 13.886719, 48.806863 ], [ 13.535156, 48.806863 ], [ 13.535156, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 49.037868 ], [ 13.183594, 49.037868 ], [ 13.183594, 49.152970 ], [ 13.007812, 49.152970 ], [ 13.007812, 49.267805 ], [ 12.832031, 49.267805 ], [ 12.832031, 49.382373 ], [ 12.480469, 49.382373 ], [ 12.480469, 50.064192 ], [ 12.304688, 50.064192 ], [ 12.304688, 50.289339 ], [ 12.656250, 50.289339 ], [ 12.656250, 50.401515 ], [ 13.007812, 50.401515 ], [ 13.007812, 50.513427 ], [ 13.183594, 50.513427 ], [ 13.183594, 50.625073 ], [ 13.359375, 50.625073 ], [ 13.359375, 50.736455 ], [ 13.710938, 50.736455 ], [ 13.710938, 50.847573 ], [ 14.062500, 50.847573 ], [ 14.062500, 50.958427 ], [ 15.117188, 50.958427 ], [ 15.117188, 50.847573 ], [ 15.292969, 50.847573 ], [ 15.292969, 50.736455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.117188, 50.958427 ], [ 15.117188, 50.847573 ], [ 15.292969, 50.847573 ], [ 15.292969, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 16.523438, 50.289339 ], [ 16.523438, 50.176898 ], [ 16.699219, 50.176898 ], [ 16.699219, 50.289339 ], [ 16.875000, 50.289339 ], [ 16.875000, 50.513427 ], [ 17.050781, 50.513427 ], [ 17.050781, 50.401515 ], [ 17.578125, 50.401515 ], [ 17.578125, 50.064192 ], [ 17.929688, 50.064192 ], [ 17.929688, 49.951220 ], [ 18.457031, 49.951220 ], [ 18.457031, 49.837982 ], [ 18.632812, 49.837982 ], [ 18.632812, 49.610710 ], [ 18.808594, 49.610710 ], [ 18.808594, 49.496675 ], [ 18.632812, 49.496675 ], [ 18.632812, 49.382373 ], [ 18.457031, 49.382373 ], [ 18.457031, 49.267805 ], [ 18.105469, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 49.037868 ], [ 17.929688, 48.806863 ], [ 17.050781, 48.806863 ], [ 17.050781, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 48.574790 ], [ 16.699219, 48.574790 ], [ 16.699219, 48.690960 ], [ 16.523438, 48.690960 ], [ 16.523438, 48.806863 ], [ 16.347656, 48.806863 ], [ 16.347656, 48.690960 ], [ 15.820312, 48.690960 ], [ 15.820312, 48.806863 ], [ 15.468750, 48.806863 ], [ 15.468750, 48.922499 ], [ 14.941406, 48.922499 ], [ 14.941406, 48.806863 ], [ 14.765625, 48.806863 ], [ 14.765625, 48.690960 ], [ 14.589844, 48.690960 ], [ 14.589844, 48.574790 ], [ 14.238281, 48.574790 ], [ 14.238281, 48.690960 ], [ 13.886719, 48.690960 ], [ 13.886719, 48.806863 ], [ 13.535156, 48.806863 ], [ 13.535156, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 49.037868 ], [ 13.183594, 49.037868 ], [ 13.183594, 49.152970 ], [ 13.007812, 49.152970 ], [ 13.007812, 49.267805 ], [ 12.832031, 49.267805 ], [ 12.832031, 49.382373 ], [ 12.480469, 49.382373 ], [ 12.480469, 50.064192 ], [ 12.304688, 50.064192 ], [ 12.304688, 50.289339 ], [ 12.656250, 50.289339 ], [ 12.656250, 50.401515 ], [ 13.007812, 50.401515 ], [ 13.007812, 50.513427 ], [ 13.183594, 50.513427 ], [ 13.183594, 50.625073 ], [ 13.359375, 50.625073 ], [ 13.359375, 50.736455 ], [ 13.710938, 50.736455 ], [ 13.710938, 50.847573 ], [ 14.062500, 50.847573 ], [ 14.062500, 50.958427 ], [ 15.117188, 50.958427 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 54.673831 ], [ 18.632812, 54.673831 ], [ 18.632812, 54.470038 ], [ 19.863281, 54.470038 ], [ 19.863281, 54.367759 ], [ 20.566406, 54.367759 ], [ 20.566406, 54.265224 ], [ 21.972656, 54.265224 ], [ 21.972656, 54.367759 ], [ 22.851562, 54.367759 ], [ 22.851562, 54.265224 ], [ 23.203125, 54.265224 ], [ 23.203125, 54.162434 ], [ 23.378906, 54.162434 ], [ 23.378906, 53.956086 ], [ 23.554688, 53.956086 ], [ 23.554688, 53.225768 ], [ 23.730469, 53.225768 ], [ 23.730469, 52.589701 ], [ 23.378906, 52.589701 ], [ 23.378906, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 52.375599 ], [ 23.378906, 52.375599 ], [ 23.378906, 52.160455 ], [ 23.554688, 52.160455 ], [ 23.554688, 51.399206 ], [ 23.730469, 51.399206 ], [ 23.730469, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.847573 ], [ 24.082031, 50.847573 ], [ 24.082031, 50.513427 ], [ 23.906250, 50.513427 ], [ 23.906250, 50.401515 ], [ 23.730469, 50.401515 ], [ 23.730469, 50.289339 ], [ 23.378906, 50.289339 ], [ 23.378906, 50.176898 ], [ 23.203125, 50.176898 ], [ 23.203125, 49.951220 ], [ 23.027344, 49.951220 ], [ 23.027344, 49.837982 ], [ 22.851562, 49.837982 ], [ 22.851562, 49.724479 ], [ 22.675781, 49.724479 ], [ 22.675781, 49.496675 ], [ 22.500000, 49.496675 ], [ 22.500000, 49.382373 ], [ 22.675781, 49.382373 ], [ 22.675781, 49.152970 ], [ 22.851562, 49.152970 ], [ 22.851562, 49.037868 ], [ 22.324219, 49.037868 ], [ 22.324219, 49.152970 ], [ 22.148438, 49.152970 ], [ 22.148438, 49.267805 ], [ 21.796875, 49.267805 ], [ 21.796875, 49.382373 ], [ 21.621094, 49.382373 ], [ 21.621094, 49.496675 ], [ 21.445312, 49.496675 ], [ 21.445312, 49.382373 ], [ 20.214844, 49.382373 ], [ 20.214844, 49.267805 ], [ 19.687500, 49.267805 ], [ 19.687500, 49.382373 ], [ 19.511719, 49.382373 ], [ 19.511719, 49.496675 ], [ 19.160156, 49.496675 ], [ 19.160156, 49.382373 ], [ 18.808594, 49.382373 ], [ 18.808594, 49.610710 ], [ 18.632812, 49.610710 ], [ 18.632812, 49.837982 ], [ 18.457031, 49.837982 ], [ 18.457031, 49.951220 ], [ 17.929688, 49.951220 ], [ 17.929688, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.401515 ], [ 17.050781, 50.401515 ], [ 17.050781, 50.513427 ], [ 16.875000, 50.513427 ], [ 16.875000, 50.289339 ], [ 16.699219, 50.289339 ], [ 16.699219, 50.176898 ], [ 16.523438, 50.176898 ], [ 16.523438, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 15.292969, 50.736455 ], [ 15.292969, 50.847573 ], [ 15.117188, 50.847573 ], [ 15.117188, 50.958427 ], [ 14.941406, 50.958427 ], [ 14.941406, 51.179343 ], [ 14.765625, 51.179343 ], [ 14.765625, 51.508742 ], [ 14.589844, 51.508742 ], [ 14.589844, 51.835778 ], [ 14.765625, 51.835778 ], [ 14.765625, 52.160455 ], [ 14.589844, 52.160455 ], [ 14.589844, 52.375599 ], [ 14.414062, 52.375599 ], [ 14.414062, 52.696361 ], [ 14.238281, 52.696361 ], [ 14.238281, 52.908902 ], [ 14.062500, 52.908902 ], [ 14.062500, 53.014783 ], [ 14.238281, 53.014783 ], [ 14.238281, 53.120405 ], [ 14.414062, 53.120405 ], [ 14.414062, 53.330873 ], [ 14.238281, 53.330873 ], [ 14.238281, 53.540307 ], [ 14.062500, 53.540307 ], [ 14.062500, 53.748711 ], [ 14.238281, 53.748711 ], [ 14.238281, 53.852527 ], [ 14.589844, 53.852527 ], [ 14.589844, 53.956086 ], [ 14.765625, 53.956086 ], [ 14.765625, 54.059388 ], [ 15.117188, 54.059388 ], [ 15.117188, 54.162434 ], [ 15.468750, 54.162434 ], [ 15.468750, 54.265224 ], [ 15.820312, 54.265224 ], [ 15.820312, 54.367759 ], [ 16.171875, 54.367759 ], [ 16.171875, 54.470038 ], [ 16.523438, 54.470038 ], [ 16.523438, 54.572062 ], [ 16.875000, 54.572062 ], [ 16.875000, 54.673831 ], [ 17.226562, 54.673831 ], [ 17.226562, 54.775346 ], [ 17.578125, 54.775346 ], [ 17.578125, 54.876607 ], [ 17.753906, 54.876607 ], [ 17.753906, 54.775346 ], [ 18.281250, 54.775346 ], [ 18.281250, 54.673831 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.753906, 54.876607 ], [ 17.753906, 54.775346 ], [ 18.281250, 54.775346 ], [ 18.281250, 54.673831 ], [ 18.632812, 54.673831 ], [ 18.632812, 54.470038 ], [ 19.863281, 54.470038 ], [ 19.863281, 54.367759 ], [ 20.566406, 54.367759 ], [ 20.566406, 54.265224 ], [ 21.972656, 54.265224 ], [ 21.972656, 54.367759 ], [ 22.851562, 54.367759 ], [ 22.851562, 54.265224 ], [ 23.203125, 54.265224 ], [ 23.203125, 54.162434 ], [ 23.378906, 54.162434 ], [ 23.378906, 53.956086 ], [ 23.554688, 53.956086 ], [ 23.554688, 53.225768 ], [ 23.730469, 53.225768 ], [ 23.730469, 52.589701 ], [ 23.378906, 52.589701 ], [ 23.378906, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 52.375599 ], [ 23.378906, 52.375599 ], [ 23.378906, 52.160455 ], [ 23.554688, 52.160455 ], [ 23.554688, 51.399206 ], [ 23.730469, 51.399206 ], [ 23.730469, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.847573 ], [ 24.082031, 50.847573 ], [ 24.082031, 50.513427 ], [ 23.906250, 50.513427 ], [ 23.906250, 50.401515 ], [ 23.730469, 50.401515 ], [ 23.730469, 50.289339 ], [ 23.378906, 50.289339 ], [ 23.378906, 50.176898 ], [ 23.203125, 50.176898 ], [ 23.203125, 49.951220 ], [ 23.027344, 49.951220 ], [ 23.027344, 49.837982 ], [ 22.851562, 49.837982 ], [ 22.851562, 49.724479 ], [ 22.675781, 49.724479 ], [ 22.675781, 49.496675 ], [ 22.500000, 49.496675 ], [ 22.500000, 49.382373 ], [ 22.675781, 49.382373 ], [ 22.675781, 49.152970 ], [ 22.851562, 49.152970 ], [ 22.851562, 49.037868 ], [ 22.324219, 49.037868 ], [ 22.324219, 49.152970 ], [ 22.148438, 49.152970 ], [ 22.148438, 49.267805 ], [ 21.796875, 49.267805 ], [ 21.796875, 49.382373 ], [ 21.621094, 49.382373 ], [ 21.621094, 49.496675 ], [ 21.445312, 49.496675 ], [ 21.445312, 49.382373 ], [ 20.214844, 49.382373 ], [ 20.214844, 49.267805 ], [ 19.687500, 49.267805 ], [ 19.687500, 49.382373 ], [ 19.511719, 49.382373 ], [ 19.511719, 49.496675 ], [ 19.160156, 49.496675 ], [ 19.160156, 49.382373 ], [ 18.808594, 49.382373 ], [ 18.808594, 49.610710 ], [ 18.632812, 49.610710 ], [ 18.632812, 49.837982 ], [ 18.457031, 49.837982 ], [ 18.457031, 49.951220 ], [ 17.929688, 49.951220 ], [ 17.929688, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.401515 ], [ 17.050781, 50.401515 ], [ 17.050781, 50.513427 ], [ 16.875000, 50.513427 ], [ 16.875000, 50.289339 ], [ 16.699219, 50.289339 ], [ 16.699219, 50.176898 ], [ 16.523438, 50.176898 ], [ 16.523438, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 15.292969, 50.736455 ], [ 15.292969, 50.847573 ], [ 15.117188, 50.847573 ], [ 15.117188, 50.958427 ], [ 14.941406, 50.958427 ], [ 14.941406, 51.179343 ], [ 14.765625, 51.179343 ], [ 14.765625, 51.508742 ], [ 14.589844, 51.508742 ], [ 14.589844, 51.835778 ], [ 14.765625, 51.835778 ], [ 14.765625, 52.160455 ], [ 14.589844, 52.160455 ], [ 14.589844, 52.375599 ], [ 14.414062, 52.375599 ], [ 14.414062, 52.696361 ], [ 14.238281, 52.696361 ], [ 14.238281, 52.908902 ], [ 14.062500, 52.908902 ], [ 14.062500, 53.014783 ], [ 14.238281, 53.014783 ], [ 14.238281, 53.120405 ], [ 14.414062, 53.120405 ], [ 14.414062, 53.330873 ], [ 14.238281, 53.330873 ], [ 14.238281, 53.540307 ], [ 14.062500, 53.540307 ], [ 14.062500, 53.748711 ], [ 14.238281, 53.748711 ], [ 14.238281, 53.852527 ], [ 14.589844, 53.852527 ], [ 14.589844, 53.956086 ], [ 14.765625, 53.956086 ], [ 14.765625, 54.059388 ], [ 15.117188, 54.059388 ], [ 15.117188, 54.162434 ], [ 15.468750, 54.162434 ], [ 15.468750, 54.265224 ], [ 15.820312, 54.265224 ], [ 15.820312, 54.367759 ], [ 16.171875, 54.367759 ], [ 16.171875, 54.470038 ], [ 16.523438, 54.470038 ], [ 16.523438, 54.572062 ], [ 16.875000, 54.572062 ], [ 16.875000, 54.673831 ], [ 17.226562, 54.673831 ], [ 17.226562, 54.775346 ], [ 17.578125, 54.775346 ], [ 17.578125, 54.876607 ], [ 17.753906, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 48.690960 ], [ 16.347656, 48.690960 ], [ 16.347656, 48.806863 ], [ 16.523438, 48.806863 ], [ 16.523438, 48.690960 ], [ 16.699219, 48.690960 ], [ 16.699219, 48.574790 ], [ 16.875000, 48.574790 ], [ 16.875000, 48.224673 ], [ 17.050781, 48.224673 ], [ 17.050781, 47.872144 ], [ 16.875000, 47.872144 ], [ 16.875000, 47.754098 ], [ 16.347656, 47.754098 ], [ 16.347656, 47.635784 ], [ 16.523438, 47.635784 ], [ 16.523438, 47.279229 ], [ 16.347656, 47.279229 ], [ 16.347656, 46.920255 ], [ 16.171875, 46.920255 ], [ 16.171875, 46.679594 ], [ 15.117188, 46.679594 ], [ 15.117188, 46.558860 ], [ 14.765625, 46.558860 ], [ 14.765625, 46.437857 ], [ 14.062500, 46.437857 ], [ 14.062500, 46.558860 ], [ 13.359375, 46.558860 ], [ 13.359375, 46.679594 ], [ 12.656250, 46.679594 ], [ 12.656250, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 46.920255 ], [ 12.128906, 46.920255 ], [ 12.128906, 47.159840 ], [ 11.953125, 47.159840 ], [ 11.953125, 47.040182 ], [ 11.601562, 47.040182 ], [ 11.601562, 46.920255 ], [ 11.250000, 46.920255 ], [ 11.250000, 46.800059 ], [ 10.546875, 46.800059 ], [ 10.546875, 46.920255 ], [ 9.843750, 46.920255 ], [ 9.843750, 47.040182 ], [ 9.492188, 47.040182 ], [ 9.492188, 47.279229 ], [ 9.667969, 47.279229 ], [ 9.667969, 47.517201 ], [ 10.019531, 47.517201 ], [ 10.019531, 47.398349 ], [ 10.195312, 47.398349 ], [ 10.195312, 47.279229 ], [ 10.371094, 47.279229 ], [ 10.371094, 47.398349 ], [ 10.546875, 47.398349 ], [ 10.546875, 47.517201 ], [ 11.777344, 47.517201 ], [ 11.777344, 47.635784 ], [ 12.128906, 47.635784 ], [ 12.128906, 47.754098 ], [ 12.304688, 47.754098 ], [ 12.304688, 47.635784 ], [ 12.656250, 47.635784 ], [ 12.656250, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 47.989922 ], [ 12.832031, 47.989922 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.341646 ], [ 13.183594, 48.574790 ], [ 13.359375, 48.574790 ], [ 13.359375, 48.806863 ], [ 13.886719, 48.806863 ], [ 13.886719, 48.690960 ], [ 14.238281, 48.690960 ], [ 14.238281, 48.574790 ], [ 14.589844, 48.574790 ], [ 14.589844, 48.690960 ], [ 14.765625, 48.690960 ], [ 14.765625, 48.806863 ], [ 14.941406, 48.806863 ], [ 14.941406, 48.922499 ], [ 15.468750, 48.922499 ], [ 15.468750, 48.806863 ], [ 15.820312, 48.806863 ], [ 15.820312, 48.690960 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 48.922499 ], [ 15.468750, 48.806863 ], [ 15.820312, 48.806863 ], [ 15.820312, 48.690960 ], [ 16.347656, 48.690960 ], [ 16.347656, 48.806863 ], [ 16.523438, 48.806863 ], [ 16.523438, 48.690960 ], [ 16.699219, 48.690960 ], [ 16.699219, 48.574790 ], [ 16.875000, 48.574790 ], [ 16.875000, 48.224673 ], [ 17.050781, 48.224673 ], [ 17.050781, 47.872144 ], [ 16.875000, 47.872144 ], [ 16.875000, 47.754098 ], [ 16.347656, 47.754098 ], [ 16.347656, 47.635784 ], [ 16.523438, 47.635784 ], [ 16.523438, 47.279229 ], [ 16.347656, 47.279229 ], [ 16.347656, 46.920255 ], [ 16.171875, 46.920255 ], [ 16.171875, 46.679594 ], [ 15.117188, 46.679594 ], [ 15.117188, 46.558860 ], [ 14.765625, 46.558860 ], [ 14.765625, 46.437857 ], [ 14.062500, 46.437857 ], [ 14.062500, 46.558860 ], [ 13.359375, 46.558860 ], [ 13.359375, 46.679594 ], [ 12.656250, 46.679594 ], [ 12.656250, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 46.920255 ], [ 12.128906, 46.920255 ], [ 12.128906, 47.159840 ], [ 11.953125, 47.159840 ], [ 11.953125, 47.040182 ], [ 11.601562, 47.040182 ], [ 11.601562, 46.920255 ], [ 11.250000, 46.920255 ], [ 11.250000, 46.800059 ], [ 10.546875, 46.800059 ], [ 10.546875, 46.920255 ], [ 9.843750, 46.920255 ], [ 9.843750, 47.040182 ], [ 9.492188, 47.040182 ], [ 9.492188, 47.279229 ], [ 9.667969, 47.279229 ], [ 9.667969, 47.517201 ], [ 10.019531, 47.517201 ], [ 10.019531, 47.398349 ], [ 10.195312, 47.398349 ], [ 10.195312, 47.279229 ], [ 10.371094, 47.279229 ], [ 10.371094, 47.398349 ], [ 10.546875, 47.398349 ], [ 10.546875, 47.517201 ], [ 11.777344, 47.517201 ], [ 11.777344, 47.635784 ], [ 12.128906, 47.635784 ], [ 12.128906, 47.754098 ], [ 12.304688, 47.754098 ], [ 12.304688, 47.635784 ], [ 12.656250, 47.635784 ], [ 12.656250, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 47.989922 ], [ 12.832031, 47.989922 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.341646 ], [ 13.183594, 48.574790 ], [ 13.359375, 48.574790 ], [ 13.359375, 48.806863 ], [ 13.886719, 48.806863 ], [ 13.886719, 48.690960 ], [ 14.238281, 48.690960 ], [ 14.238281, 48.574790 ], [ 14.589844, 48.574790 ], [ 14.589844, 48.690960 ], [ 14.765625, 48.690960 ], [ 14.765625, 48.806863 ], [ 14.941406, 48.806863 ], [ 14.941406, 48.922499 ], [ 15.468750, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.437857 ], [ 16.347656, 46.437857 ], [ 16.347656, 46.316584 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.195042 ], [ 15.820312, 46.195042 ], [ 15.820312, 45.951150 ], [ 15.644531, 45.951150 ], [ 15.644531, 45.706179 ], [ 15.292969, 45.706179 ], [ 15.292969, 45.460131 ], [ 13.886719, 45.460131 ], [ 13.886719, 45.828799 ], [ 13.710938, 45.828799 ], [ 13.710938, 46.316584 ], [ 13.886719, 46.316584 ], [ 13.886719, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.437857 ], [ 14.765625, 46.437857 ], [ 14.765625, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.679594 ], [ 16.171875, 46.679594 ], [ 16.171875, 46.800059 ], [ 16.347656, 46.800059 ], [ 16.347656, 46.679594 ], [ 16.523438, 46.679594 ], [ 16.523438, 46.437857 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.800059 ], [ 16.347656, 46.679594 ], [ 16.523438, 46.679594 ], [ 16.523438, 46.437857 ], [ 16.347656, 46.437857 ], [ 16.347656, 46.316584 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.195042 ], [ 15.820312, 46.195042 ], [ 15.820312, 45.951150 ], [ 15.644531, 45.951150 ], [ 15.644531, 45.706179 ], [ 15.292969, 45.706179 ], [ 15.292969, 45.460131 ], [ 13.886719, 45.460131 ], [ 13.886719, 45.828799 ], [ 13.710938, 45.828799 ], [ 13.710938, 46.316584 ], [ 13.886719, 46.316584 ], [ 13.886719, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.437857 ], [ 14.765625, 46.437857 ], [ 14.765625, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.679594 ], [ 16.171875, 46.679594 ], [ 16.171875, 46.800059 ], [ 16.347656, 46.800059 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.492188, 40.713956 ], [ 9.667969, 40.713956 ], [ 9.667969, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 40.313043 ], [ 8.437500, 40.313043 ], [ 8.437500, 40.446947 ], [ 8.261719, 40.446947 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.261719, 40.979898 ], [ 8.261719, 40.847060 ], [ 8.964844, 40.847060 ], [ 8.964844, 41.112469 ], [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.713956 ] ] ], [ [ [ 12.304688, 46.800059 ], [ 12.656250, 46.800059 ], [ 12.656250, 46.679594 ], [ 13.359375, 46.679594 ], [ 13.359375, 46.558860 ], [ 13.886719, 46.558860 ], [ 13.886719, 46.316584 ], [ 13.710938, 46.316584 ], [ 13.710938, 45.828799 ], [ 13.886719, 45.828799 ], [ 13.886719, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 45.706179 ], [ 13.183594, 45.706179 ], [ 13.183594, 45.583290 ], [ 12.832031, 45.583290 ], [ 12.832031, 45.460131 ], [ 12.480469, 45.460131 ], [ 12.480469, 45.336702 ], [ 12.304688, 45.336702 ], [ 12.304688, 44.465151 ], [ 12.480469, 44.465151 ], [ 12.480469, 44.213710 ], [ 12.656250, 44.213710 ], [ 12.656250, 43.961191 ], [ 12.832031, 43.961191 ], [ 12.832031, 43.834527 ], [ 13.183594, 43.834527 ], [ 13.183594, 43.707594 ], [ 13.359375, 43.707594 ], [ 13.359375, 43.580391 ], [ 13.535156, 43.580391 ], [ 13.535156, 43.452919 ], [ 13.710938, 43.452919 ], [ 13.710938, 43.197167 ], [ 13.886719, 43.197167 ], [ 13.886719, 42.940339 ], [ 14.062500, 42.940339 ], [ 14.062500, 42.682435 ], [ 14.238281, 42.682435 ], [ 14.238281, 42.553080 ], [ 14.414062, 42.553080 ], [ 14.414062, 42.423457 ], [ 14.589844, 42.423457 ], [ 14.589844, 42.163403 ], [ 14.765625, 42.163403 ], [ 14.765625, 42.032974 ], [ 14.941406, 42.032974 ], [ 14.941406, 41.902277 ], [ 15.996094, 41.902277 ], [ 15.996094, 41.771312 ], [ 16.171875, 41.771312 ], [ 16.171875, 41.640078 ], [ 15.996094, 41.640078 ], [ 15.996094, 41.376809 ], [ 16.347656, 41.376809 ], [ 16.347656, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.753906, 40.713956 ], [ 17.753906, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 17.050781, 40.313043 ], [ 17.050781, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 40.313043 ], [ 14.941406, 40.313043 ], [ 14.941406, 40.446947 ], [ 14.765625, 40.446947 ], [ 14.765625, 40.580585 ], [ 14.414062, 40.580585 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 41.112469 ], [ 13.710938, 41.112469 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.376809 ], [ 12.304688, 41.376809 ], [ 12.304688, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 11.953125, 41.640078 ], [ 11.953125, 41.771312 ], [ 11.777344, 41.771312 ], [ 11.777344, 41.902277 ], [ 11.601562, 41.902277 ], [ 11.601562, 42.032974 ], [ 11.425781, 42.032974 ], [ 11.425781, 42.163403 ], [ 11.250000, 42.163403 ], [ 11.250000, 42.293564 ], [ 11.074219, 42.293564 ], [ 11.074219, 42.423457 ], [ 10.898438, 42.423457 ], [ 10.898438, 42.682435 ], [ 10.722656, 42.682435 ], [ 10.722656, 42.811522 ], [ 10.546875, 42.811522 ], [ 10.546875, 43.197167 ], [ 10.371094, 43.197167 ], [ 10.371094, 43.707594 ], [ 10.195312, 43.707594 ], [ 10.195312, 43.961191 ], [ 9.843750, 43.961191 ], [ 9.843750, 44.087585 ], [ 9.316406, 44.087585 ], [ 9.316406, 44.213710 ], [ 8.964844, 44.213710 ], [ 8.964844, 44.339565 ], [ 8.789062, 44.339565 ], [ 8.789062, 44.213710 ], [ 8.437500, 44.213710 ], [ 8.437500, 44.087585 ], [ 8.261719, 44.087585 ], [ 8.261719, 43.961191 ], [ 8.085938, 43.961191 ], [ 8.085938, 43.707594 ], [ 7.382812, 43.707594 ], [ 7.382812, 43.834527 ], [ 7.558594, 43.834527 ], [ 7.558594, 44.087585 ], [ 7.207031, 44.087585 ], [ 7.207031, 44.213710 ], [ 7.031250, 44.213710 ], [ 7.031250, 44.339565 ], [ 6.855469, 44.339565 ], [ 6.855469, 44.840291 ], [ 6.679688, 44.840291 ], [ 6.679688, 45.089036 ], [ 6.855469, 45.089036 ], [ 6.855469, 45.213004 ], [ 7.031250, 45.213004 ], [ 7.031250, 45.460131 ], [ 6.855469, 45.460131 ], [ 6.855469, 45.828799 ], [ 7.910156, 45.828799 ], [ 7.910156, 45.951150 ], [ 8.085938, 45.951150 ], [ 8.085938, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.951150 ], [ 8.789062, 45.951150 ], [ 8.789062, 46.073231 ], [ 8.964844, 46.073231 ], [ 8.964844, 46.195042 ], [ 9.140625, 46.195042 ], [ 9.140625, 46.437857 ], [ 9.316406, 46.437857 ], [ 9.316406, 46.316584 ], [ 10.195312, 46.316584 ], [ 10.195312, 46.437857 ], [ 10.371094, 46.437857 ], [ 10.371094, 46.920255 ], [ 10.546875, 46.920255 ], [ 10.546875, 46.800059 ], [ 11.250000, 46.800059 ], [ 11.250000, 46.920255 ], [ 11.601562, 46.920255 ], [ 11.601562, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 47.159840 ], [ 12.128906, 47.159840 ], [ 12.128906, 46.920255 ], [ 12.304688, 46.920255 ], [ 12.304688, 46.800059 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.713956 ], [ 9.667969, 40.713956 ], [ 9.667969, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 40.313043 ], [ 8.437500, 40.313043 ], [ 8.437500, 40.446947 ], [ 8.261719, 40.446947 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.261719, 40.979898 ], [ 8.261719, 40.847060 ], [ 8.964844, 40.847060 ], [ 8.964844, 41.112469 ], [ 9.316406, 41.112469 ] ] ], [ [ [ 12.128906, 47.159840 ], [ 12.128906, 46.920255 ], [ 12.304688, 46.920255 ], [ 12.304688, 46.800059 ], [ 12.656250, 46.800059 ], [ 12.656250, 46.679594 ], [ 13.359375, 46.679594 ], [ 13.359375, 46.558860 ], [ 13.886719, 46.558860 ], [ 13.886719, 46.316584 ], [ 13.710938, 46.316584 ], [ 13.710938, 45.828799 ], [ 13.886719, 45.828799 ], [ 13.886719, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 45.706179 ], [ 13.183594, 45.706179 ], [ 13.183594, 45.583290 ], [ 12.832031, 45.583290 ], [ 12.832031, 45.460131 ], [ 12.480469, 45.460131 ], [ 12.480469, 45.336702 ], [ 12.304688, 45.336702 ], [ 12.304688, 44.465151 ], [ 12.480469, 44.465151 ], [ 12.480469, 44.213710 ], [ 12.656250, 44.213710 ], [ 12.656250, 43.961191 ], [ 12.832031, 43.961191 ], [ 12.832031, 43.834527 ], [ 13.183594, 43.834527 ], [ 13.183594, 43.707594 ], [ 13.359375, 43.707594 ], [ 13.359375, 43.580391 ], [ 13.535156, 43.580391 ], [ 13.535156, 43.452919 ], [ 13.710938, 43.452919 ], [ 13.710938, 43.197167 ], [ 13.886719, 43.197167 ], [ 13.886719, 42.940339 ], [ 14.062500, 42.940339 ], [ 14.062500, 42.682435 ], [ 14.238281, 42.682435 ], [ 14.238281, 42.553080 ], [ 14.414062, 42.553080 ], [ 14.414062, 42.423457 ], [ 14.589844, 42.423457 ], [ 14.589844, 42.163403 ], [ 14.765625, 42.163403 ], [ 14.765625, 42.032974 ], [ 14.941406, 42.032974 ], [ 14.941406, 41.902277 ], [ 15.996094, 41.902277 ], [ 15.996094, 41.771312 ], [ 16.171875, 41.771312 ], [ 16.171875, 41.640078 ], [ 15.996094, 41.640078 ], [ 15.996094, 41.376809 ], [ 16.347656, 41.376809 ], [ 16.347656, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.753906, 40.713956 ], [ 17.753906, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 17.050781, 40.313043 ], [ 17.050781, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 40.313043 ], [ 14.941406, 40.313043 ], [ 14.941406, 40.446947 ], [ 14.765625, 40.446947 ], [ 14.765625, 40.580585 ], [ 14.414062, 40.580585 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 41.112469 ], [ 13.710938, 41.112469 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.376809 ], [ 12.304688, 41.376809 ], [ 12.304688, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 11.953125, 41.640078 ], [ 11.953125, 41.771312 ], [ 11.777344, 41.771312 ], [ 11.777344, 41.902277 ], [ 11.601562, 41.902277 ], [ 11.601562, 42.032974 ], [ 11.425781, 42.032974 ], [ 11.425781, 42.163403 ], [ 11.250000, 42.163403 ], [ 11.250000, 42.293564 ], [ 11.074219, 42.293564 ], [ 11.074219, 42.423457 ], [ 10.898438, 42.423457 ], [ 10.898438, 42.682435 ], [ 10.722656, 42.682435 ], [ 10.722656, 42.811522 ], [ 10.546875, 42.811522 ], [ 10.546875, 43.197167 ], [ 10.371094, 43.197167 ], [ 10.371094, 43.707594 ], [ 10.195312, 43.707594 ], [ 10.195312, 43.961191 ], [ 9.843750, 43.961191 ], [ 9.843750, 44.087585 ], [ 9.316406, 44.087585 ], [ 9.316406, 44.213710 ], [ 8.964844, 44.213710 ], [ 8.964844, 44.339565 ], [ 8.789062, 44.339565 ], [ 8.789062, 44.213710 ], [ 8.437500, 44.213710 ], [ 8.437500, 44.087585 ], [ 8.261719, 44.087585 ], [ 8.261719, 43.961191 ], [ 8.085938, 43.961191 ], [ 8.085938, 43.707594 ], [ 7.382812, 43.707594 ], [ 7.382812, 43.834527 ], [ 7.558594, 43.834527 ], [ 7.558594, 44.087585 ], [ 7.207031, 44.087585 ], [ 7.207031, 44.213710 ], [ 7.031250, 44.213710 ], [ 7.031250, 44.339565 ], [ 6.855469, 44.339565 ], [ 6.855469, 44.840291 ], [ 6.679688, 44.840291 ], [ 6.679688, 45.089036 ], [ 6.855469, 45.089036 ], [ 6.855469, 45.213004 ], [ 7.031250, 45.213004 ], [ 7.031250, 45.460131 ], [ 6.855469, 45.460131 ], [ 6.855469, 45.828799 ], [ 7.910156, 45.828799 ], [ 7.910156, 45.951150 ], [ 8.085938, 45.951150 ], [ 8.085938, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.951150 ], [ 8.789062, 45.951150 ], [ 8.789062, 46.073231 ], [ 8.964844, 46.073231 ], [ 8.964844, 46.195042 ], [ 9.140625, 46.195042 ], [ 9.140625, 46.437857 ], [ 9.316406, 46.437857 ], [ 9.316406, 46.316584 ], [ 10.195312, 46.316584 ], [ 10.195312, 46.437857 ], [ 10.371094, 46.437857 ], [ 10.371094, 46.920255 ], [ 10.546875, 46.920255 ], [ 10.546875, 46.800059 ], [ 11.250000, 46.800059 ], [ 11.250000, 46.920255 ], [ 11.601562, 46.920255 ], [ 11.601562, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 47.159840 ], [ 12.128906, 47.159840 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.050781, 46.195042 ], [ 17.226562, 46.195042 ], [ 17.226562, 46.073231 ], [ 17.402344, 46.073231 ], [ 17.402344, 45.951150 ], [ 17.753906, 45.951150 ], [ 17.753906, 45.828799 ], [ 18.105469, 45.828799 ], [ 18.105469, 45.706179 ], [ 18.632812, 45.706179 ], [ 18.632812, 45.828799 ], [ 18.984375, 45.828799 ], [ 18.984375, 45.583290 ], [ 19.160156, 45.583290 ], [ 19.160156, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.089036 ], [ 19.160156, 45.089036 ], [ 19.160156, 44.840291 ], [ 18.808594, 44.840291 ], [ 18.808594, 44.964798 ], [ 18.632812, 44.964798 ], [ 18.632812, 45.089036 ], [ 17.402344, 45.089036 ], [ 17.402344, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.523438, 45.089036 ], [ 16.347656, 45.089036 ], [ 16.347656, 44.964798 ], [ 16.171875, 44.964798 ], [ 16.171875, 45.089036 ], [ 15.996094, 45.089036 ], [ 15.996094, 44.964798 ], [ 15.820312, 44.964798 ], [ 15.820312, 44.715514 ], [ 15.996094, 44.715514 ], [ 15.996094, 44.465151 ], [ 16.171875, 44.465151 ], [ 16.171875, 44.213710 ], [ 16.347656, 44.213710 ], [ 16.347656, 44.087585 ], [ 16.523438, 44.087585 ], [ 16.523438, 43.961191 ], [ 16.699219, 43.961191 ], [ 16.699219, 43.707594 ], [ 16.875000, 43.707594 ], [ 16.875000, 43.580391 ], [ 17.050781, 43.580391 ], [ 17.050781, 43.452919 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.325178 ], [ 17.402344, 43.325178 ], [ 17.402344, 43.197167 ], [ 17.578125, 43.197167 ], [ 17.578125, 43.068888 ], [ 17.753906, 43.068888 ], [ 17.753906, 42.940339 ], [ 18.105469, 42.940339 ], [ 18.105469, 42.811522 ], [ 18.457031, 42.811522 ], [ 18.457031, 42.682435 ], [ 18.632812, 42.682435 ], [ 18.632812, 42.553080 ], [ 18.457031, 42.553080 ], [ 18.457031, 42.423457 ], [ 18.281250, 42.423457 ], [ 18.281250, 42.553080 ], [ 17.929688, 42.553080 ], [ 17.929688, 42.682435 ], [ 17.578125, 42.682435 ], [ 17.578125, 42.811522 ], [ 17.402344, 42.811522 ], [ 17.402344, 42.940339 ], [ 17.050781, 42.940339 ], [ 17.050781, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 43.197167 ], [ 16.523438, 43.197167 ], [ 16.523438, 43.325178 ], [ 16.171875, 43.325178 ], [ 16.171875, 43.452919 ], [ 15.820312, 43.452919 ], [ 15.820312, 43.580391 ], [ 15.644531, 43.580391 ], [ 15.644531, 43.834527 ], [ 15.468750, 43.834527 ], [ 15.468750, 43.961191 ], [ 15.292969, 43.961191 ], [ 15.292969, 44.087585 ], [ 15.117188, 44.087585 ], [ 15.117188, 44.213710 ], [ 15.292969, 44.213710 ], [ 15.292969, 44.339565 ], [ 15.117188, 44.339565 ], [ 15.117188, 44.590467 ], [ 14.941406, 44.590467 ], [ 14.941406, 45.089036 ], [ 14.414062, 45.089036 ], [ 14.414062, 45.213004 ], [ 14.238281, 45.213004 ], [ 14.238281, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.840291 ], [ 13.886719, 44.840291 ], [ 13.886719, 44.964798 ], [ 13.710938, 44.964798 ], [ 13.710938, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.706179 ], [ 15.644531, 45.706179 ], [ 15.644531, 45.951150 ], [ 15.820312, 45.951150 ], [ 15.820312, 46.195042 ], [ 15.996094, 46.195042 ], [ 15.996094, 46.316584 ], [ 16.347656, 46.316584 ], [ 16.347656, 46.437857 ], [ 16.875000, 46.437857 ], [ 16.875000, 46.316584 ], [ 17.050781, 46.316584 ], [ 17.050781, 46.195042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.437857 ], [ 16.875000, 46.316584 ], [ 17.050781, 46.316584 ], [ 17.050781, 46.195042 ], [ 17.226562, 46.195042 ], [ 17.226562, 46.073231 ], [ 17.402344, 46.073231 ], [ 17.402344, 45.951150 ], [ 17.753906, 45.951150 ], [ 17.753906, 45.828799 ], [ 18.105469, 45.828799 ], [ 18.105469, 45.706179 ], [ 18.632812, 45.706179 ], [ 18.632812, 45.828799 ], [ 18.984375, 45.828799 ], [ 18.984375, 45.583290 ], [ 19.160156, 45.583290 ], [ 19.160156, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.089036 ], [ 19.160156, 45.089036 ], [ 19.160156, 44.840291 ], [ 18.808594, 44.840291 ], [ 18.808594, 44.964798 ], [ 18.632812, 44.964798 ], [ 18.632812, 45.089036 ], [ 17.402344, 45.089036 ], [ 17.402344, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.523438, 45.089036 ], [ 16.347656, 45.089036 ], [ 16.347656, 44.964798 ], [ 16.171875, 44.964798 ], [ 16.171875, 45.089036 ], [ 15.996094, 45.089036 ], [ 15.996094, 44.964798 ], [ 15.820312, 44.964798 ], [ 15.820312, 44.715514 ], [ 15.996094, 44.715514 ], [ 15.996094, 44.465151 ], [ 16.171875, 44.465151 ], [ 16.171875, 44.213710 ], [ 16.347656, 44.213710 ], [ 16.347656, 44.087585 ], [ 16.523438, 44.087585 ], [ 16.523438, 43.961191 ], [ 16.699219, 43.961191 ], [ 16.699219, 43.707594 ], [ 16.875000, 43.707594 ], [ 16.875000, 43.580391 ], [ 17.050781, 43.580391 ], [ 17.050781, 43.452919 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.325178 ], [ 17.402344, 43.325178 ], [ 17.402344, 43.197167 ], [ 17.578125, 43.197167 ], [ 17.578125, 43.068888 ], [ 17.753906, 43.068888 ], [ 17.753906, 42.940339 ], [ 18.105469, 42.940339 ], [ 18.105469, 42.811522 ], [ 18.457031, 42.811522 ], [ 18.457031, 42.682435 ], [ 18.632812, 42.682435 ], [ 18.632812, 42.553080 ], [ 18.457031, 42.553080 ], [ 18.457031, 42.423457 ], [ 18.281250, 42.423457 ], [ 18.281250, 42.553080 ], [ 17.929688, 42.553080 ], [ 17.929688, 42.682435 ], [ 17.578125, 42.682435 ], [ 17.578125, 42.811522 ], [ 17.402344, 42.811522 ], [ 17.402344, 42.940339 ], [ 17.050781, 42.940339 ], [ 17.050781, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 43.197167 ], [ 16.523438, 43.197167 ], [ 16.523438, 43.325178 ], [ 16.171875, 43.325178 ], [ 16.171875, 43.452919 ], [ 15.820312, 43.452919 ], [ 15.820312, 43.580391 ], [ 15.644531, 43.580391 ], [ 15.644531, 43.834527 ], [ 15.468750, 43.834527 ], [ 15.468750, 43.961191 ], [ 15.292969, 43.961191 ], [ 15.292969, 44.087585 ], [ 15.117188, 44.087585 ], [ 15.117188, 44.213710 ], [ 15.292969, 44.213710 ], [ 15.292969, 44.339565 ], [ 15.117188, 44.339565 ], [ 15.117188, 44.590467 ], [ 14.941406, 44.590467 ], [ 14.941406, 45.089036 ], [ 14.414062, 45.089036 ], [ 14.414062, 45.213004 ], [ 14.238281, 45.213004 ], [ 14.238281, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.840291 ], [ 13.886719, 44.840291 ], [ 13.886719, 44.964798 ], [ 13.710938, 44.964798 ], [ 13.710938, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.706179 ], [ 15.644531, 45.706179 ], [ 15.644531, 45.951150 ], [ 15.820312, 45.951150 ], [ 15.820312, 46.195042 ], [ 15.996094, 46.195042 ], [ 15.996094, 46.316584 ], [ 16.347656, 46.316584 ], [ 16.347656, 46.437857 ], [ 16.875000, 46.437857 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.445312, 48.341646 ], [ 22.324219, 48.341646 ], [ 22.324219, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 48.107431 ], [ 22.675781, 48.107431 ], [ 22.675781, 47.754098 ], [ 22.324219, 47.754098 ], [ 22.324219, 47.635784 ], [ 22.148438, 47.635784 ], [ 22.148438, 47.517201 ], [ 21.972656, 47.517201 ], [ 21.972656, 47.279229 ], [ 21.796875, 47.279229 ], [ 21.796875, 47.040182 ], [ 21.621094, 47.040182 ], [ 21.621094, 46.920255 ], [ 21.445312, 46.920255 ], [ 21.445312, 46.679594 ], [ 21.269531, 46.679594 ], [ 21.269531, 46.437857 ], [ 21.093750, 46.437857 ], [ 21.093750, 46.316584 ], [ 20.917969, 46.316584 ], [ 20.917969, 46.195042 ], [ 20.566406, 46.195042 ], [ 20.566406, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 46.195042 ], [ 19.511719, 46.195042 ], [ 19.511719, 46.073231 ], [ 19.160156, 46.073231 ], [ 19.160156, 45.951150 ], [ 18.808594, 45.951150 ], [ 18.808594, 45.828799 ], [ 18.632812, 45.828799 ], [ 18.632812, 45.706179 ], [ 18.105469, 45.706179 ], [ 18.105469, 45.828799 ], [ 17.753906, 45.828799 ], [ 17.753906, 45.951150 ], [ 17.402344, 45.951150 ], [ 17.402344, 46.073231 ], [ 17.226562, 46.073231 ], [ 17.226562, 46.195042 ], [ 17.050781, 46.195042 ], [ 17.050781, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.437857 ], [ 16.523438, 46.437857 ], [ 16.523438, 46.679594 ], [ 16.347656, 46.679594 ], [ 16.347656, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 46.920255 ], [ 16.347656, 46.920255 ], [ 16.347656, 47.279229 ], [ 16.523438, 47.279229 ], [ 16.523438, 47.635784 ], [ 16.347656, 47.635784 ], [ 16.347656, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 47.872144 ], [ 17.050781, 47.872144 ], [ 17.050781, 47.989922 ], [ 17.226562, 47.989922 ], [ 17.226562, 47.872144 ], [ 17.578125, 47.872144 ], [ 17.578125, 47.754098 ], [ 18.457031, 47.754098 ], [ 18.457031, 47.872144 ], [ 18.632812, 47.872144 ], [ 18.632812, 47.989922 ], [ 18.808594, 47.989922 ], [ 18.808594, 48.107431 ], [ 19.511719, 48.107431 ], [ 19.511719, 48.224673 ], [ 20.039062, 48.224673 ], [ 20.039062, 48.341646 ], [ 20.214844, 48.341646 ], [ 20.214844, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.574790 ], [ 20.917969, 48.574790 ], [ 20.917969, 48.458352 ], [ 21.445312, 48.458352 ], [ 21.445312, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.917969, 48.574790 ], [ 20.917969, 48.458352 ], [ 21.445312, 48.458352 ], [ 21.445312, 48.341646 ], [ 22.324219, 48.341646 ], [ 22.324219, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 48.107431 ], [ 22.675781, 48.107431 ], [ 22.675781, 47.754098 ], [ 22.324219, 47.754098 ], [ 22.324219, 47.635784 ], [ 22.148438, 47.635784 ], [ 22.148438, 47.517201 ], [ 21.972656, 47.517201 ], [ 21.972656, 47.279229 ], [ 21.796875, 47.279229 ], [ 21.796875, 47.040182 ], [ 21.621094, 47.040182 ], [ 21.621094, 46.920255 ], [ 21.445312, 46.920255 ], [ 21.445312, 46.679594 ], [ 21.269531, 46.679594 ], [ 21.269531, 46.437857 ], [ 21.093750, 46.437857 ], [ 21.093750, 46.316584 ], [ 20.917969, 46.316584 ], [ 20.917969, 46.195042 ], [ 20.566406, 46.195042 ], [ 20.566406, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 46.195042 ], [ 19.511719, 46.195042 ], [ 19.511719, 46.073231 ], [ 19.160156, 46.073231 ], [ 19.160156, 45.951150 ], [ 18.808594, 45.951150 ], [ 18.808594, 45.828799 ], [ 18.632812, 45.828799 ], [ 18.632812, 45.706179 ], [ 18.105469, 45.706179 ], [ 18.105469, 45.828799 ], [ 17.753906, 45.828799 ], [ 17.753906, 45.951150 ], [ 17.402344, 45.951150 ], [ 17.402344, 46.073231 ], [ 17.226562, 46.073231 ], [ 17.226562, 46.195042 ], [ 17.050781, 46.195042 ], [ 17.050781, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.437857 ], [ 16.523438, 46.437857 ], [ 16.523438, 46.679594 ], [ 16.347656, 46.679594 ], [ 16.347656, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 46.920255 ], [ 16.347656, 46.920255 ], [ 16.347656, 47.279229 ], [ 16.523438, 47.279229 ], [ 16.523438, 47.635784 ], [ 16.347656, 47.635784 ], [ 16.347656, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 47.872144 ], [ 17.050781, 47.872144 ], [ 17.050781, 47.989922 ], [ 17.226562, 47.989922 ], [ 17.226562, 47.872144 ], [ 17.578125, 47.872144 ], [ 17.578125, 47.754098 ], [ 18.457031, 47.754098 ], [ 18.457031, 47.872144 ], [ 18.632812, 47.872144 ], [ 18.632812, 47.989922 ], [ 18.808594, 47.989922 ], [ 18.808594, 48.107431 ], [ 19.511719, 48.107431 ], [ 19.511719, 48.224673 ], [ 20.039062, 48.224673 ], [ 20.039062, 48.341646 ], [ 20.214844, 48.341646 ], [ 20.214844, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.574790 ], [ 20.917969, 48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 49.267805 ], [ 20.214844, 49.267805 ], [ 20.214844, 49.382373 ], [ 21.445312, 49.382373 ], [ 21.445312, 49.496675 ], [ 21.621094, 49.496675 ], [ 21.621094, 49.382373 ], [ 21.796875, 49.382373 ], [ 21.796875, 49.267805 ], [ 22.148438, 49.267805 ], [ 22.148438, 49.152970 ], [ 22.324219, 49.152970 ], [ 22.324219, 49.037868 ], [ 22.500000, 49.037868 ], [ 22.500000, 48.922499 ], [ 22.324219, 48.922499 ], [ 22.324219, 48.574790 ], [ 22.148438, 48.574790 ], [ 22.148438, 48.341646 ], [ 21.445312, 48.341646 ], [ 21.445312, 48.458352 ], [ 20.917969, 48.458352 ], [ 20.917969, 48.574790 ], [ 20.390625, 48.574790 ], [ 20.390625, 48.458352 ], [ 20.214844, 48.458352 ], [ 20.214844, 48.341646 ], [ 20.039062, 48.341646 ], [ 20.039062, 48.224673 ], [ 19.511719, 48.224673 ], [ 19.511719, 48.107431 ], [ 18.808594, 48.107431 ], [ 18.808594, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 47.872144 ], [ 18.457031, 47.872144 ], [ 18.457031, 47.754098 ], [ 17.578125, 47.754098 ], [ 17.578125, 47.872144 ], [ 17.226562, 47.872144 ], [ 17.226562, 47.989922 ], [ 17.050781, 47.989922 ], [ 17.050781, 48.224673 ], [ 16.875000, 48.224673 ], [ 16.875000, 48.690960 ], [ 17.050781, 48.690960 ], [ 17.050781, 48.806863 ], [ 17.929688, 48.806863 ], [ 17.929688, 49.037868 ], [ 18.105469, 49.037868 ], [ 18.105469, 49.267805 ], [ 18.457031, 49.267805 ], [ 18.457031, 49.382373 ], [ 18.632812, 49.382373 ], [ 18.632812, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.808594, 49.382373 ], [ 19.160156, 49.382373 ], [ 19.160156, 49.496675 ], [ 19.511719, 49.496675 ], [ 19.511719, 49.382373 ], [ 19.687500, 49.382373 ], [ 19.687500, 49.267805 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 49.496675 ], [ 21.621094, 49.382373 ], [ 21.796875, 49.382373 ], [ 21.796875, 49.267805 ], [ 22.148438, 49.267805 ], [ 22.148438, 49.152970 ], [ 22.324219, 49.152970 ], [ 22.324219, 49.037868 ], [ 22.500000, 49.037868 ], [ 22.500000, 48.922499 ], [ 22.324219, 48.922499 ], [ 22.324219, 48.574790 ], [ 22.148438, 48.574790 ], [ 22.148438, 48.341646 ], [ 21.445312, 48.341646 ], [ 21.445312, 48.458352 ], [ 20.917969, 48.458352 ], [ 20.917969, 48.574790 ], [ 20.390625, 48.574790 ], [ 20.390625, 48.458352 ], [ 20.214844, 48.458352 ], [ 20.214844, 48.341646 ], [ 20.039062, 48.341646 ], [ 20.039062, 48.224673 ], [ 19.511719, 48.224673 ], [ 19.511719, 48.107431 ], [ 18.808594, 48.107431 ], [ 18.808594, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 47.872144 ], [ 18.457031, 47.872144 ], [ 18.457031, 47.754098 ], [ 17.578125, 47.754098 ], [ 17.578125, 47.872144 ], [ 17.226562, 47.872144 ], [ 17.226562, 47.989922 ], [ 17.050781, 47.989922 ], [ 17.050781, 48.224673 ], [ 16.875000, 48.224673 ], [ 16.875000, 48.690960 ], [ 17.050781, 48.690960 ], [ 17.050781, 48.806863 ], [ 17.929688, 48.806863 ], [ 17.929688, 49.037868 ], [ 18.105469, 49.037868 ], [ 18.105469, 49.267805 ], [ 18.457031, 49.267805 ], [ 18.457031, 49.382373 ], [ 18.632812, 49.382373 ], [ 18.632812, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.808594, 49.382373 ], [ 19.160156, 49.382373 ], [ 19.160156, 49.496675 ], [ 19.511719, 49.496675 ], [ 19.511719, 49.382373 ], [ 19.687500, 49.382373 ], [ 19.687500, 49.267805 ], [ 20.214844, 49.267805 ], [ 20.214844, 49.382373 ], [ 21.445312, 49.382373 ], [ 21.445312, 49.496675 ], [ 21.621094, 49.496675 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.632812, 44.964798 ], [ 18.808594, 44.964798 ], [ 18.808594, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 44.590467 ], [ 19.160156, 44.590467 ], [ 19.160156, 44.339565 ], [ 19.335938, 44.339565 ], [ 19.335938, 44.213710 ], [ 19.511719, 44.213710 ], [ 19.511719, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.834527 ], [ 19.511719, 43.834527 ], [ 19.511719, 43.580391 ], [ 19.160156, 43.580391 ], [ 19.160156, 43.452919 ], [ 18.984375, 43.452919 ], [ 18.984375, 43.325178 ], [ 18.808594, 43.325178 ], [ 18.808594, 43.197167 ], [ 18.632812, 43.197167 ], [ 18.632812, 42.682435 ], [ 18.457031, 42.682435 ], [ 18.457031, 42.811522 ], [ 18.105469, 42.811522 ], [ 18.105469, 42.940339 ], [ 17.753906, 42.940339 ], [ 17.753906, 43.068888 ], [ 17.578125, 43.068888 ], [ 17.578125, 43.197167 ], [ 17.402344, 43.197167 ], [ 17.402344, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.452919 ], [ 17.050781, 43.452919 ], [ 17.050781, 43.580391 ], [ 16.875000, 43.580391 ], [ 16.875000, 43.707594 ], [ 16.699219, 43.707594 ], [ 16.699219, 43.961191 ], [ 16.523438, 43.961191 ], [ 16.523438, 44.087585 ], [ 16.347656, 44.087585 ], [ 16.347656, 44.213710 ], [ 16.171875, 44.213710 ], [ 16.171875, 44.465151 ], [ 15.996094, 44.465151 ], [ 15.996094, 44.715514 ], [ 15.820312, 44.715514 ], [ 15.820312, 44.964798 ], [ 15.996094, 44.964798 ], [ 15.996094, 45.089036 ], [ 16.171875, 45.089036 ], [ 16.171875, 44.964798 ], [ 16.347656, 44.964798 ], [ 16.347656, 45.089036 ], [ 16.523438, 45.089036 ], [ 16.523438, 45.213004 ], [ 17.402344, 45.213004 ], [ 17.402344, 45.089036 ], [ 18.632812, 45.089036 ], [ 18.632812, 44.964798 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.402344, 45.213004 ], [ 17.402344, 45.089036 ], [ 18.632812, 45.089036 ], [ 18.632812, 44.964798 ], [ 18.808594, 44.964798 ], [ 18.808594, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 44.590467 ], [ 19.160156, 44.590467 ], [ 19.160156, 44.339565 ], [ 19.335938, 44.339565 ], [ 19.335938, 44.213710 ], [ 19.511719, 44.213710 ], [ 19.511719, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.834527 ], [ 19.511719, 43.834527 ], [ 19.511719, 43.580391 ], [ 19.160156, 43.580391 ], [ 19.160156, 43.452919 ], [ 18.984375, 43.452919 ], [ 18.984375, 43.325178 ], [ 18.808594, 43.325178 ], [ 18.808594, 43.197167 ], [ 18.632812, 43.197167 ], [ 18.632812, 42.682435 ], [ 18.457031, 42.682435 ], [ 18.457031, 42.811522 ], [ 18.105469, 42.811522 ], [ 18.105469, 42.940339 ], [ 17.753906, 42.940339 ], [ 17.753906, 43.068888 ], [ 17.578125, 43.068888 ], [ 17.578125, 43.197167 ], [ 17.402344, 43.197167 ], [ 17.402344, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.452919 ], [ 17.050781, 43.452919 ], [ 17.050781, 43.580391 ], [ 16.875000, 43.580391 ], [ 16.875000, 43.707594 ], [ 16.699219, 43.707594 ], [ 16.699219, 43.961191 ], [ 16.523438, 43.961191 ], [ 16.523438, 44.087585 ], [ 16.347656, 44.087585 ], [ 16.347656, 44.213710 ], [ 16.171875, 44.213710 ], [ 16.171875, 44.465151 ], [ 15.996094, 44.465151 ], [ 15.996094, 44.715514 ], [ 15.820312, 44.715514 ], [ 15.820312, 44.964798 ], [ 15.996094, 44.964798 ], [ 15.996094, 45.089036 ], [ 16.171875, 45.089036 ], [ 16.171875, 44.964798 ], [ 16.347656, 44.964798 ], [ 16.347656, 45.089036 ], [ 16.523438, 45.089036 ], [ 16.523438, 45.213004 ], [ 17.402344, 45.213004 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 43.197167 ], [ 19.687500, 43.197167 ], [ 19.687500, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.940339 ], [ 20.390625, 42.940339 ], [ 20.390625, 42.811522 ], [ 20.214844, 42.811522 ], [ 20.214844, 42.682435 ], [ 20.039062, 42.682435 ], [ 20.039062, 42.553080 ], [ 19.511719, 42.553080 ], [ 19.511719, 42.293564 ], [ 19.335938, 42.293564 ], [ 19.335938, 41.902277 ], [ 18.984375, 41.902277 ], [ 18.984375, 42.163403 ], [ 18.808594, 42.163403 ], [ 18.808594, 42.293564 ], [ 18.457031, 42.293564 ], [ 18.457031, 42.553080 ], [ 18.632812, 42.553080 ], [ 18.632812, 43.197167 ], [ 18.808594, 43.197167 ], [ 18.808594, 43.325178 ], [ 18.984375, 43.325178 ], [ 18.984375, 43.452919 ], [ 19.335938, 43.452919 ], [ 19.335938, 43.325178 ], [ 19.511719, 43.325178 ], [ 19.511719, 43.197167 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.335938, 43.452919 ], [ 19.335938, 43.325178 ], [ 19.511719, 43.325178 ], [ 19.511719, 43.197167 ], [ 19.687500, 43.197167 ], [ 19.687500, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.940339 ], [ 20.390625, 42.940339 ], [ 20.390625, 42.811522 ], [ 20.214844, 42.811522 ], [ 20.214844, 42.682435 ], [ 20.039062, 42.553080 ], [ 19.511719, 42.553080 ], [ 19.511719, 42.293564 ], [ 19.335938, 42.293564 ], [ 19.335938, 41.902277 ], [ 18.984375, 41.902277 ], [ 18.984375, 42.163403 ], [ 18.808594, 42.163403 ], [ 18.808594, 42.293564 ], [ 18.457031, 42.293564 ], [ 18.457031, 42.553080 ], [ 18.632812, 42.553080 ], [ 18.632812, 43.197167 ], [ 18.808594, 43.197167 ], [ 18.808594, 43.325178 ], [ 18.984375, 43.325178 ], [ 18.984375, 43.452919 ], [ 19.335938, 43.452919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 45.951150 ], [ 20.390625, 45.951150 ], [ 20.390625, 45.828799 ], [ 20.566406, 45.828799 ], [ 20.566406, 45.706179 ], [ 20.742188, 45.706179 ], [ 20.742188, 45.583290 ], [ 20.917969, 45.583290 ], [ 20.917969, 45.336702 ], [ 21.269531, 45.336702 ], [ 21.269531, 45.213004 ], [ 21.445312, 45.213004 ], [ 21.445312, 44.964798 ], [ 21.621094, 44.964798 ], [ 21.621094, 44.590467 ], [ 21.972656, 44.590467 ], [ 21.972656, 44.465151 ], [ 22.324219, 44.465151 ], [ 22.324219, 44.590467 ], [ 22.675781, 44.590467 ], [ 22.675781, 44.465151 ], [ 22.500000, 44.465151 ], [ 22.500000, 44.339565 ], [ 22.675781, 44.339565 ], [ 22.675781, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 43.961191 ], [ 22.324219, 43.961191 ], [ 22.324219, 43.707594 ], [ 22.500000, 43.707594 ], [ 22.500000, 43.452919 ], [ 22.675781, 43.452919 ], [ 22.675781, 43.325178 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.197167 ], [ 23.027344, 43.197167 ], [ 23.027344, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 42.940339 ], [ 22.675781, 42.940339 ], [ 22.675781, 42.682435 ], [ 22.500000, 42.682435 ], [ 22.500000, 42.293564 ], [ 21.621094, 42.293564 ], [ 21.621094, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.682435 ], [ 21.445312, 42.682435 ], [ 21.445312, 42.811522 ], [ 21.269531, 42.811522 ], [ 21.269531, 42.940339 ], [ 21.093750, 42.940339 ], [ 21.093750, 43.068888 ], [ 20.917969, 43.068888 ], [ 20.917969, 43.197167 ], [ 20.566406, 43.197167 ], [ 20.566406, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 42.940339 ], [ 20.039062, 42.940339 ], [ 20.039062, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.197167 ], [ 19.511719, 43.197167 ], [ 19.511719, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 43.452919 ], [ 19.160156, 43.452919 ], [ 19.160156, 43.580391 ], [ 19.511719, 43.580391 ], [ 19.511719, 43.834527 ], [ 19.687500, 43.834527 ], [ 19.687500, 44.087585 ], [ 19.511719, 44.087585 ], [ 19.511719, 44.213710 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.339565 ], [ 19.160156, 44.339565 ], [ 19.160156, 44.590467 ], [ 19.335938, 44.590467 ], [ 19.335938, 44.840291 ], [ 19.160156, 44.840291 ], [ 19.160156, 45.089036 ], [ 19.335938, 45.089036 ], [ 19.335938, 45.336702 ], [ 19.160156, 45.336702 ], [ 19.160156, 45.583290 ], [ 18.984375, 45.583290 ], [ 18.984375, 45.828799 ], [ 18.808594, 45.828799 ], [ 18.808594, 45.951150 ], [ 19.160156, 45.951150 ], [ 19.160156, 46.073231 ], [ 19.511719, 46.073231 ], [ 19.511719, 46.195042 ], [ 19.687500, 46.195042 ], [ 19.687500, 46.073231 ], [ 20.214844, 46.073231 ], [ 20.214844, 45.951150 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 46.195042 ], [ 19.687500, 46.073231 ], [ 20.214844, 46.073231 ], [ 20.214844, 45.951150 ], [ 20.390625, 45.951150 ], [ 20.390625, 45.828799 ], [ 20.566406, 45.828799 ], [ 20.566406, 45.706179 ], [ 20.742188, 45.706179 ], [ 20.742188, 45.583290 ], [ 20.917969, 45.583290 ], [ 20.917969, 45.336702 ], [ 21.269531, 45.336702 ], [ 21.269531, 45.213004 ], [ 21.445312, 45.213004 ], [ 21.445312, 44.964798 ], [ 21.621094, 44.964798 ], [ 21.621094, 44.590467 ], [ 21.972656, 44.590467 ], [ 21.972656, 44.465151 ], [ 22.324219, 44.465151 ], [ 22.324219, 44.590467 ], [ 22.675781, 44.590467 ], [ 22.675781, 44.465151 ], [ 22.500000, 44.465151 ], [ 22.500000, 44.339565 ], [ 22.675781, 44.339565 ], [ 22.675781, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 43.961191 ], [ 22.324219, 43.961191 ], [ 22.324219, 43.707594 ], [ 22.500000, 43.707594 ], [ 22.500000, 43.452919 ], [ 22.675781, 43.452919 ], [ 22.675781, 43.325178 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.197167 ], [ 23.027344, 43.197167 ], [ 23.027344, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 42.940339 ], [ 22.675781, 42.940339 ], [ 22.675781, 42.682435 ], [ 22.500000, 42.682435 ], [ 22.500000, 42.293564 ], [ 21.621094, 42.293564 ], [ 21.621094, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.682435 ], [ 21.445312, 42.682435 ], [ 21.445312, 42.811522 ], [ 21.269531, 42.811522 ], [ 21.269531, 42.940339 ], [ 21.093750, 42.940339 ], [ 21.093750, 43.068888 ], [ 20.917969, 43.068888 ], [ 20.917969, 43.197167 ], [ 20.566406, 43.197167 ], [ 20.566406, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 42.940339 ], [ 20.039062, 42.940339 ], [ 20.039062, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.197167 ], [ 19.511719, 43.197167 ], [ 19.511719, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 43.452919 ], [ 19.160156, 43.452919 ], [ 19.160156, 43.580391 ], [ 19.511719, 43.580391 ], [ 19.511719, 43.834527 ], [ 19.687500, 43.834527 ], [ 19.687500, 44.087585 ], [ 19.511719, 44.087585 ], [ 19.511719, 44.213710 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.339565 ], [ 19.160156, 44.339565 ], [ 19.160156, 44.590467 ], [ 19.335938, 44.590467 ], [ 19.335938, 44.840291 ], [ 19.160156, 44.840291 ], [ 19.160156, 45.089036 ], [ 19.335938, 45.089036 ], [ 19.335938, 45.336702 ], [ 19.160156, 45.336702 ], [ 19.160156, 45.583290 ], [ 18.984375, 45.583290 ], [ 18.984375, 45.828799 ], [ 18.808594, 45.828799 ], [ 18.808594, 45.951150 ], [ 19.160156, 45.951150 ], [ 19.160156, 46.073231 ], [ 19.511719, 46.073231 ], [ 19.511719, 46.195042 ], [ 19.687500, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.445312, 42.682435 ], [ 21.796875, 42.682435 ], [ 21.796875, 42.553080 ], [ 21.621094, 42.553080 ], [ 21.621094, 42.163403 ], [ 21.093750, 42.163403 ], [ 21.093750, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.566406, 42.163403 ], [ 20.214844, 42.163403 ], [ 20.214844, 42.423457 ], [ 20.039062, 42.423457 ], [ 20.039062, 42.682435 ], [ 20.214844, 42.682435 ], [ 20.214844, 42.811522 ], [ 20.566406, 42.811522 ], [ 20.566406, 43.197167 ], [ 20.917969, 43.197167 ], [ 20.917969, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.940339 ], [ 21.269531, 42.940339 ], [ 21.269531, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.917969, 43.197167 ], [ 20.917969, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.940339 ], [ 21.269531, 42.940339 ], [ 21.269531, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.682435 ], [ 21.796875, 42.682435 ], [ 21.796875, 42.553080 ], [ 21.621094, 42.553080 ], [ 21.621094, 42.163403 ], [ 21.093750, 42.163403 ], [ 21.093750, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.566406, 42.163403 ], [ 20.214844, 42.163403 ], [ 20.214844, 42.423457 ], [ 20.039062, 42.423457 ], [ 20.039062, 42.682435 ], [ 20.214844, 42.682435 ], [ 20.214844, 42.811522 ], [ 20.566406, 42.811522 ], [ 20.566406, 43.197167 ], [ 20.917969, 43.197167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.423457 ], [ 20.214844, 42.423457 ], [ 20.214844, 42.163403 ], [ 20.566406, 42.163403 ], [ 20.566406, 41.640078 ], [ 20.390625, 41.640078 ], [ 20.390625, 41.244772 ], [ 20.566406, 41.244772 ], [ 20.566406, 40.979898 ], [ 20.917969, 40.979898 ], [ 20.917969, 40.847060 ], [ 21.093750, 40.847060 ], [ 21.093750, 40.713956 ], [ 20.917969, 40.713956 ], [ 20.917969, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.313043 ], [ 19.335938, 40.313043 ], [ 19.335938, 41.508577 ], [ 19.511719, 41.508577 ], [ 19.511719, 41.771312 ], [ 19.335938, 41.771312 ], [ 19.335938, 42.293564 ], [ 19.511719, 42.293564 ], [ 19.511719, 42.553080 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.553080 ], [ 20.039062, 42.423457 ], [ 20.214844, 42.423457 ], [ 20.214844, 42.163403 ], [ 20.566406, 42.163403 ], [ 20.566406, 41.640078 ], [ 20.390625, 41.640078 ], [ 20.390625, 41.244772 ], [ 20.566406, 41.244772 ], [ 20.566406, 40.979898 ], [ 20.917969, 40.979898 ], [ 20.917969, 40.847060 ], [ 21.093750, 40.847060 ], [ 21.093750, 40.713956 ], [ 20.917969, 40.713956 ], [ 20.917969, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.313043 ], [ 19.335938, 40.313043 ], [ 19.335938, 41.508577 ], [ 19.511719, 41.508577 ], [ 19.511719, 41.771312 ], [ 19.335938, 41.771312 ], [ 19.335938, 42.293564 ], [ 19.511719, 42.293564 ], [ 19.511719, 42.553080 ], [ 20.039062, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.675781, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.640078 ], [ 23.027344, 41.640078 ], [ 23.027344, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.640078 ], [ 20.566406, 41.640078 ], [ 20.566406, 41.902277 ], [ 20.742188, 41.902277 ], [ 20.742188, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 42.163403 ], [ 21.621094, 42.163403 ], [ 21.621094, 42.293564 ], [ 22.324219, 42.293564 ], [ 22.324219, 42.163403 ], [ 22.675781, 42.163403 ], [ 22.675781, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.293564 ], [ 22.324219, 42.163403 ], [ 22.675781, 42.163403 ], [ 22.675781, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.640078 ], [ 23.027344, 41.640078 ], [ 23.027344, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.640078 ], [ 20.566406, 41.640078 ], [ 20.566406, 41.902277 ], [ 20.742188, 41.902277 ], [ 20.742188, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 42.163403 ], [ 21.621094, 42.163403 ], [ 21.621094, 42.293564 ], [ 22.324219, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.707031, 64.699105 ], [ 29.882812, 64.699105 ], [ 29.882812, 64.548440 ], [ 30.058594, 64.548440 ], [ 30.058594, 64.396938 ], [ 30.234375, 64.396938 ], [ 30.234375, 64.244595 ], [ 30.410156, 64.244595 ], [ 30.410156, 64.014496 ], [ 30.234375, 64.014496 ], [ 30.234375, 63.704722 ], [ 30.058594, 63.704722 ], [ 30.058594, 63.470145 ], [ 30.234375, 63.470145 ], [ 30.234375, 63.391522 ], [ 30.410156, 63.391522 ], [ 30.410156, 63.312683 ], [ 30.585938, 63.312683 ], [ 30.585938, 63.233627 ], [ 30.761719, 63.233627 ], [ 30.761719, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 62.995158 ], [ 31.113281, 62.995158 ], [ 31.113281, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 62.835089 ], [ 31.464844, 62.835089 ], [ 31.464844, 62.674143 ], [ 31.289062, 62.674143 ], [ 31.289062, 62.431074 ], [ 31.113281, 62.431074 ], [ 31.113281, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.103883 ], [ 30.761719, 62.103883 ], [ 30.761719, 62.021528 ], [ 30.585938, 62.021528 ], [ 30.585938, 61.938950 ], [ 30.410156, 61.938950 ], [ 30.410156, 61.773123 ], [ 30.234375, 61.773123 ], [ 30.234375, 61.689872 ], [ 30.058594, 61.689872 ], [ 30.058594, 61.606396 ], [ 29.882812, 61.606396 ], [ 29.882812, 61.438767 ], [ 29.707031, 61.438767 ], [ 29.707031, 61.354614 ], [ 29.531250, 61.354614 ], [ 29.531250, 61.270233 ], [ 29.355469, 61.270233 ], [ 29.355469, 61.185625 ], [ 29.179688, 61.185625 ], [ 29.179688, 61.015725 ], [ 29.003906, 61.015725 ], [ 29.003906, 60.930432 ], [ 28.828125, 60.930432 ], [ 28.828125, 60.844911 ], [ 28.652344, 60.844911 ], [ 28.652344, 60.759160 ], [ 28.476562, 60.759160 ], [ 28.476562, 60.586967 ], [ 28.300781, 60.586967 ], [ 28.300781, 60.500525 ], [ 27.246094, 60.500525 ], [ 27.246094, 60.413852 ], [ 26.015625, 60.413852 ], [ 26.015625, 60.326948 ], [ 25.664062, 60.326948 ], [ 25.664062, 60.239811 ], [ 25.136719, 60.239811 ], [ 25.136719, 60.152442 ], [ 24.785156, 60.152442 ], [ 24.785156, 60.064840 ], [ 24.082031, 60.064840 ], [ 24.082031, 59.977005 ], [ 23.378906, 59.977005 ], [ 23.378906, 59.888937 ], [ 22.851562, 59.888937 ], [ 22.851562, 59.977005 ], [ 22.675781, 59.977005 ], [ 22.675781, 60.152442 ], [ 22.500000, 60.152442 ], [ 22.500000, 60.326948 ], [ 22.324219, 60.326948 ], [ 22.324219, 60.413852 ], [ 22.148438, 60.413852 ], [ 22.148438, 60.500525 ], [ 21.796875, 60.500525 ], [ 21.796875, 60.586967 ], [ 21.621094, 60.586967 ], [ 21.621094, 60.673179 ], [ 21.269531, 60.673179 ], [ 21.269531, 60.930432 ], [ 21.445312, 60.930432 ], [ 21.445312, 61.438767 ], [ 21.621094, 61.438767 ], [ 21.621094, 61.773123 ], [ 21.445312, 61.773123 ], [ 21.445312, 62.103883 ], [ 21.269531, 62.103883 ], [ 21.269531, 62.431074 ], [ 21.093750, 62.431074 ], [ 21.093750, 62.674143 ], [ 21.269531, 62.674143 ], [ 21.269531, 62.835089 ], [ 21.445312, 62.835089 ], [ 21.445312, 62.995158 ], [ 21.621094, 62.995158 ], [ 21.621094, 63.154355 ], [ 21.796875, 63.154355 ], [ 21.796875, 63.312683 ], [ 21.972656, 63.312683 ], [ 21.972656, 63.470145 ], [ 22.148438, 63.470145 ], [ 22.148438, 63.548552 ], [ 22.324219, 63.548552 ], [ 22.324219, 63.704722 ], [ 22.500000, 63.704722 ], [ 22.500000, 63.782486 ], [ 22.675781, 63.782486 ], [ 22.675781, 63.860036 ], [ 22.851562, 63.860036 ], [ 22.851562, 63.937372 ], [ 23.027344, 63.937372 ], [ 23.027344, 64.091408 ], [ 23.203125, 64.091408 ], [ 23.203125, 64.168107 ], [ 23.378906, 64.168107 ], [ 23.378906, 64.244595 ], [ 23.554688, 64.244595 ], [ 23.554688, 64.320872 ], [ 23.730469, 64.320872 ], [ 23.730469, 64.396938 ], [ 23.906250, 64.396938 ], [ 23.906250, 64.472794 ], [ 24.082031, 64.472794 ], [ 24.082031, 64.548440 ], [ 24.257812, 64.548440 ], [ 24.257812, 64.699105 ], [ 24.433594, 64.699105 ], [ 24.433594, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 64.848937 ], [ 24.785156, 64.848937 ], [ 24.785156, 64.923542 ], [ 24.960938, 64.923542 ], [ 24.960938, 64.997939 ], [ 25.136719, 64.997939 ], [ 25.136719, 65.072130 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.512963 ], [ 25.136719, 65.512963 ], [ 25.136719, 65.585720 ], [ 24.960938, 65.585720 ], [ 24.960938, 65.658275 ], [ 24.785156, 65.658275 ], [ 24.785156, 65.730626 ], [ 24.433594, 65.730626 ], [ 24.433594, 65.802776 ], [ 24.257812, 65.802776 ], [ 24.257812, 65.874725 ], [ 24.082031, 65.874725 ], [ 24.082031, 65.946472 ], [ 23.906250, 65.946472 ], [ 23.906250, 66.089364 ], [ 23.730469, 66.089364 ], [ 23.730469, 66.231457 ], [ 23.554688, 66.231457 ], [ 23.554688, 66.861082 ], [ 29.179688, 66.861082 ], [ 29.179688, 66.722541 ], [ 29.355469, 66.722541 ], [ 29.355469, 66.583217 ], [ 29.531250, 66.583217 ], [ 29.531250, 66.372755 ], [ 29.707031, 66.372755 ], [ 29.707031, 66.231457 ], [ 29.882812, 66.231457 ], [ 29.882812, 66.018018 ], [ 30.058594, 66.018018 ], [ 30.058594, 65.874725 ], [ 30.234375, 65.874725 ], [ 30.234375, 65.658275 ], [ 30.058594, 65.658275 ], [ 30.058594, 65.440002 ], [ 29.882812, 65.440002 ], [ 29.882812, 65.219894 ], [ 29.707031, 65.219894 ], [ 29.707031, 64.997939 ], [ 29.531250, 64.997939 ], [ 29.531250, 64.848937 ], [ 29.707031, 64.848937 ], [ 29.707031, 64.699105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, 66.861082 ], [ 29.179688, 66.722541 ], [ 29.355469, 66.722541 ], [ 29.355469, 66.583217 ], [ 29.531250, 66.583217 ], [ 29.531250, 66.372755 ], [ 29.707031, 66.372755 ], [ 29.707031, 66.231457 ], [ 29.882812, 66.231457 ], [ 29.882812, 66.018018 ], [ 30.058594, 66.018018 ], [ 30.058594, 65.874725 ], [ 30.234375, 65.874725 ], [ 30.234375, 65.658275 ], [ 30.058594, 65.658275 ], [ 30.058594, 65.440002 ], [ 29.882812, 65.440002 ], [ 29.882812, 65.219894 ], [ 29.707031, 65.219894 ], [ 29.707031, 64.997939 ], [ 29.531250, 64.997939 ], [ 29.531250, 64.848937 ], [ 29.707031, 64.848937 ], [ 29.707031, 64.699105 ], [ 29.882812, 64.699105 ], [ 29.882812, 64.548440 ], [ 30.058594, 64.548440 ], [ 30.058594, 64.396938 ], [ 30.234375, 64.396938 ], [ 30.234375, 64.244595 ], [ 30.410156, 64.244595 ], [ 30.410156, 64.014496 ], [ 30.234375, 64.014496 ], [ 30.234375, 63.704722 ], [ 30.058594, 63.704722 ], [ 30.058594, 63.470145 ], [ 30.234375, 63.470145 ], [ 30.234375, 63.391522 ], [ 30.410156, 63.391522 ], [ 30.410156, 63.312683 ], [ 30.585938, 63.312683 ], [ 30.585938, 63.233627 ], [ 30.761719, 63.233627 ], [ 30.761719, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 62.995158 ], [ 31.113281, 62.995158 ], [ 31.113281, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 62.835089 ], [ 31.464844, 62.835089 ], [ 31.464844, 62.674143 ], [ 31.289062, 62.674143 ], [ 31.289062, 62.431074 ], [ 31.113281, 62.431074 ], [ 31.113281, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.103883 ], [ 30.761719, 62.103883 ], [ 30.761719, 62.021528 ], [ 30.585938, 62.021528 ], [ 30.585938, 61.938950 ], [ 30.410156, 61.938950 ], [ 30.410156, 61.773123 ], [ 30.234375, 61.773123 ], [ 30.234375, 61.689872 ], [ 30.058594, 61.689872 ], [ 30.058594, 61.606396 ], [ 29.882812, 61.606396 ], [ 29.882812, 61.438767 ], [ 29.707031, 61.438767 ], [ 29.707031, 61.354614 ], [ 29.531250, 61.354614 ], [ 29.531250, 61.270233 ], [ 29.355469, 61.270233 ], [ 29.355469, 61.185625 ], [ 29.179688, 61.185625 ], [ 29.179688, 61.015725 ], [ 29.003906, 61.015725 ], [ 29.003906, 60.930432 ], [ 28.828125, 60.930432 ], [ 28.828125, 60.844911 ], [ 28.652344, 60.844911 ], [ 28.652344, 60.759160 ], [ 28.476562, 60.759160 ], [ 28.476562, 60.586967 ], [ 28.300781, 60.586967 ], [ 28.300781, 60.500525 ], [ 27.246094, 60.500525 ], [ 27.246094, 60.413852 ], [ 26.015625, 60.413852 ], [ 26.015625, 60.326948 ], [ 25.664062, 60.326948 ], [ 25.664062, 60.239811 ], [ 25.136719, 60.239811 ], [ 25.136719, 60.152442 ], [ 24.785156, 60.152442 ], [ 24.785156, 60.064840 ], [ 24.082031, 60.064840 ], [ 24.082031, 59.977005 ], [ 23.378906, 59.977005 ], [ 23.378906, 59.888937 ], [ 22.851562, 59.888937 ], [ 22.851562, 59.977005 ], [ 22.675781, 59.977005 ], [ 22.675781, 60.152442 ], [ 22.500000, 60.152442 ], [ 22.500000, 60.326948 ], [ 22.324219, 60.326948 ], [ 22.324219, 60.413852 ], [ 22.148438, 60.413852 ], [ 22.148438, 60.500525 ], [ 21.796875, 60.500525 ], [ 21.796875, 60.586967 ], [ 21.621094, 60.586967 ], [ 21.621094, 60.673179 ], [ 21.269531, 60.673179 ], [ 21.269531, 60.930432 ], [ 21.445312, 60.930432 ], [ 21.445312, 61.438767 ], [ 21.621094, 61.438767 ], [ 21.621094, 61.773123 ], [ 21.445312, 61.773123 ], [ 21.445312, 62.103883 ], [ 21.269531, 62.103883 ], [ 21.269531, 62.431074 ], [ 21.093750, 62.431074 ], [ 21.093750, 62.674143 ], [ 21.269531, 62.674143 ], [ 21.269531, 62.835089 ], [ 21.445312, 62.835089 ], [ 21.445312, 62.995158 ], [ 21.621094, 62.995158 ], [ 21.621094, 63.154355 ], [ 21.796875, 63.154355 ], [ 21.796875, 63.312683 ], [ 21.972656, 63.312683 ], [ 21.972656, 63.470145 ], [ 22.148438, 63.470145 ], [ 22.148438, 63.548552 ], [ 22.324219, 63.548552 ], [ 22.324219, 63.704722 ], [ 22.500000, 63.704722 ], [ 22.500000, 63.782486 ], [ 22.675781, 63.782486 ], [ 22.675781, 63.860036 ], [ 22.851562, 63.860036 ], [ 22.851562, 63.937372 ], [ 23.027344, 63.937372 ], [ 23.027344, 64.091408 ], [ 23.203125, 64.091408 ], [ 23.203125, 64.168107 ], [ 23.378906, 64.168107 ], [ 23.378906, 64.244595 ], [ 23.554688, 64.244595 ], [ 23.554688, 64.320872 ], [ 23.730469, 64.320872 ], [ 23.730469, 64.396938 ], [ 23.906250, 64.396938 ], [ 23.906250, 64.472794 ], [ 24.082031, 64.472794 ], [ 24.082031, 64.548440 ], [ 24.257812, 64.548440 ], [ 24.257812, 64.699105 ], [ 24.433594, 64.699105 ], [ 24.433594, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 64.848937 ], [ 24.785156, 64.848937 ], [ 24.785156, 64.923542 ], [ 24.960938, 64.923542 ], [ 24.960938, 64.997939 ], [ 25.136719, 64.997939 ], [ 25.136719, 65.072130 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.512963 ], [ 25.136719, 65.512963 ], [ 25.136719, 65.585720 ], [ 24.960938, 65.585720 ], [ 24.960938, 65.658275 ], [ 24.785156, 65.658275 ], [ 24.785156, 65.730626 ], [ 24.433594, 65.730626 ], [ 24.433594, 65.802776 ], [ 24.257812, 65.802776 ], [ 24.257812, 65.874725 ], [ 24.082031, 65.874725 ], [ 24.082031, 65.946472 ], [ 23.906250, 65.946472 ], [ 23.906250, 66.089364 ], [ 23.730469, 66.089364 ], [ 23.730469, 66.231457 ], [ 23.554688, 66.231457 ], [ 23.554688, 66.861082 ], [ 29.179688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 57.797944 ], [ 25.839844, 57.797944 ], [ 25.839844, 57.704147 ], [ 26.191406, 57.704147 ], [ 26.191406, 57.610107 ], [ 26.367188, 57.610107 ], [ 26.367188, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.246094, 57.421294 ], [ 27.421875, 57.421294 ], [ 27.421875, 57.326521 ], [ 27.597656, 57.326521 ], [ 27.597656, 57.231503 ], [ 27.773438, 57.231503 ], [ 27.773438, 56.559482 ], [ 27.949219, 56.559482 ], [ 27.949219, 56.267761 ], [ 28.125000, 56.267761 ], [ 28.125000, 56.072035 ], [ 27.773438, 56.072035 ], [ 27.773438, 55.973798 ], [ 27.597656, 55.973798 ], [ 27.597656, 55.875311 ], [ 27.246094, 55.875311 ], [ 27.246094, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.677584 ], [ 26.718750, 55.677584 ], [ 26.718750, 55.578345 ], [ 26.367188, 55.578345 ], [ 26.367188, 55.677584 ], [ 26.191406, 55.677584 ], [ 26.191406, 55.776573 ], [ 25.839844, 55.776573 ], [ 25.839844, 55.875311 ], [ 25.664062, 55.875311 ], [ 25.664062, 55.973798 ], [ 25.488281, 55.973798 ], [ 25.488281, 56.072035 ], [ 25.136719, 56.072035 ], [ 25.136719, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.267761 ], [ 24.785156, 56.267761 ], [ 24.785156, 56.365250 ], [ 24.433594, 56.365250 ], [ 24.433594, 56.267761 ], [ 22.851562, 56.267761 ], [ 22.851562, 56.365250 ], [ 22.148438, 56.365250 ], [ 22.148438, 56.267761 ], [ 21.796875, 56.267761 ], [ 21.796875, 56.170023 ], [ 21.445312, 56.170023 ], [ 21.445312, 56.072035 ], [ 21.093750, 56.072035 ], [ 21.093750, 56.848972 ], [ 21.269531, 56.848972 ], [ 21.269531, 57.040730 ], [ 21.445312, 57.040730 ], [ 21.445312, 57.231503 ], [ 21.621094, 57.231503 ], [ 21.621094, 57.421294 ], [ 21.796875, 57.421294 ], [ 21.796875, 57.515823 ], [ 21.972656, 57.515823 ], [ 21.972656, 57.610107 ], [ 22.324219, 57.610107 ], [ 22.324219, 57.704147 ], [ 22.675781, 57.704147 ], [ 22.675781, 57.515823 ], [ 22.851562, 57.515823 ], [ 22.851562, 57.421294 ], [ 23.027344, 57.421294 ], [ 23.027344, 57.231503 ], [ 23.203125, 57.231503 ], [ 23.203125, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.082031, 57.421294 ], [ 24.257812, 57.421294 ], [ 24.257812, 57.797944 ], [ 24.609375, 57.797944 ], [ 24.609375, 57.891497 ], [ 24.960938, 57.891497 ], [ 24.960938, 57.984808 ], [ 25.312500, 57.984808 ], [ 25.312500, 57.891497 ], [ 25.664062, 57.891497 ], [ 25.664062, 57.797944 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 57.984808 ], [ 25.312500, 57.891497 ], [ 25.664062, 57.891497 ], [ 25.664062, 57.797944 ], [ 25.839844, 57.797944 ], [ 25.839844, 57.704147 ], [ 26.191406, 57.704147 ], [ 26.191406, 57.610107 ], [ 26.367188, 57.610107 ], [ 26.367188, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.246094, 57.421294 ], [ 27.421875, 57.421294 ], [ 27.421875, 57.326521 ], [ 27.597656, 57.326521 ], [ 27.597656, 57.231503 ], [ 27.773438, 57.231503 ], [ 27.773438, 56.559482 ], [ 27.949219, 56.559482 ], [ 27.949219, 56.267761 ], [ 28.125000, 56.267761 ], [ 28.125000, 56.072035 ], [ 27.773438, 56.072035 ], [ 27.773438, 55.973798 ], [ 27.597656, 55.973798 ], [ 27.597656, 55.875311 ], [ 27.246094, 55.875311 ], [ 27.246094, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.677584 ], [ 26.718750, 55.677584 ], [ 26.718750, 55.578345 ], [ 26.367188, 55.578345 ], [ 26.367188, 55.677584 ], [ 26.191406, 55.677584 ], [ 26.191406, 55.776573 ], [ 25.839844, 55.776573 ], [ 25.839844, 55.875311 ], [ 25.664062, 55.875311 ], [ 25.664062, 55.973798 ], [ 25.488281, 55.973798 ], [ 25.488281, 56.072035 ], [ 25.136719, 56.072035 ], [ 25.136719, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.267761 ], [ 24.785156, 56.267761 ], [ 24.785156, 56.365250 ], [ 24.433594, 56.365250 ], [ 24.433594, 56.267761 ], [ 22.851562, 56.267761 ], [ 22.851562, 56.365250 ], [ 22.148438, 56.365250 ], [ 22.148438, 56.267761 ], [ 21.796875, 56.267761 ], [ 21.796875, 56.170023 ], [ 21.445312, 56.170023 ], [ 21.093750, 56.072035 ], [ 21.093750, 56.848972 ], [ 21.269531, 56.848972 ], [ 21.269531, 57.040730 ], [ 21.445312, 57.040730 ], [ 21.445312, 57.231503 ], [ 21.621094, 57.231503 ], [ 21.621094, 57.421294 ], [ 21.796875, 57.421294 ], [ 21.796875, 57.515823 ], [ 21.972656, 57.515823 ], [ 21.972656, 57.610107 ], [ 22.324219, 57.610107 ], [ 22.324219, 57.704147 ], [ 22.675781, 57.704147 ], [ 22.675781, 57.515823 ], [ 22.851562, 57.515823 ], [ 22.851562, 57.421294 ], [ 23.027344, 57.421294 ], [ 23.027344, 57.231503 ], [ 23.203125, 57.231503 ], [ 23.203125, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.082031, 57.421294 ], [ 24.257812, 57.421294 ], [ 24.257812, 57.797944 ], [ 24.609375, 57.797944 ], [ 24.609375, 57.891497 ], [ 24.960938, 57.891497 ], [ 24.960938, 57.984808 ], [ 25.312500, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.542969, 59.445075 ], [ 27.949219, 59.445075 ], [ 27.949219, 59.355596 ], [ 28.125000, 59.355596 ], [ 28.125000, 59.175928 ], [ 27.949219, 59.175928 ], [ 27.949219, 58.995311 ], [ 27.773438, 58.995311 ], [ 27.773438, 58.904646 ], [ 27.597656, 58.904646 ], [ 27.597656, 58.722599 ], [ 27.421875, 58.722599 ], [ 27.421875, 58.447733 ], [ 27.597656, 58.447733 ], [ 27.597656, 57.984808 ], [ 27.773438, 57.984808 ], [ 27.773438, 57.704147 ], [ 27.597656, 57.704147 ], [ 27.597656, 57.610107 ], [ 27.421875, 57.610107 ], [ 27.421875, 57.515823 ], [ 26.367188, 57.515823 ], [ 26.367188, 57.610107 ], [ 26.191406, 57.610107 ], [ 26.191406, 57.704147 ], [ 25.839844, 57.704147 ], [ 25.839844, 57.797944 ], [ 25.664062, 57.797944 ], [ 25.664062, 57.891497 ], [ 25.312500, 57.891497 ], [ 25.312500, 57.984808 ], [ 24.960938, 57.984808 ], [ 24.960938, 57.891497 ], [ 24.609375, 57.891497 ], [ 24.609375, 57.797944 ], [ 24.257812, 57.797944 ], [ 24.257812, 58.077876 ], [ 24.433594, 58.077876 ], [ 24.433594, 58.263287 ], [ 23.906250, 58.263287 ], [ 23.906250, 58.355630 ], [ 23.730469, 58.355630 ], [ 23.730469, 58.447733 ], [ 23.554688, 58.447733 ], [ 23.554688, 58.539595 ], [ 23.378906, 58.539595 ], [ 23.378906, 59.175928 ], [ 23.730469, 59.175928 ], [ 23.730469, 59.265881 ], [ 24.082031, 59.265881 ], [ 24.082031, 59.355596 ], [ 24.433594, 59.355596 ], [ 24.433594, 59.445075 ], [ 24.960938, 59.445075 ], [ 24.960938, 59.534318 ], [ 25.664062, 59.534318 ], [ 25.664062, 59.623325 ], [ 26.015625, 59.623325 ], [ 26.015625, 59.534318 ], [ 26.542969, 59.534318 ], [ 26.542969, 59.445075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 59.623325 ], [ 26.015625, 59.534318 ], [ 26.542969, 59.534318 ], [ 26.542969, 59.445075 ], [ 27.949219, 59.445075 ], [ 27.949219, 59.355596 ], [ 28.125000, 59.355596 ], [ 28.125000, 59.175928 ], [ 27.949219, 59.175928 ], [ 27.949219, 58.995311 ], [ 27.773438, 58.995311 ], [ 27.773438, 58.904646 ], [ 27.597656, 58.904646 ], [ 27.597656, 58.722599 ], [ 27.421875, 58.722599 ], [ 27.421875, 58.447733 ], [ 27.597656, 58.447733 ], [ 27.597656, 57.984808 ], [ 27.773438, 57.984808 ], [ 27.773438, 57.704147 ], [ 27.597656, 57.704147 ], [ 27.597656, 57.610107 ], [ 27.421875, 57.610107 ], [ 27.421875, 57.515823 ], [ 26.367188, 57.515823 ], [ 26.367188, 57.610107 ], [ 26.191406, 57.610107 ], [ 26.191406, 57.704147 ], [ 25.839844, 57.704147 ], [ 25.839844, 57.797944 ], [ 25.664062, 57.797944 ], [ 25.664062, 57.891497 ], [ 25.312500, 57.891497 ], [ 25.312500, 57.984808 ], [ 24.960938, 57.984808 ], [ 24.960938, 57.891497 ], [ 24.609375, 57.891497 ], [ 24.609375, 57.797944 ], [ 24.257812, 57.797944 ], [ 24.257812, 58.077876 ], [ 24.433594, 58.077876 ], [ 24.433594, 58.263287 ], [ 23.906250, 58.263287 ], [ 23.906250, 58.355630 ], [ 23.730469, 58.355630 ], [ 23.730469, 58.447733 ], [ 23.554688, 58.447733 ], [ 23.554688, 58.539595 ], [ 23.378906, 58.539595 ], [ 23.378906, 59.175928 ], [ 23.730469, 59.175928 ], [ 23.730469, 59.265881 ], [ 24.082031, 59.265881 ], [ 24.082031, 59.355596 ], [ 24.433594, 59.355596 ], [ 24.433594, 59.445075 ], [ 24.960938, 59.445075 ], [ 24.960938, 59.534318 ], [ 25.664062, 59.534318 ], [ 25.664062, 59.623325 ], [ 26.015625, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.170023 ], [ 25.136719, 56.170023 ], [ 25.136719, 56.072035 ], [ 25.488281, 56.072035 ], [ 25.488281, 55.973798 ], [ 25.664062, 55.973798 ], [ 25.664062, 55.875311 ], [ 25.839844, 55.875311 ], [ 25.839844, 55.776573 ], [ 26.191406, 55.776573 ], [ 26.191406, 55.677584 ], [ 26.367188, 55.677584 ], [ 26.367188, 55.578345 ], [ 26.542969, 55.578345 ], [ 26.542969, 55.078367 ], [ 26.367188, 55.078367 ], [ 26.367188, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.876607 ], [ 25.839844, 54.876607 ], [ 25.839844, 54.673831 ], [ 25.664062, 54.673831 ], [ 25.664062, 54.367759 ], [ 25.488281, 54.367759 ], [ 25.488281, 54.162434 ], [ 25.136719, 54.162434 ], [ 25.136719, 54.059388 ], [ 24.785156, 54.059388 ], [ 24.785156, 53.956086 ], [ 23.378906, 53.956086 ], [ 23.378906, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 54.265224 ], [ 22.851562, 54.265224 ], [ 22.851562, 54.367759 ], [ 22.675781, 54.367759 ], [ 22.675781, 54.876607 ], [ 22.324219, 54.876607 ], [ 22.324219, 54.977614 ], [ 21.972656, 54.977614 ], [ 21.972656, 55.078367 ], [ 21.445312, 55.078367 ], [ 21.445312, 55.178868 ], [ 21.269531, 55.178868 ], [ 21.269531, 55.578345 ], [ 21.093750, 55.578345 ], [ 21.093750, 56.072035 ], [ 21.445312, 56.072035 ], [ 21.445312, 56.170023 ], [ 21.796875, 56.170023 ], [ 21.796875, 56.267761 ], [ 22.148438, 56.267761 ], [ 22.148438, 56.365250 ], [ 22.851562, 56.365250 ], [ 22.851562, 56.267761 ], [ 24.433594, 56.267761 ], [ 24.433594, 56.365250 ], [ 24.785156, 56.365250 ], [ 24.785156, 56.267761 ], [ 24.960938, 56.267761 ], [ 24.960938, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 56.365250 ], [ 24.785156, 56.267761 ], [ 24.960938, 56.267761 ], [ 24.960938, 56.170023 ], [ 25.136719, 56.170023 ], [ 25.136719, 56.072035 ], [ 25.488281, 56.072035 ], [ 25.488281, 55.973798 ], [ 25.664062, 55.973798 ], [ 25.664062, 55.875311 ], [ 25.839844, 55.875311 ], [ 25.839844, 55.776573 ], [ 26.191406, 55.776573 ], [ 26.191406, 55.677584 ], [ 26.367188, 55.677584 ], [ 26.367188, 55.578345 ], [ 26.542969, 55.578345 ], [ 26.542969, 55.078367 ], [ 26.367188, 55.078367 ], [ 26.367188, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.876607 ], [ 25.839844, 54.876607 ], [ 25.839844, 54.673831 ], [ 25.664062, 54.673831 ], [ 25.664062, 54.367759 ], [ 25.488281, 54.367759 ], [ 25.488281, 54.162434 ], [ 25.136719, 54.162434 ], [ 25.136719, 54.059388 ], [ 24.785156, 54.059388 ], [ 24.785156, 53.956086 ], [ 23.378906, 53.956086 ], [ 23.378906, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 54.265224 ], [ 22.851562, 54.265224 ], [ 22.675781, 54.367759 ], [ 22.675781, 54.876607 ], [ 22.324219, 54.876607 ], [ 22.324219, 54.977614 ], [ 21.972656, 54.977614 ], [ 21.972656, 55.078367 ], [ 21.445312, 55.078367 ], [ 21.445312, 55.178868 ], [ 21.269531, 55.178868 ], [ 21.269531, 55.578345 ], [ 21.093750, 55.578345 ], [ 21.093750, 56.072035 ], [ 21.445312, 56.072035 ], [ 21.445312, 56.170023 ], [ 21.796875, 56.170023 ], [ 21.796875, 56.267761 ], [ 22.148438, 56.267761 ], [ 22.148438, 56.365250 ], [ 22.851562, 56.365250 ], [ 22.851562, 56.267761 ], [ 24.433594, 56.267761 ], [ 24.433594, 56.365250 ], [ 24.785156, 56.365250 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 55.875311 ], [ 29.179688, 55.875311 ], [ 29.179688, 55.776573 ], [ 29.355469, 55.776573 ], [ 29.355469, 55.677584 ], [ 29.707031, 55.677584 ], [ 29.707031, 55.776573 ], [ 30.058594, 55.776573 ], [ 30.058594, 55.677584 ], [ 30.585938, 55.677584 ], [ 30.585938, 55.578345 ], [ 30.937500, 55.578345 ], [ 30.937500, 54.876607 ], [ 30.761719, 54.876607 ], [ 30.761719, 54.673831 ], [ 30.937500, 54.673831 ], [ 30.937500, 54.470038 ], [ 31.113281, 54.470038 ], [ 31.113281, 54.367759 ], [ 31.289062, 54.367759 ], [ 31.289062, 54.162434 ], [ 31.464844, 54.162434 ], [ 31.464844, 54.059388 ], [ 31.640625, 54.059388 ], [ 31.640625, 53.956086 ], [ 31.816406, 53.956086 ], [ 31.816406, 53.748711 ], [ 31.992188, 53.748711 ], [ 31.992188, 53.644638 ], [ 32.343750, 53.644638 ], [ 32.343750, 53.540307 ], [ 32.519531, 53.540307 ], [ 32.519531, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.225768 ], [ 32.519531, 53.225768 ], [ 32.519531, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.464844, 52.908902 ], [ 31.464844, 52.482780 ], [ 31.640625, 52.482780 ], [ 31.640625, 52.160455 ], [ 31.816406, 52.160455 ], [ 31.816406, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.944265 ], [ 30.761719, 51.944265 ], [ 30.761719, 51.835778 ], [ 30.585938, 51.835778 ], [ 30.585938, 51.289406 ], [ 30.234375, 51.289406 ], [ 30.234375, 51.399206 ], [ 29.179688, 51.399206 ], [ 29.179688, 51.508742 ], [ 28.828125, 51.508742 ], [ 28.828125, 51.399206 ], [ 28.476562, 51.399206 ], [ 28.476562, 51.508742 ], [ 28.300781, 51.508742 ], [ 28.300781, 51.618017 ], [ 27.070312, 51.618017 ], [ 27.070312, 51.727028 ], [ 26.542969, 51.727028 ], [ 26.542969, 51.835778 ], [ 25.664062, 51.835778 ], [ 25.664062, 51.944265 ], [ 25.136719, 51.944265 ], [ 25.136719, 51.835778 ], [ 24.609375, 51.835778 ], [ 24.609375, 51.727028 ], [ 24.257812, 51.727028 ], [ 24.257812, 51.618017 ], [ 23.554688, 51.618017 ], [ 23.554688, 52.160455 ], [ 23.378906, 52.160455 ], [ 23.378906, 52.375599 ], [ 23.203125, 52.375599 ], [ 23.203125, 52.482780 ], [ 23.378906, 52.482780 ], [ 23.378906, 52.589701 ], [ 23.730469, 52.589701 ], [ 23.730469, 53.225768 ], [ 23.554688, 53.225768 ], [ 23.554688, 53.956086 ], [ 24.785156, 53.956086 ], [ 24.785156, 54.059388 ], [ 25.136719, 54.059388 ], [ 25.136719, 54.162434 ], [ 25.488281, 54.162434 ], [ 25.488281, 54.367759 ], [ 25.664062, 54.367759 ], [ 25.664062, 54.673831 ], [ 25.839844, 54.673831 ], [ 25.839844, 54.876607 ], [ 26.015625, 54.876607 ], [ 26.015625, 54.977614 ], [ 26.367188, 54.977614 ], [ 26.367188, 55.078367 ], [ 26.542969, 55.078367 ], [ 26.542969, 55.578345 ], [ 26.718750, 55.578345 ], [ 26.718750, 55.677584 ], [ 27.070312, 55.677584 ], [ 27.070312, 55.776573 ], [ 27.246094, 55.776573 ], [ 27.246094, 55.875311 ], [ 27.597656, 55.875311 ], [ 27.597656, 55.973798 ], [ 27.773438, 55.973798 ], [ 27.773438, 56.072035 ], [ 28.476562, 56.072035 ], [ 28.476562, 55.973798 ], [ 28.828125, 55.973798 ], [ 28.828125, 55.875311 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, 56.072035 ], [ 28.476562, 55.973798 ], [ 28.828125, 55.973798 ], [ 28.828125, 55.875311 ], [ 29.179688, 55.875311 ], [ 29.179688, 55.776573 ], [ 29.355469, 55.776573 ], [ 29.355469, 55.677584 ], [ 29.707031, 55.677584 ], [ 29.707031, 55.776573 ], [ 30.058594, 55.776573 ], [ 30.058594, 55.677584 ], [ 30.585938, 55.677584 ], [ 30.585938, 55.578345 ], [ 30.937500, 55.578345 ], [ 30.937500, 54.876607 ], [ 30.761719, 54.876607 ], [ 30.761719, 54.673831 ], [ 30.937500, 54.673831 ], [ 30.937500, 54.470038 ], [ 31.113281, 54.470038 ], [ 31.113281, 54.367759 ], [ 31.289062, 54.367759 ], [ 31.289062, 54.162434 ], [ 31.464844, 54.162434 ], [ 31.464844, 54.059388 ], [ 31.640625, 54.059388 ], [ 31.640625, 53.956086 ], [ 31.816406, 53.956086 ], [ 31.816406, 53.748711 ], [ 31.992188, 53.748711 ], [ 31.992188, 53.644638 ], [ 32.343750, 53.644638 ], [ 32.343750, 53.540307 ], [ 32.519531, 53.540307 ], [ 32.519531, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.225768 ], [ 32.519531, 53.225768 ], [ 32.519531, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.464844, 52.908902 ], [ 31.464844, 52.482780 ], [ 31.640625, 52.482780 ], [ 31.640625, 52.160455 ], [ 31.816406, 52.160455 ], [ 31.816406, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.944265 ], [ 30.761719, 51.944265 ], [ 30.761719, 51.835778 ], [ 30.585938, 51.835778 ], [ 30.585938, 51.289406 ], [ 30.234375, 51.289406 ], [ 30.234375, 51.399206 ], [ 29.179688, 51.399206 ], [ 29.179688, 51.508742 ], [ 28.828125, 51.508742 ], [ 28.828125, 51.399206 ], [ 28.476562, 51.399206 ], [ 28.476562, 51.508742 ], [ 28.300781, 51.508742 ], [ 28.300781, 51.618017 ], [ 27.070312, 51.618017 ], [ 27.070312, 51.727028 ], [ 26.542969, 51.727028 ], [ 26.542969, 51.835778 ], [ 25.664062, 51.835778 ], [ 25.664062, 51.944265 ], [ 25.136719, 51.944265 ], [ 25.136719, 51.835778 ], [ 24.609375, 51.835778 ], [ 24.609375, 51.727028 ], [ 24.257812, 51.727028 ], [ 24.257812, 51.618017 ], [ 23.554688, 51.618017 ], [ 23.554688, 52.160455 ], [ 23.378906, 52.160455 ], [ 23.378906, 52.375599 ], [ 23.203125, 52.375599 ], [ 23.203125, 52.482780 ], [ 23.378906, 52.482780 ], [ 23.378906, 52.589701 ], [ 23.730469, 52.589701 ], [ 23.730469, 53.225768 ], [ 23.554688, 53.225768 ], [ 23.554688, 53.956086 ], [ 24.785156, 53.956086 ], [ 24.785156, 54.059388 ], [ 25.136719, 54.059388 ], [ 25.136719, 54.162434 ], [ 25.488281, 54.162434 ], [ 25.488281, 54.367759 ], [ 25.664062, 54.367759 ], [ 25.664062, 54.673831 ], [ 25.839844, 54.673831 ], [ 25.839844, 54.876607 ], [ 26.015625, 54.876607 ], [ 26.015625, 54.977614 ], [ 26.367188, 54.977614 ], [ 26.367188, 55.078367 ], [ 26.542969, 55.078367 ], [ 26.542969, 55.578345 ], [ 26.718750, 55.578345 ], [ 26.718750, 55.677584 ], [ 27.070312, 55.677584 ], [ 27.070312, 55.776573 ], [ 27.246094, 55.776573 ], [ 27.246094, 55.875311 ], [ 27.597656, 55.875311 ], [ 27.597656, 55.973798 ], [ 27.773438, 55.973798 ], [ 27.773438, 56.072035 ], [ 28.476562, 56.072035 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 47.989922 ], [ 27.070312, 47.989922 ], [ 27.070312, 47.872144 ], [ 27.246094, 47.872144 ], [ 27.246094, 47.754098 ], [ 27.421875, 47.754098 ], [ 27.421875, 47.517201 ], [ 27.597656, 47.517201 ], [ 27.597656, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 47.040182 ], [ 27.949219, 47.040182 ], [ 27.949219, 46.800059 ], [ 28.125000, 46.800059 ], [ 28.125000, 45.706179 ], [ 28.300781, 45.706179 ], [ 28.300781, 45.336702 ], [ 29.003906, 45.336702 ], [ 29.003906, 45.460131 ], [ 29.179688, 45.460131 ], [ 29.179688, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 45.213004 ], [ 29.707031, 45.213004 ], [ 29.707031, 44.964798 ], [ 29.355469, 44.964798 ], [ 29.355469, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.590467 ], [ 28.652344, 44.590467 ], [ 28.652344, 43.961191 ], [ 28.476562, 43.961191 ], [ 28.476562, 43.707594 ], [ 28.125000, 43.707594 ], [ 28.125000, 43.834527 ], [ 27.773438, 43.834527 ], [ 27.773438, 43.961191 ], [ 27.421875, 43.961191 ], [ 27.421875, 44.087585 ], [ 27.246094, 44.087585 ], [ 27.246094, 44.213710 ], [ 27.070312, 44.213710 ], [ 27.070312, 44.087585 ], [ 26.367188, 44.087585 ], [ 26.367188, 43.961191 ], [ 26.015625, 43.961191 ], [ 26.015625, 43.834527 ], [ 25.664062, 43.834527 ], [ 25.664062, 43.707594 ], [ 23.554688, 43.707594 ], [ 23.554688, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.675781, 44.087585 ], [ 22.675781, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 44.465151 ], [ 22.675781, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.324219, 44.590467 ], [ 22.324219, 44.465151 ], [ 21.972656, 44.465151 ], [ 21.972656, 44.590467 ], [ 21.621094, 44.590467 ], [ 21.621094, 44.964798 ], [ 21.445312, 44.964798 ], [ 21.445312, 45.213004 ], [ 21.269531, 45.213004 ], [ 21.269531, 45.336702 ], [ 20.917969, 45.336702 ], [ 20.917969, 45.583290 ], [ 20.742188, 45.583290 ], [ 20.742188, 45.706179 ], [ 20.566406, 45.706179 ], [ 20.566406, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 45.951150 ], [ 20.214844, 45.951150 ], [ 20.214844, 46.073231 ], [ 20.566406, 46.073231 ], [ 20.566406, 46.195042 ], [ 20.917969, 46.195042 ], [ 20.917969, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.437857 ], [ 21.269531, 46.437857 ], [ 21.269531, 46.679594 ], [ 21.445312, 46.679594 ], [ 21.445312, 46.920255 ], [ 21.621094, 46.920255 ], [ 21.621094, 47.040182 ], [ 21.796875, 47.040182 ], [ 21.796875, 47.279229 ], [ 21.972656, 47.279229 ], [ 21.972656, 47.517201 ], [ 22.148438, 47.517201 ], [ 22.148438, 47.635784 ], [ 22.324219, 47.635784 ], [ 22.324219, 47.754098 ], [ 22.675781, 47.754098 ], [ 22.675781, 47.872144 ], [ 22.851562, 47.872144 ], [ 22.851562, 47.989922 ], [ 23.203125, 47.989922 ], [ 23.203125, 48.107431 ], [ 23.378906, 48.107431 ], [ 23.378906, 47.989922 ], [ 24.433594, 47.989922 ], [ 24.433594, 47.872144 ], [ 24.609375, 47.872144 ], [ 24.609375, 47.754098 ], [ 25.136719, 47.754098 ], [ 25.136719, 47.872144 ], [ 25.664062, 47.872144 ], [ 25.664062, 47.989922 ], [ 26.015625, 47.989922 ], [ 26.015625, 48.107431 ], [ 26.191406, 48.107431 ], [ 26.191406, 48.224673 ], [ 26.542969, 48.224673 ], [ 26.542969, 48.107431 ], [ 26.894531, 48.107431 ], [ 26.894531, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.542969, 48.224673 ], [ 26.542969, 48.107431 ], [ 26.894531, 48.107431 ], [ 26.894531, 47.989922 ], [ 27.070312, 47.989922 ], [ 27.070312, 47.872144 ], [ 27.246094, 47.872144 ], [ 27.246094, 47.754098 ], [ 27.421875, 47.754098 ], [ 27.421875, 47.517201 ], [ 27.597656, 47.517201 ], [ 27.597656, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 47.040182 ], [ 27.949219, 47.040182 ], [ 27.949219, 46.800059 ], [ 28.125000, 46.800059 ], [ 28.125000, 45.706179 ], [ 28.300781, 45.706179 ], [ 28.300781, 45.336702 ], [ 29.003906, 45.336702 ], [ 29.003906, 45.460131 ], [ 29.179688, 45.460131 ], [ 29.179688, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 45.213004 ], [ 29.707031, 45.213004 ], [ 29.707031, 44.964798 ], [ 29.355469, 44.964798 ], [ 29.355469, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.590467 ], [ 28.652344, 44.590467 ], [ 28.652344, 43.961191 ], [ 28.476562, 43.961191 ], [ 28.476562, 43.707594 ], [ 28.125000, 43.707594 ], [ 28.125000, 43.834527 ], [ 27.773438, 43.834527 ], [ 27.773438, 43.961191 ], [ 27.421875, 43.961191 ], [ 27.421875, 44.087585 ], [ 27.246094, 44.087585 ], [ 27.246094, 44.213710 ], [ 27.070312, 44.213710 ], [ 27.070312, 44.087585 ], [ 26.367188, 44.087585 ], [ 26.367188, 43.961191 ], [ 26.015625, 43.961191 ], [ 26.015625, 43.834527 ], [ 25.664062, 43.834527 ], [ 25.664062, 43.707594 ], [ 23.554688, 43.707594 ], [ 23.554688, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.675781, 44.087585 ], [ 22.675781, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 44.465151 ], [ 22.675781, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.324219, 44.590467 ], [ 22.324219, 44.465151 ], [ 21.972656, 44.465151 ], [ 21.972656, 44.590467 ], [ 21.621094, 44.590467 ], [ 21.621094, 44.964798 ], [ 21.445312, 44.964798 ], [ 21.445312, 45.213004 ], [ 21.269531, 45.213004 ], [ 21.269531, 45.336702 ], [ 20.917969, 45.336702 ], [ 20.917969, 45.583290 ], [ 20.742188, 45.583290 ], [ 20.742188, 45.706179 ], [ 20.566406, 45.706179 ], [ 20.566406, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 45.951150 ], [ 20.214844, 45.951150 ], [ 20.214844, 46.073231 ], [ 20.566406, 46.073231 ], [ 20.566406, 46.195042 ], [ 20.917969, 46.195042 ], [ 20.917969, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.437857 ], [ 21.269531, 46.437857 ], [ 21.269531, 46.679594 ], [ 21.445312, 46.679594 ], [ 21.445312, 46.920255 ], [ 21.621094, 46.920255 ], [ 21.621094, 47.040182 ], [ 21.796875, 47.040182 ], [ 21.796875, 47.279229 ], [ 21.972656, 47.279229 ], [ 21.972656, 47.517201 ], [ 22.148438, 47.517201 ], [ 22.148438, 47.635784 ], [ 22.324219, 47.635784 ], [ 22.324219, 47.754098 ], [ 22.675781, 47.754098 ], [ 22.675781, 47.872144 ], [ 22.851562, 47.872144 ], [ 22.851562, 47.989922 ], [ 23.203125, 47.989922 ], [ 23.203125, 48.107431 ], [ 23.378906, 48.107431 ], [ 23.378906, 47.989922 ], [ 24.433594, 47.989922 ], [ 24.433594, 47.872144 ], [ 24.609375, 47.872144 ], [ 24.609375, 47.754098 ], [ 25.136719, 47.754098 ], [ 25.136719, 47.872144 ], [ 25.664062, 47.872144 ], [ 25.664062, 47.989922 ], [ 26.015625, 47.989922 ], [ 26.015625, 48.107431 ], [ 26.191406, 48.107431 ], [ 26.191406, 48.224673 ], [ 26.542969, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 43.961191 ], [ 27.773438, 43.961191 ], [ 27.773438, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.707594 ], [ 28.476562, 43.707594 ], [ 28.476562, 43.580391 ], [ 28.300781, 43.580391 ], [ 28.300781, 43.325178 ], [ 28.125000, 43.325178 ], [ 28.125000, 43.197167 ], [ 27.949219, 43.197167 ], [ 27.949219, 42.940339 ], [ 27.773438, 42.940339 ], [ 27.773438, 42.682435 ], [ 27.597656, 42.682435 ], [ 27.597656, 42.423457 ], [ 27.773438, 42.423457 ], [ 27.773438, 42.163403 ], [ 27.949219, 42.163403 ], [ 27.949219, 42.032974 ], [ 27.421875, 42.032974 ], [ 27.421875, 42.163403 ], [ 27.070312, 42.163403 ], [ 27.070312, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 41.902277 ], [ 26.367188, 41.902277 ], [ 26.367188, 41.771312 ], [ 26.191406, 41.771312 ], [ 26.191406, 41.376809 ], [ 25.839844, 41.376809 ], [ 25.839844, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.376809 ], [ 23.906250, 41.376809 ], [ 23.906250, 41.244772 ], [ 23.203125, 41.244772 ], [ 23.203125, 41.376809 ], [ 23.027344, 41.376809 ], [ 23.027344, 41.640078 ], [ 22.851562, 41.640078 ], [ 22.851562, 42.032974 ], [ 22.675781, 42.032974 ], [ 22.675781, 42.163403 ], [ 22.324219, 42.163403 ], [ 22.324219, 42.293564 ], [ 22.500000, 42.293564 ], [ 22.500000, 42.682435 ], [ 22.675781, 42.682435 ], [ 22.675781, 42.940339 ], [ 22.851562, 42.940339 ], [ 22.851562, 43.068888 ], [ 23.027344, 43.068888 ], [ 23.027344, 43.197167 ], [ 22.851562, 43.197167 ], [ 22.851562, 43.325178 ], [ 22.675781, 43.325178 ], [ 22.675781, 43.452919 ], [ 22.500000, 43.452919 ], [ 22.500000, 43.707594 ], [ 22.324219, 43.707594 ], [ 22.324219, 43.961191 ], [ 22.500000, 43.961191 ], [ 22.500000, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 23.554688, 43.834527 ], [ 23.554688, 43.707594 ], [ 25.664062, 43.707594 ], [ 25.664062, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.961191 ], [ 26.367188, 43.961191 ], [ 26.367188, 44.087585 ], [ 27.070312, 44.087585 ], [ 27.070312, 44.213710 ], [ 27.246094, 44.213710 ], [ 27.246094, 44.087585 ], [ 27.421875, 44.087585 ], [ 27.421875, 43.961191 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.246094, 44.213710 ], [ 27.246094, 44.087585 ], [ 27.421875, 44.087585 ], [ 27.421875, 43.961191 ], [ 27.773438, 43.961191 ], [ 27.773438, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.707594 ], [ 28.476562, 43.707594 ], [ 28.476562, 43.580391 ], [ 28.300781, 43.580391 ], [ 28.300781, 43.325178 ], [ 28.125000, 43.325178 ], [ 28.125000, 43.197167 ], [ 27.949219, 43.197167 ], [ 27.949219, 42.940339 ], [ 27.773438, 42.940339 ], [ 27.773438, 42.682435 ], [ 27.597656, 42.682435 ], [ 27.597656, 42.423457 ], [ 27.773438, 42.423457 ], [ 27.773438, 42.163403 ], [ 27.949219, 42.163403 ], [ 27.949219, 42.032974 ], [ 27.421875, 42.032974 ], [ 27.421875, 42.163403 ], [ 27.070312, 42.163403 ], [ 27.070312, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 41.902277 ], [ 26.367188, 41.902277 ], [ 26.367188, 41.771312 ], [ 26.191406, 41.771312 ], [ 26.191406, 41.376809 ], [ 25.839844, 41.376809 ], [ 25.839844, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.376809 ], [ 23.906250, 41.376809 ], [ 23.906250, 41.244772 ], [ 23.203125, 41.244772 ], [ 23.203125, 41.376809 ], [ 23.027344, 41.376809 ], [ 23.027344, 41.640078 ], [ 22.851562, 41.640078 ], [ 22.851562, 42.032974 ], [ 22.675781, 42.032974 ], [ 22.675781, 42.163403 ], [ 22.324219, 42.163403 ], [ 22.324219, 42.293564 ], [ 22.500000, 42.293564 ], [ 22.500000, 42.682435 ], [ 22.675781, 42.682435 ], [ 22.675781, 42.940339 ], [ 22.851562, 42.940339 ], [ 22.851562, 43.068888 ], [ 23.027344, 43.068888 ], [ 23.027344, 43.197167 ], [ 22.851562, 43.197167 ], [ 22.851562, 43.325178 ], [ 22.675781, 43.325178 ], [ 22.675781, 43.452919 ], [ 22.500000, 43.452919 ], [ 22.500000, 43.707594 ], [ 22.324219, 43.707594 ], [ 22.324219, 43.961191 ], [ 22.500000, 43.961191 ], [ 22.500000, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 23.554688, 43.834527 ], [ 23.554688, 43.707594 ], [ 25.664062, 43.707594 ], [ 25.664062, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.961191 ], [ 26.367188, 43.961191 ], [ 26.367188, 44.087585 ], [ 27.070312, 44.087585 ], [ 27.070312, 44.213710 ], [ 27.246094, 44.213710 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 48.224673 ], [ 28.125000, 48.224673 ], [ 28.125000, 48.107431 ], [ 28.652344, 48.107431 ], [ 28.652344, 47.989922 ], [ 29.003906, 47.989922 ], [ 29.003906, 47.872144 ], [ 29.179688, 47.872144 ], [ 29.179688, 47.635784 ], [ 29.003906, 47.635784 ], [ 29.003906, 47.398349 ], [ 29.355469, 47.398349 ], [ 29.355469, 47.159840 ], [ 29.531250, 47.159840 ], [ 29.531250, 46.800059 ], [ 29.707031, 46.800059 ], [ 29.707031, 46.679594 ], [ 29.882812, 46.679594 ], [ 29.882812, 46.437857 ], [ 30.058594, 46.437857 ], [ 30.058594, 46.316584 ], [ 29.355469, 46.316584 ], [ 29.355469, 46.437857 ], [ 28.828125, 46.437857 ], [ 28.828125, 46.316584 ], [ 29.003906, 46.316584 ], [ 29.003906, 46.195042 ], [ 28.828125, 46.195042 ], [ 28.828125, 45.951150 ], [ 28.652344, 45.951150 ], [ 28.652344, 45.706179 ], [ 28.476562, 45.706179 ], [ 28.476562, 45.460131 ], [ 28.300781, 45.460131 ], [ 28.300781, 45.706179 ], [ 28.125000, 45.706179 ], [ 28.125000, 46.800059 ], [ 27.949219, 46.800059 ], [ 27.949219, 47.040182 ], [ 27.773438, 47.040182 ], [ 27.773438, 47.279229 ], [ 27.597656, 47.279229 ], [ 27.597656, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.754098 ], [ 27.246094, 47.754098 ], [ 27.246094, 47.872144 ], [ 27.070312, 47.872144 ], [ 27.070312, 47.989922 ], [ 26.894531, 47.989922 ], [ 26.894531, 48.107431 ], [ 26.542969, 48.107431 ], [ 26.542969, 48.224673 ], [ 26.894531, 48.224673 ], [ 26.894531, 48.341646 ], [ 27.421875, 48.341646 ], [ 27.421875, 48.458352 ], [ 27.597656, 48.458352 ], [ 27.597656, 48.341646 ], [ 27.773438, 48.341646 ], [ 27.773438, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.597656, 48.458352 ], [ 27.597656, 48.341646 ], [ 27.773438, 48.341646 ], [ 27.773438, 48.224673 ], [ 28.125000, 48.224673 ], [ 28.125000, 48.107431 ], [ 28.652344, 48.107431 ], [ 28.652344, 47.989922 ], [ 29.003906, 47.989922 ], [ 29.003906, 47.872144 ], [ 29.179688, 47.872144 ], [ 29.179688, 47.635784 ], [ 29.003906, 47.635784 ], [ 29.003906, 47.398349 ], [ 29.355469, 47.398349 ], [ 29.355469, 47.159840 ], [ 29.531250, 47.159840 ], [ 29.531250, 46.800059 ], [ 29.707031, 46.800059 ], [ 29.707031, 46.679594 ], [ 29.882812, 46.679594 ], [ 29.882812, 46.437857 ], [ 30.058594, 46.437857 ], [ 30.058594, 46.316584 ], [ 29.355469, 46.316584 ], [ 29.355469, 46.437857 ], [ 28.828125, 46.437857 ], [ 28.828125, 46.316584 ], [ 29.003906, 46.316584 ], [ 29.003906, 46.195042 ], [ 28.828125, 46.195042 ], [ 28.828125, 45.951150 ], [ 28.652344, 45.951150 ], [ 28.652344, 45.706179 ], [ 28.476562, 45.706179 ], [ 28.476562, 45.460131 ], [ 28.300781, 45.460131 ], [ 28.300781, 45.706179 ], [ 28.125000, 45.706179 ], [ 28.125000, 46.800059 ], [ 27.949219, 46.800059 ], [ 27.949219, 47.040182 ], [ 27.773438, 47.040182 ], [ 27.773438, 47.279229 ], [ 27.597656, 47.279229 ], [ 27.597656, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.754098 ], [ 27.246094, 47.754098 ], [ 27.246094, 47.872144 ], [ 27.070312, 47.872144 ], [ 27.070312, 47.989922 ], [ 26.894531, 47.989922 ], [ 26.894531, 48.107431 ], [ 26.542969, 48.107431 ], [ 26.542969, 48.224673 ], [ 26.894531, 48.224673 ], [ 26.894531, 48.341646 ], [ 27.421875, 48.341646 ], [ 27.421875, 48.458352 ], [ 27.597656, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.944265 ], [ 34.277344, 51.944265 ], [ 34.277344, 51.727028 ], [ 34.453125, 51.727028 ], [ 34.453125, 51.618017 ], [ 34.101562, 51.618017 ], [ 34.101562, 51.399206 ], [ 34.277344, 51.399206 ], [ 34.277344, 51.289406 ], [ 34.453125, 51.289406 ], [ 34.453125, 51.179343 ], [ 34.980469, 51.179343 ], [ 34.980469, 51.069017 ], [ 35.156250, 51.069017 ], [ 35.156250, 50.847573 ], [ 35.332031, 50.847573 ], [ 35.332031, 50.513427 ], [ 35.683594, 50.513427 ], [ 35.683594, 50.401515 ], [ 36.035156, 50.401515 ], [ 36.035156, 50.289339 ], [ 36.386719, 50.289339 ], [ 36.386719, 50.176898 ], [ 36.914062, 50.176898 ], [ 36.914062, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 50.401515 ], [ 37.441406, 50.401515 ], [ 37.441406, 50.289339 ], [ 37.617188, 50.289339 ], [ 37.617188, 50.176898 ], [ 37.792969, 50.176898 ], [ 37.792969, 49.951220 ], [ 38.847656, 49.951220 ], [ 38.847656, 49.837982 ], [ 39.199219, 49.837982 ], [ 39.199219, 49.724479 ], [ 39.726562, 49.724479 ], [ 39.726562, 49.610710 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.152970 ], [ 39.902344, 49.152970 ], [ 39.902344, 48.922499 ], [ 39.726562, 48.922499 ], [ 39.726562, 48.458352 ], [ 39.902344, 48.458352 ], [ 39.902344, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 47.872144 ], [ 38.847656, 47.872144 ], [ 38.847656, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.635784 ], [ 38.496094, 47.635784 ], [ 38.496094, 47.517201 ], [ 38.320312, 47.517201 ], [ 38.320312, 47.279229 ], [ 38.144531, 47.279229 ], [ 38.144531, 47.159840 ], [ 37.968750, 47.159840 ], [ 37.968750, 47.040182 ], [ 37.441406, 47.040182 ], [ 37.441406, 46.920255 ], [ 37.265625, 46.920255 ], [ 37.265625, 46.800059 ], [ 36.914062, 46.800059 ], [ 36.914062, 46.679594 ], [ 35.859375, 46.679594 ], [ 35.859375, 46.558860 ], [ 35.507812, 46.558860 ], [ 35.507812, 46.437857 ], [ 35.156250, 46.437857 ], [ 35.156250, 46.316584 ], [ 34.980469, 46.316584 ], [ 34.980469, 45.583290 ], [ 35.332031, 45.583290 ], [ 35.332031, 45.460131 ], [ 36.562500, 45.460131 ], [ 36.562500, 45.213004 ], [ 36.386719, 45.213004 ], [ 36.386719, 45.089036 ], [ 35.859375, 45.089036 ], [ 35.859375, 44.964798 ], [ 35.156250, 44.964798 ], [ 35.156250, 44.840291 ], [ 34.804688, 44.840291 ], [ 34.804688, 44.715514 ], [ 34.628906, 44.715514 ], [ 34.628906, 44.590467 ], [ 34.453125, 44.590467 ], [ 34.453125, 44.465151 ], [ 34.101562, 44.465151 ], [ 34.101562, 44.339565 ], [ 33.750000, 44.339565 ], [ 33.750000, 44.465151 ], [ 33.398438, 44.465151 ], [ 33.398438, 44.840291 ], [ 33.574219, 44.840291 ], [ 33.574219, 45.089036 ], [ 33.222656, 45.089036 ], [ 33.222656, 45.213004 ], [ 32.695312, 45.213004 ], [ 32.695312, 45.460131 ], [ 32.871094, 45.460131 ], [ 32.871094, 45.583290 ], [ 33.222656, 45.583290 ], [ 33.222656, 45.706179 ], [ 33.574219, 45.706179 ], [ 33.574219, 45.828799 ], [ 33.398438, 45.828799 ], [ 33.398438, 45.951150 ], [ 33.222656, 45.951150 ], [ 33.222656, 46.073231 ], [ 32.695312, 46.073231 ], [ 32.695312, 46.195042 ], [ 31.992188, 46.195042 ], [ 31.992188, 46.316584 ], [ 31.816406, 46.316584 ], [ 31.816406, 46.437857 ], [ 31.640625, 46.437857 ], [ 31.640625, 46.679594 ], [ 31.289062, 46.679594 ], [ 31.289062, 46.558860 ], [ 30.761719, 46.558860 ], [ 30.761719, 46.437857 ], [ 30.585938, 46.437857 ], [ 30.585938, 46.195042 ], [ 30.410156, 46.195042 ], [ 30.410156, 45.951150 ], [ 30.234375, 45.951150 ], [ 30.234375, 45.828799 ], [ 30.058594, 45.828799 ], [ 30.058594, 45.706179 ], [ 29.882812, 45.706179 ], [ 29.882812, 45.460131 ], [ 29.707031, 45.460131 ], [ 29.707031, 45.336702 ], [ 29.179688, 45.336702 ], [ 29.179688, 45.460131 ], [ 29.003906, 45.460131 ], [ 29.003906, 45.336702 ], [ 28.300781, 45.336702 ], [ 28.300781, 45.460131 ], [ 28.476562, 45.460131 ], [ 28.476562, 45.706179 ], [ 28.652344, 45.706179 ], [ 28.652344, 45.951150 ], [ 28.828125, 45.951150 ], [ 28.828125, 46.195042 ], [ 29.003906, 46.195042 ], [ 29.003906, 46.316584 ], [ 28.828125, 46.316584 ], [ 28.828125, 46.437857 ], [ 29.355469, 46.437857 ], [ 29.355469, 46.316584 ], [ 30.058594, 46.316584 ], [ 30.058594, 46.437857 ], [ 29.882812, 46.437857 ], [ 29.882812, 46.679594 ], [ 29.707031, 46.679594 ], [ 29.707031, 46.800059 ], [ 29.531250, 46.800059 ], [ 29.531250, 47.159840 ], [ 29.355469, 47.159840 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.398349 ], [ 29.003906, 47.635784 ], [ 29.179688, 47.635784 ], [ 29.179688, 47.872144 ], [ 29.003906, 47.872144 ], [ 29.003906, 47.989922 ], [ 28.652344, 47.989922 ], [ 28.652344, 48.107431 ], [ 28.125000, 48.107431 ], [ 28.125000, 48.224673 ], [ 27.773438, 48.224673 ], [ 27.773438, 48.341646 ], [ 27.597656, 48.341646 ], [ 27.597656, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 48.341646 ], [ 26.894531, 48.341646 ], [ 26.894531, 48.224673 ], [ 26.191406, 48.224673 ], [ 26.191406, 48.107431 ], [ 26.015625, 48.107431 ], [ 26.015625, 47.989922 ], [ 25.664062, 47.989922 ], [ 25.664062, 47.872144 ], [ 25.136719, 47.872144 ], [ 25.136719, 47.754098 ], [ 24.609375, 47.754098 ], [ 24.609375, 47.872144 ], [ 24.433594, 47.872144 ], [ 24.433594, 47.989922 ], [ 23.378906, 47.989922 ], [ 23.378906, 48.107431 ], [ 23.203125, 48.107431 ], [ 23.203125, 47.989922 ], [ 22.851562, 47.989922 ], [ 22.851562, 47.872144 ], [ 22.675781, 47.872144 ], [ 22.675781, 48.107431 ], [ 22.500000, 48.107431 ], [ 22.500000, 48.224673 ], [ 22.324219, 48.224673 ], [ 22.324219, 48.341646 ], [ 22.148438, 48.341646 ], [ 22.148438, 48.574790 ], [ 22.324219, 48.574790 ], [ 22.324219, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 49.037868 ], [ 22.851562, 49.037868 ], [ 22.851562, 49.152970 ], [ 22.675781, 49.152970 ], [ 22.675781, 49.382373 ], [ 22.500000, 49.382373 ], [ 22.500000, 49.496675 ], [ 22.675781, 49.496675 ], [ 22.675781, 49.724479 ], [ 22.851562, 49.724479 ], [ 22.851562, 49.837982 ], [ 23.027344, 49.837982 ], [ 23.027344, 49.951220 ], [ 23.203125, 49.951220 ], [ 23.203125, 50.176898 ], [ 23.378906, 50.176898 ], [ 23.378906, 50.289339 ], [ 23.730469, 50.289339 ], [ 23.730469, 50.401515 ], [ 23.906250, 50.401515 ], [ 23.906250, 50.513427 ], [ 24.082031, 50.513427 ], [ 24.082031, 50.847573 ], [ 23.906250, 50.847573 ], [ 23.906250, 51.179343 ], [ 23.730469, 51.179343 ], [ 23.730469, 51.399206 ], [ 23.554688, 51.399206 ], [ 23.554688, 51.618017 ], [ 24.257812, 51.618017 ], [ 24.257812, 51.727028 ], [ 24.609375, 51.727028 ], [ 24.609375, 51.835778 ], [ 25.136719, 51.835778 ], [ 25.136719, 51.944265 ], [ 25.664062, 51.944265 ], [ 25.664062, 51.835778 ], [ 26.542969, 51.835778 ], [ 26.542969, 51.727028 ], [ 27.070312, 51.727028 ], [ 27.070312, 51.618017 ], [ 28.300781, 51.618017 ], [ 28.300781, 51.508742 ], [ 28.476562, 51.508742 ], [ 28.476562, 51.399206 ], [ 28.828125, 51.399206 ], [ 28.828125, 51.508742 ], [ 29.179688, 51.508742 ], [ 29.179688, 51.399206 ], [ 30.234375, 51.399206 ], [ 30.234375, 51.289406 ], [ 30.585938, 51.289406 ], [ 30.585938, 51.835778 ], [ 30.761719, 51.835778 ], [ 30.761719, 51.944265 ], [ 30.937500, 51.944265 ], [ 30.937500, 52.052490 ], [ 32.167969, 52.052490 ], [ 32.167969, 52.160455 ], [ 32.343750, 52.160455 ], [ 32.343750, 52.268157 ], [ 33.398438, 52.268157 ], [ 33.398438, 52.375599 ], [ 33.750000, 52.375599 ], [ 33.750000, 52.268157 ], [ 33.925781, 52.268157 ], [ 33.925781, 52.052490 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.375599 ], [ 33.750000, 52.268157 ], [ 33.925781, 52.268157 ], [ 33.925781, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.944265 ], [ 34.277344, 51.944265 ], [ 34.277344, 51.727028 ], [ 34.453125, 51.727028 ], [ 34.453125, 51.618017 ], [ 34.101562, 51.618017 ], [ 34.101562, 51.399206 ], [ 34.277344, 51.399206 ], [ 34.277344, 51.289406 ], [ 34.453125, 51.289406 ], [ 34.453125, 51.179343 ], [ 34.980469, 51.179343 ], [ 34.980469, 51.069017 ], [ 35.156250, 51.069017 ], [ 35.156250, 50.847573 ], [ 35.332031, 50.847573 ], [ 35.332031, 50.513427 ], [ 35.683594, 50.513427 ], [ 35.683594, 50.401515 ], [ 36.035156, 50.401515 ], [ 36.035156, 50.289339 ], [ 36.386719, 50.289339 ], [ 36.386719, 50.176898 ], [ 36.914062, 50.176898 ], [ 36.914062, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 50.401515 ], [ 37.441406, 50.401515 ], [ 37.441406, 50.289339 ], [ 37.617188, 50.289339 ], [ 37.617188, 50.176898 ], [ 37.792969, 50.176898 ], [ 37.792969, 49.951220 ], [ 38.847656, 49.951220 ], [ 38.847656, 49.837982 ], [ 39.199219, 49.837982 ], [ 39.199219, 49.724479 ], [ 39.726562, 49.724479 ], [ 39.726562, 49.610710 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.152970 ], [ 39.902344, 49.152970 ], [ 39.902344, 48.922499 ], [ 39.726562, 48.922499 ], [ 39.726562, 48.458352 ], [ 39.902344, 48.458352 ], [ 39.902344, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 47.872144 ], [ 38.847656, 47.872144 ], [ 38.847656, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.635784 ], [ 38.496094, 47.635784 ], [ 38.496094, 47.517201 ], [ 38.320312, 47.517201 ], [ 38.320312, 47.279229 ], [ 38.144531, 47.279229 ], [ 38.144531, 47.159840 ], [ 37.968750, 47.159840 ], [ 37.968750, 47.040182 ], [ 37.441406, 47.040182 ], [ 37.441406, 46.920255 ], [ 37.265625, 46.920255 ], [ 37.265625, 46.800059 ], [ 36.914062, 46.800059 ], [ 36.914062, 46.679594 ], [ 35.859375, 46.679594 ], [ 35.859375, 46.558860 ], [ 35.507812, 46.558860 ], [ 35.507812, 46.437857 ], [ 35.156250, 46.437857 ], [ 35.156250, 46.316584 ], [ 34.980469, 46.316584 ], [ 34.980469, 45.583290 ], [ 35.332031, 45.583290 ], [ 35.332031, 45.460131 ], [ 36.562500, 45.460131 ], [ 36.562500, 45.213004 ], [ 36.386719, 45.213004 ], [ 36.386719, 45.089036 ], [ 35.859375, 45.089036 ], [ 35.859375, 44.964798 ], [ 35.156250, 44.964798 ], [ 35.156250, 44.840291 ], [ 34.804688, 44.840291 ], [ 34.804688, 44.715514 ], [ 34.628906, 44.715514 ], [ 34.628906, 44.590467 ], [ 34.453125, 44.590467 ], [ 34.453125, 44.465151 ], [ 34.101562, 44.465151 ], [ 34.101562, 44.339565 ], [ 33.750000, 44.339565 ], [ 33.750000, 44.465151 ], [ 33.398438, 44.465151 ], [ 33.398438, 44.840291 ], [ 33.574219, 44.840291 ], [ 33.574219, 45.089036 ], [ 33.222656, 45.089036 ], [ 33.222656, 45.213004 ], [ 32.695312, 45.213004 ], [ 32.695312, 45.460131 ], [ 32.871094, 45.460131 ], [ 32.871094, 45.583290 ], [ 33.222656, 45.583290 ], [ 33.222656, 45.706179 ], [ 33.574219, 45.706179 ], [ 33.574219, 45.828799 ], [ 33.398438, 45.828799 ], [ 33.398438, 45.951150 ], [ 33.222656, 45.951150 ], [ 33.222656, 46.073231 ], [ 32.695312, 46.073231 ], [ 32.695312, 46.195042 ], [ 31.992188, 46.195042 ], [ 31.992188, 46.316584 ], [ 31.816406, 46.316584 ], [ 31.816406, 46.437857 ], [ 31.640625, 46.437857 ], [ 31.640625, 46.679594 ], [ 31.289062, 46.679594 ], [ 31.289062, 46.558860 ], [ 30.761719, 46.558860 ], [ 30.761719, 46.437857 ], [ 30.585938, 46.437857 ], [ 30.585938, 46.195042 ], [ 30.410156, 46.195042 ], [ 30.410156, 45.951150 ], [ 30.234375, 45.951150 ], [ 30.234375, 45.828799 ], [ 30.058594, 45.828799 ], [ 30.058594, 45.706179 ], [ 29.882812, 45.706179 ], [ 29.882812, 45.460131 ], [ 29.707031, 45.460131 ], [ 29.707031, 45.336702 ], [ 29.179688, 45.336702 ], [ 29.179688, 45.460131 ], [ 29.003906, 45.460131 ], [ 29.003906, 45.336702 ], [ 28.300781, 45.336702 ], [ 28.300781, 45.460131 ], [ 28.476562, 45.460131 ], [ 28.476562, 45.706179 ], [ 28.652344, 45.706179 ], [ 28.652344, 45.951150 ], [ 28.828125, 45.951150 ], [ 28.828125, 46.195042 ], [ 29.003906, 46.195042 ], [ 29.003906, 46.316584 ], [ 28.828125, 46.316584 ], [ 28.828125, 46.437857 ], [ 29.355469, 46.437857 ], [ 29.355469, 46.316584 ], [ 30.058594, 46.316584 ], [ 30.058594, 46.437857 ], [ 29.882812, 46.437857 ], [ 29.882812, 46.679594 ], [ 29.707031, 46.679594 ], [ 29.707031, 46.800059 ], [ 29.531250, 46.800059 ], [ 29.531250, 47.159840 ], [ 29.355469, 47.159840 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.398349 ], [ 29.003906, 47.635784 ], [ 29.179688, 47.635784 ], [ 29.179688, 47.872144 ], [ 29.003906, 47.872144 ], [ 29.003906, 47.989922 ], [ 28.652344, 47.989922 ], [ 28.652344, 48.107431 ], [ 28.125000, 48.107431 ], [ 28.125000, 48.224673 ], [ 27.773438, 48.224673 ], [ 27.773438, 48.341646 ], [ 27.597656, 48.341646 ], [ 27.597656, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 48.341646 ], [ 26.894531, 48.341646 ], [ 26.894531, 48.224673 ], [ 26.191406, 48.224673 ], [ 26.191406, 48.107431 ], [ 26.015625, 48.107431 ], [ 26.015625, 47.989922 ], [ 25.664062, 47.989922 ], [ 25.664062, 47.872144 ], [ 25.136719, 47.872144 ], [ 25.136719, 47.754098 ], [ 24.609375, 47.754098 ], [ 24.609375, 47.872144 ], [ 24.433594, 47.872144 ], [ 24.433594, 47.989922 ], [ 23.378906, 47.989922 ], [ 23.378906, 48.107431 ], [ 23.203125, 48.107431 ], [ 23.203125, 47.989922 ], [ 22.851562, 47.989922 ], [ 22.851562, 47.872144 ], [ 22.675781, 47.872144 ], [ 22.675781, 48.107431 ], [ 22.500000, 48.107431 ], [ 22.500000, 48.224673 ], [ 22.324219, 48.224673 ], [ 22.324219, 48.341646 ], [ 22.148438, 48.341646 ], [ 22.148438, 48.574790 ], [ 22.324219, 48.574790 ], [ 22.324219, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 49.037868 ], [ 22.851562, 49.037868 ], [ 22.851562, 49.152970 ], [ 22.675781, 49.152970 ], [ 22.675781, 49.382373 ], [ 22.500000, 49.382373 ], [ 22.500000, 49.496675 ], [ 22.675781, 49.496675 ], [ 22.675781, 49.724479 ], [ 22.851562, 49.724479 ], [ 22.851562, 49.837982 ], [ 23.027344, 49.837982 ], [ 23.027344, 49.951220 ], [ 23.203125, 49.951220 ], [ 23.203125, 50.176898 ], [ 23.378906, 50.176898 ], [ 23.378906, 50.289339 ], [ 23.730469, 50.289339 ], [ 23.730469, 50.401515 ], [ 23.906250, 50.401515 ], [ 23.906250, 50.513427 ], [ 24.082031, 50.513427 ], [ 24.082031, 50.847573 ], [ 23.906250, 50.847573 ], [ 23.906250, 51.179343 ], [ 23.730469, 51.179343 ], [ 23.730469, 51.399206 ], [ 23.554688, 51.399206 ], [ 23.554688, 51.618017 ], [ 24.257812, 51.618017 ], [ 24.257812, 51.727028 ], [ 24.609375, 51.727028 ], [ 24.609375, 51.835778 ], [ 25.136719, 51.835778 ], [ 25.136719, 51.944265 ], [ 25.664062, 51.944265 ], [ 25.664062, 51.835778 ], [ 26.542969, 51.835778 ], [ 26.542969, 51.727028 ], [ 27.070312, 51.727028 ], [ 27.070312, 51.618017 ], [ 28.300781, 51.618017 ], [ 28.300781, 51.508742 ], [ 28.476562, 51.508742 ], [ 28.476562, 51.399206 ], [ 28.828125, 51.399206 ], [ 28.828125, 51.508742 ], [ 29.179688, 51.508742 ], [ 29.179688, 51.399206 ], [ 30.234375, 51.399206 ], [ 30.234375, 51.289406 ], [ 30.585938, 51.289406 ], [ 30.585938, 51.835778 ], [ 30.761719, 51.835778 ], [ 30.761719, 51.944265 ], [ 30.937500, 51.944265 ], [ 30.937500, 52.052490 ], [ 32.167969, 52.052490 ], [ 32.167969, 52.160455 ], [ 32.343750, 52.160455 ], [ 32.343750, 52.268157 ], [ 33.398438, 52.268157 ], [ 33.398438, 52.375599 ], [ 33.750000, 52.375599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.605469, 43.325178 ], [ 41.484375, 43.325178 ], [ 41.484375, 43.197167 ], [ 42.363281, 43.197167 ], [ 42.363281, 43.068888 ], [ 42.714844, 43.068888 ], [ 42.714844, 42.940339 ], [ 43.066406, 42.940339 ], [ 43.066406, 42.811522 ], [ 43.417969, 42.811522 ], [ 43.417969, 42.682435 ], [ 43.769531, 42.682435 ], [ 43.769531, 42.553080 ], [ 44.296875, 42.553080 ], [ 44.296875, 42.682435 ], [ 44.824219, 42.682435 ], [ 44.824219, 42.553080 ], [ 45.527344, 42.553080 ], [ 45.527344, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 45.878906, 42.032974 ], [ 45.878906, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.472656, 41.244772 ], [ 44.472656, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.890625, 41.376809 ], [ 42.890625, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 42.187500, 41.640078 ], [ 42.187500, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.640078 ], [ 41.660156, 41.640078 ], [ 41.660156, 42.293564 ], [ 41.484375, 42.293564 ], [ 41.484375, 42.682435 ], [ 41.308594, 42.682435 ], [ 41.308594, 42.811522 ], [ 41.132812, 42.811522 ], [ 41.132812, 42.940339 ], [ 40.957031, 42.940339 ], [ 40.957031, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.325178 ], [ 39.902344, 43.325178 ], [ 39.902344, 43.452919 ], [ 40.078125, 43.452919 ], [ 40.078125, 43.580391 ], [ 40.253906, 43.580391 ], [ 40.253906, 43.452919 ], [ 40.605469, 43.452919 ], [ 40.605469, 43.325178 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, 43.580391 ], [ 40.253906, 43.452919 ], [ 40.605469, 43.452919 ], [ 40.605469, 43.325178 ], [ 41.484375, 43.325178 ], [ 41.484375, 43.197167 ], [ 42.363281, 43.197167 ], [ 42.363281, 43.068888 ], [ 42.714844, 43.068888 ], [ 42.714844, 42.940339 ], [ 43.066406, 42.940339 ], [ 43.066406, 42.811522 ], [ 43.417969, 42.811522 ], [ 43.417969, 42.682435 ], [ 43.769531, 42.682435 ], [ 43.769531, 42.553080 ], [ 44.296875, 42.553080 ], [ 44.296875, 42.682435 ], [ 44.824219, 42.682435 ], [ 44.824219, 42.553080 ], [ 45.527344, 42.553080 ], [ 45.527344, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 45.878906, 42.032974 ], [ 45.878906, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.472656, 41.244772 ], [ 44.472656, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.890625, 41.376809 ], [ 42.890625, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 42.187500, 41.640078 ], [ 42.187500, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.640078 ], [ 41.660156, 41.640078 ], [ 41.660156, 42.293564 ], [ 41.484375, 42.293564 ], [ 41.484375, 42.682435 ], [ 41.308594, 42.682435 ], [ 41.308594, 42.811522 ], [ 41.132812, 42.811522 ], [ 41.132812, 42.940339 ], [ 40.957031, 42.940339 ], [ 40.957031, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.325178 ], [ 39.902344, 43.325178 ], [ 39.902344, 43.452919 ], [ 40.078125, 43.452919 ], [ 40.078125, 43.580391 ], [ 40.253906, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.082031, 40.313043 ], [ 20.742188, 40.313043 ], [ 20.742188, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.972656, 40.979898 ], [ 21.972656, 41.112469 ], [ 22.675781, 41.112469 ], [ 22.675781, 41.244772 ], [ 23.027344, 41.244772 ], [ 23.027344, 41.376809 ], [ 23.203125, 41.376809 ], [ 23.203125, 41.244772 ], [ 23.906250, 41.244772 ], [ 23.906250, 41.376809 ], [ 24.257812, 41.376809 ], [ 24.257812, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.839844, 41.244772 ], [ 25.839844, 41.376809 ], [ 26.191406, 41.376809 ], [ 26.191406, 41.640078 ], [ 26.367188, 41.640078 ], [ 26.367188, 41.508577 ], [ 26.542969, 41.508577 ], [ 26.542969, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.847060 ], [ 25.136719, 40.847060 ], [ 25.136719, 40.979898 ], [ 24.785156, 40.979898 ], [ 24.785156, 40.847060 ], [ 24.082031, 40.847060 ], [ 24.082031, 40.713956 ], [ 23.730469, 40.713956 ], [ 23.730469, 40.580585 ], [ 23.906250, 40.580585 ], [ 23.906250, 40.446947 ], [ 24.082031, 40.446947 ], [ 24.082031, 40.313043 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.367188, 41.640078 ], [ 26.367188, 41.508577 ], [ 26.542969, 41.508577 ], [ 26.542969, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.847060 ], [ 25.136719, 40.847060 ], [ 25.136719, 40.979898 ], [ 24.785156, 40.979898 ], [ 24.785156, 40.847060 ], [ 24.082031, 40.847060 ], [ 24.082031, 40.713956 ], [ 23.730469, 40.713956 ], [ 23.730469, 40.580585 ], [ 23.906250, 40.580585 ], [ 23.906250, 40.446947 ], [ 24.082031, 40.446947 ], [ 24.082031, 40.313043 ], [ 20.742188, 40.313043 ], [ 20.742188, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.972656, 40.979898 ], [ 21.972656, 41.112469 ], [ 22.675781, 41.112469 ], [ 22.675781, 41.244772 ], [ 23.027344, 41.244772 ], [ 23.027344, 41.376809 ], [ 23.203125, 41.376809 ], [ 23.203125, 41.244772 ], [ 23.906250, 41.244772 ], [ 23.906250, 41.376809 ], [ 24.257812, 41.376809 ], [ 24.257812, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.839844, 41.244772 ], [ 25.839844, 41.376809 ], [ 26.191406, 41.376809 ], [ 26.191406, 41.640078 ], [ 26.367188, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.507812, 41.771312 ], [ 35.859375, 41.771312 ], [ 35.859375, 41.640078 ], [ 36.210938, 41.640078 ], [ 36.210938, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 39.902344, 41.112469 ], [ 39.902344, 40.979898 ], [ 40.605469, 40.979898 ], [ 40.605469, 41.112469 ], [ 40.957031, 41.112469 ], [ 40.957031, 41.244772 ], [ 41.132812, 41.244772 ], [ 41.132812, 41.376809 ], [ 41.484375, 41.376809 ], [ 41.484375, 41.508577 ], [ 42.187500, 41.508577 ], [ 42.187500, 41.640078 ], [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.417969, 41.244772 ], [ 43.417969, 41.112469 ], [ 43.593750, 41.112469 ], [ 43.593750, 40.847060 ], [ 43.769531, 40.847060 ], [ 43.769531, 40.446947 ], [ 43.593750, 40.446947 ], [ 43.593750, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.580585 ], [ 29.003906, 40.580585 ], [ 29.003906, 40.979898 ], [ 29.179688, 40.979898 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 31.992188, 41.508577 ], [ 31.992188, 41.640078 ], [ 32.343750, 41.640078 ], [ 32.343750, 41.771312 ], [ 32.695312, 41.771312 ], [ 32.695312, 41.902277 ], [ 33.398438, 41.902277 ], [ 33.398438, 42.032974 ], [ 35.156250, 42.032974 ], [ 35.156250, 41.902277 ], [ 35.507812, 41.902277 ], [ 35.507812, 41.771312 ] ] ], [ [ [ 27.949219, 41.771312 ], [ 28.125000, 41.771312 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 29.003906, 41.244772 ], [ 29.003906, 41.112469 ], [ 28.300781, 41.112469 ], [ 28.300781, 40.979898 ], [ 27.597656, 40.979898 ], [ 27.597656, 40.847060 ], [ 27.421875, 40.847060 ], [ 27.421875, 40.713956 ], [ 27.246094, 40.713956 ], [ 27.246094, 40.580585 ], [ 27.070312, 40.580585 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.313043 ], [ 26.191406, 40.313043 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.367188, 40.847060 ], [ 26.367188, 41.244772 ], [ 26.542969, 41.244772 ], [ 26.542969, 41.508577 ], [ 26.367188, 41.508577 ], [ 26.367188, 41.640078 ], [ 26.191406, 41.640078 ], [ 26.191406, 41.771312 ], [ 26.367188, 41.771312 ], [ 26.367188, 41.902277 ], [ 26.718750, 41.902277 ], [ 26.718750, 42.032974 ], [ 27.070312, 42.032974 ], [ 27.070312, 42.163403 ], [ 27.421875, 42.163403 ], [ 27.421875, 42.032974 ], [ 27.949219, 42.032974 ], [ 27.949219, 41.771312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.032974 ], [ 35.156250, 41.902277 ], [ 35.507812, 41.902277 ], [ 35.507812, 41.771312 ], [ 35.859375, 41.771312 ], [ 35.859375, 41.640078 ], [ 36.210938, 41.640078 ], [ 36.210938, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 39.902344, 41.112469 ], [ 39.902344, 40.979898 ], [ 40.605469, 40.979898 ], [ 40.605469, 41.112469 ], [ 40.957031, 41.112469 ], [ 40.957031, 41.244772 ], [ 41.132812, 41.244772 ], [ 41.132812, 41.376809 ], [ 41.484375, 41.376809 ], [ 41.484375, 41.508577 ], [ 42.187500, 41.508577 ], [ 42.187500, 41.640078 ], [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.417969, 41.244772 ], [ 43.417969, 41.112469 ], [ 43.593750, 41.112469 ], [ 43.593750, 40.847060 ], [ 43.769531, 40.847060 ], [ 43.769531, 40.446947 ], [ 43.593750, 40.446947 ], [ 43.593750, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.580585 ], [ 29.003906, 40.580585 ], [ 29.003906, 40.979898 ], [ 29.179688, 40.979898 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 31.992188, 41.508577 ], [ 31.992188, 41.640078 ], [ 32.343750, 41.640078 ], [ 32.343750, 41.771312 ], [ 32.695312, 41.771312 ], [ 32.695312, 41.902277 ], [ 33.398438, 41.902277 ], [ 33.398438, 42.032974 ], [ 35.156250, 42.032974 ] ] ], [ [ [ 27.421875, 42.163403 ], [ 27.421875, 42.032974 ], [ 27.949219, 42.032974 ], [ 27.949219, 41.771312 ], [ 28.125000, 41.771312 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 29.003906, 41.244772 ], [ 29.003906, 41.112469 ], [ 28.300781, 41.112469 ], [ 28.300781, 40.979898 ], [ 27.597656, 40.979898 ], [ 27.597656, 40.847060 ], [ 27.421875, 40.847060 ], [ 27.421875, 40.713956 ], [ 27.246094, 40.713956 ], [ 27.246094, 40.580585 ], [ 27.070312, 40.580585 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.313043 ], [ 26.191406, 40.313043 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.367188, 40.847060 ], [ 26.367188, 41.244772 ], [ 26.542969, 41.244772 ], [ 26.542969, 41.508577 ], [ 26.367188, 41.508577 ], [ 26.367188, 41.640078 ], [ 26.191406, 41.640078 ], [ 26.191406, 41.771312 ], [ 26.367188, 41.771312 ], [ 26.367188, 41.902277 ], [ 26.718750, 41.902277 ], [ 26.718750, 42.032974 ], [ 27.070312, 42.032974 ], [ 27.070312, 42.163403 ], [ 27.421875, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.446947 ], [ 43.769531, 40.446947 ], [ 43.769531, 40.847060 ], [ 43.593750, 40.847060 ], [ 43.593750, 41.112469 ], [ 44.472656, 41.112469 ], [ 44.472656, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.446947 ], [ 43.769531, 40.446947 ], [ 43.769531, 40.847060 ], [ 43.593750, 40.847060 ], [ 43.593750, 41.112469 ], [ 44.472656, 41.112469 ], [ 44.472656, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 41.112469 ], [ 45.878906, 41.112469 ], [ 45.878906, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 45.878906, 41.112469 ], [ 45.878906, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.519531, 69.718107 ], [ 32.695312, 69.718107 ], [ 32.695312, 69.657086 ], [ 32.871094, 69.657086 ], [ 32.871094, 69.595890 ], [ 33.046875, 69.595890 ], [ 33.046875, 69.472969 ], [ 33.222656, 69.472969 ], [ 33.222656, 69.411242 ], [ 33.398438, 69.411242 ], [ 33.398438, 69.349339 ], [ 33.574219, 69.349339 ], [ 33.574219, 69.287257 ], [ 33.925781, 69.287257 ], [ 33.925781, 69.224997 ], [ 34.628906, 69.224997 ], [ 34.628906, 69.162558 ], [ 35.332031, 69.162558 ], [ 35.332031, 69.099940 ], [ 36.035156, 69.099940 ], [ 36.035156, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.974164 ], [ 36.738281, 68.974164 ], [ 36.738281, 68.911005 ], [ 37.089844, 68.911005 ], [ 37.089844, 68.847665 ], [ 37.265625, 68.847665 ], [ 37.265625, 68.784144 ], [ 37.441406, 68.784144 ], [ 37.441406, 68.720441 ], [ 37.617188, 68.720441 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.592487 ], [ 38.144531, 68.592487 ], [ 38.144531, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.463800 ], [ 38.496094, 68.463800 ], [ 38.496094, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.334376 ], [ 39.023438, 68.334376 ], [ 39.023438, 68.269387 ], [ 39.199219, 68.269387 ], [ 39.199219, 68.204212 ], [ 39.375000, 68.204212 ], [ 39.375000, 68.138852 ], [ 39.550781, 68.138852 ], [ 39.550781, 68.073305 ], [ 39.902344, 68.073305 ], [ 39.902344, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.941650 ], [ 40.253906, 67.941650 ], [ 40.253906, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.742759 ], [ 40.605469, 67.742759 ], [ 40.605469, 67.676085 ], [ 40.781250, 67.676085 ], [ 40.781250, 67.609221 ], [ 40.957031, 67.609221 ], [ 40.957031, 67.474922 ], [ 41.132812, 67.474922 ], [ 41.132812, 66.722541 ], [ 40.957031, 66.722541 ], [ 40.957031, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.605469, 66.513260 ], [ 40.605469, 66.443107 ], [ 40.429688, 66.443107 ], [ 40.429688, 66.372755 ], [ 40.253906, 66.372755 ], [ 40.253906, 66.231457 ], [ 39.902344, 66.231457 ], [ 39.902344, 66.160511 ], [ 37.089844, 66.160511 ], [ 37.089844, 66.231457 ], [ 36.738281, 66.231457 ], [ 36.738281, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 36.035156, 66.372755 ], [ 36.035156, 66.443107 ], [ 35.507812, 66.443107 ], [ 35.507812, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.804688, 66.583217 ], [ 34.804688, 66.652977 ], [ 34.453125, 66.652977 ], [ 34.453125, 66.722541 ], [ 34.101562, 66.722541 ], [ 34.101562, 66.791909 ], [ 33.925781, 66.791909 ], [ 33.925781, 66.722541 ], [ 33.574219, 66.722541 ], [ 33.574219, 66.652977 ], [ 33.222656, 66.652977 ], [ 33.222656, 66.583217 ], [ 33.398438, 66.583217 ], [ 33.398438, 66.513260 ], [ 33.574219, 66.513260 ], [ 33.574219, 66.443107 ], [ 33.750000, 66.443107 ], [ 33.750000, 66.302205 ], [ 33.925781, 66.302205 ], [ 33.925781, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.160511 ], [ 29.882812, 66.160511 ], [ 29.882812, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.513260 ], [ 29.355469, 66.513260 ], [ 29.355469, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 66.791909 ], [ 29.003906, 66.791909 ], [ 29.003906, 66.930060 ], [ 29.179688, 66.930060 ], [ 29.179688, 67.067433 ], [ 29.355469, 67.067433 ], [ 29.355469, 67.204032 ], [ 29.531250, 67.204032 ], [ 29.531250, 67.339861 ], [ 29.707031, 67.339861 ], [ 29.707031, 67.474922 ], [ 29.882812, 67.474922 ], [ 29.882812, 67.609221 ], [ 30.058594, 67.609221 ], [ 30.058594, 67.676085 ], [ 29.882812, 67.676085 ], [ 29.882812, 67.742759 ], [ 29.707031, 67.742759 ], [ 29.707031, 67.809245 ], [ 29.531250, 67.809245 ], [ 29.531250, 67.875541 ], [ 29.355469, 67.875541 ], [ 29.355469, 68.007571 ], [ 29.179688, 68.007571 ], [ 29.179688, 68.073305 ], [ 29.003906, 68.073305 ], [ 29.003906, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.204212 ], [ 28.652344, 68.204212 ], [ 28.652344, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 68.656555 ], [ 28.652344, 68.656555 ], [ 28.652344, 69.037142 ], [ 29.003906, 69.037142 ], [ 29.003906, 69.099940 ], [ 29.355469, 69.099940 ], [ 29.355469, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.224997 ], [ 29.882812, 69.224997 ], [ 29.882812, 69.287257 ], [ 30.234375, 69.287257 ], [ 30.234375, 69.349339 ], [ 30.410156, 69.349339 ], [ 30.410156, 69.411242 ], [ 30.761719, 69.411242 ], [ 30.761719, 69.472969 ], [ 31.113281, 69.472969 ], [ 31.113281, 69.534518 ], [ 31.289062, 69.534518 ], [ 31.289062, 69.595890 ], [ 31.464844, 69.595890 ], [ 31.464844, 69.657086 ], [ 31.640625, 69.657086 ], [ 31.640625, 69.718107 ], [ 31.816406, 69.718107 ], [ 31.816406, 69.778952 ], [ 31.992188, 69.778952 ], [ 31.992188, 69.839622 ], [ 32.343750, 69.839622 ], [ 32.343750, 69.778952 ], [ 32.519531, 69.778952 ], [ 32.519531, 69.718107 ] ] ], [ [ [ 43.242188, 66.302205 ], [ 43.417969, 66.302205 ], [ 43.417969, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.160511 ], [ 41.484375, 66.160511 ], [ 41.484375, 66.231457 ], [ 41.660156, 66.231457 ], [ 41.660156, 66.302205 ], [ 41.835938, 66.302205 ], [ 41.835938, 66.372755 ], [ 42.011719, 66.372755 ], [ 42.011719, 66.443107 ], [ 43.066406, 66.443107 ], [ 43.066406, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.302205 ] ] ], [ [ [ 44.121094, 66.231457 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.583217 ], [ 44.472656, 66.583217 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.930060 ], [ 44.121094, 66.930060 ], [ 44.121094, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 43.769531, 67.204032 ], [ 43.769531, 67.474922 ], [ 43.945312, 67.474922 ], [ 43.945312, 67.742759 ], [ 44.121094, 67.742759 ], [ 44.121094, 68.007571 ], [ 43.945312, 68.007571 ], [ 43.945312, 68.138852 ], [ 43.769531, 68.138852 ], [ 43.769531, 68.334376 ], [ 43.593750, 68.334376 ], [ 43.593750, 68.463800 ], [ 43.417969, 68.463800 ], [ 43.417969, 68.592487 ], [ 43.593750, 68.592487 ], [ 43.593750, 68.528235 ], [ 44.121094, 68.528235 ], [ 44.121094, 68.463800 ], [ 44.472656, 68.463800 ], [ 44.472656, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.334376 ], [ 45.527344, 68.334376 ], [ 45.527344, 68.269387 ], [ 45.878906, 68.269387 ], [ 45.878906, 67.542167 ], [ 45.527344, 67.542167 ], [ 45.527344, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.160511 ], [ 43.945312, 66.160511 ], [ 43.945312, 66.231457 ], [ 44.121094, 66.231457 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 39.902344, 66.160511 ], [ 37.089844, 66.160511 ], [ 37.089844, 66.231457 ], [ 36.738281, 66.231457 ], [ 36.738281, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 36.035156, 66.372755 ], [ 36.035156, 66.443107 ], [ 35.507812, 66.443107 ], [ 35.507812, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.804688, 66.583217 ], [ 34.804688, 66.652977 ], [ 34.453125, 66.652977 ], [ 34.453125, 66.722541 ], [ 34.101562, 66.722541 ], [ 34.101562, 66.791909 ], [ 33.925781, 66.791909 ], [ 33.925781, 66.722541 ], [ 33.574219, 66.722541 ], [ 33.574219, 66.652977 ], [ 33.222656, 66.652977 ], [ 33.222656, 66.583217 ], [ 33.398438, 66.583217 ], [ 33.398438, 66.513260 ], [ 33.574219, 66.513260 ], [ 33.574219, 66.443107 ], [ 33.750000, 66.443107 ], [ 33.750000, 66.302205 ], [ 33.925781, 66.302205 ], [ 33.925781, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.160511 ], [ 29.882812, 66.160511 ], [ 29.882812, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.513260 ], [ 29.355469, 66.513260 ], [ 29.355469, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 66.791909 ], [ 29.003906, 66.791909 ], [ 29.003906, 66.930060 ], [ 29.179688, 66.930060 ], [ 29.179688, 67.067433 ], [ 29.355469, 67.067433 ], [ 29.355469, 67.204032 ], [ 29.531250, 67.204032 ], [ 29.531250, 67.339861 ], [ 29.707031, 67.339861 ], [ 29.707031, 67.474922 ], [ 29.882812, 67.474922 ], [ 29.882812, 67.609221 ], [ 30.058594, 67.609221 ], [ 30.058594, 67.676085 ], [ 29.882812, 67.676085 ], [ 29.882812, 67.742759 ], [ 29.707031, 67.742759 ], [ 29.707031, 67.809245 ], [ 29.531250, 67.809245 ], [ 29.531250, 67.875541 ], [ 29.355469, 67.875541 ], [ 29.355469, 68.007571 ], [ 29.179688, 68.007571 ], [ 29.179688, 68.073305 ], [ 29.003906, 68.073305 ], [ 29.003906, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.204212 ], [ 28.652344, 68.204212 ], [ 28.652344, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 68.656555 ], [ 28.652344, 68.656555 ], [ 28.652344, 69.037142 ], [ 29.003906, 69.037142 ], [ 29.003906, 69.099940 ], [ 29.355469, 69.099940 ], [ 29.355469, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.224997 ], [ 29.882812, 69.224997 ], [ 29.882812, 69.287257 ], [ 30.234375, 69.287257 ], [ 30.234375, 69.349339 ], [ 30.410156, 69.349339 ], [ 30.410156, 69.411242 ], [ 30.761719, 69.411242 ], [ 30.761719, 69.472969 ], [ 31.113281, 69.472969 ], [ 31.113281, 69.534518 ], [ 31.289062, 69.534518 ], [ 31.289062, 69.595890 ], [ 31.464844, 69.595890 ], [ 31.464844, 69.657086 ], [ 31.640625, 69.657086 ], [ 31.640625, 69.718107 ], [ 31.816406, 69.718107 ], [ 31.816406, 69.778952 ], [ 31.992188, 69.778952 ], [ 31.992188, 69.839622 ], [ 32.343750, 69.839622 ], [ 32.343750, 69.778952 ], [ 32.519531, 69.778952 ], [ 32.519531, 69.718107 ], [ 32.695312, 69.718107 ], [ 32.695312, 69.657086 ], [ 32.871094, 69.657086 ], [ 32.871094, 69.595890 ], [ 33.046875, 69.595890 ], [ 33.046875, 69.472969 ], [ 33.222656, 69.472969 ], [ 33.222656, 69.411242 ], [ 33.398438, 69.411242 ], [ 33.398438, 69.349339 ], [ 33.574219, 69.349339 ], [ 33.574219, 69.287257 ], [ 33.925781, 69.287257 ], [ 33.925781, 69.224997 ], [ 34.628906, 69.224997 ], [ 34.628906, 69.162558 ], [ 35.332031, 69.162558 ], [ 35.332031, 69.099940 ], [ 36.035156, 69.099940 ], [ 36.035156, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.974164 ], [ 36.738281, 68.974164 ], [ 36.738281, 68.911005 ], [ 37.089844, 68.911005 ], [ 37.089844, 68.847665 ], [ 37.265625, 68.847665 ], [ 37.265625, 68.784144 ], [ 37.441406, 68.784144 ], [ 37.441406, 68.720441 ], [ 37.617188, 68.720441 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.592487 ], [ 38.144531, 68.592487 ], [ 38.144531, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.463800 ], [ 38.496094, 68.463800 ], [ 38.496094, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.334376 ], [ 39.023438, 68.334376 ], [ 39.023438, 68.269387 ], [ 39.199219, 68.269387 ], [ 39.199219, 68.204212 ], [ 39.375000, 68.204212 ], [ 39.375000, 68.138852 ], [ 39.550781, 68.138852 ], [ 39.550781, 68.073305 ], [ 39.902344, 68.073305 ], [ 39.902344, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.941650 ], [ 40.253906, 67.941650 ], [ 40.253906, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.742759 ], [ 40.605469, 67.742759 ], [ 40.605469, 67.676085 ], [ 40.781250, 67.676085 ], [ 40.781250, 67.609221 ], [ 40.957031, 67.609221 ], [ 40.957031, 67.474922 ], [ 41.132812, 67.474922 ], [ 41.132812, 66.722541 ], [ 40.957031, 66.722541 ], [ 40.957031, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.605469, 66.513260 ], [ 40.605469, 66.443107 ], [ 40.429688, 66.443107 ], [ 40.429688, 66.372755 ], [ 40.253906, 66.372755 ], [ 40.253906, 66.231457 ], [ 39.902344, 66.231457 ], [ 39.902344, 66.160511 ] ] ], [ [ [ 43.593750, 68.528235 ], [ 44.121094, 68.528235 ], [ 44.121094, 68.463800 ], [ 44.472656, 68.463800 ], [ 44.472656, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.334376 ], [ 45.527344, 68.334376 ], [ 45.527344, 68.269387 ], [ 45.878906, 68.269387 ], [ 45.878906, 67.542167 ], [ 45.527344, 67.542167 ], [ 45.527344, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.160511 ], [ 43.945312, 66.160511 ], [ 43.945312, 66.231457 ], [ 44.121094, 66.231457 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.583217 ], [ 44.472656, 66.583217 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.930060 ], [ 44.121094, 66.930060 ], [ 44.121094, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 43.769531, 67.204032 ], [ 43.769531, 67.474922 ], [ 43.945312, 67.474922 ], [ 43.945312, 67.742759 ], [ 44.121094, 67.742759 ], [ 44.121094, 68.007571 ], [ 43.945312, 68.007571 ], [ 43.945312, 68.138852 ], [ 43.769531, 68.138852 ], [ 43.769531, 68.334376 ], [ 43.593750, 68.334376 ], [ 43.593750, 68.463800 ], [ 43.417969, 68.463800 ], [ 43.417969, 68.592487 ], [ 43.593750, 68.592487 ], [ 43.593750, 68.528235 ] ] ], [ [ [ 41.484375, 66.160511 ], [ 41.484375, 66.231457 ], [ 41.660156, 66.231457 ], [ 41.660156, 66.302205 ], [ 41.835938, 66.302205 ], [ 41.835938, 66.372755 ], [ 42.011719, 66.372755 ], [ 42.011719, 66.443107 ], [ 43.066406, 66.443107 ], [ 43.066406, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.302205 ], [ 43.417969, 66.302205 ], [ 43.417969, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.160511 ], [ 41.484375, 66.160511 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.476562, 71.074056 ], [ 28.652344, 71.074056 ], [ 28.652344, 71.016960 ], [ 28.828125, 71.016960 ], [ 28.828125, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.902268 ], [ 29.355469, 70.902268 ], [ 29.355469, 70.844673 ], [ 29.531250, 70.844673 ], [ 29.531250, 70.786910 ], [ 29.882812, 70.786910 ], [ 29.882812, 70.728979 ], [ 30.058594, 70.728979 ], [ 30.058594, 70.670881 ], [ 30.410156, 70.670881 ], [ 30.410156, 70.612614 ], [ 30.585938, 70.612614 ], [ 30.585938, 70.554179 ], [ 30.761719, 70.554179 ], [ 30.761719, 70.495574 ], [ 31.113281, 70.495574 ], [ 31.113281, 70.436799 ], [ 31.289062, 70.436799 ], [ 31.289062, 70.377854 ], [ 30.937500, 70.377854 ], [ 30.937500, 70.318738 ], [ 30.585938, 70.318738 ], [ 30.585938, 70.259452 ], [ 30.234375, 70.259452 ], [ 30.234375, 70.199994 ], [ 30.058594, 70.199994 ], [ 30.058594, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 70.020587 ], [ 30.410156, 70.020587 ], [ 30.410156, 69.900118 ], [ 30.585938, 69.900118 ], [ 30.585938, 69.778952 ], [ 30.761719, 69.778952 ], [ 30.761719, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.534518 ], [ 31.113281, 69.534518 ], [ 31.113281, 69.472969 ], [ 30.761719, 69.472969 ], [ 30.761719, 69.411242 ], [ 30.410156, 69.411242 ], [ 30.410156, 69.349339 ], [ 30.234375, 69.349339 ], [ 30.234375, 69.287257 ], [ 29.882812, 69.287257 ], [ 29.882812, 69.224997 ], [ 29.531250, 69.224997 ], [ 29.531250, 69.162558 ], [ 29.355469, 69.162558 ], [ 29.355469, 69.099940 ], [ 29.003906, 69.099940 ], [ 29.003906, 69.037142 ], [ 28.652344, 69.037142 ], [ 28.652344, 69.224997 ], [ 28.828125, 69.224997 ], [ 28.828125, 69.595890 ], [ 29.003906, 69.595890 ], [ 29.003906, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.839622 ], [ 28.652344, 69.839622 ], [ 28.652344, 69.900118 ], [ 28.476562, 69.900118 ], [ 28.476562, 69.960439 ], [ 28.125000, 69.960439 ], [ 28.125000, 70.020587 ], [ 27.949219, 70.020587 ], [ 27.949219, 70.080562 ], [ 27.421875, 70.080562 ], [ 27.421875, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 69.960439 ], [ 26.718750, 69.960439 ], [ 26.718750, 69.900118 ], [ 26.367188, 69.900118 ], [ 26.367188, 69.839622 ], [ 26.191406, 69.839622 ], [ 26.191406, 69.718107 ], [ 26.015625, 69.718107 ], [ 26.015625, 69.472969 ], [ 25.839844, 69.472969 ], [ 25.839844, 69.224997 ], [ 25.664062, 69.224997 ], [ 25.664062, 69.037142 ], [ 25.488281, 69.037142 ], [ 25.488281, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.847665 ], [ 25.136719, 68.847665 ], [ 25.136719, 68.784144 ], [ 24.960938, 68.784144 ], [ 24.960938, 68.656555 ], [ 24.609375, 68.656555 ], [ 24.609375, 68.720441 ], [ 24.257812, 68.720441 ], [ 24.257812, 68.784144 ], [ 24.082031, 68.784144 ], [ 24.082031, 68.847665 ], [ 23.730469, 68.847665 ], [ 23.730469, 68.911005 ], [ 23.203125, 68.911005 ], [ 23.203125, 68.847665 ], [ 22.148438, 68.847665 ], [ 22.148438, 68.974164 ], [ 21.972656, 68.974164 ], [ 21.972656, 69.037142 ], [ 21.796875, 69.037142 ], [ 21.796875, 69.099940 ], [ 21.621094, 69.099940 ], [ 21.621094, 69.224997 ], [ 21.445312, 69.224997 ], [ 21.445312, 69.287257 ], [ 21.093750, 69.287257 ], [ 21.093750, 69.224997 ], [ 20.917969, 69.224997 ], [ 20.917969, 69.162558 ], [ 20.742188, 69.162558 ], [ 20.742188, 69.099940 ], [ 20.390625, 69.099940 ], [ 20.390625, 69.037142 ], [ 20.039062, 69.037142 ], [ 20.039062, 68.720441 ], [ 19.863281, 68.720441 ], [ 19.863281, 68.399180 ], [ 19.511719, 68.399180 ], [ 19.511719, 68.463800 ], [ 18.808594, 68.463800 ], [ 18.808594, 68.528235 ], [ 18.105469, 68.528235 ], [ 18.105469, 68.592487 ], [ 17.929688, 68.592487 ], [ 17.929688, 68.269387 ], [ 17.753906, 68.269387 ], [ 17.753906, 68.007571 ], [ 16.699219, 68.007571 ], [ 16.699219, 67.875541 ], [ 16.523438, 67.875541 ], [ 16.523438, 67.609221 ], [ 16.347656, 67.609221 ], [ 16.347656, 67.339861 ], [ 16.171875, 67.339861 ], [ 16.171875, 67.135829 ], [ 15.996094, 67.135829 ], [ 15.996094, 66.998844 ], [ 15.820312, 66.998844 ], [ 15.820312, 66.791909 ], [ 15.644531, 66.791909 ], [ 15.644531, 66.583217 ], [ 15.468750, 66.583217 ], [ 15.468750, 66.443107 ], [ 15.292969, 66.443107 ], [ 15.292969, 66.231457 ], [ 15.117188, 66.231457 ], [ 15.117188, 66.160511 ], [ 12.656250, 66.160511 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.791909 ], [ 13.535156, 66.791909 ], [ 13.535156, 66.930060 ], [ 13.710938, 66.930060 ], [ 13.710938, 67.067433 ], [ 13.886719, 67.067433 ], [ 13.886719, 67.204032 ], [ 14.062500, 67.204032 ], [ 14.062500, 67.339861 ], [ 14.238281, 67.339861 ], [ 14.238281, 67.474922 ], [ 14.414062, 67.474922 ], [ 14.414062, 67.609221 ], [ 14.589844, 67.609221 ], [ 14.589844, 67.742759 ], [ 14.765625, 67.742759 ], [ 14.765625, 67.809245 ], [ 14.941406, 67.809245 ], [ 14.941406, 67.875541 ], [ 15.117188, 67.875541 ], [ 15.117188, 68.007571 ], [ 15.292969, 68.007571 ], [ 15.292969, 68.073305 ], [ 15.468750, 68.073305 ], [ 15.468750, 68.138852 ], [ 15.644531, 68.138852 ], [ 15.644531, 68.204212 ], [ 15.820312, 68.204212 ], [ 15.820312, 68.269387 ], [ 15.996094, 68.269387 ], [ 15.996094, 68.399180 ], [ 16.171875, 68.399180 ], [ 16.171875, 68.463800 ], [ 16.347656, 68.463800 ], [ 16.347656, 68.528235 ], [ 16.523438, 68.528235 ], [ 16.523438, 68.592487 ], [ 16.699219, 68.592487 ], [ 16.699219, 68.720441 ], [ 16.875000, 68.720441 ], [ 16.875000, 68.784144 ], [ 17.050781, 68.784144 ], [ 17.050781, 68.847665 ], [ 17.226562, 68.847665 ], [ 17.226562, 68.974164 ], [ 17.402344, 68.974164 ], [ 17.402344, 69.037142 ], [ 17.578125, 69.037142 ], [ 17.578125, 69.099940 ], [ 17.753906, 69.099940 ], [ 17.753906, 69.224997 ], [ 17.929688, 69.224997 ], [ 17.929688, 69.287257 ], [ 18.105469, 69.287257 ], [ 18.105469, 69.349339 ], [ 18.281250, 69.349339 ], [ 18.281250, 69.472969 ], [ 18.457031, 69.472969 ], [ 18.457031, 69.534518 ], [ 18.632812, 69.534518 ], [ 18.632812, 69.595890 ], [ 18.808594, 69.595890 ], [ 18.808594, 69.718107 ], [ 18.984375, 69.718107 ], [ 18.984375, 69.778952 ], [ 19.160156, 69.778952 ], [ 19.160156, 69.839622 ], [ 19.335938, 69.839622 ], [ 19.335938, 69.900118 ], [ 19.687500, 69.900118 ], [ 19.687500, 69.960439 ], [ 20.039062, 69.960439 ], [ 20.039062, 70.020587 ], [ 20.390625, 70.020587 ], [ 20.390625, 70.080562 ], [ 20.742188, 70.080562 ], [ 20.742188, 70.140364 ], [ 21.093750, 70.140364 ], [ 21.093750, 70.199994 ], [ 21.445312, 70.199994 ], [ 21.445312, 70.259452 ], [ 22.148438, 70.259452 ], [ 22.148438, 70.199994 ], [ 23.203125, 70.199994 ], [ 23.203125, 70.318738 ], [ 23.378906, 70.318738 ], [ 23.378906, 70.377854 ], [ 23.554688, 70.377854 ], [ 23.554688, 70.495574 ], [ 23.730469, 70.495574 ], [ 23.730469, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 70.670881 ], [ 24.082031, 70.670881 ], [ 24.082031, 70.786910 ], [ 24.257812, 70.786910 ], [ 24.257812, 70.844673 ], [ 24.433594, 70.844673 ], [ 24.433594, 70.959697 ], [ 24.609375, 70.959697 ], [ 24.609375, 71.016960 ], [ 25.312500, 71.016960 ], [ 25.312500, 70.959697 ], [ 26.718750, 70.959697 ], [ 26.718750, 71.016960 ], [ 27.070312, 71.016960 ], [ 27.070312, 71.074056 ], [ 27.597656, 71.074056 ], [ 27.597656, 71.130988 ], [ 27.949219, 71.130988 ], [ 27.949219, 71.187754 ], [ 28.125000, 71.187754 ], [ 28.125000, 71.130988 ], [ 28.476562, 71.130988 ], [ 28.476562, 71.074056 ] ] ], [ [ [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.269962 ], [ 20.214844, 79.269962 ], [ 20.214844, 79.237185 ], [ 20.390625, 79.237185 ], [ 20.390625, 79.204309 ], [ 20.566406, 79.204309 ], [ 20.566406, 79.171335 ], [ 20.742188, 79.171335 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.071812 ], [ 21.093750, 79.071812 ], [ 21.093750, 79.038437 ], [ 21.269531, 79.038437 ], [ 21.269531, 79.004962 ], [ 21.445312, 79.004962 ], [ 21.445312, 78.971386 ], [ 21.621094, 78.971386 ], [ 21.621094, 78.937708 ], [ 21.445312, 78.937708 ], [ 21.445312, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.870048 ], [ 20.917969, 78.870048 ], [ 20.917969, 78.836065 ], [ 20.742188, 78.836065 ], [ 20.742188, 78.801980 ], [ 20.566406, 78.801980 ], [ 20.566406, 78.767792 ], [ 20.214844, 78.767792 ], [ 20.214844, 78.733501 ], [ 20.039062, 78.733501 ], [ 20.039062, 78.699106 ], [ 19.863281, 78.699106 ], [ 19.863281, 78.664608 ], [ 19.687500, 78.664608 ], [ 19.687500, 78.630006 ], [ 19.335938, 78.630006 ], [ 19.335938, 78.595299 ], [ 19.160156, 78.595299 ], [ 19.160156, 78.560488 ], [ 18.984375, 78.560488 ], [ 18.984375, 78.420193 ], [ 18.808594, 78.420193 ], [ 18.808594, 78.206563 ], [ 18.632812, 78.206563 ], [ 18.632812, 77.952414 ], [ 18.457031, 77.952414 ], [ 18.457031, 77.804771 ], [ 18.281250, 77.804771 ], [ 18.281250, 77.767582 ], [ 18.105469, 77.767582 ], [ 18.105469, 77.730282 ], [ 17.929688, 77.730282 ], [ 17.929688, 77.692870 ], [ 17.753906, 77.692870 ], [ 17.753906, 77.655346 ], [ 17.578125, 77.655346 ], [ 17.578125, 77.504119 ], [ 17.402344, 77.504119 ], [ 17.402344, 77.235074 ], [ 17.226562, 77.235074 ], [ 17.226562, 76.920614 ], [ 17.050781, 76.920614 ], [ 17.050781, 76.800739 ], [ 16.699219, 76.800739 ], [ 16.699219, 76.760541 ], [ 15.820312, 76.760541 ], [ 15.820312, 76.800739 ], [ 15.644531, 76.800739 ], [ 15.644531, 76.880775 ], [ 15.468750, 76.880775 ], [ 15.468750, 76.920614 ], [ 15.292969, 76.920614 ], [ 15.292969, 76.960334 ], [ 15.117188, 76.960334 ], [ 15.117188, 76.999935 ], [ 14.941406, 76.999935 ], [ 14.941406, 77.078784 ], [ 14.765625, 77.078784 ], [ 14.765625, 77.118032 ], [ 14.589844, 77.118032 ], [ 14.589844, 77.157163 ], [ 14.414062, 77.157163 ], [ 14.414062, 77.196176 ], [ 14.238281, 77.196176 ], [ 14.238281, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.886719, 77.312520 ], [ 13.886719, 77.351070 ], [ 13.710938, 77.351070 ], [ 13.710938, 77.389504 ], [ 13.886719, 77.389504 ], [ 13.886719, 77.466028 ], [ 14.062500, 77.466028 ], [ 14.062500, 77.542096 ], [ 14.238281, 77.542096 ], [ 14.238281, 77.617709 ], [ 14.414062, 77.617709 ], [ 14.414062, 77.692870 ], [ 14.589844, 77.692870 ], [ 14.589844, 77.730282 ], [ 14.414062, 77.730282 ], [ 14.414062, 77.767582 ], [ 14.238281, 77.767582 ], [ 14.238281, 77.804771 ], [ 14.062500, 77.804771 ], [ 14.062500, 77.841848 ], [ 13.886719, 77.841848 ], [ 13.886719, 77.878814 ], [ 13.710938, 77.878814 ], [ 13.710938, 77.915669 ], [ 13.535156, 77.915669 ], [ 13.535156, 77.952414 ], [ 13.359375, 77.952414 ], [ 13.359375, 77.989049 ], [ 13.183594, 77.989049 ], [ 13.183594, 78.061989 ], [ 13.007812, 78.061989 ], [ 13.007812, 78.134493 ], [ 12.832031, 78.134493 ], [ 12.832031, 78.206563 ], [ 12.656250, 78.206563 ], [ 12.656250, 78.278201 ], [ 12.480469, 78.278201 ], [ 12.480469, 78.349411 ], [ 12.304688, 78.349411 ], [ 12.304688, 78.455425 ], [ 12.128906, 78.455425 ], [ 12.128906, 78.525573 ], [ 11.953125, 78.525573 ], [ 11.953125, 78.595299 ], [ 11.777344, 78.595299 ], [ 11.777344, 78.664608 ], [ 11.601562, 78.664608 ], [ 11.601562, 78.733501 ], [ 11.425781, 78.733501 ], [ 11.425781, 78.801980 ], [ 11.250000, 78.801980 ], [ 11.250000, 78.937708 ], [ 11.074219, 78.937708 ], [ 11.074219, 79.105086 ], [ 10.898438, 79.105086 ], [ 10.898438, 79.237185 ], [ 10.722656, 79.237185 ], [ 10.722656, 79.335219 ], [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ] ] ], [ [ [ 23.027344, 78.134493 ], [ 23.203125, 78.134493 ], [ 23.203125, 78.025574 ], [ 23.554688, 78.025574 ], [ 23.554688, 77.989049 ], [ 23.730469, 77.989049 ], [ 23.730469, 77.952414 ], [ 24.082031, 77.952414 ], [ 24.082031, 77.915669 ], [ 24.257812, 77.915669 ], [ 24.257812, 77.878814 ], [ 24.609375, 77.878814 ], [ 24.609375, 77.841848 ], [ 24.785156, 77.841848 ], [ 24.785156, 77.804771 ], [ 24.609375, 77.804771 ], [ 24.609375, 77.767582 ], [ 24.433594, 77.767582 ], [ 24.433594, 77.730282 ], [ 24.082031, 77.730282 ], [ 24.082031, 77.692870 ], [ 23.906250, 77.692870 ], [ 23.906250, 77.655346 ], [ 23.730469, 77.655346 ], [ 23.730469, 77.617709 ], [ 23.554688, 77.617709 ], [ 23.554688, 77.579959 ], [ 23.378906, 77.579959 ], [ 23.378906, 77.542096 ], [ 23.027344, 77.542096 ], [ 23.027344, 77.504119 ], [ 22.851562, 77.504119 ], [ 22.851562, 77.466028 ], [ 22.675781, 77.466028 ], [ 22.675781, 77.427824 ], [ 22.324219, 77.427824 ], [ 22.324219, 77.466028 ], [ 21.972656, 77.466028 ], [ 21.972656, 77.504119 ], [ 21.796875, 77.504119 ], [ 21.796875, 77.542096 ], [ 21.445312, 77.542096 ], [ 21.445312, 77.579959 ], [ 21.269531, 77.579959 ], [ 21.269531, 77.617709 ], [ 21.093750, 77.617709 ], [ 21.093750, 77.655346 ], [ 20.742188, 77.655346 ], [ 20.742188, 77.692870 ], [ 20.917969, 77.692870 ], [ 20.917969, 77.767582 ], [ 21.093750, 77.767582 ], [ 21.093750, 77.841848 ], [ 21.269531, 77.841848 ], [ 21.269531, 77.915669 ], [ 21.445312, 77.915669 ], [ 21.445312, 77.989049 ], [ 21.269531, 77.989049 ], [ 21.269531, 78.061989 ], [ 21.093750, 78.061989 ], [ 21.093750, 78.134493 ], [ 20.917969, 78.134493 ], [ 20.917969, 78.206563 ], [ 20.742188, 78.206563 ], [ 20.742188, 78.242436 ], [ 21.093750, 78.242436 ], [ 21.093750, 78.278201 ], [ 21.445312, 78.278201 ], [ 21.445312, 78.313860 ], [ 21.796875, 78.313860 ], [ 21.796875, 78.349411 ], [ 22.148438, 78.349411 ], [ 22.148438, 78.384855 ], [ 22.500000, 78.384855 ], [ 22.500000, 78.420193 ], [ 22.851562, 78.420193 ], [ 22.851562, 78.349411 ], [ 23.027344, 78.349411 ], [ 23.027344, 78.134493 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 28.125000, 71.130988 ], [ 28.476562, 71.130988 ], [ 28.476562, 71.074056 ], [ 28.652344, 71.074056 ], [ 28.652344, 71.016960 ], [ 28.828125, 71.016960 ], [ 28.828125, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.902268 ], [ 29.355469, 70.902268 ], [ 29.355469, 70.844673 ], [ 29.531250, 70.844673 ], [ 29.531250, 70.786910 ], [ 29.882812, 70.786910 ], [ 29.882812, 70.728979 ], [ 30.058594, 70.728979 ], [ 30.058594, 70.670881 ], [ 30.410156, 70.670881 ], [ 30.410156, 70.612614 ], [ 30.585938, 70.612614 ], [ 30.585938, 70.554179 ], [ 30.761719, 70.554179 ], [ 30.761719, 70.495574 ], [ 31.113281, 70.495574 ], [ 31.113281, 70.436799 ], [ 31.289062, 70.436799 ], [ 31.289062, 70.377854 ], [ 30.937500, 70.377854 ], [ 30.937500, 70.318738 ], [ 30.585938, 70.318738 ], [ 30.585938, 70.259452 ], [ 30.234375, 70.259452 ], [ 30.234375, 70.199994 ], [ 30.058594, 70.199994 ], [ 30.058594, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 70.020587 ], [ 30.410156, 70.020587 ], [ 30.410156, 69.900118 ], [ 30.585938, 69.900118 ], [ 30.585938, 69.778952 ], [ 30.761719, 69.778952 ], [ 30.761719, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.534518 ], [ 31.113281, 69.534518 ], [ 31.113281, 69.472969 ], [ 30.761719, 69.472969 ], [ 30.761719, 69.411242 ], [ 30.410156, 69.411242 ], [ 30.410156, 69.349339 ], [ 30.234375, 69.349339 ], [ 30.234375, 69.287257 ], [ 29.882812, 69.287257 ], [ 29.882812, 69.224997 ], [ 29.531250, 69.224997 ], [ 29.531250, 69.162558 ], [ 29.355469, 69.162558 ], [ 29.355469, 69.099940 ], [ 29.003906, 69.099940 ], [ 29.003906, 69.037142 ], [ 28.652344, 69.037142 ], [ 28.652344, 69.224997 ], [ 28.828125, 69.224997 ], [ 28.828125, 69.595890 ], [ 29.003906, 69.595890 ], [ 29.003906, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.839622 ], [ 28.652344, 69.839622 ], [ 28.652344, 69.900118 ], [ 28.476562, 69.900118 ], [ 28.476562, 69.960439 ], [ 28.125000, 69.960439 ], [ 28.125000, 70.020587 ], [ 27.949219, 70.020587 ], [ 27.949219, 70.080562 ], [ 27.421875, 70.080562 ], [ 27.421875, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 69.960439 ], [ 26.718750, 69.960439 ], [ 26.718750, 69.900118 ], [ 26.367188, 69.900118 ], [ 26.367188, 69.839622 ], [ 26.191406, 69.839622 ], [ 26.191406, 69.718107 ], [ 26.015625, 69.718107 ], [ 26.015625, 69.472969 ], [ 25.839844, 69.472969 ], [ 25.839844, 69.224997 ], [ 25.664062, 69.224997 ], [ 25.664062, 69.037142 ], [ 25.488281, 69.037142 ], [ 25.488281, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.847665 ], [ 25.136719, 68.847665 ], [ 25.136719, 68.784144 ], [ 24.960938, 68.784144 ], [ 24.960938, 68.656555 ], [ 24.609375, 68.656555 ], [ 24.609375, 68.720441 ], [ 24.257812, 68.720441 ], [ 24.257812, 68.784144 ], [ 24.082031, 68.784144 ], [ 24.082031, 68.847665 ], [ 23.730469, 68.847665 ], [ 23.730469, 68.911005 ], [ 23.203125, 68.911005 ], [ 23.203125, 68.847665 ], [ 22.148438, 68.847665 ], [ 22.148438, 68.974164 ], [ 21.972656, 68.974164 ], [ 21.972656, 69.037142 ], [ 21.796875, 69.037142 ], [ 21.796875, 69.099940 ], [ 21.621094, 69.099940 ], [ 21.621094, 69.224997 ], [ 21.445312, 69.224997 ], [ 21.445312, 69.287257 ], [ 21.093750, 69.287257 ], [ 21.093750, 69.224997 ], [ 20.917969, 69.224997 ], [ 20.917969, 69.162558 ], [ 20.742188, 69.162558 ], [ 20.742188, 69.099940 ], [ 20.390625, 69.099940 ], [ 20.390625, 69.037142 ], [ 20.039062, 69.037142 ], [ 20.039062, 68.720441 ], [ 19.863281, 68.720441 ], [ 19.863281, 68.399180 ], [ 19.511719, 68.399180 ], [ 19.511719, 68.463800 ], [ 18.808594, 68.463800 ], [ 18.808594, 68.528235 ], [ 18.105469, 68.528235 ], [ 18.105469, 68.592487 ], [ 17.929688, 68.592487 ], [ 17.929688, 68.269387 ], [ 17.753906, 68.269387 ], [ 17.753906, 68.007571 ], [ 16.699219, 68.007571 ], [ 16.699219, 67.875541 ], [ 16.523438, 67.875541 ], [ 16.523438, 67.609221 ], [ 16.347656, 67.609221 ], [ 16.347656, 67.339861 ], [ 16.171875, 67.339861 ], [ 16.171875, 67.135829 ], [ 15.996094, 67.135829 ], [ 15.996094, 66.998844 ], [ 15.820312, 66.998844 ], [ 15.820312, 66.791909 ], [ 15.644531, 66.791909 ], [ 15.644531, 66.583217 ], [ 15.468750, 66.583217 ], [ 15.468750, 66.443107 ], [ 15.292969, 66.443107 ], [ 15.292969, 66.231457 ], [ 15.117188, 66.231457 ], [ 15.117188, 66.160511 ], [ 12.656250, 66.160511 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.791909 ], [ 13.535156, 66.791909 ], [ 13.535156, 66.930060 ], [ 13.710938, 66.930060 ], [ 13.710938, 67.067433 ], [ 13.886719, 67.067433 ], [ 13.886719, 67.204032 ], [ 14.062500, 67.204032 ], [ 14.062500, 67.339861 ], [ 14.238281, 67.339861 ], [ 14.238281, 67.474922 ], [ 14.414062, 67.474922 ], [ 14.414062, 67.609221 ], [ 14.589844, 67.609221 ], [ 14.589844, 67.742759 ], [ 14.765625, 67.742759 ], [ 14.765625, 67.809245 ], [ 14.941406, 67.809245 ], [ 14.941406, 67.875541 ], [ 15.117188, 67.875541 ], [ 15.117188, 68.007571 ], [ 15.292969, 68.007571 ], [ 15.292969, 68.073305 ], [ 15.468750, 68.073305 ], [ 15.468750, 68.138852 ], [ 15.644531, 68.138852 ], [ 15.644531, 68.204212 ], [ 15.820312, 68.204212 ], [ 15.820312, 68.269387 ], [ 15.996094, 68.269387 ], [ 15.996094, 68.399180 ], [ 16.171875, 68.399180 ], [ 16.171875, 68.463800 ], [ 16.347656, 68.463800 ], [ 16.347656, 68.528235 ], [ 16.523438, 68.528235 ], [ 16.523438, 68.592487 ], [ 16.699219, 68.592487 ], [ 16.699219, 68.720441 ], [ 16.875000, 68.720441 ], [ 16.875000, 68.784144 ], [ 17.050781, 68.784144 ], [ 17.050781, 68.847665 ], [ 17.226562, 68.847665 ], [ 17.226562, 68.974164 ], [ 17.402344, 68.974164 ], [ 17.402344, 69.037142 ], [ 17.578125, 69.037142 ], [ 17.578125, 69.099940 ], [ 17.753906, 69.099940 ], [ 17.753906, 69.224997 ], [ 17.929688, 69.224997 ], [ 17.929688, 69.287257 ], [ 18.105469, 69.287257 ], [ 18.105469, 69.349339 ], [ 18.281250, 69.349339 ], [ 18.281250, 69.472969 ], [ 18.457031, 69.472969 ], [ 18.457031, 69.534518 ], [ 18.632812, 69.534518 ], [ 18.632812, 69.595890 ], [ 18.808594, 69.595890 ], [ 18.808594, 69.718107 ], [ 18.984375, 69.718107 ], [ 18.984375, 69.778952 ], [ 19.160156, 69.778952 ], [ 19.160156, 69.839622 ], [ 19.335938, 69.839622 ], [ 19.335938, 69.900118 ], [ 19.687500, 69.900118 ], [ 19.687500, 69.960439 ], [ 20.039062, 69.960439 ], [ 20.039062, 70.020587 ], [ 20.390625, 70.020587 ], [ 20.390625, 70.080562 ], [ 20.742188, 70.080562 ], [ 20.742188, 70.140364 ], [ 21.093750, 70.140364 ], [ 21.093750, 70.199994 ], [ 21.445312, 70.199994 ], [ 21.445312, 70.259452 ], [ 22.148438, 70.259452 ], [ 22.148438, 70.199994 ], [ 23.203125, 70.199994 ], [ 23.203125, 70.318738 ], [ 23.378906, 70.318738 ], [ 23.378906, 70.377854 ], [ 23.554688, 70.377854 ], [ 23.554688, 70.495574 ], [ 23.730469, 70.495574 ], [ 23.730469, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 70.670881 ], [ 24.082031, 70.670881 ], [ 24.082031, 70.786910 ], [ 24.257812, 70.786910 ], [ 24.257812, 70.844673 ], [ 24.433594, 70.844673 ], [ 24.433594, 70.959697 ], [ 24.609375, 70.959697 ], [ 24.609375, 71.016960 ], [ 25.312500, 71.016960 ], [ 25.312500, 70.959697 ], [ 26.718750, 70.959697 ], [ 26.718750, 71.016960 ], [ 27.070312, 71.016960 ], [ 27.070312, 71.074056 ], [ 27.597656, 71.074056 ], [ 27.597656, 71.130988 ], [ 27.949219, 71.130988 ], [ 27.949219, 71.187754 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.269962 ], [ 20.214844, 79.269962 ], [ 20.214844, 79.237185 ], [ 20.390625, 79.237185 ], [ 20.390625, 79.204309 ], [ 20.566406, 79.204309 ], [ 20.566406, 79.171335 ], [ 20.742188, 79.171335 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.071812 ], [ 21.093750, 79.071812 ], [ 21.093750, 79.038437 ], [ 21.269531, 79.038437 ], [ 21.269531, 79.004962 ], [ 21.445312, 79.004962 ], [ 21.445312, 78.971386 ], [ 21.621094, 78.971386 ], [ 21.621094, 78.937708 ], [ 21.445312, 78.937708 ], [ 21.445312, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.870048 ], [ 20.917969, 78.870048 ], [ 20.917969, 78.836065 ], [ 20.742188, 78.836065 ], [ 20.742188, 78.801980 ], [ 20.566406, 78.801980 ], [ 20.566406, 78.767792 ], [ 20.214844, 78.767792 ], [ 20.214844, 78.733501 ], [ 20.039062, 78.733501 ], [ 20.039062, 78.699106 ], [ 19.863281, 78.699106 ], [ 19.863281, 78.664608 ], [ 19.687500, 78.664608 ], [ 19.687500, 78.630006 ], [ 19.335938, 78.630006 ], [ 19.335938, 78.595299 ], [ 19.160156, 78.595299 ], [ 19.160156, 78.560488 ], [ 18.984375, 78.560488 ], [ 18.984375, 78.420193 ], [ 18.808594, 78.420193 ], [ 18.808594, 78.206563 ], [ 18.632812, 78.206563 ], [ 18.632812, 77.952414 ], [ 18.457031, 77.952414 ], [ 18.457031, 77.804771 ], [ 18.281250, 77.804771 ], [ 18.281250, 77.767582 ], [ 18.105469, 77.767582 ], [ 18.105469, 77.730282 ], [ 17.929688, 77.730282 ], [ 17.929688, 77.692870 ], [ 17.753906, 77.692870 ], [ 17.753906, 77.655346 ], [ 17.578125, 77.655346 ], [ 17.578125, 77.504119 ], [ 17.402344, 77.504119 ], [ 17.402344, 77.235074 ], [ 17.226562, 77.235074 ], [ 17.226562, 76.920614 ], [ 17.050781, 76.920614 ], [ 17.050781, 76.800739 ], [ 16.699219, 76.800739 ], [ 16.699219, 76.760541 ], [ 15.820312, 76.760541 ], [ 15.820312, 76.800739 ], [ 15.644531, 76.800739 ], [ 15.644531, 76.880775 ], [ 15.468750, 76.880775 ], [ 15.468750, 76.920614 ], [ 15.292969, 76.920614 ], [ 15.292969, 76.960334 ], [ 15.117188, 76.960334 ], [ 15.117188, 76.999935 ], [ 14.941406, 76.999935 ], [ 14.941406, 77.078784 ], [ 14.765625, 77.078784 ], [ 14.765625, 77.118032 ], [ 14.589844, 77.118032 ], [ 14.589844, 77.157163 ], [ 14.414062, 77.157163 ], [ 14.414062, 77.196176 ], [ 14.238281, 77.196176 ], [ 14.238281, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.886719, 77.312520 ], [ 13.886719, 77.351070 ], [ 13.710938, 77.351070 ], [ 13.710938, 77.389504 ], [ 13.886719, 77.389504 ], [ 13.886719, 77.466028 ], [ 14.062500, 77.466028 ], [ 14.062500, 77.542096 ], [ 14.238281, 77.542096 ], [ 14.238281, 77.617709 ], [ 14.414062, 77.617709 ], [ 14.414062, 77.692870 ], [ 14.589844, 77.692870 ], [ 14.589844, 77.730282 ], [ 14.414062, 77.730282 ], [ 14.414062, 77.767582 ], [ 14.238281, 77.767582 ], [ 14.238281, 77.804771 ], [ 14.062500, 77.804771 ], [ 14.062500, 77.841848 ], [ 13.886719, 77.841848 ], [ 13.886719, 77.878814 ], [ 13.710938, 77.878814 ], [ 13.710938, 77.915669 ], [ 13.535156, 77.915669 ], [ 13.535156, 77.952414 ], [ 13.359375, 77.952414 ], [ 13.359375, 77.989049 ], [ 13.183594, 77.989049 ], [ 13.183594, 78.061989 ], [ 13.007812, 78.061989 ], [ 13.007812, 78.134493 ], [ 12.832031, 78.134493 ], [ 12.832031, 78.206563 ], [ 12.656250, 78.206563 ], [ 12.656250, 78.278201 ], [ 12.480469, 78.278201 ], [ 12.480469, 78.349411 ], [ 12.304688, 78.349411 ], [ 12.304688, 78.455425 ], [ 12.128906, 78.455425 ], [ 12.128906, 78.525573 ], [ 11.953125, 78.525573 ], [ 11.953125, 78.595299 ], [ 11.777344, 78.595299 ], [ 11.777344, 78.664608 ], [ 11.601562, 78.664608 ], [ 11.601562, 78.733501 ], [ 11.425781, 78.733501 ], [ 11.425781, 78.801980 ], [ 11.250000, 78.801980 ], [ 11.250000, 78.937708 ], [ 11.074219, 78.937708 ], [ 11.074219, 79.105086 ], [ 10.898438, 79.105086 ], [ 10.898438, 79.237185 ], [ 10.722656, 79.237185 ], [ 10.722656, 79.335219 ], [ 19.863281, 79.335219 ] ] ], [ [ [ 22.851562, 78.420193 ], [ 22.851562, 78.349411 ], [ 23.027344, 78.349411 ], [ 23.027344, 78.134493 ], [ 23.203125, 78.134493 ], [ 23.203125, 78.025574 ], [ 23.554688, 78.025574 ], [ 23.554688, 77.989049 ], [ 23.730469, 77.989049 ], [ 23.730469, 77.952414 ], [ 24.082031, 77.952414 ], [ 24.082031, 77.915669 ], [ 24.257812, 77.915669 ], [ 24.257812, 77.878814 ], [ 24.609375, 77.878814 ], [ 24.609375, 77.841848 ], [ 24.785156, 77.841848 ], [ 24.785156, 77.804771 ], [ 24.609375, 77.804771 ], [ 24.609375, 77.767582 ], [ 24.433594, 77.767582 ], [ 24.433594, 77.730282 ], [ 24.082031, 77.730282 ], [ 24.082031, 77.692870 ], [ 23.906250, 77.692870 ], [ 23.906250, 77.655346 ], [ 23.730469, 77.655346 ], [ 23.730469, 77.617709 ], [ 23.554688, 77.617709 ], [ 23.554688, 77.579959 ], [ 23.378906, 77.579959 ], [ 23.378906, 77.542096 ], [ 23.027344, 77.542096 ], [ 23.027344, 77.504119 ], [ 22.851562, 77.504119 ], [ 22.851562, 77.466028 ], [ 22.675781, 77.466028 ], [ 22.675781, 77.427824 ], [ 22.324219, 77.427824 ], [ 22.324219, 77.466028 ], [ 21.972656, 77.466028 ], [ 21.972656, 77.504119 ], [ 21.796875, 77.504119 ], [ 21.796875, 77.542096 ], [ 21.445312, 77.542096 ], [ 21.445312, 77.579959 ], [ 21.269531, 77.579959 ], [ 21.269531, 77.617709 ], [ 21.093750, 77.617709 ], [ 21.093750, 77.655346 ], [ 20.742188, 77.655346 ], [ 20.742188, 77.692870 ], [ 20.917969, 77.692870 ], [ 20.917969, 77.767582 ], [ 21.093750, 77.767582 ], [ 21.093750, 77.841848 ], [ 21.269531, 77.841848 ], [ 21.269531, 77.915669 ], [ 21.445312, 77.915669 ], [ 21.445312, 77.989049 ], [ 21.269531, 77.989049 ], [ 21.269531, 78.061989 ], [ 21.093750, 78.061989 ], [ 21.093750, 78.134493 ], [ 20.917969, 78.134493 ], [ 20.917969, 78.206563 ], [ 20.742188, 78.206563 ], [ 20.742188, 78.242436 ], [ 21.093750, 78.242436 ], [ 21.093750, 78.278201 ], [ 21.445312, 78.278201 ], [ 21.445312, 78.313860 ], [ 21.796875, 78.313860 ], [ 21.796875, 78.349411 ], [ 22.148438, 78.349411 ], [ 22.148438, 78.384855 ], [ 22.500000, 78.384855 ], [ 22.500000, 78.420193 ], [ 22.851562, 78.420193 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 68.974164 ], [ 20.917969, 68.974164 ], [ 20.917969, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.847665 ], [ 21.269531, 68.847665 ], [ 21.269531, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.720441 ], [ 21.621094, 68.720441 ], [ 21.621094, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.592487 ], [ 21.972656, 68.592487 ], [ 21.972656, 68.528235 ], [ 22.148438, 68.528235 ], [ 22.148438, 68.463800 ], [ 22.324219, 68.463800 ], [ 22.324219, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 68.334376 ], [ 22.675781, 68.334376 ], [ 22.675781, 68.269387 ], [ 22.851562, 68.269387 ], [ 22.851562, 68.138852 ], [ 23.027344, 68.138852 ], [ 23.027344, 68.073305 ], [ 23.203125, 68.073305 ], [ 23.203125, 68.007571 ], [ 23.378906, 68.007571 ], [ 23.378906, 67.941650 ], [ 23.554688, 67.941650 ], [ 23.554688, 66.231457 ], [ 23.730469, 66.231457 ], [ 23.730469, 66.160511 ], [ 15.117188, 66.160511 ], [ 15.117188, 66.231457 ], [ 15.292969, 66.231457 ], [ 15.292969, 66.443107 ], [ 15.468750, 66.443107 ], [ 15.468750, 66.583217 ], [ 15.644531, 66.583217 ], [ 15.644531, 66.791909 ], [ 15.820312, 66.791909 ], [ 15.820312, 66.998844 ], [ 15.996094, 66.998844 ], [ 15.996094, 67.135829 ], [ 16.171875, 67.135829 ], [ 16.171875, 67.339861 ], [ 16.347656, 67.339861 ], [ 16.347656, 67.609221 ], [ 16.523438, 67.609221 ], [ 16.523438, 67.875541 ], [ 16.699219, 67.875541 ], [ 16.699219, 68.007571 ], [ 17.753906, 68.007571 ], [ 17.753906, 68.269387 ], [ 17.929688, 68.269387 ], [ 17.929688, 68.592487 ], [ 18.105469, 68.592487 ], [ 18.105469, 68.528235 ], [ 18.808594, 68.528235 ], [ 18.808594, 68.463800 ], [ 19.511719, 68.463800 ], [ 19.511719, 68.399180 ], [ 19.863281, 68.399180 ], [ 19.863281, 68.720441 ], [ 20.039062, 68.720441 ], [ 20.039062, 69.037142 ], [ 20.390625, 69.037142 ], [ 20.390625, 69.099940 ], [ 20.566406, 69.099940 ], [ 20.566406, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 68.974164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 69.099940 ], [ 20.566406, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 68.974164 ], [ 20.917969, 68.974164 ], [ 20.917969, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.847665 ], [ 21.269531, 68.847665 ], [ 21.269531, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.720441 ], [ 21.621094, 68.720441 ], [ 21.621094, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.592487 ], [ 21.972656, 68.592487 ], [ 21.972656, 68.528235 ], [ 22.148438, 68.528235 ], [ 22.148438, 68.463800 ], [ 22.324219, 68.463800 ], [ 22.324219, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 68.334376 ], [ 22.675781, 68.334376 ], [ 22.675781, 68.269387 ], [ 22.851562, 68.269387 ], [ 22.851562, 68.138852 ], [ 23.027344, 68.138852 ], [ 23.027344, 68.073305 ], [ 23.203125, 68.073305 ], [ 23.203125, 68.007571 ], [ 23.378906, 68.007571 ], [ 23.378906, 67.941650 ], [ 23.554688, 67.941650 ], [ 23.554688, 66.231457 ], [ 23.730469, 66.231457 ], [ 23.730469, 66.160511 ], [ 15.117188, 66.160511 ], [ 15.117188, 66.231457 ], [ 15.292969, 66.231457 ], [ 15.292969, 66.443107 ], [ 15.468750, 66.443107 ], [ 15.468750, 66.583217 ], [ 15.644531, 66.583217 ], [ 15.644531, 66.791909 ], [ 15.820312, 66.791909 ], [ 15.820312, 66.998844 ], [ 15.996094, 66.998844 ], [ 15.996094, 67.135829 ], [ 16.171875, 67.135829 ], [ 16.171875, 67.339861 ], [ 16.347656, 67.339861 ], [ 16.347656, 67.609221 ], [ 16.523438, 67.609221 ], [ 16.523438, 67.875541 ], [ 16.699219, 67.875541 ], [ 16.699219, 68.007571 ], [ 17.753906, 68.007571 ], [ 17.753906, 68.269387 ], [ 17.929688, 68.269387 ], [ 17.929688, 68.592487 ], [ 18.105469, 68.592487 ], [ 18.105469, 68.528235 ], [ 18.808594, 68.528235 ], [ 18.808594, 68.463800 ], [ 19.511719, 68.463800 ], [ 19.511719, 68.399180 ], [ 19.863281, 68.399180 ], [ 19.863281, 68.720441 ], [ 20.039062, 68.720441 ], [ 20.039062, 69.037142 ], [ 20.390625, 69.037142 ], [ 20.390625, 69.099940 ], [ 20.566406, 69.099940 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 69.960439 ], [ 28.476562, 69.960439 ], [ 28.476562, 69.900118 ], [ 28.652344, 69.900118 ], [ 28.652344, 69.839622 ], [ 28.828125, 69.839622 ], [ 28.828125, 69.778952 ], [ 29.003906, 69.778952 ], [ 29.003906, 69.595890 ], [ 28.828125, 69.595890 ], [ 28.828125, 69.224997 ], [ 28.652344, 69.224997 ], [ 28.652344, 68.656555 ], [ 28.476562, 68.656555 ], [ 28.476562, 68.269387 ], [ 28.652344, 68.269387 ], [ 28.652344, 68.204212 ], [ 28.828125, 68.204212 ], [ 28.828125, 68.138852 ], [ 29.003906, 68.138852 ], [ 29.003906, 68.073305 ], [ 29.179688, 68.073305 ], [ 29.179688, 68.007571 ], [ 29.355469, 68.007571 ], [ 29.355469, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.809245 ], [ 29.707031, 67.809245 ], [ 29.707031, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.676085 ], [ 30.058594, 67.676085 ], [ 30.058594, 67.609221 ], [ 29.882812, 67.609221 ], [ 29.882812, 67.474922 ], [ 29.707031, 67.474922 ], [ 29.707031, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.204032 ], [ 29.355469, 67.204032 ], [ 29.355469, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.930060 ], [ 29.003906, 66.930060 ], [ 29.003906, 66.791909 ], [ 29.179688, 66.791909 ], [ 29.179688, 66.652977 ], [ 29.355469, 66.652977 ], [ 29.355469, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 66.372755 ], [ 29.707031, 66.372755 ], [ 29.707031, 66.231457 ], [ 29.882812, 66.231457 ], [ 29.882812, 66.160511 ], [ 23.730469, 66.160511 ], [ 23.730469, 66.231457 ], [ 23.554688, 66.231457 ], [ 23.554688, 67.941650 ], [ 23.378906, 67.941650 ], [ 23.378906, 68.007571 ], [ 23.203125, 68.007571 ], [ 23.203125, 68.073305 ], [ 23.027344, 68.073305 ], [ 23.027344, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.269387 ], [ 22.675781, 68.269387 ], [ 22.675781, 68.334376 ], [ 22.500000, 68.334376 ], [ 22.500000, 68.399180 ], [ 22.324219, 68.399180 ], [ 22.324219, 68.463800 ], [ 22.148438, 68.463800 ], [ 22.148438, 68.528235 ], [ 21.972656, 68.528235 ], [ 21.972656, 68.592487 ], [ 21.796875, 68.592487 ], [ 21.796875, 68.656555 ], [ 21.621094, 68.656555 ], [ 21.621094, 68.720441 ], [ 21.445312, 68.720441 ], [ 21.445312, 68.784144 ], [ 21.269531, 68.784144 ], [ 21.269531, 68.847665 ], [ 21.093750, 68.847665 ], [ 21.093750, 68.911005 ], [ 20.917969, 68.911005 ], [ 20.917969, 68.974164 ], [ 20.742188, 68.974164 ], [ 20.742188, 69.037142 ], [ 20.566406, 69.037142 ], [ 20.566406, 69.099940 ], [ 20.742188, 69.099940 ], [ 20.742188, 69.162558 ], [ 20.917969, 69.162558 ], [ 20.917969, 69.224997 ], [ 21.093750, 69.224997 ], [ 21.093750, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.224997 ], [ 21.621094, 69.224997 ], [ 21.621094, 69.099940 ], [ 21.796875, 69.099940 ], [ 21.796875, 69.037142 ], [ 21.972656, 69.037142 ], [ 21.972656, 68.974164 ], [ 22.148438, 68.974164 ], [ 22.148438, 68.847665 ], [ 23.203125, 68.847665 ], [ 23.203125, 68.911005 ], [ 23.730469, 68.911005 ], [ 23.730469, 68.847665 ], [ 24.082031, 68.847665 ], [ 24.082031, 68.784144 ], [ 24.257812, 68.784144 ], [ 24.257812, 68.720441 ], [ 24.609375, 68.720441 ], [ 24.609375, 68.656555 ], [ 24.960938, 68.656555 ], [ 24.960938, 68.784144 ], [ 25.136719, 68.784144 ], [ 25.136719, 68.847665 ], [ 25.312500, 68.847665 ], [ 25.312500, 68.911005 ], [ 25.488281, 68.911005 ], [ 25.488281, 69.037142 ], [ 25.664062, 69.037142 ], [ 25.664062, 69.224997 ], [ 25.839844, 69.224997 ], [ 25.839844, 69.472969 ], [ 26.015625, 69.472969 ], [ 26.015625, 69.718107 ], [ 26.191406, 69.718107 ], [ 26.191406, 69.839622 ], [ 26.367188, 69.839622 ], [ 26.367188, 69.900118 ], [ 26.718750, 69.900118 ], [ 26.718750, 69.960439 ], [ 27.070312, 69.960439 ], [ 27.070312, 70.020587 ], [ 27.421875, 70.020587 ], [ 27.421875, 70.080562 ], [ 27.949219, 70.080562 ], [ 27.949219, 70.020587 ], [ 28.125000, 70.020587 ], [ 28.125000, 69.960439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 70.080562 ], [ 27.949219, 70.020587 ], [ 28.125000, 70.020587 ], [ 28.125000, 69.960439 ], [ 28.476562, 69.960439 ], [ 28.476562, 69.900118 ], [ 28.652344, 69.900118 ], [ 28.652344, 69.839622 ], [ 28.828125, 69.839622 ], [ 28.828125, 69.778952 ], [ 29.003906, 69.778952 ], [ 29.003906, 69.595890 ], [ 28.828125, 69.595890 ], [ 28.828125, 69.224997 ], [ 28.652344, 69.224997 ], [ 28.652344, 68.656555 ], [ 28.476562, 68.656555 ], [ 28.476562, 68.269387 ], [ 28.652344, 68.269387 ], [ 28.652344, 68.204212 ], [ 28.828125, 68.204212 ], [ 28.828125, 68.138852 ], [ 29.003906, 68.138852 ], [ 29.003906, 68.073305 ], [ 29.179688, 68.073305 ], [ 29.179688, 68.007571 ], [ 29.355469, 68.007571 ], [ 29.355469, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.809245 ], [ 29.707031, 67.809245 ], [ 29.707031, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.676085 ], [ 30.058594, 67.676085 ], [ 30.058594, 67.609221 ], [ 29.882812, 67.609221 ], [ 29.882812, 67.474922 ], [ 29.707031, 67.474922 ], [ 29.707031, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.204032 ], [ 29.355469, 67.204032 ], [ 29.355469, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.930060 ], [ 29.003906, 66.930060 ], [ 29.003906, 66.791909 ], [ 29.179688, 66.791909 ], [ 29.179688, 66.652977 ], [ 29.355469, 66.652977 ], [ 29.355469, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 66.372755 ], [ 29.707031, 66.372755 ], [ 29.707031, 66.231457 ], [ 29.882812, 66.231457 ], [ 29.882812, 66.160511 ], [ 23.730469, 66.160511 ], [ 23.730469, 66.231457 ], [ 23.554688, 66.231457 ], [ 23.554688, 67.941650 ], [ 23.378906, 67.941650 ], [ 23.378906, 68.007571 ], [ 23.203125, 68.007571 ], [ 23.203125, 68.073305 ], [ 23.027344, 68.073305 ], [ 23.027344, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.269387 ], [ 22.675781, 68.269387 ], [ 22.675781, 68.334376 ], [ 22.500000, 68.334376 ], [ 22.500000, 68.399180 ], [ 22.324219, 68.399180 ], [ 22.324219, 68.463800 ], [ 22.148438, 68.463800 ], [ 22.148438, 68.528235 ], [ 21.972656, 68.528235 ], [ 21.972656, 68.592487 ], [ 21.796875, 68.592487 ], [ 21.796875, 68.656555 ], [ 21.621094, 68.656555 ], [ 21.621094, 68.720441 ], [ 21.445312, 68.720441 ], [ 21.445312, 68.784144 ], [ 21.269531, 68.784144 ], [ 21.269531, 68.847665 ], [ 21.093750, 68.847665 ], [ 21.093750, 68.911005 ], [ 20.917969, 68.911005 ], [ 20.917969, 68.974164 ], [ 20.742188, 68.974164 ], [ 20.742188, 69.037142 ], [ 20.566406, 69.037142 ], [ 20.566406, 69.099940 ], [ 20.742188, 69.099940 ], [ 20.742188, 69.162558 ], [ 20.917969, 69.162558 ], [ 20.917969, 69.224997 ], [ 21.093750, 69.224997 ], [ 21.093750, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.224997 ], [ 21.621094, 69.224997 ], [ 21.621094, 69.099940 ], [ 21.796875, 69.099940 ], [ 21.796875, 69.037142 ], [ 21.972656, 69.037142 ], [ 21.972656, 68.974164 ], [ 22.148438, 68.974164 ], [ 22.148438, 68.847665 ], [ 23.203125, 68.847665 ], [ 23.203125, 68.911005 ], [ 23.730469, 68.911005 ], [ 23.730469, 68.847665 ], [ 24.082031, 68.847665 ], [ 24.082031, 68.784144 ], [ 24.257812, 68.784144 ], [ 24.257812, 68.720441 ], [ 24.609375, 68.720441 ], [ 24.609375, 68.656555 ], [ 24.960938, 68.656555 ], [ 24.960938, 68.784144 ], [ 25.136719, 68.784144 ], [ 25.136719, 68.847665 ], [ 25.312500, 68.847665 ], [ 25.312500, 68.911005 ], [ 25.488281, 68.911005 ], [ 25.488281, 69.037142 ], [ 25.664062, 69.037142 ], [ 25.664062, 69.224997 ], [ 25.839844, 69.224997 ], [ 25.839844, 69.472969 ], [ 26.015625, 69.472969 ], [ 26.015625, 69.718107 ], [ 26.191406, 69.718107 ], [ 26.191406, 69.839622 ], [ 26.367188, 69.839622 ], [ 26.367188, 69.900118 ], [ 26.718750, 69.900118 ], [ 26.718750, 69.960439 ], [ 27.070312, 69.960439 ], [ 27.070312, 70.020587 ], [ 27.421875, 70.020587 ], [ 27.421875, 70.080562 ], [ 27.949219, 70.080562 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.589727 ], [ 45.175781, 80.589727 ], [ 45.175781, 80.618424 ], [ 45.527344, 80.618424 ], [ 45.527344, 80.647035 ], [ 45.878906, 80.647035 ], [ 45.878906, 80.589727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.647035 ], [ 45.878906, 80.589727 ], [ 45.175781, 80.589727 ], [ 45.175781, 80.618424 ], [ 45.527344, 80.618424 ], [ 45.527344, 80.647035 ], [ 45.878906, 80.647035 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.226562, 79.966590 ], [ 17.402344, 79.966590 ], [ 17.402344, 79.905154 ], [ 17.578125, 79.905154 ], [ 17.578125, 79.874297 ], [ 17.753906, 79.874297 ], [ 17.753906, 79.812302 ], [ 17.929688, 79.812302 ], [ 17.929688, 79.749932 ], [ 18.105469, 79.749932 ], [ 18.105469, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.655668 ], [ 18.457031, 79.655668 ], [ 18.457031, 79.624056 ], [ 18.632812, 79.624056 ], [ 18.632812, 79.560546 ], [ 18.808594, 79.560546 ], [ 18.808594, 79.528647 ], [ 18.984375, 79.528647 ], [ 18.984375, 79.496652 ], [ 19.160156, 79.496652 ], [ 19.160156, 79.464560 ], [ 19.335938, 79.464560 ], [ 19.335938, 79.400085 ], [ 19.511719, 79.400085 ], [ 19.511719, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.335219 ], [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.269962 ], [ 20.214844, 79.269962 ], [ 20.214844, 79.204309 ], [ 20.390625, 79.204309 ], [ 20.390625, 79.171335 ], [ 20.566406, 79.171335 ], [ 20.566406, 79.138260 ], [ 20.742188, 79.138260 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 79.004962 ], [ 11.074219, 79.004962 ], [ 11.074219, 79.071812 ], [ 10.898438, 79.071812 ], [ 10.898438, 79.237185 ], [ 10.722656, 79.237185 ], [ 10.722656, 79.400085 ], [ 10.546875, 79.400085 ], [ 10.546875, 79.560546 ], [ 10.371094, 79.560546 ], [ 10.371094, 79.655668 ], [ 10.546875, 79.655668 ], [ 10.546875, 79.687184 ], [ 10.898438, 79.687184 ], [ 10.898438, 79.718605 ], [ 11.074219, 79.718605 ], [ 11.074219, 79.749932 ], [ 11.425781, 79.749932 ], [ 11.425781, 79.781164 ], [ 11.601562, 79.781164 ], [ 11.601562, 79.812302 ], [ 11.953125, 79.812302 ], [ 11.953125, 79.843346 ], [ 12.128906, 79.843346 ], [ 12.128906, 79.874297 ], [ 12.304688, 79.874297 ], [ 12.304688, 79.905154 ], [ 12.656250, 79.905154 ], [ 12.656250, 79.935918 ], [ 12.832031, 79.935918 ], [ 12.832031, 79.966590 ], [ 13.183594, 79.966590 ], [ 13.183594, 79.935918 ], [ 13.359375, 79.935918 ], [ 13.359375, 79.812302 ], [ 13.535156, 79.812302 ], [ 13.535156, 79.687184 ], [ 13.710938, 79.687184 ], [ 13.710938, 79.655668 ], [ 14.589844, 79.655668 ], [ 14.589844, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.749932 ], [ 15.292969, 79.749932 ], [ 15.292969, 79.935918 ], [ 15.468750, 79.935918 ], [ 15.468750, 80.027655 ], [ 16.347656, 80.027655 ], [ 16.347656, 80.058050 ], [ 17.050781, 80.058050 ], [ 17.050781, 80.027655 ], [ 17.226562, 80.027655 ], [ 17.226562, 79.966590 ] ] ], [ [ [ 23.906250, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.503112 ], [ 24.609375, 80.503112 ], [ 24.609375, 80.474065 ], [ 24.960938, 80.474065 ], [ 24.960938, 80.444931 ], [ 25.312500, 80.444931 ], [ 25.312500, 80.415707 ], [ 25.488281, 80.415707 ], [ 25.488281, 80.386396 ], [ 25.664062, 80.386396 ], [ 25.664062, 80.356995 ], [ 25.839844, 80.356995 ], [ 25.839844, 80.327506 ], [ 26.015625, 80.327506 ], [ 26.015625, 80.297927 ], [ 26.191406, 80.297927 ], [ 26.191406, 80.268259 ], [ 26.367188, 80.268259 ], [ 26.367188, 80.238501 ], [ 26.542969, 80.238501 ], [ 26.542969, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.148684 ], [ 26.894531, 80.148684 ], [ 26.894531, 80.118564 ], [ 27.070312, 80.118564 ], [ 27.070312, 80.088352 ], [ 27.246094, 80.088352 ], [ 27.246094, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 80.027655 ], [ 27.246094, 80.027655 ], [ 27.246094, 79.966590 ], [ 27.070312, 79.966590 ], [ 27.070312, 79.905154 ], [ 26.894531, 79.905154 ], [ 26.894531, 79.843346 ], [ 26.718750, 79.843346 ], [ 26.718750, 79.781164 ], [ 26.542969, 79.781164 ], [ 26.542969, 79.718605 ], [ 26.367188, 79.718605 ], [ 26.367188, 79.655668 ], [ 26.191406, 79.655668 ], [ 26.191406, 79.592349 ], [ 26.015625, 79.592349 ], [ 26.015625, 79.528647 ], [ 25.664062, 79.528647 ], [ 25.664062, 79.496652 ], [ 24.960938, 79.496652 ], [ 24.960938, 79.464560 ], [ 24.257812, 79.464560 ], [ 24.257812, 79.432371 ], [ 23.554688, 79.432371 ], [ 23.554688, 79.400085 ], [ 22.675781, 79.400085 ], [ 22.675781, 79.432371 ], [ 21.972656, 79.432371 ], [ 21.972656, 79.464560 ], [ 21.445312, 79.464560 ], [ 21.445312, 79.496652 ], [ 20.917969, 79.496652 ], [ 20.917969, 79.528647 ], [ 20.214844, 79.528647 ], [ 20.214844, 79.560546 ], [ 20.039062, 79.560546 ], [ 20.039062, 79.687184 ], [ 19.863281, 79.687184 ], [ 19.863281, 79.843346 ], [ 18.984375, 79.843346 ], [ 18.984375, 79.874297 ], [ 18.457031, 79.874297 ], [ 18.457031, 79.905154 ], [ 18.281250, 79.905154 ], [ 18.281250, 79.966590 ], [ 18.105469, 79.966590 ], [ 18.105469, 80.058050 ], [ 17.929688, 80.058050 ], [ 17.929688, 80.118564 ], [ 17.753906, 80.118564 ], [ 17.753906, 80.208652 ], [ 17.578125, 80.208652 ], [ 17.578125, 80.268259 ], [ 17.402344, 80.268259 ], [ 17.402344, 80.327506 ], [ 17.578125, 80.327506 ], [ 17.578125, 80.356995 ], [ 17.929688, 80.356995 ], [ 17.929688, 80.386396 ], [ 18.281250, 80.386396 ], [ 18.281250, 80.415707 ], [ 18.632812, 80.415707 ], [ 18.632812, 80.444931 ], [ 18.984375, 80.444931 ], [ 18.984375, 80.474065 ], [ 19.335938, 80.474065 ], [ 19.335938, 80.503112 ], [ 19.687500, 80.503112 ], [ 19.687500, 80.532071 ], [ 20.039062, 80.532071 ], [ 20.039062, 80.560943 ], [ 20.566406, 80.560943 ], [ 20.566406, 80.532071 ], [ 20.742188, 80.532071 ], [ 20.742188, 80.503112 ], [ 20.917969, 80.503112 ], [ 20.917969, 80.474065 ], [ 21.269531, 80.474065 ], [ 21.269531, 80.444931 ], [ 21.445312, 80.444931 ], [ 21.445312, 80.415707 ], [ 21.621094, 80.415707 ], [ 21.621094, 80.386396 ], [ 21.796875, 80.386396 ], [ 21.796875, 80.356995 ], [ 21.972656, 80.356995 ], [ 21.972656, 80.386396 ], [ 22.148438, 80.386396 ], [ 22.148438, 80.444931 ], [ 22.324219, 80.444931 ], [ 22.324219, 80.503112 ], [ 22.500000, 80.503112 ], [ 22.500000, 80.560943 ], [ 22.675781, 80.560943 ], [ 22.675781, 80.618424 ], [ 23.203125, 80.618424 ], [ 23.203125, 80.589727 ], [ 23.554688, 80.589727 ], [ 23.554688, 80.560943 ], [ 23.906250, 80.560943 ], [ 23.906250, 80.532071 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.050781, 80.058050 ], [ 17.050781, 80.027655 ], [ 17.226562, 80.027655 ], [ 17.226562, 79.966590 ], [ 17.402344, 79.966590 ], [ 17.402344, 79.905154 ], [ 17.578125, 79.905154 ], [ 17.578125, 79.874297 ], [ 17.753906, 79.874297 ], [ 17.753906, 79.812302 ], [ 17.929688, 79.812302 ], [ 17.929688, 79.749932 ], [ 18.105469, 79.749932 ], [ 18.105469, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.655668 ], [ 18.457031, 79.655668 ], [ 18.457031, 79.624056 ], [ 18.632812, 79.624056 ], [ 18.632812, 79.560546 ], [ 18.808594, 79.560546 ], [ 18.808594, 79.528647 ], [ 18.984375, 79.528647 ], [ 18.984375, 79.496652 ], [ 19.160156, 79.496652 ], [ 19.160156, 79.464560 ], [ 19.335938, 79.464560 ], [ 19.335938, 79.400085 ], [ 19.511719, 79.400085 ], [ 19.511719, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.335219 ], [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.269962 ], [ 20.214844, 79.269962 ], [ 20.214844, 79.204309 ], [ 20.390625, 79.204309 ], [ 20.390625, 79.171335 ], [ 20.566406, 79.171335 ], [ 20.566406, 79.138260 ], [ 20.742188, 79.138260 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 79.004962 ], [ 11.074219, 79.004962 ], [ 11.074219, 79.071812 ], [ 10.898438, 79.071812 ], [ 10.898438, 79.237185 ], [ 10.722656, 79.237185 ], [ 10.722656, 79.400085 ], [ 10.546875, 79.400085 ], [ 10.546875, 79.560546 ], [ 10.371094, 79.560546 ], [ 10.371094, 79.655668 ], [ 10.546875, 79.655668 ], [ 10.546875, 79.687184 ], [ 10.898438, 79.687184 ], [ 10.898438, 79.718605 ], [ 11.074219, 79.718605 ], [ 11.074219, 79.749932 ], [ 11.425781, 79.749932 ], [ 11.425781, 79.781164 ], [ 11.601562, 79.781164 ], [ 11.601562, 79.812302 ], [ 11.953125, 79.812302 ], [ 11.953125, 79.843346 ], [ 12.128906, 79.843346 ], [ 12.128906, 79.874297 ], [ 12.304688, 79.874297 ], [ 12.304688, 79.905154 ], [ 12.656250, 79.905154 ], [ 12.656250, 79.935918 ], [ 12.832031, 79.935918 ], [ 12.832031, 79.966590 ], [ 13.183594, 79.966590 ], [ 13.183594, 79.935918 ], [ 13.359375, 79.935918 ], [ 13.359375, 79.812302 ], [ 13.535156, 79.812302 ], [ 13.535156, 79.687184 ], [ 13.710938, 79.687184 ], [ 13.710938, 79.655668 ], [ 14.589844, 79.655668 ], [ 14.589844, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.749932 ], [ 15.292969, 79.749932 ], [ 15.292969, 79.935918 ], [ 15.468750, 79.935918 ], [ 15.468750, 80.027655 ], [ 16.347656, 80.027655 ], [ 16.347656, 80.058050 ], [ 17.050781, 80.058050 ] ] ], [ [ [ 23.203125, 80.618424 ], [ 23.203125, 80.589727 ], [ 23.554688, 80.589727 ], [ 23.554688, 80.560943 ], [ 23.906250, 80.560943 ], [ 23.906250, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.503112 ], [ 24.609375, 80.503112 ], [ 24.609375, 80.474065 ], [ 24.960938, 80.474065 ], [ 24.960938, 80.444931 ], [ 25.312500, 80.444931 ], [ 25.312500, 80.415707 ], [ 25.488281, 80.415707 ], [ 25.488281, 80.386396 ], [ 25.664062, 80.386396 ], [ 25.664062, 80.356995 ], [ 25.839844, 80.356995 ], [ 25.839844, 80.327506 ], [ 26.015625, 80.327506 ], [ 26.015625, 80.297927 ], [ 26.191406, 80.297927 ], [ 26.191406, 80.268259 ], [ 26.367188, 80.268259 ], [ 26.367188, 80.238501 ], [ 26.542969, 80.238501 ], [ 26.542969, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.148684 ], [ 26.894531, 80.148684 ], [ 26.894531, 80.118564 ], [ 27.070312, 80.118564 ], [ 27.070312, 80.088352 ], [ 27.246094, 80.088352 ], [ 27.246094, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 80.027655 ], [ 27.246094, 80.027655 ], [ 27.246094, 79.966590 ], [ 27.070312, 79.966590 ], [ 27.070312, 79.905154 ], [ 26.894531, 79.905154 ], [ 26.894531, 79.843346 ], [ 26.718750, 79.843346 ], [ 26.718750, 79.781164 ], [ 26.542969, 79.781164 ], [ 26.542969, 79.718605 ], [ 26.367188, 79.718605 ], [ 26.367188, 79.655668 ], [ 26.191406, 79.655668 ], [ 26.191406, 79.592349 ], [ 26.015625, 79.592349 ], [ 26.015625, 79.528647 ], [ 25.664062, 79.528647 ], [ 25.664062, 79.496652 ], [ 24.960938, 79.496652 ], [ 24.960938, 79.464560 ], [ 24.257812, 79.464560 ], [ 24.257812, 79.432371 ], [ 23.554688, 79.432371 ], [ 23.554688, 79.400085 ], [ 22.675781, 79.400085 ], [ 22.675781, 79.432371 ], [ 21.972656, 79.432371 ], [ 21.972656, 79.464560 ], [ 21.445312, 79.464560 ], [ 21.445312, 79.496652 ], [ 20.917969, 79.496652 ], [ 20.917969, 79.528647 ], [ 20.214844, 79.528647 ], [ 20.214844, 79.560546 ], [ 20.039062, 79.560546 ], [ 20.039062, 79.687184 ], [ 19.863281, 79.687184 ], [ 19.863281, 79.843346 ], [ 18.984375, 79.843346 ], [ 18.984375, 79.874297 ], [ 18.457031, 79.874297 ], [ 18.457031, 79.905154 ], [ 18.281250, 79.905154 ], [ 18.281250, 79.966590 ], [ 18.105469, 79.966590 ], [ 18.105469, 80.058050 ], [ 17.929688, 80.058050 ], [ 17.929688, 80.118564 ], [ 17.753906, 80.118564 ], [ 17.753906, 80.208652 ], [ 17.578125, 80.208652 ], [ 17.578125, 80.268259 ], [ 17.402344, 80.268259 ], [ 17.402344, 80.327506 ], [ 17.578125, 80.327506 ], [ 17.578125, 80.356995 ], [ 17.929688, 80.356995 ], [ 17.929688, 80.386396 ], [ 18.281250, 80.386396 ], [ 18.281250, 80.415707 ], [ 18.632812, 80.415707 ], [ 18.632812, 80.444931 ], [ 18.984375, 80.444931 ], [ 18.984375, 80.474065 ], [ 19.335938, 80.474065 ], [ 19.335938, 80.503112 ], [ 19.687500, 80.503112 ], [ 19.687500, 80.532071 ], [ 20.039062, 80.532071 ], [ 20.039062, 80.560943 ], [ 20.566406, 80.560943 ], [ 20.566406, 80.532071 ], [ 20.742188, 80.532071 ], [ 20.742188, 80.503112 ], [ 20.917969, 80.503112 ], [ 20.917969, 80.474065 ], [ 21.269531, 80.474065 ], [ 21.269531, 80.444931 ], [ 21.445312, 80.444931 ], [ 21.445312, 80.415707 ], [ 21.621094, 80.415707 ], [ 21.621094, 80.386396 ], [ 21.796875, 80.386396 ], [ 21.796875, 80.356995 ], [ 21.972656, 80.356995 ], [ 21.972656, 80.386396 ], [ 22.148438, 80.386396 ], [ 22.148438, 80.444931 ], [ 22.324219, 80.444931 ], [ 22.324219, 80.503112 ], [ 22.500000, 80.503112 ], [ 22.500000, 80.560943 ], [ 22.675781, 80.560943 ], [ 22.675781, 80.618424 ], [ 23.203125, 80.618424 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.128906, -66.443107 ], [ 57.304688, -66.443107 ], [ 57.304688, -66.722541 ], [ 57.480469, -66.722541 ], [ 57.480469, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -66.861082 ], [ 57.832031, -66.861082 ], [ 57.832031, -66.930060 ], [ 58.007812, -66.930060 ], [ 58.007812, -66.998844 ], [ 58.183594, -66.998844 ], [ 58.183594, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.135829 ], [ 58.535156, -67.135829 ], [ 58.535156, -67.272043 ], [ 58.886719, -67.272043 ], [ 58.886719, -67.339861 ], [ 59.589844, -67.339861 ], [ 59.589844, -67.407487 ], [ 59.941406, -67.407487 ], [ 59.941406, -67.474922 ], [ 60.117188, -67.474922 ], [ 60.117188, -67.542167 ], [ 60.292969, -67.542167 ], [ 60.292969, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.676085 ], [ 60.644531, -67.676085 ], [ 60.644531, -67.742759 ], [ 60.820312, -67.742759 ], [ 60.820312, -67.809245 ], [ 60.996094, -67.809245 ], [ 60.996094, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -67.941650 ], [ 61.699219, -67.941650 ], [ 61.699219, -68.007571 ], [ 62.578125, -68.007571 ], [ 62.578125, -67.941650 ], [ 62.929688, -67.941650 ], [ 62.929688, -67.875541 ], [ 63.105469, -67.875541 ], [ 63.105469, -67.809245 ], [ 63.281250, -67.809245 ], [ 63.281250, -67.742759 ], [ 63.457031, -67.742759 ], [ 63.457031, -67.609221 ], [ 63.632812, -67.609221 ], [ 63.632812, -67.542167 ], [ 63.808594, -67.542167 ], [ 63.808594, -67.474922 ], [ 64.335938, -67.474922 ], [ 64.335938, -67.542167 ], [ 64.687500, -67.542167 ], [ 64.687500, -67.609221 ], [ 65.214844, -67.609221 ], [ 65.214844, -67.676085 ], [ 65.566406, -67.676085 ], [ 65.566406, -67.742759 ], [ 66.093750, -67.742759 ], [ 66.093750, -67.809245 ], [ 66.621094, -67.809245 ], [ 66.621094, -67.875541 ], [ 67.324219, -67.875541 ], [ 67.324219, -67.941650 ], [ 68.906250, -67.941650 ], [ 68.906250, -68.073305 ], [ 69.082031, -68.073305 ], [ 69.082031, -68.269387 ], [ 69.257812, -68.269387 ], [ 69.257812, -68.463800 ], [ 69.433594, -68.463800 ], [ 69.433594, -68.720441 ], [ 69.609375, -68.720441 ], [ 69.609375, -68.911005 ], [ 69.785156, -68.911005 ], [ 69.785156, -69.099940 ], [ 69.609375, -69.099940 ], [ 69.609375, -69.718107 ], [ 69.433594, -69.718107 ], [ 69.433594, -69.778952 ], [ 69.257812, -69.778952 ], [ 69.257812, -69.839622 ], [ 68.906250, -69.839622 ], [ 68.906250, -69.900118 ], [ 68.730469, -69.900118 ], [ 68.730469, -69.960439 ], [ 68.554688, -69.960439 ], [ 68.554688, -70.020587 ], [ 68.378906, -70.020587 ], [ 68.378906, -70.140364 ], [ 68.203125, -70.140364 ], [ 68.203125, -70.199994 ], [ 68.027344, -70.199994 ], [ 68.027344, -70.318738 ], [ 67.851562, -70.318738 ], [ 67.851562, -70.495574 ], [ 68.027344, -70.495574 ], [ 68.027344, -70.670881 ], [ 69.082031, -70.670881 ], [ 69.082031, -70.902268 ], [ 68.906250, -70.902268 ], [ 68.906250, -71.187754 ], [ 68.730469, -71.187754 ], [ 68.730469, -71.300793 ], [ 68.554688, -71.300793 ], [ 68.554688, -71.413177 ], [ 68.378906, -71.413177 ], [ 68.378906, -71.580532 ], [ 68.203125, -71.580532 ], [ 68.203125, -71.801410 ], [ 68.027344, -71.801410 ], [ 68.027344, -71.910888 ], [ 68.203125, -71.910888 ], [ 68.203125, -72.019729 ], [ 68.378906, -72.019729 ], [ 68.378906, -72.073911 ], [ 68.554688, -72.073911 ], [ 68.554688, -72.181804 ], [ 68.906250, -72.181804 ], [ 68.906250, -72.235514 ], [ 69.433594, -72.235514 ], [ 69.433594, -72.289067 ], [ 69.960938, -72.289067 ], [ 69.960938, -72.235514 ], [ 70.312500, -72.235514 ], [ 70.312500, -72.181804 ], [ 70.664062, -72.181804 ], [ 70.664062, -72.127936 ], [ 71.015625, -72.127936 ], [ 71.015625, -72.019729 ], [ 71.191406, -72.019729 ], [ 71.191406, -71.910888 ], [ 71.367188, -71.910888 ], [ 71.367188, -71.801410 ], [ 71.542969, -71.801410 ], [ 71.542969, -71.635993 ], [ 71.718750, -71.635993 ], [ 71.718750, -71.413177 ], [ 71.894531, -71.413177 ], [ 71.894531, -71.300793 ], [ 72.070312, -71.300793 ], [ 72.070312, -71.187754 ], [ 72.246094, -71.187754 ], [ 72.246094, -71.074056 ], [ 72.421875, -71.074056 ], [ 72.421875, -71.016960 ], [ 72.597656, -71.016960 ], [ 72.597656, -70.959697 ], [ 72.773438, -70.959697 ], [ 72.773438, -70.844673 ], [ 72.949219, -70.844673 ], [ 72.949219, -70.786910 ], [ 73.125000, -70.786910 ], [ 73.125000, -70.554179 ], [ 73.300781, -70.554179 ], [ 73.300781, -70.318738 ], [ 73.476562, -70.318738 ], [ 73.476562, -70.140364 ], [ 73.652344, -70.140364 ], [ 73.652344, -70.020587 ], [ 73.828125, -70.020587 ], [ 73.828125, -69.900118 ], [ 74.179688, -69.900118 ], [ 74.179688, -69.839622 ], [ 74.531250, -69.839622 ], [ 74.531250, -69.778952 ], [ 75.234375, -69.778952 ], [ 75.234375, -69.718107 ], [ 75.937500, -69.718107 ], [ 75.937500, -69.657086 ], [ 76.464844, -69.657086 ], [ 76.464844, -69.595890 ], [ 76.992188, -69.595890 ], [ 76.992188, -69.534518 ], [ 77.519531, -69.534518 ], [ 77.519531, -69.472969 ], [ 77.695312, -69.472969 ], [ 77.695312, -69.411242 ], [ 77.871094, -69.411242 ], [ 77.871094, -69.224997 ], [ 78.046875, -69.224997 ], [ 78.046875, -69.037142 ], [ 78.222656, -69.037142 ], [ 78.222656, -68.847665 ], [ 78.398438, -68.847665 ], [ 78.398438, -68.720441 ], [ 78.574219, -68.720441 ], [ 78.574219, -68.592487 ], [ 78.750000, -68.592487 ], [ 78.750000, -68.528235 ], [ 78.925781, -68.528235 ], [ 78.925781, -68.399180 ], [ 79.101562, -68.399180 ], [ 79.101562, -68.334376 ], [ 79.277344, -68.334376 ], [ 79.277344, -68.269387 ], [ 79.628906, -68.269387 ], [ 79.628906, -68.204212 ], [ 79.804688, -68.204212 ], [ 79.804688, -68.138852 ], [ 80.156250, -68.138852 ], [ 80.156250, -68.073305 ], [ 80.332031, -68.073305 ], [ 80.332031, -68.007571 ], [ 80.683594, -68.007571 ], [ 80.683594, -67.941650 ], [ 80.859375, -67.941650 ], [ 80.859375, -67.875541 ], [ 81.035156, -67.875541 ], [ 81.035156, -67.809245 ], [ 81.210938, -67.809245 ], [ 81.210938, -67.676085 ], [ 81.386719, -67.676085 ], [ 81.386719, -67.609221 ], [ 81.562500, -67.609221 ], [ 81.562500, -67.542167 ], [ 81.738281, -67.542167 ], [ 81.738281, -67.474922 ], [ 81.914062, -67.474922 ], [ 81.914062, -67.407487 ], [ 82.089844, -67.407487 ], [ 82.089844, -67.339861 ], [ 82.441406, -67.339861 ], [ 82.441406, -67.272043 ], [ 82.792969, -67.272043 ], [ 82.792969, -67.204032 ], [ 82.968750, -67.204032 ], [ 82.968750, -67.272043 ], [ 83.496094, -67.272043 ], [ 83.496094, -67.339861 ], [ 84.199219, -67.339861 ], [ 84.199219, -67.272043 ], [ 84.550781, -67.272043 ], [ 84.550781, -67.204032 ], [ 85.078125, -67.204032 ], [ 85.078125, -67.135829 ], [ 85.429688, -67.135829 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.135829 ], [ 87.011719, -67.135829 ], [ 87.011719, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.998844 ], [ 87.363281, -66.998844 ], [ 87.363281, -66.930060 ], [ 87.539062, -66.930060 ], [ 87.539062, -66.791909 ], [ 87.714844, -66.791909 ], [ 87.714844, -66.583217 ], [ 87.890625, -66.583217 ], [ 87.890625, -66.372755 ], [ 88.066406, -66.372755 ], [ 88.066406, -66.302205 ], [ 88.242188, -66.302205 ], [ 88.242188, -66.443107 ], [ 88.417969, -66.443107 ], [ 88.417969, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.861082 ], [ 88.769531, -66.861082 ], [ 88.769531, -66.998844 ], [ 89.121094, -66.998844 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 90.878906, -67.204032 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.204212 ], [ 44.648438, -68.204212 ], [ 44.648438, -68.138852 ], [ 44.824219, -68.138852 ], [ 44.824219, -68.073305 ], [ 45.000000, -68.073305 ], [ 45.000000, -68.007571 ], [ 45.175781, -68.007571 ], [ 45.175781, -67.941650 ], [ 45.527344, -67.941650 ], [ 45.527344, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ], [ 45.878906, -67.742759 ], [ 46.230469, -67.742759 ], [ 46.230469, -67.676085 ], [ 46.582031, -67.676085 ], [ 46.582031, -67.609221 ], [ 46.757812, -67.609221 ], [ 46.757812, -67.676085 ], [ 47.109375, -67.676085 ], [ 47.109375, -67.742759 ], [ 47.636719, -67.742759 ], [ 47.636719, -67.676085 ], [ 47.812500, -67.676085 ], [ 47.812500, -67.542167 ], [ 47.988281, -67.542167 ], [ 47.988281, -67.474922 ], [ 48.164062, -67.474922 ], [ 48.164062, -67.407487 ], [ 48.339844, -67.407487 ], [ 48.339844, -67.339861 ], [ 48.515625, -67.339861 ], [ 48.515625, -67.272043 ], [ 48.691406, -67.272043 ], [ 48.691406, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.135829 ], [ 49.042969, -67.135829 ], [ 49.042969, -67.067433 ], [ 49.394531, -67.067433 ], [ 49.394531, -67.135829 ], [ 50.097656, -67.135829 ], [ 50.097656, -67.067433 ], [ 50.273438, -67.067433 ], [ 50.273438, -66.998844 ], [ 50.625000, -66.998844 ], [ 50.625000, -66.930060 ], [ 50.800781, -66.930060 ], [ 50.800781, -66.722541 ], [ 50.976562, -66.722541 ], [ 50.976562, -66.513260 ], [ 51.152344, -66.513260 ], [ 51.152344, -66.443107 ], [ 51.328125, -66.443107 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.302205 ], [ 51.855469, -66.302205 ], [ 51.855469, -66.231457 ], [ 52.207031, -66.231457 ], [ 52.207031, -66.160511 ], [ 56.953125, -66.160511 ], [ 56.953125, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.443107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.953125, -66.160511 ], [ 56.953125, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.443107 ], [ 57.304688, -66.443107 ], [ 57.304688, -66.722541 ], [ 57.480469, -66.722541 ], [ 57.480469, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -66.861082 ], [ 57.832031, -66.861082 ], [ 57.832031, -66.930060 ], [ 58.007812, -66.930060 ], [ 58.007812, -66.998844 ], [ 58.183594, -66.998844 ], [ 58.183594, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.135829 ], [ 58.535156, -67.135829 ], [ 58.535156, -67.272043 ], [ 58.886719, -67.272043 ], [ 58.886719, -67.339861 ], [ 59.589844, -67.339861 ], [ 59.589844, -67.407487 ], [ 59.941406, -67.407487 ], [ 59.941406, -67.474922 ], [ 60.117188, -67.474922 ], [ 60.117188, -67.542167 ], [ 60.292969, -67.542167 ], [ 60.292969, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.676085 ], [ 60.644531, -67.676085 ], [ 60.644531, -67.742759 ], [ 60.820312, -67.742759 ], [ 60.820312, -67.809245 ], [ 60.996094, -67.809245 ], [ 60.996094, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -67.941650 ], [ 61.699219, -67.941650 ], [ 61.699219, -68.007571 ], [ 62.578125, -68.007571 ], [ 62.578125, -67.941650 ], [ 62.929688, -67.941650 ], [ 62.929688, -67.875541 ], [ 63.105469, -67.875541 ], [ 63.105469, -67.809245 ], [ 63.281250, -67.809245 ], [ 63.281250, -67.742759 ], [ 63.457031, -67.742759 ], [ 63.457031, -67.609221 ], [ 63.632812, -67.609221 ], [ 63.632812, -67.542167 ], [ 63.808594, -67.542167 ], [ 63.808594, -67.474922 ], [ 64.335938, -67.474922 ], [ 64.335938, -67.542167 ], [ 64.687500, -67.542167 ], [ 64.687500, -67.609221 ], [ 65.214844, -67.609221 ], [ 65.214844, -67.676085 ], [ 65.566406, -67.676085 ], [ 65.566406, -67.742759 ], [ 66.093750, -67.742759 ], [ 66.093750, -67.809245 ], [ 66.621094, -67.809245 ], [ 66.621094, -67.875541 ], [ 67.324219, -67.875541 ], [ 67.324219, -67.941650 ], [ 68.906250, -67.941650 ], [ 68.906250, -68.073305 ], [ 69.082031, -68.073305 ], [ 69.082031, -68.269387 ], [ 69.257812, -68.269387 ], [ 69.257812, -68.463800 ], [ 69.433594, -68.463800 ], [ 69.433594, -68.720441 ], [ 69.609375, -68.720441 ], [ 69.609375, -68.911005 ], [ 69.785156, -68.911005 ], [ 69.785156, -69.099940 ], [ 69.609375, -69.099940 ], [ 69.609375, -69.718107 ], [ 69.433594, -69.718107 ], [ 69.433594, -69.778952 ], [ 69.257812, -69.778952 ], [ 69.257812, -69.839622 ], [ 68.906250, -69.839622 ], [ 68.906250, -69.900118 ], [ 68.730469, -69.900118 ], [ 68.730469, -69.960439 ], [ 68.554688, -69.960439 ], [ 68.554688, -70.020587 ], [ 68.378906, -70.020587 ], [ 68.378906, -70.140364 ], [ 68.203125, -70.140364 ], [ 68.203125, -70.199994 ], [ 68.027344, -70.199994 ], [ 68.027344, -70.318738 ], [ 67.851562, -70.318738 ], [ 67.851562, -70.495574 ], [ 68.027344, -70.495574 ], [ 68.027344, -70.670881 ], [ 69.082031, -70.670881 ], [ 69.082031, -70.902268 ], [ 68.906250, -70.902268 ], [ 68.906250, -71.187754 ], [ 68.730469, -71.187754 ], [ 68.730469, -71.300793 ], [ 68.554688, -71.300793 ], [ 68.554688, -71.413177 ], [ 68.378906, -71.413177 ], [ 68.378906, -71.580532 ], [ 68.203125, -71.580532 ], [ 68.203125, -71.801410 ], [ 68.027344, -71.801410 ], [ 68.027344, -71.910888 ], [ 68.203125, -71.910888 ], [ 68.203125, -72.019729 ], [ 68.378906, -72.019729 ], [ 68.378906, -72.073911 ], [ 68.554688, -72.073911 ], [ 68.554688, -72.181804 ], [ 68.906250, -72.181804 ], [ 68.906250, -72.235514 ], [ 69.433594, -72.235514 ], [ 69.433594, -72.289067 ], [ 69.960938, -72.289067 ], [ 69.960938, -72.235514 ], [ 70.312500, -72.235514 ], [ 70.312500, -72.181804 ], [ 70.664062, -72.181804 ], [ 70.664062, -72.127936 ], [ 71.015625, -72.127936 ], [ 71.015625, -72.019729 ], [ 71.191406, -72.019729 ], [ 71.191406, -71.910888 ], [ 71.367188, -71.910888 ], [ 71.367188, -71.801410 ], [ 71.542969, -71.801410 ], [ 71.542969, -71.635993 ], [ 71.718750, -71.635993 ], [ 71.718750, -71.413177 ], [ 71.894531, -71.413177 ], [ 71.894531, -71.300793 ], [ 72.070312, -71.300793 ], [ 72.070312, -71.187754 ], [ 72.246094, -71.187754 ], [ 72.246094, -71.074056 ], [ 72.421875, -71.074056 ], [ 72.421875, -71.016960 ], [ 72.597656, -71.016960 ], [ 72.597656, -70.959697 ], [ 72.773438, -70.959697 ], [ 72.773438, -70.844673 ], [ 72.949219, -70.844673 ], [ 72.949219, -70.786910 ], [ 73.125000, -70.786910 ], [ 73.125000, -70.554179 ], [ 73.300781, -70.554179 ], [ 73.300781, -70.318738 ], [ 73.476562, -70.318738 ], [ 73.476562, -70.140364 ], [ 73.652344, -70.140364 ], [ 73.652344, -70.020587 ], [ 73.828125, -70.020587 ], [ 73.828125, -69.900118 ], [ 74.179688, -69.900118 ], [ 74.179688, -69.839622 ], [ 74.531250, -69.839622 ], [ 74.531250, -69.778952 ], [ 75.234375, -69.778952 ], [ 75.234375, -69.718107 ], [ 75.937500, -69.718107 ], [ 75.937500, -69.657086 ], [ 76.464844, -69.657086 ], [ 76.464844, -69.595890 ], [ 76.992188, -69.595890 ], [ 76.992188, -69.534518 ], [ 77.519531, -69.534518 ], [ 77.519531, -69.472969 ], [ 77.695312, -69.472969 ], [ 77.695312, -69.411242 ], [ 77.871094, -69.411242 ], [ 77.871094, -69.224997 ], [ 78.046875, -69.224997 ], [ 78.046875, -69.037142 ], [ 78.222656, -69.037142 ], [ 78.222656, -68.847665 ], [ 78.398438, -68.847665 ], [ 78.398438, -68.720441 ], [ 78.574219, -68.720441 ], [ 78.574219, -68.592487 ], [ 78.750000, -68.592487 ], [ 78.750000, -68.528235 ], [ 78.925781, -68.528235 ], [ 78.925781, -68.399180 ], [ 79.101562, -68.399180 ], [ 79.101562, -68.334376 ], [ 79.277344, -68.334376 ], [ 79.277344, -68.269387 ], [ 79.628906, -68.269387 ], [ 79.628906, -68.204212 ], [ 79.804688, -68.204212 ], [ 79.804688, -68.138852 ], [ 80.156250, -68.138852 ], [ 80.156250, -68.073305 ], [ 80.332031, -68.073305 ], [ 80.332031, -68.007571 ], [ 80.683594, -68.007571 ], [ 80.683594, -67.941650 ], [ 80.859375, -67.941650 ], [ 80.859375, -67.875541 ], [ 81.035156, -67.875541 ], [ 81.035156, -67.809245 ], [ 81.210938, -67.809245 ], [ 81.210938, -67.676085 ], [ 81.386719, -67.676085 ], [ 81.386719, -67.609221 ], [ 81.562500, -67.609221 ], [ 81.562500, -67.542167 ], [ 81.738281, -67.542167 ], [ 81.738281, -67.474922 ], [ 81.914062, -67.474922 ], [ 81.914062, -67.407487 ], [ 82.089844, -67.407487 ], [ 82.089844, -67.339861 ], [ 82.441406, -67.339861 ], [ 82.441406, -67.272043 ], [ 82.792969, -67.272043 ], [ 82.792969, -67.204032 ], [ 82.968750, -67.204032 ], [ 82.968750, -67.272043 ], [ 83.496094, -67.272043 ], [ 83.496094, -67.339861 ], [ 84.199219, -67.339861 ], [ 84.199219, -67.272043 ], [ 84.550781, -67.272043 ], [ 84.550781, -67.204032 ], [ 85.078125, -67.204032 ], [ 85.078125, -67.135829 ], [ 85.429688, -67.135829 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.135829 ], [ 87.011719, -67.135829 ], [ 87.011719, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.998844 ], [ 87.363281, -66.998844 ], [ 87.363281, -66.930060 ], [ 87.539062, -66.930060 ], [ 87.539062, -66.791909 ], [ 87.714844, -66.791909 ], [ 87.714844, -66.583217 ], [ 87.890625, -66.583217 ], [ 87.890625, -66.372755 ], [ 88.066406, -66.372755 ], [ 88.066406, -66.302205 ], [ 88.242188, -66.302205 ], [ 88.242188, -66.443107 ], [ 88.417969, -66.443107 ], [ 88.417969, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.861082 ], [ 88.769531, -66.861082 ], [ 88.769531, -66.998844 ], [ 89.121094, -66.998844 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 90.878906, -67.204032 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.204212 ], [ 44.648438, -68.204212 ], [ 44.648438, -68.138852 ], [ 44.824219, -68.138852 ], [ 44.824219, -68.073305 ], [ 45.000000, -68.073305 ], [ 45.000000, -68.007571 ], [ 45.175781, -68.007571 ], [ 45.175781, -67.941650 ], [ 45.527344, -67.941650 ], [ 45.527344, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ], [ 45.878906, -67.742759 ], [ 46.230469, -67.742759 ], [ 46.230469, -67.676085 ], [ 46.582031, -67.676085 ], [ 46.582031, -67.609221 ], [ 46.757812, -67.609221 ], [ 46.757812, -67.676085 ], [ 47.109375, -67.676085 ], [ 47.109375, -67.742759 ], [ 47.636719, -67.742759 ], [ 47.636719, -67.676085 ], [ 47.812500, -67.676085 ], [ 47.812500, -67.542167 ], [ 47.988281, -67.542167 ], [ 47.988281, -67.474922 ], [ 48.164062, -67.474922 ], [ 48.164062, -67.407487 ], [ 48.339844, -67.407487 ], [ 48.339844, -67.339861 ], [ 48.515625, -67.339861 ], [ 48.515625, -67.272043 ], [ 48.691406, -67.272043 ], [ 48.691406, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.135829 ], [ 49.042969, -67.135829 ], [ 49.042969, -67.067433 ], [ 49.394531, -67.067433 ], [ 49.394531, -67.135829 ], [ 50.097656, -67.135829 ], [ 50.097656, -67.067433 ], [ 50.273438, -67.067433 ], [ 50.273438, -66.998844 ], [ 50.625000, -66.998844 ], [ 50.625000, -66.930060 ], [ 50.800781, -66.930060 ], [ 50.800781, -66.722541 ], [ 50.976562, -66.722541 ], [ 50.976562, -66.513260 ], [ 51.152344, -66.513260 ], [ 51.152344, -66.443107 ], [ 51.328125, -66.443107 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.302205 ], [ 51.855469, -66.302205 ], [ 51.855469, -66.231457 ], [ 52.207031, -66.231457 ], [ 52.207031, -66.160511 ], [ 56.953125, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.769531, -66.861082 ], [ 87.539062, -66.861082 ], [ 87.539062, -66.791909 ], [ 87.714844, -66.791909 ], [ 87.714844, -66.583217 ], [ 87.890625, -66.583217 ], [ 87.890625, -66.372755 ], [ 88.066406, -66.372755 ], [ 88.066406, -66.302205 ], [ 88.242188, -66.302205 ], [ 88.242188, -66.443107 ], [ 88.417969, -66.443107 ], [ 88.417969, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.791909 ], [ 88.769531, -66.791909 ], [ 88.769531, -66.861082 ] ] ], [ [ [ 55.722656, -65.946472 ], [ 56.425781, -65.946472 ], [ 56.425781, -66.018018 ], [ 56.601562, -66.018018 ], [ 56.601562, -66.089364 ], [ 56.777344, -66.089364 ], [ 56.777344, -66.160511 ], [ 56.953125, -66.160511 ], [ 56.953125, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.443107 ], [ 57.304688, -66.443107 ], [ 57.304688, -66.722541 ], [ 57.480469, -66.722541 ], [ 57.480469, -66.861082 ], [ 50.800781, -66.861082 ], [ 50.800781, -66.722541 ], [ 50.976562, -66.722541 ], [ 50.976562, -66.513260 ], [ 51.152344, -66.513260 ], [ 51.152344, -66.443107 ], [ 51.328125, -66.443107 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.302205 ], [ 51.855469, -66.302205 ], [ 51.855469, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -66.160511 ], [ 52.382812, -66.160511 ], [ 52.382812, -66.089364 ], [ 52.558594, -66.089364 ], [ 52.558594, -66.018018 ], [ 52.910156, -66.018018 ], [ 52.910156, -65.946472 ], [ 53.437500, -65.946472 ], [ 53.437500, -65.874725 ], [ 54.140625, -65.874725 ], [ 54.140625, -65.802776 ], [ 54.843750, -65.802776 ], [ 54.843750, -65.874725 ], [ 55.722656, -65.874725 ], [ 55.722656, -65.946472 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, -65.802776 ], [ 54.843750, -65.874725 ], [ 55.722656, -65.874725 ], [ 55.722656, -65.946472 ], [ 56.425781, -65.946472 ], [ 56.425781, -66.018018 ], [ 56.601562, -66.018018 ], [ 56.601562, -66.089364 ], [ 56.777344, -66.089364 ], [ 56.777344, -66.160511 ], [ 56.953125, -66.160511 ], [ 56.953125, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.443107 ], [ 57.304688, -66.443107 ], [ 57.304688, -66.722541 ], [ 57.480469, -66.722541 ], [ 57.480469, -66.861082 ], [ 50.800781, -66.861082 ], [ 50.800781, -66.722541 ], [ 50.976562, -66.722541 ], [ 50.976562, -66.513260 ], [ 51.152344, -66.513260 ], [ 51.152344, -66.443107 ], [ 51.328125, -66.443107 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.302205 ], [ 51.855469, -66.302205 ], [ 51.855469, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -66.160511 ], [ 52.382812, -66.160511 ], [ 52.382812, -66.089364 ], [ 52.558594, -66.089364 ], [ 52.558594, -66.018018 ], [ 52.910156, -66.018018 ], [ 52.910156, -65.946472 ], [ 53.437500, -65.946472 ], [ 53.437500, -65.874725 ], [ 54.140625, -65.874725 ], [ 54.140625, -65.802776 ], [ 54.843750, -65.802776 ] ] ], [ [ [ 88.242188, -66.443107 ], [ 88.417969, -66.443107 ], [ 88.417969, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.791909 ], [ 88.769531, -66.791909 ], [ 88.769531, -66.861082 ], [ 87.539062, -66.861082 ], [ 87.539062, -66.791909 ], [ 87.714844, -66.791909 ], [ 87.714844, -66.583217 ], [ 87.890625, -66.583217 ], [ 87.890625, -66.372755 ], [ 88.066406, -66.372755 ], [ 88.066406, -66.302205 ], [ 88.242188, -66.302205 ], [ 88.242188, -66.443107 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.488281, -49.496675 ], [ 70.312500, -49.496675 ], [ 70.312500, -49.724479 ], [ 68.730469, -49.724479 ], [ 68.730469, -49.037868 ], [ 68.906250, -49.037868 ], [ 68.906250, -48.690960 ], [ 69.082031, -48.690960 ], [ 69.082031, -48.806863 ], [ 69.433594, -48.806863 ], [ 69.433594, -48.922499 ], [ 69.960938, -48.922499 ], [ 69.960938, -49.037868 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.496675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, -48.690960 ], [ 69.082031, -48.806863 ], [ 69.433594, -48.806863 ], [ 69.433594, -48.922499 ], [ 69.960938, -48.922499 ], [ 69.960938, -49.037868 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.496675 ], [ 70.312500, -49.496675 ], [ 70.312500, -49.724479 ], [ 68.730469, -49.724479 ], [ 68.730469, -49.037868 ], [ 68.906250, -49.037868 ], [ 68.906250, -48.690960 ], [ 69.082031, -48.690960 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.570312, -12.726084 ], [ 49.746094, -12.726084 ], [ 49.746094, -13.068777 ], [ 49.921875, -13.068777 ], [ 49.921875, -13.410994 ], [ 50.097656, -13.410994 ], [ 50.097656, -14.264383 ], [ 50.273438, -14.264383 ], [ 50.273438, -15.114553 ], [ 50.449219, -15.114553 ], [ 50.449219, -15.792254 ], [ 50.273438, -15.792254 ], [ 50.273438, -15.961329 ], [ 50.097656, -15.961329 ], [ 50.097656, -15.623037 ], [ 49.746094, -15.623037 ], [ 49.746094, -16.130262 ], [ 49.921875, -16.130262 ], [ 49.921875, -16.636192 ], [ 49.746094, -16.636192 ], [ 49.746094, -16.972741 ], [ 49.570312, -16.972741 ], [ 49.570312, -17.644022 ], [ 49.394531, -17.644022 ], [ 49.394531, -18.312811 ], [ 49.218750, -18.312811 ], [ 49.218750, -18.979026 ], [ 49.042969, -18.979026 ], [ 49.042969, -19.476950 ], [ 48.867188, -19.476950 ], [ 48.867188, -19.808054 ], [ 48.691406, -19.808054 ], [ 48.691406, -20.303418 ], [ 48.515625, -20.303418 ], [ 48.515625, -20.797201 ], [ 48.339844, -20.797201 ], [ 48.339844, -21.453069 ], [ 48.164062, -21.453069 ], [ 48.164062, -22.105999 ], [ 47.988281, -22.105999 ], [ 47.988281, -22.755921 ], [ 47.812500, -22.755921 ], [ 47.812500, -23.079732 ], [ 47.636719, -23.079732 ], [ 47.636719, -23.563987 ], [ 47.460938, -23.563987 ], [ 47.460938, -24.046464 ], [ 47.285156, -24.046464 ], [ 47.285156, -24.686952 ], [ 47.109375, -24.686952 ], [ 47.109375, -25.005973 ], [ 46.757812, -25.005973 ], [ 46.757812, -25.165173 ], [ 46.230469, -25.165173 ], [ 46.230469, -25.324167 ], [ 45.878906, -25.324167 ], [ 45.878906, -25.482951 ], [ 45.527344, -25.482951 ], [ 45.527344, -25.641526 ], [ 45.175781, -25.641526 ], [ 45.175781, -25.482951 ], [ 44.824219, -25.482951 ], [ 44.824219, -25.324167 ], [ 44.472656, -25.324167 ], [ 44.472656, -25.165173 ], [ 44.121094, -25.165173 ], [ 44.121094, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -19.808054 ], [ 44.472656, -19.808054 ], [ 44.472656, -19.311143 ], [ 44.296875, -19.311143 ], [ 44.296875, -18.812718 ], [ 44.121094, -18.812718 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.636192 ], [ 44.472656, -16.636192 ], [ 44.472656, -16.299051 ], [ 44.824219, -16.299051 ], [ 44.824219, -16.130262 ], [ 45.351562, -16.130262 ], [ 45.351562, -15.961329 ], [ 45.878906, -15.961329 ], [ 45.878906, -15.792254 ], [ 46.406250, -15.792254 ], [ 46.406250, -15.623037 ], [ 46.757812, -15.623037 ], [ 46.757812, -15.453680 ], [ 46.933594, -15.453680 ], [ 46.933594, -15.284185 ], [ 47.109375, -15.284185 ], [ 47.109375, -15.114553 ], [ 47.285156, -15.114553 ], [ 47.285156, -14.944785 ], [ 47.460938, -14.944785 ], [ 47.460938, -14.774883 ], [ 47.636719, -14.774883 ], [ 47.636719, -14.604847 ], [ 47.812500, -14.604847 ], [ 47.812500, -14.264383 ], [ 47.988281, -14.264383 ], [ 47.988281, -13.923404 ], [ 47.812500, -13.923404 ], [ 47.812500, -13.581921 ], [ 47.988281, -13.581921 ], [ 47.988281, -13.752725 ], [ 48.515625, -13.752725 ], [ 48.515625, -13.410994 ], [ 48.691406, -13.410994 ], [ 48.691406, -13.239945 ], [ 48.867188, -13.239945 ], [ 48.867188, -12.554564 ], [ 49.042969, -12.554564 ], [ 49.042969, -12.211180 ], [ 49.394531, -12.211180 ], [ 49.394531, -12.554564 ], [ 49.570312, -12.554564 ], [ 49.570312, -12.726084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.394531, -12.211180 ], [ 49.394531, -12.554564 ], [ 49.570312, -12.554564 ], [ 49.570312, -12.726084 ], [ 49.746094, -12.726084 ], [ 49.746094, -13.068777 ], [ 49.921875, -13.068777 ], [ 49.921875, -13.410994 ], [ 50.097656, -13.410994 ], [ 50.097656, -14.264383 ], [ 50.273438, -14.264383 ], [ 50.273438, -15.114553 ], [ 50.449219, -15.114553 ], [ 50.449219, -15.792254 ], [ 50.273438, -15.792254 ], [ 50.273438, -15.961329 ], [ 50.097656, -15.961329 ], [ 50.097656, -15.623037 ], [ 49.746094, -15.623037 ], [ 49.746094, -16.130262 ], [ 49.921875, -16.130262 ], [ 49.921875, -16.636192 ], [ 49.746094, -16.636192 ], [ 49.746094, -16.972741 ], [ 49.570312, -16.972741 ], [ 49.570312, -17.644022 ], [ 49.394531, -17.644022 ], [ 49.394531, -18.312811 ], [ 49.218750, -18.312811 ], [ 49.218750, -18.979026 ], [ 49.042969, -18.979026 ], [ 49.042969, -19.476950 ], [ 48.867188, -19.476950 ], [ 48.867188, -19.808054 ], [ 48.691406, -19.808054 ], [ 48.691406, -20.303418 ], [ 48.515625, -20.303418 ], [ 48.515625, -20.797201 ], [ 48.339844, -20.797201 ], [ 48.339844, -21.453069 ], [ 48.164062, -21.453069 ], [ 48.164062, -22.105999 ], [ 47.988281, -22.105999 ], [ 47.988281, -22.755921 ], [ 47.812500, -22.755921 ], [ 47.812500, -23.079732 ], [ 47.636719, -23.079732 ], [ 47.636719, -23.563987 ], [ 47.460938, -23.563987 ], [ 47.460938, -24.046464 ], [ 47.285156, -24.046464 ], [ 47.285156, -24.686952 ], [ 47.109375, -24.686952 ], [ 47.109375, -25.005973 ], [ 46.757812, -25.005973 ], [ 46.757812, -25.165173 ], [ 46.230469, -25.165173 ], [ 46.230469, -25.324167 ], [ 45.878906, -25.324167 ], [ 45.878906, -25.482951 ], [ 45.527344, -25.482951 ], [ 45.527344, -25.641526 ], [ 45.175781, -25.641526 ], [ 45.175781, -25.482951 ], [ 44.824219, -25.482951 ], [ 44.824219, -25.324167 ], [ 44.472656, -25.324167 ], [ 44.472656, -25.165173 ], [ 44.121094, -25.165173 ], [ 44.121094, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -19.808054 ], [ 44.472656, -19.808054 ], [ 44.472656, -19.311143 ], [ 44.296875, -19.311143 ], [ 44.296875, -18.812718 ], [ 44.121094, -18.812718 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.636192 ], [ 44.472656, -16.636192 ], [ 44.472656, -16.299051 ], [ 44.824219, -16.299051 ], [ 44.824219, -16.130262 ], [ 45.351562, -16.130262 ], [ 45.351562, -15.961329 ], [ 45.878906, -15.961329 ], [ 45.878906, -15.792254 ], [ 46.406250, -15.792254 ], [ 46.406250, -15.623037 ], [ 46.757812, -15.623037 ], [ 46.757812, -15.453680 ], [ 46.933594, -15.453680 ], [ 46.933594, -15.284185 ], [ 47.109375, -15.284185 ], [ 47.109375, -15.114553 ], [ 47.285156, -15.114553 ], [ 47.285156, -14.944785 ], [ 47.460938, -14.944785 ], [ 47.460938, -14.774883 ], [ 47.636719, -14.774883 ], [ 47.636719, -14.604847 ], [ 47.812500, -14.604847 ], [ 47.812500, -14.264383 ], [ 47.988281, -14.264383 ], [ 47.988281, -13.923404 ], [ 47.812500, -13.923404 ], [ 47.812500, -13.581921 ], [ 47.988281, -13.581921 ], [ 47.988281, -13.752725 ], [ 48.515625, -13.752725 ], [ 48.515625, -13.410994 ], [ 48.691406, -13.410994 ], [ 48.691406, -13.239945 ], [ 48.867188, -13.239945 ], [ 48.867188, -12.554564 ], [ 49.042969, -12.554564 ], [ 49.042969, -12.211180 ], [ 49.394531, -12.211180 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.339844, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.112469 ], [ 47.460938, 41.112469 ], [ 47.460938, 41.244772 ], [ 47.285156, 41.244772 ], [ 47.285156, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.640078 ], [ 48.339844, 41.640078 ], [ 48.339844, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.339844, 41.640078 ], [ 48.339844, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.112469 ], [ 47.460938, 41.112469 ], [ 47.460938, 41.244772 ], [ 47.285156, 41.244772 ], [ 47.285156, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.640078 ], [ 48.339844, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.230469, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.582031, 41.244772 ], [ 46.582031, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.112469 ], [ 44.121094, 41.112469 ], [ 44.121094, 41.640078 ], [ 46.230469, 41.640078 ], [ 46.230469, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.230469, 41.640078 ], [ 46.230469, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.582031, 41.244772 ], [ 46.582031, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.112469 ], [ 44.121094, 41.112469 ], [ 44.121094, 41.640078 ], [ 46.230469, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.296875, 39.095963 ], [ 44.296875, 38.548165 ], [ 44.472656, 38.548165 ], [ 44.472656, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 37.857507 ], [ 44.472656, 37.857507 ], [ 44.472656, 37.579413 ], [ 44.648438, 37.579413 ], [ 44.648438, 37.300275 ], [ 44.824219, 37.300275 ], [ 44.824219, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.121094, 37.020098 ], [ 44.121094, 39.095963 ], [ 44.296875, 39.095963 ] ] ], [ [ [ 44.472656, 40.044438 ], [ 44.472656, 39.909736 ], [ 44.648438, 39.909736 ], [ 44.648438, 39.774769 ], [ 44.824219, 39.774769 ], [ 44.824219, 39.639538 ], [ 44.472656, 39.639538 ], [ 44.472656, 39.504041 ], [ 44.121094, 39.504041 ], [ 44.121094, 40.044438 ], [ 44.472656, 40.044438 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.095963 ], [ 44.296875, 39.095963 ], [ 44.296875, 38.548165 ], [ 44.472656, 38.548165 ], [ 44.472656, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 37.857507 ], [ 44.472656, 37.857507 ], [ 44.472656, 37.579413 ], [ 44.648438, 37.579413 ], [ 44.648438, 37.300275 ], [ 44.824219, 37.300275 ], [ 44.824219, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.121094, 37.020098 ], [ 44.121094, 39.095963 ] ] ], [ [ [ 44.472656, 39.909736 ], [ 44.648438, 39.909736 ], [ 44.648438, 39.774769 ], [ 44.824219, 39.774769 ], [ 44.824219, 39.639538 ], [ 44.472656, 39.639538 ], [ 44.472656, 39.504041 ], [ 44.121094, 39.504041 ], [ 44.121094, 40.044438 ], [ 44.472656, 40.044438 ], [ 44.472656, 39.909736 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.597889 ], [ 45.175781, 36.597889 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 35.889050 ], [ 45.703125, 35.889050 ], [ 45.703125, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 35.317366 ], [ 46.230469, 35.317366 ], [ 46.230469, 34.885931 ], [ 45.878906, 34.885931 ], [ 45.878906, 34.741612 ], [ 45.703125, 34.741612 ], [ 45.703125, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.161818 ], [ 45.351562, 34.161818 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.578015 ], [ 45.703125, 33.578015 ], [ 45.703125, 33.284620 ], [ 45.878906, 33.284620 ], [ 45.878906, 32.990236 ], [ 46.054688, 32.990236 ], [ 46.054688, 32.842674 ], [ 46.406250, 32.842674 ], [ 46.406250, 32.694866 ], [ 46.757812, 32.694866 ], [ 46.757812, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 32.398516 ], [ 47.285156, 32.398516 ], [ 47.285156, 32.249974 ], [ 47.460938, 32.249974 ], [ 47.460938, 31.952162 ], [ 47.636719, 31.952162 ], [ 47.636719, 31.653381 ], [ 47.812500, 31.653381 ], [ 47.812500, 31.353637 ], [ 47.636719, 31.353637 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.297018 ], [ 48.164062, 30.297018 ], [ 48.164062, 30.145127 ], [ 48.339844, 30.145127 ], [ 48.339844, 29.993002 ], [ 47.285156, 29.993002 ], [ 47.285156, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 29.535230 ], [ 46.933594, 29.535230 ], [ 46.933594, 29.382175 ], [ 46.757812, 29.382175 ], [ 46.757812, 29.075375 ], [ 45.527344, 29.075375 ], [ 45.527344, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.121094, 29.382175 ], [ 44.121094, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.160317 ], [ 44.824219, 37.160317 ], [ 44.824219, 36.879621 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 37.160317 ], [ 44.824219, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.597889 ], [ 45.175781, 36.597889 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 35.889050 ], [ 45.703125, 35.889050 ], [ 45.703125, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 35.317366 ], [ 46.230469, 35.317366 ], [ 46.230469, 34.885931 ], [ 45.878906, 34.885931 ], [ 45.878906, 34.741612 ], [ 45.703125, 34.741612 ], [ 45.703125, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.161818 ], [ 45.351562, 34.161818 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.578015 ], [ 45.703125, 33.578015 ], [ 45.703125, 33.284620 ], [ 45.878906, 33.284620 ], [ 45.878906, 32.990236 ], [ 46.054688, 32.990236 ], [ 46.054688, 32.842674 ], [ 46.406250, 32.842674 ], [ 46.406250, 32.694866 ], [ 46.757812, 32.694866 ], [ 46.757812, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 32.398516 ], [ 47.285156, 32.398516 ], [ 47.285156, 32.249974 ], [ 47.460938, 32.249974 ], [ 47.460938, 31.952162 ], [ 47.636719, 31.952162 ], [ 47.636719, 31.653381 ], [ 47.812500, 31.653381 ], [ 47.812500, 31.353637 ], [ 47.636719, 31.353637 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.297018 ], [ 48.164062, 30.297018 ], [ 48.164062, 30.145127 ], [ 48.339844, 30.145127 ], [ 48.339844, 29.993002 ], [ 47.285156, 29.993002 ], [ 47.285156, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 29.535230 ], [ 46.933594, 29.535230 ], [ 46.933594, 29.382175 ], [ 46.757812, 29.382175 ], [ 46.757812, 29.075375 ], [ 45.527344, 29.075375 ], [ 45.527344, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.121094, 29.382175 ], [ 44.121094, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.160317 ], [ 44.824219, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.296875, 8.928487 ], [ 44.648438, 8.928487 ], [ 44.648438, 8.754795 ], [ 45.175781, 8.754795 ], [ 45.175781, 8.581021 ], [ 45.703125, 8.581021 ], [ 45.703125, 8.407168 ], [ 46.054688, 8.407168 ], [ 46.054688, 8.233237 ], [ 46.582031, 8.233237 ], [ 46.582031, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 7.885147 ], [ 47.636719, 7.885147 ], [ 47.636719, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.536764 ], [ 47.285156, 7.536764 ], [ 47.285156, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.013668 ], [ 46.933594, 7.013668 ], [ 46.933594, 6.839170 ], [ 46.757812, 6.839170 ], [ 46.757812, 6.664608 ], [ 46.582031, 6.664608 ], [ 46.582031, 6.489983 ], [ 46.406250, 6.489983 ], [ 46.406250, 6.315299 ], [ 46.230469, 6.315299 ], [ 46.230469, 6.140555 ], [ 46.054688, 6.140555 ], [ 46.054688, 5.965754 ], [ 45.878906, 5.965754 ], [ 45.878906, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.441022 ], [ 45.527344, 5.441022 ], [ 45.527344, 5.266008 ], [ 45.351562, 5.266008 ], [ 45.351562, 5.090944 ], [ 45.175781, 5.090944 ], [ 45.175781, 4.915833 ], [ 44.121094, 4.915833 ], [ 44.121094, 9.102097 ], [ 44.296875, 9.102097 ], [ 44.296875, 8.928487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.296875, 9.102097 ], [ 44.296875, 8.928487 ], [ 44.648438, 8.928487 ], [ 44.648438, 8.754795 ], [ 45.175781, 8.754795 ], [ 45.175781, 8.581021 ], [ 45.703125, 8.581021 ], [ 45.703125, 8.407168 ], [ 46.054688, 8.407168 ], [ 46.054688, 8.233237 ], [ 46.582031, 8.233237 ], [ 46.582031, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 7.885147 ], [ 47.636719, 7.885147 ], [ 47.636719, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.536764 ], [ 47.285156, 7.536764 ], [ 47.285156, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.013668 ], [ 46.933594, 7.013668 ], [ 46.933594, 6.839170 ], [ 46.757812, 6.839170 ], [ 46.757812, 6.664608 ], [ 46.582031, 6.664608 ], [ 46.582031, 6.489983 ], [ 46.406250, 6.489983 ], [ 46.406250, 6.315299 ], [ 46.230469, 6.315299 ], [ 46.230469, 6.140555 ], [ 46.054688, 6.140555 ], [ 46.054688, 5.965754 ], [ 45.878906, 5.965754 ], [ 45.878906, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.441022 ], [ 45.527344, 5.441022 ], [ 45.527344, 5.266008 ], [ 45.351562, 5.266008 ], [ 45.351562, 5.090944 ], [ 45.175781, 5.090944 ], [ 45.175781, 4.915833 ], [ 44.121094, 4.915833 ], [ 44.121094, 9.102097 ], [ 44.296875, 9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.609375, 41.640078 ], [ 69.609375, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.376809 ], [ 69.082031, 41.376809 ], [ 69.082031, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 40.979898 ], [ 68.730469, 40.979898 ], [ 68.730469, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 66.796875, 41.112469 ], [ 66.796875, 41.376809 ], [ 66.621094, 41.376809 ], [ 66.621094, 41.640078 ], [ 69.609375, 41.640078 ] ] ], [ [ [ 55.722656, 41.376809 ], [ 55.722656, 41.244772 ], [ 55.371094, 41.244772 ], [ 55.371094, 41.376809 ], [ 55.195312, 41.376809 ], [ 55.195312, 41.640078 ], [ 55.898438, 41.640078 ], [ 55.898438, 41.376809 ], [ 55.722656, 41.376809 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.609375, 41.640078 ], [ 69.609375, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.376809 ], [ 69.082031, 41.376809 ], [ 69.082031, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 40.979898 ], [ 68.730469, 40.979898 ], [ 68.730469, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 66.796875, 41.112469 ], [ 66.796875, 41.376809 ], [ 66.621094, 41.376809 ], [ 66.621094, 41.640078 ], [ 69.609375, 41.640078 ] ] ], [ [ [ 55.898438, 41.640078 ], [ 55.898438, 41.376809 ], [ 55.722656, 41.376809 ], [ 55.722656, 41.244772 ], [ 55.371094, 41.244772 ], [ 55.371094, 41.376809 ], [ 55.195312, 41.376809 ], [ 55.195312, 41.640078 ], [ 55.898438, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.664062, 41.244772 ], [ 71.015625, 41.244772 ], [ 71.015625, 41.112469 ], [ 71.542969, 41.112469 ], [ 71.542969, 41.244772 ], [ 72.246094, 41.244772 ], [ 72.246094, 41.112469 ], [ 72.597656, 41.112469 ], [ 72.597656, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 73.125000, 40.847060 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.313043 ], [ 71.894531, 40.313043 ], [ 71.894531, 40.178873 ], [ 70.664062, 40.178873 ], [ 70.664062, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.488281, 40.979898 ], [ 70.488281, 40.847060 ], [ 69.785156, 40.847060 ], [ 69.785156, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 39.774769 ], [ 68.730469, 39.774769 ], [ 68.730469, 39.504041 ], [ 68.027344, 39.504041 ], [ 68.027344, 39.639538 ], [ 67.675781, 39.639538 ], [ 67.675781, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 39.095963 ], [ 67.675781, 39.095963 ], [ 67.675781, 38.959409 ], [ 68.203125, 38.959409 ], [ 68.203125, 38.548165 ], [ 68.378906, 38.548165 ], [ 68.378906, 37.857507 ], [ 68.203125, 37.857507 ], [ 68.203125, 37.579413 ], [ 68.027344, 37.579413 ], [ 68.027344, 37.300275 ], [ 67.851562, 37.300275 ], [ 67.851562, 37.160317 ], [ 67.324219, 37.160317 ], [ 67.324219, 37.300275 ], [ 66.445312, 37.300275 ], [ 66.445312, 37.579413 ], [ 66.621094, 37.579413 ], [ 66.621094, 37.996163 ], [ 66.269531, 37.996163 ], [ 66.269531, 38.134557 ], [ 65.742188, 38.134557 ], [ 65.742188, 38.272689 ], [ 65.390625, 38.272689 ], [ 65.390625, 38.410558 ], [ 65.039062, 38.410558 ], [ 65.039062, 38.548165 ], [ 64.687500, 38.548165 ], [ 64.687500, 38.685510 ], [ 64.511719, 38.685510 ], [ 64.511719, 38.822591 ], [ 64.160156, 38.822591 ], [ 64.160156, 38.959409 ], [ 63.984375, 38.959409 ], [ 63.984375, 39.095963 ], [ 63.632812, 39.095963 ], [ 63.632812, 39.232253 ], [ 63.457031, 39.232253 ], [ 63.457031, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.504041 ], [ 63.105469, 39.504041 ], [ 63.105469, 39.639538 ], [ 62.753906, 39.639538 ], [ 62.753906, 39.774769 ], [ 62.578125, 39.774769 ], [ 62.578125, 39.909736 ], [ 62.402344, 39.909736 ], [ 62.402344, 40.178873 ], [ 62.226562, 40.178873 ], [ 62.226562, 40.580585 ], [ 62.050781, 40.580585 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.112469 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.640078 ], [ 66.621094, 41.640078 ], [ 66.621094, 41.376809 ], [ 66.796875, 41.376809 ], [ 66.796875, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.730469, 40.713956 ], [ 68.730469, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.244772 ], [ 69.082031, 41.244772 ], [ 69.082031, 41.376809 ], [ 69.257812, 41.376809 ], [ 69.257812, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.640078 ], [ 70.488281, 41.640078 ], [ 70.488281, 41.376809 ], [ 70.664062, 41.376809 ], [ 70.664062, 41.244772 ] ] ], [ [ [ 57.128906, 41.508577 ], [ 57.128906, 41.376809 ], [ 55.898438, 41.376809 ], [ 55.898438, 41.640078 ], [ 56.953125, 41.640078 ], [ 56.953125, 41.508577 ], [ 57.128906, 41.508577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.488281, 41.640078 ], [ 70.488281, 41.376809 ], [ 70.664062, 41.376809 ], [ 70.664062, 41.244772 ], [ 71.015625, 41.244772 ], [ 71.015625, 41.112469 ], [ 71.542969, 41.112469 ], [ 71.542969, 41.244772 ], [ 72.246094, 41.244772 ], [ 72.246094, 41.112469 ], [ 72.597656, 41.112469 ], [ 72.597656, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 73.125000, 40.847060 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.313043 ], [ 71.894531, 40.313043 ], [ 71.894531, 40.178873 ], [ 70.664062, 40.178873 ], [ 70.664062, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.488281, 40.979898 ], [ 70.488281, 40.847060 ], [ 69.785156, 40.847060 ], [ 69.785156, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 39.774769 ], [ 68.730469, 39.774769 ], [ 68.730469, 39.504041 ], [ 68.027344, 39.504041 ], [ 68.027344, 39.639538 ], [ 67.675781, 39.639538 ], [ 67.675781, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 39.095963 ], [ 67.675781, 39.095963 ], [ 67.675781, 38.959409 ], [ 68.203125, 38.959409 ], [ 68.203125, 38.548165 ], [ 68.378906, 38.548165 ], [ 68.378906, 37.857507 ], [ 68.203125, 37.857507 ], [ 68.203125, 37.579413 ], [ 68.027344, 37.579413 ], [ 68.027344, 37.300275 ], [ 67.851562, 37.300275 ], [ 67.851562, 37.160317 ], [ 67.324219, 37.160317 ], [ 67.324219, 37.300275 ], [ 66.445312, 37.300275 ], [ 66.445312, 37.579413 ], [ 66.621094, 37.579413 ], [ 66.621094, 37.996163 ], [ 66.269531, 37.996163 ], [ 66.269531, 38.134557 ], [ 65.742188, 38.134557 ], [ 65.742188, 38.272689 ], [ 65.390625, 38.272689 ], [ 65.390625, 38.410558 ], [ 65.039062, 38.410558 ], [ 65.039062, 38.548165 ], [ 64.687500, 38.548165 ], [ 64.687500, 38.685510 ], [ 64.511719, 38.685510 ], [ 64.511719, 38.822591 ], [ 64.160156, 38.822591 ], [ 64.160156, 38.959409 ], [ 63.984375, 38.959409 ], [ 63.984375, 39.095963 ], [ 63.632812, 39.095963 ], [ 63.632812, 39.232253 ], [ 63.457031, 39.232253 ], [ 63.457031, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.504041 ], [ 63.105469, 39.504041 ], [ 63.105469, 39.639538 ], [ 62.753906, 39.639538 ], [ 62.753906, 39.774769 ], [ 62.578125, 39.774769 ], [ 62.578125, 39.909736 ], [ 62.402344, 39.909736 ], [ 62.402344, 40.178873 ], [ 62.226562, 40.178873 ], [ 62.226562, 40.580585 ], [ 62.050781, 40.580585 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.112469 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.640078 ], [ 66.621094, 41.640078 ], [ 66.621094, 41.376809 ], [ 66.796875, 41.376809 ], [ 66.796875, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.730469, 40.713956 ], [ 68.730469, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.244772 ], [ 69.082031, 41.244772 ], [ 69.082031, 41.376809 ], [ 69.257812, 41.376809 ], [ 69.257812, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.640078 ], [ 70.488281, 41.640078 ] ] ], [ [ [ 56.953125, 41.640078 ], [ 56.953125, 41.508577 ], [ 57.128906, 41.508577 ], [ 57.128906, 41.376809 ], [ 55.898438, 41.376809 ], [ 55.898438, 41.640078 ], [ 56.953125, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.003906, 39.504041 ], [ 73.828125, 39.504041 ], [ 73.828125, 39.368279 ], [ 72.773438, 39.368279 ], [ 72.773438, 39.232253 ], [ 71.367188, 39.232253 ], [ 71.367188, 39.368279 ], [ 71.015625, 39.368279 ], [ 71.015625, 39.504041 ], [ 70.664062, 39.504041 ], [ 70.664062, 39.639538 ], [ 70.136719, 39.639538 ], [ 70.136719, 39.504041 ], [ 69.433594, 39.504041 ], [ 69.433594, 39.774769 ], [ 69.609375, 39.774769 ], [ 69.609375, 40.044438 ], [ 69.960938, 40.044438 ], [ 69.960938, 39.909736 ], [ 70.839844, 39.909736 ], [ 70.839844, 40.044438 ], [ 71.015625, 40.044438 ], [ 71.015625, 40.178873 ], [ 71.894531, 40.178873 ], [ 71.894531, 40.313043 ], [ 72.246094, 40.313043 ], [ 72.246094, 40.446947 ], [ 72.597656, 40.446947 ], [ 72.597656, 40.580585 ], [ 72.773438, 40.580585 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.597656, 40.979898 ], [ 72.597656, 41.112469 ], [ 72.246094, 41.112469 ], [ 72.246094, 41.244772 ], [ 71.542969, 41.244772 ], [ 71.542969, 41.112469 ], [ 71.015625, 41.112469 ], [ 71.015625, 41.244772 ], [ 70.664062, 41.244772 ], [ 70.664062, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.640078 ], [ 78.574219, 41.640078 ], [ 78.574219, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 41.112469 ], [ 76.992188, 41.112469 ], [ 76.992188, 40.979898 ], [ 76.816406, 40.979898 ], [ 76.816406, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.410156, 40.580585 ], [ 75.410156, 40.446947 ], [ 75.058594, 40.446947 ], [ 75.058594, 40.313043 ], [ 74.707031, 40.313043 ], [ 74.707031, 40.178873 ], [ 74.355469, 40.178873 ], [ 74.355469, 40.044438 ], [ 74.003906, 40.044438 ], [ 74.003906, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.774769 ], [ 74.003906, 39.774769 ], [ 74.003906, 39.504041 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.574219, 41.640078 ], [ 78.574219, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 41.112469 ], [ 76.992188, 41.112469 ], [ 76.992188, 40.979898 ], [ 76.816406, 40.979898 ], [ 76.816406, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.410156, 40.580585 ], [ 75.410156, 40.446947 ], [ 75.058594, 40.446947 ], [ 75.058594, 40.313043 ], [ 74.707031, 40.313043 ], [ 74.707031, 40.178873 ], [ 74.355469, 40.178873 ], [ 74.355469, 40.044438 ], [ 74.003906, 40.044438 ], [ 74.003906, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.774769 ], [ 74.003906, 39.774769 ], [ 74.003906, 39.504041 ], [ 73.828125, 39.504041 ], [ 73.828125, 39.368279 ], [ 72.773438, 39.368279 ], [ 72.773438, 39.232253 ], [ 71.367188, 39.232253 ], [ 71.367188, 39.368279 ], [ 71.015625, 39.368279 ], [ 71.015625, 39.504041 ], [ 70.664062, 39.504041 ], [ 70.664062, 39.639538 ], [ 70.136719, 39.639538 ], [ 70.136719, 39.504041 ], [ 69.433594, 39.504041 ], [ 69.433594, 39.774769 ], [ 69.609375, 39.774769 ], [ 69.609375, 40.044438 ], [ 69.960938, 40.044438 ], [ 69.960938, 39.909736 ], [ 70.839844, 39.909736 ], [ 70.839844, 40.044438 ], [ 71.015625, 40.044438 ], [ 71.015625, 40.178873 ], [ 71.894531, 40.178873 ], [ 71.894531, 40.313043 ], [ 72.246094, 40.313043 ], [ 72.246094, 40.446947 ], [ 72.597656, 40.446947 ], [ 72.597656, 40.580585 ], [ 72.773438, 40.580585 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.597656, 40.979898 ], [ 72.597656, 41.112469 ], [ 72.246094, 41.112469 ], [ 72.246094, 41.244772 ], [ 71.542969, 41.244772 ], [ 71.542969, 41.112469 ], [ 71.015625, 41.112469 ], [ 71.015625, 41.244772 ], [ 70.664062, 41.244772 ], [ 70.664062, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.640078 ], [ 78.574219, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ], [ 45.878906, 40.044438 ], [ 45.703125, 40.044438 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.878906, 39.774769 ], [ 45.878906, 39.639538 ], [ 46.054688, 39.639538 ], [ 46.054688, 39.504041 ], [ 46.406250, 39.504041 ], [ 46.406250, 39.095963 ], [ 46.582031, 39.095963 ], [ 46.582031, 38.685510 ], [ 46.054688, 38.685510 ], [ 46.054688, 38.959409 ], [ 45.878906, 38.959409 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 40.044438 ], [ 44.121094, 40.044438 ], [ 44.121094, 41.112469 ], [ 44.648438, 41.112469 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ], [ 45.878906, 40.044438 ], [ 45.703125, 40.044438 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.878906, 39.774769 ], [ 45.878906, 39.639538 ], [ 46.054688, 39.639538 ], [ 46.054688, 39.504041 ], [ 46.406250, 39.504041 ], [ 46.406250, 39.095963 ], [ 46.582031, 39.095963 ], [ 46.582031, 38.685510 ], [ 46.054688, 38.685510 ], [ 46.054688, 38.959409 ], [ 45.878906, 38.959409 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 40.044438 ], [ 44.121094, 40.044438 ], [ 44.121094, 41.112469 ], [ 44.648438, 41.112469 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.867188, 41.244772 ], [ 49.042969, 41.244772 ], [ 49.042969, 41.112469 ], [ 49.218750, 41.112469 ], [ 49.218750, 40.847060 ], [ 49.394531, 40.847060 ], [ 49.394531, 40.580585 ], [ 50.097656, 40.580585 ], [ 50.097656, 40.446947 ], [ 50.273438, 40.446947 ], [ 50.273438, 40.313043 ], [ 50.097656, 40.313043 ], [ 50.097656, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.774769 ], [ 49.394531, 39.774769 ], [ 49.394531, 39.232253 ], [ 49.218750, 39.232253 ], [ 49.218750, 38.959409 ], [ 49.042969, 38.959409 ], [ 49.042969, 38.822591 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.272689 ], [ 48.515625, 38.272689 ], [ 48.515625, 38.410558 ], [ 48.339844, 38.410558 ], [ 48.339844, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 38.685510 ], [ 47.988281, 38.685510 ], [ 47.988281, 38.822591 ], [ 48.164062, 38.822591 ], [ 48.164062, 39.095963 ], [ 48.339844, 39.095963 ], [ 48.339844, 39.232253 ], [ 48.164062, 39.232253 ], [ 48.164062, 39.504041 ], [ 47.636719, 39.504041 ], [ 47.636719, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.232253 ], [ 47.285156, 39.232253 ], [ 47.285156, 39.095963 ], [ 46.933594, 39.095963 ], [ 46.933594, 38.959409 ], [ 46.757812, 38.959409 ], [ 46.757812, 38.822591 ], [ 46.582031, 38.822591 ], [ 46.582031, 39.095963 ], [ 46.406250, 39.095963 ], [ 46.406250, 39.504041 ], [ 46.054688, 39.504041 ], [ 46.054688, 39.639538 ], [ 45.878906, 39.639538 ], [ 45.878906, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.044438 ], [ 45.878906, 40.044438 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.230469, 41.508577 ], [ 46.230469, 41.640078 ], [ 46.933594, 41.640078 ], [ 46.933594, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.376809 ], [ 47.285156, 41.376809 ], [ 47.285156, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 41.112469 ], [ 47.812500, 41.112469 ], [ 47.812500, 41.244772 ], [ 47.988281, 41.244772 ], [ 47.988281, 41.376809 ], [ 48.164062, 41.376809 ], [ 48.164062, 41.508577 ], [ 48.339844, 41.508577 ], [ 48.339844, 41.640078 ], [ 48.691406, 41.640078 ], [ 48.691406, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ] ] ], [ [ [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.959409 ], [ 46.054688, 38.959409 ], [ 46.054688, 38.685510 ], [ 45.703125, 38.685510 ], [ 45.703125, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.774769 ], [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.691406, 41.640078 ], [ 48.691406, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ], [ 49.042969, 41.244772 ], [ 49.042969, 41.112469 ], [ 49.218750, 41.112469 ], [ 49.218750, 40.847060 ], [ 49.394531, 40.847060 ], [ 49.394531, 40.580585 ], [ 50.097656, 40.580585 ], [ 50.097656, 40.446947 ], [ 50.273438, 40.446947 ], [ 50.273438, 40.313043 ], [ 50.097656, 40.313043 ], [ 50.097656, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.774769 ], [ 49.394531, 39.774769 ], [ 49.394531, 39.232253 ], [ 49.218750, 39.232253 ], [ 49.218750, 38.959409 ], [ 49.042969, 38.959409 ], [ 49.042969, 38.822591 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.272689 ], [ 48.515625, 38.272689 ], [ 48.515625, 38.410558 ], [ 48.339844, 38.410558 ], [ 48.339844, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 38.685510 ], [ 47.988281, 38.685510 ], [ 47.988281, 38.822591 ], [ 48.164062, 38.822591 ], [ 48.164062, 39.095963 ], [ 48.339844, 39.095963 ], [ 48.339844, 39.232253 ], [ 48.164062, 39.232253 ], [ 48.164062, 39.504041 ], [ 47.636719, 39.504041 ], [ 47.636719, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.232253 ], [ 47.285156, 39.232253 ], [ 47.285156, 39.095963 ], [ 46.933594, 39.095963 ], [ 46.933594, 38.959409 ], [ 46.757812, 38.959409 ], [ 46.757812, 38.822591 ], [ 46.582031, 38.822591 ], [ 46.582031, 39.095963 ], [ 46.406250, 39.095963 ], [ 46.406250, 39.504041 ], [ 46.054688, 39.504041 ], [ 46.054688, 39.639538 ], [ 45.878906, 39.639538 ], [ 45.878906, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.044438 ], [ 45.878906, 40.044438 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.230469, 41.508577 ], [ 46.230469, 41.640078 ], [ 46.933594, 41.640078 ], [ 46.933594, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.376809 ], [ 47.285156, 41.376809 ], [ 47.285156, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 41.112469 ], [ 47.812500, 41.112469 ], [ 47.812500, 41.244772 ], [ 47.988281, 41.244772 ], [ 47.988281, 41.376809 ], [ 48.164062, 41.376809 ], [ 48.164062, 41.508577 ], [ 48.339844, 41.508577 ], [ 48.339844, 41.640078 ], [ 48.691406, 41.640078 ] ] ], [ [ [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.959409 ], [ 46.054688, 38.959409 ], [ 46.054688, 38.685510 ], [ 45.703125, 38.685510 ], [ 45.703125, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.774769 ], [ 45.000000, 39.774769 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 39.232253 ], [ 45.175781, 39.232253 ], [ 45.175781, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 45.703125, 38.822591 ], [ 45.703125, 38.685510 ], [ 46.582031, 38.685510 ], [ 46.582031, 38.822591 ], [ 46.757812, 38.822591 ], [ 46.757812, 38.959409 ], [ 46.933594, 38.959409 ], [ 46.933594, 39.095963 ], [ 47.285156, 39.095963 ], [ 47.285156, 39.232253 ], [ 47.460938, 39.232253 ], [ 47.460938, 39.368279 ], [ 47.636719, 39.368279 ], [ 47.636719, 39.504041 ], [ 48.164062, 39.504041 ], [ 48.164062, 39.232253 ], [ 48.339844, 39.232253 ], [ 48.339844, 39.095963 ], [ 48.164062, 39.095963 ], [ 48.164062, 38.822591 ], [ 47.988281, 38.822591 ], [ 47.988281, 38.685510 ], [ 48.164062, 38.685510 ], [ 48.164062, 38.548165 ], [ 48.339844, 38.548165 ], [ 48.339844, 38.410558 ], [ 48.515625, 38.410558 ], [ 48.515625, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.996163 ], [ 49.042969, 37.996163 ], [ 49.042969, 37.718590 ], [ 49.218750, 37.718590 ], [ 49.218750, 37.579413 ], [ 49.570312, 37.579413 ], [ 49.570312, 37.439974 ], [ 50.097656, 37.439974 ], [ 50.097656, 37.300275 ], [ 50.273438, 37.300275 ], [ 50.273438, 37.160317 ], [ 50.449219, 37.160317 ], [ 50.449219, 37.020098 ], [ 50.625000, 37.020098 ], [ 50.625000, 36.879621 ], [ 51.328125, 36.879621 ], [ 51.328125, 36.738884 ], [ 52.734375, 36.738884 ], [ 52.734375, 36.879621 ], [ 53.437500, 36.879621 ], [ 53.437500, 37.020098 ], [ 53.964844, 37.020098 ], [ 53.964844, 37.160317 ], [ 54.316406, 37.160317 ], [ 54.316406, 37.300275 ], [ 54.667969, 37.300275 ], [ 54.667969, 37.439974 ], [ 55.019531, 37.439974 ], [ 55.019531, 37.579413 ], [ 55.195312, 37.579413 ], [ 55.195312, 37.718590 ], [ 55.371094, 37.718590 ], [ 55.371094, 37.857507 ], [ 55.546875, 37.857507 ], [ 55.546875, 37.996163 ], [ 56.601562, 37.996163 ], [ 56.601562, 38.134557 ], [ 56.777344, 38.134557 ], [ 56.777344, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 37.857507 ], [ 57.656250, 37.857507 ], [ 57.656250, 37.718590 ], [ 58.007812, 37.718590 ], [ 58.007812, 37.579413 ], [ 58.710938, 37.579413 ], [ 58.710938, 37.439974 ], [ 59.238281, 37.439974 ], [ 59.238281, 37.300275 ], [ 59.414062, 37.300275 ], [ 59.414062, 37.160317 ], [ 59.589844, 37.160317 ], [ 59.589844, 37.020098 ], [ 59.765625, 37.020098 ], [ 59.765625, 36.879621 ], [ 59.941406, 36.879621 ], [ 59.941406, 36.738884 ], [ 60.117188, 36.738884 ], [ 60.117188, 36.597889 ], [ 60.644531, 36.597889 ], [ 60.644531, 36.456636 ], [ 61.171875, 36.456636 ], [ 61.171875, 35.317366 ], [ 60.996094, 35.317366 ], [ 60.996094, 34.741612 ], [ 60.820312, 34.741612 ], [ 60.820312, 34.161818 ], [ 60.644531, 34.161818 ], [ 60.644531, 33.870416 ], [ 60.468750, 33.870416 ], [ 60.468750, 33.724340 ], [ 60.644531, 33.724340 ], [ 60.644531, 33.578015 ], [ 60.996094, 33.578015 ], [ 60.996094, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.284620 ], [ 60.644531, 33.284620 ], [ 60.644531, 32.990236 ], [ 60.468750, 32.990236 ], [ 60.468750, 32.694866 ], [ 60.644531, 32.694866 ], [ 60.644531, 32.398516 ], [ 60.820312, 32.398516 ], [ 60.820312, 31.802893 ], [ 60.996094, 31.802893 ], [ 60.996094, 31.503629 ], [ 61.171875, 31.503629 ], [ 61.171875, 31.353637 ], [ 61.699219, 31.353637 ], [ 61.699219, 30.600094 ], [ 61.523438, 30.600094 ], [ 61.523438, 30.448674 ], [ 61.347656, 30.448674 ], [ 61.347656, 30.297018 ], [ 61.171875, 30.297018 ], [ 61.171875, 29.993002 ], [ 60.996094, 29.993002 ], [ 60.996094, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.228890 ], [ 61.347656, 29.228890 ], [ 61.347656, 29.075375 ], [ 61.523438, 29.075375 ], [ 61.523438, 28.767659 ], [ 61.699219, 28.767659 ], [ 61.699219, 28.613459 ], [ 62.050781, 28.613459 ], [ 62.050781, 28.459033 ], [ 62.402344, 28.459033 ], [ 62.402344, 28.304381 ], [ 62.753906, 28.304381 ], [ 62.753906, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.215556 ], [ 63.281250, 27.215556 ], [ 63.281250, 26.745610 ], [ 63.105469, 26.745610 ], [ 63.105469, 26.588527 ], [ 62.753906, 26.588527 ], [ 62.753906, 26.431228 ], [ 62.226562, 26.431228 ], [ 62.226562, 26.273714 ], [ 61.875000, 26.273714 ], [ 61.875000, 25.958045 ], [ 61.699219, 25.958045 ], [ 61.699219, 25.324167 ], [ 61.523438, 25.324167 ], [ 61.523438, 25.005973 ], [ 60.996094, 25.005973 ], [ 60.996094, 25.165173 ], [ 59.941406, 25.165173 ], [ 59.941406, 25.324167 ], [ 59.238281, 25.324167 ], [ 59.238281, 25.482951 ], [ 58.710938, 25.482951 ], [ 58.710938, 25.641526 ], [ 57.832031, 25.641526 ], [ 57.832031, 25.799891 ], [ 57.480469, 25.799891 ], [ 57.480469, 25.958045 ], [ 57.304688, 25.958045 ], [ 57.304688, 26.273714 ], [ 57.128906, 26.273714 ], [ 57.128906, 26.588527 ], [ 56.953125, 26.588527 ], [ 56.953125, 26.902477 ], [ 56.777344, 26.902477 ], [ 56.777344, 27.059126 ], [ 56.074219, 27.059126 ], [ 56.074219, 26.902477 ], [ 55.722656, 26.902477 ], [ 55.722656, 26.745610 ], [ 55.371094, 26.745610 ], [ 55.371094, 26.588527 ], [ 55.019531, 26.588527 ], [ 55.019531, 26.431228 ], [ 54.316406, 26.431228 ], [ 54.316406, 26.588527 ], [ 53.613281, 26.588527 ], [ 53.613281, 26.745610 ], [ 53.261719, 26.745610 ], [ 53.261719, 26.902477 ], [ 53.085938, 26.902477 ], [ 53.085938, 27.059126 ], [ 52.910156, 27.059126 ], [ 52.910156, 27.215556 ], [ 52.734375, 27.215556 ], [ 52.734375, 27.371767 ], [ 52.558594, 27.371767 ], [ 52.558594, 27.527758 ], [ 52.207031, 27.527758 ], [ 52.207031, 27.683528 ], [ 51.679688, 27.683528 ], [ 51.679688, 27.839076 ], [ 51.328125, 27.839076 ], [ 51.328125, 28.149503 ], [ 51.152344, 28.149503 ], [ 51.152344, 28.304381 ], [ 50.976562, 28.304381 ], [ 50.976562, 28.613459 ], [ 50.800781, 28.613459 ], [ 50.800781, 28.921631 ], [ 50.625000, 28.921631 ], [ 50.625000, 29.228890 ], [ 50.449219, 29.228890 ], [ 50.449219, 29.535230 ], [ 50.273438, 29.535230 ], [ 50.273438, 29.840644 ], [ 50.097656, 29.840644 ], [ 50.097656, 30.145127 ], [ 49.921875, 30.145127 ], [ 49.921875, 29.993002 ], [ 49.218750, 29.993002 ], [ 49.218750, 30.145127 ], [ 48.691406, 30.145127 ], [ 48.691406, 29.993002 ], [ 48.339844, 29.993002 ], [ 48.339844, 30.145127 ], [ 48.164062, 30.145127 ], [ 48.164062, 30.297018 ], [ 47.988281, 30.297018 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.636719, 31.353637 ], [ 47.812500, 31.353637 ], [ 47.812500, 31.653381 ], [ 47.636719, 31.653381 ], [ 47.636719, 31.952162 ], [ 47.460938, 31.952162 ], [ 47.460938, 32.249974 ], [ 47.285156, 32.249974 ], [ 47.285156, 32.398516 ], [ 47.109375, 32.398516 ], [ 47.109375, 32.546813 ], [ 46.757812, 32.546813 ], [ 46.757812, 32.694866 ], [ 46.406250, 32.694866 ], [ 46.406250, 32.842674 ], [ 46.054688, 32.842674 ], [ 46.054688, 32.990236 ], [ 45.878906, 32.990236 ], [ 45.878906, 33.284620 ], [ 45.703125, 33.284620 ], [ 45.703125, 33.578015 ], [ 45.527344, 33.578015 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.161818 ], [ 45.527344, 34.161818 ], [ 45.527344, 34.452218 ], [ 45.703125, 34.452218 ], [ 45.703125, 34.741612 ], [ 45.878906, 34.741612 ], [ 45.878906, 34.885931 ], [ 46.230469, 34.885931 ], [ 46.230469, 35.317366 ], [ 46.054688, 35.317366 ], [ 46.054688, 35.746512 ], [ 45.703125, 35.746512 ], [ 45.703125, 35.889050 ], [ 45.351562, 35.889050 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 36.879621 ], [ 44.824219, 36.879621 ], [ 44.824219, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 38.134557 ], [ 44.472656, 38.134557 ], [ 44.472656, 38.548165 ], [ 44.296875, 38.548165 ], [ 44.296875, 39.095963 ], [ 44.121094, 39.095963 ], [ 44.121094, 39.504041 ], [ 44.472656, 39.504041 ], [ 44.472656, 39.639538 ], [ 44.824219, 39.639538 ], [ 44.824219, 39.504041 ], [ 45.000000, 39.504041 ], [ 45.000000, 39.232253 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 39.639538 ], [ 44.824219, 39.504041 ], [ 45.000000, 39.504041 ], [ 45.000000, 39.232253 ], [ 45.175781, 39.232253 ], [ 45.175781, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 45.703125, 38.822591 ], [ 45.703125, 38.685510 ], [ 46.582031, 38.685510 ], [ 46.582031, 38.822591 ], [ 46.757812, 38.822591 ], [ 46.757812, 38.959409 ], [ 46.933594, 38.959409 ], [ 46.933594, 39.095963 ], [ 47.285156, 39.095963 ], [ 47.285156, 39.232253 ], [ 47.460938, 39.232253 ], [ 47.460938, 39.368279 ], [ 47.636719, 39.368279 ], [ 47.636719, 39.504041 ], [ 48.164062, 39.504041 ], [ 48.164062, 39.232253 ], [ 48.339844, 39.232253 ], [ 48.339844, 39.095963 ], [ 48.164062, 39.095963 ], [ 48.164062, 38.822591 ], [ 47.988281, 38.822591 ], [ 47.988281, 38.685510 ], [ 48.164062, 38.685510 ], [ 48.164062, 38.548165 ], [ 48.339844, 38.548165 ], [ 48.339844, 38.410558 ], [ 48.515625, 38.410558 ], [ 48.515625, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.996163 ], [ 49.042969, 37.996163 ], [ 49.042969, 37.718590 ], [ 49.218750, 37.718590 ], [ 49.218750, 37.579413 ], [ 49.570312, 37.579413 ], [ 49.570312, 37.439974 ], [ 50.097656, 37.439974 ], [ 50.097656, 37.300275 ], [ 50.273438, 37.300275 ], [ 50.273438, 37.160317 ], [ 50.449219, 37.160317 ], [ 50.449219, 37.020098 ], [ 50.625000, 37.020098 ], [ 50.625000, 36.879621 ], [ 51.328125, 36.879621 ], [ 51.328125, 36.738884 ], [ 52.734375, 36.738884 ], [ 52.734375, 36.879621 ], [ 53.437500, 36.879621 ], [ 53.437500, 37.020098 ], [ 53.964844, 37.020098 ], [ 53.964844, 37.160317 ], [ 54.316406, 37.160317 ], [ 54.316406, 37.300275 ], [ 54.667969, 37.300275 ], [ 54.667969, 37.439974 ], [ 55.019531, 37.439974 ], [ 55.019531, 37.579413 ], [ 55.195312, 37.579413 ], [ 55.195312, 37.718590 ], [ 55.371094, 37.718590 ], [ 55.371094, 37.857507 ], [ 55.546875, 37.857507 ], [ 55.546875, 37.996163 ], [ 56.601562, 37.996163 ], [ 56.601562, 38.134557 ], [ 56.777344, 38.134557 ], [ 56.777344, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 37.857507 ], [ 57.656250, 37.857507 ], [ 57.656250, 37.718590 ], [ 58.007812, 37.718590 ], [ 58.007812, 37.579413 ], [ 58.710938, 37.579413 ], [ 58.710938, 37.439974 ], [ 59.238281, 37.439974 ], [ 59.238281, 37.300275 ], [ 59.414062, 37.300275 ], [ 59.414062, 37.160317 ], [ 59.589844, 37.160317 ], [ 59.589844, 37.020098 ], [ 59.765625, 37.020098 ], [ 59.765625, 36.879621 ], [ 59.941406, 36.879621 ], [ 59.941406, 36.738884 ], [ 60.117188, 36.738884 ], [ 60.117188, 36.597889 ], [ 60.644531, 36.597889 ], [ 60.644531, 36.456636 ], [ 61.171875, 36.456636 ], [ 61.171875, 35.317366 ], [ 60.996094, 35.317366 ], [ 60.996094, 34.741612 ], [ 60.820312, 34.741612 ], [ 60.820312, 34.161818 ], [ 60.644531, 34.161818 ], [ 60.644531, 33.870416 ], [ 60.468750, 33.870416 ], [ 60.468750, 33.724340 ], [ 60.644531, 33.724340 ], [ 60.644531, 33.578015 ], [ 60.996094, 33.578015 ], [ 60.996094, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.284620 ], [ 60.644531, 33.284620 ], [ 60.644531, 32.990236 ], [ 60.468750, 32.990236 ], [ 60.468750, 32.694866 ], [ 60.644531, 32.694866 ], [ 60.644531, 32.398516 ], [ 60.820312, 32.398516 ], [ 60.820312, 31.802893 ], [ 60.996094, 31.802893 ], [ 60.996094, 31.503629 ], [ 61.171875, 31.503629 ], [ 61.171875, 31.353637 ], [ 61.699219, 31.353637 ], [ 61.699219, 30.600094 ], [ 61.523438, 30.600094 ], [ 61.523438, 30.448674 ], [ 61.347656, 30.448674 ], [ 61.347656, 30.297018 ], [ 61.171875, 30.297018 ], [ 61.171875, 29.993002 ], [ 60.996094, 29.993002 ], [ 60.996094, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.228890 ], [ 61.347656, 29.228890 ], [ 61.347656, 29.075375 ], [ 61.523438, 29.075375 ], [ 61.523438, 28.767659 ], [ 61.699219, 28.767659 ], [ 61.699219, 28.613459 ], [ 62.050781, 28.613459 ], [ 62.050781, 28.459033 ], [ 62.402344, 28.459033 ], [ 62.402344, 28.304381 ], [ 62.753906, 28.304381 ], [ 62.753906, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.215556 ], [ 63.281250, 27.215556 ], [ 63.281250, 26.745610 ], [ 63.105469, 26.745610 ], [ 63.105469, 26.588527 ], [ 62.753906, 26.588527 ], [ 62.753906, 26.431228 ], [ 62.226562, 26.431228 ], [ 62.226562, 26.273714 ], [ 61.875000, 26.273714 ], [ 61.875000, 25.958045 ], [ 61.699219, 25.958045 ], [ 61.699219, 25.324167 ], [ 61.523438, 25.324167 ], [ 61.523438, 25.005973 ], [ 60.996094, 25.005973 ], [ 60.996094, 25.165173 ], [ 59.941406, 25.165173 ], [ 59.941406, 25.324167 ], [ 59.238281, 25.324167 ], [ 59.238281, 25.482951 ], [ 58.710938, 25.482951 ], [ 58.710938, 25.641526 ], [ 57.832031, 25.641526 ], [ 57.832031, 25.799891 ], [ 57.480469, 25.799891 ], [ 57.480469, 25.958045 ], [ 57.304688, 25.958045 ], [ 57.304688, 26.273714 ], [ 57.128906, 26.273714 ], [ 57.128906, 26.588527 ], [ 56.953125, 26.588527 ], [ 56.953125, 26.902477 ], [ 56.777344, 26.902477 ], [ 56.777344, 27.059126 ], [ 56.074219, 27.059126 ], [ 56.074219, 26.902477 ], [ 55.722656, 26.902477 ], [ 55.722656, 26.745610 ], [ 55.371094, 26.745610 ], [ 55.371094, 26.588527 ], [ 55.019531, 26.588527 ], [ 55.019531, 26.431228 ], [ 54.316406, 26.431228 ], [ 54.316406, 26.588527 ], [ 53.613281, 26.588527 ], [ 53.613281, 26.745610 ], [ 53.261719, 26.745610 ], [ 53.261719, 26.902477 ], [ 53.085938, 26.902477 ], [ 53.085938, 27.059126 ], [ 52.910156, 27.059126 ], [ 52.910156, 27.215556 ], [ 52.734375, 27.215556 ], [ 52.734375, 27.371767 ], [ 52.558594, 27.371767 ], [ 52.558594, 27.527758 ], [ 52.207031, 27.527758 ], [ 52.207031, 27.683528 ], [ 51.679688, 27.683528 ], [ 51.679688, 27.839076 ], [ 51.328125, 27.839076 ], [ 51.328125, 28.149503 ], [ 51.152344, 28.149503 ], [ 51.152344, 28.304381 ], [ 50.976562, 28.304381 ], [ 50.976562, 28.613459 ], [ 50.800781, 28.613459 ], [ 50.800781, 28.921631 ], [ 50.625000, 28.921631 ], [ 50.625000, 29.228890 ], [ 50.449219, 29.228890 ], [ 50.449219, 29.535230 ], [ 50.273438, 29.535230 ], [ 50.273438, 29.840644 ], [ 50.097656, 29.840644 ], [ 50.097656, 30.145127 ], [ 49.921875, 30.145127 ], [ 49.921875, 29.993002 ], [ 49.218750, 29.993002 ], [ 49.218750, 30.145127 ], [ 48.691406, 30.145127 ], [ 48.691406, 29.993002 ], [ 48.339844, 29.993002 ], [ 48.339844, 30.145127 ], [ 48.164062, 30.145127 ], [ 48.164062, 30.297018 ], [ 47.988281, 30.297018 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.636719, 31.353637 ], [ 47.812500, 31.353637 ], [ 47.812500, 31.653381 ], [ 47.636719, 31.653381 ], [ 47.636719, 31.952162 ], [ 47.460938, 31.952162 ], [ 47.460938, 32.249974 ], [ 47.285156, 32.249974 ], [ 47.285156, 32.398516 ], [ 47.109375, 32.398516 ], [ 47.109375, 32.546813 ], [ 46.757812, 32.546813 ], [ 46.757812, 32.694866 ], [ 46.406250, 32.694866 ], [ 46.406250, 32.842674 ], [ 46.054688, 32.842674 ], [ 46.054688, 32.990236 ], [ 45.878906, 32.990236 ], [ 45.878906, 33.284620 ], [ 45.703125, 33.284620 ], [ 45.703125, 33.578015 ], [ 45.527344, 33.578015 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.161818 ], [ 45.527344, 34.161818 ], [ 45.527344, 34.452218 ], [ 45.703125, 34.452218 ], [ 45.703125, 34.741612 ], [ 45.878906, 34.741612 ], [ 45.878906, 34.885931 ], [ 46.230469, 34.885931 ], [ 46.230469, 35.317366 ], [ 46.054688, 35.317366 ], [ 46.054688, 35.746512 ], [ 45.703125, 35.746512 ], [ 45.703125, 35.889050 ], [ 45.351562, 35.889050 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 36.879621 ], [ 44.824219, 36.879621 ], [ 44.824219, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 38.134557 ], [ 44.472656, 38.134557 ], [ 44.472656, 38.548165 ], [ 44.296875, 38.548165 ], [ 44.296875, 39.095963 ], [ 44.121094, 39.095963 ], [ 44.121094, 39.504041 ], [ 44.472656, 39.504041 ], [ 44.472656, 39.639538 ], [ 44.824219, 39.639538 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.988281, 29.688053 ], [ 48.164062, 29.688053 ], [ 48.164062, 28.921631 ], [ 48.339844, 28.921631 ], [ 48.339844, 28.613459 ], [ 48.164062, 28.613459 ], [ 48.164062, 28.459033 ], [ 47.636719, 28.459033 ], [ 47.636719, 28.767659 ], [ 47.460938, 28.767659 ], [ 47.460938, 29.075375 ], [ 46.757812, 29.075375 ], [ 46.757812, 29.382175 ], [ 46.933594, 29.382175 ], [ 46.933594, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 29.840644 ], [ 47.285156, 29.840644 ], [ 47.285156, 29.993002 ], [ 47.988281, 29.993002 ], [ 47.988281, 29.688053 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.988281, 29.993002 ], [ 47.988281, 29.688053 ], [ 48.164062, 29.688053 ], [ 48.164062, 28.921631 ], [ 48.339844, 28.921631 ], [ 48.339844, 28.613459 ], [ 48.164062, 28.613459 ], [ 48.164062, 28.459033 ], [ 47.636719, 28.459033 ], [ 47.636719, 28.767659 ], [ 47.460938, 28.767659 ], [ 47.460938, 29.075375 ], [ 46.757812, 29.075375 ], [ 46.757812, 29.382175 ], [ 46.933594, 29.382175 ], [ 46.933594, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 29.840644 ], [ 47.285156, 29.840644 ], [ 47.285156, 29.993002 ], [ 47.988281, 29.993002 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.515625, 28.149503 ], [ 48.691406, 28.149503 ], [ 48.691406, 27.839076 ], [ 48.867188, 27.839076 ], [ 48.867188, 27.527758 ], [ 49.218750, 27.527758 ], [ 49.218750, 27.215556 ], [ 49.394531, 27.215556 ], [ 49.394531, 26.902477 ], [ 49.746094, 26.902477 ], [ 49.746094, 26.745610 ], [ 50.097656, 26.745610 ], [ 50.097656, 26.431228 ], [ 50.273438, 26.431228 ], [ 50.273438, 26.115986 ], [ 50.097656, 26.115986 ], [ 50.097656, 25.799891 ], [ 50.273438, 25.799891 ], [ 50.273438, 25.482951 ], [ 50.449219, 25.482951 ], [ 50.449219, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.846565 ], [ 50.800781, 24.846565 ], [ 50.800781, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 24.367114 ], [ 51.503906, 24.367114 ], [ 51.503906, 24.046464 ], [ 51.679688, 24.046464 ], [ 51.679688, 23.725012 ], [ 51.855469, 23.725012 ], [ 51.855469, 23.241346 ], [ 52.031250, 23.241346 ], [ 52.031250, 23.079732 ], [ 52.382812, 23.079732 ], [ 52.382812, 22.917923 ], [ 53.085938, 22.917923 ], [ 53.085938, 22.755921 ], [ 53.789062, 22.755921 ], [ 53.789062, 22.593726 ], [ 54.492188, 22.593726 ], [ 54.492188, 22.431340 ], [ 55.019531, 22.431340 ], [ 55.019531, 22.593726 ], [ 55.371094, 22.593726 ], [ 55.371094, 22.268764 ], [ 55.546875, 22.268764 ], [ 55.546875, 21.943046 ], [ 55.722656, 21.943046 ], [ 55.722656, 21.616579 ], [ 55.546875, 21.616579 ], [ 55.546875, 21.125498 ], [ 55.371094, 21.125498 ], [ 55.371094, 20.632784 ], [ 55.195312, 20.632784 ], [ 55.195312, 20.138470 ], [ 55.019531, 20.138470 ], [ 55.019531, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 19.808054 ], [ 54.316406, 19.808054 ], [ 54.316406, 19.642588 ], [ 53.789062, 19.642588 ], [ 53.789062, 19.476950 ], [ 53.437500, 19.476950 ], [ 53.437500, 19.311143 ], [ 52.910156, 19.311143 ], [ 52.910156, 19.145168 ], [ 52.382812, 19.145168 ], [ 52.382812, 18.979026 ], [ 51.328125, 18.979026 ], [ 51.328125, 18.812718 ], [ 49.921875, 18.812718 ], [ 49.921875, 18.646245 ], [ 49.042969, 18.646245 ], [ 49.042969, 18.479609 ], [ 48.691406, 18.479609 ], [ 48.691406, 18.312811 ], [ 48.339844, 18.312811 ], [ 48.339844, 18.145852 ], [ 48.164062, 18.145852 ], [ 48.164062, 17.978733 ], [ 47.988281, 17.978733 ], [ 47.988281, 17.644022 ], [ 47.812500, 17.644022 ], [ 47.812500, 17.476432 ], [ 47.636719, 17.476432 ], [ 47.636719, 17.140790 ], [ 47.285156, 17.140790 ], [ 47.285156, 16.972741 ], [ 46.933594, 16.972741 ], [ 46.933594, 17.140790 ], [ 46.757812, 17.140790 ], [ 46.757812, 17.308688 ], [ 45.175781, 17.308688 ], [ 45.175781, 17.476432 ], [ 44.121094, 17.476432 ], [ 44.121094, 29.382175 ], [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 45.527344, 29.228890 ], [ 45.527344, 29.075375 ], [ 47.460938, 29.075375 ], [ 47.460938, 28.767659 ], [ 47.636719, 28.767659 ], [ 47.636719, 28.459033 ], [ 48.164062, 28.459033 ], [ 48.164062, 28.613459 ], [ 48.339844, 28.613459 ], [ 48.339844, 28.459033 ], [ 48.515625, 28.459033 ], [ 48.515625, 28.149503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 45.527344, 29.228890 ], [ 45.527344, 29.075375 ], [ 47.460938, 29.075375 ], [ 47.460938, 28.767659 ], [ 47.636719, 28.767659 ], [ 47.636719, 28.459033 ], [ 48.164062, 28.459033 ], [ 48.164062, 28.613459 ], [ 48.339844, 28.613459 ], [ 48.339844, 28.459033 ], [ 48.515625, 28.459033 ], [ 48.515625, 28.149503 ], [ 48.691406, 28.149503 ], [ 48.691406, 27.839076 ], [ 48.867188, 27.839076 ], [ 48.867188, 27.527758 ], [ 49.218750, 27.527758 ], [ 49.218750, 27.215556 ], [ 49.394531, 27.215556 ], [ 49.394531, 26.902477 ], [ 49.746094, 26.902477 ], [ 49.746094, 26.745610 ], [ 50.097656, 26.745610 ], [ 50.097656, 26.431228 ], [ 50.273438, 26.431228 ], [ 50.273438, 26.115986 ], [ 50.097656, 26.115986 ], [ 50.097656, 25.799891 ], [ 50.273438, 25.799891 ], [ 50.273438, 25.482951 ], [ 50.449219, 25.482951 ], [ 50.449219, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.846565 ], [ 50.800781, 24.846565 ], [ 50.800781, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 24.367114 ], [ 51.503906, 24.367114 ], [ 51.503906, 24.046464 ], [ 51.679688, 24.046464 ], [ 51.679688, 23.725012 ], [ 51.855469, 23.725012 ], [ 51.855469, 23.241346 ], [ 52.031250, 23.241346 ], [ 52.031250, 23.079732 ], [ 52.382812, 23.079732 ], [ 52.382812, 22.917923 ], [ 53.085938, 22.917923 ], [ 53.085938, 22.755921 ], [ 53.789062, 22.755921 ], [ 53.789062, 22.593726 ], [ 54.492188, 22.593726 ], [ 54.492188, 22.431340 ], [ 55.019531, 22.431340 ], [ 55.019531, 22.593726 ], [ 55.371094, 22.593726 ], [ 55.371094, 22.268764 ], [ 55.546875, 22.268764 ], [ 55.546875, 21.943046 ], [ 55.722656, 21.943046 ], [ 55.722656, 21.616579 ], [ 55.546875, 21.616579 ], [ 55.546875, 21.125498 ], [ 55.371094, 21.125498 ], [ 55.371094, 20.632784 ], [ 55.195312, 20.632784 ], [ 55.195312, 20.138470 ], [ 55.019531, 20.138470 ], [ 55.019531, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 19.808054 ], [ 54.316406, 19.808054 ], [ 54.316406, 19.642588 ], [ 53.789062, 19.642588 ], [ 53.789062, 19.476950 ], [ 53.437500, 19.476950 ], [ 53.437500, 19.311143 ], [ 52.910156, 19.311143 ], [ 52.910156, 19.145168 ], [ 52.382812, 19.145168 ], [ 52.382812, 18.979026 ], [ 51.328125, 18.979026 ], [ 51.328125, 18.812718 ], [ 49.921875, 18.812718 ], [ 49.921875, 18.646245 ], [ 49.042969, 18.646245 ], [ 49.042969, 18.479609 ], [ 48.691406, 18.479609 ], [ 48.691406, 18.312811 ], [ 48.339844, 18.312811 ], [ 48.339844, 18.145852 ], [ 48.164062, 18.145852 ], [ 48.164062, 17.978733 ], [ 47.988281, 17.978733 ], [ 47.988281, 17.644022 ], [ 47.812500, 17.644022 ], [ 47.812500, 17.476432 ], [ 47.636719, 17.476432 ], [ 47.636719, 17.140790 ], [ 47.285156, 17.140790 ], [ 47.285156, 16.972741 ], [ 46.933594, 16.972741 ], [ 46.933594, 17.140790 ], [ 46.757812, 17.140790 ], [ 46.757812, 17.308688 ], [ 45.175781, 17.308688 ], [ 45.175781, 17.476432 ], [ 44.121094, 17.476432 ], [ 44.121094, 29.382175 ], [ 44.472656, 29.382175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.503906, 25.482951 ], [ 51.679688, 25.482951 ], [ 51.679688, 25.005973 ], [ 51.503906, 25.005973 ], [ 51.503906, 24.686952 ], [ 51.328125, 24.686952 ], [ 51.328125, 24.527135 ], [ 50.800781, 24.527135 ], [ 50.800781, 25.641526 ], [ 50.976562, 25.641526 ], [ 50.976562, 25.958045 ], [ 51.503906, 25.958045 ], [ 51.503906, 25.482951 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.503906, 25.958045 ], [ 51.503906, 25.482951 ], [ 51.679688, 25.482951 ], [ 51.679688, 25.005973 ], [ 51.503906, 25.005973 ], [ 51.503906, 24.686952 ], [ 51.328125, 24.686952 ], [ 51.328125, 24.527135 ], [ 50.800781, 24.527135 ], [ 50.800781, 25.641526 ], [ 50.976562, 25.641526 ], [ 50.976562, 25.958045 ], [ 51.503906, 25.958045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.165173 ], [ 56.425781, 25.165173 ], [ 56.425781, 24.846565 ], [ 55.898438, 24.846565 ], [ 55.898438, 24.527135 ], [ 55.722656, 24.527135 ], [ 55.722656, 24.206890 ], [ 55.898438, 24.206890 ], [ 55.898438, 24.046464 ], [ 55.722656, 24.046464 ], [ 55.722656, 23.885838 ], [ 55.546875, 23.885838 ], [ 55.546875, 23.402765 ], [ 55.371094, 23.402765 ], [ 55.371094, 23.079732 ], [ 55.195312, 23.079732 ], [ 55.195312, 22.593726 ], [ 55.019531, 22.593726 ], [ 55.019531, 22.431340 ], [ 54.492188, 22.431340 ], [ 54.492188, 22.593726 ], [ 53.789062, 22.593726 ], [ 53.789062, 22.755921 ], [ 53.085938, 22.755921 ], [ 53.085938, 22.917923 ], [ 52.382812, 22.917923 ], [ 52.382812, 23.079732 ], [ 52.031250, 23.079732 ], [ 52.031250, 23.241346 ], [ 51.855469, 23.241346 ], [ 51.855469, 23.725012 ], [ 51.679688, 23.725012 ], [ 51.679688, 24.046464 ], [ 51.503906, 24.046464 ], [ 51.503906, 24.206890 ], [ 51.855469, 24.206890 ], [ 51.855469, 24.046464 ], [ 52.382812, 24.046464 ], [ 52.382812, 24.206890 ], [ 53.613281, 24.206890 ], [ 53.613281, 24.046464 ], [ 54.140625, 24.046464 ], [ 54.140625, 24.206890 ], [ 54.316406, 24.206890 ], [ 54.316406, 24.527135 ], [ 54.492188, 24.527135 ], [ 54.492188, 24.686952 ], [ 54.667969, 24.686952 ], [ 54.667969, 24.846565 ], [ 54.843750, 24.846565 ], [ 54.843750, 25.005973 ], [ 55.019531, 25.005973 ], [ 55.019531, 25.165173 ], [ 55.195312, 25.165173 ], [ 55.195312, 25.324167 ], [ 55.371094, 25.324167 ], [ 55.371094, 25.482951 ], [ 55.546875, 25.482951 ], [ 55.546875, 25.641526 ], [ 55.722656, 25.641526 ], [ 55.722656, 25.799891 ], [ 55.898438, 25.799891 ], [ 55.898438, 25.958045 ], [ 56.074219, 25.958045 ], [ 56.074219, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 25.165173 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 25.958045 ], [ 56.074219, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 25.165173 ], [ 56.425781, 25.165173 ], [ 56.425781, 24.846565 ], [ 55.898438, 24.846565 ], [ 55.898438, 24.527135 ], [ 55.722656, 24.527135 ], [ 55.722656, 24.206890 ], [ 55.898438, 24.206890 ], [ 55.898438, 24.046464 ], [ 55.722656, 24.046464 ], [ 55.722656, 23.885838 ], [ 55.546875, 23.885838 ], [ 55.546875, 23.402765 ], [ 55.371094, 23.402765 ], [ 55.371094, 23.079732 ], [ 55.195312, 23.079732 ], [ 55.195312, 22.593726 ], [ 55.019531, 22.593726 ], [ 55.019531, 22.431340 ], [ 54.492188, 22.431340 ], [ 54.492188, 22.593726 ], [ 53.789062, 22.593726 ], [ 53.789062, 22.755921 ], [ 53.085938, 22.755921 ], [ 53.085938, 22.917923 ], [ 52.382812, 22.917923 ], [ 52.382812, 23.079732 ], [ 52.031250, 23.079732 ], [ 52.031250, 23.241346 ], [ 51.855469, 23.241346 ], [ 51.855469, 23.725012 ], [ 51.679688, 23.725012 ], [ 51.679688, 24.046464 ], [ 51.503906, 24.206890 ], [ 51.855469, 24.206890 ], [ 51.855469, 24.046464 ], [ 52.382812, 24.046464 ], [ 52.382812, 24.206890 ], [ 53.613281, 24.206890 ], [ 53.613281, 24.046464 ], [ 54.140625, 24.046464 ], [ 54.140625, 24.206890 ], [ 54.316406, 24.206890 ], [ 54.316406, 24.527135 ], [ 54.492188, 24.527135 ], [ 54.492188, 24.686952 ], [ 54.667969, 24.686952 ], [ 54.667969, 24.846565 ], [ 54.843750, 24.846565 ], [ 54.843750, 25.005973 ], [ 55.019531, 25.005973 ], [ 55.019531, 25.165173 ], [ 55.195312, 25.165173 ], [ 55.195312, 25.324167 ], [ 55.371094, 25.324167 ], [ 55.371094, 25.482951 ], [ 55.546875, 25.482951 ], [ 55.546875, 25.641526 ], [ 55.722656, 25.641526 ], [ 55.722656, 25.799891 ], [ 55.898438, 25.799891 ], [ 55.898438, 25.958045 ], [ 56.074219, 25.958045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 61.523438, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.580585 ], [ 62.226562, 40.580585 ], [ 62.226562, 40.178873 ], [ 62.402344, 40.178873 ], [ 62.402344, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.774769 ], [ 62.753906, 39.774769 ], [ 62.753906, 39.639538 ], [ 63.105469, 39.639538 ], [ 63.105469, 39.504041 ], [ 63.281250, 39.504041 ], [ 63.281250, 39.368279 ], [ 63.457031, 39.368279 ], [ 63.457031, 39.232253 ], [ 63.632812, 39.232253 ], [ 63.632812, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.959409 ], [ 64.160156, 38.959409 ], [ 64.160156, 38.822591 ], [ 64.511719, 38.822591 ], [ 64.511719, 38.685510 ], [ 64.687500, 38.685510 ], [ 64.687500, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.410558 ], [ 65.390625, 38.410558 ], [ 65.390625, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 38.134557 ], [ 66.269531, 38.134557 ], [ 66.269531, 37.996163 ], [ 66.621094, 37.996163 ], [ 66.621094, 37.579413 ], [ 66.445312, 37.579413 ], [ 66.445312, 37.300275 ], [ 66.269531, 37.300275 ], [ 66.269531, 37.439974 ], [ 66.093750, 37.439974 ], [ 66.093750, 37.579413 ], [ 65.742188, 37.579413 ], [ 65.742188, 37.439974 ], [ 65.566406, 37.439974 ], [ 65.566406, 37.300275 ], [ 65.214844, 37.300275 ], [ 65.214844, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.738884 ], [ 64.511719, 36.738884 ], [ 64.511719, 36.173357 ], [ 64.160156, 36.173357 ], [ 64.160156, 36.031332 ], [ 63.808594, 36.031332 ], [ 63.808594, 35.889050 ], [ 63.281250, 35.889050 ], [ 63.281250, 35.746512 ], [ 63.105469, 35.746512 ], [ 63.105469, 35.460670 ], [ 62.753906, 35.460670 ], [ 62.753906, 35.317366 ], [ 61.875000, 35.317366 ], [ 61.875000, 35.460670 ], [ 61.347656, 35.460670 ], [ 61.347656, 35.603719 ], [ 61.171875, 35.603719 ], [ 61.171875, 36.456636 ], [ 60.644531, 36.456636 ], [ 60.644531, 36.597889 ], [ 60.117188, 36.597889 ], [ 60.117188, 36.738884 ], [ 59.941406, 36.738884 ], [ 59.941406, 36.879621 ], [ 59.765625, 36.879621 ], [ 59.765625, 37.020098 ], [ 59.589844, 37.020098 ], [ 59.589844, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 37.300275 ], [ 59.238281, 37.300275 ], [ 59.238281, 37.439974 ], [ 58.710938, 37.439974 ], [ 58.710938, 37.579413 ], [ 58.007812, 37.579413 ], [ 58.007812, 37.718590 ], [ 57.656250, 37.718590 ], [ 57.656250, 37.857507 ], [ 57.304688, 37.857507 ], [ 57.304688, 37.996163 ], [ 56.777344, 37.996163 ], [ 56.777344, 38.134557 ], [ 56.601562, 38.134557 ], [ 56.601562, 37.996163 ], [ 55.546875, 37.996163 ], [ 55.546875, 37.857507 ], [ 55.371094, 37.857507 ], [ 55.371094, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.579413 ], [ 55.019531, 37.579413 ], [ 55.019531, 37.439974 ], [ 54.667969, 37.439974 ], [ 54.667969, 37.300275 ], [ 54.316406, 37.300275 ], [ 54.316406, 37.160317 ], [ 53.964844, 37.160317 ], [ 53.964844, 37.439974 ], [ 53.789062, 37.439974 ], [ 53.789062, 38.410558 ], [ 53.964844, 38.410558 ], [ 53.964844, 38.959409 ], [ 53.613281, 38.959409 ], [ 53.613281, 39.095963 ], [ 53.261719, 39.095963 ], [ 53.261719, 39.232253 ], [ 53.085938, 39.232253 ], [ 53.085938, 39.368279 ], [ 53.261719, 39.368279 ], [ 53.261719, 39.639538 ], [ 53.437500, 39.639538 ], [ 53.437500, 39.909736 ], [ 52.910156, 39.909736 ], [ 52.910156, 40.044438 ], [ 52.734375, 40.044438 ], [ 52.734375, 40.446947 ], [ 52.910156, 40.446947 ], [ 52.910156, 40.847060 ], [ 53.085938, 40.847060 ], [ 53.085938, 40.713956 ], [ 53.437500, 40.713956 ], [ 53.437500, 40.580585 ], [ 53.964844, 40.580585 ], [ 53.964844, 40.713956 ], [ 54.316406, 40.713956 ], [ 54.316406, 40.847060 ], [ 54.667969, 40.847060 ], [ 54.667969, 40.979898 ], [ 54.492188, 40.979898 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.376809 ], [ 53.964844, 41.376809 ], [ 53.964844, 41.640078 ], [ 55.195312, 41.640078 ], [ 55.195312, 41.376809 ], [ 55.371094, 41.376809 ], [ 55.371094, 41.244772 ], [ 55.722656, 41.244772 ], [ 55.722656, 41.376809 ], [ 57.128906, 41.376809 ], [ 57.128906, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 41.640078 ], [ 60.117188, 41.640078 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.112469 ] ] ], [ [ [ 52.558594, 41.376809 ], [ 52.558594, 41.640078 ], [ 52.910156, 41.640078 ], [ 52.910156, 41.376809 ], [ 52.558594, 41.376809 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.117188, 41.640078 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.580585 ], [ 62.226562, 40.580585 ], [ 62.226562, 40.178873 ], [ 62.402344, 40.178873 ], [ 62.402344, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.774769 ], [ 62.753906, 39.774769 ], [ 62.753906, 39.639538 ], [ 63.105469, 39.639538 ], [ 63.105469, 39.504041 ], [ 63.281250, 39.504041 ], [ 63.281250, 39.368279 ], [ 63.457031, 39.368279 ], [ 63.457031, 39.232253 ], [ 63.632812, 39.232253 ], [ 63.632812, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.959409 ], [ 64.160156, 38.959409 ], [ 64.160156, 38.822591 ], [ 64.511719, 38.822591 ], [ 64.511719, 38.685510 ], [ 64.687500, 38.685510 ], [ 64.687500, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.410558 ], [ 65.390625, 38.410558 ], [ 65.390625, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 38.134557 ], [ 66.269531, 38.134557 ], [ 66.269531, 37.996163 ], [ 66.621094, 37.996163 ], [ 66.621094, 37.579413 ], [ 66.445312, 37.579413 ], [ 66.445312, 37.300275 ], [ 66.269531, 37.300275 ], [ 66.269531, 37.439974 ], [ 66.093750, 37.439974 ], [ 66.093750, 37.579413 ], [ 65.742188, 37.579413 ], [ 65.742188, 37.439974 ], [ 65.566406, 37.439974 ], [ 65.566406, 37.300275 ], [ 65.214844, 37.300275 ], [ 65.214844, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.738884 ], [ 64.511719, 36.738884 ], [ 64.511719, 36.173357 ], [ 64.160156, 36.173357 ], [ 64.160156, 36.031332 ], [ 63.808594, 36.031332 ], [ 63.808594, 35.889050 ], [ 63.281250, 35.889050 ], [ 63.281250, 35.746512 ], [ 63.105469, 35.746512 ], [ 63.105469, 35.460670 ], [ 62.753906, 35.460670 ], [ 62.753906, 35.317366 ], [ 61.875000, 35.317366 ], [ 61.875000, 35.460670 ], [ 61.347656, 35.460670 ], [ 61.347656, 35.603719 ], [ 61.171875, 35.603719 ], [ 61.171875, 36.456636 ], [ 60.644531, 36.456636 ], [ 60.644531, 36.597889 ], [ 60.117188, 36.597889 ], [ 60.117188, 36.738884 ], [ 59.941406, 36.738884 ], [ 59.941406, 36.879621 ], [ 59.765625, 36.879621 ], [ 59.765625, 37.020098 ], [ 59.589844, 37.020098 ], [ 59.589844, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 37.300275 ], [ 59.238281, 37.300275 ], [ 59.238281, 37.439974 ], [ 58.710938, 37.439974 ], [ 58.710938, 37.579413 ], [ 58.007812, 37.579413 ], [ 58.007812, 37.718590 ], [ 57.656250, 37.718590 ], [ 57.656250, 37.857507 ], [ 57.304688, 37.857507 ], [ 57.304688, 37.996163 ], [ 56.777344, 37.996163 ], [ 56.777344, 38.134557 ], [ 56.601562, 38.134557 ], [ 56.601562, 37.996163 ], [ 55.546875, 37.996163 ], [ 55.546875, 37.857507 ], [ 55.371094, 37.857507 ], [ 55.371094, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.579413 ], [ 55.019531, 37.579413 ], [ 55.019531, 37.439974 ], [ 54.667969, 37.439974 ], [ 54.667969, 37.300275 ], [ 54.316406, 37.300275 ], [ 54.316406, 37.160317 ], [ 53.964844, 37.160317 ], [ 53.964844, 37.439974 ], [ 53.789062, 37.439974 ], [ 53.789062, 38.410558 ], [ 53.964844, 38.410558 ], [ 53.964844, 38.959409 ], [ 53.613281, 38.959409 ], [ 53.613281, 39.095963 ], [ 53.261719, 39.095963 ], [ 53.261719, 39.232253 ], [ 53.085938, 39.232253 ], [ 53.085938, 39.368279 ], [ 53.261719, 39.368279 ], [ 53.261719, 39.639538 ], [ 53.437500, 39.639538 ], [ 53.437500, 39.909736 ], [ 52.910156, 39.909736 ], [ 52.910156, 40.044438 ], [ 52.734375, 40.044438 ], [ 52.734375, 40.446947 ], [ 52.910156, 40.446947 ], [ 52.910156, 40.847060 ], [ 53.085938, 40.847060 ], [ 53.085938, 40.713956 ], [ 53.437500, 40.713956 ], [ 53.437500, 40.580585 ], [ 53.964844, 40.580585 ], [ 53.964844, 40.713956 ], [ 54.316406, 40.713956 ], [ 54.316406, 40.847060 ], [ 54.667969, 40.847060 ], [ 54.667969, 40.979898 ], [ 54.492188, 40.979898 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.376809 ], [ 53.964844, 41.376809 ], [ 53.964844, 41.640078 ], [ 55.195312, 41.640078 ], [ 55.195312, 41.376809 ], [ 55.371094, 41.376809 ], [ 55.371094, 41.244772 ], [ 55.722656, 41.244772 ], [ 55.722656, 41.376809 ], [ 57.128906, 41.376809 ], [ 57.128906, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 41.640078 ], [ 60.117188, 41.640078 ] ] ], [ [ [ 52.910156, 41.640078 ], [ 52.910156, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.640078 ], [ 52.910156, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.207031, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.811456 ], [ 52.558594, 17.811456 ], [ 52.558594, 17.476432 ], [ 52.734375, 17.476432 ], [ 52.734375, 17.140790 ], [ 52.910156, 17.140790 ], [ 52.910156, 16.804541 ], [ 53.085938, 16.804541 ], [ 53.085938, 16.467695 ], [ 52.734375, 16.467695 ], [ 52.734375, 16.299051 ], [ 52.382812, 16.299051 ], [ 52.382812, 16.130262 ], [ 52.207031, 16.130262 ], [ 52.207031, 15.453680 ], [ 51.855469, 15.453680 ], [ 51.855469, 15.284185 ], [ 51.503906, 15.284185 ], [ 51.503906, 15.114553 ], [ 50.800781, 15.114553 ], [ 50.800781, 14.944785 ], [ 50.097656, 14.944785 ], [ 50.097656, 14.774883 ], [ 49.570312, 14.774883 ], [ 49.570312, 14.604847 ], [ 49.394531, 14.604847 ], [ 49.394531, 14.434680 ], [ 49.218750, 14.434680 ], [ 49.218750, 14.264383 ], [ 49.042969, 14.264383 ], [ 49.042969, 14.093957 ], [ 48.867188, 14.093957 ], [ 48.867188, 13.923404 ], [ 47.988281, 13.923404 ], [ 47.988281, 13.752725 ], [ 47.636719, 13.752725 ], [ 47.636719, 13.581921 ], [ 47.109375, 13.581921 ], [ 47.109375, 13.410994 ], [ 45.878906, 13.410994 ], [ 45.878906, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 13.068777 ], [ 45.351562, 13.068777 ], [ 45.351562, 12.897489 ], [ 45.175781, 12.897489 ], [ 45.175781, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.472656, 12.554564 ], [ 44.121094, 12.554564 ], [ 44.121094, 17.476432 ], [ 45.175781, 17.476432 ], [ 45.175781, 17.308688 ], [ 46.757812, 17.308688 ], [ 46.757812, 17.140790 ], [ 46.933594, 17.140790 ], [ 46.933594, 16.972741 ], [ 47.285156, 16.972741 ], [ 47.285156, 17.140790 ], [ 47.636719, 17.140790 ], [ 47.636719, 17.476432 ], [ 47.812500, 17.476432 ], [ 47.812500, 17.644022 ], [ 47.988281, 17.644022 ], [ 47.988281, 17.978733 ], [ 48.164062, 17.978733 ], [ 48.164062, 18.145852 ], [ 48.339844, 18.145852 ], [ 48.339844, 18.312811 ], [ 48.691406, 18.312811 ], [ 48.691406, 18.479609 ], [ 49.042969, 18.479609 ], [ 49.042969, 18.646245 ], [ 49.921875, 18.646245 ], [ 49.921875, 18.812718 ], [ 51.328125, 18.812718 ], [ 51.328125, 18.979026 ], [ 52.031250, 18.979026 ], [ 52.031250, 18.646245 ], [ 52.207031, 18.646245 ], [ 52.207031, 18.312811 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 18.979026 ], [ 52.031250, 18.646245 ], [ 52.207031, 18.646245 ], [ 52.207031, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.811456 ], [ 52.558594, 17.811456 ], [ 52.558594, 17.476432 ], [ 52.734375, 17.476432 ], [ 52.734375, 17.140790 ], [ 52.910156, 17.140790 ], [ 52.910156, 16.804541 ], [ 53.085938, 16.804541 ], [ 53.085938, 16.467695 ], [ 52.734375, 16.467695 ], [ 52.734375, 16.299051 ], [ 52.382812, 16.299051 ], [ 52.382812, 16.130262 ], [ 52.207031, 16.130262 ], [ 52.207031, 15.453680 ], [ 51.855469, 15.453680 ], [ 51.855469, 15.284185 ], [ 51.503906, 15.284185 ], [ 51.503906, 15.114553 ], [ 50.800781, 15.114553 ], [ 50.800781, 14.944785 ], [ 50.097656, 14.944785 ], [ 50.097656, 14.774883 ], [ 49.570312, 14.774883 ], [ 49.570312, 14.604847 ], [ 49.394531, 14.604847 ], [ 49.394531, 14.434680 ], [ 49.218750, 14.434680 ], [ 49.218750, 14.264383 ], [ 49.042969, 14.264383 ], [ 49.042969, 14.093957 ], [ 48.867188, 14.093957 ], [ 48.867188, 13.923404 ], [ 47.988281, 13.923404 ], [ 47.988281, 13.752725 ], [ 47.636719, 13.752725 ], [ 47.636719, 13.581921 ], [ 47.109375, 13.581921 ], [ 47.109375, 13.410994 ], [ 45.878906, 13.410994 ], [ 45.878906, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 13.068777 ], [ 45.351562, 13.068777 ], [ 45.351562, 12.897489 ], [ 45.175781, 12.897489 ], [ 45.175781, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.472656, 12.554564 ], [ 44.121094, 12.554564 ], [ 44.121094, 17.476432 ], [ 45.175781, 17.476432 ], [ 45.175781, 17.308688 ], [ 46.757812, 17.308688 ], [ 46.757812, 17.140790 ], [ 46.933594, 17.140790 ], [ 46.933594, 16.972741 ], [ 47.285156, 16.972741 ], [ 47.285156, 17.140790 ], [ 47.636719, 17.140790 ], [ 47.636719, 17.476432 ], [ 47.812500, 17.476432 ], [ 47.812500, 17.644022 ], [ 47.988281, 17.644022 ], [ 47.988281, 17.978733 ], [ 48.164062, 17.978733 ], [ 48.164062, 18.145852 ], [ 48.339844, 18.145852 ], [ 48.339844, 18.312811 ], [ 48.691406, 18.312811 ], [ 48.691406, 18.479609 ], [ 49.042969, 18.479609 ], [ 49.042969, 18.646245 ], [ 49.921875, 18.646245 ], [ 49.921875, 18.812718 ], [ 51.328125, 18.812718 ], [ 51.328125, 18.979026 ], [ 52.031250, 18.979026 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 57.128906, 23.885838 ], [ 57.656250, 23.885838 ], [ 57.656250, 23.725012 ], [ 58.359375, 23.725012 ], [ 58.359375, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.402765 ], [ 58.886719, 23.402765 ], [ 58.886719, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.917923 ], [ 59.238281, 22.917923 ], [ 59.238281, 22.755921 ], [ 59.414062, 22.755921 ], [ 59.414062, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.105999 ], [ 59.589844, 22.105999 ], [ 59.589844, 21.779905 ], [ 59.414062, 21.779905 ], [ 59.414062, 21.616579 ], [ 59.238281, 21.616579 ], [ 59.238281, 21.289374 ], [ 59.062500, 21.289374 ], [ 59.062500, 21.125498 ], [ 58.886719, 21.125498 ], [ 58.886719, 20.961440 ], [ 58.710938, 20.961440 ], [ 58.710938, 20.632784 ], [ 58.535156, 20.632784 ], [ 58.535156, 20.468189 ], [ 58.007812, 20.468189 ], [ 58.007812, 20.303418 ], [ 57.832031, 20.303418 ], [ 57.832031, 19.973349 ], [ 57.656250, 19.973349 ], [ 57.656250, 19.476950 ], [ 57.832031, 19.476950 ], [ 57.832031, 18.979026 ], [ 57.304688, 18.979026 ], [ 57.304688, 18.812718 ], [ 56.953125, 18.812718 ], [ 56.953125, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 18.312811 ], [ 56.425781, 18.312811 ], [ 56.425781, 17.978733 ], [ 56.250000, 17.978733 ], [ 56.250000, 17.811456 ], [ 55.546875, 17.811456 ], [ 55.546875, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.140790 ], [ 55.019531, 17.140790 ], [ 55.019531, 16.972741 ], [ 54.316406, 16.972741 ], [ 54.316406, 16.804541 ], [ 53.964844, 16.804541 ], [ 53.964844, 16.636192 ], [ 53.085938, 16.636192 ], [ 53.085938, 16.804541 ], [ 52.910156, 16.804541 ], [ 52.910156, 17.140790 ], [ 52.734375, 17.140790 ], [ 52.734375, 17.476432 ], [ 52.558594, 17.476432 ], [ 52.558594, 17.811456 ], [ 52.382812, 17.811456 ], [ 52.382812, 18.312811 ], [ 52.207031, 18.312811 ], [ 52.207031, 18.646245 ], [ 52.031250, 18.646245 ], [ 52.031250, 18.979026 ], [ 52.382812, 18.979026 ], [ 52.382812, 19.145168 ], [ 52.910156, 19.145168 ], [ 52.910156, 19.311143 ], [ 53.437500, 19.311143 ], [ 53.437500, 19.476950 ], [ 53.789062, 19.476950 ], [ 53.789062, 19.642588 ], [ 54.316406, 19.642588 ], [ 54.316406, 19.808054 ], [ 54.843750, 19.808054 ], [ 54.843750, 19.973349 ], [ 55.019531, 19.973349 ], [ 55.019531, 20.138470 ], [ 55.195312, 20.138470 ], [ 55.195312, 20.632784 ], [ 55.371094, 20.632784 ], [ 55.371094, 21.125498 ], [ 55.546875, 21.125498 ], [ 55.546875, 21.616579 ], [ 55.722656, 21.616579 ], [ 55.722656, 21.943046 ], [ 55.546875, 21.943046 ], [ 55.546875, 22.268764 ], [ 55.371094, 22.268764 ], [ 55.371094, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 23.079732 ], [ 55.371094, 23.079732 ], [ 55.371094, 23.402765 ], [ 55.546875, 23.402765 ], [ 55.546875, 23.885838 ], [ 55.722656, 23.885838 ], [ 55.722656, 24.046464 ], [ 55.898438, 24.046464 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.206890 ], [ 55.722656, 24.527135 ], [ 55.898438, 24.527135 ], [ 55.898438, 24.846565 ], [ 56.425781, 24.846565 ], [ 56.425781, 24.686952 ], [ 56.601562, 24.686952 ], [ 56.601562, 24.367114 ], [ 56.777344, 24.367114 ], [ 56.777344, 24.046464 ], [ 57.128906, 24.046464 ], [ 57.128906, 23.885838 ] ] ], [ [ [ 56.425781, 25.799891 ], [ 56.074219, 25.799891 ], [ 56.074219, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 26.273714 ], [ 56.425781, 26.273714 ], [ 56.425781, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.425781, 24.846565 ], [ 56.425781, 24.686952 ], [ 56.601562, 24.686952 ], [ 56.601562, 24.367114 ], [ 56.777344, 24.367114 ], [ 56.777344, 24.046464 ], [ 57.128906, 24.046464 ], [ 57.128906, 23.885838 ], [ 57.656250, 23.885838 ], [ 57.656250, 23.725012 ], [ 58.359375, 23.725012 ], [ 58.359375, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.402765 ], [ 58.886719, 23.402765 ], [ 58.886719, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.917923 ], [ 59.238281, 22.917923 ], [ 59.238281, 22.755921 ], [ 59.414062, 22.755921 ], [ 59.414062, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.105999 ], [ 59.589844, 22.105999 ], [ 59.589844, 21.779905 ], [ 59.414062, 21.779905 ], [ 59.414062, 21.616579 ], [ 59.238281, 21.616579 ], [ 59.238281, 21.289374 ], [ 59.062500, 21.289374 ], [ 59.062500, 21.125498 ], [ 58.886719, 21.125498 ], [ 58.886719, 20.961440 ], [ 58.710938, 20.961440 ], [ 58.710938, 20.632784 ], [ 58.535156, 20.632784 ], [ 58.535156, 20.468189 ], [ 58.007812, 20.468189 ], [ 58.007812, 20.303418 ], [ 57.832031, 20.303418 ], [ 57.832031, 19.973349 ], [ 57.656250, 19.973349 ], [ 57.656250, 19.476950 ], [ 57.832031, 19.476950 ], [ 57.832031, 18.979026 ], [ 57.304688, 18.979026 ], [ 57.304688, 18.812718 ], [ 56.953125, 18.812718 ], [ 56.953125, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 18.312811 ], [ 56.425781, 18.312811 ], [ 56.425781, 17.978733 ], [ 56.250000, 17.978733 ], [ 56.250000, 17.811456 ], [ 55.546875, 17.811456 ], [ 55.546875, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.140790 ], [ 55.019531, 17.140790 ], [ 55.019531, 16.972741 ], [ 54.316406, 16.972741 ], [ 54.316406, 16.804541 ], [ 53.964844, 16.804541 ], [ 53.964844, 16.636192 ], [ 53.085938, 16.636192 ], [ 53.085938, 16.804541 ], [ 52.910156, 16.804541 ], [ 52.910156, 17.140790 ], [ 52.734375, 17.140790 ], [ 52.734375, 17.476432 ], [ 52.558594, 17.476432 ], [ 52.558594, 17.811456 ], [ 52.382812, 17.811456 ], [ 52.382812, 18.312811 ], [ 52.207031, 18.312811 ], [ 52.207031, 18.646245 ], [ 52.031250, 18.646245 ], [ 52.031250, 18.979026 ], [ 52.382812, 18.979026 ], [ 52.382812, 19.145168 ], [ 52.910156, 19.145168 ], [ 52.910156, 19.311143 ], [ 53.437500, 19.311143 ], [ 53.437500, 19.476950 ], [ 53.789062, 19.476950 ], [ 53.789062, 19.642588 ], [ 54.316406, 19.642588 ], [ 54.316406, 19.808054 ], [ 54.843750, 19.808054 ], [ 54.843750, 19.973349 ], [ 55.019531, 19.973349 ], [ 55.019531, 20.138470 ], [ 55.195312, 20.138470 ], [ 55.195312, 20.632784 ], [ 55.371094, 20.632784 ], [ 55.371094, 21.125498 ], [ 55.546875, 21.125498 ], [ 55.546875, 21.616579 ], [ 55.722656, 21.616579 ], [ 55.722656, 21.943046 ], [ 55.546875, 21.943046 ], [ 55.546875, 22.268764 ], [ 55.371094, 22.268764 ], [ 55.371094, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 23.079732 ], [ 55.371094, 23.079732 ], [ 55.371094, 23.402765 ], [ 55.546875, 23.402765 ], [ 55.546875, 23.885838 ], [ 55.722656, 23.885838 ], [ 55.722656, 24.046464 ], [ 55.898438, 24.046464 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.206890 ], [ 55.722656, 24.527135 ], [ 55.898438, 24.527135 ], [ 55.898438, 24.846565 ], [ 56.425781, 24.846565 ] ] ], [ [ [ 56.425781, 26.273714 ], [ 56.425781, 25.799891 ], [ 56.074219, 25.799891 ], [ 56.074219, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 26.273714 ], [ 56.425781, 26.273714 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 9.275622 ], [ 48.691406, 9.275622 ], [ 48.691406, 8.928487 ], [ 48.515625, 8.928487 ], [ 48.515625, 8.581021 ], [ 48.339844, 8.581021 ], [ 48.339844, 8.407168 ], [ 48.164062, 8.407168 ], [ 48.164062, 8.233237 ], [ 47.988281, 8.233237 ], [ 47.988281, 8.059230 ], [ 46.582031, 8.059230 ], [ 46.582031, 8.233237 ], [ 46.054688, 8.233237 ], [ 46.054688, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 8.581021 ], [ 45.175781, 8.581021 ], [ 45.175781, 8.754795 ], [ 44.648438, 8.754795 ], [ 44.648438, 8.928487 ], [ 44.296875, 8.928487 ], [ 44.296875, 9.102097 ], [ 44.121094, 9.102097 ], [ 44.121094, 10.487812 ], [ 45.175781, 10.487812 ], [ 45.175781, 10.660608 ], [ 46.230469, 10.660608 ], [ 46.230469, 10.833306 ], [ 46.933594, 10.833306 ], [ 46.933594, 11.005904 ], [ 47.285156, 11.005904 ], [ 47.285156, 11.178402 ], [ 48.339844, 11.178402 ], [ 48.339844, 11.350797 ], [ 48.867188, 11.350797 ], [ 48.867188, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 11.350797 ], [ 48.867188, 9.275622 ], [ 48.691406, 9.275622 ], [ 48.691406, 8.928487 ], [ 48.515625, 8.928487 ], [ 48.515625, 8.581021 ], [ 48.339844, 8.581021 ], [ 48.339844, 8.407168 ], [ 48.164062, 8.407168 ], [ 48.164062, 8.233237 ], [ 47.988281, 8.233237 ], [ 47.988281, 8.059230 ], [ 46.582031, 8.059230 ], [ 46.582031, 8.233237 ], [ 46.054688, 8.233237 ], [ 46.054688, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 8.581021 ], [ 45.175781, 8.581021 ], [ 45.175781, 8.754795 ], [ 44.648438, 8.754795 ], [ 44.648438, 8.928487 ], [ 44.296875, 8.928487 ], [ 44.296875, 9.102097 ], [ 44.121094, 9.102097 ], [ 44.121094, 10.487812 ], [ 45.175781, 10.487812 ], [ 45.175781, 10.660608 ], [ 46.230469, 10.660608 ], [ 46.230469, 10.833306 ], [ 46.933594, 10.833306 ], [ 46.933594, 11.005904 ], [ 47.285156, 11.005904 ], [ 47.285156, 11.178402 ], [ 48.339844, 11.178402 ], [ 48.339844, 11.350797 ], [ 48.867188, 11.350797 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 11.350797 ], [ 50.976562, 11.350797 ], [ 50.976562, 10.487812 ], [ 50.800781, 10.487812 ], [ 50.800781, 9.795678 ], [ 50.625000, 9.795678 ], [ 50.625000, 8.928487 ], [ 50.449219, 8.928487 ], [ 50.449219, 8.581021 ], [ 50.273438, 8.581021 ], [ 50.273438, 8.233237 ], [ 50.097656, 8.233237 ], [ 50.097656, 7.885147 ], [ 49.921875, 7.885147 ], [ 49.921875, 7.536764 ], [ 49.746094, 7.536764 ], [ 49.746094, 7.188101 ], [ 49.570312, 7.188101 ], [ 49.570312, 6.839170 ], [ 49.394531, 6.839170 ], [ 49.394531, 6.664608 ], [ 49.218750, 6.664608 ], [ 49.218750, 6.315299 ], [ 49.042969, 6.315299 ], [ 49.042969, 5.965754 ], [ 48.867188, 5.965754 ], [ 48.867188, 5.615986 ], [ 48.691406, 5.615986 ], [ 48.691406, 5.266008 ], [ 48.515625, 5.266008 ], [ 48.515625, 5.090944 ], [ 48.339844, 5.090944 ], [ 48.339844, 4.740675 ], [ 48.164062, 4.740675 ], [ 48.164062, 4.565474 ], [ 47.988281, 4.565474 ], [ 47.988281, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 4.039618 ], [ 47.636719, 4.039618 ], [ 47.636719, 3.864255 ], [ 47.460938, 3.864255 ], [ 47.460938, 3.688855 ], [ 47.285156, 3.688855 ], [ 47.285156, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 3.162456 ], [ 46.933594, 3.162456 ], [ 46.933594, 2.986927 ], [ 46.757812, 2.986927 ], [ 46.757812, 2.811371 ], [ 46.582031, 2.811371 ], [ 46.582031, 2.635789 ], [ 46.230469, 2.635789 ], [ 46.230469, 2.460181 ], [ 46.054688, 2.460181 ], [ 46.054688, 2.284551 ], [ 45.703125, 2.284551 ], [ 45.703125, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.351562, 1.933227 ], [ 45.351562, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.824219, 1.581830 ], [ 44.824219, 1.406109 ], [ 44.648438, 1.406109 ], [ 44.648438, 1.230374 ], [ 44.296875, 1.230374 ], [ 44.296875, 1.054628 ], [ 44.121094, 1.054628 ], [ 44.121094, 4.915833 ], [ 45.175781, 4.915833 ], [ 45.175781, 5.090944 ], [ 45.351562, 5.090944 ], [ 45.351562, 5.266008 ], [ 45.527344, 5.266008 ], [ 45.527344, 5.441022 ], [ 45.703125, 5.441022 ], [ 45.703125, 5.790897 ], [ 45.878906, 5.790897 ], [ 45.878906, 5.965754 ], [ 46.054688, 5.965754 ], [ 46.054688, 6.140555 ], [ 46.230469, 6.140555 ], [ 46.230469, 6.315299 ], [ 46.406250, 6.315299 ], [ 46.406250, 6.489983 ], [ 46.582031, 6.489983 ], [ 46.582031, 6.664608 ], [ 46.757812, 6.664608 ], [ 46.757812, 6.839170 ], [ 46.933594, 6.839170 ], [ 46.933594, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 7.362467 ], [ 47.285156, 7.362467 ], [ 47.285156, 7.536764 ], [ 47.460938, 7.536764 ], [ 47.460938, 7.710992 ], [ 47.636719, 7.710992 ], [ 47.636719, 7.885147 ], [ 47.812500, 7.885147 ], [ 47.812500, 8.059230 ], [ 47.988281, 8.059230 ], [ 47.988281, 8.233237 ], [ 48.164062, 8.233237 ], [ 48.164062, 8.407168 ], [ 48.339844, 8.407168 ], [ 48.339844, 8.581021 ], [ 48.515625, 8.581021 ], [ 48.515625, 8.928487 ], [ 48.691406, 8.928487 ], [ 48.691406, 9.275622 ], [ 48.867188, 9.275622 ], [ 48.867188, 11.350797 ], [ 49.570312, 11.350797 ], [ 49.570312, 11.523088 ], [ 50.097656, 11.523088 ], [ 50.097656, 11.695273 ], [ 50.449219, 11.695273 ], [ 50.449219, 11.867351 ], [ 50.800781, 11.867351 ], [ 50.800781, 12.039321 ], [ 51.152344, 12.039321 ], [ 51.152344, 11.350797 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 12.039321 ], [ 51.152344, 11.350797 ], [ 50.976562, 11.350797 ], [ 50.976562, 10.487812 ], [ 50.800781, 10.487812 ], [ 50.800781, 9.795678 ], [ 50.625000, 9.795678 ], [ 50.625000, 8.928487 ], [ 50.449219, 8.928487 ], [ 50.449219, 8.581021 ], [ 50.273438, 8.581021 ], [ 50.273438, 8.233237 ], [ 50.097656, 8.233237 ], [ 50.097656, 7.885147 ], [ 49.921875, 7.885147 ], [ 49.921875, 7.536764 ], [ 49.746094, 7.536764 ], [ 49.746094, 7.188101 ], [ 49.570312, 7.188101 ], [ 49.570312, 6.839170 ], [ 49.394531, 6.839170 ], [ 49.394531, 6.664608 ], [ 49.218750, 6.664608 ], [ 49.218750, 6.315299 ], [ 49.042969, 6.315299 ], [ 49.042969, 5.965754 ], [ 48.867188, 5.965754 ], [ 48.867188, 5.615986 ], [ 48.691406, 5.615986 ], [ 48.691406, 5.266008 ], [ 48.515625, 5.266008 ], [ 48.515625, 5.090944 ], [ 48.339844, 5.090944 ], [ 48.339844, 4.740675 ], [ 48.164062, 4.740675 ], [ 48.164062, 4.565474 ], [ 47.988281, 4.565474 ], [ 47.988281, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 4.039618 ], [ 47.636719, 4.039618 ], [ 47.636719, 3.864255 ], [ 47.460938, 3.864255 ], [ 47.460938, 3.688855 ], [ 47.285156, 3.688855 ], [ 47.285156, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 3.162456 ], [ 46.933594, 3.162456 ], [ 46.933594, 2.986927 ], [ 46.757812, 2.986927 ], [ 46.757812, 2.811371 ], [ 46.582031, 2.811371 ], [ 46.582031, 2.635789 ], [ 46.230469, 2.635789 ], [ 46.230469, 2.460181 ], [ 46.054688, 2.460181 ], [ 46.054688, 2.284551 ], [ 45.703125, 2.284551 ], [ 45.703125, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.351562, 1.933227 ], [ 45.351562, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.824219, 1.581830 ], [ 44.824219, 1.406109 ], [ 44.648438, 1.406109 ], [ 44.648438, 1.230374 ], [ 44.296875, 1.230374 ], [ 44.296875, 1.054628 ], [ 44.121094, 1.054628 ], [ 44.121094, 4.915833 ], [ 45.175781, 4.915833 ], [ 45.175781, 5.090944 ], [ 45.351562, 5.090944 ], [ 45.351562, 5.266008 ], [ 45.527344, 5.266008 ], [ 45.527344, 5.441022 ], [ 45.703125, 5.441022 ], [ 45.703125, 5.790897 ], [ 45.878906, 5.790897 ], [ 45.878906, 5.965754 ], [ 46.054688, 5.965754 ], [ 46.054688, 6.140555 ], [ 46.230469, 6.140555 ], [ 46.230469, 6.315299 ], [ 46.406250, 6.315299 ], [ 46.406250, 6.489983 ], [ 46.582031, 6.489983 ], [ 46.582031, 6.664608 ], [ 46.757812, 6.664608 ], [ 46.757812, 6.839170 ], [ 46.933594, 6.839170 ], [ 46.933594, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 7.362467 ], [ 47.285156, 7.362467 ], [ 47.285156, 7.536764 ], [ 47.460938, 7.536764 ], [ 47.460938, 7.710992 ], [ 47.636719, 7.710992 ], [ 47.636719, 7.885147 ], [ 47.812500, 7.885147 ], [ 47.812500, 8.059230 ], [ 47.988281, 8.059230 ], [ 47.988281, 8.233237 ], [ 48.164062, 8.233237 ], [ 48.164062, 8.407168 ], [ 48.339844, 8.407168 ], [ 48.339844, 8.581021 ], [ 48.515625, 8.581021 ], [ 48.515625, 8.928487 ], [ 48.691406, 8.928487 ], [ 48.691406, 9.275622 ], [ 48.867188, 9.275622 ], [ 48.867188, 11.350797 ], [ 49.570312, 11.350797 ], [ 49.570312, 11.523088 ], [ 50.097656, 11.523088 ], [ 50.097656, 11.695273 ], [ 50.449219, 11.695273 ], [ 50.449219, 11.867351 ], [ 50.800781, 11.867351 ], [ 50.800781, 12.039321 ], [ 51.152344, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 40.044438 ], [ 70.839844, 40.044438 ], [ 70.839844, 39.909736 ], [ 69.960938, 39.909736 ], [ 69.960938, 40.044438 ], [ 69.609375, 40.044438 ], [ 69.609375, 39.774769 ], [ 69.433594, 39.774769 ], [ 69.433594, 39.504041 ], [ 70.136719, 39.504041 ], [ 70.136719, 39.639538 ], [ 70.664062, 39.639538 ], [ 70.664062, 39.504041 ], [ 71.015625, 39.504041 ], [ 71.015625, 39.368279 ], [ 71.367188, 39.368279 ], [ 71.367188, 39.232253 ], [ 72.773438, 39.232253 ], [ 72.773438, 39.368279 ], [ 73.652344, 39.368279 ], [ 73.652344, 39.095963 ], [ 73.828125, 39.095963 ], [ 73.828125, 38.685510 ], [ 74.003906, 38.685510 ], [ 74.003906, 38.548165 ], [ 74.355469, 38.548165 ], [ 74.355469, 38.410558 ], [ 74.882812, 38.410558 ], [ 74.882812, 37.718590 ], [ 75.058594, 37.718590 ], [ 75.058594, 37.439974 ], [ 73.300781, 37.439974 ], [ 73.300781, 37.300275 ], [ 73.125000, 37.300275 ], [ 73.125000, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 37.020098 ], [ 72.597656, 37.020098 ], [ 72.597656, 36.879621 ], [ 72.246094, 36.879621 ], [ 72.246094, 36.738884 ], [ 71.718750, 36.738884 ], [ 71.718750, 36.879621 ], [ 71.367188, 36.879621 ], [ 71.367188, 37.439974 ], [ 71.542969, 37.439974 ], [ 71.542969, 37.857507 ], [ 71.191406, 37.857507 ], [ 71.191406, 38.134557 ], [ 71.367188, 38.134557 ], [ 71.367188, 38.272689 ], [ 71.191406, 38.272689 ], [ 71.191406, 38.410558 ], [ 70.664062, 38.410558 ], [ 70.664062, 38.272689 ], [ 70.488281, 38.272689 ], [ 70.488281, 38.134557 ], [ 70.312500, 38.134557 ], [ 70.312500, 37.579413 ], [ 69.433594, 37.579413 ], [ 69.433594, 37.300275 ], [ 69.257812, 37.300275 ], [ 69.257812, 37.160317 ], [ 68.554688, 37.160317 ], [ 68.554688, 37.020098 ], [ 67.851562, 37.020098 ], [ 67.851562, 37.300275 ], [ 68.027344, 37.300275 ], [ 68.027344, 37.579413 ], [ 68.203125, 37.579413 ], [ 68.203125, 37.857507 ], [ 68.378906, 37.857507 ], [ 68.378906, 38.548165 ], [ 68.203125, 38.548165 ], [ 68.203125, 38.959409 ], [ 67.675781, 38.959409 ], [ 67.675781, 39.095963 ], [ 67.500000, 39.095963 ], [ 67.500000, 39.368279 ], [ 67.675781, 39.368279 ], [ 67.675781, 39.639538 ], [ 68.027344, 39.639538 ], [ 68.027344, 39.504041 ], [ 68.730469, 39.504041 ], [ 68.730469, 39.774769 ], [ 68.906250, 39.774769 ], [ 68.906250, 39.909736 ], [ 69.082031, 39.909736 ], [ 69.082031, 40.313043 ], [ 69.257812, 40.313043 ], [ 69.257812, 40.713956 ], [ 69.785156, 40.713956 ], [ 69.785156, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.979898 ], [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ], [ 70.488281, 40.713956 ], [ 70.488281, 40.313043 ], [ 70.664062, 40.313043 ], [ 70.664062, 40.178873 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ], [ 70.488281, 40.713956 ], [ 70.488281, 40.313043 ], [ 70.664062, 40.313043 ], [ 70.664062, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 40.044438 ], [ 70.839844, 40.044438 ], [ 70.839844, 39.909736 ], [ 69.960938, 39.909736 ], [ 69.960938, 40.044438 ], [ 69.609375, 40.044438 ], [ 69.609375, 39.774769 ], [ 69.433594, 39.774769 ], [ 69.433594, 39.504041 ], [ 70.136719, 39.504041 ], [ 70.136719, 39.639538 ], [ 70.664062, 39.639538 ], [ 70.664062, 39.504041 ], [ 71.015625, 39.504041 ], [ 71.015625, 39.368279 ], [ 71.367188, 39.368279 ], [ 71.367188, 39.232253 ], [ 72.773438, 39.232253 ], [ 72.773438, 39.368279 ], [ 73.652344, 39.368279 ], [ 73.652344, 39.095963 ], [ 73.828125, 39.095963 ], [ 73.828125, 38.685510 ], [ 74.003906, 38.685510 ], [ 74.003906, 38.548165 ], [ 74.355469, 38.548165 ], [ 74.355469, 38.410558 ], [ 74.882812, 38.410558 ], [ 74.882812, 37.718590 ], [ 75.058594, 37.718590 ], [ 75.058594, 37.439974 ], [ 73.300781, 37.439974 ], [ 73.300781, 37.300275 ], [ 73.125000, 37.300275 ], [ 73.125000, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 37.020098 ], [ 72.597656, 37.020098 ], [ 72.597656, 36.879621 ], [ 72.246094, 36.879621 ], [ 72.246094, 36.738884 ], [ 71.718750, 36.738884 ], [ 71.718750, 36.879621 ], [ 71.367188, 36.879621 ], [ 71.367188, 37.439974 ], [ 71.542969, 37.439974 ], [ 71.542969, 37.857507 ], [ 71.191406, 37.857507 ], [ 71.191406, 38.134557 ], [ 71.367188, 38.134557 ], [ 71.367188, 38.272689 ], [ 71.191406, 38.272689 ], [ 71.191406, 38.410558 ], [ 70.664062, 38.410558 ], [ 70.664062, 38.272689 ], [ 70.488281, 38.272689 ], [ 70.488281, 38.134557 ], [ 70.312500, 38.134557 ], [ 70.312500, 37.579413 ], [ 69.433594, 37.579413 ], [ 69.433594, 37.300275 ], [ 69.257812, 37.300275 ], [ 69.257812, 37.160317 ], [ 68.554688, 37.160317 ], [ 68.554688, 37.020098 ], [ 67.851562, 37.020098 ], [ 67.851562, 37.300275 ], [ 68.027344, 37.300275 ], [ 68.027344, 37.579413 ], [ 68.203125, 37.579413 ], [ 68.203125, 37.857507 ], [ 68.378906, 37.857507 ], [ 68.378906, 38.548165 ], [ 68.203125, 38.548165 ], [ 68.203125, 38.959409 ], [ 67.675781, 38.959409 ], [ 67.675781, 39.095963 ], [ 67.500000, 39.095963 ], [ 67.500000, 39.368279 ], [ 67.675781, 39.368279 ], [ 67.675781, 39.639538 ], [ 68.027344, 39.639538 ], [ 68.027344, 39.504041 ], [ 68.730469, 39.504041 ], [ 68.730469, 39.774769 ], [ 68.906250, 39.774769 ], [ 68.906250, 39.909736 ], [ 69.082031, 39.909736 ], [ 69.082031, 40.313043 ], [ 69.257812, 40.313043 ], [ 69.257812, 40.713956 ], [ 69.785156, 40.713956 ], [ 69.785156, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.367188, 38.134557 ], [ 71.191406, 38.134557 ], [ 71.191406, 37.857507 ], [ 71.542969, 37.857507 ], [ 71.542969, 37.439974 ], [ 71.367188, 37.439974 ], [ 71.367188, 36.879621 ], [ 71.718750, 36.879621 ], [ 71.718750, 36.738884 ], [ 72.246094, 36.738884 ], [ 72.246094, 36.879621 ], [ 72.597656, 36.879621 ], [ 72.597656, 37.020098 ], [ 72.773438, 37.020098 ], [ 72.773438, 37.160317 ], [ 73.125000, 37.160317 ], [ 73.125000, 37.300275 ], [ 73.300781, 37.300275 ], [ 73.300781, 37.439974 ], [ 75.058594, 37.439974 ], [ 75.058594, 37.300275 ], [ 75.234375, 37.300275 ], [ 75.234375, 37.160317 ], [ 75.058594, 37.160317 ], [ 75.058594, 37.020098 ], [ 74.355469, 37.020098 ], [ 74.355469, 36.879621 ], [ 73.652344, 36.879621 ], [ 73.652344, 36.738884 ], [ 72.773438, 36.738884 ], [ 72.773438, 36.597889 ], [ 72.246094, 36.597889 ], [ 72.246094, 36.456636 ], [ 71.894531, 36.456636 ], [ 71.894531, 36.315125 ], [ 71.718750, 36.315125 ], [ 71.718750, 36.173357 ], [ 71.367188, 36.173357 ], [ 71.367188, 36.031332 ], [ 71.191406, 36.031332 ], [ 71.191406, 35.889050 ], [ 71.367188, 35.889050 ], [ 71.367188, 35.603719 ], [ 71.542969, 35.603719 ], [ 71.542969, 35.029996 ], [ 71.367188, 35.029996 ], [ 71.367188, 34.741612 ], [ 71.191406, 34.741612 ], [ 71.191406, 34.161818 ], [ 71.015625, 34.161818 ], [ 71.015625, 34.016242 ], [ 69.960938, 34.016242 ], [ 69.960938, 33.870416 ], [ 70.136719, 33.870416 ], [ 70.136719, 33.578015 ], [ 70.312500, 33.578015 ], [ 70.312500, 33.284620 ], [ 69.960938, 33.284620 ], [ 69.960938, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.990236 ], [ 69.433594, 32.990236 ], [ 69.433594, 32.694866 ], [ 69.257812, 32.694866 ], [ 69.257812, 31.802893 ], [ 69.082031, 31.802893 ], [ 69.082031, 31.653381 ], [ 67.851562, 31.653381 ], [ 67.851562, 31.503629 ], [ 67.675781, 31.503629 ], [ 67.675781, 31.353637 ], [ 66.972656, 31.353637 ], [ 66.972656, 31.203405 ], [ 66.796875, 31.203405 ], [ 66.796875, 31.052934 ], [ 66.621094, 31.052934 ], [ 66.621094, 30.751278 ], [ 66.445312, 30.751278 ], [ 66.445312, 30.297018 ], [ 66.269531, 30.297018 ], [ 66.269531, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 29.688053 ], [ 65.390625, 29.688053 ], [ 65.390625, 29.535230 ], [ 64.335938, 29.535230 ], [ 64.335938, 29.382175 ], [ 63.808594, 29.382175 ], [ 63.808594, 29.535230 ], [ 63.281250, 29.535230 ], [ 63.281250, 29.382175 ], [ 62.226562, 29.382175 ], [ 62.226562, 29.535230 ], [ 61.523438, 29.535230 ], [ 61.523438, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.993002 ], [ 61.171875, 29.993002 ], [ 61.171875, 30.297018 ], [ 61.347656, 30.297018 ], [ 61.347656, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 30.600094 ], [ 61.699219, 30.600094 ], [ 61.699219, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 31.503629 ], [ 60.996094, 31.503629 ], [ 60.996094, 31.802893 ], [ 60.820312, 31.802893 ], [ 60.820312, 32.398516 ], [ 60.644531, 32.398516 ], [ 60.644531, 32.694866 ], [ 60.468750, 32.694866 ], [ 60.468750, 32.990236 ], [ 60.644531, 32.990236 ], [ 60.644531, 33.284620 ], [ 60.820312, 33.284620 ], [ 60.820312, 33.431441 ], [ 60.996094, 33.431441 ], [ 60.996094, 33.578015 ], [ 60.644531, 33.578015 ], [ 60.644531, 33.724340 ], [ 60.468750, 33.724340 ], [ 60.468750, 33.870416 ], [ 60.644531, 33.870416 ], [ 60.644531, 34.161818 ], [ 60.820312, 34.161818 ], [ 60.820312, 34.741612 ], [ 60.996094, 34.741612 ], [ 60.996094, 35.317366 ], [ 61.171875, 35.317366 ], [ 61.171875, 35.603719 ], [ 61.347656, 35.603719 ], [ 61.347656, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 35.317366 ], [ 62.753906, 35.317366 ], [ 62.753906, 35.460670 ], [ 63.105469, 35.460670 ], [ 63.105469, 35.746512 ], [ 63.281250, 35.746512 ], [ 63.281250, 35.889050 ], [ 63.808594, 35.889050 ], [ 63.808594, 36.031332 ], [ 64.160156, 36.031332 ], [ 64.160156, 36.173357 ], [ 64.511719, 36.173357 ], [ 64.511719, 36.738884 ], [ 64.687500, 36.738884 ], [ 64.687500, 37.160317 ], [ 65.214844, 37.160317 ], [ 65.214844, 37.300275 ], [ 65.566406, 37.300275 ], [ 65.566406, 37.439974 ], [ 65.742188, 37.439974 ], [ 65.742188, 37.579413 ], [ 66.093750, 37.579413 ], [ 66.093750, 37.439974 ], [ 66.269531, 37.439974 ], [ 66.269531, 37.300275 ], [ 67.324219, 37.300275 ], [ 67.324219, 37.160317 ], [ 67.851562, 37.160317 ], [ 67.851562, 37.020098 ], [ 68.554688, 37.020098 ], [ 68.554688, 37.160317 ], [ 69.257812, 37.160317 ], [ 69.257812, 37.300275 ], [ 69.433594, 37.300275 ], [ 69.433594, 37.579413 ], [ 70.312500, 37.579413 ], [ 70.312500, 38.134557 ], [ 70.488281, 38.134557 ], [ 70.488281, 38.272689 ], [ 70.664062, 38.272689 ], [ 70.664062, 38.410558 ], [ 71.191406, 38.410558 ], [ 71.191406, 38.272689 ], [ 71.367188, 38.272689 ], [ 71.367188, 38.134557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.191406, 38.410558 ], [ 71.191406, 38.272689 ], [ 71.367188, 38.272689 ], [ 71.367188, 38.134557 ], [ 71.191406, 38.134557 ], [ 71.191406, 37.857507 ], [ 71.542969, 37.857507 ], [ 71.542969, 37.439974 ], [ 71.367188, 37.439974 ], [ 71.367188, 36.879621 ], [ 71.718750, 36.879621 ], [ 71.718750, 36.738884 ], [ 72.246094, 36.738884 ], [ 72.246094, 36.879621 ], [ 72.597656, 36.879621 ], [ 72.597656, 37.020098 ], [ 72.773438, 37.020098 ], [ 72.773438, 37.160317 ], [ 73.125000, 37.160317 ], [ 73.125000, 37.300275 ], [ 73.300781, 37.300275 ], [ 73.300781, 37.439974 ], [ 75.058594, 37.439974 ], [ 75.058594, 37.300275 ], [ 75.234375, 37.300275 ], [ 75.234375, 37.160317 ], [ 75.058594, 37.160317 ], [ 75.058594, 37.020098 ], [ 74.355469, 37.020098 ], [ 74.355469, 36.879621 ], [ 73.652344, 36.879621 ], [ 73.652344, 36.738884 ], [ 72.773438, 36.738884 ], [ 72.773438, 36.597889 ], [ 72.246094, 36.597889 ], [ 72.246094, 36.456636 ], [ 71.894531, 36.456636 ], [ 71.894531, 36.315125 ], [ 71.718750, 36.315125 ], [ 71.718750, 36.173357 ], [ 71.367188, 36.173357 ], [ 71.367188, 36.031332 ], [ 71.191406, 36.031332 ], [ 71.191406, 35.889050 ], [ 71.367188, 35.889050 ], [ 71.367188, 35.603719 ], [ 71.542969, 35.603719 ], [ 71.542969, 35.029996 ], [ 71.367188, 35.029996 ], [ 71.367188, 34.741612 ], [ 71.191406, 34.741612 ], [ 71.191406, 34.161818 ], [ 71.015625, 34.161818 ], [ 71.015625, 34.016242 ], [ 69.960938, 34.016242 ], [ 69.960938, 33.870416 ], [ 70.136719, 33.870416 ], [ 70.136719, 33.578015 ], [ 70.312500, 33.578015 ], [ 70.312500, 33.284620 ], [ 69.960938, 33.284620 ], [ 69.960938, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.990236 ], [ 69.433594, 32.990236 ], [ 69.433594, 32.694866 ], [ 69.257812, 32.694866 ], [ 69.257812, 31.802893 ], [ 69.082031, 31.802893 ], [ 69.082031, 31.653381 ], [ 67.851562, 31.653381 ], [ 67.851562, 31.503629 ], [ 67.675781, 31.503629 ], [ 67.675781, 31.353637 ], [ 66.972656, 31.353637 ], [ 66.972656, 31.203405 ], [ 66.796875, 31.203405 ], [ 66.796875, 31.052934 ], [ 66.621094, 31.052934 ], [ 66.621094, 30.751278 ], [ 66.445312, 30.751278 ], [ 66.445312, 30.297018 ], [ 66.269531, 30.297018 ], [ 66.269531, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 29.688053 ], [ 65.390625, 29.688053 ], [ 65.390625, 29.535230 ], [ 64.335938, 29.535230 ], [ 64.335938, 29.382175 ], [ 63.808594, 29.382175 ], [ 63.808594, 29.535230 ], [ 63.281250, 29.535230 ], [ 63.281250, 29.382175 ], [ 62.226562, 29.382175 ], [ 62.226562, 29.535230 ], [ 61.523438, 29.535230 ], [ 61.523438, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.993002 ], [ 61.171875, 29.993002 ], [ 61.171875, 30.297018 ], [ 61.347656, 30.297018 ], [ 61.347656, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 30.600094 ], [ 61.699219, 30.600094 ], [ 61.699219, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 31.503629 ], [ 60.996094, 31.503629 ], [ 60.996094, 31.802893 ], [ 60.820312, 31.802893 ], [ 60.820312, 32.398516 ], [ 60.644531, 32.398516 ], [ 60.644531, 32.694866 ], [ 60.468750, 32.694866 ], [ 60.468750, 32.990236 ], [ 60.644531, 32.990236 ], [ 60.644531, 33.284620 ], [ 60.820312, 33.284620 ], [ 60.820312, 33.431441 ], [ 60.996094, 33.431441 ], [ 60.996094, 33.578015 ], [ 60.644531, 33.578015 ], [ 60.644531, 33.724340 ], [ 60.468750, 33.724340 ], [ 60.468750, 33.870416 ], [ 60.644531, 33.870416 ], [ 60.644531, 34.161818 ], [ 60.820312, 34.161818 ], [ 60.820312, 34.741612 ], [ 60.996094, 34.741612 ], [ 60.996094, 35.317366 ], [ 61.171875, 35.317366 ], [ 61.171875, 35.603719 ], [ 61.347656, 35.603719 ], [ 61.347656, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 35.317366 ], [ 62.753906, 35.317366 ], [ 62.753906, 35.460670 ], [ 63.105469, 35.460670 ], [ 63.105469, 35.746512 ], [ 63.281250, 35.746512 ], [ 63.281250, 35.889050 ], [ 63.808594, 35.889050 ], [ 63.808594, 36.031332 ], [ 64.160156, 36.031332 ], [ 64.160156, 36.173357 ], [ 64.511719, 36.173357 ], [ 64.511719, 36.738884 ], [ 64.687500, 36.738884 ], [ 64.687500, 37.160317 ], [ 65.214844, 37.160317 ], [ 65.214844, 37.300275 ], [ 65.566406, 37.300275 ], [ 65.566406, 37.439974 ], [ 65.742188, 37.439974 ], [ 65.742188, 37.579413 ], [ 66.093750, 37.579413 ], [ 66.093750, 37.439974 ], [ 66.269531, 37.439974 ], [ 66.269531, 37.300275 ], [ 67.324219, 37.300275 ], [ 67.324219, 37.160317 ], [ 67.851562, 37.160317 ], [ 67.851562, 37.020098 ], [ 68.554688, 37.020098 ], [ 68.554688, 37.160317 ], [ 69.257812, 37.160317 ], [ 69.257812, 37.300275 ], [ 69.433594, 37.300275 ], [ 69.433594, 37.579413 ], [ 70.312500, 37.579413 ], [ 70.312500, 38.134557 ], [ 70.488281, 38.134557 ], [ 70.488281, 38.272689 ], [ 70.664062, 38.272689 ], [ 70.664062, 38.410558 ], [ 71.191406, 38.410558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 61.523438, 29.688053 ], [ 61.523438, 29.535230 ], [ 62.226562, 29.535230 ], [ 62.226562, 29.382175 ], [ 63.281250, 29.382175 ], [ 63.281250, 29.535230 ], [ 63.808594, 29.535230 ], [ 63.808594, 29.382175 ], [ 64.335938, 29.382175 ], [ 64.335938, 29.535230 ], [ 65.390625, 29.535230 ], [ 65.390625, 29.688053 ], [ 66.093750, 29.688053 ], [ 66.093750, 29.840644 ], [ 66.269531, 29.840644 ], [ 66.269531, 30.297018 ], [ 66.445312, 30.297018 ], [ 66.445312, 30.751278 ], [ 66.621094, 30.751278 ], [ 66.621094, 31.052934 ], [ 66.796875, 31.052934 ], [ 66.796875, 31.203405 ], [ 66.972656, 31.203405 ], [ 66.972656, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.675781, 31.503629 ], [ 67.851562, 31.503629 ], [ 67.851562, 31.653381 ], [ 69.082031, 31.653381 ], [ 69.082031, 31.802893 ], [ 69.257812, 31.802893 ], [ 69.257812, 32.694866 ], [ 69.433594, 32.694866 ], [ 69.433594, 32.990236 ], [ 69.609375, 32.990236 ], [ 69.609375, 33.137551 ], [ 69.960938, 33.137551 ], [ 69.960938, 33.284620 ], [ 70.312500, 33.284620 ], [ 70.312500, 33.578015 ], [ 70.136719, 33.578015 ], [ 70.136719, 33.870416 ], [ 69.960938, 33.870416 ], [ 69.960938, 34.016242 ], [ 71.015625, 34.016242 ], [ 71.015625, 34.161818 ], [ 71.191406, 34.161818 ], [ 71.191406, 34.741612 ], [ 71.367188, 34.741612 ], [ 71.367188, 35.029996 ], [ 71.542969, 35.029996 ], [ 71.542969, 35.603719 ], [ 71.367188, 35.603719 ], [ 71.367188, 35.889050 ], [ 71.191406, 35.889050 ], [ 71.191406, 36.031332 ], [ 71.367188, 36.031332 ], [ 71.367188, 36.173357 ], [ 71.718750, 36.173357 ], [ 71.718750, 36.315125 ], [ 71.894531, 36.315125 ], [ 71.894531, 36.456636 ], [ 72.246094, 36.456636 ], [ 72.246094, 36.597889 ], [ 72.773438, 36.597889 ], [ 72.773438, 36.738884 ], [ 73.652344, 36.738884 ], [ 73.652344, 36.879621 ], [ 74.355469, 36.879621 ], [ 74.355469, 37.020098 ], [ 75.058594, 37.020098 ], [ 75.058594, 37.160317 ], [ 75.234375, 37.160317 ], [ 75.234375, 37.020098 ], [ 75.410156, 37.020098 ], [ 75.410156, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.738884 ], [ 75.761719, 36.738884 ], [ 75.761719, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.173357 ], [ 76.113281, 36.173357 ], [ 76.113281, 35.889050 ], [ 76.289062, 35.889050 ], [ 76.289062, 35.746512 ], [ 76.816406, 35.746512 ], [ 76.816406, 35.603719 ], [ 77.519531, 35.603719 ], [ 77.519531, 35.460670 ], [ 77.871094, 35.460670 ], [ 77.871094, 35.317366 ], [ 77.695312, 35.317366 ], [ 77.695312, 35.173808 ], [ 77.519531, 35.173808 ], [ 77.519531, 35.029996 ], [ 77.343750, 35.029996 ], [ 77.343750, 34.885931 ], [ 77.167969, 34.885931 ], [ 77.167969, 34.741612 ], [ 76.992188, 34.741612 ], [ 76.992188, 34.597042 ], [ 76.464844, 34.597042 ], [ 76.464844, 34.452218 ], [ 75.234375, 34.452218 ], [ 75.234375, 34.597042 ], [ 74.531250, 34.597042 ], [ 74.531250, 34.741612 ], [ 74.179688, 34.741612 ], [ 74.179688, 34.597042 ], [ 74.003906, 34.597042 ], [ 74.003906, 34.307144 ], [ 73.828125, 34.307144 ], [ 73.828125, 34.016242 ], [ 74.003906, 34.016242 ], [ 74.003906, 33.578015 ], [ 74.179688, 33.578015 ], [ 74.179688, 33.137551 ], [ 74.355469, 33.137551 ], [ 74.355469, 32.842674 ], [ 74.531250, 32.842674 ], [ 74.531250, 32.546813 ], [ 74.707031, 32.546813 ], [ 74.707031, 32.398516 ], [ 75.058594, 32.398516 ], [ 75.058594, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 32.101190 ], [ 75.058594, 32.101190 ], [ 75.058594, 31.952162 ], [ 74.707031, 31.952162 ], [ 74.707031, 31.802893 ], [ 74.531250, 31.802893 ], [ 74.531250, 31.653381 ], [ 74.355469, 31.653381 ], [ 74.355469, 30.902225 ], [ 74.179688, 30.902225 ], [ 74.179688, 30.600094 ], [ 74.003906, 30.600094 ], [ 74.003906, 30.448674 ], [ 73.828125, 30.448674 ], [ 73.828125, 30.297018 ], [ 73.652344, 30.297018 ], [ 73.652344, 29.993002 ], [ 73.476562, 29.993002 ], [ 73.476562, 29.840644 ], [ 73.300781, 29.840644 ], [ 73.300781, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 29.228890 ], [ 72.949219, 29.228890 ], [ 72.949219, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 28.767659 ], [ 72.597656, 28.767659 ], [ 72.597656, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.459033 ], [ 72.246094, 28.459033 ], [ 72.246094, 28.149503 ], [ 72.070312, 28.149503 ], [ 72.070312, 27.994401 ], [ 71.894531, 27.994401 ], [ 71.894531, 27.839076 ], [ 71.015625, 27.839076 ], [ 71.015625, 27.994401 ], [ 70.664062, 27.994401 ], [ 70.664062, 27.839076 ], [ 70.488281, 27.839076 ], [ 70.488281, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.527758 ], [ 70.136719, 27.527758 ], [ 70.136719, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.215556 ], [ 69.785156, 27.215556 ], [ 69.785156, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.902477 ], [ 69.433594, 26.902477 ], [ 69.433594, 26.745610 ], [ 69.609375, 26.745610 ], [ 69.609375, 26.588527 ], [ 69.960938, 26.588527 ], [ 69.960938, 26.431228 ], [ 70.136719, 26.431228 ], [ 70.136719, 26.115986 ], [ 70.312500, 26.115986 ], [ 70.312500, 25.641526 ], [ 70.488281, 25.641526 ], [ 70.488281, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 25.165173 ], [ 70.839844, 25.165173 ], [ 70.839844, 24.686952 ], [ 71.015625, 24.686952 ], [ 71.015625, 24.367114 ], [ 68.906250, 24.367114 ], [ 68.906250, 24.206890 ], [ 68.730469, 24.206890 ], [ 68.730469, 24.046464 ], [ 68.554688, 24.046464 ], [ 68.554688, 23.885838 ], [ 68.378906, 23.885838 ], [ 68.378906, 23.725012 ], [ 67.675781, 23.725012 ], [ 67.675781, 23.885838 ], [ 67.500000, 23.885838 ], [ 67.500000, 24.046464 ], [ 67.324219, 24.046464 ], [ 67.324219, 24.367114 ], [ 67.148438, 24.367114 ], [ 67.148438, 24.686952 ], [ 66.972656, 24.686952 ], [ 66.972656, 24.846565 ], [ 66.796875, 24.846565 ], [ 66.796875, 25.165173 ], [ 66.621094, 25.165173 ], [ 66.621094, 25.324167 ], [ 66.445312, 25.324167 ], [ 66.445312, 25.482951 ], [ 66.093750, 25.482951 ], [ 66.093750, 25.324167 ], [ 65.039062, 25.324167 ], [ 65.039062, 25.165173 ], [ 62.402344, 25.165173 ], [ 62.402344, 25.005973 ], [ 61.523438, 25.005973 ], [ 61.523438, 25.324167 ], [ 61.699219, 25.324167 ], [ 61.699219, 25.958045 ], [ 61.875000, 25.958045 ], [ 61.875000, 26.273714 ], [ 62.226562, 26.273714 ], [ 62.226562, 26.431228 ], [ 62.753906, 26.431228 ], [ 62.753906, 26.588527 ], [ 63.105469, 26.588527 ], [ 63.105469, 26.745610 ], [ 63.281250, 26.745610 ], [ 63.281250, 27.215556 ], [ 62.929688, 27.215556 ], [ 62.929688, 27.371767 ], [ 62.753906, 27.371767 ], [ 62.753906, 28.304381 ], [ 62.402344, 28.304381 ], [ 62.402344, 28.459033 ], [ 62.050781, 28.459033 ], [ 62.050781, 28.613459 ], [ 61.699219, 28.613459 ], [ 61.699219, 28.767659 ], [ 61.523438, 28.767659 ], [ 61.523438, 29.075375 ], [ 61.347656, 29.075375 ], [ 61.347656, 29.228890 ], [ 61.171875, 29.228890 ], [ 61.171875, 29.535230 ], [ 60.996094, 29.535230 ], [ 60.996094, 29.688053 ], [ 61.523438, 29.688053 ] ] ], [ [ [ 60.820312, 29.688053 ], [ 60.820312, 29.840644 ], [ 60.996094, 29.840644 ], [ 60.996094, 29.688053 ], [ 60.820312, 29.688053 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.996094, 29.688053 ], [ 61.523438, 29.688053 ], [ 61.523438, 29.535230 ], [ 62.226562, 29.535230 ], [ 62.226562, 29.382175 ], [ 63.281250, 29.382175 ], [ 63.281250, 29.535230 ], [ 63.808594, 29.535230 ], [ 63.808594, 29.382175 ], [ 64.335938, 29.382175 ], [ 64.335938, 29.535230 ], [ 65.390625, 29.535230 ], [ 65.390625, 29.688053 ], [ 66.093750, 29.688053 ], [ 66.093750, 29.840644 ], [ 66.269531, 29.840644 ], [ 66.269531, 30.297018 ], [ 66.445312, 30.297018 ], [ 66.445312, 30.751278 ], [ 66.621094, 30.751278 ], [ 66.621094, 31.052934 ], [ 66.796875, 31.052934 ], [ 66.796875, 31.203405 ], [ 66.972656, 31.203405 ], [ 66.972656, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.675781, 31.503629 ], [ 67.851562, 31.503629 ], [ 67.851562, 31.653381 ], [ 69.082031, 31.653381 ], [ 69.082031, 31.802893 ], [ 69.257812, 31.802893 ], [ 69.257812, 32.694866 ], [ 69.433594, 32.694866 ], [ 69.433594, 32.990236 ], [ 69.609375, 32.990236 ], [ 69.609375, 33.137551 ], [ 69.960938, 33.137551 ], [ 69.960938, 33.284620 ], [ 70.312500, 33.284620 ], [ 70.312500, 33.578015 ], [ 70.136719, 33.578015 ], [ 70.136719, 33.870416 ], [ 69.960938, 33.870416 ], [ 69.960938, 34.016242 ], [ 71.015625, 34.016242 ], [ 71.015625, 34.161818 ], [ 71.191406, 34.161818 ], [ 71.191406, 34.741612 ], [ 71.367188, 34.741612 ], [ 71.367188, 35.029996 ], [ 71.542969, 35.029996 ], [ 71.542969, 35.603719 ], [ 71.367188, 35.603719 ], [ 71.367188, 35.889050 ], [ 71.191406, 35.889050 ], [ 71.191406, 36.031332 ], [ 71.367188, 36.031332 ], [ 71.367188, 36.173357 ], [ 71.718750, 36.173357 ], [ 71.718750, 36.315125 ], [ 71.894531, 36.315125 ], [ 71.894531, 36.456636 ], [ 72.246094, 36.456636 ], [ 72.246094, 36.597889 ], [ 72.773438, 36.597889 ], [ 72.773438, 36.738884 ], [ 73.652344, 36.738884 ], [ 73.652344, 36.879621 ], [ 74.355469, 36.879621 ], [ 74.355469, 37.020098 ], [ 75.058594, 37.020098 ], [ 75.058594, 37.160317 ], [ 75.234375, 37.160317 ], [ 75.234375, 37.020098 ], [ 75.410156, 37.020098 ], [ 75.410156, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.738884 ], [ 75.761719, 36.738884 ], [ 75.761719, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.173357 ], [ 76.113281, 36.173357 ], [ 76.113281, 35.889050 ], [ 76.289062, 35.889050 ], [ 76.289062, 35.746512 ], [ 76.816406, 35.746512 ], [ 76.816406, 35.603719 ], [ 77.519531, 35.603719 ], [ 77.519531, 35.460670 ], [ 77.871094, 35.460670 ], [ 77.871094, 35.317366 ], [ 77.695312, 35.317366 ], [ 77.695312, 35.173808 ], [ 77.519531, 35.173808 ], [ 77.519531, 35.029996 ], [ 77.343750, 35.029996 ], [ 77.343750, 34.885931 ], [ 77.167969, 34.885931 ], [ 77.167969, 34.741612 ], [ 76.992188, 34.741612 ], [ 76.992188, 34.597042 ], [ 76.464844, 34.597042 ], [ 76.464844, 34.452218 ], [ 75.234375, 34.452218 ], [ 75.234375, 34.597042 ], [ 74.531250, 34.597042 ], [ 74.531250, 34.741612 ], [ 74.179688, 34.741612 ], [ 74.179688, 34.597042 ], [ 74.003906, 34.597042 ], [ 74.003906, 34.307144 ], [ 73.828125, 34.307144 ], [ 73.828125, 34.016242 ], [ 74.003906, 34.016242 ], [ 74.003906, 33.578015 ], [ 74.179688, 33.578015 ], [ 74.179688, 33.137551 ], [ 74.355469, 33.137551 ], [ 74.355469, 32.842674 ], [ 74.531250, 32.842674 ], [ 74.531250, 32.546813 ], [ 74.707031, 32.546813 ], [ 74.707031, 32.398516 ], [ 75.058594, 32.398516 ], [ 75.058594, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 32.101190 ], [ 75.058594, 32.101190 ], [ 75.058594, 31.952162 ], [ 74.707031, 31.952162 ], [ 74.707031, 31.802893 ], [ 74.531250, 31.802893 ], [ 74.531250, 31.653381 ], [ 74.355469, 31.653381 ], [ 74.355469, 30.902225 ], [ 74.179688, 30.902225 ], [ 74.179688, 30.600094 ], [ 74.003906, 30.600094 ], [ 74.003906, 30.448674 ], [ 73.828125, 30.448674 ], [ 73.828125, 30.297018 ], [ 73.652344, 30.297018 ], [ 73.652344, 29.993002 ], [ 73.476562, 29.993002 ], [ 73.476562, 29.840644 ], [ 73.300781, 29.840644 ], [ 73.300781, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 29.228890 ], [ 72.949219, 29.228890 ], [ 72.949219, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 28.767659 ], [ 72.597656, 28.767659 ], [ 72.597656, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.459033 ], [ 72.246094, 28.459033 ], [ 72.246094, 28.149503 ], [ 72.070312, 28.149503 ], [ 72.070312, 27.994401 ], [ 71.894531, 27.994401 ], [ 71.894531, 27.839076 ], [ 71.015625, 27.839076 ], [ 71.015625, 27.994401 ], [ 70.664062, 27.994401 ], [ 70.664062, 27.839076 ], [ 70.488281, 27.839076 ], [ 70.488281, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.527758 ], [ 70.136719, 27.527758 ], [ 70.136719, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.215556 ], [ 69.785156, 27.215556 ], [ 69.785156, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.902477 ], [ 69.433594, 26.902477 ], [ 69.433594, 26.745610 ], [ 69.609375, 26.745610 ], [ 69.609375, 26.588527 ], [ 69.960938, 26.588527 ], [ 69.960938, 26.431228 ], [ 70.136719, 26.431228 ], [ 70.136719, 26.115986 ], [ 70.312500, 26.115986 ], [ 70.312500, 25.641526 ], [ 70.488281, 25.641526 ], [ 70.488281, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 25.165173 ], [ 70.839844, 25.165173 ], [ 70.839844, 24.686952 ], [ 71.015625, 24.686952 ], [ 71.015625, 24.367114 ], [ 68.906250, 24.367114 ], [ 68.906250, 24.206890 ], [ 68.730469, 24.206890 ], [ 68.730469, 24.046464 ], [ 68.554688, 24.046464 ], [ 68.554688, 23.885838 ], [ 68.378906, 23.885838 ], [ 68.378906, 23.725012 ], [ 67.675781, 23.725012 ], [ 67.675781, 23.885838 ], [ 67.500000, 23.885838 ], [ 67.500000, 24.046464 ], [ 67.324219, 24.046464 ], [ 67.324219, 24.367114 ], [ 67.148438, 24.367114 ], [ 67.148438, 24.686952 ], [ 66.972656, 24.686952 ], [ 66.972656, 24.846565 ], [ 66.796875, 24.846565 ], [ 66.796875, 25.165173 ], [ 66.621094, 25.165173 ], [ 66.621094, 25.324167 ], [ 66.445312, 25.324167 ], [ 66.445312, 25.482951 ], [ 66.093750, 25.482951 ], [ 66.093750, 25.324167 ], [ 65.039062, 25.324167 ], [ 65.039062, 25.165173 ], [ 62.402344, 25.165173 ], [ 62.402344, 25.005973 ], [ 61.523438, 25.005973 ], [ 61.523438, 25.324167 ], [ 61.699219, 25.324167 ], [ 61.699219, 25.958045 ], [ 61.875000, 25.958045 ], [ 61.875000, 26.273714 ], [ 62.226562, 26.273714 ], [ 62.226562, 26.431228 ], [ 62.753906, 26.431228 ], [ 62.753906, 26.588527 ], [ 63.105469, 26.588527 ], [ 63.105469, 26.745610 ], [ 63.281250, 26.745610 ], [ 63.281250, 27.215556 ], [ 62.929688, 27.215556 ], [ 62.929688, 27.371767 ], [ 62.753906, 27.371767 ], [ 62.753906, 28.304381 ], [ 62.402344, 28.304381 ], [ 62.402344, 28.459033 ], [ 62.050781, 28.459033 ], [ 62.050781, 28.613459 ], [ 61.699219, 28.613459 ], [ 61.699219, 28.767659 ], [ 61.523438, 28.767659 ], [ 61.523438, 29.075375 ], [ 61.347656, 29.075375 ], [ 61.347656, 29.228890 ], [ 61.171875, 29.228890 ], [ 61.171875, 29.535230 ], [ 60.996094, 29.535230 ], [ 60.996094, 29.688053 ] ] ], [ [ [ 60.996094, 29.688053 ], [ 60.820312, 29.688053 ], [ 60.820312, 29.840644 ], [ 60.996094, 29.840644 ], [ 60.996094, 29.688053 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 29.993002 ], [ 82.617188, 29.993002 ], [ 82.617188, 29.840644 ], [ 82.792969, 29.840644 ], [ 82.792969, 29.688053 ], [ 83.144531, 29.688053 ], [ 83.144531, 29.535230 ], [ 83.496094, 29.535230 ], [ 83.496094, 29.382175 ], [ 83.847656, 29.382175 ], [ 83.847656, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.199219, 28.921631 ], [ 84.199219, 28.767659 ], [ 84.550781, 28.767659 ], [ 84.550781, 28.613459 ], [ 85.078125, 28.613459 ], [ 85.078125, 28.459033 ], [ 85.253906, 28.459033 ], [ 85.253906, 28.304381 ], [ 85.605469, 28.304381 ], [ 85.605469, 28.149503 ], [ 86.308594, 28.149503 ], [ 86.308594, 27.994401 ], [ 87.363281, 27.994401 ], [ 87.363281, 27.839076 ], [ 88.066406, 27.839076 ], [ 88.066406, 27.059126 ], [ 88.242188, 27.059126 ], [ 88.242188, 26.588527 ], [ 88.066406, 26.588527 ], [ 88.066406, 26.431228 ], [ 86.484375, 26.431228 ], [ 86.484375, 26.588527 ], [ 85.429688, 26.588527 ], [ 85.429688, 26.745610 ], [ 85.078125, 26.745610 ], [ 85.078125, 26.902477 ], [ 84.902344, 26.902477 ], [ 84.902344, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 27.215556 ], [ 83.847656, 27.215556 ], [ 83.847656, 27.371767 ], [ 82.968750, 27.371767 ], [ 82.968750, 27.527758 ], [ 82.617188, 27.527758 ], [ 82.617188, 27.683528 ], [ 82.265625, 27.683528 ], [ 82.265625, 27.839076 ], [ 81.914062, 27.839076 ], [ 81.914062, 27.994401 ], [ 81.738281, 27.994401 ], [ 81.738281, 28.149503 ], [ 81.386719, 28.149503 ], [ 81.386719, 28.304381 ], [ 81.035156, 28.304381 ], [ 81.035156, 28.459033 ], [ 80.683594, 28.459033 ], [ 80.683594, 28.613459 ], [ 80.332031, 28.613459 ], [ 80.332031, 28.767659 ], [ 80.156250, 28.767659 ], [ 80.156250, 28.921631 ], [ 80.332031, 28.921631 ], [ 80.332031, 29.382175 ], [ 80.507812, 29.382175 ], [ 80.507812, 29.688053 ], [ 80.683594, 29.688053 ], [ 80.683594, 29.840644 ], [ 80.859375, 29.840644 ], [ 80.859375, 29.993002 ], [ 81.035156, 29.993002 ], [ 81.035156, 30.145127 ], [ 81.210938, 30.145127 ], [ 81.210938, 30.297018 ], [ 81.914062, 30.297018 ], [ 81.914062, 30.145127 ], [ 82.265625, 30.145127 ], [ 82.265625, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.914062, 30.297018 ], [ 81.914062, 30.145127 ], [ 82.265625, 30.145127 ], [ 82.265625, 29.993002 ], [ 82.617188, 29.993002 ], [ 82.617188, 29.840644 ], [ 82.792969, 29.840644 ], [ 82.792969, 29.688053 ], [ 83.144531, 29.688053 ], [ 83.144531, 29.535230 ], [ 83.496094, 29.535230 ], [ 83.496094, 29.382175 ], [ 83.847656, 29.382175 ], [ 83.847656, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.199219, 28.921631 ], [ 84.199219, 28.767659 ], [ 84.550781, 28.767659 ], [ 84.550781, 28.613459 ], [ 85.078125, 28.613459 ], [ 85.078125, 28.459033 ], [ 85.253906, 28.459033 ], [ 85.253906, 28.304381 ], [ 85.605469, 28.304381 ], [ 85.605469, 28.149503 ], [ 86.308594, 28.149503 ], [ 86.308594, 27.994401 ], [ 87.363281, 27.994401 ], [ 88.066406, 27.839076 ], [ 88.066406, 27.059126 ], [ 88.242188, 27.059126 ], [ 88.242188, 26.588527 ], [ 88.066406, 26.588527 ], [ 88.066406, 26.431228 ], [ 86.484375, 26.431228 ], [ 86.484375, 26.588527 ], [ 85.429688, 26.588527 ], [ 85.429688, 26.745610 ], [ 85.078125, 26.745610 ], [ 85.078125, 26.902477 ], [ 84.902344, 26.902477 ], [ 84.902344, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 27.215556 ], [ 83.847656, 27.215556 ], [ 83.847656, 27.371767 ], [ 82.968750, 27.371767 ], [ 82.968750, 27.527758 ], [ 82.617188, 27.527758 ], [ 82.617188, 27.683528 ], [ 82.265625, 27.683528 ], [ 82.265625, 27.839076 ], [ 81.914062, 27.839076 ], [ 81.914062, 27.994401 ], [ 81.738281, 27.994401 ], [ 81.738281, 28.149503 ], [ 81.386719, 28.149503 ], [ 81.386719, 28.304381 ], [ 81.035156, 28.304381 ], [ 81.035156, 28.459033 ], [ 80.683594, 28.459033 ], [ 80.683594, 28.613459 ], [ 80.332031, 28.613459 ], [ 80.332031, 28.767659 ], [ 80.156250, 28.767659 ], [ 80.156250, 28.921631 ], [ 80.332031, 28.921631 ], [ 80.332031, 29.382175 ], [ 80.507812, 29.382175 ], [ 80.507812, 29.688053 ], [ 80.683594, 29.688053 ], [ 80.683594, 29.840644 ], [ 80.859375, 29.840644 ], [ 80.859375, 29.993002 ], [ 81.035156, 29.993002 ], [ 81.035156, 30.145127 ], [ 81.210938, 30.145127 ], [ 81.210938, 30.297018 ], [ 81.914062, 30.297018 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.222656, 34.885931 ], [ 78.398438, 34.885931 ], [ 78.398438, 34.741612 ], [ 78.574219, 34.741612 ], [ 78.574219, 34.597042 ], [ 78.750000, 34.597042 ], [ 78.750000, 34.307144 ], [ 78.925781, 34.307144 ], [ 78.925781, 33.870416 ], [ 78.750000, 33.870416 ], [ 78.750000, 33.431441 ], [ 78.925781, 33.431441 ], [ 78.925781, 33.284620 ], [ 79.101562, 33.284620 ], [ 79.101562, 32.990236 ], [ 79.277344, 32.990236 ], [ 79.277344, 32.694866 ], [ 79.101562, 32.694866 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.546813 ], [ 78.398438, 32.249974 ], [ 78.574219, 32.249974 ], [ 78.574219, 31.653381 ], [ 78.750000, 31.653381 ], [ 78.750000, 31.353637 ], [ 79.101562, 31.353637 ], [ 79.101562, 31.203405 ], [ 79.277344, 31.203405 ], [ 79.277344, 31.052934 ], [ 79.628906, 31.052934 ], [ 79.628906, 30.902225 ], [ 79.804688, 30.902225 ], [ 79.804688, 30.751278 ], [ 80.156250, 30.751278 ], [ 80.156250, 30.600094 ], [ 80.332031, 30.600094 ], [ 80.332031, 30.448674 ], [ 80.507812, 30.448674 ], [ 80.507812, 30.297018 ], [ 80.859375, 30.297018 ], [ 80.859375, 30.145127 ], [ 81.035156, 30.145127 ], [ 81.035156, 29.993002 ], [ 80.859375, 29.993002 ], [ 80.859375, 29.840644 ], [ 80.683594, 29.840644 ], [ 80.683594, 29.688053 ], [ 80.507812, 29.688053 ], [ 80.507812, 29.382175 ], [ 80.332031, 29.382175 ], [ 80.332031, 28.921631 ], [ 80.156250, 28.921631 ], [ 80.156250, 28.767659 ], [ 80.332031, 28.767659 ], [ 80.332031, 28.613459 ], [ 80.683594, 28.613459 ], [ 80.683594, 28.459033 ], [ 81.035156, 28.459033 ], [ 81.035156, 28.304381 ], [ 81.386719, 28.304381 ], [ 81.386719, 28.149503 ], [ 81.738281, 28.149503 ], [ 81.738281, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.839076 ], [ 82.265625, 27.839076 ], [ 82.265625, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.527758 ], [ 82.968750, 27.527758 ], [ 82.968750, 27.371767 ], [ 83.847656, 27.371767 ], [ 83.847656, 27.215556 ], [ 84.726562, 27.215556 ], [ 84.726562, 27.059126 ], [ 84.902344, 27.059126 ], [ 84.902344, 26.902477 ], [ 85.078125, 26.902477 ], [ 85.078125, 26.745610 ], [ 85.429688, 26.745610 ], [ 85.429688, 26.588527 ], [ 86.484375, 26.588527 ], [ 86.484375, 26.431228 ], [ 88.066406, 26.431228 ], [ 88.066406, 26.588527 ], [ 88.242188, 26.588527 ], [ 88.242188, 27.059126 ], [ 88.066406, 27.059126 ], [ 88.066406, 27.839076 ], [ 88.417969, 27.839076 ], [ 88.417969, 27.994401 ], [ 88.769531, 27.994401 ], [ 88.769531, 27.059126 ], [ 88.945312, 27.059126 ], [ 88.945312, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 90.878906, 26.902477 ], [ 90.878906, 25.165173 ], [ 90.351562, 25.165173 ], [ 90.351562, 25.324167 ], [ 90.000000, 25.324167 ], [ 90.000000, 25.641526 ], [ 89.824219, 25.641526 ], [ 89.824219, 25.958045 ], [ 89.121094, 25.958045 ], [ 89.121094, 26.115986 ], [ 88.769531, 26.115986 ], [ 88.769531, 26.273714 ], [ 88.417969, 26.273714 ], [ 88.417969, 25.958045 ], [ 88.242188, 25.958045 ], [ 88.242188, 25.641526 ], [ 88.417969, 25.641526 ], [ 88.417969, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.324167 ], [ 88.769531, 25.324167 ], [ 88.769531, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 25.005973 ], [ 88.593750, 25.005973 ], [ 88.593750, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 24.686952 ], [ 88.066406, 24.686952 ], [ 88.066406, 24.367114 ], [ 88.417969, 24.367114 ], [ 88.417969, 24.206890 ], [ 88.769531, 24.206890 ], [ 88.769531, 23.885838 ], [ 88.593750, 23.885838 ], [ 88.593750, 23.402765 ], [ 88.769531, 23.402765 ], [ 88.769531, 23.079732 ], [ 88.945312, 23.079732 ], [ 88.945312, 21.616579 ], [ 88.417969, 21.616579 ], [ 88.417969, 21.779905 ], [ 88.066406, 21.779905 ], [ 88.066406, 21.616579 ], [ 87.363281, 21.616579 ], [ 87.363281, 21.453069 ], [ 87.011719, 21.453069 ], [ 87.011719, 20.632784 ], [ 86.835938, 20.632784 ], [ 86.835938, 20.468189 ], [ 86.660156, 20.468189 ], [ 86.660156, 20.138470 ], [ 86.484375, 20.138470 ], [ 86.484375, 19.973349 ], [ 86.132812, 19.973349 ], [ 86.132812, 19.808054 ], [ 85.781250, 19.808054 ], [ 85.781250, 19.642588 ], [ 85.429688, 19.642588 ], [ 85.429688, 19.476950 ], [ 85.078125, 19.476950 ], [ 85.078125, 19.311143 ], [ 84.902344, 19.311143 ], [ 84.902344, 19.145168 ], [ 84.726562, 19.145168 ], [ 84.726562, 18.979026 ], [ 84.550781, 18.979026 ], [ 84.550781, 18.646245 ], [ 84.375000, 18.646245 ], [ 84.375000, 18.479609 ], [ 84.199219, 18.479609 ], [ 84.199219, 18.312811 ], [ 84.023438, 18.312811 ], [ 84.023438, 18.145852 ], [ 83.847656, 18.145852 ], [ 83.847656, 17.978733 ], [ 83.496094, 17.978733 ], [ 83.496094, 17.811456 ], [ 83.320312, 17.811456 ], [ 83.320312, 17.644022 ], [ 83.144531, 17.644022 ], [ 83.144531, 17.476432 ], [ 82.968750, 17.476432 ], [ 82.968750, 17.308688 ], [ 82.617188, 17.308688 ], [ 82.617188, 17.140790 ], [ 82.441406, 17.140790 ], [ 82.441406, 16.972741 ], [ 82.265625, 16.972741 ], [ 82.265625, 16.467695 ], [ 81.914062, 16.467695 ], [ 81.914062, 16.299051 ], [ 81.562500, 16.299051 ], [ 81.562500, 16.130262 ], [ 81.210938, 16.130262 ], [ 81.210938, 15.961329 ], [ 80.332031, 15.961329 ], [ 80.332031, 15.623037 ], [ 80.156250, 15.623037 ], [ 80.156250, 15.284185 ], [ 79.980469, 15.284185 ], [ 79.980469, 14.434680 ], [ 80.156250, 14.434680 ], [ 80.156250, 13.410994 ], [ 80.332031, 13.410994 ], [ 80.332031, 12.897489 ], [ 80.156250, 12.897489 ], [ 80.156250, 12.554564 ], [ 79.980469, 12.554564 ], [ 79.980469, 12.211180 ], [ 79.804688, 12.211180 ], [ 79.804688, 10.314919 ], [ 79.277344, 10.314919 ], [ 79.277344, 10.141932 ], [ 79.101562, 10.141932 ], [ 79.101562, 9.795678 ], [ 78.925781, 9.795678 ], [ 78.925781, 9.449062 ], [ 79.101562, 9.449062 ], [ 79.101562, 9.102097 ], [ 78.574219, 9.102097 ], [ 78.574219, 8.928487 ], [ 78.222656, 8.928487 ], [ 78.222656, 8.754795 ], [ 78.046875, 8.754795 ], [ 78.046875, 8.407168 ], [ 77.871094, 8.407168 ], [ 77.871094, 8.059230 ], [ 77.695312, 8.059230 ], [ 77.695312, 7.885147 ], [ 77.343750, 7.885147 ], [ 77.343750, 8.059230 ], [ 77.167969, 8.059230 ], [ 77.167969, 8.407168 ], [ 76.992188, 8.407168 ], [ 76.992188, 8.581021 ], [ 76.816406, 8.581021 ], [ 76.816406, 8.754795 ], [ 76.640625, 8.754795 ], [ 76.640625, 9.102097 ], [ 76.464844, 9.102097 ], [ 76.464844, 9.622414 ], [ 76.289062, 9.622414 ], [ 76.289062, 9.968851 ], [ 76.113281, 9.968851 ], [ 76.113281, 10.487812 ], [ 75.937500, 10.487812 ], [ 75.937500, 11.005904 ], [ 75.761719, 11.005904 ], [ 75.761719, 11.350797 ], [ 75.585938, 11.350797 ], [ 75.585938, 11.523088 ], [ 75.410156, 11.523088 ], [ 75.410156, 11.867351 ], [ 75.234375, 11.867351 ], [ 75.234375, 12.211180 ], [ 75.058594, 12.211180 ], [ 75.058594, 12.554564 ], [ 74.882812, 12.554564 ], [ 74.882812, 12.897489 ], [ 74.707031, 12.897489 ], [ 74.707031, 13.581921 ], [ 74.531250, 13.581921 ], [ 74.531250, 14.604847 ], [ 74.355469, 14.604847 ], [ 74.355469, 14.944785 ], [ 74.179688, 14.944785 ], [ 74.179688, 15.114553 ], [ 74.003906, 15.114553 ], [ 74.003906, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 15.623037 ], [ 73.652344, 15.623037 ], [ 73.652344, 15.792254 ], [ 73.476562, 15.792254 ], [ 73.476562, 16.467695 ], [ 73.300781, 16.467695 ], [ 73.300781, 17.476432 ], [ 73.125000, 17.476432 ], [ 73.125000, 18.145852 ], [ 72.949219, 18.145852 ], [ 72.949219, 18.812718 ], [ 72.773438, 18.812718 ], [ 72.773438, 20.797201 ], [ 72.597656, 20.797201 ], [ 72.597656, 21.289374 ], [ 72.421875, 21.289374 ], [ 72.421875, 21.125498 ], [ 72.070312, 21.125498 ], [ 72.070312, 20.961440 ], [ 71.542969, 20.961440 ], [ 71.542969, 20.797201 ], [ 70.312500, 20.797201 ], [ 70.312500, 20.961440 ], [ 70.136719, 20.961440 ], [ 70.136719, 21.125498 ], [ 69.960938, 21.125498 ], [ 69.960938, 21.289374 ], [ 69.785156, 21.289374 ], [ 69.785156, 21.453069 ], [ 69.609375, 21.453069 ], [ 69.609375, 21.616579 ], [ 69.433594, 21.616579 ], [ 69.433594, 21.779905 ], [ 69.257812, 21.779905 ], [ 69.257812, 21.943046 ], [ 69.082031, 21.943046 ], [ 69.082031, 22.105999 ], [ 69.257812, 22.105999 ], [ 69.257812, 22.268764 ], [ 69.609375, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.433594, 22.593726 ], [ 69.433594, 22.917923 ], [ 69.257812, 22.917923 ], [ 69.257812, 23.079732 ], [ 68.906250, 23.079732 ], [ 68.906250, 23.241346 ], [ 68.730469, 23.241346 ], [ 68.730469, 23.402765 ], [ 68.554688, 23.402765 ], [ 68.554688, 23.563987 ], [ 68.203125, 23.563987 ], [ 68.203125, 23.725012 ], [ 68.378906, 23.725012 ], [ 68.378906, 23.885838 ], [ 68.554688, 23.885838 ], [ 68.554688, 24.046464 ], [ 68.730469, 24.046464 ], [ 68.730469, 24.206890 ], [ 68.906250, 24.206890 ], [ 68.906250, 24.367114 ], [ 71.015625, 24.367114 ], [ 71.015625, 24.686952 ], [ 70.839844, 24.686952 ], [ 70.839844, 25.165173 ], [ 70.664062, 25.165173 ], [ 70.664062, 25.482951 ], [ 70.488281, 25.482951 ], [ 70.488281, 25.641526 ], [ 70.312500, 25.641526 ], [ 70.312500, 26.115986 ], [ 70.136719, 26.115986 ], [ 70.136719, 26.431228 ], [ 69.960938, 26.431228 ], [ 69.960938, 26.588527 ], [ 69.609375, 26.588527 ], [ 69.609375, 26.745610 ], [ 69.433594, 26.745610 ], [ 69.433594, 26.902477 ], [ 69.609375, 26.902477 ], [ 69.609375, 27.059126 ], [ 69.785156, 27.059126 ], [ 69.785156, 27.215556 ], [ 69.960938, 27.215556 ], [ 69.960938, 27.371767 ], [ 70.136719, 27.371767 ], [ 70.136719, 27.527758 ], [ 70.312500, 27.527758 ], [ 70.312500, 27.683528 ], [ 70.488281, 27.683528 ], [ 70.488281, 27.839076 ], [ 70.664062, 27.839076 ], [ 70.664062, 27.994401 ], [ 71.015625, 27.994401 ], [ 71.015625, 27.839076 ], [ 71.894531, 27.839076 ], [ 71.894531, 27.994401 ], [ 72.070312, 27.994401 ], [ 72.070312, 28.149503 ], [ 72.246094, 28.149503 ], [ 72.246094, 28.459033 ], [ 72.421875, 28.459033 ], [ 72.421875, 28.613459 ], [ 72.597656, 28.613459 ], [ 72.597656, 28.767659 ], [ 72.773438, 28.767659 ], [ 72.773438, 28.921631 ], [ 72.949219, 28.921631 ], [ 72.949219, 29.228890 ], [ 73.125000, 29.228890 ], [ 73.125000, 29.535230 ], [ 73.300781, 29.535230 ], [ 73.300781, 29.840644 ], [ 73.476562, 29.840644 ], [ 73.476562, 29.993002 ], [ 73.652344, 29.993002 ], [ 73.652344, 30.297018 ], [ 73.828125, 30.297018 ], [ 73.828125, 30.448674 ], [ 74.003906, 30.448674 ], [ 74.003906, 30.600094 ], [ 74.179688, 30.600094 ], [ 74.179688, 30.902225 ], [ 74.355469, 30.902225 ], [ 74.355469, 31.653381 ], [ 74.531250, 31.653381 ], [ 74.531250, 31.802893 ], [ 74.707031, 31.802893 ], [ 74.707031, 31.952162 ], [ 75.058594, 31.952162 ], [ 75.058594, 32.101190 ], [ 75.234375, 32.101190 ], [ 75.234375, 32.249974 ], [ 75.058594, 32.249974 ], [ 75.058594, 32.398516 ], [ 74.707031, 32.398516 ], [ 74.707031, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 32.842674 ], [ 74.355469, 32.842674 ], [ 74.355469, 33.137551 ], [ 74.179688, 33.137551 ], [ 74.179688, 33.578015 ], [ 74.003906, 33.578015 ], [ 74.003906, 34.016242 ], [ 73.828125, 34.016242 ], [ 73.828125, 34.307144 ], [ 74.003906, 34.307144 ], [ 74.003906, 34.597042 ], [ 74.179688, 34.597042 ], [ 74.179688, 34.741612 ], [ 74.531250, 34.741612 ], [ 74.531250, 34.597042 ], [ 75.234375, 34.597042 ], [ 75.234375, 34.452218 ], [ 76.464844, 34.452218 ], [ 76.464844, 34.597042 ], [ 76.992188, 34.597042 ], [ 76.992188, 34.741612 ], [ 77.167969, 34.741612 ], [ 77.167969, 34.885931 ], [ 77.343750, 34.885931 ], [ 77.343750, 35.029996 ], [ 77.519531, 35.029996 ], [ 77.519531, 35.173808 ], [ 77.695312, 35.173808 ], [ 77.695312, 35.317366 ], [ 78.046875, 35.317366 ], [ 78.046875, 35.173808 ], [ 78.222656, 35.173808 ], [ 78.222656, 34.885931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.046875, 35.317366 ], [ 78.046875, 35.173808 ], [ 78.222656, 35.173808 ], [ 78.222656, 34.885931 ], [ 78.398438, 34.885931 ], [ 78.398438, 34.741612 ], [ 78.574219, 34.741612 ], [ 78.574219, 34.597042 ], [ 78.750000, 34.597042 ], [ 78.750000, 34.307144 ], [ 78.925781, 34.307144 ], [ 78.925781, 33.870416 ], [ 78.750000, 33.870416 ], [ 78.750000, 33.431441 ], [ 78.925781, 33.431441 ], [ 78.925781, 33.284620 ], [ 79.101562, 33.284620 ], [ 79.101562, 32.990236 ], [ 79.277344, 32.990236 ], [ 79.277344, 32.694866 ], [ 79.101562, 32.694866 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.546813 ], [ 78.398438, 32.249974 ], [ 78.574219, 32.249974 ], [ 78.574219, 31.653381 ], [ 78.750000, 31.653381 ], [ 78.750000, 31.353637 ], [ 79.101562, 31.353637 ], [ 79.101562, 31.203405 ], [ 79.277344, 31.203405 ], [ 79.277344, 31.052934 ], [ 79.628906, 31.052934 ], [ 79.628906, 30.902225 ], [ 79.804688, 30.902225 ], [ 79.804688, 30.751278 ], [ 80.156250, 30.751278 ], [ 80.156250, 30.600094 ], [ 80.332031, 30.600094 ], [ 80.332031, 30.448674 ], [ 80.507812, 30.448674 ], [ 80.507812, 30.297018 ], [ 80.859375, 30.297018 ], [ 80.859375, 30.145127 ], [ 81.035156, 30.145127 ], [ 81.035156, 29.993002 ], [ 80.859375, 29.993002 ], [ 80.859375, 29.840644 ], [ 80.683594, 29.840644 ], [ 80.683594, 29.688053 ], [ 80.507812, 29.688053 ], [ 80.507812, 29.382175 ], [ 80.332031, 29.382175 ], [ 80.332031, 28.921631 ], [ 80.156250, 28.921631 ], [ 80.156250, 28.767659 ], [ 80.332031, 28.767659 ], [ 80.332031, 28.613459 ], [ 80.683594, 28.613459 ], [ 80.683594, 28.459033 ], [ 81.035156, 28.459033 ], [ 81.035156, 28.304381 ], [ 81.386719, 28.304381 ], [ 81.386719, 28.149503 ], [ 81.738281, 28.149503 ], [ 81.738281, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.839076 ], [ 82.265625, 27.839076 ], [ 82.265625, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.527758 ], [ 82.968750, 27.527758 ], [ 82.968750, 27.371767 ], [ 83.847656, 27.371767 ], [ 83.847656, 27.215556 ], [ 84.726562, 27.215556 ], [ 84.726562, 27.059126 ], [ 84.902344, 27.059126 ], [ 84.902344, 26.902477 ], [ 85.078125, 26.902477 ], [ 85.078125, 26.745610 ], [ 85.429688, 26.745610 ], [ 85.429688, 26.588527 ], [ 86.484375, 26.588527 ], [ 86.484375, 26.431228 ], [ 88.066406, 26.431228 ], [ 88.066406, 26.588527 ], [ 88.242188, 26.588527 ], [ 88.242188, 27.059126 ], [ 88.066406, 27.059126 ], [ 88.066406, 27.839076 ], [ 88.417969, 27.839076 ], [ 88.417969, 27.994401 ], [ 88.769531, 27.994401 ], [ 88.769531, 27.059126 ], [ 88.945312, 27.059126 ], [ 88.945312, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 90.878906, 26.902477 ], [ 90.878906, 25.165173 ], [ 90.351562, 25.165173 ], [ 90.351562, 25.324167 ], [ 90.000000, 25.324167 ], [ 90.000000, 25.641526 ], [ 89.824219, 25.641526 ], [ 89.824219, 25.958045 ], [ 89.121094, 25.958045 ], [ 89.121094, 26.115986 ], [ 88.769531, 26.115986 ], [ 88.769531, 26.273714 ], [ 88.417969, 26.273714 ], [ 88.417969, 25.958045 ], [ 88.242188, 25.958045 ], [ 88.242188, 25.641526 ], [ 88.417969, 25.641526 ], [ 88.417969, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.324167 ], [ 88.769531, 25.324167 ], [ 88.769531, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 25.005973 ], [ 88.593750, 25.005973 ], [ 88.593750, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 24.686952 ], [ 88.066406, 24.686952 ], [ 88.066406, 24.367114 ], [ 88.417969, 24.367114 ], [ 88.417969, 24.206890 ], [ 88.769531, 24.206890 ], [ 88.769531, 23.885838 ], [ 88.593750, 23.885838 ], [ 88.593750, 23.402765 ], [ 88.769531, 23.402765 ], [ 88.769531, 23.079732 ], [ 88.945312, 23.079732 ], [ 88.945312, 21.616579 ], [ 88.417969, 21.616579 ], [ 88.417969, 21.779905 ], [ 88.066406, 21.779905 ], [ 88.066406, 21.616579 ], [ 87.363281, 21.616579 ], [ 87.363281, 21.453069 ], [ 87.011719, 21.453069 ], [ 87.011719, 20.632784 ], [ 86.835938, 20.632784 ], [ 86.835938, 20.468189 ], [ 86.660156, 20.468189 ], [ 86.660156, 20.138470 ], [ 86.484375, 20.138470 ], [ 86.484375, 19.973349 ], [ 86.132812, 19.973349 ], [ 86.132812, 19.808054 ], [ 85.781250, 19.808054 ], [ 85.781250, 19.642588 ], [ 85.429688, 19.642588 ], [ 85.429688, 19.476950 ], [ 85.078125, 19.476950 ], [ 85.078125, 19.311143 ], [ 84.902344, 19.311143 ], [ 84.902344, 19.145168 ], [ 84.726562, 19.145168 ], [ 84.726562, 18.979026 ], [ 84.550781, 18.979026 ], [ 84.550781, 18.646245 ], [ 84.375000, 18.646245 ], [ 84.375000, 18.479609 ], [ 84.199219, 18.479609 ], [ 84.199219, 18.312811 ], [ 84.023438, 18.312811 ], [ 84.023438, 18.145852 ], [ 83.847656, 18.145852 ], [ 83.847656, 17.978733 ], [ 83.496094, 17.978733 ], [ 83.496094, 17.811456 ], [ 83.320312, 17.811456 ], [ 83.320312, 17.644022 ], [ 83.144531, 17.644022 ], [ 83.144531, 17.476432 ], [ 82.968750, 17.476432 ], [ 82.968750, 17.308688 ], [ 82.617188, 17.308688 ], [ 82.617188, 17.140790 ], [ 82.441406, 17.140790 ], [ 82.441406, 16.972741 ], [ 82.265625, 16.972741 ], [ 82.265625, 16.467695 ], [ 81.914062, 16.467695 ], [ 81.914062, 16.299051 ], [ 81.562500, 16.299051 ], [ 81.562500, 16.130262 ], [ 81.210938, 16.130262 ], [ 81.210938, 15.961329 ], [ 80.332031, 15.961329 ], [ 80.332031, 15.623037 ], [ 80.156250, 15.623037 ], [ 80.156250, 15.284185 ], [ 79.980469, 15.284185 ], [ 79.980469, 14.434680 ], [ 80.156250, 14.434680 ], [ 80.156250, 13.410994 ], [ 80.332031, 13.410994 ], [ 80.332031, 12.897489 ], [ 80.156250, 12.897489 ], [ 80.156250, 12.554564 ], [ 79.980469, 12.554564 ], [ 79.980469, 12.211180 ], [ 79.804688, 12.211180 ], [ 79.804688, 10.314919 ], [ 79.277344, 10.314919 ], [ 79.277344, 10.141932 ], [ 79.101562, 10.141932 ], [ 79.101562, 9.795678 ], [ 78.925781, 9.795678 ], [ 78.925781, 9.449062 ], [ 79.101562, 9.449062 ], [ 79.101562, 9.102097 ], [ 78.574219, 9.102097 ], [ 78.574219, 8.928487 ], [ 78.222656, 8.928487 ], [ 78.222656, 8.754795 ], [ 78.046875, 8.754795 ], [ 78.046875, 8.407168 ], [ 77.871094, 8.407168 ], [ 77.871094, 8.059230 ], [ 77.695312, 8.059230 ], [ 77.695312, 7.885147 ], [ 77.343750, 7.885147 ], [ 77.343750, 8.059230 ], [ 77.167969, 8.059230 ], [ 77.167969, 8.407168 ], [ 76.992188, 8.407168 ], [ 76.992188, 8.581021 ], [ 76.816406, 8.581021 ], [ 76.816406, 8.754795 ], [ 76.640625, 8.754795 ], [ 76.640625, 9.102097 ], [ 76.464844, 9.102097 ], [ 76.464844, 9.622414 ], [ 76.289062, 9.622414 ], [ 76.289062, 9.968851 ], [ 76.113281, 9.968851 ], [ 76.113281, 10.487812 ], [ 75.937500, 10.487812 ], [ 75.937500, 11.005904 ], [ 75.761719, 11.005904 ], [ 75.761719, 11.350797 ], [ 75.585938, 11.350797 ], [ 75.585938, 11.523088 ], [ 75.410156, 11.523088 ], [ 75.410156, 11.867351 ], [ 75.234375, 11.867351 ], [ 75.234375, 12.211180 ], [ 75.058594, 12.211180 ], [ 75.058594, 12.554564 ], [ 74.882812, 12.554564 ], [ 74.882812, 12.897489 ], [ 74.707031, 12.897489 ], [ 74.707031, 13.581921 ], [ 74.531250, 13.581921 ], [ 74.531250, 14.604847 ], [ 74.355469, 14.604847 ], [ 74.355469, 14.944785 ], [ 74.179688, 14.944785 ], [ 74.179688, 15.114553 ], [ 74.003906, 15.114553 ], [ 74.003906, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 15.623037 ], [ 73.652344, 15.623037 ], [ 73.652344, 15.792254 ], [ 73.476562, 15.792254 ], [ 73.476562, 16.467695 ], [ 73.300781, 16.467695 ], [ 73.300781, 17.476432 ], [ 73.125000, 17.476432 ], [ 73.125000, 18.145852 ], [ 72.949219, 18.145852 ], [ 72.949219, 18.812718 ], [ 72.773438, 18.812718 ], [ 72.773438, 20.797201 ], [ 72.597656, 20.797201 ], [ 72.597656, 21.289374 ], [ 72.421875, 21.289374 ], [ 72.421875, 21.125498 ], [ 72.070312, 21.125498 ], [ 72.070312, 20.961440 ], [ 71.542969, 20.961440 ], [ 71.542969, 20.797201 ], [ 70.312500, 20.797201 ], [ 70.312500, 20.961440 ], [ 70.136719, 20.961440 ], [ 70.136719, 21.125498 ], [ 69.960938, 21.125498 ], [ 69.960938, 21.289374 ], [ 69.785156, 21.289374 ], [ 69.785156, 21.453069 ], [ 69.609375, 21.453069 ], [ 69.609375, 21.616579 ], [ 69.433594, 21.616579 ], [ 69.433594, 21.779905 ], [ 69.257812, 21.779905 ], [ 69.257812, 21.943046 ], [ 69.082031, 21.943046 ], [ 69.082031, 22.105999 ], [ 69.257812, 22.105999 ], [ 69.257812, 22.268764 ], [ 69.609375, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.433594, 22.593726 ], [ 69.433594, 22.917923 ], [ 69.257812, 22.917923 ], [ 69.257812, 23.079732 ], [ 68.906250, 23.079732 ], [ 68.906250, 23.241346 ], [ 68.730469, 23.241346 ], [ 68.730469, 23.402765 ], [ 68.554688, 23.402765 ], [ 68.554688, 23.563987 ], [ 68.203125, 23.563987 ], [ 68.203125, 23.725012 ], [ 68.378906, 23.725012 ], [ 68.378906, 23.885838 ], [ 68.554688, 23.885838 ], [ 68.554688, 24.046464 ], [ 68.730469, 24.046464 ], [ 68.730469, 24.206890 ], [ 68.906250, 24.206890 ], [ 68.906250, 24.367114 ], [ 71.015625, 24.367114 ], [ 71.015625, 24.686952 ], [ 70.839844, 24.686952 ], [ 70.839844, 25.165173 ], [ 70.664062, 25.165173 ], [ 70.664062, 25.482951 ], [ 70.488281, 25.482951 ], [ 70.488281, 25.641526 ], [ 70.312500, 25.641526 ], [ 70.312500, 26.115986 ], [ 70.136719, 26.115986 ], [ 70.136719, 26.431228 ], [ 69.960938, 26.431228 ], [ 69.960938, 26.588527 ], [ 69.609375, 26.588527 ], [ 69.609375, 26.745610 ], [ 69.433594, 26.745610 ], [ 69.433594, 26.902477 ], [ 69.609375, 26.902477 ], [ 69.609375, 27.059126 ], [ 69.785156, 27.059126 ], [ 69.785156, 27.215556 ], [ 69.960938, 27.215556 ], [ 69.960938, 27.371767 ], [ 70.136719, 27.371767 ], [ 70.136719, 27.527758 ], [ 70.312500, 27.527758 ], [ 70.312500, 27.683528 ], [ 70.488281, 27.683528 ], [ 70.488281, 27.839076 ], [ 70.664062, 27.839076 ], [ 70.664062, 27.994401 ], [ 71.015625, 27.994401 ], [ 71.015625, 27.839076 ], [ 71.894531, 27.839076 ], [ 71.894531, 27.994401 ], [ 72.070312, 27.994401 ], [ 72.070312, 28.149503 ], [ 72.246094, 28.149503 ], [ 72.246094, 28.459033 ], [ 72.421875, 28.459033 ], [ 72.421875, 28.613459 ], [ 72.597656, 28.613459 ], [ 72.597656, 28.767659 ], [ 72.773438, 28.767659 ], [ 72.773438, 28.921631 ], [ 72.949219, 28.921631 ], [ 72.949219, 29.228890 ], [ 73.125000, 29.228890 ], [ 73.125000, 29.535230 ], [ 73.300781, 29.535230 ], [ 73.300781, 29.840644 ], [ 73.476562, 29.840644 ], [ 73.476562, 29.993002 ], [ 73.652344, 29.993002 ], [ 73.652344, 30.297018 ], [ 73.828125, 30.297018 ], [ 73.828125, 30.448674 ], [ 74.003906, 30.448674 ], [ 74.003906, 30.600094 ], [ 74.179688, 30.600094 ], [ 74.179688, 30.902225 ], [ 74.355469, 30.902225 ], [ 74.355469, 31.653381 ], [ 74.531250, 31.653381 ], [ 74.531250, 31.802893 ], [ 74.707031, 31.802893 ], [ 74.707031, 31.952162 ], [ 75.058594, 31.952162 ], [ 75.058594, 32.101190 ], [ 75.234375, 32.101190 ], [ 75.234375, 32.249974 ], [ 75.058594, 32.249974 ], [ 75.058594, 32.398516 ], [ 74.707031, 32.398516 ], [ 74.707031, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 32.842674 ], [ 74.355469, 32.842674 ], [ 74.355469, 33.137551 ], [ 74.179688, 33.137551 ], [ 74.179688, 33.578015 ], [ 74.003906, 33.578015 ], [ 74.003906, 34.016242 ], [ 73.828125, 34.016242 ], [ 73.828125, 34.307144 ], [ 74.003906, 34.307144 ], [ 74.003906, 34.597042 ], [ 74.179688, 34.597042 ], [ 74.179688, 34.741612 ], [ 74.531250, 34.741612 ], [ 74.531250, 34.597042 ], [ 75.234375, 34.597042 ], [ 75.234375, 34.452218 ], [ 76.464844, 34.452218 ], [ 76.464844, 34.597042 ], [ 76.992188, 34.597042 ], [ 76.992188, 34.741612 ], [ 77.167969, 34.741612 ], [ 77.167969, 34.885931 ], [ 77.343750, 34.885931 ], [ 77.343750, 35.029996 ], [ 77.519531, 35.029996 ], [ 77.519531, 35.173808 ], [ 77.695312, 35.173808 ], [ 77.695312, 35.317366 ], [ 78.046875, 35.317366 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.683594, 9.275622 ], [ 80.859375, 9.275622 ], [ 80.859375, 9.102097 ], [ 81.035156, 9.102097 ], [ 81.035156, 8.928487 ], [ 81.210938, 8.928487 ], [ 81.210938, 8.581021 ], [ 81.386719, 8.581021 ], [ 81.386719, 8.233237 ], [ 81.562500, 8.233237 ], [ 81.562500, 7.710992 ], [ 81.738281, 7.710992 ], [ 81.738281, 7.013668 ], [ 81.562500, 7.013668 ], [ 81.562500, 6.315299 ], [ 81.386719, 6.315299 ], [ 81.386719, 6.140555 ], [ 80.859375, 6.140555 ], [ 80.859375, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.980469, 6.315299 ], [ 79.980469, 6.664608 ], [ 79.804688, 6.664608 ], [ 79.804688, 7.536764 ], [ 79.628906, 7.536764 ], [ 79.628906, 8.407168 ], [ 79.804688, 8.407168 ], [ 79.804688, 8.928487 ], [ 79.980469, 8.928487 ], [ 79.980469, 9.449062 ], [ 80.156250, 9.449062 ], [ 80.156250, 9.622414 ], [ 80.332031, 9.622414 ], [ 80.332031, 9.449062 ], [ 80.683594, 9.449062 ], [ 80.683594, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.332031, 9.622414 ], [ 80.332031, 9.449062 ], [ 80.683594, 9.449062 ], [ 80.683594, 9.275622 ], [ 80.859375, 9.275622 ], [ 80.859375, 9.102097 ], [ 81.035156, 9.102097 ], [ 81.035156, 8.928487 ], [ 81.210938, 8.928487 ], [ 81.210938, 8.581021 ], [ 81.386719, 8.581021 ], [ 81.386719, 8.233237 ], [ 81.562500, 8.233237 ], [ 81.562500, 7.710992 ], [ 81.738281, 7.710992 ], [ 81.738281, 7.013668 ], [ 81.562500, 7.013668 ], [ 81.562500, 6.315299 ], [ 81.386719, 6.315299 ], [ 81.386719, 6.140555 ], [ 80.859375, 6.140555 ], [ 80.859375, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.980469, 6.315299 ], [ 79.980469, 6.664608 ], [ 79.804688, 6.664608 ], [ 79.804688, 7.536764 ], [ 79.628906, 7.536764 ], [ 79.628906, 8.407168 ], [ 79.804688, 8.407168 ], [ 79.804688, 8.928487 ], [ 79.980469, 8.928487 ], [ 79.980469, 9.449062 ], [ 80.156250, 9.449062 ], [ 80.156250, 9.622414 ], [ 80.332031, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 88.945312, 26.902477 ], [ 88.945312, 27.059126 ], [ 88.769531, 27.059126 ], [ 88.769531, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.527758 ], [ 89.121094, 27.527758 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.839076 ], [ 89.472656, 27.839076 ], [ 89.472656, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 28.149503 ], [ 90.351562, 28.149503 ], [ 90.351562, 27.994401 ], [ 90.878906, 27.994401 ], [ 90.878906, 26.902477 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.351562, 28.149503 ], [ 90.351562, 27.994401 ], [ 90.878906, 27.994401 ], [ 90.878906, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 88.945312, 26.902477 ], [ 88.945312, 27.059126 ], [ 88.769531, 27.059126 ], [ 88.769531, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.527758 ], [ 89.121094, 27.527758 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.839076 ], [ 89.472656, 27.839076 ], [ 89.472656, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 28.149503 ], [ 90.351562, 28.149503 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.824219, 25.641526 ], [ 90.000000, 25.641526 ], [ 90.000000, 25.324167 ], [ 90.351562, 25.324167 ], [ 90.351562, 25.165173 ], [ 90.878906, 25.165173 ], [ 90.878906, 22.755921 ], [ 90.527344, 22.755921 ], [ 90.527344, 22.105999 ], [ 90.351562, 22.105999 ], [ 90.351562, 21.779905 ], [ 90.175781, 21.779905 ], [ 90.175781, 21.943046 ], [ 89.648438, 21.943046 ], [ 89.648438, 21.779905 ], [ 89.472656, 21.779905 ], [ 89.472656, 21.943046 ], [ 89.121094, 21.943046 ], [ 89.121094, 22.105999 ], [ 88.945312, 22.105999 ], [ 88.945312, 23.079732 ], [ 88.769531, 23.079732 ], [ 88.769531, 23.402765 ], [ 88.593750, 23.402765 ], [ 88.593750, 23.885838 ], [ 88.769531, 23.885838 ], [ 88.769531, 24.206890 ], [ 88.417969, 24.206890 ], [ 88.417969, 24.367114 ], [ 88.066406, 24.367114 ], [ 88.066406, 24.686952 ], [ 88.242188, 24.686952 ], [ 88.242188, 24.846565 ], [ 88.593750, 24.846565 ], [ 88.593750, 25.005973 ], [ 88.945312, 25.005973 ], [ 88.945312, 25.165173 ], [ 88.769531, 25.165173 ], [ 88.769531, 25.324167 ], [ 88.593750, 25.324167 ], [ 88.593750, 25.482951 ], [ 88.417969, 25.482951 ], [ 88.417969, 25.641526 ], [ 88.242188, 25.641526 ], [ 88.242188, 25.958045 ], [ 88.417969, 25.958045 ], [ 88.417969, 26.273714 ], [ 88.769531, 26.273714 ], [ 88.769531, 26.115986 ], [ 89.121094, 26.115986 ], [ 89.121094, 25.958045 ], [ 89.824219, 25.958045 ], [ 89.824219, 25.641526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.769531, 26.273714 ], [ 88.769531, 26.115986 ], [ 89.121094, 26.115986 ], [ 89.121094, 25.958045 ], [ 89.824219, 25.958045 ], [ 89.824219, 25.641526 ], [ 90.000000, 25.641526 ], [ 90.000000, 25.324167 ], [ 90.351562, 25.324167 ], [ 90.351562, 25.165173 ], [ 90.878906, 25.165173 ], [ 90.878906, 22.755921 ], [ 90.527344, 22.755921 ], [ 90.527344, 22.105999 ], [ 90.351562, 22.105999 ], [ 90.351562, 21.779905 ], [ 90.175781, 21.779905 ], [ 90.175781, 21.943046 ], [ 89.648438, 21.943046 ], [ 89.648438, 21.779905 ], [ 89.472656, 21.779905 ], [ 89.472656, 21.943046 ], [ 89.121094, 21.943046 ], [ 89.121094, 22.105999 ], [ 88.945312, 22.105999 ], [ 88.945312, 23.079732 ], [ 88.769531, 23.079732 ], [ 88.769531, 23.402765 ], [ 88.593750, 23.402765 ], [ 88.593750, 23.885838 ], [ 88.769531, 23.885838 ], [ 88.769531, 24.206890 ], [ 88.417969, 24.206890 ], [ 88.417969, 24.367114 ], [ 88.066406, 24.367114 ], [ 88.066406, 24.686952 ], [ 88.242188, 24.686952 ], [ 88.242188, 24.846565 ], [ 88.593750, 24.846565 ], [ 88.593750, 25.005973 ], [ 88.945312, 25.005973 ], [ 88.945312, 25.165173 ], [ 88.769531, 25.165173 ], [ 88.769531, 25.324167 ], [ 88.593750, 25.324167 ], [ 88.593750, 25.482951 ], [ 88.417969, 25.482951 ], [ 88.417969, 25.641526 ], [ 88.242188, 25.641526 ], [ 88.242188, 25.958045 ], [ 88.417969, 25.958045 ], [ 88.417969, 26.273714 ], [ 88.769531, 26.273714 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 27.994401 ], [ 90.351562, 27.994401 ], [ 90.351562, 28.149503 ], [ 89.648438, 28.149503 ], [ 89.648438, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 27.527758 ], [ 88.945312, 27.527758 ], [ 88.945312, 27.371767 ], [ 88.769531, 27.371767 ], [ 88.769531, 27.994401 ], [ 88.417969, 27.994401 ], [ 88.417969, 27.839076 ], [ 87.363281, 27.839076 ], [ 87.363281, 27.994401 ], [ 86.308594, 27.994401 ], [ 86.308594, 28.149503 ], [ 85.605469, 28.149503 ], [ 85.605469, 28.304381 ], [ 85.253906, 28.304381 ], [ 85.253906, 28.459033 ], [ 85.078125, 28.459033 ], [ 85.078125, 28.613459 ], [ 84.550781, 28.613459 ], [ 84.550781, 28.767659 ], [ 84.199219, 28.767659 ], [ 84.199219, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.847656, 29.228890 ], [ 83.847656, 29.382175 ], [ 83.496094, 29.382175 ], [ 83.496094, 29.535230 ], [ 83.144531, 29.535230 ], [ 83.144531, 29.688053 ], [ 82.792969, 29.688053 ], [ 82.792969, 29.840644 ], [ 82.617188, 29.840644 ], [ 82.617188, 29.993002 ], [ 82.265625, 29.993002 ], [ 82.265625, 30.145127 ], [ 81.914062, 30.145127 ], [ 81.914062, 30.297018 ], [ 81.210938, 30.297018 ], [ 81.210938, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 30.297018 ], [ 80.507812, 30.297018 ], [ 80.507812, 30.448674 ], [ 80.332031, 30.448674 ], [ 80.332031, 30.600094 ], [ 80.156250, 30.600094 ], [ 80.156250, 30.751278 ], [ 79.804688, 30.751278 ], [ 79.804688, 30.902225 ], [ 79.628906, 30.902225 ], [ 79.628906, 31.052934 ], [ 79.277344, 31.052934 ], [ 79.277344, 31.203405 ], [ 79.101562, 31.203405 ], [ 79.101562, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.653381 ], [ 78.574219, 31.653381 ], [ 78.574219, 32.249974 ], [ 78.398438, 32.249974 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 32.694866 ], [ 79.277344, 32.694866 ], [ 79.277344, 32.990236 ], [ 79.101562, 32.990236 ], [ 79.101562, 33.284620 ], [ 78.925781, 33.284620 ], [ 78.925781, 33.431441 ], [ 78.750000, 33.431441 ], [ 78.750000, 33.870416 ], [ 78.925781, 33.870416 ], [ 78.925781, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 34.597042 ], [ 78.574219, 34.597042 ], [ 78.574219, 34.741612 ], [ 78.398438, 34.741612 ], [ 78.398438, 34.885931 ], [ 78.222656, 34.885931 ], [ 78.222656, 35.173808 ], [ 78.046875, 35.173808 ], [ 78.046875, 35.317366 ], [ 77.871094, 35.317366 ], [ 77.871094, 35.460670 ], [ 77.519531, 35.460670 ], [ 77.519531, 35.603719 ], [ 76.816406, 35.603719 ], [ 76.816406, 35.746512 ], [ 76.289062, 35.746512 ], [ 76.289062, 35.889050 ], [ 76.113281, 35.889050 ], [ 76.113281, 36.173357 ], [ 75.937500, 36.173357 ], [ 75.937500, 36.597889 ], [ 75.761719, 36.597889 ], [ 75.761719, 36.738884 ], [ 75.585938, 36.738884 ], [ 75.585938, 36.879621 ], [ 75.410156, 36.879621 ], [ 75.410156, 37.020098 ], [ 75.234375, 37.020098 ], [ 75.234375, 37.300275 ], [ 75.058594, 37.300275 ], [ 75.058594, 37.718590 ], [ 74.882812, 37.718590 ], [ 74.882812, 38.410558 ], [ 74.355469, 38.410558 ], [ 74.355469, 38.548165 ], [ 74.003906, 38.548165 ], [ 74.003906, 38.685510 ], [ 73.828125, 38.685510 ], [ 73.828125, 39.095963 ], [ 73.652344, 39.095963 ], [ 73.652344, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 39.504041 ], [ 74.003906, 39.504041 ], [ 74.003906, 39.774769 ], [ 73.828125, 39.774769 ], [ 73.828125, 39.909736 ], [ 74.003906, 39.909736 ], [ 74.003906, 40.044438 ], [ 74.355469, 40.044438 ], [ 74.355469, 40.178873 ], [ 74.707031, 40.178873 ], [ 74.707031, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 90.878906, 41.640078 ], [ 90.878906, 27.994401 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 27.994401 ], [ 90.351562, 27.994401 ], [ 90.351562, 28.149503 ], [ 89.648438, 28.149503 ], [ 89.648438, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 27.527758 ], [ 88.945312, 27.527758 ], [ 88.945312, 27.371767 ], [ 88.769531, 27.371767 ], [ 88.769531, 27.994401 ], [ 88.417969, 27.994401 ], [ 88.417969, 27.839076 ], [ 87.363281, 27.839076 ], [ 87.363281, 27.994401 ], [ 86.308594, 27.994401 ], [ 86.308594, 28.149503 ], [ 85.605469, 28.149503 ], [ 85.605469, 28.304381 ], [ 85.253906, 28.304381 ], [ 85.253906, 28.459033 ], [ 85.078125, 28.459033 ], [ 85.078125, 28.613459 ], [ 84.550781, 28.613459 ], [ 84.550781, 28.767659 ], [ 84.199219, 28.767659 ], [ 84.199219, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.847656, 29.228890 ], [ 83.847656, 29.382175 ], [ 83.496094, 29.382175 ], [ 83.496094, 29.535230 ], [ 83.144531, 29.535230 ], [ 83.144531, 29.688053 ], [ 82.792969, 29.688053 ], [ 82.792969, 29.840644 ], [ 82.617188, 29.840644 ], [ 82.617188, 29.993002 ], [ 82.265625, 29.993002 ], [ 82.265625, 30.145127 ], [ 81.914062, 30.145127 ], [ 81.914062, 30.297018 ], [ 81.210938, 30.297018 ], [ 81.210938, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 30.297018 ], [ 80.507812, 30.297018 ], [ 80.507812, 30.448674 ], [ 80.332031, 30.448674 ], [ 80.332031, 30.600094 ], [ 80.156250, 30.600094 ], [ 80.156250, 30.751278 ], [ 79.804688, 30.751278 ], [ 79.804688, 30.902225 ], [ 79.628906, 30.902225 ], [ 79.628906, 31.052934 ], [ 79.277344, 31.052934 ], [ 79.277344, 31.203405 ], [ 79.101562, 31.203405 ], [ 79.101562, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.653381 ], [ 78.574219, 31.653381 ], [ 78.574219, 32.249974 ], [ 78.398438, 32.249974 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 32.694866 ], [ 79.277344, 32.694866 ], [ 79.277344, 32.990236 ], [ 79.101562, 32.990236 ], [ 79.101562, 33.284620 ], [ 78.925781, 33.284620 ], [ 78.925781, 33.431441 ], [ 78.750000, 33.431441 ], [ 78.750000, 33.870416 ], [ 78.925781, 33.870416 ], [ 78.925781, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 34.597042 ], [ 78.574219, 34.597042 ], [ 78.574219, 34.741612 ], [ 78.398438, 34.741612 ], [ 78.398438, 34.885931 ], [ 78.222656, 34.885931 ], [ 78.222656, 35.173808 ], [ 78.046875, 35.173808 ], [ 78.046875, 35.317366 ], [ 77.871094, 35.317366 ], [ 77.871094, 35.460670 ], [ 77.519531, 35.460670 ], [ 77.519531, 35.603719 ], [ 76.816406, 35.603719 ], [ 76.816406, 35.746512 ], [ 76.289062, 35.746512 ], [ 76.289062, 35.889050 ], [ 76.113281, 35.889050 ], [ 76.113281, 36.173357 ], [ 75.937500, 36.173357 ], [ 75.937500, 36.597889 ], [ 75.761719, 36.597889 ], [ 75.761719, 36.738884 ], [ 75.585938, 36.738884 ], [ 75.585938, 36.879621 ], [ 75.410156, 36.879621 ], [ 75.410156, 37.020098 ], [ 75.234375, 37.020098 ], [ 75.234375, 37.300275 ], [ 75.058594, 37.300275 ], [ 75.058594, 37.718590 ], [ 74.882812, 37.718590 ], [ 74.882812, 38.410558 ], [ 74.355469, 38.410558 ], [ 74.355469, 38.548165 ], [ 74.003906, 38.548165 ], [ 74.003906, 38.685510 ], [ 73.828125, 38.685510 ], [ 73.828125, 39.095963 ], [ 73.652344, 39.095963 ], [ 73.652344, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 39.504041 ], [ 74.003906, 39.504041 ], [ 74.003906, 39.774769 ], [ 73.828125, 39.774769 ], [ 73.828125, 39.909736 ], [ 74.003906, 39.909736 ], [ 74.003906, 40.044438 ], [ 74.355469, 40.044438 ], [ 74.355469, 40.178873 ], [ 74.707031, 40.178873 ], [ 74.707031, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.308594, 49.837982 ], [ 86.308594, 49.724479 ], [ 85.429688, 49.724479 ], [ 85.429688, 49.837982 ], [ 85.253906, 49.837982 ], [ 85.253906, 49.951220 ], [ 85.078125, 49.951220 ], [ 85.078125, 50.064192 ], [ 84.726562, 50.064192 ], [ 84.726562, 50.176898 ], [ 84.375000, 50.176898 ], [ 84.375000, 50.289339 ], [ 84.199219, 50.289339 ], [ 84.199219, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.736455 ], [ 83.847656, 50.736455 ], [ 83.847656, 50.847573 ], [ 83.671875, 50.847573 ], [ 83.671875, 50.958427 ], [ 83.320312, 50.958427 ], [ 83.320312, 51.069017 ], [ 83.144531, 51.069017 ], [ 83.144531, 50.958427 ], [ 82.441406, 50.958427 ], [ 82.441406, 50.847573 ], [ 81.738281, 50.847573 ], [ 81.738281, 50.958427 ], [ 81.386719, 50.958427 ], [ 81.386719, 51.069017 ], [ 81.035156, 51.069017 ], [ 81.035156, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 51.289406 ], [ 80.332031, 51.289406 ], [ 80.332031, 51.069017 ], [ 80.156250, 51.069017 ], [ 80.156250, 50.847573 ], [ 79.980469, 50.847573 ], [ 79.980469, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.179343 ], [ 79.628906, 51.179343 ], [ 79.628906, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.277344, 51.618017 ], [ 79.277344, 51.835778 ], [ 79.101562, 51.835778 ], [ 79.101562, 52.052490 ], [ 78.925781, 52.052490 ], [ 78.925781, 52.268157 ], [ 78.750000, 52.268157 ], [ 78.750000, 52.482780 ], [ 78.574219, 52.482780 ], [ 78.574219, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.908902 ], [ 78.222656, 52.908902 ], [ 78.222656, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 53.330873 ], [ 77.871094, 53.330873 ], [ 77.871094, 53.435719 ], [ 77.695312, 53.435719 ], [ 77.695312, 53.540307 ], [ 77.519531, 53.540307 ], [ 77.519531, 53.644638 ], [ 77.343750, 53.644638 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.852527 ], [ 76.816406, 53.852527 ], [ 76.816406, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.059388 ], [ 76.464844, 54.059388 ], [ 76.464844, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 54.367759 ], [ 76.464844, 54.367759 ], [ 76.464844, 54.265224 ], [ 76.289062, 54.265224 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 54.059388 ], [ 75.761719, 54.059388 ], [ 75.761719, 53.956086 ], [ 75.410156, 53.956086 ], [ 75.410156, 53.852527 ], [ 75.058594, 53.852527 ], [ 75.058594, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.644638 ], [ 74.531250, 53.644638 ], [ 74.531250, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 54.059388 ], [ 73.125000, 54.059388 ], [ 73.125000, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 54.265224 ], [ 72.421875, 54.265224 ], [ 72.421875, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.265224 ], [ 71.542969, 54.265224 ], [ 71.542969, 54.162434 ], [ 71.191406, 54.162434 ], [ 71.191406, 54.367759 ], [ 71.015625, 54.367759 ], [ 71.015625, 54.876607 ], [ 70.839844, 54.876607 ], [ 70.839844, 55.178868 ], [ 70.312500, 55.178868 ], [ 70.312500, 55.279115 ], [ 69.433594, 55.279115 ], [ 69.433594, 55.379110 ], [ 69.082031, 55.379110 ], [ 69.082031, 55.279115 ], [ 68.906250, 55.279115 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 55.078367 ], [ 68.378906, 55.078367 ], [ 68.378906, 54.977614 ], [ 68.027344, 54.977614 ], [ 68.027344, 54.876607 ], [ 67.324219, 54.876607 ], [ 67.324219, 54.775346 ], [ 66.796875, 54.775346 ], [ 66.796875, 54.673831 ], [ 66.093750, 54.673831 ], [ 66.093750, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.470038 ], [ 65.390625, 54.470038 ], [ 65.390625, 54.367759 ], [ 64.863281, 54.367759 ], [ 64.863281, 54.265224 ], [ 63.984375, 54.265224 ], [ 63.984375, 54.162434 ], [ 62.929688, 54.162434 ], [ 62.929688, 54.059388 ], [ 62.050781, 54.059388 ], [ 62.050781, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.852527 ], [ 61.347656, 53.852527 ], [ 61.347656, 53.748711 ], [ 61.171875, 53.748711 ], [ 61.171875, 53.644638 ], [ 60.996094, 53.644638 ], [ 60.996094, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.347656, 53.330873 ], [ 61.347656, 53.225768 ], [ 61.523438, 53.225768 ], [ 61.523438, 53.014783 ], [ 61.699219, 53.014783 ], [ 61.699219, 52.908902 ], [ 61.347656, 52.908902 ], [ 61.347656, 52.802761 ], [ 60.996094, 52.802761 ], [ 60.996094, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.589701 ], [ 60.996094, 52.589701 ], [ 60.996094, 52.375599 ], [ 60.820312, 52.375599 ], [ 60.820312, 52.268157 ], [ 60.644531, 52.268157 ], [ 60.644531, 52.160455 ], [ 60.292969, 52.160455 ], [ 60.292969, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.944265 ], [ 59.941406, 51.944265 ], [ 59.941406, 51.835778 ], [ 60.292969, 51.835778 ], [ 60.292969, 51.727028 ], [ 60.468750, 51.727028 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.508742 ], [ 60.996094, 51.508742 ], [ 60.996094, 51.399206 ], [ 61.347656, 51.399206 ], [ 61.347656, 51.289406 ], [ 61.523438, 51.289406 ], [ 61.523438, 51.069017 ], [ 61.347656, 51.069017 ], [ 61.347656, 50.847573 ], [ 59.941406, 50.847573 ], [ 59.941406, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.414062, 50.513427 ], [ 59.414062, 50.625073 ], [ 59.062500, 50.625073 ], [ 59.062500, 50.736455 ], [ 58.886719, 50.736455 ], [ 58.886719, 50.847573 ], [ 58.710938, 50.847573 ], [ 58.710938, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 56.777344, 50.958427 ], [ 56.425781, 50.958427 ], [ 56.425781, 50.847573 ], [ 56.250000, 50.847573 ], [ 56.250000, 50.736455 ], [ 55.898438, 50.736455 ], [ 55.898438, 50.625073 ], [ 55.546875, 50.625073 ], [ 55.546875, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.847573 ], [ 54.843750, 50.847573 ], [ 54.843750, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 51.069017 ], [ 54.140625, 51.069017 ], [ 54.140625, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 51.289406 ], [ 53.437500, 51.289406 ], [ 53.437500, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.508742 ], [ 52.734375, 51.508742 ], [ 52.734375, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.727028 ], [ 50.800781, 51.727028 ], [ 50.800781, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.508742 ], [ 50.449219, 51.508742 ], [ 50.449219, 51.399206 ], [ 50.097656, 51.399206 ], [ 50.097656, 51.289406 ], [ 49.921875, 51.289406 ], [ 49.921875, 51.179343 ], [ 49.746094, 51.179343 ], [ 49.746094, 51.069017 ], [ 49.570312, 51.069017 ], [ 49.570312, 50.958427 ], [ 49.394531, 50.958427 ], [ 49.394531, 50.847573 ], [ 49.042969, 50.847573 ], [ 49.042969, 50.736455 ], [ 48.867188, 50.736455 ], [ 48.867188, 50.625073 ], [ 48.691406, 50.625073 ], [ 48.691406, 50.176898 ], [ 48.515625, 50.176898 ], [ 48.515625, 49.837982 ], [ 48.339844, 49.837982 ], [ 48.339844, 49.951220 ], [ 48.164062, 49.951220 ], [ 48.164062, 50.064192 ], [ 47.988281, 50.064192 ], [ 47.988281, 50.176898 ], [ 47.812500, 50.176898 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 50.064192 ], [ 47.285156, 50.064192 ], [ 47.285156, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.610710 ], [ 46.933594, 49.610710 ], [ 46.933594, 49.382373 ], [ 46.757812, 49.382373 ], [ 46.757812, 49.267805 ], [ 46.933594, 49.267805 ], [ 46.933594, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 49.037868 ], [ 46.933594, 49.037868 ], [ 46.933594, 48.806863 ], [ 46.757812, 48.806863 ], [ 46.757812, 48.574790 ], [ 46.582031, 48.574790 ], [ 46.582031, 48.341646 ], [ 46.406250, 48.341646 ], [ 46.406250, 48.224673 ], [ 46.582031, 48.224673 ], [ 46.582031, 48.107431 ], [ 46.757812, 48.107431 ], [ 46.757812, 47.989922 ], [ 46.933594, 47.989922 ], [ 46.933594, 47.872144 ], [ 47.109375, 47.872144 ], [ 47.109375, 47.754098 ], [ 47.988281, 47.754098 ], [ 47.988281, 47.635784 ], [ 48.164062, 47.635784 ], [ 48.164062, 47.398349 ], [ 48.339844, 47.398349 ], [ 48.339844, 47.279229 ], [ 48.515625, 47.279229 ], [ 48.515625, 47.040182 ], [ 48.691406, 47.040182 ], [ 48.691406, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.558860 ], [ 48.691406, 46.558860 ], [ 48.691406, 46.437857 ], [ 49.042969, 46.437857 ], [ 49.042969, 46.195042 ], [ 48.867188, 46.195042 ], [ 48.867188, 45.951150 ], [ 48.691406, 45.951150 ], [ 48.691406, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.706179 ], [ 47.988281, 45.706179 ], [ 47.988281, 45.583290 ], [ 47.636719, 45.583290 ], [ 47.636719, 45.460131 ], [ 47.460938, 45.460131 ], [ 47.460938, 45.213004 ], [ 47.285156, 45.213004 ], [ 47.285156, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.840291 ], [ 46.933594, 44.840291 ], [ 46.933594, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.465151 ], [ 46.933594, 44.465151 ], [ 46.933594, 44.213710 ], [ 47.109375, 44.213710 ], [ 47.109375, 44.087585 ], [ 47.285156, 44.087585 ], [ 47.285156, 43.961191 ], [ 47.460938, 43.961191 ], [ 47.460938, 43.707594 ], [ 47.636719, 43.707594 ], [ 47.636719, 43.325178 ], [ 47.460938, 43.325178 ], [ 47.460938, 42.811522 ], [ 47.636719, 42.811522 ], [ 47.636719, 42.553080 ], [ 47.812500, 42.553080 ], [ 47.812500, 42.423457 ], [ 47.988281, 42.423457 ], [ 47.988281, 42.163403 ], [ 48.164062, 42.163403 ], [ 48.164062, 42.032974 ], [ 48.339844, 42.032974 ], [ 48.339844, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.640078 ], [ 48.339844, 41.640078 ], [ 48.339844, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.112469 ], [ 47.460938, 41.112469 ], [ 47.460938, 41.244772 ], [ 47.285156, 41.244772 ], [ 47.285156, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.640078 ], [ 46.757812, 41.640078 ], [ 46.757812, 41.771312 ], [ 46.406250, 41.771312 ], [ 46.406250, 41.902277 ], [ 45.878906, 41.902277 ], [ 45.878906, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.527344, 42.293564 ], [ 45.527344, 42.553080 ], [ 44.824219, 42.553080 ], [ 44.824219, 42.682435 ], [ 44.472656, 42.682435 ], [ 44.472656, 42.553080 ], [ 44.121094, 42.553080 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.230469, 66.722541 ], [ 46.230469, 66.652977 ], [ 46.757812, 66.652977 ], [ 46.757812, 66.722541 ], [ 47.109375, 66.722541 ], [ 47.109375, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 66.861082 ], [ 72.070312, 66.861082 ], [ 72.070312, 66.791909 ], [ 71.894531, 66.791909 ], [ 71.894531, 66.652977 ], [ 71.718750, 66.652977 ], [ 71.718750, 66.513260 ], [ 71.542969, 66.513260 ], [ 71.542969, 66.372755 ], [ 71.367188, 66.372755 ], [ 71.367188, 66.302205 ], [ 71.542969, 66.302205 ], [ 71.542969, 66.231457 ], [ 72.070312, 66.231457 ], [ 72.070312, 66.160511 ], [ 72.421875, 66.160511 ], [ 72.421875, 66.231457 ], [ 72.597656, 66.231457 ], [ 72.597656, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 72.949219, 66.513260 ], [ 72.949219, 66.583217 ], [ 73.300781, 66.583217 ], [ 73.300781, 66.652977 ], [ 73.652344, 66.652977 ], [ 73.652344, 66.722541 ], [ 74.003906, 66.722541 ], [ 74.003906, 66.861082 ], [ 90.878906, 66.861082 ], [ 90.878906, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 49.837982 ], [ 89.472656, 49.837982 ], [ 89.472656, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.496675 ], [ 88.593750, 49.496675 ], [ 88.593750, 49.382373 ], [ 88.066406, 49.382373 ], [ 88.066406, 49.267805 ], [ 87.187500, 49.267805 ], [ 87.187500, 49.496675 ], [ 87.011719, 49.496675 ], [ 87.011719, 49.724479 ], [ 86.835938, 49.724479 ], [ 86.835938, 49.837982 ], [ 86.308594, 49.837982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 49.837982 ], [ 89.472656, 49.837982 ], [ 89.472656, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.496675 ], [ 88.593750, 49.496675 ], [ 88.593750, 49.382373 ], [ 88.066406, 49.382373 ], [ 88.066406, 49.267805 ], [ 87.187500, 49.267805 ], [ 87.187500, 49.496675 ], [ 87.011719, 49.496675 ], [ 87.011719, 49.724479 ], [ 86.835938, 49.724479 ], [ 86.835938, 49.837982 ], [ 86.308594, 49.837982 ], [ 86.308594, 49.724479 ], [ 85.429688, 49.724479 ], [ 85.429688, 49.837982 ], [ 85.253906, 49.837982 ], [ 85.253906, 49.951220 ], [ 85.078125, 49.951220 ], [ 85.078125, 50.064192 ], [ 84.726562, 50.064192 ], [ 84.726562, 50.176898 ], [ 84.375000, 50.176898 ], [ 84.375000, 50.289339 ], [ 84.199219, 50.289339 ], [ 84.199219, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.736455 ], [ 83.847656, 50.736455 ], [ 83.847656, 50.847573 ], [ 83.671875, 50.847573 ], [ 83.671875, 50.958427 ], [ 83.320312, 50.958427 ], [ 83.320312, 51.069017 ], [ 83.144531, 51.069017 ], [ 83.144531, 50.958427 ], [ 82.441406, 50.958427 ], [ 82.441406, 50.847573 ], [ 81.738281, 50.847573 ], [ 81.738281, 50.958427 ], [ 81.386719, 50.958427 ], [ 81.386719, 51.069017 ], [ 81.035156, 51.069017 ], [ 81.035156, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 51.289406 ], [ 80.332031, 51.289406 ], [ 80.332031, 51.069017 ], [ 80.156250, 51.069017 ], [ 80.156250, 50.847573 ], [ 79.980469, 50.847573 ], [ 79.980469, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.179343 ], [ 79.628906, 51.179343 ], [ 79.628906, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.277344, 51.618017 ], [ 79.277344, 51.835778 ], [ 79.101562, 51.835778 ], [ 79.101562, 52.052490 ], [ 78.925781, 52.052490 ], [ 78.925781, 52.268157 ], [ 78.750000, 52.268157 ], [ 78.750000, 52.482780 ], [ 78.574219, 52.482780 ], [ 78.574219, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.908902 ], [ 78.222656, 52.908902 ], [ 78.222656, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 53.330873 ], [ 77.871094, 53.330873 ], [ 77.871094, 53.435719 ], [ 77.695312, 53.435719 ], [ 77.695312, 53.540307 ], [ 77.519531, 53.540307 ], [ 77.519531, 53.644638 ], [ 77.343750, 53.644638 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.852527 ], [ 76.816406, 53.852527 ], [ 76.816406, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.059388 ], [ 76.464844, 54.059388 ], [ 76.464844, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 54.367759 ], [ 76.464844, 54.367759 ], [ 76.464844, 54.265224 ], [ 76.289062, 54.265224 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 54.059388 ], [ 75.761719, 54.059388 ], [ 75.761719, 53.956086 ], [ 75.410156, 53.956086 ], [ 75.410156, 53.852527 ], [ 75.058594, 53.852527 ], [ 75.058594, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.644638 ], [ 74.531250, 53.644638 ], [ 74.531250, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 54.059388 ], [ 73.125000, 54.059388 ], [ 73.125000, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 54.265224 ], [ 72.421875, 54.265224 ], [ 72.421875, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.265224 ], [ 71.542969, 54.265224 ], [ 71.542969, 54.162434 ], [ 71.191406, 54.162434 ], [ 71.191406, 54.367759 ], [ 71.015625, 54.367759 ], [ 71.015625, 54.876607 ], [ 70.839844, 54.876607 ], [ 70.839844, 55.178868 ], [ 70.312500, 55.178868 ], [ 70.312500, 55.279115 ], [ 69.433594, 55.279115 ], [ 69.433594, 55.379110 ], [ 69.082031, 55.379110 ], [ 69.082031, 55.279115 ], [ 68.906250, 55.279115 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 55.078367 ], [ 68.378906, 55.078367 ], [ 68.378906, 54.977614 ], [ 68.027344, 54.977614 ], [ 68.027344, 54.876607 ], [ 67.324219, 54.876607 ], [ 67.324219, 54.775346 ], [ 66.796875, 54.775346 ], [ 66.796875, 54.673831 ], [ 66.093750, 54.673831 ], [ 66.093750, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.470038 ], [ 65.390625, 54.470038 ], [ 65.390625, 54.367759 ], [ 64.863281, 54.367759 ], [ 64.863281, 54.265224 ], [ 63.984375, 54.265224 ], [ 63.984375, 54.162434 ], [ 62.929688, 54.162434 ], [ 62.929688, 54.059388 ], [ 62.050781, 54.059388 ], [ 62.050781, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.852527 ], [ 61.347656, 53.852527 ], [ 61.347656, 53.748711 ], [ 61.171875, 53.748711 ], [ 61.171875, 53.644638 ], [ 60.996094, 53.644638 ], [ 60.996094, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.347656, 53.330873 ], [ 61.347656, 53.225768 ], [ 61.523438, 53.225768 ], [ 61.523438, 53.014783 ], [ 61.699219, 53.014783 ], [ 61.699219, 52.908902 ], [ 61.347656, 52.908902 ], [ 61.347656, 52.802761 ], [ 60.996094, 52.802761 ], [ 60.996094, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.589701 ], [ 60.996094, 52.589701 ], [ 60.996094, 52.375599 ], [ 60.820312, 52.375599 ], [ 60.820312, 52.268157 ], [ 60.644531, 52.268157 ], [ 60.644531, 52.160455 ], [ 60.292969, 52.160455 ], [ 60.292969, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.944265 ], [ 59.941406, 51.944265 ], [ 59.941406, 51.835778 ], [ 60.292969, 51.835778 ], [ 60.292969, 51.727028 ], [ 60.468750, 51.727028 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.508742 ], [ 60.996094, 51.508742 ], [ 60.996094, 51.399206 ], [ 61.347656, 51.399206 ], [ 61.347656, 51.289406 ], [ 61.523438, 51.289406 ], [ 61.523438, 51.069017 ], [ 61.347656, 51.069017 ], [ 61.347656, 50.847573 ], [ 59.941406, 50.847573 ], [ 59.941406, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.414062, 50.513427 ], [ 59.414062, 50.625073 ], [ 59.062500, 50.625073 ], [ 59.062500, 50.736455 ], [ 58.886719, 50.736455 ], [ 58.886719, 50.847573 ], [ 58.710938, 50.847573 ], [ 58.710938, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 56.777344, 50.958427 ], [ 56.425781, 50.958427 ], [ 56.425781, 50.847573 ], [ 56.250000, 50.847573 ], [ 56.250000, 50.736455 ], [ 55.898438, 50.736455 ], [ 55.898438, 50.625073 ], [ 55.546875, 50.625073 ], [ 55.546875, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.847573 ], [ 54.843750, 50.847573 ], [ 54.843750, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 51.069017 ], [ 54.140625, 51.069017 ], [ 54.140625, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 51.289406 ], [ 53.437500, 51.289406 ], [ 53.437500, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.508742 ], [ 52.734375, 51.508742 ], [ 52.734375, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.727028 ], [ 50.800781, 51.727028 ], [ 50.800781, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.508742 ], [ 50.449219, 51.508742 ], [ 50.449219, 51.399206 ], [ 50.097656, 51.399206 ], [ 50.097656, 51.289406 ], [ 49.921875, 51.289406 ], [ 49.921875, 51.179343 ], [ 49.746094, 51.179343 ], [ 49.746094, 51.069017 ], [ 49.570312, 51.069017 ], [ 49.570312, 50.958427 ], [ 49.394531, 50.958427 ], [ 49.394531, 50.847573 ], [ 49.042969, 50.847573 ], [ 49.042969, 50.736455 ], [ 48.867188, 50.736455 ], [ 48.867188, 50.625073 ], [ 48.691406, 50.625073 ], [ 48.691406, 50.176898 ], [ 48.515625, 50.176898 ], [ 48.515625, 49.837982 ], [ 48.339844, 49.837982 ], [ 48.339844, 49.951220 ], [ 48.164062, 49.951220 ], [ 48.164062, 50.064192 ], [ 47.988281, 50.064192 ], [ 47.988281, 50.176898 ], [ 47.812500, 50.176898 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 50.064192 ], [ 47.285156, 50.064192 ], [ 47.285156, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.610710 ], [ 46.933594, 49.610710 ], [ 46.933594, 49.382373 ], [ 46.757812, 49.382373 ], [ 46.757812, 49.267805 ], [ 46.933594, 49.267805 ], [ 46.933594, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 49.037868 ], [ 46.933594, 49.037868 ], [ 46.933594, 48.806863 ], [ 46.757812, 48.806863 ], [ 46.757812, 48.574790 ], [ 46.582031, 48.574790 ], [ 46.582031, 48.341646 ], [ 46.406250, 48.341646 ], [ 46.406250, 48.224673 ], [ 46.582031, 48.224673 ], [ 46.582031, 48.107431 ], [ 46.757812, 48.107431 ], [ 46.757812, 47.989922 ], [ 46.933594, 47.989922 ], [ 46.933594, 47.872144 ], [ 47.109375, 47.872144 ], [ 47.109375, 47.754098 ], [ 47.988281, 47.754098 ], [ 47.988281, 47.635784 ], [ 48.164062, 47.635784 ], [ 48.164062, 47.398349 ], [ 48.339844, 47.398349 ], [ 48.339844, 47.279229 ], [ 48.515625, 47.279229 ], [ 48.515625, 47.040182 ], [ 48.691406, 47.040182 ], [ 48.691406, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.558860 ], [ 48.691406, 46.558860 ], [ 48.691406, 46.437857 ], [ 49.042969, 46.437857 ], [ 49.042969, 46.195042 ], [ 48.867188, 46.195042 ], [ 48.867188, 45.951150 ], [ 48.691406, 45.951150 ], [ 48.691406, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.706179 ], [ 47.988281, 45.706179 ], [ 47.988281, 45.583290 ], [ 47.636719, 45.583290 ], [ 47.636719, 45.460131 ], [ 47.460938, 45.460131 ], [ 47.460938, 45.213004 ], [ 47.285156, 45.213004 ], [ 47.285156, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.840291 ], [ 46.933594, 44.840291 ], [ 46.933594, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.465151 ], [ 46.933594, 44.465151 ], [ 46.933594, 44.213710 ], [ 47.109375, 44.213710 ], [ 47.109375, 44.087585 ], [ 47.285156, 44.087585 ], [ 47.285156, 43.961191 ], [ 47.460938, 43.961191 ], [ 47.460938, 43.707594 ], [ 47.636719, 43.707594 ], [ 47.636719, 43.325178 ], [ 47.460938, 43.325178 ], [ 47.460938, 42.811522 ], [ 47.636719, 42.811522 ], [ 47.636719, 42.553080 ], [ 47.812500, 42.553080 ], [ 47.812500, 42.423457 ], [ 47.988281, 42.423457 ], [ 47.988281, 42.163403 ], [ 48.164062, 42.163403 ], [ 48.164062, 42.032974 ], [ 48.339844, 42.032974 ], [ 48.339844, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.640078 ], [ 48.339844, 41.640078 ], [ 48.339844, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.112469 ], [ 47.460938, 41.112469 ], [ 47.460938, 41.244772 ], [ 47.285156, 41.244772 ], [ 47.285156, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.640078 ], [ 46.757812, 41.640078 ], [ 46.757812, 41.771312 ], [ 46.406250, 41.771312 ], [ 46.406250, 41.902277 ], [ 45.878906, 41.902277 ], [ 45.878906, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.527344, 42.293564 ], [ 45.527344, 42.553080 ], [ 44.824219, 42.553080 ], [ 44.824219, 42.682435 ], [ 44.472656, 42.682435 ], [ 44.472656, 42.553080 ], [ 44.121094, 42.553080 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.230469, 66.722541 ], [ 46.230469, 66.652977 ], [ 46.757812, 66.652977 ], [ 46.757812, 66.722541 ], [ 47.109375, 66.722541 ], [ 47.109375, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 66.861082 ], [ 72.070312, 66.861082 ], [ 72.070312, 66.791909 ], [ 71.894531, 66.791909 ], [ 71.894531, 66.652977 ], [ 71.718750, 66.652977 ], [ 71.718750, 66.513260 ], [ 71.542969, 66.513260 ], [ 71.542969, 66.372755 ], [ 71.367188, 66.372755 ], [ 71.367188, 66.302205 ], [ 71.542969, 66.302205 ], [ 71.542969, 66.231457 ], [ 72.070312, 66.231457 ], [ 72.070312, 66.160511 ], [ 72.421875, 66.160511 ], [ 72.421875, 66.231457 ], [ 72.597656, 66.231457 ], [ 72.597656, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 72.949219, 66.513260 ], [ 72.949219, 66.583217 ], [ 73.300781, 66.583217 ], [ 73.300781, 66.652977 ], [ 73.652344, 66.652977 ], [ 73.652344, 66.722541 ], [ 74.003906, 66.722541 ], [ 74.003906, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 45.878906, 42.032974 ], [ 45.878906, 41.902277 ], [ 46.406250, 41.902277 ], [ 46.406250, 41.771312 ], [ 46.230469, 41.771312 ], [ 46.230469, 41.640078 ], [ 46.406250, 41.640078 ], [ 46.406250, 41.376809 ], [ 46.582031, 41.376809 ], [ 46.582031, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.112469 ], [ 44.121094, 41.112469 ], [ 44.121094, 42.553080 ], [ 44.472656, 42.553080 ], [ 44.472656, 42.682435 ], [ 44.824219, 42.682435 ], [ 44.824219, 42.553080 ], [ 45.527344, 42.553080 ], [ 45.527344, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 42.682435 ], [ 44.824219, 42.553080 ], [ 45.527344, 42.553080 ], [ 45.527344, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 45.878906, 42.032974 ], [ 45.878906, 41.902277 ], [ 46.406250, 41.902277 ], [ 46.406250, 41.771312 ], [ 46.230469, 41.771312 ], [ 46.230469, 41.640078 ], [ 46.406250, 41.640078 ], [ 46.406250, 41.376809 ], [ 46.582031, 41.376809 ], [ 46.582031, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.112469 ], [ 44.121094, 41.112469 ], [ 44.121094, 42.553080 ], [ 44.472656, 42.553080 ], [ 44.472656, 42.682435 ], [ 44.824219, 42.682435 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 62.929688, 43.707594 ], [ 62.929688, 43.580391 ], [ 62.402344, 43.580391 ], [ 62.402344, 43.452919 ], [ 61.875000, 43.452919 ], [ 61.875000, 43.707594 ], [ 61.699219, 43.707594 ], [ 61.699219, 43.834527 ], [ 61.523438, 43.834527 ], [ 61.523438, 43.961191 ], [ 61.347656, 43.961191 ], [ 61.347656, 44.213710 ], [ 61.171875, 44.213710 ], [ 61.171875, 44.339565 ], [ 60.996094, 44.339565 ], [ 60.996094, 44.465151 ], [ 60.820312, 44.465151 ], [ 60.820312, 44.590467 ], [ 60.468750, 44.590467 ], [ 60.468750, 44.715514 ], [ 60.292969, 44.715514 ], [ 60.292969, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.964798 ], [ 59.765625, 44.964798 ], [ 59.765625, 45.089036 ], [ 59.414062, 45.089036 ], [ 59.414062, 45.213004 ], [ 59.062500, 45.213004 ], [ 59.062500, 45.336702 ], [ 58.710938, 45.336702 ], [ 58.710938, 45.460131 ], [ 58.535156, 45.460131 ], [ 58.535156, 45.583290 ], [ 58.359375, 45.583290 ], [ 58.359375, 45.460131 ], [ 57.832031, 45.460131 ], [ 57.832031, 45.336702 ], [ 57.304688, 45.336702 ], [ 57.304688, 45.213004 ], [ 56.777344, 45.213004 ], [ 56.777344, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 44.964798 ], [ 55.898438, 44.964798 ], [ 55.898438, 41.244772 ], [ 55.195312, 41.244772 ], [ 55.195312, 41.508577 ], [ 55.019531, 41.508577 ], [ 55.019531, 41.640078 ], [ 54.843750, 41.640078 ], [ 54.843750, 41.902277 ], [ 54.667969, 41.902277 ], [ 54.667969, 42.032974 ], [ 54.492188, 42.032974 ], [ 54.492188, 42.163403 ], [ 54.140625, 42.163403 ], [ 54.140625, 42.293564 ], [ 53.613281, 42.293564 ], [ 53.613281, 42.163403 ], [ 52.910156, 42.163403 ], [ 52.910156, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 41.771312 ], [ 52.558594, 41.771312 ], [ 52.558594, 41.902277 ], [ 52.382812, 41.902277 ], [ 52.382812, 42.032974 ], [ 52.558594, 42.032974 ], [ 52.558594, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.553080 ], [ 52.558594, 42.553080 ], [ 52.558594, 42.811522 ], [ 52.207031, 42.811522 ], [ 52.207031, 42.940339 ], [ 51.503906, 42.940339 ], [ 51.503906, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.325178 ], [ 51.152344, 43.325178 ], [ 51.152344, 43.834527 ], [ 50.976562, 43.834527 ], [ 50.976562, 44.087585 ], [ 50.625000, 44.087585 ], [ 50.625000, 44.213710 ], [ 50.273438, 44.213710 ], [ 50.273438, 44.590467 ], [ 50.625000, 44.590467 ], [ 50.625000, 44.465151 ], [ 51.328125, 44.465151 ], [ 51.328125, 45.213004 ], [ 51.679688, 45.213004 ], [ 51.679688, 45.336702 ], [ 52.031250, 45.336702 ], [ 52.031250, 45.460131 ], [ 52.382812, 45.460131 ], [ 52.382812, 45.336702 ], [ 52.734375, 45.336702 ], [ 52.734375, 45.213004 ], [ 53.085938, 45.213004 ], [ 53.085938, 45.706179 ], [ 53.261719, 45.706179 ], [ 53.261719, 46.437857 ], [ 53.085938, 46.437857 ], [ 53.085938, 46.800059 ], [ 51.679688, 46.800059 ], [ 51.679688, 46.920255 ], [ 51.328125, 46.920255 ], [ 51.328125, 47.040182 ], [ 51.152344, 47.040182 ], [ 51.152344, 46.920255 ], [ 50.800781, 46.920255 ], [ 50.800781, 46.800059 ], [ 50.625000, 46.800059 ], [ 50.625000, 46.679594 ], [ 50.273438, 46.679594 ], [ 50.273438, 46.558860 ], [ 49.746094, 46.558860 ], [ 49.746094, 46.437857 ], [ 48.691406, 46.437857 ], [ 48.691406, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 46.800059 ], [ 48.691406, 46.800059 ], [ 48.691406, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 47.279229 ], [ 48.339844, 47.279229 ], [ 48.339844, 47.398349 ], [ 48.164062, 47.398349 ], [ 48.164062, 47.635784 ], [ 47.988281, 47.635784 ], [ 47.988281, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.872144 ], [ 46.933594, 47.872144 ], [ 46.933594, 47.989922 ], [ 46.757812, 47.989922 ], [ 46.757812, 48.107431 ], [ 46.582031, 48.107431 ], [ 46.582031, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.341646 ], [ 46.582031, 48.341646 ], [ 46.582031, 48.574790 ], [ 46.757812, 48.574790 ], [ 46.757812, 48.806863 ], [ 46.933594, 48.806863 ], [ 46.933594, 49.037868 ], [ 47.109375, 49.037868 ], [ 47.109375, 49.152970 ], [ 46.933594, 49.152970 ], [ 46.933594, 49.267805 ], [ 46.757812, 49.267805 ], [ 46.757812, 49.382373 ], [ 46.933594, 49.382373 ], [ 46.933594, 49.610710 ], [ 47.109375, 49.610710 ], [ 47.109375, 49.837982 ], [ 47.285156, 49.837982 ], [ 47.285156, 50.064192 ], [ 47.460938, 50.064192 ], [ 47.460938, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.176898 ], [ 47.988281, 50.176898 ], [ 47.988281, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 49.951220 ], [ 48.339844, 49.951220 ], [ 48.339844, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.176898 ], [ 48.691406, 50.176898 ], [ 48.691406, 50.625073 ], [ 48.867188, 50.625073 ], [ 48.867188, 50.736455 ], [ 49.042969, 50.736455 ], [ 49.042969, 50.847573 ], [ 49.394531, 50.847573 ], [ 49.394531, 50.958427 ], [ 49.570312, 50.958427 ], [ 49.570312, 51.069017 ], [ 49.746094, 51.069017 ], [ 49.746094, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 51.289406 ], [ 50.097656, 51.289406 ], [ 50.097656, 51.399206 ], [ 50.449219, 51.399206 ], [ 50.449219, 51.508742 ], [ 50.625000, 51.508742 ], [ 50.625000, 51.618017 ], [ 50.800781, 51.618017 ], [ 50.800781, 51.727028 ], [ 52.382812, 51.727028 ], [ 52.382812, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.508742 ], [ 53.085938, 51.508742 ], [ 53.085938, 51.399206 ], [ 53.437500, 51.399206 ], [ 53.437500, 51.289406 ], [ 53.789062, 51.289406 ], [ 53.789062, 51.179343 ], [ 54.140625, 51.179343 ], [ 54.140625, 51.069017 ], [ 54.492188, 51.069017 ], [ 54.492188, 50.958427 ], [ 54.843750, 50.958427 ], [ 54.843750, 50.847573 ], [ 55.195312, 50.847573 ], [ 55.195312, 50.736455 ], [ 55.546875, 50.736455 ], [ 55.546875, 50.625073 ], [ 55.898438, 50.625073 ], [ 55.898438, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 50.847573 ], [ 56.425781, 50.847573 ], [ 56.425781, 50.958427 ], [ 56.777344, 50.958427 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 58.359375, 50.958427 ], [ 58.710938, 50.958427 ], [ 58.710938, 50.847573 ], [ 58.886719, 50.847573 ], [ 58.886719, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.625073 ], [ 59.414062, 50.625073 ], [ 59.414062, 50.513427 ], [ 59.765625, 50.513427 ], [ 59.765625, 50.736455 ], [ 59.941406, 50.736455 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.847573 ], [ 61.347656, 51.069017 ], [ 61.523438, 51.069017 ], [ 61.523438, 51.289406 ], [ 61.347656, 51.289406 ], [ 61.347656, 51.399206 ], [ 60.996094, 51.399206 ], [ 60.996094, 51.508742 ], [ 60.820312, 51.508742 ], [ 60.820312, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.727028 ], [ 60.292969, 51.727028 ], [ 60.292969, 51.835778 ], [ 59.941406, 51.835778 ], [ 59.941406, 51.944265 ], [ 60.117188, 51.944265 ], [ 60.117188, 52.052490 ], [ 60.292969, 52.052490 ], [ 60.292969, 52.160455 ], [ 60.644531, 52.160455 ], [ 60.644531, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.375599 ], [ 60.996094, 52.375599 ], [ 60.996094, 52.589701 ], [ 60.820312, 52.589701 ], [ 60.820312, 52.696361 ], [ 60.996094, 52.696361 ], [ 60.996094, 52.802761 ], [ 61.347656, 52.802761 ], [ 61.347656, 52.908902 ], [ 61.699219, 52.908902 ], [ 61.699219, 53.014783 ], [ 61.523438, 53.014783 ], [ 61.523438, 53.225768 ], [ 61.347656, 53.225768 ], [ 61.347656, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.540307 ], [ 60.996094, 53.540307 ], [ 60.996094, 53.644638 ], [ 61.171875, 53.644638 ], [ 61.171875, 53.748711 ], [ 61.347656, 53.748711 ], [ 61.347656, 53.852527 ], [ 61.523438, 53.852527 ], [ 61.523438, 53.956086 ], [ 62.050781, 53.956086 ], [ 62.050781, 54.059388 ], [ 62.929688, 54.059388 ], [ 62.929688, 54.162434 ], [ 63.984375, 54.162434 ], [ 63.984375, 54.265224 ], [ 64.863281, 54.265224 ], [ 64.863281, 54.367759 ], [ 65.214844, 54.367759 ], [ 65.214844, 43.452919 ], [ 65.039062, 43.452919 ], [ 65.039062, 43.580391 ], [ 64.863281, 43.580391 ], [ 64.863281, 43.707594 ], [ 62.929688, 43.707594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.214844, 54.367759 ], [ 65.214844, 43.452919 ], [ 65.039062, 43.452919 ], [ 65.039062, 43.580391 ], [ 64.863281, 43.580391 ], [ 64.863281, 43.707594 ], [ 62.929688, 43.707594 ], [ 62.929688, 43.580391 ], [ 62.402344, 43.580391 ], [ 62.402344, 43.452919 ], [ 61.875000, 43.452919 ], [ 61.875000, 43.707594 ], [ 61.699219, 43.707594 ], [ 61.699219, 43.834527 ], [ 61.523438, 43.834527 ], [ 61.523438, 43.961191 ], [ 61.347656, 43.961191 ], [ 61.347656, 44.213710 ], [ 61.171875, 44.213710 ], [ 61.171875, 44.339565 ], [ 60.996094, 44.339565 ], [ 60.996094, 44.465151 ], [ 60.820312, 44.465151 ], [ 60.820312, 44.590467 ], [ 60.468750, 44.590467 ], [ 60.468750, 44.715514 ], [ 60.292969, 44.715514 ], [ 60.292969, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.964798 ], [ 59.765625, 44.964798 ], [ 59.765625, 45.089036 ], [ 59.414062, 45.089036 ], [ 59.414062, 45.213004 ], [ 59.062500, 45.213004 ], [ 59.062500, 45.336702 ], [ 58.710938, 45.336702 ], [ 58.710938, 45.460131 ], [ 58.535156, 45.460131 ], [ 58.535156, 45.583290 ], [ 58.359375, 45.583290 ], [ 58.359375, 45.460131 ], [ 57.832031, 45.460131 ], [ 57.832031, 45.336702 ], [ 57.304688, 45.336702 ], [ 57.304688, 45.213004 ], [ 56.777344, 45.213004 ], [ 56.777344, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 44.964798 ], [ 55.898438, 44.964798 ], [ 55.898438, 41.244772 ], [ 55.195312, 41.244772 ], [ 55.195312, 41.508577 ], [ 55.019531, 41.508577 ], [ 55.019531, 41.640078 ], [ 54.843750, 41.640078 ], [ 54.843750, 41.902277 ], [ 54.667969, 41.902277 ], [ 54.667969, 42.032974 ], [ 54.492188, 42.032974 ], [ 54.492188, 42.163403 ], [ 54.140625, 42.163403 ], [ 54.140625, 42.293564 ], [ 53.613281, 42.293564 ], [ 53.613281, 42.163403 ], [ 52.910156, 42.163403 ], [ 52.910156, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 41.771312 ], [ 52.558594, 41.771312 ], [ 52.558594, 41.902277 ], [ 52.382812, 41.902277 ], [ 52.382812, 42.032974 ], [ 52.558594, 42.032974 ], [ 52.558594, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.553080 ], [ 52.558594, 42.553080 ], [ 52.558594, 42.811522 ], [ 52.207031, 42.811522 ], [ 52.207031, 42.940339 ], [ 51.503906, 42.940339 ], [ 51.503906, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.325178 ], [ 51.152344, 43.325178 ], [ 51.152344, 43.834527 ], [ 50.976562, 43.834527 ], [ 50.976562, 44.087585 ], [ 50.625000, 44.087585 ], [ 50.625000, 44.213710 ], [ 50.273438, 44.213710 ], [ 50.273438, 44.590467 ], [ 50.625000, 44.590467 ], [ 50.625000, 44.465151 ], [ 51.328125, 44.465151 ], [ 51.328125, 45.213004 ], [ 51.679688, 45.213004 ], [ 51.679688, 45.336702 ], [ 52.031250, 45.336702 ], [ 52.031250, 45.460131 ], [ 52.382812, 45.460131 ], [ 52.382812, 45.336702 ], [ 52.734375, 45.336702 ], [ 52.734375, 45.213004 ], [ 53.085938, 45.213004 ], [ 53.085938, 45.706179 ], [ 53.261719, 45.706179 ], [ 53.261719, 46.437857 ], [ 53.085938, 46.437857 ], [ 53.085938, 46.800059 ], [ 51.679688, 46.800059 ], [ 51.679688, 46.920255 ], [ 51.328125, 46.920255 ], [ 51.328125, 47.040182 ], [ 51.152344, 47.040182 ], [ 51.152344, 46.920255 ], [ 50.800781, 46.920255 ], [ 50.800781, 46.800059 ], [ 50.625000, 46.800059 ], [ 50.625000, 46.679594 ], [ 50.273438, 46.679594 ], [ 50.273438, 46.558860 ], [ 49.746094, 46.558860 ], [ 49.746094, 46.437857 ], [ 48.691406, 46.437857 ], [ 48.691406, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 46.800059 ], [ 48.691406, 46.800059 ], [ 48.691406, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 47.279229 ], [ 48.339844, 47.279229 ], [ 48.339844, 47.398349 ], [ 48.164062, 47.398349 ], [ 48.164062, 47.635784 ], [ 47.988281, 47.635784 ], [ 47.988281, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.872144 ], [ 46.933594, 47.872144 ], [ 46.933594, 47.989922 ], [ 46.757812, 47.989922 ], [ 46.757812, 48.107431 ], [ 46.582031, 48.107431 ], [ 46.582031, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.341646 ], [ 46.582031, 48.341646 ], [ 46.582031, 48.574790 ], [ 46.757812, 48.574790 ], [ 46.757812, 48.806863 ], [ 46.933594, 48.806863 ], [ 46.933594, 49.037868 ], [ 47.109375, 49.037868 ], [ 47.109375, 49.152970 ], [ 46.933594, 49.152970 ], [ 46.933594, 49.267805 ], [ 46.757812, 49.267805 ], [ 46.757812, 49.382373 ], [ 46.933594, 49.382373 ], [ 46.933594, 49.610710 ], [ 47.109375, 49.610710 ], [ 47.109375, 49.837982 ], [ 47.285156, 49.837982 ], [ 47.285156, 50.064192 ], [ 47.460938, 50.064192 ], [ 47.460938, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.176898 ], [ 47.988281, 50.176898 ], [ 47.988281, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 49.951220 ], [ 48.339844, 49.951220 ], [ 48.339844, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.176898 ], [ 48.691406, 50.176898 ], [ 48.691406, 50.625073 ], [ 48.867188, 50.625073 ], [ 48.867188, 50.736455 ], [ 49.042969, 50.736455 ], [ 49.042969, 50.847573 ], [ 49.394531, 50.847573 ], [ 49.394531, 50.958427 ], [ 49.570312, 50.958427 ], [ 49.570312, 51.069017 ], [ 49.746094, 51.069017 ], [ 49.746094, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 51.289406 ], [ 50.097656, 51.289406 ], [ 50.097656, 51.399206 ], [ 50.449219, 51.399206 ], [ 50.449219, 51.508742 ], [ 50.625000, 51.508742 ], [ 50.625000, 51.618017 ], [ 50.800781, 51.618017 ], [ 50.800781, 51.727028 ], [ 52.382812, 51.727028 ], [ 52.382812, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.508742 ], [ 53.085938, 51.508742 ], [ 53.085938, 51.399206 ], [ 53.437500, 51.399206 ], [ 53.437500, 51.289406 ], [ 53.789062, 51.289406 ], [ 53.789062, 51.179343 ], [ 54.140625, 51.179343 ], [ 54.140625, 51.069017 ], [ 54.492188, 51.069017 ], [ 54.492188, 50.958427 ], [ 54.843750, 50.958427 ], [ 54.843750, 50.847573 ], [ 55.195312, 50.847573 ], [ 55.195312, 50.736455 ], [ 55.546875, 50.736455 ], [ 55.546875, 50.625073 ], [ 55.898438, 50.625073 ], [ 55.898438, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 50.847573 ], [ 56.425781, 50.847573 ], [ 56.425781, 50.958427 ], [ 56.777344, 50.958427 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 58.359375, 50.958427 ], [ 58.710938, 50.958427 ], [ 58.710938, 50.847573 ], [ 58.886719, 50.847573 ], [ 58.886719, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.625073 ], [ 59.414062, 50.625073 ], [ 59.414062, 50.513427 ], [ 59.765625, 50.513427 ], [ 59.765625, 50.736455 ], [ 59.941406, 50.736455 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.847573 ], [ 61.347656, 51.069017 ], [ 61.523438, 51.069017 ], [ 61.523438, 51.289406 ], [ 61.347656, 51.289406 ], [ 61.347656, 51.399206 ], [ 60.996094, 51.399206 ], [ 60.996094, 51.508742 ], [ 60.820312, 51.508742 ], [ 60.820312, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.727028 ], [ 60.292969, 51.727028 ], [ 60.292969, 51.835778 ], [ 59.941406, 51.835778 ], [ 59.941406, 51.944265 ], [ 60.117188, 51.944265 ], [ 60.117188, 52.052490 ], [ 60.292969, 52.052490 ], [ 60.292969, 52.160455 ], [ 60.644531, 52.160455 ], [ 60.644531, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.375599 ], [ 60.996094, 52.375599 ], [ 60.996094, 52.589701 ], [ 60.820312, 52.589701 ], [ 60.820312, 52.696361 ], [ 60.996094, 52.696361 ], [ 60.996094, 52.802761 ], [ 61.347656, 52.802761 ], [ 61.347656, 52.908902 ], [ 61.699219, 52.908902 ], [ 61.699219, 53.014783 ], [ 61.523438, 53.014783 ], [ 61.523438, 53.225768 ], [ 61.347656, 53.225768 ], [ 61.347656, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.540307 ], [ 60.996094, 53.540307 ], [ 60.996094, 53.644638 ], [ 61.171875, 53.644638 ], [ 61.171875, 53.748711 ], [ 61.347656, 53.748711 ], [ 61.347656, 53.852527 ], [ 61.523438, 53.852527 ], [ 61.523438, 53.956086 ], [ 62.050781, 53.956086 ], [ 62.050781, 54.059388 ], [ 62.929688, 54.059388 ], [ 62.929688, 54.162434 ], [ 63.984375, 54.162434 ], [ 63.984375, 54.265224 ], [ 64.863281, 54.265224 ], [ 64.863281, 54.367759 ], [ 65.214844, 54.367759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 55.178868 ], [ 70.839844, 55.178868 ], [ 70.839844, 54.876607 ], [ 71.015625, 54.876607 ], [ 71.015625, 54.367759 ], [ 71.191406, 54.367759 ], [ 71.191406, 54.162434 ], [ 71.542969, 54.162434 ], [ 71.542969, 54.265224 ], [ 72.070312, 54.265224 ], [ 72.070312, 54.367759 ], [ 72.421875, 54.367759 ], [ 72.421875, 54.265224 ], [ 72.773438, 54.265224 ], [ 72.773438, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 54.059388 ], [ 73.476562, 54.059388 ], [ 73.476562, 53.540307 ], [ 74.531250, 53.540307 ], [ 74.531250, 53.644638 ], [ 74.882812, 53.644638 ], [ 74.882812, 53.748711 ], [ 75.058594, 53.748711 ], [ 75.058594, 53.852527 ], [ 75.410156, 53.852527 ], [ 75.410156, 53.956086 ], [ 75.761719, 53.956086 ], [ 75.761719, 54.059388 ], [ 75.937500, 54.059388 ], [ 75.937500, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.265224 ], [ 76.464844, 54.265224 ], [ 76.464844, 54.367759 ], [ 76.640625, 54.367759 ], [ 76.640625, 54.162434 ], [ 76.464844, 54.162434 ], [ 76.464844, 54.059388 ], [ 76.640625, 54.059388 ], [ 76.640625, 53.956086 ], [ 76.816406, 53.956086 ], [ 76.816406, 53.852527 ], [ 76.992188, 53.852527 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.644638 ], [ 77.519531, 53.644638 ], [ 77.519531, 53.540307 ], [ 77.695312, 53.540307 ], [ 77.695312, 53.435719 ], [ 77.871094, 53.435719 ], [ 77.871094, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 53.120405 ], [ 78.222656, 53.120405 ], [ 78.222656, 52.908902 ], [ 78.398438, 52.908902 ], [ 78.398438, 52.696361 ], [ 78.574219, 52.696361 ], [ 78.574219, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.268157 ], [ 78.925781, 52.268157 ], [ 78.925781, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.835778 ], [ 79.277344, 51.835778 ], [ 79.277344, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.628906, 51.399206 ], [ 79.628906, 51.179343 ], [ 79.804688, 51.179343 ], [ 79.804688, 50.958427 ], [ 79.980469, 50.958427 ], [ 79.980469, 50.847573 ], [ 80.156250, 50.847573 ], [ 80.156250, 51.069017 ], [ 80.332031, 51.069017 ], [ 80.332031, 51.289406 ], [ 80.859375, 51.289406 ], [ 80.859375, 51.179343 ], [ 81.035156, 51.179343 ], [ 81.035156, 51.069017 ], [ 81.386719, 51.069017 ], [ 81.386719, 50.958427 ], [ 81.738281, 50.958427 ], [ 81.738281, 50.847573 ], [ 82.441406, 50.847573 ], [ 82.441406, 50.958427 ], [ 83.144531, 50.958427 ], [ 83.144531, 51.069017 ], [ 83.320312, 51.069017 ], [ 83.320312, 50.958427 ], [ 83.671875, 50.958427 ], [ 83.671875, 50.847573 ], [ 83.847656, 50.847573 ], [ 83.847656, 50.736455 ], [ 84.023438, 50.736455 ], [ 84.023438, 50.513427 ], [ 84.199219, 50.513427 ], [ 84.199219, 50.289339 ], [ 84.375000, 50.289339 ], [ 84.375000, 50.176898 ], [ 84.726562, 50.176898 ], [ 84.726562, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 49.951220 ], [ 85.253906, 49.951220 ], [ 85.253906, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.724479 ], [ 86.308594, 49.724479 ], [ 86.308594, 49.837982 ], [ 86.835938, 49.837982 ], [ 86.835938, 49.724479 ], [ 87.011719, 49.724479 ], [ 87.011719, 49.496675 ], [ 87.187500, 49.496675 ], [ 87.187500, 49.267805 ], [ 87.363281, 49.267805 ], [ 87.363281, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 48.922499 ], [ 87.011719, 48.922499 ], [ 87.011719, 48.806863 ], [ 86.835938, 48.806863 ], [ 86.835938, 48.574790 ], [ 86.308594, 48.574790 ], [ 86.308594, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.279229 ], [ 85.605469, 47.279229 ], [ 85.605469, 47.159840 ], [ 85.253906, 47.159840 ], [ 85.253906, 47.040182 ], [ 84.550781, 47.040182 ], [ 84.550781, 47.159840 ], [ 83.496094, 47.159840 ], [ 83.496094, 47.279229 ], [ 83.144531, 47.279229 ], [ 83.144531, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 46.558860 ], [ 82.792969, 46.558860 ], [ 82.792969, 46.195042 ], [ 82.617188, 46.195042 ], [ 82.617188, 45.706179 ], [ 82.441406, 45.706179 ], [ 82.441406, 45.460131 ], [ 82.089844, 45.460131 ], [ 82.089844, 45.336702 ], [ 81.738281, 45.336702 ], [ 81.738281, 45.213004 ], [ 81.035156, 45.213004 ], [ 81.035156, 45.089036 ], [ 80.332031, 45.089036 ], [ 80.332031, 44.964798 ], [ 79.980469, 44.964798 ], [ 79.980469, 44.715514 ], [ 80.156250, 44.715514 ], [ 80.156250, 44.339565 ], [ 80.332031, 44.339565 ], [ 80.332031, 44.087585 ], [ 80.507812, 44.087585 ], [ 80.507812, 43.707594 ], [ 80.683594, 43.707594 ], [ 80.683594, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 43.068888 ], [ 80.507812, 43.068888 ], [ 80.507812, 42.940339 ], [ 80.156250, 42.940339 ], [ 80.156250, 42.553080 ], [ 80.332031, 42.553080 ], [ 80.332031, 42.293564 ], [ 79.980469, 42.293564 ], [ 79.980469, 42.423457 ], [ 79.628906, 42.423457 ], [ 79.628906, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 42.682435 ], [ 79.101562, 42.682435 ], [ 79.101562, 42.811522 ], [ 78.222656, 42.811522 ], [ 78.222656, 42.940339 ], [ 75.234375, 42.940339 ], [ 75.234375, 43.068888 ], [ 74.707031, 43.068888 ], [ 74.707031, 43.197167 ], [ 74.355469, 43.197167 ], [ 74.355469, 43.325178 ], [ 74.179688, 43.325178 ], [ 74.179688, 43.197167 ], [ 73.828125, 43.197167 ], [ 73.828125, 43.068888 ], [ 73.652344, 43.068888 ], [ 73.652344, 42.811522 ], [ 73.476562, 42.811522 ], [ 73.476562, 42.553080 ], [ 72.949219, 42.553080 ], [ 72.949219, 42.682435 ], [ 72.246094, 42.682435 ], [ 72.246094, 42.811522 ], [ 71.718750, 42.811522 ], [ 71.718750, 42.682435 ], [ 71.191406, 42.682435 ], [ 71.191406, 42.423457 ], [ 71.015625, 42.423457 ], [ 71.015625, 42.163403 ], [ 70.664062, 42.163403 ], [ 70.664062, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.902277 ], [ 69.960938, 41.902277 ], [ 69.960938, 41.771312 ], [ 69.785156, 41.771312 ], [ 69.785156, 41.640078 ], [ 69.609375, 41.640078 ], [ 69.609375, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.376809 ], [ 69.082031, 41.376809 ], [ 69.082031, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 40.979898 ], [ 68.730469, 40.979898 ], [ 68.730469, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 66.796875, 41.112469 ], [ 66.796875, 41.244772 ], [ 66.621094, 41.244772 ], [ 66.621094, 41.771312 ], [ 66.445312, 41.771312 ], [ 66.445312, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 42.940339 ], [ 65.917969, 42.940339 ], [ 65.917969, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.197167 ], [ 65.566406, 43.197167 ], [ 65.566406, 43.325178 ], [ 65.214844, 43.325178 ], [ 65.214844, 54.367759 ], [ 65.390625, 54.367759 ], [ 65.390625, 54.470038 ], [ 65.742188, 54.470038 ], [ 65.742188, 54.572062 ], [ 66.093750, 54.572062 ], [ 66.093750, 54.673831 ], [ 66.796875, 54.673831 ], [ 66.796875, 54.775346 ], [ 67.324219, 54.775346 ], [ 67.324219, 54.876607 ], [ 68.027344, 54.876607 ], [ 68.027344, 54.977614 ], [ 68.378906, 54.977614 ], [ 68.378906, 55.078367 ], [ 68.554688, 55.078367 ], [ 68.554688, 55.178868 ], [ 68.906250, 55.178868 ], [ 68.906250, 55.279115 ], [ 69.082031, 55.279115 ], [ 69.082031, 55.379110 ], [ 69.433594, 55.379110 ], [ 69.433594, 55.279115 ], [ 70.312500, 55.279115 ], [ 70.312500, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.433594, 55.379110 ], [ 69.433594, 55.279115 ], [ 70.312500, 55.279115 ], [ 70.312500, 55.178868 ], [ 70.839844, 55.178868 ], [ 70.839844, 54.876607 ], [ 71.015625, 54.876607 ], [ 71.015625, 54.367759 ], [ 71.191406, 54.367759 ], [ 71.191406, 54.162434 ], [ 71.542969, 54.162434 ], [ 71.542969, 54.265224 ], [ 72.070312, 54.265224 ], [ 72.070312, 54.367759 ], [ 72.421875, 54.367759 ], [ 72.421875, 54.265224 ], [ 72.773438, 54.265224 ], [ 72.773438, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 54.059388 ], [ 73.476562, 54.059388 ], [ 73.476562, 53.540307 ], [ 74.531250, 53.540307 ], [ 74.531250, 53.644638 ], [ 74.882812, 53.644638 ], [ 74.882812, 53.748711 ], [ 75.058594, 53.748711 ], [ 75.058594, 53.852527 ], [ 75.410156, 53.852527 ], [ 75.410156, 53.956086 ], [ 75.761719, 53.956086 ], [ 75.761719, 54.059388 ], [ 75.937500, 54.059388 ], [ 75.937500, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.265224 ], [ 76.464844, 54.265224 ], [ 76.464844, 54.367759 ], [ 76.640625, 54.367759 ], [ 76.640625, 54.162434 ], [ 76.464844, 54.162434 ], [ 76.464844, 54.059388 ], [ 76.640625, 54.059388 ], [ 76.640625, 53.956086 ], [ 76.816406, 53.956086 ], [ 76.816406, 53.852527 ], [ 76.992188, 53.852527 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.644638 ], [ 77.519531, 53.644638 ], [ 77.519531, 53.540307 ], [ 77.695312, 53.540307 ], [ 77.695312, 53.435719 ], [ 77.871094, 53.435719 ], [ 77.871094, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 53.120405 ], [ 78.222656, 53.120405 ], [ 78.222656, 52.908902 ], [ 78.398438, 52.908902 ], [ 78.398438, 52.696361 ], [ 78.574219, 52.696361 ], [ 78.574219, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.268157 ], [ 78.925781, 52.268157 ], [ 78.925781, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.835778 ], [ 79.277344, 51.835778 ], [ 79.277344, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.628906, 51.399206 ], [ 79.628906, 51.179343 ], [ 79.804688, 51.179343 ], [ 79.804688, 50.958427 ], [ 79.980469, 50.958427 ], [ 79.980469, 50.847573 ], [ 80.156250, 50.847573 ], [ 80.156250, 51.069017 ], [ 80.332031, 51.069017 ], [ 80.332031, 51.289406 ], [ 80.859375, 51.289406 ], [ 80.859375, 51.179343 ], [ 81.035156, 51.179343 ], [ 81.035156, 51.069017 ], [ 81.386719, 51.069017 ], [ 81.386719, 50.958427 ], [ 81.738281, 50.958427 ], [ 81.738281, 50.847573 ], [ 82.441406, 50.847573 ], [ 82.441406, 50.958427 ], [ 83.144531, 50.958427 ], [ 83.144531, 51.069017 ], [ 83.320312, 51.069017 ], [ 83.320312, 50.958427 ], [ 83.671875, 50.958427 ], [ 83.671875, 50.847573 ], [ 83.847656, 50.847573 ], [ 83.847656, 50.736455 ], [ 84.023438, 50.736455 ], [ 84.023438, 50.513427 ], [ 84.199219, 50.513427 ], [ 84.199219, 50.289339 ], [ 84.375000, 50.289339 ], [ 84.375000, 50.176898 ], [ 84.726562, 50.176898 ], [ 84.726562, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 49.951220 ], [ 85.253906, 49.951220 ], [ 85.253906, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.724479 ], [ 86.308594, 49.724479 ], [ 86.308594, 49.837982 ], [ 86.835938, 49.837982 ], [ 86.835938, 49.724479 ], [ 87.011719, 49.724479 ], [ 87.011719, 49.496675 ], [ 87.187500, 49.496675 ], [ 87.187500, 49.267805 ], [ 87.363281, 49.267805 ], [ 87.363281, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 48.922499 ], [ 87.011719, 48.922499 ], [ 87.011719, 48.806863 ], [ 86.835938, 48.806863 ], [ 86.835938, 48.574790 ], [ 86.308594, 48.574790 ], [ 86.308594, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.279229 ], [ 85.605469, 47.279229 ], [ 85.605469, 47.159840 ], [ 85.253906, 47.159840 ], [ 85.253906, 47.040182 ], [ 84.550781, 47.040182 ], [ 84.550781, 47.159840 ], [ 83.496094, 47.159840 ], [ 83.496094, 47.279229 ], [ 83.144531, 47.279229 ], [ 83.144531, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 46.558860 ], [ 82.792969, 46.558860 ], [ 82.792969, 46.195042 ], [ 82.617188, 46.195042 ], [ 82.617188, 45.706179 ], [ 82.441406, 45.706179 ], [ 82.441406, 45.460131 ], [ 82.089844, 45.460131 ], [ 82.089844, 45.336702 ], [ 81.738281, 45.336702 ], [ 81.738281, 45.213004 ], [ 81.035156, 45.213004 ], [ 81.035156, 45.089036 ], [ 80.332031, 45.089036 ], [ 80.332031, 44.964798 ], [ 79.980469, 44.964798 ], [ 79.980469, 44.715514 ], [ 80.156250, 44.715514 ], [ 80.156250, 44.339565 ], [ 80.332031, 44.339565 ], [ 80.332031, 44.087585 ], [ 80.507812, 44.087585 ], [ 80.507812, 43.707594 ], [ 80.683594, 43.707594 ], [ 80.683594, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 43.068888 ], [ 80.507812, 43.068888 ], [ 80.507812, 42.940339 ], [ 80.156250, 42.940339 ], [ 80.156250, 42.553080 ], [ 80.332031, 42.553080 ], [ 80.332031, 42.293564 ], [ 79.980469, 42.293564 ], [ 79.980469, 42.423457 ], [ 79.628906, 42.423457 ], [ 79.628906, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 42.682435 ], [ 79.101562, 42.682435 ], [ 79.101562, 42.811522 ], [ 78.222656, 42.811522 ], [ 78.222656, 42.940339 ], [ 75.234375, 42.940339 ], [ 75.234375, 43.068888 ], [ 74.707031, 43.068888 ], [ 74.707031, 43.197167 ], [ 74.355469, 43.197167 ], [ 74.355469, 43.325178 ], [ 74.179688, 43.325178 ], [ 74.179688, 43.197167 ], [ 73.828125, 43.197167 ], [ 73.828125, 43.068888 ], [ 73.652344, 43.068888 ], [ 73.652344, 42.811522 ], [ 73.476562, 42.811522 ], [ 73.476562, 42.553080 ], [ 72.949219, 42.553080 ], [ 72.949219, 42.682435 ], [ 72.246094, 42.682435 ], [ 72.246094, 42.811522 ], [ 71.718750, 42.811522 ], [ 71.718750, 42.682435 ], [ 71.191406, 42.682435 ], [ 71.191406, 42.423457 ], [ 71.015625, 42.423457 ], [ 71.015625, 42.163403 ], [ 70.664062, 42.163403 ], [ 70.664062, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.902277 ], [ 69.960938, 41.902277 ], [ 69.960938, 41.771312 ], [ 69.785156, 41.771312 ], [ 69.785156, 41.640078 ], [ 69.609375, 41.640078 ], [ 69.609375, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.376809 ], [ 69.082031, 41.376809 ], [ 69.082031, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 40.979898 ], [ 68.730469, 40.979898 ], [ 68.730469, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 66.796875, 41.112469 ], [ 66.796875, 41.244772 ], [ 66.621094, 41.244772 ], [ 66.621094, 41.771312 ], [ 66.445312, 41.771312 ], [ 66.445312, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 42.940339 ], [ 65.917969, 42.940339 ], [ 65.917969, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.197167 ], [ 65.566406, 43.197167 ], [ 65.566406, 43.325178 ], [ 65.214844, 43.325178 ], [ 65.214844, 54.367759 ], [ 65.390625, 54.367759 ], [ 65.390625, 54.470038 ], [ 65.742188, 54.470038 ], [ 65.742188, 54.572062 ], [ 66.093750, 54.572062 ], [ 66.093750, 54.673831 ], [ 66.796875, 54.673831 ], [ 66.796875, 54.775346 ], [ 67.324219, 54.775346 ], [ 67.324219, 54.876607 ], [ 68.027344, 54.876607 ], [ 68.027344, 54.977614 ], [ 68.378906, 54.977614 ], [ 68.378906, 55.078367 ], [ 68.554688, 55.078367 ], [ 68.554688, 55.178868 ], [ 68.906250, 55.178868 ], [ 68.906250, 55.279115 ], [ 69.082031, 55.279115 ], [ 69.082031, 55.379110 ], [ 69.433594, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.710938, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.213004 ], [ 59.414062, 45.213004 ], [ 59.414062, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.964798 ], [ 60.117188, 44.964798 ], [ 60.117188, 44.840291 ], [ 60.292969, 44.840291 ], [ 60.292969, 44.715514 ], [ 60.468750, 44.715514 ], [ 60.468750, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.465151 ], [ 60.996094, 44.465151 ], [ 60.996094, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.213710 ], [ 61.347656, 44.213710 ], [ 61.347656, 43.961191 ], [ 61.523438, 43.961191 ], [ 61.523438, 43.834527 ], [ 61.699219, 43.834527 ], [ 61.699219, 43.707594 ], [ 61.875000, 43.707594 ], [ 61.875000, 43.452919 ], [ 62.402344, 43.452919 ], [ 62.402344, 43.580391 ], [ 62.929688, 43.580391 ], [ 62.929688, 43.707594 ], [ 64.863281, 43.707594 ], [ 64.863281, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.452919 ], [ 65.214844, 43.452919 ], [ 65.214844, 43.325178 ], [ 65.566406, 43.325178 ], [ 65.566406, 43.197167 ], [ 65.742188, 43.197167 ], [ 65.742188, 43.068888 ], [ 65.917969, 43.068888 ], [ 65.917969, 42.940339 ], [ 66.093750, 42.940339 ], [ 66.093750, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.771312 ], [ 66.621094, 41.771312 ], [ 66.621094, 41.244772 ], [ 66.796875, 41.244772 ], [ 66.796875, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.730469, 40.713956 ], [ 68.730469, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.244772 ], [ 69.082031, 41.244772 ], [ 69.082031, 41.376809 ], [ 69.257812, 41.376809 ], [ 69.257812, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.640078 ], [ 69.785156, 41.640078 ], [ 69.785156, 41.771312 ], [ 69.960938, 41.771312 ], [ 69.960938, 41.902277 ], [ 70.312500, 41.902277 ], [ 70.312500, 42.032974 ], [ 70.664062, 42.032974 ], [ 70.664062, 42.163403 ], [ 71.191406, 42.163403 ], [ 71.191406, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.902277 ], [ 70.839844, 41.902277 ], [ 70.839844, 41.640078 ], [ 70.664062, 41.640078 ], [ 70.664062, 41.508577 ], [ 70.488281, 41.508577 ], [ 70.488281, 41.376809 ], [ 70.664062, 41.376809 ], [ 70.664062, 41.244772 ], [ 71.015625, 41.244772 ], [ 71.015625, 41.112469 ], [ 71.542969, 41.112469 ], [ 71.542969, 41.244772 ], [ 72.246094, 41.244772 ], [ 72.246094, 41.112469 ], [ 72.597656, 41.112469 ], [ 72.597656, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 73.125000, 40.847060 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.488281, 40.979898 ], [ 70.488281, 40.847060 ], [ 69.785156, 40.847060 ], [ 69.785156, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.446947 ], [ 69.082031, 40.446947 ], [ 69.082031, 40.313043 ], [ 62.226562, 40.313043 ], [ 62.226562, 40.446947 ], [ 62.050781, 40.446947 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.112469 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.771312 ], [ 59.941406, 41.771312 ], [ 59.941406, 42.163403 ], [ 59.765625, 42.163403 ], [ 59.765625, 42.293564 ], [ 59.414062, 42.293564 ], [ 59.414062, 42.423457 ], [ 59.238281, 42.423457 ], [ 59.238281, 42.553080 ], [ 59.062500, 42.553080 ], [ 59.062500, 42.682435 ], [ 58.535156, 42.682435 ], [ 58.535156, 42.553080 ], [ 58.359375, 42.553080 ], [ 58.359375, 42.423457 ], [ 58.183594, 42.423457 ], [ 58.183594, 42.293564 ], [ 58.007812, 42.293564 ], [ 58.007812, 42.163403 ], [ 57.832031, 42.163403 ], [ 57.832031, 42.032974 ], [ 57.480469, 42.032974 ], [ 57.480469, 41.902277 ], [ 57.128906, 41.902277 ], [ 57.128906, 41.771312 ], [ 56.953125, 41.771312 ], [ 56.953125, 41.508577 ], [ 57.128906, 41.508577 ], [ 57.128906, 41.376809 ], [ 56.601562, 41.376809 ], [ 56.601562, 41.244772 ], [ 55.898438, 41.244772 ], [ 55.898438, 44.964798 ], [ 56.250000, 44.964798 ], [ 56.250000, 45.089036 ], [ 56.777344, 45.089036 ], [ 56.777344, 45.213004 ], [ 57.304688, 45.213004 ], [ 57.304688, 45.336702 ], [ 57.832031, 45.336702 ], [ 57.832031, 45.460131 ], [ 58.359375, 45.460131 ], [ 58.359375, 45.583290 ], [ 58.535156, 45.583290 ], [ 58.535156, 45.460131 ], [ 58.710938, 45.460131 ], [ 58.710938, 45.336702 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.535156, 45.583290 ], [ 58.535156, 45.460131 ], [ 58.710938, 45.460131 ], [ 58.710938, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.213004 ], [ 59.414062, 45.213004 ], [ 59.414062, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.964798 ], [ 60.117188, 44.964798 ], [ 60.117188, 44.840291 ], [ 60.292969, 44.840291 ], [ 60.292969, 44.715514 ], [ 60.468750, 44.715514 ], [ 60.468750, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.465151 ], [ 60.996094, 44.465151 ], [ 60.996094, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.213710 ], [ 61.347656, 44.213710 ], [ 61.347656, 43.961191 ], [ 61.523438, 43.961191 ], [ 61.523438, 43.834527 ], [ 61.699219, 43.834527 ], [ 61.699219, 43.707594 ], [ 61.875000, 43.707594 ], [ 61.875000, 43.452919 ], [ 62.402344, 43.452919 ], [ 62.402344, 43.580391 ], [ 62.929688, 43.580391 ], [ 62.929688, 43.707594 ], [ 64.863281, 43.707594 ], [ 64.863281, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.452919 ], [ 65.214844, 43.452919 ], [ 65.214844, 43.325178 ], [ 65.566406, 43.325178 ], [ 65.566406, 43.197167 ], [ 65.742188, 43.197167 ], [ 65.742188, 43.068888 ], [ 65.917969, 43.068888 ], [ 65.917969, 42.940339 ], [ 66.093750, 42.940339 ], [ 66.093750, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.771312 ], [ 66.621094, 41.771312 ], [ 66.621094, 41.244772 ], [ 66.796875, 41.244772 ], [ 66.796875, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.730469, 40.713956 ], [ 68.730469, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.244772 ], [ 69.082031, 41.244772 ], [ 69.082031, 41.376809 ], [ 69.257812, 41.376809 ], [ 69.257812, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.640078 ], [ 69.785156, 41.640078 ], [ 69.785156, 41.771312 ], [ 69.960938, 41.771312 ], [ 69.960938, 41.902277 ], [ 70.312500, 41.902277 ], [ 70.312500, 42.032974 ], [ 70.664062, 42.032974 ], [ 70.664062, 42.163403 ], [ 71.191406, 42.163403 ], [ 71.191406, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.902277 ], [ 70.839844, 41.902277 ], [ 70.839844, 41.640078 ], [ 70.664062, 41.640078 ], [ 70.664062, 41.508577 ], [ 70.488281, 41.508577 ], [ 70.488281, 41.376809 ], [ 70.664062, 41.376809 ], [ 70.664062, 41.244772 ], [ 71.015625, 41.244772 ], [ 71.015625, 41.112469 ], [ 71.542969, 41.112469 ], [ 71.542969, 41.244772 ], [ 72.246094, 41.244772 ], [ 72.246094, 41.112469 ], [ 72.597656, 41.112469 ], [ 72.597656, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 73.125000, 40.847060 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.488281, 40.979898 ], [ 70.488281, 40.847060 ], [ 69.785156, 40.847060 ], [ 69.785156, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.446947 ], [ 69.082031, 40.446947 ], [ 69.082031, 40.313043 ], [ 62.226562, 40.313043 ], [ 62.226562, 40.446947 ], [ 62.050781, 40.446947 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.112469 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.771312 ], [ 59.941406, 41.771312 ], [ 59.941406, 42.163403 ], [ 59.765625, 42.163403 ], [ 59.765625, 42.293564 ], [ 59.414062, 42.293564 ], [ 59.414062, 42.423457 ], [ 59.238281, 42.423457 ], [ 59.238281, 42.553080 ], [ 59.062500, 42.553080 ], [ 59.062500, 42.682435 ], [ 58.535156, 42.682435 ], [ 58.535156, 42.553080 ], [ 58.359375, 42.553080 ], [ 58.359375, 42.423457 ], [ 58.183594, 42.423457 ], [ 58.183594, 42.293564 ], [ 58.007812, 42.293564 ], [ 58.007812, 42.163403 ], [ 57.832031, 42.163403 ], [ 57.832031, 42.032974 ], [ 57.480469, 42.032974 ], [ 57.480469, 41.902277 ], [ 57.128906, 41.902277 ], [ 57.128906, 41.771312 ], [ 56.953125, 41.771312 ], [ 56.953125, 41.508577 ], [ 57.128906, 41.508577 ], [ 57.128906, 41.376809 ], [ 56.601562, 41.376809 ], [ 56.601562, 41.244772 ], [ 55.898438, 41.244772 ], [ 55.898438, 44.964798 ], [ 56.250000, 44.964798 ], [ 56.250000, 45.089036 ], [ 56.777344, 45.089036 ], [ 56.777344, 45.213004 ], [ 57.304688, 45.213004 ], [ 57.304688, 45.336702 ], [ 57.832031, 45.336702 ], [ 57.832031, 45.460131 ], [ 58.359375, 45.460131 ], [ 58.359375, 45.583290 ], [ 58.535156, 45.583290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.707031, 43.068888 ], [ 75.234375, 43.068888 ], [ 75.234375, 42.940339 ], [ 78.222656, 42.940339 ], [ 78.222656, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 42.682435 ], [ 79.453125, 42.682435 ], [ 79.453125, 42.553080 ], [ 79.628906, 42.553080 ], [ 79.628906, 42.423457 ], [ 79.980469, 42.423457 ], [ 79.980469, 42.293564 ], [ 80.332031, 42.293564 ], [ 80.332031, 42.163403 ], [ 79.980469, 42.163403 ], [ 79.980469, 42.032974 ], [ 79.628906, 42.032974 ], [ 79.628906, 41.902277 ], [ 79.277344, 41.902277 ], [ 79.277344, 41.771312 ], [ 78.925781, 41.771312 ], [ 78.925781, 41.640078 ], [ 78.574219, 41.640078 ], [ 78.574219, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 41.112469 ], [ 76.992188, 41.112469 ], [ 76.992188, 40.979898 ], [ 76.816406, 40.979898 ], [ 76.816406, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.410156, 40.580585 ], [ 75.410156, 40.446947 ], [ 75.058594, 40.446947 ], [ 75.058594, 40.313043 ], [ 72.246094, 40.313043 ], [ 72.246094, 40.446947 ], [ 72.597656, 40.446947 ], [ 72.597656, 40.580585 ], [ 72.773438, 40.580585 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.597656, 40.979898 ], [ 72.597656, 41.112469 ], [ 72.246094, 41.112469 ], [ 72.246094, 41.244772 ], [ 71.542969, 41.244772 ], [ 71.542969, 41.112469 ], [ 71.015625, 41.112469 ], [ 71.015625, 41.244772 ], [ 70.664062, 41.244772 ], [ 70.664062, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.508577 ], [ 70.664062, 41.508577 ], [ 70.664062, 41.640078 ], [ 70.839844, 41.640078 ], [ 70.839844, 41.902277 ], [ 71.015625, 41.902277 ], [ 71.015625, 42.032974 ], [ 71.191406, 42.032974 ], [ 71.191406, 42.163403 ], [ 71.015625, 42.163403 ], [ 71.015625, 42.423457 ], [ 71.191406, 42.423457 ], [ 71.191406, 42.682435 ], [ 71.718750, 42.682435 ], [ 71.718750, 42.811522 ], [ 72.246094, 42.811522 ], [ 72.246094, 42.682435 ], [ 72.949219, 42.682435 ], [ 72.949219, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 42.811522 ], [ 73.652344, 42.811522 ], [ 73.652344, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 43.197167 ], [ 74.179688, 43.197167 ], [ 74.179688, 43.325178 ], [ 74.355469, 43.325178 ], [ 74.355469, 43.197167 ], [ 74.707031, 43.197167 ], [ 74.707031, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.355469, 43.325178 ], [ 74.355469, 43.197167 ], [ 74.707031, 43.197167 ], [ 74.707031, 43.068888 ], [ 75.234375, 43.068888 ], [ 75.234375, 42.940339 ], [ 78.222656, 42.940339 ], [ 78.222656, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 42.682435 ], [ 79.453125, 42.682435 ], [ 79.453125, 42.553080 ], [ 79.628906, 42.553080 ], [ 79.628906, 42.423457 ], [ 79.980469, 42.423457 ], [ 79.980469, 42.293564 ], [ 80.332031, 42.293564 ], [ 80.332031, 42.163403 ], [ 79.980469, 42.163403 ], [ 79.980469, 42.032974 ], [ 79.628906, 42.032974 ], [ 79.628906, 41.902277 ], [ 79.277344, 41.902277 ], [ 79.277344, 41.771312 ], [ 78.925781, 41.771312 ], [ 78.925781, 41.640078 ], [ 78.574219, 41.640078 ], [ 78.574219, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 41.112469 ], [ 76.992188, 41.112469 ], [ 76.992188, 40.979898 ], [ 76.816406, 40.979898 ], [ 76.816406, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.410156, 40.580585 ], [ 75.410156, 40.446947 ], [ 75.058594, 40.446947 ], [ 75.058594, 40.313043 ], [ 72.246094, 40.313043 ], [ 72.246094, 40.446947 ], [ 72.597656, 40.446947 ], [ 72.597656, 40.580585 ], [ 72.773438, 40.580585 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.597656, 40.979898 ], [ 72.597656, 41.112469 ], [ 72.246094, 41.112469 ], [ 72.246094, 41.244772 ], [ 71.542969, 41.244772 ], [ 71.542969, 41.112469 ], [ 71.015625, 41.112469 ], [ 71.015625, 41.244772 ], [ 70.664062, 41.244772 ], [ 70.664062, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.508577 ], [ 70.664062, 41.508577 ], [ 70.664062, 41.640078 ], [ 70.839844, 41.640078 ], [ 70.839844, 41.902277 ], [ 71.015625, 41.902277 ], [ 71.015625, 42.032974 ], [ 71.191406, 42.032974 ], [ 71.191406, 42.163403 ], [ 71.015625, 42.163403 ], [ 71.015625, 42.423457 ], [ 71.191406, 42.423457 ], [ 71.191406, 42.682435 ], [ 71.718750, 42.682435 ], [ 71.718750, 42.811522 ], [ 72.246094, 42.811522 ], [ 72.246094, 42.682435 ], [ 72.949219, 42.682435 ], [ 72.949219, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 42.811522 ], [ 73.652344, 42.811522 ], [ 73.652344, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 43.197167 ], [ 74.179688, 43.197167 ], [ 74.179688, 43.325178 ], [ 74.355469, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.112469 ], [ 44.648438, 41.112469 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.112469 ], [ 44.648438, 41.112469 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 41.244772 ], [ 49.042969, 41.244772 ], [ 49.042969, 41.112469 ], [ 49.218750, 41.112469 ], [ 49.218750, 40.847060 ], [ 49.394531, 40.847060 ], [ 49.394531, 40.580585 ], [ 50.097656, 40.580585 ], [ 50.097656, 40.446947 ], [ 50.273438, 40.446947 ], [ 50.273438, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.376809 ], [ 46.406250, 41.376809 ], [ 46.406250, 41.640078 ], [ 46.230469, 41.640078 ], [ 46.230469, 41.771312 ], [ 46.757812, 41.771312 ], [ 46.757812, 41.640078 ], [ 46.933594, 41.640078 ], [ 46.933594, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.376809 ], [ 47.285156, 41.376809 ], [ 47.285156, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 41.112469 ], [ 47.812500, 41.112469 ], [ 47.812500, 41.244772 ], [ 47.988281, 41.244772 ], [ 47.988281, 41.376809 ], [ 48.164062, 41.376809 ], [ 48.164062, 41.508577 ], [ 48.339844, 41.508577 ], [ 48.339844, 41.640078 ], [ 48.691406, 41.640078 ], [ 48.691406, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.757812, 41.771312 ], [ 46.757812, 41.640078 ], [ 46.933594, 41.640078 ], [ 46.933594, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.376809 ], [ 47.285156, 41.376809 ], [ 47.285156, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 41.112469 ], [ 47.812500, 41.112469 ], [ 47.812500, 41.244772 ], [ 47.988281, 41.244772 ], [ 47.988281, 41.376809 ], [ 48.164062, 41.376809 ], [ 48.164062, 41.508577 ], [ 48.339844, 41.508577 ], [ 48.339844, 41.640078 ], [ 48.691406, 41.640078 ], [ 48.691406, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ], [ 49.042969, 41.244772 ], [ 49.042969, 41.112469 ], [ 49.218750, 41.112469 ], [ 49.218750, 40.847060 ], [ 49.394531, 40.847060 ], [ 49.394531, 40.580585 ], [ 50.097656, 40.580585 ], [ 50.097656, 40.446947 ], [ 50.273438, 40.446947 ], [ 50.273438, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.376809 ], [ 46.406250, 41.376809 ], [ 46.406250, 41.640078 ], [ 46.230469, 41.640078 ], [ 46.230469, 41.771312 ], [ 46.757812, 41.771312 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 53.613281, 42.293564 ], [ 54.140625, 42.293564 ], [ 54.140625, 42.163403 ], [ 54.492188, 42.163403 ], [ 54.492188, 42.032974 ], [ 54.667969, 42.032974 ], [ 54.667969, 41.902277 ], [ 54.843750, 41.902277 ], [ 54.843750, 41.640078 ], [ 55.019531, 41.640078 ], [ 55.019531, 41.508577 ], [ 55.195312, 41.508577 ], [ 55.195312, 41.244772 ], [ 56.601562, 41.244772 ], [ 56.601562, 41.376809 ], [ 57.128906, 41.376809 ], [ 57.128906, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 41.771312 ], [ 57.128906, 41.771312 ], [ 57.128906, 41.902277 ], [ 57.480469, 41.902277 ], [ 57.480469, 42.032974 ], [ 57.832031, 42.032974 ], [ 57.832031, 42.163403 ], [ 58.007812, 42.163403 ], [ 58.007812, 42.293564 ], [ 58.183594, 42.293564 ], [ 58.183594, 42.423457 ], [ 58.359375, 42.423457 ], [ 58.359375, 42.553080 ], [ 58.535156, 42.553080 ], [ 58.535156, 42.682435 ], [ 59.062500, 42.682435 ], [ 59.062500, 42.553080 ], [ 59.238281, 42.553080 ], [ 59.238281, 42.423457 ], [ 59.414062, 42.423457 ], [ 59.414062, 42.293564 ], [ 59.765625, 42.293564 ], [ 59.765625, 42.163403 ], [ 59.941406, 42.163403 ], [ 59.941406, 41.771312 ], [ 60.117188, 41.771312 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.446947 ], [ 62.226562, 40.446947 ], [ 62.226562, 40.313043 ], [ 52.734375, 40.313043 ], [ 52.734375, 40.580585 ], [ 52.910156, 40.580585 ], [ 52.910156, 40.847060 ], [ 53.085938, 40.847060 ], [ 53.085938, 40.713956 ], [ 53.437500, 40.713956 ], [ 53.437500, 40.580585 ], [ 53.964844, 40.580585 ], [ 53.964844, 40.713956 ], [ 54.316406, 40.713956 ], [ 54.316406, 40.847060 ], [ 54.667969, 40.847060 ], [ 54.667969, 40.979898 ], [ 54.492188, 40.979898 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.376809 ], [ 53.964844, 41.376809 ], [ 53.964844, 41.771312 ], [ 53.789062, 41.771312 ], [ 53.789062, 42.163403 ], [ 53.613281, 42.163403 ], [ 53.613281, 42.293564 ] ] ], [ [ [ 53.613281, 42.032974 ], [ 53.261719, 42.032974 ], [ 53.261719, 41.902277 ], [ 52.910156, 41.902277 ], [ 52.910156, 41.508577 ], [ 52.734375, 41.508577 ], [ 52.734375, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.771312 ], [ 52.734375, 41.771312 ], [ 52.734375, 42.032974 ], [ 52.910156, 42.032974 ], [ 52.910156, 42.163403 ], [ 53.613281, 42.163403 ], [ 53.613281, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.062500, 42.682435 ], [ 59.062500, 42.553080 ], [ 59.238281, 42.553080 ], [ 59.238281, 42.423457 ], [ 59.414062, 42.423457 ], [ 59.414062, 42.293564 ], [ 59.765625, 42.293564 ], [ 59.765625, 42.163403 ], [ 59.941406, 42.163403 ], [ 59.941406, 41.771312 ], [ 60.117188, 41.771312 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.446947 ], [ 62.226562, 40.446947 ], [ 62.226562, 40.313043 ], [ 52.734375, 40.313043 ], [ 52.734375, 40.580585 ], [ 52.910156, 40.580585 ], [ 52.910156, 40.847060 ], [ 53.085938, 40.847060 ], [ 53.085938, 40.713956 ], [ 53.437500, 40.713956 ], [ 53.437500, 40.580585 ], [ 53.964844, 40.580585 ], [ 53.964844, 40.713956 ], [ 54.316406, 40.713956 ], [ 54.316406, 40.847060 ], [ 54.667969, 40.847060 ], [ 54.667969, 40.979898 ], [ 54.492188, 40.979898 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.376809 ], [ 53.964844, 41.376809 ], [ 53.964844, 41.771312 ], [ 53.789062, 41.771312 ], [ 53.789062, 42.163403 ], [ 53.613281, 42.163403 ], [ 53.613281, 42.293564 ], [ 54.140625, 42.293564 ], [ 54.140625, 42.163403 ], [ 54.492188, 42.163403 ], [ 54.492188, 42.032974 ], [ 54.667969, 42.032974 ], [ 54.667969, 41.902277 ], [ 54.843750, 41.902277 ], [ 54.843750, 41.640078 ], [ 55.019531, 41.640078 ], [ 55.019531, 41.508577 ], [ 55.195312, 41.508577 ], [ 55.195312, 41.244772 ], [ 56.601562, 41.244772 ], [ 56.601562, 41.376809 ], [ 57.128906, 41.376809 ], [ 57.128906, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 41.771312 ], [ 57.128906, 41.771312 ], [ 57.128906, 41.902277 ], [ 57.480469, 41.902277 ], [ 57.480469, 42.032974 ], [ 57.832031, 42.032974 ], [ 57.832031, 42.163403 ], [ 58.007812, 42.163403 ], [ 58.007812, 42.293564 ], [ 58.183594, 42.293564 ], [ 58.183594, 42.423457 ], [ 58.359375, 42.423457 ], [ 58.359375, 42.553080 ], [ 58.535156, 42.553080 ], [ 58.535156, 42.682435 ], [ 59.062500, 42.682435 ] ] ], [ [ [ 53.613281, 42.163403 ], [ 53.613281, 42.032974 ], [ 53.261719, 42.032974 ], [ 53.261719, 41.902277 ], [ 52.910156, 41.902277 ], [ 52.910156, 41.508577 ], [ 52.734375, 41.508577 ], [ 52.734375, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.771312 ], [ 52.734375, 41.771312 ], [ 52.734375, 42.032974 ], [ 52.910156, 42.032974 ], [ 52.910156, 42.163403 ], [ 53.613281, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.713956 ], [ 70.488281, 40.713956 ], [ 70.488281, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 40.446947 ], [ 69.257812, 40.446947 ], [ 69.257812, 40.713956 ], [ 69.785156, 40.713956 ], [ 69.785156, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.979898 ], [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ], [ 70.488281, 40.713956 ], [ 70.488281, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 40.446947 ], [ 69.257812, 40.446947 ], [ 69.257812, 40.713956 ], [ 69.785156, 40.713956 ], [ 69.785156, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.635784 ], [ 90.000000, 47.635784 ], [ 90.000000, 47.754098 ], [ 89.648438, 47.754098 ], [ 89.648438, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 88.945312, 47.989922 ], [ 88.945312, 48.107431 ], [ 88.593750, 48.107431 ], [ 88.593750, 48.224673 ], [ 88.417969, 48.224673 ], [ 88.417969, 48.341646 ], [ 88.242188, 48.341646 ], [ 88.242188, 48.458352 ], [ 88.066406, 48.458352 ], [ 88.066406, 48.690960 ], [ 87.890625, 48.690960 ], [ 87.890625, 49.037868 ], [ 87.714844, 49.037868 ], [ 87.714844, 49.267805 ], [ 88.066406, 49.267805 ], [ 88.066406, 49.382373 ], [ 88.593750, 49.382373 ], [ 88.593750, 49.496675 ], [ 88.945312, 49.496675 ], [ 88.945312, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.472656, 49.724479 ], [ 89.472656, 49.837982 ], [ 89.824219, 49.837982 ], [ 89.824219, 49.951220 ], [ 90.175781, 49.951220 ], [ 90.175781, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 50.176898 ], [ 90.703125, 50.176898 ], [ 90.703125, 50.289339 ], [ 90.878906, 50.289339 ], [ 90.878906, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.279229 ] ] ], [ [ [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.527344, 45.583290 ], [ 90.527344, 45.951150 ], [ 90.703125, 45.951150 ], [ 90.703125, 46.437857 ], [ 90.878906, 46.437857 ], [ 90.878906, 45.336702 ], [ 90.703125, 45.336702 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.437857 ], [ 90.878906, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.527344, 45.583290 ], [ 90.527344, 45.951150 ], [ 90.703125, 45.951150 ], [ 90.703125, 46.437857 ], [ 90.878906, 46.437857 ] ] ], [ [ [ 90.878906, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.635784 ], [ 90.000000, 47.635784 ], [ 90.000000, 47.754098 ], [ 89.648438, 47.754098 ], [ 89.648438, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 88.945312, 47.989922 ], [ 88.945312, 48.107431 ], [ 88.593750, 48.107431 ], [ 88.593750, 48.224673 ], [ 88.417969, 48.224673 ], [ 88.417969, 48.341646 ], [ 88.242188, 48.341646 ], [ 88.242188, 48.458352 ], [ 88.066406, 48.458352 ], [ 88.066406, 48.690960 ], [ 87.890625, 48.690960 ], [ 87.890625, 49.037868 ], [ 87.714844, 49.037868 ], [ 87.714844, 49.267805 ], [ 88.066406, 49.267805 ], [ 88.066406, 49.382373 ], [ 88.593750, 49.382373 ], [ 88.593750, 49.496675 ], [ 88.945312, 49.496675 ], [ 88.945312, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.472656, 49.724479 ], [ 89.472656, 49.837982 ], [ 89.824219, 49.837982 ], [ 89.824219, 49.951220 ], [ 90.175781, 49.951220 ], [ 90.175781, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 50.176898 ], [ 90.703125, 50.176898 ], [ 90.703125, 50.289339 ], [ 90.878906, 50.289339 ], [ 90.878906, 47.040182 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.242188, 48.341646 ], [ 88.417969, 48.341646 ], [ 88.417969, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 48.107431 ], [ 88.945312, 48.107431 ], [ 88.945312, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.648438, 47.872144 ], [ 89.648438, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.517201 ], [ 90.527344, 47.517201 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.040182 ], [ 90.878906, 47.040182 ], [ 90.878906, 46.437857 ], [ 90.703125, 46.437857 ], [ 90.703125, 45.951150 ], [ 90.527344, 45.951150 ], [ 90.527344, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 90.878906, 45.336702 ], [ 90.878906, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 78.925781, 41.640078 ], [ 78.925781, 41.771312 ], [ 79.277344, 41.771312 ], [ 79.277344, 41.902277 ], [ 79.628906, 41.902277 ], [ 79.628906, 42.032974 ], [ 79.980469, 42.032974 ], [ 79.980469, 42.163403 ], [ 80.332031, 42.163403 ], [ 80.332031, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 42.940339 ], [ 80.507812, 42.940339 ], [ 80.507812, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.325178 ], [ 80.683594, 43.325178 ], [ 80.683594, 43.707594 ], [ 80.507812, 43.707594 ], [ 80.507812, 44.087585 ], [ 80.332031, 44.087585 ], [ 80.332031, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 44.715514 ], [ 79.980469, 44.715514 ], [ 79.980469, 44.964798 ], [ 80.332031, 44.964798 ], [ 80.332031, 45.089036 ], [ 81.035156, 45.089036 ], [ 81.035156, 45.213004 ], [ 81.738281, 45.213004 ], [ 81.738281, 45.336702 ], [ 82.089844, 45.336702 ], [ 82.089844, 45.460131 ], [ 82.441406, 45.460131 ], [ 82.441406, 45.706179 ], [ 82.617188, 45.706179 ], [ 82.617188, 46.195042 ], [ 82.792969, 46.195042 ], [ 82.792969, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.040182 ], [ 83.144531, 47.040182 ], [ 83.144531, 47.279229 ], [ 83.496094, 47.279229 ], [ 83.496094, 47.159840 ], [ 84.550781, 47.159840 ], [ 84.550781, 47.040182 ], [ 85.253906, 47.040182 ], [ 85.253906, 47.159840 ], [ 85.605469, 47.159840 ], [ 85.605469, 47.279229 ], [ 85.781250, 47.279229 ], [ 85.781250, 48.458352 ], [ 86.308594, 48.458352 ], [ 86.308594, 48.574790 ], [ 86.835938, 48.574790 ], [ 86.835938, 48.806863 ], [ 87.011719, 48.806863 ], [ 87.011719, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.152970 ], [ 87.363281, 49.152970 ], [ 87.363281, 49.267805 ], [ 87.714844, 49.267805 ], [ 87.714844, 49.037868 ], [ 87.890625, 49.037868 ], [ 87.890625, 48.690960 ], [ 88.066406, 48.690960 ], [ 88.066406, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.714844, 49.267805 ], [ 87.714844, 49.037868 ], [ 87.890625, 49.037868 ], [ 87.890625, 48.690960 ], [ 88.066406, 48.690960 ], [ 88.066406, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.341646 ], [ 88.417969, 48.341646 ], [ 88.417969, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 48.107431 ], [ 88.945312, 48.107431 ], [ 88.945312, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.648438, 47.872144 ], [ 89.648438, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.517201 ], [ 90.527344, 47.517201 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.040182 ], [ 90.878906, 47.040182 ], [ 90.878906, 46.437857 ], [ 90.703125, 46.437857 ], [ 90.703125, 45.951150 ], [ 90.527344, 45.951150 ], [ 90.527344, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 90.878906, 45.336702 ], [ 90.878906, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 78.925781, 41.640078 ], [ 78.925781, 41.771312 ], [ 79.277344, 41.771312 ], [ 79.277344, 41.902277 ], [ 79.628906, 41.902277 ], [ 79.628906, 42.032974 ], [ 79.980469, 42.032974 ], [ 79.980469, 42.163403 ], [ 80.332031, 42.163403 ], [ 80.332031, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 42.940339 ], [ 80.507812, 42.940339 ], [ 80.507812, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.325178 ], [ 80.683594, 43.325178 ], [ 80.683594, 43.707594 ], [ 80.507812, 43.707594 ], [ 80.507812, 44.087585 ], [ 80.332031, 44.087585 ], [ 80.332031, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 44.715514 ], [ 79.980469, 44.715514 ], [ 79.980469, 44.964798 ], [ 80.332031, 44.964798 ], [ 80.332031, 45.089036 ], [ 81.035156, 45.089036 ], [ 81.035156, 45.213004 ], [ 81.738281, 45.213004 ], [ 81.738281, 45.336702 ], [ 82.089844, 45.336702 ], [ 82.089844, 45.460131 ], [ 82.441406, 45.460131 ], [ 82.441406, 45.706179 ], [ 82.617188, 45.706179 ], [ 82.617188, 46.195042 ], [ 82.792969, 46.195042 ], [ 82.792969, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.040182 ], [ 83.144531, 47.040182 ], [ 83.144531, 47.279229 ], [ 83.496094, 47.279229 ], [ 83.496094, 47.159840 ], [ 84.550781, 47.159840 ], [ 84.550781, 47.040182 ], [ 85.253906, 47.040182 ], [ 85.253906, 47.159840 ], [ 85.605469, 47.159840 ], [ 85.605469, 47.279229 ], [ 85.781250, 47.279229 ], [ 85.781250, 48.458352 ], [ 86.308594, 48.458352 ], [ 86.308594, 48.574790 ], [ 86.835938, 48.574790 ], [ 86.835938, 48.806863 ], [ 87.011719, 48.806863 ], [ 87.011719, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.152970 ], [ 87.363281, 49.152970 ], [ 87.363281, 49.267805 ], [ 87.714844, 49.267805 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 61.875000, 69.657086 ], [ 62.402344, 69.657086 ], [ 62.402344, 69.595890 ], [ 63.105469, 69.595890 ], [ 63.105469, 69.534518 ], [ 63.457031, 69.534518 ], [ 63.457031, 69.472969 ], [ 63.808594, 69.472969 ], [ 63.808594, 69.411242 ], [ 63.984375, 69.411242 ], [ 63.984375, 69.349339 ], [ 64.335938, 69.349339 ], [ 64.335938, 69.287257 ], [ 64.687500, 69.287257 ], [ 64.687500, 69.224997 ], [ 64.863281, 69.224997 ], [ 64.863281, 69.162558 ], [ 65.039062, 69.162558 ], [ 65.039062, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.583217 ], [ 44.472656, 66.583217 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.930060 ], [ 44.121094, 66.930060 ], [ 44.121094, 68.463800 ], [ 44.296875, 68.463800 ], [ 44.296875, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.334376 ], [ 45.703125, 68.334376 ], [ 45.703125, 68.269387 ], [ 46.230469, 68.269387 ], [ 46.230469, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.941650 ], [ 46.582031, 67.941650 ], [ 46.582031, 67.742759 ], [ 46.757812, 67.742759 ], [ 46.757812, 67.676085 ], [ 46.582031, 67.676085 ], [ 46.582031, 67.609221 ], [ 45.878906, 67.609221 ], [ 45.878906, 67.542167 ], [ 45.527344, 67.542167 ], [ 45.527344, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.230469, 66.722541 ], [ 46.230469, 66.652977 ], [ 46.757812, 66.652977 ], [ 46.757812, 66.722541 ], [ 47.285156, 66.722541 ], [ 47.285156, 66.791909 ], [ 47.636719, 66.791909 ], [ 47.636719, 66.861082 ], [ 47.812500, 66.861082 ], [ 47.812500, 66.998844 ], [ 47.988281, 66.998844 ], [ 47.988281, 67.339861 ], [ 48.164062, 67.339861 ], [ 48.164062, 67.542167 ], [ 48.339844, 67.542167 ], [ 48.339844, 67.609221 ], [ 48.691406, 67.609221 ], [ 48.691406, 67.676085 ], [ 49.042969, 67.676085 ], [ 49.042969, 67.742759 ], [ 49.394531, 67.742759 ], [ 49.394531, 67.809245 ], [ 49.570312, 67.809245 ], [ 49.570312, 67.875541 ], [ 49.921875, 67.875541 ], [ 49.921875, 67.941650 ], [ 50.273438, 67.941650 ], [ 50.273438, 68.007571 ], [ 50.449219, 68.007571 ], [ 50.449219, 68.073305 ], [ 50.800781, 68.073305 ], [ 50.800781, 68.138852 ], [ 50.976562, 68.138852 ], [ 50.976562, 68.204212 ], [ 51.328125, 68.204212 ], [ 51.328125, 68.269387 ], [ 51.503906, 68.269387 ], [ 51.503906, 68.334376 ], [ 51.855469, 68.334376 ], [ 51.855469, 68.399180 ], [ 52.207031, 68.399180 ], [ 52.207031, 68.463800 ], [ 52.382812, 68.463800 ], [ 52.382812, 68.528235 ], [ 52.734375, 68.528235 ], [ 52.734375, 68.592487 ], [ 52.910156, 68.592487 ], [ 52.910156, 68.656555 ], [ 53.261719, 68.656555 ], [ 53.261719, 68.720441 ], [ 53.437500, 68.720441 ], [ 53.437500, 68.784144 ], [ 53.789062, 68.784144 ], [ 53.789062, 68.847665 ], [ 53.964844, 68.847665 ], [ 53.964844, 68.784144 ], [ 54.492188, 68.784144 ], [ 54.492188, 68.720441 ], [ 54.316406, 68.720441 ], [ 54.316406, 68.592487 ], [ 54.140625, 68.592487 ], [ 54.140625, 68.528235 ], [ 53.964844, 68.528235 ], [ 53.964844, 68.399180 ], [ 53.789062, 68.399180 ], [ 53.789062, 68.334376 ], [ 53.613281, 68.334376 ], [ 53.613281, 68.138852 ], [ 54.316406, 68.138852 ], [ 54.316406, 68.073305 ], [ 54.843750, 68.073305 ], [ 54.843750, 68.204212 ], [ 55.019531, 68.204212 ], [ 55.019531, 68.269387 ], [ 55.195312, 68.269387 ], [ 55.195312, 68.399180 ], [ 55.371094, 68.399180 ], [ 55.371094, 68.463800 ], [ 57.480469, 68.463800 ], [ 57.480469, 68.528235 ], [ 57.656250, 68.528235 ], [ 57.656250, 68.592487 ], [ 58.007812, 68.592487 ], [ 58.007812, 68.656555 ], [ 58.183594, 68.656555 ], [ 58.183594, 68.720441 ], [ 58.359375, 68.720441 ], [ 58.359375, 68.784144 ], [ 58.710938, 68.784144 ], [ 58.710938, 68.847665 ], [ 59.062500, 68.847665 ], [ 59.062500, 68.720441 ], [ 59.238281, 68.720441 ], [ 59.238281, 68.592487 ], [ 59.414062, 68.592487 ], [ 59.414062, 68.528235 ], [ 59.589844, 68.528235 ], [ 59.589844, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.269387 ], [ 60.117188, 68.269387 ], [ 60.117188, 68.399180 ], [ 60.292969, 68.399180 ], [ 60.292969, 68.528235 ], [ 60.468750, 68.528235 ], [ 60.468750, 68.592487 ], [ 60.644531, 68.592487 ], [ 60.644531, 68.720441 ], [ 60.820312, 68.720441 ], [ 60.820312, 68.847665 ], [ 60.996094, 68.847665 ], [ 60.996094, 68.974164 ], [ 60.820312, 68.974164 ], [ 60.820312, 69.099940 ], [ 60.644531, 69.099940 ], [ 60.644531, 69.224997 ], [ 60.468750, 69.224997 ], [ 60.468750, 69.349339 ], [ 60.292969, 69.349339 ], [ 60.292969, 69.472969 ], [ 60.117188, 69.472969 ], [ 60.117188, 69.595890 ], [ 60.292969, 69.595890 ], [ 60.292969, 69.718107 ], [ 60.468750, 69.718107 ], [ 60.468750, 69.839622 ], [ 60.644531, 69.839622 ], [ 60.644531, 69.778952 ], [ 61.347656, 69.778952 ], [ 61.347656, 69.718107 ], [ 61.875000, 69.718107 ], [ 61.875000, 69.657086 ] ] ], [ [ [ 65.039062, 75.802118 ], [ 64.863281, 75.802118 ], [ 64.863281, 75.758940 ], [ 64.687500, 75.758940 ], [ 64.687500, 75.715633 ], [ 64.335938, 75.715633 ], [ 64.335938, 75.672197 ], [ 63.984375, 75.672197 ], [ 63.984375, 75.628632 ], [ 63.808594, 75.628632 ], [ 63.808594, 75.584937 ], [ 63.457031, 75.584937 ], [ 63.457031, 75.541113 ], [ 63.281250, 75.541113 ], [ 63.281250, 75.497157 ], [ 62.929688, 75.497157 ], [ 62.929688, 75.453071 ], [ 62.578125, 75.453071 ], [ 62.578125, 75.408854 ], [ 62.402344, 75.408854 ], [ 62.402344, 75.364506 ], [ 62.050781, 75.364506 ], [ 62.050781, 75.320025 ], [ 61.699219, 75.320025 ], [ 61.699219, 75.275413 ], [ 61.523438, 75.275413 ], [ 61.523438, 75.230667 ], [ 61.347656, 75.230667 ], [ 61.347656, 75.185789 ], [ 61.171875, 75.185789 ], [ 61.171875, 75.095633 ], [ 60.996094, 75.095633 ], [ 60.996094, 75.050354 ], [ 60.820312, 75.050354 ], [ 60.820312, 75.004940 ], [ 60.644531, 75.004940 ], [ 60.644531, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.867889 ], [ 60.292969, 74.867889 ], [ 60.292969, 74.821934 ], [ 60.117188, 74.821934 ], [ 60.117188, 74.775843 ], [ 59.941406, 74.775843 ], [ 59.941406, 74.729615 ], [ 59.765625, 74.729615 ], [ 59.765625, 74.683250 ], [ 59.589844, 74.683250 ], [ 59.589844, 74.590108 ], [ 59.414062, 74.590108 ], [ 59.414062, 74.543330 ], [ 59.238281, 74.543330 ], [ 59.238281, 74.496413 ], [ 59.062500, 74.496413 ], [ 59.062500, 74.449358 ], [ 58.886719, 74.449358 ], [ 58.886719, 74.354828 ], [ 58.710938, 74.354828 ], [ 58.710938, 74.307353 ], [ 58.535156, 74.307353 ], [ 58.535156, 74.211983 ], [ 58.359375, 74.211983 ], [ 58.359375, 74.116047 ], [ 58.183594, 74.116047 ], [ 58.183594, 74.019543 ], [ 58.007812, 74.019543 ], [ 58.007812, 73.922469 ], [ 57.832031, 73.922469 ], [ 57.832031, 73.824820 ], [ 57.656250, 73.824820 ], [ 57.656250, 73.677264 ], [ 57.480469, 73.677264 ], [ 57.480469, 73.578167 ], [ 57.304688, 73.578167 ], [ 57.304688, 73.478485 ], [ 57.128906, 73.478485 ], [ 57.128906, 73.378215 ], [ 56.953125, 73.378215 ], [ 56.953125, 73.277353 ], [ 56.777344, 73.277353 ], [ 56.777344, 73.175897 ], [ 56.601562, 73.175897 ], [ 56.601562, 73.073844 ], [ 56.425781, 73.073844 ], [ 56.425781, 72.971189 ], [ 56.250000, 72.971189 ], [ 56.250000, 72.867930 ], [ 56.074219, 72.867930 ], [ 56.074219, 72.764065 ], [ 55.898438, 72.764065 ], [ 55.898438, 72.659588 ], [ 55.722656, 72.659588 ], [ 55.722656, 72.554498 ], [ 55.546875, 72.554498 ], [ 55.546875, 72.448792 ], [ 55.371094, 72.448792 ], [ 55.371094, 71.965388 ], [ 55.546875, 71.965388 ], [ 55.546875, 71.469124 ], [ 55.722656, 71.469124 ], [ 55.722656, 71.413177 ], [ 55.898438, 71.413177 ], [ 55.898438, 71.300793 ], [ 56.074219, 71.300793 ], [ 56.074219, 71.244356 ], [ 56.250000, 71.244356 ], [ 56.250000, 71.187754 ], [ 56.425781, 71.187754 ], [ 56.425781, 71.130988 ], [ 56.601562, 71.130988 ], [ 56.601562, 71.016960 ], [ 56.777344, 71.016960 ], [ 56.777344, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.902268 ], [ 57.128906, 70.902268 ], [ 57.128906, 70.786910 ], [ 57.304688, 70.786910 ], [ 57.304688, 70.728979 ], [ 57.480469, 70.728979 ], [ 57.480469, 70.670881 ], [ 57.128906, 70.670881 ], [ 57.128906, 70.612614 ], [ 56.250000, 70.612614 ], [ 56.250000, 70.670881 ], [ 55.195312, 70.670881 ], [ 55.195312, 70.728979 ], [ 54.140625, 70.728979 ], [ 54.140625, 70.786910 ], [ 53.613281, 70.786910 ], [ 53.613281, 70.959697 ], [ 53.437500, 70.959697 ], [ 53.437500, 71.187754 ], [ 53.085938, 71.187754 ], [ 53.085938, 71.244356 ], [ 52.734375, 71.244356 ], [ 52.734375, 71.300793 ], [ 52.382812, 71.300793 ], [ 52.382812, 71.357067 ], [ 52.031250, 71.357067 ], [ 52.031250, 71.413177 ], [ 51.679688, 71.413177 ], [ 51.679688, 71.746432 ], [ 51.503906, 71.746432 ], [ 51.503906, 72.019729 ], [ 51.679688, 72.019729 ], [ 51.679688, 72.073911 ], [ 52.031250, 72.073911 ], [ 52.031250, 72.127936 ], [ 52.207031, 72.127936 ], [ 52.207031, 72.181804 ], [ 52.558594, 72.181804 ], [ 52.558594, 72.501722 ], [ 52.382812, 72.501722 ], [ 52.382812, 72.764065 ], [ 52.558594, 72.764065 ], [ 52.558594, 72.867930 ], [ 52.734375, 72.867930 ], [ 52.734375, 72.919635 ], [ 52.910156, 72.919635 ], [ 52.910156, 72.971189 ], [ 53.085938, 72.971189 ], [ 53.085938, 73.073844 ], [ 53.261719, 73.073844 ], [ 53.261719, 73.124945 ], [ 53.437500, 73.124945 ], [ 53.437500, 73.226700 ], [ 53.613281, 73.226700 ], [ 53.613281, 73.277353 ], [ 53.789062, 73.277353 ], [ 53.789062, 73.378215 ], [ 53.964844, 73.378215 ], [ 53.964844, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.478485 ], [ 54.316406, 73.478485 ], [ 54.316406, 73.578167 ], [ 54.492188, 73.578167 ], [ 54.492188, 73.627789 ], [ 54.140625, 73.627789 ], [ 54.140625, 73.677264 ], [ 53.613281, 73.677264 ], [ 53.613281, 73.824820 ], [ 53.789062, 73.824820 ], [ 53.789062, 73.873717 ], [ 53.964844, 73.873717 ], [ 53.964844, 73.922469 ], [ 54.140625, 73.922469 ], [ 54.140625, 74.019543 ], [ 54.316406, 74.019543 ], [ 54.316406, 74.067866 ], [ 54.492188, 74.067866 ], [ 54.492188, 74.116047 ], [ 54.667969, 74.116047 ], [ 54.667969, 74.211983 ], [ 54.843750, 74.211983 ], [ 54.843750, 74.259738 ], [ 55.019531, 74.259738 ], [ 55.019531, 74.307353 ], [ 55.195312, 74.307353 ], [ 55.195312, 74.402163 ], [ 55.371094, 74.402163 ], [ 55.371094, 74.449358 ], [ 55.546875, 74.449358 ], [ 55.546875, 74.496413 ], [ 55.722656, 74.496413 ], [ 55.722656, 74.590108 ], [ 55.898438, 74.590108 ], [ 55.898438, 74.729615 ], [ 55.722656, 74.729615 ], [ 55.722656, 74.959392 ], [ 55.546875, 74.959392 ], [ 55.546875, 75.095633 ], [ 55.722656, 75.095633 ], [ 55.722656, 75.140778 ], [ 55.898438, 75.140778 ], [ 55.898438, 75.185789 ], [ 56.074219, 75.185789 ], [ 56.074219, 75.230667 ], [ 56.250000, 75.230667 ], [ 56.250000, 75.275413 ], [ 56.425781, 75.275413 ], [ 56.425781, 75.320025 ], [ 56.601562, 75.320025 ], [ 56.601562, 75.364506 ], [ 56.953125, 75.364506 ], [ 56.953125, 75.408854 ], [ 57.128906, 75.408854 ], [ 57.128906, 75.453071 ], [ 57.304688, 75.453071 ], [ 57.304688, 75.497157 ], [ 57.480469, 75.497157 ], [ 57.480469, 75.541113 ], [ 57.656250, 75.541113 ], [ 57.656250, 75.584937 ], [ 57.832031, 75.584937 ], [ 57.832031, 75.628632 ], [ 58.007812, 75.628632 ], [ 58.007812, 75.672197 ], [ 58.183594, 75.672197 ], [ 58.183594, 75.715633 ], [ 58.535156, 75.715633 ], [ 58.535156, 75.758940 ], [ 58.710938, 75.758940 ], [ 58.710938, 75.802118 ], [ 58.886719, 75.802118 ], [ 58.886719, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 75.888091 ], [ 59.414062, 75.888091 ], [ 59.414062, 75.930885 ], [ 59.589844, 75.930885 ], [ 59.589844, 75.973553 ], [ 59.765625, 75.973553 ], [ 59.765625, 76.016094 ], [ 60.117188, 76.016094 ], [ 60.117188, 76.058508 ], [ 60.292969, 76.058508 ], [ 60.292969, 76.100796 ], [ 60.468750, 76.100796 ], [ 60.468750, 76.142958 ], [ 60.644531, 76.142958 ], [ 60.644531, 76.184995 ], [ 60.996094, 76.184995 ], [ 60.996094, 76.226907 ], [ 61.171875, 76.226907 ], [ 61.171875, 76.268695 ], [ 61.699219, 76.268695 ], [ 61.699219, 76.310358 ], [ 62.578125, 76.310358 ], [ 62.578125, 76.351896 ], [ 63.281250, 76.351896 ], [ 63.281250, 76.393312 ], [ 64.160156, 76.393312 ], [ 64.160156, 76.434604 ], [ 64.687500, 76.434604 ], [ 64.687500, 76.475773 ], [ 64.863281, 76.475773 ], [ 64.863281, 76.516819 ], [ 65.039062, 76.516819 ], [ 65.039062, 75.802118 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.644531, 69.839622 ], [ 60.644531, 69.778952 ], [ 61.347656, 69.778952 ], [ 61.347656, 69.718107 ], [ 61.875000, 69.718107 ], [ 61.875000, 69.657086 ], [ 62.402344, 69.657086 ], [ 62.402344, 69.595890 ], [ 63.105469, 69.595890 ], [ 63.105469, 69.534518 ], [ 63.457031, 69.534518 ], [ 63.457031, 69.472969 ], [ 63.808594, 69.472969 ], [ 63.808594, 69.411242 ], [ 63.984375, 69.411242 ], [ 63.984375, 69.349339 ], [ 64.335938, 69.349339 ], [ 64.335938, 69.287257 ], [ 64.687500, 69.287257 ], [ 64.687500, 69.224997 ], [ 64.863281, 69.224997 ], [ 64.863281, 69.162558 ], [ 65.039062, 69.162558 ], [ 65.039062, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.583217 ], [ 44.472656, 66.583217 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.930060 ], [ 44.121094, 66.930060 ], [ 44.121094, 68.463800 ], [ 44.296875, 68.463800 ], [ 44.296875, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.334376 ], [ 45.703125, 68.334376 ], [ 45.703125, 68.269387 ], [ 46.230469, 68.269387 ], [ 46.230469, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.941650 ], [ 46.582031, 67.941650 ], [ 46.582031, 67.742759 ], [ 46.757812, 67.742759 ], [ 46.757812, 67.676085 ], [ 46.582031, 67.676085 ], [ 46.582031, 67.609221 ], [ 45.878906, 67.609221 ], [ 45.878906, 67.542167 ], [ 45.527344, 67.542167 ], [ 45.527344, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.230469, 66.722541 ], [ 46.230469, 66.652977 ], [ 46.757812, 66.652977 ], [ 46.757812, 66.722541 ], [ 47.285156, 66.722541 ], [ 47.285156, 66.791909 ], [ 47.636719, 66.791909 ], [ 47.636719, 66.861082 ], [ 47.812500, 66.861082 ], [ 47.812500, 66.998844 ], [ 47.988281, 66.998844 ], [ 47.988281, 67.339861 ], [ 48.164062, 67.339861 ], [ 48.164062, 67.542167 ], [ 48.339844, 67.542167 ], [ 48.339844, 67.609221 ], [ 48.691406, 67.609221 ], [ 48.691406, 67.676085 ], [ 49.042969, 67.676085 ], [ 49.042969, 67.742759 ], [ 49.394531, 67.742759 ], [ 49.394531, 67.809245 ], [ 49.570312, 67.809245 ], [ 49.570312, 67.875541 ], [ 49.921875, 67.875541 ], [ 49.921875, 67.941650 ], [ 50.273438, 67.941650 ], [ 50.273438, 68.007571 ], [ 50.449219, 68.007571 ], [ 50.449219, 68.073305 ], [ 50.800781, 68.073305 ], [ 50.800781, 68.138852 ], [ 50.976562, 68.138852 ], [ 50.976562, 68.204212 ], [ 51.328125, 68.204212 ], [ 51.328125, 68.269387 ], [ 51.503906, 68.269387 ], [ 51.503906, 68.334376 ], [ 51.855469, 68.334376 ], [ 51.855469, 68.399180 ], [ 52.207031, 68.399180 ], [ 52.207031, 68.463800 ], [ 52.382812, 68.463800 ], [ 52.382812, 68.528235 ], [ 52.734375, 68.528235 ], [ 52.734375, 68.592487 ], [ 52.910156, 68.592487 ], [ 52.910156, 68.656555 ], [ 53.261719, 68.656555 ], [ 53.261719, 68.720441 ], [ 53.437500, 68.720441 ], [ 53.437500, 68.784144 ], [ 53.789062, 68.784144 ], [ 53.789062, 68.847665 ], [ 53.964844, 68.847665 ], [ 53.964844, 68.784144 ], [ 54.492188, 68.784144 ], [ 54.492188, 68.720441 ], [ 54.316406, 68.720441 ], [ 54.316406, 68.592487 ], [ 54.140625, 68.592487 ], [ 54.140625, 68.528235 ], [ 53.964844, 68.528235 ], [ 53.964844, 68.399180 ], [ 53.789062, 68.399180 ], [ 53.789062, 68.334376 ], [ 53.613281, 68.334376 ], [ 53.613281, 68.138852 ], [ 54.316406, 68.138852 ], [ 54.316406, 68.073305 ], [ 54.843750, 68.073305 ], [ 54.843750, 68.204212 ], [ 55.019531, 68.204212 ], [ 55.019531, 68.269387 ], [ 55.195312, 68.269387 ], [ 55.195312, 68.399180 ], [ 55.371094, 68.399180 ], [ 55.371094, 68.463800 ], [ 57.480469, 68.463800 ], [ 57.480469, 68.528235 ], [ 57.656250, 68.528235 ], [ 57.656250, 68.592487 ], [ 58.007812, 68.592487 ], [ 58.007812, 68.656555 ], [ 58.183594, 68.656555 ], [ 58.183594, 68.720441 ], [ 58.359375, 68.720441 ], [ 58.359375, 68.784144 ], [ 58.710938, 68.784144 ], [ 58.710938, 68.847665 ], [ 59.062500, 68.847665 ], [ 59.062500, 68.720441 ], [ 59.238281, 68.720441 ], [ 59.238281, 68.592487 ], [ 59.414062, 68.592487 ], [ 59.414062, 68.528235 ], [ 59.589844, 68.528235 ], [ 59.589844, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.269387 ], [ 60.117188, 68.269387 ], [ 60.117188, 68.399180 ], [ 60.292969, 68.399180 ], [ 60.292969, 68.528235 ], [ 60.468750, 68.528235 ], [ 60.468750, 68.592487 ], [ 60.644531, 68.592487 ], [ 60.644531, 68.720441 ], [ 60.820312, 68.720441 ], [ 60.820312, 68.847665 ], [ 60.996094, 68.847665 ], [ 60.996094, 68.974164 ], [ 60.820312, 68.974164 ], [ 60.820312, 69.099940 ], [ 60.644531, 69.099940 ], [ 60.644531, 69.224997 ], [ 60.468750, 69.224997 ], [ 60.468750, 69.349339 ], [ 60.292969, 69.349339 ], [ 60.292969, 69.472969 ], [ 60.117188, 69.472969 ], [ 60.117188, 69.595890 ], [ 60.292969, 69.595890 ], [ 60.292969, 69.718107 ], [ 60.468750, 69.718107 ], [ 60.468750, 69.839622 ], [ 60.644531, 69.839622 ] ] ], [ [ [ 65.039062, 76.516819 ], [ 65.039062, 75.802118 ], [ 64.863281, 75.802118 ], [ 64.863281, 75.758940 ], [ 64.687500, 75.758940 ], [ 64.687500, 75.715633 ], [ 64.335938, 75.715633 ], [ 64.335938, 75.672197 ], [ 63.984375, 75.672197 ], [ 63.984375, 75.628632 ], [ 63.808594, 75.628632 ], [ 63.808594, 75.584937 ], [ 63.457031, 75.584937 ], [ 63.457031, 75.541113 ], [ 63.281250, 75.541113 ], [ 63.281250, 75.497157 ], [ 62.929688, 75.497157 ], [ 62.929688, 75.453071 ], [ 62.578125, 75.453071 ], [ 62.578125, 75.408854 ], [ 62.402344, 75.408854 ], [ 62.402344, 75.364506 ], [ 62.050781, 75.364506 ], [ 62.050781, 75.320025 ], [ 61.699219, 75.320025 ], [ 61.699219, 75.275413 ], [ 61.523438, 75.275413 ], [ 61.523438, 75.230667 ], [ 61.347656, 75.230667 ], [ 61.347656, 75.185789 ], [ 61.171875, 75.185789 ], [ 61.171875, 75.095633 ], [ 60.996094, 75.095633 ], [ 60.996094, 75.050354 ], [ 60.820312, 75.050354 ], [ 60.820312, 75.004940 ], [ 60.644531, 75.004940 ], [ 60.644531, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.867889 ], [ 60.292969, 74.867889 ], [ 60.292969, 74.821934 ], [ 60.117188, 74.821934 ], [ 60.117188, 74.775843 ], [ 59.941406, 74.775843 ], [ 59.941406, 74.729615 ], [ 59.765625, 74.729615 ], [ 59.765625, 74.683250 ], [ 59.589844, 74.683250 ], [ 59.589844, 74.590108 ], [ 59.414062, 74.590108 ], [ 59.414062, 74.543330 ], [ 59.238281, 74.543330 ], [ 59.238281, 74.496413 ], [ 59.062500, 74.496413 ], [ 59.062500, 74.449358 ], [ 58.886719, 74.449358 ], [ 58.886719, 74.354828 ], [ 58.710938, 74.354828 ], [ 58.710938, 74.307353 ], [ 58.535156, 74.307353 ], [ 58.535156, 74.211983 ], [ 58.359375, 74.211983 ], [ 58.359375, 74.116047 ], [ 58.183594, 74.116047 ], [ 58.183594, 74.019543 ], [ 58.007812, 74.019543 ], [ 58.007812, 73.922469 ], [ 57.832031, 73.922469 ], [ 57.832031, 73.824820 ], [ 57.656250, 73.824820 ], [ 57.656250, 73.677264 ], [ 57.480469, 73.677264 ], [ 57.480469, 73.578167 ], [ 57.304688, 73.578167 ], [ 57.304688, 73.478485 ], [ 57.128906, 73.478485 ], [ 57.128906, 73.378215 ], [ 56.953125, 73.378215 ], [ 56.953125, 73.277353 ], [ 56.777344, 73.277353 ], [ 56.777344, 73.175897 ], [ 56.601562, 73.175897 ], [ 56.601562, 73.073844 ], [ 56.425781, 73.073844 ], [ 56.425781, 72.971189 ], [ 56.250000, 72.971189 ], [ 56.250000, 72.867930 ], [ 56.074219, 72.867930 ], [ 56.074219, 72.764065 ], [ 55.898438, 72.764065 ], [ 55.898438, 72.659588 ], [ 55.722656, 72.659588 ], [ 55.722656, 72.554498 ], [ 55.546875, 72.554498 ], [ 55.546875, 72.448792 ], [ 55.371094, 72.448792 ], [ 55.371094, 71.965388 ], [ 55.546875, 71.965388 ], [ 55.546875, 71.469124 ], [ 55.722656, 71.469124 ], [ 55.722656, 71.413177 ], [ 55.898438, 71.413177 ], [ 55.898438, 71.300793 ], [ 56.074219, 71.300793 ], [ 56.074219, 71.244356 ], [ 56.250000, 71.244356 ], [ 56.250000, 71.187754 ], [ 56.425781, 71.187754 ], [ 56.425781, 71.130988 ], [ 56.601562, 71.130988 ], [ 56.601562, 71.016960 ], [ 56.777344, 71.016960 ], [ 56.777344, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.902268 ], [ 57.128906, 70.902268 ], [ 57.128906, 70.786910 ], [ 57.304688, 70.786910 ], [ 57.304688, 70.728979 ], [ 57.480469, 70.728979 ], [ 57.480469, 70.670881 ], [ 57.128906, 70.670881 ], [ 57.128906, 70.612614 ], [ 56.250000, 70.612614 ], [ 56.250000, 70.670881 ], [ 55.195312, 70.670881 ], [ 55.195312, 70.728979 ], [ 54.140625, 70.728979 ], [ 54.140625, 70.786910 ], [ 53.613281, 70.786910 ], [ 53.613281, 70.959697 ], [ 53.437500, 70.959697 ], [ 53.437500, 71.187754 ], [ 53.085938, 71.187754 ], [ 53.085938, 71.244356 ], [ 52.734375, 71.244356 ], [ 52.734375, 71.300793 ], [ 52.382812, 71.300793 ], [ 52.382812, 71.357067 ], [ 52.031250, 71.357067 ], [ 52.031250, 71.413177 ], [ 51.679688, 71.413177 ], [ 51.679688, 71.746432 ], [ 51.503906, 71.746432 ], [ 51.503906, 72.019729 ], [ 51.679688, 72.019729 ], [ 51.679688, 72.073911 ], [ 52.031250, 72.073911 ], [ 52.031250, 72.127936 ], [ 52.207031, 72.127936 ], [ 52.207031, 72.181804 ], [ 52.558594, 72.181804 ], [ 52.558594, 72.501722 ], [ 52.382812, 72.501722 ], [ 52.382812, 72.764065 ], [ 52.558594, 72.764065 ], [ 52.558594, 72.867930 ], [ 52.734375, 72.867930 ], [ 52.734375, 72.919635 ], [ 52.910156, 72.919635 ], [ 52.910156, 72.971189 ], [ 53.085938, 72.971189 ], [ 53.085938, 73.073844 ], [ 53.261719, 73.073844 ], [ 53.261719, 73.124945 ], [ 53.437500, 73.124945 ], [ 53.437500, 73.226700 ], [ 53.613281, 73.226700 ], [ 53.613281, 73.277353 ], [ 53.789062, 73.277353 ], [ 53.789062, 73.378215 ], [ 53.964844, 73.378215 ], [ 53.964844, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.478485 ], [ 54.316406, 73.478485 ], [ 54.316406, 73.578167 ], [ 54.492188, 73.578167 ], [ 54.492188, 73.627789 ], [ 54.140625, 73.627789 ], [ 54.140625, 73.677264 ], [ 53.613281, 73.677264 ], [ 53.613281, 73.824820 ], [ 53.789062, 73.824820 ], [ 53.789062, 73.873717 ], [ 53.964844, 73.873717 ], [ 53.964844, 73.922469 ], [ 54.140625, 73.922469 ], [ 54.140625, 74.019543 ], [ 54.316406, 74.019543 ], [ 54.316406, 74.067866 ], [ 54.492188, 74.067866 ], [ 54.492188, 74.116047 ], [ 54.667969, 74.116047 ], [ 54.667969, 74.211983 ], [ 54.843750, 74.211983 ], [ 54.843750, 74.259738 ], [ 55.019531, 74.259738 ], [ 55.019531, 74.307353 ], [ 55.195312, 74.307353 ], [ 55.195312, 74.402163 ], [ 55.371094, 74.402163 ], [ 55.371094, 74.449358 ], [ 55.546875, 74.449358 ], [ 55.546875, 74.496413 ], [ 55.722656, 74.496413 ], [ 55.722656, 74.590108 ], [ 55.898438, 74.590108 ], [ 55.898438, 74.729615 ], [ 55.722656, 74.729615 ], [ 55.722656, 74.959392 ], [ 55.546875, 74.959392 ], [ 55.546875, 75.095633 ], [ 55.722656, 75.095633 ], [ 55.722656, 75.140778 ], [ 55.898438, 75.140778 ], [ 55.898438, 75.185789 ], [ 56.074219, 75.185789 ], [ 56.074219, 75.230667 ], [ 56.250000, 75.230667 ], [ 56.250000, 75.275413 ], [ 56.425781, 75.275413 ], [ 56.425781, 75.320025 ], [ 56.601562, 75.320025 ], [ 56.601562, 75.364506 ], [ 56.953125, 75.364506 ], [ 56.953125, 75.408854 ], [ 57.128906, 75.408854 ], [ 57.128906, 75.453071 ], [ 57.304688, 75.453071 ], [ 57.304688, 75.497157 ], [ 57.480469, 75.497157 ], [ 57.480469, 75.541113 ], [ 57.656250, 75.541113 ], [ 57.656250, 75.584937 ], [ 57.832031, 75.584937 ], [ 57.832031, 75.628632 ], [ 58.007812, 75.628632 ], [ 58.007812, 75.672197 ], [ 58.183594, 75.672197 ], [ 58.183594, 75.715633 ], [ 58.535156, 75.715633 ], [ 58.535156, 75.758940 ], [ 58.710938, 75.758940 ], [ 58.710938, 75.802118 ], [ 58.886719, 75.802118 ], [ 58.886719, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 75.888091 ], [ 59.414062, 75.888091 ], [ 59.414062, 75.930885 ], [ 59.589844, 75.930885 ], [ 59.589844, 75.973553 ], [ 59.765625, 75.973553 ], [ 59.765625, 76.016094 ], [ 60.117188, 76.016094 ], [ 60.117188, 76.058508 ], [ 60.292969, 76.058508 ], [ 60.292969, 76.100796 ], [ 60.468750, 76.100796 ], [ 60.468750, 76.142958 ], [ 60.644531, 76.142958 ], [ 60.644531, 76.184995 ], [ 60.996094, 76.184995 ], [ 60.996094, 76.226907 ], [ 61.171875, 76.226907 ], [ 61.171875, 76.268695 ], [ 61.699219, 76.268695 ], [ 61.699219, 76.310358 ], [ 62.578125, 76.310358 ], [ 62.578125, 76.351896 ], [ 63.281250, 76.351896 ], [ 63.281250, 76.393312 ], [ 64.160156, 76.393312 ], [ 64.160156, 76.434604 ], [ 64.687500, 76.434604 ], [ 64.687500, 76.475773 ], [ 64.863281, 76.475773 ], [ 64.863281, 76.516819 ], [ 65.039062, 76.516819 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.664062, 72.919635 ], [ 71.191406, 72.919635 ], [ 71.191406, 72.867930 ], [ 71.718750, 72.867930 ], [ 71.718750, 72.816074 ], [ 72.246094, 72.816074 ], [ 72.246094, 72.764065 ], [ 72.597656, 72.764065 ], [ 72.597656, 72.501722 ], [ 72.773438, 72.501722 ], [ 72.773438, 72.127936 ], [ 72.597656, 72.127936 ], [ 72.597656, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.801410 ], [ 72.246094, 71.801410 ], [ 72.246094, 71.635993 ], [ 72.070312, 71.635993 ], [ 72.070312, 71.469124 ], [ 71.894531, 71.469124 ], [ 71.894531, 71.357067 ], [ 72.070312, 71.357067 ], [ 72.070312, 71.244356 ], [ 72.246094, 71.244356 ], [ 72.246094, 71.130988 ], [ 72.421875, 71.130988 ], [ 72.421875, 70.902268 ], [ 72.597656, 70.902268 ], [ 72.597656, 70.554179 ], [ 72.773438, 70.554179 ], [ 72.773438, 69.718107 ], [ 72.597656, 69.718107 ], [ 72.597656, 68.974164 ], [ 72.773438, 68.974164 ], [ 72.773438, 68.847665 ], [ 72.949219, 68.847665 ], [ 72.949219, 68.720441 ], [ 73.125000, 68.720441 ], [ 73.125000, 68.656555 ], [ 73.300781, 68.656555 ], [ 73.300781, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.399180 ], [ 73.652344, 68.399180 ], [ 73.652344, 68.204212 ], [ 73.476562, 68.204212 ], [ 73.476562, 67.875541 ], [ 73.300781, 67.875541 ], [ 73.300781, 67.676085 ], [ 73.125000, 67.676085 ], [ 73.125000, 67.542167 ], [ 72.949219, 67.542167 ], [ 72.949219, 67.407487 ], [ 72.773438, 67.407487 ], [ 72.773438, 67.272043 ], [ 72.597656, 67.272043 ], [ 72.597656, 67.135829 ], [ 72.421875, 67.135829 ], [ 72.421875, 66.998844 ], [ 72.246094, 66.998844 ], [ 72.246094, 66.861082 ], [ 72.070312, 66.861082 ], [ 72.070312, 66.722541 ], [ 71.894531, 66.722541 ], [ 71.894531, 66.583217 ], [ 71.718750, 66.583217 ], [ 71.718750, 66.443107 ], [ 71.542969, 66.443107 ], [ 71.542969, 66.231457 ], [ 72.070312, 66.231457 ], [ 72.070312, 66.160511 ], [ 65.039062, 66.160511 ], [ 65.039062, 69.099940 ], [ 65.214844, 69.099940 ], [ 65.214844, 69.037142 ], [ 65.566406, 69.037142 ], [ 65.566406, 68.974164 ], [ 65.742188, 68.974164 ], [ 65.742188, 68.911005 ], [ 65.917969, 68.911005 ], [ 65.917969, 68.847665 ], [ 66.093750, 68.847665 ], [ 66.093750, 68.784144 ], [ 66.269531, 68.784144 ], [ 66.269531, 68.720441 ], [ 66.445312, 68.720441 ], [ 66.445312, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.592487 ], [ 66.972656, 68.592487 ], [ 66.972656, 68.528235 ], [ 67.148438, 68.528235 ], [ 67.148438, 68.463800 ], [ 67.324219, 68.463800 ], [ 67.324219, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.334376 ], [ 67.675781, 68.334376 ], [ 67.675781, 68.269387 ], [ 68.027344, 68.269387 ], [ 68.027344, 68.204212 ], [ 68.203125, 68.204212 ], [ 68.203125, 68.138852 ], [ 68.378906, 68.138852 ], [ 68.378906, 68.073305 ], [ 68.554688, 68.073305 ], [ 68.554688, 68.138852 ], [ 68.730469, 68.138852 ], [ 68.730469, 68.269387 ], [ 68.906250, 68.269387 ], [ 68.906250, 68.399180 ], [ 69.082031, 68.399180 ], [ 69.082031, 68.528235 ], [ 69.257812, 68.528235 ], [ 69.257812, 68.592487 ], [ 69.082031, 68.592487 ], [ 69.082031, 68.720441 ], [ 68.906250, 68.720441 ], [ 68.906250, 68.784144 ], [ 68.730469, 68.784144 ], [ 68.730469, 68.911005 ], [ 68.554688, 68.911005 ], [ 68.554688, 68.974164 ], [ 68.378906, 68.974164 ], [ 68.378906, 69.099940 ], [ 68.203125, 69.099940 ], [ 68.203125, 69.349339 ], [ 67.851562, 69.349339 ], [ 67.851562, 69.411242 ], [ 67.148438, 69.411242 ], [ 67.148438, 69.472969 ], [ 66.972656, 69.472969 ], [ 66.972656, 69.534518 ], [ 67.148438, 69.534518 ], [ 67.148438, 69.778952 ], [ 67.324219, 69.778952 ], [ 67.324219, 70.020587 ], [ 67.148438, 70.020587 ], [ 67.148438, 70.318738 ], [ 66.972656, 70.318738 ], [ 66.972656, 70.554179 ], [ 66.796875, 70.554179 ], [ 66.796875, 70.844673 ], [ 66.621094, 70.844673 ], [ 66.621094, 71.016960 ], [ 66.796875, 71.016960 ], [ 66.796875, 71.130988 ], [ 66.972656, 71.130988 ], [ 66.972656, 71.187754 ], [ 67.148438, 71.187754 ], [ 67.148438, 71.300793 ], [ 67.324219, 71.300793 ], [ 67.324219, 71.357067 ], [ 67.500000, 71.357067 ], [ 67.500000, 71.469124 ], [ 67.675781, 71.469124 ], [ 67.675781, 71.524909 ], [ 67.851562, 71.524909 ], [ 67.851562, 71.580532 ], [ 68.027344, 71.580532 ], [ 68.027344, 71.691293 ], [ 68.203125, 71.691293 ], [ 68.203125, 71.746432 ], [ 68.378906, 71.746432 ], [ 68.378906, 71.856229 ], [ 68.554688, 71.856229 ], [ 68.554688, 72.019729 ], [ 68.730469, 72.019729 ], [ 68.730469, 72.235514 ], [ 68.906250, 72.235514 ], [ 68.906250, 72.501722 ], [ 69.082031, 72.501722 ], [ 69.082031, 72.711903 ], [ 69.257812, 72.711903 ], [ 69.257812, 72.867930 ], [ 69.433594, 72.867930 ], [ 69.433594, 72.919635 ], [ 69.785156, 72.919635 ], [ 69.785156, 72.971189 ], [ 69.960938, 72.971189 ], [ 69.960938, 73.022592 ], [ 70.136719, 73.022592 ], [ 70.136719, 72.971189 ], [ 70.664062, 72.971189 ], [ 70.664062, 72.919635 ] ] ], [ [ [ 81.386719, 71.965388 ], [ 81.210938, 71.965388 ], [ 81.210938, 72.181804 ], [ 81.035156, 72.181804 ], [ 81.035156, 72.342464 ], [ 80.859375, 72.342464 ], [ 80.859375, 72.501722 ], [ 80.683594, 72.501722 ], [ 80.683594, 73.124945 ], [ 80.507812, 73.124945 ], [ 80.507812, 73.627789 ], [ 80.859375, 73.627789 ], [ 80.859375, 73.677264 ], [ 81.210938, 73.677264 ], [ 81.210938, 73.726595 ], [ 81.562500, 73.726595 ], [ 81.562500, 73.775780 ], [ 81.914062, 73.775780 ], [ 81.914062, 73.824820 ], [ 82.265625, 73.824820 ], [ 82.265625, 73.873717 ], [ 83.320312, 73.873717 ], [ 83.320312, 73.824820 ], [ 85.429688, 73.824820 ], [ 85.429688, 73.873717 ], [ 86.484375, 73.873717 ], [ 86.484375, 73.922469 ], [ 86.835938, 73.922469 ], [ 86.835938, 73.971078 ], [ 86.660156, 73.971078 ], [ 86.660156, 74.067866 ], [ 86.484375, 74.067866 ], [ 86.484375, 74.164085 ], [ 86.308594, 74.164085 ], [ 86.308594, 74.259738 ], [ 86.132812, 74.259738 ], [ 86.132812, 74.354828 ], [ 85.957031, 74.354828 ], [ 85.957031, 74.496413 ], [ 86.132812, 74.496413 ], [ 86.132812, 74.590108 ], [ 86.308594, 74.590108 ], [ 86.308594, 74.683250 ], [ 86.484375, 74.683250 ], [ 86.484375, 74.775843 ], [ 86.660156, 74.775843 ], [ 86.660156, 74.867889 ], [ 86.835938, 74.867889 ], [ 86.835938, 74.959392 ], [ 87.011719, 74.959392 ], [ 87.011719, 75.050354 ], [ 87.187500, 75.050354 ], [ 87.187500, 75.095633 ], [ 87.890625, 75.095633 ], [ 87.890625, 75.140778 ], [ 88.417969, 75.140778 ], [ 88.417969, 75.185789 ], [ 88.593750, 75.185789 ], [ 88.593750, 75.230667 ], [ 88.769531, 75.230667 ], [ 88.769531, 75.275413 ], [ 88.945312, 75.275413 ], [ 88.945312, 75.320025 ], [ 89.121094, 75.320025 ], [ 89.121094, 75.364506 ], [ 89.296875, 75.364506 ], [ 89.296875, 75.408854 ], [ 89.472656, 75.408854 ], [ 89.472656, 75.453071 ], [ 89.648438, 75.453071 ], [ 89.648438, 75.497157 ], [ 89.824219, 75.497157 ], [ 89.824219, 75.541113 ], [ 90.000000, 75.541113 ], [ 90.000000, 75.584937 ], [ 90.175781, 75.584937 ], [ 90.175781, 75.628632 ], [ 90.703125, 75.628632 ], [ 90.703125, 75.672197 ], [ 90.878906, 75.672197 ], [ 90.878906, 66.160511 ], [ 72.421875, 66.160511 ], [ 72.421875, 66.231457 ], [ 72.597656, 66.231457 ], [ 72.597656, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 72.949219, 66.513260 ], [ 72.949219, 66.583217 ], [ 73.300781, 66.583217 ], [ 73.300781, 66.652977 ], [ 73.652344, 66.652977 ], [ 73.652344, 66.722541 ], [ 74.003906, 66.722541 ], [ 74.003906, 66.998844 ], [ 74.179688, 66.998844 ], [ 74.179688, 67.272043 ], [ 74.355469, 67.272043 ], [ 74.355469, 67.407487 ], [ 74.531250, 67.407487 ], [ 74.531250, 67.474922 ], [ 74.707031, 67.474922 ], [ 74.707031, 67.542167 ], [ 74.882812, 67.542167 ], [ 74.882812, 67.676085 ], [ 75.058594, 67.676085 ], [ 75.058594, 67.809245 ], [ 74.882812, 67.809245 ], [ 74.882812, 68.007571 ], [ 74.707031, 68.007571 ], [ 74.707031, 68.204212 ], [ 74.531250, 68.204212 ], [ 74.531250, 68.463800 ], [ 74.707031, 68.463800 ], [ 74.707031, 68.784144 ], [ 74.882812, 68.784144 ], [ 74.882812, 68.974164 ], [ 74.531250, 68.974164 ], [ 74.531250, 69.037142 ], [ 74.003906, 69.037142 ], [ 74.003906, 69.099940 ], [ 73.828125, 69.099940 ], [ 73.828125, 69.349339 ], [ 73.652344, 69.349339 ], [ 73.652344, 69.778952 ], [ 73.828125, 69.778952 ], [ 73.828125, 70.020587 ], [ 74.003906, 70.020587 ], [ 74.003906, 70.259452 ], [ 74.179688, 70.259452 ], [ 74.179688, 70.495574 ], [ 74.355469, 70.495574 ], [ 74.355469, 70.670881 ], [ 74.179688, 70.670881 ], [ 74.179688, 70.786910 ], [ 74.003906, 70.786910 ], [ 74.003906, 70.902268 ], [ 73.828125, 70.902268 ], [ 73.828125, 71.016960 ], [ 73.652344, 71.016960 ], [ 73.652344, 71.130988 ], [ 73.476562, 71.130988 ], [ 73.476562, 71.244356 ], [ 73.300781, 71.244356 ], [ 73.300781, 71.357067 ], [ 73.125000, 71.357067 ], [ 73.125000, 71.469124 ], [ 73.300781, 71.469124 ], [ 73.300781, 71.524909 ], [ 73.476562, 71.524909 ], [ 73.476562, 71.635993 ], [ 73.652344, 71.635993 ], [ 73.652344, 71.691293 ], [ 73.828125, 71.691293 ], [ 73.828125, 71.746432 ], [ 74.003906, 71.746432 ], [ 74.003906, 71.801410 ], [ 74.179688, 71.801410 ], [ 74.179688, 71.856229 ], [ 74.355469, 71.856229 ], [ 74.355469, 71.965388 ], [ 74.531250, 71.965388 ], [ 74.531250, 72.019729 ], [ 74.707031, 72.019729 ], [ 74.707031, 72.073911 ], [ 74.882812, 72.073911 ], [ 74.882812, 72.448792 ], [ 74.707031, 72.448792 ], [ 74.707031, 72.816074 ], [ 75.058594, 72.816074 ], [ 75.058594, 72.867930 ], [ 75.234375, 72.867930 ], [ 75.234375, 72.764065 ], [ 75.410156, 72.764065 ], [ 75.410156, 72.554498 ], [ 75.585938, 72.554498 ], [ 75.585938, 72.342464 ], [ 75.761719, 72.342464 ], [ 75.761719, 72.127936 ], [ 75.585938, 72.127936 ], [ 75.585938, 71.801410 ], [ 75.410156, 71.801410 ], [ 75.410156, 71.469124 ], [ 75.234375, 71.469124 ], [ 75.234375, 71.300793 ], [ 75.585938, 71.300793 ], [ 75.585938, 71.244356 ], [ 75.761719, 71.244356 ], [ 75.761719, 71.187754 ], [ 76.113281, 71.187754 ], [ 76.113281, 71.130988 ], [ 76.289062, 71.130988 ], [ 76.289062, 71.300793 ], [ 76.113281, 71.300793 ], [ 76.113281, 71.635993 ], [ 75.937500, 71.635993 ], [ 75.937500, 71.856229 ], [ 76.113281, 71.856229 ], [ 76.113281, 71.910888 ], [ 76.289062, 71.910888 ], [ 76.289062, 71.965388 ], [ 76.464844, 71.965388 ], [ 76.464844, 72.019729 ], [ 76.640625, 72.019729 ], [ 76.640625, 72.073911 ], [ 76.992188, 72.073911 ], [ 76.992188, 72.127936 ], [ 77.167969, 72.127936 ], [ 77.167969, 72.181804 ], [ 77.343750, 72.181804 ], [ 77.343750, 72.235514 ], [ 77.519531, 72.235514 ], [ 77.519531, 72.289067 ], [ 78.750000, 72.289067 ], [ 78.750000, 72.342464 ], [ 79.628906, 72.342464 ], [ 79.628906, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.235514 ], [ 79.980469, 72.235514 ], [ 79.980469, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.127936 ], [ 80.332031, 72.127936 ], [ 80.332031, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 72.019729 ], [ 80.683594, 72.019729 ], [ 80.683594, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.910888 ], [ 81.035156, 71.910888 ], [ 81.035156, 71.856229 ], [ 81.210938, 71.856229 ], [ 81.210938, 71.801410 ], [ 81.386719, 71.801410 ], [ 81.386719, 71.965388 ] ], [ [ 81.386719, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 71.801410 ], [ 81.386719, 71.801410 ], [ 81.386719, 71.746432 ] ] ], [ [ [ 68.378906, 76.760541 ], [ 68.554688, 76.760541 ], [ 68.554688, 76.679785 ], [ 68.730469, 76.679785 ], [ 68.730469, 76.598545 ], [ 68.906250, 76.598545 ], [ 68.906250, 76.516819 ], [ 68.730469, 76.516819 ], [ 68.730469, 76.434604 ], [ 68.554688, 76.434604 ], [ 68.554688, 76.351896 ], [ 68.378906, 76.351896 ], [ 68.378906, 76.268695 ], [ 68.203125, 76.268695 ], [ 68.203125, 76.184995 ], [ 67.851562, 76.184995 ], [ 67.851562, 76.142958 ], [ 67.500000, 76.142958 ], [ 67.500000, 76.100796 ], [ 67.148438, 76.100796 ], [ 67.148438, 76.058508 ], [ 66.796875, 76.058508 ], [ 66.796875, 76.016094 ], [ 66.621094, 76.016094 ], [ 66.621094, 75.973553 ], [ 66.269531, 75.973553 ], [ 66.269531, 75.930885 ], [ 65.917969, 75.930885 ], [ 65.917969, 75.888091 ], [ 65.566406, 75.888091 ], [ 65.566406, 75.845169 ], [ 65.214844, 75.845169 ], [ 65.214844, 75.802118 ], [ 65.039062, 75.802118 ], [ 65.039062, 76.557743 ], [ 65.214844, 76.557743 ], [ 65.214844, 76.598545 ], [ 65.566406, 76.598545 ], [ 65.566406, 76.639226 ], [ 65.742188, 76.639226 ], [ 65.742188, 76.679785 ], [ 65.917969, 76.679785 ], [ 65.917969, 76.720223 ], [ 66.093750, 76.720223 ], [ 66.093750, 76.760541 ], [ 66.269531, 76.760541 ], [ 66.269531, 76.800739 ], [ 66.621094, 76.800739 ], [ 66.621094, 76.840816 ], [ 67.324219, 76.840816 ], [ 67.324219, 76.880775 ], [ 68.027344, 76.880775 ], [ 68.027344, 76.920614 ], [ 68.203125, 76.920614 ], [ 68.203125, 76.840816 ], [ 68.378906, 76.840816 ], [ 68.378906, 76.760541 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.136719, 73.022592 ], [ 70.136719, 72.971189 ], [ 70.664062, 72.971189 ], [ 70.664062, 72.919635 ], [ 71.191406, 72.919635 ], [ 71.191406, 72.867930 ], [ 71.718750, 72.867930 ], [ 71.718750, 72.816074 ], [ 72.246094, 72.816074 ], [ 72.246094, 72.764065 ], [ 72.597656, 72.764065 ], [ 72.597656, 72.501722 ], [ 72.773438, 72.501722 ], [ 72.773438, 72.127936 ], [ 72.597656, 72.127936 ], [ 72.597656, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.801410 ], [ 72.246094, 71.801410 ], [ 72.246094, 71.635993 ], [ 72.070312, 71.635993 ], [ 72.070312, 71.469124 ], [ 71.894531, 71.469124 ], [ 71.894531, 71.357067 ], [ 72.070312, 71.357067 ], [ 72.070312, 71.244356 ], [ 72.246094, 71.244356 ], [ 72.246094, 71.130988 ], [ 72.421875, 71.130988 ], [ 72.421875, 70.902268 ], [ 72.597656, 70.902268 ], [ 72.597656, 70.554179 ], [ 72.773438, 70.554179 ], [ 72.773438, 69.718107 ], [ 72.597656, 69.718107 ], [ 72.597656, 68.974164 ], [ 72.773438, 68.974164 ], [ 72.773438, 68.847665 ], [ 72.949219, 68.847665 ], [ 72.949219, 68.720441 ], [ 73.125000, 68.720441 ], [ 73.125000, 68.656555 ], [ 73.300781, 68.656555 ], [ 73.300781, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.399180 ], [ 73.652344, 68.399180 ], [ 73.652344, 68.204212 ], [ 73.476562, 68.204212 ], [ 73.476562, 67.875541 ], [ 73.300781, 67.875541 ], [ 73.300781, 67.676085 ], [ 73.125000, 67.676085 ], [ 73.125000, 67.542167 ], [ 72.949219, 67.542167 ], [ 72.949219, 67.407487 ], [ 72.773438, 67.407487 ], [ 72.773438, 67.272043 ], [ 72.597656, 67.272043 ], [ 72.597656, 67.135829 ], [ 72.421875, 67.135829 ], [ 72.421875, 66.998844 ], [ 72.246094, 66.998844 ], [ 72.246094, 66.861082 ], [ 72.070312, 66.861082 ], [ 72.070312, 66.722541 ], [ 71.894531, 66.722541 ], [ 71.894531, 66.583217 ], [ 71.718750, 66.583217 ], [ 71.718750, 66.443107 ], [ 71.542969, 66.443107 ], [ 71.542969, 66.231457 ], [ 72.070312, 66.231457 ], [ 72.070312, 66.160511 ], [ 65.039062, 66.160511 ], [ 65.039062, 69.099940 ], [ 65.214844, 69.099940 ], [ 65.214844, 69.037142 ], [ 65.566406, 69.037142 ], [ 65.566406, 68.974164 ], [ 65.742188, 68.974164 ], [ 65.742188, 68.911005 ], [ 65.917969, 68.911005 ], [ 65.917969, 68.847665 ], [ 66.093750, 68.847665 ], [ 66.093750, 68.784144 ], [ 66.269531, 68.784144 ], [ 66.269531, 68.720441 ], [ 66.445312, 68.720441 ], [ 66.445312, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.592487 ], [ 66.972656, 68.592487 ], [ 66.972656, 68.528235 ], [ 67.148438, 68.528235 ], [ 67.148438, 68.463800 ], [ 67.324219, 68.463800 ], [ 67.324219, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.334376 ], [ 67.675781, 68.334376 ], [ 67.675781, 68.269387 ], [ 68.027344, 68.269387 ], [ 68.027344, 68.204212 ], [ 68.203125, 68.204212 ], [ 68.203125, 68.138852 ], [ 68.378906, 68.138852 ], [ 68.378906, 68.073305 ], [ 68.554688, 68.073305 ], [ 68.554688, 68.138852 ], [ 68.730469, 68.138852 ], [ 68.730469, 68.269387 ], [ 68.906250, 68.269387 ], [ 68.906250, 68.399180 ], [ 69.082031, 68.399180 ], [ 69.082031, 68.528235 ], [ 69.257812, 68.528235 ], [ 69.257812, 68.592487 ], [ 69.082031, 68.592487 ], [ 69.082031, 68.720441 ], [ 68.906250, 68.720441 ], [ 68.906250, 68.784144 ], [ 68.730469, 68.784144 ], [ 68.730469, 68.911005 ], [ 68.554688, 68.911005 ], [ 68.554688, 68.974164 ], [ 68.378906, 68.974164 ], [ 68.378906, 69.099940 ], [ 68.203125, 69.099940 ], [ 68.203125, 69.349339 ], [ 67.851562, 69.349339 ], [ 67.851562, 69.411242 ], [ 67.148438, 69.411242 ], [ 67.148438, 69.472969 ], [ 66.972656, 69.472969 ], [ 66.972656, 69.534518 ], [ 67.148438, 69.534518 ], [ 67.148438, 69.778952 ], [ 67.324219, 69.778952 ], [ 67.324219, 70.020587 ], [ 67.148438, 70.020587 ], [ 67.148438, 70.318738 ], [ 66.972656, 70.318738 ], [ 66.972656, 70.554179 ], [ 66.796875, 70.554179 ], [ 66.796875, 70.844673 ], [ 66.621094, 70.844673 ], [ 66.621094, 71.016960 ], [ 66.796875, 71.016960 ], [ 66.796875, 71.130988 ], [ 66.972656, 71.130988 ], [ 66.972656, 71.187754 ], [ 67.148438, 71.187754 ], [ 67.148438, 71.300793 ], [ 67.324219, 71.300793 ], [ 67.324219, 71.357067 ], [ 67.500000, 71.357067 ], [ 67.500000, 71.469124 ], [ 67.675781, 71.469124 ], [ 67.675781, 71.524909 ], [ 67.851562, 71.524909 ], [ 67.851562, 71.580532 ], [ 68.027344, 71.580532 ], [ 68.027344, 71.691293 ], [ 68.203125, 71.691293 ], [ 68.203125, 71.746432 ], [ 68.378906, 71.746432 ], [ 68.378906, 71.856229 ], [ 68.554688, 71.856229 ], [ 68.554688, 72.019729 ], [ 68.730469, 72.019729 ], [ 68.730469, 72.235514 ], [ 68.906250, 72.235514 ], [ 68.906250, 72.501722 ], [ 69.082031, 72.501722 ], [ 69.082031, 72.711903 ], [ 69.257812, 72.711903 ], [ 69.257812, 72.867930 ], [ 69.433594, 72.867930 ], [ 69.433594, 72.919635 ], [ 69.785156, 72.919635 ], [ 69.785156, 72.971189 ], [ 69.960938, 72.971189 ], [ 69.960938, 73.022592 ], [ 70.136719, 73.022592 ] ] ], [ [ [ 81.386719, 71.801410 ], [ 81.386719, 71.965388 ], [ 81.210938, 71.965388 ], [ 81.210938, 72.181804 ], [ 81.035156, 72.181804 ], [ 81.035156, 72.342464 ], [ 80.859375, 72.342464 ], [ 80.859375, 72.501722 ], [ 80.683594, 72.501722 ], [ 80.683594, 73.124945 ], [ 80.507812, 73.124945 ], [ 80.507812, 73.627789 ], [ 80.859375, 73.627789 ], [ 80.859375, 73.677264 ], [ 81.210938, 73.677264 ], [ 81.210938, 73.726595 ], [ 81.562500, 73.726595 ], [ 81.562500, 73.775780 ], [ 81.914062, 73.775780 ], [ 81.914062, 73.824820 ], [ 82.265625, 73.824820 ], [ 82.265625, 73.873717 ], [ 83.320312, 73.873717 ], [ 83.320312, 73.824820 ], [ 85.429688, 73.824820 ], [ 85.429688, 73.873717 ], [ 86.484375, 73.873717 ], [ 86.484375, 73.922469 ], [ 86.835938, 73.922469 ], [ 86.835938, 73.971078 ], [ 86.660156, 73.971078 ], [ 86.660156, 74.067866 ], [ 86.484375, 74.067866 ], [ 86.484375, 74.164085 ], [ 86.308594, 74.164085 ], [ 86.308594, 74.259738 ], [ 86.132812, 74.259738 ], [ 86.132812, 74.354828 ], [ 85.957031, 74.354828 ], [ 85.957031, 74.496413 ], [ 86.132812, 74.496413 ], [ 86.132812, 74.590108 ], [ 86.308594, 74.590108 ], [ 86.308594, 74.683250 ], [ 86.484375, 74.683250 ], [ 86.484375, 74.775843 ], [ 86.660156, 74.775843 ], [ 86.660156, 74.867889 ], [ 86.835938, 74.867889 ], [ 86.835938, 74.959392 ], [ 87.011719, 74.959392 ], [ 87.011719, 75.050354 ], [ 87.187500, 75.050354 ], [ 87.187500, 75.095633 ], [ 87.890625, 75.095633 ], [ 87.890625, 75.140778 ], [ 88.417969, 75.140778 ], [ 88.417969, 75.185789 ], [ 88.593750, 75.185789 ], [ 88.593750, 75.230667 ], [ 88.769531, 75.230667 ], [ 88.769531, 75.275413 ], [ 88.945312, 75.275413 ], [ 88.945312, 75.320025 ], [ 89.121094, 75.320025 ], [ 89.121094, 75.364506 ], [ 89.296875, 75.364506 ], [ 89.296875, 75.408854 ], [ 89.472656, 75.408854 ], [ 89.472656, 75.453071 ], [ 89.648438, 75.453071 ], [ 89.648438, 75.497157 ], [ 89.824219, 75.497157 ], [ 89.824219, 75.541113 ], [ 90.000000, 75.541113 ], [ 90.000000, 75.584937 ], [ 90.175781, 75.584937 ], [ 90.175781, 75.628632 ], [ 90.703125, 75.628632 ], [ 90.703125, 75.672197 ], [ 90.878906, 75.672197 ], [ 90.878906, 66.160511 ], [ 72.421875, 66.160511 ], [ 72.421875, 66.231457 ], [ 72.597656, 66.231457 ], [ 72.597656, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 72.949219, 66.513260 ], [ 72.949219, 66.583217 ], [ 73.300781, 66.583217 ], [ 73.300781, 66.652977 ], [ 73.652344, 66.652977 ], [ 73.652344, 66.722541 ], [ 74.003906, 66.722541 ], [ 74.003906, 66.998844 ], [ 74.179688, 66.998844 ], [ 74.179688, 67.272043 ], [ 74.355469, 67.272043 ], [ 74.355469, 67.407487 ], [ 74.531250, 67.407487 ], [ 74.531250, 67.474922 ], [ 74.707031, 67.474922 ], [ 74.707031, 67.542167 ], [ 74.882812, 67.542167 ], [ 74.882812, 67.676085 ], [ 75.058594, 67.676085 ], [ 75.058594, 67.809245 ], [ 74.882812, 67.809245 ], [ 74.882812, 68.007571 ], [ 74.707031, 68.007571 ], [ 74.707031, 68.204212 ], [ 74.531250, 68.204212 ], [ 74.531250, 68.463800 ], [ 74.707031, 68.463800 ], [ 74.707031, 68.784144 ], [ 74.882812, 68.784144 ], [ 74.882812, 68.974164 ], [ 74.531250, 68.974164 ], [ 74.531250, 69.037142 ], [ 74.003906, 69.037142 ], [ 74.003906, 69.099940 ], [ 73.828125, 69.099940 ], [ 73.828125, 69.349339 ], [ 73.652344, 69.349339 ], [ 73.652344, 69.778952 ], [ 73.828125, 69.778952 ], [ 73.828125, 70.020587 ], [ 74.003906, 70.020587 ], [ 74.003906, 70.259452 ], [ 74.179688, 70.259452 ], [ 74.179688, 70.495574 ], [ 74.355469, 70.495574 ], [ 74.355469, 70.670881 ], [ 74.179688, 70.670881 ], [ 74.179688, 70.786910 ], [ 74.003906, 70.786910 ], [ 74.003906, 70.902268 ], [ 73.828125, 70.902268 ], [ 73.828125, 71.016960 ], [ 73.652344, 71.016960 ], [ 73.652344, 71.130988 ], [ 73.476562, 71.130988 ], [ 73.476562, 71.244356 ], [ 73.300781, 71.244356 ], [ 73.300781, 71.357067 ], [ 73.125000, 71.357067 ], [ 73.125000, 71.469124 ], [ 73.300781, 71.469124 ], [ 73.300781, 71.524909 ], [ 73.476562, 71.524909 ], [ 73.476562, 71.635993 ], [ 73.652344, 71.635993 ], [ 73.652344, 71.691293 ], [ 73.828125, 71.691293 ], [ 73.828125, 71.746432 ], [ 74.003906, 71.746432 ], [ 74.003906, 71.801410 ], [ 74.179688, 71.801410 ], [ 74.179688, 71.856229 ], [ 74.355469, 71.856229 ], [ 74.355469, 71.965388 ], [ 74.531250, 71.965388 ], [ 74.531250, 72.019729 ], [ 74.707031, 72.019729 ], [ 74.707031, 72.073911 ], [ 74.882812, 72.073911 ], [ 74.882812, 72.448792 ], [ 74.707031, 72.448792 ], [ 74.707031, 72.816074 ], [ 75.058594, 72.816074 ], [ 75.058594, 72.867930 ], [ 75.234375, 72.867930 ], [ 75.234375, 72.764065 ], [ 75.410156, 72.764065 ], [ 75.410156, 72.554498 ], [ 75.585938, 72.554498 ], [ 75.585938, 72.342464 ], [ 75.761719, 72.342464 ], [ 75.761719, 72.127936 ], [ 75.585938, 72.127936 ], [ 75.585938, 71.801410 ], [ 75.410156, 71.801410 ], [ 75.410156, 71.469124 ], [ 75.234375, 71.469124 ], [ 75.234375, 71.300793 ], [ 75.585938, 71.300793 ], [ 75.585938, 71.244356 ], [ 75.761719, 71.244356 ], [ 75.761719, 71.187754 ], [ 76.113281, 71.187754 ], [ 76.113281, 71.130988 ], [ 76.289062, 71.130988 ], [ 76.289062, 71.300793 ], [ 76.113281, 71.300793 ], [ 76.113281, 71.635993 ], [ 75.937500, 71.635993 ], [ 75.937500, 71.856229 ], [ 76.113281, 71.856229 ], [ 76.113281, 71.910888 ], [ 76.289062, 71.910888 ], [ 76.289062, 71.965388 ], [ 76.464844, 71.965388 ], [ 76.464844, 72.019729 ], [ 76.640625, 72.019729 ], [ 76.640625, 72.073911 ], [ 76.992188, 72.073911 ], [ 76.992188, 72.127936 ], [ 77.167969, 72.127936 ], [ 77.167969, 72.181804 ], [ 77.343750, 72.181804 ], [ 77.343750, 72.235514 ], [ 77.519531, 72.235514 ], [ 77.519531, 72.289067 ], [ 78.750000, 72.289067 ], [ 78.750000, 72.342464 ], [ 79.628906, 72.342464 ], [ 79.628906, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.235514 ], [ 79.980469, 72.235514 ], [ 79.980469, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.127936 ], [ 80.332031, 72.127936 ], [ 80.332031, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 72.019729 ], [ 80.683594, 72.019729 ], [ 80.683594, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.910888 ], [ 81.035156, 71.910888 ], [ 81.035156, 71.856229 ], [ 81.210938, 71.856229 ], [ 81.210938, 71.801410 ], [ 81.386719, 71.801410 ] ], [ [ 81.386719, 71.801410 ], [ 81.386719, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 71.801410 ], [ 81.386719, 71.801410 ] ] ], [ [ [ 68.203125, 76.920614 ], [ 68.203125, 76.840816 ], [ 68.378906, 76.840816 ], [ 68.378906, 76.760541 ], [ 68.554688, 76.760541 ], [ 68.554688, 76.679785 ], [ 68.730469, 76.679785 ], [ 68.730469, 76.598545 ], [ 68.906250, 76.598545 ], [ 68.906250, 76.516819 ], [ 68.730469, 76.516819 ], [ 68.730469, 76.434604 ], [ 68.554688, 76.434604 ], [ 68.554688, 76.351896 ], [ 68.378906, 76.351896 ], [ 68.378906, 76.268695 ], [ 68.203125, 76.268695 ], [ 68.203125, 76.184995 ], [ 67.851562, 76.184995 ], [ 67.851562, 76.142958 ], [ 67.500000, 76.142958 ], [ 67.500000, 76.100796 ], [ 67.148438, 76.100796 ], [ 67.148438, 76.058508 ], [ 66.796875, 76.058508 ], [ 66.796875, 76.016094 ], [ 66.621094, 76.016094 ], [ 66.621094, 75.973553 ], [ 66.269531, 75.973553 ], [ 66.269531, 75.930885 ], [ 65.917969, 75.930885 ], [ 65.917969, 75.888091 ], [ 65.566406, 75.888091 ], [ 65.566406, 75.845169 ], [ 65.214844, 75.845169 ], [ 65.214844, 75.802118 ], [ 65.039062, 75.802118 ], [ 65.039062, 76.557743 ], [ 65.214844, 76.557743 ], [ 65.214844, 76.598545 ], [ 65.566406, 76.598545 ], [ 65.566406, 76.639226 ], [ 65.742188, 76.639226 ], [ 65.742188, 76.679785 ], [ 65.917969, 76.679785 ], [ 65.917969, 76.720223 ], [ 66.093750, 76.720223 ], [ 66.093750, 76.760541 ], [ 66.269531, 76.760541 ], [ 66.269531, 76.800739 ], [ 66.621094, 76.800739 ], [ 66.621094, 76.840816 ], [ 67.324219, 76.840816 ], [ 67.324219, 76.880775 ], [ 68.027344, 76.880775 ], [ 68.027344, 76.920614 ], [ 68.203125, 76.920614 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.449219, 80.844901 ], [ 50.625000, 80.844901 ], [ 50.625000, 80.816891 ], [ 50.800781, 80.816891 ], [ 50.800781, 80.788795 ], [ 50.976562, 80.788795 ], [ 50.976562, 80.760615 ], [ 51.152344, 80.760615 ], [ 51.152344, 80.732349 ], [ 51.328125, 80.732349 ], [ 51.328125, 80.703997 ], [ 51.503906, 80.703997 ], [ 51.503906, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.589727 ], [ 51.152344, 80.589727 ], [ 51.152344, 80.532071 ], [ 50.800781, 80.532071 ], [ 50.800781, 80.503112 ], [ 50.625000, 80.503112 ], [ 50.625000, 80.474065 ], [ 50.273438, 80.474065 ], [ 50.273438, 80.444931 ], [ 49.921875, 80.444931 ], [ 49.921875, 80.415707 ], [ 49.746094, 80.415707 ], [ 49.746094, 80.386396 ], [ 49.394531, 80.386396 ], [ 49.394531, 80.356995 ], [ 49.042969, 80.356995 ], [ 49.042969, 80.327506 ], [ 48.867188, 80.327506 ], [ 48.867188, 80.238501 ], [ 48.691406, 80.238501 ], [ 48.691406, 80.148684 ], [ 48.515625, 80.148684 ], [ 48.515625, 80.118564 ], [ 48.339844, 80.118564 ], [ 48.339844, 80.088352 ], [ 48.164062, 80.088352 ], [ 48.164062, 80.058050 ], [ 47.988281, 80.058050 ], [ 47.988281, 80.027655 ], [ 47.812500, 80.027655 ], [ 47.812500, 79.997168 ], [ 47.460938, 79.997168 ], [ 47.460938, 80.058050 ], [ 47.285156, 80.058050 ], [ 47.285156, 80.088352 ], [ 47.109375, 80.088352 ], [ 47.109375, 80.118564 ], [ 46.933594, 80.118564 ], [ 46.933594, 80.178713 ], [ 46.757812, 80.178713 ], [ 46.757812, 80.208652 ], [ 46.582031, 80.208652 ], [ 46.582031, 80.268259 ], [ 46.757812, 80.268259 ], [ 46.757812, 80.386396 ], [ 46.933594, 80.386396 ], [ 46.933594, 80.503112 ], [ 47.109375, 80.503112 ], [ 47.109375, 80.560943 ], [ 45.878906, 80.560943 ], [ 45.878906, 80.589727 ], [ 45.000000, 80.589727 ], [ 45.000000, 80.618424 ], [ 45.351562, 80.618424 ], [ 45.351562, 80.647035 ], [ 45.703125, 80.647035 ], [ 45.703125, 80.675559 ], [ 46.054688, 80.675559 ], [ 46.054688, 80.703997 ], [ 46.406250, 80.703997 ], [ 46.406250, 80.732349 ], [ 46.757812, 80.732349 ], [ 46.757812, 80.760615 ], [ 47.636719, 80.760615 ], [ 47.636719, 80.788795 ], [ 48.339844, 80.788795 ], [ 48.339844, 80.647035 ], [ 48.515625, 80.647035 ], [ 48.515625, 80.532071 ], [ 48.691406, 80.532071 ], [ 48.691406, 80.618424 ], [ 48.867188, 80.618424 ], [ 48.867188, 80.703997 ], [ 49.042969, 80.703997 ], [ 49.042969, 80.760615 ], [ 49.218750, 80.760615 ], [ 49.218750, 80.788795 ], [ 49.394531, 80.788795 ], [ 49.394531, 80.816891 ], [ 49.570312, 80.816891 ], [ 49.570312, 80.844901 ], [ 49.746094, 80.844901 ], [ 49.746094, 80.872827 ], [ 49.921875, 80.872827 ], [ 49.921875, 80.900669 ], [ 50.273438, 80.900669 ], [ 50.273438, 80.872827 ], [ 50.449219, 80.872827 ], [ 50.449219, 80.844901 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.273438, 80.900669 ], [ 50.273438, 80.872827 ], [ 50.449219, 80.872827 ], [ 50.449219, 80.844901 ], [ 50.625000, 80.844901 ], [ 50.625000, 80.816891 ], [ 50.800781, 80.816891 ], [ 50.800781, 80.788795 ], [ 50.976562, 80.788795 ], [ 50.976562, 80.760615 ], [ 51.152344, 80.760615 ], [ 51.152344, 80.732349 ], [ 51.328125, 80.732349 ], [ 51.328125, 80.703997 ], [ 51.503906, 80.703997 ], [ 51.503906, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.589727 ], [ 51.152344, 80.589727 ], [ 51.152344, 80.532071 ], [ 50.800781, 80.532071 ], [ 50.800781, 80.503112 ], [ 50.625000, 80.503112 ], [ 50.625000, 80.474065 ], [ 50.273438, 80.474065 ], [ 50.273438, 80.444931 ], [ 49.921875, 80.444931 ], [ 49.921875, 80.415707 ], [ 49.746094, 80.415707 ], [ 49.746094, 80.386396 ], [ 49.394531, 80.386396 ], [ 49.394531, 80.356995 ], [ 49.042969, 80.356995 ], [ 49.042969, 80.327506 ], [ 48.867188, 80.327506 ], [ 48.867188, 80.238501 ], [ 48.691406, 80.238501 ], [ 48.691406, 80.148684 ], [ 48.515625, 80.148684 ], [ 48.515625, 80.118564 ], [ 48.339844, 80.118564 ], [ 48.339844, 80.088352 ], [ 48.164062, 80.088352 ], [ 48.164062, 80.058050 ], [ 47.988281, 80.058050 ], [ 47.988281, 80.027655 ], [ 47.812500, 80.027655 ], [ 47.812500, 79.997168 ], [ 47.460938, 79.997168 ], [ 47.460938, 80.058050 ], [ 47.285156, 80.058050 ], [ 47.285156, 80.088352 ], [ 47.109375, 80.088352 ], [ 47.109375, 80.118564 ], [ 46.933594, 80.118564 ], [ 46.933594, 80.178713 ], [ 46.757812, 80.178713 ], [ 46.757812, 80.208652 ], [ 46.582031, 80.208652 ], [ 46.582031, 80.268259 ], [ 46.757812, 80.268259 ], [ 46.757812, 80.386396 ], [ 46.933594, 80.386396 ], [ 46.933594, 80.503112 ], [ 47.109375, 80.503112 ], [ 47.109375, 80.560943 ], [ 45.878906, 80.560943 ], [ 45.878906, 80.589727 ], [ 45.000000, 80.589727 ], [ 45.000000, 80.618424 ], [ 45.351562, 80.618424 ], [ 45.351562, 80.647035 ], [ 45.703125, 80.647035 ], [ 45.703125, 80.675559 ], [ 46.054688, 80.675559 ], [ 46.054688, 80.703997 ], [ 46.406250, 80.703997 ], [ 46.406250, 80.732349 ], [ 46.757812, 80.732349 ], [ 46.757812, 80.760615 ], [ 47.636719, 80.760615 ], [ 47.636719, 80.788795 ], [ 48.339844, 80.788795 ], [ 48.339844, 80.647035 ], [ 48.515625, 80.647035 ], [ 48.515625, 80.532071 ], [ 48.691406, 80.532071 ], [ 48.691406, 80.618424 ], [ 48.867188, 80.618424 ], [ 48.867188, 80.703997 ], [ 49.042969, 80.703997 ], [ 49.042969, 80.760615 ], [ 49.218750, 80.760615 ], [ 49.218750, 80.788795 ], [ 49.394531, 80.788795 ], [ 49.394531, 80.816891 ], [ 49.570312, 80.816891 ], [ 49.570312, 80.844901 ], [ 49.746094, 80.844901 ], [ 49.746094, 80.872827 ], [ 49.921875, 80.872827 ], [ 49.921875, 80.900669 ], [ 50.273438, 80.900669 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.765625, -66.302205 ], [ 104.941406, -66.302205 ], [ 104.941406, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.443107 ], [ 105.292969, -66.443107 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.652977 ], [ 105.644531, -66.652977 ], [ 105.644531, -66.722541 ], [ 105.820312, -66.722541 ], [ 105.820312, -66.861082 ], [ 105.996094, -66.861082 ], [ 105.996094, -66.930060 ], [ 108.808594, -66.930060 ], [ 108.808594, -66.861082 ], [ 109.511719, -66.861082 ], [ 109.511719, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.722541 ], [ 110.390625, -66.722541 ], [ 110.390625, -66.652977 ], [ 110.566406, -66.652977 ], [ 110.566406, -66.583217 ], [ 110.917969, -66.583217 ], [ 110.917969, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.443107 ], [ 111.269531, -66.443107 ], [ 111.269531, -66.302205 ], [ 111.445312, -66.302205 ], [ 111.445312, -66.231457 ], [ 111.621094, -66.231457 ], [ 111.621094, -66.160511 ], [ 114.609375, -66.160511 ], [ 114.609375, -66.231457 ], [ 114.785156, -66.231457 ], [ 114.785156, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.443107 ], [ 115.136719, -66.443107 ], [ 115.136719, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 115.488281, -66.652977 ], [ 115.488281, -66.722541 ], [ 116.367188, -66.722541 ], [ 116.367188, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.722541 ], [ 116.894531, -66.722541 ], [ 116.894531, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.861082 ], [ 117.246094, -66.861082 ], [ 117.246094, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -66.998844 ], [ 117.773438, -66.998844 ], [ 117.773438, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.135829 ], [ 118.476562, -67.135829 ], [ 118.476562, -67.204032 ], [ 119.179688, -67.204032 ], [ 119.179688, -67.272043 ], [ 120.585938, -67.272043 ], [ 120.585938, -67.204032 ], [ 121.113281, -67.204032 ], [ 121.113281, -67.135829 ], [ 121.289062, -67.135829 ], [ 121.289062, -66.998844 ], [ 121.464844, -66.998844 ], [ 121.464844, -66.930060 ], [ 121.640625, -66.930060 ], [ 121.640625, -66.861082 ], [ 121.816406, -66.861082 ], [ 121.816406, -66.791909 ], [ 121.992188, -66.791909 ], [ 121.992188, -66.722541 ], [ 122.167969, -66.722541 ], [ 122.167969, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.583217 ], [ 122.871094, -66.583217 ], [ 122.871094, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.583217 ], [ 123.750000, -66.583217 ], [ 123.750000, -66.652977 ], [ 124.453125, -66.652977 ], [ 124.453125, -66.722541 ], [ 125.507812, -66.722541 ], [ 125.507812, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.583217 ], [ 127.265625, -66.583217 ], [ 127.265625, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 128.496094, -66.722541 ], [ 128.496094, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.722541 ], [ 129.375000, -66.722541 ], [ 129.375000, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.583217 ], [ 130.078125, -66.583217 ], [ 130.078125, -66.513260 ], [ 130.605469, -66.513260 ], [ 130.605469, -66.443107 ], [ 131.484375, -66.443107 ], [ 131.484375, -66.372755 ], [ 133.417969, -66.372755 ], [ 133.417969, -66.302205 ], [ 134.472656, -66.302205 ], [ 134.472656, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.160511 ], [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 91.230469, -67.204032 ], [ 91.230469, -67.135829 ], [ 91.933594, -67.135829 ], [ 91.933594, -67.204032 ], [ 94.042969, -67.204032 ], [ 94.042969, -67.135829 ], [ 94.570312, -67.135829 ], [ 94.570312, -67.204032 ], [ 95.097656, -67.204032 ], [ 95.097656, -67.272043 ], [ 95.273438, -67.272043 ], [ 95.273438, -67.339861 ], [ 95.625000, -67.339861 ], [ 95.625000, -67.407487 ], [ 96.152344, -67.407487 ], [ 96.152344, -67.339861 ], [ 96.503906, -67.339861 ], [ 96.503906, -67.272043 ], [ 98.085938, -67.272043 ], [ 98.085938, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.135829 ], [ 98.789062, -67.135829 ], [ 98.789062, -67.204032 ], [ 99.316406, -67.204032 ], [ 99.316406, -67.272043 ], [ 99.843750, -67.272043 ], [ 99.843750, -67.204032 ], [ 100.019531, -67.204032 ], [ 100.019531, -67.067433 ], [ 100.195312, -67.067433 ], [ 100.195312, -66.998844 ], [ 100.371094, -66.998844 ], [ 100.371094, -66.930060 ], [ 100.546875, -66.930060 ], [ 100.546875, -66.791909 ], [ 100.722656, -66.791909 ], [ 100.722656, -66.652977 ], [ 100.898438, -66.652977 ], [ 100.898438, -66.583217 ], [ 101.074219, -66.583217 ], [ 101.074219, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.443107 ], [ 101.425781, -66.443107 ], [ 101.425781, -66.372755 ], [ 101.601562, -66.372755 ], [ 101.601562, -66.231457 ], [ 101.777344, -66.231457 ], [ 101.777344, -66.160511 ], [ 104.589844, -66.160511 ], [ 104.589844, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.302205 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 91.230469, -67.204032 ], [ 91.230469, -67.135829 ], [ 91.933594, -67.135829 ], [ 91.933594, -67.204032 ], [ 94.042969, -67.204032 ], [ 94.042969, -67.135829 ], [ 94.570312, -67.135829 ], [ 94.570312, -67.204032 ], [ 95.097656, -67.204032 ], [ 95.097656, -67.272043 ], [ 95.273438, -67.272043 ], [ 95.273438, -67.339861 ], [ 95.625000, -67.339861 ], [ 95.625000, -67.407487 ], [ 96.152344, -67.407487 ], [ 96.152344, -67.339861 ], [ 96.503906, -67.339861 ], [ 96.503906, -67.272043 ], [ 98.085938, -67.272043 ], [ 98.085938, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.135829 ], [ 98.789062, -67.135829 ], [ 98.789062, -67.204032 ], [ 99.316406, -67.204032 ], [ 99.316406, -67.272043 ], [ 99.843750, -67.272043 ], [ 99.843750, -67.204032 ], [ 100.019531, -67.204032 ], [ 100.019531, -67.067433 ], [ 100.195312, -67.067433 ], [ 100.195312, -66.998844 ], [ 100.371094, -66.998844 ], [ 100.371094, -66.930060 ], [ 100.546875, -66.930060 ], [ 100.546875, -66.791909 ], [ 100.722656, -66.791909 ], [ 100.722656, -66.652977 ], [ 100.898438, -66.652977 ], [ 100.898438, -66.583217 ], [ 101.074219, -66.583217 ], [ 101.074219, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.443107 ], [ 101.425781, -66.443107 ], [ 101.425781, -66.372755 ], [ 101.601562, -66.372755 ], [ 101.601562, -66.231457 ], [ 101.777344, -66.231457 ], [ 101.777344, -66.160511 ], [ 104.589844, -66.160511 ], [ 104.589844, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.302205 ], [ 104.941406, -66.302205 ], [ 104.941406, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.443107 ], [ 105.292969, -66.443107 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.652977 ], [ 105.644531, -66.652977 ], [ 105.644531, -66.722541 ], [ 105.820312, -66.722541 ], [ 105.820312, -66.861082 ], [ 105.996094, -66.861082 ], [ 105.996094, -66.930060 ], [ 108.808594, -66.930060 ], [ 108.808594, -66.861082 ], [ 109.511719, -66.861082 ], [ 109.511719, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.722541 ], [ 110.390625, -66.722541 ], [ 110.390625, -66.652977 ], [ 110.566406, -66.652977 ], [ 110.566406, -66.583217 ], [ 110.917969, -66.583217 ], [ 110.917969, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.443107 ], [ 111.269531, -66.443107 ], [ 111.269531, -66.302205 ], [ 111.445312, -66.302205 ], [ 111.445312, -66.231457 ], [ 111.621094, -66.231457 ], [ 111.621094, -66.160511 ], [ 114.609375, -66.160511 ], [ 114.609375, -66.231457 ], [ 114.785156, -66.231457 ], [ 114.785156, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.443107 ], [ 115.136719, -66.443107 ], [ 115.136719, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 115.488281, -66.652977 ], [ 115.488281, -66.722541 ], [ 116.367188, -66.722541 ], [ 116.367188, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.722541 ], [ 116.894531, -66.722541 ], [ 116.894531, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.861082 ], [ 117.246094, -66.861082 ], [ 117.246094, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -66.998844 ], [ 117.773438, -66.998844 ], [ 117.773438, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.135829 ], [ 118.476562, -67.135829 ], [ 118.476562, -67.204032 ], [ 119.179688, -67.204032 ], [ 119.179688, -67.272043 ], [ 120.585938, -67.272043 ], [ 120.585938, -67.204032 ], [ 121.113281, -67.204032 ], [ 121.113281, -67.135829 ], [ 121.289062, -67.135829 ], [ 121.289062, -66.998844 ], [ 121.464844, -66.998844 ], [ 121.464844, -66.930060 ], [ 121.640625, -66.930060 ], [ 121.640625, -66.861082 ], [ 121.816406, -66.861082 ], [ 121.816406, -66.791909 ], [ 121.992188, -66.791909 ], [ 121.992188, -66.722541 ], [ 122.167969, -66.722541 ], [ 122.167969, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.583217 ], [ 122.871094, -66.583217 ], [ 122.871094, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.583217 ], [ 123.750000, -66.583217 ], [ 123.750000, -66.652977 ], [ 124.453125, -66.652977 ], [ 124.453125, -66.722541 ], [ 125.507812, -66.722541 ], [ 125.507812, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.583217 ], [ 127.265625, -66.583217 ], [ 127.265625, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 128.496094, -66.722541 ], [ 128.496094, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.722541 ], [ 129.375000, -66.722541 ], [ 129.375000, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.583217 ], [ 130.078125, -66.583217 ], [ 130.078125, -66.513260 ], [ 130.605469, -66.513260 ], [ 130.605469, -66.443107 ], [ 131.484375, -66.443107 ], [ 131.484375, -66.372755 ], [ 133.417969, -66.372755 ], [ 133.417969, -66.302205 ], [ 134.472656, -66.302205 ], [ 134.472656, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.257812, -66.089364 ], [ 114.433594, -66.089364 ], [ 114.433594, -66.160511 ], [ 114.609375, -66.160511 ], [ 114.609375, -66.231457 ], [ 114.785156, -66.231457 ], [ 114.785156, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.443107 ], [ 115.136719, -66.443107 ], [ 115.136719, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 115.488281, -66.652977 ], [ 115.488281, -66.722541 ], [ 116.367188, -66.722541 ], [ 116.367188, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.722541 ], [ 116.894531, -66.722541 ], [ 116.894531, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.861082 ], [ 109.511719, -66.861082 ], [ 109.511719, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.722541 ], [ 110.390625, -66.722541 ], [ 110.390625, -66.652977 ], [ 110.566406, -66.652977 ], [ 110.566406, -66.583217 ], [ 110.917969, -66.583217 ], [ 110.917969, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.443107 ], [ 111.269531, -66.443107 ], [ 111.269531, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.302205 ], [ 111.621094, -66.302205 ], [ 111.621094, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.160511 ], [ 112.500000, -66.160511 ], [ 112.500000, -66.089364 ], [ 113.027344, -66.089364 ], [ 113.027344, -66.018018 ], [ 113.378906, -66.018018 ], [ 113.378906, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.018018 ], [ 114.257812, -66.018018 ], [ 114.257812, -66.089364 ] ] ], [ [ [ 121.816406, -66.791909 ], [ 121.992188, -66.791909 ], [ 121.992188, -66.722541 ], [ 122.167969, -66.722541 ], [ 122.167969, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.583217 ], [ 122.871094, -66.583217 ], [ 122.871094, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.583217 ], [ 123.750000, -66.583217 ], [ 123.750000, -66.652977 ], [ 124.453125, -66.652977 ], [ 124.453125, -66.722541 ], [ 125.507812, -66.722541 ], [ 125.507812, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.583217 ], [ 127.265625, -66.583217 ], [ 127.265625, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 128.496094, -66.722541 ], [ 128.496094, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.722541 ], [ 129.375000, -66.722541 ], [ 129.375000, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.583217 ], [ 130.078125, -66.583217 ], [ 130.078125, -66.513260 ], [ 130.605469, -66.513260 ], [ 130.605469, -66.443107 ], [ 131.484375, -66.443107 ], [ 131.484375, -66.372755 ], [ 133.417969, -66.372755 ], [ 133.417969, -66.302205 ], [ 134.472656, -66.302205 ], [ 134.472656, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.018018 ], [ 135.000000, -66.018018 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.585720 ], [ 135.703125, -65.585720 ], [ 135.703125, -65.802776 ], [ 135.878906, -65.802776 ], [ 135.878906, -66.861082 ], [ 121.816406, -66.861082 ], [ 121.816406, -66.791909 ] ] ], [ [ [ 103.710938, -65.874725 ], [ 104.062500, -65.874725 ], [ 104.062500, -65.946472 ], [ 104.238281, -65.946472 ], [ 104.238281, -66.018018 ], [ 104.414062, -66.018018 ], [ 104.414062, -66.089364 ], [ 104.589844, -66.089364 ], [ 104.589844, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.302205 ], [ 104.941406, -66.302205 ], [ 104.941406, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.443107 ], [ 105.292969, -66.443107 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.652977 ], [ 105.644531, -66.652977 ], [ 105.644531, -66.722541 ], [ 105.820312, -66.722541 ], [ 105.820312, -66.861082 ], [ 100.546875, -66.861082 ], [ 100.546875, -66.791909 ], [ 100.722656, -66.791909 ], [ 100.722656, -66.652977 ], [ 100.898438, -66.652977 ], [ 100.898438, -66.583217 ], [ 101.074219, -66.583217 ], [ 101.074219, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.443107 ], [ 101.425781, -66.443107 ], [ 101.425781, -66.372755 ], [ 101.601562, -66.372755 ], [ 101.601562, -66.302205 ], [ 101.777344, -66.302205 ], [ 101.777344, -66.160511 ], [ 101.953125, -66.160511 ], [ 101.953125, -66.089364 ], [ 102.128906, -66.089364 ], [ 102.128906, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.874725 ], [ 102.480469, -65.874725 ], [ 102.480469, -65.802776 ], [ 102.656250, -65.802776 ], [ 102.656250, -65.658275 ], [ 103.183594, -65.658275 ], [ 103.183594, -65.730626 ], [ 103.535156, -65.730626 ], [ 103.535156, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.874725 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.183594, -65.658275 ], [ 103.183594, -65.730626 ], [ 103.535156, -65.730626 ], [ 103.535156, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.874725 ], [ 104.062500, -65.874725 ], [ 104.062500, -65.946472 ], [ 104.238281, -65.946472 ], [ 104.238281, -66.018018 ], [ 104.414062, -66.018018 ], [ 104.414062, -66.089364 ], [ 104.589844, -66.089364 ], [ 104.589844, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.302205 ], [ 104.941406, -66.302205 ], [ 104.941406, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.443107 ], [ 105.292969, -66.443107 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.652977 ], [ 105.644531, -66.652977 ], [ 105.644531, -66.722541 ], [ 105.820312, -66.722541 ], [ 105.820312, -66.861082 ], [ 100.546875, -66.861082 ], [ 100.546875, -66.791909 ], [ 100.722656, -66.791909 ], [ 100.722656, -66.652977 ], [ 100.898438, -66.652977 ], [ 100.898438, -66.583217 ], [ 101.074219, -66.583217 ], [ 101.074219, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.443107 ], [ 101.425781, -66.443107 ], [ 101.425781, -66.372755 ], [ 101.601562, -66.372755 ], [ 101.601562, -66.302205 ], [ 101.777344, -66.302205 ], [ 101.777344, -66.160511 ], [ 101.953125, -66.160511 ], [ 101.953125, -66.089364 ], [ 102.128906, -66.089364 ], [ 102.128906, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.874725 ], [ 102.480469, -65.874725 ], [ 102.480469, -65.802776 ], [ 102.656250, -65.802776 ], [ 102.656250, -65.658275 ], [ 103.183594, -65.658275 ] ] ], [ [ [ 113.906250, -66.018018 ], [ 114.257812, -66.018018 ], [ 114.257812, -66.089364 ], [ 114.433594, -66.089364 ], [ 114.433594, -66.160511 ], [ 114.609375, -66.160511 ], [ 114.609375, -66.231457 ], [ 114.785156, -66.231457 ], [ 114.785156, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.443107 ], [ 115.136719, -66.443107 ], [ 115.136719, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 115.488281, -66.652977 ], [ 115.488281, -66.722541 ], [ 116.367188, -66.722541 ], [ 116.367188, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.722541 ], [ 116.894531, -66.722541 ], [ 116.894531, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.861082 ], [ 109.511719, -66.861082 ], [ 109.511719, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.722541 ], [ 110.390625, -66.722541 ], [ 110.390625, -66.652977 ], [ 110.566406, -66.652977 ], [ 110.566406, -66.583217 ], [ 110.917969, -66.583217 ], [ 110.917969, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.443107 ], [ 111.269531, -66.443107 ], [ 111.269531, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.302205 ], [ 111.621094, -66.302205 ], [ 111.621094, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.160511 ], [ 112.500000, -66.160511 ], [ 112.500000, -66.089364 ], [ 113.027344, -66.089364 ], [ 113.027344, -66.018018 ], [ 113.378906, -66.018018 ], [ 113.378906, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.018018 ] ] ], [ [ [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.585720 ], [ 135.703125, -65.585720 ], [ 135.703125, -65.802776 ], [ 135.878906, -65.802776 ], [ 135.878906, -66.861082 ], [ 121.816406, -66.861082 ], [ 121.816406, -66.791909 ], [ 121.992188, -66.791909 ], [ 121.992188, -66.722541 ], [ 122.167969, -66.722541 ], [ 122.167969, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.583217 ], [ 122.871094, -66.583217 ], [ 122.871094, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.583217 ], [ 123.750000, -66.583217 ], [ 123.750000, -66.652977 ], [ 124.453125, -66.652977 ], [ 124.453125, -66.722541 ], [ 125.507812, -66.722541 ], [ 125.507812, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.583217 ], [ 127.265625, -66.583217 ], [ 127.265625, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 128.496094, -66.722541 ], [ 128.496094, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.722541 ], [ 129.375000, -66.722541 ], [ 129.375000, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.583217 ], [ 130.078125, -66.583217 ], [ 130.078125, -66.513260 ], [ 130.605469, -66.513260 ], [ 130.605469, -66.443107 ], [ 131.484375, -66.443107 ], [ 131.484375, -66.372755 ], [ 133.417969, -66.372755 ], [ 133.417969, -66.302205 ], [ 134.472656, -66.302205 ], [ 134.472656, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.018018 ], [ 135.000000, -66.018018 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.917969, 0.703107 ], [ 110.390625, 0.703107 ], [ 110.390625, 0.878872 ], [ 110.917969, 0.878872 ], [ 110.917969, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.917969, 0.878872 ], [ 110.917969, 0.703107 ], [ 110.390625, 0.703107 ], [ 110.390625, 0.878872 ], [ 110.917969, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.125000, -8.407168 ], [ 118.652344, -8.407168 ], [ 118.652344, -8.233237 ], [ 118.828125, -8.233237 ], [ 118.828125, -8.754795 ], [ 118.652344, -8.754795 ], [ 118.652344, -8.928487 ], [ 117.773438, -8.928487 ], [ 117.773438, -9.102097 ], [ 116.718750, -9.102097 ], [ 116.718750, -8.928487 ], [ 116.894531, -8.928487 ], [ 116.894531, -8.581021 ], [ 117.070312, -8.581021 ], [ 117.070312, -8.407168 ], [ 117.773438, -8.407168 ], [ 117.773438, -8.233237 ], [ 118.125000, -8.233237 ], [ 118.125000, -8.407168 ] ] ], [ [ [ 107.753906, -6.315299 ], [ 108.105469, -6.315299 ], [ 108.105469, -6.489983 ], [ 108.457031, -6.489983 ], [ 108.457031, -6.664608 ], [ 108.632812, -6.664608 ], [ 108.632812, -6.839170 ], [ 110.566406, -6.839170 ], [ 110.566406, -6.664608 ], [ 110.742188, -6.664608 ], [ 110.742188, -6.489983 ], [ 110.917969, -6.489983 ], [ 110.917969, -6.664608 ], [ 111.621094, -6.664608 ], [ 111.621094, -6.839170 ], [ 112.324219, -6.839170 ], [ 112.324219, -7.013668 ], [ 112.675781, -7.013668 ], [ 112.675781, -7.188101 ], [ 112.851562, -7.188101 ], [ 112.851562, -7.536764 ], [ 113.554688, -7.536764 ], [ 113.554688, -7.710992 ], [ 114.433594, -7.710992 ], [ 114.433594, -7.885147 ], [ 114.785156, -7.885147 ], [ 114.785156, -8.059230 ], [ 115.136719, -8.059230 ], [ 115.136719, -8.233237 ], [ 115.488281, -8.233237 ], [ 115.488281, -8.581021 ], [ 114.960938, -8.581021 ], [ 114.960938, -8.754795 ], [ 114.257812, -8.754795 ], [ 114.257812, -8.581021 ], [ 113.554688, -8.581021 ], [ 113.554688, -8.407168 ], [ 111.796875, -8.407168 ], [ 111.796875, -8.233237 ], [ 110.917969, -8.233237 ], [ 110.917969, -8.059230 ], [ 110.214844, -8.059230 ], [ 110.214844, -7.885147 ], [ 109.687500, -7.885147 ], [ 109.687500, -7.710992 ], [ 107.753906, -7.710992 ], [ 107.753906, -7.536764 ], [ 106.875000, -7.536764 ], [ 106.875000, -7.362467 ], [ 106.523438, -7.362467 ], [ 106.523438, -7.188101 ], [ 106.347656, -7.188101 ], [ 106.347656, -6.839170 ], [ 105.468750, -6.839170 ], [ 105.468750, -6.664608 ], [ 105.644531, -6.664608 ], [ 105.644531, -6.315299 ], [ 105.820312, -6.315299 ], [ 105.820312, -6.140555 ], [ 105.996094, -6.140555 ], [ 105.996094, -5.965754 ], [ 107.402344, -5.965754 ], [ 107.402344, -6.140555 ], [ 107.753906, -6.140555 ], [ 107.753906, -6.315299 ] ] ], [ [ [ 102.832031, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.886719, 0.175781 ], [ 103.886719, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.535156, -0.351560 ], [ 103.535156, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -0.878872 ], [ 103.710938, -0.878872 ], [ 103.710938, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -1.406109 ], [ 104.589844, -1.406109 ], [ 104.589844, -1.933227 ], [ 104.765625, -1.933227 ], [ 104.765625, -2.284551 ], [ 105.117188, -2.284551 ], [ 105.117188, -2.460181 ], [ 105.644531, -2.460181 ], [ 105.644531, -2.635789 ], [ 105.820312, -2.635789 ], [ 105.820312, -2.811371 ], [ 105.996094, -2.811371 ], [ 105.996094, -2.986927 ], [ 106.171875, -2.986927 ], [ 106.171875, -3.337954 ], [ 105.996094, -3.337954 ], [ 105.996094, -4.039618 ], [ 105.820312, -4.039618 ], [ 105.820312, -5.790897 ], [ 104.589844, -5.790897 ], [ 104.589844, -5.615986 ], [ 104.414062, -5.615986 ], [ 104.414062, -5.441022 ], [ 104.062500, -5.441022 ], [ 104.062500, -5.266008 ], [ 103.886719, -5.266008 ], [ 103.886719, -5.090944 ], [ 103.710938, -5.090944 ], [ 103.710938, -4.915833 ], [ 103.359375, -4.915833 ], [ 103.359375, -4.740675 ], [ 103.183594, -4.740675 ], [ 103.183594, -4.565474 ], [ 103.007812, -4.565474 ], [ 103.007812, -4.390229 ], [ 102.656250, -4.390229 ], [ 102.656250, -4.214943 ], [ 102.480469, -4.214943 ], [ 102.480469, -4.039618 ], [ 102.304688, -4.039618 ], [ 102.304688, -3.864255 ], [ 102.128906, -3.864255 ], [ 102.128906, -3.688855 ], [ 101.953125, -3.688855 ], [ 101.953125, -3.513421 ], [ 101.777344, -3.513421 ], [ 101.777344, -3.162456 ], [ 101.601562, -3.162456 ], [ 101.601562, -2.986927 ], [ 101.425781, -2.986927 ], [ 101.425781, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.460181 ], [ 101.074219, -2.460181 ], [ 101.074219, -2.284551 ], [ 100.898438, -2.284551 ], [ 100.898438, -1.933227 ], [ 100.722656, -1.933227 ], [ 100.722656, -1.581830 ], [ 100.546875, -1.581830 ], [ 100.546875, -1.230374 ], [ 100.371094, -1.230374 ], [ 100.371094, -0.878872 ], [ 100.195312, -0.878872 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.351560 ], [ 99.140625, 0.351560 ], [ 99.140625, 0.703107 ], [ 98.964844, 0.703107 ], [ 98.964844, 0.878872 ], [ 102.832031, 0.878872 ], [ 102.832031, 0.703107 ] ] ], [ [ [ 113.203125, -3.337954 ], [ 113.203125, -3.162456 ], [ 113.027344, -3.162456 ], [ 113.027344, -3.337954 ], [ 112.500000, -3.337954 ], [ 112.500000, -3.513421 ], [ 111.972656, -3.513421 ], [ 111.972656, -3.337954 ], [ 111.796875, -3.337954 ], [ 111.796875, -3.162456 ], [ 111.621094, -3.162456 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.986927 ], [ 110.214844, -2.284551 ], [ 110.039062, -2.284551 ], [ 110.039062, -1.581830 ], [ 109.863281, -1.581830 ], [ 109.863281, -1.406109 ], [ 109.511719, -1.406109 ], [ 109.511719, -1.054628 ], [ 109.335938, -1.054628 ], [ 109.335938, -0.703107 ], [ 109.160156, -0.703107 ], [ 109.160156, -0.175781 ], [ 108.984375, -0.175781 ], [ 108.984375, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.390625, 0.703107 ], [ 110.917969, 0.703107 ], [ 110.917969, 0.878872 ], [ 118.300781, 0.878872 ], [ 118.300781, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.527336 ], [ 117.597656, 0.527336 ], [ 117.597656, 0.175781 ], [ 117.421875, 0.175781 ], [ 117.421875, -0.351560 ], [ 117.597656, -0.351560 ], [ 117.597656, -1.054628 ], [ 117.246094, -1.054628 ], [ 117.246094, -1.230374 ], [ 116.894531, -1.230374 ], [ 116.894531, -1.406109 ], [ 116.542969, -1.406109 ], [ 116.542969, -2.986927 ], [ 116.367188, -2.986927 ], [ 116.367188, -3.688855 ], [ 116.191406, -3.688855 ], [ 116.191406, -3.864255 ], [ 116.015625, -3.864255 ], [ 116.015625, -3.688855 ], [ 115.839844, -3.688855 ], [ 115.839844, -3.864255 ], [ 115.136719, -3.864255 ], [ 115.136719, -4.039618 ], [ 114.609375, -4.039618 ], [ 114.609375, -3.688855 ], [ 114.433594, -3.688855 ], [ 114.433594, -3.513421 ], [ 113.554688, -3.513421 ], [ 113.554688, -3.337954 ], [ 113.203125, -3.337954 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.828125, -8.233237 ], [ 118.828125, -8.754795 ], [ 118.652344, -8.754795 ], [ 118.652344, -8.928487 ], [ 117.773438, -8.928487 ], [ 117.773438, -9.102097 ], [ 116.718750, -9.102097 ], [ 116.718750, -8.928487 ], [ 116.894531, -8.928487 ], [ 116.894531, -8.581021 ], [ 117.070312, -8.581021 ], [ 117.070312, -8.407168 ], [ 117.773438, -8.407168 ], [ 117.773438, -8.233237 ], [ 118.125000, -8.233237 ], [ 118.125000, -8.407168 ], [ 118.652344, -8.407168 ], [ 118.652344, -8.233237 ], [ 118.828125, -8.233237 ] ] ], [ [ [ 107.402344, -5.965754 ], [ 107.402344, -6.140555 ], [ 107.753906, -6.140555 ], [ 107.753906, -6.315299 ], [ 108.105469, -6.315299 ], [ 108.105469, -6.489983 ], [ 108.457031, -6.489983 ], [ 108.457031, -6.664608 ], [ 108.632812, -6.664608 ], [ 108.632812, -6.839170 ], [ 110.566406, -6.839170 ], [ 110.566406, -6.664608 ], [ 110.742188, -6.664608 ], [ 110.742188, -6.489983 ], [ 110.917969, -6.489983 ], [ 110.917969, -6.664608 ], [ 111.621094, -6.664608 ], [ 111.621094, -6.839170 ], [ 112.324219, -6.839170 ], [ 112.324219, -7.013668 ], [ 112.675781, -7.013668 ], [ 112.675781, -7.188101 ], [ 112.851562, -7.188101 ], [ 112.851562, -7.536764 ], [ 113.554688, -7.536764 ], [ 113.554688, -7.710992 ], [ 114.433594, -7.710992 ], [ 114.433594, -7.885147 ], [ 114.785156, -7.885147 ], [ 114.785156, -8.059230 ], [ 115.136719, -8.059230 ], [ 115.136719, -8.233237 ], [ 115.488281, -8.233237 ], [ 115.488281, -8.581021 ], [ 114.960938, -8.581021 ], [ 114.960938, -8.754795 ], [ 114.257812, -8.754795 ], [ 114.257812, -8.581021 ], [ 113.554688, -8.581021 ], [ 113.554688, -8.407168 ], [ 111.796875, -8.407168 ], [ 111.796875, -8.233237 ], [ 110.917969, -8.233237 ], [ 110.917969, -8.059230 ], [ 110.214844, -8.059230 ], [ 110.214844, -7.885147 ], [ 109.687500, -7.885147 ], [ 109.687500, -7.710992 ], [ 107.753906, -7.710992 ], [ 107.753906, -7.536764 ], [ 106.875000, -7.536764 ], [ 106.875000, -7.362467 ], [ 106.523438, -7.362467 ], [ 106.523438, -7.188101 ], [ 106.347656, -7.188101 ], [ 106.347656, -6.839170 ], [ 105.468750, -6.839170 ], [ 105.468750, -6.664608 ], [ 105.644531, -6.664608 ], [ 105.644531, -6.315299 ], [ 105.820312, -6.315299 ], [ 105.820312, -6.140555 ], [ 105.996094, -6.140555 ], [ 105.996094, -5.965754 ], [ 107.402344, -5.965754 ] ] ], [ [ [ 102.832031, 0.878872 ], [ 102.832031, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.886719, 0.175781 ], [ 103.886719, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.535156, -0.351560 ], [ 103.535156, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -0.878872 ], [ 103.710938, -0.878872 ], [ 103.710938, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -1.406109 ], [ 104.589844, -1.406109 ], [ 104.589844, -1.933227 ], [ 104.765625, -1.933227 ], [ 104.765625, -2.284551 ], [ 105.117188, -2.284551 ], [ 105.117188, -2.460181 ], [ 105.644531, -2.460181 ], [ 105.644531, -2.635789 ], [ 105.820312, -2.635789 ], [ 105.820312, -2.811371 ], [ 105.996094, -2.811371 ], [ 105.996094, -2.986927 ], [ 106.171875, -2.986927 ], [ 106.171875, -3.337954 ], [ 105.996094, -3.337954 ], [ 105.996094, -4.039618 ], [ 105.820312, -4.039618 ], [ 105.820312, -5.790897 ], [ 104.589844, -5.790897 ], [ 104.589844, -5.615986 ], [ 104.414062, -5.615986 ], [ 104.414062, -5.441022 ], [ 104.062500, -5.441022 ], [ 104.062500, -5.266008 ], [ 103.886719, -5.266008 ], [ 103.886719, -5.090944 ], [ 103.710938, -5.090944 ], [ 103.710938, -4.915833 ], [ 103.359375, -4.915833 ], [ 103.359375, -4.740675 ], [ 103.183594, -4.740675 ], [ 103.183594, -4.565474 ], [ 103.007812, -4.565474 ], [ 103.007812, -4.390229 ], [ 102.656250, -4.390229 ], [ 102.656250, -4.214943 ], [ 102.480469, -4.214943 ], [ 102.480469, -4.039618 ], [ 102.304688, -4.039618 ], [ 102.304688, -3.864255 ], [ 102.128906, -3.864255 ], [ 102.128906, -3.688855 ], [ 101.953125, -3.688855 ], [ 101.953125, -3.513421 ], [ 101.777344, -3.513421 ], [ 101.777344, -3.162456 ], [ 101.601562, -3.162456 ], [ 101.601562, -2.986927 ], [ 101.425781, -2.986927 ], [ 101.425781, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.460181 ], [ 101.074219, -2.460181 ], [ 101.074219, -2.284551 ], [ 100.898438, -2.284551 ], [ 100.898438, -1.933227 ], [ 100.722656, -1.933227 ], [ 100.722656, -1.581830 ], [ 100.546875, -1.581830 ], [ 100.546875, -1.230374 ], [ 100.371094, -1.230374 ], [ 100.371094, -0.878872 ], [ 100.195312, -0.878872 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.351560 ], [ 99.140625, 0.351560 ], [ 99.140625, 0.703107 ], [ 98.964844, 0.703107 ], [ 98.964844, 0.878872 ], [ 102.832031, 0.878872 ] ] ], [ [ [ 118.300781, 0.878872 ], [ 118.300781, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.527336 ], [ 117.597656, 0.527336 ], [ 117.597656, 0.175781 ], [ 117.421875, 0.175781 ], [ 117.421875, -0.351560 ], [ 117.597656, -0.351560 ], [ 117.597656, -1.054628 ], [ 117.246094, -1.054628 ], [ 117.246094, -1.230374 ], [ 116.894531, -1.230374 ], [ 116.894531, -1.406109 ], [ 116.542969, -1.406109 ], [ 116.542969, -2.986927 ], [ 116.367188, -2.986927 ], [ 116.367188, -3.688855 ], [ 116.191406, -3.688855 ], [ 116.191406, -3.864255 ], [ 116.015625, -3.864255 ], [ 116.015625, -3.688855 ], [ 115.839844, -3.688855 ], [ 115.839844, -3.864255 ], [ 115.136719, -3.864255 ], [ 115.136719, -4.039618 ], [ 114.609375, -4.039618 ], [ 114.609375, -3.688855 ], [ 114.433594, -3.688855 ], [ 114.433594, -3.513421 ], [ 113.554688, -3.513421 ], [ 113.554688, -3.337954 ], [ 113.203125, -3.337954 ], [ 113.203125, -3.162456 ], [ 113.027344, -3.162456 ], [ 113.027344, -3.337954 ], [ 112.500000, -3.337954 ], [ 112.500000, -3.513421 ], [ 111.972656, -3.513421 ], [ 111.972656, -3.337954 ], [ 111.796875, -3.337954 ], [ 111.796875, -3.162456 ], [ 111.621094, -3.162456 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.986927 ], [ 110.214844, -2.284551 ], [ 110.039062, -2.284551 ], [ 110.039062, -1.581830 ], [ 109.863281, -1.581830 ], [ 109.863281, -1.406109 ], [ 109.511719, -1.406109 ], [ 109.511719, -1.054628 ], [ 109.335938, -1.054628 ], [ 109.335938, -0.703107 ], [ 109.160156, -0.703107 ], [ 109.160156, -0.175781 ], [ 108.984375, -0.175781 ], [ 108.984375, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.390625, 0.703107 ], [ 110.917969, 0.703107 ], [ 110.917969, 0.878872 ], [ 118.300781, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.234375, -9.622414 ], [ 120.410156, -9.622414 ], [ 120.410156, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -9.968851 ], [ 120.761719, -9.968851 ], [ 120.761719, -10.314919 ], [ 120.058594, -10.314919 ], [ 120.058594, -10.141932 ], [ 119.707031, -10.141932 ], [ 119.707031, -9.968851 ], [ 119.355469, -9.968851 ], [ 119.355469, -9.795678 ], [ 119.003906, -9.795678 ], [ 119.003906, -9.622414 ], [ 119.355469, -9.622414 ], [ 119.355469, -9.449062 ], [ 119.707031, -9.449062 ], [ 119.707031, -9.275622 ], [ 119.882812, -9.275622 ], [ 119.882812, -9.449062 ], [ 120.234375, -9.449062 ], [ 120.234375, -9.622414 ] ] ], [ [ [ 125.156250, -9.622414 ], [ 124.980469, -9.622414 ], [ 124.980469, -9.795678 ], [ 124.804688, -9.795678 ], [ 124.804688, -9.968851 ], [ 124.628906, -9.968851 ], [ 124.628906, -10.141932 ], [ 124.101562, -10.141932 ], [ 124.101562, -10.314919 ], [ 123.398438, -10.314919 ], [ 123.398438, -10.141932 ], [ 123.574219, -10.141932 ], [ 123.574219, -9.795678 ], [ 123.750000, -9.795678 ], [ 123.750000, -9.449062 ], [ 123.925781, -9.449062 ], [ 123.925781, -9.275622 ], [ 124.277344, -9.275622 ], [ 124.277344, -9.102097 ], [ 124.804688, -9.102097 ], [ 124.804688, -8.928487 ], [ 124.980469, -8.928487 ], [ 124.980469, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -9.622414 ] ] ], [ [ [ 121.113281, -8.581021 ], [ 121.816406, -8.581021 ], [ 121.816406, -8.407168 ], [ 122.343750, -8.407168 ], [ 122.343750, -8.233237 ], [ 122.695312, -8.233237 ], [ 122.695312, -8.059230 ], [ 122.871094, -8.059230 ], [ 122.871094, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.581021 ], [ 122.519531, -8.581021 ], [ 122.519531, -8.754795 ], [ 121.816406, -8.754795 ], [ 121.816406, -8.928487 ], [ 120.410156, -8.928487 ], [ 120.410156, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.410156, -8.407168 ], [ 120.410156, -8.233237 ], [ 120.761719, -8.233237 ], [ 120.761719, -8.407168 ], [ 121.113281, -8.407168 ], [ 121.113281, -8.581021 ] ] ], [ [ [ 119.003906, -8.754795 ], [ 118.828125, -8.754795 ], [ 118.828125, -8.407168 ], [ 119.003906, -8.407168 ], [ 119.003906, -8.754795 ] ] ], [ [ [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.664608 ], [ 134.296875, -6.664608 ], [ 134.296875, -6.489983 ], [ 134.121094, -6.489983 ], [ 134.121094, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ] ] ], [ [ [ 120.234375, -0.878872 ], [ 120.410156, -0.878872 ], [ 120.410156, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.230374 ], [ 120.761719, -1.230374 ], [ 120.761719, -1.406109 ], [ 121.113281, -1.406109 ], [ 121.113281, -1.230374 ], [ 121.289062, -1.230374 ], [ 121.289062, -1.054628 ], [ 121.464844, -1.054628 ], [ 121.464844, -0.878872 ], [ 122.519531, -0.878872 ], [ 122.519531, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -0.878872 ], [ 123.222656, -0.878872 ], [ 123.222656, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.230374 ], [ 122.519531, -1.230374 ], [ 122.519531, -1.581830 ], [ 122.167969, -1.581830 ], [ 122.167969, -1.757537 ], [ 121.816406, -1.757537 ], [ 121.816406, -1.933227 ], [ 121.464844, -1.933227 ], [ 121.464844, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.284551 ], [ 121.816406, -2.284551 ], [ 121.816406, -2.460181 ], [ 121.992188, -2.460181 ], [ 121.992188, -2.811371 ], [ 122.167969, -2.811371 ], [ 122.167969, -2.986927 ], [ 122.343750, -2.986927 ], [ 122.343750, -3.162456 ], [ 122.519531, -3.162456 ], [ 122.519531, -3.337954 ], [ 122.343750, -3.337954 ], [ 122.343750, -3.688855 ], [ 122.519531, -3.688855 ], [ 122.519531, -4.039618 ], [ 122.695312, -4.039618 ], [ 122.695312, -4.214943 ], [ 122.871094, -4.214943 ], [ 122.871094, -4.390229 ], [ 123.046875, -4.390229 ], [ 123.046875, -4.740675 ], [ 123.222656, -4.740675 ], [ 123.222656, -5.441022 ], [ 122.871094, -5.441022 ], [ 122.871094, -5.615986 ], [ 122.519531, -5.615986 ], [ 122.519531, -5.441022 ], [ 122.167969, -5.441022 ], [ 122.167969, -5.266008 ], [ 122.343750, -5.266008 ], [ 122.343750, -4.915833 ], [ 122.519531, -4.915833 ], [ 122.519531, -4.565474 ], [ 122.343750, -4.565474 ], [ 122.343750, -4.740675 ], [ 121.992188, -4.740675 ], [ 121.992188, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.740675 ], [ 121.464844, -4.740675 ], [ 121.464844, -4.390229 ], [ 121.640625, -4.390229 ], [ 121.640625, -4.214943 ], [ 121.464844, -4.214943 ], [ 121.464844, -4.039618 ], [ 121.113281, -4.039618 ], [ 121.113281, -3.864255 ], [ 120.937500, -3.864255 ], [ 120.937500, -2.811371 ], [ 120.585938, -2.811371 ], [ 120.585938, -2.986927 ], [ 120.234375, -2.986927 ], [ 120.234375, -3.513421 ], [ 120.410156, -3.513421 ], [ 120.410156, -5.441022 ], [ 120.234375, -5.441022 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -5.441022 ], [ 119.355469, -5.441022 ], [ 119.355469, -5.266008 ], [ 119.531250, -5.266008 ], [ 119.531250, -4.740675 ], [ 119.707031, -4.740675 ], [ 119.707031, -4.039618 ], [ 119.531250, -4.039618 ], [ 119.531250, -3.513421 ], [ 119.003906, -3.513421 ], [ 119.003906, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.635789 ], [ 119.003906, -2.635789 ], [ 119.003906, -2.284551 ], [ 119.179688, -2.284551 ], [ 119.179688, -1.757537 ], [ 119.355469, -1.757537 ], [ 119.355469, -1.230374 ], [ 119.531250, -1.230374 ], [ 119.531250, -0.703107 ], [ 119.707031, -0.703107 ], [ 119.707031, -0.175781 ], [ 119.882812, -0.175781 ], [ 119.882812, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.527336 ], [ 120.234375, 0.527336 ], [ 120.234375, 0.703107 ], [ 120.410156, 0.703107 ], [ 120.410156, 0.878872 ], [ 124.804688, 0.878872 ], [ 124.804688, 0.703107 ], [ 124.628906, 0.703107 ], [ 124.628906, 0.351560 ], [ 124.277344, 0.351560 ], [ 124.277344, 0.175781 ], [ 123.046875, 0.175781 ], [ 123.046875, 0.351560 ], [ 120.761719, 0.351560 ], [ 120.761719, 0.175781 ], [ 120.234375, 0.175781 ], [ 120.234375, -0.175781 ], [ 120.058594, -0.175781 ], [ 120.058594, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -0.878872 ] ] ], [ [ [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ], [ 134.121094, -1.054628 ], [ 134.121094, -1.757537 ], [ 134.296875, -1.757537 ], [ 134.296875, -2.460181 ], [ 134.472656, -2.460181 ], [ 134.472656, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.703125, -3.337954 ], [ 135.703125, -2.986927 ], [ 135.878906, -2.986927 ], [ 135.878906, -4.565474 ], [ 135.351562, -4.565474 ], [ 135.351562, -4.390229 ], [ 135.000000, -4.390229 ], [ 135.000000, -4.214943 ], [ 134.648438, -4.214943 ], [ 134.648438, -4.039618 ], [ 134.296875, -4.039618 ], [ 134.296875, -3.864255 ], [ 133.945312, -3.864255 ], [ 133.945312, -3.688855 ], [ 133.593750, -3.688855 ], [ 133.593750, -3.864255 ], [ 133.417969, -3.864255 ], [ 133.417969, -4.039618 ], [ 132.890625, -4.039618 ], [ 132.890625, -3.864255 ], [ 132.714844, -3.864255 ], [ 132.714844, -3.337954 ], [ 132.539062, -3.337954 ], [ 132.539062, -3.162456 ], [ 132.187500, -3.162456 ], [ 132.187500, -2.986927 ], [ 132.011719, -2.986927 ], [ 132.011719, -2.811371 ], [ 132.363281, -2.811371 ], [ 132.363281, -2.635789 ], [ 132.890625, -2.635789 ], [ 132.890625, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.769531, -2.284551 ], [ 132.187500, -2.284551 ], [ 132.187500, -2.108899 ], [ 132.011719, -2.108899 ], [ 132.011719, -1.757537 ], [ 131.835938, -1.757537 ], [ 131.835938, -1.581830 ], [ 131.308594, -1.581830 ], [ 131.308594, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -1.054628 ], [ 130.605469, -1.054628 ], [ 130.605469, -0.878872 ], [ 131.308594, -0.878872 ], [ 131.308594, -0.703107 ], [ 132.011719, -0.703107 ], [ 132.011719, -0.527336 ], [ 132.363281, -0.527336 ], [ 132.363281, -0.351560 ], [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ] ] ], [ [ [ 126.914062, -3.337954 ], [ 127.089844, -3.337954 ], [ 127.089844, -3.513421 ], [ 127.265625, -3.513421 ], [ 127.265625, -3.688855 ], [ 127.089844, -3.688855 ], [ 127.089844, -3.864255 ], [ 126.386719, -3.864255 ], [ 126.386719, -3.688855 ], [ 126.210938, -3.688855 ], [ 126.210938, -3.513421 ], [ 126.035156, -3.513421 ], [ 126.035156, -3.162456 ], [ 126.914062, -3.162456 ], [ 126.914062, -3.337954 ] ] ], [ [ [ 130.429688, -3.337954 ], [ 130.605469, -3.337954 ], [ 130.605469, -3.688855 ], [ 130.781250, -3.688855 ], [ 130.781250, -3.864255 ], [ 130.429688, -3.864255 ], [ 130.429688, -3.688855 ], [ 130.078125, -3.688855 ], [ 130.078125, -3.513421 ], [ 129.550781, -3.513421 ], [ 129.550781, -3.337954 ], [ 129.023438, -3.337954 ], [ 129.023438, -3.513421 ], [ 128.144531, -3.513421 ], [ 128.144531, -3.337954 ], [ 127.968750, -3.337954 ], [ 127.968750, -3.162456 ], [ 128.144531, -3.162456 ], [ 128.144531, -2.811371 ], [ 129.550781, -2.811371 ], [ 129.550781, -2.986927 ], [ 130.078125, -2.986927 ], [ 130.078125, -3.162456 ], [ 130.429688, -3.162456 ], [ 130.429688, -3.337954 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.671875, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.527336 ], [ 127.617188, -0.527336 ], [ 127.617188, 0.175781 ], [ 127.441406, 0.175781 ], [ 127.441406, 0.878872 ], [ 128.671875, 0.878872 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.882812, -9.275622 ], [ 119.882812, -9.449062 ], [ 120.234375, -9.449062 ], [ 120.234375, -9.622414 ], [ 120.410156, -9.622414 ], [ 120.410156, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -9.968851 ], [ 120.761719, -9.968851 ], [ 120.761719, -10.314919 ], [ 120.058594, -10.314919 ], [ 120.058594, -10.141932 ], [ 119.707031, -10.141932 ], [ 119.707031, -9.968851 ], [ 119.355469, -9.968851 ], [ 119.355469, -9.795678 ], [ 119.003906, -9.795678 ], [ 119.003906, -9.622414 ], [ 119.355469, -9.622414 ], [ 119.355469, -9.449062 ], [ 119.707031, -9.449062 ], [ 119.707031, -9.275622 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 124.980469, -8.928487 ], [ 124.980469, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -9.622414 ], [ 124.980469, -9.622414 ], [ 124.980469, -9.795678 ], [ 124.804688, -9.795678 ], [ 124.804688, -9.968851 ], [ 124.628906, -9.968851 ], [ 124.628906, -10.141932 ], [ 124.101562, -10.141932 ], [ 124.101562, -10.314919 ], [ 123.398438, -10.314919 ], [ 123.398438, -10.141932 ], [ 123.574219, -10.141932 ], [ 123.574219, -9.795678 ], [ 123.750000, -9.795678 ], [ 123.750000, -9.449062 ], [ 123.925781, -9.449062 ], [ 123.925781, -9.275622 ], [ 124.277344, -9.275622 ], [ 124.277344, -9.102097 ], [ 124.804688, -9.102097 ], [ 124.804688, -8.928487 ], [ 124.980469, -8.928487 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.871094, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.581021 ], [ 122.519531, -8.581021 ], [ 122.519531, -8.754795 ], [ 121.816406, -8.754795 ], [ 121.816406, -8.928487 ], [ 120.410156, -8.928487 ], [ 120.410156, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.410156, -8.407168 ], [ 120.410156, -8.233237 ], [ 120.761719, -8.233237 ], [ 120.761719, -8.407168 ], [ 121.113281, -8.407168 ], [ 121.113281, -8.581021 ], [ 121.816406, -8.581021 ], [ 121.816406, -8.407168 ], [ 122.343750, -8.407168 ], [ 122.343750, -8.233237 ], [ 122.695312, -8.233237 ], [ 122.695312, -8.059230 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 119.003906, -8.407168 ], [ 119.003906, -8.754795 ], [ 118.828125, -8.754795 ], [ 118.828125, -8.407168 ], [ 119.003906, -8.407168 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.664608 ], [ 134.296875, -6.664608 ], [ 134.296875, -6.489983 ], [ 134.121094, -6.489983 ], [ 134.121094, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.804688, 0.703107 ], [ 124.628906, 0.703107 ], [ 124.628906, 0.351560 ], [ 124.277344, 0.351560 ], [ 124.277344, 0.175781 ], [ 123.046875, 0.175781 ], [ 123.046875, 0.351560 ], [ 120.761719, 0.351560 ], [ 120.761719, 0.175781 ], [ 120.234375, 0.175781 ], [ 120.234375, -0.175781 ], [ 120.058594, -0.175781 ], [ 120.058594, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -0.878872 ], [ 120.410156, -0.878872 ], [ 120.410156, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.230374 ], [ 120.761719, -1.230374 ], [ 120.761719, -1.406109 ], [ 121.113281, -1.406109 ], [ 121.113281, -1.230374 ], [ 121.289062, -1.230374 ], [ 121.289062, -1.054628 ], [ 121.464844, -1.054628 ], [ 121.464844, -0.878872 ], [ 122.519531, -0.878872 ], [ 122.519531, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -0.878872 ], [ 123.222656, -0.878872 ], [ 123.222656, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.230374 ], [ 122.519531, -1.230374 ], [ 122.519531, -1.581830 ], [ 122.167969, -1.581830 ], [ 122.167969, -1.757537 ], [ 121.816406, -1.757537 ], [ 121.816406, -1.933227 ], [ 121.464844, -1.933227 ], [ 121.464844, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.284551 ], [ 121.816406, -2.284551 ], [ 121.816406, -2.460181 ], [ 121.992188, -2.460181 ], [ 121.992188, -2.811371 ], [ 122.167969, -2.811371 ], [ 122.167969, -2.986927 ], [ 122.343750, -2.986927 ], [ 122.343750, -3.162456 ], [ 122.519531, -3.162456 ], [ 122.519531, -3.337954 ], [ 122.343750, -3.337954 ], [ 122.343750, -3.688855 ], [ 122.519531, -3.688855 ], [ 122.519531, -4.039618 ], [ 122.695312, -4.039618 ], [ 122.695312, -4.214943 ], [ 122.871094, -4.214943 ], [ 122.871094, -4.390229 ], [ 123.046875, -4.390229 ], [ 123.046875, -4.740675 ], [ 123.222656, -4.740675 ], [ 123.222656, -5.441022 ], [ 122.871094, -5.441022 ], [ 122.871094, -5.615986 ], [ 122.519531, -5.615986 ], [ 122.519531, -5.441022 ], [ 122.167969, -5.441022 ], [ 122.167969, -5.266008 ], [ 122.343750, -5.266008 ], [ 122.343750, -4.915833 ], [ 122.519531, -4.915833 ], [ 122.519531, -4.565474 ], [ 122.343750, -4.565474 ], [ 122.343750, -4.740675 ], [ 121.992188, -4.740675 ], [ 121.992188, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.740675 ], [ 121.464844, -4.740675 ], [ 121.464844, -4.390229 ], [ 121.640625, -4.390229 ], [ 121.640625, -4.214943 ], [ 121.464844, -4.214943 ], [ 121.464844, -4.039618 ], [ 121.113281, -4.039618 ], [ 121.113281, -3.864255 ], [ 120.937500, -3.864255 ], [ 120.937500, -2.811371 ], [ 120.585938, -2.811371 ], [ 120.585938, -2.986927 ], [ 120.234375, -2.986927 ], [ 120.234375, -3.513421 ], [ 120.410156, -3.513421 ], [ 120.410156, -5.441022 ], [ 120.234375, -5.441022 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -5.441022 ], [ 119.355469, -5.441022 ], [ 119.355469, -5.266008 ], [ 119.531250, -5.266008 ], [ 119.531250, -4.740675 ], [ 119.707031, -4.740675 ], [ 119.707031, -4.039618 ], [ 119.531250, -4.039618 ], [ 119.531250, -3.513421 ], [ 119.003906, -3.513421 ], [ 119.003906, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.635789 ], [ 119.003906, -2.635789 ], [ 119.003906, -2.284551 ], [ 119.179688, -2.284551 ], [ 119.179688, -1.757537 ], [ 119.355469, -1.757537 ], [ 119.355469, -1.230374 ], [ 119.531250, -1.230374 ], [ 119.531250, -0.703107 ], [ 119.707031, -0.703107 ], [ 119.707031, -0.175781 ], [ 119.882812, -0.175781 ], [ 119.882812, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.527336 ], [ 120.234375, 0.527336 ], [ 120.234375, 0.703107 ], [ 120.410156, 0.703107 ], [ 120.410156, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ], [ 134.121094, -1.054628 ], [ 134.121094, -1.757537 ], [ 134.296875, -1.757537 ], [ 134.296875, -2.460181 ], [ 134.472656, -2.460181 ], [ 134.472656, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.703125, -3.337954 ], [ 135.703125, -2.986927 ], [ 135.878906, -2.986927 ], [ 135.878906, -4.565474 ], [ 135.351562, -4.565474 ], [ 135.351562, -4.390229 ], [ 135.000000, -4.390229 ], [ 135.000000, -4.214943 ], [ 134.648438, -4.214943 ], [ 134.648438, -4.039618 ], [ 134.296875, -4.039618 ], [ 134.296875, -3.864255 ], [ 133.945312, -3.864255 ], [ 133.945312, -3.688855 ], [ 133.593750, -3.688855 ], [ 133.593750, -3.864255 ], [ 133.417969, -3.864255 ], [ 133.417969, -4.039618 ], [ 132.890625, -4.039618 ], [ 132.890625, -3.864255 ], [ 132.714844, -3.864255 ], [ 132.714844, -3.337954 ], [ 132.539062, -3.337954 ], [ 132.539062, -3.162456 ], [ 132.187500, -3.162456 ], [ 132.187500, -2.986927 ], [ 132.011719, -2.986927 ], [ 132.011719, -2.811371 ], [ 132.363281, -2.811371 ], [ 132.363281, -2.635789 ], [ 132.890625, -2.635789 ], [ 132.890625, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.769531, -2.284551 ], [ 132.187500, -2.284551 ], [ 132.187500, -2.108899 ], [ 132.011719, -2.108899 ], [ 132.011719, -1.757537 ], [ 131.835938, -1.757537 ], [ 131.835938, -1.581830 ], [ 131.308594, -1.581830 ], [ 131.308594, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -1.054628 ], [ 130.605469, -1.054628 ], [ 130.605469, -0.878872 ], [ 131.308594, -0.878872 ], [ 131.308594, -0.703107 ], [ 132.011719, -0.703107 ], [ 132.011719, -0.527336 ], [ 132.363281, -0.527336 ], [ 132.363281, -0.351560 ], [ 132.714844, -0.351560 ] ] ], [ [ [ 126.914062, -3.162456 ], [ 126.914062, -3.337954 ], [ 127.089844, -3.337954 ], [ 127.089844, -3.513421 ], [ 127.265625, -3.513421 ], [ 127.265625, -3.688855 ], [ 127.089844, -3.688855 ], [ 127.089844, -3.864255 ], [ 126.386719, -3.864255 ], [ 126.386719, -3.688855 ], [ 126.210938, -3.688855 ], [ 126.210938, -3.513421 ], [ 126.035156, -3.513421 ], [ 126.035156, -3.162456 ], [ 126.914062, -3.162456 ] ] ], [ [ [ 129.550781, -2.811371 ], [ 129.550781, -2.986927 ], [ 130.078125, -2.986927 ], [ 130.078125, -3.162456 ], [ 130.429688, -3.162456 ], [ 130.429688, -3.337954 ], [ 130.605469, -3.337954 ], [ 130.605469, -3.688855 ], [ 130.781250, -3.688855 ], [ 130.781250, -3.864255 ], [ 130.429688, -3.864255 ], [ 130.429688, -3.688855 ], [ 130.078125, -3.688855 ], [ 130.078125, -3.513421 ], [ 129.550781, -3.513421 ], [ 129.550781, -3.337954 ], [ 129.023438, -3.337954 ], [ 129.023438, -3.513421 ], [ 128.144531, -3.513421 ], [ 128.144531, -3.337954 ], [ 127.968750, -3.337954 ], [ 127.968750, -3.162456 ], [ 128.144531, -3.162456 ], [ 128.144531, -2.811371 ], [ 129.550781, -2.811371 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.671875, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.527336 ], [ 127.617188, -0.527336 ], [ 127.617188, 0.175781 ], [ 127.441406, 0.175781 ], [ 127.441406, 0.878872 ], [ 128.671875, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.581021 ], [ 127.089844, -8.581021 ], [ 127.089844, -8.754795 ], [ 126.738281, -8.754795 ], [ 126.738281, -8.928487 ], [ 126.210938, -8.928487 ], [ 126.210938, -9.102097 ], [ 125.859375, -9.102097 ], [ 125.859375, -9.275622 ], [ 125.507812, -9.275622 ], [ 125.507812, -9.449062 ], [ 125.156250, -9.449062 ], [ 125.156250, -9.102097 ], [ 124.980469, -9.102097 ], [ 124.980469, -8.754795 ], [ 125.156250, -8.754795 ], [ 125.156250, -8.581021 ], [ 125.683594, -8.581021 ], [ 125.683594, -8.407168 ], [ 127.265625, -8.407168 ], [ 127.265625, -8.581021 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.407168 ], [ 127.265625, -8.581021 ], [ 127.089844, -8.581021 ], [ 127.089844, -8.754795 ], [ 126.738281, -8.754795 ], [ 126.738281, -8.928487 ], [ 126.210938, -8.928487 ], [ 126.210938, -9.102097 ], [ 125.859375, -9.102097 ], [ 125.859375, -9.275622 ], [ 125.507812, -9.275622 ], [ 125.507812, -9.449062 ], [ 125.156250, -9.449062 ], [ 125.156250, -9.102097 ], [ 124.980469, -9.102097 ], [ 124.980469, -8.754795 ], [ 125.156250, -8.754795 ], [ 125.156250, -8.581021 ], [ 125.683594, -8.581021 ], [ 125.683594, -8.407168 ], [ 127.265625, -8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.378906, -26.273714 ], [ 113.554688, -26.273714 ], [ 113.554688, -25.958045 ], [ 113.378906, -25.958045 ], [ 113.378906, -25.799891 ], [ 113.730469, -25.799891 ], [ 113.730469, -25.958045 ], [ 113.906250, -25.958045 ], [ 113.906250, -26.115986 ], [ 114.082031, -26.115986 ], [ 114.082031, -26.273714 ], [ 114.257812, -26.273714 ], [ 114.257812, -25.799891 ], [ 114.082031, -25.799891 ], [ 114.082031, -25.482951 ], [ 113.906250, -25.482951 ], [ 113.906250, -25.165173 ], [ 113.730469, -25.165173 ], [ 113.730469, -24.846565 ], [ 113.554688, -24.846565 ], [ 113.554688, -24.527135 ], [ 113.378906, -24.527135 ], [ 113.378906, -24.206890 ], [ 113.554688, -24.206890 ], [ 113.554688, -23.725012 ], [ 113.730469, -23.725012 ], [ 113.730469, -23.402765 ], [ 113.906250, -23.402765 ], [ 113.906250, -22.755921 ], [ 113.730469, -22.755921 ], [ 113.730469, -22.268764 ], [ 113.906250, -22.268764 ], [ 113.906250, -21.943046 ], [ 114.082031, -21.943046 ], [ 114.082031, -22.268764 ], [ 114.257812, -22.268764 ], [ 114.257812, -22.431340 ], [ 114.433594, -22.431340 ], [ 114.433594, -22.105999 ], [ 114.609375, -22.105999 ], [ 114.609375, -21.779905 ], [ 114.960938, -21.779905 ], [ 114.960938, -21.616579 ], [ 115.312500, -21.616579 ], [ 115.312500, -21.453069 ], [ 115.664062, -21.453069 ], [ 115.664062, -21.289374 ], [ 116.015625, -21.289374 ], [ 116.015625, -21.125498 ], [ 116.191406, -21.125498 ], [ 116.191406, -20.961440 ], [ 116.542969, -20.961440 ], [ 116.542969, -20.797201 ], [ 116.718750, -20.797201 ], [ 116.718750, -20.632784 ], [ 117.246094, -20.632784 ], [ 117.246094, -20.797201 ], [ 117.597656, -20.797201 ], [ 117.597656, -20.632784 ], [ 117.949219, -20.632784 ], [ 117.949219, -20.468189 ], [ 118.300781, -20.468189 ], [ 118.300781, -20.303418 ], [ 118.828125, -20.303418 ], [ 118.828125, -20.138470 ], [ 119.003906, -20.138470 ], [ 119.003906, -19.973349 ], [ 120.234375, -19.973349 ], [ 120.234375, -19.808054 ], [ 120.761719, -19.808054 ], [ 120.761719, -19.642588 ], [ 121.113281, -19.642588 ], [ 121.113281, -19.476950 ], [ 121.464844, -19.476950 ], [ 121.464844, -18.979026 ], [ 121.640625, -18.979026 ], [ 121.640625, -18.646245 ], [ 121.816406, -18.646245 ], [ 121.816406, -18.479609 ], [ 121.992188, -18.479609 ], [ 121.992188, -18.312811 ], [ 122.167969, -18.312811 ], [ 122.167969, -17.978733 ], [ 122.343750, -17.978733 ], [ 122.343750, -17.308688 ], [ 122.519531, -17.308688 ], [ 122.519531, -17.140790 ], [ 122.695312, -17.140790 ], [ 122.695312, -16.804541 ], [ 122.871094, -16.804541 ], [ 122.871094, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -16.804541 ], [ 123.222656, -16.804541 ], [ 123.222656, -17.140790 ], [ 123.398438, -17.140790 ], [ 123.398438, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.804541 ], [ 123.574219, -16.804541 ], [ 123.574219, -16.467695 ], [ 123.750000, -16.467695 ], [ 123.750000, -16.130262 ], [ 123.925781, -16.130262 ], [ 123.925781, -16.299051 ], [ 124.277344, -16.299051 ], [ 124.277344, -15.961329 ], [ 124.453125, -15.961329 ], [ 124.453125, -15.623037 ], [ 124.628906, -15.623037 ], [ 124.628906, -15.453680 ], [ 124.804688, -15.453680 ], [ 124.804688, -15.284185 ], [ 124.980469, -15.284185 ], [ 124.980469, -14.944785 ], [ 125.156250, -14.944785 ], [ 125.156250, -14.604847 ], [ 125.507812, -14.604847 ], [ 125.507812, -14.434680 ], [ 125.683594, -14.434680 ], [ 125.683594, -14.264383 ], [ 126.210938, -14.264383 ], [ 126.210938, -14.093957 ], [ 126.562500, -14.093957 ], [ 126.562500, -13.923404 ], [ 126.914062, -13.923404 ], [ 126.914062, -13.752725 ], [ 127.089844, -13.752725 ], [ 127.089844, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.093957 ], [ 127.617188, -14.093957 ], [ 127.617188, -14.264383 ], [ 127.792969, -14.264383 ], [ 127.792969, -14.434680 ], [ 127.968750, -14.434680 ], [ 127.968750, -14.604847 ], [ 128.144531, -14.604847 ], [ 128.144531, -14.944785 ], [ 129.550781, -14.944785 ], [ 129.550781, -14.774883 ], [ 129.375000, -14.774883 ], [ 129.375000, -14.434680 ], [ 129.550781, -14.434680 ], [ 129.550781, -14.093957 ], [ 129.726562, -14.093957 ], [ 129.726562, -13.752725 ], [ 129.902344, -13.752725 ], [ 129.902344, -13.581921 ], [ 130.253906, -13.581921 ], [ 130.253906, -13.068777 ], [ 130.429688, -13.068777 ], [ 130.429688, -12.726084 ], [ 130.605469, -12.726084 ], [ 130.605469, -12.554564 ], [ 130.957031, -12.554564 ], [ 130.957031, -12.382928 ], [ 132.011719, -12.382928 ], [ 132.011719, -12.211180 ], [ 132.363281, -12.211180 ], [ 132.363281, -12.039321 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 132.011719, -11.523088 ], [ 132.011719, -11.350797 ], [ 132.187500, -11.350797 ], [ 132.187500, -11.178402 ], [ 132.539062, -11.178402 ], [ 132.539062, -11.350797 ], [ 133.066406, -11.350797 ], [ 133.066406, -11.523088 ], [ 133.242188, -11.523088 ], [ 133.242188, -11.695273 ], [ 133.417969, -11.695273 ], [ 133.417969, -11.867351 ], [ 133.945312, -11.867351 ], [ 133.945312, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.703125, -12.211180 ], [ 135.703125, -12.039321 ], [ 135.878906, -12.039321 ], [ 135.878906, -14.264383 ], [ 135.703125, -14.264383 ], [ 135.703125, -14.434680 ], [ 135.527344, -14.434680 ], [ 135.527344, -14.774883 ], [ 135.351562, -14.774883 ], [ 135.351562, -14.944785 ], [ 135.527344, -14.944785 ], [ 135.527344, -15.114553 ], [ 135.703125, -15.114553 ], [ 135.703125, -15.284185 ], [ 135.878906, -15.284185 ], [ 135.878906, -34.885931 ], [ 135.703125, -34.885931 ], [ 135.703125, -34.741612 ], [ 135.351562, -34.741612 ], [ 135.351562, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 134.121094, -32.990236 ], [ 134.121094, -32.694866 ], [ 134.296875, -32.694866 ], [ 134.296875, -32.546813 ], [ 134.121094, -32.546813 ], [ 134.121094, -32.398516 ], [ 133.769531, -32.398516 ], [ 133.769531, -32.249974 ], [ 133.417969, -32.249974 ], [ 133.417969, -32.101190 ], [ 133.066406, -32.101190 ], [ 133.066406, -31.952162 ], [ 132.011719, -31.952162 ], [ 132.011719, -31.802893 ], [ 131.660156, -31.802893 ], [ 131.660156, -31.653381 ], [ 131.308594, -31.653381 ], [ 131.308594, -31.503629 ], [ 130.605469, -31.503629 ], [ 130.605469, -31.653381 ], [ 129.375000, -31.653381 ], [ 129.375000, -31.802893 ], [ 128.671875, -31.802893 ], [ 128.671875, -31.952162 ], [ 128.144531, -31.952162 ], [ 128.144531, -32.101190 ], [ 127.441406, -32.101190 ], [ 127.441406, -32.249974 ], [ 126.210938, -32.249974 ], [ 126.210938, -32.398516 ], [ 125.859375, -32.398516 ], [ 125.859375, -32.546813 ], [ 125.507812, -32.546813 ], [ 125.507812, -32.694866 ], [ 124.980469, -32.694866 ], [ 124.980469, -32.842674 ], [ 124.628906, -32.842674 ], [ 124.628906, -32.990236 ], [ 124.277344, -32.990236 ], [ 124.277344, -33.284620 ], [ 124.101562, -33.284620 ], [ 124.101562, -33.578015 ], [ 123.925781, -33.578015 ], [ 123.925781, -33.724340 ], [ 123.750000, -33.724340 ], [ 123.750000, -33.870416 ], [ 122.695312, -33.870416 ], [ 122.695312, -34.016242 ], [ 121.640625, -34.016242 ], [ 121.640625, -33.870416 ], [ 120.410156, -33.870416 ], [ 120.410156, -34.016242 ], [ 119.882812, -34.016242 ], [ 119.882812, -34.161818 ], [ 119.707031, -34.161818 ], [ 119.707031, -34.307144 ], [ 119.531250, -34.307144 ], [ 119.531250, -34.452218 ], [ 119.003906, -34.452218 ], [ 119.003906, -34.597042 ], [ 118.652344, -34.597042 ], [ 118.652344, -34.741612 ], [ 118.476562, -34.741612 ], [ 118.476562, -34.885931 ], [ 118.125000, -34.885931 ], [ 118.125000, -35.029996 ], [ 116.367188, -35.029996 ], [ 116.367188, -34.885931 ], [ 116.015625, -34.885931 ], [ 116.015625, -34.741612 ], [ 115.839844, -34.741612 ], [ 115.839844, -34.597042 ], [ 115.488281, -34.597042 ], [ 115.488281, -34.452218 ], [ 115.312500, -34.452218 ], [ 115.312500, -34.307144 ], [ 114.960938, -34.307144 ], [ 114.960938, -33.578015 ], [ 115.312500, -33.578015 ], [ 115.312500, -33.431441 ], [ 115.664062, -33.431441 ], [ 115.664062, -32.546813 ], [ 115.839844, -32.546813 ], [ 115.839844, -31.952162 ], [ 115.664062, -31.952162 ], [ 115.664062, -31.503629 ], [ 115.488281, -31.503629 ], [ 115.488281, -31.203405 ], [ 115.312500, -31.203405 ], [ 115.312500, -30.902225 ], [ 115.136719, -30.902225 ], [ 115.136719, -30.297018 ], [ 114.960938, -30.297018 ], [ 114.960938, -29.382175 ], [ 114.785156, -29.382175 ], [ 114.785156, -29.075375 ], [ 114.609375, -29.075375 ], [ 114.609375, -28.459033 ], [ 114.433594, -28.459033 ], [ 114.433594, -28.304381 ], [ 114.257812, -28.304381 ], [ 114.257812, -27.839076 ], [ 114.082031, -27.839076 ], [ 114.082031, -27.371767 ], [ 113.906250, -27.371767 ], [ 113.906250, -27.059126 ], [ 113.730469, -27.059126 ], [ 113.730469, -26.745610 ], [ 113.554688, -26.745610 ], [ 113.554688, -26.588527 ], [ 113.730469, -26.588527 ], [ 113.730469, -26.431228 ], [ 113.378906, -26.431228 ], [ 113.378906, -26.273714 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.378906, -26.431228 ], [ 113.378906, -26.273714 ], [ 113.554688, -26.273714 ], [ 113.554688, -25.958045 ], [ 113.378906, -25.958045 ], [ 113.378906, -25.799891 ], [ 113.730469, -25.799891 ], [ 113.730469, -25.958045 ], [ 113.906250, -25.958045 ], [ 113.906250, -26.115986 ], [ 114.082031, -26.115986 ], [ 114.082031, -26.273714 ], [ 114.257812, -26.273714 ], [ 114.257812, -25.799891 ], [ 114.082031, -25.799891 ], [ 114.082031, -25.482951 ], [ 113.906250, -25.482951 ], [ 113.906250, -25.165173 ], [ 113.730469, -25.165173 ], [ 113.730469, -24.846565 ], [ 113.554688, -24.846565 ], [ 113.554688, -24.527135 ], [ 113.378906, -24.527135 ], [ 113.378906, -24.206890 ], [ 113.554688, -24.206890 ], [ 113.554688, -23.725012 ], [ 113.730469, -23.725012 ], [ 113.730469, -23.402765 ], [ 113.906250, -23.402765 ], [ 113.906250, -22.755921 ], [ 113.730469, -22.755921 ], [ 113.730469, -22.268764 ], [ 113.906250, -22.268764 ], [ 113.906250, -21.943046 ], [ 114.082031, -21.943046 ], [ 114.082031, -22.268764 ], [ 114.257812, -22.268764 ], [ 114.257812, -22.431340 ], [ 114.433594, -22.431340 ], [ 114.433594, -22.105999 ], [ 114.609375, -22.105999 ], [ 114.609375, -21.779905 ], [ 114.960938, -21.779905 ], [ 114.960938, -21.616579 ], [ 115.312500, -21.616579 ], [ 115.312500, -21.453069 ], [ 115.664062, -21.453069 ], [ 115.664062, -21.289374 ], [ 116.015625, -21.289374 ], [ 116.015625, -21.125498 ], [ 116.191406, -21.125498 ], [ 116.191406, -20.961440 ], [ 116.542969, -20.961440 ], [ 116.542969, -20.797201 ], [ 116.718750, -20.797201 ], [ 116.718750, -20.632784 ], [ 117.246094, -20.632784 ], [ 117.246094, -20.797201 ], [ 117.597656, -20.797201 ], [ 117.597656, -20.632784 ], [ 117.949219, -20.632784 ], [ 117.949219, -20.468189 ], [ 118.300781, -20.468189 ], [ 118.300781, -20.303418 ], [ 118.828125, -20.303418 ], [ 118.828125, -20.138470 ], [ 119.003906, -20.138470 ], [ 119.003906, -19.973349 ], [ 120.234375, -19.973349 ], [ 120.234375, -19.808054 ], [ 120.761719, -19.808054 ], [ 120.761719, -19.642588 ], [ 121.113281, -19.642588 ], [ 121.113281, -19.476950 ], [ 121.464844, -19.476950 ], [ 121.464844, -18.979026 ], [ 121.640625, -18.979026 ], [ 121.640625, -18.646245 ], [ 121.816406, -18.646245 ], [ 121.816406, -18.479609 ], [ 121.992188, -18.479609 ], [ 121.992188, -18.312811 ], [ 122.167969, -18.312811 ], [ 122.167969, -17.978733 ], [ 122.343750, -17.978733 ], [ 122.343750, -17.308688 ], [ 122.519531, -17.308688 ], [ 122.519531, -17.140790 ], [ 122.695312, -17.140790 ], [ 122.695312, -16.804541 ], [ 122.871094, -16.804541 ], [ 122.871094, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -16.804541 ], [ 123.222656, -16.804541 ], [ 123.222656, -17.140790 ], [ 123.398438, -17.140790 ], [ 123.398438, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.804541 ], [ 123.574219, -16.804541 ], [ 123.574219, -16.467695 ], [ 123.750000, -16.467695 ], [ 123.750000, -16.130262 ], [ 123.925781, -16.130262 ], [ 123.925781, -16.299051 ], [ 124.277344, -16.299051 ], [ 124.277344, -15.961329 ], [ 124.453125, -15.961329 ], [ 124.453125, -15.623037 ], [ 124.628906, -15.623037 ], [ 124.628906, -15.453680 ], [ 124.804688, -15.453680 ], [ 124.804688, -15.284185 ], [ 124.980469, -15.284185 ], [ 124.980469, -14.944785 ], [ 125.156250, -14.944785 ], [ 125.156250, -14.604847 ], [ 125.507812, -14.604847 ], [ 125.507812, -14.434680 ], [ 125.683594, -14.434680 ], [ 125.683594, -14.264383 ], [ 126.210938, -14.264383 ], [ 126.210938, -14.093957 ], [ 126.562500, -14.093957 ], [ 126.562500, -13.923404 ], [ 126.914062, -13.923404 ], [ 126.914062, -13.752725 ], [ 127.089844, -13.752725 ], [ 127.089844, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.093957 ], [ 127.617188, -14.093957 ], [ 127.617188, -14.264383 ], [ 127.792969, -14.264383 ], [ 127.792969, -14.434680 ], [ 127.968750, -14.434680 ], [ 127.968750, -14.604847 ], [ 128.144531, -14.604847 ], [ 128.144531, -14.944785 ], [ 129.550781, -14.944785 ], [ 129.550781, -14.774883 ], [ 129.375000, -14.774883 ], [ 129.375000, -14.434680 ], [ 129.550781, -14.434680 ], [ 129.550781, -14.093957 ], [ 129.726562, -14.093957 ], [ 129.726562, -13.752725 ], [ 129.902344, -13.752725 ], [ 129.902344, -13.581921 ], [ 130.253906, -13.581921 ], [ 130.253906, -13.068777 ], [ 130.429688, -13.068777 ], [ 130.429688, -12.726084 ], [ 130.605469, -12.726084 ], [ 130.605469, -12.554564 ], [ 130.957031, -12.554564 ], [ 130.957031, -12.382928 ], [ 132.011719, -12.382928 ], [ 132.011719, -12.211180 ], [ 132.363281, -12.211180 ], [ 132.363281, -12.039321 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 132.011719, -11.523088 ], [ 132.011719, -11.350797 ], [ 132.187500, -11.350797 ], [ 132.187500, -11.178402 ], [ 132.539062, -11.178402 ], [ 132.539062, -11.350797 ], [ 133.066406, -11.350797 ], [ 133.066406, -11.523088 ], [ 133.242188, -11.523088 ], [ 133.242188, -11.695273 ], [ 133.417969, -11.695273 ], [ 133.417969, -11.867351 ], [ 133.945312, -11.867351 ], [ 133.945312, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.703125, -12.211180 ], [ 135.703125, -12.039321 ], [ 135.878906, -12.039321 ], [ 135.878906, -14.264383 ], [ 135.703125, -14.264383 ], [ 135.703125, -14.434680 ], [ 135.527344, -14.434680 ], [ 135.527344, -14.774883 ], [ 135.351562, -14.774883 ], [ 135.351562, -14.944785 ], [ 135.527344, -14.944785 ], [ 135.527344, -15.114553 ], [ 135.703125, -15.114553 ], [ 135.703125, -15.284185 ], [ 135.878906, -15.284185 ], [ 135.878906, -34.885931 ], [ 135.703125, -34.885931 ], [ 135.703125, -34.741612 ], [ 135.351562, -34.741612 ], [ 135.351562, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 134.121094, -32.990236 ], [ 134.121094, -32.694866 ], [ 134.296875, -32.694866 ], [ 134.296875, -32.546813 ], [ 134.121094, -32.546813 ], [ 134.121094, -32.398516 ], [ 133.769531, -32.398516 ], [ 133.769531, -32.249974 ], [ 133.417969, -32.249974 ], [ 133.417969, -32.101190 ], [ 133.066406, -32.101190 ], [ 133.066406, -31.952162 ], [ 132.011719, -31.952162 ], [ 132.011719, -31.802893 ], [ 131.660156, -31.802893 ], [ 131.660156, -31.653381 ], [ 131.308594, -31.653381 ], [ 131.308594, -31.503629 ], [ 130.605469, -31.503629 ], [ 130.605469, -31.653381 ], [ 129.375000, -31.653381 ], [ 129.375000, -31.802893 ], [ 128.671875, -31.802893 ], [ 128.671875, -31.952162 ], [ 128.144531, -31.952162 ], [ 128.144531, -32.101190 ], [ 127.441406, -32.101190 ], [ 127.441406, -32.249974 ], [ 126.210938, -32.249974 ], [ 126.210938, -32.398516 ], [ 125.859375, -32.398516 ], [ 125.859375, -32.546813 ], [ 125.507812, -32.546813 ], [ 125.507812, -32.694866 ], [ 124.980469, -32.694866 ], [ 124.980469, -32.842674 ], [ 124.628906, -32.842674 ], [ 124.628906, -32.990236 ], [ 124.277344, -32.990236 ], [ 124.277344, -33.284620 ], [ 124.101562, -33.284620 ], [ 124.101562, -33.578015 ], [ 123.925781, -33.578015 ], [ 123.925781, -33.724340 ], [ 123.750000, -33.724340 ], [ 123.750000, -33.870416 ], [ 122.695312, -33.870416 ], [ 122.695312, -34.016242 ], [ 121.640625, -34.016242 ], [ 121.640625, -33.870416 ], [ 120.410156, -33.870416 ], [ 120.410156, -34.016242 ], [ 119.882812, -34.016242 ], [ 119.882812, -34.161818 ], [ 119.707031, -34.161818 ], [ 119.707031, -34.307144 ], [ 119.531250, -34.307144 ], [ 119.531250, -34.452218 ], [ 119.003906, -34.452218 ], [ 119.003906, -34.597042 ], [ 118.652344, -34.597042 ], [ 118.652344, -34.741612 ], [ 118.476562, -34.741612 ], [ 118.476562, -34.885931 ], [ 118.125000, -34.885931 ], [ 118.125000, -35.029996 ], [ 116.367188, -35.029996 ], [ 116.367188, -34.885931 ], [ 116.015625, -34.885931 ], [ 116.015625, -34.741612 ], [ 115.839844, -34.741612 ], [ 115.839844, -34.597042 ], [ 115.488281, -34.597042 ], [ 115.488281, -34.452218 ], [ 115.312500, -34.452218 ], [ 115.312500, -34.307144 ], [ 114.960938, -34.307144 ], [ 114.960938, -33.578015 ], [ 115.312500, -33.578015 ], [ 115.312500, -33.431441 ], [ 115.664062, -33.431441 ], [ 115.664062, -32.546813 ], [ 115.839844, -32.546813 ], [ 115.839844, -31.952162 ], [ 115.664062, -31.952162 ], [ 115.664062, -31.503629 ], [ 115.488281, -31.503629 ], [ 115.488281, -31.203405 ], [ 115.312500, -31.203405 ], [ 115.312500, -30.902225 ], [ 115.136719, -30.902225 ], [ 115.136719, -30.297018 ], [ 114.960938, -30.297018 ], [ 114.960938, -29.382175 ], [ 114.785156, -29.382175 ], [ 114.785156, -29.075375 ], [ 114.609375, -29.075375 ], [ 114.609375, -28.459033 ], [ 114.433594, -28.459033 ], [ 114.433594, -28.304381 ], [ 114.257812, -28.304381 ], [ 114.257812, -27.839076 ], [ 114.082031, -27.839076 ], [ 114.082031, -27.371767 ], [ 113.906250, -27.371767 ], [ 113.906250, -27.059126 ], [ 113.730469, -27.059126 ], [ 113.730469, -26.745610 ], [ 113.554688, -26.745610 ], [ 113.554688, -26.588527 ], [ 113.730469, -26.588527 ], [ 113.730469, -26.431228 ], [ 113.378906, -26.431228 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.503906, 28.613459 ], [ 96.328125, 28.613459 ], [ 96.328125, 28.459033 ], [ 96.679688, 28.459033 ], [ 96.679688, 28.304381 ], [ 97.382812, 28.304381 ], [ 97.382812, 27.683528 ], [ 97.031250, 27.683528 ], [ 97.031250, 27.371767 ], [ 97.207031, 27.371767 ], [ 97.207031, 27.059126 ], [ 96.679688, 27.059126 ], [ 96.679688, 27.215556 ], [ 96.503906, 27.215556 ], [ 96.503906, 27.059126 ], [ 96.152344, 27.059126 ], [ 96.152344, 26.902477 ], [ 95.800781, 26.902477 ], [ 95.800781, 26.745610 ], [ 95.449219, 26.745610 ], [ 95.449219, 26.588527 ], [ 95.097656, 26.588527 ], [ 95.097656, 25.799891 ], [ 94.921875, 25.799891 ], [ 94.921875, 25.482951 ], [ 94.746094, 25.482951 ], [ 94.746094, 25.165173 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.527135 ], [ 94.394531, 24.527135 ], [ 94.394531, 24.206890 ], [ 94.218750, 24.206890 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 24.046464 ], [ 93.339844, 24.046464 ], [ 93.339844, 22.917923 ], [ 93.164062, 22.917923 ], [ 93.164062, 22.755921 ], [ 92.988281, 22.755921 ], [ 92.988281, 22.431340 ], [ 93.164062, 22.431340 ], [ 93.164062, 22.268764 ], [ 92.988281, 22.268764 ], [ 92.988281, 22.105999 ], [ 92.636719, 22.105999 ], [ 92.636719, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.755921 ], [ 92.285156, 22.755921 ], [ 92.285156, 23.241346 ], [ 92.109375, 23.241346 ], [ 92.109375, 23.563987 ], [ 91.933594, 23.563987 ], [ 91.933594, 23.241346 ], [ 91.757812, 23.241346 ], [ 91.757812, 22.917923 ], [ 91.582031, 22.917923 ], [ 91.582031, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.402765 ], [ 91.230469, 23.402765 ], [ 91.230469, 23.725012 ], [ 91.406250, 23.725012 ], [ 91.406250, 24.046464 ], [ 91.757812, 24.046464 ], [ 91.757812, 24.206890 ], [ 92.109375, 24.206890 ], [ 92.109375, 24.527135 ], [ 92.285156, 24.527135 ], [ 92.285156, 24.846565 ], [ 92.460938, 24.846565 ], [ 92.460938, 25.005973 ], [ 91.933594, 25.005973 ], [ 91.933594, 25.165173 ], [ 90.351562, 25.165173 ], [ 90.351562, 25.324167 ], [ 90.000000, 25.324167 ], [ 90.000000, 25.641526 ], [ 89.824219, 25.641526 ], [ 89.824219, 25.958045 ], [ 89.121094, 25.958045 ], [ 89.121094, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 90.703125, 26.902477 ], [ 90.703125, 26.745610 ], [ 91.757812, 26.745610 ], [ 91.757812, 26.902477 ], [ 92.109375, 26.902477 ], [ 92.109375, 27.527758 ], [ 91.933594, 27.527758 ], [ 91.933594, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.839076 ], [ 92.636719, 27.839076 ], [ 92.636719, 27.994401 ], [ 92.812500, 27.994401 ], [ 92.812500, 28.149503 ], [ 92.988281, 28.149503 ], [ 92.988281, 28.304381 ], [ 93.164062, 28.304381 ], [ 93.164062, 28.459033 ], [ 93.339844, 28.459033 ], [ 93.339844, 28.613459 ], [ 93.515625, 28.613459 ], [ 93.515625, 28.767659 ], [ 93.867188, 28.767659 ], [ 93.867188, 28.921631 ], [ 94.218750, 28.921631 ], [ 94.218750, 29.075375 ], [ 94.570312, 29.075375 ], [ 94.570312, 29.228890 ], [ 94.921875, 29.228890 ], [ 94.921875, 29.075375 ], [ 95.800781, 29.075375 ], [ 95.800781, 29.228890 ], [ 96.328125, 29.228890 ], [ 96.328125, 28.921631 ], [ 96.503906, 28.921631 ], [ 96.503906, 28.613459 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.328125, 29.228890 ], [ 96.328125, 28.921631 ], [ 96.503906, 28.921631 ], [ 96.503906, 28.613459 ], [ 96.328125, 28.613459 ], [ 96.328125, 28.459033 ], [ 96.679688, 28.459033 ], [ 96.679688, 28.304381 ], [ 97.382812, 28.304381 ], [ 97.382812, 27.683528 ], [ 97.031250, 27.683528 ], [ 97.031250, 27.371767 ], [ 97.207031, 27.371767 ], [ 97.207031, 27.059126 ], [ 96.679688, 27.059126 ], [ 96.679688, 27.215556 ], [ 96.503906, 27.215556 ], [ 96.503906, 27.059126 ], [ 96.152344, 27.059126 ], [ 96.152344, 26.902477 ], [ 95.800781, 26.902477 ], [ 95.800781, 26.745610 ], [ 95.449219, 26.745610 ], [ 95.449219, 26.588527 ], [ 95.097656, 26.588527 ], [ 95.097656, 25.799891 ], [ 94.921875, 25.799891 ], [ 94.921875, 25.482951 ], [ 94.746094, 25.482951 ], [ 94.746094, 25.165173 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.527135 ], [ 94.394531, 24.527135 ], [ 94.394531, 24.206890 ], [ 94.218750, 24.206890 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 24.046464 ], [ 93.339844, 24.046464 ], [ 93.339844, 22.917923 ], [ 93.164062, 22.917923 ], [ 93.164062, 22.755921 ], [ 92.988281, 22.755921 ], [ 92.988281, 22.431340 ], [ 93.164062, 22.431340 ], [ 93.164062, 22.268764 ], [ 92.988281, 22.268764 ], [ 92.988281, 22.105999 ], [ 92.636719, 22.105999 ], [ 92.636719, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.755921 ], [ 92.285156, 22.755921 ], [ 92.285156, 23.241346 ], [ 92.109375, 23.241346 ], [ 92.109375, 23.563987 ], [ 91.933594, 23.563987 ], [ 91.933594, 23.241346 ], [ 91.757812, 23.241346 ], [ 91.757812, 22.917923 ], [ 91.582031, 22.917923 ], [ 91.582031, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.402765 ], [ 91.230469, 23.402765 ], [ 91.230469, 23.725012 ], [ 91.406250, 23.725012 ], [ 91.406250, 24.046464 ], [ 91.757812, 24.046464 ], [ 91.757812, 24.206890 ], [ 92.109375, 24.206890 ], [ 92.109375, 24.527135 ], [ 92.285156, 24.527135 ], [ 92.285156, 24.846565 ], [ 92.460938, 24.846565 ], [ 92.460938, 25.005973 ], [ 91.933594, 25.005973 ], [ 91.933594, 25.165173 ], [ 90.351562, 25.165173 ], [ 90.351562, 25.324167 ], [ 90.000000, 25.324167 ], [ 90.000000, 25.641526 ], [ 89.824219, 25.641526 ], [ 89.824219, 25.958045 ], [ 89.121094, 25.958045 ], [ 89.121094, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 90.703125, 26.902477 ], [ 90.703125, 26.745610 ], [ 91.757812, 26.745610 ], [ 91.757812, 26.902477 ], [ 92.109375, 26.902477 ], [ 92.109375, 27.527758 ], [ 91.933594, 27.527758 ], [ 91.933594, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.839076 ], [ 92.636719, 27.839076 ], [ 92.636719, 27.994401 ], [ 92.812500, 27.994401 ], [ 92.812500, 28.149503 ], [ 92.988281, 28.149503 ], [ 92.988281, 28.304381 ], [ 93.164062, 28.304381 ], [ 93.164062, 28.459033 ], [ 93.339844, 28.459033 ], [ 93.339844, 28.613459 ], [ 93.515625, 28.613459 ], [ 93.515625, 28.767659 ], [ 93.867188, 28.767659 ], [ 93.867188, 28.921631 ], [ 94.218750, 28.921631 ], [ 94.218750, 29.075375 ], [ 94.570312, 29.075375 ], [ 94.570312, 29.228890 ], [ 94.921875, 29.228890 ], [ 94.921875, 29.075375 ], [ 95.800781, 29.075375 ], [ 95.800781, 29.228890 ], [ 96.328125, 29.228890 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 27.839076 ], [ 91.757812, 27.839076 ], [ 91.757812, 27.683528 ], [ 91.933594, 27.683528 ], [ 91.933594, 27.527758 ], [ 92.109375, 27.527758 ], [ 92.109375, 26.902477 ], [ 91.757812, 26.902477 ], [ 91.757812, 26.745610 ], [ 90.703125, 26.745610 ], [ 90.703125, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 89.121094, 26.902477 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.839076 ], [ 89.472656, 27.839076 ], [ 89.472656, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 28.149503 ], [ 90.351562, 28.149503 ], [ 90.351562, 27.994401 ], [ 91.406250, 27.994401 ], [ 91.406250, 27.839076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.351562, 28.149503 ], [ 90.351562, 27.994401 ], [ 91.406250, 27.994401 ], [ 91.406250, 27.839076 ], [ 91.757812, 27.839076 ], [ 91.757812, 27.683528 ], [ 91.933594, 27.683528 ], [ 91.933594, 27.527758 ], [ 92.109375, 27.527758 ], [ 92.109375, 26.902477 ], [ 91.757812, 26.902477 ], [ 91.757812, 26.745610 ], [ 90.703125, 26.745610 ], [ 90.703125, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 89.121094, 26.902477 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.839076 ], [ 89.472656, 27.839076 ], [ 89.472656, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 28.149503 ], [ 90.351562, 28.149503 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.285156, 22.755921 ], [ 92.460938, 22.755921 ], [ 92.460938, 22.268764 ], [ 92.636719, 22.268764 ], [ 92.636719, 21.289374 ], [ 92.285156, 21.289374 ], [ 92.285156, 20.797201 ], [ 92.109375, 20.797201 ], [ 92.109375, 21.779905 ], [ 91.933594, 21.779905 ], [ 91.933594, 21.943046 ], [ 91.757812, 21.943046 ], [ 91.757812, 22.268764 ], [ 91.582031, 22.268764 ], [ 91.582031, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.755921 ], [ 90.527344, 22.755921 ], [ 90.527344, 22.105999 ], [ 90.351562, 22.105999 ], [ 90.351562, 21.779905 ], [ 90.175781, 21.779905 ], [ 90.175781, 21.943046 ], [ 89.648438, 21.943046 ], [ 89.648438, 21.779905 ], [ 89.472656, 21.779905 ], [ 89.472656, 21.943046 ], [ 89.121094, 21.943046 ], [ 89.121094, 25.958045 ], [ 89.824219, 25.958045 ], [ 89.824219, 25.641526 ], [ 90.000000, 25.641526 ], [ 90.000000, 25.324167 ], [ 90.351562, 25.324167 ], [ 90.351562, 25.165173 ], [ 91.933594, 25.165173 ], [ 91.933594, 25.005973 ], [ 92.460938, 25.005973 ], [ 92.460938, 24.846565 ], [ 92.285156, 24.846565 ], [ 92.285156, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 24.206890 ], [ 91.757812, 24.206890 ], [ 91.757812, 24.046464 ], [ 91.406250, 24.046464 ], [ 91.406250, 23.725012 ], [ 91.230469, 23.725012 ], [ 91.230469, 23.402765 ], [ 91.406250, 23.402765 ], [ 91.406250, 23.241346 ], [ 91.582031, 23.241346 ], [ 91.582031, 22.917923 ], [ 91.757812, 22.917923 ], [ 91.757812, 23.241346 ], [ 91.933594, 23.241346 ], [ 91.933594, 23.563987 ], [ 92.109375, 23.563987 ], [ 92.109375, 23.241346 ], [ 92.285156, 23.241346 ], [ 92.285156, 22.755921 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.824219, 25.958045 ], [ 89.824219, 25.641526 ], [ 90.000000, 25.641526 ], [ 90.000000, 25.324167 ], [ 90.351562, 25.324167 ], [ 90.351562, 25.165173 ], [ 91.933594, 25.165173 ], [ 91.933594, 25.005973 ], [ 92.460938, 25.005973 ], [ 92.460938, 24.846565 ], [ 92.285156, 24.846565 ], [ 92.285156, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 24.206890 ], [ 91.757812, 24.206890 ], [ 91.757812, 24.046464 ], [ 91.406250, 24.046464 ], [ 91.406250, 23.725012 ], [ 91.230469, 23.725012 ], [ 91.230469, 23.402765 ], [ 91.406250, 23.402765 ], [ 91.406250, 23.241346 ], [ 91.582031, 23.241346 ], [ 91.582031, 22.917923 ], [ 91.757812, 22.917923 ], [ 91.757812, 23.241346 ], [ 91.933594, 23.241346 ], [ 91.933594, 23.563987 ], [ 92.109375, 23.563987 ], [ 92.109375, 23.241346 ], [ 92.285156, 23.241346 ], [ 92.285156, 22.755921 ], [ 92.460938, 22.755921 ], [ 92.460938, 22.268764 ], [ 92.636719, 22.268764 ], [ 92.636719, 21.289374 ], [ 92.285156, 21.289374 ], [ 92.285156, 20.797201 ], [ 92.109375, 20.797201 ], [ 92.109375, 21.779905 ], [ 91.933594, 21.779905 ], [ 91.933594, 21.943046 ], [ 91.757812, 21.943046 ], [ 91.757812, 22.268764 ], [ 91.582031, 22.268764 ], [ 91.582031, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.755921 ], [ 90.527344, 22.755921 ], [ 90.527344, 22.105999 ], [ 90.351562, 22.105999 ], [ 90.351562, 21.779905 ], [ 90.175781, 21.779905 ], [ 90.175781, 21.943046 ], [ 89.648438, 21.943046 ], [ 89.648438, 21.779905 ], [ 89.472656, 21.779905 ], [ 89.472656, 21.943046 ], [ 89.121094, 21.943046 ], [ 89.121094, 25.958045 ], [ 89.824219, 25.958045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.917969, 19.642588 ], [ 111.093750, 19.642588 ], [ 111.093750, 19.476950 ], [ 110.742188, 19.476950 ], [ 110.742188, 19.311143 ], [ 110.566406, 19.311143 ], [ 110.566406, 18.979026 ], [ 110.390625, 18.979026 ], [ 110.390625, 18.479609 ], [ 110.039062, 18.479609 ], [ 110.039062, 18.312811 ], [ 109.687500, 18.312811 ], [ 109.687500, 18.145852 ], [ 109.160156, 18.145852 ], [ 109.160156, 18.312811 ], [ 108.808594, 18.312811 ], [ 108.808594, 18.479609 ], [ 108.632812, 18.479609 ], [ 108.632812, 19.311143 ], [ 108.808594, 19.311143 ], [ 108.808594, 19.476950 ], [ 108.984375, 19.476950 ], [ 108.984375, 19.642588 ], [ 109.160156, 19.642588 ], [ 109.160156, 19.808054 ], [ 109.511719, 19.808054 ], [ 109.511719, 19.973349 ], [ 110.039062, 19.973349 ], [ 110.039062, 20.138470 ], [ 110.742188, 20.138470 ], [ 110.742188, 19.973349 ], [ 110.917969, 19.973349 ], [ 110.917969, 19.642588 ] ] ], [ [ [ 121.464844, 39.232253 ], [ 121.640625, 39.232253 ], [ 121.640625, 39.368279 ], [ 121.464844, 39.368279 ], [ 121.464844, 39.639538 ], [ 121.289062, 39.639538 ], [ 121.289062, 39.774769 ], [ 121.464844, 39.774769 ], [ 121.464844, 39.909736 ], [ 121.640625, 39.909736 ], [ 121.640625, 40.044438 ], [ 121.816406, 40.044438 ], [ 121.816406, 40.178873 ], [ 121.992188, 40.178873 ], [ 121.992188, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.289062, 40.847060 ], [ 121.289062, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.580585 ], [ 120.761719, 40.580585 ], [ 120.761719, 40.446947 ], [ 120.585938, 40.446947 ], [ 120.585938, 40.313043 ], [ 120.410156, 40.313043 ], [ 120.410156, 40.178873 ], [ 120.058594, 40.178873 ], [ 120.058594, 40.044438 ], [ 119.882812, 40.044438 ], [ 119.882812, 39.909736 ], [ 119.707031, 39.909736 ], [ 119.707031, 39.774769 ], [ 119.531250, 39.774769 ], [ 119.531250, 39.639538 ], [ 119.355469, 39.639538 ], [ 119.355469, 39.368279 ], [ 119.179688, 39.368279 ], [ 119.179688, 39.232253 ], [ 118.125000, 39.232253 ], [ 118.125000, 39.095963 ], [ 117.949219, 39.095963 ], [ 117.949219, 38.959409 ], [ 117.773438, 38.959409 ], [ 117.773438, 38.685510 ], [ 117.597656, 38.685510 ], [ 117.597656, 38.548165 ], [ 117.773438, 38.548165 ], [ 117.773438, 38.272689 ], [ 117.949219, 38.272689 ], [ 117.949219, 37.996163 ], [ 118.300781, 37.996163 ], [ 118.300781, 37.857507 ], [ 118.828125, 37.857507 ], [ 118.828125, 37.439974 ], [ 119.003906, 37.439974 ], [ 119.003906, 37.300275 ], [ 119.355469, 37.300275 ], [ 119.355469, 37.160317 ], [ 119.882812, 37.160317 ], [ 119.882812, 37.300275 ], [ 120.058594, 37.300275 ], [ 120.058594, 37.439974 ], [ 120.410156, 37.439974 ], [ 120.410156, 37.579413 ], [ 120.585938, 37.579413 ], [ 120.585938, 37.718590 ], [ 121.113281, 37.718590 ], [ 121.113281, 37.579413 ], [ 121.464844, 37.579413 ], [ 121.464844, 37.439974 ], [ 122.343750, 37.439974 ], [ 122.343750, 37.160317 ], [ 122.519531, 37.160317 ], [ 122.519531, 36.879621 ], [ 122.343750, 36.879621 ], [ 122.343750, 36.738884 ], [ 121.640625, 36.738884 ], [ 121.640625, 36.597889 ], [ 121.113281, 36.597889 ], [ 121.113281, 36.456636 ], [ 120.937500, 36.456636 ], [ 120.937500, 36.315125 ], [ 120.761719, 36.315125 ], [ 120.761719, 36.173357 ], [ 120.585938, 36.173357 ], [ 120.585938, 36.031332 ], [ 120.410156, 36.031332 ], [ 120.410156, 35.889050 ], [ 120.058594, 35.889050 ], [ 120.058594, 35.746512 ], [ 119.882812, 35.746512 ], [ 119.882812, 35.603719 ], [ 119.707031, 35.603719 ], [ 119.707031, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 35.173808 ], [ 119.355469, 35.173808 ], [ 119.355469, 34.885931 ], [ 119.179688, 34.885931 ], [ 119.179688, 34.741612 ], [ 119.531250, 34.741612 ], [ 119.531250, 34.597042 ], [ 119.707031, 34.597042 ], [ 119.707031, 34.452218 ], [ 120.058594, 34.452218 ], [ 120.058594, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 34.016242 ], [ 120.410156, 34.016242 ], [ 120.410156, 33.578015 ], [ 120.585938, 33.578015 ], [ 120.585938, 33.284620 ], [ 120.761719, 33.284620 ], [ 120.761719, 32.990236 ], [ 120.937500, 32.990236 ], [ 120.937500, 32.694866 ], [ 121.113281, 32.694866 ], [ 121.113281, 32.398516 ], [ 121.289062, 32.398516 ], [ 121.289062, 32.249974 ], [ 121.464844, 32.249974 ], [ 121.464844, 32.101190 ], [ 121.640625, 32.101190 ], [ 121.640625, 31.802893 ], [ 121.816406, 31.802893 ], [ 121.816406, 31.653381 ], [ 121.992188, 31.653381 ], [ 121.992188, 31.203405 ], [ 121.816406, 31.203405 ], [ 121.816406, 30.902225 ], [ 121.640625, 30.902225 ], [ 121.640625, 30.751278 ], [ 121.289062, 30.751278 ], [ 121.289062, 30.448674 ], [ 121.464844, 30.448674 ], [ 121.464844, 29.993002 ], [ 121.816406, 29.993002 ], [ 121.816406, 29.840644 ], [ 122.167969, 29.840644 ], [ 122.167969, 29.382175 ], [ 121.992188, 29.382175 ], [ 121.992188, 28.767659 ], [ 121.816406, 28.767659 ], [ 121.816406, 28.304381 ], [ 121.640625, 28.304381 ], [ 121.640625, 28.149503 ], [ 121.113281, 28.149503 ], [ 121.113281, 27.994401 ], [ 120.937500, 27.994401 ], [ 120.937500, 27.683528 ], [ 120.761719, 27.683528 ], [ 120.761719, 27.371767 ], [ 120.585938, 27.371767 ], [ 120.585938, 27.059126 ], [ 120.410156, 27.059126 ], [ 120.410156, 26.902477 ], [ 120.234375, 26.902477 ], [ 120.234375, 26.588527 ], [ 120.058594, 26.588527 ], [ 120.058594, 26.431228 ], [ 119.882812, 26.431228 ], [ 119.882812, 26.115986 ], [ 119.707031, 26.115986 ], [ 119.707031, 25.799891 ], [ 119.531250, 25.799891 ], [ 119.531250, 25.641526 ], [ 119.355469, 25.641526 ], [ 119.355469, 25.324167 ], [ 119.179688, 25.324167 ], [ 119.179688, 25.165173 ], [ 119.003906, 25.165173 ], [ 119.003906, 24.846565 ], [ 118.828125, 24.846565 ], [ 118.828125, 24.527135 ], [ 118.652344, 24.527135 ], [ 118.652344, 24.367114 ], [ 118.476562, 24.367114 ], [ 118.476562, 24.206890 ], [ 118.125000, 24.206890 ], [ 118.125000, 24.046464 ], [ 117.949219, 24.046464 ], [ 117.949219, 23.885838 ], [ 117.773438, 23.885838 ], [ 117.773438, 23.725012 ], [ 117.421875, 23.725012 ], [ 117.421875, 23.563987 ], [ 117.246094, 23.563987 ], [ 117.246094, 23.402765 ], [ 116.894531, 23.402765 ], [ 116.894531, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 23.079732 ], [ 116.367188, 23.079732 ], [ 116.367188, 22.917923 ], [ 116.015625, 22.917923 ], [ 116.015625, 22.755921 ], [ 115.488281, 22.755921 ], [ 115.488281, 22.593726 ], [ 114.785156, 22.593726 ], [ 114.785156, 22.431340 ], [ 114.433594, 22.431340 ], [ 114.433594, 22.268764 ], [ 113.906250, 22.268764 ], [ 113.906250, 22.431340 ], [ 113.554688, 22.431340 ], [ 113.554688, 22.268764 ], [ 113.378906, 22.268764 ], [ 113.378906, 22.105999 ], [ 113.027344, 22.105999 ], [ 113.027344, 21.943046 ], [ 112.675781, 21.943046 ], [ 112.675781, 21.779905 ], [ 112.148438, 21.779905 ], [ 112.148438, 21.616579 ], [ 111.445312, 21.616579 ], [ 111.445312, 21.453069 ], [ 110.742188, 21.453069 ], [ 110.742188, 21.125498 ], [ 110.566406, 21.125498 ], [ 110.566406, 20.468189 ], [ 110.390625, 20.468189 ], [ 110.390625, 20.303418 ], [ 109.863281, 20.303418 ], [ 109.863281, 20.632784 ], [ 109.687500, 20.632784 ], [ 109.687500, 21.125498 ], [ 109.863281, 21.125498 ], [ 109.863281, 21.453069 ], [ 109.335938, 21.453069 ], [ 109.335938, 21.616579 ], [ 108.632812, 21.616579 ], [ 108.632812, 21.779905 ], [ 108.457031, 21.779905 ], [ 108.457031, 21.616579 ], [ 107.402344, 21.616579 ], [ 107.402344, 21.779905 ], [ 106.875000, 21.779905 ], [ 106.875000, 21.943046 ], [ 106.699219, 21.943046 ], [ 106.699219, 22.105999 ], [ 106.523438, 22.105999 ], [ 106.523438, 22.431340 ], [ 106.699219, 22.431340 ], [ 106.699219, 22.755921 ], [ 106.171875, 22.755921 ], [ 106.171875, 22.917923 ], [ 105.644531, 22.917923 ], [ 105.644531, 23.079732 ], [ 105.468750, 23.079732 ], [ 105.468750, 23.241346 ], [ 105.117188, 23.241346 ], [ 105.117188, 23.079732 ], [ 104.765625, 23.079732 ], [ 104.765625, 22.917923 ], [ 104.589844, 22.917923 ], [ 104.589844, 22.755921 ], [ 102.656250, 22.755921 ], [ 102.656250, 22.593726 ], [ 102.304688, 22.593726 ], [ 102.304688, 22.431340 ], [ 101.953125, 22.431340 ], [ 101.953125, 22.268764 ], [ 101.601562, 22.268764 ], [ 101.601562, 21.616579 ], [ 101.777344, 21.616579 ], [ 101.777344, 21.125498 ], [ 101.250000, 21.125498 ], [ 101.250000, 21.616579 ], [ 101.074219, 21.616579 ], [ 101.074219, 21.779905 ], [ 100.898438, 21.779905 ], [ 100.898438, 21.616579 ], [ 100.019531, 21.616579 ], [ 100.019531, 21.779905 ], [ 99.667969, 21.779905 ], [ 99.667969, 21.943046 ], [ 99.316406, 21.943046 ], [ 99.316406, 22.431340 ], [ 99.492188, 22.431340 ], [ 99.492188, 22.917923 ], [ 99.140625, 22.917923 ], [ 99.140625, 23.079732 ], [ 98.964844, 23.079732 ], [ 98.964844, 23.241346 ], [ 98.789062, 23.241346 ], [ 98.789062, 23.725012 ], [ 98.613281, 23.725012 ], [ 98.613281, 24.046464 ], [ 98.261719, 24.046464 ], [ 98.261719, 23.885838 ], [ 97.558594, 23.885838 ], [ 97.558594, 24.367114 ], [ 97.734375, 24.367114 ], [ 97.734375, 25.005973 ], [ 97.910156, 25.005973 ], [ 97.910156, 25.165173 ], [ 98.085938, 25.165173 ], [ 98.085938, 25.482951 ], [ 98.261719, 25.482951 ], [ 98.261719, 25.641526 ], [ 98.437500, 25.641526 ], [ 98.437500, 25.799891 ], [ 98.613281, 25.799891 ], [ 98.613281, 26.273714 ], [ 98.789062, 26.273714 ], [ 98.789062, 27.059126 ], [ 98.613281, 27.059126 ], [ 98.613281, 27.527758 ], [ 98.261719, 27.527758 ], [ 98.261719, 27.839076 ], [ 98.085938, 27.839076 ], [ 98.085938, 28.149503 ], [ 97.910156, 28.149503 ], [ 97.910156, 28.304381 ], [ 96.679688, 28.304381 ], [ 96.679688, 28.459033 ], [ 96.328125, 28.459033 ], [ 96.328125, 28.613459 ], [ 96.503906, 28.613459 ], [ 96.503906, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 29.228890 ], [ 95.800781, 29.228890 ], [ 95.800781, 29.075375 ], [ 94.921875, 29.075375 ], [ 94.921875, 29.228890 ], [ 94.570312, 29.228890 ], [ 94.570312, 29.075375 ], [ 94.218750, 29.075375 ], [ 94.218750, 28.921631 ], [ 93.867188, 28.921631 ], [ 93.867188, 28.767659 ], [ 93.515625, 28.767659 ], [ 93.515625, 28.613459 ], [ 93.339844, 28.613459 ], [ 93.339844, 28.459033 ], [ 93.164062, 28.459033 ], [ 93.164062, 28.304381 ], [ 92.988281, 28.304381 ], [ 92.988281, 28.149503 ], [ 92.812500, 28.149503 ], [ 92.812500, 27.994401 ], [ 92.636719, 27.994401 ], [ 92.636719, 27.839076 ], [ 91.406250, 27.839076 ], [ 91.406250, 27.994401 ], [ 90.351562, 27.994401 ], [ 90.351562, 28.149503 ], [ 89.648438, 28.149503 ], [ 89.648438, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 41.640078 ], [ 126.738281, 41.640078 ], [ 126.738281, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.376809 ], [ 126.386719, 41.376809 ], [ 126.386719, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.713956 ], [ 125.332031, 40.713956 ], [ 125.332031, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.313043 ], [ 124.804688, 40.313043 ], [ 124.804688, 40.178873 ], [ 124.628906, 40.178873 ], [ 124.628906, 40.044438 ], [ 124.453125, 40.044438 ], [ 124.453125, 39.909736 ], [ 124.101562, 39.909736 ], [ 124.101562, 39.774769 ], [ 123.398438, 39.774769 ], [ 123.398438, 39.639538 ], [ 122.871094, 39.639538 ], [ 122.871094, 39.504041 ], [ 122.695312, 39.504041 ], [ 122.695312, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 39.232253 ], [ 121.992188, 39.232253 ], [ 121.992188, 39.095963 ], [ 121.464844, 39.095963 ], [ 121.464844, 39.232253 ] ] ], [ [ [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 128.144531, 41.640078 ], [ 128.144531, 41.508577 ] ] ], [ [ [ 121.464844, 38.959409 ], [ 121.289062, 38.959409 ], [ 121.289062, 39.095963 ], [ 121.464844, 39.095963 ], [ 121.464844, 38.959409 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 110.742188, 19.973349 ], [ 110.917969, 19.973349 ], [ 110.917969, 19.642588 ], [ 111.093750, 19.642588 ], [ 111.093750, 19.476950 ], [ 110.742188, 19.476950 ], [ 110.742188, 19.311143 ], [ 110.566406, 19.311143 ], [ 110.566406, 18.979026 ], [ 110.390625, 18.979026 ], [ 110.390625, 18.479609 ], [ 110.039062, 18.479609 ], [ 110.039062, 18.312811 ], [ 109.687500, 18.312811 ], [ 109.687500, 18.145852 ], [ 109.160156, 18.145852 ], [ 109.160156, 18.312811 ], [ 108.808594, 18.312811 ], [ 108.808594, 18.479609 ], [ 108.632812, 18.479609 ], [ 108.632812, 19.311143 ], [ 108.808594, 19.311143 ], [ 108.808594, 19.476950 ], [ 108.984375, 19.476950 ], [ 108.984375, 19.642588 ], [ 109.160156, 19.642588 ], [ 109.160156, 19.808054 ], [ 109.511719, 19.808054 ], [ 109.511719, 19.973349 ], [ 110.039062, 19.973349 ], [ 110.039062, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 126.738281, 41.640078 ], [ 126.738281, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.376809 ], [ 126.386719, 41.376809 ], [ 126.386719, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.713956 ], [ 125.332031, 40.713956 ], [ 125.332031, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.313043 ], [ 124.804688, 40.313043 ], [ 124.804688, 40.178873 ], [ 124.628906, 40.178873 ], [ 124.628906, 40.044438 ], [ 124.453125, 40.044438 ], [ 124.453125, 39.909736 ], [ 124.101562, 39.909736 ], [ 124.101562, 39.774769 ], [ 123.398438, 39.774769 ], [ 123.398438, 39.639538 ], [ 122.871094, 39.639538 ], [ 122.871094, 39.504041 ], [ 122.695312, 39.504041 ], [ 122.695312, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 39.232253 ], [ 121.992188, 39.232253 ], [ 121.992188, 39.095963 ], [ 121.464844, 39.095963 ], [ 121.464844, 39.232253 ], [ 121.640625, 39.232253 ], [ 121.640625, 39.368279 ], [ 121.464844, 39.368279 ], [ 121.464844, 39.639538 ], [ 121.289062, 39.639538 ], [ 121.289062, 39.774769 ], [ 121.464844, 39.774769 ], [ 121.464844, 39.909736 ], [ 121.640625, 39.909736 ], [ 121.640625, 40.044438 ], [ 121.816406, 40.044438 ], [ 121.816406, 40.178873 ], [ 121.992188, 40.178873 ], [ 121.992188, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.289062, 40.847060 ], [ 121.289062, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.580585 ], [ 120.761719, 40.580585 ], [ 120.761719, 40.446947 ], [ 120.585938, 40.446947 ], [ 120.585938, 40.313043 ], [ 120.410156, 40.313043 ], [ 120.410156, 40.178873 ], [ 120.058594, 40.178873 ], [ 120.058594, 40.044438 ], [ 119.882812, 40.044438 ], [ 119.882812, 39.909736 ], [ 119.707031, 39.909736 ], [ 119.707031, 39.774769 ], [ 119.531250, 39.774769 ], [ 119.531250, 39.639538 ], [ 119.355469, 39.639538 ], [ 119.355469, 39.368279 ], [ 119.179688, 39.368279 ], [ 119.179688, 39.232253 ], [ 118.125000, 39.232253 ], [ 118.125000, 39.095963 ], [ 117.949219, 39.095963 ], [ 117.949219, 38.959409 ], [ 117.773438, 38.959409 ], [ 117.773438, 38.685510 ], [ 117.597656, 38.685510 ], [ 117.597656, 38.548165 ], [ 117.773438, 38.548165 ], [ 117.773438, 38.272689 ], [ 117.949219, 38.272689 ], [ 117.949219, 37.996163 ], [ 118.300781, 37.996163 ], [ 118.300781, 37.857507 ], [ 118.828125, 37.857507 ], [ 118.828125, 37.439974 ], [ 119.003906, 37.439974 ], [ 119.003906, 37.300275 ], [ 119.355469, 37.300275 ], [ 119.355469, 37.160317 ], [ 119.882812, 37.160317 ], [ 119.882812, 37.300275 ], [ 120.058594, 37.300275 ], [ 120.058594, 37.439974 ], [ 120.410156, 37.439974 ], [ 120.410156, 37.579413 ], [ 120.585938, 37.579413 ], [ 120.585938, 37.718590 ], [ 121.113281, 37.718590 ], [ 121.113281, 37.579413 ], [ 121.464844, 37.579413 ], [ 121.464844, 37.439974 ], [ 122.343750, 37.439974 ], [ 122.343750, 37.160317 ], [ 122.519531, 37.160317 ], [ 122.519531, 36.879621 ], [ 122.343750, 36.879621 ], [ 122.343750, 36.738884 ], [ 121.640625, 36.738884 ], [ 121.640625, 36.597889 ], [ 121.113281, 36.597889 ], [ 121.113281, 36.456636 ], [ 120.937500, 36.456636 ], [ 120.937500, 36.315125 ], [ 120.761719, 36.315125 ], [ 120.761719, 36.173357 ], [ 120.585938, 36.173357 ], [ 120.585938, 36.031332 ], [ 120.410156, 36.031332 ], [ 120.410156, 35.889050 ], [ 120.058594, 35.889050 ], [ 120.058594, 35.746512 ], [ 119.882812, 35.746512 ], [ 119.882812, 35.603719 ], [ 119.707031, 35.603719 ], [ 119.707031, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 35.173808 ], [ 119.355469, 35.173808 ], [ 119.355469, 34.885931 ], [ 119.179688, 34.885931 ], [ 119.179688, 34.741612 ], [ 119.531250, 34.741612 ], [ 119.531250, 34.597042 ], [ 119.707031, 34.597042 ], [ 119.707031, 34.452218 ], [ 120.058594, 34.452218 ], [ 120.058594, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 34.016242 ], [ 120.410156, 34.016242 ], [ 120.410156, 33.578015 ], [ 120.585938, 33.578015 ], [ 120.585938, 33.284620 ], [ 120.761719, 33.284620 ], [ 120.761719, 32.990236 ], [ 120.937500, 32.990236 ], [ 120.937500, 32.694866 ], [ 121.113281, 32.694866 ], [ 121.113281, 32.398516 ], [ 121.289062, 32.398516 ], [ 121.289062, 32.249974 ], [ 121.464844, 32.249974 ], [ 121.464844, 32.101190 ], [ 121.640625, 32.101190 ], [ 121.640625, 31.802893 ], [ 121.816406, 31.802893 ], [ 121.816406, 31.653381 ], [ 121.992188, 31.653381 ], [ 121.992188, 31.203405 ], [ 121.816406, 31.203405 ], [ 121.816406, 30.902225 ], [ 121.640625, 30.902225 ], [ 121.640625, 30.751278 ], [ 121.289062, 30.751278 ], [ 121.289062, 30.448674 ], [ 121.464844, 30.448674 ], [ 121.464844, 29.993002 ], [ 121.816406, 29.993002 ], [ 121.816406, 29.840644 ], [ 122.167969, 29.840644 ], [ 122.167969, 29.382175 ], [ 121.992188, 29.382175 ], [ 121.992188, 28.767659 ], [ 121.816406, 28.767659 ], [ 121.816406, 28.304381 ], [ 121.640625, 28.304381 ], [ 121.640625, 28.149503 ], [ 121.113281, 28.149503 ], [ 121.113281, 27.994401 ], [ 120.937500, 27.994401 ], [ 120.937500, 27.683528 ], [ 120.761719, 27.683528 ], [ 120.761719, 27.371767 ], [ 120.585938, 27.371767 ], [ 120.585938, 27.059126 ], [ 120.410156, 27.059126 ], [ 120.410156, 26.902477 ], [ 120.234375, 26.902477 ], [ 120.234375, 26.588527 ], [ 120.058594, 26.588527 ], [ 120.058594, 26.431228 ], [ 119.882812, 26.431228 ], [ 119.882812, 26.115986 ], [ 119.707031, 26.115986 ], [ 119.707031, 25.799891 ], [ 119.531250, 25.799891 ], [ 119.531250, 25.641526 ], [ 119.355469, 25.641526 ], [ 119.355469, 25.324167 ], [ 119.179688, 25.324167 ], [ 119.179688, 25.165173 ], [ 119.003906, 25.165173 ], [ 119.003906, 24.846565 ], [ 118.828125, 24.846565 ], [ 118.828125, 24.527135 ], [ 118.652344, 24.527135 ], [ 118.652344, 24.367114 ], [ 118.476562, 24.367114 ], [ 118.476562, 24.206890 ], [ 118.125000, 24.206890 ], [ 118.125000, 24.046464 ], [ 117.949219, 24.046464 ], [ 117.949219, 23.885838 ], [ 117.773438, 23.885838 ], [ 117.773438, 23.725012 ], [ 117.421875, 23.725012 ], [ 117.421875, 23.563987 ], [ 117.246094, 23.563987 ], [ 117.246094, 23.402765 ], [ 116.894531, 23.402765 ], [ 116.894531, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 23.079732 ], [ 116.367188, 23.079732 ], [ 116.367188, 22.917923 ], [ 116.015625, 22.917923 ], [ 116.015625, 22.755921 ], [ 115.488281, 22.755921 ], [ 115.488281, 22.593726 ], [ 114.785156, 22.593726 ], [ 114.785156, 22.431340 ], [ 114.433594, 22.431340 ], [ 114.433594, 22.268764 ], [ 113.906250, 22.268764 ], [ 113.906250, 22.431340 ], [ 113.554688, 22.431340 ], [ 113.554688, 22.268764 ], [ 113.378906, 22.268764 ], [ 113.378906, 22.105999 ], [ 113.027344, 22.105999 ], [ 113.027344, 21.943046 ], [ 112.675781, 21.943046 ], [ 112.675781, 21.779905 ], [ 112.148438, 21.779905 ], [ 112.148438, 21.616579 ], [ 111.445312, 21.616579 ], [ 111.445312, 21.453069 ], [ 110.742188, 21.453069 ], [ 110.742188, 21.125498 ], [ 110.566406, 21.125498 ], [ 110.566406, 20.468189 ], [ 110.390625, 20.468189 ], [ 110.390625, 20.303418 ], [ 109.863281, 20.303418 ], [ 109.863281, 20.632784 ], [ 109.687500, 20.632784 ], [ 109.687500, 21.125498 ], [ 109.863281, 21.125498 ], [ 109.863281, 21.453069 ], [ 109.335938, 21.453069 ], [ 109.335938, 21.616579 ], [ 108.632812, 21.616579 ], [ 108.632812, 21.779905 ], [ 108.457031, 21.779905 ], [ 108.457031, 21.616579 ], [ 107.402344, 21.616579 ], [ 107.402344, 21.779905 ], [ 106.875000, 21.779905 ], [ 106.875000, 21.943046 ], [ 106.699219, 21.943046 ], [ 106.699219, 22.105999 ], [ 106.523438, 22.105999 ], [ 106.523438, 22.431340 ], [ 106.699219, 22.431340 ], [ 106.699219, 22.755921 ], [ 106.171875, 22.755921 ], [ 106.171875, 22.917923 ], [ 105.644531, 22.917923 ], [ 105.644531, 23.079732 ], [ 105.468750, 23.079732 ], [ 105.468750, 23.241346 ], [ 105.117188, 23.241346 ], [ 105.117188, 23.079732 ], [ 104.765625, 23.079732 ], [ 104.765625, 22.917923 ], [ 104.589844, 22.917923 ], [ 104.589844, 22.755921 ], [ 102.656250, 22.755921 ], [ 102.656250, 22.593726 ], [ 102.304688, 22.593726 ], [ 102.304688, 22.431340 ], [ 101.953125, 22.431340 ], [ 101.953125, 22.268764 ], [ 101.601562, 22.268764 ], [ 101.601562, 21.616579 ], [ 101.777344, 21.616579 ], [ 101.777344, 21.125498 ], [ 101.250000, 21.125498 ], [ 101.250000, 21.616579 ], [ 101.074219, 21.616579 ], [ 101.074219, 21.779905 ], [ 100.898438, 21.779905 ], [ 100.898438, 21.616579 ], [ 100.019531, 21.616579 ], [ 100.019531, 21.779905 ], [ 99.667969, 21.779905 ], [ 99.667969, 21.943046 ], [ 99.316406, 21.943046 ], [ 99.316406, 22.431340 ], [ 99.492188, 22.431340 ], [ 99.492188, 22.917923 ], [ 99.140625, 22.917923 ], [ 99.140625, 23.079732 ], [ 98.964844, 23.079732 ], [ 98.964844, 23.241346 ], [ 98.789062, 23.241346 ], [ 98.789062, 23.725012 ], [ 98.613281, 23.725012 ], [ 98.613281, 24.046464 ], [ 98.261719, 24.046464 ], [ 98.261719, 23.885838 ], [ 97.558594, 23.885838 ], [ 97.558594, 24.367114 ], [ 97.734375, 24.367114 ], [ 97.734375, 25.005973 ], [ 97.910156, 25.005973 ], [ 97.910156, 25.165173 ], [ 98.085938, 25.165173 ], [ 98.085938, 25.482951 ], [ 98.261719, 25.482951 ], [ 98.261719, 25.641526 ], [ 98.437500, 25.641526 ], [ 98.437500, 25.799891 ], [ 98.613281, 25.799891 ], [ 98.613281, 26.273714 ], [ 98.789062, 26.273714 ], [ 98.789062, 27.059126 ], [ 98.613281, 27.059126 ], [ 98.613281, 27.527758 ], [ 98.261719, 27.527758 ], [ 98.261719, 27.839076 ], [ 98.085938, 27.839076 ], [ 98.085938, 28.149503 ], [ 97.910156, 28.149503 ], [ 97.910156, 28.304381 ], [ 96.679688, 28.304381 ], [ 96.679688, 28.459033 ], [ 96.328125, 28.459033 ], [ 96.328125, 28.613459 ], [ 96.503906, 28.613459 ], [ 96.503906, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 29.228890 ], [ 95.800781, 29.228890 ], [ 95.800781, 29.075375 ], [ 94.921875, 29.075375 ], [ 94.921875, 29.228890 ], [ 94.570312, 29.228890 ], [ 94.570312, 29.075375 ], [ 94.218750, 29.075375 ], [ 94.218750, 28.921631 ], [ 93.867188, 28.921631 ], [ 93.867188, 28.767659 ], [ 93.515625, 28.767659 ], [ 93.515625, 28.613459 ], [ 93.339844, 28.613459 ], [ 93.339844, 28.459033 ], [ 93.164062, 28.459033 ], [ 93.164062, 28.304381 ], [ 92.988281, 28.304381 ], [ 92.988281, 28.149503 ], [ 92.812500, 28.149503 ], [ 92.812500, 27.994401 ], [ 92.636719, 27.994401 ], [ 92.636719, 27.839076 ], [ 91.406250, 27.839076 ], [ 91.406250, 27.994401 ], [ 90.351562, 27.994401 ], [ 90.351562, 28.149503 ], [ 89.648438, 28.149503 ], [ 89.648438, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 41.640078 ], [ 126.738281, 41.640078 ] ] ], [ [ [ 121.464844, 39.095963 ], [ 121.464844, 38.959409 ], [ 121.289062, 38.959409 ], [ 121.289062, 39.095963 ], [ 121.464844, 39.095963 ] ] ], [ [ [ 128.144531, 41.640078 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 128.144531, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.789062, 26.273714 ], [ 98.613281, 26.273714 ], [ 98.613281, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 25.641526 ], [ 98.261719, 25.641526 ], [ 98.261719, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.165173 ], [ 97.910156, 25.165173 ], [ 97.910156, 25.005973 ], [ 97.734375, 25.005973 ], [ 97.734375, 24.367114 ], [ 97.558594, 24.367114 ], [ 97.558594, 23.885838 ], [ 98.261719, 23.885838 ], [ 98.261719, 24.046464 ], [ 98.613281, 24.046464 ], [ 98.613281, 23.725012 ], [ 98.789062, 23.725012 ], [ 98.789062, 23.241346 ], [ 98.964844, 23.241346 ], [ 98.964844, 23.079732 ], [ 99.140625, 23.079732 ], [ 99.140625, 22.917923 ], [ 99.492188, 22.917923 ], [ 99.492188, 22.431340 ], [ 99.316406, 22.431340 ], [ 99.316406, 21.943046 ], [ 99.667969, 21.943046 ], [ 99.667969, 21.779905 ], [ 100.019531, 21.779905 ], [ 100.019531, 21.616579 ], [ 100.898438, 21.616579 ], [ 100.898438, 21.779905 ], [ 101.074219, 21.779905 ], [ 101.074219, 21.616579 ], [ 101.250000, 21.616579 ], [ 101.250000, 21.289374 ], [ 101.074219, 21.289374 ], [ 101.074219, 21.125498 ], [ 100.722656, 21.125498 ], [ 100.722656, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 20.797201 ], [ 100.371094, 20.797201 ], [ 100.371094, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.303418 ], [ 99.843750, 20.303418 ], [ 99.843750, 20.138470 ], [ 99.492188, 20.138470 ], [ 99.492188, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 19.808054 ], [ 98.789062, 19.808054 ], [ 98.789062, 19.642588 ], [ 98.261719, 19.642588 ], [ 98.261719, 19.476950 ], [ 98.085938, 19.476950 ], [ 98.085938, 19.145168 ], [ 97.910156, 19.145168 ], [ 97.910156, 18.812718 ], [ 97.734375, 18.812718 ], [ 97.734375, 18.479609 ], [ 97.382812, 18.479609 ], [ 97.382812, 18.312811 ], [ 97.558594, 18.312811 ], [ 97.558594, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.644022 ], [ 97.910156, 17.644022 ], [ 97.910156, 17.476432 ], [ 98.085938, 17.476432 ], [ 98.085938, 17.140790 ], [ 98.261719, 17.140790 ], [ 98.261719, 16.804541 ], [ 98.437500, 16.804541 ], [ 98.437500, 16.636192 ], [ 98.613281, 16.636192 ], [ 98.613281, 16.467695 ], [ 98.789062, 16.467695 ], [ 98.789062, 16.130262 ], [ 98.964844, 16.130262 ], [ 98.964844, 15.792254 ], [ 98.789062, 15.792254 ], [ 98.789062, 15.453680 ], [ 98.613281, 15.453680 ], [ 98.613281, 15.114553 ], [ 98.261719, 15.114553 ], [ 98.261719, 14.774883 ], [ 98.437500, 14.774883 ], [ 98.437500, 14.434680 ], [ 98.613281, 14.434680 ], [ 98.613281, 14.264383 ], [ 98.789062, 14.264383 ], [ 98.789062, 13.923404 ], [ 98.964844, 13.923404 ], [ 98.964844, 13.752725 ], [ 99.140625, 13.752725 ], [ 99.140625, 12.554564 ], [ 99.316406, 12.554564 ], [ 99.316406, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.867351 ], [ 99.667969, 11.867351 ], [ 99.667969, 11.695273 ], [ 99.492188, 11.695273 ], [ 99.492188, 11.523088 ], [ 99.316406, 11.523088 ], [ 99.316406, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 11.005904 ], [ 98.964844, 11.005904 ], [ 98.964844, 10.660608 ], [ 98.789062, 10.660608 ], [ 98.789062, 10.141932 ], [ 98.613281, 10.141932 ], [ 98.613281, 10.314919 ], [ 98.437500, 10.314919 ], [ 98.437500, 10.833306 ], [ 98.613281, 10.833306 ], [ 98.613281, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 11.523088 ], [ 98.613281, 11.523088 ], [ 98.613281, 11.867351 ], [ 98.437500, 11.867351 ], [ 98.437500, 13.068777 ], [ 98.261719, 13.068777 ], [ 98.261719, 13.410994 ], [ 98.085938, 13.410994 ], [ 98.085938, 13.752725 ], [ 97.910156, 13.752725 ], [ 97.910156, 14.434680 ], [ 97.734375, 14.434680 ], [ 97.734375, 15.453680 ], [ 97.558594, 15.453680 ], [ 97.558594, 16.299051 ], [ 97.382812, 16.299051 ], [ 97.382812, 16.636192 ], [ 97.207031, 16.636192 ], [ 97.207031, 16.804541 ], [ 97.031250, 16.804541 ], [ 97.031250, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 16.467695 ], [ 96.503906, 16.467695 ], [ 96.503906, 16.299051 ], [ 96.152344, 16.299051 ], [ 96.152344, 16.130262 ], [ 95.976562, 16.130262 ], [ 95.976562, 15.961329 ], [ 95.625000, 15.961329 ], [ 95.625000, 15.792254 ], [ 94.394531, 15.792254 ], [ 94.394531, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.299051 ], [ 94.394531, 16.299051 ], [ 94.394531, 16.972741 ], [ 94.570312, 16.972741 ], [ 94.570312, 17.644022 ], [ 94.394531, 17.644022 ], [ 94.394531, 18.145852 ], [ 94.218750, 18.145852 ], [ 94.218750, 18.479609 ], [ 94.042969, 18.479609 ], [ 94.042969, 18.646245 ], [ 93.867188, 18.646245 ], [ 93.867188, 18.812718 ], [ 93.691406, 18.812718 ], [ 93.691406, 19.145168 ], [ 93.515625, 19.145168 ], [ 93.515625, 19.476950 ], [ 93.691406, 19.476950 ], [ 93.691406, 19.808054 ], [ 92.988281, 19.808054 ], [ 92.988281, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.138470 ], [ 92.636719, 20.138470 ], [ 92.636719, 20.303418 ], [ 92.460938, 20.303418 ], [ 92.460938, 20.468189 ], [ 92.285156, 20.468189 ], [ 92.285156, 21.289374 ], [ 92.636719, 21.289374 ], [ 92.636719, 22.105999 ], [ 92.988281, 22.105999 ], [ 92.988281, 22.268764 ], [ 93.164062, 22.268764 ], [ 93.164062, 22.431340 ], [ 92.988281, 22.431340 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.755921 ], [ 93.164062, 22.917923 ], [ 93.339844, 22.917923 ], [ 93.339844, 24.046464 ], [ 93.515625, 24.046464 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.206890 ], [ 94.394531, 24.206890 ], [ 94.394531, 24.527135 ], [ 94.570312, 24.527135 ], [ 94.570312, 25.165173 ], [ 94.746094, 25.165173 ], [ 94.746094, 25.482951 ], [ 94.921875, 25.482951 ], [ 94.921875, 25.799891 ], [ 95.097656, 25.799891 ], [ 95.097656, 26.588527 ], [ 95.449219, 26.588527 ], [ 95.449219, 26.745610 ], [ 95.800781, 26.745610 ], [ 95.800781, 26.902477 ], [ 96.152344, 26.902477 ], [ 96.152344, 27.059126 ], [ 96.503906, 27.059126 ], [ 96.503906, 27.215556 ], [ 96.679688, 27.215556 ], [ 96.679688, 27.059126 ], [ 97.207031, 27.059126 ], [ 97.207031, 27.371767 ], [ 97.031250, 27.371767 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.683528 ], [ 97.382812, 28.304381 ], [ 97.910156, 28.304381 ], [ 97.910156, 28.149503 ], [ 98.085938, 28.149503 ], [ 98.085938, 27.839076 ], [ 98.261719, 27.839076 ], [ 98.261719, 27.527758 ], [ 98.613281, 27.527758 ], [ 98.613281, 27.059126 ], [ 98.789062, 27.059126 ], [ 98.789062, 26.273714 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.304381 ], [ 97.910156, 28.149503 ], [ 98.085938, 28.149503 ], [ 98.085938, 27.839076 ], [ 98.261719, 27.839076 ], [ 98.261719, 27.527758 ], [ 98.613281, 27.527758 ], [ 98.613281, 27.059126 ], [ 98.789062, 27.059126 ], [ 98.789062, 26.273714 ], [ 98.613281, 26.273714 ], [ 98.613281, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 25.641526 ], [ 98.261719, 25.641526 ], [ 98.261719, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.165173 ], [ 97.910156, 25.165173 ], [ 97.910156, 25.005973 ], [ 97.734375, 25.005973 ], [ 97.734375, 24.367114 ], [ 97.558594, 24.367114 ], [ 97.558594, 23.885838 ], [ 98.261719, 23.885838 ], [ 98.261719, 24.046464 ], [ 98.613281, 24.046464 ], [ 98.613281, 23.725012 ], [ 98.789062, 23.725012 ], [ 98.789062, 23.241346 ], [ 98.964844, 23.241346 ], [ 98.964844, 23.079732 ], [ 99.140625, 23.079732 ], [ 99.140625, 22.917923 ], [ 99.492188, 22.917923 ], [ 99.492188, 22.431340 ], [ 99.316406, 22.431340 ], [ 99.316406, 21.943046 ], [ 99.667969, 21.943046 ], [ 99.667969, 21.779905 ], [ 100.019531, 21.779905 ], [ 100.019531, 21.616579 ], [ 100.898438, 21.616579 ], [ 100.898438, 21.779905 ], [ 101.074219, 21.779905 ], [ 101.074219, 21.616579 ], [ 101.250000, 21.616579 ], [ 101.250000, 21.289374 ], [ 101.074219, 21.289374 ], [ 101.074219, 21.125498 ], [ 100.722656, 21.125498 ], [ 100.722656, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 20.797201 ], [ 100.371094, 20.797201 ], [ 100.371094, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.303418 ], [ 99.843750, 20.303418 ], [ 99.843750, 20.138470 ], [ 99.492188, 20.138470 ], [ 99.492188, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 19.808054 ], [ 98.789062, 19.808054 ], [ 98.789062, 19.642588 ], [ 98.261719, 19.642588 ], [ 98.261719, 19.476950 ], [ 98.085938, 19.476950 ], [ 98.085938, 19.145168 ], [ 97.910156, 19.145168 ], [ 97.910156, 18.812718 ], [ 97.734375, 18.812718 ], [ 97.734375, 18.479609 ], [ 97.382812, 18.479609 ], [ 97.382812, 18.312811 ], [ 97.558594, 18.312811 ], [ 97.558594, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.644022 ], [ 97.910156, 17.644022 ], [ 97.910156, 17.476432 ], [ 98.085938, 17.476432 ], [ 98.085938, 17.140790 ], [ 98.261719, 17.140790 ], [ 98.261719, 16.804541 ], [ 98.437500, 16.804541 ], [ 98.437500, 16.636192 ], [ 98.613281, 16.636192 ], [ 98.613281, 16.467695 ], [ 98.789062, 16.467695 ], [ 98.789062, 16.130262 ], [ 98.964844, 16.130262 ], [ 98.964844, 15.792254 ], [ 98.789062, 15.792254 ], [ 98.789062, 15.453680 ], [ 98.613281, 15.453680 ], [ 98.613281, 15.114553 ], [ 98.261719, 15.114553 ], [ 98.261719, 14.774883 ], [ 98.437500, 14.774883 ], [ 98.437500, 14.434680 ], [ 98.613281, 14.434680 ], [ 98.613281, 14.264383 ], [ 98.789062, 14.264383 ], [ 98.789062, 13.923404 ], [ 98.964844, 13.923404 ], [ 98.964844, 13.752725 ], [ 99.140625, 13.752725 ], [ 99.140625, 12.554564 ], [ 99.316406, 12.554564 ], [ 99.316406, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.867351 ], [ 99.667969, 11.867351 ], [ 99.667969, 11.695273 ], [ 99.492188, 11.695273 ], [ 99.492188, 11.523088 ], [ 99.316406, 11.523088 ], [ 99.316406, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 11.005904 ], [ 98.964844, 11.005904 ], [ 98.964844, 10.660608 ], [ 98.789062, 10.660608 ], [ 98.789062, 10.141932 ], [ 98.613281, 10.141932 ], [ 98.613281, 10.314919 ], [ 98.437500, 10.314919 ], [ 98.437500, 10.833306 ], [ 98.613281, 10.833306 ], [ 98.613281, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 11.523088 ], [ 98.613281, 11.523088 ], [ 98.613281, 11.867351 ], [ 98.437500, 11.867351 ], [ 98.437500, 13.068777 ], [ 98.261719, 13.068777 ], [ 98.261719, 13.410994 ], [ 98.085938, 13.410994 ], [ 98.085938, 13.752725 ], [ 97.910156, 13.752725 ], [ 97.910156, 14.434680 ], [ 97.734375, 14.434680 ], [ 97.734375, 15.453680 ], [ 97.558594, 15.453680 ], [ 97.558594, 16.299051 ], [ 97.382812, 16.299051 ], [ 97.382812, 16.636192 ], [ 97.207031, 16.636192 ], [ 97.207031, 16.804541 ], [ 97.031250, 16.804541 ], [ 97.031250, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 16.467695 ], [ 96.503906, 16.467695 ], [ 96.503906, 16.299051 ], [ 96.152344, 16.299051 ], [ 96.152344, 16.130262 ], [ 95.976562, 16.130262 ], [ 95.976562, 15.961329 ], [ 95.625000, 15.961329 ], [ 95.625000, 15.792254 ], [ 94.394531, 15.792254 ], [ 94.394531, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.299051 ], [ 94.394531, 16.299051 ], [ 94.394531, 16.972741 ], [ 94.570312, 16.972741 ], [ 94.570312, 17.644022 ], [ 94.394531, 17.644022 ], [ 94.394531, 18.145852 ], [ 94.218750, 18.145852 ], [ 94.218750, 18.479609 ], [ 94.042969, 18.479609 ], [ 94.042969, 18.646245 ], [ 93.867188, 18.646245 ], [ 93.867188, 18.812718 ], [ 93.691406, 18.812718 ], [ 93.691406, 19.145168 ], [ 93.515625, 19.145168 ], [ 93.515625, 19.476950 ], [ 93.691406, 19.476950 ], [ 93.691406, 19.808054 ], [ 92.988281, 19.808054 ], [ 92.988281, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.138470 ], [ 92.636719, 20.138470 ], [ 92.636719, 20.303418 ], [ 92.460938, 20.303418 ], [ 92.460938, 20.468189 ], [ 92.285156, 20.468189 ], [ 92.285156, 21.289374 ], [ 92.636719, 21.289374 ], [ 92.636719, 22.105999 ], [ 92.988281, 22.105999 ], [ 92.988281, 22.268764 ], [ 93.164062, 22.268764 ], [ 93.164062, 22.431340 ], [ 92.988281, 22.431340 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.755921 ], [ 93.164062, 22.917923 ], [ 93.339844, 22.917923 ], [ 93.339844, 24.046464 ], [ 93.515625, 24.046464 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.206890 ], [ 94.394531, 24.206890 ], [ 94.394531, 24.527135 ], [ 94.570312, 24.527135 ], [ 94.570312, 25.165173 ], [ 94.746094, 25.165173 ], [ 94.746094, 25.482951 ], [ 94.921875, 25.482951 ], [ 94.921875, 25.799891 ], [ 95.097656, 25.799891 ], [ 95.097656, 26.588527 ], [ 95.449219, 26.588527 ], [ 95.449219, 26.745610 ], [ 95.800781, 26.745610 ], [ 95.800781, 26.902477 ], [ 96.152344, 26.902477 ], [ 96.152344, 27.059126 ], [ 96.503906, 27.059126 ], [ 96.503906, 27.215556 ], [ 96.679688, 27.215556 ], [ 96.679688, 27.059126 ], [ 97.207031, 27.059126 ], [ 97.207031, 27.371767 ], [ 97.031250, 27.371767 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.683528 ], [ 97.382812, 28.304381 ], [ 97.910156, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.304688, 22.105999 ], [ 102.480469, 22.105999 ], [ 102.480469, 21.779905 ], [ 102.656250, 21.779905 ], [ 102.656250, 21.616579 ], [ 102.832031, 21.616579 ], [ 102.832031, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.961440 ], [ 103.183594, 20.961440 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.414062, 20.468189 ], [ 104.589844, 20.468189 ], [ 104.589844, 19.973349 ], [ 104.765625, 19.973349 ], [ 104.765625, 19.808054 ], [ 104.589844, 19.808054 ], [ 104.589844, 19.642588 ], [ 104.238281, 19.642588 ], [ 104.238281, 19.476950 ], [ 104.062500, 19.476950 ], [ 104.062500, 19.311143 ], [ 103.886719, 19.311143 ], [ 103.886719, 19.145168 ], [ 104.238281, 19.145168 ], [ 104.238281, 18.979026 ], [ 104.589844, 18.979026 ], [ 104.589844, 18.812718 ], [ 104.941406, 18.812718 ], [ 104.941406, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.479609 ], [ 105.292969, 18.479609 ], [ 105.292969, 18.145852 ], [ 105.468750, 18.145852 ], [ 105.468750, 17.978733 ], [ 105.644531, 17.978733 ], [ 105.644531, 17.811456 ], [ 105.820312, 17.811456 ], [ 105.820312, 17.476432 ], [ 105.996094, 17.476432 ], [ 105.996094, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.972741 ], [ 106.347656, 16.972741 ], [ 106.347656, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.467695 ], [ 106.699219, 16.467695 ], [ 106.699219, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 16.130262 ], [ 107.050781, 16.130262 ], [ 107.050781, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.792254 ], [ 107.402344, 15.792254 ], [ 107.402344, 15.453680 ], [ 107.578125, 15.453680 ], [ 107.578125, 14.774883 ], [ 107.402344, 14.774883 ], [ 107.402344, 14.264383 ], [ 107.050781, 14.264383 ], [ 107.050781, 14.434680 ], [ 106.699219, 14.434680 ], [ 106.699219, 14.604847 ], [ 106.523438, 14.604847 ], [ 106.523438, 14.434680 ], [ 106.347656, 14.434680 ], [ 106.347656, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 13.923404 ], [ 105.644531, 13.923404 ], [ 105.644531, 14.093957 ], [ 105.292969, 14.093957 ], [ 105.292969, 14.434680 ], [ 105.468750, 14.434680 ], [ 105.468750, 15.114553 ], [ 105.644531, 15.114553 ], [ 105.644531, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 15.792254 ], [ 105.292969, 15.792254 ], [ 105.292969, 15.961329 ], [ 105.117188, 15.961329 ], [ 105.117188, 16.130262 ], [ 104.941406, 16.130262 ], [ 104.941406, 16.299051 ], [ 104.765625, 16.299051 ], [ 104.765625, 17.476432 ], [ 104.589844, 17.476432 ], [ 104.589844, 17.644022 ], [ 104.414062, 17.644022 ], [ 104.414062, 17.811456 ], [ 104.238281, 17.811456 ], [ 104.238281, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.145852 ], [ 103.886719, 18.145852 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 103.183594, 18.145852 ], [ 103.007812, 18.145852 ], [ 103.007812, 17.978733 ], [ 101.777344, 17.978733 ], [ 101.777344, 17.811456 ], [ 101.601562, 17.811456 ], [ 101.601562, 17.644022 ], [ 101.250000, 17.644022 ], [ 101.250000, 17.476432 ], [ 101.074219, 17.476432 ], [ 101.074219, 18.979026 ], [ 101.250000, 18.979026 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.476950 ], [ 100.546875, 20.138470 ], [ 100.371094, 20.138470 ], [ 100.371094, 20.303418 ], [ 100.195312, 20.303418 ], [ 100.195312, 20.632784 ], [ 100.371094, 20.632784 ], [ 100.371094, 20.797201 ], [ 100.546875, 20.797201 ], [ 100.546875, 20.961440 ], [ 100.722656, 20.961440 ], [ 100.722656, 21.125498 ], [ 101.074219, 21.125498 ], [ 101.074219, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 21.125498 ], [ 101.777344, 21.125498 ], [ 101.777344, 21.616579 ], [ 101.601562, 21.616579 ], [ 101.601562, 22.268764 ], [ 101.953125, 22.268764 ], [ 101.953125, 22.431340 ], [ 102.128906, 22.431340 ], [ 102.128906, 22.268764 ], [ 102.304688, 22.268764 ], [ 102.304688, 22.105999 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.431340 ], [ 102.128906, 22.268764 ], [ 102.304688, 22.268764 ], [ 102.304688, 22.105999 ], [ 102.480469, 22.105999 ], [ 102.480469, 21.779905 ], [ 102.656250, 21.779905 ], [ 102.656250, 21.616579 ], [ 102.832031, 21.616579 ], [ 102.832031, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.961440 ], [ 103.183594, 20.961440 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.414062, 20.468189 ], [ 104.589844, 20.468189 ], [ 104.589844, 19.973349 ], [ 104.765625, 19.973349 ], [ 104.765625, 19.808054 ], [ 104.589844, 19.808054 ], [ 104.589844, 19.642588 ], [ 104.238281, 19.642588 ], [ 104.238281, 19.476950 ], [ 104.062500, 19.476950 ], [ 104.062500, 19.311143 ], [ 103.886719, 19.311143 ], [ 103.886719, 19.145168 ], [ 104.238281, 19.145168 ], [ 104.238281, 18.979026 ], [ 104.589844, 18.979026 ], [ 104.589844, 18.812718 ], [ 104.941406, 18.812718 ], [ 104.941406, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.479609 ], [ 105.292969, 18.479609 ], [ 105.292969, 18.145852 ], [ 105.468750, 18.145852 ], [ 105.468750, 17.978733 ], [ 105.644531, 17.978733 ], [ 105.644531, 17.811456 ], [ 105.820312, 17.811456 ], [ 105.820312, 17.476432 ], [ 105.996094, 17.476432 ], [ 105.996094, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.972741 ], [ 106.347656, 16.972741 ], [ 106.347656, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.467695 ], [ 106.699219, 16.467695 ], [ 106.699219, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 16.130262 ], [ 107.050781, 16.130262 ], [ 107.050781, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.792254 ], [ 107.402344, 15.792254 ], [ 107.402344, 15.453680 ], [ 107.578125, 15.453680 ], [ 107.578125, 14.774883 ], [ 107.402344, 14.774883 ], [ 107.402344, 14.264383 ], [ 107.050781, 14.264383 ], [ 107.050781, 14.434680 ], [ 106.699219, 14.434680 ], [ 106.699219, 14.604847 ], [ 106.523438, 14.604847 ], [ 106.523438, 14.434680 ], [ 106.347656, 14.434680 ], [ 106.347656, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 13.923404 ], [ 105.644531, 13.923404 ], [ 105.644531, 14.093957 ], [ 105.292969, 14.093957 ], [ 105.292969, 14.434680 ], [ 105.468750, 14.434680 ], [ 105.468750, 15.114553 ], [ 105.644531, 15.114553 ], [ 105.644531, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 15.792254 ], [ 105.292969, 15.792254 ], [ 105.292969, 15.961329 ], [ 105.117188, 15.961329 ], [ 105.117188, 16.130262 ], [ 104.941406, 16.130262 ], [ 104.941406, 16.299051 ], [ 104.765625, 16.299051 ], [ 104.765625, 17.476432 ], [ 104.589844, 17.476432 ], [ 104.589844, 17.644022 ], [ 104.414062, 17.644022 ], [ 104.414062, 17.811456 ], [ 104.238281, 17.811456 ], [ 104.238281, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.145852 ], [ 103.886719, 18.145852 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 103.183594, 18.145852 ], [ 103.007812, 18.145852 ], [ 103.007812, 17.978733 ], [ 101.777344, 17.978733 ], [ 101.777344, 17.811456 ], [ 101.601562, 17.811456 ], [ 101.601562, 17.644022 ], [ 101.250000, 17.644022 ], [ 101.250000, 17.476432 ], [ 101.074219, 17.476432 ], [ 101.074219, 18.979026 ], [ 101.250000, 18.979026 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.476950 ], [ 100.546875, 20.138470 ], [ 100.371094, 20.138470 ], [ 100.371094, 20.303418 ], [ 100.195312, 20.303418 ], [ 100.195312, 20.632784 ], [ 100.371094, 20.632784 ], [ 100.371094, 20.797201 ], [ 100.546875, 20.797201 ], [ 100.546875, 20.961440 ], [ 100.722656, 20.961440 ], [ 100.722656, 21.125498 ], [ 101.074219, 21.125498 ], [ 101.074219, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 21.125498 ], [ 101.777344, 21.125498 ], [ 101.777344, 21.616579 ], [ 101.601562, 21.616579 ], [ 101.601562, 22.268764 ], [ 101.953125, 22.268764 ], [ 101.953125, 22.431340 ], [ 102.128906, 22.431340 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 19.476950 ], [ 101.250000, 19.476950 ], [ 101.250000, 18.979026 ], [ 101.074219, 18.979026 ], [ 101.074219, 17.476432 ], [ 101.250000, 17.476432 ], [ 101.250000, 17.644022 ], [ 101.601562, 17.644022 ], [ 101.601562, 17.811456 ], [ 101.777344, 17.811456 ], [ 101.777344, 17.978733 ], [ 103.007812, 17.978733 ], [ 103.007812, 18.145852 ], [ 103.183594, 18.145852 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 103.886719, 18.145852 ], [ 104.062500, 18.145852 ], [ 104.062500, 17.978733 ], [ 104.238281, 17.978733 ], [ 104.238281, 17.811456 ], [ 104.414062, 17.811456 ], [ 104.414062, 17.644022 ], [ 104.589844, 17.644022 ], [ 104.589844, 17.476432 ], [ 104.765625, 17.476432 ], [ 104.765625, 16.299051 ], [ 104.941406, 16.299051 ], [ 104.941406, 16.130262 ], [ 105.117188, 16.130262 ], [ 105.117188, 15.961329 ], [ 105.292969, 15.961329 ], [ 105.292969, 15.792254 ], [ 105.468750, 15.792254 ], [ 105.468750, 15.623037 ], [ 105.644531, 15.623037 ], [ 105.644531, 15.114553 ], [ 105.468750, 15.114553 ], [ 105.468750, 14.434680 ], [ 105.292969, 14.434680 ], [ 105.292969, 14.264383 ], [ 104.589844, 14.264383 ], [ 104.589844, 14.434680 ], [ 103.710938, 14.434680 ], [ 103.710938, 14.264383 ], [ 103.007812, 14.264383 ], [ 103.007812, 14.093957 ], [ 102.832031, 14.093957 ], [ 102.832031, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 13.581921 ], [ 102.480469, 13.581921 ], [ 102.480469, 13.410994 ], [ 102.304688, 13.410994 ], [ 102.304688, 13.068777 ], [ 102.480469, 13.068777 ], [ 102.480469, 12.382928 ], [ 102.656250, 12.382928 ], [ 102.656250, 12.211180 ], [ 102.304688, 12.211180 ], [ 102.304688, 12.382928 ], [ 101.953125, 12.382928 ], [ 101.953125, 12.554564 ], [ 101.601562, 12.554564 ], [ 101.601562, 12.726084 ], [ 101.425781, 12.726084 ], [ 101.425781, 12.554564 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.410994 ], [ 100.019531, 13.410994 ], [ 100.019531, 12.039321 ], [ 99.843750, 12.039321 ], [ 99.843750, 11.523088 ], [ 99.667969, 11.523088 ], [ 99.667969, 11.005904 ], [ 99.492188, 11.005904 ], [ 99.492188, 10.487812 ], [ 99.316406, 10.487812 ], [ 99.316406, 10.141932 ], [ 99.140625, 10.141932 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 99.843750, 8.928487 ], [ 100.019531, 8.928487 ], [ 100.019531, 8.407168 ], [ 100.195312, 8.407168 ], [ 100.195312, 7.885147 ], [ 100.371094, 7.885147 ], [ 100.371094, 7.536764 ], [ 100.546875, 7.536764 ], [ 100.546875, 7.188101 ], [ 100.722656, 7.188101 ], [ 100.722656, 7.013668 ], [ 100.898438, 7.013668 ], [ 100.898438, 6.839170 ], [ 101.250000, 6.839170 ], [ 101.250000, 6.664608 ], [ 101.601562, 6.664608 ], [ 101.601562, 6.489983 ], [ 101.777344, 6.489983 ], [ 101.777344, 6.315299 ], [ 101.953125, 6.315299 ], [ 101.953125, 6.140555 ], [ 102.128906, 6.140555 ], [ 102.128906, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 5.790897 ], [ 101.601562, 5.790897 ], [ 101.601562, 5.615986 ], [ 101.074219, 5.615986 ], [ 101.074219, 6.140555 ], [ 100.898438, 6.140555 ], [ 100.898438, 6.315299 ], [ 100.546875, 6.315299 ], [ 100.546875, 6.489983 ], [ 99.843750, 6.489983 ], [ 99.843750, 6.664608 ], [ 99.667969, 6.664608 ], [ 99.667969, 7.013668 ], [ 99.492188, 7.013668 ], [ 99.492188, 7.362467 ], [ 99.316406, 7.362467 ], [ 99.316406, 7.536764 ], [ 99.140625, 7.536764 ], [ 99.140625, 7.710992 ], [ 98.964844, 7.710992 ], [ 98.964844, 7.885147 ], [ 98.789062, 7.885147 ], [ 98.789062, 8.059230 ], [ 98.613281, 8.059230 ], [ 98.613281, 8.233237 ], [ 98.437500, 8.233237 ], [ 98.437500, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 8.581021 ], [ 98.261719, 8.581021 ], [ 98.261719, 9.102097 ], [ 98.437500, 9.102097 ], [ 98.437500, 9.622414 ], [ 98.613281, 9.622414 ], [ 98.613281, 10.141932 ], [ 98.789062, 10.141932 ], [ 98.789062, 10.660608 ], [ 98.964844, 10.660608 ], [ 98.964844, 11.005904 ], [ 99.140625, 11.005904 ], [ 99.140625, 11.178402 ], [ 99.316406, 11.178402 ], [ 99.316406, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 11.695273 ], [ 99.667969, 11.695273 ], [ 99.667969, 11.867351 ], [ 99.492188, 11.867351 ], [ 99.492188, 12.211180 ], [ 99.316406, 12.211180 ], [ 99.316406, 12.554564 ], [ 99.140625, 12.554564 ], [ 99.140625, 13.752725 ], [ 98.964844, 13.752725 ], [ 98.964844, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.264383 ], [ 98.613281, 14.264383 ], [ 98.613281, 14.434680 ], [ 98.437500, 14.434680 ], [ 98.437500, 14.774883 ], [ 98.261719, 14.774883 ], [ 98.261719, 15.114553 ], [ 98.613281, 15.114553 ], [ 98.613281, 15.453680 ], [ 98.789062, 15.453680 ], [ 98.789062, 15.792254 ], [ 98.964844, 15.792254 ], [ 98.964844, 16.130262 ], [ 98.789062, 16.130262 ], [ 98.789062, 16.467695 ], [ 98.613281, 16.467695 ], [ 98.613281, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.804541 ], [ 98.261719, 16.804541 ], [ 98.261719, 17.140790 ], [ 98.085938, 17.140790 ], [ 98.085938, 17.476432 ], [ 97.910156, 17.476432 ], [ 97.910156, 17.644022 ], [ 97.734375, 17.644022 ], [ 97.734375, 17.978733 ], [ 97.558594, 17.978733 ], [ 97.558594, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 18.479609 ], [ 97.734375, 18.479609 ], [ 97.734375, 18.812718 ], [ 97.910156, 18.812718 ], [ 97.910156, 19.145168 ], [ 98.085938, 19.145168 ], [ 98.085938, 19.476950 ], [ 98.261719, 19.476950 ], [ 98.261719, 19.642588 ], [ 98.789062, 19.642588 ], [ 98.789062, 19.808054 ], [ 99.140625, 19.808054 ], [ 99.140625, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.138470 ], [ 99.843750, 20.138470 ], [ 99.843750, 20.303418 ], [ 100.371094, 20.303418 ], [ 100.371094, 20.138470 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.476950 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.371094, 20.303418 ], [ 100.371094, 20.138470 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.476950 ], [ 101.250000, 19.476950 ], [ 101.250000, 18.979026 ], [ 101.074219, 18.979026 ], [ 101.074219, 17.476432 ], [ 101.250000, 17.476432 ], [ 101.250000, 17.644022 ], [ 101.601562, 17.644022 ], [ 101.601562, 17.811456 ], [ 101.777344, 17.811456 ], [ 101.777344, 17.978733 ], [ 103.007812, 17.978733 ], [ 103.007812, 18.145852 ], [ 103.183594, 18.145852 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 103.886719, 18.145852 ], [ 104.062500, 18.145852 ], [ 104.062500, 17.978733 ], [ 104.238281, 17.978733 ], [ 104.238281, 17.811456 ], [ 104.414062, 17.811456 ], [ 104.414062, 17.644022 ], [ 104.589844, 17.644022 ], [ 104.589844, 17.476432 ], [ 104.765625, 17.476432 ], [ 104.765625, 16.299051 ], [ 104.941406, 16.299051 ], [ 104.941406, 16.130262 ], [ 105.117188, 16.130262 ], [ 105.117188, 15.961329 ], [ 105.292969, 15.961329 ], [ 105.292969, 15.792254 ], [ 105.468750, 15.792254 ], [ 105.468750, 15.623037 ], [ 105.644531, 15.623037 ], [ 105.644531, 15.114553 ], [ 105.468750, 15.114553 ], [ 105.468750, 14.434680 ], [ 105.292969, 14.434680 ], [ 105.292969, 14.264383 ], [ 104.589844, 14.264383 ], [ 104.589844, 14.434680 ], [ 103.710938, 14.434680 ], [ 103.710938, 14.264383 ], [ 103.007812, 14.264383 ], [ 103.007812, 14.093957 ], [ 102.832031, 14.093957 ], [ 102.832031, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 13.581921 ], [ 102.480469, 13.581921 ], [ 102.480469, 13.410994 ], [ 102.304688, 13.410994 ], [ 102.304688, 13.068777 ], [ 102.480469, 13.068777 ], [ 102.480469, 12.382928 ], [ 102.656250, 12.382928 ], [ 102.656250, 12.211180 ], [ 102.304688, 12.211180 ], [ 102.304688, 12.382928 ], [ 101.953125, 12.382928 ], [ 101.953125, 12.554564 ], [ 101.601562, 12.554564 ], [ 101.601562, 12.726084 ], [ 101.425781, 12.726084 ], [ 101.425781, 12.554564 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.410994 ], [ 100.019531, 13.410994 ], [ 100.019531, 12.039321 ], [ 99.843750, 12.039321 ], [ 99.843750, 11.523088 ], [ 99.667969, 11.523088 ], [ 99.667969, 11.005904 ], [ 99.492188, 11.005904 ], [ 99.492188, 10.487812 ], [ 99.316406, 10.487812 ], [ 99.316406, 10.141932 ], [ 99.140625, 10.141932 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 99.843750, 8.928487 ], [ 100.019531, 8.928487 ], [ 100.019531, 8.407168 ], [ 100.195312, 8.407168 ], [ 100.195312, 7.885147 ], [ 100.371094, 7.885147 ], [ 100.371094, 7.536764 ], [ 100.546875, 7.536764 ], [ 100.546875, 7.188101 ], [ 100.722656, 7.188101 ], [ 100.722656, 7.013668 ], [ 100.898438, 7.013668 ], [ 100.898438, 6.839170 ], [ 101.250000, 6.839170 ], [ 101.250000, 6.664608 ], [ 101.601562, 6.664608 ], [ 101.601562, 6.489983 ], [ 101.777344, 6.489983 ], [ 101.777344, 6.315299 ], [ 101.953125, 6.315299 ], [ 101.953125, 6.140555 ], [ 102.128906, 6.140555 ], [ 102.128906, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 5.790897 ], [ 101.601562, 5.790897 ], [ 101.601562, 5.615986 ], [ 101.074219, 5.615986 ], [ 101.074219, 6.140555 ], [ 100.898438, 6.140555 ], [ 100.898438, 6.315299 ], [ 100.546875, 6.315299 ], [ 100.546875, 6.489983 ], [ 99.843750, 6.489983 ], [ 99.843750, 6.664608 ], [ 99.667969, 6.664608 ], [ 99.667969, 7.013668 ], [ 99.492188, 7.013668 ], [ 99.492188, 7.362467 ], [ 99.316406, 7.362467 ], [ 99.316406, 7.536764 ], [ 99.140625, 7.536764 ], [ 99.140625, 7.710992 ], [ 98.964844, 7.710992 ], [ 98.964844, 7.885147 ], [ 98.789062, 7.885147 ], [ 98.789062, 8.059230 ], [ 98.613281, 8.059230 ], [ 98.613281, 8.233237 ], [ 98.437500, 8.233237 ], [ 98.437500, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 8.581021 ], [ 98.261719, 8.581021 ], [ 98.261719, 9.102097 ], [ 98.437500, 9.102097 ], [ 98.437500, 9.622414 ], [ 98.613281, 9.622414 ], [ 98.613281, 10.141932 ], [ 98.789062, 10.141932 ], [ 98.789062, 10.660608 ], [ 98.964844, 10.660608 ], [ 98.964844, 11.005904 ], [ 99.140625, 11.005904 ], [ 99.140625, 11.178402 ], [ 99.316406, 11.178402 ], [ 99.316406, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 11.695273 ], [ 99.667969, 11.695273 ], [ 99.667969, 11.867351 ], [ 99.492188, 11.867351 ], [ 99.492188, 12.211180 ], [ 99.316406, 12.211180 ], [ 99.316406, 12.554564 ], [ 99.140625, 12.554564 ], [ 99.140625, 13.752725 ], [ 98.964844, 13.752725 ], [ 98.964844, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.264383 ], [ 98.613281, 14.264383 ], [ 98.613281, 14.434680 ], [ 98.437500, 14.434680 ], [ 98.437500, 14.774883 ], [ 98.261719, 14.774883 ], [ 98.261719, 15.114553 ], [ 98.613281, 15.114553 ], [ 98.613281, 15.453680 ], [ 98.789062, 15.453680 ], [ 98.789062, 15.792254 ], [ 98.964844, 15.792254 ], [ 98.964844, 16.130262 ], [ 98.789062, 16.130262 ], [ 98.789062, 16.467695 ], [ 98.613281, 16.467695 ], [ 98.613281, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.804541 ], [ 98.261719, 16.804541 ], [ 98.261719, 17.140790 ], [ 98.085938, 17.140790 ], [ 98.085938, 17.476432 ], [ 97.910156, 17.476432 ], [ 97.910156, 17.644022 ], [ 97.734375, 17.644022 ], [ 97.734375, 17.978733 ], [ 97.558594, 17.978733 ], [ 97.558594, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 18.479609 ], [ 97.734375, 18.479609 ], [ 97.734375, 18.812718 ], [ 97.910156, 18.812718 ], [ 97.910156, 19.145168 ], [ 98.085938, 19.145168 ], [ 98.085938, 19.476950 ], [ 98.261719, 19.476950 ], [ 98.261719, 19.642588 ], [ 98.789062, 19.642588 ], [ 98.789062, 19.808054 ], [ 99.140625, 19.808054 ], [ 99.140625, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.138470 ], [ 99.843750, 20.138470 ], [ 99.843750, 20.303418 ], [ 100.371094, 20.303418 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.644531, 22.917923 ], [ 106.171875, 22.917923 ], [ 106.171875, 22.755921 ], [ 106.699219, 22.755921 ], [ 106.699219, 22.431340 ], [ 106.523438, 22.431340 ], [ 106.523438, 22.105999 ], [ 106.699219, 22.105999 ], [ 106.699219, 21.943046 ], [ 106.875000, 21.943046 ], [ 106.875000, 21.779905 ], [ 107.402344, 21.779905 ], [ 107.402344, 21.616579 ], [ 108.105469, 21.616579 ], [ 108.105469, 21.453069 ], [ 107.929688, 21.453069 ], [ 107.929688, 21.289374 ], [ 107.578125, 21.289374 ], [ 107.578125, 21.125498 ], [ 107.402344, 21.125498 ], [ 107.402344, 20.961440 ], [ 107.226562, 20.961440 ], [ 107.226562, 20.797201 ], [ 106.875000, 20.797201 ], [ 106.875000, 20.632784 ], [ 106.699219, 20.632784 ], [ 106.699219, 20.468189 ], [ 106.523438, 20.468189 ], [ 106.523438, 20.303418 ], [ 106.347656, 20.303418 ], [ 106.347656, 20.138470 ], [ 106.171875, 20.138470 ], [ 106.171875, 19.973349 ], [ 105.996094, 19.973349 ], [ 105.996094, 19.808054 ], [ 105.820312, 19.808054 ], [ 105.820312, 19.311143 ], [ 105.644531, 19.311143 ], [ 105.644531, 18.812718 ], [ 105.820312, 18.812718 ], [ 105.820312, 18.479609 ], [ 105.996094, 18.479609 ], [ 105.996094, 18.312811 ], [ 106.171875, 18.312811 ], [ 106.171875, 17.978733 ], [ 106.347656, 17.978733 ], [ 106.347656, 17.811456 ], [ 106.523438, 17.811456 ], [ 106.523438, 17.644022 ], [ 106.699219, 17.644022 ], [ 106.699219, 17.308688 ], [ 106.875000, 17.308688 ], [ 106.875000, 17.140790 ], [ 107.050781, 17.140790 ], [ 107.050781, 16.972741 ], [ 107.226562, 16.972741 ], [ 107.226562, 16.636192 ], [ 107.402344, 16.636192 ], [ 107.402344, 16.467695 ], [ 107.753906, 16.467695 ], [ 107.753906, 16.299051 ], [ 108.105469, 16.299051 ], [ 108.105469, 16.130262 ], [ 108.281250, 16.130262 ], [ 108.281250, 15.961329 ], [ 108.457031, 15.961329 ], [ 108.457031, 15.623037 ], [ 108.632812, 15.623037 ], [ 108.632812, 15.284185 ], [ 108.808594, 15.284185 ], [ 108.808594, 14.944785 ], [ 108.984375, 14.944785 ], [ 108.984375, 14.264383 ], [ 109.160156, 14.264383 ], [ 109.160156, 13.581921 ], [ 109.335938, 13.581921 ], [ 109.335938, 12.554564 ], [ 109.160156, 12.554564 ], [ 109.160156, 11.523088 ], [ 108.984375, 11.523088 ], [ 108.984375, 11.350797 ], [ 108.632812, 11.350797 ], [ 108.632812, 11.178402 ], [ 108.457031, 11.178402 ], [ 108.457031, 11.005904 ], [ 108.281250, 11.005904 ], [ 108.281250, 10.833306 ], [ 107.929688, 10.833306 ], [ 107.929688, 10.660608 ], [ 107.753906, 10.660608 ], [ 107.753906, 10.487812 ], [ 107.402344, 10.487812 ], [ 107.402344, 10.314919 ], [ 107.226562, 10.314919 ], [ 107.226562, 10.141932 ], [ 107.050781, 10.141932 ], [ 107.050781, 9.968851 ], [ 106.875000, 9.968851 ], [ 106.875000, 9.795678 ], [ 106.699219, 9.795678 ], [ 106.699219, 9.622414 ], [ 106.523438, 9.622414 ], [ 106.523438, 9.449062 ], [ 106.347656, 9.449062 ], [ 106.347656, 9.275622 ], [ 105.996094, 9.275622 ], [ 105.996094, 9.102097 ], [ 105.820312, 9.102097 ], [ 105.820312, 8.928487 ], [ 105.644531, 8.928487 ], [ 105.644531, 8.754795 ], [ 105.292969, 8.754795 ], [ 105.292969, 8.581021 ], [ 105.117188, 8.581021 ], [ 105.117188, 8.754795 ], [ 104.941406, 8.754795 ], [ 104.941406, 9.102097 ], [ 104.765625, 9.102097 ], [ 104.765625, 9.449062 ], [ 104.941406, 9.449062 ], [ 104.941406, 9.795678 ], [ 105.117188, 9.795678 ], [ 105.117188, 9.968851 ], [ 104.941406, 9.968851 ], [ 104.941406, 10.141932 ], [ 104.589844, 10.141932 ], [ 104.589844, 10.314919 ], [ 104.414062, 10.314919 ], [ 104.414062, 10.487812 ], [ 104.765625, 10.487812 ], [ 104.765625, 10.660608 ], [ 105.117188, 10.660608 ], [ 105.117188, 10.833306 ], [ 105.820312, 10.833306 ], [ 105.820312, 11.005904 ], [ 105.996094, 11.005904 ], [ 105.996094, 11.350797 ], [ 105.820312, 11.350797 ], [ 105.820312, 11.523088 ], [ 106.171875, 11.523088 ], [ 106.171875, 11.695273 ], [ 106.523438, 11.695273 ], [ 106.523438, 11.867351 ], [ 106.875000, 11.867351 ], [ 106.875000, 12.039321 ], [ 107.226562, 12.039321 ], [ 107.226562, 12.211180 ], [ 107.578125, 12.211180 ], [ 107.578125, 13.923404 ], [ 107.402344, 13.923404 ], [ 107.402344, 14.774883 ], [ 107.578125, 14.774883 ], [ 107.578125, 15.453680 ], [ 107.402344, 15.453680 ], [ 107.402344, 15.792254 ], [ 107.226562, 15.792254 ], [ 107.226562, 15.961329 ], [ 107.050781, 15.961329 ], [ 107.050781, 16.130262 ], [ 106.875000, 16.130262 ], [ 106.875000, 16.299051 ], [ 106.699219, 16.299051 ], [ 106.699219, 16.467695 ], [ 106.523438, 16.467695 ], [ 106.523438, 16.636192 ], [ 106.347656, 16.636192 ], [ 106.347656, 16.972741 ], [ 106.171875, 16.972741 ], [ 106.171875, 17.308688 ], [ 105.996094, 17.308688 ], [ 105.996094, 17.476432 ], [ 105.820312, 17.476432 ], [ 105.820312, 17.811456 ], [ 105.644531, 17.811456 ], [ 105.644531, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 18.145852 ], [ 105.292969, 18.145852 ], [ 105.292969, 18.479609 ], [ 105.117188, 18.479609 ], [ 105.117188, 18.646245 ], [ 104.941406, 18.646245 ], [ 104.941406, 18.812718 ], [ 104.589844, 18.812718 ], [ 104.589844, 18.979026 ], [ 104.238281, 18.979026 ], [ 104.238281, 19.145168 ], [ 103.886719, 19.145168 ], [ 103.886719, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 19.476950 ], [ 104.238281, 19.476950 ], [ 104.238281, 19.642588 ], [ 104.589844, 19.642588 ], [ 104.589844, 19.808054 ], [ 104.765625, 19.808054 ], [ 104.765625, 19.973349 ], [ 104.589844, 19.973349 ], [ 104.589844, 20.468189 ], [ 104.414062, 20.468189 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 103.183594, 20.961440 ], [ 103.007812, 20.961440 ], [ 103.007812, 21.289374 ], [ 102.832031, 21.289374 ], [ 102.832031, 21.616579 ], [ 102.656250, 21.616579 ], [ 102.656250, 21.779905 ], [ 102.480469, 21.779905 ], [ 102.480469, 22.105999 ], [ 102.304688, 22.105999 ], [ 102.304688, 22.268764 ], [ 102.128906, 22.268764 ], [ 102.128906, 22.431340 ], [ 102.304688, 22.431340 ], [ 102.304688, 22.593726 ], [ 102.656250, 22.593726 ], [ 102.656250, 22.755921 ], [ 104.589844, 22.755921 ], [ 104.589844, 22.917923 ], [ 104.765625, 22.917923 ], [ 104.765625, 23.079732 ], [ 105.117188, 23.079732 ], [ 105.117188, 23.241346 ], [ 105.468750, 23.241346 ], [ 105.468750, 23.079732 ], [ 105.644531, 23.079732 ], [ 105.644531, 22.917923 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 23.241346 ], [ 105.468750, 23.079732 ], [ 105.644531, 23.079732 ], [ 105.644531, 22.917923 ], [ 106.171875, 22.917923 ], [ 106.171875, 22.755921 ], [ 106.699219, 22.755921 ], [ 106.699219, 22.431340 ], [ 106.523438, 22.431340 ], [ 106.523438, 22.105999 ], [ 106.699219, 22.105999 ], [ 106.699219, 21.943046 ], [ 106.875000, 21.943046 ], [ 106.875000, 21.779905 ], [ 107.402344, 21.779905 ], [ 107.402344, 21.616579 ], [ 108.105469, 21.616579 ], [ 108.105469, 21.453069 ], [ 107.929688, 21.453069 ], [ 107.929688, 21.289374 ], [ 107.578125, 21.289374 ], [ 107.578125, 21.125498 ], [ 107.402344, 21.125498 ], [ 107.402344, 20.961440 ], [ 107.226562, 20.961440 ], [ 107.226562, 20.797201 ], [ 106.875000, 20.797201 ], [ 106.875000, 20.632784 ], [ 106.699219, 20.632784 ], [ 106.699219, 20.468189 ], [ 106.523438, 20.468189 ], [ 106.523438, 20.303418 ], [ 106.347656, 20.303418 ], [ 106.347656, 20.138470 ], [ 106.171875, 20.138470 ], [ 106.171875, 19.973349 ], [ 105.996094, 19.973349 ], [ 105.996094, 19.808054 ], [ 105.820312, 19.808054 ], [ 105.820312, 19.311143 ], [ 105.644531, 19.311143 ], [ 105.644531, 18.812718 ], [ 105.820312, 18.812718 ], [ 105.820312, 18.479609 ], [ 105.996094, 18.479609 ], [ 105.996094, 18.312811 ], [ 106.171875, 18.312811 ], [ 106.171875, 17.978733 ], [ 106.347656, 17.978733 ], [ 106.347656, 17.811456 ], [ 106.523438, 17.811456 ], [ 106.523438, 17.644022 ], [ 106.699219, 17.644022 ], [ 106.699219, 17.308688 ], [ 106.875000, 17.308688 ], [ 106.875000, 17.140790 ], [ 107.050781, 17.140790 ], [ 107.050781, 16.972741 ], [ 107.226562, 16.972741 ], [ 107.226562, 16.636192 ], [ 107.402344, 16.636192 ], [ 107.402344, 16.467695 ], [ 107.753906, 16.467695 ], [ 107.753906, 16.299051 ], [ 108.105469, 16.299051 ], [ 108.105469, 16.130262 ], [ 108.281250, 16.130262 ], [ 108.281250, 15.961329 ], [ 108.457031, 15.961329 ], [ 108.457031, 15.623037 ], [ 108.632812, 15.623037 ], [ 108.632812, 15.284185 ], [ 108.808594, 15.284185 ], [ 108.808594, 14.944785 ], [ 108.984375, 14.944785 ], [ 108.984375, 14.264383 ], [ 109.160156, 14.264383 ], [ 109.160156, 13.581921 ], [ 109.335938, 13.581921 ], [ 109.335938, 12.554564 ], [ 109.160156, 12.554564 ], [ 109.160156, 11.523088 ], [ 108.984375, 11.523088 ], [ 108.984375, 11.350797 ], [ 108.632812, 11.350797 ], [ 108.632812, 11.178402 ], [ 108.457031, 11.178402 ], [ 108.457031, 11.005904 ], [ 108.281250, 11.005904 ], [ 108.281250, 10.833306 ], [ 107.929688, 10.833306 ], [ 107.929688, 10.660608 ], [ 107.753906, 10.660608 ], [ 107.753906, 10.487812 ], [ 107.402344, 10.487812 ], [ 107.402344, 10.314919 ], [ 107.226562, 10.314919 ], [ 107.226562, 10.141932 ], [ 107.050781, 10.141932 ], [ 107.050781, 9.968851 ], [ 106.875000, 9.968851 ], [ 106.875000, 9.795678 ], [ 106.699219, 9.795678 ], [ 106.699219, 9.622414 ], [ 106.523438, 9.622414 ], [ 106.523438, 9.449062 ], [ 106.347656, 9.449062 ], [ 106.347656, 9.275622 ], [ 105.996094, 9.275622 ], [ 105.996094, 9.102097 ], [ 105.820312, 9.102097 ], [ 105.820312, 8.928487 ], [ 105.644531, 8.928487 ], [ 105.644531, 8.754795 ], [ 105.292969, 8.754795 ], [ 105.292969, 8.581021 ], [ 105.117188, 8.581021 ], [ 105.117188, 8.754795 ], [ 104.941406, 8.754795 ], [ 104.941406, 9.102097 ], [ 104.765625, 9.102097 ], [ 104.765625, 9.449062 ], [ 104.941406, 9.449062 ], [ 104.941406, 9.795678 ], [ 105.117188, 9.795678 ], [ 105.117188, 9.968851 ], [ 104.941406, 9.968851 ], [ 104.941406, 10.141932 ], [ 104.589844, 10.141932 ], [ 104.589844, 10.314919 ], [ 104.414062, 10.314919 ], [ 104.414062, 10.487812 ], [ 104.765625, 10.487812 ], [ 104.765625, 10.660608 ], [ 105.117188, 10.660608 ], [ 105.117188, 10.833306 ], [ 105.820312, 10.833306 ], [ 105.820312, 11.005904 ], [ 105.996094, 11.005904 ], [ 105.996094, 11.350797 ], [ 105.820312, 11.350797 ], [ 105.820312, 11.523088 ], [ 106.171875, 11.523088 ], [ 106.171875, 11.695273 ], [ 106.523438, 11.695273 ], [ 106.523438, 11.867351 ], [ 106.875000, 11.867351 ], [ 106.875000, 12.039321 ], [ 107.226562, 12.039321 ], [ 107.226562, 12.211180 ], [ 107.578125, 12.211180 ], [ 107.578125, 13.923404 ], [ 107.402344, 13.923404 ], [ 107.402344, 14.774883 ], [ 107.578125, 14.774883 ], [ 107.578125, 15.453680 ], [ 107.402344, 15.453680 ], [ 107.402344, 15.792254 ], [ 107.226562, 15.792254 ], [ 107.226562, 15.961329 ], [ 107.050781, 15.961329 ], [ 107.050781, 16.130262 ], [ 106.875000, 16.130262 ], [ 106.875000, 16.299051 ], [ 106.699219, 16.299051 ], [ 106.699219, 16.467695 ], [ 106.523438, 16.467695 ], [ 106.523438, 16.636192 ], [ 106.347656, 16.636192 ], [ 106.347656, 16.972741 ], [ 106.171875, 16.972741 ], [ 106.171875, 17.308688 ], [ 105.996094, 17.308688 ], [ 105.996094, 17.476432 ], [ 105.820312, 17.476432 ], [ 105.820312, 17.811456 ], [ 105.644531, 17.811456 ], [ 105.644531, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 18.145852 ], [ 105.292969, 18.145852 ], [ 105.292969, 18.479609 ], [ 105.117188, 18.479609 ], [ 105.117188, 18.646245 ], [ 104.941406, 18.646245 ], [ 104.941406, 18.812718 ], [ 104.589844, 18.812718 ], [ 104.589844, 18.979026 ], [ 104.238281, 18.979026 ], [ 104.238281, 19.145168 ], [ 103.886719, 19.145168 ], [ 103.886719, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 19.476950 ], [ 104.238281, 19.476950 ], [ 104.238281, 19.642588 ], [ 104.589844, 19.642588 ], [ 104.589844, 19.808054 ], [ 104.765625, 19.808054 ], [ 104.765625, 19.973349 ], [ 104.589844, 19.973349 ], [ 104.589844, 20.468189 ], [ 104.414062, 20.468189 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 103.183594, 20.961440 ], [ 103.007812, 20.961440 ], [ 103.007812, 21.289374 ], [ 102.832031, 21.289374 ], [ 102.832031, 21.616579 ], [ 102.656250, 21.616579 ], [ 102.656250, 21.779905 ], [ 102.480469, 21.779905 ], [ 102.480469, 22.105999 ], [ 102.304688, 22.105999 ], [ 102.304688, 22.268764 ], [ 102.128906, 22.268764 ], [ 102.128906, 22.431340 ], [ 102.304688, 22.431340 ], [ 102.304688, 22.593726 ], [ 102.656250, 22.593726 ], [ 102.656250, 22.755921 ], [ 104.589844, 22.755921 ], [ 104.589844, 22.917923 ], [ 104.765625, 22.917923 ], [ 104.765625, 23.079732 ], [ 105.117188, 23.079732 ], [ 105.117188, 23.241346 ], [ 105.468750, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.050781, 14.264383 ], [ 107.402344, 14.264383 ], [ 107.402344, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.211180 ], [ 107.226562, 12.211180 ], [ 107.226562, 12.039321 ], [ 106.875000, 12.039321 ], [ 106.875000, 11.867351 ], [ 106.523438, 11.867351 ], [ 106.523438, 11.695273 ], [ 106.171875, 11.695273 ], [ 106.171875, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.350797 ], [ 105.996094, 11.350797 ], [ 105.996094, 11.005904 ], [ 105.820312, 11.005904 ], [ 105.820312, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 10.660608 ], [ 104.765625, 10.660608 ], [ 104.765625, 10.487812 ], [ 103.886719, 10.487812 ], [ 103.886719, 10.660608 ], [ 103.359375, 10.660608 ], [ 103.359375, 10.833306 ], [ 103.183594, 10.833306 ], [ 103.183594, 11.005904 ], [ 103.007812, 11.005904 ], [ 103.007812, 11.350797 ], [ 102.832031, 11.350797 ], [ 102.832031, 11.867351 ], [ 102.656250, 11.867351 ], [ 102.656250, 12.382928 ], [ 102.480469, 12.382928 ], [ 102.480469, 13.068777 ], [ 102.304688, 13.068777 ], [ 102.304688, 13.410994 ], [ 102.480469, 13.410994 ], [ 102.480469, 13.581921 ], [ 102.656250, 13.581921 ], [ 102.656250, 13.923404 ], [ 102.832031, 13.923404 ], [ 102.832031, 14.093957 ], [ 103.007812, 14.093957 ], [ 103.007812, 14.264383 ], [ 103.710938, 14.264383 ], [ 103.710938, 14.434680 ], [ 104.589844, 14.434680 ], [ 104.589844, 14.264383 ], [ 105.292969, 14.264383 ], [ 105.292969, 14.093957 ], [ 105.644531, 14.093957 ], [ 105.644531, 13.923404 ], [ 106.171875, 13.923404 ], [ 106.171875, 14.264383 ], [ 106.347656, 14.264383 ], [ 106.347656, 14.434680 ], [ 106.523438, 14.434680 ], [ 106.523438, 14.604847 ], [ 106.699219, 14.604847 ], [ 106.699219, 14.434680 ], [ 107.050781, 14.434680 ], [ 107.050781, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.699219, 14.604847 ], [ 106.699219, 14.434680 ], [ 107.050781, 14.434680 ], [ 107.050781, 14.264383 ], [ 107.402344, 14.264383 ], [ 107.402344, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.211180 ], [ 107.226562, 12.211180 ], [ 107.226562, 12.039321 ], [ 106.875000, 12.039321 ], [ 106.875000, 11.867351 ], [ 106.523438, 11.867351 ], [ 106.523438, 11.695273 ], [ 106.171875, 11.695273 ], [ 106.171875, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.350797 ], [ 105.996094, 11.350797 ], [ 105.996094, 11.005904 ], [ 105.820312, 11.005904 ], [ 105.820312, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 10.660608 ], [ 104.765625, 10.660608 ], [ 104.765625, 10.487812 ], [ 103.886719, 10.487812 ], [ 103.886719, 10.660608 ], [ 103.359375, 10.660608 ], [ 103.359375, 10.833306 ], [ 103.183594, 10.833306 ], [ 103.183594, 11.005904 ], [ 103.007812, 11.005904 ], [ 103.007812, 11.350797 ], [ 102.832031, 11.350797 ], [ 102.832031, 11.867351 ], [ 102.656250, 11.867351 ], [ 102.656250, 12.382928 ], [ 102.480469, 12.382928 ], [ 102.480469, 13.068777 ], [ 102.304688, 13.068777 ], [ 102.304688, 13.410994 ], [ 102.480469, 13.410994 ], [ 102.480469, 13.581921 ], [ 102.656250, 13.581921 ], [ 102.656250, 13.923404 ], [ 102.832031, 13.923404 ], [ 102.832031, 14.093957 ], [ 103.007812, 14.093957 ], [ 103.007812, 14.264383 ], [ 103.710938, 14.264383 ], [ 103.710938, 14.434680 ], [ 104.589844, 14.434680 ], [ 104.589844, 14.264383 ], [ 105.292969, 14.264383 ], [ 105.292969, 14.093957 ], [ 105.644531, 14.093957 ], [ 105.644531, 13.923404 ], [ 106.171875, 13.923404 ], [ 106.171875, 14.264383 ], [ 106.347656, 14.264383 ], [ 106.347656, 14.434680 ], [ 106.523438, 14.434680 ], [ 106.523438, 14.604847 ], [ 106.699219, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.421875, 6.489983 ], [ 117.597656, 6.489983 ], [ 117.597656, 6.140555 ], [ 117.773438, 6.140555 ], [ 117.773438, 5.965754 ], [ 117.949219, 5.965754 ], [ 117.949219, 5.790897 ], [ 118.476562, 5.790897 ], [ 118.476562, 5.615986 ], [ 118.828125, 5.615986 ], [ 118.828125, 5.441022 ], [ 119.179688, 5.441022 ], [ 119.179688, 5.090944 ], [ 119.003906, 5.090944 ], [ 119.003906, 4.915833 ], [ 118.476562, 4.915833 ], [ 118.476562, 4.740675 ], [ 118.652344, 4.740675 ], [ 118.652344, 4.390229 ], [ 118.300781, 4.390229 ], [ 118.300781, 4.214943 ], [ 117.421875, 4.214943 ], [ 117.421875, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.839844, 4.039618 ], [ 115.664062, 4.039618 ], [ 115.664062, 3.337954 ], [ 115.488281, 3.337954 ], [ 115.488281, 2.986927 ], [ 115.312500, 2.986927 ], [ 115.312500, 2.811371 ], [ 115.136719, 2.811371 ], [ 115.136719, 2.460181 ], [ 114.960938, 2.460181 ], [ 114.960938, 2.108899 ], [ 114.785156, 2.108899 ], [ 114.785156, 1.581830 ], [ 114.609375, 1.581830 ], [ 114.609375, 1.406109 ], [ 114.257812, 1.406109 ], [ 114.257812, 1.230374 ], [ 113.378906, 1.230374 ], [ 113.378906, 1.406109 ], [ 113.027344, 1.406109 ], [ 113.027344, 1.581830 ], [ 112.675781, 1.581830 ], [ 112.675781, 1.406109 ], [ 112.324219, 1.406109 ], [ 112.324219, 1.230374 ], [ 112.148438, 1.230374 ], [ 112.148438, 1.054628 ], [ 111.972656, 1.054628 ], [ 111.972656, 0.878872 ], [ 111.269531, 0.878872 ], [ 111.269531, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.878872 ], [ 110.742188, 0.878872 ], [ 110.742188, 0.703107 ], [ 110.390625, 0.703107 ], [ 110.390625, 0.878872 ], [ 110.214844, 0.878872 ], [ 110.214844, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 1.230374 ], [ 109.863281, 1.230374 ], [ 109.863281, 1.581830 ], [ 109.687500, 1.581830 ], [ 109.687500, 1.757537 ], [ 110.039062, 1.757537 ], [ 110.039062, 1.581830 ], [ 110.742188, 1.581830 ], [ 110.742188, 1.757537 ], [ 111.093750, 1.757537 ], [ 111.093750, 2.108899 ], [ 111.269531, 2.108899 ], [ 111.269531, 2.460181 ], [ 111.445312, 2.460181 ], [ 111.445312, 2.635789 ], [ 111.796875, 2.635789 ], [ 111.796875, 2.811371 ], [ 112.148438, 2.811371 ], [ 112.148438, 2.986927 ], [ 112.851562, 2.986927 ], [ 112.851562, 3.162456 ], [ 113.203125, 3.162456 ], [ 113.203125, 3.337954 ], [ 113.378906, 3.337954 ], [ 113.378906, 3.513421 ], [ 113.554688, 3.513421 ], [ 113.554688, 3.688855 ], [ 113.730469, 3.688855 ], [ 113.730469, 3.864255 ], [ 113.906250, 3.864255 ], [ 113.906250, 4.214943 ], [ 114.082031, 4.214943 ], [ 114.082031, 4.390229 ], [ 114.433594, 4.390229 ], [ 114.433594, 4.039618 ], [ 114.609375, 4.039618 ], [ 114.609375, 4.214943 ], [ 114.785156, 4.214943 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.312500, 4.565474 ], [ 115.488281, 4.565474 ], [ 115.488281, 5.441022 ], [ 115.664062, 5.441022 ], [ 115.664062, 5.615986 ], [ 115.839844, 5.615986 ], [ 115.839844, 5.790897 ], [ 116.015625, 5.790897 ], [ 116.015625, 5.965754 ], [ 116.191406, 5.965754 ], [ 116.191406, 6.140555 ], [ 116.367188, 6.140555 ], [ 116.367188, 6.489983 ], [ 116.542969, 6.489983 ], [ 116.542969, 6.664608 ], [ 116.718750, 6.664608 ], [ 116.718750, 6.839170 ], [ 117.246094, 6.839170 ], [ 117.246094, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 6.489983 ] ] ], [ [ [ 102.480469, 5.790897 ], [ 102.656250, 5.790897 ], [ 102.656250, 5.615986 ], [ 102.832031, 5.615986 ], [ 102.832031, 5.441022 ], [ 103.007812, 5.441022 ], [ 103.007812, 5.266008 ], [ 103.183594, 5.266008 ], [ 103.183594, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 2.986927 ], [ 103.535156, 2.986927 ], [ 103.535156, 2.635789 ], [ 103.710938, 2.635789 ], [ 103.710938, 2.460181 ], [ 103.886719, 2.460181 ], [ 103.886719, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.757537 ], [ 104.238281, 1.757537 ], [ 104.238281, 1.230374 ], [ 103.359375, 1.230374 ], [ 103.359375, 1.406109 ], [ 103.183594, 1.406109 ], [ 103.183594, 1.581830 ], [ 102.832031, 1.581830 ], [ 102.832031, 1.757537 ], [ 102.656250, 1.757537 ], [ 102.656250, 1.933227 ], [ 102.480469, 1.933227 ], [ 102.480469, 2.108899 ], [ 102.128906, 2.108899 ], [ 102.128906, 2.284551 ], [ 101.953125, 2.284551 ], [ 101.953125, 2.460181 ], [ 101.777344, 2.460181 ], [ 101.777344, 2.635789 ], [ 101.425781, 2.635789 ], [ 101.425781, 2.986927 ], [ 101.250000, 2.986927 ], [ 101.250000, 3.337954 ], [ 101.074219, 3.337954 ], [ 101.074219, 3.513421 ], [ 100.898438, 3.513421 ], [ 100.898438, 3.688855 ], [ 100.722656, 3.688855 ], [ 100.722656, 4.214943 ], [ 100.546875, 4.214943 ], [ 100.546875, 4.740675 ], [ 100.371094, 4.740675 ], [ 100.371094, 5.090944 ], [ 100.195312, 5.090944 ], [ 100.195312, 5.615986 ], [ 100.371094, 5.615986 ], [ 100.371094, 5.965754 ], [ 100.195312, 5.965754 ], [ 100.195312, 6.315299 ], [ 100.019531, 6.315299 ], [ 100.019531, 6.489983 ], [ 100.546875, 6.489983 ], [ 100.546875, 6.315299 ], [ 100.898438, 6.315299 ], [ 100.898438, 6.140555 ], [ 101.074219, 6.140555 ], [ 101.074219, 5.615986 ], [ 101.601562, 5.615986 ], [ 101.601562, 5.790897 ], [ 101.953125, 5.790897 ], [ 101.953125, 5.965754 ], [ 102.128906, 5.965754 ], [ 102.128906, 6.140555 ], [ 102.304688, 6.140555 ], [ 102.304688, 5.965754 ], [ 102.480469, 5.965754 ], [ 102.480469, 5.790897 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.246094, 6.839170 ], [ 117.246094, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 6.489983 ], [ 117.597656, 6.489983 ], [ 117.597656, 6.140555 ], [ 117.773438, 6.140555 ], [ 117.773438, 5.965754 ], [ 117.949219, 5.965754 ], [ 117.949219, 5.790897 ], [ 118.476562, 5.790897 ], [ 118.476562, 5.615986 ], [ 118.828125, 5.615986 ], [ 118.828125, 5.441022 ], [ 119.179688, 5.441022 ], [ 119.179688, 5.090944 ], [ 119.003906, 5.090944 ], [ 119.003906, 4.915833 ], [ 118.476562, 4.915833 ], [ 118.476562, 4.740675 ], [ 118.652344, 4.740675 ], [ 118.652344, 4.390229 ], [ 118.300781, 4.390229 ], [ 118.300781, 4.214943 ], [ 117.421875, 4.214943 ], [ 117.421875, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.839844, 4.039618 ], [ 115.664062, 4.039618 ], [ 115.664062, 3.337954 ], [ 115.488281, 3.337954 ], [ 115.488281, 2.986927 ], [ 115.312500, 2.986927 ], [ 115.312500, 2.811371 ], [ 115.136719, 2.811371 ], [ 115.136719, 2.460181 ], [ 114.960938, 2.460181 ], [ 114.960938, 2.108899 ], [ 114.785156, 2.108899 ], [ 114.785156, 1.581830 ], [ 114.609375, 1.581830 ], [ 114.609375, 1.406109 ], [ 114.257812, 1.406109 ], [ 114.257812, 1.230374 ], [ 113.378906, 1.230374 ], [ 113.378906, 1.406109 ], [ 113.027344, 1.406109 ], [ 113.027344, 1.581830 ], [ 112.675781, 1.581830 ], [ 112.675781, 1.406109 ], [ 112.324219, 1.406109 ], [ 112.324219, 1.230374 ], [ 112.148438, 1.230374 ], [ 112.148438, 1.054628 ], [ 111.972656, 1.054628 ], [ 111.972656, 0.878872 ], [ 111.269531, 0.878872 ], [ 111.269531, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.878872 ], [ 110.742188, 0.878872 ], [ 110.742188, 0.703107 ], [ 110.390625, 0.703107 ], [ 110.390625, 0.878872 ], [ 110.214844, 0.878872 ], [ 110.214844, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 1.230374 ], [ 109.863281, 1.230374 ], [ 109.863281, 1.581830 ], [ 109.687500, 1.581830 ], [ 109.687500, 1.757537 ], [ 110.039062, 1.757537 ], [ 110.039062, 1.581830 ], [ 110.742188, 1.581830 ], [ 110.742188, 1.757537 ], [ 111.093750, 1.757537 ], [ 111.093750, 2.108899 ], [ 111.269531, 2.108899 ], [ 111.269531, 2.460181 ], [ 111.445312, 2.460181 ], [ 111.445312, 2.635789 ], [ 111.796875, 2.635789 ], [ 111.796875, 2.811371 ], [ 112.148438, 2.811371 ], [ 112.148438, 2.986927 ], [ 112.851562, 2.986927 ], [ 112.851562, 3.162456 ], [ 113.203125, 3.162456 ], [ 113.203125, 3.337954 ], [ 113.378906, 3.337954 ], [ 113.378906, 3.513421 ], [ 113.554688, 3.513421 ], [ 113.554688, 3.688855 ], [ 113.730469, 3.688855 ], [ 113.730469, 3.864255 ], [ 113.906250, 3.864255 ], [ 113.906250, 4.214943 ], [ 114.082031, 4.214943 ], [ 114.082031, 4.390229 ], [ 114.433594, 4.390229 ], [ 114.433594, 4.039618 ], [ 114.609375, 4.039618 ], [ 114.609375, 4.214943 ], [ 114.785156, 4.214943 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.312500, 4.565474 ], [ 115.488281, 4.565474 ], [ 115.488281, 5.441022 ], [ 115.664062, 5.441022 ], [ 115.664062, 5.615986 ], [ 115.839844, 5.615986 ], [ 115.839844, 5.790897 ], [ 116.015625, 5.790897 ], [ 116.015625, 5.965754 ], [ 116.191406, 5.965754 ], [ 116.191406, 6.140555 ], [ 116.367188, 6.140555 ], [ 116.367188, 6.489983 ], [ 116.542969, 6.489983 ], [ 116.542969, 6.664608 ], [ 116.718750, 6.664608 ], [ 116.718750, 6.839170 ], [ 117.246094, 6.839170 ] ] ], [ [ [ 100.546875, 6.489983 ], [ 100.546875, 6.315299 ], [ 100.898438, 6.315299 ], [ 100.898438, 6.140555 ], [ 101.074219, 6.140555 ], [ 101.074219, 5.615986 ], [ 101.601562, 5.615986 ], [ 101.601562, 5.790897 ], [ 101.953125, 5.790897 ], [ 101.953125, 5.965754 ], [ 102.128906, 5.965754 ], [ 102.128906, 6.140555 ], [ 102.304688, 6.140555 ], [ 102.304688, 5.965754 ], [ 102.480469, 5.965754 ], [ 102.480469, 5.790897 ], [ 102.656250, 5.790897 ], [ 102.656250, 5.615986 ], [ 102.832031, 5.615986 ], [ 102.832031, 5.441022 ], [ 103.007812, 5.441022 ], [ 103.007812, 5.266008 ], [ 103.183594, 5.266008 ], [ 103.183594, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 2.986927 ], [ 103.535156, 2.986927 ], [ 103.535156, 2.635789 ], [ 103.710938, 2.635789 ], [ 103.710938, 2.460181 ], [ 103.886719, 2.460181 ], [ 103.886719, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.757537 ], [ 104.238281, 1.757537 ], [ 104.238281, 1.230374 ], [ 103.359375, 1.230374 ], [ 103.359375, 1.406109 ], [ 103.183594, 1.406109 ], [ 103.183594, 1.581830 ], [ 102.832031, 1.581830 ], [ 102.832031, 1.757537 ], [ 102.656250, 1.757537 ], [ 102.656250, 1.933227 ], [ 102.480469, 1.933227 ], [ 102.480469, 2.108899 ], [ 102.128906, 2.108899 ], [ 102.128906, 2.284551 ], [ 101.953125, 2.284551 ], [ 101.953125, 2.460181 ], [ 101.777344, 2.460181 ], [ 101.777344, 2.635789 ], [ 101.425781, 2.635789 ], [ 101.425781, 2.986927 ], [ 101.250000, 2.986927 ], [ 101.250000, 3.337954 ], [ 101.074219, 3.337954 ], [ 101.074219, 3.513421 ], [ 100.898438, 3.513421 ], [ 100.898438, 3.688855 ], [ 100.722656, 3.688855 ], [ 100.722656, 4.214943 ], [ 100.546875, 4.214943 ], [ 100.546875, 4.740675 ], [ 100.371094, 4.740675 ], [ 100.371094, 5.090944 ], [ 100.195312, 5.090944 ], [ 100.195312, 5.615986 ], [ 100.371094, 5.615986 ], [ 100.371094, 5.965754 ], [ 100.195312, 5.965754 ], [ 100.195312, 6.315299 ], [ 100.019531, 6.315299 ], [ 100.019531, 6.489983 ], [ 100.546875, 6.489983 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.992188, 24.686952 ], [ 121.816406, 24.686952 ], [ 121.816406, 24.046464 ], [ 121.640625, 24.046464 ], [ 121.640625, 23.725012 ], [ 121.464844, 23.725012 ], [ 121.464844, 23.241346 ], [ 121.289062, 23.241346 ], [ 121.289062, 22.917923 ], [ 121.113281, 22.917923 ], [ 121.113281, 22.431340 ], [ 120.937500, 22.431340 ], [ 120.937500, 22.105999 ], [ 120.761719, 22.105999 ], [ 120.761719, 21.943046 ], [ 120.585938, 21.943046 ], [ 120.585938, 22.268764 ], [ 120.410156, 22.268764 ], [ 120.410156, 22.593726 ], [ 120.234375, 22.593726 ], [ 120.234375, 23.079732 ], [ 120.058594, 23.079732 ], [ 120.058594, 23.563987 ], [ 120.234375, 23.563987 ], [ 120.234375, 23.885838 ], [ 120.410156, 23.885838 ], [ 120.410156, 24.046464 ], [ 120.585938, 24.046464 ], [ 120.585938, 24.367114 ], [ 120.761719, 24.367114 ], [ 120.761719, 24.527135 ], [ 120.937500, 24.527135 ], [ 120.937500, 24.686952 ], [ 121.113281, 24.686952 ], [ 121.113281, 25.005973 ], [ 121.289062, 25.005973 ], [ 121.289062, 25.165173 ], [ 121.816406, 25.165173 ], [ 121.816406, 25.005973 ], [ 121.992188, 25.005973 ], [ 121.992188, 24.686952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.816406, 25.165173 ], [ 121.816406, 25.005973 ], [ 121.992188, 25.005973 ], [ 121.992188, 24.686952 ], [ 121.816406, 24.686952 ], [ 121.816406, 24.046464 ], [ 121.640625, 24.046464 ], [ 121.640625, 23.725012 ], [ 121.464844, 23.725012 ], [ 121.464844, 23.241346 ], [ 121.289062, 23.241346 ], [ 121.289062, 22.917923 ], [ 121.113281, 22.917923 ], [ 121.113281, 22.431340 ], [ 120.937500, 22.431340 ], [ 120.937500, 22.105999 ], [ 120.761719, 22.105999 ], [ 120.761719, 21.943046 ], [ 120.585938, 21.943046 ], [ 120.585938, 22.268764 ], [ 120.410156, 22.268764 ], [ 120.410156, 22.593726 ], [ 120.234375, 22.593726 ], [ 120.234375, 23.079732 ], [ 120.058594, 23.079732 ], [ 120.058594, 23.563987 ], [ 120.234375, 23.563987 ], [ 120.234375, 23.885838 ], [ 120.410156, 23.885838 ], [ 120.410156, 24.046464 ], [ 120.585938, 24.046464 ], [ 120.585938, 24.367114 ], [ 120.761719, 24.367114 ], [ 120.761719, 24.527135 ], [ 120.937500, 24.527135 ], [ 120.937500, 24.686952 ], [ 121.113281, 24.686952 ], [ 121.113281, 25.005973 ], [ 121.289062, 25.005973 ], [ 121.289062, 25.165173 ], [ 121.816406, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.792969, 38.959409 ], [ 127.968750, 38.959409 ], [ 127.968750, 38.822591 ], [ 128.144531, 38.822591 ], [ 128.144531, 38.548165 ], [ 128.320312, 38.548165 ], [ 128.320312, 38.410558 ], [ 128.144531, 38.410558 ], [ 128.144531, 38.272689 ], [ 127.089844, 38.272689 ], [ 127.089844, 38.134557 ], [ 126.914062, 38.134557 ], [ 126.914062, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.210938, 37.718590 ], [ 126.035156, 37.718590 ], [ 126.035156, 37.857507 ], [ 125.507812, 37.857507 ], [ 125.507812, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.980469, 37.857507 ], [ 124.980469, 37.996163 ], [ 124.628906, 37.996163 ], [ 124.628906, 38.134557 ], [ 124.804688, 38.134557 ], [ 124.804688, 38.410558 ], [ 124.980469, 38.410558 ], [ 124.980469, 38.548165 ], [ 125.156250, 38.548165 ], [ 125.156250, 39.095963 ], [ 125.332031, 39.095963 ], [ 125.332031, 39.504041 ], [ 124.980469, 39.504041 ], [ 124.980469, 39.639538 ], [ 124.628906, 39.639538 ], [ 124.628906, 39.774769 ], [ 124.277344, 39.774769 ], [ 124.277344, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 40.044438 ], [ 124.628906, 40.044438 ], [ 124.628906, 40.178873 ], [ 124.804688, 40.178873 ], [ 124.804688, 40.313043 ], [ 124.980469, 40.313043 ], [ 124.980469, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.580585 ], [ 125.332031, 40.580585 ], [ 125.332031, 40.713956 ], [ 125.683594, 40.713956 ], [ 125.683594, 40.847060 ], [ 125.859375, 40.847060 ], [ 125.859375, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 41.112469 ], [ 126.386719, 41.112469 ], [ 126.386719, 41.376809 ], [ 126.562500, 41.376809 ], [ 126.562500, 41.508577 ], [ 126.738281, 41.508577 ], [ 126.738281, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.640078 ], [ 129.726562, 41.640078 ], [ 129.726562, 40.847060 ], [ 129.550781, 40.847060 ], [ 129.550781, 40.713956 ], [ 129.199219, 40.713956 ], [ 129.199219, 40.580585 ], [ 129.023438, 40.580585 ], [ 129.023438, 40.313043 ], [ 128.847656, 40.313043 ], [ 128.847656, 40.178873 ], [ 128.496094, 40.178873 ], [ 128.496094, 40.044438 ], [ 127.968750, 40.044438 ], [ 127.968750, 39.909736 ], [ 127.792969, 39.909736 ], [ 127.792969, 39.774769 ], [ 127.617188, 39.774769 ], [ 127.617188, 39.504041 ], [ 127.441406, 39.504041 ], [ 127.441406, 39.095963 ], [ 127.792969, 39.095963 ], [ 127.792969, 38.959409 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.726562, 41.640078 ], [ 129.726562, 40.847060 ], [ 129.550781, 40.847060 ], [ 129.550781, 40.713956 ], [ 129.199219, 40.713956 ], [ 129.199219, 40.580585 ], [ 129.023438, 40.580585 ], [ 129.023438, 40.313043 ], [ 128.847656, 40.313043 ], [ 128.847656, 40.178873 ], [ 128.496094, 40.178873 ], [ 128.496094, 40.044438 ], [ 127.968750, 40.044438 ], [ 127.968750, 39.909736 ], [ 127.792969, 39.909736 ], [ 127.792969, 39.774769 ], [ 127.617188, 39.774769 ], [ 127.617188, 39.504041 ], [ 127.441406, 39.504041 ], [ 127.441406, 39.095963 ], [ 127.792969, 39.095963 ], [ 127.792969, 38.959409 ], [ 127.968750, 38.959409 ], [ 127.968750, 38.822591 ], [ 128.144531, 38.822591 ], [ 128.144531, 38.548165 ], [ 128.320312, 38.548165 ], [ 128.320312, 38.410558 ], [ 128.144531, 38.410558 ], [ 128.144531, 38.272689 ], [ 127.089844, 38.272689 ], [ 127.089844, 38.134557 ], [ 126.914062, 38.134557 ], [ 126.914062, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.210938, 37.718590 ], [ 126.035156, 37.718590 ], [ 126.035156, 37.857507 ], [ 125.507812, 37.857507 ], [ 125.507812, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.980469, 37.857507 ], [ 124.980469, 37.996163 ], [ 124.628906, 37.996163 ], [ 124.628906, 38.134557 ], [ 124.804688, 38.134557 ], [ 124.804688, 38.410558 ], [ 124.980469, 38.410558 ], [ 124.980469, 38.548165 ], [ 125.156250, 38.548165 ], [ 125.156250, 39.095963 ], [ 125.332031, 39.095963 ], [ 125.332031, 39.504041 ], [ 124.980469, 39.504041 ], [ 124.980469, 39.639538 ], [ 124.628906, 39.639538 ], [ 124.628906, 39.774769 ], [ 124.277344, 39.774769 ], [ 124.277344, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 40.044438 ], [ 124.628906, 40.044438 ], [ 124.628906, 40.178873 ], [ 124.804688, 40.178873 ], [ 124.804688, 40.313043 ], [ 124.980469, 40.313043 ], [ 124.980469, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.580585 ], [ 125.332031, 40.580585 ], [ 125.332031, 40.713956 ], [ 125.683594, 40.713956 ], [ 125.683594, 40.847060 ], [ 125.859375, 40.847060 ], [ 125.859375, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 41.112469 ], [ 126.386719, 41.112469 ], [ 126.386719, 41.376809 ], [ 126.562500, 41.376809 ], [ 126.562500, 41.508577 ], [ 126.738281, 41.508577 ], [ 126.738281, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.640078 ], [ 129.726562, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.671875, 37.996163 ], [ 128.847656, 37.996163 ], [ 128.847656, 37.718590 ], [ 129.023438, 37.718590 ], [ 129.023438, 37.439974 ], [ 129.199219, 37.439974 ], [ 129.199219, 37.020098 ], [ 129.375000, 37.020098 ], [ 129.375000, 36.173357 ], [ 129.550781, 36.173357 ], [ 129.550781, 35.460670 ], [ 129.375000, 35.460670 ], [ 129.375000, 35.317366 ], [ 129.199219, 35.317366 ], [ 129.199219, 35.029996 ], [ 128.671875, 35.029996 ], [ 128.671875, 34.885931 ], [ 128.144531, 34.885931 ], [ 128.144531, 34.741612 ], [ 127.968750, 34.741612 ], [ 127.968750, 34.597042 ], [ 127.617188, 34.597042 ], [ 127.617188, 34.452218 ], [ 126.562500, 34.452218 ], [ 126.562500, 34.597042 ], [ 126.386719, 34.597042 ], [ 126.386719, 35.317366 ], [ 126.562500, 35.317366 ], [ 126.562500, 35.889050 ], [ 126.386719, 35.889050 ], [ 126.386719, 36.173357 ], [ 126.210938, 36.173357 ], [ 126.210938, 36.456636 ], [ 126.035156, 36.456636 ], [ 126.035156, 36.738884 ], [ 126.562500, 36.738884 ], [ 126.562500, 36.879621 ], [ 126.738281, 36.879621 ], [ 126.738281, 37.160317 ], [ 126.562500, 37.160317 ], [ 126.562500, 37.300275 ], [ 126.386719, 37.300275 ], [ 126.386719, 37.579413 ], [ 126.210938, 37.579413 ], [ 126.210938, 37.857507 ], [ 126.914062, 37.857507 ], [ 126.914062, 38.134557 ], [ 127.089844, 38.134557 ], [ 127.089844, 38.272689 ], [ 128.144531, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.496094, 38.410558 ], [ 128.496094, 38.134557 ], [ 128.671875, 38.134557 ], [ 128.671875, 37.996163 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.496094, 38.410558 ], [ 128.496094, 38.134557 ], [ 128.671875, 38.134557 ], [ 128.671875, 37.996163 ], [ 128.847656, 37.996163 ], [ 128.847656, 37.718590 ], [ 129.023438, 37.718590 ], [ 129.023438, 37.439974 ], [ 129.199219, 37.439974 ], [ 129.199219, 37.020098 ], [ 129.375000, 37.020098 ], [ 129.375000, 36.173357 ], [ 129.550781, 36.173357 ], [ 129.550781, 35.460670 ], [ 129.375000, 35.460670 ], [ 129.375000, 35.317366 ], [ 129.199219, 35.317366 ], [ 129.199219, 35.029996 ], [ 128.671875, 35.029996 ], [ 128.671875, 34.885931 ], [ 128.144531, 34.885931 ], [ 128.144531, 34.741612 ], [ 127.968750, 34.741612 ], [ 127.968750, 34.597042 ], [ 127.617188, 34.597042 ], [ 127.617188, 34.452218 ], [ 126.562500, 34.452218 ], [ 126.562500, 34.597042 ], [ 126.386719, 34.597042 ], [ 126.386719, 35.317366 ], [ 126.562500, 35.317366 ], [ 126.562500, 35.889050 ], [ 126.386719, 35.889050 ], [ 126.386719, 36.173357 ], [ 126.210938, 36.173357 ], [ 126.210938, 36.456636 ], [ 126.035156, 36.456636 ], [ 126.035156, 36.738884 ], [ 126.562500, 36.738884 ], [ 126.562500, 36.879621 ], [ 126.738281, 36.879621 ], [ 126.738281, 37.160317 ], [ 126.562500, 37.160317 ], [ 126.562500, 37.300275 ], [ 126.386719, 37.300275 ], [ 126.386719, 37.579413 ], [ 126.210938, 37.579413 ], [ 126.210938, 37.857507 ], [ 126.914062, 37.857507 ], [ 126.914062, 38.134557 ], [ 127.089844, 38.134557 ], [ 127.089844, 38.272689 ], [ 128.144531, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.496094, 38.410558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.386719, 8.059230 ], [ 126.562500, 8.059230 ], [ 126.562500, 6.839170 ], [ 126.386719, 6.839170 ], [ 126.386719, 6.489983 ], [ 126.035156, 6.489983 ], [ 126.035156, 7.013668 ], [ 125.859375, 7.013668 ], [ 125.859375, 7.188101 ], [ 125.683594, 7.188101 ], [ 125.683594, 7.013668 ], [ 125.507812, 7.013668 ], [ 125.507812, 6.839170 ], [ 125.332031, 6.839170 ], [ 125.332031, 6.489983 ], [ 125.507812, 6.489983 ], [ 125.507812, 6.140555 ], [ 125.683594, 6.140555 ], [ 125.683594, 5.790897 ], [ 125.507812, 5.790897 ], [ 125.507812, 5.615986 ], [ 124.980469, 5.615986 ], [ 124.980469, 5.790897 ], [ 124.628906, 5.790897 ], [ 124.628906, 5.965754 ], [ 124.277344, 5.965754 ], [ 124.277344, 6.315299 ], [ 124.101562, 6.315299 ], [ 124.101562, 6.664608 ], [ 123.925781, 6.664608 ], [ 123.925781, 6.839170 ], [ 124.101562, 6.839170 ], [ 124.101562, 7.188101 ], [ 124.277344, 7.188101 ], [ 124.277344, 7.362467 ], [ 124.101562, 7.362467 ], [ 124.101562, 7.536764 ], [ 123.750000, 7.536764 ], [ 123.750000, 7.710992 ], [ 123.398438, 7.710992 ], [ 123.398438, 7.362467 ], [ 122.695312, 7.362467 ], [ 122.695312, 7.188101 ], [ 122.519531, 7.188101 ], [ 122.519531, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 6.839170 ], [ 122.167969, 6.839170 ], [ 122.167969, 7.013668 ], [ 121.992188, 7.013668 ], [ 121.992188, 7.362467 ], [ 122.167969, 7.362467 ], [ 122.167969, 7.710992 ], [ 122.343750, 7.710992 ], [ 122.343750, 8.059230 ], [ 122.695312, 8.059230 ], [ 122.695312, 8.233237 ], [ 123.046875, 8.233237 ], [ 123.046875, 8.407168 ], [ 123.398438, 8.407168 ], [ 123.398438, 8.581021 ], [ 123.750000, 8.581021 ], [ 123.750000, 8.233237 ], [ 124.277344, 8.233237 ], [ 124.277344, 8.407168 ], [ 124.628906, 8.407168 ], [ 124.628906, 8.754795 ], [ 124.804688, 8.754795 ], [ 124.804688, 8.928487 ], [ 125.507812, 8.928487 ], [ 125.507812, 9.275622 ], [ 125.332031, 9.275622 ], [ 125.332031, 9.622414 ], [ 125.683594, 9.622414 ], [ 125.683594, 9.449062 ], [ 126.035156, 9.449062 ], [ 126.035156, 9.275622 ], [ 126.210938, 9.275622 ], [ 126.210938, 8.928487 ], [ 126.386719, 8.928487 ], [ 126.386719, 8.059230 ] ] ], [ [ [ 117.421875, 8.928487 ], [ 117.597656, 8.928487 ], [ 117.597656, 9.102097 ], [ 117.773438, 9.102097 ], [ 117.773438, 9.275622 ], [ 118.125000, 9.275622 ], [ 118.125000, 9.449062 ], [ 118.300781, 9.449062 ], [ 118.300781, 9.622414 ], [ 118.476562, 9.622414 ], [ 118.476562, 9.795678 ], [ 118.652344, 9.795678 ], [ 118.652344, 9.968851 ], [ 118.828125, 9.968851 ], [ 118.828125, 10.141932 ], [ 119.003906, 10.141932 ], [ 119.003906, 10.487812 ], [ 119.179688, 10.487812 ], [ 119.179688, 10.833306 ], [ 119.355469, 10.833306 ], [ 119.355469, 11.178402 ], [ 119.531250, 11.178402 ], [ 119.531250, 10.833306 ], [ 119.707031, 10.833306 ], [ 119.707031, 10.314919 ], [ 119.531250, 10.314919 ], [ 119.531250, 10.141932 ], [ 119.179688, 10.141932 ], [ 119.179688, 9.968851 ], [ 119.003906, 9.968851 ], [ 119.003906, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 9.622414 ], [ 118.652344, 9.622414 ], [ 118.652344, 9.275622 ], [ 118.476562, 9.275622 ], [ 118.476562, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 8.928487 ], [ 117.949219, 8.928487 ], [ 117.949219, 8.754795 ], [ 117.773438, 8.754795 ], [ 117.773438, 8.581021 ], [ 117.421875, 8.581021 ], [ 117.421875, 8.928487 ] ] ], [ [ [ 122.519531, 9.449062 ], [ 122.519531, 9.622414 ], [ 122.343750, 9.622414 ], [ 122.343750, 9.795678 ], [ 122.519531, 9.795678 ], [ 122.519531, 9.968851 ], [ 122.695312, 9.968851 ], [ 122.695312, 10.141932 ], [ 122.871094, 10.141932 ], [ 122.871094, 10.660608 ], [ 122.519531, 10.660608 ], [ 122.519531, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.523088 ], [ 121.816406, 11.523088 ], [ 121.816406, 11.695273 ], [ 122.167969, 11.695273 ], [ 122.167969, 11.523088 ], [ 123.046875, 11.523088 ], [ 123.046875, 11.005904 ], [ 122.871094, 11.005904 ], [ 122.871094, 10.833306 ], [ 123.398438, 10.833306 ], [ 123.398438, 11.005904 ], [ 123.574219, 11.005904 ], [ 123.574219, 10.660608 ], [ 123.398438, 10.660608 ], [ 123.398438, 10.314919 ], [ 123.574219, 10.314919 ], [ 123.574219, 10.487812 ], [ 123.750000, 10.487812 ], [ 123.750000, 10.833306 ], [ 123.925781, 10.833306 ], [ 123.925781, 11.005904 ], [ 124.101562, 11.005904 ], [ 124.101562, 10.660608 ], [ 123.925781, 10.660608 ], [ 123.925781, 10.141932 ], [ 123.750000, 10.141932 ], [ 123.750000, 9.968851 ], [ 123.574219, 9.968851 ], [ 123.574219, 9.795678 ], [ 123.398438, 9.795678 ], [ 123.398438, 9.449062 ], [ 123.222656, 9.449062 ], [ 123.222656, 9.102097 ], [ 122.871094, 9.102097 ], [ 122.871094, 9.275622 ], [ 122.695312, 9.275622 ], [ 122.695312, 9.449062 ], [ 122.519531, 9.449062 ] ] ], [ [ [ 125.156250, 12.382928 ], [ 125.332031, 12.382928 ], [ 125.332031, 12.211180 ], [ 125.507812, 12.211180 ], [ 125.507812, 11.867351 ], [ 125.683594, 11.867351 ], [ 125.683594, 11.178402 ], [ 125.859375, 11.178402 ], [ 125.859375, 11.005904 ], [ 125.507812, 11.005904 ], [ 125.507812, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 11.350797 ], [ 124.980469, 11.350797 ], [ 124.980469, 10.833306 ], [ 125.156250, 10.833306 ], [ 125.156250, 10.487812 ], [ 125.332031, 10.487812 ], [ 125.332031, 10.314919 ], [ 125.156250, 10.314919 ], [ 125.156250, 10.141932 ], [ 124.804688, 10.141932 ], [ 124.804688, 10.833306 ], [ 124.453125, 10.833306 ], [ 124.453125, 11.178402 ], [ 124.277344, 11.178402 ], [ 124.277344, 11.523088 ], [ 124.453125, 11.523088 ], [ 124.453125, 11.350797 ], [ 124.804688, 11.350797 ], [ 124.804688, 11.867351 ], [ 124.628906, 11.867351 ], [ 124.628906, 12.211180 ], [ 124.453125, 12.211180 ], [ 124.453125, 12.382928 ], [ 124.277344, 12.382928 ], [ 124.277344, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 12.382928 ] ] ], [ [ [ 121.113281, 13.239945 ], [ 121.289062, 13.239945 ], [ 121.289062, 13.068777 ], [ 121.464844, 13.068777 ], [ 121.464844, 12.554564 ], [ 121.289062, 12.554564 ], [ 121.289062, 12.211180 ], [ 121.113281, 12.211180 ], [ 121.113281, 12.382928 ], [ 120.937500, 12.382928 ], [ 120.937500, 12.554564 ], [ 120.761719, 12.554564 ], [ 120.761719, 12.897489 ], [ 120.585938, 12.897489 ], [ 120.585938, 13.239945 ], [ 120.410156, 13.239945 ], [ 120.410156, 13.410994 ], [ 121.113281, 13.410994 ], [ 121.113281, 13.239945 ] ] ], [ [ [ 121.816406, 14.264383 ], [ 122.871094, 14.264383 ], [ 122.871094, 14.093957 ], [ 123.222656, 14.093957 ], [ 123.222656, 13.923404 ], [ 123.574219, 13.923404 ], [ 123.574219, 13.752725 ], [ 123.925781, 13.752725 ], [ 123.925781, 13.068777 ], [ 124.101562, 13.068777 ], [ 124.101562, 12.554564 ], [ 123.925781, 12.554564 ], [ 123.925781, 12.726084 ], [ 123.574219, 12.726084 ], [ 123.574219, 12.897489 ], [ 123.222656, 12.897489 ], [ 123.222656, 13.068777 ], [ 123.046875, 13.068777 ], [ 123.046875, 13.410994 ], [ 122.695312, 13.410994 ], [ 122.695312, 13.239945 ], [ 122.519531, 13.239945 ], [ 122.519531, 13.410994 ], [ 122.167969, 13.410994 ], [ 122.167969, 13.581921 ], [ 121.992188, 13.581921 ], [ 121.992188, 13.752725 ], [ 121.640625, 13.752725 ], [ 121.640625, 13.581921 ], [ 120.937500, 13.581921 ], [ 120.937500, 13.752725 ], [ 120.585938, 13.752725 ], [ 120.585938, 14.093957 ], [ 120.761719, 14.093957 ], [ 120.761719, 14.434680 ], [ 120.937500, 14.434680 ], [ 120.937500, 14.604847 ], [ 120.585938, 14.604847 ], [ 120.585938, 14.434680 ], [ 120.410156, 14.434680 ], [ 120.410156, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.774883 ], [ 120.058594, 14.774883 ], [ 120.058594, 15.114553 ], [ 119.882812, 15.114553 ], [ 119.882812, 16.130262 ], [ 120.058594, 16.130262 ], [ 120.058594, 15.961329 ], [ 120.234375, 15.961329 ], [ 120.234375, 16.804541 ], [ 120.410156, 16.804541 ], [ 120.410156, 17.811456 ], [ 120.585938, 17.811456 ], [ 120.585938, 18.145852 ], [ 120.761719, 18.145852 ], [ 120.761719, 18.479609 ], [ 121.289062, 18.479609 ], [ 121.289062, 18.312811 ], [ 121.640625, 18.312811 ], [ 121.640625, 18.145852 ], [ 121.992188, 18.145852 ], [ 121.992188, 18.312811 ], [ 122.343750, 18.312811 ], [ 122.343750, 17.978733 ], [ 122.167969, 17.978733 ], [ 122.167969, 17.644022 ], [ 122.343750, 17.644022 ], [ 122.343750, 17.308688 ], [ 122.519531, 17.308688 ], [ 122.519531, 16.804541 ], [ 122.343750, 16.804541 ], [ 122.343750, 16.467695 ], [ 122.167969, 16.467695 ], [ 122.167969, 16.130262 ], [ 121.816406, 16.130262 ], [ 121.816406, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 15.453680 ], [ 121.464844, 15.453680 ], [ 121.464844, 14.774883 ], [ 121.640625, 14.774883 ], [ 121.640625, 14.434680 ], [ 121.816406, 14.434680 ], [ 121.816406, 14.264383 ] ] ], [ [ [ 117.421875, 8.407168 ], [ 117.246094, 8.407168 ], [ 117.246094, 8.581021 ], [ 117.421875, 8.581021 ], [ 117.421875, 8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.683594, 9.622414 ], [ 125.683594, 9.449062 ], [ 126.035156, 9.449062 ], [ 126.035156, 9.275622 ], [ 126.210938, 9.275622 ], [ 126.210938, 8.928487 ], [ 126.386719, 8.928487 ], [ 126.386719, 8.059230 ], [ 126.562500, 8.059230 ], [ 126.562500, 6.839170 ], [ 126.386719, 6.839170 ], [ 126.386719, 6.489983 ], [ 126.035156, 6.489983 ], [ 126.035156, 7.013668 ], [ 125.859375, 7.013668 ], [ 125.859375, 7.188101 ], [ 125.683594, 7.188101 ], [ 125.683594, 7.013668 ], [ 125.507812, 7.013668 ], [ 125.507812, 6.839170 ], [ 125.332031, 6.839170 ], [ 125.332031, 6.489983 ], [ 125.507812, 6.489983 ], [ 125.507812, 6.140555 ], [ 125.683594, 6.140555 ], [ 125.683594, 5.790897 ], [ 125.507812, 5.790897 ], [ 125.507812, 5.615986 ], [ 124.980469, 5.615986 ], [ 124.980469, 5.790897 ], [ 124.628906, 5.790897 ], [ 124.628906, 5.965754 ], [ 124.277344, 5.965754 ], [ 124.277344, 6.315299 ], [ 124.101562, 6.315299 ], [ 124.101562, 6.664608 ], [ 123.925781, 6.664608 ], [ 123.925781, 6.839170 ], [ 124.101562, 6.839170 ], [ 124.101562, 7.188101 ], [ 124.277344, 7.188101 ], [ 124.277344, 7.362467 ], [ 124.101562, 7.362467 ], [ 124.101562, 7.536764 ], [ 123.750000, 7.536764 ], [ 123.750000, 7.710992 ], [ 123.398438, 7.710992 ], [ 123.398438, 7.362467 ], [ 122.695312, 7.362467 ], [ 122.695312, 7.188101 ], [ 122.519531, 7.188101 ], [ 122.519531, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 6.839170 ], [ 122.167969, 6.839170 ], [ 122.167969, 7.013668 ], [ 121.992188, 7.013668 ], [ 121.992188, 7.362467 ], [ 122.167969, 7.362467 ], [ 122.167969, 7.710992 ], [ 122.343750, 7.710992 ], [ 122.343750, 8.059230 ], [ 122.695312, 8.059230 ], [ 122.695312, 8.233237 ], [ 123.046875, 8.233237 ], [ 123.046875, 8.407168 ], [ 123.398438, 8.407168 ], [ 123.398438, 8.581021 ], [ 123.750000, 8.581021 ], [ 123.750000, 8.233237 ], [ 124.277344, 8.233237 ], [ 124.277344, 8.407168 ], [ 124.628906, 8.407168 ], [ 124.628906, 8.754795 ], [ 124.804688, 8.754795 ], [ 124.804688, 8.928487 ], [ 125.507812, 8.928487 ], [ 125.507812, 9.275622 ], [ 125.332031, 9.275622 ], [ 125.332031, 9.622414 ], [ 125.683594, 9.622414 ] ] ], [ [ [ 117.421875, 8.581021 ], [ 117.421875, 8.407168 ], [ 117.246094, 8.407168 ], [ 117.246094, 8.581021 ], [ 117.421875, 8.581021 ] ] ], [ [ [ 119.531250, 10.833306 ], [ 119.707031, 10.833306 ], [ 119.707031, 10.314919 ], [ 119.531250, 10.314919 ], [ 119.531250, 10.141932 ], [ 119.179688, 10.141932 ], [ 119.179688, 9.968851 ], [ 119.003906, 9.968851 ], [ 119.003906, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 9.622414 ], [ 118.652344, 9.622414 ], [ 118.652344, 9.275622 ], [ 118.476562, 9.275622 ], [ 118.476562, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 8.928487 ], [ 117.949219, 8.928487 ], [ 117.949219, 8.754795 ], [ 117.773438, 8.754795 ], [ 117.773438, 8.581021 ], [ 117.421875, 8.581021 ], [ 117.421875, 8.928487 ], [ 117.597656, 8.928487 ], [ 117.597656, 9.102097 ], [ 117.773438, 9.102097 ], [ 117.773438, 9.275622 ], [ 118.125000, 9.275622 ], [ 118.125000, 9.449062 ], [ 118.300781, 9.449062 ], [ 118.300781, 9.622414 ], [ 118.476562, 9.622414 ], [ 118.476562, 9.795678 ], [ 118.652344, 9.795678 ], [ 118.652344, 9.968851 ], [ 118.828125, 9.968851 ], [ 118.828125, 10.141932 ], [ 119.003906, 10.141932 ], [ 119.003906, 10.487812 ], [ 119.179688, 10.487812 ], [ 119.179688, 10.833306 ], [ 119.355469, 10.833306 ], [ 119.355469, 11.178402 ], [ 119.531250, 11.178402 ], [ 119.531250, 10.833306 ] ] ], [ [ [ 122.167969, 11.695273 ], [ 122.167969, 11.523088 ], [ 123.046875, 11.523088 ], [ 123.046875, 11.005904 ], [ 122.871094, 11.005904 ], [ 122.871094, 10.833306 ], [ 123.398438, 10.833306 ], [ 123.398438, 11.005904 ], [ 123.574219, 11.005904 ], [ 123.574219, 10.660608 ], [ 123.398438, 10.660608 ], [ 123.398438, 10.314919 ], [ 123.574219, 10.314919 ], [ 123.574219, 10.487812 ], [ 123.750000, 10.487812 ], [ 123.750000, 10.833306 ], [ 123.925781, 10.833306 ], [ 123.925781, 11.005904 ], [ 124.101562, 11.005904 ], [ 124.101562, 10.660608 ], [ 123.925781, 10.660608 ], [ 123.925781, 10.141932 ], [ 123.750000, 10.141932 ], [ 123.750000, 9.968851 ], [ 123.574219, 9.968851 ], [ 123.574219, 9.795678 ], [ 123.398438, 9.795678 ], [ 123.398438, 9.449062 ], [ 123.222656, 9.449062 ], [ 123.222656, 9.102097 ], [ 122.871094, 9.102097 ], [ 122.871094, 9.275622 ], [ 122.695312, 9.275622 ], [ 122.695312, 9.449062 ], [ 122.519531, 9.449062 ], [ 122.519531, 9.622414 ], [ 122.343750, 9.622414 ], [ 122.343750, 9.795678 ], [ 122.519531, 9.795678 ], [ 122.519531, 9.968851 ], [ 122.695312, 9.968851 ], [ 122.695312, 10.141932 ], [ 122.871094, 10.141932 ], [ 122.871094, 10.660608 ], [ 122.519531, 10.660608 ], [ 122.519531, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.523088 ], [ 121.816406, 11.523088 ], [ 121.816406, 11.695273 ], [ 122.167969, 11.695273 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.156250, 12.382928 ], [ 125.332031, 12.382928 ], [ 125.332031, 12.211180 ], [ 125.507812, 12.211180 ], [ 125.507812, 11.867351 ], [ 125.683594, 11.867351 ], [ 125.683594, 11.178402 ], [ 125.859375, 11.178402 ], [ 125.859375, 11.005904 ], [ 125.507812, 11.005904 ], [ 125.507812, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 11.350797 ], [ 124.980469, 11.350797 ], [ 124.980469, 10.833306 ], [ 125.156250, 10.833306 ], [ 125.156250, 10.487812 ], [ 125.332031, 10.487812 ], [ 125.332031, 10.314919 ], [ 125.156250, 10.314919 ], [ 125.156250, 10.141932 ], [ 124.804688, 10.141932 ], [ 124.804688, 10.833306 ], [ 124.453125, 10.833306 ], [ 124.453125, 11.178402 ], [ 124.277344, 11.178402 ], [ 124.277344, 11.523088 ], [ 124.453125, 11.523088 ], [ 124.453125, 11.350797 ], [ 124.804688, 11.350797 ], [ 124.804688, 11.867351 ], [ 124.628906, 11.867351 ], [ 124.628906, 12.211180 ], [ 124.453125, 12.211180 ], [ 124.453125, 12.382928 ], [ 124.277344, 12.382928 ], [ 124.277344, 12.554564 ], [ 125.156250, 12.554564 ] ] ], [ [ [ 121.113281, 13.410994 ], [ 121.113281, 13.239945 ], [ 121.289062, 13.239945 ], [ 121.289062, 13.068777 ], [ 121.464844, 13.068777 ], [ 121.464844, 12.554564 ], [ 121.289062, 12.554564 ], [ 121.289062, 12.211180 ], [ 121.113281, 12.211180 ], [ 121.113281, 12.382928 ], [ 120.937500, 12.382928 ], [ 120.937500, 12.554564 ], [ 120.761719, 12.554564 ], [ 120.761719, 12.897489 ], [ 120.585938, 12.897489 ], [ 120.585938, 13.239945 ], [ 120.410156, 13.239945 ], [ 120.410156, 13.410994 ], [ 121.113281, 13.410994 ] ] ], [ [ [ 121.289062, 18.479609 ], [ 121.289062, 18.312811 ], [ 121.640625, 18.312811 ], [ 121.640625, 18.145852 ], [ 121.992188, 18.145852 ], [ 121.992188, 18.312811 ], [ 122.343750, 18.312811 ], [ 122.343750, 17.978733 ], [ 122.167969, 17.978733 ], [ 122.167969, 17.644022 ], [ 122.343750, 17.644022 ], [ 122.343750, 17.308688 ], [ 122.519531, 17.308688 ], [ 122.519531, 16.804541 ], [ 122.343750, 16.804541 ], [ 122.343750, 16.467695 ], [ 122.167969, 16.467695 ], [ 122.167969, 16.130262 ], [ 121.816406, 16.130262 ], [ 121.816406, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 15.453680 ], [ 121.464844, 15.453680 ], [ 121.464844, 14.774883 ], [ 121.640625, 14.774883 ], [ 121.640625, 14.434680 ], [ 121.816406, 14.434680 ], [ 121.816406, 14.264383 ], [ 122.871094, 14.264383 ], [ 122.871094, 14.093957 ], [ 123.222656, 14.093957 ], [ 123.222656, 13.923404 ], [ 123.574219, 13.923404 ], [ 123.574219, 13.752725 ], [ 123.925781, 13.752725 ], [ 123.925781, 13.068777 ], [ 124.101562, 13.068777 ], [ 124.101562, 12.554564 ], [ 123.925781, 12.554564 ], [ 123.925781, 12.726084 ], [ 123.574219, 12.726084 ], [ 123.574219, 12.897489 ], [ 123.222656, 12.897489 ], [ 123.222656, 13.068777 ], [ 123.046875, 13.068777 ], [ 123.046875, 13.410994 ], [ 122.695312, 13.410994 ], [ 122.695312, 13.239945 ], [ 122.519531, 13.239945 ], [ 122.519531, 13.410994 ], [ 122.167969, 13.410994 ], [ 122.167969, 13.581921 ], [ 121.992188, 13.581921 ], [ 121.992188, 13.752725 ], [ 121.640625, 13.752725 ], [ 121.640625, 13.581921 ], [ 120.937500, 13.581921 ], [ 120.937500, 13.752725 ], [ 120.585938, 13.752725 ], [ 120.585938, 14.093957 ], [ 120.761719, 14.093957 ], [ 120.761719, 14.434680 ], [ 120.937500, 14.434680 ], [ 120.937500, 14.604847 ], [ 120.585938, 14.604847 ], [ 120.585938, 14.434680 ], [ 120.410156, 14.434680 ], [ 120.410156, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.774883 ], [ 120.058594, 14.774883 ], [ 120.058594, 15.114553 ], [ 119.882812, 15.114553 ], [ 119.882812, 16.130262 ], [ 120.058594, 16.130262 ], [ 120.058594, 15.961329 ], [ 120.234375, 15.961329 ], [ 120.234375, 16.804541 ], [ 120.410156, 16.804541 ], [ 120.410156, 17.811456 ], [ 120.585938, 17.811456 ], [ 120.585938, 18.145852 ], [ 120.761719, 18.145852 ], [ 120.761719, 18.479609 ], [ 121.289062, 18.479609 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.488281, 4.565474 ], [ 115.312500, 4.565474 ], [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.785156, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.039618 ], [ 114.433594, 4.039618 ], [ 114.433594, 4.390229 ], [ 114.257812, 4.390229 ], [ 114.257812, 4.565474 ], [ 114.433594, 4.565474 ], [ 114.433594, 4.740675 ], [ 114.609375, 4.740675 ], [ 114.609375, 4.915833 ], [ 114.785156, 4.915833 ], [ 114.785156, 5.090944 ], [ 115.136719, 5.090944 ], [ 115.136719, 5.266008 ], [ 115.488281, 5.266008 ], [ 115.488281, 4.565474 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.488281, 5.266008 ], [ 115.488281, 4.565474 ], [ 115.312500, 4.565474 ], [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.785156, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.039618 ], [ 114.433594, 4.039618 ], [ 114.433594, 4.390229 ], [ 114.257812, 4.390229 ], [ 114.257812, 4.565474 ], [ 114.433594, 4.565474 ], [ 114.433594, 4.740675 ], [ 114.609375, 4.740675 ], [ 114.609375, 4.915833 ], [ 114.785156, 4.915833 ], [ 114.785156, 5.090944 ], [ 115.136719, 5.090944 ], [ 115.136719, 5.266008 ], [ 115.488281, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.351562, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.603719 ], [ 135.878906, 35.603719 ], [ 135.878906, 33.431441 ], [ 135.703125, 33.431441 ], [ 135.703125, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.175781, 33.724340 ], [ 135.175781, 34.161818 ], [ 135.000000, 34.161818 ], [ 135.000000, 34.597042 ], [ 134.648438, 34.597042 ], [ 134.648438, 34.452218 ], [ 133.945312, 34.452218 ], [ 133.945312, 34.307144 ], [ 133.242188, 34.307144 ], [ 133.242188, 34.161818 ], [ 132.890625, 34.161818 ], [ 132.890625, 34.016242 ], [ 132.539062, 34.016242 ], [ 132.539062, 33.870416 ], [ 130.957031, 33.870416 ], [ 130.957031, 33.724340 ], [ 131.132812, 33.724340 ], [ 131.132812, 33.578015 ], [ 131.308594, 33.578015 ], [ 131.308594, 33.431441 ], [ 131.660156, 33.431441 ], [ 131.660156, 33.284620 ], [ 131.835938, 33.284620 ], [ 131.835938, 33.137551 ], [ 132.011719, 33.137551 ], [ 132.011719, 32.842674 ], [ 131.835938, 32.842674 ], [ 131.835938, 32.398516 ], [ 131.660156, 32.398516 ], [ 131.660156, 32.101190 ], [ 131.484375, 32.101190 ], [ 131.484375, 31.653381 ], [ 131.308594, 31.653381 ], [ 131.308594, 31.353637 ], [ 131.132812, 31.353637 ], [ 131.132812, 31.203405 ], [ 130.781250, 31.203405 ], [ 130.781250, 31.052934 ], [ 130.429688, 31.052934 ], [ 130.429688, 31.203405 ], [ 130.253906, 31.203405 ], [ 130.253906, 31.802893 ], [ 130.429688, 31.802893 ], [ 130.429688, 32.249974 ], [ 130.253906, 32.249974 ], [ 130.253906, 32.398516 ], [ 129.902344, 32.398516 ], [ 129.902344, 32.546813 ], [ 129.726562, 32.546813 ], [ 129.726562, 32.842674 ], [ 129.550781, 32.842674 ], [ 129.550781, 33.137551 ], [ 129.375000, 33.137551 ], [ 129.375000, 33.284620 ], [ 129.726562, 33.284620 ], [ 129.726562, 33.431441 ], [ 130.253906, 33.431441 ], [ 130.253906, 33.578015 ], [ 130.605469, 33.578015 ], [ 130.605469, 33.870416 ], [ 130.781250, 33.870416 ], [ 130.781250, 34.016242 ], [ 130.957031, 34.016242 ], [ 130.957031, 34.161818 ], [ 131.132812, 34.161818 ], [ 131.132812, 34.307144 ], [ 131.308594, 34.307144 ], [ 131.308594, 34.452218 ], [ 131.660156, 34.452218 ], [ 131.660156, 34.597042 ], [ 131.835938, 34.597042 ], [ 131.835938, 34.741612 ], [ 132.011719, 34.741612 ], [ 132.011719, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.173808 ], [ 132.363281, 35.173808 ], [ 132.363281, 35.317366 ], [ 132.539062, 35.317366 ], [ 132.539062, 35.460670 ], [ 133.242188, 35.460670 ], [ 133.242188, 35.603719 ], [ 134.296875, 35.603719 ], [ 134.296875, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.351562, 35.603719 ], [ 135.351562, 35.460670 ] ] ], [ [ [ 134.648438, 34.016242 ], [ 134.824219, 34.016242 ], [ 134.824219, 33.724340 ], [ 134.648438, 33.724340 ], [ 134.648438, 33.578015 ], [ 134.472656, 33.578015 ], [ 134.472656, 33.284620 ], [ 134.296875, 33.284620 ], [ 134.296875, 33.137551 ], [ 133.945312, 33.137551 ], [ 133.945312, 33.431441 ], [ 133.417969, 33.431441 ], [ 133.417969, 33.284620 ], [ 133.242188, 33.284620 ], [ 133.242188, 32.990236 ], [ 133.066406, 32.990236 ], [ 133.066406, 32.694866 ], [ 132.714844, 32.694866 ], [ 132.714844, 32.842674 ], [ 132.363281, 32.842674 ], [ 132.363281, 33.431441 ], [ 132.539062, 33.431441 ], [ 132.539062, 33.724340 ], [ 132.714844, 33.724340 ], [ 132.714844, 33.870416 ], [ 132.890625, 33.870416 ], [ 132.890625, 34.016242 ], [ 133.593750, 34.016242 ], [ 133.593750, 34.161818 ], [ 133.945312, 34.161818 ], [ 133.945312, 34.307144 ], [ 134.121094, 34.307144 ], [ 134.121094, 34.161818 ], [ 134.648438, 34.161818 ], [ 134.648438, 34.016242 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.945312, 34.307144 ], [ 133.242188, 34.307144 ], [ 133.242188, 34.161818 ], [ 132.890625, 34.161818 ], [ 132.890625, 34.016242 ], [ 132.539062, 34.016242 ], [ 132.539062, 33.870416 ], [ 130.957031, 33.870416 ], [ 130.957031, 33.724340 ], [ 131.132812, 33.724340 ], [ 131.132812, 33.578015 ], [ 131.308594, 33.578015 ], [ 131.308594, 33.431441 ], [ 131.660156, 33.431441 ], [ 131.660156, 33.284620 ], [ 131.835938, 33.284620 ], [ 131.835938, 33.137551 ], [ 132.011719, 33.137551 ], [ 132.011719, 32.842674 ], [ 131.835938, 32.842674 ], [ 131.835938, 32.398516 ], [ 131.660156, 32.398516 ], [ 131.660156, 32.101190 ], [ 131.484375, 32.101190 ], [ 131.484375, 31.653381 ], [ 131.308594, 31.653381 ], [ 131.308594, 31.353637 ], [ 131.132812, 31.353637 ], [ 131.132812, 31.203405 ], [ 130.781250, 31.203405 ], [ 130.781250, 31.052934 ], [ 130.429688, 31.052934 ], [ 130.429688, 31.203405 ], [ 130.253906, 31.203405 ], [ 130.253906, 31.802893 ], [ 130.429688, 31.802893 ], [ 130.429688, 32.249974 ], [ 130.253906, 32.249974 ], [ 130.253906, 32.398516 ], [ 129.902344, 32.398516 ], [ 129.902344, 32.546813 ], [ 129.726562, 32.546813 ], [ 129.726562, 32.842674 ], [ 129.550781, 32.842674 ], [ 129.550781, 33.137551 ], [ 129.375000, 33.137551 ], [ 129.375000, 33.284620 ], [ 129.726562, 33.284620 ], [ 129.726562, 33.431441 ], [ 130.253906, 33.431441 ], [ 130.253906, 33.578015 ], [ 130.605469, 33.578015 ], [ 130.605469, 33.870416 ], [ 130.781250, 33.870416 ], [ 130.781250, 34.016242 ], [ 130.957031, 34.016242 ], [ 130.957031, 34.161818 ], [ 131.132812, 34.161818 ], [ 131.132812, 34.307144 ], [ 131.308594, 34.307144 ], [ 131.308594, 34.452218 ], [ 131.660156, 34.452218 ], [ 131.660156, 34.597042 ], [ 131.835938, 34.597042 ], [ 131.835938, 34.741612 ], [ 132.011719, 34.741612 ], [ 132.011719, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.173808 ], [ 132.363281, 35.173808 ], [ 132.363281, 35.317366 ], [ 132.539062, 35.317366 ], [ 132.539062, 35.460670 ], [ 133.242188, 35.460670 ], [ 133.242188, 35.603719 ], [ 134.296875, 35.603719 ], [ 134.296875, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.351562, 35.603719 ], [ 135.351562, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.603719 ], [ 135.878906, 35.603719 ], [ 135.878906, 33.431441 ], [ 135.703125, 33.431441 ], [ 135.703125, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.175781, 33.724340 ], [ 135.175781, 34.161818 ], [ 135.000000, 34.161818 ], [ 135.000000, 34.597042 ], [ 134.648438, 34.597042 ], [ 134.648438, 34.452218 ], [ 133.945312, 34.452218 ], [ 133.945312, 34.307144 ] ] ], [ [ [ 133.945312, 34.307144 ], [ 134.121094, 34.307144 ], [ 134.121094, 34.161818 ], [ 134.648438, 34.161818 ], [ 134.648438, 34.016242 ], [ 134.824219, 34.016242 ], [ 134.824219, 33.724340 ], [ 134.648438, 33.724340 ], [ 134.648438, 33.578015 ], [ 134.472656, 33.578015 ], [ 134.472656, 33.284620 ], [ 134.296875, 33.284620 ], [ 134.296875, 33.137551 ], [ 133.945312, 33.137551 ], [ 133.945312, 33.431441 ], [ 133.417969, 33.431441 ], [ 133.417969, 33.284620 ], [ 133.242188, 33.284620 ], [ 133.242188, 32.990236 ], [ 133.066406, 32.990236 ], [ 133.066406, 32.694866 ], [ 132.714844, 32.694866 ], [ 132.714844, 32.842674 ], [ 132.363281, 32.842674 ], [ 132.363281, 33.431441 ], [ 132.539062, 33.431441 ], [ 132.539062, 33.724340 ], [ 132.714844, 33.724340 ], [ 132.714844, 33.870416 ], [ 132.890625, 33.870416 ], [ 132.890625, 34.016242 ], [ 133.593750, 34.016242 ], [ 133.593750, 34.161818 ], [ 133.945312, 34.161818 ], [ 133.945312, 34.307144 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -0.878872 ], [ 131.484375, -0.878872 ], [ 131.484375, -0.703107 ], [ 132.011719, -0.703107 ], [ 132.011719, -0.527336 ], [ 132.363281, -0.527336 ], [ 132.363281, -0.351560 ], [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ] ] ], [ [ [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -0.878872 ], [ 122.695312, -0.878872 ], [ 122.695312, -0.703107 ] ] ], [ [ [ 120.234375, -0.878872 ], [ 119.531250, -0.878872 ], [ 119.531250, -0.703107 ], [ 119.707031, -0.703107 ], [ 119.707031, -0.175781 ], [ 119.882812, -0.175781 ], [ 119.882812, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.527336 ], [ 120.234375, 0.527336 ], [ 120.234375, 0.703107 ], [ 120.410156, 0.703107 ], [ 120.410156, 0.878872 ], [ 120.761719, 0.878872 ], [ 120.761719, 1.054628 ], [ 120.937500, 1.054628 ], [ 120.937500, 1.230374 ], [ 121.113281, 1.230374 ], [ 121.113281, 1.054628 ], [ 122.167969, 1.054628 ], [ 122.167969, 0.878872 ], [ 124.277344, 0.878872 ], [ 124.277344, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.230374 ], [ 124.804688, 1.230374 ], [ 124.804688, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 1.230374 ], [ 124.980469, 1.230374 ], [ 124.980469, 0.878872 ], [ 124.804688, 0.878872 ], [ 124.804688, 0.703107 ], [ 124.628906, 0.703107 ], [ 124.628906, 0.351560 ], [ 124.277344, 0.351560 ], [ 124.277344, 0.175781 ], [ 123.046875, 0.175781 ], [ 123.046875, 0.351560 ], [ 120.761719, 0.351560 ], [ 120.761719, 0.175781 ], [ 120.234375, 0.175781 ], [ 120.234375, -0.175781 ], [ 120.058594, -0.175781 ], [ 120.058594, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -0.878872 ] ] ], [ [ [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.792969, 1.757537 ], [ 127.792969, 1.933227 ], [ 127.968750, 1.933227 ], [ 127.968750, 1.581830 ], [ 128.671875, 1.581830 ], [ 128.671875, 0.175781 ], [ 128.320312, 0.175781 ], [ 128.320312, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.527336 ], [ 127.617188, -0.527336 ], [ 127.617188, 0.351560 ], [ 127.441406, 0.351560 ], [ 127.441406, 1.406109 ], [ 127.617188, 1.406109 ] ] ], [ [ [ 117.421875, 2.811371 ], [ 117.597656, 2.811371 ], [ 117.597656, 2.635789 ], [ 117.773438, 2.635789 ], [ 117.773438, 2.460181 ], [ 117.949219, 2.460181 ], [ 117.949219, 2.284551 ], [ 118.125000, 2.284551 ], [ 118.125000, 1.933227 ], [ 117.949219, 1.933227 ], [ 117.949219, 1.581830 ], [ 118.125000, 1.581830 ], [ 118.125000, 1.406109 ], [ 118.300781, 1.406109 ], [ 118.300781, 1.230374 ], [ 118.652344, 1.230374 ], [ 118.652344, 1.054628 ], [ 118.828125, 1.054628 ], [ 118.828125, 0.878872 ], [ 118.476562, 0.878872 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.527336 ], [ 117.597656, 0.527336 ], [ 117.597656, 0.175781 ], [ 117.421875, 0.175781 ], [ 117.421875, -0.351560 ], [ 117.597656, -0.351560 ], [ 117.597656, -0.878872 ], [ 109.335938, -0.878872 ], [ 109.335938, -0.703107 ], [ 109.160156, -0.703107 ], [ 109.160156, -0.175781 ], [ 108.984375, -0.175781 ], [ 108.984375, 1.406109 ], [ 109.160156, 1.406109 ], [ 109.160156, 1.581830 ], [ 109.511719, 1.581830 ], [ 109.511719, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.581830 ], [ 109.863281, 1.581830 ], [ 109.863281, 1.230374 ], [ 110.039062, 1.230374 ], [ 110.039062, 1.054628 ], [ 110.214844, 1.054628 ], [ 110.214844, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.390625, 0.703107 ], [ 110.742188, 0.703107 ], [ 110.742188, 0.878872 ], [ 111.093750, 0.878872 ], [ 111.093750, 1.054628 ], [ 111.269531, 1.054628 ], [ 111.269531, 0.878872 ], [ 111.972656, 0.878872 ], [ 111.972656, 1.054628 ], [ 112.148438, 1.054628 ], [ 112.148438, 1.230374 ], [ 112.324219, 1.230374 ], [ 112.324219, 1.406109 ], [ 112.675781, 1.406109 ], [ 112.675781, 1.581830 ], [ 113.027344, 1.581830 ], [ 113.027344, 1.406109 ], [ 113.378906, 1.406109 ], [ 113.378906, 1.230374 ], [ 114.257812, 1.230374 ], [ 114.257812, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 1.581830 ], [ 114.785156, 1.581830 ], [ 114.785156, 2.108899 ], [ 114.960938, 2.108899 ], [ 114.960938, 2.460181 ], [ 115.136719, 2.460181 ], [ 115.136719, 2.811371 ], [ 115.312500, 2.811371 ], [ 115.312500, 2.986927 ], [ 115.488281, 2.986927 ], [ 115.488281, 3.337954 ], [ 115.664062, 3.337954 ], [ 115.664062, 4.039618 ], [ 115.839844, 4.039618 ], [ 115.839844, 4.390229 ], [ 117.421875, 4.390229 ], [ 117.421875, 4.214943 ], [ 117.949219, 4.214943 ], [ 117.949219, 4.039618 ], [ 117.773438, 4.039618 ], [ 117.773438, 3.688855 ], [ 117.597656, 3.688855 ], [ 117.597656, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 3.162456 ], [ 117.246094, 3.162456 ], [ 117.246094, 2.986927 ], [ 117.421875, 2.986927 ], [ 117.421875, 2.811371 ] ] ], [ [ [ 96.679688, 5.266008 ], [ 97.558594, 5.266008 ], [ 97.558594, 5.090944 ], [ 97.734375, 5.090944 ], [ 97.734375, 4.915833 ], [ 97.910156, 4.915833 ], [ 97.910156, 4.740675 ], [ 98.085938, 4.740675 ], [ 98.085938, 4.390229 ], [ 98.261719, 4.390229 ], [ 98.261719, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 4.039618 ], [ 98.613281, 4.039618 ], [ 98.613281, 3.864255 ], [ 98.789062, 3.864255 ], [ 98.789062, 3.688855 ], [ 98.964844, 3.688855 ], [ 98.964844, 3.513421 ], [ 99.140625, 3.513421 ], [ 99.140625, 3.337954 ], [ 99.492188, 3.337954 ], [ 99.492188, 3.162456 ], [ 99.667969, 3.162456 ], [ 99.667969, 2.986927 ], [ 99.843750, 2.986927 ], [ 99.843750, 2.811371 ], [ 100.019531, 2.811371 ], [ 100.019531, 2.635789 ], [ 100.195312, 2.635789 ], [ 100.195312, 2.460181 ], [ 100.371094, 2.460181 ], [ 100.371094, 2.284551 ], [ 100.546875, 2.284551 ], [ 100.546875, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.933227 ], [ 101.777344, 1.933227 ], [ 101.777344, 1.757537 ], [ 102.128906, 1.757537 ], [ 102.128906, 1.581830 ], [ 102.304688, 1.581830 ], [ 102.304688, 1.406109 ], [ 102.480469, 1.406109 ], [ 102.480469, 1.230374 ], [ 102.656250, 1.230374 ], [ 102.656250, 0.878872 ], [ 102.832031, 0.878872 ], [ 102.832031, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.886719, 0.175781 ], [ 103.886719, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.535156, -0.351560 ], [ 103.535156, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -0.878872 ], [ 100.195312, -0.878872 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.351560 ], [ 99.140625, 0.351560 ], [ 99.140625, 0.703107 ], [ 98.964844, 0.703107 ], [ 98.964844, 1.230374 ], [ 98.789062, 1.230374 ], [ 98.789062, 1.581830 ], [ 98.613281, 1.581830 ], [ 98.613281, 1.757537 ], [ 98.437500, 1.757537 ], [ 98.437500, 1.933227 ], [ 98.261719, 1.933227 ], [ 98.261719, 2.108899 ], [ 97.910156, 2.108899 ], [ 97.910156, 2.284551 ], [ 97.734375, 2.284551 ], [ 97.734375, 2.460181 ], [ 97.558594, 2.460181 ], [ 97.558594, 2.811371 ], [ 97.382812, 2.811371 ], [ 97.382812, 3.162456 ], [ 97.207031, 3.162456 ], [ 97.207031, 3.337954 ], [ 97.031250, 3.337954 ], [ 97.031250, 3.513421 ], [ 96.679688, 3.513421 ], [ 96.679688, 3.688855 ], [ 96.503906, 3.688855 ], [ 96.503906, 3.864255 ], [ 96.328125, 3.864255 ], [ 96.328125, 4.039618 ], [ 96.152344, 4.039618 ], [ 96.152344, 4.214943 ], [ 95.976562, 4.214943 ], [ 95.976562, 4.390229 ], [ 95.800781, 4.390229 ], [ 95.800781, 4.565474 ], [ 95.625000, 4.565474 ], [ 95.625000, 4.740675 ], [ 95.449219, 4.740675 ], [ 95.449219, 5.090944 ], [ 95.273438, 5.090944 ], [ 95.273438, 5.441022 ], [ 96.679688, 5.441022 ], [ 96.679688, 5.266008 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -0.878872 ], [ 131.484375, -0.878872 ], [ 131.484375, -0.703107 ], [ 132.011719, -0.703107 ], [ 132.011719, -0.527336 ], [ 132.363281, -0.527336 ], [ 132.363281, -0.351560 ], [ 132.714844, -0.351560 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 125.156250, 1.230374 ], [ 124.980469, 1.230374 ], [ 124.980469, 0.878872 ], [ 124.804688, 0.878872 ], [ 124.804688, 0.703107 ], [ 124.628906, 0.703107 ], [ 124.628906, 0.351560 ], [ 124.277344, 0.351560 ], [ 124.277344, 0.175781 ], [ 123.046875, 0.175781 ], [ 123.046875, 0.351560 ], [ 120.761719, 0.351560 ], [ 120.761719, 0.175781 ], [ 120.234375, 0.175781 ], [ 120.234375, -0.175781 ], [ 120.058594, -0.175781 ], [ 120.058594, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -0.878872 ], [ 119.531250, -0.878872 ], [ 119.531250, -0.703107 ], [ 119.707031, -0.703107 ], [ 119.707031, -0.175781 ], [ 119.882812, -0.175781 ], [ 119.882812, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.527336 ], [ 120.234375, 0.527336 ], [ 120.234375, 0.703107 ], [ 120.410156, 0.703107 ], [ 120.410156, 0.878872 ], [ 120.761719, 0.878872 ], [ 120.761719, 1.054628 ], [ 120.937500, 1.054628 ], [ 120.937500, 1.230374 ], [ 121.113281, 1.230374 ], [ 121.113281, 1.054628 ], [ 122.167969, 1.054628 ], [ 122.167969, 0.878872 ], [ 124.277344, 0.878872 ], [ 124.277344, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.230374 ], [ 124.804688, 1.230374 ], [ 124.804688, 1.406109 ], [ 125.156250, 1.406109 ] ] ], [ [ [ 127.968750, 1.933227 ], [ 127.968750, 1.581830 ], [ 128.671875, 1.581830 ], [ 128.671875, 0.175781 ], [ 128.320312, 0.175781 ], [ 128.320312, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.527336 ], [ 127.617188, -0.527336 ], [ 127.617188, 0.351560 ], [ 127.441406, 0.351560 ], [ 127.441406, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.792969, 1.757537 ], [ 127.792969, 1.933227 ], [ 127.968750, 1.933227 ] ] ], [ [ [ 117.421875, 4.390229 ], [ 117.421875, 4.214943 ], [ 117.949219, 4.214943 ], [ 117.949219, 4.039618 ], [ 117.773438, 4.039618 ], [ 117.773438, 3.688855 ], [ 117.597656, 3.688855 ], [ 117.597656, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 3.162456 ], [ 117.246094, 3.162456 ], [ 117.246094, 2.986927 ], [ 117.421875, 2.986927 ], [ 117.421875, 2.811371 ], [ 117.597656, 2.811371 ], [ 117.597656, 2.635789 ], [ 117.773438, 2.635789 ], [ 117.773438, 2.460181 ], [ 117.949219, 2.460181 ], [ 117.949219, 2.284551 ], [ 118.125000, 2.284551 ], [ 118.125000, 1.933227 ], [ 117.949219, 1.933227 ], [ 117.949219, 1.581830 ], [ 118.125000, 1.581830 ], [ 118.125000, 1.406109 ], [ 118.300781, 1.406109 ], [ 118.300781, 1.230374 ], [ 118.652344, 1.230374 ], [ 118.652344, 1.054628 ], [ 118.828125, 1.054628 ], [ 118.828125, 0.878872 ], [ 118.476562, 0.878872 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.527336 ], [ 117.597656, 0.527336 ], [ 117.597656, 0.175781 ], [ 117.421875, 0.175781 ], [ 117.421875, -0.351560 ], [ 117.597656, -0.351560 ], [ 117.597656, -0.878872 ], [ 109.335938, -0.878872 ], [ 109.335938, -0.703107 ], [ 109.160156, -0.703107 ], [ 109.160156, -0.175781 ], [ 108.984375, -0.175781 ], [ 108.984375, 1.406109 ], [ 109.160156, 1.406109 ], [ 109.160156, 1.581830 ], [ 109.511719, 1.581830 ], [ 109.511719, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.581830 ], [ 109.863281, 1.581830 ], [ 109.863281, 1.230374 ], [ 110.039062, 1.230374 ], [ 110.039062, 1.054628 ], [ 110.214844, 1.054628 ], [ 110.214844, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.390625, 0.703107 ], [ 110.742188, 0.703107 ], [ 110.742188, 0.878872 ], [ 111.093750, 0.878872 ], [ 111.093750, 1.054628 ], [ 111.269531, 1.054628 ], [ 111.269531, 0.878872 ], [ 111.972656, 0.878872 ], [ 111.972656, 1.054628 ], [ 112.148438, 1.054628 ], [ 112.148438, 1.230374 ], [ 112.324219, 1.230374 ], [ 112.324219, 1.406109 ], [ 112.675781, 1.406109 ], [ 112.675781, 1.581830 ], [ 113.027344, 1.581830 ], [ 113.027344, 1.406109 ], [ 113.378906, 1.406109 ], [ 113.378906, 1.230374 ], [ 114.257812, 1.230374 ], [ 114.257812, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 1.581830 ], [ 114.785156, 1.581830 ], [ 114.785156, 2.108899 ], [ 114.960938, 2.108899 ], [ 114.960938, 2.460181 ], [ 115.136719, 2.460181 ], [ 115.136719, 2.811371 ], [ 115.312500, 2.811371 ], [ 115.312500, 2.986927 ], [ 115.488281, 2.986927 ], [ 115.488281, 3.337954 ], [ 115.664062, 3.337954 ], [ 115.664062, 4.039618 ], [ 115.839844, 4.039618 ], [ 115.839844, 4.390229 ], [ 117.421875, 4.390229 ] ] ], [ [ [ 96.679688, 5.441022 ], [ 96.679688, 5.266008 ], [ 97.558594, 5.266008 ], [ 97.558594, 5.090944 ], [ 97.734375, 5.090944 ], [ 97.734375, 4.915833 ], [ 97.910156, 4.915833 ], [ 97.910156, 4.740675 ], [ 98.085938, 4.740675 ], [ 98.085938, 4.390229 ], [ 98.261719, 4.390229 ], [ 98.261719, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 4.039618 ], [ 98.613281, 4.039618 ], [ 98.613281, 3.864255 ], [ 98.789062, 3.864255 ], [ 98.789062, 3.688855 ], [ 98.964844, 3.688855 ], [ 98.964844, 3.513421 ], [ 99.140625, 3.513421 ], [ 99.140625, 3.337954 ], [ 99.492188, 3.337954 ], [ 99.492188, 3.162456 ], [ 99.667969, 3.162456 ], [ 99.667969, 2.986927 ], [ 99.843750, 2.986927 ], [ 99.843750, 2.811371 ], [ 100.019531, 2.811371 ], [ 100.019531, 2.635789 ], [ 100.195312, 2.635789 ], [ 100.195312, 2.460181 ], [ 100.371094, 2.460181 ], [ 100.371094, 2.284551 ], [ 100.546875, 2.284551 ], [ 100.546875, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.933227 ], [ 101.777344, 1.933227 ], [ 101.777344, 1.757537 ], [ 102.128906, 1.757537 ], [ 102.128906, 1.581830 ], [ 102.304688, 1.581830 ], [ 102.304688, 1.406109 ], [ 102.480469, 1.406109 ], [ 102.480469, 1.230374 ], [ 102.656250, 1.230374 ], [ 102.656250, 0.878872 ], [ 102.832031, 0.878872 ], [ 102.832031, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.886719, 0.175781 ], [ 103.886719, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.535156, -0.351560 ], [ 103.535156, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -0.878872 ], [ 100.195312, -0.878872 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.351560 ], [ 99.140625, 0.351560 ], [ 99.140625, 0.703107 ], [ 98.964844, 0.703107 ], [ 98.964844, 1.230374 ], [ 98.789062, 1.230374 ], [ 98.789062, 1.581830 ], [ 98.613281, 1.581830 ], [ 98.613281, 1.757537 ], [ 98.437500, 1.757537 ], [ 98.437500, 1.933227 ], [ 98.261719, 1.933227 ], [ 98.261719, 2.108899 ], [ 97.910156, 2.108899 ], [ 97.910156, 2.284551 ], [ 97.734375, 2.284551 ], [ 97.734375, 2.460181 ], [ 97.558594, 2.460181 ], [ 97.558594, 2.811371 ], [ 97.382812, 2.811371 ], [ 97.382812, 3.162456 ], [ 97.207031, 3.162456 ], [ 97.207031, 3.337954 ], [ 97.031250, 3.337954 ], [ 97.031250, 3.513421 ], [ 96.679688, 3.513421 ], [ 96.679688, 3.688855 ], [ 96.503906, 3.688855 ], [ 96.503906, 3.864255 ], [ 96.328125, 3.864255 ], [ 96.328125, 4.039618 ], [ 96.152344, 4.039618 ], [ 96.152344, 4.214943 ], [ 95.976562, 4.214943 ], [ 95.976562, 4.390229 ], [ 95.800781, 4.390229 ], [ 95.800781, 4.565474 ], [ 95.625000, 4.565474 ], [ 95.625000, 4.740675 ], [ 95.449219, 4.740675 ], [ 95.449219, 5.090944 ], [ 95.273438, 5.090944 ], [ 95.273438, 5.441022 ], [ 96.679688, 5.441022 ] ] ], [ [ [ 123.398438, -0.878872 ], [ 122.695312, -0.878872 ], [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.187500, 43.197167 ], [ 132.187500, 43.068888 ], [ 131.835938, 43.068888 ], [ 131.835938, 42.940339 ], [ 131.660156, 42.940339 ], [ 131.660156, 42.811522 ], [ 131.484375, 42.811522 ], [ 131.484375, 42.682435 ], [ 131.132812, 42.682435 ], [ 131.132812, 42.553080 ], [ 130.957031, 42.553080 ], [ 130.957031, 42.293564 ], [ 130.605469, 42.293564 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.132812, 43.452919 ], [ 131.308594, 43.452919 ], [ 131.308594, 44.213710 ], [ 131.132812, 44.213710 ], [ 131.132812, 44.715514 ], [ 130.957031, 44.715514 ], [ 130.957031, 44.964798 ], [ 131.132812, 44.964798 ], [ 131.132812, 45.089036 ], [ 131.484375, 45.089036 ], [ 131.484375, 45.213004 ], [ 131.835938, 45.213004 ], [ 131.835938, 45.336702 ], [ 132.011719, 45.336702 ], [ 132.011719, 45.213004 ], [ 132.714844, 45.213004 ], [ 132.714844, 45.089036 ], [ 133.066406, 45.089036 ], [ 133.066406, 45.213004 ], [ 133.242188, 45.213004 ], [ 133.242188, 45.460131 ], [ 133.417969, 45.460131 ], [ 133.417969, 45.706179 ], [ 133.593750, 45.706179 ], [ 133.593750, 45.951150 ], [ 133.769531, 45.951150 ], [ 133.769531, 46.316584 ], [ 133.945312, 46.316584 ], [ 133.945312, 46.800059 ], [ 134.121094, 46.800059 ], [ 134.121094, 47.279229 ], [ 134.296875, 47.279229 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 47.989922 ], [ 134.824219, 47.989922 ], [ 134.824219, 48.224673 ], [ 135.000000, 48.224673 ], [ 135.000000, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 48.341646 ], [ 133.945312, 48.341646 ], [ 133.945312, 48.224673 ], [ 133.417969, 48.224673 ], [ 133.417969, 48.107431 ], [ 133.242188, 48.107431 ], [ 133.242188, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 47.872144 ], [ 132.714844, 47.872144 ], [ 132.714844, 47.754098 ], [ 130.957031, 47.754098 ], [ 130.957031, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.605469, 48.458352 ], [ 130.605469, 48.690960 ], [ 130.429688, 48.690960 ], [ 130.429688, 48.806863 ], [ 130.253906, 48.806863 ], [ 130.253906, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 49.037868 ], [ 129.902344, 49.037868 ], [ 129.902344, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 49.267805 ], [ 129.550781, 49.267805 ], [ 129.550781, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.496675 ], [ 128.847656, 49.496675 ], [ 128.847656, 49.610710 ], [ 127.968750, 49.610710 ], [ 127.968750, 49.724479 ], [ 127.617188, 49.724479 ], [ 127.617188, 49.951220 ], [ 127.441406, 49.951220 ], [ 127.441406, 50.401515 ], [ 127.265625, 50.401515 ], [ 127.265625, 50.847573 ], [ 127.089844, 50.847573 ], [ 127.089844, 51.179343 ], [ 126.914062, 51.179343 ], [ 126.914062, 51.508742 ], [ 126.738281, 51.508742 ], [ 126.738281, 51.727028 ], [ 126.562500, 51.727028 ], [ 126.562500, 51.944265 ], [ 126.386719, 51.944265 ], [ 126.386719, 52.160455 ], [ 126.210938, 52.160455 ], [ 126.210938, 52.375599 ], [ 126.035156, 52.375599 ], [ 126.035156, 52.589701 ], [ 125.859375, 52.589701 ], [ 125.859375, 52.802761 ], [ 125.683594, 52.802761 ], [ 125.683594, 52.908902 ], [ 125.332031, 52.908902 ], [ 125.332031, 53.014783 ], [ 124.980469, 53.014783 ], [ 124.980469, 53.120405 ], [ 124.628906, 53.120405 ], [ 124.628906, 53.225768 ], [ 124.101562, 53.225768 ], [ 124.101562, 53.330873 ], [ 123.750000, 53.330873 ], [ 123.750000, 53.435719 ], [ 121.992188, 53.435719 ], [ 121.992188, 53.330873 ], [ 121.289062, 53.330873 ], [ 121.289062, 53.225768 ], [ 120.937500, 53.225768 ], [ 120.937500, 53.120405 ], [ 120.761719, 53.120405 ], [ 120.761719, 53.014783 ], [ 120.585938, 53.014783 ], [ 120.585938, 52.908902 ], [ 120.410156, 52.908902 ], [ 120.410156, 52.802761 ], [ 120.234375, 52.802761 ], [ 120.234375, 52.696361 ], [ 120.410156, 52.696361 ], [ 120.410156, 52.589701 ], [ 120.585938, 52.589701 ], [ 120.585938, 52.482780 ], [ 120.761719, 52.482780 ], [ 120.761719, 51.835778 ], [ 120.585938, 51.835778 ], [ 120.585938, 51.727028 ], [ 120.410156, 51.727028 ], [ 120.410156, 51.618017 ], [ 120.234375, 51.618017 ], [ 120.234375, 51.508742 ], [ 120.058594, 51.508742 ], [ 120.058594, 51.289406 ], [ 119.882812, 51.289406 ], [ 119.882812, 51.069017 ], [ 119.707031, 51.069017 ], [ 119.707031, 50.847573 ], [ 119.531250, 50.847573 ], [ 119.531250, 50.625073 ], [ 119.355469, 50.625073 ], [ 119.355469, 50.064192 ], [ 119.179688, 50.064192 ], [ 119.179688, 49.951220 ], [ 118.828125, 49.951220 ], [ 118.828125, 49.837982 ], [ 118.652344, 49.837982 ], [ 118.652344, 49.724479 ], [ 118.476562, 49.724479 ], [ 118.476562, 49.610710 ], [ 118.125000, 49.610710 ], [ 118.125000, 49.496675 ], [ 117.597656, 49.496675 ], [ 117.597656, 49.610710 ], [ 117.246094, 49.610710 ], [ 117.246094, 49.724479 ], [ 116.894531, 49.724479 ], [ 116.894531, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 49.951220 ], [ 115.136719, 49.951220 ], [ 115.136719, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 50.176898 ], [ 114.609375, 50.176898 ], [ 114.609375, 50.289339 ], [ 114.433594, 50.289339 ], [ 114.433594, 50.176898 ], [ 114.257812, 50.176898 ], [ 114.257812, 50.064192 ], [ 113.906250, 50.064192 ], [ 113.906250, 49.951220 ], [ 113.730469, 49.951220 ], [ 113.730469, 49.837982 ], [ 113.554688, 49.837982 ], [ 113.554688, 49.724479 ], [ 113.203125, 49.724479 ], [ 113.203125, 49.610710 ], [ 113.027344, 49.610710 ], [ 113.027344, 49.496675 ], [ 112.324219, 49.496675 ], [ 112.324219, 49.382373 ], [ 111.445312, 49.382373 ], [ 111.445312, 49.267805 ], [ 111.093750, 49.267805 ], [ 111.093750, 49.152970 ], [ 109.863281, 49.152970 ], [ 109.863281, 49.267805 ], [ 108.281250, 49.267805 ], [ 108.281250, 49.496675 ], [ 108.105469, 49.496675 ], [ 108.105469, 49.724479 ], [ 107.929688, 49.724479 ], [ 107.929688, 49.837982 ], [ 107.753906, 49.837982 ], [ 107.753906, 49.951220 ], [ 107.402344, 49.951220 ], [ 107.402344, 50.064192 ], [ 107.226562, 50.064192 ], [ 107.226562, 50.176898 ], [ 106.875000, 50.176898 ], [ 106.875000, 50.289339 ], [ 106.171875, 50.289339 ], [ 106.171875, 50.401515 ], [ 105.292969, 50.401515 ], [ 105.292969, 50.289339 ], [ 104.414062, 50.289339 ], [ 104.414062, 50.176898 ], [ 104.062500, 50.176898 ], [ 104.062500, 50.064192 ], [ 103.359375, 50.064192 ], [ 103.359375, 50.176898 ], [ 103.007812, 50.176898 ], [ 103.007812, 50.289339 ], [ 102.656250, 50.289339 ], [ 102.656250, 50.401515 ], [ 102.304688, 50.401515 ], [ 102.304688, 50.847573 ], [ 102.128906, 50.847573 ], [ 102.128906, 51.289406 ], [ 101.777344, 51.289406 ], [ 101.777344, 51.399206 ], [ 101.074219, 51.399206 ], [ 101.074219, 51.508742 ], [ 100.371094, 51.508742 ], [ 100.371094, 51.618017 ], [ 99.843750, 51.618017 ], [ 99.843750, 51.727028 ], [ 99.492188, 51.727028 ], [ 99.492188, 51.835778 ], [ 99.140625, 51.835778 ], [ 99.140625, 51.944265 ], [ 98.613281, 51.944265 ], [ 98.613281, 51.727028 ], [ 98.437500, 51.727028 ], [ 98.437500, 51.508742 ], [ 98.261719, 51.508742 ], [ 98.261719, 51.289406 ], [ 98.085938, 51.289406 ], [ 98.085938, 51.069017 ], [ 97.910156, 51.069017 ], [ 97.910156, 50.736455 ], [ 98.085938, 50.736455 ], [ 98.085938, 50.513427 ], [ 98.261719, 50.513427 ], [ 98.261719, 50.289339 ], [ 98.085938, 50.289339 ], [ 98.085938, 50.176898 ], [ 97.910156, 50.176898 ], [ 97.910156, 50.064192 ], [ 97.734375, 50.064192 ], [ 97.734375, 49.951220 ], [ 97.558594, 49.951220 ], [ 97.558594, 49.837982 ], [ 97.382812, 49.837982 ], [ 97.382812, 49.724479 ], [ 96.679688, 49.724479 ], [ 96.679688, 49.837982 ], [ 95.976562, 49.837982 ], [ 95.976562, 49.951220 ], [ 95.097656, 49.951220 ], [ 95.097656, 50.064192 ], [ 94.570312, 50.064192 ], [ 94.570312, 50.289339 ], [ 94.394531, 50.289339 ], [ 94.394531, 50.401515 ], [ 94.218750, 50.401515 ], [ 94.218750, 50.513427 ], [ 92.988281, 50.513427 ], [ 92.988281, 50.625073 ], [ 92.636719, 50.625073 ], [ 92.636719, 50.736455 ], [ 91.933594, 50.736455 ], [ 91.933594, 50.625073 ], [ 91.582031, 50.625073 ], [ 91.582031, 50.513427 ], [ 91.230469, 50.513427 ], [ 91.230469, 50.401515 ], [ 90.878906, 50.401515 ], [ 90.878906, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 89.121094, 49.610710 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ], [ 135.878906, 55.078367 ], [ 135.703125, 55.078367 ], [ 135.703125, 54.977614 ], [ 135.527344, 54.977614 ], [ 135.527344, 54.876607 ], [ 135.351562, 54.876607 ], [ 135.351562, 54.673831 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.213710 ], [ 135.703125, 44.213710 ], [ 135.703125, 43.961191 ], [ 135.527344, 43.961191 ], [ 135.527344, 43.834527 ], [ 135.351562, 43.834527 ], [ 135.351562, 43.707594 ], [ 135.175781, 43.707594 ], [ 135.175781, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.472656, 43.325178 ], [ 134.472656, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 134.121094, 43.068888 ], [ 134.121094, 42.940339 ], [ 133.769531, 42.940339 ], [ 133.769531, 42.811522 ], [ 132.714844, 42.811522 ], [ 132.714844, 43.068888 ], [ 132.539062, 43.068888 ], [ 132.539062, 43.197167 ], [ 132.187500, 43.197167 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.078367 ], [ 135.703125, 55.078367 ], [ 135.703125, 54.977614 ], [ 135.527344, 54.977614 ], [ 135.527344, 54.876607 ], [ 135.351562, 54.876607 ], [ 135.351562, 54.673831 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.213710 ], [ 135.703125, 44.213710 ], [ 135.703125, 43.961191 ], [ 135.527344, 43.961191 ], [ 135.527344, 43.834527 ], [ 135.351562, 43.834527 ], [ 135.351562, 43.707594 ], [ 135.175781, 43.707594 ], [ 135.175781, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.472656, 43.325178 ], [ 134.472656, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 134.121094, 43.068888 ], [ 134.121094, 42.940339 ], [ 133.769531, 42.940339 ], [ 133.769531, 42.811522 ], [ 132.714844, 42.811522 ], [ 132.714844, 43.068888 ], [ 132.539062, 43.068888 ], [ 132.539062, 43.197167 ], [ 132.187500, 43.197167 ], [ 132.187500, 43.068888 ], [ 131.835938, 43.068888 ], [ 131.835938, 42.940339 ], [ 131.660156, 42.940339 ], [ 131.660156, 42.811522 ], [ 131.484375, 42.811522 ], [ 131.484375, 42.682435 ], [ 131.132812, 42.682435 ], [ 131.132812, 42.553080 ], [ 130.957031, 42.553080 ], [ 130.957031, 42.293564 ], [ 130.605469, 42.293564 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.132812, 43.452919 ], [ 131.308594, 43.452919 ], [ 131.308594, 44.213710 ], [ 131.132812, 44.213710 ], [ 131.132812, 44.715514 ], [ 130.957031, 44.715514 ], [ 130.957031, 44.964798 ], [ 131.132812, 44.964798 ], [ 131.132812, 45.089036 ], [ 131.484375, 45.089036 ], [ 131.484375, 45.213004 ], [ 131.835938, 45.213004 ], [ 131.835938, 45.336702 ], [ 132.011719, 45.336702 ], [ 132.011719, 45.213004 ], [ 132.714844, 45.213004 ], [ 132.714844, 45.089036 ], [ 133.066406, 45.089036 ], [ 133.066406, 45.213004 ], [ 133.242188, 45.213004 ], [ 133.242188, 45.460131 ], [ 133.417969, 45.460131 ], [ 133.417969, 45.706179 ], [ 133.593750, 45.706179 ], [ 133.593750, 45.951150 ], [ 133.769531, 45.951150 ], [ 133.769531, 46.316584 ], [ 133.945312, 46.316584 ], [ 133.945312, 46.800059 ], [ 134.121094, 46.800059 ], [ 134.121094, 47.279229 ], [ 134.296875, 47.279229 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 47.989922 ], [ 134.824219, 47.989922 ], [ 134.824219, 48.224673 ], [ 135.000000, 48.224673 ], [ 135.000000, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 48.341646 ], [ 133.945312, 48.341646 ], [ 133.945312, 48.224673 ], [ 133.417969, 48.224673 ], [ 133.417969, 48.107431 ], [ 133.242188, 48.107431 ], [ 133.242188, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 47.872144 ], [ 132.714844, 47.872144 ], [ 132.714844, 47.754098 ], [ 130.957031, 47.754098 ], [ 130.957031, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.605469, 48.458352 ], [ 130.605469, 48.690960 ], [ 130.429688, 48.690960 ], [ 130.429688, 48.806863 ], [ 130.253906, 48.806863 ], [ 130.253906, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 49.037868 ], [ 129.902344, 49.037868 ], [ 129.902344, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 49.267805 ], [ 129.550781, 49.267805 ], [ 129.550781, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.496675 ], [ 128.847656, 49.496675 ], [ 128.847656, 49.610710 ], [ 127.968750, 49.610710 ], [ 127.968750, 49.724479 ], [ 127.617188, 49.724479 ], [ 127.617188, 49.951220 ], [ 127.441406, 49.951220 ], [ 127.441406, 50.401515 ], [ 127.265625, 50.401515 ], [ 127.265625, 50.847573 ], [ 127.089844, 50.847573 ], [ 127.089844, 51.179343 ], [ 126.914062, 51.179343 ], [ 126.914062, 51.508742 ], [ 126.738281, 51.508742 ], [ 126.738281, 51.727028 ], [ 126.562500, 51.727028 ], [ 126.562500, 51.944265 ], [ 126.386719, 51.944265 ], [ 126.386719, 52.160455 ], [ 126.210938, 52.160455 ], [ 126.210938, 52.375599 ], [ 126.035156, 52.375599 ], [ 126.035156, 52.589701 ], [ 125.859375, 52.589701 ], [ 125.859375, 52.802761 ], [ 125.683594, 52.802761 ], [ 125.683594, 52.908902 ], [ 125.332031, 52.908902 ], [ 125.332031, 53.014783 ], [ 124.980469, 53.014783 ], [ 124.980469, 53.120405 ], [ 124.628906, 53.120405 ], [ 124.628906, 53.225768 ], [ 124.101562, 53.225768 ], [ 124.101562, 53.330873 ], [ 123.750000, 53.330873 ], [ 123.750000, 53.435719 ], [ 121.992188, 53.435719 ], [ 121.992188, 53.330873 ], [ 121.289062, 53.330873 ], [ 121.289062, 53.225768 ], [ 120.937500, 53.225768 ], [ 120.937500, 53.120405 ], [ 120.761719, 53.120405 ], [ 120.761719, 53.014783 ], [ 120.585938, 53.014783 ], [ 120.585938, 52.908902 ], [ 120.410156, 52.908902 ], [ 120.410156, 52.802761 ], [ 120.234375, 52.802761 ], [ 120.234375, 52.696361 ], [ 120.410156, 52.696361 ], [ 120.410156, 52.589701 ], [ 120.585938, 52.589701 ], [ 120.585938, 52.482780 ], [ 120.761719, 52.482780 ], [ 120.761719, 51.835778 ], [ 120.585938, 51.835778 ], [ 120.585938, 51.727028 ], [ 120.410156, 51.727028 ], [ 120.410156, 51.618017 ], [ 120.234375, 51.618017 ], [ 120.234375, 51.508742 ], [ 120.058594, 51.508742 ], [ 120.058594, 51.289406 ], [ 119.882812, 51.289406 ], [ 119.882812, 51.069017 ], [ 119.707031, 51.069017 ], [ 119.707031, 50.847573 ], [ 119.531250, 50.847573 ], [ 119.531250, 50.625073 ], [ 119.355469, 50.625073 ], [ 119.355469, 50.064192 ], [ 119.179688, 50.064192 ], [ 119.179688, 49.951220 ], [ 118.828125, 49.951220 ], [ 118.828125, 49.837982 ], [ 118.652344, 49.837982 ], [ 118.652344, 49.724479 ], [ 118.476562, 49.724479 ], [ 118.476562, 49.610710 ], [ 118.125000, 49.610710 ], [ 118.125000, 49.496675 ], [ 117.597656, 49.496675 ], [ 117.597656, 49.610710 ], [ 117.246094, 49.610710 ], [ 117.246094, 49.724479 ], [ 116.894531, 49.724479 ], [ 116.894531, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 49.951220 ], [ 115.136719, 49.951220 ], [ 115.136719, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 50.176898 ], [ 114.609375, 50.176898 ], [ 114.609375, 50.289339 ], [ 114.433594, 50.289339 ], [ 114.433594, 50.176898 ], [ 114.257812, 50.176898 ], [ 114.257812, 50.064192 ], [ 113.906250, 50.064192 ], [ 113.906250, 49.951220 ], [ 113.730469, 49.951220 ], [ 113.730469, 49.837982 ], [ 113.554688, 49.837982 ], [ 113.554688, 49.724479 ], [ 113.203125, 49.724479 ], [ 113.203125, 49.610710 ], [ 113.027344, 49.610710 ], [ 113.027344, 49.496675 ], [ 112.324219, 49.496675 ], [ 112.324219, 49.382373 ], [ 111.445312, 49.382373 ], [ 111.445312, 49.267805 ], [ 111.093750, 49.267805 ], [ 111.093750, 49.152970 ], [ 109.863281, 49.152970 ], [ 109.863281, 49.267805 ], [ 108.281250, 49.267805 ], [ 108.281250, 49.496675 ], [ 108.105469, 49.496675 ], [ 108.105469, 49.724479 ], [ 107.929688, 49.724479 ], [ 107.929688, 49.837982 ], [ 107.753906, 49.837982 ], [ 107.753906, 49.951220 ], [ 107.402344, 49.951220 ], [ 107.402344, 50.064192 ], [ 107.226562, 50.064192 ], [ 107.226562, 50.176898 ], [ 106.875000, 50.176898 ], [ 106.875000, 50.289339 ], [ 106.171875, 50.289339 ], [ 106.171875, 50.401515 ], [ 105.292969, 50.401515 ], [ 105.292969, 50.289339 ], [ 104.414062, 50.289339 ], [ 104.414062, 50.176898 ], [ 104.062500, 50.176898 ], [ 104.062500, 50.064192 ], [ 103.359375, 50.064192 ], [ 103.359375, 50.176898 ], [ 103.007812, 50.176898 ], [ 103.007812, 50.289339 ], [ 102.656250, 50.289339 ], [ 102.656250, 50.401515 ], [ 102.304688, 50.401515 ], [ 102.304688, 50.847573 ], [ 102.128906, 50.847573 ], [ 102.128906, 51.289406 ], [ 101.777344, 51.289406 ], [ 101.777344, 51.399206 ], [ 101.074219, 51.399206 ], [ 101.074219, 51.508742 ], [ 100.371094, 51.508742 ], [ 100.371094, 51.618017 ], [ 99.843750, 51.618017 ], [ 99.843750, 51.727028 ], [ 99.492188, 51.727028 ], [ 99.492188, 51.835778 ], [ 99.140625, 51.835778 ], [ 99.140625, 51.944265 ], [ 98.613281, 51.944265 ], [ 98.613281, 51.727028 ], [ 98.437500, 51.727028 ], [ 98.437500, 51.508742 ], [ 98.261719, 51.508742 ], [ 98.261719, 51.289406 ], [ 98.085938, 51.289406 ], [ 98.085938, 51.069017 ], [ 97.910156, 51.069017 ], [ 97.910156, 50.736455 ], [ 98.085938, 50.736455 ], [ 98.085938, 50.513427 ], [ 98.261719, 50.513427 ], [ 98.261719, 50.289339 ], [ 98.085938, 50.289339 ], [ 98.085938, 50.176898 ], [ 97.910156, 50.176898 ], [ 97.910156, 50.064192 ], [ 97.734375, 50.064192 ], [ 97.734375, 49.951220 ], [ 97.558594, 49.951220 ], [ 97.558594, 49.837982 ], [ 97.382812, 49.837982 ], [ 97.382812, 49.724479 ], [ 96.679688, 49.724479 ], [ 96.679688, 49.837982 ], [ 95.976562, 49.837982 ], [ 95.976562, 49.951220 ], [ 95.097656, 49.951220 ], [ 95.097656, 50.064192 ], [ 94.570312, 50.064192 ], [ 94.570312, 50.289339 ], [ 94.394531, 50.289339 ], [ 94.394531, 50.401515 ], [ 94.218750, 50.401515 ], [ 94.218750, 50.513427 ], [ 92.988281, 50.513427 ], [ 92.988281, 50.625073 ], [ 92.636719, 50.625073 ], [ 92.636719, 50.736455 ], [ 91.933594, 50.736455 ], [ 91.933594, 50.625073 ], [ 91.582031, 50.625073 ], [ 91.582031, 50.513427 ], [ 91.230469, 50.513427 ], [ 91.230469, 50.401515 ], [ 90.878906, 50.401515 ], [ 90.878906, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 89.121094, 49.610710 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.843750, 51.618017 ], [ 100.371094, 51.618017 ], [ 100.371094, 51.508742 ], [ 101.074219, 51.508742 ], [ 101.074219, 51.399206 ], [ 101.777344, 51.399206 ], [ 101.777344, 51.289406 ], [ 102.128906, 51.289406 ], [ 102.128906, 50.847573 ], [ 102.304688, 50.847573 ], [ 102.304688, 50.401515 ], [ 102.656250, 50.401515 ], [ 102.656250, 50.289339 ], [ 103.007812, 50.289339 ], [ 103.007812, 50.176898 ], [ 103.359375, 50.176898 ], [ 103.359375, 50.064192 ], [ 104.062500, 50.064192 ], [ 104.062500, 50.176898 ], [ 104.414062, 50.176898 ], [ 104.414062, 50.289339 ], [ 105.292969, 50.289339 ], [ 105.292969, 50.401515 ], [ 106.171875, 50.401515 ], [ 106.171875, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.176898 ], [ 107.226562, 50.176898 ], [ 107.226562, 50.064192 ], [ 107.402344, 50.064192 ], [ 107.402344, 49.951220 ], [ 107.753906, 49.951220 ], [ 107.753906, 49.837982 ], [ 107.929688, 49.837982 ], [ 107.929688, 49.724479 ], [ 108.105469, 49.724479 ], [ 108.105469, 49.496675 ], [ 108.281250, 49.496675 ], [ 108.281250, 49.267805 ], [ 109.863281, 49.267805 ], [ 109.863281, 49.152970 ], [ 111.093750, 49.152970 ], [ 111.093750, 49.267805 ], [ 111.445312, 49.267805 ], [ 111.445312, 49.382373 ], [ 112.324219, 49.382373 ], [ 112.324219, 49.496675 ], [ 113.027344, 49.496675 ], [ 113.027344, 49.610710 ], [ 113.203125, 49.610710 ], [ 113.203125, 49.724479 ], [ 113.554688, 49.724479 ], [ 113.554688, 49.837982 ], [ 113.730469, 49.837982 ], [ 113.730469, 49.951220 ], [ 113.906250, 49.951220 ], [ 113.906250, 50.064192 ], [ 114.257812, 50.064192 ], [ 114.257812, 50.176898 ], [ 114.433594, 50.176898 ], [ 114.433594, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 50.176898 ], [ 114.960938, 50.176898 ], [ 114.960938, 50.064192 ], [ 115.136719, 50.064192 ], [ 115.136719, 49.951220 ], [ 115.312500, 49.951220 ], [ 115.312500, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.724479 ], [ 116.542969, 49.724479 ], [ 116.542969, 49.496675 ], [ 116.367188, 49.496675 ], [ 116.367188, 49.267805 ], [ 116.191406, 49.267805 ], [ 116.191406, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 48.690960 ], [ 115.839844, 48.690960 ], [ 115.839844, 48.458352 ], [ 115.664062, 48.458352 ], [ 115.664062, 48.224673 ], [ 115.488281, 48.224673 ], [ 115.488281, 47.872144 ], [ 115.664062, 47.872144 ], [ 115.664062, 47.754098 ], [ 116.191406, 47.754098 ], [ 116.191406, 47.872144 ], [ 116.718750, 47.872144 ], [ 116.718750, 47.754098 ], [ 117.421875, 47.754098 ], [ 117.421875, 47.872144 ], [ 117.773438, 47.872144 ], [ 117.773438, 47.989922 ], [ 118.300781, 47.989922 ], [ 118.300781, 47.872144 ], [ 118.652344, 47.872144 ], [ 118.652344, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.635784 ], [ 119.003906, 47.635784 ], [ 119.003906, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.398349 ], [ 119.355469, 47.398349 ], [ 119.355469, 47.159840 ], [ 119.531250, 47.159840 ], [ 119.531250, 47.040182 ], [ 119.707031, 47.040182 ], [ 119.707031, 46.679594 ], [ 119.179688, 46.679594 ], [ 119.179688, 46.800059 ], [ 118.300781, 46.800059 ], [ 118.300781, 46.679594 ], [ 117.421875, 46.679594 ], [ 117.421875, 46.558860 ], [ 117.070312, 46.558860 ], [ 117.070312, 46.437857 ], [ 116.718750, 46.437857 ], [ 116.718750, 46.316584 ], [ 116.542969, 46.316584 ], [ 116.542969, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 45.951150 ], [ 116.191406, 45.951150 ], [ 116.191406, 45.706179 ], [ 115.839844, 45.706179 ], [ 115.839844, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.460131 ], [ 114.785156, 45.460131 ], [ 114.785156, 45.336702 ], [ 114.433594, 45.336702 ], [ 114.433594, 45.213004 ], [ 114.082031, 45.213004 ], [ 114.082031, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.964798 ], [ 113.554688, 44.964798 ], [ 113.554688, 44.840291 ], [ 112.851562, 44.840291 ], [ 112.851562, 44.964798 ], [ 111.972656, 44.964798 ], [ 111.972656, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.964798 ], [ 111.621094, 44.964798 ], [ 111.621094, 44.715514 ], [ 111.445312, 44.715514 ], [ 111.445312, 44.465151 ], [ 111.269531, 44.465151 ], [ 111.269531, 44.339565 ], [ 111.445312, 44.339565 ], [ 111.445312, 44.087585 ], [ 111.621094, 44.087585 ], [ 111.621094, 43.834527 ], [ 111.796875, 43.834527 ], [ 111.796875, 43.580391 ], [ 111.445312, 43.580391 ], [ 111.445312, 43.452919 ], [ 111.093750, 43.452919 ], [ 111.093750, 43.325178 ], [ 110.917969, 43.325178 ], [ 110.917969, 43.197167 ], [ 110.742188, 43.197167 ], [ 110.742188, 42.940339 ], [ 110.566406, 42.940339 ], [ 110.566406, 42.811522 ], [ 110.214844, 42.811522 ], [ 110.214844, 42.682435 ], [ 109.511719, 42.682435 ], [ 109.511719, 42.553080 ], [ 108.632812, 42.553080 ], [ 108.632812, 42.423457 ], [ 107.402344, 42.423457 ], [ 107.402344, 42.293564 ], [ 106.699219, 42.293564 ], [ 106.699219, 42.163403 ], [ 106.171875, 42.163403 ], [ 106.171875, 42.032974 ], [ 105.820312, 42.032974 ], [ 105.820312, 41.902277 ], [ 105.468750, 41.902277 ], [ 105.468750, 41.771312 ], [ 105.117188, 41.771312 ], [ 105.117188, 41.640078 ], [ 104.765625, 41.640078 ], [ 104.765625, 41.771312 ], [ 104.589844, 41.771312 ], [ 104.589844, 41.902277 ], [ 103.183594, 41.902277 ], [ 103.183594, 42.032974 ], [ 102.832031, 42.032974 ], [ 102.832031, 42.163403 ], [ 102.480469, 42.163403 ], [ 102.480469, 42.293564 ], [ 102.128906, 42.293564 ], [ 102.128906, 42.423457 ], [ 101.777344, 42.423457 ], [ 101.777344, 42.553080 ], [ 101.250000, 42.553080 ], [ 101.250000, 42.682435 ], [ 100.371094, 42.682435 ], [ 100.371094, 42.553080 ], [ 98.789062, 42.553080 ], [ 98.789062, 42.682435 ], [ 97.734375, 42.682435 ], [ 97.734375, 42.811522 ], [ 97.031250, 42.811522 ], [ 97.031250, 42.682435 ], [ 96.152344, 42.682435 ], [ 96.152344, 42.940339 ], [ 95.976562, 42.940339 ], [ 95.976562, 43.197167 ], [ 95.800781, 43.197167 ], [ 95.800781, 43.452919 ], [ 95.625000, 43.452919 ], [ 95.625000, 43.707594 ], [ 95.449219, 43.707594 ], [ 95.449219, 43.961191 ], [ 95.273438, 43.961191 ], [ 95.273438, 44.213710 ], [ 94.921875, 44.213710 ], [ 94.921875, 44.339565 ], [ 94.570312, 44.339565 ], [ 94.570312, 44.465151 ], [ 94.218750, 44.465151 ], [ 94.218750, 44.590467 ], [ 94.042969, 44.590467 ], [ 94.042969, 44.715514 ], [ 93.867188, 44.715514 ], [ 93.867188, 44.840291 ], [ 93.515625, 44.840291 ], [ 93.515625, 44.964798 ], [ 92.636719, 44.964798 ], [ 92.636719, 45.089036 ], [ 91.757812, 45.089036 ], [ 91.757812, 45.213004 ], [ 91.054688, 45.213004 ], [ 91.054688, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.527344, 45.583290 ], [ 90.527344, 45.828799 ], [ 90.703125, 45.828799 ], [ 90.703125, 46.316584 ], [ 90.878906, 46.316584 ], [ 90.878906, 46.679594 ], [ 91.054688, 46.679594 ], [ 91.054688, 46.920255 ], [ 90.878906, 46.920255 ], [ 90.878906, 47.159840 ], [ 90.703125, 47.159840 ], [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.635784 ], [ 90.000000, 47.635784 ], [ 90.000000, 47.754098 ], [ 89.648438, 47.754098 ], [ 89.648438, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 89.121094, 47.989922 ], [ 89.121094, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.648438, 49.724479 ], [ 89.648438, 49.837982 ], [ 89.824219, 49.837982 ], [ 89.824219, 49.951220 ], [ 90.175781, 49.951220 ], [ 90.175781, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 50.176898 ], [ 90.703125, 50.176898 ], [ 90.703125, 50.289339 ], [ 90.878906, 50.289339 ], [ 90.878906, 50.401515 ], [ 91.230469, 50.401515 ], [ 91.230469, 50.513427 ], [ 91.582031, 50.513427 ], [ 91.582031, 50.625073 ], [ 91.933594, 50.625073 ], [ 91.933594, 50.736455 ], [ 92.636719, 50.736455 ], [ 92.636719, 50.625073 ], [ 92.988281, 50.625073 ], [ 92.988281, 50.513427 ], [ 94.218750, 50.513427 ], [ 94.218750, 50.401515 ], [ 94.394531, 50.401515 ], [ 94.394531, 50.289339 ], [ 94.570312, 50.289339 ], [ 94.570312, 50.064192 ], [ 95.097656, 50.064192 ], [ 95.097656, 49.951220 ], [ 95.976562, 49.951220 ], [ 95.976562, 49.837982 ], [ 96.679688, 49.837982 ], [ 96.679688, 49.724479 ], [ 97.382812, 49.724479 ], [ 97.382812, 49.837982 ], [ 97.558594, 49.837982 ], [ 97.558594, 49.951220 ], [ 97.734375, 49.951220 ], [ 97.734375, 50.064192 ], [ 97.910156, 50.064192 ], [ 97.910156, 50.176898 ], [ 98.085938, 50.176898 ], [ 98.085938, 50.289339 ], [ 98.261719, 50.289339 ], [ 98.261719, 50.513427 ], [ 98.085938, 50.513427 ], [ 98.085938, 50.736455 ], [ 97.910156, 50.736455 ], [ 97.910156, 51.069017 ], [ 98.085938, 51.069017 ], [ 98.085938, 51.289406 ], [ 98.261719, 51.289406 ], [ 98.261719, 51.508742 ], [ 98.437500, 51.508742 ], [ 98.437500, 51.727028 ], [ 98.613281, 51.727028 ], [ 98.613281, 51.944265 ], [ 99.140625, 51.944265 ], [ 99.140625, 51.835778 ], [ 99.492188, 51.835778 ], [ 99.492188, 51.727028 ], [ 99.843750, 51.727028 ], [ 99.843750, 51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.140625, 51.944265 ], [ 99.140625, 51.835778 ], [ 99.492188, 51.835778 ], [ 99.492188, 51.727028 ], [ 99.843750, 51.727028 ], [ 99.843750, 51.618017 ], [ 100.371094, 51.618017 ], [ 100.371094, 51.508742 ], [ 101.074219, 51.508742 ], [ 101.074219, 51.399206 ], [ 101.777344, 51.399206 ], [ 101.777344, 51.289406 ], [ 102.128906, 51.289406 ], [ 102.128906, 50.847573 ], [ 102.304688, 50.847573 ], [ 102.304688, 50.401515 ], [ 102.656250, 50.401515 ], [ 102.656250, 50.289339 ], [ 103.007812, 50.289339 ], [ 103.007812, 50.176898 ], [ 103.359375, 50.176898 ], [ 103.359375, 50.064192 ], [ 104.062500, 50.064192 ], [ 104.062500, 50.176898 ], [ 104.414062, 50.176898 ], [ 104.414062, 50.289339 ], [ 105.292969, 50.289339 ], [ 105.292969, 50.401515 ], [ 106.171875, 50.401515 ], [ 106.171875, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.176898 ], [ 107.226562, 50.176898 ], [ 107.226562, 50.064192 ], [ 107.402344, 50.064192 ], [ 107.402344, 49.951220 ], [ 107.753906, 49.951220 ], [ 107.753906, 49.837982 ], [ 107.929688, 49.837982 ], [ 107.929688, 49.724479 ], [ 108.105469, 49.724479 ], [ 108.105469, 49.496675 ], [ 108.281250, 49.496675 ], [ 108.281250, 49.267805 ], [ 109.863281, 49.267805 ], [ 109.863281, 49.152970 ], [ 111.093750, 49.152970 ], [ 111.093750, 49.267805 ], [ 111.445312, 49.267805 ], [ 111.445312, 49.382373 ], [ 112.324219, 49.382373 ], [ 112.324219, 49.496675 ], [ 113.027344, 49.496675 ], [ 113.027344, 49.610710 ], [ 113.203125, 49.610710 ], [ 113.203125, 49.724479 ], [ 113.554688, 49.724479 ], [ 113.554688, 49.837982 ], [ 113.730469, 49.837982 ], [ 113.730469, 49.951220 ], [ 113.906250, 49.951220 ], [ 113.906250, 50.064192 ], [ 114.257812, 50.064192 ], [ 114.257812, 50.176898 ], [ 114.433594, 50.176898 ], [ 114.433594, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 50.176898 ], [ 114.960938, 50.176898 ], [ 114.960938, 50.064192 ], [ 115.136719, 50.064192 ], [ 115.136719, 49.951220 ], [ 115.312500, 49.951220 ], [ 115.312500, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.724479 ], [ 116.542969, 49.724479 ], [ 116.542969, 49.496675 ], [ 116.367188, 49.496675 ], [ 116.367188, 49.267805 ], [ 116.191406, 49.267805 ], [ 116.191406, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 48.690960 ], [ 115.839844, 48.690960 ], [ 115.839844, 48.458352 ], [ 115.664062, 48.458352 ], [ 115.664062, 48.224673 ], [ 115.488281, 48.224673 ], [ 115.488281, 47.872144 ], [ 115.664062, 47.872144 ], [ 115.664062, 47.754098 ], [ 116.191406, 47.754098 ], [ 116.191406, 47.872144 ], [ 116.718750, 47.872144 ], [ 116.718750, 47.754098 ], [ 117.421875, 47.754098 ], [ 117.421875, 47.872144 ], [ 117.773438, 47.872144 ], [ 117.773438, 47.989922 ], [ 118.300781, 47.989922 ], [ 118.300781, 47.872144 ], [ 118.652344, 47.872144 ], [ 118.652344, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.635784 ], [ 119.003906, 47.635784 ], [ 119.003906, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.398349 ], [ 119.355469, 47.398349 ], [ 119.355469, 47.159840 ], [ 119.531250, 47.159840 ], [ 119.531250, 47.040182 ], [ 119.707031, 47.040182 ], [ 119.707031, 46.679594 ], [ 119.179688, 46.679594 ], [ 119.179688, 46.800059 ], [ 118.300781, 46.800059 ], [ 118.300781, 46.679594 ], [ 117.421875, 46.679594 ], [ 117.421875, 46.558860 ], [ 117.070312, 46.558860 ], [ 117.070312, 46.437857 ], [ 116.718750, 46.437857 ], [ 116.718750, 46.316584 ], [ 116.542969, 46.316584 ], [ 116.542969, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 45.951150 ], [ 116.191406, 45.951150 ], [ 116.191406, 45.706179 ], [ 115.839844, 45.706179 ], [ 115.839844, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.460131 ], [ 114.785156, 45.460131 ], [ 114.785156, 45.336702 ], [ 114.433594, 45.336702 ], [ 114.433594, 45.213004 ], [ 114.082031, 45.213004 ], [ 114.082031, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.964798 ], [ 113.554688, 44.964798 ], [ 113.554688, 44.840291 ], [ 112.851562, 44.840291 ], [ 112.851562, 44.964798 ], [ 111.972656, 44.964798 ], [ 111.972656, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.964798 ], [ 111.621094, 44.964798 ], [ 111.621094, 44.715514 ], [ 111.445312, 44.715514 ], [ 111.445312, 44.465151 ], [ 111.269531, 44.465151 ], [ 111.269531, 44.339565 ], [ 111.445312, 44.339565 ], [ 111.445312, 44.087585 ], [ 111.621094, 44.087585 ], [ 111.621094, 43.834527 ], [ 111.796875, 43.834527 ], [ 111.796875, 43.580391 ], [ 111.445312, 43.580391 ], [ 111.445312, 43.452919 ], [ 111.093750, 43.452919 ], [ 111.093750, 43.325178 ], [ 110.917969, 43.325178 ], [ 110.917969, 43.197167 ], [ 110.742188, 43.197167 ], [ 110.742188, 42.940339 ], [ 110.566406, 42.940339 ], [ 110.566406, 42.811522 ], [ 110.214844, 42.811522 ], [ 110.214844, 42.682435 ], [ 109.511719, 42.682435 ], [ 109.511719, 42.553080 ], [ 108.632812, 42.553080 ], [ 108.632812, 42.423457 ], [ 107.402344, 42.423457 ], [ 107.402344, 42.293564 ], [ 106.699219, 42.293564 ], [ 106.699219, 42.163403 ], [ 106.171875, 42.163403 ], [ 106.171875, 42.032974 ], [ 105.820312, 42.032974 ], [ 105.820312, 41.902277 ], [ 105.468750, 41.902277 ], [ 105.468750, 41.771312 ], [ 105.117188, 41.771312 ], [ 105.117188, 41.640078 ], [ 104.765625, 41.640078 ], [ 104.765625, 41.771312 ], [ 104.589844, 41.771312 ], [ 104.589844, 41.902277 ], [ 103.183594, 41.902277 ], [ 103.183594, 42.032974 ], [ 102.832031, 42.032974 ], [ 102.832031, 42.163403 ], [ 102.480469, 42.163403 ], [ 102.480469, 42.293564 ], [ 102.128906, 42.293564 ], [ 102.128906, 42.423457 ], [ 101.777344, 42.423457 ], [ 101.777344, 42.553080 ], [ 101.250000, 42.553080 ], [ 101.250000, 42.682435 ], [ 100.371094, 42.682435 ], [ 100.371094, 42.553080 ], [ 98.789062, 42.553080 ], [ 98.789062, 42.682435 ], [ 97.734375, 42.682435 ], [ 97.734375, 42.811522 ], [ 97.031250, 42.811522 ], [ 97.031250, 42.682435 ], [ 96.152344, 42.682435 ], [ 96.152344, 42.940339 ], [ 95.976562, 42.940339 ], [ 95.976562, 43.197167 ], [ 95.800781, 43.197167 ], [ 95.800781, 43.452919 ], [ 95.625000, 43.452919 ], [ 95.625000, 43.707594 ], [ 95.449219, 43.707594 ], [ 95.449219, 43.961191 ], [ 95.273438, 43.961191 ], [ 95.273438, 44.213710 ], [ 94.921875, 44.213710 ], [ 94.921875, 44.339565 ], [ 94.570312, 44.339565 ], [ 94.570312, 44.465151 ], [ 94.218750, 44.465151 ], [ 94.218750, 44.590467 ], [ 94.042969, 44.590467 ], [ 94.042969, 44.715514 ], [ 93.867188, 44.715514 ], [ 93.867188, 44.840291 ], [ 93.515625, 44.840291 ], [ 93.515625, 44.964798 ], [ 92.636719, 44.964798 ], [ 92.636719, 45.089036 ], [ 91.757812, 45.089036 ], [ 91.757812, 45.213004 ], [ 91.054688, 45.213004 ], [ 91.054688, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.527344, 45.583290 ], [ 90.527344, 45.828799 ], [ 90.703125, 45.828799 ], [ 90.703125, 46.316584 ], [ 90.878906, 46.316584 ], [ 90.878906, 46.679594 ], [ 91.054688, 46.679594 ], [ 91.054688, 46.920255 ], [ 90.878906, 46.920255 ], [ 90.878906, 47.159840 ], [ 90.703125, 47.159840 ], [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.635784 ], [ 90.000000, 47.635784 ], [ 90.000000, 47.754098 ], [ 89.648438, 47.754098 ], [ 89.648438, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 89.121094, 47.989922 ], [ 89.121094, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.648438, 49.724479 ], [ 89.648438, 49.837982 ], [ 89.824219, 49.837982 ], [ 89.824219, 49.951220 ], [ 90.175781, 49.951220 ], [ 90.175781, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 50.176898 ], [ 90.703125, 50.176898 ], [ 90.703125, 50.289339 ], [ 90.878906, 50.289339 ], [ 90.878906, 50.401515 ], [ 91.230469, 50.401515 ], [ 91.230469, 50.513427 ], [ 91.582031, 50.513427 ], [ 91.582031, 50.625073 ], [ 91.933594, 50.625073 ], [ 91.933594, 50.736455 ], [ 92.636719, 50.736455 ], [ 92.636719, 50.625073 ], [ 92.988281, 50.625073 ], [ 92.988281, 50.513427 ], [ 94.218750, 50.513427 ], [ 94.218750, 50.401515 ], [ 94.394531, 50.401515 ], [ 94.394531, 50.289339 ], [ 94.570312, 50.289339 ], [ 94.570312, 50.064192 ], [ 95.097656, 50.064192 ], [ 95.097656, 49.951220 ], [ 95.976562, 49.951220 ], [ 95.976562, 49.837982 ], [ 96.679688, 49.837982 ], [ 96.679688, 49.724479 ], [ 97.382812, 49.724479 ], [ 97.382812, 49.837982 ], [ 97.558594, 49.837982 ], [ 97.558594, 49.951220 ], [ 97.734375, 49.951220 ], [ 97.734375, 50.064192 ], [ 97.910156, 50.064192 ], [ 97.910156, 50.176898 ], [ 98.085938, 50.176898 ], [ 98.085938, 50.289339 ], [ 98.261719, 50.289339 ], [ 98.261719, 50.513427 ], [ 98.085938, 50.513427 ], [ 98.085938, 50.736455 ], [ 97.910156, 50.736455 ], [ 97.910156, 51.069017 ], [ 98.085938, 51.069017 ], [ 98.085938, 51.289406 ], [ 98.261719, 51.289406 ], [ 98.261719, 51.508742 ], [ 98.437500, 51.508742 ], [ 98.437500, 51.727028 ], [ 98.613281, 51.727028 ], [ 98.613281, 51.944265 ], [ 99.140625, 51.944265 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.101562, 53.225768 ], [ 124.628906, 53.225768 ], [ 124.628906, 53.120405 ], [ 124.980469, 53.120405 ], [ 124.980469, 53.014783 ], [ 125.332031, 53.014783 ], [ 125.332031, 52.908902 ], [ 125.683594, 52.908902 ], [ 125.683594, 52.802761 ], [ 125.859375, 52.802761 ], [ 125.859375, 52.589701 ], [ 126.035156, 52.589701 ], [ 126.035156, 52.375599 ], [ 126.210938, 52.375599 ], [ 126.210938, 52.160455 ], [ 126.386719, 52.160455 ], [ 126.386719, 51.944265 ], [ 126.562500, 51.944265 ], [ 126.562500, 51.727028 ], [ 126.738281, 51.727028 ], [ 126.738281, 51.508742 ], [ 126.914062, 51.508742 ], [ 126.914062, 51.179343 ], [ 127.089844, 51.179343 ], [ 127.089844, 50.847573 ], [ 127.265625, 50.847573 ], [ 127.265625, 50.401515 ], [ 127.441406, 50.401515 ], [ 127.441406, 49.951220 ], [ 127.617188, 49.951220 ], [ 127.617188, 49.724479 ], [ 127.968750, 49.724479 ], [ 127.968750, 49.610710 ], [ 128.847656, 49.610710 ], [ 128.847656, 49.496675 ], [ 129.375000, 49.496675 ], [ 129.375000, 49.382373 ], [ 129.550781, 49.382373 ], [ 129.550781, 49.267805 ], [ 129.726562, 49.267805 ], [ 129.726562, 49.152970 ], [ 129.902344, 49.152970 ], [ 129.902344, 49.037868 ], [ 130.078125, 49.037868 ], [ 130.078125, 48.922499 ], [ 130.253906, 48.922499 ], [ 130.253906, 48.806863 ], [ 130.429688, 48.806863 ], [ 130.429688, 48.690960 ], [ 130.605469, 48.690960 ], [ 130.605469, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 130.957031, 47.989922 ], [ 130.957031, 47.754098 ], [ 132.714844, 47.754098 ], [ 132.714844, 47.872144 ], [ 132.890625, 47.872144 ], [ 132.890625, 47.989922 ], [ 133.242188, 47.989922 ], [ 133.242188, 48.107431 ], [ 133.417969, 48.107431 ], [ 133.417969, 48.224673 ], [ 133.945312, 48.224673 ], [ 133.945312, 48.341646 ], [ 134.648438, 48.341646 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 48.224673 ], [ 134.824219, 48.224673 ], [ 134.824219, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 46.800059 ], [ 133.945312, 46.800059 ], [ 133.945312, 46.316584 ], [ 133.769531, 46.316584 ], [ 133.769531, 45.951150 ], [ 133.593750, 45.951150 ], [ 133.593750, 45.706179 ], [ 133.417969, 45.706179 ], [ 133.417969, 45.460131 ], [ 133.242188, 45.460131 ], [ 133.242188, 45.213004 ], [ 133.066406, 45.213004 ], [ 133.066406, 45.089036 ], [ 132.714844, 45.089036 ], [ 132.714844, 45.213004 ], [ 132.011719, 45.213004 ], [ 132.011719, 45.336702 ], [ 131.835938, 45.336702 ], [ 131.835938, 45.213004 ], [ 131.484375, 45.213004 ], [ 131.484375, 45.089036 ], [ 131.132812, 45.089036 ], [ 131.132812, 44.964798 ], [ 130.957031, 44.964798 ], [ 130.957031, 44.715514 ], [ 131.132812, 44.715514 ], [ 131.132812, 44.213710 ], [ 131.308594, 44.213710 ], [ 131.308594, 43.452919 ], [ 131.132812, 43.452919 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 130.429688, 42.423457 ], [ 130.429688, 42.682435 ], [ 130.253906, 42.682435 ], [ 130.253906, 42.811522 ], [ 129.902344, 42.811522 ], [ 129.902344, 42.682435 ], [ 129.726562, 42.682435 ], [ 129.726562, 42.423457 ], [ 129.375000, 42.423457 ], [ 129.375000, 42.293564 ], [ 128.847656, 42.293564 ], [ 128.847656, 42.163403 ], [ 128.320312, 42.163403 ], [ 128.320312, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.771312 ], [ 128.144531, 41.771312 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 126.738281, 41.640078 ], [ 126.738281, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.244772 ], [ 126.386719, 41.244772 ], [ 126.386719, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.713956 ], [ 125.332031, 40.713956 ], [ 125.332031, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.289062, 40.847060 ], [ 121.289062, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.580585 ], [ 120.761719, 40.580585 ], [ 120.761719, 40.446947 ], [ 120.410156, 40.446947 ], [ 120.410156, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.648438, 47.872144 ], [ 89.648438, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.517201 ], [ 90.527344, 47.517201 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.159840 ], [ 90.878906, 47.159840 ], [ 90.878906, 46.920255 ], [ 91.054688, 46.920255 ], [ 91.054688, 46.679594 ], [ 90.878906, 46.679594 ], [ 90.878906, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.828799 ], [ 90.527344, 45.828799 ], [ 90.527344, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 91.054688, 45.336702 ], [ 91.054688, 45.213004 ], [ 91.757812, 45.213004 ], [ 91.757812, 45.089036 ], [ 92.636719, 45.089036 ], [ 92.636719, 44.964798 ], [ 93.515625, 44.964798 ], [ 93.515625, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.715514 ], [ 94.042969, 44.715514 ], [ 94.042969, 44.590467 ], [ 94.218750, 44.590467 ], [ 94.218750, 44.465151 ], [ 94.570312, 44.465151 ], [ 94.570312, 44.339565 ], [ 94.921875, 44.339565 ], [ 94.921875, 44.213710 ], [ 95.273438, 44.213710 ], [ 95.273438, 43.961191 ], [ 95.449219, 43.961191 ], [ 95.449219, 43.707594 ], [ 95.625000, 43.707594 ], [ 95.625000, 43.452919 ], [ 95.800781, 43.452919 ], [ 95.800781, 43.197167 ], [ 95.976562, 43.197167 ], [ 95.976562, 42.940339 ], [ 96.152344, 42.940339 ], [ 96.152344, 42.682435 ], [ 97.031250, 42.682435 ], [ 97.031250, 42.811522 ], [ 97.734375, 42.811522 ], [ 97.734375, 42.682435 ], [ 98.789062, 42.682435 ], [ 98.789062, 42.553080 ], [ 100.371094, 42.553080 ], [ 100.371094, 42.682435 ], [ 101.250000, 42.682435 ], [ 101.250000, 42.553080 ], [ 101.777344, 42.553080 ], [ 101.777344, 42.423457 ], [ 102.128906, 42.423457 ], [ 102.128906, 42.293564 ], [ 102.480469, 42.293564 ], [ 102.480469, 42.163403 ], [ 102.832031, 42.163403 ], [ 102.832031, 42.032974 ], [ 103.183594, 42.032974 ], [ 103.183594, 41.902277 ], [ 104.589844, 41.902277 ], [ 104.589844, 41.771312 ], [ 104.765625, 41.771312 ], [ 104.765625, 41.640078 ], [ 105.117188, 41.640078 ], [ 105.117188, 41.771312 ], [ 105.468750, 41.771312 ], [ 105.468750, 41.902277 ], [ 105.820312, 41.902277 ], [ 105.820312, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 42.163403 ], [ 106.699219, 42.163403 ], [ 106.699219, 42.293564 ], [ 107.402344, 42.293564 ], [ 107.402344, 42.423457 ], [ 108.632812, 42.423457 ], [ 108.632812, 42.553080 ], [ 109.511719, 42.553080 ], [ 109.511719, 42.682435 ], [ 110.214844, 42.682435 ], [ 110.214844, 42.811522 ], [ 110.566406, 42.811522 ], [ 110.566406, 42.940339 ], [ 110.742188, 42.940339 ], [ 110.742188, 43.197167 ], [ 110.917969, 43.197167 ], [ 110.917969, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.452919 ], [ 111.445312, 43.452919 ], [ 111.445312, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 43.834527 ], [ 111.621094, 43.834527 ], [ 111.621094, 44.087585 ], [ 111.445312, 44.087585 ], [ 111.445312, 44.339565 ], [ 111.269531, 44.339565 ], [ 111.269531, 44.465151 ], [ 111.445312, 44.465151 ], [ 111.445312, 44.715514 ], [ 111.621094, 44.715514 ], [ 111.621094, 44.964798 ], [ 111.796875, 44.964798 ], [ 111.796875, 45.089036 ], [ 111.972656, 45.089036 ], [ 111.972656, 44.964798 ], [ 112.851562, 44.964798 ], [ 112.851562, 44.840291 ], [ 113.554688, 44.840291 ], [ 113.554688, 44.964798 ], [ 113.906250, 44.964798 ], [ 113.906250, 45.089036 ], [ 114.082031, 45.089036 ], [ 114.082031, 45.213004 ], [ 114.433594, 45.213004 ], [ 114.433594, 45.336702 ], [ 114.785156, 45.336702 ], [ 114.785156, 45.460131 ], [ 115.312500, 45.460131 ], [ 115.312500, 45.583290 ], [ 115.839844, 45.583290 ], [ 115.839844, 45.706179 ], [ 116.191406, 45.706179 ], [ 116.191406, 45.951150 ], [ 116.367188, 45.951150 ], [ 116.367188, 46.073231 ], [ 116.542969, 46.073231 ], [ 116.542969, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.437857 ], [ 117.070312, 46.437857 ], [ 117.070312, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.679594 ], [ 118.300781, 46.679594 ], [ 118.300781, 46.800059 ], [ 119.179688, 46.800059 ], [ 119.179688, 46.679594 ], [ 119.707031, 46.679594 ], [ 119.707031, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.159840 ], [ 119.355469, 47.159840 ], [ 119.355469, 47.398349 ], [ 119.179688, 47.398349 ], [ 119.179688, 47.517201 ], [ 119.003906, 47.517201 ], [ 119.003906, 47.635784 ], [ 118.828125, 47.635784 ], [ 118.828125, 47.754098 ], [ 118.652344, 47.754098 ], [ 118.652344, 47.872144 ], [ 118.300781, 47.872144 ], [ 118.300781, 47.989922 ], [ 117.773438, 47.989922 ], [ 117.773438, 47.872144 ], [ 117.421875, 47.872144 ], [ 117.421875, 47.754098 ], [ 116.718750, 47.754098 ], [ 116.718750, 47.872144 ], [ 116.191406, 47.872144 ], [ 116.191406, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.872144 ], [ 115.488281, 47.872144 ], [ 115.488281, 48.224673 ], [ 115.664062, 48.224673 ], [ 115.664062, 48.458352 ], [ 115.839844, 48.458352 ], [ 115.839844, 48.690960 ], [ 116.015625, 48.690960 ], [ 116.015625, 48.922499 ], [ 116.191406, 48.922499 ], [ 116.191406, 49.267805 ], [ 116.367188, 49.267805 ], [ 116.367188, 49.496675 ], [ 116.542969, 49.496675 ], [ 116.542969, 49.724479 ], [ 116.718750, 49.724479 ], [ 116.718750, 49.837982 ], [ 116.894531, 49.837982 ], [ 116.894531, 49.724479 ], [ 117.246094, 49.724479 ], [ 117.246094, 49.610710 ], [ 117.597656, 49.610710 ], [ 117.597656, 49.496675 ], [ 118.125000, 49.496675 ], [ 118.125000, 49.610710 ], [ 118.476562, 49.610710 ], [ 118.476562, 49.724479 ], [ 118.652344, 49.724479 ], [ 118.652344, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 49.951220 ], [ 119.179688, 49.951220 ], [ 119.179688, 50.064192 ], [ 119.355469, 50.064192 ], [ 119.355469, 50.625073 ], [ 119.531250, 50.625073 ], [ 119.531250, 50.847573 ], [ 119.707031, 50.847573 ], [ 119.707031, 51.069017 ], [ 119.882812, 51.069017 ], [ 119.882812, 51.289406 ], [ 120.058594, 51.289406 ], [ 120.058594, 51.508742 ], [ 120.234375, 51.508742 ], [ 120.234375, 51.618017 ], [ 120.410156, 51.618017 ], [ 120.410156, 51.727028 ], [ 120.585938, 51.727028 ], [ 120.585938, 51.835778 ], [ 120.761719, 51.835778 ], [ 120.761719, 52.482780 ], [ 120.585938, 52.482780 ], [ 120.585938, 52.589701 ], [ 120.410156, 52.589701 ], [ 120.410156, 52.696361 ], [ 120.234375, 52.696361 ], [ 120.234375, 52.802761 ], [ 120.410156, 52.802761 ], [ 120.410156, 52.908902 ], [ 120.585938, 52.908902 ], [ 120.585938, 53.014783 ], [ 120.761719, 53.014783 ], [ 120.761719, 53.120405 ], [ 120.937500, 53.120405 ], [ 120.937500, 53.225768 ], [ 121.289062, 53.225768 ], [ 121.289062, 53.330873 ], [ 121.992188, 53.330873 ], [ 121.992188, 53.435719 ], [ 123.750000, 53.435719 ], [ 123.750000, 53.330873 ], [ 124.101562, 53.330873 ], [ 124.101562, 53.225768 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.750000, 53.435719 ], [ 123.750000, 53.330873 ], [ 124.101562, 53.330873 ], [ 124.101562, 53.225768 ], [ 124.628906, 53.225768 ], [ 124.628906, 53.120405 ], [ 124.980469, 53.120405 ], [ 124.980469, 53.014783 ], [ 125.332031, 53.014783 ], [ 125.332031, 52.908902 ], [ 125.683594, 52.908902 ], [ 125.683594, 52.802761 ], [ 125.859375, 52.802761 ], [ 125.859375, 52.589701 ], [ 126.035156, 52.589701 ], [ 126.035156, 52.375599 ], [ 126.210938, 52.375599 ], [ 126.210938, 52.160455 ], [ 126.386719, 52.160455 ], [ 126.386719, 51.944265 ], [ 126.562500, 51.944265 ], [ 126.562500, 51.727028 ], [ 126.738281, 51.727028 ], [ 126.738281, 51.508742 ], [ 126.914062, 51.508742 ], [ 126.914062, 51.179343 ], [ 127.089844, 51.179343 ], [ 127.089844, 50.847573 ], [ 127.265625, 50.847573 ], [ 127.265625, 50.401515 ], [ 127.441406, 50.401515 ], [ 127.441406, 49.951220 ], [ 127.617188, 49.951220 ], [ 127.617188, 49.724479 ], [ 127.968750, 49.724479 ], [ 127.968750, 49.610710 ], [ 128.847656, 49.610710 ], [ 128.847656, 49.496675 ], [ 129.375000, 49.496675 ], [ 129.375000, 49.382373 ], [ 129.550781, 49.382373 ], [ 129.550781, 49.267805 ], [ 129.726562, 49.267805 ], [ 129.726562, 49.152970 ], [ 129.902344, 49.152970 ], [ 129.902344, 49.037868 ], [ 130.078125, 49.037868 ], [ 130.078125, 48.922499 ], [ 130.253906, 48.922499 ], [ 130.253906, 48.806863 ], [ 130.429688, 48.806863 ], [ 130.429688, 48.690960 ], [ 130.605469, 48.690960 ], [ 130.605469, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 130.957031, 47.989922 ], [ 130.957031, 47.754098 ], [ 132.714844, 47.754098 ], [ 132.714844, 47.872144 ], [ 132.890625, 47.872144 ], [ 132.890625, 47.989922 ], [ 133.242188, 47.989922 ], [ 133.242188, 48.107431 ], [ 133.417969, 48.107431 ], [ 133.417969, 48.224673 ], [ 133.945312, 48.224673 ], [ 133.945312, 48.341646 ], [ 134.648438, 48.341646 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 48.224673 ], [ 134.824219, 48.224673 ], [ 134.824219, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 46.800059 ], [ 133.945312, 46.800059 ], [ 133.945312, 46.316584 ], [ 133.769531, 46.316584 ], [ 133.769531, 45.951150 ], [ 133.593750, 45.951150 ], [ 133.593750, 45.706179 ], [ 133.417969, 45.706179 ], [ 133.417969, 45.460131 ], [ 133.242188, 45.460131 ], [ 133.242188, 45.213004 ], [ 133.066406, 45.213004 ], [ 133.066406, 45.089036 ], [ 132.714844, 45.089036 ], [ 132.714844, 45.213004 ], [ 132.011719, 45.213004 ], [ 132.011719, 45.336702 ], [ 131.835938, 45.336702 ], [ 131.835938, 45.213004 ], [ 131.484375, 45.213004 ], [ 131.484375, 45.089036 ], [ 131.132812, 45.089036 ], [ 131.132812, 44.964798 ], [ 130.957031, 44.964798 ], [ 130.957031, 44.715514 ], [ 131.132812, 44.715514 ], [ 131.132812, 44.213710 ], [ 131.308594, 44.213710 ], [ 131.308594, 43.452919 ], [ 131.132812, 43.452919 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 130.429688, 42.423457 ], [ 130.429688, 42.682435 ], [ 130.253906, 42.682435 ], [ 130.253906, 42.811522 ], [ 129.902344, 42.811522 ], [ 129.902344, 42.682435 ], [ 129.726562, 42.682435 ], [ 129.726562, 42.423457 ], [ 129.375000, 42.423457 ], [ 129.375000, 42.293564 ], [ 128.847656, 42.293564 ], [ 128.847656, 42.163403 ], [ 128.320312, 42.163403 ], [ 128.320312, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.771312 ], [ 128.144531, 41.771312 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 126.738281, 41.640078 ], [ 126.738281, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.244772 ], [ 126.386719, 41.244772 ], [ 126.386719, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.713956 ], [ 125.332031, 40.713956 ], [ 125.332031, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.289062, 40.847060 ], [ 121.289062, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.580585 ], [ 120.761719, 40.580585 ], [ 120.761719, 40.446947 ], [ 120.410156, 40.446947 ], [ 120.410156, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.648438, 47.872144 ], [ 89.648438, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.517201 ], [ 90.527344, 47.517201 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.159840 ], [ 90.878906, 47.159840 ], [ 90.878906, 46.920255 ], [ 91.054688, 46.920255 ], [ 91.054688, 46.679594 ], [ 90.878906, 46.679594 ], [ 90.878906, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.828799 ], [ 90.527344, 45.828799 ], [ 90.527344, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 91.054688, 45.336702 ], [ 91.054688, 45.213004 ], [ 91.757812, 45.213004 ], [ 91.757812, 45.089036 ], [ 92.636719, 45.089036 ], [ 92.636719, 44.964798 ], [ 93.515625, 44.964798 ], [ 93.515625, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.715514 ], [ 94.042969, 44.715514 ], [ 94.042969, 44.590467 ], [ 94.218750, 44.590467 ], [ 94.218750, 44.465151 ], [ 94.570312, 44.465151 ], [ 94.570312, 44.339565 ], [ 94.921875, 44.339565 ], [ 94.921875, 44.213710 ], [ 95.273438, 44.213710 ], [ 95.273438, 43.961191 ], [ 95.449219, 43.961191 ], [ 95.449219, 43.707594 ], [ 95.625000, 43.707594 ], [ 95.625000, 43.452919 ], [ 95.800781, 43.452919 ], [ 95.800781, 43.197167 ], [ 95.976562, 43.197167 ], [ 95.976562, 42.940339 ], [ 96.152344, 42.940339 ], [ 96.152344, 42.682435 ], [ 97.031250, 42.682435 ], [ 97.031250, 42.811522 ], [ 97.734375, 42.811522 ], [ 97.734375, 42.682435 ], [ 98.789062, 42.682435 ], [ 98.789062, 42.553080 ], [ 100.371094, 42.553080 ], [ 100.371094, 42.682435 ], [ 101.250000, 42.682435 ], [ 101.250000, 42.553080 ], [ 101.777344, 42.553080 ], [ 101.777344, 42.423457 ], [ 102.128906, 42.423457 ], [ 102.128906, 42.293564 ], [ 102.480469, 42.293564 ], [ 102.480469, 42.163403 ], [ 102.832031, 42.163403 ], [ 102.832031, 42.032974 ], [ 103.183594, 42.032974 ], [ 103.183594, 41.902277 ], [ 104.589844, 41.902277 ], [ 104.589844, 41.771312 ], [ 104.765625, 41.771312 ], [ 104.765625, 41.640078 ], [ 105.117188, 41.640078 ], [ 105.117188, 41.771312 ], [ 105.468750, 41.771312 ], [ 105.468750, 41.902277 ], [ 105.820312, 41.902277 ], [ 105.820312, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 42.163403 ], [ 106.699219, 42.163403 ], [ 106.699219, 42.293564 ], [ 107.402344, 42.293564 ], [ 107.402344, 42.423457 ], [ 108.632812, 42.423457 ], [ 108.632812, 42.553080 ], [ 109.511719, 42.553080 ], [ 109.511719, 42.682435 ], [ 110.214844, 42.682435 ], [ 110.214844, 42.811522 ], [ 110.566406, 42.811522 ], [ 110.566406, 42.940339 ], [ 110.742188, 42.940339 ], [ 110.742188, 43.197167 ], [ 110.917969, 43.197167 ], [ 110.917969, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.452919 ], [ 111.445312, 43.452919 ], [ 111.445312, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 43.834527 ], [ 111.621094, 43.834527 ], [ 111.621094, 44.087585 ], [ 111.445312, 44.087585 ], [ 111.445312, 44.339565 ], [ 111.269531, 44.339565 ], [ 111.269531, 44.465151 ], [ 111.445312, 44.465151 ], [ 111.445312, 44.715514 ], [ 111.621094, 44.715514 ], [ 111.621094, 44.964798 ], [ 111.796875, 44.964798 ], [ 111.796875, 45.089036 ], [ 111.972656, 45.089036 ], [ 111.972656, 44.964798 ], [ 112.851562, 44.964798 ], [ 112.851562, 44.840291 ], [ 113.554688, 44.840291 ], [ 113.554688, 44.964798 ], [ 113.906250, 44.964798 ], [ 113.906250, 45.089036 ], [ 114.082031, 45.089036 ], [ 114.082031, 45.213004 ], [ 114.433594, 45.213004 ], [ 114.433594, 45.336702 ], [ 114.785156, 45.336702 ], [ 114.785156, 45.460131 ], [ 115.312500, 45.460131 ], [ 115.312500, 45.583290 ], [ 115.839844, 45.583290 ], [ 115.839844, 45.706179 ], [ 116.191406, 45.706179 ], [ 116.191406, 45.951150 ], [ 116.367188, 45.951150 ], [ 116.367188, 46.073231 ], [ 116.542969, 46.073231 ], [ 116.542969, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.437857 ], [ 117.070312, 46.437857 ], [ 117.070312, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.679594 ], [ 118.300781, 46.679594 ], [ 118.300781, 46.800059 ], [ 119.179688, 46.800059 ], [ 119.179688, 46.679594 ], [ 119.707031, 46.679594 ], [ 119.707031, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.159840 ], [ 119.355469, 47.159840 ], [ 119.355469, 47.398349 ], [ 119.179688, 47.398349 ], [ 119.179688, 47.517201 ], [ 119.003906, 47.517201 ], [ 119.003906, 47.635784 ], [ 118.828125, 47.635784 ], [ 118.828125, 47.754098 ], [ 118.652344, 47.754098 ], [ 118.652344, 47.872144 ], [ 118.300781, 47.872144 ], [ 118.300781, 47.989922 ], [ 117.773438, 47.989922 ], [ 117.773438, 47.872144 ], [ 117.421875, 47.872144 ], [ 117.421875, 47.754098 ], [ 116.718750, 47.754098 ], [ 116.718750, 47.872144 ], [ 116.191406, 47.872144 ], [ 116.191406, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.872144 ], [ 115.488281, 47.872144 ], [ 115.488281, 48.224673 ], [ 115.664062, 48.224673 ], [ 115.664062, 48.458352 ], [ 115.839844, 48.458352 ], [ 115.839844, 48.690960 ], [ 116.015625, 48.690960 ], [ 116.015625, 48.922499 ], [ 116.191406, 48.922499 ], [ 116.191406, 49.267805 ], [ 116.367188, 49.267805 ], [ 116.367188, 49.496675 ], [ 116.542969, 49.496675 ], [ 116.542969, 49.724479 ], [ 116.718750, 49.724479 ], [ 116.718750, 49.837982 ], [ 116.894531, 49.837982 ], [ 116.894531, 49.724479 ], [ 117.246094, 49.724479 ], [ 117.246094, 49.610710 ], [ 117.597656, 49.610710 ], [ 117.597656, 49.496675 ], [ 118.125000, 49.496675 ], [ 118.125000, 49.610710 ], [ 118.476562, 49.610710 ], [ 118.476562, 49.724479 ], [ 118.652344, 49.724479 ], [ 118.652344, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 49.951220 ], [ 119.179688, 49.951220 ], [ 119.179688, 50.064192 ], [ 119.355469, 50.064192 ], [ 119.355469, 50.625073 ], [ 119.531250, 50.625073 ], [ 119.531250, 50.847573 ], [ 119.707031, 50.847573 ], [ 119.707031, 51.069017 ], [ 119.882812, 51.069017 ], [ 119.882812, 51.289406 ], [ 120.058594, 51.289406 ], [ 120.058594, 51.508742 ], [ 120.234375, 51.508742 ], [ 120.234375, 51.618017 ], [ 120.410156, 51.618017 ], [ 120.410156, 51.727028 ], [ 120.585938, 51.727028 ], [ 120.585938, 51.835778 ], [ 120.761719, 51.835778 ], [ 120.761719, 52.482780 ], [ 120.585938, 52.482780 ], [ 120.585938, 52.589701 ], [ 120.410156, 52.589701 ], [ 120.410156, 52.696361 ], [ 120.234375, 52.696361 ], [ 120.234375, 52.802761 ], [ 120.410156, 52.802761 ], [ 120.410156, 52.908902 ], [ 120.585938, 52.908902 ], [ 120.585938, 53.014783 ], [ 120.761719, 53.014783 ], [ 120.761719, 53.120405 ], [ 120.937500, 53.120405 ], [ 120.937500, 53.225768 ], [ 121.289062, 53.225768 ], [ 121.289062, 53.330873 ], [ 121.992188, 53.330873 ], [ 121.992188, 53.435719 ], [ 123.750000, 53.435719 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.429688, 42.423457 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.293564 ], [ 130.781250, 42.293564 ], [ 130.781250, 42.163403 ], [ 130.253906, 42.163403 ], [ 130.253906, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.902277 ], [ 129.902344, 41.902277 ], [ 129.902344, 41.771312 ], [ 129.726562, 41.771312 ], [ 129.726562, 40.847060 ], [ 129.550781, 40.847060 ], [ 129.550781, 40.713956 ], [ 129.199219, 40.713956 ], [ 129.199219, 40.580585 ], [ 129.023438, 40.580585 ], [ 129.023438, 40.313043 ], [ 124.980469, 40.313043 ], [ 124.980469, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.580585 ], [ 125.332031, 40.580585 ], [ 125.332031, 40.713956 ], [ 125.683594, 40.713956 ], [ 125.683594, 40.847060 ], [ 125.859375, 40.847060 ], [ 125.859375, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 41.112469 ], [ 126.386719, 41.112469 ], [ 126.386719, 41.244772 ], [ 126.562500, 41.244772 ], [ 126.562500, 41.508577 ], [ 126.738281, 41.508577 ], [ 126.738281, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.771312 ], [ 127.968750, 41.771312 ], [ 127.968750, 42.032974 ], [ 128.320312, 42.032974 ], [ 128.320312, 42.163403 ], [ 128.847656, 42.163403 ], [ 128.847656, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.423457 ], [ 129.726562, 42.423457 ], [ 129.726562, 42.682435 ], [ 129.902344, 42.682435 ], [ 129.902344, 42.811522 ], [ 130.253906, 42.811522 ], [ 130.253906, 42.682435 ], [ 130.429688, 42.682435 ], [ 130.429688, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.253906, 42.811522 ], [ 130.253906, 42.682435 ], [ 130.429688, 42.682435 ], [ 130.429688, 42.423457 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.293564 ], [ 130.781250, 42.293564 ], [ 130.781250, 42.163403 ], [ 130.253906, 42.163403 ], [ 130.253906, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.902277 ], [ 129.902344, 41.902277 ], [ 129.902344, 41.771312 ], [ 129.726562, 41.771312 ], [ 129.726562, 40.847060 ], [ 129.550781, 40.847060 ], [ 129.550781, 40.713956 ], [ 129.199219, 40.713956 ], [ 129.199219, 40.580585 ], [ 129.023438, 40.580585 ], [ 129.023438, 40.313043 ], [ 124.980469, 40.313043 ], [ 124.980469, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.580585 ], [ 125.332031, 40.580585 ], [ 125.332031, 40.713956 ], [ 125.683594, 40.713956 ], [ 125.683594, 40.847060 ], [ 125.859375, 40.847060 ], [ 125.859375, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 41.112469 ], [ 126.386719, 41.112469 ], [ 126.386719, 41.244772 ], [ 126.562500, 41.244772 ], [ 126.562500, 41.508577 ], [ 126.738281, 41.508577 ], [ 126.738281, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.771312 ], [ 127.968750, 41.771312 ], [ 127.968750, 42.032974 ], [ 128.320312, 42.032974 ], [ 128.320312, 42.163403 ], [ 128.847656, 42.163403 ], [ 128.847656, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.423457 ], [ 129.726562, 42.423457 ], [ 129.726562, 42.682435 ], [ 129.902344, 42.682435 ], [ 129.902344, 42.811522 ], [ 130.253906, 42.811522 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.765625, 77.579959 ], [ 104.941406, 77.579959 ], [ 104.941406, 77.542096 ], [ 105.292969, 77.542096 ], [ 105.292969, 77.504119 ], [ 105.468750, 77.504119 ], [ 105.468750, 77.466028 ], [ 105.644531, 77.466028 ], [ 105.644531, 77.427824 ], [ 105.820312, 77.427824 ], [ 105.820312, 77.389504 ], [ 105.996094, 77.389504 ], [ 105.996094, 77.351070 ], [ 105.820312, 77.351070 ], [ 105.820312, 77.312520 ], [ 105.644531, 77.312520 ], [ 105.644531, 77.273855 ], [ 105.468750, 77.273855 ], [ 105.468750, 77.235074 ], [ 105.292969, 77.235074 ], [ 105.292969, 77.196176 ], [ 105.117188, 77.196176 ], [ 105.117188, 77.157163 ], [ 104.941406, 77.157163 ], [ 104.941406, 77.078784 ], [ 105.468750, 77.078784 ], [ 105.468750, 77.039418 ], [ 106.171875, 77.039418 ], [ 106.171875, 76.999935 ], [ 106.699219, 76.999935 ], [ 106.699219, 76.960334 ], [ 107.050781, 76.960334 ], [ 107.050781, 76.720223 ], [ 107.226562, 76.720223 ], [ 107.226562, 76.475773 ], [ 107.402344, 76.475773 ], [ 107.402344, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.598545 ], [ 107.753906, 76.598545 ], [ 107.753906, 76.639226 ], [ 107.929688, 76.639226 ], [ 107.929688, 76.679785 ], [ 108.105469, 76.679785 ], [ 108.105469, 76.720223 ], [ 111.093750, 76.720223 ], [ 111.093750, 76.679785 ], [ 111.269531, 76.679785 ], [ 111.269531, 76.639226 ], [ 111.445312, 76.639226 ], [ 111.445312, 76.598545 ], [ 111.621094, 76.598545 ], [ 111.621094, 76.557743 ], [ 111.796875, 76.557743 ], [ 111.796875, 76.516819 ], [ 111.972656, 76.516819 ], [ 111.972656, 76.475773 ], [ 112.324219, 76.475773 ], [ 112.324219, 76.434604 ], [ 112.500000, 76.434604 ], [ 112.500000, 76.393312 ], [ 112.675781, 76.393312 ], [ 112.675781, 76.351896 ], [ 112.851562, 76.351896 ], [ 112.851562, 76.310358 ], [ 113.027344, 76.310358 ], [ 113.027344, 76.268695 ], [ 113.203125, 76.268695 ], [ 113.203125, 76.226907 ], [ 113.378906, 76.226907 ], [ 113.378906, 76.142958 ], [ 113.554688, 76.142958 ], [ 113.554688, 76.058508 ], [ 113.730469, 76.058508 ], [ 113.730469, 75.973553 ], [ 113.906250, 75.973553 ], [ 113.906250, 75.888091 ], [ 114.082031, 75.888091 ], [ 114.082031, 75.584937 ], [ 113.906250, 75.584937 ], [ 113.906250, 75.275413 ], [ 113.730469, 75.275413 ], [ 113.730469, 75.230667 ], [ 113.554688, 75.230667 ], [ 113.554688, 75.185789 ], [ 113.378906, 75.185789 ], [ 113.378906, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 75.095633 ], [ 113.027344, 75.095633 ], [ 113.027344, 75.050354 ], [ 112.851562, 75.050354 ], [ 112.851562, 75.004940 ], [ 112.675781, 75.004940 ], [ 112.675781, 74.959392 ], [ 112.324219, 74.959392 ], [ 112.324219, 74.913708 ], [ 112.148438, 74.913708 ], [ 112.148438, 74.867889 ], [ 111.972656, 74.867889 ], [ 111.972656, 74.821934 ], [ 111.796875, 74.821934 ], [ 111.796875, 74.775843 ], [ 111.445312, 74.775843 ], [ 111.445312, 74.729615 ], [ 111.269531, 74.729615 ], [ 111.269531, 74.683250 ], [ 111.093750, 74.683250 ], [ 111.093750, 74.636748 ], [ 110.917969, 74.636748 ], [ 110.917969, 74.590108 ], [ 110.566406, 74.590108 ], [ 110.566406, 74.543330 ], [ 110.390625, 74.543330 ], [ 110.390625, 74.496413 ], [ 110.214844, 74.496413 ], [ 110.214844, 74.449358 ], [ 110.039062, 74.449358 ], [ 110.039062, 74.354828 ], [ 109.863281, 74.354828 ], [ 109.863281, 74.307353 ], [ 109.687500, 74.307353 ], [ 109.687500, 74.259738 ], [ 109.511719, 74.259738 ], [ 109.511719, 74.116047 ], [ 109.863281, 74.116047 ], [ 109.863281, 74.067866 ], [ 110.214844, 74.067866 ], [ 110.214844, 74.019543 ], [ 110.566406, 74.019543 ], [ 110.566406, 73.971078 ], [ 110.917969, 73.971078 ], [ 110.917969, 73.922469 ], [ 111.269531, 73.922469 ], [ 111.269531, 73.873717 ], [ 111.621094, 73.873717 ], [ 111.621094, 73.824820 ], [ 111.972656, 73.824820 ], [ 111.972656, 73.775780 ], [ 112.324219, 73.775780 ], [ 112.324219, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.873717 ], [ 112.851562, 73.873717 ], [ 112.851562, 73.922469 ], [ 113.027344, 73.922469 ], [ 113.027344, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.627789 ], [ 113.378906, 73.627789 ], [ 113.378906, 73.428424 ], [ 113.554688, 73.428424 ], [ 113.554688, 73.378215 ], [ 113.730469, 73.378215 ], [ 113.730469, 73.478485 ], [ 113.906250, 73.478485 ], [ 113.906250, 73.578167 ], [ 114.257812, 73.578167 ], [ 114.257812, 73.627789 ], [ 114.609375, 73.627789 ], [ 114.609375, 73.677264 ], [ 114.960938, 73.677264 ], [ 114.960938, 73.726595 ], [ 115.312500, 73.726595 ], [ 115.312500, 73.775780 ], [ 115.839844, 73.775780 ], [ 115.839844, 73.726595 ], [ 116.718750, 73.726595 ], [ 116.718750, 73.677264 ], [ 117.421875, 73.677264 ], [ 117.421875, 73.627789 ], [ 118.300781, 73.627789 ], [ 118.300781, 73.578167 ], [ 118.828125, 73.578167 ], [ 118.828125, 73.327858 ], [ 119.003906, 73.327858 ], [ 119.003906, 73.124945 ], [ 119.531250, 73.124945 ], [ 119.531250, 73.073844 ], [ 120.937500, 73.073844 ], [ 120.937500, 73.022592 ], [ 122.343750, 73.022592 ], [ 122.343750, 72.971189 ], [ 123.222656, 72.971189 ], [ 123.222656, 73.726595 ], [ 123.398438, 73.726595 ], [ 123.398438, 73.677264 ], [ 124.101562, 73.677264 ], [ 124.101562, 73.627789 ], [ 124.804688, 73.627789 ], [ 124.804688, 73.578167 ], [ 126.914062, 73.578167 ], [ 126.914062, 73.528399 ], [ 127.089844, 73.528399 ], [ 127.089844, 73.478485 ], [ 127.265625, 73.478485 ], [ 127.265625, 73.428424 ], [ 127.441406, 73.428424 ], [ 127.441406, 73.378215 ], [ 127.617188, 73.378215 ], [ 127.617188, 73.327858 ], [ 127.792969, 73.327858 ], [ 127.792969, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.175897 ], [ 128.144531, 73.175897 ], [ 128.144531, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.073844 ], [ 128.496094, 73.073844 ], [ 128.496094, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.867930 ], [ 128.847656, 72.867930 ], [ 128.847656, 72.554498 ], [ 129.023438, 72.554498 ], [ 129.023438, 72.289067 ], [ 128.847656, 72.289067 ], [ 128.847656, 72.181804 ], [ 128.671875, 72.181804 ], [ 128.671875, 72.019729 ], [ 128.496094, 72.019729 ], [ 128.496094, 71.910888 ], [ 128.671875, 71.910888 ], [ 128.671875, 71.801410 ], [ 128.847656, 71.801410 ], [ 128.847656, 71.691293 ], [ 129.023438, 71.691293 ], [ 129.023438, 71.580532 ], [ 129.199219, 71.580532 ], [ 129.199219, 71.469124 ], [ 129.375000, 71.469124 ], [ 129.375000, 71.357067 ], [ 129.550781, 71.357067 ], [ 129.550781, 71.244356 ], [ 129.726562, 71.244356 ], [ 129.726562, 71.130988 ], [ 129.902344, 71.130988 ], [ 129.902344, 71.074056 ], [ 130.253906, 71.074056 ], [ 130.253906, 71.016960 ], [ 130.429688, 71.016960 ], [ 130.429688, 70.959697 ], [ 130.605469, 70.959697 ], [ 130.605469, 70.902268 ], [ 130.957031, 70.902268 ], [ 130.957031, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.786910 ], [ 131.308594, 70.786910 ], [ 131.308594, 70.844673 ], [ 131.484375, 70.844673 ], [ 131.484375, 71.074056 ], [ 131.660156, 71.074056 ], [ 131.660156, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.524909 ], [ 132.011719, 71.524909 ], [ 132.011719, 71.746432 ], [ 132.187500, 71.746432 ], [ 132.187500, 71.801410 ], [ 132.363281, 71.801410 ], [ 132.363281, 71.746432 ], [ 132.714844, 71.746432 ], [ 132.714844, 71.691293 ], [ 132.890625, 71.691293 ], [ 132.890625, 71.635993 ], [ 133.066406, 71.635993 ], [ 133.066406, 71.580532 ], [ 133.242188, 71.580532 ], [ 133.242188, 71.524909 ], [ 133.593750, 71.524909 ], [ 133.593750, 71.469124 ], [ 133.769531, 71.469124 ], [ 133.769531, 71.413177 ], [ 134.296875, 71.413177 ], [ 134.296875, 71.469124 ], [ 134.648438, 71.469124 ], [ 134.648438, 71.524909 ], [ 135.000000, 71.524909 ], [ 135.000000, 71.580532 ], [ 135.351562, 71.580532 ], [ 135.351562, 71.635993 ], [ 135.527344, 71.635993 ], [ 135.527344, 71.580532 ], [ 135.878906, 71.580532 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.364506 ], [ 89.296875, 75.364506 ], [ 89.296875, 75.408854 ], [ 89.472656, 75.408854 ], [ 89.472656, 75.453071 ], [ 89.648438, 75.453071 ], [ 89.648438, 75.497157 ], [ 89.824219, 75.497157 ], [ 89.824219, 75.541113 ], [ 90.000000, 75.541113 ], [ 90.000000, 75.584937 ], [ 90.175781, 75.584937 ], [ 90.175781, 75.628632 ], [ 90.703125, 75.628632 ], [ 90.703125, 75.672197 ], [ 91.757812, 75.672197 ], [ 91.757812, 75.715633 ], [ 92.636719, 75.715633 ], [ 92.636719, 75.758940 ], [ 92.988281, 75.758940 ], [ 92.988281, 75.888091 ], [ 93.164062, 75.888091 ], [ 93.164062, 76.058508 ], [ 93.867188, 76.058508 ], [ 93.867188, 76.100796 ], [ 95.273438, 76.100796 ], [ 95.273438, 76.142958 ], [ 95.800781, 76.142958 ], [ 95.800781, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.058508 ], [ 96.152344, 76.058508 ], [ 96.152344, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.973553 ], [ 96.503906, 75.973553 ], [ 96.503906, 75.930885 ], [ 96.855469, 75.930885 ], [ 96.855469, 75.973553 ], [ 97.031250, 75.973553 ], [ 97.031250, 76.016094 ], [ 97.207031, 76.016094 ], [ 97.207031, 76.058508 ], [ 97.382812, 76.058508 ], [ 97.382812, 76.100796 ], [ 97.558594, 76.100796 ], [ 97.558594, 76.142958 ], [ 97.734375, 76.142958 ], [ 97.734375, 76.184995 ], [ 98.085938, 76.184995 ], [ 98.085938, 76.226907 ], [ 98.261719, 76.226907 ], [ 98.261719, 76.268695 ], [ 98.437500, 76.268695 ], [ 98.437500, 76.310358 ], [ 98.613281, 76.310358 ], [ 98.613281, 76.351896 ], [ 98.789062, 76.351896 ], [ 98.789062, 76.393312 ], [ 98.964844, 76.393312 ], [ 98.964844, 76.434604 ], [ 100.722656, 76.434604 ], [ 100.722656, 76.516819 ], [ 100.898438, 76.516819 ], [ 100.898438, 76.760541 ], [ 101.074219, 76.760541 ], [ 101.074219, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 76.999935 ], [ 101.425781, 76.999935 ], [ 101.425781, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.157163 ], [ 101.777344, 77.157163 ], [ 101.777344, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.273855 ], [ 102.128906, 77.273855 ], [ 102.128906, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.351070 ], [ 102.656250, 77.351070 ], [ 102.656250, 77.389504 ], [ 102.832031, 77.389504 ], [ 102.832031, 77.427824 ], [ 103.007812, 77.427824 ], [ 103.007812, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.504119 ], [ 103.535156, 77.504119 ], [ 103.535156, 77.542096 ], [ 103.710938, 77.542096 ], [ 103.710938, 77.579959 ], [ 103.886719, 77.579959 ], [ 103.886719, 77.617709 ], [ 104.238281, 77.617709 ], [ 104.238281, 77.655346 ], [ 104.589844, 77.655346 ], [ 104.589844, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.579959 ] ] ], [ [ [ 102.656250, 79.269962 ], [ 102.832031, 79.269962 ], [ 102.832031, 79.237185 ], [ 103.007812, 79.237185 ], [ 103.007812, 79.204309 ], [ 103.183594, 79.204309 ], [ 103.183594, 79.138260 ], [ 103.359375, 79.138260 ], [ 103.359375, 79.105086 ], [ 103.535156, 79.105086 ], [ 103.535156, 79.071812 ], [ 103.710938, 79.071812 ], [ 103.710938, 79.038437 ], [ 103.886719, 79.038437 ], [ 103.886719, 79.004962 ], [ 104.062500, 79.004962 ], [ 104.062500, 78.937708 ], [ 104.238281, 78.937708 ], [ 104.238281, 78.903929 ], [ 104.414062, 78.903929 ], [ 104.414062, 78.870048 ], [ 104.589844, 78.870048 ], [ 104.589844, 78.836065 ], [ 104.765625, 78.836065 ], [ 104.765625, 78.801980 ], [ 104.941406, 78.801980 ], [ 104.941406, 78.733501 ], [ 105.117188, 78.733501 ], [ 105.117188, 78.699106 ], [ 105.292969, 78.699106 ], [ 105.292969, 78.490552 ], [ 105.117188, 78.490552 ], [ 105.117188, 78.313860 ], [ 104.941406, 78.313860 ], [ 104.941406, 78.278201 ], [ 104.414062, 78.278201 ], [ 104.414062, 78.242436 ], [ 103.886719, 78.242436 ], [ 103.886719, 78.206563 ], [ 103.359375, 78.206563 ], [ 103.359375, 78.170582 ], [ 102.832031, 78.170582 ], [ 102.832031, 78.134493 ], [ 102.480469, 78.134493 ], [ 102.480469, 78.098296 ], [ 101.953125, 78.098296 ], [ 101.953125, 78.061989 ], [ 101.425781, 78.061989 ], [ 101.425781, 78.025574 ], [ 100.898438, 78.025574 ], [ 100.898438, 77.989049 ], [ 100.371094, 77.989049 ], [ 100.371094, 77.952414 ], [ 99.843750, 77.952414 ], [ 99.843750, 77.915669 ], [ 99.492188, 77.915669 ], [ 99.492188, 77.952414 ], [ 99.667969, 77.952414 ], [ 99.667969, 78.098296 ], [ 99.843750, 78.098296 ], [ 99.843750, 78.242436 ], [ 100.019531, 78.242436 ], [ 100.019531, 78.384855 ], [ 100.195312, 78.384855 ], [ 100.195312, 78.525573 ], [ 100.371094, 78.525573 ], [ 100.371094, 78.630006 ], [ 100.546875, 78.630006 ], [ 100.546875, 78.767792 ], [ 100.722656, 78.767792 ], [ 100.722656, 78.903929 ], [ 100.898438, 78.903929 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.777344, 79.269962 ], [ 101.777344, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.335219 ], [ 102.304688, 79.335219 ], [ 102.304688, 79.302640 ], [ 102.656250, 79.302640 ], [ 102.656250, 79.269962 ] ] ], [ [ [ 100.019531, 78.870048 ], [ 99.667969, 78.870048 ], [ 99.667969, 78.836065 ], [ 98.964844, 78.836065 ], [ 98.964844, 78.801980 ], [ 98.261719, 78.801980 ], [ 98.261719, 78.767792 ], [ 97.382812, 78.767792 ], [ 97.382812, 78.801980 ], [ 97.031250, 78.801980 ], [ 97.031250, 78.836065 ], [ 96.679688, 78.836065 ], [ 96.679688, 78.870048 ], [ 96.328125, 78.870048 ], [ 96.328125, 78.903929 ], [ 95.976562, 78.903929 ], [ 95.976562, 78.937708 ], [ 95.625000, 78.937708 ], [ 95.625000, 78.971386 ], [ 95.273438, 78.971386 ], [ 95.273438, 79.004962 ], [ 94.921875, 79.004962 ], [ 94.921875, 79.038437 ], [ 94.746094, 79.038437 ], [ 94.746094, 79.071812 ], [ 94.570312, 79.071812 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.204309 ], [ 94.042969, 79.204309 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.335219 ], [ 100.019531, 79.335219 ], [ 100.019531, 78.870048 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.589844, 77.655346 ], [ 104.589844, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.579959 ], [ 104.941406, 77.579959 ], [ 104.941406, 77.542096 ], [ 105.292969, 77.542096 ], [ 105.292969, 77.504119 ], [ 105.468750, 77.504119 ], [ 105.468750, 77.466028 ], [ 105.644531, 77.466028 ], [ 105.644531, 77.427824 ], [ 105.820312, 77.427824 ], [ 105.820312, 77.389504 ], [ 105.996094, 77.389504 ], [ 105.996094, 77.351070 ], [ 105.820312, 77.351070 ], [ 105.820312, 77.312520 ], [ 105.644531, 77.312520 ], [ 105.644531, 77.273855 ], [ 105.468750, 77.273855 ], [ 105.468750, 77.235074 ], [ 105.292969, 77.235074 ], [ 105.292969, 77.196176 ], [ 105.117188, 77.196176 ], [ 105.117188, 77.157163 ], [ 104.941406, 77.157163 ], [ 104.941406, 77.078784 ], [ 105.468750, 77.078784 ], [ 105.468750, 77.039418 ], [ 106.171875, 77.039418 ], [ 106.171875, 76.999935 ], [ 106.699219, 76.999935 ], [ 106.699219, 76.960334 ], [ 107.050781, 76.960334 ], [ 107.050781, 76.720223 ], [ 107.226562, 76.720223 ], [ 107.226562, 76.475773 ], [ 107.402344, 76.475773 ], [ 107.402344, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.598545 ], [ 107.753906, 76.598545 ], [ 107.753906, 76.639226 ], [ 107.929688, 76.639226 ], [ 107.929688, 76.679785 ], [ 108.105469, 76.679785 ], [ 108.105469, 76.720223 ], [ 111.093750, 76.720223 ], [ 111.093750, 76.679785 ], [ 111.269531, 76.679785 ], [ 111.269531, 76.639226 ], [ 111.445312, 76.639226 ], [ 111.445312, 76.598545 ], [ 111.621094, 76.598545 ], [ 111.621094, 76.557743 ], [ 111.796875, 76.557743 ], [ 111.796875, 76.516819 ], [ 111.972656, 76.516819 ], [ 111.972656, 76.475773 ], [ 112.324219, 76.475773 ], [ 112.324219, 76.434604 ], [ 112.500000, 76.434604 ], [ 112.500000, 76.393312 ], [ 112.675781, 76.393312 ], [ 112.675781, 76.351896 ], [ 112.851562, 76.351896 ], [ 112.851562, 76.310358 ], [ 113.027344, 76.310358 ], [ 113.027344, 76.268695 ], [ 113.203125, 76.268695 ], [ 113.203125, 76.226907 ], [ 113.378906, 76.226907 ], [ 113.378906, 76.142958 ], [ 113.554688, 76.142958 ], [ 113.554688, 76.058508 ], [ 113.730469, 76.058508 ], [ 113.730469, 75.973553 ], [ 113.906250, 75.973553 ], [ 113.906250, 75.888091 ], [ 114.082031, 75.888091 ], [ 114.082031, 75.584937 ], [ 113.906250, 75.584937 ], [ 113.906250, 75.275413 ], [ 113.730469, 75.275413 ], [ 113.730469, 75.230667 ], [ 113.554688, 75.230667 ], [ 113.554688, 75.185789 ], [ 113.378906, 75.185789 ], [ 113.378906, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 75.095633 ], [ 113.027344, 75.095633 ], [ 113.027344, 75.050354 ], [ 112.851562, 75.050354 ], [ 112.851562, 75.004940 ], [ 112.675781, 75.004940 ], [ 112.675781, 74.959392 ], [ 112.324219, 74.959392 ], [ 112.324219, 74.913708 ], [ 112.148438, 74.913708 ], [ 112.148438, 74.867889 ], [ 111.972656, 74.867889 ], [ 111.972656, 74.821934 ], [ 111.796875, 74.821934 ], [ 111.796875, 74.775843 ], [ 111.445312, 74.775843 ], [ 111.445312, 74.729615 ], [ 111.269531, 74.729615 ], [ 111.269531, 74.683250 ], [ 111.093750, 74.683250 ], [ 111.093750, 74.636748 ], [ 110.917969, 74.636748 ], [ 110.917969, 74.590108 ], [ 110.566406, 74.590108 ], [ 110.566406, 74.543330 ], [ 110.390625, 74.543330 ], [ 110.390625, 74.496413 ], [ 110.214844, 74.496413 ], [ 110.214844, 74.449358 ], [ 110.039062, 74.449358 ], [ 110.039062, 74.354828 ], [ 109.863281, 74.354828 ], [ 109.863281, 74.307353 ], [ 109.687500, 74.307353 ], [ 109.687500, 74.259738 ], [ 109.511719, 74.259738 ], [ 109.511719, 74.116047 ], [ 109.863281, 74.116047 ], [ 109.863281, 74.067866 ], [ 110.214844, 74.067866 ], [ 110.214844, 74.019543 ], [ 110.566406, 74.019543 ], [ 110.566406, 73.971078 ], [ 110.917969, 73.971078 ], [ 110.917969, 73.922469 ], [ 111.269531, 73.922469 ], [ 111.269531, 73.873717 ], [ 111.621094, 73.873717 ], [ 111.621094, 73.824820 ], [ 111.972656, 73.824820 ], [ 111.972656, 73.775780 ], [ 112.324219, 73.775780 ], [ 112.324219, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.873717 ], [ 112.851562, 73.873717 ], [ 112.851562, 73.922469 ], [ 113.027344, 73.922469 ], [ 113.027344, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.627789 ], [ 113.378906, 73.627789 ], [ 113.378906, 73.428424 ], [ 113.554688, 73.428424 ], [ 113.554688, 73.378215 ], [ 113.730469, 73.378215 ], [ 113.730469, 73.478485 ], [ 113.906250, 73.478485 ], [ 113.906250, 73.578167 ], [ 114.257812, 73.578167 ], [ 114.257812, 73.627789 ], [ 114.609375, 73.627789 ], [ 114.609375, 73.677264 ], [ 114.960938, 73.677264 ], [ 114.960938, 73.726595 ], [ 115.312500, 73.726595 ], [ 115.312500, 73.775780 ], [ 115.839844, 73.775780 ], [ 115.839844, 73.726595 ], [ 116.718750, 73.726595 ], [ 116.718750, 73.677264 ], [ 117.421875, 73.677264 ], [ 117.421875, 73.627789 ], [ 118.300781, 73.627789 ], [ 118.300781, 73.578167 ], [ 118.828125, 73.578167 ], [ 118.828125, 73.327858 ], [ 119.003906, 73.327858 ], [ 119.003906, 73.124945 ], [ 119.531250, 73.124945 ], [ 119.531250, 73.073844 ], [ 120.937500, 73.073844 ], [ 120.937500, 73.022592 ], [ 122.343750, 73.022592 ], [ 122.343750, 72.971189 ], [ 123.222656, 72.971189 ], [ 123.222656, 73.726595 ], [ 123.398438, 73.726595 ], [ 123.398438, 73.677264 ], [ 124.101562, 73.677264 ], [ 124.101562, 73.627789 ], [ 124.804688, 73.627789 ], [ 124.804688, 73.578167 ], [ 126.914062, 73.578167 ], [ 126.914062, 73.528399 ], [ 127.089844, 73.528399 ], [ 127.089844, 73.478485 ], [ 127.265625, 73.478485 ], [ 127.265625, 73.428424 ], [ 127.441406, 73.428424 ], [ 127.441406, 73.378215 ], [ 127.617188, 73.378215 ], [ 127.617188, 73.327858 ], [ 127.792969, 73.327858 ], [ 127.792969, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.175897 ], [ 128.144531, 73.175897 ], [ 128.144531, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.073844 ], [ 128.496094, 73.073844 ], [ 128.496094, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.867930 ], [ 128.847656, 72.867930 ], [ 128.847656, 72.554498 ], [ 129.023438, 72.554498 ], [ 129.023438, 72.289067 ], [ 128.847656, 72.289067 ], [ 128.847656, 72.181804 ], [ 128.671875, 72.181804 ], [ 128.671875, 72.019729 ], [ 128.496094, 72.019729 ], [ 128.496094, 71.910888 ], [ 128.671875, 71.910888 ], [ 128.671875, 71.801410 ], [ 128.847656, 71.801410 ], [ 128.847656, 71.691293 ], [ 129.023438, 71.691293 ], [ 129.023438, 71.580532 ], [ 129.199219, 71.580532 ], [ 129.199219, 71.469124 ], [ 129.375000, 71.469124 ], [ 129.375000, 71.357067 ], [ 129.550781, 71.357067 ], [ 129.550781, 71.244356 ], [ 129.726562, 71.244356 ], [ 129.726562, 71.130988 ], [ 129.902344, 71.130988 ], [ 129.902344, 71.074056 ], [ 130.253906, 71.074056 ], [ 130.253906, 71.016960 ], [ 130.429688, 71.016960 ], [ 130.429688, 70.959697 ], [ 130.605469, 70.959697 ], [ 130.605469, 70.902268 ], [ 130.957031, 70.902268 ], [ 130.957031, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.786910 ], [ 131.308594, 70.786910 ], [ 131.308594, 70.844673 ], [ 131.484375, 70.844673 ], [ 131.484375, 71.074056 ], [ 131.660156, 71.074056 ], [ 131.660156, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.524909 ], [ 132.011719, 71.524909 ], [ 132.011719, 71.746432 ], [ 132.187500, 71.746432 ], [ 132.187500, 71.801410 ], [ 132.363281, 71.801410 ], [ 132.363281, 71.746432 ], [ 132.714844, 71.746432 ], [ 132.714844, 71.691293 ], [ 132.890625, 71.691293 ], [ 132.890625, 71.635993 ], [ 133.066406, 71.635993 ], [ 133.066406, 71.580532 ], [ 133.242188, 71.580532 ], [ 133.242188, 71.524909 ], [ 133.593750, 71.524909 ], [ 133.593750, 71.469124 ], [ 133.769531, 71.469124 ], [ 133.769531, 71.413177 ], [ 134.296875, 71.413177 ], [ 134.296875, 71.469124 ], [ 134.648438, 71.469124 ], [ 134.648438, 71.524909 ], [ 135.000000, 71.524909 ], [ 135.000000, 71.580532 ], [ 135.351562, 71.580532 ], [ 135.351562, 71.635993 ], [ 135.527344, 71.635993 ], [ 135.527344, 71.580532 ], [ 135.878906, 71.580532 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.364506 ], [ 89.296875, 75.364506 ], [ 89.296875, 75.408854 ], [ 89.472656, 75.408854 ], [ 89.472656, 75.453071 ], [ 89.648438, 75.453071 ], [ 89.648438, 75.497157 ], [ 89.824219, 75.497157 ], [ 89.824219, 75.541113 ], [ 90.000000, 75.541113 ], [ 90.000000, 75.584937 ], [ 90.175781, 75.584937 ], [ 90.175781, 75.628632 ], [ 90.703125, 75.628632 ], [ 90.703125, 75.672197 ], [ 91.757812, 75.672197 ], [ 91.757812, 75.715633 ], [ 92.636719, 75.715633 ], [ 92.636719, 75.758940 ], [ 92.988281, 75.758940 ], [ 92.988281, 75.888091 ], [ 93.164062, 75.888091 ], [ 93.164062, 76.058508 ], [ 93.867188, 76.058508 ], [ 93.867188, 76.100796 ], [ 95.273438, 76.100796 ], [ 95.273438, 76.142958 ], [ 95.800781, 76.142958 ], [ 95.800781, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.058508 ], [ 96.152344, 76.058508 ], [ 96.152344, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.973553 ], [ 96.503906, 75.973553 ], [ 96.503906, 75.930885 ], [ 96.855469, 75.930885 ], [ 96.855469, 75.973553 ], [ 97.031250, 75.973553 ], [ 97.031250, 76.016094 ], [ 97.207031, 76.016094 ], [ 97.207031, 76.058508 ], [ 97.382812, 76.058508 ], [ 97.382812, 76.100796 ], [ 97.558594, 76.100796 ], [ 97.558594, 76.142958 ], [ 97.734375, 76.142958 ], [ 97.734375, 76.184995 ], [ 98.085938, 76.184995 ], [ 98.085938, 76.226907 ], [ 98.261719, 76.226907 ], [ 98.261719, 76.268695 ], [ 98.437500, 76.268695 ], [ 98.437500, 76.310358 ], [ 98.613281, 76.310358 ], [ 98.613281, 76.351896 ], [ 98.789062, 76.351896 ], [ 98.789062, 76.393312 ], [ 98.964844, 76.393312 ], [ 98.964844, 76.434604 ], [ 100.722656, 76.434604 ], [ 100.722656, 76.516819 ], [ 100.898438, 76.516819 ], [ 100.898438, 76.760541 ], [ 101.074219, 76.760541 ], [ 101.074219, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 76.999935 ], [ 101.425781, 76.999935 ], [ 101.425781, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.157163 ], [ 101.777344, 77.157163 ], [ 101.777344, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.273855 ], [ 102.128906, 77.273855 ], [ 102.128906, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.351070 ], [ 102.656250, 77.351070 ], [ 102.656250, 77.389504 ], [ 102.832031, 77.389504 ], [ 102.832031, 77.427824 ], [ 103.007812, 77.427824 ], [ 103.007812, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.504119 ], [ 103.535156, 77.504119 ], [ 103.535156, 77.542096 ], [ 103.710938, 77.542096 ], [ 103.710938, 77.579959 ], [ 103.886719, 77.579959 ], [ 103.886719, 77.617709 ], [ 104.238281, 77.617709 ], [ 104.238281, 77.655346 ], [ 104.589844, 77.655346 ] ] ], [ [ [ 102.304688, 79.335219 ], [ 102.304688, 79.302640 ], [ 102.656250, 79.302640 ], [ 102.656250, 79.269962 ], [ 102.832031, 79.269962 ], [ 102.832031, 79.237185 ], [ 103.007812, 79.237185 ], [ 103.007812, 79.204309 ], [ 103.183594, 79.204309 ], [ 103.183594, 79.138260 ], [ 103.359375, 79.138260 ], [ 103.359375, 79.105086 ], [ 103.535156, 79.105086 ], [ 103.535156, 79.071812 ], [ 103.710938, 79.071812 ], [ 103.710938, 79.038437 ], [ 103.886719, 79.038437 ], [ 103.886719, 79.004962 ], [ 104.062500, 79.004962 ], [ 104.062500, 78.937708 ], [ 104.238281, 78.937708 ], [ 104.238281, 78.903929 ], [ 104.414062, 78.903929 ], [ 104.414062, 78.870048 ], [ 104.589844, 78.870048 ], [ 104.589844, 78.836065 ], [ 104.765625, 78.836065 ], [ 104.765625, 78.801980 ], [ 104.941406, 78.801980 ], [ 104.941406, 78.733501 ], [ 105.117188, 78.733501 ], [ 105.117188, 78.699106 ], [ 105.292969, 78.699106 ], [ 105.292969, 78.490552 ], [ 105.117188, 78.490552 ], [ 105.117188, 78.313860 ], [ 104.941406, 78.313860 ], [ 104.941406, 78.278201 ], [ 104.414062, 78.278201 ], [ 104.414062, 78.242436 ], [ 103.886719, 78.242436 ], [ 103.886719, 78.206563 ], [ 103.359375, 78.206563 ], [ 103.359375, 78.170582 ], [ 102.832031, 78.170582 ], [ 102.832031, 78.134493 ], [ 102.480469, 78.134493 ], [ 102.480469, 78.098296 ], [ 101.953125, 78.098296 ], [ 101.953125, 78.061989 ], [ 101.425781, 78.061989 ], [ 101.425781, 78.025574 ], [ 100.898438, 78.025574 ], [ 100.898438, 77.989049 ], [ 100.371094, 77.989049 ], [ 100.371094, 77.952414 ], [ 99.843750, 77.952414 ], [ 99.843750, 77.915669 ], [ 99.492188, 77.915669 ], [ 99.492188, 77.952414 ], [ 99.667969, 77.952414 ], [ 99.667969, 78.098296 ], [ 99.843750, 78.098296 ], [ 99.843750, 78.242436 ], [ 100.019531, 78.242436 ], [ 100.019531, 78.384855 ], [ 100.195312, 78.384855 ], [ 100.195312, 78.525573 ], [ 100.371094, 78.525573 ], [ 100.371094, 78.630006 ], [ 100.546875, 78.630006 ], [ 100.546875, 78.767792 ], [ 100.722656, 78.767792 ], [ 100.722656, 78.903929 ], [ 100.898438, 78.903929 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.777344, 79.269962 ], [ 101.777344, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.335219 ], [ 102.304688, 79.335219 ] ] ], [ [ [ 100.019531, 79.335219 ], [ 100.019531, 78.870048 ], [ 99.667969, 78.870048 ], [ 99.667969, 78.836065 ], [ 98.964844, 78.836065 ], [ 98.964844, 78.801980 ], [ 98.261719, 78.801980 ], [ 98.261719, 78.767792 ], [ 97.382812, 78.767792 ], [ 97.382812, 78.801980 ], [ 97.031250, 78.801980 ], [ 97.031250, 78.836065 ], [ 96.679688, 78.836065 ], [ 96.679688, 78.870048 ], [ 96.328125, 78.870048 ], [ 96.328125, 78.903929 ], [ 95.976562, 78.903929 ], [ 95.976562, 78.937708 ], [ 95.625000, 78.937708 ], [ 95.625000, 78.971386 ], [ 95.273438, 78.971386 ], [ 95.273438, 79.004962 ], [ 94.921875, 79.004962 ], [ 94.921875, 79.038437 ], [ 94.746094, 79.038437 ], [ 94.746094, 79.071812 ], [ 94.570312, 79.071812 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.204309 ], [ 94.042969, 79.204309 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.335219 ], [ 100.019531, 79.335219 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, 79.237185 ], [ 103.007812, 79.237185 ], [ 103.007812, 79.204309 ], [ 103.183594, 79.204309 ], [ 103.183594, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.138260 ], [ 103.535156, 79.138260 ], [ 103.535156, 79.071812 ], [ 103.710938, 79.071812 ], [ 103.710938, 79.038437 ], [ 103.886719, 79.038437 ], [ 103.886719, 79.004962 ], [ 100.898438, 79.004962 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.777344, 79.269962 ], [ 101.777344, 79.302640 ], [ 102.480469, 79.302640 ], [ 102.480469, 79.269962 ], [ 102.832031, 79.269962 ], [ 102.832031, 79.237185 ] ] ], [ [ [ 96.328125, 81.120388 ], [ 96.503906, 81.120388 ], [ 96.503906, 81.093214 ], [ 96.679688, 81.093214 ], [ 96.679688, 81.038617 ], [ 96.855469, 81.038617 ], [ 96.855469, 81.011194 ], [ 97.031250, 81.011194 ], [ 97.031250, 80.956099 ], [ 97.207031, 80.956099 ], [ 97.207031, 80.900669 ], [ 97.382812, 80.900669 ], [ 97.382812, 80.872827 ], [ 97.558594, 80.872827 ], [ 97.558594, 80.816891 ], [ 97.734375, 80.816891 ], [ 97.734375, 80.760615 ], [ 97.910156, 80.760615 ], [ 97.910156, 80.703997 ], [ 98.085938, 80.703997 ], [ 98.085938, 80.647035 ], [ 98.261719, 80.647035 ], [ 98.261719, 80.560943 ], [ 98.437500, 80.560943 ], [ 98.437500, 80.503112 ], [ 98.613281, 80.503112 ], [ 98.613281, 80.415707 ], [ 98.789062, 80.415707 ], [ 98.789062, 80.356995 ], [ 98.964844, 80.356995 ], [ 98.964844, 80.268259 ], [ 99.140625, 80.268259 ], [ 99.140625, 80.178713 ], [ 99.316406, 80.178713 ], [ 99.316406, 80.118564 ], [ 99.492188, 80.118564 ], [ 99.492188, 80.027655 ], [ 99.667969, 80.027655 ], [ 99.667969, 79.966590 ], [ 99.843750, 79.966590 ], [ 99.843750, 79.874297 ], [ 100.019531, 79.874297 ], [ 100.019531, 79.812302 ], [ 100.195312, 79.812302 ], [ 100.195312, 79.400085 ], [ 100.019531, 79.400085 ], [ 100.019531, 79.004962 ], [ 95.097656, 79.004962 ], [ 95.097656, 79.038437 ], [ 94.746094, 79.038437 ], [ 94.746094, 79.105086 ], [ 94.570312, 79.105086 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.237185 ], [ 94.042969, 79.237185 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.367701 ], [ 93.515625, 79.367701 ], [ 93.515625, 79.400085 ], [ 93.339844, 79.400085 ], [ 93.339844, 79.496652 ], [ 93.164062, 79.496652 ], [ 93.164062, 79.624056 ], [ 92.988281, 79.624056 ], [ 92.988281, 79.781164 ], [ 92.812500, 79.781164 ], [ 92.812500, 79.935918 ], [ 92.636719, 79.935918 ], [ 92.636719, 80.058050 ], [ 92.460938, 80.058050 ], [ 92.460938, 80.148684 ], [ 92.285156, 80.148684 ], [ 92.285156, 80.178713 ], [ 92.109375, 80.178713 ], [ 92.109375, 80.208652 ], [ 91.933594, 80.208652 ], [ 91.933594, 80.238501 ], [ 91.582031, 80.238501 ], [ 91.582031, 80.268259 ], [ 91.406250, 80.268259 ], [ 91.406250, 80.297927 ], [ 91.230469, 80.297927 ], [ 91.230469, 80.327506 ], [ 91.406250, 80.327506 ], [ 91.406250, 80.386396 ], [ 91.582031, 80.386396 ], [ 91.582031, 80.444931 ], [ 91.757812, 80.444931 ], [ 91.757812, 80.503112 ], [ 91.933594, 80.503112 ], [ 91.933594, 80.532071 ], [ 92.109375, 80.532071 ], [ 92.109375, 80.589727 ], [ 92.285156, 80.589727 ], [ 92.285156, 80.647035 ], [ 92.460938, 80.647035 ], [ 92.460938, 80.675559 ], [ 92.636719, 80.675559 ], [ 92.636719, 80.732349 ], [ 92.812500, 80.732349 ], [ 92.812500, 80.788795 ], [ 92.988281, 80.788795 ], [ 92.988281, 80.844901 ], [ 93.164062, 80.844901 ], [ 93.164062, 80.872827 ], [ 93.339844, 80.872827 ], [ 93.339844, 80.928426 ], [ 93.515625, 80.928426 ], [ 93.515625, 80.983688 ], [ 93.691406, 80.983688 ], [ 93.691406, 81.011194 ], [ 93.867188, 81.011194 ], [ 93.867188, 81.038617 ], [ 94.218750, 81.038617 ], [ 94.218750, 81.065957 ], [ 94.394531, 81.065957 ], [ 94.394531, 81.093214 ], [ 94.746094, 81.093214 ], [ 94.746094, 81.120388 ], [ 94.921875, 81.120388 ], [ 94.921875, 81.147481 ], [ 95.097656, 81.147481 ], [ 95.097656, 81.174491 ], [ 95.449219, 81.174491 ], [ 95.449219, 81.201420 ], [ 95.625000, 81.201420 ], [ 95.625000, 81.228267 ], [ 96.152344, 81.228267 ], [ 96.152344, 81.174491 ], [ 96.328125, 81.174491 ], [ 96.328125, 81.120388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.480469, 79.302640 ], [ 102.480469, 79.269962 ], [ 102.832031, 79.269962 ], [ 102.832031, 79.237185 ], [ 103.007812, 79.237185 ], [ 103.007812, 79.204309 ], [ 103.183594, 79.204309 ], [ 103.183594, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.138260 ], [ 103.535156, 79.138260 ], [ 103.535156, 79.071812 ], [ 103.710938, 79.071812 ], [ 103.710938, 79.038437 ], [ 103.886719, 79.038437 ], [ 103.886719, 79.004962 ], [ 100.898438, 79.004962 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.777344, 79.269962 ], [ 101.777344, 79.302640 ], [ 102.480469, 79.302640 ] ] ], [ [ [ 96.152344, 81.228267 ], [ 96.152344, 81.174491 ], [ 96.328125, 81.174491 ], [ 96.328125, 81.120388 ], [ 96.503906, 81.120388 ], [ 96.503906, 81.093214 ], [ 96.679688, 81.093214 ], [ 96.679688, 81.038617 ], [ 96.855469, 81.038617 ], [ 96.855469, 81.011194 ], [ 97.031250, 81.011194 ], [ 97.031250, 80.956099 ], [ 97.207031, 80.956099 ], [ 97.207031, 80.900669 ], [ 97.382812, 80.900669 ], [ 97.382812, 80.872827 ], [ 97.558594, 80.872827 ], [ 97.558594, 80.816891 ], [ 97.734375, 80.816891 ], [ 97.734375, 80.760615 ], [ 97.910156, 80.760615 ], [ 97.910156, 80.703997 ], [ 98.085938, 80.703997 ], [ 98.085938, 80.647035 ], [ 98.261719, 80.647035 ], [ 98.261719, 80.560943 ], [ 98.437500, 80.560943 ], [ 98.437500, 80.503112 ], [ 98.613281, 80.503112 ], [ 98.613281, 80.415707 ], [ 98.789062, 80.415707 ], [ 98.789062, 80.356995 ], [ 98.964844, 80.356995 ], [ 98.964844, 80.268259 ], [ 99.140625, 80.268259 ], [ 99.140625, 80.178713 ], [ 99.316406, 80.178713 ], [ 99.316406, 80.118564 ], [ 99.492188, 80.118564 ], [ 99.492188, 80.027655 ], [ 99.667969, 80.027655 ], [ 99.667969, 79.966590 ], [ 99.843750, 79.966590 ], [ 99.843750, 79.874297 ], [ 100.019531, 79.874297 ], [ 100.019531, 79.812302 ], [ 100.195312, 79.812302 ], [ 100.195312, 79.400085 ], [ 100.019531, 79.400085 ], [ 100.019531, 79.004962 ], [ 95.097656, 79.004962 ], [ 95.097656, 79.038437 ], [ 94.746094, 79.038437 ], [ 94.746094, 79.105086 ], [ 94.570312, 79.105086 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.237185 ], [ 94.042969, 79.237185 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.367701 ], [ 93.515625, 79.367701 ], [ 93.515625, 79.400085 ], [ 93.339844, 79.400085 ], [ 93.339844, 79.496652 ], [ 93.164062, 79.496652 ], [ 93.164062, 79.624056 ], [ 92.988281, 79.624056 ], [ 92.988281, 79.781164 ], [ 92.812500, 79.781164 ], [ 92.812500, 79.935918 ], [ 92.636719, 79.935918 ], [ 92.636719, 80.058050 ], [ 92.460938, 80.058050 ], [ 92.460938, 80.148684 ], [ 92.285156, 80.148684 ], [ 92.285156, 80.178713 ], [ 92.109375, 80.178713 ], [ 92.109375, 80.208652 ], [ 91.933594, 80.208652 ], [ 91.933594, 80.238501 ], [ 91.582031, 80.238501 ], [ 91.582031, 80.268259 ], [ 91.406250, 80.268259 ], [ 91.406250, 80.297927 ], [ 91.230469, 80.297927 ], [ 91.230469, 80.327506 ], [ 91.406250, 80.327506 ], [ 91.406250, 80.386396 ], [ 91.582031, 80.386396 ], [ 91.582031, 80.444931 ], [ 91.757812, 80.444931 ], [ 91.757812, 80.503112 ], [ 91.933594, 80.503112 ], [ 91.933594, 80.532071 ], [ 92.109375, 80.532071 ], [ 92.109375, 80.589727 ], [ 92.285156, 80.589727 ], [ 92.285156, 80.647035 ], [ 92.460938, 80.647035 ], [ 92.460938, 80.675559 ], [ 92.636719, 80.675559 ], [ 92.636719, 80.732349 ], [ 92.812500, 80.732349 ], [ 92.812500, 80.788795 ], [ 92.988281, 80.788795 ], [ 92.988281, 80.844901 ], [ 93.164062, 80.844901 ], [ 93.164062, 80.872827 ], [ 93.339844, 80.872827 ], [ 93.339844, 80.928426 ], [ 93.515625, 80.928426 ], [ 93.515625, 80.983688 ], [ 93.691406, 80.983688 ], [ 93.691406, 81.011194 ], [ 93.867188, 81.011194 ], [ 93.867188, 81.038617 ], [ 94.218750, 81.038617 ], [ 94.218750, 81.065957 ], [ 94.394531, 81.065957 ], [ 94.394531, 81.093214 ], [ 94.746094, 81.093214 ], [ 94.746094, 81.120388 ], [ 94.921875, 81.120388 ], [ 94.921875, 81.147481 ], [ 95.097656, 81.147481 ], [ 95.097656, 81.174491 ], [ 95.449219, 81.174491 ], [ 95.449219, 81.201420 ], [ 95.625000, 81.201420 ], [ 95.625000, 81.228267 ], [ 96.152344, 81.228267 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.308594, -84.231947 ], [ 176.484375, -84.231947 ], [ 176.484375, -84.249587 ], [ 176.660156, -84.249587 ], [ 176.660156, -84.284704 ], [ 176.835938, -84.284704 ], [ 176.835938, -84.302183 ], [ 177.011719, -84.302183 ], [ 177.011719, -84.319608 ], [ 177.187500, -84.319608 ], [ 177.187500, -84.354300 ], [ 177.363281, -84.354300 ], [ 177.363281, -84.371566 ], [ 177.539062, -84.371566 ], [ 177.539062, -84.405941 ], [ 177.714844, -84.405941 ], [ 177.714844, -84.423050 ], [ 177.890625, -84.423050 ], [ 177.890625, -84.440107 ], [ 178.066406, -84.440107 ], [ 178.066406, -84.474065 ], [ 178.242188, -84.474065 ], [ 178.242188, -84.490966 ], [ 178.417969, -84.490966 ], [ 178.417969, -84.524614 ], [ 178.593750, -84.524614 ], [ 178.593750, -84.541361 ], [ 178.769531, -84.541361 ], [ 178.769531, -84.558057 ], [ 178.945312, -84.558057 ], [ 178.945312, -84.591297 ], [ 179.121094, -84.591297 ], [ 179.121094, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.640777 ], [ 179.472656, -84.640777 ], [ 179.472656, -84.657170 ], [ 179.648438, -84.657170 ], [ 179.648438, -84.673513 ], [ 179.824219, -84.673513 ], [ 179.824219, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.531250, -79.004962 ], [ 164.531250, -79.038437 ], [ 164.355469, -79.038437 ], [ 164.355469, -79.071812 ], [ 164.003906, -79.071812 ], [ 164.003906, -79.105086 ], [ 163.828125, -79.105086 ], [ 163.828125, -79.138260 ], [ 162.773438, -79.138260 ], [ 162.773438, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.237185 ], [ 161.542969, -79.237185 ], [ 161.542969, -79.367701 ], [ 161.367188, -79.367701 ], [ 161.367188, -79.464560 ], [ 161.191406, -79.464560 ], [ 161.191406, -79.560546 ], [ 161.015625, -79.560546 ], [ 161.015625, -79.687184 ], [ 160.839844, -79.687184 ], [ 160.839844, -79.966590 ], [ 160.664062, -79.966590 ], [ 160.664062, -80.297927 ], [ 160.488281, -80.297927 ], [ 160.488281, -80.474065 ], [ 160.312500, -80.474065 ], [ 160.312500, -80.647035 ], [ 160.136719, -80.647035 ], [ 160.136719, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.900669 ], [ 159.785156, -80.900669 ], [ 159.785156, -80.983688 ], [ 159.960938, -80.983688 ], [ 159.960938, -81.038617 ], [ 160.136719, -81.038617 ], [ 160.136719, -81.065957 ], [ 160.312500, -81.065957 ], [ 160.312500, -81.120388 ], [ 160.488281, -81.120388 ], [ 160.488281, -81.147481 ], [ 160.664062, -81.147481 ], [ 160.664062, -81.201420 ], [ 160.839844, -81.201420 ], [ 160.839844, -81.228267 ], [ 161.015625, -81.228267 ], [ 161.015625, -81.281717 ], [ 161.191406, -81.281717 ], [ 161.191406, -81.387650 ], [ 161.367188, -81.387650 ], [ 161.367188, -81.595699 ], [ 161.542969, -81.595699 ], [ 161.542969, -81.748454 ], [ 161.718750, -81.748454 ], [ 161.718750, -81.823794 ], [ 161.894531, -81.823794 ], [ 161.894531, -81.898451 ], [ 162.070312, -81.898451 ], [ 162.070312, -81.972431 ], [ 162.246094, -81.972431 ], [ 162.246094, -82.045740 ], [ 162.421875, -82.045740 ], [ 162.421875, -82.094243 ], [ 162.597656, -82.094243 ], [ 162.597656, -82.142451 ], [ 162.773438, -82.142451 ], [ 162.773438, -82.190368 ], [ 162.949219, -82.190368 ], [ 162.949219, -82.237994 ], [ 163.125000, -82.237994 ], [ 163.125000, -82.285331 ], [ 163.300781, -82.285331 ], [ 163.300781, -82.332382 ], [ 163.476562, -82.332382 ], [ 163.476562, -82.379147 ], [ 163.652344, -82.379147 ], [ 163.652344, -82.425629 ], [ 163.828125, -82.425629 ], [ 163.828125, -82.471829 ], [ 164.003906, -82.471829 ], [ 164.003906, -82.517749 ], [ 164.179688, -82.517749 ], [ 164.179688, -82.540604 ], [ 164.355469, -82.540604 ], [ 164.355469, -82.586106 ], [ 164.531250, -82.586106 ], [ 164.531250, -82.608754 ], [ 164.707031, -82.608754 ], [ 164.707031, -82.653843 ], [ 164.882812, -82.653843 ], [ 164.882812, -82.698659 ], [ 165.058594, -82.698659 ], [ 165.058594, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.410156, -82.765373 ], [ 165.410156, -82.809511 ], [ 165.585938, -82.809511 ], [ 165.585938, -82.831480 ], [ 165.761719, -82.831480 ], [ 165.761719, -82.875218 ], [ 165.937500, -82.875218 ], [ 165.937500, -82.918690 ], [ 166.113281, -82.918690 ], [ 166.113281, -82.940327 ], [ 166.289062, -82.940327 ], [ 166.289062, -82.983404 ], [ 166.464844, -82.983404 ], [ 166.464844, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.047529 ], [ 166.816406, -83.047529 ], [ 166.816406, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.089955 ], [ 167.167969, -83.089955 ], [ 167.167969, -83.132123 ], [ 167.343750, -83.132123 ], [ 167.343750, -83.153111 ], [ 167.519531, -83.153111 ], [ 167.519531, -83.174035 ], [ 167.695312, -83.174035 ], [ 167.695312, -83.194896 ], [ 167.871094, -83.194896 ], [ 167.871094, -83.215693 ], [ 168.046875, -83.215693 ], [ 168.046875, -83.236426 ], [ 168.222656, -83.236426 ], [ 168.222656, -83.257097 ], [ 168.398438, -83.257097 ], [ 168.398438, -83.298250 ], [ 168.574219, -83.298250 ], [ 168.574219, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.339153 ], [ 168.925781, -83.339153 ], [ 168.925781, -83.440326 ], [ 169.101562, -83.440326 ], [ 169.101562, -83.599031 ], [ 169.277344, -83.599031 ], [ 169.277344, -83.753911 ], [ 169.453125, -83.753911 ], [ 169.453125, -83.848810 ], [ 169.804688, -83.848810 ], [ 169.804688, -83.867616 ], [ 169.980469, -83.867616 ], [ 169.980469, -83.886366 ], [ 170.332031, -83.886366 ], [ 170.332031, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.923693 ], [ 170.683594, -83.923693 ], [ 170.683594, -83.942272 ], [ 171.035156, -83.942272 ], [ 171.035156, -83.960794 ], [ 171.210938, -83.960794 ], [ 171.210938, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -83.997669 ], [ 171.738281, -83.997669 ], [ 171.738281, -84.016022 ], [ 172.089844, -84.016022 ], [ 172.089844, -84.034319 ], [ 172.265625, -84.034319 ], [ 172.265625, -84.088878 ], [ 172.441406, -84.088878 ], [ 172.441406, -84.160849 ], [ 172.617188, -84.160849 ], [ 172.617188, -84.231947 ], [ 172.792969, -84.231947 ], [ 172.792969, -84.302183 ], [ 172.968750, -84.302183 ], [ 172.968750, -84.371566 ], [ 173.144531, -84.371566 ], [ 173.144531, -84.405941 ], [ 173.320312, -84.405941 ], [ 173.320312, -84.388780 ], [ 173.496094, -84.388780 ], [ 173.496094, -84.371566 ], [ 173.671875, -84.371566 ], [ 173.671875, -84.354300 ], [ 174.023438, -84.354300 ], [ 174.023438, -84.336980 ], [ 174.199219, -84.336980 ], [ 174.199219, -84.319608 ], [ 174.375000, -84.319608 ], [ 174.375000, -84.302183 ], [ 174.550781, -84.302183 ], [ 174.550781, -84.284704 ], [ 174.726562, -84.284704 ], [ 174.726562, -84.267172 ], [ 174.902344, -84.267172 ], [ 174.902344, -84.249587 ], [ 175.078125, -84.249587 ], [ 175.078125, -84.231947 ], [ 175.429688, -84.231947 ], [ 175.429688, -84.214254 ], [ 175.605469, -84.214254 ], [ 175.605469, -84.196507 ], [ 175.781250, -84.196507 ], [ 175.781250, -84.178705 ], [ 176.132812, -84.178705 ], [ 176.132812, -84.214254 ], [ 176.308594, -84.214254 ], [ 176.308594, -84.231947 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -79.004962 ], [ 164.531250, -79.038437 ], [ 164.355469, -79.038437 ], [ 164.355469, -79.071812 ], [ 164.003906, -79.071812 ], [ 164.003906, -79.105086 ], [ 163.828125, -79.105086 ], [ 163.828125, -79.138260 ], [ 162.773438, -79.138260 ], [ 162.773438, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.237185 ], [ 161.542969, -79.237185 ], [ 161.542969, -79.367701 ], [ 161.367188, -79.367701 ], [ 161.367188, -79.464560 ], [ 161.191406, -79.464560 ], [ 161.191406, -79.560546 ], [ 161.015625, -79.560546 ], [ 161.015625, -79.687184 ], [ 160.839844, -79.687184 ], [ 160.839844, -79.966590 ], [ 160.664062, -79.966590 ], [ 160.664062, -80.297927 ], [ 160.488281, -80.297927 ], [ 160.488281, -80.474065 ], [ 160.312500, -80.474065 ], [ 160.312500, -80.647035 ], [ 160.136719, -80.647035 ], [ 160.136719, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.900669 ], [ 159.785156, -80.900669 ], [ 159.785156, -80.983688 ], [ 159.960938, -80.983688 ], [ 159.960938, -81.038617 ], [ 160.136719, -81.038617 ], [ 160.136719, -81.065957 ], [ 160.312500, -81.065957 ], [ 160.312500, -81.120388 ], [ 160.488281, -81.120388 ], [ 160.488281, -81.147481 ], [ 160.664062, -81.147481 ], [ 160.664062, -81.201420 ], [ 160.839844, -81.201420 ], [ 160.839844, -81.228267 ], [ 161.015625, -81.228267 ], [ 161.015625, -81.281717 ], [ 161.191406, -81.281717 ], [ 161.191406, -81.387650 ], [ 161.367188, -81.387650 ], [ 161.367188, -81.595699 ], [ 161.542969, -81.595699 ], [ 161.542969, -81.748454 ], [ 161.718750, -81.748454 ], [ 161.718750, -81.823794 ], [ 161.894531, -81.823794 ], [ 161.894531, -81.898451 ], [ 162.070312, -81.898451 ], [ 162.070312, -81.972431 ], [ 162.246094, -81.972431 ], [ 162.246094, -82.045740 ], [ 162.421875, -82.045740 ], [ 162.421875, -82.094243 ], [ 162.597656, -82.094243 ], [ 162.597656, -82.142451 ], [ 162.773438, -82.142451 ], [ 162.773438, -82.190368 ], [ 162.949219, -82.190368 ], [ 162.949219, -82.237994 ], [ 163.125000, -82.237994 ], [ 163.125000, -82.285331 ], [ 163.300781, -82.285331 ], [ 163.300781, -82.332382 ], [ 163.476562, -82.332382 ], [ 163.476562, -82.379147 ], [ 163.652344, -82.379147 ], [ 163.652344, -82.425629 ], [ 163.828125, -82.425629 ], [ 163.828125, -82.471829 ], [ 164.003906, -82.471829 ], [ 164.003906, -82.517749 ], [ 164.179688, -82.517749 ], [ 164.179688, -82.540604 ], [ 164.355469, -82.540604 ], [ 164.355469, -82.586106 ], [ 164.531250, -82.586106 ], [ 164.531250, -82.608754 ], [ 164.707031, -82.608754 ], [ 164.707031, -82.653843 ], [ 164.882812, -82.653843 ], [ 164.882812, -82.698659 ], [ 165.058594, -82.698659 ], [ 165.058594, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.410156, -82.765373 ], [ 165.410156, -82.809511 ], [ 165.585938, -82.809511 ], [ 165.585938, -82.831480 ], [ 165.761719, -82.831480 ], [ 165.761719, -82.875218 ], [ 165.937500, -82.875218 ], [ 165.937500, -82.918690 ], [ 166.113281, -82.918690 ], [ 166.113281, -82.940327 ], [ 166.289062, -82.940327 ], [ 166.289062, -82.983404 ], [ 166.464844, -82.983404 ], [ 166.464844, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.047529 ], [ 166.816406, -83.047529 ], [ 166.816406, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.089955 ], [ 167.167969, -83.089955 ], [ 167.167969, -83.132123 ], [ 167.343750, -83.132123 ], [ 167.343750, -83.153111 ], [ 167.519531, -83.153111 ], [ 167.519531, -83.174035 ], [ 167.695312, -83.174035 ], [ 167.695312, -83.194896 ], [ 167.871094, -83.194896 ], [ 167.871094, -83.215693 ], [ 168.046875, -83.215693 ], [ 168.046875, -83.236426 ], [ 168.222656, -83.236426 ], [ 168.222656, -83.257097 ], [ 168.398438, -83.257097 ], [ 168.398438, -83.298250 ], [ 168.574219, -83.298250 ], [ 168.574219, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.339153 ], [ 168.925781, -83.339153 ], [ 168.925781, -83.440326 ], [ 169.101562, -83.440326 ], [ 169.101562, -83.599031 ], [ 169.277344, -83.599031 ], [ 169.277344, -83.753911 ], [ 169.453125, -83.753911 ], [ 169.453125, -83.848810 ], [ 169.804688, -83.848810 ], [ 169.804688, -83.867616 ], [ 169.980469, -83.867616 ], [ 169.980469, -83.886366 ], [ 170.332031, -83.886366 ], [ 170.332031, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.923693 ], [ 170.683594, -83.923693 ], [ 170.683594, -83.942272 ], [ 171.035156, -83.942272 ], [ 171.035156, -83.960794 ], [ 171.210938, -83.960794 ], [ 171.210938, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -83.997669 ], [ 171.738281, -83.997669 ], [ 171.738281, -84.016022 ], [ 172.089844, -84.016022 ], [ 172.089844, -84.034319 ], [ 172.265625, -84.034319 ], [ 172.265625, -84.088878 ], [ 172.441406, -84.088878 ], [ 172.441406, -84.160849 ], [ 172.617188, -84.160849 ], [ 172.617188, -84.231947 ], [ 172.792969, -84.231947 ], [ 172.792969, -84.302183 ], [ 172.968750, -84.302183 ], [ 172.968750, -84.371566 ], [ 173.144531, -84.371566 ], [ 173.144531, -84.405941 ], [ 173.320312, -84.405941 ], [ 173.320312, -84.388780 ], [ 173.496094, -84.388780 ], [ 173.496094, -84.371566 ], [ 173.671875, -84.371566 ], [ 173.671875, -84.354300 ], [ 174.023438, -84.354300 ], [ 174.023438, -84.336980 ], [ 174.199219, -84.336980 ], [ 174.199219, -84.319608 ], [ 174.375000, -84.319608 ], [ 174.375000, -84.302183 ], [ 174.550781, -84.302183 ], [ 174.550781, -84.284704 ], [ 174.726562, -84.284704 ], [ 174.726562, -84.267172 ], [ 174.902344, -84.267172 ], [ 174.902344, -84.249587 ], [ 175.078125, -84.249587 ], [ 175.078125, -84.231947 ], [ 175.429688, -84.231947 ], [ 175.429688, -84.214254 ], [ 175.605469, -84.214254 ], [ 175.605469, -84.196507 ], [ 175.781250, -84.196507 ], [ 175.781250, -84.178705 ], [ 176.132812, -84.178705 ], [ 176.132812, -84.214254 ], [ 176.308594, -84.214254 ], [ 176.308594, -84.231947 ], [ 176.484375, -84.231947 ], [ 176.484375, -84.249587 ], [ 176.660156, -84.249587 ], [ 176.660156, -84.284704 ], [ 176.835938, -84.284704 ], [ 176.835938, -84.302183 ], [ 177.011719, -84.302183 ], [ 177.011719, -84.319608 ], [ 177.187500, -84.319608 ], [ 177.187500, -84.354300 ], [ 177.363281, -84.354300 ], [ 177.363281, -84.371566 ], [ 177.539062, -84.371566 ], [ 177.539062, -84.405941 ], [ 177.714844, -84.405941 ], [ 177.714844, -84.423050 ], [ 177.890625, -84.423050 ], [ 177.890625, -84.440107 ], [ 178.066406, -84.440107 ], [ 178.066406, -84.474065 ], [ 178.242188, -84.474065 ], [ 178.242188, -84.490966 ], [ 178.417969, -84.490966 ], [ 178.417969, -84.524614 ], [ 178.593750, -84.524614 ], [ 178.593750, -84.541361 ], [ 178.769531, -84.541361 ], [ 178.769531, -84.558057 ], [ 178.945312, -84.558057 ], [ 178.945312, -84.591297 ], [ 179.121094, -84.591297 ], [ 179.121094, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.640777 ], [ 179.472656, -84.640777 ], [ 179.472656, -84.657170 ], [ 179.648438, -84.657170 ], [ 179.648438, -84.673513 ], [ 179.824219, -84.673513 ], [ 179.824219, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.531250, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -66.998844 ], [ 145.722656, -66.998844 ], [ 145.722656, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.135829 ], [ 146.074219, -67.135829 ], [ 146.074219, -67.204032 ], [ 146.250000, -67.204032 ], [ 146.250000, -67.407487 ], [ 146.074219, -67.407487 ], [ 146.074219, -67.676085 ], [ 146.250000, -67.676085 ], [ 146.250000, -67.742759 ], [ 146.425781, -67.742759 ], [ 146.425781, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -67.941650 ], [ 146.953125, -67.941650 ], [ 146.953125, -68.007571 ], [ 147.128906, -68.007571 ], [ 147.128906, -68.073305 ], [ 147.480469, -68.073305 ], [ 147.480469, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.204212 ], [ 148.007812, -68.204212 ], [ 148.007812, -68.269387 ], [ 148.359375, -68.269387 ], [ 148.359375, -68.334376 ], [ 148.710938, -68.334376 ], [ 148.710938, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.463800 ], [ 149.414062, -68.463800 ], [ 149.414062, -68.528235 ], [ 149.765625, -68.528235 ], [ 149.765625, -68.592487 ], [ 150.292969, -68.592487 ], [ 150.292969, -68.656555 ], [ 150.996094, -68.656555 ], [ 150.996094, -68.720441 ], [ 151.699219, -68.720441 ], [ 151.699219, -68.784144 ], [ 152.226562, -68.784144 ], [ 152.226562, -68.847665 ], [ 152.929688, -68.847665 ], [ 152.929688, -68.911005 ], [ 153.808594, -68.911005 ], [ 153.808594, -68.847665 ], [ 153.984375, -68.847665 ], [ 153.984375, -68.720441 ], [ 154.160156, -68.720441 ], [ 154.160156, -68.656555 ], [ 154.511719, -68.656555 ], [ 154.511719, -68.720441 ], [ 154.863281, -68.720441 ], [ 154.863281, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.847665 ], [ 155.214844, -68.847665 ], [ 155.214844, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -68.974164 ], [ 155.566406, -68.974164 ], [ 155.566406, -69.099940 ], [ 155.742188, -69.099940 ], [ 155.742188, -69.162558 ], [ 155.917969, -69.162558 ], [ 155.917969, -69.224997 ], [ 156.093750, -69.224997 ], [ 156.093750, -69.287257 ], [ 156.445312, -69.287257 ], [ 156.445312, -69.349339 ], [ 156.621094, -69.349339 ], [ 156.621094, -69.411242 ], [ 157.324219, -69.411242 ], [ 157.324219, -69.472969 ], [ 158.203125, -69.472969 ], [ 158.203125, -69.534518 ], [ 158.906250, -69.534518 ], [ 158.906250, -69.595890 ], [ 159.257812, -69.595890 ], [ 159.257812, -69.718107 ], [ 159.433594, -69.718107 ], [ 159.433594, -69.960439 ], [ 159.609375, -69.960439 ], [ 159.609375, -70.020587 ], [ 159.785156, -70.020587 ], [ 159.785156, -70.080562 ], [ 160.136719, -70.080562 ], [ 160.136719, -70.140364 ], [ 160.488281, -70.140364 ], [ 160.488281, -70.199994 ], [ 160.839844, -70.199994 ], [ 160.839844, -70.259452 ], [ 161.015625, -70.259452 ], [ 161.015625, -70.377854 ], [ 161.191406, -70.377854 ], [ 161.191406, -70.436799 ], [ 161.367188, -70.436799 ], [ 161.367188, -70.554179 ], [ 161.718750, -70.554179 ], [ 161.718750, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.670881 ], [ 162.421875, -70.670881 ], [ 162.421875, -70.728979 ], [ 164.179688, -70.728979 ], [ 164.179688, -70.786910 ], [ 165.585938, -70.786910 ], [ 165.585938, -70.728979 ], [ 166.289062, -70.728979 ], [ 166.289062, -70.786910 ], [ 166.992188, -70.786910 ], [ 166.992188, -70.844673 ], [ 167.519531, -70.844673 ], [ 167.519531, -70.902268 ], [ 168.046875, -70.902268 ], [ 168.046875, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.016960 ], [ 168.750000, -71.016960 ], [ 168.750000, -71.074056 ], [ 168.925781, -71.074056 ], [ 168.925781, -71.130988 ], [ 169.277344, -71.130988 ], [ 169.277344, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.244356 ], [ 169.804688, -71.244356 ], [ 169.804688, -71.300793 ], [ 169.980469, -71.300793 ], [ 169.980469, -71.357067 ], [ 170.332031, -71.357067 ], [ 170.332031, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.469124 ], [ 170.683594, -71.469124 ], [ 170.683594, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -71.635993 ], [ 171.035156, -71.635993 ], [ 171.035156, -71.691293 ], [ 171.210938, -71.691293 ], [ 171.210938, -71.910888 ], [ 171.035156, -71.910888 ], [ 171.035156, -72.181804 ], [ 170.859375, -72.181804 ], [ 170.859375, -72.289067 ], [ 170.683594, -72.289067 ], [ 170.683594, -72.395706 ], [ 170.507812, -72.395706 ], [ 170.507812, -72.554498 ], [ 170.332031, -72.554498 ], [ 170.332031, -72.764065 ], [ 170.156250, -72.764065 ], [ 170.156250, -72.971189 ], [ 169.980469, -72.971189 ], [ 169.980469, -73.175897 ], [ 169.804688, -73.175897 ], [ 169.804688, -73.327858 ], [ 169.628906, -73.327858 ], [ 169.628906, -73.478485 ], [ 169.453125, -73.478485 ], [ 169.453125, -73.627789 ], [ 169.277344, -73.627789 ], [ 169.277344, -73.677264 ], [ 169.101562, -73.677264 ], [ 169.101562, -73.726595 ], [ 168.750000, -73.726595 ], [ 168.750000, -73.775780 ], [ 168.398438, -73.775780 ], [ 168.398438, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -73.873717 ], [ 167.871094, -73.873717 ], [ 167.871094, -73.971078 ], [ 167.695312, -73.971078 ], [ 167.695312, -74.067866 ], [ 167.519531, -74.067866 ], [ 167.519531, -74.164085 ], [ 167.343750, -74.164085 ], [ 167.343750, -74.211983 ], [ 166.992188, -74.211983 ], [ 166.992188, -74.259738 ], [ 166.816406, -74.259738 ], [ 166.816406, -74.307353 ], [ 166.640625, -74.307353 ], [ 166.640625, -74.354828 ], [ 166.289062, -74.354828 ], [ 166.289062, -74.402163 ], [ 166.113281, -74.402163 ], [ 166.113281, -74.496413 ], [ 165.937500, -74.496413 ], [ 165.937500, -74.590108 ], [ 165.761719, -74.590108 ], [ 165.761719, -74.729615 ], [ 165.585938, -74.729615 ], [ 165.585938, -74.821934 ], [ 165.410156, -74.821934 ], [ 165.410156, -74.913708 ], [ 165.234375, -74.913708 ], [ 165.234375, -75.004940 ], [ 165.058594, -75.004940 ], [ 165.058594, -75.095633 ], [ 164.882812, -75.095633 ], [ 164.882812, -75.185789 ], [ 164.707031, -75.185789 ], [ 164.707031, -75.275413 ], [ 164.531250, -75.275413 ], [ 164.531250, -75.364506 ], [ 164.355469, -75.364506 ], [ 164.355469, -75.453071 ], [ 164.179688, -75.453071 ], [ 164.179688, -75.584937 ], [ 164.003906, -75.584937 ], [ 164.003906, -75.802118 ], [ 163.828125, -75.802118 ], [ 163.828125, -76.058508 ], [ 163.652344, -76.058508 ], [ 163.652344, -76.475773 ], [ 163.476562, -76.475773 ], [ 163.476562, -77.157163 ], [ 163.652344, -77.157163 ], [ 163.652344, -77.273855 ], [ 163.828125, -77.273855 ], [ 163.828125, -77.427824 ], [ 164.003906, -77.427824 ], [ 164.003906, -77.579959 ], [ 164.179688, -77.579959 ], [ 164.179688, -77.767582 ], [ 164.355469, -77.767582 ], [ 164.355469, -77.952414 ], [ 164.531250, -77.952414 ], [ 164.531250, -78.098296 ], [ 164.707031, -78.098296 ], [ 164.707031, -78.170582 ], [ 164.882812, -78.170582 ], [ 164.882812, -78.206563 ], [ 165.410156, -78.206563 ], [ 165.410156, -78.242436 ], [ 165.761719, -78.242436 ], [ 165.761719, -78.278201 ], [ 166.289062, -78.278201 ], [ 166.289062, -78.313860 ], [ 166.640625, -78.313860 ], [ 166.640625, -78.455425 ], [ 166.816406, -78.455425 ], [ 166.816406, -78.664608 ], [ 166.992188, -78.664608 ], [ 166.992188, -78.767792 ], [ 166.816406, -78.767792 ], [ 166.816406, -78.801980 ], [ 166.464844, -78.801980 ], [ 166.464844, -78.836065 ], [ 165.937500, -78.836065 ], [ 165.937500, -78.870048 ], [ 165.585938, -78.870048 ], [ 165.585938, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -78.937708 ], [ 165.058594, -78.937708 ], [ 165.058594, -78.971386 ], [ 164.707031, -78.971386 ], [ 164.707031, -79.004962 ], [ 164.531250, -79.004962 ], [ 164.531250, -79.038437 ], [ 164.355469, -79.038437 ], [ 164.355469, -79.071812 ], [ 164.003906, -79.071812 ], [ 164.003906, -79.105086 ], [ 163.828125, -79.105086 ], [ 163.828125, -79.138260 ], [ 162.773438, -79.138260 ], [ 162.773438, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.269962 ], [ 161.542969, -79.269962 ], [ 161.542969, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.160511 ], [ 136.054688, -66.160511 ], [ 136.054688, -66.302205 ], [ 136.230469, -66.302205 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.861082 ], [ 137.109375, -66.861082 ], [ 137.109375, -66.930060 ], [ 139.394531, -66.930060 ], [ 139.394531, -66.861082 ], [ 140.449219, -66.861082 ], [ 140.449219, -66.791909 ], [ 143.613281, -66.791909 ], [ 143.613281, -66.861082 ], [ 144.843750, -66.861082 ], [ 144.843750, -66.930060 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.054688, -66.160511 ], [ 136.054688, -66.302205 ], [ 136.230469, -66.302205 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.861082 ], [ 137.109375, -66.861082 ], [ 137.109375, -66.930060 ], [ 139.394531, -66.930060 ], [ 139.394531, -66.861082 ], [ 140.449219, -66.861082 ], [ 140.449219, -66.791909 ], [ 143.613281, -66.791909 ], [ 143.613281, -66.861082 ], [ 144.843750, -66.861082 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -66.998844 ], [ 145.722656, -66.998844 ], [ 145.722656, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.135829 ], [ 146.074219, -67.135829 ], [ 146.074219, -67.204032 ], [ 146.250000, -67.204032 ], [ 146.250000, -67.407487 ], [ 146.074219, -67.407487 ], [ 146.074219, -67.676085 ], [ 146.250000, -67.676085 ], [ 146.250000, -67.742759 ], [ 146.425781, -67.742759 ], [ 146.425781, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -67.941650 ], [ 146.953125, -67.941650 ], [ 146.953125, -68.007571 ], [ 147.128906, -68.007571 ], [ 147.128906, -68.073305 ], [ 147.480469, -68.073305 ], [ 147.480469, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.204212 ], [ 148.007812, -68.204212 ], [ 148.007812, -68.269387 ], [ 148.359375, -68.269387 ], [ 148.359375, -68.334376 ], [ 148.710938, -68.334376 ], [ 148.710938, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.463800 ], [ 149.414062, -68.463800 ], [ 149.414062, -68.528235 ], [ 149.765625, -68.528235 ], [ 149.765625, -68.592487 ], [ 150.292969, -68.592487 ], [ 150.292969, -68.656555 ], [ 150.996094, -68.656555 ], [ 150.996094, -68.720441 ], [ 151.699219, -68.720441 ], [ 151.699219, -68.784144 ], [ 152.226562, -68.784144 ], [ 152.226562, -68.847665 ], [ 152.929688, -68.847665 ], [ 152.929688, -68.911005 ], [ 153.808594, -68.911005 ], [ 153.808594, -68.847665 ], [ 153.984375, -68.847665 ], [ 153.984375, -68.720441 ], [ 154.160156, -68.720441 ], [ 154.160156, -68.656555 ], [ 154.511719, -68.656555 ], [ 154.511719, -68.720441 ], [ 154.863281, -68.720441 ], [ 154.863281, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.847665 ], [ 155.214844, -68.847665 ], [ 155.214844, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -68.974164 ], [ 155.566406, -68.974164 ], [ 155.566406, -69.099940 ], [ 155.742188, -69.099940 ], [ 155.742188, -69.162558 ], [ 155.917969, -69.162558 ], [ 155.917969, -69.224997 ], [ 156.093750, -69.224997 ], [ 156.093750, -69.287257 ], [ 156.445312, -69.287257 ], [ 156.445312, -69.349339 ], [ 156.621094, -69.349339 ], [ 156.621094, -69.411242 ], [ 157.324219, -69.411242 ], [ 157.324219, -69.472969 ], [ 158.203125, -69.472969 ], [ 158.203125, -69.534518 ], [ 158.906250, -69.534518 ], [ 158.906250, -69.595890 ], [ 159.257812, -69.595890 ], [ 159.257812, -69.718107 ], [ 159.433594, -69.718107 ], [ 159.433594, -69.960439 ], [ 159.609375, -69.960439 ], [ 159.609375, -70.020587 ], [ 159.785156, -70.020587 ], [ 159.785156, -70.080562 ], [ 160.136719, -70.080562 ], [ 160.136719, -70.140364 ], [ 160.488281, -70.140364 ], [ 160.488281, -70.199994 ], [ 160.839844, -70.199994 ], [ 160.839844, -70.259452 ], [ 161.015625, -70.259452 ], [ 161.015625, -70.377854 ], [ 161.191406, -70.377854 ], [ 161.191406, -70.436799 ], [ 161.367188, -70.436799 ], [ 161.367188, -70.554179 ], [ 161.718750, -70.554179 ], [ 161.718750, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.670881 ], [ 162.421875, -70.670881 ], [ 162.421875, -70.728979 ], [ 164.179688, -70.728979 ], [ 164.179688, -70.786910 ], [ 165.585938, -70.786910 ], [ 165.585938, -70.728979 ], [ 166.289062, -70.728979 ], [ 166.289062, -70.786910 ], [ 166.992188, -70.786910 ], [ 166.992188, -70.844673 ], [ 167.519531, -70.844673 ], [ 167.519531, -70.902268 ], [ 168.046875, -70.902268 ], [ 168.046875, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.016960 ], [ 168.750000, -71.016960 ], [ 168.750000, -71.074056 ], [ 168.925781, -71.074056 ], [ 168.925781, -71.130988 ], [ 169.277344, -71.130988 ], [ 169.277344, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.244356 ], [ 169.804688, -71.244356 ], [ 169.804688, -71.300793 ], [ 169.980469, -71.300793 ], [ 169.980469, -71.357067 ], [ 170.332031, -71.357067 ], [ 170.332031, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.469124 ], [ 170.683594, -71.469124 ], [ 170.683594, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -71.635993 ], [ 171.035156, -71.635993 ], [ 171.035156, -71.691293 ], [ 171.210938, -71.691293 ], [ 171.210938, -71.910888 ], [ 171.035156, -71.910888 ], [ 171.035156, -72.181804 ], [ 170.859375, -72.181804 ], [ 170.859375, -72.289067 ], [ 170.683594, -72.289067 ], [ 170.683594, -72.395706 ], [ 170.507812, -72.395706 ], [ 170.507812, -72.554498 ], [ 170.332031, -72.554498 ], [ 170.332031, -72.764065 ], [ 170.156250, -72.764065 ], [ 170.156250, -72.971189 ], [ 169.980469, -72.971189 ], [ 169.980469, -73.175897 ], [ 169.804688, -73.175897 ], [ 169.804688, -73.327858 ], [ 169.628906, -73.327858 ], [ 169.628906, -73.478485 ], [ 169.453125, -73.478485 ], [ 169.453125, -73.627789 ], [ 169.277344, -73.627789 ], [ 169.277344, -73.677264 ], [ 169.101562, -73.677264 ], [ 169.101562, -73.726595 ], [ 168.750000, -73.726595 ], [ 168.750000, -73.775780 ], [ 168.398438, -73.775780 ], [ 168.398438, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -73.873717 ], [ 167.871094, -73.873717 ], [ 167.871094, -73.971078 ], [ 167.695312, -73.971078 ], [ 167.695312, -74.067866 ], [ 167.519531, -74.067866 ], [ 167.519531, -74.164085 ], [ 167.343750, -74.164085 ], [ 167.343750, -74.211983 ], [ 166.992188, -74.211983 ], [ 166.992188, -74.259738 ], [ 166.816406, -74.259738 ], [ 166.816406, -74.307353 ], [ 166.640625, -74.307353 ], [ 166.640625, -74.354828 ], [ 166.289062, -74.354828 ], [ 166.289062, -74.402163 ], [ 166.113281, -74.402163 ], [ 166.113281, -74.496413 ], [ 165.937500, -74.496413 ], [ 165.937500, -74.590108 ], [ 165.761719, -74.590108 ], [ 165.761719, -74.729615 ], [ 165.585938, -74.729615 ], [ 165.585938, -74.821934 ], [ 165.410156, -74.821934 ], [ 165.410156, -74.913708 ], [ 165.234375, -74.913708 ], [ 165.234375, -75.004940 ], [ 165.058594, -75.004940 ], [ 165.058594, -75.095633 ], [ 164.882812, -75.095633 ], [ 164.882812, -75.185789 ], [ 164.707031, -75.185789 ], [ 164.707031, -75.275413 ], [ 164.531250, -75.275413 ], [ 164.531250, -75.364506 ], [ 164.355469, -75.364506 ], [ 164.355469, -75.453071 ], [ 164.179688, -75.453071 ], [ 164.179688, -75.584937 ], [ 164.003906, -75.584937 ], [ 164.003906, -75.802118 ], [ 163.828125, -75.802118 ], [ 163.828125, -76.058508 ], [ 163.652344, -76.058508 ], [ 163.652344, -76.475773 ], [ 163.476562, -76.475773 ], [ 163.476562, -77.157163 ], [ 163.652344, -77.157163 ], [ 163.652344, -77.273855 ], [ 163.828125, -77.273855 ], [ 163.828125, -77.427824 ], [ 164.003906, -77.427824 ], [ 164.003906, -77.579959 ], [ 164.179688, -77.579959 ], [ 164.179688, -77.767582 ], [ 164.355469, -77.767582 ], [ 164.355469, -77.952414 ], [ 164.531250, -77.952414 ], [ 164.531250, -78.098296 ], [ 164.707031, -78.098296 ], [ 164.707031, -78.170582 ], [ 164.882812, -78.170582 ], [ 164.882812, -78.206563 ], [ 165.410156, -78.206563 ], [ 165.410156, -78.242436 ], [ 165.761719, -78.242436 ], [ 165.761719, -78.278201 ], [ 166.289062, -78.278201 ], [ 166.289062, -78.313860 ], [ 166.640625, -78.313860 ], [ 166.640625, -78.455425 ], [ 166.816406, -78.455425 ], [ 166.816406, -78.664608 ], [ 166.992188, -78.664608 ], [ 166.992188, -78.767792 ], [ 166.816406, -78.767792 ], [ 166.816406, -78.801980 ], [ 166.464844, -78.801980 ], [ 166.464844, -78.836065 ], [ 165.937500, -78.836065 ], [ 165.937500, -78.870048 ], [ 165.585938, -78.870048 ], [ 165.585938, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -78.937708 ], [ 165.058594, -78.937708 ], [ 165.058594, -78.971386 ], [ 164.707031, -78.971386 ], [ 164.707031, -79.004962 ], [ 164.531250, -79.004962 ], [ 164.531250, -79.038437 ], [ 164.355469, -79.038437 ], [ 164.355469, -79.071812 ], [ 164.003906, -79.071812 ], [ 164.003906, -79.105086 ], [ 163.828125, -79.105086 ], [ 163.828125, -79.138260 ], [ 162.773438, -79.138260 ], [ 162.773438, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.269962 ], [ 161.542969, -79.269962 ], [ 161.542969, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.160511 ], [ 136.054688, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.625000, -66.791909 ], [ 143.613281, -66.791909 ], [ 143.613281, -66.861082 ], [ 140.625000, -66.861082 ], [ 140.625000, -66.791909 ] ] ], [ [ [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.585720 ], [ 135.703125, -65.585720 ], [ 135.703125, -65.802776 ], [ 135.878906, -65.802776 ], [ 135.878906, -66.160511 ], [ 136.054688, -66.160511 ], [ 136.054688, -66.372755 ], [ 136.230469, -66.372755 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.018018 ], [ 135.000000, -66.018018 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.585720 ], [ 135.703125, -65.585720 ], [ 135.703125, -65.802776 ], [ 135.878906, -65.802776 ], [ 135.878906, -66.160511 ], [ 136.054688, -66.160511 ], [ 136.054688, -66.372755 ], [ 136.230469, -66.372755 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.018018 ], [ 135.000000, -66.018018 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ] ] ], [ [ [ 143.613281, -66.861082 ], [ 140.625000, -66.861082 ], [ 140.625000, -66.791909 ], [ 143.613281, -66.791909 ], [ 143.613281, -66.861082 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.843750, -40.847060 ], [ 145.546875, -40.847060 ], [ 145.546875, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.777344, -41.112469 ], [ 146.777344, -40.979898 ], [ 147.480469, -40.979898 ], [ 147.480469, -40.847060 ], [ 148.359375, -40.847060 ], [ 148.359375, -42.163403 ], [ 148.183594, -42.163403 ], [ 148.183594, -42.423457 ], [ 148.007812, -42.423457 ], [ 148.007812, -42.811522 ], [ 147.832031, -42.811522 ], [ 147.832031, -43.197167 ], [ 147.656250, -43.197167 ], [ 147.656250, -43.068888 ], [ 147.304688, -43.068888 ], [ 147.304688, -43.325178 ], [ 147.128906, -43.325178 ], [ 147.128906, -43.580391 ], [ 145.898438, -43.580391 ], [ 145.898438, -43.325178 ], [ 145.722656, -43.325178 ], [ 145.722656, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -42.811522 ], [ 145.371094, -42.811522 ], [ 145.371094, -42.032974 ], [ 145.195312, -42.032974 ], [ 145.195312, -41.771312 ], [ 145.019531, -41.771312 ], [ 145.019531, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -41.244772 ], [ 144.667969, -41.244772 ], [ 144.667969, -40.713956 ], [ 144.843750, -40.713956 ], [ 144.843750, -40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.843750, -40.713956 ], [ 144.843750, -40.847060 ], [ 145.546875, -40.847060 ], [ 145.546875, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.777344, -41.112469 ], [ 146.777344, -40.979898 ], [ 147.480469, -40.979898 ], [ 147.480469, -40.847060 ], [ 148.359375, -40.847060 ], [ 148.359375, -42.163403 ], [ 148.183594, -42.163403 ], [ 148.183594, -42.423457 ], [ 148.007812, -42.423457 ], [ 148.007812, -42.811522 ], [ 147.832031, -42.811522 ], [ 147.832031, -43.197167 ], [ 147.656250, -43.197167 ], [ 147.656250, -43.068888 ], [ 147.304688, -43.068888 ], [ 147.304688, -43.325178 ], [ 147.128906, -43.325178 ], [ 147.128906, -43.580391 ], [ 145.898438, -43.580391 ], [ 145.898438, -43.325178 ], [ 145.722656, -43.325178 ], [ 145.722656, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -42.811522 ], [ 145.371094, -42.811522 ], [ 145.371094, -42.032974 ], [ 145.195312, -42.032974 ], [ 145.195312, -41.771312 ], [ 145.019531, -41.771312 ], [ 145.019531, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -41.244772 ], [ 144.667969, -41.244772 ], [ 144.667969, -40.713956 ], [ 144.843750, -40.713956 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.376809 ], [ 173.496094, -41.376809 ], [ 173.496094, -41.244772 ], [ 173.847656, -41.244772 ], [ 173.847656, -41.112469 ], [ 174.023438, -41.112469 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.902277 ], [ 174.023438, -41.902277 ], [ 174.023438, -42.163403 ], [ 173.847656, -42.163403 ], [ 173.847656, -42.423457 ], [ 173.671875, -42.423457 ], [ 173.671875, -42.553080 ], [ 173.496094, -42.553080 ], [ 173.496094, -42.811522 ], [ 173.320312, -42.811522 ], [ 173.320312, -42.940339 ], [ 173.144531, -42.940339 ], [ 173.144531, -43.068888 ], [ 172.968750, -43.068888 ], [ 172.968750, -43.325178 ], [ 172.792969, -43.325178 ], [ 172.792969, -43.452919 ], [ 172.968750, -43.452919 ], [ 172.968750, -43.707594 ], [ 173.144531, -43.707594 ], [ 173.144531, -43.834527 ], [ 172.265625, -43.834527 ], [ 172.265625, -43.961191 ], [ 171.914062, -43.961191 ], [ 171.914062, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -44.213710 ], [ 171.386719, -44.213710 ], [ 171.386719, -44.590467 ], [ 171.210938, -44.590467 ], [ 171.210938, -45.089036 ], [ 171.035156, -45.089036 ], [ 171.035156, -45.460131 ], [ 170.859375, -45.460131 ], [ 170.859375, -45.828799 ], [ 170.683594, -45.828799 ], [ 170.683594, -46.073231 ], [ 170.332031, -46.073231 ], [ 170.332031, -46.195042 ], [ 169.980469, -46.195042 ], [ 169.980469, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.437857 ], [ 169.628906, -46.437857 ], [ 169.628906, -46.558860 ], [ 169.453125, -46.558860 ], [ 169.453125, -46.679594 ], [ 168.222656, -46.679594 ], [ 168.222656, -46.558860 ], [ 167.871094, -46.558860 ], [ 167.871094, -46.437857 ], [ 167.695312, -46.437857 ], [ 167.695312, -46.316584 ], [ 166.992188, -46.316584 ], [ 166.992188, -46.195042 ], [ 166.640625, -46.195042 ], [ 166.640625, -46.073231 ], [ 166.464844, -46.073231 ], [ 166.464844, -45.706179 ], [ 166.640625, -45.706179 ], [ 166.640625, -45.460131 ], [ 166.816406, -45.460131 ], [ 166.816406, -45.213004 ], [ 166.992188, -45.213004 ], [ 166.992188, -45.089036 ], [ 167.167969, -45.089036 ], [ 167.167969, -44.964798 ], [ 167.343750, -44.964798 ], [ 167.343750, -44.840291 ], [ 167.519531, -44.840291 ], [ 167.519531, -44.590467 ], [ 167.695312, -44.590467 ], [ 167.695312, -44.465151 ], [ 167.871094, -44.465151 ], [ 167.871094, -44.339565 ], [ 168.046875, -44.339565 ], [ 168.046875, -44.213710 ], [ 168.222656, -44.213710 ], [ 168.222656, -44.087585 ], [ 168.750000, -44.087585 ], [ 168.750000, -43.961191 ], [ 169.101562, -43.961191 ], [ 169.101562, -43.834527 ], [ 169.453125, -43.834527 ], [ 169.453125, -43.707594 ], [ 169.628906, -43.707594 ], [ 169.628906, -43.580391 ], [ 169.804688, -43.580391 ], [ 169.804688, -43.452919 ], [ 169.980469, -43.452919 ], [ 169.980469, -43.325178 ], [ 170.332031, -43.325178 ], [ 170.332031, -43.197167 ], [ 170.507812, -43.197167 ], [ 170.507812, -43.068888 ], [ 170.683594, -43.068888 ], [ 170.683594, -42.940339 ], [ 170.859375, -42.940339 ], [ 170.859375, -42.811522 ], [ 171.035156, -42.811522 ], [ 171.035156, -42.682435 ], [ 171.210938, -42.682435 ], [ 171.210938, -42.423457 ], [ 171.386719, -42.423457 ], [ 171.386719, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -41.771312 ], [ 171.738281, -41.771312 ], [ 171.738281, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.979898 ], [ 172.265625, -40.979898 ], [ 172.265625, -40.847060 ], [ 172.441406, -40.847060 ], [ 172.441406, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ] ] ], [ [ [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.781250, -41.376809 ], [ 175.781250, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.640078 ], [ 175.253906, -41.640078 ], [ 175.253906, -41.508577 ], [ 175.078125, -41.508577 ], [ 175.078125, -41.376809 ], [ 174.726562, -41.376809 ], [ 174.726562, -41.112469 ], [ 174.902344, -41.112469 ], [ 174.902344, -40.847060 ], [ 175.078125, -40.847060 ], [ 175.078125, -40.580585 ], [ 175.253906, -40.580585 ], [ 175.253906, -40.446947 ], [ 175.078125, -40.446947 ], [ 175.078125, -40.313043 ], [ 176.660156, -40.313043 ], [ 176.660156, -40.446947 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.376809 ], [ 173.496094, -41.376809 ], [ 173.496094, -41.244772 ], [ 173.847656, -41.244772 ], [ 173.847656, -41.112469 ], [ 174.023438, -41.112469 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.902277 ], [ 174.023438, -41.902277 ], [ 174.023438, -42.163403 ], [ 173.847656, -42.163403 ], [ 173.847656, -42.423457 ], [ 173.671875, -42.423457 ], [ 173.671875, -42.553080 ], [ 173.496094, -42.553080 ], [ 173.496094, -42.811522 ], [ 173.320312, -42.811522 ], [ 173.320312, -42.940339 ], [ 173.144531, -42.940339 ], [ 173.144531, -43.068888 ], [ 172.968750, -43.068888 ], [ 172.968750, -43.325178 ], [ 172.792969, -43.325178 ], [ 172.792969, -43.452919 ], [ 172.968750, -43.452919 ], [ 172.968750, -43.707594 ], [ 173.144531, -43.707594 ], [ 173.144531, -43.834527 ], [ 172.265625, -43.834527 ], [ 172.265625, -43.961191 ], [ 171.914062, -43.961191 ], [ 171.914062, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -44.213710 ], [ 171.386719, -44.213710 ], [ 171.386719, -44.590467 ], [ 171.210938, -44.590467 ], [ 171.210938, -45.089036 ], [ 171.035156, -45.089036 ], [ 171.035156, -45.460131 ], [ 170.859375, -45.460131 ], [ 170.859375, -45.828799 ], [ 170.683594, -45.828799 ], [ 170.683594, -46.073231 ], [ 170.332031, -46.073231 ], [ 170.332031, -46.195042 ], [ 169.980469, -46.195042 ], [ 169.980469, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.437857 ], [ 169.628906, -46.437857 ], [ 169.628906, -46.558860 ], [ 169.453125, -46.558860 ], [ 169.453125, -46.679594 ], [ 168.222656, -46.679594 ], [ 168.222656, -46.558860 ], [ 167.871094, -46.558860 ], [ 167.871094, -46.437857 ], [ 167.695312, -46.437857 ], [ 167.695312, -46.316584 ], [ 166.992188, -46.316584 ], [ 166.992188, -46.195042 ], [ 166.640625, -46.195042 ], [ 166.640625, -46.073231 ], [ 166.464844, -46.073231 ], [ 166.464844, -45.706179 ], [ 166.640625, -45.706179 ], [ 166.640625, -45.460131 ], [ 166.816406, -45.460131 ], [ 166.816406, -45.213004 ], [ 166.992188, -45.213004 ], [ 166.992188, -45.089036 ], [ 167.167969, -45.089036 ], [ 167.167969, -44.964798 ], [ 167.343750, -44.964798 ], [ 167.343750, -44.840291 ], [ 167.519531, -44.840291 ], [ 167.519531, -44.590467 ], [ 167.695312, -44.590467 ], [ 167.695312, -44.465151 ], [ 167.871094, -44.465151 ], [ 167.871094, -44.339565 ], [ 168.046875, -44.339565 ], [ 168.046875, -44.213710 ], [ 168.222656, -44.213710 ], [ 168.222656, -44.087585 ], [ 168.750000, -44.087585 ], [ 168.750000, -43.961191 ], [ 169.101562, -43.961191 ], [ 169.101562, -43.834527 ], [ 169.453125, -43.834527 ], [ 169.453125, -43.707594 ], [ 169.628906, -43.707594 ], [ 169.628906, -43.580391 ], [ 169.804688, -43.580391 ], [ 169.804688, -43.452919 ], [ 169.980469, -43.452919 ], [ 169.980469, -43.325178 ], [ 170.332031, -43.325178 ], [ 170.332031, -43.197167 ], [ 170.507812, -43.197167 ], [ 170.507812, -43.068888 ], [ 170.683594, -43.068888 ], [ 170.683594, -42.940339 ], [ 170.859375, -42.940339 ], [ 170.859375, -42.811522 ], [ 171.035156, -42.811522 ], [ 171.035156, -42.682435 ], [ 171.210938, -42.682435 ], [ 171.210938, -42.423457 ], [ 171.386719, -42.423457 ], [ 171.386719, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -41.771312 ], [ 171.738281, -41.771312 ], [ 171.738281, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.979898 ], [ 172.265625, -40.979898 ], [ 172.265625, -40.847060 ], [ 172.441406, -40.847060 ], [ 172.441406, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ] ] ], [ [ [ 176.660156, -40.313043 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.781250, -41.376809 ], [ 175.781250, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.640078 ], [ 175.253906, -41.640078 ], [ 175.253906, -41.508577 ], [ 175.078125, -41.508577 ], [ 175.078125, -41.376809 ], [ 174.726562, -41.376809 ], [ 174.726562, -41.112469 ], [ 174.902344, -41.112469 ], [ 174.902344, -40.847060 ], [ 175.078125, -40.847060 ], [ 175.078125, -40.580585 ], [ 175.253906, -40.580585 ], [ 175.253906, -40.446947 ], [ 175.078125, -40.446947 ], [ 175.078125, -40.313043 ], [ 176.660156, -40.313043 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.769531, -17.978733 ], [ 178.593750, -17.978733 ], [ 178.593750, -18.145852 ], [ 178.417969, -18.145852 ], [ 178.417969, -18.312811 ], [ 177.539062, -18.312811 ], [ 177.539062, -18.145852 ], [ 177.363281, -18.145852 ], [ 177.363281, -17.644022 ], [ 177.539062, -17.644022 ], [ 177.539062, -17.476432 ], [ 178.593750, -17.476432 ], [ 178.593750, -17.644022 ], [ 178.769531, -17.644022 ], [ 178.769531, -17.978733 ] ] ], [ [ [ 180.000000, -16.636192 ], [ 179.824219, -16.636192 ], [ 179.824219, -16.804541 ], [ 179.121094, -16.804541 ], [ 179.121094, -16.972741 ], [ 178.769531, -16.972741 ], [ 178.769531, -16.804541 ], [ 178.593750, -16.804541 ], [ 178.593750, -16.636192 ], [ 178.945312, -16.636192 ], [ 178.945312, -16.467695 ], [ 179.472656, -16.467695 ], [ 179.472656, -16.299051 ], [ 179.824219, -16.299051 ], [ 179.824219, -16.130262 ], [ 180.000000, -16.130262 ], [ 180.000000, -16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.476432 ], [ 178.593750, -17.644022 ], [ 178.769531, -17.644022 ], [ 178.769531, -17.978733 ], [ 178.593750, -17.978733 ], [ 178.593750, -18.145852 ], [ 178.417969, -18.145852 ], [ 178.417969, -18.312811 ], [ 177.539062, -18.312811 ], [ 177.539062, -18.145852 ], [ 177.363281, -18.145852 ], [ 177.363281, -17.644022 ], [ 177.539062, -17.644022 ], [ 177.539062, -17.476432 ], [ 178.593750, -17.476432 ] ] ], [ [ [ 180.000000, -16.130262 ], [ 180.000000, -16.636192 ], [ 179.824219, -16.636192 ], [ 179.824219, -16.804541 ], [ 179.121094, -16.804541 ], [ 179.121094, -16.972741 ], [ 178.769531, -16.972741 ], [ 178.769531, -16.804541 ], [ 178.593750, -16.804541 ], [ 178.593750, -16.636192 ], [ 178.945312, -16.636192 ], [ 178.945312, -16.467695 ], [ 179.472656, -16.467695 ], [ 179.472656, -16.299051 ], [ 179.824219, -16.299051 ], [ 179.824219, -16.130262 ], [ 180.000000, -16.130262 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.867188, -2.108899 ], [ 139.218750, -2.108899 ], [ 139.218750, -2.284551 ], [ 139.570312, -2.284551 ], [ 139.570312, -2.460181 ], [ 140.273438, -2.460181 ], [ 140.273438, -2.635789 ], [ 140.976562, -2.635789 ], [ 140.976562, -9.102097 ], [ 140.800781, -9.102097 ], [ 140.800781, -8.928487 ], [ 140.625000, -8.928487 ], [ 140.625000, -8.754795 ], [ 140.449219, -8.754795 ], [ 140.449219, -8.581021 ], [ 140.273438, -8.581021 ], [ 140.273438, -8.407168 ], [ 140.097656, -8.407168 ], [ 140.097656, -8.233237 ], [ 139.394531, -8.233237 ], [ 139.394531, -8.059230 ], [ 139.042969, -8.059230 ], [ 139.042969, -8.233237 ], [ 138.867188, -8.233237 ], [ 138.867188, -8.407168 ], [ 137.636719, -8.407168 ], [ 137.636719, -8.233237 ], [ 137.812500, -8.233237 ], [ 137.812500, -7.885147 ], [ 137.988281, -7.885147 ], [ 137.988281, -7.536764 ], [ 138.515625, -7.536764 ], [ 138.515625, -7.362467 ], [ 138.691406, -7.362467 ], [ 138.691406, -7.188101 ], [ 138.515625, -7.188101 ], [ 138.515625, -6.664608 ], [ 138.339844, -6.664608 ], [ 138.339844, -6.140555 ], [ 138.164062, -6.140555 ], [ 138.164062, -5.790897 ], [ 137.988281, -5.790897 ], [ 137.988281, -5.441022 ], [ 137.636719, -5.441022 ], [ 137.636719, -5.266008 ], [ 137.285156, -5.266008 ], [ 137.285156, -5.090944 ], [ 136.933594, -5.090944 ], [ 136.933594, -4.915833 ], [ 136.582031, -4.915833 ], [ 136.582031, -4.740675 ], [ 136.230469, -4.740675 ], [ 136.230469, -4.565474 ], [ 135.527344, -4.565474 ], [ 135.527344, -4.390229 ], [ 134.824219, -4.390229 ], [ 134.824219, -4.214943 ], [ 134.472656, -4.214943 ], [ 134.472656, -4.039618 ], [ 134.121094, -4.039618 ], [ 134.121094, -1.757537 ], [ 134.296875, -1.757537 ], [ 134.296875, -2.460181 ], [ 134.472656, -2.460181 ], [ 134.472656, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.703125, -3.337954 ], [ 135.703125, -2.986927 ], [ 135.878906, -2.986927 ], [ 135.878906, -2.811371 ], [ 136.054688, -2.811371 ], [ 136.054688, -2.460181 ], [ 136.230469, -2.460181 ], [ 136.230469, -2.284551 ], [ 136.582031, -2.284551 ], [ 136.582031, -2.108899 ], [ 136.933594, -2.108899 ], [ 136.933594, -1.933227 ], [ 137.285156, -1.933227 ], [ 137.285156, -1.757537 ], [ 138.515625, -1.757537 ], [ 138.515625, -1.933227 ], [ 138.867188, -1.933227 ], [ 138.867188, -2.108899 ] ] ], [ [ [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.489983 ], [ 134.296875, -6.489983 ], [ 134.296875, -6.839170 ], [ 134.121094, -6.839170 ], [ 134.121094, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.515625, -1.757537 ], [ 138.515625, -1.933227 ], [ 138.867188, -1.933227 ], [ 138.867188, -2.108899 ], [ 139.218750, -2.108899 ], [ 139.218750, -2.284551 ], [ 139.570312, -2.284551 ], [ 139.570312, -2.460181 ], [ 140.273438, -2.460181 ], [ 140.273438, -2.635789 ], [ 140.976562, -2.635789 ], [ 140.976562, -9.102097 ], [ 140.800781, -9.102097 ], [ 140.800781, -8.928487 ], [ 140.625000, -8.928487 ], [ 140.625000, -8.754795 ], [ 140.449219, -8.754795 ], [ 140.449219, -8.581021 ], [ 140.273438, -8.581021 ], [ 140.273438, -8.407168 ], [ 140.097656, -8.407168 ], [ 140.097656, -8.233237 ], [ 139.394531, -8.233237 ], [ 139.394531, -8.059230 ], [ 139.042969, -8.059230 ], [ 139.042969, -8.233237 ], [ 138.867188, -8.233237 ], [ 138.867188, -8.407168 ], [ 137.636719, -8.407168 ], [ 137.636719, -8.233237 ], [ 137.812500, -8.233237 ], [ 137.812500, -7.885147 ], [ 137.988281, -7.885147 ], [ 137.988281, -7.536764 ], [ 138.515625, -7.536764 ], [ 138.515625, -7.362467 ], [ 138.691406, -7.362467 ], [ 138.691406, -7.188101 ], [ 138.515625, -7.188101 ], [ 138.515625, -6.664608 ], [ 138.339844, -6.664608 ], [ 138.339844, -6.140555 ], [ 138.164062, -6.140555 ], [ 138.164062, -5.790897 ], [ 137.988281, -5.790897 ], [ 137.988281, -5.441022 ], [ 137.636719, -5.441022 ], [ 137.636719, -5.266008 ], [ 137.285156, -5.266008 ], [ 137.285156, -5.090944 ], [ 136.933594, -5.090944 ], [ 136.933594, -4.915833 ], [ 136.582031, -4.915833 ], [ 136.582031, -4.740675 ], [ 136.230469, -4.740675 ], [ 136.230469, -4.565474 ], [ 135.527344, -4.565474 ], [ 135.527344, -4.390229 ], [ 134.824219, -4.390229 ], [ 134.824219, -4.214943 ], [ 134.472656, -4.214943 ], [ 134.472656, -4.039618 ], [ 134.121094, -4.039618 ], [ 134.121094, -1.757537 ], [ 134.296875, -1.757537 ], [ 134.296875, -2.460181 ], [ 134.472656, -2.460181 ], [ 134.472656, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.703125, -3.337954 ], [ 135.703125, -2.986927 ], [ 135.878906, -2.986927 ], [ 135.878906, -2.811371 ], [ 136.054688, -2.811371 ], [ 136.054688, -2.460181 ], [ 136.230469, -2.460181 ], [ 136.230469, -2.284551 ], [ 136.582031, -2.284551 ], [ 136.582031, -2.108899 ], [ 136.933594, -2.108899 ], [ 136.933594, -1.933227 ], [ 137.285156, -1.933227 ], [ 137.285156, -1.757537 ], [ 138.515625, -1.757537 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.489983 ], [ 134.296875, -6.489983 ], [ 134.296875, -6.839170 ], [ 134.121094, -6.839170 ], [ 134.121094, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -40.847060 ], [ 145.546875, -40.847060 ], [ 145.546875, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.777344, -41.112469 ], [ 146.777344, -40.979898 ], [ 147.480469, -40.979898 ], [ 147.480469, -40.847060 ], [ 148.359375, -40.847060 ], [ 148.359375, -41.640078 ], [ 145.019531, -41.640078 ], [ 145.019531, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -41.244772 ], [ 144.667969, -41.244772 ], [ 144.667969, -40.713956 ], [ 144.843750, -40.713956 ], [ 144.843750, -40.847060 ] ] ], [ [ [ 142.734375, -11.523088 ], [ 142.910156, -11.523088 ], [ 142.910156, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.554564 ], [ 143.261719, -12.554564 ], [ 143.261719, -12.897489 ], [ 143.437500, -12.897489 ], [ 143.437500, -13.239945 ], [ 143.613281, -13.239945 ], [ 143.613281, -14.093957 ], [ 143.789062, -14.093957 ], [ 143.789062, -14.434680 ], [ 143.964844, -14.434680 ], [ 143.964844, -14.604847 ], [ 144.140625, -14.604847 ], [ 144.140625, -14.434680 ], [ 144.316406, -14.434680 ], [ 144.316406, -14.264383 ], [ 144.667969, -14.264383 ], [ 144.667969, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -14.774883 ], [ 145.195312, -14.774883 ], [ 145.195312, -14.944785 ], [ 145.371094, -14.944785 ], [ 145.371094, -15.284185 ], [ 145.195312, -15.284185 ], [ 145.195312, -15.792254 ], [ 145.371094, -15.792254 ], [ 145.371094, -16.130262 ], [ 145.546875, -16.130262 ], [ 145.546875, -16.636192 ], [ 145.722656, -16.636192 ], [ 145.722656, -16.972741 ], [ 145.898438, -16.972741 ], [ 145.898438, -17.476432 ], [ 146.074219, -17.476432 ], [ 146.074219, -18.479609 ], [ 146.250000, -18.479609 ], [ 146.250000, -18.812718 ], [ 146.425781, -18.812718 ], [ 146.425781, -19.145168 ], [ 146.777344, -19.145168 ], [ 146.777344, -19.311143 ], [ 147.128906, -19.311143 ], [ 147.128906, -19.476950 ], [ 147.480469, -19.476950 ], [ 147.480469, -19.642588 ], [ 147.656250, -19.642588 ], [ 147.656250, -19.808054 ], [ 148.007812, -19.808054 ], [ 148.007812, -19.973349 ], [ 148.183594, -19.973349 ], [ 148.183594, -20.138470 ], [ 148.359375, -20.138470 ], [ 148.359375, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.468189 ], [ 148.886719, -20.468189 ], [ 148.886719, -20.632784 ], [ 148.710938, -20.632784 ], [ 148.710938, -20.797201 ], [ 148.886719, -20.797201 ], [ 148.886719, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.289374 ], [ 149.238281, -21.289374 ], [ 149.238281, -21.453069 ], [ 149.414062, -21.453069 ], [ 149.414062, -21.779905 ], [ 149.589844, -21.779905 ], [ 149.589844, -22.105999 ], [ 149.765625, -22.105999 ], [ 149.765625, -22.268764 ], [ 150.292969, -22.268764 ], [ 150.292969, -22.593726 ], [ 150.644531, -22.593726 ], [ 150.644531, -22.917923 ], [ 150.820312, -22.917923 ], [ 150.820312, -23.563987 ], [ 150.996094, -23.563987 ], [ 150.996094, -23.725012 ], [ 151.171875, -23.725012 ], [ 151.171875, -23.885838 ], [ 151.347656, -23.885838 ], [ 151.347656, -24.046464 ], [ 151.523438, -24.046464 ], [ 151.523438, -24.206890 ], [ 151.699219, -24.206890 ], [ 151.699219, -24.367114 ], [ 151.875000, -24.367114 ], [ 151.875000, -24.527135 ], [ 152.050781, -24.527135 ], [ 152.050781, -24.686952 ], [ 152.226562, -24.686952 ], [ 152.226562, -24.846565 ], [ 152.402344, -24.846565 ], [ 152.402344, -25.005973 ], [ 152.578125, -25.005973 ], [ 152.578125, -25.165173 ], [ 152.753906, -25.165173 ], [ 152.753906, -25.324167 ], [ 152.929688, -25.324167 ], [ 152.929688, -25.799891 ], [ 153.105469, -25.799891 ], [ 153.105469, -27.371767 ], [ 153.281250, -27.371767 ], [ 153.281250, -27.683528 ], [ 153.457031, -27.683528 ], [ 153.457031, -27.994401 ], [ 153.632812, -27.994401 ], [ 153.632812, -28.613459 ], [ 153.457031, -28.613459 ], [ 153.457031, -29.228890 ], [ 153.281250, -29.228890 ], [ 153.281250, -29.840644 ], [ 153.105469, -29.840644 ], [ 153.105469, -31.353637 ], [ 152.929688, -31.353637 ], [ 152.929688, -31.802893 ], [ 152.753906, -31.802893 ], [ 152.753906, -32.101190 ], [ 152.578125, -32.101190 ], [ 152.578125, -32.398516 ], [ 152.402344, -32.398516 ], [ 152.402344, -32.694866 ], [ 152.226562, -32.694866 ], [ 152.226562, -32.842674 ], [ 151.875000, -32.842674 ], [ 151.875000, -32.990236 ], [ 151.699219, -32.990236 ], [ 151.699219, -33.284620 ], [ 151.523438, -33.284620 ], [ 151.523438, -33.724340 ], [ 151.347656, -33.724340 ], [ 151.347656, -34.016242 ], [ 151.171875, -34.016242 ], [ 151.171875, -34.307144 ], [ 150.996094, -34.307144 ], [ 150.996094, -34.597042 ], [ 150.820312, -34.597042 ], [ 150.820312, -35.029996 ], [ 150.644531, -35.029996 ], [ 150.644531, -35.317366 ], [ 150.468750, -35.317366 ], [ 150.468750, -35.603719 ], [ 150.292969, -35.603719 ], [ 150.292969, -36.031332 ], [ 150.117188, -36.031332 ], [ 150.117188, -36.879621 ], [ 149.941406, -36.879621 ], [ 149.941406, -37.579413 ], [ 149.589844, -37.579413 ], [ 149.589844, -37.718590 ], [ 149.062500, -37.718590 ], [ 149.062500, -37.857507 ], [ 148.359375, -37.857507 ], [ 148.359375, -37.996163 ], [ 148.007812, -37.996163 ], [ 148.007812, -38.134557 ], [ 147.656250, -38.134557 ], [ 147.656250, -38.272689 ], [ 147.304688, -38.272689 ], [ 147.304688, -38.410558 ], [ 147.128906, -38.410558 ], [ 147.128906, -38.548165 ], [ 146.953125, -38.548165 ], [ 146.953125, -38.685510 ], [ 146.777344, -38.685510 ], [ 146.777344, -38.822591 ], [ 146.601562, -38.822591 ], [ 146.601562, -38.959409 ], [ 146.425781, -38.959409 ], [ 146.425781, -39.095963 ], [ 146.074219, -39.095963 ], [ 146.074219, -38.959409 ], [ 145.898438, -38.959409 ], [ 145.898438, -38.822591 ], [ 145.722656, -38.822591 ], [ 145.722656, -38.685510 ], [ 145.546875, -38.685510 ], [ 145.546875, -38.548165 ], [ 145.019531, -38.548165 ], [ 145.019531, -38.410558 ], [ 144.843750, -38.410558 ], [ 144.843750, -38.134557 ], [ 145.019531, -38.134557 ], [ 145.019531, -37.996163 ], [ 144.667969, -37.996163 ], [ 144.667969, -38.134557 ], [ 144.492188, -38.134557 ], [ 144.492188, -38.272689 ], [ 144.316406, -38.272689 ], [ 144.316406, -38.410558 ], [ 144.140625, -38.410558 ], [ 144.140625, -38.548165 ], [ 143.964844, -38.548165 ], [ 143.964844, -38.685510 ], [ 143.789062, -38.685510 ], [ 143.789062, -38.822591 ], [ 143.261719, -38.822591 ], [ 143.261719, -38.685510 ], [ 142.910156, -38.685510 ], [ 142.910156, -38.548165 ], [ 142.382812, -38.548165 ], [ 142.382812, -38.410558 ], [ 141.855469, -38.410558 ], [ 141.855469, -38.272689 ], [ 141.328125, -38.272689 ], [ 141.328125, -38.134557 ], [ 140.800781, -38.134557 ], [ 140.800781, -37.996163 ], [ 140.449219, -37.996163 ], [ 140.449219, -37.857507 ], [ 140.273438, -37.857507 ], [ 140.273438, -37.718590 ], [ 140.097656, -37.718590 ], [ 140.097656, -37.579413 ], [ 139.921875, -37.579413 ], [ 139.921875, -37.020098 ], [ 139.746094, -37.020098 ], [ 139.746094, -36.456636 ], [ 139.570312, -36.456636 ], [ 139.570312, -36.173357 ], [ 139.394531, -36.173357 ], [ 139.394531, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.889050 ], [ 139.042969, -35.889050 ], [ 139.042969, -35.746512 ], [ 138.515625, -35.746512 ], [ 138.515625, -35.603719 ], [ 138.339844, -35.603719 ], [ 138.339844, -35.317366 ], [ 138.515625, -35.317366 ], [ 138.515625, -35.029996 ], [ 138.339844, -35.029996 ], [ 138.339844, -34.741612 ], [ 138.164062, -34.741612 ], [ 138.164062, -34.597042 ], [ 137.988281, -34.597042 ], [ 137.988281, -34.741612 ], [ 137.812500, -34.741612 ], [ 137.812500, -35.029996 ], [ 137.460938, -35.029996 ], [ 137.460938, -35.173808 ], [ 137.109375, -35.173808 ], [ 137.109375, -35.317366 ], [ 136.933594, -35.317366 ], [ 136.933594, -35.029996 ], [ 137.109375, -35.029996 ], [ 137.109375, -34.885931 ], [ 137.285156, -34.885931 ], [ 137.285156, -34.452218 ], [ 137.460938, -34.452218 ], [ 137.460938, -34.016242 ], [ 137.636719, -34.016242 ], [ 137.636719, -33.724340 ], [ 137.812500, -33.724340 ], [ 137.812500, -32.990236 ], [ 137.636719, -32.990236 ], [ 137.636719, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.284620 ], [ 137.285156, -33.284620 ], [ 137.285156, -33.578015 ], [ 137.109375, -33.578015 ], [ 137.109375, -33.724340 ], [ 136.933594, -33.724340 ], [ 136.933594, -33.870416 ], [ 136.757812, -33.870416 ], [ 136.757812, -34.016242 ], [ 136.582031, -34.016242 ], [ 136.582031, -34.161818 ], [ 136.406250, -34.161818 ], [ 136.406250, -34.452218 ], [ 136.230469, -34.452218 ], [ 136.230469, -34.741612 ], [ 136.054688, -34.741612 ], [ 136.054688, -34.885931 ], [ 135.878906, -34.885931 ], [ 135.878906, -34.741612 ], [ 135.527344, -34.741612 ], [ 135.527344, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 134.121094, -32.990236 ], [ 134.121094, -32.694866 ], [ 134.296875, -32.694866 ], [ 134.296875, -32.546813 ], [ 134.121094, -32.546813 ], [ 134.121094, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.703125, -12.211180 ], [ 135.703125, -12.039321 ], [ 136.582031, -12.039321 ], [ 136.582031, -12.211180 ], [ 136.757812, -12.211180 ], [ 136.757812, -12.382928 ], [ 136.933594, -12.382928 ], [ 136.933594, -12.726084 ], [ 136.757812, -12.726084 ], [ 136.757812, -13.068777 ], [ 136.406250, -13.068777 ], [ 136.406250, -13.239945 ], [ 135.878906, -13.239945 ], [ 135.878906, -13.581921 ], [ 136.054688, -13.581921 ], [ 136.054688, -13.923404 ], [ 135.878906, -13.923404 ], [ 135.878906, -14.264383 ], [ 135.703125, -14.264383 ], [ 135.703125, -14.434680 ], [ 135.527344, -14.434680 ], [ 135.527344, -14.774883 ], [ 135.351562, -14.774883 ], [ 135.351562, -14.944785 ], [ 135.527344, -14.944785 ], [ 135.527344, -15.114553 ], [ 135.703125, -15.114553 ], [ 135.703125, -15.284185 ], [ 135.878906, -15.284185 ], [ 135.878906, -15.453680 ], [ 136.054688, -15.453680 ], [ 136.054688, -15.623037 ], [ 136.582031, -15.623037 ], [ 136.582031, -15.792254 ], [ 137.109375, -15.792254 ], [ 137.109375, -15.961329 ], [ 137.285156, -15.961329 ], [ 137.285156, -16.130262 ], [ 137.460938, -16.130262 ], [ 137.460938, -16.299051 ], [ 137.636719, -16.299051 ], [ 137.636719, -16.467695 ], [ 137.812500, -16.467695 ], [ 137.812500, -16.636192 ], [ 138.164062, -16.636192 ], [ 138.164062, -16.804541 ], [ 138.515625, -16.804541 ], [ 138.515625, -16.972741 ], [ 138.867188, -16.972741 ], [ 138.867188, -17.140790 ], [ 139.042969, -17.140790 ], [ 139.042969, -17.308688 ], [ 139.394531, -17.308688 ], [ 139.394531, -17.476432 ], [ 139.921875, -17.476432 ], [ 139.921875, -17.644022 ], [ 140.449219, -17.644022 ], [ 140.449219, -17.476432 ], [ 140.800781, -17.476432 ], [ 140.800781, -17.308688 ], [ 140.976562, -17.308688 ], [ 140.976562, -16.972741 ], [ 141.152344, -16.972741 ], [ 141.152344, -16.636192 ], [ 141.328125, -16.636192 ], [ 141.328125, -15.623037 ], [ 141.503906, -15.623037 ], [ 141.503906, -15.284185 ], [ 141.679688, -15.284185 ], [ 141.679688, -14.944785 ], [ 141.503906, -14.944785 ], [ 141.503906, -14.434680 ], [ 141.679688, -14.434680 ], [ 141.679688, -14.093957 ], [ 141.503906, -14.093957 ], [ 141.503906, -13.410994 ], [ 141.679688, -13.410994 ], [ 141.679688, -12.897489 ], [ 141.855469, -12.897489 ], [ 141.855469, -12.554564 ], [ 141.679688, -12.554564 ], [ 141.679688, -12.211180 ], [ 141.855469, -12.211180 ], [ 141.855469, -11.695273 ], [ 142.031250, -11.695273 ], [ 142.031250, -11.178402 ], [ 142.207031, -11.178402 ], [ 142.207031, -11.005904 ], [ 142.382812, -11.005904 ], [ 142.382812, -10.833306 ], [ 142.558594, -10.833306 ], [ 142.558594, -11.005904 ], [ 142.734375, -11.005904 ], [ 142.734375, -11.523088 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -40.713956 ], [ 144.843750, -40.847060 ], [ 145.546875, -40.847060 ], [ 145.546875, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.777344, -41.112469 ], [ 146.777344, -40.979898 ], [ 147.480469, -40.979898 ], [ 147.480469, -40.847060 ], [ 148.359375, -40.847060 ], [ 148.359375, -41.640078 ], [ 145.019531, -41.640078 ], [ 145.019531, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -41.244772 ], [ 144.667969, -41.244772 ], [ 144.667969, -40.713956 ], [ 144.843750, -40.713956 ] ] ], [ [ [ 142.558594, -10.833306 ], [ 142.558594, -11.005904 ], [ 142.734375, -11.005904 ], [ 142.734375, -11.523088 ], [ 142.910156, -11.523088 ], [ 142.910156, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.554564 ], [ 143.261719, -12.554564 ], [ 143.261719, -12.897489 ], [ 143.437500, -12.897489 ], [ 143.437500, -13.239945 ], [ 143.613281, -13.239945 ], [ 143.613281, -14.093957 ], [ 143.789062, -14.093957 ], [ 143.789062, -14.434680 ], [ 143.964844, -14.434680 ], [ 143.964844, -14.604847 ], [ 144.140625, -14.604847 ], [ 144.140625, -14.434680 ], [ 144.316406, -14.434680 ], [ 144.316406, -14.264383 ], [ 144.667969, -14.264383 ], [ 144.667969, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -14.774883 ], [ 145.195312, -14.774883 ], [ 145.195312, -14.944785 ], [ 145.371094, -14.944785 ], [ 145.371094, -15.284185 ], [ 145.195312, -15.284185 ], [ 145.195312, -15.792254 ], [ 145.371094, -15.792254 ], [ 145.371094, -16.130262 ], [ 145.546875, -16.130262 ], [ 145.546875, -16.636192 ], [ 145.722656, -16.636192 ], [ 145.722656, -16.972741 ], [ 145.898438, -16.972741 ], [ 145.898438, -17.476432 ], [ 146.074219, -17.476432 ], [ 146.074219, -18.479609 ], [ 146.250000, -18.479609 ], [ 146.250000, -18.812718 ], [ 146.425781, -18.812718 ], [ 146.425781, -19.145168 ], [ 146.777344, -19.145168 ], [ 146.777344, -19.311143 ], [ 147.128906, -19.311143 ], [ 147.128906, -19.476950 ], [ 147.480469, -19.476950 ], [ 147.480469, -19.642588 ], [ 147.656250, -19.642588 ], [ 147.656250, -19.808054 ], [ 148.007812, -19.808054 ], [ 148.007812, -19.973349 ], [ 148.183594, -19.973349 ], [ 148.183594, -20.138470 ], [ 148.359375, -20.138470 ], [ 148.359375, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.468189 ], [ 148.886719, -20.468189 ], [ 148.886719, -20.632784 ], [ 148.710938, -20.632784 ], [ 148.710938, -20.797201 ], [ 148.886719, -20.797201 ], [ 148.886719, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.289374 ], [ 149.238281, -21.289374 ], [ 149.238281, -21.453069 ], [ 149.414062, -21.453069 ], [ 149.414062, -21.779905 ], [ 149.589844, -21.779905 ], [ 149.589844, -22.105999 ], [ 149.765625, -22.105999 ], [ 149.765625, -22.268764 ], [ 150.292969, -22.268764 ], [ 150.292969, -22.593726 ], [ 150.644531, -22.593726 ], [ 150.644531, -22.917923 ], [ 150.820312, -22.917923 ], [ 150.820312, -23.563987 ], [ 150.996094, -23.563987 ], [ 150.996094, -23.725012 ], [ 151.171875, -23.725012 ], [ 151.171875, -23.885838 ], [ 151.347656, -23.885838 ], [ 151.347656, -24.046464 ], [ 151.523438, -24.046464 ], [ 151.523438, -24.206890 ], [ 151.699219, -24.206890 ], [ 151.699219, -24.367114 ], [ 151.875000, -24.367114 ], [ 151.875000, -24.527135 ], [ 152.050781, -24.527135 ], [ 152.050781, -24.686952 ], [ 152.226562, -24.686952 ], [ 152.226562, -24.846565 ], [ 152.402344, -24.846565 ], [ 152.402344, -25.005973 ], [ 152.578125, -25.005973 ], [ 152.578125, -25.165173 ], [ 152.753906, -25.165173 ], [ 152.753906, -25.324167 ], [ 152.929688, -25.324167 ], [ 152.929688, -25.799891 ], [ 153.105469, -25.799891 ], [ 153.105469, -27.371767 ], [ 153.281250, -27.371767 ], [ 153.281250, -27.683528 ], [ 153.457031, -27.683528 ], [ 153.457031, -27.994401 ], [ 153.632812, -27.994401 ], [ 153.632812, -28.613459 ], [ 153.457031, -28.613459 ], [ 153.457031, -29.228890 ], [ 153.281250, -29.228890 ], [ 153.281250, -29.840644 ], [ 153.105469, -29.840644 ], [ 153.105469, -31.353637 ], [ 152.929688, -31.353637 ], [ 152.929688, -31.802893 ], [ 152.753906, -31.802893 ], [ 152.753906, -32.101190 ], [ 152.578125, -32.101190 ], [ 152.578125, -32.398516 ], [ 152.402344, -32.398516 ], [ 152.402344, -32.694866 ], [ 152.226562, -32.694866 ], [ 152.226562, -32.842674 ], [ 151.875000, -32.842674 ], [ 151.875000, -32.990236 ], [ 151.699219, -32.990236 ], [ 151.699219, -33.284620 ], [ 151.523438, -33.284620 ], [ 151.523438, -33.724340 ], [ 151.347656, -33.724340 ], [ 151.347656, -34.016242 ], [ 151.171875, -34.016242 ], [ 151.171875, -34.307144 ], [ 150.996094, -34.307144 ], [ 150.996094, -34.597042 ], [ 150.820312, -34.597042 ], [ 150.820312, -35.029996 ], [ 150.644531, -35.029996 ], [ 150.644531, -35.317366 ], [ 150.468750, -35.317366 ], [ 150.468750, -35.603719 ], [ 150.292969, -35.603719 ], [ 150.292969, -36.031332 ], [ 150.117188, -36.031332 ], [ 150.117188, -36.879621 ], [ 149.941406, -36.879621 ], [ 149.941406, -37.579413 ], [ 149.589844, -37.579413 ], [ 149.589844, -37.718590 ], [ 149.062500, -37.718590 ], [ 149.062500, -37.857507 ], [ 148.359375, -37.857507 ], [ 148.359375, -37.996163 ], [ 148.007812, -37.996163 ], [ 148.007812, -38.134557 ], [ 147.656250, -38.134557 ], [ 147.656250, -38.272689 ], [ 147.304688, -38.272689 ], [ 147.304688, -38.410558 ], [ 147.128906, -38.410558 ], [ 147.128906, -38.548165 ], [ 146.953125, -38.548165 ], [ 146.953125, -38.685510 ], [ 146.777344, -38.685510 ], [ 146.777344, -38.822591 ], [ 146.601562, -38.822591 ], [ 146.601562, -38.959409 ], [ 146.425781, -38.959409 ], [ 146.425781, -39.095963 ], [ 146.074219, -39.095963 ], [ 146.074219, -38.959409 ], [ 145.898438, -38.959409 ], [ 145.898438, -38.822591 ], [ 145.722656, -38.822591 ], [ 145.722656, -38.685510 ], [ 145.546875, -38.685510 ], [ 145.546875, -38.548165 ], [ 145.019531, -38.548165 ], [ 145.019531, -38.410558 ], [ 144.843750, -38.410558 ], [ 144.843750, -38.134557 ], [ 145.019531, -38.134557 ], [ 145.019531, -37.996163 ], [ 144.667969, -37.996163 ], [ 144.667969, -38.134557 ], [ 144.492188, -38.134557 ], [ 144.492188, -38.272689 ], [ 144.316406, -38.272689 ], [ 144.316406, -38.410558 ], [ 144.140625, -38.410558 ], [ 144.140625, -38.548165 ], [ 143.964844, -38.548165 ], [ 143.964844, -38.685510 ], [ 143.789062, -38.685510 ], [ 143.789062, -38.822591 ], [ 143.261719, -38.822591 ], [ 143.261719, -38.685510 ], [ 142.910156, -38.685510 ], [ 142.910156, -38.548165 ], [ 142.382812, -38.548165 ], [ 142.382812, -38.410558 ], [ 141.855469, -38.410558 ], [ 141.855469, -38.272689 ], [ 141.328125, -38.272689 ], [ 141.328125, -38.134557 ], [ 140.800781, -38.134557 ], [ 140.800781, -37.996163 ], [ 140.449219, -37.996163 ], [ 140.449219, -37.857507 ], [ 140.273438, -37.857507 ], [ 140.273438, -37.718590 ], [ 140.097656, -37.718590 ], [ 140.097656, -37.579413 ], [ 139.921875, -37.579413 ], [ 139.921875, -37.020098 ], [ 139.746094, -37.020098 ], [ 139.746094, -36.456636 ], [ 139.570312, -36.456636 ], [ 139.570312, -36.173357 ], [ 139.394531, -36.173357 ], [ 139.394531, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.889050 ], [ 139.042969, -35.889050 ], [ 139.042969, -35.746512 ], [ 138.515625, -35.746512 ], [ 138.515625, -35.603719 ], [ 138.339844, -35.603719 ], [ 138.339844, -35.317366 ], [ 138.515625, -35.317366 ], [ 138.515625, -35.029996 ], [ 138.339844, -35.029996 ], [ 138.339844, -34.741612 ], [ 138.164062, -34.741612 ], [ 138.164062, -34.597042 ], [ 137.988281, -34.597042 ], [ 137.988281, -34.741612 ], [ 137.812500, -34.741612 ], [ 137.812500, -35.029996 ], [ 137.460938, -35.029996 ], [ 137.460938, -35.173808 ], [ 137.109375, -35.173808 ], [ 137.109375, -35.317366 ], [ 136.933594, -35.317366 ], [ 136.933594, -35.029996 ], [ 137.109375, -35.029996 ], [ 137.109375, -34.885931 ], [ 137.285156, -34.885931 ], [ 137.285156, -34.452218 ], [ 137.460938, -34.452218 ], [ 137.460938, -34.016242 ], [ 137.636719, -34.016242 ], [ 137.636719, -33.724340 ], [ 137.812500, -33.724340 ], [ 137.812500, -32.990236 ], [ 137.636719, -32.990236 ], [ 137.636719, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.284620 ], [ 137.285156, -33.284620 ], [ 137.285156, -33.578015 ], [ 137.109375, -33.578015 ], [ 137.109375, -33.724340 ], [ 136.933594, -33.724340 ], [ 136.933594, -33.870416 ], [ 136.757812, -33.870416 ], [ 136.757812, -34.016242 ], [ 136.582031, -34.016242 ], [ 136.582031, -34.161818 ], [ 136.406250, -34.161818 ], [ 136.406250, -34.452218 ], [ 136.230469, -34.452218 ], [ 136.230469, -34.741612 ], [ 136.054688, -34.741612 ], [ 136.054688, -34.885931 ], [ 135.878906, -34.885931 ], [ 135.878906, -34.741612 ], [ 135.527344, -34.741612 ], [ 135.527344, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 134.121094, -32.990236 ], [ 134.121094, -32.694866 ], [ 134.296875, -32.694866 ], [ 134.296875, -32.546813 ], [ 134.121094, -32.546813 ], [ 134.121094, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.703125, -12.211180 ], [ 135.703125, -12.039321 ], [ 136.582031, -12.039321 ], [ 136.582031, -12.211180 ], [ 136.757812, -12.211180 ], [ 136.757812, -12.382928 ], [ 136.933594, -12.382928 ], [ 136.933594, -12.726084 ], [ 136.757812, -12.726084 ], [ 136.757812, -13.068777 ], [ 136.406250, -13.068777 ], [ 136.406250, -13.239945 ], [ 135.878906, -13.239945 ], [ 135.878906, -13.581921 ], [ 136.054688, -13.581921 ], [ 136.054688, -13.923404 ], [ 135.878906, -13.923404 ], [ 135.878906, -14.264383 ], [ 135.703125, -14.264383 ], [ 135.703125, -14.434680 ], [ 135.527344, -14.434680 ], [ 135.527344, -14.774883 ], [ 135.351562, -14.774883 ], [ 135.351562, -14.944785 ], [ 135.527344, -14.944785 ], [ 135.527344, -15.114553 ], [ 135.703125, -15.114553 ], [ 135.703125, -15.284185 ], [ 135.878906, -15.284185 ], [ 135.878906, -15.453680 ], [ 136.054688, -15.453680 ], [ 136.054688, -15.623037 ], [ 136.582031, -15.623037 ], [ 136.582031, -15.792254 ], [ 137.109375, -15.792254 ], [ 137.109375, -15.961329 ], [ 137.285156, -15.961329 ], [ 137.285156, -16.130262 ], [ 137.460938, -16.130262 ], [ 137.460938, -16.299051 ], [ 137.636719, -16.299051 ], [ 137.636719, -16.467695 ], [ 137.812500, -16.467695 ], [ 137.812500, -16.636192 ], [ 138.164062, -16.636192 ], [ 138.164062, -16.804541 ], [ 138.515625, -16.804541 ], [ 138.515625, -16.972741 ], [ 138.867188, -16.972741 ], [ 138.867188, -17.140790 ], [ 139.042969, -17.140790 ], [ 139.042969, -17.308688 ], [ 139.394531, -17.308688 ], [ 139.394531, -17.476432 ], [ 139.921875, -17.476432 ], [ 139.921875, -17.644022 ], [ 140.449219, -17.644022 ], [ 140.449219, -17.476432 ], [ 140.800781, -17.476432 ], [ 140.800781, -17.308688 ], [ 140.976562, -17.308688 ], [ 140.976562, -16.972741 ], [ 141.152344, -16.972741 ], [ 141.152344, -16.636192 ], [ 141.328125, -16.636192 ], [ 141.328125, -15.623037 ], [ 141.503906, -15.623037 ], [ 141.503906, -15.284185 ], [ 141.679688, -15.284185 ], [ 141.679688, -14.944785 ], [ 141.503906, -14.944785 ], [ 141.503906, -14.434680 ], [ 141.679688, -14.434680 ], [ 141.679688, -14.093957 ], [ 141.503906, -14.093957 ], [ 141.503906, -13.410994 ], [ 141.679688, -13.410994 ], [ 141.679688, -12.897489 ], [ 141.855469, -12.897489 ], [ 141.855469, -12.554564 ], [ 141.679688, -12.554564 ], [ 141.679688, -12.211180 ], [ 141.855469, -12.211180 ], [ 141.855469, -11.695273 ], [ 142.031250, -11.695273 ], [ 142.031250, -11.178402 ], [ 142.207031, -11.178402 ], [ 142.207031, -11.005904 ], [ 142.382812, -11.005904 ], [ 142.382812, -10.833306 ], [ 142.558594, -10.833306 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.425781, -8.928487 ], [ 146.425781, -8.581021 ], [ 146.250000, -8.581021 ], [ 146.250000, -8.233237 ], [ 146.074219, -8.233237 ], [ 146.074219, -8.059230 ], [ 145.546875, -8.059230 ], [ 145.546875, -7.885147 ], [ 144.843750, -7.885147 ], [ 144.843750, -7.710992 ], [ 144.492188, -7.710992 ], [ 144.492188, -7.885147 ], [ 143.964844, -7.885147 ], [ 143.964844, -8.059230 ], [ 143.613281, -8.059230 ], [ 143.613281, -8.233237 ], [ 143.261719, -8.233237 ], [ 143.261719, -8.581021 ], [ 143.437500, -8.581021 ], [ 143.437500, -8.928487 ], [ 143.261719, -8.928487 ], [ 143.261719, -9.102097 ], [ 142.910156, -9.102097 ], [ 142.910156, -9.275622 ], [ 142.207031, -9.275622 ], [ 142.207031, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.635789 ], [ 141.152344, -2.635789 ], [ 141.152344, -2.811371 ], [ 141.503906, -2.811371 ], [ 141.503906, -2.986927 ], [ 142.031250, -2.986927 ], [ 142.031250, -3.162456 ], [ 142.382812, -3.162456 ], [ 142.382812, -3.337954 ], [ 142.910156, -3.337954 ], [ 142.910156, -3.513421 ], [ 143.613281, -3.513421 ], [ 143.613281, -3.688855 ], [ 144.316406, -3.688855 ], [ 144.316406, -3.864255 ], [ 144.667969, -3.864255 ], [ 144.667969, -4.039618 ], [ 144.843750, -4.039618 ], [ 144.843750, -4.214943 ], [ 145.019531, -4.214943 ], [ 145.019531, -4.390229 ], [ 145.195312, -4.390229 ], [ 145.195312, -4.565474 ], [ 145.371094, -4.565474 ], [ 145.371094, -4.740675 ], [ 145.722656, -4.740675 ], [ 145.722656, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.441022 ], [ 146.074219, -5.441022 ], [ 146.074219, -5.615986 ], [ 146.425781, -5.615986 ], [ 146.425781, -5.790897 ], [ 146.953125, -5.790897 ], [ 146.953125, -5.965754 ], [ 147.304688, -5.965754 ], [ 147.304688, -6.140555 ], [ 147.656250, -6.140555 ], [ 147.656250, -6.489983 ], [ 147.832031, -6.489983 ], [ 147.832031, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.128906, -7.013668 ], [ 147.128906, -7.536764 ], [ 147.304688, -7.536764 ], [ 147.304688, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -7.885147 ], [ 147.832031, -7.885147 ], [ 147.832031, -8.059230 ], [ 148.007812, -8.059230 ], [ 148.007812, -8.233237 ], [ 148.183594, -8.233237 ], [ 148.183594, -8.581021 ], [ 148.359375, -8.581021 ], [ 148.359375, -8.754795 ], [ 148.535156, -8.754795 ], [ 148.535156, -9.102097 ], [ 149.238281, -9.102097 ], [ 149.238281, -9.449062 ], [ 149.589844, -9.449062 ], [ 149.589844, -9.622414 ], [ 150.117188, -9.622414 ], [ 150.117188, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -9.968851 ], [ 150.117188, -9.968851 ], [ 150.117188, -10.141932 ], [ 150.468750, -10.141932 ], [ 150.468750, -10.314919 ], [ 150.820312, -10.314919 ], [ 150.820312, -10.487812 ], [ 150.644531, -10.487812 ], [ 150.644531, -10.660608 ], [ 149.941406, -10.660608 ], [ 149.941406, -10.487812 ], [ 149.765625, -10.487812 ], [ 149.765625, -10.314919 ], [ 148.183594, -10.314919 ], [ 148.183594, -10.141932 ], [ 147.656250, -10.141932 ], [ 147.656250, -9.968851 ], [ 147.480469, -9.968851 ], [ 147.480469, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.622414 ], [ 147.128906, -9.622414 ], [ 147.128906, -9.449062 ], [ 146.953125, -9.449062 ], [ 146.953125, -9.275622 ], [ 146.777344, -9.275622 ], [ 146.777344, -9.102097 ], [ 146.601562, -9.102097 ], [ 146.601562, -8.928487 ], [ 146.425781, -8.928487 ] ] ], [ [ [ 155.039062, -6.489983 ], [ 155.039062, -6.315299 ], [ 154.863281, -6.315299 ], [ 154.863281, -6.140555 ], [ 154.687500, -6.140555 ], [ 154.687500, -5.615986 ], [ 154.511719, -5.615986 ], [ 154.511719, -5.090944 ], [ 154.687500, -5.090944 ], [ 154.687500, -5.441022 ], [ 154.863281, -5.441022 ], [ 154.863281, -5.615986 ], [ 155.039062, -5.615986 ], [ 155.039062, -5.790897 ], [ 155.214844, -5.790897 ], [ 155.214844, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.140555 ], [ 155.566406, -6.140555 ], [ 155.566406, -6.315299 ], [ 155.917969, -6.315299 ], [ 155.917969, -6.489983 ], [ 156.093750, -6.489983 ], [ 156.093750, -6.664608 ], [ 155.917969, -6.664608 ], [ 155.917969, -6.839170 ], [ 155.390625, -6.839170 ], [ 155.390625, -6.664608 ], [ 155.214844, -6.664608 ], [ 155.214844, -6.489983 ], [ 155.039062, -6.489983 ] ] ], [ [ [ 150.292969, -5.615986 ], [ 150.644531, -5.615986 ], [ 150.644531, -5.441022 ], [ 150.996094, -5.441022 ], [ 150.996094, -5.266008 ], [ 151.171875, -5.266008 ], [ 151.171875, -5.090944 ], [ 151.347656, -5.090944 ], [ 151.347656, -4.915833 ], [ 151.699219, -4.915833 ], [ 151.699219, -4.565474 ], [ 151.523438, -4.565474 ], [ 151.523438, -4.214943 ], [ 152.050781, -4.214943 ], [ 152.050781, -4.390229 ], [ 152.402344, -4.390229 ], [ 152.402344, -5.090944 ], [ 152.226562, -5.090944 ], [ 152.226562, -5.441022 ], [ 151.875000, -5.441022 ], [ 151.875000, -5.615986 ], [ 151.523438, -5.615986 ], [ 151.523438, -5.790897 ], [ 151.347656, -5.790897 ], [ 151.347656, -5.965754 ], [ 150.996094, -5.965754 ], [ 150.996094, -6.140555 ], [ 150.644531, -6.140555 ], [ 150.644531, -6.315299 ], [ 149.414062, -6.315299 ], [ 149.414062, -6.140555 ], [ 149.062500, -6.140555 ], [ 149.062500, -5.965754 ], [ 148.535156, -5.965754 ], [ 148.535156, -5.790897 ], [ 148.359375, -5.790897 ], [ 148.359375, -5.441022 ], [ 148.710938, -5.441022 ], [ 148.710938, -5.615986 ], [ 149.589844, -5.615986 ], [ 149.589844, -5.441022 ], [ 149.765625, -5.441022 ], [ 149.765625, -5.266008 ], [ 149.941406, -5.266008 ], [ 149.941406, -5.090944 ], [ 150.117188, -5.090944 ], [ 150.117188, -5.266008 ], [ 150.292969, -5.266008 ], [ 150.292969, -5.615986 ] ] ], [ [ [ 151.347656, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -2.986927 ], [ 151.875000, -2.986927 ], [ 151.875000, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.337954 ], [ 152.402344, -3.337954 ], [ 152.402344, -3.688855 ], [ 152.578125, -3.688855 ], [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.039618 ], [ 153.105469, -4.039618 ], [ 153.105469, -4.740675 ], [ 152.753906, -4.740675 ], [ 152.753906, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -4.039618 ], [ 152.402344, -4.039618 ], [ 152.402344, -3.864255 ], [ 152.226562, -3.864255 ], [ 152.226562, -3.688855 ], [ 151.875000, -3.688855 ], [ 151.875000, -3.513421 ], [ 151.699219, -3.513421 ], [ 151.699219, -3.337954 ], [ 151.523438, -3.337954 ], [ 151.523438, -3.162456 ], [ 151.347656, -3.162456 ], [ 151.347656, -2.986927 ], [ 150.820312, -2.986927 ], [ 150.820312, -2.635789 ], [ 151.347656, -2.635789 ], [ 151.347656, -2.811371 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.152344, -2.635789 ], [ 141.152344, -2.811371 ], [ 141.503906, -2.811371 ], [ 141.503906, -2.986927 ], [ 142.031250, -2.986927 ], [ 142.031250, -3.162456 ], [ 142.382812, -3.162456 ], [ 142.382812, -3.337954 ], [ 142.910156, -3.337954 ], [ 142.910156, -3.513421 ], [ 143.613281, -3.513421 ], [ 143.613281, -3.688855 ], [ 144.316406, -3.688855 ], [ 144.316406, -3.864255 ], [ 144.667969, -3.864255 ], [ 144.667969, -4.039618 ], [ 144.843750, -4.039618 ], [ 144.843750, -4.214943 ], [ 145.019531, -4.214943 ], [ 145.019531, -4.390229 ], [ 145.195312, -4.390229 ], [ 145.195312, -4.565474 ], [ 145.371094, -4.565474 ], [ 145.371094, -4.740675 ], [ 145.722656, -4.740675 ], [ 145.722656, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.441022 ], [ 146.074219, -5.441022 ], [ 146.074219, -5.615986 ], [ 146.425781, -5.615986 ], [ 146.425781, -5.790897 ], [ 146.953125, -5.790897 ], [ 146.953125, -5.965754 ], [ 147.304688, -5.965754 ], [ 147.304688, -6.140555 ], [ 147.656250, -6.140555 ], [ 147.656250, -6.489983 ], [ 147.832031, -6.489983 ], [ 147.832031, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.128906, -7.013668 ], [ 147.128906, -7.536764 ], [ 147.304688, -7.536764 ], [ 147.304688, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -7.885147 ], [ 147.832031, -7.885147 ], [ 147.832031, -8.059230 ], [ 148.007812, -8.059230 ], [ 148.007812, -8.233237 ], [ 148.183594, -8.233237 ], [ 148.183594, -8.581021 ], [ 148.359375, -8.581021 ], [ 148.359375, -8.754795 ], [ 148.535156, -8.754795 ], [ 148.535156, -9.102097 ], [ 149.238281, -9.102097 ], [ 149.238281, -9.449062 ], [ 149.589844, -9.449062 ], [ 149.589844, -9.622414 ], [ 150.117188, -9.622414 ], [ 150.117188, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -9.968851 ], [ 150.117188, -9.968851 ], [ 150.117188, -10.141932 ], [ 150.468750, -10.141932 ], [ 150.468750, -10.314919 ], [ 150.820312, -10.314919 ], [ 150.820312, -10.487812 ], [ 150.644531, -10.487812 ], [ 150.644531, -10.660608 ], [ 149.941406, -10.660608 ], [ 149.941406, -10.487812 ], [ 149.765625, -10.487812 ], [ 149.765625, -10.314919 ], [ 148.183594, -10.314919 ], [ 148.183594, -10.141932 ], [ 147.656250, -10.141932 ], [ 147.656250, -9.968851 ], [ 147.480469, -9.968851 ], [ 147.480469, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.622414 ], [ 147.128906, -9.622414 ], [ 147.128906, -9.449062 ], [ 146.953125, -9.449062 ], [ 146.953125, -9.275622 ], [ 146.777344, -9.275622 ], [ 146.777344, -9.102097 ], [ 146.601562, -9.102097 ], [ 146.601562, -8.928487 ], [ 146.425781, -8.928487 ], [ 146.425781, -8.581021 ], [ 146.250000, -8.581021 ], [ 146.250000, -8.233237 ], [ 146.074219, -8.233237 ], [ 146.074219, -8.059230 ], [ 145.546875, -8.059230 ], [ 145.546875, -7.885147 ], [ 144.843750, -7.885147 ], [ 144.843750, -7.710992 ], [ 144.492188, -7.710992 ], [ 144.492188, -7.885147 ], [ 143.964844, -7.885147 ], [ 143.964844, -8.059230 ], [ 143.613281, -8.059230 ], [ 143.613281, -8.233237 ], [ 143.261719, -8.233237 ], [ 143.261719, -8.581021 ], [ 143.437500, -8.581021 ], [ 143.437500, -8.928487 ], [ 143.261719, -8.928487 ], [ 143.261719, -9.102097 ], [ 142.910156, -9.102097 ], [ 142.910156, -9.275622 ], [ 142.207031, -9.275622 ], [ 142.207031, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.635789 ], [ 141.152344, -2.635789 ] ] ], [ [ [ 154.687500, -5.090944 ], [ 154.687500, -5.441022 ], [ 154.863281, -5.441022 ], [ 154.863281, -5.615986 ], [ 155.039062, -5.615986 ], [ 155.039062, -5.790897 ], [ 155.214844, -5.790897 ], [ 155.214844, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.140555 ], [ 155.566406, -6.140555 ], [ 155.566406, -6.315299 ], [ 155.917969, -6.315299 ], [ 155.917969, -6.489983 ], [ 156.093750, -6.489983 ], [ 156.093750, -6.664608 ], [ 155.917969, -6.839170 ], [ 155.390625, -6.839170 ], [ 155.390625, -6.664608 ], [ 155.214844, -6.664608 ], [ 155.214844, -6.489983 ], [ 155.039062, -6.489983 ], [ 155.039062, -6.315299 ], [ 154.863281, -6.315299 ], [ 154.863281, -6.140555 ], [ 154.687500, -6.140555 ], [ 154.687500, -5.615986 ], [ 154.511719, -5.615986 ], [ 154.511719, -5.090944 ], [ 154.687500, -5.090944 ] ] ], [ [ [ 152.050781, -4.214943 ], [ 152.050781, -4.390229 ], [ 152.402344, -4.390229 ], [ 152.402344, -5.090944 ], [ 152.226562, -5.090944 ], [ 152.226562, -5.441022 ], [ 151.875000, -5.441022 ], [ 151.875000, -5.615986 ], [ 151.523438, -5.615986 ], [ 151.523438, -5.790897 ], [ 151.347656, -5.790897 ], [ 151.347656, -5.965754 ], [ 150.996094, -5.965754 ], [ 150.996094, -6.140555 ], [ 150.644531, -6.140555 ], [ 150.644531, -6.315299 ], [ 149.414062, -6.315299 ], [ 149.414062, -6.140555 ], [ 149.062500, -6.140555 ], [ 149.062500, -5.965754 ], [ 148.535156, -5.965754 ], [ 148.535156, -5.790897 ], [ 148.359375, -5.790897 ], [ 148.359375, -5.441022 ], [ 148.710938, -5.441022 ], [ 148.710938, -5.615986 ], [ 149.589844, -5.615986 ], [ 149.589844, -5.441022 ], [ 149.765625, -5.441022 ], [ 149.765625, -5.266008 ], [ 149.941406, -5.266008 ], [ 149.941406, -5.090944 ], [ 150.117188, -5.090944 ], [ 150.117188, -5.266008 ], [ 150.292969, -5.266008 ], [ 150.292969, -5.615986 ], [ 150.644531, -5.615986 ], [ 150.644531, -5.441022 ], [ 150.996094, -5.441022 ], [ 150.996094, -5.266008 ], [ 151.171875, -5.266008 ], [ 151.171875, -5.090944 ], [ 151.347656, -5.090944 ], [ 151.347656, -4.915833 ], [ 151.699219, -4.915833 ], [ 151.699219, -4.565474 ], [ 151.523438, -4.565474 ], [ 151.523438, -4.214943 ], [ 152.050781, -4.214943 ] ] ], [ [ [ 151.347656, -2.635789 ], [ 151.347656, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -2.986927 ], [ 151.875000, -2.986927 ], [ 151.875000, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.337954 ], [ 152.402344, -3.337954 ], [ 152.402344, -3.688855 ], [ 152.578125, -3.688855 ], [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.039618 ], [ 153.105469, -4.039618 ], [ 153.105469, -4.740675 ], [ 152.753906, -4.740675 ], [ 152.753906, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -4.039618 ], [ 152.402344, -4.039618 ], [ 152.402344, -3.864255 ], [ 152.226562, -3.864255 ], [ 152.226562, -3.688855 ], [ 151.875000, -3.688855 ], [ 151.875000, -3.513421 ], [ 151.699219, -3.513421 ], [ 151.699219, -3.337954 ], [ 151.523438, -3.337954 ], [ 151.523438, -3.162456 ], [ 151.347656, -3.162456 ], [ 151.347656, -2.986927 ], [ 150.820312, -2.986927 ], [ 150.820312, -2.635789 ], [ 151.347656, -2.635789 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.718750, -10.487812 ], [ 162.070312, -10.487812 ], [ 162.070312, -10.660608 ], [ 162.246094, -10.660608 ], [ 162.246094, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.718750, -10.660608 ], [ 161.542969, -10.660608 ], [ 161.542969, -10.314919 ], [ 161.718750, -10.314919 ], [ 161.718750, -10.487812 ] ] ], [ [ [ 160.312500, -9.622414 ], [ 160.664062, -9.622414 ], [ 160.664062, -9.795678 ], [ 160.839844, -9.795678 ], [ 160.839844, -9.968851 ], [ 159.960938, -9.968851 ], [ 159.960938, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.449062 ], [ 159.785156, -9.449062 ], [ 159.785156, -9.275622 ], [ 159.960938, -9.275622 ], [ 159.960938, -9.449062 ], [ 160.312500, -9.449062 ], [ 160.312500, -9.622414 ] ] ], [ [ [ 160.839844, -8.407168 ], [ 161.015625, -8.407168 ], [ 161.015625, -8.754795 ], [ 161.191406, -8.754795 ], [ 161.191406, -9.102097 ], [ 161.367188, -9.102097 ], [ 161.367188, -9.275622 ], [ 161.542969, -9.275622 ], [ 161.542969, -9.622414 ], [ 161.718750, -9.622414 ], [ 161.718750, -9.795678 ], [ 161.367188, -9.795678 ], [ 161.367188, -9.622414 ], [ 161.191406, -9.622414 ], [ 161.191406, -9.275622 ], [ 161.015625, -9.275622 ], [ 161.015625, -9.102097 ], [ 160.839844, -9.102097 ], [ 160.839844, -8.581021 ], [ 160.664062, -8.581021 ], [ 160.664062, -8.233237 ], [ 160.839844, -8.233237 ], [ 160.839844, -8.407168 ] ] ], [ [ [ 159.433594, -8.407168 ], [ 159.433594, -8.233237 ], [ 159.082031, -8.233237 ], [ 159.082031, -8.059230 ], [ 158.906250, -8.059230 ], [ 158.906250, -7.885147 ], [ 158.554688, -7.885147 ], [ 158.554688, -7.710992 ], [ 158.378906, -7.710992 ], [ 158.378906, -7.536764 ], [ 158.203125, -7.536764 ], [ 158.203125, -7.362467 ], [ 158.554688, -7.362467 ], [ 158.554688, -7.536764 ], [ 158.906250, -7.536764 ], [ 158.906250, -7.710992 ], [ 159.082031, -7.710992 ], [ 159.082031, -7.885147 ], [ 159.433594, -7.885147 ], [ 159.433594, -8.059230 ], [ 159.609375, -8.059230 ], [ 159.609375, -8.233237 ], [ 159.785156, -8.233237 ], [ 159.785156, -8.407168 ], [ 159.433594, -8.407168 ] ] ], [ [ [ 156.972656, -7.013668 ], [ 157.148438, -7.013668 ], [ 157.148438, -7.188101 ], [ 157.324219, -7.188101 ], [ 157.324219, -7.362467 ], [ 156.972656, -7.362467 ], [ 156.972656, -7.188101 ], [ 156.796875, -7.188101 ], [ 156.796875, -7.013668 ], [ 156.445312, -7.013668 ], [ 156.445312, -6.839170 ], [ 156.972656, -6.839170 ], [ 156.972656, -7.013668 ] ] ], [ [ [ 159.960938, -8.407168 ], [ 159.960938, -8.581021 ], [ 159.785156, -8.581021 ], [ 159.785156, -8.407168 ], [ 159.960938, -8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.718750, -10.314919 ], [ 161.718750, -10.487812 ], [ 162.070312, -10.487812 ], [ 162.070312, -10.660608 ], [ 162.246094, -10.660608 ], [ 162.246094, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.718750, -10.660608 ], [ 161.542969, -10.660608 ], [ 161.542969, -10.314919 ], [ 161.718750, -10.314919 ] ] ], [ [ [ 159.960938, -9.275622 ], [ 159.960938, -9.449062 ], [ 160.312500, -9.449062 ], [ 160.312500, -9.622414 ], [ 160.664062, -9.622414 ], [ 160.664062, -9.795678 ], [ 160.839844, -9.795678 ], [ 160.839844, -9.968851 ], [ 159.960938, -9.968851 ], [ 159.960938, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.449062 ], [ 159.785156, -9.449062 ], [ 159.785156, -9.275622 ], [ 159.960938, -9.275622 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 160.839844, -8.407168 ], [ 161.015625, -8.407168 ], [ 161.015625, -8.754795 ], [ 161.191406, -8.754795 ], [ 161.191406, -9.102097 ], [ 161.367188, -9.102097 ], [ 161.367188, -9.275622 ], [ 161.542969, -9.275622 ], [ 161.542969, -9.622414 ], [ 161.718750, -9.622414 ], [ 161.718750, -9.795678 ], [ 161.367188, -9.795678 ], [ 161.367188, -9.622414 ], [ 161.191406, -9.622414 ], [ 161.191406, -9.275622 ], [ 161.015625, -9.275622 ], [ 161.015625, -9.102097 ], [ 160.839844, -9.102097 ], [ 160.839844, -8.581021 ], [ 160.664062, -8.581021 ], [ 160.664062, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 159.785156, -8.407168 ], [ 159.433594, -8.407168 ], [ 159.433594, -8.233237 ], [ 159.082031, -8.233237 ], [ 159.082031, -8.059230 ], [ 158.906250, -8.059230 ], [ 158.906250, -7.885147 ], [ 158.554688, -7.885147 ], [ 158.554688, -7.710992 ], [ 158.378906, -7.710992 ], [ 158.378906, -7.536764 ], [ 158.203125, -7.536764 ], [ 158.203125, -7.362467 ], [ 158.554688, -7.362467 ], [ 158.554688, -7.536764 ], [ 158.906250, -7.536764 ], [ 158.906250, -7.710992 ], [ 159.082031, -7.710992 ], [ 159.082031, -7.885147 ], [ 159.433594, -7.885147 ], [ 159.433594, -8.059230 ], [ 159.609375, -8.059230 ], [ 159.609375, -8.233237 ], [ 159.785156, -8.233237 ], [ 159.785156, -8.407168 ] ] ], [ [ [ 156.972656, -6.839170 ], [ 156.972656, -7.013668 ], [ 157.148438, -7.013668 ], [ 157.148438, -7.188101 ], [ 157.324219, -7.188101 ], [ 157.324219, -7.362467 ], [ 156.972656, -7.362467 ], [ 156.972656, -7.188101 ], [ 156.796875, -7.188101 ], [ 156.796875, -7.013668 ], [ 156.445312, -7.013668 ], [ 156.445312, -6.839170 ], [ 156.972656, -6.839170 ] ] ], [ [ [ 159.785156, -8.407168 ], [ 159.960938, -8.407168 ], [ 159.960938, -8.581021 ], [ 159.785156, -8.581021 ], [ 159.785156, -8.407168 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.695312, -16.299051 ], [ 167.695312, -16.467695 ], [ 167.871094, -16.467695 ], [ 167.871094, -16.636192 ], [ 167.343750, -16.636192 ], [ 167.343750, -16.299051 ], [ 167.695312, -16.299051 ] ] ], [ [ [ 166.992188, -14.944785 ], [ 167.167969, -14.944785 ], [ 167.167969, -15.453680 ], [ 167.343750, -15.453680 ], [ 167.343750, -15.792254 ], [ 166.992188, -15.792254 ], [ 166.992188, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.774883 ], [ 166.992188, -14.774883 ], [ 166.992188, -14.944785 ] ] ], [ [ [ 167.167969, -16.299051 ], [ 167.167969, -16.130262 ], [ 167.343750, -16.130262 ], [ 167.343750, -16.299051 ], [ 167.167969, -16.299051 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.343750, -16.299051 ], [ 167.695312, -16.299051 ], [ 167.695312, -16.467695 ], [ 167.871094, -16.467695 ], [ 167.871094, -16.636192 ], [ 167.343750, -16.636192 ], [ 167.343750, -16.299051 ] ] ], [ [ [ 166.992188, -14.774883 ], [ 166.992188, -14.944785 ], [ 167.167969, -14.944785 ], [ 167.167969, -15.453680 ], [ 167.343750, -15.453680 ], [ 167.343750, -15.792254 ], [ 166.992188, -15.792254 ], [ 166.992188, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.774883 ], [ 166.992188, -14.774883 ] ] ], [ [ [ 167.343750, -16.299051 ], [ 167.167969, -16.299051 ], [ 167.167969, -16.130262 ], [ 167.343750, -16.130262 ], [ 167.343750, -16.299051 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.468189 ], [ 165.058594, -20.468189 ], [ 165.058594, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.797201 ], [ 165.410156, -20.797201 ], [ 165.410156, -20.961440 ], [ 165.585938, -20.961440 ], [ 165.585938, -21.125498 ], [ 165.761719, -21.125498 ], [ 165.761719, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.453069 ], [ 166.289062, -21.453069 ], [ 166.289062, -21.616579 ], [ 166.464844, -21.616579 ], [ 166.464844, -21.779905 ], [ 166.640625, -21.779905 ], [ 166.640625, -21.943046 ], [ 166.992188, -21.943046 ], [ 166.992188, -22.105999 ], [ 167.167969, -22.105999 ], [ 167.167969, -22.268764 ], [ 166.992188, -22.268764 ], [ 166.992188, -22.431340 ], [ 166.464844, -22.431340 ], [ 166.464844, -22.268764 ], [ 166.113281, -22.268764 ], [ 166.113281, -22.105999 ], [ 165.937500, -22.105999 ], [ 165.937500, -21.943046 ], [ 165.585938, -21.943046 ], [ 165.585938, -21.779905 ], [ 165.410156, -21.779905 ], [ 165.410156, -21.616579 ], [ 165.234375, -21.616579 ], [ 165.234375, -21.453069 ], [ 165.058594, -21.453069 ], [ 165.058594, -21.289374 ], [ 164.882812, -21.289374 ], [ 164.882812, -21.125498 ], [ 164.707031, -21.125498 ], [ 164.707031, -20.961440 ], [ 164.531250, -20.961440 ], [ 164.531250, -20.797201 ], [ 164.355469, -20.797201 ], [ 164.355469, -20.632784 ], [ 164.179688, -20.632784 ], [ 164.179688, -20.303418 ], [ 164.003906, -20.303418 ], [ 164.003906, -20.138470 ], [ 164.531250, -20.138470 ], [ 164.531250, -20.303418 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -20.138470 ], [ 164.531250, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.468189 ], [ 165.058594, -20.468189 ], [ 165.058594, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.797201 ], [ 165.410156, -20.797201 ], [ 165.410156, -20.961440 ], [ 165.585938, -20.961440 ], [ 165.585938, -21.125498 ], [ 165.761719, -21.125498 ], [ 165.761719, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.453069 ], [ 166.289062, -21.453069 ], [ 166.289062, -21.616579 ], [ 166.464844, -21.616579 ], [ 166.464844, -21.779905 ], [ 166.640625, -21.779905 ], [ 166.640625, -21.943046 ], [ 166.992188, -21.943046 ], [ 166.992188, -22.105999 ], [ 167.167969, -22.105999 ], [ 167.167969, -22.268764 ], [ 166.992188, -22.268764 ], [ 166.992188, -22.431340 ], [ 166.464844, -22.431340 ], [ 166.464844, -22.268764 ], [ 166.113281, -22.268764 ], [ 166.113281, -22.105999 ], [ 165.937500, -22.105999 ], [ 165.937500, -21.943046 ], [ 165.585938, -21.943046 ], [ 165.585938, -21.779905 ], [ 165.410156, -21.779905 ], [ 165.410156, -21.616579 ], [ 165.234375, -21.616579 ], [ 165.234375, -21.453069 ], [ 165.058594, -21.453069 ], [ 165.058594, -21.289374 ], [ 164.882812, -21.289374 ], [ 164.882812, -21.125498 ], [ 164.707031, -21.125498 ], [ 164.707031, -20.961440 ], [ 164.531250, -20.961440 ], [ 164.531250, -20.797201 ], [ 164.355469, -20.797201 ], [ 164.355469, -20.632784 ], [ 164.179688, -20.632784 ], [ 164.179688, -20.303418 ], [ 164.003906, -20.303418 ], [ 164.003906, -20.138470 ], [ 164.531250, -20.138470 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.376809 ], [ 173.496094, -41.376809 ], [ 173.496094, -41.244772 ], [ 173.847656, -41.244772 ], [ 173.847656, -41.112469 ], [ 174.023438, -41.112469 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.979898 ], [ 172.265625, -40.979898 ], [ 172.265625, -40.847060 ], [ 172.441406, -40.847060 ], [ 172.441406, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ] ] ], [ [ [ 175.957031, -37.579413 ], [ 176.132812, -37.579413 ], [ 176.132812, -37.718590 ], [ 176.484375, -37.718590 ], [ 176.484375, -37.857507 ], [ 177.011719, -37.857507 ], [ 177.011719, -37.996163 ], [ 177.539062, -37.996163 ], [ 177.539062, -37.857507 ], [ 177.890625, -37.857507 ], [ 177.890625, -37.718590 ], [ 178.066406, -37.718590 ], [ 178.066406, -37.579413 ], [ 178.242188, -37.579413 ], [ 178.242188, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -37.996163 ], [ 178.417969, -37.996163 ], [ 178.417969, -38.410558 ], [ 178.242188, -38.410558 ], [ 178.242188, -38.822591 ], [ 178.066406, -38.822591 ], [ 178.066406, -39.095963 ], [ 177.890625, -39.095963 ], [ 177.890625, -39.232253 ], [ 177.363281, -39.232253 ], [ 177.363281, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.368279 ], [ 177.011719, -39.368279 ], [ 177.011719, -40.044438 ], [ 176.835938, -40.044438 ], [ 176.835938, -40.178873 ], [ 176.660156, -40.178873 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.781250, -41.376809 ], [ 175.781250, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.640078 ], [ 175.253906, -41.640078 ], [ 175.253906, -41.508577 ], [ 175.078125, -41.508577 ], [ 175.078125, -41.376809 ], [ 174.726562, -41.376809 ], [ 174.726562, -41.112469 ], [ 174.902344, -41.112469 ], [ 174.902344, -40.847060 ], [ 175.078125, -40.847060 ], [ 175.078125, -40.580585 ], [ 175.253906, -40.580585 ], [ 175.253906, -40.313043 ], [ 175.078125, -40.313043 ], [ 175.078125, -40.044438 ], [ 174.902344, -40.044438 ], [ 174.902344, -39.909736 ], [ 174.550781, -39.909736 ], [ 174.550781, -39.774769 ], [ 174.199219, -39.774769 ], [ 174.199219, -39.639538 ], [ 173.847656, -39.639538 ], [ 173.847656, -39.095963 ], [ 174.199219, -39.095963 ], [ 174.199219, -38.959409 ], [ 174.550781, -38.959409 ], [ 174.550781, -38.410558 ], [ 174.726562, -38.410558 ], [ 174.726562, -37.300275 ], [ 174.550781, -37.300275 ], [ 174.550781, -37.020098 ], [ 174.375000, -37.020098 ], [ 174.375000, -36.597889 ], [ 174.199219, -36.597889 ], [ 174.199219, -36.456636 ], [ 174.023438, -36.456636 ], [ 174.023438, -36.315125 ], [ 173.847656, -36.315125 ], [ 173.847656, -36.173357 ], [ 173.671875, -36.173357 ], [ 173.671875, -35.889050 ], [ 173.496094, -35.889050 ], [ 173.496094, -35.746512 ], [ 173.320312, -35.746512 ], [ 173.320312, -35.603719 ], [ 173.144531, -35.603719 ], [ 173.144531, -35.317366 ], [ 172.968750, -35.317366 ], [ 172.968750, -35.029996 ], [ 172.792969, -35.029996 ], [ 172.792969, -34.741612 ], [ 172.617188, -34.741612 ], [ 172.617188, -34.597042 ], [ 173.144531, -34.597042 ], [ 173.144531, -34.741612 ], [ 173.320312, -34.741612 ], [ 173.320312, -35.029996 ], [ 173.671875, -35.029996 ], [ 173.671875, -35.173808 ], [ 174.023438, -35.173808 ], [ 174.023438, -35.317366 ], [ 174.375000, -35.317366 ], [ 174.375000, -35.746512 ], [ 174.550781, -35.746512 ], [ 174.550781, -36.315125 ], [ 174.726562, -36.315125 ], [ 174.726562, -36.597889 ], [ 174.902344, -36.597889 ], [ 174.902344, -36.879621 ], [ 175.078125, -36.879621 ], [ 175.078125, -37.160317 ], [ 175.253906, -37.160317 ], [ 175.253906, -36.879621 ], [ 175.429688, -36.879621 ], [ 175.429688, -36.597889 ], [ 175.605469, -36.597889 ], [ 175.605469, -36.738884 ], [ 175.781250, -36.738884 ], [ 175.781250, -37.160317 ], [ 175.957031, -37.160317 ], [ 175.957031, -37.579413 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.376809 ], [ 173.496094, -41.376809 ], [ 173.496094, -41.244772 ], [ 173.847656, -41.244772 ], [ 173.847656, -41.112469 ], [ 174.023438, -41.112469 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.979898 ], [ 172.265625, -40.979898 ], [ 172.265625, -40.847060 ], [ 172.441406, -40.847060 ], [ 172.441406, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ] ] ], [ [ [ 173.144531, -34.597042 ], [ 173.144531, -34.741612 ], [ 173.320312, -34.741612 ], [ 173.320312, -35.029996 ], [ 173.671875, -35.029996 ], [ 173.671875, -35.173808 ], [ 174.023438, -35.173808 ], [ 174.023438, -35.317366 ], [ 174.375000, -35.317366 ], [ 174.375000, -35.746512 ], [ 174.550781, -35.746512 ], [ 174.550781, -36.315125 ], [ 174.726562, -36.315125 ], [ 174.726562, -36.597889 ], [ 174.902344, -36.597889 ], [ 174.902344, -36.879621 ], [ 175.078125, -36.879621 ], [ 175.078125, -37.160317 ], [ 175.253906, -37.160317 ], [ 175.253906, -36.879621 ], [ 175.429688, -36.879621 ], [ 175.429688, -36.597889 ], [ 175.605469, -36.597889 ], [ 175.605469, -36.738884 ], [ 175.781250, -36.738884 ], [ 175.781250, -37.160317 ], [ 175.957031, -37.160317 ], [ 175.957031, -37.579413 ], [ 176.132812, -37.579413 ], [ 176.132812, -37.718590 ], [ 176.484375, -37.718590 ], [ 176.484375, -37.857507 ], [ 177.011719, -37.857507 ], [ 177.011719, -37.996163 ], [ 177.539062, -37.996163 ], [ 177.539062, -37.857507 ], [ 177.890625, -37.857507 ], [ 177.890625, -37.718590 ], [ 178.066406, -37.718590 ], [ 178.066406, -37.579413 ], [ 178.242188, -37.579413 ], [ 178.242188, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -37.996163 ], [ 178.417969, -37.996163 ], [ 178.417969, -38.410558 ], [ 178.242188, -38.410558 ], [ 178.242188, -38.822591 ], [ 178.066406, -38.822591 ], [ 178.066406, -39.095963 ], [ 177.890625, -39.095963 ], [ 177.890625, -39.232253 ], [ 177.363281, -39.232253 ], [ 177.363281, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.368279 ], [ 177.011719, -39.368279 ], [ 177.011719, -40.044438 ], [ 176.835938, -40.044438 ], [ 176.835938, -40.178873 ], [ 176.660156, -40.178873 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.781250, -41.376809 ], [ 175.781250, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.640078 ], [ 175.253906, -41.640078 ], [ 175.253906, -41.508577 ], [ 175.078125, -41.508577 ], [ 175.078125, -41.376809 ], [ 174.726562, -41.376809 ], [ 174.726562, -41.112469 ], [ 174.902344, -41.112469 ], [ 174.902344, -40.847060 ], [ 175.078125, -40.847060 ], [ 175.078125, -40.580585 ], [ 175.253906, -40.580585 ], [ 175.253906, -40.313043 ], [ 175.078125, -40.313043 ], [ 175.078125, -40.044438 ], [ 174.902344, -40.044438 ], [ 174.902344, -39.909736 ], [ 174.550781, -39.909736 ], [ 174.550781, -39.774769 ], [ 174.199219, -39.774769 ], [ 174.199219, -39.639538 ], [ 173.847656, -39.639538 ], [ 173.847656, -39.095963 ], [ 174.199219, -39.095963 ], [ 174.199219, -38.959409 ], [ 174.550781, -38.959409 ], [ 174.550781, -38.410558 ], [ 174.726562, -38.410558 ], [ 174.726562, -37.300275 ], [ 174.550781, -37.300275 ], [ 174.550781, -37.020098 ], [ 174.375000, -37.020098 ], [ 174.375000, -36.597889 ], [ 174.199219, -36.597889 ], [ 174.199219, -36.456636 ], [ 174.023438, -36.456636 ], [ 174.023438, -36.315125 ], [ 173.847656, -36.315125 ], [ 173.847656, -36.173357 ], [ 173.671875, -36.173357 ], [ 173.671875, -35.889050 ], [ 173.496094, -35.889050 ], [ 173.496094, -35.746512 ], [ 173.320312, -35.746512 ], [ 173.320312, -35.603719 ], [ 173.144531, -35.603719 ], [ 173.144531, -35.317366 ], [ 172.968750, -35.317366 ], [ 172.968750, -35.029996 ], [ 172.792969, -35.029996 ], [ 172.792969, -34.741612 ], [ 172.617188, -34.741612 ], [ 172.617188, -34.597042 ], [ 173.144531, -34.597042 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.296875, 34.161818 ], [ 134.648438, 34.161818 ], [ 134.648438, 34.016242 ], [ 134.824219, 34.016242 ], [ 134.824219, 33.724340 ], [ 134.648438, 33.724340 ], [ 134.648438, 33.578015 ], [ 134.472656, 33.578015 ], [ 134.472656, 33.284620 ], [ 134.296875, 33.284620 ], [ 134.296875, 33.137551 ], [ 134.121094, 33.137551 ], [ 134.121094, 34.307144 ], [ 134.296875, 34.307144 ], [ 134.296875, 34.161818 ] ] ], [ [ [ 141.679688, 40.178873 ], [ 141.855469, 40.178873 ], [ 141.855469, 39.095963 ], [ 141.679688, 39.095963 ], [ 141.679688, 38.822591 ], [ 141.503906, 38.822591 ], [ 141.503906, 38.685510 ], [ 141.328125, 38.685510 ], [ 141.328125, 38.410558 ], [ 141.152344, 38.410558 ], [ 141.152344, 38.134557 ], [ 140.976562, 38.134557 ], [ 140.976562, 36.879621 ], [ 140.800781, 36.879621 ], [ 140.800781, 36.456636 ], [ 140.625000, 36.456636 ], [ 140.625000, 36.031332 ], [ 140.800781, 36.031332 ], [ 140.800781, 35.746512 ], [ 140.625000, 35.746512 ], [ 140.625000, 35.460670 ], [ 140.449219, 35.460670 ], [ 140.449219, 35.173808 ], [ 140.273438, 35.173808 ], [ 140.273438, 35.029996 ], [ 139.921875, 35.029996 ], [ 139.921875, 34.885931 ], [ 139.570312, 34.885931 ], [ 139.570312, 34.741612 ], [ 139.218750, 34.741612 ], [ 139.218750, 34.597042 ], [ 137.285156, 34.597042 ], [ 137.285156, 34.452218 ], [ 137.109375, 34.452218 ], [ 137.109375, 34.307144 ], [ 136.933594, 34.307144 ], [ 136.933594, 34.161818 ], [ 136.757812, 34.161818 ], [ 136.757812, 34.016242 ], [ 136.582031, 34.016242 ], [ 136.582031, 33.870416 ], [ 136.406250, 33.870416 ], [ 136.406250, 33.724340 ], [ 136.230469, 33.724340 ], [ 136.230469, 33.578015 ], [ 136.054688, 33.578015 ], [ 136.054688, 33.431441 ], [ 135.703125, 33.431441 ], [ 135.703125, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.175781, 33.724340 ], [ 135.175781, 34.161818 ], [ 135.000000, 34.161818 ], [ 135.000000, 34.597042 ], [ 134.648438, 34.597042 ], [ 134.648438, 34.452218 ], [ 134.121094, 34.452218 ], [ 134.121094, 35.603719 ], [ 134.472656, 35.603719 ], [ 134.472656, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.351562, 35.603719 ], [ 135.351562, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.603719 ], [ 135.878906, 35.603719 ], [ 135.878906, 35.889050 ], [ 136.054688, 35.889050 ], [ 136.054688, 36.173357 ], [ 136.230469, 36.173357 ], [ 136.230469, 36.456636 ], [ 136.406250, 36.456636 ], [ 136.406250, 36.738884 ], [ 136.582031, 36.738884 ], [ 136.582031, 37.020098 ], [ 136.757812, 37.020098 ], [ 136.757812, 37.160317 ], [ 136.933594, 37.160317 ], [ 136.933594, 37.020098 ], [ 137.285156, 37.020098 ], [ 137.285156, 36.879621 ], [ 137.636719, 36.879621 ], [ 137.636719, 37.020098 ], [ 137.812500, 37.020098 ], [ 137.812500, 37.160317 ], [ 137.988281, 37.160317 ], [ 137.988281, 37.300275 ], [ 138.339844, 37.300275 ], [ 138.339844, 37.439974 ], [ 138.515625, 37.439974 ], [ 138.515625, 37.579413 ], [ 138.691406, 37.579413 ], [ 138.691406, 37.718590 ], [ 138.867188, 37.718590 ], [ 138.867188, 37.857507 ], [ 139.042969, 37.857507 ], [ 139.042969, 37.996163 ], [ 139.218750, 37.996163 ], [ 139.218750, 38.134557 ], [ 139.394531, 38.134557 ], [ 139.394531, 38.410558 ], [ 139.570312, 38.410558 ], [ 139.570312, 38.685510 ], [ 139.746094, 38.685510 ], [ 139.746094, 38.959409 ], [ 139.921875, 38.959409 ], [ 139.921875, 39.232253 ], [ 140.097656, 39.232253 ], [ 140.097656, 40.044438 ], [ 139.921875, 40.044438 ], [ 139.921875, 40.713956 ], [ 140.097656, 40.713956 ], [ 140.097656, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.713956 ], [ 141.679688, 40.713956 ], [ 141.679688, 40.178873 ] ] ], [ [ [ 140.625000, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 41.640078 ], [ 140.625000, 41.640078 ], [ 140.625000, 41.508577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.296875, 34.307144 ], [ 134.296875, 34.161818 ], [ 134.648438, 34.161818 ], [ 134.648438, 34.016242 ], [ 134.824219, 34.016242 ], [ 134.824219, 33.724340 ], [ 134.648438, 33.724340 ], [ 134.648438, 33.578015 ], [ 134.472656, 33.578015 ], [ 134.472656, 33.284620 ], [ 134.296875, 33.284620 ], [ 134.296875, 33.137551 ], [ 134.121094, 33.137551 ], [ 134.121094, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.713956 ], [ 141.679688, 40.713956 ], [ 141.679688, 40.178873 ], [ 141.855469, 40.178873 ], [ 141.855469, 39.095963 ], [ 141.679688, 39.095963 ], [ 141.679688, 38.822591 ], [ 141.503906, 38.822591 ], [ 141.503906, 38.685510 ], [ 141.328125, 38.685510 ], [ 141.328125, 38.410558 ], [ 141.152344, 38.410558 ], [ 141.152344, 38.134557 ], [ 140.976562, 38.134557 ], [ 140.976562, 36.879621 ], [ 140.800781, 36.879621 ], [ 140.800781, 36.456636 ], [ 140.625000, 36.456636 ], [ 140.625000, 36.031332 ], [ 140.800781, 36.031332 ], [ 140.800781, 35.746512 ], [ 140.625000, 35.746512 ], [ 140.625000, 35.460670 ], [ 140.449219, 35.460670 ], [ 140.449219, 35.173808 ], [ 140.273438, 35.173808 ], [ 140.273438, 35.029996 ], [ 139.921875, 35.029996 ], [ 139.921875, 34.885931 ], [ 139.570312, 34.885931 ], [ 139.570312, 34.741612 ], [ 139.218750, 34.741612 ], [ 139.218750, 34.597042 ], [ 137.285156, 34.597042 ], [ 137.285156, 34.452218 ], [ 137.109375, 34.452218 ], [ 137.109375, 34.307144 ], [ 136.933594, 34.307144 ], [ 136.933594, 34.161818 ], [ 136.757812, 34.161818 ], [ 136.757812, 34.016242 ], [ 136.582031, 34.016242 ], [ 136.582031, 33.870416 ], [ 136.406250, 33.870416 ], [ 136.406250, 33.724340 ], [ 136.230469, 33.724340 ], [ 136.230469, 33.578015 ], [ 136.054688, 33.578015 ], [ 136.054688, 33.431441 ], [ 135.703125, 33.431441 ], [ 135.703125, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.175781, 33.724340 ], [ 135.175781, 34.161818 ], [ 135.000000, 34.161818 ], [ 135.000000, 34.597042 ], [ 134.648438, 34.597042 ], [ 134.648438, 34.452218 ], [ 134.121094, 34.452218 ], [ 134.121094, 35.603719 ], [ 134.472656, 35.603719 ], [ 134.472656, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.351562, 35.603719 ], [ 135.351562, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.603719 ], [ 135.878906, 35.603719 ], [ 135.878906, 35.889050 ], [ 136.054688, 35.889050 ], [ 136.054688, 36.173357 ], [ 136.230469, 36.173357 ], [ 136.230469, 36.456636 ], [ 136.406250, 36.456636 ], [ 136.406250, 36.738884 ], [ 136.582031, 36.738884 ], [ 136.582031, 37.020098 ], [ 136.757812, 37.020098 ], [ 136.757812, 37.160317 ], [ 136.933594, 37.160317 ], [ 136.933594, 37.020098 ], [ 137.285156, 37.020098 ], [ 137.285156, 36.879621 ], [ 137.636719, 36.879621 ], [ 137.636719, 37.020098 ], [ 137.812500, 37.020098 ], [ 137.812500, 37.160317 ], [ 137.988281, 37.160317 ], [ 137.988281, 37.300275 ], [ 138.339844, 37.300275 ], [ 138.339844, 37.439974 ], [ 138.515625, 37.439974 ], [ 138.515625, 37.579413 ], [ 138.691406, 37.579413 ], [ 138.691406, 37.718590 ], [ 138.867188, 37.718590 ], [ 138.867188, 37.857507 ], [ 139.042969, 37.857507 ], [ 139.042969, 37.996163 ], [ 139.218750, 37.996163 ], [ 139.218750, 38.134557 ], [ 139.394531, 38.134557 ], [ 139.394531, 38.410558 ], [ 139.570312, 38.410558 ], [ 139.570312, 38.685510 ], [ 139.746094, 38.685510 ], [ 139.746094, 38.959409 ], [ 139.921875, 38.959409 ], [ 139.921875, 39.232253 ], [ 140.097656, 39.232253 ], [ 140.097656, 40.044438 ], [ 139.921875, 40.044438 ], [ 139.921875, 40.713956 ], [ 140.097656, 40.713956 ], [ 140.097656, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 140.625000, 41.640078 ], [ 140.625000, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 41.640078 ], [ 140.625000, 41.640078 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.765625, 59.623325 ], [ 149.765625, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.445075 ], [ 149.238281, 59.445075 ], [ 149.238281, 59.355596 ], [ 149.062500, 59.355596 ], [ 149.062500, 59.265881 ], [ 148.710938, 59.265881 ], [ 148.710938, 59.175928 ], [ 147.656250, 59.175928 ], [ 147.656250, 59.265881 ], [ 146.250000, 59.265881 ], [ 146.250000, 59.355596 ], [ 145.195312, 59.355596 ], [ 145.195312, 59.265881 ], [ 144.316406, 59.265881 ], [ 144.316406, 59.175928 ], [ 143.613281, 59.175928 ], [ 143.613281, 59.085739 ], [ 142.734375, 59.085739 ], [ 142.734375, 58.995311 ], [ 142.207031, 58.995311 ], [ 142.207031, 58.904646 ], [ 142.031250, 58.904646 ], [ 142.031250, 58.813742 ], [ 141.855469, 58.813742 ], [ 141.855469, 58.722599 ], [ 141.679688, 58.722599 ], [ 141.679688, 58.539595 ], [ 141.503906, 58.539595 ], [ 141.503906, 58.447733 ], [ 141.328125, 58.447733 ], [ 141.328125, 58.355630 ], [ 141.152344, 58.355630 ], [ 141.152344, 58.263287 ], [ 140.976562, 58.263287 ], [ 140.976562, 58.170702 ], [ 140.800781, 58.170702 ], [ 140.800781, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.891497 ], [ 140.449219, 57.891497 ], [ 140.449219, 57.797944 ], [ 140.273438, 57.797944 ], [ 140.273438, 57.704147 ], [ 140.097656, 57.704147 ], [ 140.097656, 57.610107 ], [ 139.921875, 57.610107 ], [ 139.921875, 57.515823 ], [ 139.746094, 57.515823 ], [ 139.746094, 57.421294 ], [ 139.570312, 57.421294 ], [ 139.570312, 57.231503 ], [ 139.394531, 57.231503 ], [ 139.394531, 57.136239 ], [ 139.218750, 57.136239 ], [ 139.218750, 57.040730 ], [ 139.042969, 57.040730 ], [ 139.042969, 56.944974 ], [ 138.867188, 56.944974 ], [ 138.867188, 56.848972 ], [ 138.691406, 56.848972 ], [ 138.691406, 56.752723 ], [ 138.515625, 56.752723 ], [ 138.515625, 56.656226 ], [ 138.339844, 56.656226 ], [ 138.339844, 56.559482 ], [ 138.164062, 56.559482 ], [ 138.164062, 56.462490 ], [ 137.988281, 56.462490 ], [ 137.988281, 56.365250 ], [ 137.812500, 56.365250 ], [ 137.812500, 56.267761 ], [ 137.636719, 56.267761 ], [ 137.636719, 56.170023 ], [ 137.460938, 56.170023 ], [ 137.460938, 56.072035 ], [ 137.285156, 56.072035 ], [ 137.285156, 55.973798 ], [ 137.109375, 55.973798 ], [ 137.109375, 55.776573 ], [ 136.933594, 55.776573 ], [ 136.933594, 55.677584 ], [ 136.757812, 55.677584 ], [ 136.757812, 55.578345 ], [ 136.582031, 55.578345 ], [ 136.582031, 55.478853 ], [ 136.406250, 55.478853 ], [ 136.406250, 55.379110 ], [ 136.230469, 55.379110 ], [ 136.230469, 55.279115 ], [ 136.054688, 55.279115 ], [ 136.054688, 55.178868 ], [ 135.878906, 55.178868 ], [ 135.878906, 55.078367 ], [ 135.703125, 55.078367 ], [ 135.703125, 54.977614 ], [ 135.527344, 54.977614 ], [ 135.527344, 54.876607 ], [ 135.351562, 54.876607 ], [ 135.351562, 54.775346 ], [ 135.527344, 54.775346 ], [ 135.527344, 54.673831 ], [ 136.230469, 54.673831 ], [ 136.230469, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.367759 ], [ 136.933594, 54.367759 ], [ 136.933594, 54.059388 ], [ 137.109375, 54.059388 ], [ 137.109375, 53.956086 ], [ 137.285156, 53.956086 ], [ 137.285156, 53.852527 ], [ 137.812500, 53.852527 ], [ 137.812500, 53.748711 ], [ 138.339844, 53.748711 ], [ 138.339844, 53.852527 ], [ 138.515625, 53.852527 ], [ 138.515625, 54.059388 ], [ 138.691406, 54.059388 ], [ 138.691406, 54.162434 ], [ 138.867188, 54.162434 ], [ 138.867188, 54.265224 ], [ 139.218750, 54.265224 ], [ 139.218750, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 54.059388 ], [ 140.097656, 54.059388 ], [ 140.097656, 53.956086 ], [ 140.273438, 53.956086 ], [ 140.273438, 53.748711 ], [ 140.449219, 53.748711 ], [ 140.449219, 53.644638 ], [ 140.625000, 53.644638 ], [ 140.625000, 53.540307 ], [ 140.800781, 53.540307 ], [ 140.800781, 53.435719 ], [ 140.976562, 53.435719 ], [ 140.976562, 53.225768 ], [ 141.152344, 53.225768 ], [ 141.152344, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.052490 ], [ 141.152344, 52.052490 ], [ 141.152344, 51.835778 ], [ 140.976562, 51.835778 ], [ 140.976562, 51.618017 ], [ 140.800781, 51.618017 ], [ 140.800781, 51.399206 ], [ 140.625000, 51.399206 ], [ 140.625000, 50.625073 ], [ 140.449219, 50.625073 ], [ 140.449219, 49.610710 ], [ 140.273438, 49.610710 ], [ 140.273438, 48.806863 ], [ 140.097656, 48.806863 ], [ 140.097656, 48.341646 ], [ 139.921875, 48.341646 ], [ 139.921875, 48.224673 ], [ 139.746094, 48.224673 ], [ 139.746094, 47.989922 ], [ 139.570312, 47.989922 ], [ 139.570312, 47.872144 ], [ 139.394531, 47.872144 ], [ 139.394531, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.517201 ], [ 139.042969, 47.517201 ], [ 139.042969, 47.398349 ], [ 138.867188, 47.398349 ], [ 138.867188, 47.279229 ], [ 138.691406, 47.279229 ], [ 138.691406, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.800059 ], [ 138.339844, 46.800059 ], [ 138.339844, 46.437857 ], [ 138.164062, 46.437857 ], [ 138.164062, 46.195042 ], [ 137.988281, 46.195042 ], [ 137.988281, 45.951150 ], [ 137.812500, 45.951150 ], [ 137.812500, 45.828799 ], [ 137.636719, 45.828799 ], [ 137.636719, 45.706179 ], [ 137.460938, 45.706179 ], [ 137.460938, 45.460131 ], [ 137.285156, 45.460131 ], [ 137.285156, 45.336702 ], [ 137.109375, 45.336702 ], [ 137.109375, 45.089036 ], [ 136.933594, 45.089036 ], [ 136.933594, 44.964798 ], [ 136.757812, 44.964798 ], [ 136.757812, 44.840291 ], [ 136.582031, 44.840291 ], [ 136.582031, 44.715514 ], [ 136.406250, 44.715514 ], [ 136.406250, 44.590467 ], [ 136.230469, 44.590467 ], [ 136.230469, 44.339565 ], [ 136.054688, 44.339565 ], [ 136.054688, 44.213710 ], [ 135.878906, 44.213710 ], [ 135.878906, 44.087585 ], [ 135.703125, 44.087585 ], [ 135.703125, 43.961191 ], [ 135.527344, 43.961191 ], [ 135.527344, 43.834527 ], [ 135.351562, 43.834527 ], [ 135.351562, 43.707594 ], [ 135.175781, 43.707594 ], [ 135.175781, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.648438, 43.325178 ], [ 134.648438, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.279229 ], [ 134.296875, 47.279229 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 47.989922 ], [ 134.824219, 47.989922 ], [ 134.824219, 48.224673 ], [ 135.000000, 48.224673 ], [ 135.000000, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 48.341646 ], [ 134.121094, 48.341646 ], [ 134.121094, 66.861082 ], [ 153.457031, 66.861082 ], [ 153.457031, 58.995311 ], [ 153.281250, 58.995311 ], [ 153.281250, 58.904646 ], [ 152.226562, 58.904646 ], [ 152.226562, 58.813742 ], [ 151.347656, 58.813742 ], [ 151.347656, 59.534318 ], [ 150.468750, 59.534318 ], [ 150.468750, 59.623325 ], [ 149.765625, 59.623325 ] ] ], [ [ [ 143.085938, 52.908902 ], [ 143.261719, 52.908902 ], [ 143.261719, 51.399206 ], [ 143.437500, 51.399206 ], [ 143.437500, 50.958427 ], [ 143.613281, 50.958427 ], [ 143.613281, 50.513427 ], [ 143.789062, 50.513427 ], [ 143.789062, 50.289339 ], [ 143.964844, 50.289339 ], [ 143.964844, 49.951220 ], [ 144.140625, 49.951220 ], [ 144.140625, 49.610710 ], [ 144.316406, 49.610710 ], [ 144.316406, 49.382373 ], [ 144.492188, 49.382373 ], [ 144.492188, 49.037868 ], [ 144.667969, 49.037868 ], [ 144.667969, 48.922499 ], [ 144.316406, 48.922499 ], [ 144.316406, 49.037868 ], [ 143.789062, 49.037868 ], [ 143.789062, 49.152970 ], [ 143.437500, 49.152970 ], [ 143.437500, 49.267805 ], [ 143.261719, 49.267805 ], [ 143.261719, 49.037868 ], [ 143.085938, 49.037868 ], [ 143.085938, 48.690960 ], [ 142.910156, 48.690960 ], [ 142.910156, 48.341646 ], [ 142.734375, 48.341646 ], [ 142.734375, 47.989922 ], [ 142.558594, 47.989922 ], [ 142.558594, 47.754098 ], [ 142.734375, 47.754098 ], [ 142.734375, 47.517201 ], [ 142.910156, 47.517201 ], [ 142.910156, 47.398349 ], [ 143.085938, 47.398349 ], [ 143.085938, 47.159840 ], [ 143.261719, 47.159840 ], [ 143.261719, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.800059 ], [ 143.613281, 46.800059 ], [ 143.613281, 46.437857 ], [ 143.437500, 46.437857 ], [ 143.437500, 46.195042 ], [ 143.261719, 46.195042 ], [ 143.261719, 46.316584 ], [ 143.085938, 46.316584 ], [ 143.085938, 46.558860 ], [ 142.910156, 46.558860 ], [ 142.910156, 46.679594 ], [ 142.558594, 46.679594 ], [ 142.558594, 46.437857 ], [ 142.382812, 46.437857 ], [ 142.382812, 46.195042 ], [ 142.207031, 46.195042 ], [ 142.207031, 45.951150 ], [ 142.031250, 45.951150 ], [ 142.031250, 46.316584 ], [ 141.855469, 46.316584 ], [ 141.855469, 47.279229 ], [ 142.031250, 47.279229 ], [ 142.031250, 48.224673 ], [ 141.855469, 48.224673 ], [ 141.855469, 48.922499 ], [ 142.031250, 48.922499 ], [ 142.031250, 49.382373 ], [ 142.207031, 49.382373 ], [ 142.207031, 51.069017 ], [ 142.031250, 51.069017 ], [ 142.031250, 51.399206 ], [ 141.855469, 51.399206 ], [ 141.855469, 51.727028 ], [ 141.679688, 51.727028 ], [ 141.679688, 53.330873 ], [ 141.855469, 53.330873 ], [ 141.855469, 53.435719 ], [ 142.031250, 53.435719 ], [ 142.031250, 53.540307 ], [ 142.382812, 53.540307 ], [ 142.382812, 53.644638 ], [ 142.558594, 53.644638 ], [ 142.558594, 53.852527 ], [ 142.382812, 53.852527 ], [ 142.382812, 54.059388 ], [ 142.207031, 54.059388 ], [ 142.207031, 54.265224 ], [ 142.558594, 54.265224 ], [ 142.558594, 54.367759 ], [ 142.734375, 54.367759 ], [ 142.734375, 54.059388 ], [ 142.910156, 54.059388 ], [ 142.910156, 53.435719 ], [ 143.085938, 53.435719 ], [ 143.085938, 52.908902 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.457031, 66.861082 ], [ 153.457031, 58.995311 ], [ 153.281250, 58.995311 ], [ 153.281250, 58.904646 ], [ 152.226562, 58.904646 ], [ 152.226562, 58.813742 ], [ 151.347656, 58.813742 ], [ 151.347656, 59.534318 ], [ 150.468750, 59.534318 ], [ 150.468750, 59.623325 ], [ 149.765625, 59.623325 ], [ 149.765625, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.445075 ], [ 149.238281, 59.445075 ], [ 149.238281, 59.355596 ], [ 149.062500, 59.355596 ], [ 149.062500, 59.265881 ], [ 148.710938, 59.265881 ], [ 148.710938, 59.175928 ], [ 147.656250, 59.175928 ], [ 147.656250, 59.265881 ], [ 146.250000, 59.265881 ], [ 146.250000, 59.355596 ], [ 145.195312, 59.355596 ], [ 145.195312, 59.265881 ], [ 144.316406, 59.265881 ], [ 144.316406, 59.175928 ], [ 143.613281, 59.175928 ], [ 143.613281, 59.085739 ], [ 142.734375, 59.085739 ], [ 142.734375, 58.995311 ], [ 142.207031, 58.995311 ], [ 142.207031, 58.904646 ], [ 142.031250, 58.904646 ], [ 142.031250, 58.813742 ], [ 141.855469, 58.813742 ], [ 141.855469, 58.722599 ], [ 141.679688, 58.722599 ], [ 141.679688, 58.539595 ], [ 141.503906, 58.539595 ], [ 141.503906, 58.447733 ], [ 141.328125, 58.447733 ], [ 141.328125, 58.355630 ], [ 141.152344, 58.355630 ], [ 141.152344, 58.263287 ], [ 140.976562, 58.263287 ], [ 140.976562, 58.170702 ], [ 140.800781, 58.170702 ], [ 140.800781, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.891497 ], [ 140.449219, 57.891497 ], [ 140.449219, 57.797944 ], [ 140.273438, 57.797944 ], [ 140.273438, 57.704147 ], [ 140.097656, 57.704147 ], [ 140.097656, 57.610107 ], [ 139.921875, 57.610107 ], [ 139.921875, 57.515823 ], [ 139.746094, 57.515823 ], [ 139.746094, 57.421294 ], [ 139.570312, 57.421294 ], [ 139.570312, 57.231503 ], [ 139.394531, 57.231503 ], [ 139.394531, 57.136239 ], [ 139.218750, 57.136239 ], [ 139.218750, 57.040730 ], [ 139.042969, 57.040730 ], [ 139.042969, 56.944974 ], [ 138.867188, 56.944974 ], [ 138.867188, 56.848972 ], [ 138.691406, 56.848972 ], [ 138.691406, 56.752723 ], [ 138.515625, 56.752723 ], [ 138.515625, 56.656226 ], [ 138.339844, 56.656226 ], [ 138.339844, 56.559482 ], [ 138.164062, 56.559482 ], [ 138.164062, 56.462490 ], [ 137.988281, 56.462490 ], [ 137.988281, 56.365250 ], [ 137.812500, 56.365250 ], [ 137.812500, 56.267761 ], [ 137.636719, 56.267761 ], [ 137.636719, 56.170023 ], [ 137.460938, 56.170023 ], [ 137.460938, 56.072035 ], [ 137.285156, 56.072035 ], [ 137.285156, 55.973798 ], [ 137.109375, 55.973798 ], [ 137.109375, 55.776573 ], [ 136.933594, 55.776573 ], [ 136.933594, 55.677584 ], [ 136.757812, 55.677584 ], [ 136.757812, 55.578345 ], [ 136.582031, 55.578345 ], [ 136.582031, 55.478853 ], [ 136.406250, 55.478853 ], [ 136.406250, 55.379110 ], [ 136.230469, 55.379110 ], [ 136.230469, 55.279115 ], [ 136.054688, 55.279115 ], [ 136.054688, 55.178868 ], [ 135.878906, 55.178868 ], [ 135.878906, 55.078367 ], [ 135.703125, 55.078367 ], [ 135.703125, 54.977614 ], [ 135.527344, 54.977614 ], [ 135.527344, 54.876607 ], [ 135.351562, 54.876607 ], [ 135.351562, 54.775346 ], [ 135.527344, 54.775346 ], [ 135.527344, 54.673831 ], [ 136.230469, 54.673831 ], [ 136.230469, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.367759 ], [ 136.933594, 54.367759 ], [ 136.933594, 54.059388 ], [ 137.109375, 54.059388 ], [ 137.109375, 53.956086 ], [ 137.285156, 53.956086 ], [ 137.285156, 53.852527 ], [ 137.812500, 53.852527 ], [ 137.812500, 53.748711 ], [ 138.339844, 53.748711 ], [ 138.339844, 53.852527 ], [ 138.515625, 53.852527 ], [ 138.515625, 54.059388 ], [ 138.691406, 54.059388 ], [ 138.691406, 54.162434 ], [ 138.867188, 54.162434 ], [ 138.867188, 54.265224 ], [ 139.218750, 54.265224 ], [ 139.218750, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 54.059388 ], [ 140.097656, 54.059388 ], [ 140.097656, 53.956086 ], [ 140.273438, 53.956086 ], [ 140.273438, 53.748711 ], [ 140.449219, 53.748711 ], [ 140.449219, 53.644638 ], [ 140.625000, 53.644638 ], [ 140.625000, 53.540307 ], [ 140.800781, 53.540307 ], [ 140.800781, 53.435719 ], [ 140.976562, 53.435719 ], [ 140.976562, 53.225768 ], [ 141.152344, 53.225768 ], [ 141.152344, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.052490 ], [ 141.152344, 52.052490 ], [ 141.152344, 51.835778 ], [ 140.976562, 51.835778 ], [ 140.976562, 51.618017 ], [ 140.800781, 51.618017 ], [ 140.800781, 51.399206 ], [ 140.625000, 51.399206 ], [ 140.625000, 50.625073 ], [ 140.449219, 50.625073 ], [ 140.449219, 49.610710 ], [ 140.273438, 49.610710 ], [ 140.273438, 48.806863 ], [ 140.097656, 48.806863 ], [ 140.097656, 48.341646 ], [ 139.921875, 48.341646 ], [ 139.921875, 48.224673 ], [ 139.746094, 48.224673 ], [ 139.746094, 47.989922 ], [ 139.570312, 47.989922 ], [ 139.570312, 47.872144 ], [ 139.394531, 47.872144 ], [ 139.394531, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.517201 ], [ 139.042969, 47.517201 ], [ 139.042969, 47.398349 ], [ 138.867188, 47.398349 ], [ 138.867188, 47.279229 ], [ 138.691406, 47.279229 ], [ 138.691406, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.800059 ], [ 138.339844, 46.800059 ], [ 138.339844, 46.437857 ], [ 138.164062, 46.437857 ], [ 138.164062, 46.195042 ], [ 137.988281, 46.195042 ], [ 137.988281, 45.951150 ], [ 137.812500, 45.951150 ], [ 137.812500, 45.828799 ], [ 137.636719, 45.828799 ], [ 137.636719, 45.706179 ], [ 137.460938, 45.706179 ], [ 137.460938, 45.460131 ], [ 137.285156, 45.460131 ], [ 137.285156, 45.336702 ], [ 137.109375, 45.336702 ], [ 137.109375, 45.089036 ], [ 136.933594, 45.089036 ], [ 136.933594, 44.964798 ], [ 136.757812, 44.964798 ], [ 136.757812, 44.840291 ], [ 136.582031, 44.840291 ], [ 136.582031, 44.715514 ], [ 136.406250, 44.715514 ], [ 136.406250, 44.590467 ], [ 136.230469, 44.590467 ], [ 136.230469, 44.339565 ], [ 136.054688, 44.339565 ], [ 136.054688, 44.213710 ], [ 135.878906, 44.213710 ], [ 135.878906, 44.087585 ], [ 135.703125, 44.087585 ], [ 135.703125, 43.961191 ], [ 135.527344, 43.961191 ], [ 135.527344, 43.834527 ], [ 135.351562, 43.834527 ], [ 135.351562, 43.707594 ], [ 135.175781, 43.707594 ], [ 135.175781, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.648438, 43.325178 ], [ 134.648438, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.279229 ], [ 134.296875, 47.279229 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 47.989922 ], [ 134.824219, 47.989922 ], [ 134.824219, 48.224673 ], [ 135.000000, 48.224673 ], [ 135.000000, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 48.341646 ], [ 134.121094, 48.341646 ], [ 134.121094, 66.861082 ], [ 153.457031, 66.861082 ] ] ], [ [ [ 142.734375, 54.367759 ], [ 142.734375, 54.059388 ], [ 142.910156, 54.059388 ], [ 142.910156, 53.435719 ], [ 143.085938, 53.435719 ], [ 143.085938, 52.908902 ], [ 143.261719, 52.908902 ], [ 143.261719, 51.399206 ], [ 143.437500, 51.399206 ], [ 143.437500, 50.958427 ], [ 143.613281, 50.958427 ], [ 143.613281, 50.513427 ], [ 143.789062, 50.513427 ], [ 143.789062, 50.289339 ], [ 143.964844, 50.289339 ], [ 143.964844, 49.951220 ], [ 144.140625, 49.951220 ], [ 144.140625, 49.610710 ], [ 144.316406, 49.610710 ], [ 144.316406, 49.382373 ], [ 144.492188, 49.382373 ], [ 144.492188, 49.037868 ], [ 144.667969, 49.037868 ], [ 144.667969, 48.922499 ], [ 144.316406, 48.922499 ], [ 144.316406, 49.037868 ], [ 143.789062, 49.037868 ], [ 143.789062, 49.152970 ], [ 143.437500, 49.152970 ], [ 143.437500, 49.267805 ], [ 143.261719, 49.267805 ], [ 143.261719, 49.037868 ], [ 143.085938, 49.037868 ], [ 143.085938, 48.690960 ], [ 142.910156, 48.690960 ], [ 142.910156, 48.341646 ], [ 142.734375, 48.341646 ], [ 142.734375, 47.989922 ], [ 142.558594, 47.989922 ], [ 142.558594, 47.754098 ], [ 142.734375, 47.754098 ], [ 142.734375, 47.517201 ], [ 142.910156, 47.517201 ], [ 142.910156, 47.398349 ], [ 143.085938, 47.398349 ], [ 143.085938, 47.159840 ], [ 143.261719, 47.159840 ], [ 143.261719, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.800059 ], [ 143.613281, 46.800059 ], [ 143.613281, 46.437857 ], [ 143.437500, 46.437857 ], [ 143.437500, 46.195042 ], [ 143.261719, 46.195042 ], [ 143.261719, 46.316584 ], [ 143.085938, 46.316584 ], [ 143.085938, 46.558860 ], [ 142.910156, 46.558860 ], [ 142.910156, 46.679594 ], [ 142.558594, 46.679594 ], [ 142.558594, 46.437857 ], [ 142.382812, 46.437857 ], [ 142.382812, 46.195042 ], [ 142.207031, 46.195042 ], [ 142.207031, 45.951150 ], [ 142.031250, 45.951150 ], [ 142.031250, 46.316584 ], [ 141.855469, 46.316584 ], [ 141.855469, 47.279229 ], [ 142.031250, 47.279229 ], [ 142.031250, 48.224673 ], [ 141.855469, 48.224673 ], [ 141.855469, 48.922499 ], [ 142.031250, 48.922499 ], [ 142.031250, 49.382373 ], [ 142.207031, 49.382373 ], [ 142.207031, 51.069017 ], [ 142.031250, 51.069017 ], [ 142.031250, 51.399206 ], [ 141.855469, 51.399206 ], [ 141.855469, 51.727028 ], [ 141.679688, 51.727028 ], [ 141.679688, 53.330873 ], [ 141.855469, 53.330873 ], [ 141.855469, 53.435719 ], [ 142.031250, 53.435719 ], [ 142.031250, 53.540307 ], [ 142.382812, 53.540307 ], [ 142.382812, 53.644638 ], [ 142.558594, 53.644638 ], [ 142.558594, 53.852527 ], [ 142.382812, 53.852527 ], [ 142.382812, 54.059388 ], [ 142.207031, 54.059388 ], [ 142.207031, 54.265224 ], [ 142.558594, 54.265224 ], [ 142.558594, 54.367759 ], [ 142.734375, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 177.539062, 62.431074 ], [ 177.539062, 62.512318 ], [ 177.363281, 62.512318 ], [ 177.363281, 62.431074 ], [ 177.011719, 62.431074 ], [ 177.011719, 62.349609 ], [ 176.660156, 62.349609 ], [ 176.660156, 62.267923 ], [ 176.308594, 62.267923 ], [ 176.308594, 62.186014 ], [ 176.132812, 62.186014 ], [ 176.132812, 62.103883 ], [ 175.781250, 62.103883 ], [ 175.781250, 62.021528 ], [ 175.429688, 62.021528 ], [ 175.429688, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.856149 ], [ 174.726562, 61.856149 ], [ 174.726562, 61.773123 ], [ 174.199219, 61.773123 ], [ 174.199219, 61.689872 ], [ 173.671875, 61.689872 ], [ 173.671875, 61.606396 ], [ 173.496094, 61.606396 ], [ 173.496094, 61.522695 ], [ 173.320312, 61.522695 ], [ 173.320312, 61.438767 ], [ 173.144531, 61.438767 ], [ 173.144531, 61.354614 ], [ 172.968750, 61.354614 ], [ 172.968750, 61.270233 ], [ 172.792969, 61.270233 ], [ 172.792969, 61.185625 ], [ 172.617188, 61.185625 ], [ 172.617188, 61.100789 ], [ 172.441406, 61.100789 ], [ 172.441406, 61.015725 ], [ 172.265625, 61.015725 ], [ 172.265625, 60.930432 ], [ 172.089844, 60.930432 ], [ 172.089844, 60.844911 ], [ 171.914062, 60.844911 ], [ 171.914062, 60.759160 ], [ 171.738281, 60.759160 ], [ 171.738281, 60.673179 ], [ 171.562500, 60.673179 ], [ 171.562500, 60.586967 ], [ 171.210938, 60.586967 ], [ 171.210938, 60.500525 ], [ 171.035156, 60.500525 ], [ 171.035156, 60.413852 ], [ 170.859375, 60.413852 ], [ 170.859375, 60.326948 ], [ 170.683594, 60.326948 ], [ 170.683594, 60.152442 ], [ 170.507812, 60.152442 ], [ 170.507812, 59.977005 ], [ 170.332031, 59.977005 ], [ 170.332031, 59.888937 ], [ 170.156250, 59.888937 ], [ 170.156250, 59.977005 ], [ 169.980469, 59.977005 ], [ 169.980469, 60.064840 ], [ 169.804688, 60.064840 ], [ 169.804688, 60.152442 ], [ 169.628906, 60.152442 ], [ 169.628906, 60.239811 ], [ 169.453125, 60.239811 ], [ 169.453125, 60.326948 ], [ 169.277344, 60.326948 ], [ 169.277344, 60.413852 ], [ 169.101562, 60.413852 ], [ 169.101562, 60.500525 ], [ 168.574219, 60.500525 ], [ 168.574219, 60.413852 ], [ 168.222656, 60.413852 ], [ 168.222656, 60.326948 ], [ 168.046875, 60.326948 ], [ 168.046875, 60.239811 ], [ 167.695312, 60.239811 ], [ 167.695312, 60.152442 ], [ 167.343750, 60.152442 ], [ 167.343750, 60.064840 ], [ 167.167969, 60.064840 ], [ 167.167969, 59.977005 ], [ 166.816406, 59.977005 ], [ 166.816406, 59.888937 ], [ 166.464844, 59.888937 ], [ 166.464844, 59.800634 ], [ 166.113281, 59.800634 ], [ 166.113281, 59.977005 ], [ 165.937500, 59.977005 ], [ 165.937500, 60.064840 ], [ 165.585938, 60.064840 ], [ 165.585938, 59.977005 ], [ 165.410156, 59.977005 ], [ 165.410156, 59.888937 ], [ 165.234375, 59.888937 ], [ 165.234375, 59.800634 ], [ 165.058594, 59.800634 ], [ 165.058594, 59.712097 ], [ 164.355469, 59.712097 ], [ 164.355469, 59.800634 ], [ 163.652344, 59.800634 ], [ 163.652344, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.534318 ], [ 163.300781, 59.534318 ], [ 163.300781, 59.085739 ], [ 163.125000, 59.085739 ], [ 163.125000, 58.904646 ], [ 162.949219, 58.904646 ], [ 162.949219, 58.813742 ], [ 162.773438, 58.813742 ], [ 162.773438, 58.722599 ], [ 162.597656, 58.722599 ], [ 162.597656, 58.539595 ], [ 162.421875, 58.539595 ], [ 162.421875, 58.447733 ], [ 162.246094, 58.447733 ], [ 162.246094, 58.263287 ], [ 162.070312, 58.263287 ], [ 162.070312, 57.797944 ], [ 162.246094, 57.797944 ], [ 162.246094, 57.704147 ], [ 162.773438, 57.704147 ], [ 162.773438, 57.610107 ], [ 163.125000, 57.610107 ], [ 163.125000, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.875311 ], [ 161.894531, 55.875311 ], [ 161.894531, 55.478853 ], [ 161.718750, 55.478853 ], [ 161.718750, 55.178868 ], [ 161.894531, 55.178868 ], [ 161.894531, 54.977614 ], [ 162.070312, 54.977614 ], [ 162.070312, 54.775346 ], [ 161.718750, 54.775346 ], [ 161.718750, 54.673831 ], [ 161.367188, 54.673831 ], [ 161.367188, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.470038 ], [ 160.664062, 54.470038 ], [ 160.664062, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 54.059388 ], [ 160.136719, 54.059388 ], [ 160.136719, 53.435719 ], [ 159.960938, 53.435719 ], [ 159.960938, 53.225768 ], [ 159.785156, 53.225768 ], [ 159.785156, 53.120405 ], [ 159.433594, 53.120405 ], [ 159.433594, 53.014783 ], [ 158.906250, 53.014783 ], [ 158.906250, 52.908902 ], [ 158.554688, 52.908902 ], [ 158.554688, 52.589701 ], [ 158.378906, 52.589701 ], [ 158.378906, 52.160455 ], [ 158.203125, 52.160455 ], [ 158.203125, 51.835778 ], [ 158.027344, 51.835778 ], [ 158.027344, 51.727028 ], [ 157.851562, 51.727028 ], [ 157.851562, 51.618017 ], [ 157.675781, 51.618017 ], [ 157.675781, 51.508742 ], [ 157.500000, 51.508742 ], [ 157.500000, 51.289406 ], [ 157.324219, 51.289406 ], [ 157.324219, 51.179343 ], [ 157.148438, 51.179343 ], [ 157.148438, 51.069017 ], [ 156.972656, 51.069017 ], [ 156.972656, 50.958427 ], [ 156.796875, 50.958427 ], [ 156.796875, 51.069017 ], [ 156.621094, 51.069017 ], [ 156.621094, 51.508742 ], [ 156.445312, 51.508742 ], [ 156.445312, 51.944265 ], [ 156.269531, 51.944265 ], [ 156.269531, 52.375599 ], [ 156.093750, 52.375599 ], [ 156.093750, 52.802761 ], [ 155.917969, 52.802761 ], [ 155.917969, 53.435719 ], [ 155.742188, 53.435719 ], [ 155.742188, 54.265224 ], [ 155.566406, 54.265224 ], [ 155.566406, 54.977614 ], [ 155.390625, 54.977614 ], [ 155.390625, 55.578345 ], [ 155.566406, 55.578345 ], [ 155.566406, 56.072035 ], [ 155.742188, 56.072035 ], [ 155.742188, 56.462490 ], [ 155.917969, 56.462490 ], [ 155.917969, 56.752723 ], [ 156.093750, 56.752723 ], [ 156.093750, 56.848972 ], [ 156.269531, 56.848972 ], [ 156.269531, 57.040730 ], [ 156.445312, 57.040730 ], [ 156.445312, 57.136239 ], [ 156.621094, 57.136239 ], [ 156.621094, 57.231503 ], [ 156.796875, 57.231503 ], [ 156.796875, 57.797944 ], [ 157.148438, 57.797944 ], [ 157.148438, 57.891497 ], [ 157.675781, 57.891497 ], [ 157.675781, 57.984808 ], [ 158.203125, 57.984808 ], [ 158.203125, 58.077876 ], [ 158.554688, 58.077876 ], [ 158.554688, 58.263287 ], [ 158.730469, 58.263287 ], [ 158.730469, 58.355630 ], [ 158.906250, 58.355630 ], [ 158.906250, 58.447733 ], [ 159.082031, 58.447733 ], [ 159.082031, 58.631217 ], [ 159.257812, 58.631217 ], [ 159.257812, 58.722599 ], [ 159.433594, 58.722599 ], [ 159.433594, 58.904646 ], [ 159.609375, 58.904646 ], [ 159.609375, 58.995311 ], [ 159.785156, 58.995311 ], [ 159.785156, 59.085739 ], [ 159.960938, 59.085739 ], [ 159.960938, 59.265881 ], [ 160.136719, 59.265881 ], [ 160.136719, 59.355596 ], [ 160.312500, 59.355596 ], [ 160.312500, 59.445075 ], [ 160.488281, 59.445075 ], [ 160.488281, 59.534318 ], [ 160.664062, 59.534318 ], [ 160.664062, 59.623325 ], [ 160.839844, 59.623325 ], [ 160.839844, 59.712097 ], [ 161.015625, 59.712097 ], [ 161.015625, 59.888937 ], [ 161.191406, 59.888937 ], [ 161.191406, 59.977005 ], [ 161.367188, 59.977005 ], [ 161.367188, 60.064840 ], [ 161.542969, 60.064840 ], [ 161.542969, 60.152442 ], [ 161.718750, 60.152442 ], [ 161.718750, 60.239811 ], [ 161.894531, 60.239811 ], [ 161.894531, 60.326948 ], [ 162.070312, 60.326948 ], [ 162.070312, 60.413852 ], [ 162.246094, 60.413852 ], [ 162.246094, 60.500525 ], [ 162.421875, 60.500525 ], [ 162.421875, 60.586967 ], [ 162.597656, 60.586967 ], [ 162.597656, 60.673179 ], [ 162.949219, 60.673179 ], [ 162.949219, 60.759160 ], [ 163.125000, 60.759160 ], [ 163.125000, 60.844911 ], [ 163.300781, 60.844911 ], [ 163.300781, 60.930432 ], [ 163.476562, 60.930432 ], [ 163.476562, 61.015725 ], [ 163.652344, 61.015725 ], [ 163.652344, 61.185625 ], [ 163.828125, 61.185625 ], [ 163.828125, 61.522695 ], [ 164.003906, 61.522695 ], [ 164.003906, 61.773123 ], [ 164.179688, 61.773123 ], [ 164.179688, 62.021528 ], [ 164.355469, 62.021528 ], [ 164.355469, 62.349609 ], [ 164.531250, 62.349609 ], [ 164.531250, 62.512318 ], [ 164.003906, 62.512318 ], [ 164.003906, 62.431074 ], [ 163.300781, 62.431074 ], [ 163.300781, 62.267923 ], [ 163.125000, 62.267923 ], [ 163.125000, 62.103883 ], [ 162.949219, 62.103883 ], [ 162.949219, 61.856149 ], [ 162.773438, 61.856149 ], [ 162.773438, 61.689872 ], [ 162.597656, 61.689872 ], [ 162.597656, 61.522695 ], [ 162.421875, 61.522695 ], [ 162.421875, 61.438767 ], [ 162.246094, 61.438767 ], [ 162.246094, 61.354614 ], [ 161.894531, 61.354614 ], [ 161.894531, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 61.185625 ], [ 161.542969, 61.185625 ], [ 161.542969, 61.100789 ], [ 161.367188, 61.100789 ], [ 161.367188, 61.015725 ], [ 161.191406, 61.015725 ], [ 161.191406, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.844911 ], [ 160.664062, 60.844911 ], [ 160.664062, 60.759160 ], [ 160.488281, 60.759160 ], [ 160.488281, 60.673179 ], [ 160.312500, 60.673179 ], [ 160.312500, 60.586967 ], [ 160.136719, 60.586967 ], [ 160.136719, 60.673179 ], [ 159.960938, 60.673179 ], [ 159.960938, 60.930432 ], [ 159.785156, 60.930432 ], [ 159.785156, 61.185625 ], [ 159.609375, 61.185625 ], [ 159.609375, 61.354614 ], [ 159.433594, 61.354614 ], [ 159.433594, 61.606396 ], [ 159.257812, 61.606396 ], [ 159.257812, 61.773123 ], [ 159.082031, 61.773123 ], [ 159.082031, 61.689872 ], [ 158.378906, 61.689872 ], [ 158.378906, 61.606396 ], [ 157.851562, 61.606396 ], [ 157.851562, 61.522695 ], [ 157.148438, 61.522695 ], [ 157.148438, 61.438767 ], [ 156.796875, 61.438767 ], [ 156.796875, 61.354614 ], [ 156.621094, 61.354614 ], [ 156.621094, 61.270233 ], [ 156.445312, 61.270233 ], [ 156.445312, 61.100789 ], [ 156.269531, 61.100789 ], [ 156.269531, 61.015725 ], [ 156.093750, 61.015725 ], [ 156.093750, 60.930432 ], [ 155.917969, 60.930432 ], [ 155.917969, 60.844911 ], [ 155.742188, 60.844911 ], [ 155.742188, 60.673179 ], [ 155.566406, 60.673179 ], [ 155.566406, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.500525 ], [ 155.214844, 60.500525 ], [ 155.214844, 60.326948 ], [ 155.039062, 60.326948 ], [ 155.039062, 60.239811 ], [ 154.863281, 60.239811 ], [ 154.863281, 60.152442 ], [ 154.687500, 60.152442 ], [ 154.687500, 60.064840 ], [ 154.511719, 60.064840 ], [ 154.511719, 59.888937 ], [ 154.335938, 59.888937 ], [ 154.335938, 59.800634 ], [ 154.160156, 59.800634 ], [ 154.160156, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.511719, 59.534318 ], [ 154.511719, 59.445075 ], [ 154.687500, 59.445075 ], [ 154.687500, 59.355596 ], [ 154.863281, 59.355596 ], [ 154.863281, 59.175928 ], [ 154.687500, 59.175928 ], [ 154.687500, 59.085739 ], [ 153.984375, 59.085739 ], [ 153.984375, 58.995311 ], [ 153.457031, 58.995311 ], [ 153.457031, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.000000, 64.923542 ], [ 179.824219, 64.923542 ], [ 179.824219, 64.848937 ], [ 179.648438, 64.848937 ], [ 179.648438, 64.774125 ], [ 179.296875, 64.774125 ], [ 179.296875, 64.699105 ], [ 179.121094, 64.699105 ], [ 179.121094, 64.623877 ], [ 178.945312, 64.623877 ], [ 178.945312, 64.548440 ], [ 177.890625, 64.548440 ], [ 177.890625, 64.623877 ], [ 177.363281, 64.623877 ], [ 177.363281, 64.548440 ], [ 177.539062, 64.548440 ], [ 177.539062, 64.396938 ], [ 177.714844, 64.396938 ], [ 177.714844, 64.320872 ], [ 177.890625, 64.320872 ], [ 177.890625, 64.244595 ], [ 178.066406, 64.244595 ], [ 178.066406, 64.091408 ], [ 178.242188, 64.091408 ], [ 178.242188, 63.937372 ], [ 178.417969, 63.937372 ], [ 178.417969, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.548552 ], [ 178.769531, 63.548552 ], [ 178.769531, 63.312683 ], [ 178.945312, 63.312683 ], [ 178.945312, 63.154355 ], [ 179.121094, 63.154355 ], [ 179.121094, 62.995158 ], [ 179.296875, 62.995158 ], [ 179.296875, 62.754726 ], [ 179.472656, 62.754726 ], [ 179.472656, 62.431074 ], [ 179.296875, 62.431074 ], [ 179.296875, 62.267923 ], [ 178.945312, 62.267923 ], [ 178.945312, 62.349609 ], [ 178.242188, 62.349609 ], [ 178.242188, 62.431074 ], [ 177.539062, 62.431074 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.861082 ], [ 180.000000, 64.923542 ], [ 179.824219, 64.923542 ], [ 179.824219, 64.848937 ], [ 179.648438, 64.848937 ], [ 179.648438, 64.774125 ], [ 179.296875, 64.774125 ], [ 179.296875, 64.699105 ], [ 179.121094, 64.699105 ], [ 179.121094, 64.623877 ], [ 178.945312, 64.623877 ], [ 178.945312, 64.548440 ], [ 177.890625, 64.548440 ], [ 177.890625, 64.623877 ], [ 177.363281, 64.623877 ], [ 177.363281, 64.548440 ], [ 177.539062, 64.548440 ], [ 177.539062, 64.396938 ], [ 177.714844, 64.396938 ], [ 177.714844, 64.320872 ], [ 177.890625, 64.320872 ], [ 177.890625, 64.244595 ], [ 178.066406, 64.244595 ], [ 178.066406, 64.091408 ], [ 178.242188, 64.091408 ], [ 178.242188, 63.937372 ], [ 178.417969, 63.937372 ], [ 178.417969, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.548552 ], [ 178.769531, 63.548552 ], [ 178.769531, 63.312683 ], [ 178.945312, 63.312683 ], [ 178.945312, 63.154355 ], [ 179.121094, 63.154355 ], [ 179.121094, 62.995158 ], [ 179.296875, 62.995158 ], [ 179.296875, 62.754726 ], [ 179.472656, 62.754726 ], [ 179.472656, 62.431074 ], [ 179.296875, 62.431074 ], [ 179.296875, 62.267923 ], [ 178.945312, 62.267923 ], [ 178.945312, 62.349609 ], [ 178.242188, 62.349609 ], [ 178.242188, 62.431074 ], [ 177.539062, 62.431074 ], [ 177.539062, 62.512318 ], [ 177.363281, 62.512318 ], [ 177.363281, 62.431074 ], [ 177.011719, 62.431074 ], [ 177.011719, 62.349609 ], [ 176.660156, 62.349609 ], [ 176.660156, 62.267923 ], [ 176.308594, 62.267923 ], [ 176.308594, 62.186014 ], [ 176.132812, 62.186014 ], [ 176.132812, 62.103883 ], [ 175.781250, 62.103883 ], [ 175.781250, 62.021528 ], [ 175.429688, 62.021528 ], [ 175.429688, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.856149 ], [ 174.726562, 61.856149 ], [ 174.726562, 61.773123 ], [ 174.199219, 61.773123 ], [ 174.199219, 61.689872 ], [ 173.671875, 61.689872 ], [ 173.671875, 61.606396 ], [ 173.496094, 61.606396 ], [ 173.496094, 61.522695 ], [ 173.320312, 61.522695 ], [ 173.320312, 61.438767 ], [ 173.144531, 61.438767 ], [ 173.144531, 61.354614 ], [ 172.968750, 61.354614 ], [ 172.968750, 61.270233 ], [ 172.792969, 61.270233 ], [ 172.792969, 61.185625 ], [ 172.617188, 61.185625 ], [ 172.617188, 61.100789 ], [ 172.441406, 61.100789 ], [ 172.441406, 61.015725 ], [ 172.265625, 61.015725 ], [ 172.265625, 60.930432 ], [ 172.089844, 60.930432 ], [ 172.089844, 60.844911 ], [ 171.914062, 60.844911 ], [ 171.914062, 60.759160 ], [ 171.738281, 60.759160 ], [ 171.738281, 60.673179 ], [ 171.562500, 60.673179 ], [ 171.562500, 60.586967 ], [ 171.210938, 60.586967 ], [ 171.210938, 60.500525 ], [ 171.035156, 60.500525 ], [ 171.035156, 60.413852 ], [ 170.859375, 60.413852 ], [ 170.859375, 60.326948 ], [ 170.683594, 60.326948 ], [ 170.683594, 60.152442 ], [ 170.507812, 60.152442 ], [ 170.507812, 59.977005 ], [ 170.332031, 59.977005 ], [ 170.332031, 59.888937 ], [ 170.156250, 59.888937 ], [ 170.156250, 59.977005 ], [ 169.980469, 59.977005 ], [ 169.980469, 60.064840 ], [ 169.804688, 60.064840 ], [ 169.804688, 60.152442 ], [ 169.628906, 60.152442 ], [ 169.628906, 60.239811 ], [ 169.453125, 60.239811 ], [ 169.453125, 60.326948 ], [ 169.277344, 60.326948 ], [ 169.277344, 60.413852 ], [ 169.101562, 60.413852 ], [ 169.101562, 60.500525 ], [ 168.574219, 60.500525 ], [ 168.574219, 60.413852 ], [ 168.222656, 60.413852 ], [ 168.222656, 60.326948 ], [ 168.046875, 60.326948 ], [ 168.046875, 60.239811 ], [ 167.695312, 60.239811 ], [ 167.695312, 60.152442 ], [ 167.343750, 60.152442 ], [ 167.343750, 60.064840 ], [ 167.167969, 60.064840 ], [ 167.167969, 59.977005 ], [ 166.816406, 59.977005 ], [ 166.816406, 59.888937 ], [ 166.464844, 59.888937 ], [ 166.464844, 59.800634 ], [ 166.113281, 59.800634 ], [ 166.113281, 59.977005 ], [ 165.937500, 59.977005 ], [ 165.937500, 60.064840 ], [ 165.585938, 60.064840 ], [ 165.585938, 59.977005 ], [ 165.410156, 59.977005 ], [ 165.410156, 59.888937 ], [ 165.234375, 59.888937 ], [ 165.234375, 59.800634 ], [ 165.058594, 59.800634 ], [ 165.058594, 59.712097 ], [ 164.355469, 59.712097 ], [ 164.355469, 59.800634 ], [ 163.652344, 59.800634 ], [ 163.652344, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.534318 ], [ 163.300781, 59.534318 ], [ 163.300781, 59.085739 ], [ 163.125000, 59.085739 ], [ 163.125000, 58.904646 ], [ 162.949219, 58.904646 ], [ 162.949219, 58.813742 ], [ 162.773438, 58.813742 ], [ 162.773438, 58.722599 ], [ 162.597656, 58.722599 ], [ 162.597656, 58.539595 ], [ 162.421875, 58.539595 ], [ 162.421875, 58.447733 ], [ 162.246094, 58.447733 ], [ 162.246094, 58.263287 ], [ 162.070312, 58.263287 ], [ 162.070312, 57.797944 ], [ 162.246094, 57.797944 ], [ 162.246094, 57.704147 ], [ 162.773438, 57.704147 ], [ 162.773438, 57.610107 ], [ 163.125000, 57.610107 ], [ 163.125000, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.875311 ], [ 161.894531, 55.875311 ], [ 161.894531, 55.478853 ], [ 161.718750, 55.478853 ], [ 161.718750, 55.178868 ], [ 161.894531, 55.178868 ], [ 161.894531, 54.977614 ], [ 162.070312, 54.977614 ], [ 162.070312, 54.775346 ], [ 161.718750, 54.775346 ], [ 161.718750, 54.673831 ], [ 161.367188, 54.673831 ], [ 161.367188, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.470038 ], [ 160.664062, 54.470038 ], [ 160.664062, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 54.059388 ], [ 160.136719, 54.059388 ], [ 160.136719, 53.435719 ], [ 159.960938, 53.435719 ], [ 159.960938, 53.225768 ], [ 159.785156, 53.225768 ], [ 159.785156, 53.120405 ], [ 159.433594, 53.120405 ], [ 159.433594, 53.014783 ], [ 158.906250, 53.014783 ], [ 158.906250, 52.908902 ], [ 158.554688, 52.908902 ], [ 158.554688, 52.589701 ], [ 158.378906, 52.589701 ], [ 158.378906, 52.160455 ], [ 158.203125, 52.160455 ], [ 158.203125, 51.835778 ], [ 158.027344, 51.835778 ], [ 158.027344, 51.727028 ], [ 157.851562, 51.727028 ], [ 157.851562, 51.618017 ], [ 157.675781, 51.618017 ], [ 157.675781, 51.508742 ], [ 157.500000, 51.508742 ], [ 157.500000, 51.289406 ], [ 157.324219, 51.289406 ], [ 157.324219, 51.179343 ], [ 157.148438, 51.179343 ], [ 157.148438, 51.069017 ], [ 156.972656, 51.069017 ], [ 156.972656, 50.958427 ], [ 156.796875, 50.958427 ], [ 156.796875, 51.069017 ], [ 156.621094, 51.069017 ], [ 156.621094, 51.508742 ], [ 156.445312, 51.508742 ], [ 156.445312, 51.944265 ], [ 156.269531, 51.944265 ], [ 156.269531, 52.375599 ], [ 156.093750, 52.375599 ], [ 156.093750, 52.802761 ], [ 155.917969, 52.802761 ], [ 155.917969, 53.435719 ], [ 155.742188, 53.435719 ], [ 155.742188, 54.265224 ], [ 155.566406, 54.265224 ], [ 155.566406, 54.977614 ], [ 155.390625, 54.977614 ], [ 155.390625, 55.578345 ], [ 155.566406, 55.578345 ], [ 155.566406, 56.072035 ], [ 155.742188, 56.072035 ], [ 155.742188, 56.462490 ], [ 155.917969, 56.462490 ], [ 155.917969, 56.752723 ], [ 156.093750, 56.752723 ], [ 156.093750, 56.848972 ], [ 156.269531, 56.848972 ], [ 156.269531, 57.040730 ], [ 156.445312, 57.040730 ], [ 156.445312, 57.136239 ], [ 156.621094, 57.136239 ], [ 156.621094, 57.231503 ], [ 156.796875, 57.231503 ], [ 156.796875, 57.797944 ], [ 157.148438, 57.797944 ], [ 157.148438, 57.891497 ], [ 157.675781, 57.891497 ], [ 157.675781, 57.984808 ], [ 158.203125, 57.984808 ], [ 158.203125, 58.077876 ], [ 158.554688, 58.077876 ], [ 158.554688, 58.263287 ], [ 158.730469, 58.263287 ], [ 158.730469, 58.355630 ], [ 158.906250, 58.355630 ], [ 158.906250, 58.447733 ], [ 159.082031, 58.447733 ], [ 159.082031, 58.631217 ], [ 159.257812, 58.631217 ], [ 159.257812, 58.722599 ], [ 159.433594, 58.722599 ], [ 159.433594, 58.904646 ], [ 159.609375, 58.904646 ], [ 159.609375, 58.995311 ], [ 159.785156, 58.995311 ], [ 159.785156, 59.085739 ], [ 159.960938, 59.085739 ], [ 159.960938, 59.265881 ], [ 160.136719, 59.265881 ], [ 160.136719, 59.355596 ], [ 160.312500, 59.355596 ], [ 160.312500, 59.445075 ], [ 160.488281, 59.445075 ], [ 160.488281, 59.534318 ], [ 160.664062, 59.534318 ], [ 160.664062, 59.623325 ], [ 160.839844, 59.623325 ], [ 160.839844, 59.712097 ], [ 161.015625, 59.712097 ], [ 161.015625, 59.888937 ], [ 161.191406, 59.888937 ], [ 161.191406, 59.977005 ], [ 161.367188, 59.977005 ], [ 161.367188, 60.064840 ], [ 161.542969, 60.064840 ], [ 161.542969, 60.152442 ], [ 161.718750, 60.152442 ], [ 161.718750, 60.239811 ], [ 161.894531, 60.239811 ], [ 161.894531, 60.326948 ], [ 162.070312, 60.326948 ], [ 162.070312, 60.413852 ], [ 162.246094, 60.413852 ], [ 162.246094, 60.500525 ], [ 162.421875, 60.500525 ], [ 162.421875, 60.586967 ], [ 162.597656, 60.586967 ], [ 162.597656, 60.673179 ], [ 162.949219, 60.673179 ], [ 162.949219, 60.759160 ], [ 163.125000, 60.759160 ], [ 163.125000, 60.844911 ], [ 163.300781, 60.844911 ], [ 163.300781, 60.930432 ], [ 163.476562, 60.930432 ], [ 163.476562, 61.015725 ], [ 163.652344, 61.015725 ], [ 163.652344, 61.185625 ], [ 163.828125, 61.185625 ], [ 163.828125, 61.522695 ], [ 164.003906, 61.522695 ], [ 164.003906, 61.773123 ], [ 164.179688, 61.773123 ], [ 164.179688, 62.021528 ], [ 164.355469, 62.021528 ], [ 164.355469, 62.349609 ], [ 164.531250, 62.349609 ], [ 164.531250, 62.512318 ], [ 164.003906, 62.512318 ], [ 164.003906, 62.431074 ], [ 163.300781, 62.431074 ], [ 163.300781, 62.267923 ], [ 163.125000, 62.267923 ], [ 163.125000, 62.103883 ], [ 162.949219, 62.103883 ], [ 162.949219, 61.856149 ], [ 162.773438, 61.856149 ], [ 162.773438, 61.689872 ], [ 162.597656, 61.689872 ], [ 162.597656, 61.522695 ], [ 162.421875, 61.522695 ], [ 162.421875, 61.438767 ], [ 162.246094, 61.438767 ], [ 162.246094, 61.354614 ], [ 161.894531, 61.354614 ], [ 161.894531, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 61.185625 ], [ 161.542969, 61.185625 ], [ 161.542969, 61.100789 ], [ 161.367188, 61.100789 ], [ 161.367188, 61.015725 ], [ 161.191406, 61.015725 ], [ 161.191406, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.844911 ], [ 160.664062, 60.844911 ], [ 160.664062, 60.759160 ], [ 160.488281, 60.759160 ], [ 160.488281, 60.673179 ], [ 160.312500, 60.673179 ], [ 160.312500, 60.586967 ], [ 160.136719, 60.586967 ], [ 160.136719, 60.673179 ], [ 159.960938, 60.673179 ], [ 159.960938, 60.930432 ], [ 159.785156, 60.930432 ], [ 159.785156, 61.185625 ], [ 159.609375, 61.185625 ], [ 159.609375, 61.354614 ], [ 159.433594, 61.354614 ], [ 159.433594, 61.606396 ], [ 159.257812, 61.606396 ], [ 159.257812, 61.773123 ], [ 159.082031, 61.773123 ], [ 159.082031, 61.689872 ], [ 158.378906, 61.689872 ], [ 158.378906, 61.606396 ], [ 157.851562, 61.606396 ], [ 157.851562, 61.522695 ], [ 157.148438, 61.522695 ], [ 157.148438, 61.438767 ], [ 156.796875, 61.438767 ], [ 156.796875, 61.354614 ], [ 156.621094, 61.354614 ], [ 156.621094, 61.270233 ], [ 156.445312, 61.270233 ], [ 156.445312, 61.100789 ], [ 156.269531, 61.100789 ], [ 156.269531, 61.015725 ], [ 156.093750, 61.015725 ], [ 156.093750, 60.930432 ], [ 155.917969, 60.930432 ], [ 155.917969, 60.844911 ], [ 155.742188, 60.844911 ], [ 155.742188, 60.673179 ], [ 155.566406, 60.673179 ], [ 155.566406, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.500525 ], [ 155.214844, 60.500525 ], [ 155.214844, 60.326948 ], [ 155.039062, 60.326948 ], [ 155.039062, 60.239811 ], [ 154.863281, 60.239811 ], [ 154.863281, 60.152442 ], [ 154.687500, 60.152442 ], [ 154.687500, 60.064840 ], [ 154.511719, 60.064840 ], [ 154.511719, 59.888937 ], [ 154.335938, 59.888937 ], [ 154.335938, 59.800634 ], [ 154.160156, 59.800634 ], [ 154.160156, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.511719, 59.534318 ], [ 154.511719, 59.445075 ], [ 154.687500, 59.445075 ], [ 154.687500, 59.355596 ], [ 154.863281, 59.355596 ], [ 154.863281, 59.175928 ], [ 154.687500, 59.175928 ], [ 154.687500, 59.085739 ], [ 153.984375, 59.085739 ], [ 153.984375, 58.995311 ], [ 153.457031, 58.995311 ], [ 153.457031, 66.861082 ], [ 180.000000, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.224673 ], [ 134.824219, 48.224673 ], [ 134.824219, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 48.341646 ], [ 134.648438, 48.341646 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.458352 ], [ 135.000000, 48.224673 ], [ 134.824219, 48.224673 ], [ 134.824219, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 48.341646 ], [ 134.648438, 48.341646 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.847060 ], [ 141.679688, 40.847060 ], [ 141.679688, 40.446947 ], [ 141.855469, 40.446947 ], [ 141.855469, 40.313043 ], [ 139.921875, 40.313043 ], [ 139.921875, 40.713956 ], [ 140.097656, 40.713956 ], [ 140.097656, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ] ] ], [ [ [ 142.734375, 44.715514 ], [ 142.910156, 44.715514 ], [ 142.910156, 44.465151 ], [ 143.261719, 44.465151 ], [ 143.261719, 44.339565 ], [ 143.613281, 44.339565 ], [ 143.613281, 44.213710 ], [ 143.964844, 44.213710 ], [ 143.964844, 44.087585 ], [ 144.316406, 44.087585 ], [ 144.316406, 43.961191 ], [ 144.843750, 43.961191 ], [ 144.843750, 44.087585 ], [ 145.195312, 44.087585 ], [ 145.195312, 44.213710 ], [ 145.371094, 44.213710 ], [ 145.371094, 43.834527 ], [ 145.546875, 43.834527 ], [ 145.546875, 43.325178 ], [ 145.371094, 43.325178 ], [ 145.371094, 43.197167 ], [ 145.019531, 43.197167 ], [ 145.019531, 43.068888 ], [ 144.492188, 43.068888 ], [ 144.492188, 42.940339 ], [ 144.140625, 42.940339 ], [ 144.140625, 42.811522 ], [ 143.964844, 42.811522 ], [ 143.964844, 42.553080 ], [ 143.789062, 42.553080 ], [ 143.789062, 42.423457 ], [ 143.613281, 42.423457 ], [ 143.613281, 42.293564 ], [ 143.437500, 42.293564 ], [ 143.437500, 42.032974 ], [ 143.085938, 42.032974 ], [ 143.085938, 42.163403 ], [ 142.734375, 42.163403 ], [ 142.734375, 42.293564 ], [ 142.382812, 42.293564 ], [ 142.382812, 42.423457 ], [ 142.031250, 42.423457 ], [ 142.031250, 42.553080 ], [ 141.679688, 42.553080 ], [ 141.679688, 42.423457 ], [ 141.503906, 42.423457 ], [ 141.503906, 42.163403 ], [ 141.328125, 42.163403 ], [ 141.328125, 41.771312 ], [ 141.152344, 41.771312 ], [ 141.152344, 41.640078 ], [ 140.625000, 41.640078 ], [ 140.625000, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.032974 ], [ 139.746094, 42.032974 ], [ 139.746094, 42.682435 ], [ 139.921875, 42.682435 ], [ 139.921875, 42.940339 ], [ 140.097656, 42.940339 ], [ 140.097656, 43.197167 ], [ 140.273438, 43.197167 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 141.328125, 43.580391 ], [ 141.503906, 43.580391 ], [ 141.503906, 44.339565 ], [ 141.679688, 44.339565 ], [ 141.679688, 44.840291 ], [ 141.855469, 44.840291 ], [ 141.855469, 45.336702 ], [ 142.031250, 45.336702 ], [ 142.031250, 45.460131 ], [ 142.207031, 45.460131 ], [ 142.207031, 45.213004 ], [ 142.382812, 45.213004 ], [ 142.382812, 45.089036 ], [ 142.558594, 45.089036 ], [ 142.558594, 44.840291 ], [ 142.734375, 44.840291 ], [ 142.734375, 44.715514 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.847060 ], [ 141.679688, 40.847060 ], [ 141.679688, 40.446947 ], [ 141.855469, 40.446947 ], [ 141.855469, 40.313043 ], [ 139.921875, 40.313043 ], [ 139.921875, 40.713956 ], [ 140.097656, 40.713956 ], [ 140.097656, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 142.207031, 45.460131 ], [ 142.207031, 45.213004 ], [ 142.382812, 45.213004 ], [ 142.382812, 45.089036 ], [ 142.558594, 45.089036 ], [ 142.558594, 44.840291 ], [ 142.734375, 44.840291 ], [ 142.734375, 44.715514 ], [ 142.910156, 44.715514 ], [ 142.910156, 44.465151 ], [ 143.261719, 44.465151 ], [ 143.261719, 44.339565 ], [ 143.613281, 44.339565 ], [ 143.613281, 44.213710 ], [ 143.964844, 44.213710 ], [ 143.964844, 44.087585 ], [ 144.316406, 44.087585 ], [ 144.316406, 43.961191 ], [ 144.843750, 43.961191 ], [ 144.843750, 44.087585 ], [ 145.195312, 44.087585 ], [ 145.195312, 44.213710 ], [ 145.371094, 44.213710 ], [ 145.371094, 43.834527 ], [ 145.546875, 43.834527 ], [ 145.546875, 43.325178 ], [ 145.371094, 43.325178 ], [ 145.371094, 43.197167 ], [ 145.019531, 43.197167 ], [ 145.019531, 43.068888 ], [ 144.492188, 43.068888 ], [ 144.492188, 42.940339 ], [ 144.140625, 42.940339 ], [ 144.140625, 42.811522 ], [ 143.964844, 42.811522 ], [ 143.964844, 42.553080 ], [ 143.789062, 42.553080 ], [ 143.789062, 42.423457 ], [ 143.613281, 42.423457 ], [ 143.613281, 42.293564 ], [ 143.437500, 42.293564 ], [ 143.437500, 42.032974 ], [ 143.085938, 42.032974 ], [ 143.085938, 42.163403 ], [ 142.734375, 42.163403 ], [ 142.734375, 42.293564 ], [ 142.382812, 42.293564 ], [ 142.382812, 42.423457 ], [ 142.031250, 42.423457 ], [ 142.031250, 42.553080 ], [ 141.679688, 42.553080 ], [ 141.679688, 42.423457 ], [ 141.503906, 42.423457 ], [ 141.503906, 42.163403 ], [ 141.328125, 42.163403 ], [ 141.328125, 41.771312 ], [ 141.152344, 41.771312 ], [ 141.152344, 41.640078 ], [ 140.625000, 41.640078 ], [ 140.625000, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.032974 ], [ 139.746094, 42.032974 ], [ 139.746094, 42.682435 ], [ 139.921875, 42.682435 ], [ 139.921875, 42.940339 ], [ 140.097656, 42.940339 ], [ 140.097656, 43.197167 ], [ 140.273438, 43.197167 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 141.328125, 43.580391 ], [ 141.503906, 43.580391 ], [ 141.503906, 44.339565 ], [ 141.679688, 44.339565 ], [ 141.679688, 44.840291 ], [ 141.855469, 44.840291 ], [ 141.855469, 45.336702 ], [ 142.031250, 45.336702 ], [ 142.031250, 45.460131 ], [ 142.207031, 45.460131 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 72.764065 ], [ 142.031250, 72.764065 ], [ 142.031250, 72.711903 ], [ 142.734375, 72.711903 ], [ 142.734375, 72.659588 ], [ 143.437500, 72.659588 ], [ 143.437500, 72.607120 ], [ 144.140625, 72.607120 ], [ 144.140625, 72.554498 ], [ 144.843750, 72.554498 ], [ 144.843750, 72.501722 ], [ 145.546875, 72.501722 ], [ 145.546875, 72.448792 ], [ 146.250000, 72.448792 ], [ 146.250000, 72.395706 ], [ 146.953125, 72.395706 ], [ 146.953125, 72.342464 ], [ 147.656250, 72.342464 ], [ 147.656250, 72.289067 ], [ 148.359375, 72.289067 ], [ 148.359375, 72.235514 ], [ 149.062500, 72.235514 ], [ 149.062500, 72.181804 ], [ 149.414062, 72.181804 ], [ 149.414062, 72.073911 ], [ 149.589844, 72.073911 ], [ 149.589844, 71.965388 ], [ 149.765625, 71.965388 ], [ 149.765625, 71.856229 ], [ 149.941406, 71.856229 ], [ 149.941406, 71.746432 ], [ 150.117188, 71.746432 ], [ 150.117188, 71.635993 ], [ 150.292969, 71.635993 ], [ 150.292969, 71.524909 ], [ 150.468750, 71.524909 ], [ 150.468750, 71.469124 ], [ 150.644531, 71.469124 ], [ 150.644531, 71.413177 ], [ 150.996094, 71.413177 ], [ 150.996094, 71.357067 ], [ 151.171875, 71.357067 ], [ 151.171875, 71.300793 ], [ 151.347656, 71.300793 ], [ 151.347656, 71.244356 ], [ 151.523438, 71.244356 ], [ 151.523438, 71.187754 ], [ 151.699219, 71.187754 ], [ 151.699219, 71.130988 ], [ 151.875000, 71.130988 ], [ 151.875000, 71.074056 ], [ 152.050781, 71.074056 ], [ 152.050781, 71.016960 ], [ 152.402344, 71.016960 ], [ 152.402344, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.902268 ], [ 152.753906, 70.902268 ], [ 152.753906, 70.844673 ], [ 153.632812, 70.844673 ], [ 153.632812, 70.902268 ], [ 155.039062, 70.902268 ], [ 155.039062, 70.959697 ], [ 156.445312, 70.959697 ], [ 156.445312, 71.016960 ], [ 157.148438, 71.016960 ], [ 157.148438, 70.959697 ], [ 157.851562, 70.959697 ], [ 157.851562, 70.902268 ], [ 158.554688, 70.902268 ], [ 158.554688, 70.844673 ], [ 159.082031, 70.844673 ], [ 159.082031, 70.786910 ], [ 159.257812, 70.786910 ], [ 159.257812, 70.670881 ], [ 159.433594, 70.670881 ], [ 159.433594, 70.554179 ], [ 159.609375, 70.554179 ], [ 159.609375, 70.436799 ], [ 159.785156, 70.436799 ], [ 159.785156, 69.657086 ], [ 160.136719, 69.657086 ], [ 160.136719, 69.595890 ], [ 160.312500, 69.595890 ], [ 160.312500, 69.534518 ], [ 160.488281, 69.534518 ], [ 160.488281, 69.472969 ], [ 160.839844, 69.472969 ], [ 160.839844, 69.411242 ], [ 161.191406, 69.411242 ], [ 161.191406, 69.472969 ], [ 161.542969, 69.472969 ], [ 161.542969, 69.534518 ], [ 161.894531, 69.534518 ], [ 161.894531, 69.595890 ], [ 162.246094, 69.595890 ], [ 162.246094, 69.657086 ], [ 164.179688, 69.657086 ], [ 164.179688, 69.595890 ], [ 164.882812, 69.595890 ], [ 164.882812, 69.534518 ], [ 165.585938, 69.534518 ], [ 165.585938, 69.472969 ], [ 166.464844, 69.472969 ], [ 166.464844, 69.534518 ], [ 167.519531, 69.534518 ], [ 167.519531, 69.595890 ], [ 167.871094, 69.595890 ], [ 167.871094, 69.534518 ], [ 168.046875, 69.534518 ], [ 168.046875, 69.411242 ], [ 168.222656, 69.411242 ], [ 168.222656, 69.349339 ], [ 168.398438, 69.349339 ], [ 168.398438, 69.287257 ], [ 168.574219, 69.287257 ], [ 168.574219, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 69.099940 ], [ 168.925781, 69.099940 ], [ 168.925781, 68.974164 ], [ 169.101562, 68.974164 ], [ 169.101562, 68.911005 ], [ 169.277344, 68.911005 ], [ 169.277344, 68.847665 ], [ 169.453125, 68.847665 ], [ 169.453125, 68.720441 ], [ 169.804688, 68.720441 ], [ 169.804688, 68.784144 ], [ 170.156250, 68.784144 ], [ 170.156250, 68.847665 ], [ 170.332031, 68.847665 ], [ 170.332031, 68.911005 ], [ 170.507812, 68.911005 ], [ 170.507812, 68.974164 ], [ 170.859375, 68.974164 ], [ 170.859375, 69.099940 ], [ 170.683594, 69.099940 ], [ 170.683594, 69.224997 ], [ 170.507812, 69.224997 ], [ 170.507812, 69.349339 ], [ 170.332031, 69.349339 ], [ 170.332031, 69.472969 ], [ 170.156250, 69.472969 ], [ 170.156250, 69.595890 ], [ 169.980469, 69.595890 ], [ 169.980469, 69.718107 ], [ 170.156250, 69.718107 ], [ 170.156250, 69.839622 ], [ 170.332031, 69.839622 ], [ 170.332031, 69.960439 ], [ 170.507812, 69.960439 ], [ 170.507812, 70.080562 ], [ 170.859375, 70.080562 ], [ 170.859375, 70.020587 ], [ 171.562500, 70.020587 ], [ 171.562500, 69.960439 ], [ 172.441406, 69.960439 ], [ 172.441406, 69.900118 ], [ 173.144531, 69.900118 ], [ 173.144531, 69.839622 ], [ 174.902344, 69.839622 ], [ 174.902344, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.839622 ], [ 176.132812, 69.839622 ], [ 176.132812, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.718107 ], [ 176.835938, 69.718107 ], [ 176.835938, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.595890 ], [ 177.539062, 69.595890 ], [ 177.539062, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.472969 ], [ 178.242188, 69.472969 ], [ 178.242188, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.349339 ], [ 178.769531, 69.349339 ], [ 178.769531, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.224997 ], [ 179.121094, 69.224997 ], [ 179.121094, 69.162558 ], [ 179.472656, 69.162558 ], [ 179.472656, 69.099940 ], [ 179.648438, 69.099940 ], [ 179.648438, 69.037142 ], [ 179.824219, 69.037142 ], [ 179.824219, 68.974164 ], [ 180.000000, 68.974164 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.413177 ], [ 134.472656, 71.413177 ], [ 134.472656, 71.469124 ], [ 134.824219, 71.469124 ], [ 134.824219, 71.524909 ], [ 135.175781, 71.524909 ], [ 135.175781, 71.580532 ], [ 135.527344, 71.580532 ], [ 135.527344, 71.635993 ], [ 135.703125, 71.635993 ], [ 135.703125, 71.580532 ], [ 136.054688, 71.580532 ], [ 136.054688, 71.524909 ], [ 136.406250, 71.524909 ], [ 136.406250, 71.469124 ], [ 136.757812, 71.469124 ], [ 136.757812, 71.413177 ], [ 137.109375, 71.413177 ], [ 137.109375, 71.357067 ], [ 137.636719, 71.357067 ], [ 137.636719, 71.413177 ], [ 137.812500, 71.413177 ], [ 137.812500, 71.524909 ], [ 137.988281, 71.524909 ], [ 137.988281, 71.580532 ], [ 138.164062, 71.580532 ], [ 138.164062, 71.635993 ], [ 138.339844, 71.635993 ], [ 138.339844, 71.580532 ], [ 138.867188, 71.580532 ], [ 138.867188, 71.524909 ], [ 139.570312, 71.524909 ], [ 139.570312, 71.469124 ], [ 139.921875, 71.469124 ], [ 139.921875, 71.580532 ], [ 139.746094, 71.580532 ], [ 139.746094, 71.801410 ], [ 139.570312, 71.801410 ], [ 139.570312, 72.019729 ], [ 139.394531, 72.019729 ], [ 139.394531, 72.235514 ], [ 139.218750, 72.235514 ], [ 139.218750, 72.395706 ], [ 139.394531, 72.395706 ], [ 139.394531, 72.448792 ], [ 139.570312, 72.448792 ], [ 139.570312, 72.554498 ], [ 139.746094, 72.554498 ], [ 139.746094, 72.607120 ], [ 139.921875, 72.607120 ], [ 139.921875, 72.659588 ], [ 140.097656, 72.659588 ], [ 140.097656, 72.764065 ], [ 140.273438, 72.764065 ], [ 140.273438, 72.816074 ], [ 140.449219, 72.816074 ], [ 140.449219, 72.867930 ], [ 140.625000, 72.867930 ], [ 140.625000, 72.816074 ], [ 141.328125, 72.816074 ], [ 141.328125, 72.764065 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 179.648438, 70.844673 ], [ 179.648438, 70.786910 ], [ 178.945312, 70.786910 ], [ 178.945312, 70.902268 ], [ 178.769531, 70.902268 ], [ 178.769531, 71.074056 ], [ 178.945312, 71.074056 ], [ 178.945312, 71.130988 ], [ 179.121094, 71.130988 ], [ 179.121094, 71.187754 ], [ 179.296875, 71.187754 ], [ 179.296875, 71.300793 ], [ 179.472656, 71.300793 ], [ 179.472656, 71.357067 ], [ 179.648438, 71.357067 ], [ 179.648438, 71.413177 ], [ 179.824219, 71.413177 ], [ 179.824219, 71.469124 ], [ 180.000000, 71.469124 ], [ 180.000000, 70.844673 ] ] ], [ [ [ 142.207031, 73.775780 ], [ 142.382812, 73.775780 ], [ 142.382812, 73.726595 ], [ 142.558594, 73.726595 ], [ 142.558594, 73.677264 ], [ 142.734375, 73.677264 ], [ 142.734375, 73.627789 ], [ 142.910156, 73.627789 ], [ 142.910156, 73.578167 ], [ 143.085938, 73.578167 ], [ 143.085938, 73.528399 ], [ 143.261719, 73.528399 ], [ 143.261719, 73.478485 ], [ 143.437500, 73.478485 ], [ 143.437500, 73.327858 ], [ 143.613281, 73.327858 ], [ 143.613281, 73.226700 ], [ 141.503906, 73.226700 ], [ 141.503906, 73.277353 ], [ 140.449219, 73.277353 ], [ 140.449219, 73.327858 ], [ 139.921875, 73.327858 ], [ 139.921875, 73.378215 ], [ 140.097656, 73.378215 ], [ 140.097656, 73.478485 ], [ 140.273438, 73.478485 ], [ 140.273438, 73.578167 ], [ 140.449219, 73.578167 ], [ 140.449219, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.726595 ], [ 140.800781, 73.726595 ], [ 140.800781, 73.775780 ], [ 141.152344, 73.775780 ], [ 141.152344, 73.824820 ], [ 141.855469, 73.824820 ], [ 141.855469, 73.873717 ], [ 142.031250, 73.873717 ], [ 142.031250, 73.824820 ], [ 142.207031, 73.824820 ], [ 142.207031, 73.775780 ] ] ], [ [ [ 141.503906, 76.058508 ], [ 141.855469, 76.058508 ], [ 141.855469, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.973553 ], [ 142.382812, 75.973553 ], [ 142.382812, 75.930885 ], [ 142.558594, 75.930885 ], [ 142.558594, 75.888091 ], [ 142.910156, 75.888091 ], [ 142.910156, 75.845169 ], [ 143.085938, 75.845169 ], [ 143.085938, 75.802118 ], [ 143.437500, 75.802118 ], [ 143.437500, 75.758940 ], [ 143.789062, 75.758940 ], [ 143.789062, 75.715633 ], [ 143.964844, 75.715633 ], [ 143.964844, 75.672197 ], [ 144.316406, 75.672197 ], [ 144.316406, 75.628632 ], [ 144.492188, 75.628632 ], [ 144.492188, 75.584937 ], [ 144.843750, 75.584937 ], [ 144.843750, 75.541113 ], [ 145.019531, 75.541113 ], [ 145.019531, 75.453071 ], [ 144.843750, 75.453071 ], [ 144.843750, 75.275413 ], [ 144.667969, 75.275413 ], [ 144.667969, 75.095633 ], [ 144.492188, 75.095633 ], [ 144.492188, 74.913708 ], [ 144.316406, 74.913708 ], [ 144.316406, 74.821934 ], [ 142.382812, 74.821934 ], [ 142.382812, 74.867889 ], [ 140.625000, 74.867889 ], [ 140.625000, 74.821934 ], [ 140.273438, 74.821934 ], [ 140.273438, 74.775843 ], [ 140.097656, 74.775843 ], [ 140.097656, 74.729615 ], [ 139.746094, 74.729615 ], [ 139.746094, 74.683250 ], [ 139.570312, 74.683250 ], [ 139.570312, 74.636748 ], [ 139.218750, 74.636748 ], [ 139.218750, 74.590108 ], [ 138.867188, 74.590108 ], [ 138.867188, 74.636748 ], [ 138.691406, 74.636748 ], [ 138.691406, 74.729615 ], [ 138.515625, 74.729615 ], [ 138.515625, 74.775843 ], [ 138.339844, 74.775843 ], [ 138.339844, 74.821934 ], [ 138.164062, 74.821934 ], [ 138.164062, 74.867889 ], [ 137.988281, 74.867889 ], [ 137.988281, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.004940 ], [ 137.636719, 75.004940 ], [ 137.636719, 75.050354 ], [ 137.460938, 75.050354 ], [ 137.460938, 75.095633 ], [ 137.285156, 75.095633 ], [ 137.285156, 75.185789 ], [ 137.109375, 75.185789 ], [ 137.109375, 75.230667 ], [ 136.933594, 75.230667 ], [ 136.933594, 75.364506 ], [ 137.109375, 75.364506 ], [ 137.109375, 75.584937 ], [ 137.285156, 75.584937 ], [ 137.285156, 75.802118 ], [ 137.460938, 75.802118 ], [ 137.460938, 75.930885 ], [ 137.636719, 75.930885 ], [ 137.636719, 75.973553 ], [ 137.988281, 75.973553 ], [ 137.988281, 76.016094 ], [ 138.339844, 76.016094 ], [ 138.339844, 76.058508 ], [ 138.515625, 76.058508 ], [ 138.515625, 76.100796 ], [ 138.867188, 76.100796 ], [ 138.867188, 76.142958 ], [ 140.097656, 76.142958 ], [ 140.097656, 76.100796 ], [ 141.503906, 76.100796 ], [ 141.503906, 76.058508 ] ] ], [ [ [ 147.832031, 75.364506 ], [ 148.359375, 75.364506 ], [ 148.359375, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.275413 ], [ 149.062500, 75.275413 ], [ 149.062500, 75.230667 ], [ 149.589844, 75.230667 ], [ 149.589844, 75.185789 ], [ 149.941406, 75.185789 ], [ 149.941406, 75.140778 ], [ 150.292969, 75.140778 ], [ 150.292969, 75.095633 ], [ 150.644531, 75.095633 ], [ 150.644531, 75.050354 ], [ 150.468750, 75.050354 ], [ 150.468750, 74.959392 ], [ 150.292969, 74.959392 ], [ 150.292969, 74.913708 ], [ 150.117188, 74.913708 ], [ 150.117188, 74.821934 ], [ 149.941406, 74.821934 ], [ 149.941406, 74.775843 ], [ 149.765625, 74.775843 ], [ 149.765625, 74.683250 ], [ 149.062500, 74.683250 ], [ 149.062500, 74.729615 ], [ 148.359375, 74.729615 ], [ 148.359375, 74.775843 ], [ 147.832031, 74.775843 ], [ 147.832031, 74.821934 ], [ 147.656250, 74.821934 ], [ 147.656250, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.913708 ], [ 147.128906, 74.913708 ], [ 147.128906, 74.959392 ], [ 146.953125, 74.959392 ], [ 146.953125, 75.004940 ], [ 146.777344, 75.004940 ], [ 146.777344, 75.050354 ], [ 146.601562, 75.050354 ], [ 146.601562, 75.095633 ], [ 146.250000, 75.095633 ], [ 146.250000, 75.140778 ], [ 146.074219, 75.140778 ], [ 146.074219, 75.230667 ], [ 146.250000, 75.230667 ], [ 146.250000, 75.408854 ], [ 146.425781, 75.408854 ], [ 146.425781, 75.497157 ], [ 146.601562, 75.497157 ], [ 146.601562, 75.453071 ], [ 147.128906, 75.453071 ], [ 147.128906, 75.408854 ], [ 147.832031, 75.408854 ], [ 147.832031, 75.364506 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.625000, 72.867930 ], [ 140.625000, 72.816074 ], [ 141.328125, 72.816074 ], [ 141.328125, 72.764065 ], [ 142.031250, 72.764065 ], [ 142.031250, 72.711903 ], [ 142.734375, 72.711903 ], [ 142.734375, 72.659588 ], [ 143.437500, 72.659588 ], [ 143.437500, 72.607120 ], [ 144.140625, 72.607120 ], [ 144.140625, 72.554498 ], [ 144.843750, 72.554498 ], [ 144.843750, 72.501722 ], [ 145.546875, 72.501722 ], [ 145.546875, 72.448792 ], [ 146.250000, 72.448792 ], [ 146.250000, 72.395706 ], [ 146.953125, 72.395706 ], [ 146.953125, 72.342464 ], [ 147.656250, 72.342464 ], [ 147.656250, 72.289067 ], [ 148.359375, 72.289067 ], [ 148.359375, 72.235514 ], [ 149.062500, 72.235514 ], [ 149.062500, 72.181804 ], [ 149.414062, 72.181804 ], [ 149.414062, 72.073911 ], [ 149.589844, 72.073911 ], [ 149.589844, 71.965388 ], [ 149.765625, 71.965388 ], [ 149.765625, 71.856229 ], [ 149.941406, 71.856229 ], [ 149.941406, 71.746432 ], [ 150.117188, 71.746432 ], [ 150.117188, 71.635993 ], [ 150.292969, 71.635993 ], [ 150.292969, 71.524909 ], [ 150.468750, 71.524909 ], [ 150.468750, 71.469124 ], [ 150.644531, 71.469124 ], [ 150.644531, 71.413177 ], [ 150.996094, 71.413177 ], [ 150.996094, 71.357067 ], [ 151.171875, 71.357067 ], [ 151.171875, 71.300793 ], [ 151.347656, 71.300793 ], [ 151.347656, 71.244356 ], [ 151.523438, 71.244356 ], [ 151.523438, 71.187754 ], [ 151.699219, 71.187754 ], [ 151.699219, 71.130988 ], [ 151.875000, 71.130988 ], [ 151.875000, 71.074056 ], [ 152.050781, 71.074056 ], [ 152.050781, 71.016960 ], [ 152.402344, 71.016960 ], [ 152.402344, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.902268 ], [ 152.753906, 70.902268 ], [ 152.753906, 70.844673 ], [ 153.632812, 70.844673 ], [ 153.632812, 70.902268 ], [ 155.039062, 70.902268 ], [ 155.039062, 70.959697 ], [ 156.445312, 70.959697 ], [ 156.445312, 71.016960 ], [ 157.148438, 71.016960 ], [ 157.148438, 70.959697 ], [ 157.851562, 70.959697 ], [ 157.851562, 70.902268 ], [ 158.554688, 70.902268 ], [ 158.554688, 70.844673 ], [ 159.082031, 70.844673 ], [ 159.082031, 70.786910 ], [ 159.257812, 70.786910 ], [ 159.257812, 70.670881 ], [ 159.433594, 70.670881 ], [ 159.433594, 70.554179 ], [ 159.609375, 70.554179 ], [ 159.609375, 70.436799 ], [ 159.785156, 70.436799 ], [ 159.785156, 69.657086 ], [ 160.136719, 69.657086 ], [ 160.136719, 69.595890 ], [ 160.312500, 69.595890 ], [ 160.312500, 69.534518 ], [ 160.488281, 69.534518 ], [ 160.488281, 69.472969 ], [ 160.839844, 69.472969 ], [ 160.839844, 69.411242 ], [ 161.191406, 69.411242 ], [ 161.191406, 69.472969 ], [ 161.542969, 69.472969 ], [ 161.542969, 69.534518 ], [ 161.894531, 69.534518 ], [ 161.894531, 69.595890 ], [ 162.246094, 69.595890 ], [ 162.246094, 69.657086 ], [ 164.179688, 69.657086 ], [ 164.179688, 69.595890 ], [ 164.882812, 69.595890 ], [ 164.882812, 69.534518 ], [ 165.585938, 69.534518 ], [ 165.585938, 69.472969 ], [ 166.464844, 69.472969 ], [ 166.464844, 69.534518 ], [ 167.519531, 69.534518 ], [ 167.519531, 69.595890 ], [ 167.871094, 69.595890 ], [ 167.871094, 69.534518 ], [ 168.046875, 69.534518 ], [ 168.046875, 69.411242 ], [ 168.222656, 69.411242 ], [ 168.222656, 69.349339 ], [ 168.398438, 69.349339 ], [ 168.398438, 69.287257 ], [ 168.574219, 69.287257 ], [ 168.574219, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 69.099940 ], [ 168.925781, 69.099940 ], [ 168.925781, 68.974164 ], [ 169.101562, 68.974164 ], [ 169.101562, 68.911005 ], [ 169.277344, 68.911005 ], [ 169.277344, 68.847665 ], [ 169.453125, 68.847665 ], [ 169.453125, 68.720441 ], [ 169.804688, 68.720441 ], [ 169.804688, 68.784144 ], [ 170.156250, 68.784144 ], [ 170.156250, 68.847665 ], [ 170.332031, 68.847665 ], [ 170.332031, 68.911005 ], [ 170.507812, 68.911005 ], [ 170.507812, 68.974164 ], [ 170.859375, 68.974164 ], [ 170.859375, 69.099940 ], [ 170.683594, 69.099940 ], [ 170.683594, 69.224997 ], [ 170.507812, 69.224997 ], [ 170.507812, 69.349339 ], [ 170.332031, 69.349339 ], [ 170.332031, 69.472969 ], [ 170.156250, 69.472969 ], [ 170.156250, 69.595890 ], [ 169.980469, 69.595890 ], [ 169.980469, 69.718107 ], [ 170.156250, 69.718107 ], [ 170.156250, 69.839622 ], [ 170.332031, 69.839622 ], [ 170.332031, 69.960439 ], [ 170.507812, 69.960439 ], [ 170.507812, 70.080562 ], [ 170.859375, 70.080562 ], [ 170.859375, 70.020587 ], [ 171.562500, 70.020587 ], [ 171.562500, 69.960439 ], [ 172.441406, 69.960439 ], [ 172.441406, 69.900118 ], [ 173.144531, 69.900118 ], [ 173.144531, 69.839622 ], [ 174.902344, 69.839622 ], [ 174.902344, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.839622 ], [ 176.132812, 69.839622 ], [ 176.132812, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.718107 ], [ 176.835938, 69.718107 ], [ 176.835938, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.595890 ], [ 177.539062, 69.595890 ], [ 177.539062, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.472969 ], [ 178.242188, 69.472969 ], [ 178.242188, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.349339 ], [ 178.769531, 69.349339 ], [ 178.769531, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.224997 ], [ 179.121094, 69.224997 ], [ 179.121094, 69.162558 ], [ 179.472656, 69.162558 ], [ 179.472656, 69.099940 ], [ 179.648438, 69.099940 ], [ 179.648438, 69.037142 ], [ 179.824219, 69.037142 ], [ 179.824219, 68.974164 ], [ 180.000000, 68.974164 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.413177 ], [ 134.472656, 71.413177 ], [ 134.472656, 71.469124 ], [ 134.824219, 71.469124 ], [ 134.824219, 71.524909 ], [ 135.175781, 71.524909 ], [ 135.175781, 71.580532 ], [ 135.527344, 71.580532 ], [ 135.527344, 71.635993 ], [ 135.703125, 71.635993 ], [ 135.703125, 71.580532 ], [ 136.054688, 71.580532 ], [ 136.054688, 71.524909 ], [ 136.406250, 71.524909 ], [ 136.406250, 71.469124 ], [ 136.757812, 71.469124 ], [ 136.757812, 71.413177 ], [ 137.109375, 71.413177 ], [ 137.109375, 71.357067 ], [ 137.636719, 71.357067 ], [ 137.636719, 71.413177 ], [ 137.812500, 71.413177 ], [ 137.812500, 71.524909 ], [ 137.988281, 71.524909 ], [ 137.988281, 71.580532 ], [ 138.164062, 71.580532 ], [ 138.164062, 71.635993 ], [ 138.339844, 71.635993 ], [ 138.339844, 71.580532 ], [ 138.867188, 71.580532 ], [ 138.867188, 71.524909 ], [ 139.570312, 71.524909 ], [ 139.570312, 71.469124 ], [ 139.921875, 71.469124 ], [ 139.921875, 71.580532 ], [ 139.746094, 71.580532 ], [ 139.746094, 71.801410 ], [ 139.570312, 71.801410 ], [ 139.570312, 72.019729 ], [ 139.394531, 72.019729 ], [ 139.394531, 72.235514 ], [ 139.218750, 72.235514 ], [ 139.218750, 72.395706 ], [ 139.394531, 72.395706 ], [ 139.394531, 72.448792 ], [ 139.570312, 72.448792 ], [ 139.570312, 72.554498 ], [ 139.746094, 72.554498 ], [ 139.746094, 72.607120 ], [ 139.921875, 72.607120 ], [ 139.921875, 72.659588 ], [ 140.097656, 72.659588 ], [ 140.097656, 72.764065 ], [ 140.273438, 72.764065 ], [ 140.273438, 72.816074 ], [ 140.449219, 72.816074 ], [ 140.449219, 72.867930 ], [ 140.625000, 72.867930 ] ] ], [ [ [ 180.000000, 71.469124 ], [ 180.000000, 70.844673 ], [ 179.648438, 70.844673 ], [ 179.648438, 70.786910 ], [ 178.945312, 70.786910 ], [ 178.945312, 70.902268 ], [ 178.769531, 70.902268 ], [ 178.769531, 71.074056 ], [ 178.945312, 71.074056 ], [ 178.945312, 71.130988 ], [ 179.121094, 71.130988 ], [ 179.121094, 71.187754 ], [ 179.296875, 71.187754 ], [ 179.296875, 71.300793 ], [ 179.472656, 71.300793 ], [ 179.472656, 71.357067 ], [ 179.648438, 71.357067 ], [ 179.648438, 71.413177 ], [ 179.824219, 71.413177 ], [ 179.824219, 71.469124 ], [ 180.000000, 71.469124 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 142.031250, 73.824820 ], [ 142.207031, 73.824820 ], [ 142.207031, 73.775780 ], [ 142.382812, 73.775780 ], [ 142.382812, 73.726595 ], [ 142.558594, 73.726595 ], [ 142.558594, 73.677264 ], [ 142.734375, 73.677264 ], [ 142.734375, 73.627789 ], [ 142.910156, 73.627789 ], [ 142.910156, 73.578167 ], [ 143.085938, 73.578167 ], [ 143.085938, 73.528399 ], [ 143.261719, 73.528399 ], [ 143.261719, 73.478485 ], [ 143.437500, 73.478485 ], [ 143.437500, 73.327858 ], [ 143.613281, 73.226700 ], [ 141.503906, 73.226700 ], [ 141.503906, 73.277353 ], [ 140.449219, 73.277353 ], [ 140.449219, 73.327858 ], [ 139.921875, 73.327858 ], [ 139.921875, 73.378215 ], [ 140.097656, 73.378215 ], [ 140.097656, 73.478485 ], [ 140.273438, 73.478485 ], [ 140.273438, 73.578167 ], [ 140.449219, 73.578167 ], [ 140.449219, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.726595 ], [ 140.800781, 73.726595 ], [ 140.800781, 73.775780 ], [ 141.152344, 73.775780 ], [ 141.152344, 73.824820 ], [ 141.855469, 73.824820 ], [ 141.855469, 73.873717 ], [ 142.031250, 73.873717 ] ] ], [ [ [ 140.097656, 76.142958 ], [ 140.097656, 76.100796 ], [ 141.503906, 76.100796 ], [ 141.503906, 76.058508 ], [ 141.855469, 76.058508 ], [ 141.855469, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.973553 ], [ 142.382812, 75.973553 ], [ 142.382812, 75.930885 ], [ 142.558594, 75.930885 ], [ 142.558594, 75.888091 ], [ 142.910156, 75.888091 ], [ 142.910156, 75.845169 ], [ 143.085938, 75.845169 ], [ 143.085938, 75.802118 ], [ 143.437500, 75.802118 ], [ 143.437500, 75.758940 ], [ 143.789062, 75.758940 ], [ 143.789062, 75.715633 ], [ 143.964844, 75.715633 ], [ 143.964844, 75.672197 ], [ 144.316406, 75.672197 ], [ 144.316406, 75.628632 ], [ 144.492188, 75.628632 ], [ 144.492188, 75.584937 ], [ 144.843750, 75.584937 ], [ 144.843750, 75.541113 ], [ 145.019531, 75.541113 ], [ 145.019531, 75.453071 ], [ 144.843750, 75.453071 ], [ 144.843750, 75.275413 ], [ 144.667969, 75.275413 ], [ 144.667969, 75.095633 ], [ 144.492188, 75.095633 ], [ 144.492188, 74.913708 ], [ 144.316406, 74.913708 ], [ 144.316406, 74.821934 ], [ 142.382812, 74.821934 ], [ 142.382812, 74.867889 ], [ 140.625000, 74.867889 ], [ 140.625000, 74.821934 ], [ 140.273438, 74.821934 ], [ 140.273438, 74.775843 ], [ 140.097656, 74.775843 ], [ 140.097656, 74.729615 ], [ 139.746094, 74.729615 ], [ 139.746094, 74.683250 ], [ 139.570312, 74.683250 ], [ 139.570312, 74.636748 ], [ 139.218750, 74.636748 ], [ 139.218750, 74.590108 ], [ 138.867188, 74.590108 ], [ 138.867188, 74.636748 ], [ 138.691406, 74.636748 ], [ 138.691406, 74.729615 ], [ 138.515625, 74.729615 ], [ 138.515625, 74.775843 ], [ 138.339844, 74.775843 ], [ 138.339844, 74.821934 ], [ 138.164062, 74.821934 ], [ 138.164062, 74.867889 ], [ 137.988281, 74.867889 ], [ 137.988281, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.004940 ], [ 137.636719, 75.004940 ], [ 137.636719, 75.050354 ], [ 137.460938, 75.050354 ], [ 137.460938, 75.095633 ], [ 137.285156, 75.095633 ], [ 137.285156, 75.185789 ], [ 137.109375, 75.185789 ], [ 137.109375, 75.230667 ], [ 136.933594, 75.230667 ], [ 136.933594, 75.364506 ], [ 137.109375, 75.364506 ], [ 137.109375, 75.584937 ], [ 137.285156, 75.584937 ], [ 137.285156, 75.802118 ], [ 137.460938, 75.802118 ], [ 137.460938, 75.930885 ], [ 137.636719, 75.930885 ], [ 137.636719, 75.973553 ], [ 137.988281, 75.973553 ], [ 137.988281, 76.016094 ], [ 138.339844, 76.016094 ], [ 138.339844, 76.058508 ], [ 138.515625, 76.058508 ], [ 138.515625, 76.100796 ], [ 138.867188, 76.100796 ], [ 138.867188, 76.142958 ], [ 140.097656, 76.142958 ] ] ], [ [ [ 146.601562, 75.497157 ], [ 146.601562, 75.453071 ], [ 147.128906, 75.453071 ], [ 147.128906, 75.408854 ], [ 147.832031, 75.408854 ], [ 147.832031, 75.364506 ], [ 148.359375, 75.364506 ], [ 148.359375, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.275413 ], [ 149.062500, 75.275413 ], [ 149.062500, 75.230667 ], [ 149.589844, 75.230667 ], [ 149.589844, 75.185789 ], [ 149.941406, 75.185789 ], [ 149.941406, 75.140778 ], [ 150.292969, 75.140778 ], [ 150.292969, 75.095633 ], [ 150.644531, 75.095633 ], [ 150.644531, 75.050354 ], [ 150.468750, 75.050354 ], [ 150.468750, 74.959392 ], [ 150.292969, 74.959392 ], [ 150.292969, 74.913708 ], [ 150.117188, 74.913708 ], [ 150.117188, 74.821934 ], [ 149.941406, 74.821934 ], [ 149.941406, 74.775843 ], [ 149.765625, 74.775843 ], [ 149.765625, 74.683250 ], [ 149.062500, 74.683250 ], [ 149.062500, 74.729615 ], [ 148.359375, 74.729615 ], [ 148.359375, 74.775843 ], [ 147.832031, 74.775843 ], [ 147.832031, 74.821934 ], [ 147.656250, 74.821934 ], [ 147.656250, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.913708 ], [ 147.128906, 74.913708 ], [ 147.128906, 74.959392 ], [ 146.953125, 74.959392 ], [ 146.953125, 75.004940 ], [ 146.777344, 75.004940 ], [ 146.777344, 75.050354 ], [ 146.601562, 75.050354 ], [ 146.601562, 75.095633 ], [ 146.250000, 75.095633 ], [ 146.250000, 75.140778 ], [ 146.074219, 75.140778 ], [ 146.074219, 75.230667 ], [ 146.250000, 75.230667 ], [ 146.250000, 75.408854 ], [ 146.425781, 75.408854 ], [ 146.425781, 75.497157 ], [ 146.601562, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -162.306519, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ], [ [ [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ], [ [ [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ] ] ], [ [ [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ] ] ], [ [ [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.830811, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ] ] ], [ [ [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ] ] ], [ [ [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ] ] ], [ [ [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ] ] ], [ [ [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ] ] ], [ [ [ -112.500000, 78.559399 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ] ] ], [ [ [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -72.853361 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ] ] ], [ [ [ -89.560547, 14.376155 ], [ -89.560547, 14.301647 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.237762 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ], [ -89.560547, 14.301647 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ] ] ], [ [ [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ] ] ], [ [ [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.992089 ], [ -89.560547, 71.223149 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -89.560547, 72.993696 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.993696 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ] ] ], [ [ [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ] ] ], [ [ [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ] ] ], [ [ [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ] ] ], [ [ [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ] ] ], [ [ [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ] ] ], [ [ [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ] ] ], [ [ [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ] ] ], [ [ [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ] ] ], [ [ [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ] ] ], [ [ [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ] ] ], [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ] ] ], [ [ [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ] ] ], [ [ [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ] ] ], [ [ [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ] ] ], [ [ [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ] ] ], [ [ [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -55.531739 ], [ -67.939453, -55.528631 ], [ -67.928467, -55.528631 ], [ -67.939453, -55.531739 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -67.939453, -55.531739 ], [ -67.939453, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ] ] ], [ [ [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ] ] ], [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ] ] ], [ [ [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ] ] ], [ [ [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ] ] ], [ [ [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ] ] ], [ [ [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ] ] ], [ [ [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ] ] ], [ [ [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ] ] ], [ [ [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ] ] ], [ [ [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ] ] ], [ [ [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ] ] ], [ [ [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ], [ [ [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.068237, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ] ] ], [ [ [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ] ] ], [ [ [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ] ] ], [ [ [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ] ] ], [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ] ] ], [ [ [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ] ] ], [ [ [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ] ] ], [ [ [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ] ] ], [ [ [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ] ] ], [ [ [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ] ] ], [ [ [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ] ] ], [ [ [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ] ] ], [ [ [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ] ] ], [ [ [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ] ] ], [ [ [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ] ] ], [ [ [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 40.984497, -0.439449 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ] ] ], [ [ [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.061761 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.934245 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.061761 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.934245 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.012939, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ], [ [ [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ] ] ], [ [ [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ] ] ], [ [ [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ] ] ], [ [ [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ] ] ], [ [ [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ] ] ], [ [ [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ] ] ], [ [ [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ], [ [ [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ] ] ], [ [ [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ] ] ], [ [ [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ] ] ], [ [ [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ] ] ], [ [ [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ] ] ], [ [ [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ] ] ], [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ] ] ], [ [ [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ] ] ], [ [ [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ] ] ], [ [ [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ] ] ], [ [ [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ] ] ], [ [ [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ] ] ], [ [ [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ] ] ], [ [ [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ] ] ], [ [ [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ] ] ], [ [ [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ] ] ], [ [ [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ] ] ], [ [ [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.012085, 21.534847 ], [ 102.815552, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.012085, 21.534847 ], [ 102.815552, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ] ] ], [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ] ] ], [ [ [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ] ] ], [ [ [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ] ] ], [ [ [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ] ] ], [ [ [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ] ] ], [ [ [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ] ] ], [ [ [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ] ] ], [ [ [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ] ] ], [ [ [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ] ] ], [ [ [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ] ] ], [ [ [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ] ] ], [ [ [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ] ] ], [ [ [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ] ] ], [ [ [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ] ] ], [ [ [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ] ] ], [ [ [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ] ] ], [ [ [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ] ] ], [ [ [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ] ] ], [ [ [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ] ] ], [ [ [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ] ] ], [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ] ] ], [ [ [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } ] } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json index fcc8859..dc2508b 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json @@ -12,4017 +12,4017 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.296875, 69.287257 ], [ -88.066406, 68.624544 ], [ -88.154297, 68.560384 ], [ -90.527344, 68.560384 ], [ -89.296875, 69.287257 ] ] ], [ [ [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.688521 ], [ -81.474609, 68.560384 ], [ -85.869141, 68.560384 ], [ -85.605469, 68.815927 ] ] ], [ [ [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.345703, 68.560384 ], [ -141.064453, 68.560384 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ] ] ], [ [ [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -113.378906, 68.560384 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ] ] ], [ [ [ -97.646484, 68.560384 ], [ -97.910156, 68.560384 ], [ -97.734375, 68.592487 ], [ -97.646484, 68.560384 ] ] ], [ [ [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.560384 ], [ -94.570312, 68.560384 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ] ] ], [ [ [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.380859, 68.592487 ], [ -105.380859, 68.560384 ], [ -108.457031, 68.560384 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -68.291016, 68.560384 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.345703, 68.560384 ], [ -141.064453, 68.560384 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.554498 ], [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -68.291016, 68.560384 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ] ] ], [ [ [ -105.380859, 68.592487 ], [ -105.380859, 68.560384 ], [ -108.457031, 68.560384 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.380859, 68.592487 ] ] ], [ [ [ -97.646484, 68.560384 ], [ -97.910156, 68.560384 ], [ -97.734375, 68.592487 ], [ -97.646484, 68.560384 ] ] ], [ [ [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.560384 ], [ -94.570312, 68.560384 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ] ] ], [ [ [ -88.066406, 68.624544 ], [ -88.154297, 68.560384 ], [ -90.527344, 68.560384 ], [ -89.296875, 69.287257 ], [ -88.066406, 68.624544 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.688521 ], [ -81.474609, 68.560384 ], [ -85.869141, 68.560384 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -113.378906, 68.560384 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ] ] ], [ [ [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ] ] ], [ [ [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ] ] ], [ [ [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ] ] ], [ [ [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ] ] ], [ [ [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.457031, 68.560384 ], [ -105.380859, 68.560384 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.910156, 68.560384 ], [ -97.646484, 68.560384 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.570312, 68.560384 ], [ -90.615234, 68.560384 ], [ -90.615234, 68.496040 ], [ -90.527344, 68.560384 ], [ -88.154297, 68.560384 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.869141, 68.560384 ], [ -81.474609, 68.560384 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.560384 ], [ -114.345703, 68.560384 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -68.291016, 68.560384 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.730469, 63.743631 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.474609, 68.560384 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.560384 ], [ -114.345703, 68.560384 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.457031, 68.560384 ], [ -105.380859, 68.560384 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.910156, 68.560384 ], [ -97.646484, 68.560384 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.570312, 68.560384 ], [ -90.615234, 68.560384 ], [ -90.615234, 68.496040 ], [ -90.527344, 68.560384 ], [ -88.154297, 68.560384 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.869141, 68.560384 ], [ -81.474609, 68.560384 ] ] ], [ [ [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.865234, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ] ] ], [ [ [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ] ] ], [ [ [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ] ] ], [ [ [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ] ] ], [ [ [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ] ] ], [ [ [ -68.291016, 68.560384 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.818359, 63.782486 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -68.291016, 68.560384 ] ] ], [ [ [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ] ] ], [ [ [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ] ] ], [ [ [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -70.664062, 41.508577 ], [ -71.191406, 41.508577 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.322266, 39.027719 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.947266, 32.101190 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.273714 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ] ] ], [ [ [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.631217 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ] ] ], [ [ [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ] ] ], [ [ [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ] ] ], [ [ [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ] ] ], [ [ [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ], [ [ [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -70.664062, 41.508577 ], [ -71.191406, 41.508577 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.322266, 39.027719 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.947266, 32.101190 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.273714 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ] ] ], [ [ [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.585436 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ] ] ], [ [ [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ] ] ], [ [ [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ] ] ], [ [ [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.873047, 32.546813 ], [ -111.093750, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -105.117188, 30.675715 ], [ -104.501953, 29.611670 ], [ -103.974609, 29.305561 ], [ -103.183594, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.840644 ], [ -100.986328, 29.382175 ], [ -100.195312, 28.149503 ], [ -99.580078, 27.605671 ], [ -99.052734, 26.431228 ], [ -97.558594, 25.878994 ], [ -97.207031, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.512557 ], [ -97.734375, 21.943046 ], [ -97.470703, 21.453069 ], [ -97.207031, 20.715015 ], [ -96.591797, 19.973349 ], [ -96.328125, 19.394068 ], [ -95.976562, 18.895893 ], [ -94.921875, 18.562947 ], [ -94.482422, 18.145852 ], [ -91.494141, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.615234, 19.890723 ], [ -90.527344, 20.715015 ], [ -90.351562, 21.043491 ], [ -88.593750, 21.534847 ], [ -87.099609, 21.616579 ], [ -86.835938, 21.371244 ], [ -86.923828, 20.879343 ], [ -87.451172, 20.303418 ], [ -87.626953, 19.725342 ], [ -87.451172, 19.476950 ], [ -87.890625, 18.312811 ], [ -88.154297, 18.562947 ], [ -88.505859, 18.562947 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.062312 ], [ -89.208984, 17.811456 ], [ -91.054688, 17.895114 ], [ -91.054688, 17.308688 ], [ -91.494141, 17.308688 ], [ -90.439453, 16.467695 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.114553 ], [ -92.285156, 14.604847 ], [ -93.427734, 15.623037 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.591797, 15.707663 ], [ -100.898438, 17.224758 ], [ -101.953125, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.974609, 18.812718 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.468750, 20.550509 ], [ -105.556641, 20.879343 ], [ -105.292969, 21.125498 ], [ -105.292969, 21.453069 ], [ -106.083984, 22.836946 ], [ -106.962891, 23.805450 ], [ -107.929688, 24.607069 ], [ -108.457031, 25.244696 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.878994 ], [ -109.335938, 26.509905 ], [ -109.863281, 26.745610 ], [ -110.478516, 27.215556 ], [ -110.654297, 27.916767 ], [ -111.181641, 27.994401 ], [ -112.236328, 28.998532 ], [ -112.324219, 29.305561 ], [ -112.851562, 30.069094 ], [ -113.203125, 30.826781 ], [ -113.203125, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.257812, 31.578535 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.221102 ], [ -113.291016, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -112.763672, 27.839076 ], [ -112.324219, 27.215556 ], [ -111.621094, 26.667096 ], [ -111.357422, 25.799891 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.511719, 23.241346 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.483401 ], [ -111.005859, 24.046464 ], [ -112.236328, 24.766785 ], [ -112.236328, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.824071 ], [ -113.642578, 26.667096 ], [ -113.906250, 26.902477 ], [ -114.521484, 27.215556 ], [ -115.136719, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.257812, 28.149503 ], [ -114.169922, 28.613459 ], [ -114.960938, 29.305561 ], [ -115.576172, 29.611670 ], [ -117.158203, 32.546813 ], [ -114.785156, 32.768800 ], [ -114.873047, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.785156, 32.768800 ], [ -114.873047, 32.546813 ], [ -111.093750, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -105.117188, 30.675715 ], [ -104.501953, 29.611670 ], [ -103.974609, 29.305561 ], [ -103.183594, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.840644 ], [ -100.986328, 29.382175 ], [ -100.195312, 28.149503 ], [ -99.580078, 27.605671 ], [ -99.052734, 26.431228 ], [ -97.558594, 25.878994 ], [ -97.207031, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.512557 ], [ -97.734375, 21.943046 ], [ -97.470703, 21.453069 ], [ -97.207031, 20.715015 ], [ -96.591797, 19.973349 ], [ -96.328125, 19.394068 ], [ -95.976562, 18.895893 ], [ -94.921875, 18.562947 ], [ -94.482422, 18.145852 ], [ -91.494141, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.615234, 19.890723 ], [ -90.527344, 20.715015 ], [ -90.351562, 21.043491 ], [ -88.593750, 21.534847 ], [ -87.099609, 21.616579 ], [ -86.835938, 21.371244 ], [ -86.923828, 20.879343 ], [ -87.451172, 20.303418 ], [ -87.626953, 19.725342 ], [ -87.451172, 19.476950 ], [ -87.890625, 18.312811 ], [ -88.154297, 18.562947 ], [ -88.505859, 18.562947 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.062312 ], [ -89.208984, 17.811456 ], [ -91.054688, 17.895114 ], [ -91.054688, 17.308688 ], [ -91.494141, 17.308688 ], [ -90.439453, 16.467695 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.114553 ], [ -92.285156, 14.604847 ], [ -93.427734, 15.623037 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.591797, 15.707663 ], [ -100.898438, 17.224758 ], [ -101.953125, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.974609, 18.812718 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.468750, 20.550509 ], [ -105.556641, 20.879343 ], [ -105.292969, 21.125498 ], [ -105.292969, 21.453069 ], [ -106.083984, 22.836946 ], [ -106.962891, 23.805450 ], [ -107.929688, 24.607069 ], [ -108.457031, 25.244696 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.878994 ], [ -109.335938, 26.509905 ], [ -109.863281, 26.745610 ], [ -110.478516, 27.215556 ], [ -110.654297, 27.916767 ], [ -111.181641, 27.994401 ], [ -112.236328, 28.998532 ], [ -112.324219, 29.305561 ], [ -112.851562, 30.069094 ], [ -113.203125, 30.826781 ], [ -113.203125, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.257812, 31.578535 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.221102 ], [ -113.291016, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -112.763672, 27.839076 ], [ -112.324219, 27.215556 ], [ -111.621094, 26.667096 ], [ -111.357422, 25.799891 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.511719, 23.241346 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.483401 ], [ -111.005859, 24.046464 ], [ -112.236328, 24.766785 ], [ -112.236328, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.824071 ], [ -113.642578, 26.667096 ], [ -113.906250, 26.902477 ], [ -114.521484, 27.215556 ], [ -115.136719, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.257812, 28.149503 ], [ -114.169922, 28.613459 ], [ -114.960938, 29.305561 ], [ -115.576172, 29.611670 ], [ -117.158203, 32.546813 ], [ -114.785156, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.208984, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.792254 ], [ -89.208984, 15.114553 ], [ -89.208984, 14.689881 ], [ -90.175781, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.318359, 14.008696 ], [ -92.285156, 14.604847 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.284185 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.439453, 16.467695 ], [ -91.494141, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.895114 ], [ -89.208984, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.054688, 17.895114 ], [ -89.208984, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.792254 ], [ -89.208984, 15.114553 ], [ -89.208984, 14.689881 ], [ -90.175781, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.318359, 14.008696 ], [ -92.285156, 14.604847 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.284185 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.439453, 16.467695 ], [ -91.494141, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.895114 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.607422, 24.367114 ], [ -77.607422, 23.805450 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ], [ -77.607422, 24.367114 ] ] ], [ [ [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ] ] ], [ [ [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.958984, 25.244696 ], [ -77.607422, 24.367114 ], [ -77.607422, 23.805450 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ] ] ], [ [ [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ] ] ], [ [ [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.154297, 18.396230 ], [ -88.417969, 16.551962 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.208984, 17.811456 ], [ -89.033203, 18.062312 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.562947 ], [ -88.154297, 18.396230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.505859, 18.562947 ], [ -88.154297, 18.396230 ], [ -88.417969, 16.551962 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.208984, 17.811456 ], [ -89.033203, 18.062312 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.349548 ], [ -88.505859, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.838080 ], [ -87.802734, 13.410994 ], [ -87.978516, 13.154376 ], [ -88.505859, 13.239945 ], [ -89.824219, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.384766, 14.434680 ], [ -89.121094, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -89.121094, 14.349548 ], [ -88.505859, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.838080 ], [ -87.802734, 13.410994 ], [ -87.978516, 13.154376 ], [ -88.505859, 13.239945 ], [ -89.824219, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.384766, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.876809 ], [ -83.232422, 15.029686 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.689881 ], [ -84.990234, 14.859850 ], [ -85.166016, 14.434680 ], [ -85.869141, 13.838080 ], [ -86.132812, 14.093957 ], [ -86.396484, 13.838080 ], [ -86.835938, 13.838080 ], [ -86.748047, 13.325485 ], [ -86.923828, 13.325485 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.539062, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.802734, 13.838080 ], [ -87.890625, 13.923404 ], [ -88.505859, 13.923404 ], [ -89.121094, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.208984, 14.689881 ], [ -89.208984, 15.114553 ], [ -88.242188, 15.792254 ], [ -87.978516, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ], [ -85.517578, 15.961329 ], [ -84.990234, 16.045813 ], [ -84.375000, 15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 16.045813 ], [ -84.375000, 15.876809 ], [ -83.232422, 15.029686 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.689881 ], [ -84.990234, 14.859850 ], [ -85.166016, 14.434680 ], [ -85.869141, 13.838080 ], [ -86.132812, 14.093957 ], [ -86.396484, 13.838080 ], [ -86.835938, 13.838080 ], [ -86.748047, 13.325485 ], [ -86.923828, 13.325485 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.539062, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.802734, 13.838080 ], [ -87.890625, 13.923404 ], [ -88.505859, 13.923404 ], [ -89.121094, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.208984, 14.689881 ], [ -89.208984, 15.114553 ], [ -88.242188, 15.792254 ], [ -87.978516, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ], [ -85.517578, 15.961329 ], [ -84.990234, 16.045813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.935547, 10.746969 ], [ -84.726562, 11.092166 ], [ -84.990234, 11.005904 ], [ -85.605469, 11.264612 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -86.923828, 13.325485 ], [ -86.748047, 13.325485 ], [ -86.835938, 13.838080 ], [ -86.396484, 13.838080 ], [ -86.132812, 14.093957 ], [ -85.869141, 13.838080 ], [ -85.166016, 14.434680 ], [ -84.990234, 14.859850 ], [ -84.462891, 14.689881 ], [ -83.496094, 15.029686 ], [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.935547, 10.746969 ], [ -84.726562, 11.092166 ], [ -84.990234, 11.005904 ], [ -85.605469, 11.264612 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -86.923828, 13.325485 ], [ -86.748047, 13.325485 ], [ -86.835938, 13.838080 ], [ -86.396484, 13.838080 ], [ -86.132812, 14.093957 ], [ -85.869141, 13.838080 ], [ -85.166016, 14.434680 ], [ -84.990234, 14.859850 ], [ -84.462891, 14.689881 ], [ -83.496094, 15.029686 ], [ -83.232422, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.683594, 23.160563 ], [ -79.716797, 22.836946 ], [ -79.365234, 22.431340 ], [ -78.398438, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.673828, 21.043491 ], [ -75.673828, 20.797201 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.355469, 20.055931 ], [ -74.970703, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.715015 ], [ -78.222656, 20.797201 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.365234, 21.616579 ], [ -80.244141, 21.861499 ], [ -80.595703, 22.105999 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.755921 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.111328, 21.943046 ], [ -84.550781, 21.861499 ], [ -84.990234, 21.943046 ], [ -84.462891, 22.268764 ], [ -84.287109, 22.593726 ], [ -83.847656, 22.836946 ], [ -82.353516, 23.241346 ], [ -80.683594, 23.160563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.353516, 23.241346 ], [ -80.683594, 23.160563 ], [ -79.716797, 22.836946 ], [ -79.365234, 22.431340 ], [ -78.398438, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.673828, 21.043491 ], [ -75.673828, 20.797201 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.355469, 20.055931 ], [ -74.970703, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.715015 ], [ -78.222656, 20.797201 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.365234, 21.616579 ], [ -80.244141, 21.861499 ], [ -80.595703, 22.105999 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.755921 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.111328, 21.943046 ], [ -84.550781, 21.861499 ], [ -84.990234, 21.943046 ], [ -84.462891, 22.268764 ], [ -84.287109, 22.593726 ], [ -83.847656, 22.836946 ], [ -82.353516, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 11.005904 ], [ -84.726562, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 11.005904 ], [ -83.408203, 10.401378 ], [ -82.617188, 9.622414 ], [ -82.968750, 9.535749 ], [ -82.968750, 9.102097 ], [ -82.792969, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.583984, 8.494105 ], [ -83.759766, 8.667918 ], [ -83.671875, 9.102097 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -84.990234, 10.141932 ], [ -84.990234, 9.882275 ], [ -85.166016, 9.622414 ], [ -85.341797, 9.882275 ], [ -85.693359, 9.968851 ], [ -85.869141, 10.141932 ], [ -85.693359, 10.833306 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.264612 ], [ -84.990234, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.264612 ], [ -84.990234, 11.005904 ], [ -84.726562, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 11.005904 ], [ -83.408203, 10.401378 ], [ -82.617188, 9.622414 ], [ -82.968750, 9.535749 ], [ -82.968750, 9.102097 ], [ -82.792969, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.583984, 8.494105 ], [ -83.759766, 8.667918 ], [ -83.671875, 9.102097 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -84.990234, 10.141932 ], [ -84.990234, 9.882275 ], [ -85.166016, 9.622414 ], [ -85.341797, 9.882275 ], [ -85.693359, 9.968851 ], [ -85.869141, 10.141932 ], [ -85.693359, 10.833306 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.264612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.134766, 9.275622 ], [ -77.431641, 8.754795 ], [ -77.519531, 8.581021 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.710992 ], [ -77.783203, 7.710992 ], [ -77.958984, 7.275292 ], [ -78.222656, 7.536764 ], [ -78.486328, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.486328, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.189453, 9.015302 ], [ -79.628906, 9.015302 ], [ -79.804688, 8.667918 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.146243 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -80.947266, 7.275292 ], [ -81.123047, 7.885147 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.320212 ], [ -82.880859, 8.146243 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.841651 ], [ -82.792969, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.535749 ], [ -82.617188, 9.622414 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.015302 ], [ -81.738281, 9.102097 ], [ -81.474609, 8.841651 ], [ -81.035156, 8.928487 ], [ -79.980469, 9.362353 ], [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ], [ -77.431641, 8.754795 ], [ -77.519531, 8.581021 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.710992 ], [ -77.783203, 7.710992 ], [ -77.958984, 7.275292 ], [ -78.222656, 7.536764 ], [ -78.486328, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.486328, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.189453, 9.015302 ], [ -79.628906, 9.015302 ], [ -79.804688, 8.667918 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.146243 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -80.947266, 7.275292 ], [ -81.123047, 7.885147 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.320212 ], [ -82.880859, 8.146243 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.841651 ], [ -82.792969, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.535749 ], [ -82.617188, 9.622414 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.015302 ], [ -81.738281, 9.102097 ], [ -81.474609, 8.841651 ], [ -81.035156, 8.928487 ], [ -79.980469, 9.362353 ], [ -79.628906, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.904297, 18.479609 ], [ -76.376953, 18.229351 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.255859, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.398438, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.562947 ], [ -76.904297, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.607422, 18.562947 ], [ -76.904297, 18.479609 ], [ -76.376953, 18.229351 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.255859, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.398438, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.396230 ], [ -71.718750, 18.062312 ], [ -72.421875, 18.229351 ], [ -73.476562, 18.229351 ], [ -74.003906, 18.062312 ], [ -74.531250, 18.396230 ], [ -74.443359, 18.729502 ], [ -72.773438, 18.479609 ], [ -72.421875, 18.729502 ], [ -72.861328, 19.145168 ], [ -72.861328, 19.559790 ], [ -73.476562, 19.642588 ], [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.396230 ], [ -71.718750, 18.062312 ], [ -72.421875, 18.229351 ], [ -73.476562, 18.229351 ], [ -74.003906, 18.062312 ], [ -74.531250, 18.396230 ], [ -74.443359, 18.729502 ], [ -72.773438, 18.479609 ], [ -72.421875, 18.729502 ], [ -72.861328, 19.145168 ], [ -72.861328, 19.559790 ], [ -73.476562, 19.642588 ], [ -73.212891, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.725342 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.394068 ], [ -69.257812, 19.062118 ], [ -68.818359, 19.062118 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.479609 ], [ -69.960938, 18.479609 ], [ -70.136719, 18.312811 ], [ -70.576172, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.015625, 18.312811 ], [ -71.455078, 17.644022 ], [ -71.718750, 17.811456 ], [ -71.718750, 18.396230 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.725342 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.394068 ], [ -69.257812, 19.062118 ], [ -68.818359, 19.062118 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.479609 ], [ -69.960938, 18.479609 ], [ -70.136719, 18.312811 ], [ -70.576172, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.015625, 18.312811 ], [ -71.455078, 17.644022 ], [ -71.718750, 17.811456 ], [ -71.718750, 18.396230 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.455078, 12.382928 ], [ -71.191406, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.178402 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.795678 ], [ -73.388672, 9.188870 ], [ -72.861328, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.509766, 8.407168 ], [ -72.509766, 7.449624 ], [ -72.246094, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.751953, 7.100893 ], [ -70.136719, 7.013668 ], [ -69.433594, 6.140555 ], [ -67.763672, 6.315299 ], [ -67.412109, 6.140555 ], [ -67.763672, 5.266008 ], [ -67.851562, 4.565474 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.899153 ], [ -67.236328, 2.284551 ], [ -66.884766, 1.318243 ], [ -67.148438, 1.142502 ], [ -67.324219, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.939453, 1.757537 ], [ -69.873047, 1.757537 ], [ -69.873047, 1.142502 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.615223 ], [ -69.521484, 0.790990 ], [ -70.048828, 0.615223 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.054628 ], [ -69.960938, -4.214943 ], [ -70.400391, -3.688855 ], [ -70.751953, -3.688855 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.196727 ], [ -71.455078, -2.284551 ], [ -71.806641, -2.108899 ], [ -72.333984, -2.372369 ], [ -73.125000, -2.284551 ], [ -73.740234, -1.230374 ], [ -74.179688, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, 0.000000 ], [ -75.410156, -0.087891 ], [ -76.376953, 0.439449 ], [ -76.640625, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.878872 ], [ -77.871094, 0.878872 ], [ -78.925781, 1.406109 ], [ -79.013672, 1.757537 ], [ -78.662109, 1.845384 ], [ -78.750000, 2.284551 ], [ -78.486328, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.740675 ], [ -77.607422, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.751896 ], [ -77.958984, 7.275292 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.710992 ], [ -77.255859, 7.972198 ], [ -77.519531, 8.581021 ], [ -77.431641, 8.754795 ], [ -76.904297, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.761719, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.970703, 11.092166 ], [ -74.355469, 11.178402 ], [ -74.267578, 11.350797 ], [ -73.476562, 11.264612 ], [ -72.246094, 12.039321 ], [ -71.806641, 12.468760 ], [ -71.455078, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.806641, 12.468760 ], [ -71.455078, 12.382928 ], [ -71.191406, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.178402 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.795678 ], [ -73.388672, 9.188870 ], [ -72.861328, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.509766, 8.407168 ], [ -72.509766, 7.449624 ], [ -72.246094, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.751953, 7.100893 ], [ -70.136719, 7.013668 ], [ -69.433594, 6.140555 ], [ -67.763672, 6.315299 ], [ -67.412109, 6.140555 ], [ -67.763672, 5.266008 ], [ -67.851562, 4.565474 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.899153 ], [ -67.236328, 2.284551 ], [ -66.884766, 1.318243 ], [ -67.148438, 1.142502 ], [ -67.324219, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.939453, 1.757537 ], [ -69.873047, 1.757537 ], [ -69.873047, 1.142502 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.615223 ], [ -69.521484, 0.790990 ], [ -70.048828, 0.615223 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.054628 ], [ -69.960938, -4.214943 ], [ -70.400391, -3.688855 ], [ -70.751953, -3.688855 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.196727 ], [ -71.455078, -2.284551 ], [ -71.806641, -2.108899 ], [ -72.333984, -2.372369 ], [ -73.125000, -2.284551 ], [ -73.740234, -1.230374 ], [ -74.179688, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, 0.000000 ], [ -75.410156, -0.087891 ], [ -76.376953, 0.439449 ], [ -76.640625, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.878872 ], [ -77.871094, 0.878872 ], [ -78.925781, 1.406109 ], [ -79.013672, 1.757537 ], [ -78.662109, 1.845384 ], [ -78.750000, 2.284551 ], [ -78.486328, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.740675 ], [ -77.607422, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.751896 ], [ -77.958984, 7.275292 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.710992 ], [ -77.255859, 7.972198 ], [ -77.519531, 8.581021 ], [ -77.431641, 8.754795 ], [ -76.904297, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.761719, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.970703, 11.092166 ], [ -74.355469, 11.178402 ], [ -74.267578, 11.350797 ], [ -73.476562, 11.264612 ], [ -72.246094, 12.039321 ], [ -71.806641, 12.468760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.830078, 18.479609 ], [ -65.654297, 18.229351 ], [ -65.917969, 17.978733 ], [ -67.236328, 17.978733 ], [ -67.324219, 18.396230 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ], [ -65.830078, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.357422, 18.562947 ], [ -65.830078, 18.479609 ], [ -65.654297, 18.229351 ], [ -65.917969, 17.978733 ], [ -67.236328, 17.978733 ], [ -67.324219, 18.396230 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.291016, 10.919618 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.742188, 10.228437 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.908203, 9.449062 ], [ -60.732422, 8.581021 ], [ -60.205078, 8.667918 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.380859, 7.100893 ], [ -61.171875, 6.751896 ], [ -61.171875, 6.315299 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -60.996094, 4.565474 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -64.687500, 4.214943 ], [ -64.863281, 4.127285 ], [ -64.423828, 3.864255 ], [ -64.423828, 3.162456 ], [ -64.335938, 2.547988 ], [ -63.457031, 2.460181 ], [ -63.369141, 2.284551 ], [ -64.160156, 1.933227 ], [ -64.248047, 1.493971 ], [ -65.390625, 1.142502 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.790990 ], [ -66.884766, 1.318243 ], [ -67.236328, 2.284551 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.763672, 5.266008 ], [ -67.412109, 6.140555 ], [ -67.763672, 6.315299 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -70.751953, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.246094, 7.362467 ], [ -72.509766, 7.449624 ], [ -72.509766, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -73.037109, 9.795678 ], [ -72.949219, 10.487812 ], [ -72.246094, 11.178402 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.609193 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.718750, 10.487812 ], [ -72.158203, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.188870 ], [ -71.103516, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.211180 ], [ -69.609375, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.211180 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.291016, 10.919618 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.742188, 10.228437 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.908203, 9.449062 ], [ -60.732422, 8.581021 ], [ -60.205078, 8.667918 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.380859, 7.100893 ], [ -61.171875, 6.751896 ], [ -61.171875, 6.315299 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -60.996094, 4.565474 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -64.687500, 4.214943 ], [ -64.863281, 4.127285 ], [ -64.423828, 3.864255 ], [ -64.423828, 3.162456 ], [ -64.335938, 2.547988 ], [ -63.457031, 2.460181 ], [ -63.369141, 2.284551 ], [ -64.160156, 1.933227 ], [ -64.248047, 1.493971 ], [ -65.390625, 1.142502 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.790990 ], [ -66.884766, 1.318243 ], [ -67.236328, 2.284551 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.763672, 5.266008 ], [ -67.412109, 6.140555 ], [ -67.763672, 6.315299 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -70.751953, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.246094, 7.362467 ], [ -72.509766, 7.449624 ], [ -72.509766, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -73.037109, 9.795678 ], [ -72.949219, 10.487812 ], [ -72.246094, 11.178402 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.609193 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.718750, 10.487812 ], [ -72.158203, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.188870 ], [ -71.103516, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.996094, 10.141932 ], [ -61.787109, 10.055403 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ], [ -61.787109, 10.055403 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, 8.059230 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.216797, 6.053161 ], [ -57.392578, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.919922, 4.653080 ], [ -58.095703, 4.127285 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.216797, 2.811371 ], [ -56.601562, 1.933227 ], [ -57.392578, 2.021065 ], [ -57.744141, 1.757537 ], [ -58.447266, 1.493971 ], [ -58.623047, 1.318243 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.845384 ], [ -60.029297, 2.811371 ], [ -59.853516, 3.688855 ], [ -59.589844, 4.039618 ], [ -59.853516, 4.477856 ], [ -60.117188, 4.653080 ], [ -60.029297, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.820312, 5.266008 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.315299 ], [ -61.171875, 6.751896 ], [ -60.380859, 7.100893 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ], [ -59.150391, 8.059230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.150391, 8.059230 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.216797, 6.053161 ], [ -57.392578, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.919922, 4.653080 ], [ -58.095703, 4.127285 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.216797, 2.811371 ], [ -56.601562, 1.933227 ], [ -57.392578, 2.021065 ], [ -57.744141, 1.757537 ], [ -58.447266, 1.493971 ], [ -58.623047, 1.318243 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.845384 ], [ -60.029297, 2.811371 ], [ -59.853516, 3.688855 ], [ -59.589844, 4.039618 ], [ -59.853516, 4.477856 ], [ -60.117188, 4.653080 ], [ -60.029297, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.820312, 5.266008 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.315299 ], [ -61.171875, 6.751896 ], [ -60.380859, 7.100893 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -55.107422, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.108899 ], [ -56.074219, 1.845384 ], [ -56.601562, 1.933227 ], [ -57.216797, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -58.095703, 4.127285 ], [ -57.919922, 4.653080 ], [ -57.919922, 4.828260 ], [ -57.392578, 5.090944 ], [ -57.216797, 6.053161 ], [ -55.986328, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.107422, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.107422, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -55.107422, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.108899 ], [ -56.074219, 1.845384 ], [ -56.601562, 1.933227 ], [ -57.216797, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -58.095703, 4.127285 ], [ -57.919922, 4.653080 ], [ -57.919922, 4.828260 ], [ -57.392578, 5.090944 ], [ -57.216797, 6.053161 ], [ -55.986328, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.107422, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.622978 ], [ -7.646484, 54.110943 ], [ -7.031250, 54.110943 ], [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ], [ -7.382812, 54.622978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.646484, 55.178868 ], [ -7.382812, 54.622978 ], [ -7.646484, 54.110943 ], [ -7.031250, 54.110943 ], [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.130859, 57.562995 ], [ -3.076172, 57.704147 ], [ -2.021484, 57.704147 ], [ -2.285156, 56.897004 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.673831 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 1.494141, 52.106505 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.548828, 50.513427 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -4.394531, 51.234407 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -5.712891, 56.316537 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.844751 ], [ -5.097656, 58.631217 ], [ -4.218750, 58.585436 ], [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ] ] ], [ [ [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ], [ -7.031250, 54.110943 ], [ -7.646484, 54.110943 ], [ -7.382812, 54.622978 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ], [ -3.076172, 57.704147 ], [ -2.021484, 57.704147 ], [ -2.285156, 56.897004 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.673831 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 1.494141, 52.106505 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.548828, 50.513427 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -4.394531, 51.234407 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -5.712891, 56.316537 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.844751 ], [ -5.097656, 58.631217 ], [ -4.218750, 58.585436 ], [ -3.076172, 58.676938 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ], [ -7.031250, 54.110943 ], [ -7.646484, 54.110943 ], [ -7.382812, 54.622978 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.653080 ], [ -51.679688, 4.214943 ], [ -52.558594, 2.547988 ], [ -52.998047, 2.196727 ], [ -53.437500, 2.108899 ], [ -53.613281, 2.372369 ], [ -53.789062, 2.460181 ], [ -54.140625, 2.108899 ], [ -54.580078, 2.372369 ], [ -54.052734, 3.688855 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 8.701172, 42.682435 ], [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ] ] ], [ [ [ 2.636719, 50.847573 ], [ 3.076172, 50.792047 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 4.746094, 50.007739 ], [ 5.625000, 49.553726 ], [ 5.888672, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.591797, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.382812, 47.635784 ], [ 7.119141, 47.457809 ], [ 6.679688, 47.576526 ], [ 6.767578, 47.338823 ], [ 5.976562, 46.739861 ], [ 5.976562, 46.316584 ], [ 6.416016, 46.437857 ], [ 6.767578, 46.012224 ], [ 6.767578, 45.767523 ], [ 7.031250, 45.336702 ], [ 6.679688, 45.089036 ], [ 6.943359, 44.276671 ], [ 7.470703, 44.150681 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 1.757812, 42.358544 ], [ 0.615234, 42.811522 ], [ 0.263672, 42.617791 ], [ -1.582031, 43.068888 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.285156, 47.100045 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.636719, 50.847573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.653080 ], [ -51.679688, 4.214943 ], [ -52.558594, 2.547988 ], [ -52.998047, 2.196727 ], [ -53.437500, 2.108899 ], [ -53.613281, 2.372369 ], [ -53.789062, 2.460181 ], [ -54.140625, 2.108899 ], [ -54.580078, 2.372369 ], [ -54.052734, 3.688855 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 8.701172, 42.682435 ], [ 9.316406, 43.068888 ] ] ], [ [ [ 2.460938, 51.179343 ], [ 2.636719, 50.847573 ], [ 3.076172, 50.792047 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 4.746094, 50.007739 ], [ 5.625000, 49.553726 ], [ 5.888672, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.591797, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.382812, 47.635784 ], [ 7.119141, 47.457809 ], [ 6.679688, 47.576526 ], [ 6.767578, 47.338823 ], [ 5.976562, 46.739861 ], [ 5.976562, 46.316584 ], [ 6.416016, 46.437857 ], [ 6.767578, 46.012224 ], [ 6.767578, 45.767523 ], [ 7.031250, 45.336702 ], [ 6.679688, 45.089036 ], [ 6.943359, 44.276671 ], [ 7.470703, 44.150681 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 1.757812, 42.358544 ], [ 0.615234, 42.811522 ], [ 0.263672, 42.617791 ], [ -1.582031, 43.068888 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.285156, 47.100045 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 23.402765 ], [ -12.919922, 23.322080 ], [ -13.183594, 22.836946 ], [ -13.007812, 21.371244 ], [ -16.875000, 21.371244 ], [ -17.138672, 21.043491 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.677734, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.974609, 23.725012 ], [ -12.568359, 24.846565 ], [ -12.041016, 25.958045 ], [ -11.953125, 23.402765 ] ] ], [ [ [ -11.777344, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.634766, 27.059126 ], [ -9.755859, 26.902477 ], [ -9.492188, 27.137368 ], [ -8.876953, 27.137368 ], [ -8.876953, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.958045 ], [ -12.041016, 25.958045 ], [ -12.041016, 26.037042 ], [ -11.777344, 26.115986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.041016, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.919922, 23.322080 ], [ -13.183594, 22.836946 ], [ -13.007812, 21.371244 ], [ -16.875000, 21.371244 ], [ -17.138672, 21.043491 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.677734, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.974609, 23.725012 ], [ -12.568359, 24.846565 ], [ -12.041016, 25.958045 ] ] ], [ [ [ -12.041016, 25.958045 ], [ -12.041016, 26.037042 ], [ -11.777344, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.634766, 27.059126 ], [ -9.755859, 26.902477 ], [ -9.492188, 27.137368 ], [ -8.876953, 27.137368 ], [ -8.876953, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.958045 ], [ -12.041016, 25.958045 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 41.836828 ], [ -7.470703, 41.836828 ], [ -7.294922, 41.967659 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.442726 ], [ -6.855469, 41.112469 ], [ -6.943359, 40.380028 ], [ -7.031250, 40.245992 ], [ -7.119141, 39.774769 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.095963 ], [ -7.382812, 38.410558 ], [ -7.031250, 38.134557 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.160317 ], [ -7.910156, 36.879621 ], [ -8.437500, 37.020098 ], [ -8.964844, 36.879621 ], [ -8.789062, 37.718590 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.580078, 38.754083 ], [ -9.492188, 39.436193 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.349609, 42.293564 ], [ -8.085938, 41.836828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.349609, 42.293564 ], [ -8.085938, 41.836828 ], [ -7.470703, 41.836828 ], [ -7.294922, 41.967659 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.442726 ], [ -6.855469, 41.112469 ], [ -6.943359, 40.380028 ], [ -7.031250, 40.245992 ], [ -7.119141, 39.774769 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.095963 ], [ -7.382812, 38.410558 ], [ -7.031250, 38.134557 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.160317 ], [ -7.910156, 36.879621 ], [ -8.437500, 37.020098 ], [ -8.964844, 36.879621 ], [ -8.789062, 37.718590 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.580078, 38.754083 ], [ -9.492188, 39.436193 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.349609, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.582031, 43.068888 ], [ 0.263672, 42.617791 ], [ 0.615234, 42.811522 ], [ 1.757812, 42.358544 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 2.021484, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.713956 ], [ 0.087891, 40.178873 ], [ -0.351562, 39.368279 ], [ 0.087891, 38.754083 ], [ -0.527344, 38.341656 ], [ -0.703125, 37.649034 ], [ -1.494141, 37.509726 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.009766, 36.385913 ], [ -5.449219, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.382812, 38.410558 ], [ -7.119141, 39.095963 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.774769 ], [ -7.031250, 40.245992 ], [ -6.943359, 40.380028 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.967659 ], [ -7.470703, 41.836828 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.582031, 43.068888 ], [ 0.263672, 42.617791 ], [ 0.615234, 42.811522 ], [ 1.757812, 42.358544 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 2.021484, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.713956 ], [ 0.087891, 40.178873 ], [ -0.351562, 39.368279 ], [ 0.087891, 38.754083 ], [ -0.527344, 38.341656 ], [ -0.703125, 37.649034 ], [ -1.494141, 37.509726 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.009766, 36.385913 ], [ -5.449219, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.382812, 38.410558 ], [ -7.119141, 39.095963 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.774769 ], [ -7.031250, 40.245992 ], [ -6.943359, 40.380028 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.967659 ], [ -7.470703, 41.836828 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.658203, 35.389050 ], [ -3.691406, 35.460670 ], [ -2.197266, 35.173808 ], [ -1.845703, 34.597042 ], [ -1.406250, 32.916485 ], [ -1.142578, 32.694866 ], [ -1.318359, 32.324276 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.921875, 30.524413 ], [ -5.273438, 30.069094 ], [ -7.119141, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.876953, 27.683528 ], [ -8.876953, 27.137368 ], [ -9.492188, 27.137368 ], [ -9.755859, 26.902477 ], [ -10.634766, 27.059126 ], [ -11.425781, 26.902477 ], [ -11.777344, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.568359, 24.846565 ], [ -13.974609, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.677734, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.611328, 22.187405 ], [ -16.347656, 22.755921 ], [ -16.347656, 23.079732 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.165173 ], [ -14.853516, 25.641526 ], [ -14.501953, 26.273714 ], [ -13.798828, 26.667096 ], [ -13.183594, 27.683528 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.986328, 28.844674 ], [ -10.458984, 29.152161 ], [ -9.580078, 29.993002 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.620870 ], [ -8.701172, 33.284620 ], [ -6.943359, 34.161818 ], [ -5.976562, 35.817813 ], [ -5.273438, 35.817813 ], [ -4.658203, 35.389050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.817813 ], [ -4.658203, 35.389050 ], [ -3.691406, 35.460670 ], [ -2.197266, 35.173808 ], [ -1.845703, 34.597042 ], [ -1.406250, 32.916485 ], [ -1.142578, 32.694866 ], [ -1.318359, 32.324276 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.921875, 30.524413 ], [ -5.273438, 30.069094 ], [ -7.119141, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.876953, 27.683528 ], [ -8.876953, 27.137368 ], [ -9.492188, 27.137368 ], [ -9.755859, 26.902477 ], [ -10.634766, 27.059126 ], [ -11.425781, 26.902477 ], [ -11.777344, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.568359, 24.846565 ], [ -13.974609, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.677734, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.611328, 22.187405 ], [ -16.347656, 22.755921 ], [ -16.347656, 23.079732 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.165173 ], [ -14.853516, 25.641526 ], [ -14.501953, 26.273714 ], [ -13.798828, 26.667096 ], [ -13.183594, 27.683528 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.986328, 28.844674 ], [ -10.458984, 29.152161 ], [ -9.580078, 29.993002 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.620870 ], [ -8.701172, 33.284620 ], [ -6.943359, 34.161818 ], [ -5.976562, 35.817813 ], [ -5.273438, 35.817813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.447266, 16.045813 ], [ -12.216797, 14.689881 ], [ -11.953125, 13.496473 ], [ -11.601562, 13.154376 ], [ -11.601562, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.568359, 12.382928 ], [ -13.271484, 12.640338 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.468760 ], [ -16.875000, 13.154376 ], [ -15.996094, 13.154376 ], [ -15.205078, 13.581921 ], [ -14.765625, 13.325485 ], [ -14.326172, 13.325485 ], [ -13.886719, 13.581921 ], [ -14.062500, 13.838080 ], [ -14.765625, 13.667338 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.644531, 13.667338 ], [ -16.787109, 13.667338 ], [ -17.138672, 14.434680 ], [ -17.666016, 14.774883 ], [ -17.226562, 14.944785 ], [ -16.523438, 16.214675 ], [ -16.171875, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.205078, 16.636192 ], [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ], [ -12.216797, 14.689881 ], [ -11.953125, 13.496473 ], [ -11.601562, 13.154376 ], [ -11.601562, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.568359, 12.382928 ], [ -13.271484, 12.640338 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.468760 ], [ -16.875000, 13.154376 ], [ -15.996094, 13.154376 ], [ -15.205078, 13.581921 ], [ -14.765625, 13.325485 ], [ -14.326172, 13.325485 ], [ -13.886719, 13.581921 ], [ -14.062500, 13.838080 ], [ -14.765625, 13.667338 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.644531, 13.667338 ], [ -16.787109, 13.667338 ], [ -17.138672, 14.434680 ], [ -17.666016, 14.774883 ], [ -17.226562, 14.944785 ], [ -16.523438, 16.214675 ], [ -16.171875, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.205078, 16.636192 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.765625, 13.667338 ], [ -14.062500, 13.838080 ], [ -13.886719, 13.581921 ], [ -14.326172, 13.325485 ], [ -14.765625, 13.325485 ], [ -15.205078, 13.581921 ], [ -15.996094, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.787109, 13.667338 ], [ -15.644531, 13.667338 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ], [ -14.765625, 13.667338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -14.765625, 13.667338 ], [ -14.062500, 13.838080 ], [ -13.886719, 13.581921 ], [ -14.326172, 13.325485 ], [ -14.765625, 13.325485 ], [ -15.205078, 13.581921 ], [ -15.996094, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.787109, 13.667338 ], [ -15.644531, 13.667338 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.886719, 12.211180 ], [ -13.798828, 11.867351 ], [ -14.414062, 11.523088 ], [ -14.765625, 11.609193 ], [ -15.205078, 11.092166 ], [ -15.732422, 11.523088 ], [ -16.171875, 11.609193 ], [ -16.699219, 12.468760 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.640338 ], [ -13.886719, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.640338 ], [ -13.886719, 12.211180 ], [ -13.798828, 11.867351 ], [ -14.414062, 11.523088 ], [ -14.765625, 11.609193 ], [ -15.205078, 11.092166 ], [ -15.732422, 11.523088 ], [ -16.171875, 11.609193 ], [ -16.699219, 12.468760 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.568359, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.601562, 12.468760 ], [ -11.513672, 12.125264 ], [ -11.074219, 12.297068 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.404297, 12.382928 ], [ -9.140625, 12.382928 ], [ -8.437500, 11.436955 ], [ -8.613281, 11.178402 ], [ -8.701172, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.349609, 10.833306 ], [ -8.349609, 10.574222 ], [ -8.085938, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -7.910156, 8.581021 ], [ -8.349609, 8.320212 ], [ -8.349609, 7.710992 ], [ -8.525391, 7.710992 ], [ -8.789062, 7.798079 ], [ -8.964844, 7.362467 ], [ -9.228516, 7.362467 ], [ -9.404297, 7.536764 ], [ -9.404297, 7.972198 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.407168 ], [ -10.634766, 9.275622 ], [ -11.162109, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.216797, 9.882275 ], [ -12.480469, 9.882275 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -14.150391, 9.968851 ], [ -14.589844, 10.228437 ], [ -14.765625, 10.660608 ], [ -15.205078, 11.092166 ], [ -14.765625, 11.609193 ], [ -14.414062, 11.523088 ], [ -13.798828, 11.867351 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.640338 ], [ -13.271484, 12.640338 ], [ -12.568359, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.271484, 12.640338 ], [ -12.568359, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.601562, 12.468760 ], [ -11.513672, 12.125264 ], [ -11.074219, 12.297068 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.404297, 12.382928 ], [ -9.140625, 12.382928 ], [ -8.437500, 11.436955 ], [ -8.613281, 11.178402 ], [ -8.701172, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.349609, 10.833306 ], [ -8.349609, 10.574222 ], [ -8.085938, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -7.910156, 8.581021 ], [ -8.349609, 8.320212 ], [ -8.349609, 7.710992 ], [ -8.525391, 7.710992 ], [ -8.789062, 7.798079 ], [ -8.964844, 7.362467 ], [ -9.228516, 7.362467 ], [ -9.404297, 7.536764 ], [ -9.404297, 7.972198 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.407168 ], [ -10.634766, 9.275622 ], [ -11.162109, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.216797, 9.882275 ], [ -12.480469, 9.882275 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -14.150391, 9.968851 ], [ -14.589844, 10.228437 ], [ -14.765625, 10.660608 ], [ -15.205078, 11.092166 ], [ -14.765625, 11.609193 ], [ -14.414062, 11.523088 ], [ -13.798828, 11.867351 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.640338 ], [ -13.271484, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.634766, 9.275622 ], [ -10.546875, 8.407168 ], [ -10.283203, 8.407168 ], [ -11.162109, 7.449624 ], [ -11.513672, 6.839170 ], [ -12.480469, 7.275292 ], [ -13.007812, 7.885147 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.480469, 9.882275 ], [ -12.216797, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.162109, 10.055403 ], [ -10.634766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.162109, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.546875, 8.407168 ], [ -10.283203, 8.407168 ], [ -11.162109, 7.449624 ], [ -11.513672, 6.839170 ], [ -12.480469, 7.275292 ], [ -13.007812, 7.885147 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.480469, 9.882275 ], [ -12.216797, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.162109, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.005973 ], [ -6.503906, 25.005973 ], [ -5.537109, 16.383391 ], [ -5.361328, 16.214675 ], [ -5.625000, 15.538376 ], [ -9.580078, 15.538376 ], [ -9.755859, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.722656, 15.199386 ], [ -11.425781, 15.453680 ], [ -11.689453, 15.453680 ], [ -11.865234, 14.859850 ], [ -12.216797, 14.689881 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -15.205078, 16.636192 ], [ -15.644531, 16.383391 ], [ -16.171875, 16.467695 ], [ -16.523438, 16.214675 ], [ -16.611328, 16.720385 ], [ -16.347656, 17.224758 ], [ -16.171875, 18.145852 ], [ -16.435547, 19.642588 ], [ -16.347656, 20.138470 ], [ -16.611328, 20.632784 ], [ -17.138672, 21.043491 ], [ -16.875000, 21.371244 ], [ -13.007812, 21.371244 ], [ -13.183594, 22.836946 ], [ -12.919922, 23.322080 ], [ -11.953125, 23.402765 ], [ -12.041016, 25.958045 ], [ -8.701172, 25.958045 ], [ -8.701172, 27.449790 ], [ -5.009766, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.449790 ], [ -5.009766, 25.005973 ], [ -6.503906, 25.005973 ], [ -5.537109, 16.383391 ], [ -5.361328, 16.214675 ], [ -5.625000, 15.538376 ], [ -9.580078, 15.538376 ], [ -9.755859, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.722656, 15.199386 ], [ -11.425781, 15.453680 ], [ -11.689453, 15.453680 ], [ -11.865234, 14.859850 ], [ -12.216797, 14.689881 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -15.205078, 16.636192 ], [ -15.644531, 16.383391 ], [ -16.171875, 16.467695 ], [ -16.523438, 16.214675 ], [ -16.611328, 16.720385 ], [ -16.347656, 17.224758 ], [ -16.171875, 18.145852 ], [ -16.435547, 19.642588 ], [ -16.347656, 20.138470 ], [ -16.611328, 20.632784 ], [ -17.138672, 21.043491 ], [ -16.875000, 21.371244 ], [ -13.007812, 21.371244 ], [ -13.183594, 22.836946 ], [ -12.919922, 23.322080 ], [ -11.953125, 23.402765 ], [ -12.041016, 25.958045 ], [ -8.701172, 25.958045 ], [ -8.701172, 27.449790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 20.632784 ], [ 2.021484, 20.220966 ], [ 3.076172, 19.725342 ], [ 3.076172, 19.062118 ], [ 4.218750, 19.228177 ], [ 4.218750, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.623037 ], [ 1.318359, 15.368950 ], [ 0.966797, 15.029686 ], [ -0.351562, 14.944785 ], [ -0.527344, 15.199386 ], [ -1.142578, 15.029686 ], [ -2.021484, 14.604847 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.164062, 13.581921 ], [ -3.603516, 13.410994 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.482422, 12.554564 ], [ -5.273438, 11.781325 ], [ -5.273438, 11.436955 ], [ -5.537109, 11.005904 ], [ -5.449219, 10.401378 ], [ -6.064453, 10.141932 ], [ -6.240234, 10.574222 ], [ -6.679688, 10.487812 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.228437 ], [ -7.910156, 10.314919 ], [ -8.085938, 10.228437 ], [ -8.349609, 10.574222 ], [ -8.349609, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.701172, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.436955 ], [ -9.140625, 12.382928 ], [ -9.404297, 12.382928 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -11.074219, 12.297068 ], [ -11.513672, 12.125264 ], [ -11.601562, 13.154376 ], [ -11.953125, 13.496473 ], [ -12.216797, 14.689881 ], [ -11.865234, 14.859850 ], [ -11.689453, 15.453680 ], [ -11.425781, 15.453680 ], [ -10.722656, 15.199386 ], [ -10.107422, 15.368950 ], [ -9.755859, 15.284185 ], [ -9.580078, 15.538376 ], [ -5.625000, 15.538376 ], [ -5.361328, 16.214675 ], [ -5.537109, 16.383391 ], [ -6.503906, 25.005973 ], [ -5.009766, 25.005973 ], [ 1.757812, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.005973 ], [ 1.757812, 20.632784 ], [ 2.021484, 20.220966 ], [ 3.076172, 19.725342 ], [ 3.076172, 19.062118 ], [ 4.218750, 19.228177 ], [ 4.218750, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.623037 ], [ 1.318359, 15.368950 ], [ 0.966797, 15.029686 ], [ -0.351562, 14.944785 ], [ -0.527344, 15.199386 ], [ -1.142578, 15.029686 ], [ -2.021484, 14.604847 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.164062, 13.581921 ], [ -3.603516, 13.410994 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.482422, 12.554564 ], [ -5.273438, 11.781325 ], [ -5.273438, 11.436955 ], [ -5.537109, 11.005904 ], [ -5.449219, 10.401378 ], [ -6.064453, 10.141932 ], [ -6.240234, 10.574222 ], [ -6.679688, 10.487812 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.228437 ], [ -7.910156, 10.314919 ], [ -8.085938, 10.228437 ], [ -8.349609, 10.574222 ], [ -8.349609, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.701172, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.436955 ], [ -9.140625, 12.382928 ], [ -9.404297, 12.382928 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -11.074219, 12.297068 ], [ -11.513672, 12.125264 ], [ -11.601562, 13.154376 ], [ -11.953125, 13.496473 ], [ -12.216797, 14.689881 ], [ -11.865234, 14.859850 ], [ -11.689453, 15.453680 ], [ -11.425781, 15.453680 ], [ -10.722656, 15.199386 ], [ -10.107422, 15.368950 ], [ -9.755859, 15.284185 ], [ -9.580078, 15.538376 ], [ -5.625000, 15.538376 ], [ -5.361328, 16.214675 ], [ -5.537109, 16.383391 ], [ -6.503906, 25.005973 ], [ -5.009766, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.351562, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.008696 ], [ 0.966797, 13.410994 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.609193 ], [ 1.230469, 11.178402 ], [ 0.878906, 11.005904 ], [ -0.439453, 11.178402 ], [ -0.791016, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -3.515625, 9.968851 ], [ -4.042969, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.833984, 9.882275 ], [ -5.009766, 10.228437 ], [ -5.449219, 10.401378 ], [ -5.537109, 11.005904 ], [ -5.273438, 11.436955 ], [ -5.273438, 11.781325 ], [ -4.482422, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.603516, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.604847 ], [ -1.142578, 15.029686 ], [ -0.527344, 15.199386 ], [ -0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.199386 ], [ -0.351562, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.008696 ], [ 0.966797, 13.410994 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.609193 ], [ 1.230469, 11.178402 ], [ 0.878906, 11.005904 ], [ -0.439453, 11.178402 ], [ -0.791016, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -3.515625, 9.968851 ], [ -4.042969, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.833984, 9.882275 ], [ -5.009766, 10.228437 ], [ -5.449219, 10.401378 ], [ -5.537109, 11.005904 ], [ -5.273438, 11.436955 ], [ -5.273438, 11.781325 ], [ -4.482422, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.603516, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.604847 ], [ -1.142578, 15.029686 ], [ -0.527344, 15.199386 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.404297, 7.972198 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.789062, 7.798079 ], [ -8.525391, 7.710992 ], [ -8.437500, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.646484, 5.790897 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.052734, 4.915833 ], [ -11.513672, 6.839170 ], [ -11.162109, 7.449624 ], [ -10.283203, 8.407168 ], [ -9.755859, 8.581021 ], [ -9.404297, 7.972198 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.404297, 7.972198 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.789062, 7.798079 ], [ -8.525391, 7.710992 ], [ -8.437500, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.646484, 5.790897 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.052734, 4.915833 ], [ -11.513672, 6.839170 ], [ -11.162109, 7.449624 ], [ -10.283203, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.141932 ], [ -5.449219, 10.401378 ], [ -5.009766, 10.228437 ], [ -4.833984, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.042969, 9.882275 ], [ -3.515625, 9.968851 ], [ -2.900391, 9.709057 ], [ -2.636719, 8.233237 ], [ -2.988281, 7.449624 ], [ -3.251953, 6.315299 ], [ -2.812500, 5.441022 ], [ -2.900391, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.888672, 5.003394 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.790897 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.437500, 6.926427 ], [ -8.525391, 7.449624 ], [ -8.525391, 7.710992 ], [ -8.349609, 7.710992 ], [ -8.349609, 8.320212 ], [ -7.910156, 8.581021 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.228437 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.240234, 10.574222 ], [ -6.064453, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.574222 ], [ -6.064453, 10.141932 ], [ -5.449219, 10.401378 ], [ -5.009766, 10.228437 ], [ -4.833984, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.042969, 9.882275 ], [ -3.515625, 9.968851 ], [ -2.900391, 9.709057 ], [ -2.636719, 8.233237 ], [ -2.988281, 7.449624 ], [ -3.251953, 6.315299 ], [ -2.812500, 5.441022 ], [ -2.900391, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.888672, 5.003394 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.790897 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.437500, 6.926427 ], [ -8.525391, 7.449624 ], [ -8.525391, 7.710992 ], [ -8.349609, 7.710992 ], [ -8.349609, 8.320212 ], [ -7.910156, 8.581021 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.228437 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.240234, 10.574222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.092166 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.754795 ], [ 0.703125, 8.320212 ], [ 0.439453, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -2.021484, 4.740675 ], [ -2.900391, 5.003394 ], [ -2.812500, 5.441022 ], [ -3.251953, 6.315299 ], [ -2.988281, 7.449624 ], [ -2.636719, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.988281, 11.005904 ], [ -0.791016, 11.005904 ], [ -0.439453, 11.178402 ], [ 0.000000, 11.092166 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.178402 ], [ 0.000000, 11.092166 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.754795 ], [ 0.703125, 8.320212 ], [ 0.439453, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -2.021484, 4.740675 ], [ -2.900391, 5.003394 ], [ -2.812500, 5.441022 ], [ -3.251953, 6.315299 ], [ -2.988281, 7.449624 ], [ -2.636719, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.988281, 11.005904 ], [ -0.791016, 11.005904 ], [ -0.439453, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.179688, -0.966751 ], [ -73.740234, -1.230374 ], [ -73.125000, -2.284551 ], [ -72.333984, -2.372369 ], [ -71.806641, -2.108899 ], [ -71.455078, -2.284551 ], [ -70.839844, -2.196727 ], [ -70.048828, -2.723583 ], [ -70.751953, -3.688855 ], [ -70.400391, -3.688855 ], [ -69.960938, -4.214943 ], [ -70.839844, -4.214943 ], [ -71.015625, -4.390229 ], [ -71.806641, -4.565474 ], [ -72.949219, -5.266008 ], [ -73.037109, -5.703448 ], [ -73.300781, -6.053161 ], [ -73.125000, -6.577303 ], [ -73.740234, -6.839170 ], [ -73.740234, -7.275292 ], [ -74.003906, -7.449624 ], [ -73.652344, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.300781, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.246094, -9.968851 ], [ -71.367188, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.609375, -10.919618 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.994141, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.455078, -17.727759 ], [ -71.542969, -17.308688 ], [ -73.476562, -16.299051 ], [ -76.025391, -14.604847 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.496473 ], [ -77.167969, -12.211180 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -80.947266, -5.615986 ], [ -81.474609, -4.653080 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -80.244141, -3.776559 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.390229 ], [ -79.277344, -4.915833 ], [ -78.662109, -4.477856 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.547988 ], [ -75.585938, -1.493971 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.087891 ], [ -75.146484, 0.000000 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, 0.000000 ], [ -74.443359, -0.527336 ], [ -74.179688, -0.966751 ], [ -73.740234, -1.230374 ], [ -73.125000, -2.284551 ], [ -72.333984, -2.372369 ], [ -71.806641, -2.108899 ], [ -71.455078, -2.284551 ], [ -70.839844, -2.196727 ], [ -70.048828, -2.723583 ], [ -70.751953, -3.688855 ], [ -70.400391, -3.688855 ], [ -69.960938, -4.214943 ], [ -70.839844, -4.214943 ], [ -71.015625, -4.390229 ], [ -71.806641, -4.565474 ], [ -72.949219, -5.266008 ], [ -73.037109, -5.703448 ], [ -73.300781, -6.053161 ], [ -73.125000, -6.577303 ], [ -73.740234, -6.839170 ], [ -73.740234, -7.275292 ], [ -74.003906, -7.449624 ], [ -73.652344, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.300781, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.246094, -9.968851 ], [ -71.367188, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.609375, -10.919618 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.994141, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.455078, -17.727759 ], [ -71.542969, -17.308688 ], [ -73.476562, -16.299051 ], [ -76.025391, -14.604847 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.496473 ], [ -77.167969, -12.211180 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -80.947266, -5.615986 ], [ -81.474609, -4.653080 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -80.244141, -3.776559 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.390229 ], [ -79.277344, -4.915833 ], [ -78.662109, -4.477856 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.547988 ], [ -75.585938, -1.493971 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.087891 ], [ -75.146484, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.589701 ], [ -68.642578, -54.826008 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.203125, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.028022 ], [ -73.300781, -53.956086 ], [ -74.707031, -52.802761 ], [ -73.916016, -53.014783 ], [ -72.509766, -53.696706 ], [ -71.191406, -54.059388 ], [ -70.664062, -53.592505 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -69.169922, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.818359, -20.303418 ], [ -68.291016, -21.453069 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.674847 ], [ -67.060547, -22.917923 ], [ -67.412109, -23.966176 ], [ -68.466797, -24.447150 ], [ -68.466797, -26.115986 ], [ -68.642578, -26.431228 ], [ -68.378906, -26.824071 ], [ -69.082031, -27.449790 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.305561 ], [ -69.960938, -30.297018 ], [ -70.576172, -31.353637 ], [ -70.136719, -33.063924 ], [ -69.873047, -33.211116 ], [ -69.873047, -34.161818 ], [ -70.400391, -35.101934 ], [ -70.400391, -35.960223 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.509726 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.982422, -40.780541 ], [ -71.806641, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.982422, -43.389082 ], [ -71.542969, -43.771094 ], [ -71.806641, -44.150681 ], [ -71.367188, -44.402392 ], [ -71.279297, -44.777936 ], [ -71.718750, -44.964798 ], [ -71.630859, -45.521744 ], [ -71.982422, -46.860191 ], [ -72.509766, -47.694974 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.476562, -49.267805 ], [ -73.388672, -50.345460 ], [ -73.037109, -50.736455 ], [ -72.333984, -50.625073 ], [ -72.333984, -51.399206 ], [ -71.982422, -51.998410 ], [ -69.521484, -52.106505 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.488046 ], [ -73.740234, -52.802761 ], [ -74.970703, -52.214339 ], [ -75.322266, -51.618017 ], [ -75.058594, -51.013755 ], [ -75.498047, -50.345460 ], [ -75.673828, -48.632909 ], [ -75.234375, -47.694974 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.740234, -39.909736 ], [ -73.300781, -39.232253 ], [ -73.564453, -38.272689 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.894531, -33.870416 ], [ -71.455078, -32.398516 ], [ -71.718750, -30.902225 ], [ -71.455078, -30.069094 ], [ -71.542969, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ], [ -69.169922, -18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ], [ -68.642578, -54.826008 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.203125, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.028022 ], [ -73.300781, -53.956086 ], [ -74.707031, -52.802761 ], [ -73.916016, -53.014783 ], [ -72.509766, -53.696706 ], [ -71.191406, -54.059388 ], [ -70.664062, -53.592505 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.169922, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.818359, -20.303418 ], [ -68.291016, -21.453069 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.674847 ], [ -67.060547, -22.917923 ], [ -67.412109, -23.966176 ], [ -68.466797, -24.447150 ], [ -68.466797, -26.115986 ], [ -68.642578, -26.431228 ], [ -68.378906, -26.824071 ], [ -69.082031, -27.449790 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.305561 ], [ -69.960938, -30.297018 ], [ -70.576172, -31.353637 ], [ -70.136719, -33.063924 ], [ -69.873047, -33.211116 ], [ -69.873047, -34.161818 ], [ -70.400391, -35.101934 ], [ -70.400391, -35.960223 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.509726 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.982422, -40.780541 ], [ -71.806641, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.982422, -43.389082 ], [ -71.542969, -43.771094 ], [ -71.806641, -44.150681 ], [ -71.367188, -44.402392 ], [ -71.279297, -44.777936 ], [ -71.718750, -44.964798 ], [ -71.630859, -45.521744 ], [ -71.982422, -46.860191 ], [ -72.509766, -47.694974 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.476562, -49.267805 ], [ -73.388672, -50.345460 ], [ -73.037109, -50.736455 ], [ -72.333984, -50.625073 ], [ -72.333984, -51.399206 ], [ -71.982422, -51.998410 ], [ -69.521484, -52.106505 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.488046 ], [ -73.740234, -52.802761 ], [ -74.970703, -52.214339 ], [ -75.322266, -51.618017 ], [ -75.058594, -51.013755 ], [ -75.498047, -50.345460 ], [ -75.673828, -48.632909 ], [ -75.234375, -47.694974 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.740234, -39.909736 ], [ -73.300781, -39.232253 ], [ -73.564453, -38.272689 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.894531, -33.870416 ], [ -71.455078, -32.398516 ], [ -71.718750, -30.902225 ], [ -71.455078, -30.069094 ], [ -71.542969, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478516, -11.523088 ], [ -64.335938, -12.382928 ], [ -63.281250, -12.554564 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.154376 ], [ -61.787109, -13.410994 ], [ -61.171875, -13.410994 ], [ -60.556641, -13.752725 ], [ -60.292969, -15.029686 ], [ -60.556641, -15.029686 ], [ -60.205078, -16.214675 ], [ -58.271484, -16.299051 ], [ -58.447266, -16.804541 ], [ -58.359375, -17.224758 ], [ -57.744141, -17.476432 ], [ -57.568359, -18.145852 ], [ -57.744141, -18.895893 ], [ -58.007812, -19.394068 ], [ -57.919922, -19.890723 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -59.150391, -19.311143 ], [ -60.117188, -19.311143 ], [ -61.787109, -19.559790 ], [ -62.314453, -20.468189 ], [ -62.314453, -21.043491 ], [ -62.753906, -22.187405 ], [ -62.929688, -22.024546 ], [ -64.072266, -21.943046 ], [ -64.423828, -22.755921 ], [ -65.039062, -22.024546 ], [ -66.357422, -21.779905 ], [ -67.148438, -22.674847 ], [ -67.851562, -22.836946 ], [ -68.291016, -21.453069 ], [ -68.818359, -20.303418 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.169922, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.994141, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.730469, -12.554564 ], [ -69.609375, -10.919618 ], [ -68.291016, -11.005904 ], [ -68.115234, -10.660608 ], [ -66.708984, -9.882275 ], [ -65.390625, -9.709057 ], [ -65.478516, -11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.709057 ], [ -65.478516, -11.523088 ], [ -64.335938, -12.382928 ], [ -63.281250, -12.554564 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.154376 ], [ -61.787109, -13.410994 ], [ -61.171875, -13.410994 ], [ -60.556641, -13.752725 ], [ -60.292969, -15.029686 ], [ -60.556641, -15.029686 ], [ -60.205078, -16.214675 ], [ -58.271484, -16.299051 ], [ -58.447266, -16.804541 ], [ -58.359375, -17.224758 ], [ -57.744141, -17.476432 ], [ -57.568359, -18.145852 ], [ -57.744141, -18.895893 ], [ -58.007812, -19.394068 ], [ -57.919922, -19.890723 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -59.150391, -19.311143 ], [ -60.117188, -19.311143 ], [ -61.787109, -19.559790 ], [ -62.314453, -20.468189 ], [ -62.314453, -21.043491 ], [ -62.753906, -22.187405 ], [ -62.929688, -22.024546 ], [ -64.072266, -21.943046 ], [ -64.423828, -22.755921 ], [ -65.039062, -22.024546 ], [ -66.357422, -21.779905 ], [ -67.148438, -22.674847 ], [ -67.851562, -22.836946 ], [ -68.291016, -21.453069 ], [ -68.818359, -20.303418 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.169922, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.994141, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.730469, -12.554564 ], [ -69.609375, -10.919618 ], [ -68.291016, -11.005904 ], [ -68.115234, -10.660608 ], [ -66.708984, -9.882275 ], [ -65.390625, -9.709057 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.029297, 5.090944 ], [ -60.117188, 4.653080 ], [ -59.853516, 4.477856 ], [ -59.589844, 4.039618 ], [ -59.853516, 3.688855 ], [ -60.029297, 2.811371 ], [ -59.677734, 1.845384 ], [ -59.062500, 1.318243 ], [ -58.623047, 1.318243 ], [ -58.447266, 1.493971 ], [ -57.744141, 1.757537 ], [ -57.392578, 2.021065 ], [ -56.074219, 1.845384 ], [ -55.986328, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.140625, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.613281, 2.372369 ], [ -53.437500, 2.108899 ], [ -52.998047, 2.196727 ], [ -52.558594, 2.547988 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.009766, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.472656, -2.108899 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.811371 ], [ -38.583984, -3.688855 ], [ -37.265625, -4.740675 ], [ -36.474609, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.244141, -5.441022 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.125264 ], [ -38.496094, -12.983148 ], [ -38.759766, -12.983148 ], [ -39.023438, -13.752725 ], [ -38.935547, -15.623037 ], [ -39.287109, -17.811456 ], [ -39.638672, -18.229351 ], [ -39.814453, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.861499 ], [ -41.835938, -22.350076 ], [ -42.011719, -22.917923 ], [ -43.154297, -22.917923 ], [ -44.648438, -23.322080 ], [ -45.439453, -23.725012 ], [ -46.494141, -24.046464 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.691406, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.955078, -28.613459 ], [ -49.658203, -29.152161 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.175612 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.701172, -33.137551 ], [ -53.261719, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.826781 ], [ -57.041016, -30.069094 ], [ -57.656250, -30.145127 ], [ -55.195312, -27.839076 ], [ -53.701172, -26.902477 ], [ -53.701172, -26.115986 ], [ -54.140625, -25.482951 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.527135 ], [ -54.316406, -23.966176 ], [ -54.667969, -23.805450 ], [ -55.107422, -23.966176 ], [ -55.458984, -23.885838 ], [ -55.634766, -22.593726 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.024546 ], [ -56.953125, -22.268764 ], [ -58.007812, -22.024546 ], [ -57.919922, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.919922, -19.890723 ], [ -58.007812, -19.394068 ], [ -57.744141, -18.895893 ], [ -57.568359, -18.145852 ], [ -57.744141, -17.476432 ], [ -58.359375, -17.224758 ], [ -58.447266, -16.804541 ], [ -58.271484, -16.299051 ], [ -60.205078, -16.214675 ], [ -60.556641, -15.029686 ], [ -60.292969, -15.029686 ], [ -60.556641, -13.752725 ], [ -61.171875, -13.410994 ], [ -61.787109, -13.410994 ], [ -62.138672, -13.154376 ], [ -62.841797, -12.983148 ], [ -63.281250, -12.554564 ], [ -64.335938, -12.382928 ], [ -65.478516, -11.523088 ], [ -65.390625, -9.709057 ], [ -66.708984, -9.882275 ], [ -68.115234, -10.660608 ], [ -68.291016, -11.005904 ], [ -69.609375, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.367188, -10.055403 ], [ -72.246094, -9.968851 ], [ -72.597656, -9.449062 ], [ -73.300781, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.652344, -8.407168 ], [ -74.003906, -7.449624 ], [ -73.740234, -7.275292 ], [ -73.740234, -6.839170 ], [ -73.125000, -6.577303 ], [ -73.300781, -6.053161 ], [ -73.037109, -5.703448 ], [ -72.949219, -5.266008 ], [ -71.806641, -4.565474 ], [ -71.015625, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.433594, -1.054628 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.615223 ], [ -69.521484, 0.790990 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.054628 ], [ -69.873047, 1.142502 ], [ -69.873047, 1.757537 ], [ -67.939453, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.324219, 1.757537 ], [ -67.148438, 1.142502 ], [ -66.884766, 1.318243 ], [ -66.357422, 0.790990 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.142502 ], [ -64.248047, 1.493971 ], [ -64.160156, 1.933227 ], [ -63.369141, 2.284551 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.547988 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.864255 ], [ -64.863281, 4.127285 ], [ -64.687500, 4.214943 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -60.996094, 4.565474 ], [ -60.644531, 5.003394 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ], [ -60.029297, 5.090944 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.292969, 5.266008 ], [ -60.029297, 5.090944 ], [ -60.117188, 4.653080 ], [ -59.853516, 4.477856 ], [ -59.589844, 4.039618 ], [ -59.853516, 3.688855 ], [ -60.029297, 2.811371 ], [ -59.677734, 1.845384 ], [ -59.062500, 1.318243 ], [ -58.623047, 1.318243 ], [ -58.447266, 1.493971 ], [ -57.744141, 1.757537 ], [ -57.392578, 2.021065 ], [ -56.074219, 1.845384 ], [ -55.986328, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.140625, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.613281, 2.372369 ], [ -53.437500, 2.108899 ], [ -52.998047, 2.196727 ], [ -52.558594, 2.547988 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.009766, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.472656, -2.108899 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.811371 ], [ -38.583984, -3.688855 ], [ -37.265625, -4.740675 ], [ -36.474609, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.244141, -5.441022 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.125264 ], [ -38.496094, -12.983148 ], [ -38.759766, -12.983148 ], [ -39.023438, -13.752725 ], [ -38.935547, -15.623037 ], [ -39.287109, -17.811456 ], [ -39.638672, -18.229351 ], [ -39.814453, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.861499 ], [ -41.835938, -22.350076 ], [ -42.011719, -22.917923 ], [ -43.154297, -22.917923 ], [ -44.648438, -23.322080 ], [ -45.439453, -23.725012 ], [ -46.494141, -24.046464 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.691406, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.955078, -28.613459 ], [ -49.658203, -29.152161 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.175612 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.701172, -33.137551 ], [ -53.261719, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.826781 ], [ -57.041016, -30.069094 ], [ -57.656250, -30.145127 ], [ -55.195312, -27.839076 ], [ -53.701172, -26.902477 ], [ -53.701172, -26.115986 ], [ -54.140625, -25.482951 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.527135 ], [ -54.316406, -23.966176 ], [ -54.667969, -23.805450 ], [ -55.107422, -23.966176 ], [ -55.458984, -23.885838 ], [ -55.634766, -22.593726 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.024546 ], [ -56.953125, -22.268764 ], [ -58.007812, -22.024546 ], [ -57.919922, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.919922, -19.890723 ], [ -58.007812, -19.394068 ], [ -57.744141, -18.895893 ], [ -57.568359, -18.145852 ], [ -57.744141, -17.476432 ], [ -58.359375, -17.224758 ], [ -58.447266, -16.804541 ], [ -58.271484, -16.299051 ], [ -60.205078, -16.214675 ], [ -60.556641, -15.029686 ], [ -60.292969, -15.029686 ], [ -60.556641, -13.752725 ], [ -61.171875, -13.410994 ], [ -61.787109, -13.410994 ], [ -62.138672, -13.154376 ], [ -62.841797, -12.983148 ], [ -63.281250, -12.554564 ], [ -64.335938, -12.382928 ], [ -65.478516, -11.523088 ], [ -65.390625, -9.709057 ], [ -66.708984, -9.882275 ], [ -68.115234, -10.660608 ], [ -68.291016, -11.005904 ], [ -69.609375, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.367188, -10.055403 ], [ -72.246094, -9.968851 ], [ -72.597656, -9.449062 ], [ -73.300781, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.652344, -8.407168 ], [ -74.003906, -7.449624 ], [ -73.740234, -7.275292 ], [ -73.740234, -6.839170 ], [ -73.125000, -6.577303 ], [ -73.300781, -6.053161 ], [ -73.037109, -5.703448 ], [ -72.949219, -5.266008 ], [ -71.806641, -4.565474 ], [ -71.015625, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.433594, -1.054628 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.615223 ], [ -69.521484, 0.790990 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.054628 ], [ -69.873047, 1.142502 ], [ -69.873047, 1.757537 ], [ -67.939453, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.324219, 1.757537 ], [ -67.148438, 1.142502 ], [ -66.884766, 1.318243 ], [ -66.357422, 0.790990 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.142502 ], [ -64.248047, 1.493971 ], [ -64.160156, 1.933227 ], [ -63.369141, 2.284551 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.547988 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.864255 ], [ -64.863281, 4.127285 ], [ -64.687500, 4.214943 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -60.996094, 4.565474 ], [ -60.644531, 5.003394 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.183594, -19.808054 ], [ -58.183594, -20.138470 ], [ -57.919922, -20.715015 ], [ -58.007812, -22.024546 ], [ -56.953125, -22.268764 ], [ -56.513672, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.593726 ], [ -55.458984, -23.885838 ], [ -55.107422, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -23.966176 ], [ -54.316406, -24.527135 ], [ -54.843750, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.656250, -25.562265 ], [ -57.832031, -25.085599 ], [ -58.886719, -24.766785 ], [ -60.029297, -23.966176 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -62.314453, -21.043491 ], [ -62.314453, -20.468189 ], [ -61.787109, -19.559790 ], [ -60.117188, -19.311143 ], [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.138470 ], [ -57.919922, -20.715015 ], [ -58.007812, -22.024546 ], [ -56.953125, -22.268764 ], [ -56.513672, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.593726 ], [ -55.458984, -23.885838 ], [ -55.107422, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -23.966176 ], [ -54.316406, -24.527135 ], [ -54.843750, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.656250, -25.562265 ], [ -57.832031, -25.085599 ], [ -58.886719, -24.766785 ], [ -60.029297, -23.966176 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -62.314453, -21.043491 ], [ -62.314453, -20.468189 ], [ -61.787109, -19.559790 ], [ -60.117188, -19.311143 ], [ -59.150391, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.763672, -53.800651 ], [ -66.533203, -54.418930 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -66.533203, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.826008 ], [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ] ] ], [ [ [ -65.039062, -22.024546 ], [ -64.423828, -22.755921 ], [ -64.072266, -21.943046 ], [ -62.929688, -22.024546 ], [ -60.908203, -23.805450 ], [ -60.029297, -23.966176 ], [ -58.886719, -24.766785 ], [ -57.832031, -25.085599 ], [ -57.656250, -25.562265 ], [ -58.623047, -27.059126 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.843750, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.482951 ], [ -53.701172, -26.115986 ], [ -53.701172, -26.902477 ], [ -55.195312, -27.839076 ], [ -57.656250, -30.145127 ], [ -58.183594, -32.026706 ], [ -58.183594, -32.990236 ], [ -58.359375, -33.211116 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.865234, -36.879621 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -61.259766, -38.891033 ], [ -62.402344, -38.822591 ], [ -62.138672, -39.368279 ], [ -62.402344, -40.111689 ], [ -62.226562, -40.647304 ], [ -62.753906, -40.979898 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -64.423828, -42.811522 ], [ -65.214844, -43.452919 ], [ -65.390625, -44.465151 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -66.621094, -46.980252 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -68.730469, -50.233152 ], [ -69.169922, -50.680797 ], [ -68.818359, -51.727028 ], [ -68.203125, -52.321911 ], [ -69.521484, -52.106505 ], [ -71.982422, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.625073 ], [ -73.037109, -50.736455 ], [ -73.388672, -50.345460 ], [ -73.476562, -49.267805 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.509766, -47.694974 ], [ -71.982422, -46.860191 ], [ -71.630859, -45.521744 ], [ -71.718750, -44.964798 ], [ -71.279297, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.150681 ], [ -71.542969, -43.771094 ], [ -71.982422, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.806641, -42.032974 ], [ -71.982422, -40.780541 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.191406, -37.509726 ], [ -71.191406, -36.597889 ], [ -70.400391, -35.960223 ], [ -70.400391, -35.101934 ], [ -69.873047, -34.161818 ], [ -69.873047, -33.211116 ], [ -70.136719, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.297018 ], [ -70.048828, -29.305561 ], [ -69.697266, -28.459033 ], [ -69.082031, -27.449790 ], [ -68.378906, -26.824071 ], [ -68.642578, -26.431228 ], [ -68.466797, -26.115986 ], [ -68.466797, -24.447150 ], [ -67.412109, -23.966176 ], [ -67.060547, -22.917923 ], [ -67.148438, -22.674847 ], [ -66.357422, -21.779905 ], [ -65.039062, -22.024546 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ], [ -66.533203, -54.418930 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -66.533203, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.826008 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -66.357422, -21.779905 ], [ -65.039062, -22.024546 ], [ -64.423828, -22.755921 ], [ -64.072266, -21.943046 ], [ -62.929688, -22.024546 ], [ -60.908203, -23.805450 ], [ -60.029297, -23.966176 ], [ -58.886719, -24.766785 ], [ -57.832031, -25.085599 ], [ -57.656250, -25.562265 ], [ -58.623047, -27.059126 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.843750, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.482951 ], [ -53.701172, -26.115986 ], [ -53.701172, -26.902477 ], [ -55.195312, -27.839076 ], [ -57.656250, -30.145127 ], [ -58.183594, -32.026706 ], [ -58.183594, -32.990236 ], [ -58.359375, -33.211116 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.865234, -36.879621 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -61.259766, -38.891033 ], [ -62.402344, -38.822591 ], [ -62.138672, -39.368279 ], [ -62.402344, -40.111689 ], [ -62.226562, -40.647304 ], [ -62.753906, -40.979898 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -64.423828, -42.811522 ], [ -65.214844, -43.452919 ], [ -65.390625, -44.465151 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -66.621094, -46.980252 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -68.730469, -50.233152 ], [ -69.169922, -50.680797 ], [ -68.818359, -51.727028 ], [ -68.203125, -52.321911 ], [ -69.521484, -52.106505 ], [ -71.982422, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.625073 ], [ -73.037109, -50.736455 ], [ -73.388672, -50.345460 ], [ -73.476562, -49.267805 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.509766, -47.694974 ], [ -71.982422, -46.860191 ], [ -71.630859, -45.521744 ], [ -71.718750, -44.964798 ], [ -71.279297, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.150681 ], [ -71.542969, -43.771094 ], [ -71.982422, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.806641, -42.032974 ], [ -71.982422, -40.780541 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.191406, -37.509726 ], [ -71.191406, -36.597889 ], [ -70.400391, -35.960223 ], [ -70.400391, -35.101934 ], [ -69.873047, -34.161818 ], [ -69.873047, -33.211116 ], [ -70.136719, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.297018 ], [ -70.048828, -29.305561 ], [ -69.697266, -28.459033 ], [ -69.082031, -27.449790 ], [ -68.378906, -26.824071 ], [ -68.642578, -26.431228 ], [ -68.466797, -26.115986 ], [ -68.466797, -24.447150 ], [ -67.412109, -23.966176 ], [ -67.060547, -22.917923 ], [ -67.148438, -22.674847 ], [ -66.357422, -21.779905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.826781 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.261719, -32.694866 ], [ -53.701172, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -55.722656, -34.741612 ], [ -56.250000, -34.813803 ], [ -57.216797, -34.379713 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.870416 ], [ -58.359375, -33.211116 ], [ -58.183594, -32.990236 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.145127 ], [ -57.041016, -30.069094 ], [ -55.986328, -30.826781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.041016, -30.069094 ], [ -55.986328, -30.826781 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.261719, -32.694866 ], [ -53.701172, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -55.722656, -34.741612 ], [ -56.250000, -34.813803 ], [ -57.216797, -34.379713 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.870416 ], [ -58.359375, -33.211116 ], [ -58.183594, -32.990236 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.145127 ], [ -57.041016, -30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -51.508742 ], [ -58.095703, -51.890054 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ], [ -58.095703, -51.890054 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.261719, -85.051129 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.231457 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.524614 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ] ] ], [ [ [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ] ] ], [ [ [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ] ] ], [ [ [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.532994 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.261719, -85.051129 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 152.753906, 58.904646 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ] ] ], [ [ [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ] ] ], [ [ [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ] ] ], [ [ [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ] ] ], [ [ [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ] ] ], [ [ [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ] ] ], [ [ [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ] ] ], [ [ [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 152.753906, 58.904646 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ] ] ], [ [ [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ] ] ], [ [ [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ] ] ], [ [ [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ], [ 29.355469, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.685547, 70.170201 ], [ 26.103516, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.911005 ], [ 22.324219, 68.847665 ], [ 21.181641, 69.380313 ], [ 20.566406, 69.131271 ], [ 19.951172, 69.068563 ], [ 19.863281, 68.431513 ], [ 17.929688, 68.592487 ], [ 17.666016, 68.040461 ], [ 16.699219, 68.040461 ], [ 15.029297, 66.196009 ], [ 13.535156, 64.811557 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.091408 ], [ 11.865234, 63.154355 ], [ 11.953125, 61.814664 ], [ 12.568359, 61.312452 ], [ 12.216797, 60.152442 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 5.273438, 59.667741 ], [ 4.921875, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.458984, 64.510643 ], [ 12.304688, 65.910623 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ] ] ], [ [ [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ] ] ], [ [ [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ], [ 29.355469, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.685547, 70.170201 ], [ 26.103516, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.911005 ], [ 22.324219, 68.847665 ], [ 21.181641, 69.380313 ], [ 20.566406, 69.131271 ], [ 19.951172, 69.068563 ], [ 19.863281, 68.431513 ], [ 17.929688, 68.592487 ], [ 17.666016, 68.040461 ], [ 16.699219, 68.040461 ], [ 15.029297, 66.196009 ], [ 13.535156, 64.811557 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.091408 ], [ 11.865234, 63.154355 ], [ 11.953125, 61.814664 ], [ 12.568359, 61.312452 ], [ 12.216797, 60.152442 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 5.273438, 59.667741 ], [ 4.921875, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.458984, 64.510643 ], [ 12.304688, 65.910623 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.986328, 55.379110 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ] ] ], [ [ [ 10.458984, 57.231503 ], [ 10.195312, 56.897004 ], [ 10.283203, 56.656226 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.121060 ], [ 10.283203, 56.218923 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 9.228516, 54.876607 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ], [ 10.458984, 57.231503 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.986328, 55.379110 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.458984, 57.231503 ], [ 10.195312, 56.897004 ], [ 10.283203, 56.656226 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.121060 ], [ 10.283203, 56.218923 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 9.228516, 54.876607 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.466797, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 17.753906, 60.673179 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.088515 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.568359, 56.316537 ], [ 11.777344, 57.468589 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.216797, 60.152442 ], [ 12.568359, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.865234, 63.154355 ], [ 12.568359, 64.091408 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.811557 ], [ 15.029297, 66.196009 ], [ 16.699219, 68.040461 ], [ 17.666016, 68.040461 ], [ 17.929688, 68.592487 ], [ 19.863281, 68.431513 ], [ 19.951172, 69.068563 ], [ 20.566406, 69.131271 ], [ 23.466797, 67.941650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 69.131271 ], [ 23.466797, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 17.753906, 60.673179 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.088515 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.568359, 56.316537 ], [ 11.777344, 57.468589 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.216797, 60.152442 ], [ 12.568359, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.865234, 63.154355 ], [ 12.568359, 64.091408 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.811557 ], [ 15.029297, 66.196009 ], [ 16.699219, 68.040461 ], [ 17.666016, 68.040461 ], [ 17.929688, 68.592487 ], [ 19.863281, 68.431513 ], [ 19.951172, 69.068563 ], [ 20.566406, 69.131271 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.855469, 53.488046 ], [ 7.031250, 53.173119 ], [ 6.767578, 52.268157 ], [ 6.503906, 51.890054 ], [ 5.976562, 51.890054 ], [ 6.152344, 50.847573 ], [ 5.537109, 51.069017 ], [ 4.921875, 51.508742 ], [ 4.042969, 51.289406 ], [ 3.251953, 51.399206 ], [ 3.779297, 51.672555 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.173119 ], [ 6.767578, 52.268157 ], [ 6.503906, 51.890054 ], [ 5.976562, 51.890054 ], [ 6.152344, 50.847573 ], [ 5.537109, 51.069017 ], [ 4.921875, 51.508742 ], [ 4.042969, 51.289406 ], [ 3.251953, 51.399206 ], [ 3.779297, 51.672555 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.537109, 51.069017 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.176898 ], [ 5.712891, 50.120578 ], [ 5.625000, 49.553726 ], [ 4.746094, 50.007739 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.042969, 51.289406 ], [ 4.921875, 51.508742 ], [ 5.537109, 51.069017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 5.537109, 51.069017 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.176898 ], [ 5.712891, 50.120578 ], [ 5.625000, 49.553726 ], [ 4.746094, 50.007739 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.042969, 51.289406 ], [ 4.921875, 51.508742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.951220 ], [ 6.152344, 49.496675 ], [ 5.888672, 49.496675 ], [ 5.625000, 49.553726 ], [ 5.712891, 50.120578 ], [ 5.976562, 50.176898 ], [ 6.240234, 49.951220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.176898 ], [ 6.240234, 49.951220 ], [ 6.152344, 49.496675 ], [ 5.888672, 49.496675 ], [ 5.625000, 49.553726 ], [ 5.712891, 50.120578 ], [ 5.976562, 50.176898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.622978 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.062500, 53.800651 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.014783 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.781436 ], [ 14.941406, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.238281, 51.124213 ], [ 13.974609, 50.958427 ], [ 13.271484, 50.736455 ], [ 12.919922, 50.513427 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.535156, 48.922499 ], [ 13.183594, 48.458352 ], [ 12.832031, 48.341646 ], [ 13.007812, 47.694974 ], [ 12.919922, 47.517201 ], [ 12.568359, 47.694974 ], [ 12.128906, 47.754098 ], [ 11.425781, 47.576526 ], [ 10.458984, 47.576526 ], [ 10.371094, 47.338823 ], [ 9.843750, 47.635784 ], [ 9.580078, 47.576526 ], [ 8.437500, 47.872144 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.591797, 49.210420 ], [ 6.152344, 49.496675 ], [ 6.240234, 49.951220 ], [ 5.976562, 50.176898 ], [ 6.152344, 50.847573 ], [ 5.976562, 51.890054 ], [ 6.503906, 51.890054 ], [ 6.767578, 52.268157 ], [ 7.031250, 53.173119 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.228516, 54.876607 ], [ 9.843750, 55.028022 ], [ 9.931641, 54.622978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 55.028022 ], [ 9.931641, 54.622978 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.062500, 53.800651 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.014783 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.781436 ], [ 14.941406, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.238281, 51.124213 ], [ 13.974609, 50.958427 ], [ 13.271484, 50.736455 ], [ 12.919922, 50.513427 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.535156, 48.922499 ], [ 13.183594, 48.458352 ], [ 12.832031, 48.341646 ], [ 13.007812, 47.694974 ], [ 12.919922, 47.517201 ], [ 12.568359, 47.694974 ], [ 12.128906, 47.754098 ], [ 11.425781, 47.576526 ], [ 10.458984, 47.576526 ], [ 10.371094, 47.338823 ], [ 9.843750, 47.635784 ], [ 9.580078, 47.576526 ], [ 8.437500, 47.872144 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.591797, 49.210420 ], [ 6.152344, 49.496675 ], [ 6.240234, 49.951220 ], [ 5.976562, 50.176898 ], [ 6.152344, 50.847573 ], [ 5.976562, 51.890054 ], [ 6.503906, 51.890054 ], [ 6.767578, 52.268157 ], [ 7.031250, 53.173119 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.228516, 54.876607 ], [ 9.843750, 55.028022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.576526 ], [ 9.404297, 47.159840 ], [ 9.931641, 46.980252 ], [ 10.371094, 46.920255 ], [ 10.283203, 46.498392 ], [ 9.843750, 46.316584 ], [ 9.140625, 46.498392 ], [ 8.964844, 46.073231 ], [ 8.437500, 46.012224 ], [ 8.261719, 46.195042 ], [ 7.734375, 45.828799 ], [ 7.207031, 45.828799 ], [ 6.767578, 46.012224 ], [ 6.416016, 46.437857 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.739861 ], [ 6.767578, 47.338823 ], [ 6.679688, 47.576526 ], [ 7.119141, 47.457809 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.437500, 47.872144 ], [ 9.580078, 47.576526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 47.872144 ], [ 9.580078, 47.576526 ], [ 9.404297, 47.159840 ], [ 9.931641, 46.980252 ], [ 10.371094, 46.920255 ], [ 10.283203, 46.498392 ], [ 9.843750, 46.316584 ], [ 9.140625, 46.498392 ], [ 8.964844, 46.073231 ], [ 8.437500, 46.012224 ], [ 8.261719, 46.195042 ], [ 7.734375, 45.828799 ], [ 7.207031, 45.828799 ], [ 6.767578, 46.012224 ], [ 6.416016, 46.437857 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.739861 ], [ 6.767578, 47.338823 ], [ 6.679688, 47.576526 ], [ 7.119141, 47.457809 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.437500, 47.872144 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.792047 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.457504 ], [ 16.699219, 50.233152 ], [ 16.787109, 50.513427 ], [ 17.490234, 50.401515 ], [ 17.578125, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.808594, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.105469, 49.325122 ], [ 18.017578, 49.095452 ], [ 17.841797, 48.922499 ], [ 17.490234, 48.806863 ], [ 17.050781, 48.864715 ], [ 16.875000, 48.632909 ], [ 16.435547, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.205078, 49.095452 ], [ 14.853516, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.535156, 48.922499 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 12.919922, 50.513427 ], [ 13.271484, 50.736455 ], [ 13.974609, 50.958427 ], [ 14.238281, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.941406, 51.124213 ], [ 15.468750, 50.792047 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.941406, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.457504 ], [ 16.699219, 50.233152 ], [ 16.787109, 50.513427 ], [ 17.490234, 50.401515 ], [ 17.578125, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.808594, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.105469, 49.325122 ], [ 18.017578, 49.095452 ], [ 17.841797, 48.922499 ], [ 17.490234, 48.806863 ], [ 17.050781, 48.864715 ], [ 16.875000, 48.632909 ], [ 16.435547, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.205078, 49.095452 ], [ 14.853516, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.535156, 48.922499 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 12.919922, 50.513427 ], [ 13.271484, 50.736455 ], [ 13.974609, 50.958427 ], [ 14.238281, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.941406, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.544922, 54.724620 ], [ 18.632812, 54.470038 ], [ 20.830078, 54.316523 ], [ 22.675781, 54.367759 ], [ 23.203125, 54.265224 ], [ 23.730469, 53.120405 ], [ 23.730469, 52.696361 ], [ 23.115234, 52.536273 ], [ 23.466797, 52.052490 ], [ 23.466797, 51.618017 ], [ 23.994141, 50.736455 ], [ 23.906250, 50.457504 ], [ 23.378906, 50.345460 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.533203, 49.496675 ], [ 20.830078, 49.382373 ], [ 20.390625, 49.439557 ], [ 19.775391, 49.267805 ], [ 19.248047, 49.610710 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.578125, 50.064192 ], [ 17.490234, 50.401515 ], [ 16.787109, 50.513427 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.457504 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.792047 ], [ 14.941406, 51.124213 ], [ 14.589844, 51.781436 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 53.014783 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ], [ 18.544922, 54.724620 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 54.876607 ], [ 18.544922, 54.724620 ], [ 18.632812, 54.470038 ], [ 20.830078, 54.316523 ], [ 22.675781, 54.367759 ], [ 23.203125, 54.265224 ], [ 23.730469, 53.120405 ], [ 23.730469, 52.696361 ], [ 23.115234, 52.536273 ], [ 23.466797, 52.052490 ], [ 23.466797, 51.618017 ], [ 23.994141, 50.736455 ], [ 23.906250, 50.457504 ], [ 23.378906, 50.345460 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.533203, 49.496675 ], [ 20.830078, 49.382373 ], [ 20.390625, 49.439557 ], [ 19.775391, 49.267805 ], [ 19.248047, 49.610710 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.578125, 50.064192 ], [ 17.490234, 50.401515 ], [ 16.787109, 50.513427 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.457504 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.792047 ], [ 14.941406, 51.124213 ], [ 14.589844, 51.781436 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 53.014783 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 48.748945 ], [ 16.435547, 48.806863 ], [ 16.875000, 48.632909 ], [ 16.875000, 48.516604 ], [ 16.962891, 48.166085 ], [ 16.875000, 47.754098 ], [ 16.259766, 47.754098 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.739861 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.304688, 46.800059 ], [ 12.128906, 47.159840 ], [ 11.162109, 46.980252 ], [ 10.986328, 46.800059 ], [ 9.931641, 46.980252 ], [ 9.404297, 47.159840 ], [ 9.580078, 47.576526 ], [ 9.843750, 47.635784 ], [ 10.371094, 47.338823 ], [ 10.458984, 47.576526 ], [ 11.425781, 47.576526 ], [ 12.128906, 47.754098 ], [ 12.568359, 47.694974 ], [ 12.919922, 47.517201 ], [ 13.007812, 47.694974 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.458352 ], [ 13.535156, 48.922499 ], [ 14.326172, 48.574790 ], [ 14.853516, 48.980217 ], [ 15.205078, 49.095452 ], [ 15.996094, 48.748945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.205078, 49.095452 ], [ 15.996094, 48.748945 ], [ 16.435547, 48.806863 ], [ 16.875000, 48.632909 ], [ 16.875000, 48.516604 ], [ 16.962891, 48.166085 ], [ 16.875000, 47.754098 ], [ 16.259766, 47.754098 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.739861 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.304688, 46.800059 ], [ 12.128906, 47.159840 ], [ 11.162109, 46.980252 ], [ 10.986328, 46.800059 ], [ 9.931641, 46.980252 ], [ 9.404297, 47.159840 ], [ 9.580078, 47.576526 ], [ 9.843750, 47.635784 ], [ 10.371094, 47.338823 ], [ 10.458984, 47.576526 ], [ 11.425781, 47.576526 ], [ 12.128906, 47.754098 ], [ 12.568359, 47.694974 ], [ 12.919922, 47.517201 ], [ 13.007812, 47.694974 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.458352 ], [ 13.535156, 48.922499 ], [ 14.326172, 48.574790 ], [ 14.853516, 48.980217 ], [ 15.205078, 49.095452 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.890008 ], [ 15.292969, 45.767523 ], [ 15.292969, 45.460131 ], [ 14.853516, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.326172, 45.521744 ], [ 13.710938, 45.521744 ], [ 13.886719, 45.644768 ], [ 13.623047, 46.073231 ], [ 13.798828, 46.558860 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.739861 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ], [ 16.523438, 46.558860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.558860 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.890008 ], [ 15.292969, 45.767523 ], [ 15.292969, 45.460131 ], [ 14.853516, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.326172, 45.521744 ], [ 13.710938, 45.521744 ], [ 13.886719, 45.644768 ], [ 13.623047, 46.073231 ], [ 13.798828, 46.558860 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.739861 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.117188, 37.509726 ], [ 15.292969, 37.160317 ], [ 15.029297, 36.668419 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.468750, 38.272689 ], [ 15.117188, 37.509726 ] ] ], [ [ [ 12.304688, 46.800059 ], [ 13.798828, 46.558860 ], [ 13.623047, 46.073231 ], [ 13.886719, 45.644768 ], [ 13.095703, 45.767523 ], [ 12.304688, 45.398450 ], [ 12.304688, 44.902578 ], [ 12.216797, 44.653024 ], [ 12.568359, 44.150681 ], [ 13.447266, 43.644026 ], [ 13.974609, 42.811522 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.083984, 41.771312 ], [ 15.820312, 41.574361 ], [ 17.490234, 40.913513 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.666016, 40.313043 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.611328, 38.891033 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.820312, 38.754083 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 14.941406, 40.178873 ], [ 14.677734, 40.647304 ], [ 13.974609, 40.847060 ], [ 13.623047, 41.244772 ], [ 12.832031, 41.310824 ], [ 11.162109, 42.358544 ], [ 10.458984, 42.940339 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 8.349609, 44.276671 ], [ 7.822266, 43.771094 ], [ 7.382812, 43.707594 ], [ 7.470703, 44.150681 ], [ 6.943359, 44.276671 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.336702 ], [ 6.767578, 45.767523 ], [ 6.767578, 46.012224 ], [ 7.207031, 45.828799 ], [ 7.734375, 45.828799 ], [ 8.261719, 46.195042 ], [ 8.437500, 46.012224 ], [ 8.964844, 46.073231 ], [ 9.140625, 46.498392 ], [ 9.843750, 46.316584 ], [ 10.283203, 46.498392 ], [ 10.371094, 46.920255 ], [ 10.986328, 46.800059 ], [ 11.162109, 46.980252 ], [ 12.128906, 47.159840 ], [ 12.304688, 46.800059 ] ] ], [ [ [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.300299 ], [ 8.789062, 38.959409 ], [ 8.349609, 39.232253 ], [ 8.349609, 40.380028 ], [ 8.085938, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.117188, 37.509726 ], [ 15.292969, 37.160317 ], [ 15.029297, 36.668419 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 12.128906, 47.159840 ], [ 12.304688, 46.800059 ], [ 13.798828, 46.558860 ], [ 13.623047, 46.073231 ], [ 13.886719, 45.644768 ], [ 13.095703, 45.767523 ], [ 12.304688, 45.398450 ], [ 12.304688, 44.902578 ], [ 12.216797, 44.653024 ], [ 12.568359, 44.150681 ], [ 13.447266, 43.644026 ], [ 13.974609, 42.811522 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.083984, 41.771312 ], [ 15.820312, 41.574361 ], [ 17.490234, 40.913513 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.666016, 40.313043 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.611328, 38.891033 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.820312, 38.754083 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 14.941406, 40.178873 ], [ 14.677734, 40.647304 ], [ 13.974609, 40.847060 ], [ 13.623047, 41.244772 ], [ 12.832031, 41.310824 ], [ 11.162109, 42.358544 ], [ 10.458984, 42.940339 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 8.349609, 44.276671 ], [ 7.822266, 43.771094 ], [ 7.382812, 43.707594 ], [ 7.470703, 44.150681 ], [ 6.943359, 44.276671 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.336702 ], [ 6.767578, 45.767523 ], [ 6.767578, 46.012224 ], [ 7.207031, 45.828799 ], [ 7.734375, 45.828799 ], [ 8.261719, 46.195042 ], [ 8.437500, 46.012224 ], [ 8.964844, 46.073231 ], [ 9.140625, 46.498392 ], [ 9.843750, 46.316584 ], [ 10.283203, 46.498392 ], [ 10.371094, 46.920255 ], [ 10.986328, 46.800059 ], [ 11.162109, 46.980252 ], [ 12.128906, 47.159840 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.300299 ], [ 8.789062, 38.959409 ], [ 8.349609, 39.232253 ], [ 8.349609, 40.380028 ], [ 8.085938, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.140625, 41.244772 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 46.012224 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.213004 ], [ 16.259766, 45.026950 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.666016, 43.068888 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.875000, 43.261206 ], [ 15.996094, 43.516689 ], [ 15.117188, 44.276671 ], [ 15.292969, 44.339565 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.853516, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.767523 ], [ 15.644531, 45.890008 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.213004 ], [ 16.259766, 45.026950 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.666016, 43.068888 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.875000, 43.261206 ], [ 15.996094, 43.516689 ], [ 15.117188, 44.276671 ], [ 15.292969, 44.339565 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.853516, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.767523 ], [ 15.644531, 45.890008 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 48.341646 ], [ 22.060547, 48.458352 ], [ 22.587891, 48.166085 ], [ 22.675781, 47.931066 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.511719, 46.195042 ], [ 18.369141, 45.767523 ], [ 17.578125, 46.012224 ], [ 16.523438, 46.558860 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.259766, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.962891, 48.166085 ], [ 17.841797, 47.813155 ], [ 18.632812, 47.931066 ], [ 18.720703, 48.107431 ], [ 20.214844, 48.341646 ], [ 20.390625, 48.574790 ], [ 20.742188, 48.632909 ], [ 21.796875, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 48.632909 ], [ 21.796875, 48.341646 ], [ 22.060547, 48.458352 ], [ 22.587891, 48.166085 ], [ 22.675781, 47.931066 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.511719, 46.195042 ], [ 18.369141, 45.767523 ], [ 17.578125, 46.012224 ], [ 16.523438, 46.558860 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.259766, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.962891, 48.166085 ], [ 17.841797, 47.813155 ], [ 18.632812, 47.931066 ], [ 18.720703, 48.107431 ], [ 20.214844, 48.341646 ], [ 20.390625, 48.574790 ], [ 20.742188, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 49.267805 ], [ 20.390625, 49.439557 ], [ 20.830078, 49.382373 ], [ 21.533203, 49.496675 ], [ 22.500000, 49.095452 ], [ 22.060547, 48.458352 ], [ 21.796875, 48.341646 ], [ 20.742188, 48.632909 ], [ 20.390625, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.687500, 48.224673 ], [ 19.599609, 48.283193 ], [ 18.720703, 48.107431 ], [ 18.632812, 47.931066 ], [ 17.841797, 47.813155 ], [ 17.402344, 47.872144 ], [ 16.962891, 48.166085 ], [ 16.875000, 48.516604 ], [ 17.050781, 48.864715 ], [ 17.490234, 48.806863 ], [ 17.841797, 48.922499 ], [ 18.017578, 49.095452 ], [ 18.105469, 49.325122 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.248047, 49.610710 ], [ 19.775391, 49.267805 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.248047, 49.610710 ], [ 19.775391, 49.267805 ], [ 20.390625, 49.439557 ], [ 20.830078, 49.382373 ], [ 21.533203, 49.496675 ], [ 22.500000, 49.095452 ], [ 22.060547, 48.458352 ], [ 21.796875, 48.341646 ], [ 20.742188, 48.632909 ], [ 20.390625, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.687500, 48.224673 ], [ 19.599609, 48.283193 ], [ 18.720703, 48.107431 ], [ 18.632812, 47.931066 ], [ 17.841797, 47.813155 ], [ 17.402344, 47.872144 ], [ 16.962891, 48.166085 ], [ 16.875000, 48.516604 ], [ 17.050781, 48.864715 ], [ 17.490234, 48.806863 ], [ 17.841797, 48.922499 ], [ 18.017578, 49.095452 ], [ 18.105469, 49.325122 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.248047, 49.610710 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.465151 ], [ 19.599609, 44.087585 ], [ 19.423828, 43.580391 ], [ 18.632812, 43.261206 ], [ 18.544922, 42.682435 ], [ 17.666016, 43.068888 ], [ 17.226562, 43.452919 ], [ 16.435547, 44.087585 ], [ 15.732422, 44.840291 ], [ 15.908203, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.274886 ], [ 17.841797, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.274886 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.465151 ], [ 19.599609, 44.087585 ], [ 19.423828, 43.580391 ], [ 18.632812, 43.261206 ], [ 18.544922, 42.682435 ], [ 17.666016, 43.068888 ], [ 17.226562, 43.452919 ], [ 16.435547, 44.087585 ], [ 15.732422, 44.840291 ], [ 15.908203, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.274886 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.553080 ], [ 20.039062, 42.617791 ], [ 20.478516, 42.228517 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.917969, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.566406, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.977120 ], [ 19.335938, 40.313043 ], [ 19.248047, 40.780541 ], [ 19.511719, 41.771312 ], [ 19.248047, 42.228517 ], [ 19.687500, 42.747012 ], [ 19.775391, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.747012 ], [ 19.775391, 42.553080 ], [ 20.039062, 42.617791 ], [ 20.478516, 42.228517 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.917969, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.566406, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.977120 ], [ 19.335938, 40.313043 ], [ 19.248047, 40.780541 ], [ 19.511719, 41.771312 ], [ 19.248047, 42.228517 ], [ 19.687500, 42.747012 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 42.032974 ], [ 22.939453, 41.376809 ], [ 22.587891, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.621094, 40.979898 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.654297, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.269531, 42.228517 ], [ 22.324219, 42.358544 ], [ 22.851562, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.358544 ], [ 22.851562, 42.032974 ], [ 22.939453, 41.376809 ], [ 22.587891, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.621094, 40.979898 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.654297, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.269531, 42.228517 ], [ 22.324219, 42.358544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.388672, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.003906, 66.964476 ], [ 30.146484, 65.838776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 29.970703, 63.587675 ], [ 31.464844, 62.875188 ], [ 31.113281, 62.390369 ], [ 28.037109, 60.543775 ], [ 26.191406, 60.457218 ], [ 24.433594, 60.064840 ], [ 22.851562, 59.888937 ], [ 22.236328, 60.413852 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.923542 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.818359, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.466797, 67.941650 ], [ 20.566406, 69.131271 ], [ 21.181641, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.911005 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.103516, 69.839622 ], [ 27.685547, 70.170201 ], [ 29.003906, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.685547, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.388672, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.003906, 66.964476 ], [ 30.146484, 65.838776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 29.970703, 63.587675 ], [ 31.464844, 62.875188 ], [ 31.113281, 62.390369 ], [ 28.037109, 60.543775 ], [ 26.191406, 60.457218 ], [ 24.433594, 60.064840 ], [ 22.851562, 59.888937 ], [ 22.236328, 60.413852 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.923542 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.818359, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.466797, 67.941650 ], [ 20.566406, 69.131271 ], [ 21.181641, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.911005 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.103516, 69.839622 ], [ 27.685547, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.279043 ], [ 27.773438, 56.800878 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.488281, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.785156, 56.413901 ], [ 23.818359, 56.316537 ], [ 22.148438, 56.365250 ], [ 21.005859, 56.072035 ], [ 21.005859, 56.800878 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 25.136719, 57.984808 ], [ 26.455078, 57.515823 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 26.455078, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.279043 ], [ 27.773438, 56.800878 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.488281, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.785156, 56.413901 ], [ 23.818359, 56.316537 ], [ 22.148438, 56.365250 ], [ 21.005859, 56.072035 ], [ 21.005859, 56.800878 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 59.489726 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.333984, 58.768200 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.515823 ], [ 26.455078, 57.515823 ], [ 25.136719, 57.984808 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 24.521484, 59.489726 ], [ 25.839844, 59.623325 ], [ 26.894531, 59.489726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.894531, 59.489726 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.333984, 58.768200 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.515823 ], [ 26.455078, 57.515823 ], [ 25.136719, 57.984808 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 24.521484, 59.489726 ], [ 25.839844, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.170023 ], [ 25.488281, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.542969, 55.178868 ], [ 25.751953, 54.876607 ], [ 25.488281, 54.316523 ], [ 24.433594, 53.956086 ], [ 23.466797, 53.956086 ], [ 23.203125, 54.265224 ], [ 22.675781, 54.367759 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.876607 ], [ 22.236328, 55.028022 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 22.148438, 56.365250 ], [ 23.818359, 56.316537 ], [ 24.785156, 56.413901 ], [ 24.960938, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 56.413901 ], [ 24.960938, 56.170023 ], [ 25.488281, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.542969, 55.178868 ], [ 25.751953, 54.876607 ], [ 25.488281, 54.316523 ], [ 24.433594, 53.956086 ], [ 23.466797, 53.956086 ], [ 23.203125, 54.265224 ], [ 22.675781, 54.367759 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.876607 ], [ 22.236328, 55.028022 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 22.148438, 56.365250 ], [ 23.818359, 56.316537 ], [ 24.785156, 56.413901 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.825973 ], [ 30.849609, 55.578345 ], [ 30.937500, 55.128649 ], [ 30.673828, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.728516, 54.007769 ], [ 31.728516, 53.800651 ], [ 32.343750, 53.644638 ], [ 32.607422, 53.383328 ], [ 32.255859, 53.173119 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.120405 ], [ 31.728516, 52.106505 ], [ 30.849609, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.498047, 51.344339 ], [ 30.146484, 51.454007 ], [ 29.179688, 51.399206 ], [ 28.916016, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.212891, 51.618017 ], [ 27.421875, 51.618017 ], [ 26.279297, 51.835778 ], [ 25.312500, 51.944265 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.466797, 51.618017 ], [ 23.466797, 52.052490 ], [ 23.115234, 52.536273 ], [ 23.730469, 52.696361 ], [ 23.730469, 53.120405 ], [ 23.466797, 53.488046 ], [ 23.466797, 53.956086 ], [ 24.433594, 53.956086 ], [ 25.488281, 54.316523 ], [ 25.751953, 54.876607 ], [ 26.542969, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.125000, 56.170023 ], [ 29.179688, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 56.170023 ], [ 29.179688, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.825973 ], [ 30.849609, 55.578345 ], [ 30.937500, 55.128649 ], [ 30.673828, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.728516, 54.007769 ], [ 31.728516, 53.800651 ], [ 32.343750, 53.644638 ], [ 32.607422, 53.383328 ], [ 32.255859, 53.173119 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.120405 ], [ 31.728516, 52.106505 ], [ 30.849609, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.498047, 51.344339 ], [ 30.146484, 51.454007 ], [ 29.179688, 51.399206 ], [ 28.916016, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.212891, 51.618017 ], [ 27.421875, 51.618017 ], [ 26.279297, 51.835778 ], [ 25.312500, 51.944265 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.466797, 51.618017 ], [ 23.466797, 52.052490 ], [ 23.115234, 52.536273 ], [ 23.730469, 52.696361 ], [ 23.730469, 53.120405 ], [ 23.466797, 53.488046 ], [ 23.466797, 53.956086 ], [ 24.433594, 53.956086 ], [ 25.488281, 54.316523 ], [ 25.751953, 54.876607 ], [ 26.542969, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.125000, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.166085 ], [ 28.125000, 46.860191 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.521744 ], [ 28.652344, 45.336702 ], [ 29.091797, 45.521744 ], [ 29.531250, 45.336702 ], [ 29.619141, 45.089036 ], [ 29.091797, 44.840291 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.158203, 44.213710 ], [ 26.015625, 43.961191 ], [ 25.488281, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.412109, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.715514 ], [ 22.060547, 44.527843 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.213004 ], [ 20.830078, 45.460131 ], [ 20.742188, 45.767523 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.931066 ], [ 23.115234, 48.107431 ], [ 24.345703, 47.989922 ], [ 24.785156, 47.754098 ], [ 25.136719, 47.931066 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.894531, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 48.224673 ], [ 26.894531, 48.166085 ], [ 28.125000, 46.860191 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.521744 ], [ 28.652344, 45.336702 ], [ 29.091797, 45.521744 ], [ 29.531250, 45.336702 ], [ 29.619141, 45.089036 ], [ 29.091797, 44.840291 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.158203, 44.213710 ], [ 26.015625, 43.961191 ], [ 25.488281, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.412109, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.715514 ], [ 22.060547, 44.527843 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.213004 ], [ 20.830078, 45.460131 ], [ 20.742188, 45.767523 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.931066 ], [ 23.115234, 48.107431 ], [ 24.345703, 47.989922 ], [ 24.785156, 47.754098 ], [ 25.136719, 47.931066 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.488281, 43.707594 ], [ 26.015625, 43.961191 ], [ 27.158203, 44.213710 ], [ 27.949219, 43.834527 ], [ 28.476562, 43.707594 ], [ 28.037109, 43.325178 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 27.070312, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.376809 ], [ 25.136719, 41.244772 ], [ 24.433594, 41.640078 ], [ 23.642578, 41.310824 ], [ 22.939453, 41.376809 ], [ 22.851562, 42.032974 ], [ 22.324219, 42.358544 ], [ 22.500000, 42.488302 ], [ 22.412109, 42.617791 ], [ 22.587891, 42.940339 ], [ 22.939453, 43.261206 ], [ 22.500000, 43.644026 ], [ 22.324219, 44.024422 ], [ 22.587891, 44.276671 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.587891, 44.276671 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.488281, 43.707594 ], [ 26.015625, 43.961191 ], [ 27.158203, 44.213710 ], [ 27.949219, 43.834527 ], [ 28.476562, 43.707594 ], [ 28.037109, 43.325178 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 27.070312, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.376809 ], [ 25.136719, 41.244772 ], [ 24.433594, 41.640078 ], [ 23.642578, 41.310824 ], [ 22.939453, 41.376809 ], [ 22.851562, 42.032974 ], [ 22.324219, 42.358544 ], [ 22.500000, 42.488302 ], [ 22.412109, 42.617791 ], [ 22.587891, 42.940339 ], [ 22.939453, 43.261206 ], [ 22.500000, 43.644026 ], [ 22.324219, 44.024422 ], [ 22.587891, 44.276671 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.212891, 48.166085 ], [ 28.652344, 48.166085 ], [ 29.091797, 47.872144 ], [ 29.003906, 47.517201 ], [ 29.355469, 47.398349 ], [ 29.531250, 46.980252 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.558860 ], [ 29.970703, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.091797, 46.437857 ], [ 29.003906, 46.558860 ], [ 28.828125, 46.498392 ], [ 28.916016, 46.316584 ], [ 28.476562, 45.644768 ], [ 28.212891, 45.521744 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.860191 ], [ 26.894531, 48.166085 ], [ 26.542969, 48.224673 ], [ 26.806641, 48.400032 ], [ 27.509766, 48.516604 ], [ 28.212891, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.516604 ], [ 28.212891, 48.166085 ], [ 28.652344, 48.166085 ], [ 29.091797, 47.872144 ], [ 29.003906, 47.517201 ], [ 29.355469, 47.398349 ], [ 29.531250, 46.980252 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.558860 ], [ 29.970703, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.091797, 46.437857 ], [ 29.003906, 46.558860 ], [ 28.828125, 46.498392 ], [ 28.916016, 46.316584 ], [ 28.476562, 45.644768 ], [ 28.212891, 45.521744 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.860191 ], [ 26.894531, 48.166085 ], [ 26.542969, 48.224673 ], [ 26.806641, 48.400032 ], [ 27.509766, 48.516604 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.564453, 51.454007 ], [ 28.916016, 51.618017 ], [ 29.179688, 51.399206 ], [ 30.146484, 51.454007 ], [ 30.498047, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.849609, 52.052490 ], [ 31.728516, 52.106505 ], [ 32.080078, 52.106505 ], [ 32.343750, 52.321911 ], [ 32.695312, 52.268157 ], [ 33.750000, 52.375599 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.618017 ], [ 34.189453, 51.289406 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.792047 ], [ 35.332031, 50.625073 ], [ 36.562500, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.951220 ], [ 38.583984, 49.951220 ], [ 39.990234, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.814453, 48.283193 ], [ 39.726562, 47.931066 ], [ 38.759766, 47.872144 ], [ 38.232422, 47.576526 ], [ 38.144531, 47.159840 ], [ 37.353516, 47.040182 ], [ 36.738281, 46.739861 ], [ 35.771484, 46.679594 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 35.507812, 45.460131 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 35.156250, 44.964798 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.890008 ], [ 33.222656, 46.134170 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 30.322266, 46.073231 ], [ 29.531250, 45.336702 ], [ 29.091797, 45.521744 ], [ 28.652344, 45.336702 ], [ 28.212891, 45.521744 ], [ 28.476562, 45.644768 ], [ 28.916016, 46.316584 ], [ 28.828125, 46.498392 ], [ 29.003906, 46.558860 ], [ 29.091797, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.970703, 46.437857 ], [ 29.794922, 46.558860 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.980252 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.166085 ], [ 28.212891, 48.166085 ], [ 27.509766, 48.516604 ], [ 26.806641, 48.400032 ], [ 26.542969, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.136719, 47.931066 ], [ 24.785156, 47.754098 ], [ 24.345703, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.931066 ], [ 22.587891, 48.166085 ], [ 22.060547, 48.458352 ], [ 22.500000, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.378906, 50.345460 ], [ 23.906250, 50.457504 ], [ 23.994141, 50.736455 ], [ 23.466797, 51.618017 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.944265 ], [ 26.279297, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.618017 ], [ 28.564453, 51.454007 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.375599 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.618017 ], [ 34.189453, 51.289406 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.792047 ], [ 35.332031, 50.625073 ], [ 36.562500, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.951220 ], [ 38.583984, 49.951220 ], [ 39.990234, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.814453, 48.283193 ], [ 39.726562, 47.931066 ], [ 38.759766, 47.872144 ], [ 38.232422, 47.576526 ], [ 38.144531, 47.159840 ], [ 37.353516, 47.040182 ], [ 36.738281, 46.739861 ], [ 35.771484, 46.679594 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 35.507812, 45.460131 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 35.156250, 44.964798 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.890008 ], [ 33.222656, 46.134170 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 30.322266, 46.073231 ], [ 29.531250, 45.336702 ], [ 29.091797, 45.521744 ], [ 28.652344, 45.336702 ], [ 28.212891, 45.521744 ], [ 28.476562, 45.644768 ], [ 28.916016, 46.316584 ], [ 28.828125, 46.498392 ], [ 29.003906, 46.558860 ], [ 29.091797, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.970703, 46.437857 ], [ 29.794922, 46.558860 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.980252 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.166085 ], [ 28.212891, 48.166085 ], [ 27.509766, 48.516604 ], [ 26.806641, 48.400032 ], [ 26.542969, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.136719, 47.931066 ], [ 24.785156, 47.754098 ], [ 24.345703, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.931066 ], [ 22.587891, 48.166085 ], [ 22.060547, 48.458352 ], [ 22.500000, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.378906, 50.345460 ], [ 23.906250, 50.457504 ], [ 23.994141, 50.736455 ], [ 23.466797, 51.618017 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.944265 ], [ 26.279297, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.916016, 51.618017 ], [ 29.179688, 51.399206 ], [ 30.146484, 51.454007 ], [ 30.498047, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.849609, 52.052490 ], [ 31.728516, 52.106505 ], [ 32.080078, 52.106505 ], [ 32.343750, 52.321911 ], [ 32.695312, 52.268157 ], [ 33.750000, 52.375599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 43.261206 ], [ 43.681641, 42.747012 ], [ 43.857422, 42.617791 ], [ 44.472656, 42.747012 ], [ 45.439453, 42.553080 ], [ 45.703125, 42.098222 ], [ 46.318359, 41.902277 ], [ 46.142578, 41.771312 ], [ 46.582031, 41.244772 ], [ 46.494141, 41.112469 ], [ 45.878906, 41.178654 ], [ 45.175781, 41.442726 ], [ 44.912109, 41.310824 ], [ 43.505859, 41.112469 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.574361 ], [ 41.660156, 41.967659 ], [ 41.396484, 42.682435 ], [ 40.869141, 43.068888 ], [ 40.253906, 43.133061 ], [ 39.902344, 43.452919 ], [ 39.990234, 43.580391 ], [ 42.363281, 43.261206 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.990234, 43.580391 ], [ 42.363281, 43.261206 ], [ 43.681641, 42.747012 ], [ 43.857422, 42.617791 ], [ 44.472656, 42.747012 ], [ 45.439453, 42.553080 ], [ 45.703125, 42.098222 ], [ 46.318359, 41.902277 ], [ 46.142578, 41.771312 ], [ 46.582031, 41.244772 ], [ 46.494141, 41.112469 ], [ 45.878906, 41.178654 ], [ 45.175781, 41.442726 ], [ 44.912109, 41.310824 ], [ 43.505859, 41.112469 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.574361 ], [ 41.660156, 41.967659 ], [ 41.396484, 42.682435 ], [ 40.869141, 43.068888 ], [ 40.253906, 43.133061 ], [ 39.902344, 43.452919 ], [ 39.990234, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.949892 ], [ 8.349609, 36.949892 ], [ 8.173828, 36.456636 ], [ 8.349609, 35.532226 ], [ 8.085938, 34.669359 ], [ 7.470703, 34.161818 ], [ 7.558594, 33.358062 ], [ 8.349609, 32.768800 ], [ 8.437500, 32.546813 ], [ 9.052734, 32.175612 ], [ 9.755859, 29.458731 ], [ 9.843750, 28.998532 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.761330 ], [ 9.580078, 27.215556 ], [ 9.667969, 26.588527 ], [ 9.316406, 26.115986 ], [ 9.843750, 25.403585 ], [ 9.931641, 25.005973 ], [ 10.283203, 24.447150 ], [ 10.722656, 24.607069 ], [ 11.513672, 24.126702 ], [ 11.953125, 23.483401 ], [ 8.525391, 21.616579 ], [ 5.625000, 19.642588 ], [ 4.218750, 19.228177 ], [ 3.076172, 19.062118 ], [ 3.076172, 19.725342 ], [ 2.021484, 20.220966 ], [ 1.757812, 20.632784 ], [ -8.701172, 27.449790 ], [ -8.701172, 28.844674 ], [ -7.119141, 29.611670 ], [ -5.273438, 30.069094 ], [ -4.921875, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.324276 ], [ -1.142578, 32.694866 ], [ -1.406250, 32.916485 ], [ -1.845703, 34.597042 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.175781, 35.889050 ], [ 0.439453, 36.315125 ], [ 1.406250, 36.668419 ], [ 4.746094, 36.879621 ], [ 5.273438, 36.738884 ], [ 6.240234, 37.160317 ], [ 7.294922, 37.160317 ], [ 7.734375, 36.949892 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.160317 ], [ 7.734375, 36.949892 ], [ 8.349609, 36.949892 ], [ 8.173828, 36.456636 ], [ 8.349609, 35.532226 ], [ 8.085938, 34.669359 ], [ 7.470703, 34.161818 ], [ 7.558594, 33.358062 ], [ 8.349609, 32.768800 ], [ 8.437500, 32.546813 ], [ 9.052734, 32.175612 ], [ 9.755859, 29.458731 ], [ 9.843750, 28.998532 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.761330 ], [ 9.580078, 27.215556 ], [ 9.667969, 26.588527 ], [ 9.316406, 26.115986 ], [ 9.843750, 25.403585 ], [ 9.931641, 25.005973 ], [ 10.283203, 24.447150 ], [ 10.722656, 24.607069 ], [ 11.513672, 24.126702 ], [ 11.953125, 23.483401 ], [ 8.525391, 21.616579 ], [ 5.625000, 19.642588 ], [ 4.218750, 19.228177 ], [ 3.076172, 19.062118 ], [ 3.076172, 19.725342 ], [ 2.021484, 20.220966 ], [ 1.757812, 20.632784 ], [ -8.701172, 27.449790 ], [ -8.701172, 28.844674 ], [ -7.119141, 29.611670 ], [ -5.273438, 30.069094 ], [ -4.921875, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.324276 ], [ -1.142578, 32.694866 ], [ -1.406250, 32.916485 ], [ -1.845703, 34.597042 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.175781, 35.889050 ], [ 0.439453, 36.315125 ], [ 1.406250, 36.668419 ], [ 4.746094, 36.879621 ], [ 5.273438, 36.738884 ], [ 6.240234, 37.160317 ], [ 7.294922, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.842674 ], [ 13.007812, 32.916485 ], [ 13.886719, 32.768800 ], [ 15.205078, 32.324276 ], [ 15.644531, 31.428663 ], [ 18.017578, 30.826781 ], [ 19.072266, 30.297018 ], [ 19.511719, 30.600094 ], [ 20.039062, 31.052934 ], [ 19.775391, 31.802893 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.768800 ], [ 21.533203, 32.916485 ], [ 22.851562, 32.694866 ], [ 23.203125, 32.249974 ], [ 24.873047, 31.952162 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.128199 ], [ 24.873047, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.305561 ], [ 24.960938, 20.055931 ], [ 23.818359, 20.055931 ], [ 23.818359, 19.642588 ], [ 15.820312, 23.483401 ], [ 14.765625, 22.917923 ], [ 14.062500, 22.512557 ], [ 13.535156, 23.079732 ], [ 11.953125, 23.483401 ], [ 11.513672, 24.126702 ], [ 10.722656, 24.607069 ], [ 10.283203, 24.447150 ], [ 9.931641, 25.005973 ], [ 9.843750, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.667969, 26.588527 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.998532 ], [ 9.404297, 30.372875 ], [ 9.931641, 30.600094 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.428663 ], [ 11.425781, 32.398516 ], [ 11.425781, 33.137551 ], [ 12.656250, 32.842674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.425781, 33.137551 ], [ 12.656250, 32.842674 ], [ 13.007812, 32.916485 ], [ 13.886719, 32.768800 ], [ 15.205078, 32.324276 ], [ 15.644531, 31.428663 ], [ 18.017578, 30.826781 ], [ 19.072266, 30.297018 ], [ 19.511719, 30.600094 ], [ 20.039062, 31.052934 ], [ 19.775391, 31.802893 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.768800 ], [ 21.533203, 32.916485 ], [ 22.851562, 32.694866 ], [ 23.203125, 32.249974 ], [ 24.873047, 31.952162 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.128199 ], [ 24.873047, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.305561 ], [ 24.960938, 20.055931 ], [ 23.818359, 20.055931 ], [ 23.818359, 19.642588 ], [ 15.820312, 23.483401 ], [ 14.765625, 22.917923 ], [ 14.062500, 22.512557 ], [ 13.535156, 23.079732 ], [ 11.953125, 23.483401 ], [ 11.513672, 24.126702 ], [ 10.722656, 24.607069 ], [ 10.283203, 24.447150 ], [ 9.931641, 25.005973 ], [ 9.843750, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.667969, 26.588527 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.998532 ], [ 9.404297, 30.372875 ], [ 9.931641, 30.600094 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.428663 ], [ 11.425781, 32.398516 ], [ 11.425781, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.535156, 23.079732 ], [ 14.062500, 22.512557 ], [ 14.765625, 22.917923 ], [ 15.029297, 21.371244 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.797201 ], [ 15.820312, 20.468189 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.978733 ], [ 15.205078, 16.636192 ], [ 13.886719, 15.707663 ], [ 13.535156, 14.434680 ], [ 13.886719, 14.008696 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.414062, 12.897489 ], [ 14.150391, 12.811801 ], [ 14.150391, 12.554564 ], [ 13.974609, 12.468760 ], [ 13.271484, 13.581921 ], [ 13.007812, 13.667338 ], [ 12.216797, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.634766, 13.325485 ], [ 10.107422, 13.325485 ], [ 9.492188, 12.897489 ], [ 8.964844, 12.897489 ], [ 7.734375, 13.410994 ], [ 7.294922, 13.154376 ], [ 6.767578, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.361328, 13.923404 ], [ 4.306641, 13.752725 ], [ 4.042969, 13.581921 ], [ 3.955078, 12.983148 ], [ 3.603516, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.297068 ], [ 2.460938, 12.297068 ], [ 2.109375, 11.953349 ], [ 2.109375, 12.640338 ], [ 0.966797, 12.897489 ], [ 0.966797, 13.410994 ], [ 0.351562, 14.008696 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.944785 ], [ 0.966797, 15.029686 ], [ 1.318359, 15.368950 ], [ 3.603516, 15.623037 ], [ 3.691406, 16.214675 ], [ 4.218750, 16.888660 ], [ 4.218750, 19.228177 ], [ 5.625000, 19.642588 ], [ 8.525391, 21.616579 ], [ 11.953125, 23.483401 ], [ 13.535156, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.953125, 23.483401 ], [ 13.535156, 23.079732 ], [ 14.062500, 22.512557 ], [ 14.765625, 22.917923 ], [ 15.029297, 21.371244 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.797201 ], [ 15.820312, 20.468189 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.978733 ], [ 15.205078, 16.636192 ], [ 13.886719, 15.707663 ], [ 13.535156, 14.434680 ], [ 13.886719, 14.008696 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.414062, 12.897489 ], [ 14.150391, 12.811801 ], [ 14.150391, 12.554564 ], [ 13.974609, 12.468760 ], [ 13.271484, 13.581921 ], [ 13.007812, 13.667338 ], [ 12.216797, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.634766, 13.325485 ], [ 10.107422, 13.325485 ], [ 9.492188, 12.897489 ], [ 8.964844, 12.897489 ], [ 7.734375, 13.410994 ], [ 7.294922, 13.154376 ], [ 6.767578, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.361328, 13.923404 ], [ 4.306641, 13.752725 ], [ 4.042969, 13.581921 ], [ 3.955078, 12.983148 ], [ 3.603516, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.297068 ], [ 2.460938, 12.297068 ], [ 2.109375, 11.953349 ], [ 2.109375, 12.640338 ], [ 0.966797, 12.897489 ], [ 0.966797, 13.410994 ], [ 0.351562, 14.008696 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.944785 ], [ 0.966797, 15.029686 ], [ 1.318359, 15.368950 ], [ 3.603516, 15.623037 ], [ 3.691406, 16.214675 ], [ 4.218750, 16.888660 ], [ 4.218750, 19.228177 ], [ 5.625000, 19.642588 ], [ 8.525391, 21.616579 ], [ 11.953125, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.703125, 10.487812 ], [ 1.406250, 9.882275 ], [ 1.406250, 9.362353 ], [ 1.582031, 9.188870 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.227934 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.439453, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.754795 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.092166 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.092166 ], [ 0.878906, 11.005904 ], [ 0.703125, 10.487812 ], [ 1.406250, 9.882275 ], [ 1.406250, 9.362353 ], [ 1.582031, 9.188870 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.227934 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.439453, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.754795 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.515625, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.515625, 10.401378 ], [ 3.691406, 10.141932 ], [ 2.900391, 9.188870 ], [ 2.636719, 8.581021 ], [ 2.636719, 6.315299 ], [ 1.845703, 6.227934 ], [ 1.582031, 6.839170 ], [ 1.582031, 9.188870 ], [ 1.406250, 9.362353 ], [ 1.406250, 9.882275 ], [ 0.703125, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.178402 ], [ 1.406250, 11.609193 ], [ 1.933594, 11.695273 ], [ 2.460938, 12.297068 ], [ 2.812500, 12.297068 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.297068 ], [ 3.603516, 11.695273 ], [ 3.515625, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.515625, 10.401378 ], [ 3.691406, 10.141932 ], [ 2.900391, 9.188870 ], [ 2.636719, 8.581021 ], [ 2.636719, 6.315299 ], [ 1.845703, 6.227934 ], [ 1.582031, 6.839170 ], [ 1.582031, 9.188870 ], [ 1.406250, 9.362353 ], [ 1.406250, 9.882275 ], [ 0.703125, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.178402 ], [ 1.406250, 11.609193 ], [ 1.933594, 11.695273 ], [ 2.460938, 12.297068 ], [ 2.812500, 12.297068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.416016, 13.496473 ], [ 6.767578, 13.154376 ], [ 7.294922, 13.154376 ], [ 7.734375, 13.410994 ], [ 8.964844, 12.897489 ], [ 9.492188, 12.897489 ], [ 10.107422, 13.325485 ], [ 10.634766, 13.325485 ], [ 10.986328, 13.410994 ], [ 12.216797, 13.068777 ], [ 13.007812, 13.667338 ], [ 13.271484, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.554564 ], [ 14.501953, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 11.689453, 7.013668 ], [ 10.986328, 6.664608 ], [ 10.458984, 7.100893 ], [ 10.107422, 7.100893 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.489983 ], [ 8.437500, 4.828260 ], [ 7.382812, 4.477856 ], [ 7.031250, 4.477856 ], [ 6.679688, 4.302591 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.581021 ], [ 2.900391, 9.188870 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.401378 ], [ 3.779297, 10.746969 ], [ 3.515625, 11.350797 ], [ 3.603516, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.042969, 13.581921 ], [ 4.306641, 13.752725 ], [ 5.361328, 13.923404 ], [ 6.416016, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.361328, 13.923404 ], [ 6.416016, 13.496473 ], [ 6.767578, 13.154376 ], [ 7.294922, 13.154376 ], [ 7.734375, 13.410994 ], [ 8.964844, 12.897489 ], [ 9.492188, 12.897489 ], [ 10.107422, 13.325485 ], [ 10.634766, 13.325485 ], [ 10.986328, 13.410994 ], [ 12.216797, 13.068777 ], [ 13.007812, 13.667338 ], [ 13.271484, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.554564 ], [ 14.501953, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 11.689453, 7.013668 ], [ 10.986328, 6.664608 ], [ 10.458984, 7.100893 ], [ 10.107422, 7.100893 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.489983 ], [ 8.437500, 4.828260 ], [ 7.382812, 4.477856 ], [ 7.031250, 4.477856 ], [ 6.679688, 4.302591 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.581021 ], [ 2.900391, 9.188870 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.401378 ], [ 3.779297, 10.746969 ], [ 3.515625, 11.350797 ], [ 3.603516, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.042969, 13.581921 ], [ 4.306641, 13.752725 ], [ 5.361328, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.142502 ], [ 9.492188, 1.054628 ], [ 9.228516, 1.230374 ], [ 9.580078, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.142502 ], [ 9.492188, 1.054628 ], [ 9.228516, 1.230374 ], [ 9.580078, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.642588 ], [ 23.818359, 15.623037 ], [ 22.939453, 15.707663 ], [ 22.236328, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.838080 ], [ 22.236328, 13.410994 ], [ 21.884766, 12.640338 ], [ 22.236328, 12.726084 ], [ 22.412109, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.436955 ], [ 22.851562, 11.178402 ], [ 22.148438, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.917969, 9.535749 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.972198 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.083984, 7.536764 ], [ 15.205078, 7.449624 ], [ 15.380859, 7.710992 ], [ 14.941406, 8.841651 ], [ 14.501953, 9.015302 ], [ 13.886719, 9.622414 ], [ 14.150391, 10.055403 ], [ 15.380859, 10.055403 ], [ 14.853516, 10.919618 ], [ 14.853516, 12.297068 ], [ 14.414062, 12.897489 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 14.008696 ], [ 13.535156, 14.434680 ], [ 13.886719, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.978733 ], [ 15.644531, 19.973349 ], [ 15.820312, 20.468189 ], [ 15.468750, 20.797201 ], [ 15.468750, 21.125498 ], [ 15.029297, 21.371244 ], [ 14.765625, 22.917923 ], [ 15.820312, 23.483401 ], [ 23.818359, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.483401 ], [ 23.818359, 19.642588 ], [ 23.818359, 15.623037 ], [ 22.939453, 15.707663 ], [ 22.236328, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.838080 ], [ 22.236328, 13.410994 ], [ 21.884766, 12.640338 ], [ 22.236328, 12.726084 ], [ 22.412109, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.436955 ], [ 22.851562, 11.178402 ], [ 22.148438, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.917969, 9.535749 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.972198 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.083984, 7.536764 ], [ 15.205078, 7.449624 ], [ 15.380859, 7.710992 ], [ 14.941406, 8.841651 ], [ 14.501953, 9.015302 ], [ 13.886719, 9.622414 ], [ 14.150391, 10.055403 ], [ 15.380859, 10.055403 ], [ 14.853516, 10.919618 ], [ 14.853516, 12.297068 ], [ 14.414062, 12.897489 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 14.008696 ], [ 13.535156, 14.434680 ], [ 13.886719, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.978733 ], [ 15.644531, 19.973349 ], [ 15.820312, 20.468189 ], [ 15.468750, 20.797201 ], [ 15.468750, 21.125498 ], [ 15.029297, 21.371244 ], [ 14.765625, 22.917923 ], [ 15.820312, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 12.297068 ], [ 14.853516, 10.919618 ], [ 15.380859, 10.055403 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 14.501953, 9.015302 ], [ 14.941406, 8.841651 ], [ 15.380859, 7.710992 ], [ 14.765625, 6.489983 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.074695 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.876953, 3.951941 ], [ 8.701172, 4.390229 ], [ 8.437500, 4.565474 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.458984, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.501953, 12.125264 ], [ 14.150391, 12.554564 ], [ 14.150391, 12.811801 ], [ 14.414062, 12.897489 ], [ 14.853516, 12.297068 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.853516, 12.297068 ], [ 14.853516, 10.919618 ], [ 15.380859, 10.055403 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 14.501953, 9.015302 ], [ 14.941406, 8.841651 ], [ 15.380859, 7.710992 ], [ 14.765625, 6.489983 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.074695 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.876953, 3.951941 ], [ 8.701172, 4.390229 ], [ 8.437500, 4.565474 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.458984, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.501953, 12.125264 ], [ 14.150391, 12.554564 ], [ 14.150391, 12.811801 ], [ 14.414062, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.746969 ], [ 23.466797, 10.141932 ], [ 23.378906, 9.275622 ], [ 23.378906, 9.015302 ], [ 25.048828, 7.885147 ], [ 25.048828, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.158203, 5.615986 ], [ 27.333984, 5.266008 ], [ 26.982422, 5.178482 ], [ 25.576172, 5.266008 ], [ 25.224609, 5.178482 ], [ 25.048828, 5.003394 ], [ 24.785156, 4.915833 ], [ 24.345703, 5.178482 ], [ 23.291016, 4.653080 ], [ 22.763672, 4.740675 ], [ 22.324219, 4.039618 ], [ 20.917969, 4.390229 ], [ 19.423828, 5.090944 ], [ 18.896484, 4.740675 ], [ 18.457031, 4.214943 ], [ 18.369141, 3.513421 ], [ 17.050781, 3.776559 ], [ 16.523438, 3.250209 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.074695 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.414062, 4.740675 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.489983 ], [ 15.205078, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.972198 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 20.917969, 9.535749 ], [ 21.708984, 10.574222 ], [ 22.148438, 11.005904 ], [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.466797, 10.141932 ], [ 23.378906, 9.275622 ], [ 23.378906, 9.015302 ], [ 25.048828, 7.885147 ], [ 25.048828, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.158203, 5.615986 ], [ 27.333984, 5.266008 ], [ 26.982422, 5.178482 ], [ 25.576172, 5.266008 ], [ 25.224609, 5.178482 ], [ 25.048828, 5.003394 ], [ 24.785156, 4.915833 ], [ 24.345703, 5.178482 ], [ 23.291016, 4.653080 ], [ 22.763672, 4.740675 ], [ 22.324219, 4.039618 ], [ 20.917969, 4.390229 ], [ 19.423828, 5.090944 ], [ 18.896484, 4.740675 ], [ 18.457031, 4.214943 ], [ 18.369141, 3.513421 ], [ 17.050781, 3.776559 ], [ 16.523438, 3.250209 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.074695 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.414062, 4.740675 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.489983 ], [ 15.205078, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.972198 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 20.917969, 9.535749 ], [ 21.708984, 10.574222 ], [ 22.148438, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.169922, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.664062, 35.245619 ], [ 26.279297, 35.317366 ], [ 26.103516, 35.029996 ], [ 24.697266, 34.957995 ], [ 24.697266, 35.101934 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ], [ 24.169922, 35.389050 ] ] ], [ [ [ 26.542969, 41.574361 ], [ 26.279297, 40.979898 ], [ 26.015625, 40.847060 ], [ 24.873047, 40.979898 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 23.291016, 39.977120 ], [ 22.763672, 40.513799 ], [ 22.587891, 40.313043 ], [ 22.763672, 39.707187 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 22.412109, 36.456636 ], [ 21.621094, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.566406, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.917969, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.621094, 40.979898 ], [ 21.972656, 41.178654 ], [ 22.587891, 41.178654 ], [ 22.675781, 41.310824 ], [ 23.642578, 41.310824 ], [ 24.433594, 41.640078 ], [ 25.136719, 41.244772 ], [ 26.103516, 41.376809 ], [ 26.103516, 41.836828 ], [ 26.542969, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.642578, 35.746512 ], [ 24.169922, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.664062, 35.245619 ], [ 26.279297, 35.317366 ], [ 26.103516, 35.029996 ], [ 24.697266, 34.957995 ], [ 24.697266, 35.101934 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.542969, 41.574361 ], [ 26.279297, 40.979898 ], [ 26.015625, 40.847060 ], [ 24.873047, 40.979898 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 23.291016, 39.977120 ], [ 22.763672, 40.513799 ], [ 22.587891, 40.313043 ], [ 22.763672, 39.707187 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 22.412109, 36.456636 ], [ 21.621094, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.566406, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.917969, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.621094, 40.979898 ], [ 21.972656, 41.178654 ], [ 22.587891, 41.178654 ], [ 22.675781, 41.310824 ], [ 23.642578, 41.310824 ], [ 24.433594, 41.640078 ], [ 25.136719, 41.244772 ], [ 26.103516, 41.376809 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.837891, 35.317366 ], [ 33.925781, 35.101934 ], [ 33.398438, 35.029996 ], [ 33.310547, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.837891, 35.317366 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.837891, 35.317366 ], [ 33.925781, 35.101934 ], [ 33.398438, 35.029996 ], [ 33.310547, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 35.029996 ], [ 33.925781, 35.101934 ], [ 33.925781, 35.029996 ], [ 32.958984, 34.597042 ], [ 32.431641, 34.741612 ], [ 32.255859, 35.173808 ], [ 33.310547, 35.173808 ], [ 33.398438, 35.029996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.310547, 35.173808 ], [ 33.398438, 35.029996 ], [ 33.925781, 35.101934 ], [ 33.925781, 35.029996 ], [ 32.958984, 34.597042 ], [ 32.431641, 34.741612 ], [ 32.255859, 35.173808 ], [ 33.310547, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.640625, 31.503629 ], [ 31.904297, 30.977609 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.189453, 31.278551 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.152161 ], [ 34.101562, 27.839076 ], [ 33.837891, 27.683528 ], [ 33.134766, 28.459033 ], [ 32.343750, 29.916852 ], [ 32.255859, 29.764377 ], [ 32.695312, 28.767659 ], [ 34.101562, 26.194877 ], [ 34.716797, 25.085599 ], [ 35.683594, 23.966176 ], [ 35.419922, 23.805450 ], [ 35.507812, 23.160563 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.305561 ], [ 24.697266, 30.069094 ], [ 24.873047, 30.675715 ], [ 24.785156, 31.128199 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.653381 ], [ 28.828125, 30.902225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.653381 ], [ 28.828125, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.640625, 31.503629 ], [ 31.904297, 30.977609 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.189453, 31.278551 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.152161 ], [ 34.101562, 27.839076 ], [ 33.837891, 27.683528 ], [ 33.134766, 28.459033 ], [ 32.343750, 29.916852 ], [ 32.255859, 29.764377 ], [ 32.695312, 28.767659 ], [ 34.101562, 26.194877 ], [ 34.716797, 25.085599 ], [ 35.683594, 23.966176 ], [ 35.419922, 23.805450 ], [ 35.507812, 23.160563 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.305561 ], [ 24.697266, 30.069094 ], [ 24.873047, 30.675715 ], [ 24.785156, 31.128199 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.653381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.826172, 41.376809 ], [ 38.320312, 40.979898 ], [ 39.462891, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.484375, 41.574361 ], [ 42.539062, 41.640078 ], [ 43.505859, 41.112469 ], [ 43.681641, 40.780541 ], [ 43.593750, 40.313043 ], [ 44.384766, 40.044438 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.384766, 38.341656 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.230328 ], [ 44.208984, 37.020098 ], [ 43.857422, 37.300275 ], [ 42.714844, 37.439974 ], [ 42.275391, 37.230328 ], [ 40.605469, 37.160317 ], [ 39.462891, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.949892 ], [ 37.001953, 36.668419 ], [ 36.738281, 36.879621 ], [ 36.650391, 36.315125 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 31.640625, 36.668419 ], [ 30.585938, 36.738884 ], [ 30.322266, 36.315125 ], [ 29.619141, 36.173357 ], [ 28.652344, 36.738884 ], [ 27.597656, 36.668419 ], [ 26.982422, 37.718590 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.771312 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ] ] ], [ [ [ 27.949219, 42.032974 ], [ 28.037109, 41.640078 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.597656, 41.046217 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.979898 ], [ 26.542969, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.070312, 42.163403 ], [ 27.949219, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ], [ 38.320312, 40.979898 ], [ 39.462891, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.484375, 41.574361 ], [ 42.539062, 41.640078 ], [ 43.505859, 41.112469 ], [ 43.681641, 40.780541 ], [ 43.593750, 40.313043 ], [ 44.384766, 40.044438 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.384766, 38.341656 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.230328 ], [ 44.208984, 37.020098 ], [ 43.857422, 37.300275 ], [ 42.714844, 37.439974 ], [ 42.275391, 37.230328 ], [ 40.605469, 37.160317 ], [ 39.462891, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.949892 ], [ 37.001953, 36.668419 ], [ 36.738281, 36.879621 ], [ 36.650391, 36.315125 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 31.640625, 36.668419 ], [ 30.585938, 36.738884 ], [ 30.322266, 36.315125 ], [ 29.619141, 36.173357 ], [ 28.652344, 36.738884 ], [ 27.597656, 36.668419 ], [ 26.982422, 37.718590 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.771312 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ] ] ], [ [ [ 27.070312, 42.163403 ], [ 27.949219, 42.032974 ], [ 28.037109, 41.640078 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.597656, 41.046217 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.979898 ], [ 26.542969, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.070312, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 34.597042 ], [ 36.562500, 34.234512 ], [ 36.035156, 33.870416 ], [ 35.771484, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.419922, 33.137551 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.943360 ], [ 35.947266, 34.669359 ], [ 36.386719, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.947266, 34.669359 ], [ 36.386719, 34.597042 ], [ 36.562500, 34.234512 ], [ 36.035156, 33.870416 ], [ 35.771484, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.419922, 33.137551 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.943360 ], [ 35.947266, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.668419 ], [ 41.220703, 36.385913 ], [ 41.308594, 35.675147 ], [ 40.957031, 34.452218 ], [ 38.759766, 33.431441 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.768800 ], [ 36.035156, 33.870416 ], [ 36.562500, 34.234512 ], [ 36.386719, 34.597042 ], [ 35.947266, 34.669359 ], [ 35.859375, 35.460670 ], [ 36.123047, 35.889050 ], [ 36.650391, 36.315125 ], [ 36.738281, 36.879621 ], [ 37.001953, 36.668419 ], [ 38.144531, 36.949892 ], [ 38.671875, 36.738884 ], [ 39.462891, 36.738884 ], [ 40.605469, 37.160317 ], [ 42.275391, 37.230328 ], [ 41.835938, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.275391, 37.230328 ], [ 41.835938, 36.668419 ], [ 41.220703, 36.385913 ], [ 41.308594, 35.675147 ], [ 40.957031, 34.452218 ], [ 38.759766, 33.431441 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.768800 ], [ 36.035156, 33.870416 ], [ 36.562500, 34.234512 ], [ 36.386719, 34.597042 ], [ 35.947266, 34.669359 ], [ 35.859375, 35.460670 ], [ 36.123047, 35.889050 ], [ 36.650391, 36.315125 ], [ 36.738281, 36.879621 ], [ 37.001953, 36.668419 ], [ 38.144531, 36.949892 ], [ 38.671875, 36.738884 ], [ 39.462891, 36.738884 ], [ 40.605469, 37.160317 ], [ 42.275391, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 37.300275 ], [ 44.208984, 37.020098 ], [ 44.736328, 37.230328 ], [ 45.351562, 36.031332 ], [ 46.054688, 35.746512 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.813803 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.063924 ], [ 47.285156, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.524413 ], [ 48.515625, 29.993002 ], [ 47.285156, 30.069094 ], [ 46.494141, 29.152161 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.203405 ], [ 40.341797, 31.952162 ], [ 39.111328, 32.175612 ], [ 38.759766, 33.431441 ], [ 40.957031, 34.452218 ], [ 41.308594, 35.675147 ], [ 41.220703, 36.385913 ], [ 41.835938, 36.668419 ], [ 42.275391, 37.230328 ], [ 42.714844, 37.439974 ], [ 43.857422, 37.300275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.714844, 37.439974 ], [ 43.857422, 37.300275 ], [ 44.208984, 37.020098 ], [ 44.736328, 37.230328 ], [ 45.351562, 36.031332 ], [ 46.054688, 35.746512 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.813803 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.063924 ], [ 47.285156, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.524413 ], [ 48.515625, 29.993002 ], [ 47.285156, 30.069094 ], [ 46.494141, 29.152161 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.203405 ], [ 40.341797, 31.952162 ], [ 39.111328, 32.175612 ], [ 38.759766, 33.431441 ], [ 40.957031, 34.452218 ], [ 41.308594, 35.675147 ], [ 41.220703, 36.385913 ], [ 41.835938, 36.668419 ], [ 42.275391, 37.230328 ], [ 42.714844, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.683594, 32.768800 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.892578, 31.877558 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.332031, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.892578, 31.877558 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.332031, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.771484, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.332031, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.892578, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.877558 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.332031, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.892578, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 32.175612 ], [ 38.935547, 32.026706 ], [ 37.001953, 31.578535 ], [ 37.968750, 30.524413 ], [ 37.617188, 30.372875 ], [ 37.441406, 30.069094 ], [ 36.738281, 29.916852 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.768800 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.431441 ], [ 39.111328, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.431441 ], [ 39.111328, 32.175612 ], [ 38.935547, 32.026706 ], [ 37.001953, 31.578535 ], [ 37.968750, 30.524413 ], [ 37.617188, 30.372875 ], [ 37.441406, 30.069094 ], [ 36.738281, 29.916852 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.768800 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.431441 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.043491 ], [ 36.914062, 20.879343 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.062312 ], [ 37.880859, 17.476432 ], [ 37.089844, 17.308688 ], [ 36.826172, 16.972741 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.210938, 13.581921 ], [ 35.859375, 12.640338 ], [ 35.244141, 12.125264 ], [ 34.716797, 10.919618 ], [ 34.189453, 10.660608 ], [ 33.925781, 9.535749 ], [ 33.750000, 9.535749 ], [ 33.662109, 10.401378 ], [ 33.134766, 10.746969 ], [ 33.046875, 11.523088 ], [ 33.134766, 12.211180 ], [ 32.695312, 12.297068 ], [ 32.607422, 12.039321 ], [ 31.992188, 12.039321 ], [ 32.255859, 11.695273 ], [ 32.343750, 11.092166 ], [ 31.289062, 9.882275 ], [ 30.761719, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.531250, 10.141932 ], [ 29.443359, 9.795678 ], [ 28.916016, 9.622414 ], [ 28.916016, 9.449062 ], [ 27.949219, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.709057 ], [ 26.718750, 9.535749 ], [ 26.455078, 9.622414 ], [ 25.751953, 10.487812 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.818359, 8.667918 ], [ 23.378906, 9.015302 ], [ 23.378906, 9.275622 ], [ 23.466797, 10.141932 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.436955 ], [ 22.500000, 11.695273 ], [ 22.412109, 12.297068 ], [ 22.236328, 12.726084 ], [ 21.884766, 12.640338 ], [ 22.236328, 13.410994 ], [ 22.148438, 13.838080 ], [ 22.500000, 14.093957 ], [ 22.236328, 14.349548 ], [ 22.939453, 15.707663 ], [ 23.818359, 15.623037 ], [ 23.818359, 20.055931 ], [ 24.960938, 20.055931 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 36.914062, 20.879343 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.062312 ], [ 37.880859, 17.476432 ], [ 37.089844, 17.308688 ], [ 36.826172, 16.972741 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.210938, 13.581921 ], [ 35.859375, 12.640338 ], [ 35.244141, 12.125264 ], [ 34.716797, 10.919618 ], [ 34.189453, 10.660608 ], [ 33.925781, 9.535749 ], [ 33.750000, 9.535749 ], [ 33.662109, 10.401378 ], [ 33.134766, 10.746969 ], [ 33.046875, 11.523088 ], [ 33.134766, 12.211180 ], [ 32.695312, 12.297068 ], [ 32.607422, 12.039321 ], [ 31.992188, 12.039321 ], [ 32.255859, 11.695273 ], [ 32.343750, 11.092166 ], [ 31.289062, 9.882275 ], [ 30.761719, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.531250, 10.141932 ], [ 29.443359, 9.795678 ], [ 28.916016, 9.622414 ], [ 28.916016, 9.449062 ], [ 27.949219, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.709057 ], [ 26.718750, 9.535749 ], [ 26.455078, 9.622414 ], [ 25.751953, 10.487812 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.818359, 8.667918 ], [ 23.378906, 9.015302 ], [ 23.378906, 9.275622 ], [ 23.466797, 10.141932 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.436955 ], [ 22.500000, 11.695273 ], [ 22.412109, 12.297068 ], [ 22.236328, 12.726084 ], [ 21.884766, 12.640338 ], [ 22.236328, 13.410994 ], [ 22.148438, 13.838080 ], [ 22.500000, 14.093957 ], [ 22.236328, 14.349548 ], [ 22.939453, 15.707663 ], [ 23.818359, 15.623037 ], [ 23.818359, 20.055931 ], [ 24.960938, 20.055931 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.134766, 12.211180 ], [ 33.046875, 11.523088 ], [ 33.134766, 10.746969 ], [ 33.662109, 10.401378 ], [ 33.750000, 9.535749 ], [ 33.925781, 9.535749 ], [ 33.925781, 8.754795 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 32.871094, 7.798079 ], [ 33.486328, 7.798079 ], [ 34.013672, 7.275292 ], [ 34.189453, 6.839170 ], [ 34.628906, 6.664608 ], [ 35.244141, 5.528511 ], [ 33.310547, 3.864255 ], [ 32.607422, 3.864255 ], [ 31.816406, 3.601142 ], [ 31.201172, 3.864255 ], [ 30.761719, 3.513421 ], [ 29.882812, 4.214943 ], [ 29.707031, 4.653080 ], [ 29.091797, 4.390229 ], [ 28.652344, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.477856 ], [ 27.158203, 5.615986 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.048828, 7.536764 ], [ 25.048828, 7.885147 ], [ 23.818359, 8.667918 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.487812 ], [ 26.455078, 9.622414 ], [ 26.718750, 9.535749 ], [ 27.070312, 9.709057 ], [ 27.773438, 9.622414 ], [ 27.949219, 9.449062 ], [ 28.916016, 9.449062 ], [ 28.916016, 9.622414 ], [ 29.443359, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.970703, 10.314919 ], [ 30.761719, 9.709057 ], [ 31.289062, 9.882275 ], [ 32.343750, 11.092166 ], [ 32.255859, 11.695273 ], [ 31.992188, 12.039321 ], [ 32.607422, 12.039321 ], [ 32.695312, 12.297068 ], [ 33.134766, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, 12.297068 ], [ 33.134766, 12.211180 ], [ 33.046875, 11.523088 ], [ 33.134766, 10.746969 ], [ 33.662109, 10.401378 ], [ 33.750000, 9.535749 ], [ 33.925781, 9.535749 ], [ 33.925781, 8.754795 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 32.871094, 7.798079 ], [ 33.486328, 7.798079 ], [ 34.013672, 7.275292 ], [ 34.189453, 6.839170 ], [ 34.628906, 6.664608 ], [ 35.244141, 5.528511 ], [ 33.310547, 3.864255 ], [ 32.607422, 3.864255 ], [ 31.816406, 3.601142 ], [ 31.201172, 3.864255 ], [ 30.761719, 3.513421 ], [ 29.882812, 4.214943 ], [ 29.707031, 4.653080 ], [ 29.091797, 4.390229 ], [ 28.652344, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.477856 ], [ 27.158203, 5.615986 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.048828, 7.536764 ], [ 25.048828, 7.885147 ], [ 23.818359, 8.667918 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.487812 ], [ 26.455078, 9.622414 ], [ 26.718750, 9.535749 ], [ 27.070312, 9.709057 ], [ 27.773438, 9.622414 ], [ 27.949219, 9.449062 ], [ 28.916016, 9.449062 ], [ 28.916016, 9.622414 ], [ 29.443359, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.970703, 10.314919 ], [ 30.761719, 9.709057 ], [ 31.289062, 9.882275 ], [ 32.343750, 11.092166 ], [ 32.255859, 11.695273 ], [ 31.992188, 12.039321 ], [ 32.607422, 12.039321 ], [ 32.695312, 12.297068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.601142 ], [ 34.980469, 1.933227 ], [ 33.837891, 0.175781 ], [ 33.837891, -0.878872 ], [ 31.816406, -0.966751 ], [ 30.761719, -0.966751 ], [ 29.794922, -1.406109 ], [ 29.531250, -1.318243 ], [ 29.531250, -0.527336 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.615223 ], [ 30.410156, 1.669686 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.372369 ], [ 30.761719, 3.513421 ], [ 31.201172, 3.864255 ], [ 31.816406, 3.601142 ], [ 32.607422, 3.864255 ], [ 33.310547, 3.864255 ], [ 33.925781, 4.302591 ], [ 34.453125, 3.601142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 4.302591 ], [ 34.453125, 3.601142 ], [ 34.980469, 1.933227 ], [ 33.837891, 0.175781 ], [ 33.837891, -0.878872 ], [ 31.816406, -0.966751 ], [ 30.761719, -0.966751 ], [ 29.794922, -1.406109 ], [ 29.531250, -1.318243 ], [ 29.531250, -0.527336 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.615223 ], [ 30.410156, 1.669686 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.372369 ], [ 30.761719, 3.513421 ], [ 31.201172, 3.864255 ], [ 31.816406, 3.601142 ], [ 32.607422, 3.864255 ], [ 33.310547, 3.864255 ], [ 33.925781, 4.302591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.935547, 16.888660 ], [ 39.199219, 15.961329 ], [ 41.132812, 14.519780 ], [ 42.539062, 13.068777 ], [ 43.066406, 12.726084 ], [ 42.714844, 12.468760 ], [ 42.275391, 12.554564 ], [ 40.869141, 14.179186 ], [ 39.990234, 14.519780 ], [ 39.287109, 14.604847 ], [ 39.023438, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 15.029686 ], [ 37.529297, 14.264383 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.826172, 16.972741 ], [ 37.089844, 17.308688 ], [ 37.880859, 17.476432 ], [ 38.408203, 18.062312 ], [ 38.935547, 16.888660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.062312 ], [ 38.935547, 16.888660 ], [ 39.199219, 15.961329 ], [ 41.132812, 14.519780 ], [ 42.539062, 13.068777 ], [ 43.066406, 12.726084 ], [ 42.714844, 12.468760 ], [ 42.275391, 12.554564 ], [ 40.869141, 14.179186 ], [ 39.990234, 14.519780 ], [ 39.287109, 14.604847 ], [ 39.023438, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 15.029686 ], [ 37.529297, 14.264383 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.826172, 16.972741 ], [ 37.089844, 17.308688 ], [ 37.880859, 17.476432 ], [ 38.408203, 18.062312 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.468760 ], [ 43.242188, 12.039321 ], [ 42.714844, 11.781325 ], [ 43.066406, 11.523088 ], [ 42.714844, 11.005904 ], [ 42.539062, 11.178402 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.695273 ], [ 42.275391, 12.554564 ], [ 42.714844, 12.468760 ], [ 43.066406, 12.726084 ], [ 43.242188, 12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.242188, 12.468760 ], [ 43.242188, 12.039321 ], [ 42.714844, 11.781325 ], [ 43.066406, 11.523088 ], [ 42.714844, 11.005904 ], [ 42.539062, 11.178402 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.695273 ], [ 42.275391, 12.554564 ], [ 42.714844, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 5.353521 ], [ 35.771484, 4.828260 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.056641, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.693359, 4.302591 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.790990 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.021065 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.726562, -3.601142 ], [ 39.550781, -4.302591 ], [ 39.199219, -4.653080 ], [ 37.705078, -3.601142 ], [ 37.617188, -3.074695 ], [ 33.837891, -0.878872 ], [ 33.837891, 0.175781 ], [ 34.980469, 1.933227 ], [ 34.453125, 3.601142 ], [ 33.925781, 4.302591 ], [ 35.244141, 5.528511 ], [ 35.771484, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.244141, 5.528511 ], [ 35.771484, 5.353521 ], [ 35.771484, 4.828260 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.056641, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.693359, 4.302591 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.790990 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.021065 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.726562, -3.601142 ], [ 39.550781, -4.302591 ], [ 39.199219, -4.653080 ], [ 37.705078, -3.601142 ], [ 37.617188, -3.074695 ], [ 33.837891, -0.878872 ], [ 33.837891, 0.175781 ], [ 34.980469, 1.933227 ], [ 34.453125, 3.601142 ], [ 33.925781, 4.302591 ], [ 35.244141, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.023438, 14.774883 ], [ 39.287109, 14.604847 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.179186 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.660156, 11.695273 ], [ 41.748047, 11.092166 ], [ 42.539062, 11.178402 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 46.933594, 8.059230 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 42.714844, 4.302591 ], [ 42.099609, 4.302591 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.771484, 4.828260 ], [ 35.771484, 5.353521 ], [ 35.244141, 5.528511 ], [ 34.628906, 6.664608 ], [ 34.189453, 6.839170 ], [ 34.013672, 7.275292 ], [ 33.486328, 7.798079 ], [ 32.871094, 7.798079 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.925781, 8.754795 ], [ 33.925781, 9.622414 ], [ 34.189453, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.640338 ], [ 36.210938, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 15.029686 ], [ 38.496094, 14.519780 ], [ 39.023438, 14.774883 ], [ 39.287109, 14.604847 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.179186 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.660156, 11.695273 ], [ 41.748047, 11.092166 ], [ 42.539062, 11.178402 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 46.933594, 8.059230 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 42.714844, 4.302591 ], [ 42.099609, 4.302591 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.771484, 4.828260 ], [ 35.771484, 5.353521 ], [ 35.244141, 5.528511 ], [ 34.628906, 6.664608 ], [ 34.189453, 6.839170 ], [ 34.013672, 7.275292 ], [ 33.486328, 7.798079 ], [ 32.871094, 7.798079 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.925781, 8.754795 ], [ 33.925781, 9.622414 ], [ 34.189453, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.640338 ], [ 36.210938, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.103516, 54.162434 ], [ 72.158203, 54.418930 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.540307 ], [ 74.355469, 53.592505 ], [ 76.816406, 54.521081 ], [ 76.464844, 54.213861 ], [ 77.783203, 53.435719 ], [ 79.980469, 50.903033 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.847573 ], [ 83.320312, 51.124213 ], [ 83.847656, 50.903033 ], [ 84.375000, 50.345460 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.724479 ], [ 86.748047, 49.837982 ], [ 87.275391, 49.267805 ], [ 86.572266, 48.574790 ], [ 85.693359, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.078125, 47.040182 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.583290 ], [ 81.914062, 45.336702 ], [ 79.892578, 44.964798 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.553080 ], [ 79.101562, 42.875964 ], [ 75.937500, 43.004647 ], [ 75.585938, 42.940339 ], [ 74.179688, 43.325178 ], [ 73.564453, 43.133061 ], [ 73.476562, 42.553080 ], [ 71.806641, 42.875964 ], [ 71.103516, 42.747012 ], [ 70.927734, 42.293564 ], [ 70.312500, 42.098222 ], [ 68.994141, 41.442726 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 67.939453, 41.178654 ], [ 66.708984, 41.178654 ], [ 66.445312, 42.032974 ], [ 66.005859, 42.032974 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.771094 ], [ 61.962891, 43.516689 ], [ 60.996094, 44.465151 ], [ 58.447266, 45.644768 ], [ 55.898438, 45.026950 ], [ 55.898438, 41.310824 ], [ 55.371094, 41.310824 ], [ 54.667969, 42.098222 ], [ 54.052734, 42.358544 ], [ 52.910156, 42.163403 ], [ 52.470703, 41.836828 ], [ 52.382812, 42.032974 ], [ 52.646484, 42.488302 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.087585 ], [ 50.273438, 44.339565 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.119141, 45.460131 ], [ 52.998047, 45.274886 ], [ 53.173828, 46.255847 ], [ 52.998047, 46.860191 ], [ 52.031250, 46.860191 ], [ 51.152344, 47.100045 ], [ 50.009766, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.515625, 46.619261 ], [ 48.691406, 47.100045 ], [ 47.988281, 47.754098 ], [ 47.285156, 47.754098 ], [ 46.406250, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.669922, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.515625, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.712891, 51.727028 ], [ 52.294922, 51.727028 ], [ 55.634766, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.589844, 50.569283 ], [ 59.853516, 50.847573 ], [ 61.259766, 50.847573 ], [ 61.523438, 51.289406 ], [ 59.941406, 51.998410 ], [ 60.908203, 52.482780 ], [ 60.732422, 52.749594 ], [ 61.699219, 53.014783 ], [ 60.908203, 53.696706 ], [ 61.435547, 54.007769 ], [ 65.126953, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.115234, 54.977614 ], [ 68.994141, 55.429013 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.994141, 55.429013 ], [ 70.839844, 55.178868 ], [ 71.103516, 54.162434 ], [ 72.158203, 54.418930 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.540307 ], [ 74.355469, 53.592505 ], [ 76.816406, 54.521081 ], [ 76.464844, 54.213861 ], [ 77.783203, 53.435719 ], [ 79.980469, 50.903033 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.847573 ], [ 83.320312, 51.124213 ], [ 83.847656, 50.903033 ], [ 84.375000, 50.345460 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.724479 ], [ 86.748047, 49.837982 ], [ 87.275391, 49.267805 ], [ 86.572266, 48.574790 ], [ 85.693359, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.078125, 47.040182 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.583290 ], [ 81.914062, 45.336702 ], [ 79.892578, 44.964798 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.553080 ], [ 79.101562, 42.875964 ], [ 75.937500, 43.004647 ], [ 75.585938, 42.940339 ], [ 74.179688, 43.325178 ], [ 73.564453, 43.133061 ], [ 73.476562, 42.553080 ], [ 71.806641, 42.875964 ], [ 71.103516, 42.747012 ], [ 70.927734, 42.293564 ], [ 70.312500, 42.098222 ], [ 68.994141, 41.442726 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 67.939453, 41.178654 ], [ 66.708984, 41.178654 ], [ 66.445312, 42.032974 ], [ 66.005859, 42.032974 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.771094 ], [ 61.962891, 43.516689 ], [ 60.996094, 44.465151 ], [ 58.447266, 45.644768 ], [ 55.898438, 45.026950 ], [ 55.898438, 41.310824 ], [ 55.371094, 41.310824 ], [ 54.667969, 42.098222 ], [ 54.052734, 42.358544 ], [ 52.910156, 42.163403 ], [ 52.470703, 41.836828 ], [ 52.382812, 42.032974 ], [ 52.646484, 42.488302 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.087585 ], [ 50.273438, 44.339565 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.119141, 45.460131 ], [ 52.998047, 45.274886 ], [ 53.173828, 46.255847 ], [ 52.998047, 46.860191 ], [ 52.031250, 46.860191 ], [ 51.152344, 47.100045 ], [ 50.009766, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.515625, 46.619261 ], [ 48.691406, 47.100045 ], [ 47.988281, 47.754098 ], [ 47.285156, 47.754098 ], [ 46.406250, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.669922, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.515625, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.712891, 51.727028 ], [ 52.294922, 51.727028 ], [ 55.634766, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.589844, 50.569283 ], [ 59.853516, 50.847573 ], [ 61.259766, 50.847573 ], [ 61.523438, 51.289406 ], [ 59.941406, 51.998410 ], [ 60.908203, 52.482780 ], [ 60.732422, 52.749594 ], [ 61.699219, 53.014783 ], [ 60.908203, 53.696706 ], [ 61.435547, 54.007769 ], [ 65.126953, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.115234, 54.977614 ], [ 68.994141, 55.429013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.996094, 44.465151 ], [ 61.962891, 43.516689 ], [ 64.863281, 43.771094 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.708984, 41.178654 ], [ 67.939453, 41.178654 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.994141, 41.442726 ], [ 70.312500, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.191406, 42.228517 ], [ 70.400391, 41.574361 ], [ 71.103516, 41.178654 ], [ 71.806641, 41.442726 ], [ 73.037109, 40.913513 ], [ 71.718750, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.400391, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.780541 ], [ 68.994141, 40.111689 ], [ 68.466797, 39.571822 ], [ 67.675781, 39.639538 ], [ 67.412109, 39.164141 ], [ 68.115234, 38.959409 ], [ 68.378906, 38.203655 ], [ 67.763672, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.445312, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.959409 ], [ 62.314453, 40.111689 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.310824 ], [ 60.380859, 41.244772 ], [ 60.029297, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.811522 ], [ 57.744141, 42.228517 ], [ 56.865234, 41.836828 ], [ 57.041016, 41.376809 ], [ 55.898438, 41.310824 ], [ 55.898438, 45.026950 ], [ 58.447266, 45.644768 ], [ 60.996094, 44.465151 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.447266, 45.644768 ], [ 60.996094, 44.465151 ], [ 61.962891, 43.516689 ], [ 64.863281, 43.771094 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.708984, 41.178654 ], [ 67.939453, 41.178654 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.994141, 41.442726 ], [ 70.312500, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.191406, 42.228517 ], [ 70.400391, 41.574361 ], [ 71.103516, 41.178654 ], [ 71.806641, 41.442726 ], [ 73.037109, 40.913513 ], [ 71.718750, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.400391, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.780541 ], [ 68.994141, 40.111689 ], [ 68.466797, 39.571822 ], [ 67.675781, 39.639538 ], [ 67.412109, 39.164141 ], [ 68.115234, 38.959409 ], [ 68.378906, 38.203655 ], [ 67.763672, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.445312, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.959409 ], [ 62.314453, 40.111689 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.310824 ], [ 60.380859, 41.244772 ], [ 60.029297, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.811522 ], [ 57.744141, 42.228517 ], [ 56.865234, 41.836828 ], [ 57.041016, 41.376809 ], [ 55.898438, 41.310824 ], [ 55.898438, 45.026950 ], [ 58.447266, 45.644768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.585938, 42.940339 ], [ 75.937500, 43.004647 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.553080 ], [ 80.244141, 42.358544 ], [ 80.068359, 42.163403 ], [ 78.486328, 41.640078 ], [ 78.134766, 41.244772 ], [ 76.904297, 41.112469 ], [ 76.464844, 40.446947 ], [ 75.410156, 40.580585 ], [ 74.707031, 40.380028 ], [ 73.740234, 39.909736 ], [ 73.916016, 39.707187 ], [ 73.652344, 39.436193 ], [ 71.718750, 39.300299 ], [ 70.488281, 39.639538 ], [ 69.433594, 39.571822 ], [ 69.521484, 40.111689 ], [ 70.576172, 39.977120 ], [ 70.927734, 40.245992 ], [ 71.718750, 40.178873 ], [ 73.037109, 40.913513 ], [ 71.806641, 41.442726 ], [ 71.103516, 41.178654 ], [ 70.400391, 41.574361 ], [ 71.191406, 42.228517 ], [ 70.927734, 42.293564 ], [ 71.103516, 42.747012 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.553080 ], [ 73.564453, 43.133061 ], [ 74.179688, 43.325178 ], [ 75.585938, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.585938, 42.940339 ], [ 75.937500, 43.004647 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.553080 ], [ 80.244141, 42.358544 ], [ 80.068359, 42.163403 ], [ 78.486328, 41.640078 ], [ 78.134766, 41.244772 ], [ 76.904297, 41.112469 ], [ 76.464844, 40.446947 ], [ 75.410156, 40.580585 ], [ 74.707031, 40.380028 ], [ 73.740234, 39.909736 ], [ 73.916016, 39.707187 ], [ 73.652344, 39.436193 ], [ 71.718750, 39.300299 ], [ 70.488281, 39.639538 ], [ 69.433594, 39.571822 ], [ 69.521484, 40.111689 ], [ 70.576172, 39.977120 ], [ 70.927734, 40.245992 ], [ 71.718750, 40.178873 ], [ 73.037109, 40.913513 ], [ 71.806641, 41.442726 ], [ 71.103516, 41.178654 ], [ 70.400391, 41.574361 ], [ 71.191406, 42.228517 ], [ 70.927734, 42.293564 ], [ 71.103516, 42.747012 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.553080 ], [ 73.564453, 43.133061 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 41.046217 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.527344, 39.909736 ], [ 46.406250, 39.504041 ], [ 46.494141, 38.822591 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.774769 ], [ 44.736328, 39.774769 ], [ 44.384766, 40.044438 ], [ 43.593750, 40.313043 ], [ 43.681641, 40.780541 ], [ 43.505859, 41.112469 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.046217 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 41.310824 ], [ 45.175781, 41.046217 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.527344, 39.909736 ], [ 46.406250, 39.504041 ], [ 46.494141, 38.822591 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.774769 ], [ 44.736328, 39.774769 ], [ 44.384766, 40.044438 ], [ 43.593750, 40.313043 ], [ 43.681641, 40.780541 ], [ 43.505859, 41.112469 ], [ 44.912109, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.900391, 41.442726 ], [ 48.515625, 41.836828 ], [ 49.570312, 40.580585 ], [ 50.009766, 40.580585 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 49.218750, 39.095963 ], [ 48.779297, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.571822 ], [ 46.494141, 38.822591 ], [ 46.406250, 39.504041 ], [ 45.527344, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.847060 ], [ 45.175781, 41.046217 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.442726 ], [ 45.878906, 41.178654 ], [ 46.494141, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.142578, 41.771312 ], [ 46.318359, 41.902277 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.736328, 39.774769 ], [ 45.000000, 39.774769 ], [ 45.263672, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.318359, 41.902277 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.900391, 41.442726 ], [ 48.515625, 41.836828 ], [ 49.570312, 40.580585 ], [ 50.009766, 40.580585 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 49.218750, 39.095963 ], [ 48.779297, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.571822 ], [ 46.494141, 38.822591 ], [ 46.406250, 39.504041 ], [ 45.527344, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.847060 ], [ 45.175781, 41.046217 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.442726 ], [ 45.878906, 41.178654 ], [ 46.494141, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.142578, 41.771312 ], [ 46.318359, 41.902277 ] ] ], [ [ [ 45.000000, 39.774769 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.736328, 39.774769 ], [ 45.000000, 39.774769 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.822591 ], [ 47.636719, 39.571822 ], [ 47.988281, 39.639538 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.130859, 37.649034 ], [ 50.097656, 37.439974 ], [ 50.800781, 36.879621 ], [ 52.207031, 36.738884 ], [ 53.789062, 37.020098 ], [ 53.876953, 37.230328 ], [ 54.755859, 37.439974 ], [ 55.458984, 37.996163 ], [ 56.162109, 37.996163 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.065392 ], [ 58.359375, 37.579413 ], [ 59.150391, 37.439974 ], [ 60.292969, 36.597889 ], [ 61.083984, 36.527295 ], [ 61.171875, 35.675147 ], [ 60.468750, 33.724340 ], [ 60.908203, 33.578015 ], [ 60.468750, 32.990236 ], [ 60.820312, 32.249974 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.428663 ], [ 61.699219, 30.751278 ], [ 60.820312, 29.840644 ], [ 61.699219, 28.767659 ], [ 62.666016, 28.304381 ], [ 62.753906, 27.449790 ], [ 63.193359, 27.293689 ], [ 63.281250, 26.824071 ], [ 61.787109, 26.273714 ], [ 61.435547, 25.085599 ], [ 57.392578, 25.799891 ], [ 56.953125, 26.980829 ], [ 56.425781, 27.215556 ], [ 55.722656, 26.980829 ], [ 54.667969, 26.509905 ], [ 53.437500, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.916767 ], [ 50.097656, 30.221102 ], [ 49.570312, 29.993002 ], [ 48.867188, 30.372875 ], [ 48.515625, 29.993002 ], [ 47.988281, 30.524413 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.812500, 31.728167 ], [ 47.285156, 32.472695 ], [ 46.054688, 33.063924 ], [ 45.351562, 34.016242 ], [ 45.615234, 34.813803 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.746512 ], [ 45.351562, 36.031332 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.341656 ], [ 44.033203, 39.436193 ], [ 44.736328, 39.774769 ], [ 44.912109, 39.368279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.736328, 39.774769 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.822591 ], [ 47.636719, 39.571822 ], [ 47.988281, 39.639538 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.130859, 37.649034 ], [ 50.097656, 37.439974 ], [ 50.800781, 36.879621 ], [ 52.207031, 36.738884 ], [ 53.789062, 37.020098 ], [ 53.876953, 37.230328 ], [ 54.755859, 37.439974 ], [ 55.458984, 37.996163 ], [ 56.162109, 37.996163 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.065392 ], [ 58.359375, 37.579413 ], [ 59.150391, 37.439974 ], [ 60.292969, 36.597889 ], [ 61.083984, 36.527295 ], [ 61.171875, 35.675147 ], [ 60.468750, 33.724340 ], [ 60.908203, 33.578015 ], [ 60.468750, 32.990236 ], [ 60.820312, 32.249974 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.428663 ], [ 61.699219, 30.751278 ], [ 60.820312, 29.840644 ], [ 61.699219, 28.767659 ], [ 62.666016, 28.304381 ], [ 62.753906, 27.449790 ], [ 63.193359, 27.293689 ], [ 63.281250, 26.824071 ], [ 61.787109, 26.273714 ], [ 61.435547, 25.085599 ], [ 57.392578, 25.799891 ], [ 56.953125, 26.980829 ], [ 56.425781, 27.215556 ], [ 55.722656, 26.980829 ], [ 54.667969, 26.509905 ], [ 53.437500, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.916767 ], [ 50.097656, 30.221102 ], [ 49.570312, 29.993002 ], [ 48.867188, 30.372875 ], [ 48.515625, 29.993002 ], [ 47.988281, 30.524413 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.812500, 31.728167 ], [ 47.285156, 32.472695 ], [ 46.054688, 33.063924 ], [ 45.351562, 34.016242 ], [ 45.615234, 34.813803 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.746512 ], [ 45.351562, 36.031332 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.341656 ], [ 44.033203, 39.436193 ], [ 44.736328, 39.774769 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.900391, 29.993002 ], [ 48.339844, 28.613459 ], [ 47.636719, 28.536275 ], [ 47.373047, 29.075375 ], [ 46.494141, 29.152161 ], [ 47.285156, 30.069094 ], [ 47.900391, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.900391, 29.993002 ], [ 48.339844, 28.613459 ], [ 47.636719, 28.536275 ], [ 47.373047, 29.075375 ], [ 46.494141, 29.152161 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.341797, 31.952162 ], [ 41.835938, 31.203405 ], [ 44.648438, 29.228890 ], [ 47.373047, 29.075375 ], [ 47.636719, 28.536275 ], [ 48.339844, 28.613459 ], [ 48.779297, 27.761330 ], [ 49.218750, 27.527758 ], [ 49.394531, 27.137368 ], [ 50.097656, 26.745610 ], [ 50.097656, 25.958045 ], [ 50.185547, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.064453, 24.607069 ], [ 51.328125, 24.686952 ], [ 51.943359, 23.079732 ], [ 54.931641, 22.512557 ], [ 55.195312, 22.755921 ], [ 55.634766, 22.024546 ], [ 54.931641, 20.055931 ], [ 51.943359, 19.062118 ], [ 49.042969, 18.646245 ], [ 48.164062, 18.229351 ], [ 47.460938, 17.140790 ], [ 46.933594, 16.972741 ], [ 46.669922, 17.308688 ], [ 46.318359, 17.308688 ], [ 45.175781, 17.476432 ], [ 43.769531, 17.392579 ], [ 43.330078, 17.644022 ], [ 43.066406, 17.140790 ], [ 43.154297, 16.720385 ], [ 42.714844, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.275391, 17.140790 ], [ 42.187500, 17.476432 ], [ 41.748047, 17.895114 ], [ 41.220703, 18.729502 ], [ 40.869141, 19.559790 ], [ 40.166016, 20.220966 ], [ 39.726562, 20.385825 ], [ 39.111328, 21.371244 ], [ 39.023438, 22.593726 ], [ 38.408203, 23.725012 ], [ 37.968750, 24.126702 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.878994 ], [ 36.210938, 26.588527 ], [ 35.068359, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.892578, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.916852 ], [ 37.441406, 30.069094 ], [ 37.617188, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.578535 ], [ 38.935547, 32.026706 ], [ 39.111328, 32.175612 ], [ 40.341797, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 32.175612 ], [ 40.341797, 31.952162 ], [ 41.835938, 31.203405 ], [ 44.648438, 29.228890 ], [ 47.373047, 29.075375 ], [ 47.636719, 28.536275 ], [ 48.339844, 28.613459 ], [ 48.779297, 27.761330 ], [ 49.218750, 27.527758 ], [ 49.394531, 27.137368 ], [ 50.097656, 26.745610 ], [ 50.097656, 25.958045 ], [ 50.185547, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.064453, 24.607069 ], [ 51.328125, 24.686952 ], [ 51.943359, 23.079732 ], [ 54.931641, 22.512557 ], [ 55.195312, 22.755921 ], [ 55.634766, 22.024546 ], [ 54.931641, 20.055931 ], [ 51.943359, 19.062118 ], [ 49.042969, 18.646245 ], [ 48.164062, 18.229351 ], [ 47.460938, 17.140790 ], [ 46.933594, 16.972741 ], [ 46.669922, 17.308688 ], [ 46.318359, 17.308688 ], [ 45.175781, 17.476432 ], [ 43.769531, 17.392579 ], [ 43.330078, 17.644022 ], [ 43.066406, 17.140790 ], [ 43.154297, 16.720385 ], [ 42.714844, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.275391, 17.140790 ], [ 42.187500, 17.476432 ], [ 41.748047, 17.895114 ], [ 41.220703, 18.729502 ], [ 40.869141, 19.559790 ], [ 40.166016, 20.220966 ], [ 39.726562, 20.385825 ], [ 39.111328, 21.371244 ], [ 39.023438, 22.593726 ], [ 38.408203, 23.725012 ], [ 37.968750, 24.126702 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.878994 ], [ 36.210938, 26.588527 ], [ 35.068359, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.892578, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.916852 ], [ 37.441406, 30.069094 ], [ 37.617188, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.578535 ], [ 38.935547, 32.026706 ], [ 39.111328, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.503906, 25.878994 ], [ 51.591797, 25.244696 ], [ 51.328125, 24.686952 ], [ 51.064453, 24.607069 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.240234, 26.115986 ], [ 51.503906, 25.878994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.240234, 26.115986 ], [ 51.503906, 25.878994 ], [ 51.591797, 25.244696 ], [ 51.328125, 24.686952 ], [ 51.064453, 24.607069 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.240234, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.722656, 24.287027 ], [ 55.898438, 24.206890 ], [ 55.458984, 23.966176 ], [ 55.458984, 23.563987 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 51.679688, 24.367114 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.722656, 24.287027 ], [ 55.898438, 24.206890 ], [ 55.458984, 23.966176 ], [ 55.458984, 23.563987 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 51.679688, 24.367114 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, 42.163403 ], [ 54.052734, 42.358544 ], [ 54.667969, 42.098222 ], [ 55.371094, 41.310824 ], [ 57.041016, 41.376809 ], [ 56.865234, 41.836828 ], [ 57.744141, 42.228517 ], [ 58.623047, 42.811522 ], [ 59.941406, 42.228517 ], [ 60.029297, 41.442726 ], [ 60.380859, 41.244772 ], [ 61.523438, 41.310824 ], [ 61.875000, 41.112469 ], [ 62.314453, 40.111689 ], [ 64.160156, 38.959409 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.445312, 37.370157 ], [ 66.181641, 37.439974 ], [ 65.742188, 37.718590 ], [ 65.566406, 37.370157 ], [ 64.687500, 37.160317 ], [ 64.511719, 36.315125 ], [ 63.896484, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.929688, 35.460670 ], [ 62.226562, 35.317366 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 60.292969, 36.597889 ], [ 59.150391, 37.439974 ], [ 58.359375, 37.579413 ], [ 57.304688, 38.065392 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.996163 ], [ 55.458984, 37.996163 ], [ 54.755859, 37.439974 ], [ 53.876953, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.244772 ], [ 52.470703, 41.836828 ], [ 52.910156, 42.163403 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.811522 ], [ 59.941406, 42.228517 ], [ 60.029297, 41.442726 ], [ 60.380859, 41.244772 ], [ 61.523438, 41.310824 ], [ 61.875000, 41.112469 ], [ 62.314453, 40.111689 ], [ 64.160156, 38.959409 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.445312, 37.370157 ], [ 66.181641, 37.439974 ], [ 65.742188, 37.718590 ], [ 65.566406, 37.370157 ], [ 64.687500, 37.160317 ], [ 64.511719, 36.315125 ], [ 63.896484, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.929688, 35.460670 ], [ 62.226562, 35.317366 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 60.292969, 36.597889 ], [ 59.150391, 37.439974 ], [ 58.359375, 37.579413 ], [ 57.304688, 38.065392 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.996163 ], [ 55.458984, 37.996163 ], [ 54.755859, 37.439974 ], [ 53.876953, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.178654 ], [ 52.470703, 41.836828 ], [ 52.910156, 42.163403 ], [ 54.052734, 42.358544 ], [ 54.667969, 42.098222 ], [ 55.371094, 41.310824 ], [ 57.041016, 41.376809 ], [ 56.865234, 41.836828 ], [ 57.744141, 42.228517 ], [ 58.623047, 42.811522 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 49.570312, 14.774883 ], [ 48.603516, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.285156, 13.667338 ], [ 45.615234, 13.325485 ], [ 44.912109, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 43.154297, 13.239945 ], [ 43.242188, 13.838080 ], [ 42.890625, 14.859850 ], [ 42.539062, 15.284185 ], [ 42.802734, 15.284185 ], [ 42.626953, 15.792254 ], [ 42.802734, 15.961329 ], [ 42.714844, 16.383391 ], [ 43.154297, 16.720385 ], [ 43.066406, 17.140790 ], [ 43.330078, 17.644022 ], [ 43.769531, 17.392579 ], [ 45.175781, 17.476432 ], [ 46.318359, 17.308688 ], [ 46.669922, 17.308688 ], [ 46.933594, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.229351 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 49.570312, 14.774883 ], [ 48.603516, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.285156, 13.667338 ], [ 45.615234, 13.325485 ], [ 44.912109, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 43.154297, 13.239945 ], [ 43.242188, 13.838080 ], [ 42.890625, 14.859850 ], [ 42.539062, 15.284185 ], [ 42.802734, 15.284185 ], [ 42.626953, 15.792254 ], [ 42.802734, 15.961329 ], [ 42.714844, 16.383391 ], [ 43.154297, 16.720385 ], [ 43.066406, 17.140790 ], [ 43.330078, 17.644022 ], [ 43.769531, 17.392579 ], [ 45.175781, 17.476432 ], [ 46.318359, 17.308688 ], [ 46.669922, 17.308688 ], [ 46.933594, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.229351 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.777344, 24.287027 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.644524 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.350076 ], [ 59.238281, 21.453069 ], [ 58.798828, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.550509 ], [ 57.744141, 20.303418 ], [ 57.656250, 19.808054 ], [ 57.744141, 19.145168 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.646245 ], [ 56.425781, 18.145852 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.308688 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.525391, 16.720385 ], [ 53.085938, 16.720385 ], [ 51.943359, 19.062118 ], [ 54.931641, 20.055931 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.755921 ], [ 55.195312, 23.160563 ], [ 55.458984, 23.563987 ], [ 55.458984, 23.966176 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.287027 ], [ 55.810547, 24.926295 ], [ 56.337891, 24.926295 ], [ 56.777344, 24.287027 ] ] ], [ [ [ 56.425781, 26.352498 ], [ 56.337891, 25.958045 ], [ 56.250000, 25.720735 ], [ 55.986328, 26.115986 ], [ 56.337891, 26.431228 ], [ 56.425781, 26.352498 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.337891, 24.926295 ], [ 56.777344, 24.287027 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.644524 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.350076 ], [ 59.238281, 21.453069 ], [ 58.798828, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.550509 ], [ 57.744141, 20.303418 ], [ 57.656250, 19.808054 ], [ 57.744141, 19.145168 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.646245 ], [ 56.425781, 18.145852 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.308688 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.525391, 16.720385 ], [ 53.085938, 16.720385 ], [ 51.943359, 19.062118 ], [ 54.931641, 20.055931 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.755921 ], [ 55.195312, 23.160563 ], [ 55.458984, 23.563987 ], [ 55.458984, 23.966176 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.287027 ], [ 55.810547, 24.926295 ], [ 56.337891, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.425781, 26.352498 ], [ 56.337891, 25.958045 ], [ 56.250000, 25.720735 ], [ 55.986328, 26.115986 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 11.350797 ], [ 43.593750, 10.919618 ], [ 44.033203, 10.487812 ], [ 44.560547, 10.487812 ], [ 46.582031, 10.833306 ], [ 48.339844, 11.436955 ], [ 48.867188, 11.436955 ], [ 48.867188, 9.535749 ], [ 47.724609, 8.059230 ], [ 46.933594, 8.059230 ], [ 43.593750, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.066406, 11.523088 ], [ 43.417969, 11.350797 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 11.523088 ], [ 43.417969, 11.350797 ], [ 43.593750, 10.919618 ], [ 44.033203, 10.487812 ], [ 44.560547, 10.487812 ], [ 46.582031, 10.833306 ], [ 48.339844, 11.436955 ], [ 48.867188, 11.436955 ], [ 48.867188, 9.535749 ], [ 47.724609, 8.059230 ], [ 46.933594, 8.059230 ], [ 43.593750, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.066406, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 10.660608 ], [ 50.009766, 8.146243 ], [ 48.515625, 5.353521 ], [ 46.494141, 2.899153 ], [ 43.066406, 0.351560 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.790990 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.302591 ], [ 42.714844, 4.302591 ], [ 43.593750, 5.003394 ], [ 44.912109, 5.003394 ], [ 47.724609, 8.059230 ], [ 48.867188, 9.535749 ], [ 48.867188, 11.436955 ], [ 49.658203, 11.609193 ], [ 50.185547, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.064453, 12.039321 ], [ 50.976562, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.064453, 12.039321 ], [ 50.976562, 10.660608 ], [ 50.009766, 8.146243 ], [ 48.515625, 5.353521 ], [ 46.494141, 2.899153 ], [ 43.066406, 0.351560 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.790990 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.302591 ], [ 42.714844, 4.302591 ], [ 43.593750, 5.003394 ], [ 44.912109, 5.003394 ], [ 47.724609, 8.059230 ], [ 48.867188, 9.535749 ], [ 48.867188, 11.436955 ], [ 49.658203, 11.609193 ], [ 50.185547, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.064453, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.400391, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 70.488281, 39.639538 ], [ 71.718750, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.179688, 38.616870 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 72.597656, 37.090240 ], [ 71.806641, 36.738884 ], [ 71.367188, 37.090240 ], [ 71.455078, 37.926868 ], [ 71.191406, 37.996163 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 70.312500, 38.203655 ], [ 70.048828, 37.649034 ], [ 69.433594, 37.649034 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.090240 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 68.994141, 40.111689 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 70.488281, 39.639538 ], [ 71.718750, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.179688, 38.616870 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 72.597656, 37.090240 ], [ 71.806641, 36.738884 ], [ 71.367188, 37.090240 ], [ 71.455078, 37.926868 ], [ 71.191406, 37.996163 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 70.312500, 38.203655 ], [ 70.048828, 37.649034 ], [ 69.433594, 37.649034 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.090240 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 68.994141, 40.111689 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.279297, 38.272689 ], [ 71.191406, 37.996163 ], [ 71.455078, 37.926868 ], [ 71.367188, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.090240 ], [ 73.212891, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.003906, 36.879621 ], [ 71.806641, 36.527295 ], [ 71.191406, 36.102376 ], [ 71.542969, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.103516, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.873047, 34.089061 ], [ 70.312500, 33.431441 ], [ 69.609375, 33.137551 ], [ 69.257812, 32.546813 ], [ 69.257812, 31.952162 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.653381 ], [ 67.675781, 31.353637 ], [ 66.884766, 31.353637 ], [ 66.357422, 30.751278 ], [ 66.269531, 29.916852 ], [ 65.039062, 29.535230 ], [ 64.335938, 29.611670 ], [ 64.072266, 29.382175 ], [ 63.544922, 29.535230 ], [ 62.490234, 29.382175 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.249974 ], [ 60.468750, 32.990236 ], [ 60.908203, 33.578015 ], [ 60.468750, 33.724340 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.317366 ], [ 62.929688, 35.460670 ], [ 63.193359, 35.889050 ], [ 63.896484, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.687500, 37.160317 ], [ 65.566406, 37.370157 ], [ 65.742188, 37.718590 ], [ 66.181641, 37.439974 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.090240 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.433594, 37.649034 ], [ 70.048828, 37.649034 ], [ 70.312500, 38.203655 ], [ 70.751953, 38.548165 ], [ 71.279297, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.751953, 38.548165 ], [ 71.279297, 38.272689 ], [ 71.191406, 37.996163 ], [ 71.455078, 37.926868 ], [ 71.367188, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.090240 ], [ 73.212891, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.003906, 36.879621 ], [ 71.806641, 36.527295 ], [ 71.191406, 36.102376 ], [ 71.542969, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.103516, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.873047, 34.089061 ], [ 70.312500, 33.431441 ], [ 69.609375, 33.137551 ], [ 69.257812, 32.546813 ], [ 69.257812, 31.952162 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.653381 ], [ 67.675781, 31.353637 ], [ 66.884766, 31.353637 ], [ 66.357422, 30.751278 ], [ 66.269531, 29.916852 ], [ 65.039062, 29.535230 ], [ 64.335938, 29.611670 ], [ 64.072266, 29.382175 ], [ 63.544922, 29.535230 ], [ 62.490234, 29.382175 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.249974 ], [ 60.468750, 32.990236 ], [ 60.908203, 33.578015 ], [ 60.468750, 33.724340 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.317366 ], [ 62.929688, 35.460670 ], [ 63.193359, 35.889050 ], [ 63.896484, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.687500, 37.160317 ], [ 65.566406, 37.370157 ], [ 65.742188, 37.718590 ], [ 66.181641, 37.439974 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.090240 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.433594, 37.649034 ], [ 70.048828, 37.649034 ], [ 70.312500, 38.203655 ], [ 70.751953, 38.548165 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.849609, 36.668419 ], [ 76.113281, 35.960223 ], [ 77.783203, 35.532226 ], [ 76.816406, 34.669359 ], [ 75.673828, 34.524661 ], [ 74.179688, 34.813803 ], [ 73.740234, 34.379713 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.324276 ], [ 74.355469, 31.728167 ], [ 74.355469, 31.052934 ], [ 73.388672, 29.993002 ], [ 72.773438, 28.998532 ], [ 71.718750, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.433594, 26.980829 ], [ 70.136719, 26.509905 ], [ 70.224609, 25.799891 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.115234, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.060547, 24.686952 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 63.193359, 27.293689 ], [ 62.753906, 27.449790 ], [ 62.666016, 28.304381 ], [ 61.699219, 28.767659 ], [ 60.820312, 29.840644 ], [ 62.490234, 29.382175 ], [ 63.544922, 29.535230 ], [ 64.072266, 29.382175 ], [ 64.335938, 29.611670 ], [ 65.039062, 29.535230 ], [ 66.269531, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.884766, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.763672, 31.653381 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.257812, 31.952162 ], [ 69.257812, 32.546813 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.431441 ], [ 69.873047, 34.089061 ], [ 70.839844, 34.016242 ], [ 71.103516, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.542969, 35.173808 ], [ 71.191406, 36.102376 ], [ 71.806641, 36.527295 ], [ 74.003906, 36.879621 ], [ 75.146484, 37.160317 ], [ 75.849609, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.849609, 36.668419 ], [ 76.113281, 35.960223 ], [ 77.783203, 35.532226 ], [ 76.816406, 34.669359 ], [ 75.673828, 34.524661 ], [ 74.179688, 34.813803 ], [ 73.740234, 34.379713 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.324276 ], [ 74.355469, 31.728167 ], [ 74.355469, 31.052934 ], [ 73.388672, 29.993002 ], [ 72.773438, 28.998532 ], [ 71.718750, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.433594, 26.980829 ], [ 70.136719, 26.509905 ], [ 70.224609, 25.799891 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.115234, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.060547, 24.686952 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 63.193359, 27.293689 ], [ 62.753906, 27.449790 ], [ 62.666016, 28.304381 ], [ 61.699219, 28.767659 ], [ 60.820312, 29.840644 ], [ 62.490234, 29.382175 ], [ 63.544922, 29.535230 ], [ 64.072266, 29.382175 ], [ 64.335938, 29.611670 ], [ 65.039062, 29.535230 ], [ 66.269531, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.884766, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.763672, 31.653381 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.257812, 31.952162 ], [ 69.257812, 32.546813 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.431441 ], [ 69.873047, 34.089061 ], [ 70.839844, 34.016242 ], [ 71.103516, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.542969, 35.173808 ], [ 71.191406, 36.102376 ], [ 71.806641, 36.527295 ], [ 74.003906, 36.879621 ], [ 75.146484, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 83.320312, 29.535230 ], [ 83.847656, 29.382175 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.690588 ], [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 27.449790 ], [ 88.154297, 26.824071 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.166016, 26.745610 ], [ 84.638672, 27.293689 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 80.419922, 29.764377 ], [ 81.474609, 30.448674 ], [ 82.265625, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.474609, 30.448674 ], [ 82.265625, 30.145127 ], [ 83.320312, 29.535230 ], [ 83.847656, 29.382175 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.690588 ], [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 27.449790 ], [ 88.154297, 26.824071 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.166016, 26.745610 ], [ 84.638672, 27.293689 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 80.419922, 29.764377 ], [ 81.474609, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.837891, 34.379713 ], [ 78.750000, 33.578015 ], [ 79.189453, 33.063924 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.620870 ], [ 78.662109, 31.578535 ], [ 81.035156, 30.221102 ], [ 80.419922, 29.764377 ], [ 80.068359, 28.844674 ], [ 83.232422, 27.371767 ], [ 84.638672, 27.293689 ], [ 85.166016, 26.745610 ], [ 87.187500, 26.431228 ], [ 87.978516, 26.431228 ], [ 88.154297, 26.824071 ], [ 87.978516, 27.449790 ], [ 88.066406, 27.916767 ], [ 88.681641, 28.149503 ], [ 88.769531, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.902477 ], [ 92.021484, 27.527758 ], [ 91.669922, 27.839076 ], [ 92.460938, 27.916767 ], [ 93.339844, 28.690588 ], [ 94.482422, 29.305561 ], [ 95.361328, 29.075375 ], [ 96.064453, 29.458731 ], [ 96.503906, 28.844674 ], [ 96.240234, 28.459033 ], [ 97.294922, 28.304381 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.761330 ], [ 97.119141, 27.137368 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.097656, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.482422, 24.686952 ], [ 94.042969, 23.885838 ], [ 93.251953, 24.126702 ], [ 93.251953, 23.079732 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.350076 ], [ 92.636719, 22.105999 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.563987 ], [ 91.406250, 24.126702 ], [ 91.845703, 24.206890 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.324167 ], [ 89.824219, 26.037042 ], [ 89.296875, 26.037042 ], [ 88.505859, 26.509905 ], [ 88.154297, 25.799891 ], [ 88.857422, 25.244696 ], [ 88.242188, 24.926295 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.287027 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.945312, 22.105999 ], [ 88.857422, 21.698265 ], [ 86.923828, 21.534847 ], [ 87.011719, 20.797201 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.636192 ], [ 80.771484, 15.961329 ], [ 80.244141, 15.961329 ], [ 79.980469, 15.199386 ], [ 80.244141, 13.068777 ], [ 79.804688, 12.125264 ], [ 79.804688, 10.401378 ], [ 79.277344, 10.314919 ], [ 78.837891, 9.622414 ], [ 79.189453, 9.275622 ], [ 78.222656, 9.015302 ], [ 77.871094, 8.320212 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.673828, 11.350797 ], [ 74.794922, 12.811801 ], [ 74.443359, 14.689881 ], [ 73.476562, 16.045813 ], [ 72.773438, 19.228177 ], [ 72.773438, 20.468189 ], [ 72.597656, 21.371244 ], [ 71.103516, 20.797201 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.224609, 25.799891 ], [ 70.136719, 26.509905 ], [ 69.433594, 26.980829 ], [ 70.576172, 27.994401 ], [ 71.718750, 27.916767 ], [ 72.773438, 28.998532 ], [ 73.388672, 29.993002 ], [ 74.355469, 31.052934 ], [ 74.355469, 31.728167 ], [ 75.234375, 32.324276 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.379713 ], [ 74.179688, 34.813803 ], [ 75.673828, 34.524661 ], [ 76.816406, 34.669359 ], [ 77.783203, 35.532226 ], [ 78.837891, 34.379713 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.783203, 35.532226 ], [ 78.837891, 34.379713 ], [ 78.750000, 33.578015 ], [ 79.189453, 33.063924 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.620870 ], [ 78.662109, 31.578535 ], [ 81.035156, 30.221102 ], [ 80.419922, 29.764377 ], [ 80.068359, 28.844674 ], [ 83.232422, 27.371767 ], [ 84.638672, 27.293689 ], [ 85.166016, 26.745610 ], [ 87.187500, 26.431228 ], [ 87.978516, 26.431228 ], [ 88.154297, 26.824071 ], [ 87.978516, 27.449790 ], [ 88.066406, 27.916767 ], [ 88.681641, 28.149503 ], [ 88.769531, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.902477 ], [ 92.021484, 27.527758 ], [ 91.669922, 27.839076 ], [ 92.460938, 27.916767 ], [ 93.339844, 28.690588 ], [ 94.482422, 29.305561 ], [ 95.361328, 29.075375 ], [ 96.064453, 29.458731 ], [ 96.503906, 28.844674 ], [ 96.240234, 28.459033 ], [ 97.294922, 28.304381 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.761330 ], [ 97.119141, 27.137368 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.097656, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.482422, 24.686952 ], [ 94.042969, 23.885838 ], [ 93.251953, 24.126702 ], [ 93.251953, 23.079732 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.350076 ], [ 92.636719, 22.105999 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.563987 ], [ 91.406250, 24.126702 ], [ 91.845703, 24.206890 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.324167 ], [ 89.824219, 26.037042 ], [ 89.296875, 26.037042 ], [ 88.505859, 26.509905 ], [ 88.154297, 25.799891 ], [ 88.857422, 25.244696 ], [ 88.242188, 24.926295 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.287027 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.945312, 22.105999 ], [ 88.857422, 21.698265 ], [ 86.923828, 21.534847 ], [ 87.011719, 20.797201 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.636192 ], [ 80.771484, 15.961329 ], [ 80.244141, 15.961329 ], [ 79.980469, 15.199386 ], [ 80.244141, 13.068777 ], [ 79.804688, 12.125264 ], [ 79.804688, 10.401378 ], [ 79.277344, 10.314919 ], [ 78.837891, 9.622414 ], [ 79.189453, 9.275622 ], [ 78.222656, 9.015302 ], [ 77.871094, 8.320212 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.673828, 11.350797 ], [ 74.794922, 12.811801 ], [ 74.443359, 14.689881 ], [ 73.476562, 16.045813 ], [ 72.773438, 19.228177 ], [ 72.773438, 20.468189 ], [ 72.597656, 21.371244 ], [ 71.103516, 20.797201 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.224609, 25.799891 ], [ 70.136719, 26.509905 ], [ 69.433594, 26.980829 ], [ 70.576172, 27.994401 ], [ 71.718750, 27.916767 ], [ 72.773438, 28.998532 ], [ 73.388672, 29.993002 ], [ 74.355469, 31.052934 ], [ 74.355469, 31.728167 ], [ 75.234375, 32.324276 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.379713 ], [ 74.179688, 34.813803 ], [ 75.673828, 34.524661 ], [ 76.816406, 34.669359 ], [ 77.783203, 35.532226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.053161 ], [ 79.804688, 6.839170 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.053161 ], [ 79.804688, 6.839170 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.931641, 51.672555 ], [ 102.041016, 51.289406 ], [ 102.216797, 50.513427 ], [ 103.623047, 50.120578 ], [ 105.820312, 50.457504 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.837982 ], [ 108.457031, 49.325122 ], [ 109.335938, 49.325122 ], [ 110.654297, 49.152970 ], [ 111.533203, 49.382373 ], [ 112.851562, 49.553726 ], [ 114.345703, 50.289339 ], [ 114.960938, 50.176898 ], [ 115.400391, 49.837982 ], [ 116.630859, 49.894634 ], [ 115.400391, 48.166085 ], [ 115.664062, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.246094, 47.754098 ], [ 118.037109, 48.107431 ], [ 118.828125, 47.754098 ], [ 119.707031, 47.100045 ], [ 119.619141, 46.739861 ], [ 118.828125, 46.860191 ], [ 117.333984, 46.679594 ], [ 116.630859, 46.437857 ], [ 115.927734, 45.767523 ], [ 114.433594, 45.398450 ], [ 113.378906, 44.840291 ], [ 111.796875, 45.151053 ], [ 111.269531, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.452919 ], [ 110.390625, 42.875964 ], [ 109.160156, 42.553080 ], [ 107.666016, 42.488302 ], [ 106.083984, 42.163403 ], [ 104.941406, 41.640078 ], [ 104.501953, 41.967659 ], [ 103.271484, 41.967659 ], [ 101.777344, 42.553080 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.382812, 42.811522 ], [ 96.328125, 42.747012 ], [ 95.712891, 43.325178 ], [ 95.273438, 44.276671 ], [ 94.658203, 44.402392 ], [ 93.427734, 45.026950 ], [ 90.878906, 45.336702 ], [ 90.527344, 45.767523 ], [ 90.966797, 46.920255 ], [ 90.263672, 47.694974 ], [ 88.769531, 48.107431 ], [ 87.978516, 48.632909 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.847573 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.513427 ], [ 94.746094, 50.064192 ], [ 95.800781, 50.007739 ], [ 97.207031, 49.781264 ], [ 98.173828, 50.457504 ], [ 97.822266, 51.013755 ], [ 98.789062, 52.052490 ], [ 99.931641, 51.672555 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.789062, 52.052490 ], [ 99.931641, 51.672555 ], [ 102.041016, 51.289406 ], [ 102.216797, 50.513427 ], [ 103.623047, 50.120578 ], [ 105.820312, 50.457504 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.837982 ], [ 108.457031, 49.325122 ], [ 109.335938, 49.325122 ], [ 110.654297, 49.152970 ], [ 111.533203, 49.382373 ], [ 112.851562, 49.553726 ], [ 114.345703, 50.289339 ], [ 114.960938, 50.176898 ], [ 115.400391, 49.837982 ], [ 116.630859, 49.894634 ], [ 115.400391, 48.166085 ], [ 115.664062, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.246094, 47.754098 ], [ 118.037109, 48.107431 ], [ 118.828125, 47.754098 ], [ 119.707031, 47.100045 ], [ 119.619141, 46.739861 ], [ 118.828125, 46.860191 ], [ 117.333984, 46.679594 ], [ 116.630859, 46.437857 ], [ 115.927734, 45.767523 ], [ 114.433594, 45.398450 ], [ 113.378906, 44.840291 ], [ 111.796875, 45.151053 ], [ 111.269531, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.452919 ], [ 110.390625, 42.875964 ], [ 109.160156, 42.553080 ], [ 107.666016, 42.488302 ], [ 106.083984, 42.163403 ], [ 104.941406, 41.640078 ], [ 104.501953, 41.967659 ], [ 103.271484, 41.967659 ], [ 101.777344, 42.553080 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.382812, 42.811522 ], [ 96.328125, 42.747012 ], [ 95.712891, 43.325178 ], [ 95.273438, 44.276671 ], [ 94.658203, 44.402392 ], [ 93.427734, 45.026950 ], [ 90.878906, 45.336702 ], [ 90.527344, 45.767523 ], [ 90.966797, 46.920255 ], [ 90.263672, 47.694974 ], [ 88.769531, 48.107431 ], [ 87.978516, 48.632909 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.847573 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.513427 ], [ 94.746094, 50.064192 ], [ 95.800781, 50.007739 ], [ 97.207031, 49.781264 ], [ 98.173828, 50.457504 ], [ 97.822266, 51.013755 ], [ 98.789062, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.839076 ], [ 92.021484, 27.527758 ], [ 92.021484, 26.902477 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.769531, 27.137368 ], [ 88.769531, 27.371767 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.839076 ], [ 92.021484, 27.527758 ], [ 92.021484, 26.902477 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.769531, 27.137368 ], [ 88.769531, 27.371767 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.296875, 26.037042 ], [ 89.824219, 26.037042 ], [ 89.912109, 25.324167 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.845703, 24.206890 ], [ 91.406250, 24.126702 ], [ 91.142578, 23.563987 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.105999 ], [ 92.636719, 21.371244 ], [ 92.285156, 21.534847 ], [ 92.285156, 20.715015 ], [ 92.021484, 21.207459 ], [ 91.757812, 22.187405 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.527344, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.105999 ], [ 89.648438, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.287027 ], [ 88.066406, 24.527135 ], [ 88.242188, 24.926295 ], [ 88.857422, 25.244696 ], [ 88.154297, 25.799891 ], [ 88.505859, 26.509905 ], [ 89.296875, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.505859, 26.509905 ], [ 89.296875, 26.037042 ], [ 89.824219, 26.037042 ], [ 89.912109, 25.324167 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.845703, 24.206890 ], [ 91.406250, 24.126702 ], [ 91.142578, 23.563987 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.105999 ], [ 92.636719, 21.371244 ], [ 92.285156, 21.534847 ], [ 92.285156, 20.715015 ], [ 92.021484, 21.207459 ], [ 91.757812, 22.187405 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.527344, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.105999 ], [ 89.648438, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.287027 ], [ 88.066406, 24.527135 ], [ 88.242188, 24.926295 ], [ 88.857422, 25.244696 ], [ 88.154297, 25.799891 ], [ 88.505859, 26.509905 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ] ] ], [ [ [ 124.980469, 53.173119 ], [ 125.859375, 52.802761 ], [ 127.265625, 50.792047 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 133.330078, 48.224673 ], [ 135.000000, 48.516604 ], [ 134.472656, 47.635784 ], [ 134.033203, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.220703, 44.150681 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 127.265625, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.123047, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.962891, 21.861499 ], [ 106.523438, 22.268764 ], [ 106.699219, 22.836946 ], [ 105.732422, 22.998852 ], [ 105.292969, 23.402765 ], [ 104.414062, 22.836946 ], [ 102.656250, 22.755921 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 98.173828, 27.761330 ], [ 97.910156, 28.381735 ], [ 97.294922, 28.304381 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 93.339844, 28.690588 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.839076 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 88.066406, 27.916767 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.690588 ], [ 84.199219, 28.844674 ], [ 83.847656, 29.382175 ], [ 83.320312, 29.535230 ], [ 82.265625, 30.145127 ], [ 81.474609, 30.448674 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.750000, 33.578015 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 75.849609, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 74.179688, 38.616870 ], [ 73.916016, 38.548165 ], [ 73.652344, 39.436193 ], [ 73.916016, 39.707187 ], [ 73.740234, 39.909736 ], [ 74.707031, 40.380028 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 78.486328, 41.640078 ], [ 80.068359, 42.163403 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.275391, 49.267805 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 88.769531, 48.107431 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 94.658203, 44.402392 ], [ 95.273438, 44.276671 ], [ 95.712891, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.382812, 42.811522 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.777344, 42.553080 ], [ 103.271484, 41.967659 ], [ 104.501953, 41.967659 ], [ 104.941406, 41.640078 ], [ 106.083984, 42.163403 ], [ 107.666016, 42.488302 ], [ 109.160156, 42.553080 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.452919 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 114.433594, 45.398450 ], [ 115.927734, 45.767523 ], [ 116.630859, 46.437857 ], [ 117.333984, 46.679594 ], [ 118.828125, 46.860191 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 116.279297, 47.872144 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 119.267578, 50.625073 ], [ 120.146484, 51.672555 ], [ 120.673828, 51.998410 ], [ 120.673828, 52.536273 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 122.167969, 53.435719 ], [ 123.486328, 53.488046 ], [ 124.980469, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 123.486328, 53.488046 ], [ 124.980469, 53.173119 ], [ 125.859375, 52.802761 ], [ 127.265625, 50.792047 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 133.330078, 48.224673 ], [ 135.000000, 48.516604 ], [ 134.472656, 47.635784 ], [ 134.033203, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.220703, 44.150681 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 127.265625, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.123047, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.962891, 21.861499 ], [ 106.523438, 22.268764 ], [ 106.699219, 22.836946 ], [ 105.732422, 22.998852 ], [ 105.292969, 23.402765 ], [ 104.414062, 22.836946 ], [ 102.656250, 22.755921 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 98.173828, 27.761330 ], [ 97.910156, 28.381735 ], [ 97.294922, 28.304381 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 93.339844, 28.690588 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.839076 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 88.066406, 27.916767 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.690588 ], [ 84.199219, 28.844674 ], [ 83.847656, 29.382175 ], [ 83.320312, 29.535230 ], [ 82.265625, 30.145127 ], [ 81.474609, 30.448674 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.750000, 33.578015 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 75.849609, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 74.179688, 38.616870 ], [ 73.916016, 38.548165 ], [ 73.652344, 39.436193 ], [ 73.916016, 39.707187 ], [ 73.740234, 39.909736 ], [ 74.707031, 40.380028 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 78.486328, 41.640078 ], [ 80.068359, 42.163403 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.275391, 49.267805 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 88.769531, 48.107431 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 94.658203, 44.402392 ], [ 95.273438, 44.276671 ], [ 95.712891, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.382812, 42.811522 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.777344, 42.553080 ], [ 103.271484, 41.967659 ], [ 104.501953, 41.967659 ], [ 104.941406, 41.640078 ], [ 106.083984, 42.163403 ], [ 107.666016, 42.488302 ], [ 109.160156, 42.553080 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.452919 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 114.433594, 45.398450 ], [ 115.927734, 45.767523 ], [ 116.630859, 46.437857 ], [ 117.333984, 46.679594 ], [ 118.828125, 46.860191 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 116.279297, 47.872144 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 119.267578, 50.625073 ], [ 120.146484, 51.672555 ], [ 120.673828, 51.998410 ], [ 120.673828, 52.536273 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 122.167969, 53.435719 ], [ 123.486328, 53.488046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.173828, 27.761330 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.958045 ], [ 97.646484, 25.085599 ], [ 97.558594, 23.966176 ], [ 98.613281, 24.126702 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.998852 ], [ 99.228516, 22.187405 ], [ 100.371094, 21.616579 ], [ 101.074219, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.283203, 20.797201 ], [ 100.107422, 20.468189 ], [ 99.492188, 20.220966 ], [ 98.876953, 19.808054 ], [ 98.173828, 19.725342 ], [ 97.734375, 18.646245 ], [ 97.294922, 18.479609 ], [ 97.822266, 17.644022 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.368950 ], [ 98.173828, 15.199386 ], [ 98.349609, 14.689881 ], [ 99.052734, 13.838080 ], [ 99.140625, 12.811801 ], [ 99.580078, 11.953349 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.746969 ], [ 98.701172, 11.523088 ], [ 98.349609, 12.039321 ], [ 98.437500, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.482422, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.603516, 19.808054 ], [ 93.076172, 19.890723 ], [ 92.285156, 20.715015 ], [ 92.285156, 21.534847 ], [ 92.636719, 21.371244 ], [ 92.636719, 22.105999 ], [ 93.164062, 22.350076 ], [ 92.988281, 22.755921 ], [ 93.251953, 23.079732 ], [ 93.251953, 24.126702 ], [ 94.042969, 23.885838 ], [ 94.482422, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.097656, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.137368 ], [ 97.031250, 27.761330 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.304381 ], [ 97.910156, 28.381735 ], [ 98.173828, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.381735 ], [ 98.173828, 27.761330 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.958045 ], [ 97.646484, 25.085599 ], [ 97.558594, 23.966176 ], [ 98.613281, 24.126702 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.998852 ], [ 99.228516, 22.187405 ], [ 100.371094, 21.616579 ], [ 101.074219, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.283203, 20.797201 ], [ 100.107422, 20.468189 ], [ 99.492188, 20.220966 ], [ 98.876953, 19.808054 ], [ 98.173828, 19.725342 ], [ 97.734375, 18.646245 ], [ 97.294922, 18.479609 ], [ 97.822266, 17.644022 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.368950 ], [ 98.173828, 15.199386 ], [ 98.349609, 14.689881 ], [ 99.052734, 13.838080 ], [ 99.140625, 12.811801 ], [ 99.580078, 11.953349 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.746969 ], [ 98.701172, 11.523088 ], [ 98.349609, 12.039321 ], [ 98.437500, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.482422, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.603516, 19.808054 ], [ 93.076172, 19.890723 ], [ 92.285156, 20.715015 ], [ 92.285156, 21.534847 ], [ 92.636719, 21.371244 ], [ 92.636719, 22.105999 ], [ 93.164062, 22.350076 ], [ 92.988281, 22.755921 ], [ 93.251953, 23.079732 ], [ 93.251953, 24.126702 ], [ 94.042969, 23.885838 ], [ 94.482422, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.097656, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.137368 ], [ 97.031250, 27.761330 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.304381 ], [ 97.910156, 28.381735 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 106.523438, 16.636192 ], [ 107.226562, 15.961329 ], [ 107.490234, 15.284185 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.468750, 14.774883 ], [ 105.556641, 15.623037 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.476432 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 102.919922, 17.978733 ], [ 102.392578, 17.978733 ], [ 102.041016, 18.145852 ], [ 100.986328, 17.560247 ], [ 100.986328, 18.479609 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.468189 ], [ 100.283203, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ], [ 103.183594, 20.797201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.512557 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 106.523438, 16.636192 ], [ 107.226562, 15.961329 ], [ 107.490234, 15.284185 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.468750, 14.774883 ], [ 105.556641, 15.623037 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.476432 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 102.919922, 17.978733 ], [ 102.392578, 17.978733 ], [ 102.041016, 18.145852 ], [ 100.986328, 17.560247 ], [ 100.986328, 18.479609 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.468189 ], [ 100.283203, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.138470 ], [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 18.479609 ], [ 100.986328, 17.560247 ], [ 102.041016, 18.145852 ], [ 102.392578, 17.978733 ], [ 102.919922, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 104.677734, 17.476432 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.623037 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 104.238281, 14.434680 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.601562, 12.726084 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.931641, 12.382928 ], [ 99.140625, 9.968851 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 100.195312, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.878332 ], [ 101.074219, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.195312, 6.664608 ], [ 100.019531, 6.489983 ], [ 99.667969, 6.926427 ], [ 99.492188, 7.362467 ], [ 98.437500, 8.407168 ], [ 98.261719, 7.798079 ], [ 98.085938, 8.407168 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.953349 ], [ 99.140625, 12.811801 ], [ 99.052734, 13.838080 ], [ 98.349609, 14.689881 ], [ 98.173828, 15.199386 ], [ 98.525391, 15.368950 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.644022 ], [ 97.294922, 18.479609 ], [ 97.734375, 18.646245 ], [ 98.173828, 19.725342 ], [ 98.876953, 19.808054 ], [ 99.492188, 20.220966 ], [ 100.107422, 20.468189 ], [ 100.546875, 20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.468189 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 18.479609 ], [ 100.986328, 17.560247 ], [ 102.041016, 18.145852 ], [ 102.392578, 17.978733 ], [ 102.919922, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 104.677734, 17.476432 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.623037 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 104.238281, 14.434680 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.601562, 12.726084 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.931641, 12.382928 ], [ 99.140625, 9.968851 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 100.195312, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.878332 ], [ 101.074219, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.195312, 6.664608 ], [ 100.019531, 6.489983 ], [ 99.667969, 6.926427 ], [ 99.492188, 7.362467 ], [ 98.437500, 8.407168 ], [ 98.261719, 7.798079 ], [ 98.085938, 8.407168 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.953349 ], [ 99.140625, 12.811801 ], [ 99.052734, 13.838080 ], [ 98.349609, 14.689881 ], [ 98.173828, 15.199386 ], [ 98.525391, 15.368950 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.644022 ], [ 97.294922, 18.479609 ], [ 97.734375, 18.646245 ], [ 98.173828, 19.725342 ], [ 98.876953, 19.808054 ], [ 99.492188, 20.220966 ], [ 100.107422, 20.468189 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.732422, 22.998852 ], [ 106.699219, 22.836946 ], [ 106.523438, 22.268764 ], [ 106.962891, 21.861499 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.820312, 19.808054 ], [ 105.644531, 19.062118 ], [ 107.314453, 16.720385 ], [ 108.193359, 16.130262 ], [ 108.808594, 15.284185 ], [ 109.248047, 13.496473 ], [ 109.160156, 11.695273 ], [ 108.281250, 11.092166 ], [ 107.138672, 10.401378 ], [ 106.347656, 9.535749 ], [ 105.117188, 8.667918 ], [ 104.765625, 9.275622 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 105.117188, 10.919618 ], [ 106.171875, 11.005904 ], [ 105.732422, 11.609193 ], [ 107.490234, 12.382928 ], [ 107.578125, 13.581921 ], [ 107.314453, 14.264383 ], [ 107.490234, 15.284185 ], [ 107.226562, 15.961329 ], [ 106.523438, 16.636192 ], [ 105.029297, 18.729502 ], [ 103.886719, 19.311143 ], [ 104.150391, 19.642588 ], [ 104.765625, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.512557 ], [ 102.656250, 22.755921 ], [ 104.414062, 22.836946 ], [ 105.292969, 23.402765 ], [ 105.732422, 22.998852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.402765 ], [ 105.732422, 22.998852 ], [ 106.699219, 22.836946 ], [ 106.523438, 22.268764 ], [ 106.962891, 21.861499 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.820312, 19.808054 ], [ 105.644531, 19.062118 ], [ 107.314453, 16.720385 ], [ 108.193359, 16.130262 ], [ 108.808594, 15.284185 ], [ 109.248047, 13.496473 ], [ 109.160156, 11.695273 ], [ 108.281250, 11.092166 ], [ 107.138672, 10.401378 ], [ 106.347656, 9.535749 ], [ 105.117188, 8.667918 ], [ 104.765625, 9.275622 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 105.117188, 10.919618 ], [ 106.171875, 11.005904 ], [ 105.732422, 11.609193 ], [ 107.490234, 12.382928 ], [ 107.578125, 13.581921 ], [ 107.314453, 14.264383 ], [ 107.490234, 15.284185 ], [ 107.226562, 15.961329 ], [ 106.523438, 16.636192 ], [ 105.029297, 18.729502 ], [ 103.886719, 19.311143 ], [ 104.150391, 19.642588 ], [ 104.765625, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.512557 ], [ 102.656250, 22.755921 ], [ 104.414062, 22.836946 ], [ 105.292969, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.314453, 14.264383 ], [ 107.578125, 13.581921 ], [ 107.490234, 12.382928 ], [ 105.732422, 11.609193 ], [ 106.171875, 11.005904 ], [ 105.117188, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.447266, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.919922, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.349548 ], [ 105.996094, 13.923404 ], [ 106.435547, 14.604847 ], [ 107.314453, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 14.604847 ], [ 107.314453, 14.264383 ], [ 107.578125, 13.581921 ], [ 107.490234, 12.382928 ], [ 105.732422, 11.609193 ], [ 106.171875, 11.005904 ], [ 105.117188, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.447266, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.919922, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.349548 ], [ 105.996094, 13.923404 ], [ 106.435547, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.597656, 6.489983 ], [ 117.685547, 6.053161 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.090944 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 117.861328, 4.214943 ], [ 116.982422, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.488281, 3.250209 ], [ 115.048828, 2.899153 ], [ 114.609375, 1.493971 ], [ 113.730469, 1.230374 ], [ 112.851562, 1.581830 ], [ 112.324219, 1.493971 ], [ 111.796875, 0.966751 ], [ 111.093750, 1.054628 ], [ 110.478516, 0.790990 ], [ 109.775391, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 114.609375, 4.039618 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.400391, 5.528511 ], [ 116.191406, 6.227934 ], [ 116.718750, 6.926427 ], [ 117.070312, 7.013668 ], [ 117.597656, 6.489983 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.074219, 5.703448 ], [ 101.777344, 5.878332 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.915833 ], [ 103.271484, 3.776559 ], [ 103.447266, 2.811371 ], [ 103.798828, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 101.250000, 3.337954 ], [ 100.634766, 3.951941 ], [ 100.546875, 4.828260 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.019531, 6.489983 ], [ 100.195312, 6.664608 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.070312, 7.013668 ], [ 117.597656, 6.489983 ], [ 117.685547, 6.053161 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.090944 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 117.861328, 4.214943 ], [ 116.982422, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.488281, 3.250209 ], [ 115.048828, 2.899153 ], [ 114.609375, 1.493971 ], [ 113.730469, 1.230374 ], [ 112.851562, 1.581830 ], [ 112.324219, 1.493971 ], [ 111.796875, 0.966751 ], [ 111.093750, 1.054628 ], [ 110.478516, 0.790990 ], [ 109.775391, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 114.609375, 4.039618 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.400391, 5.528511 ], [ 116.191406, 6.227934 ], [ 116.718750, 6.926427 ], [ 117.070312, 7.013668 ] ] ], [ [ [ 100.195312, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.074219, 5.703448 ], [ 101.777344, 5.878332 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.915833 ], [ 103.271484, 3.776559 ], [ 103.447266, 2.811371 ], [ 103.798828, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 101.250000, 3.337954 ], [ 100.634766, 3.951941 ], [ 100.546875, 4.828260 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.019531, 6.489983 ], [ 100.195312, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.904297, 25.005973 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.146484, 22.836946 ], [ 120.058594, 23.563987 ], [ 120.673828, 24.607069 ], [ 121.464844, 25.324167 ], [ 121.904297, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.904297, 25.005973 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.146484, 22.836946 ], [ 120.058594, 23.563987 ], [ 120.673828, 24.607069 ], [ 121.464844, 25.324167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.605469, 42.423457 ], [ 130.693359, 42.228517 ], [ 130.341797, 42.293564 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 129.111328, 40.713956 ], [ 128.583984, 40.245992 ], [ 127.880859, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.441406, 39.368279 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 128.144531, 38.410558 ], [ 127.001953, 38.272689 ], [ 126.650391, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.123047, 37.788081 ], [ 125.683594, 37.996163 ], [ 125.507812, 37.788081 ], [ 125.244141, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.628906, 38.134557 ], [ 124.980469, 38.616870 ], [ 125.156250, 38.685510 ], [ 125.068359, 38.891033 ], [ 125.332031, 39.436193 ], [ 125.244141, 39.571822 ], [ 124.716797, 39.707187 ], [ 124.189453, 39.977120 ], [ 125.068359, 40.580585 ], [ 126.123047, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.265625, 41.508577 ], [ 128.144531, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.550781, 42.488302 ], [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 130.693359, 42.228517 ], [ 130.341797, 42.293564 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 129.111328, 40.713956 ], [ 128.583984, 40.245992 ], [ 127.880859, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.441406, 39.368279 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 128.144531, 38.410558 ], [ 127.001953, 38.272689 ], [ 126.650391, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.123047, 37.788081 ], [ 125.683594, 37.996163 ], [ 125.507812, 37.788081 ], [ 125.244141, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.628906, 38.134557 ], [ 124.980469, 38.616870 ], [ 125.156250, 38.685510 ], [ 125.068359, 38.891033 ], [ 125.332031, 39.436193 ], [ 125.244141, 39.571822 ], [ 124.716797, 39.707187 ], [ 124.189453, 39.977120 ], [ 125.068359, 40.580585 ], [ 126.123047, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.265625, 41.508577 ], [ 128.144531, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.550781, 42.488302 ], [ 129.990234, 43.004647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 128.144531, 34.957995 ], [ 127.353516, 34.524661 ], [ 126.474609, 34.452218 ], [ 126.298828, 34.957995 ], [ 126.474609, 35.746512 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.857507 ], [ 127.001953, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 128.144531, 34.957995 ], [ 127.353516, 34.524661 ], [ 126.474609, 34.452218 ], [ 126.298828, 34.957995 ], [ 126.474609, 35.746512 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.857507 ], [ 127.001953, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.320312, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.595703, 6.053161 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 123.925781, 6.926427 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 123.222656, 7.449624 ], [ 122.783203, 7.536764 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.275292 ], [ 122.255859, 8.059230 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 124.541016, 8.581021 ], [ 124.716797, 9.015302 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ] ] ], [ [ [ 118.916016, 10.401378 ], [ 119.443359, 11.350797 ], [ 119.619141, 10.574222 ], [ 119.003906, 10.055403 ], [ 118.476562, 9.362353 ], [ 117.246094, 8.494105 ], [ 117.597656, 9.102097 ], [ 118.916016, 10.401378 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.783203, 10.314919 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.398438, 10.487812 ], [ 124.013672, 11.264612 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.716797, 10.919618 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.436955 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ], [ 125.156250, 12.554564 ] ] ], [ [ [ 122.431641, 11.609193 ], [ 123.046875, 11.609193 ], [ 123.046875, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ], [ 122.431641, 11.609193 ] ] ], [ [ [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ] ] ], [ [ [ 121.904297, 18.229351 ], [ 122.167969, 18.479609 ], [ 122.255859, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.431641, 17.140790 ], [ 122.167969, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.199386 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.264383 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.838080 ], [ 123.837891, 13.239945 ], [ 124.101562, 13.068777 ], [ 124.013672, 12.554564 ], [ 123.222656, 13.068777 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.923404 ], [ 120.673828, 14.349548 ], [ 120.937500, 14.604847 ], [ 120.673828, 14.774883 ], [ 120.498047, 14.434680 ], [ 120.058594, 15.029686 ], [ 119.882812, 15.453680 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.322266, 17.644022 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ], [ 121.904297, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.595703, 6.053161 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 123.925781, 6.926427 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 123.222656, 7.449624 ], [ 122.783203, 7.536764 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.275292 ], [ 122.255859, 8.059230 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 124.541016, 8.581021 ], [ 124.716797, 9.015302 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ] ] ], [ [ [ 119.443359, 11.436955 ], [ 119.619141, 10.574222 ], [ 119.003906, 10.055403 ], [ 118.476562, 9.362353 ], [ 117.158203, 8.407168 ], [ 117.597656, 9.102097 ], [ 118.916016, 10.401378 ], [ 119.443359, 11.436955 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.783203, 10.314919 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.310547, 10.314919 ], [ 124.013672, 11.264612 ] ] ], [ [ [ 124.189453, 12.640338 ], [ 125.156250, 12.554564 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.716797, 10.919618 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.436955 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ] ] ], [ [ [ 121.816406, 11.953349 ], [ 122.431641, 11.609193 ], [ 123.046875, 11.609193 ], [ 123.046875, 11.178402 ], [ 122.871094, 10.919618 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ] ] ], [ [ [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ] ] ], [ [ [ 121.289062, 18.562947 ], [ 121.904297, 18.229351 ], [ 122.167969, 18.479609 ], [ 122.255859, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.431641, 17.140790 ], [ 122.167969, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.199386 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.264383 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.838080 ], [ 123.837891, 13.239945 ], [ 124.101562, 13.068777 ], [ 124.013672, 12.554564 ], [ 123.222656, 13.068777 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.923404 ], [ 120.673828, 14.349548 ], [ 120.937500, 14.604847 ], [ 120.673828, 14.774883 ], [ 120.498047, 14.434680 ], [ 120.058594, 15.029686 ], [ 119.882812, 15.453680 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.322266, 17.644022 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.609375, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ], [ 115.312500, 4.390229 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.400391, 5.528511 ], [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.609375, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.855469, 40.044438 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.537109, 36.385913 ], [ 140.712891, 35.889050 ], [ 140.185547, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.099609, 33.943360 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.358062 ], [ 130.341797, 33.651208 ], [ 130.869141, 34.234512 ], [ 131.835938, 34.813803 ], [ 132.539062, 35.460670 ], [ 134.560547, 35.746512 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ], [ 141.855469, 40.044438 ] ] ], [ [ [ 134.560547, 34.161818 ], [ 134.736328, 33.870416 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 133.242188, 33.358062 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.363281, 33.504759 ], [ 132.890625, 34.089061 ], [ 133.417969, 34.016242 ], [ 133.857422, 34.379713 ], [ 134.560547, 34.161818 ] ] ], [ [ [ 143.085938, 44.527843 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.943359, 45.583290 ], [ 143.085938, 44.527843 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.442726 ], [ 141.855469, 40.044438 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.537109, 36.385913 ], [ 140.712891, 35.889050 ], [ 140.185547, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.099609, 33.943360 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.358062 ], [ 130.341797, 33.651208 ], [ 130.869141, 34.234512 ], [ 131.835938, 34.813803 ], [ 132.539062, 35.460670 ], [ 134.560547, 35.746512 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ] ] ], [ [ [ 133.857422, 34.379713 ], [ 134.560547, 34.161818 ], [ 134.736328, 33.870416 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 133.242188, 33.358062 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.363281, 33.504759 ], [ 132.890625, 34.089061 ], [ 133.417969, 34.016242 ], [ 133.857422, 34.379713 ] ] ], [ [ [ 141.943359, 45.583290 ], [ 143.085938, 44.527843 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.943359, 45.583290 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.560247 ], [ 178.505859, -18.145852 ], [ 177.890625, -18.229351 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.644022 ], [ 177.626953, -17.308688 ], [ 178.066406, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.560247 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -180.000000, -16.467695 ], [ -180.000000, -16.045813 ], [ -179.824219, -15.961329 ], [ -180.000000, -16.467695 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.560247 ], [ 178.505859, -18.145852 ], [ 177.890625, -18.229351 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.644022 ], [ 177.626953, -17.308688 ], [ 178.066406, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.284551 ], [ 12.919922, 1.845384 ], [ 13.271484, 1.318243 ], [ 13.974609, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.798828, 0.087891 ], [ 14.238281, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.238281, -1.933227 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.372369 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.460181 ], [ 11.425781, -2.723583 ], [ 11.777344, -3.425692 ], [ 11.074219, -3.951941 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.054628 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.439449 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.142502 ], [ 11.250000, 2.284551 ], [ 11.689453, 2.372369 ], [ 12.304688, 2.196727 ], [ 12.919922, 2.372369 ], [ 13.007812, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.372369 ], [ 13.007812, 2.284551 ], [ 12.919922, 1.845384 ], [ 13.271484, 1.318243 ], [ 13.974609, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.798828, 0.087891 ], [ 14.238281, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.238281, -1.933227 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.372369 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.460181 ], [ 11.425781, -2.723583 ], [ 11.777344, -3.425692 ], [ 11.074219, -3.951941 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.054628 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.439449 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.142502 ], [ 11.250000, 2.284551 ], [ 11.689453, 2.372369 ], [ 12.304688, 2.196727 ], [ 12.919922, 2.372369 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 3.513421 ], [ 18.369141, 2.986927 ], [ 17.841797, 1.757537 ], [ 17.753906, 0.351560 ], [ 17.490234, -0.703107 ], [ 16.347656, -1.669686 ], [ 15.908203, -2.635789 ], [ 15.996094, -3.513421 ], [ 14.501953, -4.915833 ], [ 14.150391, -4.740675 ], [ 14.062500, -4.477856 ], [ 13.535156, -4.477856 ], [ 13.183594, -4.828260 ], [ 12.919922, -4.740675 ], [ 12.568359, -4.390229 ], [ 11.865234, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.777344, -3.425692 ], [ 11.425781, -2.723583 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.372369 ], [ 13.974609, -2.460181 ], [ 14.238281, -1.933227 ], [ 14.414062, -1.318243 ], [ 14.238281, -0.527336 ], [ 13.798828, 0.087891 ], [ 14.238281, 1.230374 ], [ 13.974609, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.919922, 1.845384 ], [ 13.007812, 2.284551 ], [ 14.326172, 2.284551 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.250209 ], [ 17.050781, 3.776559 ], [ 18.369141, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.050781, 3.776559 ], [ 18.369141, 3.513421 ], [ 18.369141, 2.986927 ], [ 17.841797, 1.757537 ], [ 17.753906, 0.351560 ], [ 17.490234, -0.703107 ], [ 16.347656, -1.669686 ], [ 15.908203, -2.635789 ], [ 15.996094, -3.513421 ], [ 14.501953, -4.915833 ], [ 14.150391, -4.740675 ], [ 14.062500, -4.477856 ], [ 13.535156, -4.477856 ], [ 13.183594, -4.828260 ], [ 12.919922, -4.740675 ], [ 12.568359, -4.390229 ], [ 11.865234, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.777344, -3.425692 ], [ 11.425781, -2.723583 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.372369 ], [ 13.974609, -2.460181 ], [ 14.238281, -1.933227 ], [ 14.414062, -1.318243 ], [ 14.238281, -0.527336 ], [ 13.798828, 0.087891 ], [ 14.238281, 1.230374 ], [ 13.974609, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.919922, 1.845384 ], [ 13.007812, 2.284551 ], [ 14.326172, 2.284551 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.250209 ], [ 17.050781, 3.776559 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.477856 ], [ 28.388672, 4.302591 ], [ 28.652344, 4.477856 ], [ 29.091797, 4.390229 ], [ 29.707031, 4.653080 ], [ 29.882812, 4.214943 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.113281, 2.284551 ], [ 30.410156, 1.669686 ], [ 29.794922, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.179688, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.443359, -5.353521 ], [ 29.355469, -5.878332 ], [ 29.619141, -6.489983 ], [ 30.146484, -7.013668 ], [ 30.673828, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.916016, -8.320212 ], [ 28.652344, -8.494105 ], [ 28.388672, -9.102097 ], [ 28.652344, -9.535749 ], [ 28.300781, -11.781325 ], [ 29.267578, -12.297068 ], [ 29.531250, -12.125264 ], [ 29.619141, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.211180 ], [ 27.333984, -12.125264 ], [ 27.158203, -11.523088 ], [ 26.542969, -11.867351 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.264612 ], [ 24.257812, -11.178402 ], [ 24.169922, -10.919618 ], [ 23.378906, -10.833306 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.882275 ], [ 21.796875, -9.449062 ], [ 21.796875, -8.841651 ], [ 21.884766, -8.233237 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.039062, -6.926427 ], [ 19.951172, -7.100893 ], [ 19.335938, -7.100893 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.798079 ], [ 17.402344, -8.059230 ], [ 16.787109, -7.188101 ], [ 16.259766, -5.790897 ], [ 13.359375, -5.790897 ], [ 12.304688, -6.053161 ], [ 12.128906, -5.703448 ], [ 12.392578, -5.615986 ], [ 12.392578, -5.178482 ], [ 12.568359, -4.915833 ], [ 12.919922, -4.740675 ], [ 13.183594, -4.828260 ], [ 13.535156, -4.477856 ], [ 14.062500, -4.477856 ], [ 14.150391, -4.740675 ], [ 14.501953, -4.915833 ], [ 15.996094, -3.513421 ], [ 15.908203, -2.635789 ], [ 16.347656, -1.669686 ], [ 17.490234, -0.703107 ], [ 17.753906, 0.351560 ], [ 17.841797, 1.757537 ], [ 18.369141, 2.986927 ], [ 18.457031, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.423828, 5.090944 ], [ 20.917969, 4.390229 ], [ 22.324219, 4.039618 ], [ 22.763672, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.345703, 5.178482 ], [ 24.785156, 4.915833 ], [ 25.048828, 5.003394 ], [ 25.224609, 5.178482 ], [ 25.576172, 5.266008 ], [ 26.982422, 5.178482 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.477856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.477856 ], [ 28.388672, 4.302591 ], [ 28.652344, 4.477856 ], [ 29.091797, 4.390229 ], [ 29.707031, 4.653080 ], [ 29.882812, 4.214943 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.113281, 2.284551 ], [ 30.410156, 1.669686 ], [ 29.794922, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.179688, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.443359, -5.353521 ], [ 29.355469, -5.878332 ], [ 29.619141, -6.489983 ], [ 30.146484, -7.013668 ], [ 30.673828, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.916016, -8.320212 ], [ 28.652344, -8.494105 ], [ 28.388672, -9.102097 ], [ 28.652344, -9.535749 ], [ 28.300781, -11.781325 ], [ 29.267578, -12.297068 ], [ 29.531250, -12.125264 ], [ 29.619141, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.211180 ], [ 27.333984, -12.125264 ], [ 27.158203, -11.523088 ], [ 26.542969, -11.867351 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.264612 ], [ 24.257812, -11.178402 ], [ 24.169922, -10.919618 ], [ 23.378906, -10.833306 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.882275 ], [ 21.796875, -9.449062 ], [ 21.796875, -8.841651 ], [ 21.884766, -8.233237 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.039062, -6.926427 ], [ 19.951172, -7.100893 ], [ 19.335938, -7.100893 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.798079 ], [ 17.402344, -8.059230 ], [ 16.787109, -7.188101 ], [ 16.259766, -5.790897 ], [ 13.359375, -5.790897 ], [ 12.304688, -6.053161 ], [ 12.128906, -5.703448 ], [ 12.392578, -5.615986 ], [ 12.392578, -5.178482 ], [ 12.568359, -4.915833 ], [ 12.919922, -4.740675 ], [ 13.183594, -4.828260 ], [ 13.535156, -4.477856 ], [ 14.062500, -4.477856 ], [ 14.150391, -4.740675 ], [ 14.501953, -4.915833 ], [ 15.996094, -3.513421 ], [ 15.908203, -2.635789 ], [ 16.347656, -1.669686 ], [ 17.490234, -0.703107 ], [ 17.753906, 0.351560 ], [ 17.841797, 1.757537 ], [ 18.369141, 2.986927 ], [ 18.457031, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.423828, 5.090944 ], [ 20.917969, 4.390229 ], [ 22.324219, 4.039618 ], [ 22.763672, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.345703, 5.178482 ], [ 24.785156, 4.915833 ], [ 25.048828, 5.003394 ], [ 25.224609, 5.178482 ], [ 25.576172, 5.266008 ], [ 26.982422, 5.178482 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.787109, -7.188101 ], [ 17.402344, -8.059230 ], [ 18.457031, -7.798079 ], [ 18.984375, -7.972198 ], [ 19.335938, -7.100893 ], [ 19.951172, -7.100893 ], [ 20.039062, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.884766, -8.233237 ], [ 21.796875, -8.841651 ], [ 21.796875, -9.449062 ], [ 22.148438, -9.882275 ], [ 22.148438, -11.005904 ], [ 23.378906, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.178402 ], [ 23.818359, -11.695273 ], [ 23.994141, -12.125264 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.896484, -17.727759 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 12.744141, -16.888660 ], [ 11.689453, -17.224758 ], [ 11.601562, -16.636192 ], [ 12.128906, -14.434680 ], [ 12.656250, -13.068777 ], [ 13.623047, -11.953349 ], [ 13.710938, -11.264612 ], [ 13.623047, -10.660608 ], [ 13.359375, -10.314919 ], [ 12.832031, -9.102097 ], [ 13.183594, -8.494105 ], [ 12.656250, -6.926427 ], [ 12.216797, -6.227934 ], [ 12.304688, -6.053161 ], [ 13.359375, -5.790897 ], [ 16.259766, -5.790897 ], [ 16.787109, -7.188101 ] ] ], [ [ [ 12.919922, -4.740675 ], [ 12.392578, -5.178482 ], [ 12.392578, -5.615986 ], [ 12.128906, -5.703448 ], [ 11.865234, -5.003394 ], [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.259766, -5.790897 ], [ 16.787109, -7.188101 ], [ 17.402344, -8.059230 ], [ 18.457031, -7.798079 ], [ 18.984375, -7.972198 ], [ 19.335938, -7.100893 ], [ 19.951172, -7.100893 ], [ 20.039062, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.884766, -8.233237 ], [ 21.796875, -8.841651 ], [ 21.796875, -9.449062 ], [ 22.148438, -9.882275 ], [ 22.148438, -11.005904 ], [ 23.378906, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.178402 ], [ 23.818359, -11.695273 ], [ 23.994141, -12.125264 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.896484, -17.727759 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 12.744141, -16.888660 ], [ 11.689453, -17.224758 ], [ 11.601562, -16.636192 ], [ 12.128906, -14.434680 ], [ 12.656250, -13.068777 ], [ 13.623047, -11.953349 ], [ 13.710938, -11.264612 ], [ 13.623047, -10.660608 ], [ 13.359375, -10.314919 ], [ 12.832031, -9.102097 ], [ 13.183594, -8.494105 ], [ 12.656250, -6.926427 ], [ 12.216797, -6.227934 ], [ 12.304688, -6.053161 ], [ 13.359375, -5.790897 ], [ 16.259766, -5.790897 ] ] ], [ [ [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ], [ 12.392578, -5.178482 ], [ 12.392578, -5.615986 ], [ 12.128906, -5.703448 ], [ 11.865234, -5.003394 ], [ 12.568359, -4.390229 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.974609, -17.392579 ], [ 18.193359, -17.308688 ], [ 18.896484, -17.727759 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.224758 ], [ 24.609375, -17.308688 ], [ 25.048828, -17.560247 ], [ 24.433594, -17.811456 ], [ 24.169922, -17.811456 ], [ 23.554688, -18.229351 ], [ 23.115234, -17.811456 ], [ 21.621094, -18.145852 ], [ 20.830078, -18.229351 ], [ 20.830078, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.921631 ], [ 18.457031, -28.998532 ], [ 17.314453, -28.767659 ], [ 17.138672, -28.304381 ], [ 16.787109, -28.071980 ], [ 16.259766, -28.536275 ], [ 15.556641, -27.761330 ], [ 15.205078, -27.059126 ], [ 14.326172, -23.805450 ], [ 14.238281, -22.105999 ], [ 13.271484, -20.797201 ], [ 12.568359, -18.979026 ], [ 11.777344, -18.062312 ], [ 11.689453, -17.224758 ], [ 12.744141, -16.888660 ], [ 13.447266, -16.888660 ], [ 13.974609, -17.392579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.888660 ], [ 13.974609, -17.392579 ], [ 18.193359, -17.308688 ], [ 18.896484, -17.727759 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.224758 ], [ 24.609375, -17.308688 ], [ 25.048828, -17.560247 ], [ 24.433594, -17.811456 ], [ 24.169922, -17.811456 ], [ 23.554688, -18.229351 ], [ 23.115234, -17.811456 ], [ 21.621094, -18.145852 ], [ 20.830078, -18.229351 ], [ 20.830078, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.921631 ], [ 18.457031, -28.998532 ], [ 17.314453, -28.767659 ], [ 17.138672, -28.304381 ], [ 16.787109, -28.071980 ], [ 16.259766, -28.536275 ], [ 15.556641, -27.761330 ], [ 15.205078, -27.059126 ], [ 14.326172, -23.805450 ], [ 14.238281, -22.105999 ], [ 13.271484, -20.797201 ], [ 12.568359, -18.979026 ], [ 11.777344, -18.062312 ], [ 11.689453, -17.224758 ], [ 12.744141, -16.888660 ], [ 13.447266, -16.888660 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, -1.669686 ], [ 30.673828, -2.284551 ], [ 30.410156, -2.372369 ], [ 29.882812, -2.284551 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.179688, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.531250, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.054628 ], [ 30.761719, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.054628 ], [ 30.761719, -1.669686 ], [ 30.673828, -2.284551 ], [ 30.410156, -2.372369 ], [ 29.882812, -2.284551 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.179688, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.531250, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.054628 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -2.372369 ], [ 30.673828, -3.337954 ], [ 29.707031, -4.390229 ], [ 29.267578, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.882812, -2.284551 ], [ 30.410156, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.882812, -2.284551 ], [ 30.410156, -2.372369 ], [ 30.673828, -3.337954 ], [ 29.707031, -4.390229 ], [ 29.267578, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.882812, -2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, -9.188870 ], [ 33.222656, -9.622414 ], [ 33.398438, -10.487812 ], [ 33.046875, -11.523088 ], [ 33.222656, -12.382928 ], [ 32.958984, -12.726084 ], [ 32.607422, -13.667338 ], [ 33.134766, -13.923404 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.453680 ], [ 29.443359, -15.623037 ], [ 28.916016, -15.961329 ], [ 28.740234, -16.383391 ], [ 28.388672, -16.467695 ], [ 26.982422, -17.895114 ], [ 25.224609, -17.727759 ], [ 24.609375, -17.308688 ], [ 23.994141, -17.224758 ], [ 23.203125, -17.476432 ], [ 21.884766, -16.045813 ], [ 21.884766, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.125264 ], [ 23.818359, -11.695273 ], [ 23.994141, -11.178402 ], [ 23.906250, -10.919618 ], [ 24.169922, -10.919618 ], [ 24.257812, -11.178402 ], [ 25.400391, -11.264612 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.867351 ], [ 27.158203, -11.523088 ], [ 27.333984, -12.125264 ], [ 28.125000, -12.211180 ], [ 28.916016, -13.239945 ], [ 29.619141, -13.239945 ], [ 29.531250, -12.125264 ], [ 29.267578, -12.297068 ], [ 28.300781, -11.781325 ], [ 28.652344, -9.535749 ], [ 28.388672, -9.102097 ], [ 28.652344, -8.494105 ], [ 30.322266, -8.233237 ], [ 32.695312, -9.188870 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.695312, -9.188870 ], [ 33.222656, -9.622414 ], [ 33.398438, -10.487812 ], [ 33.046875, -11.523088 ], [ 33.222656, -12.382928 ], [ 32.958984, -12.726084 ], [ 32.607422, -13.667338 ], [ 33.134766, -13.923404 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.453680 ], [ 29.443359, -15.623037 ], [ 28.916016, -15.961329 ], [ 28.740234, -16.383391 ], [ 28.388672, -16.467695 ], [ 26.982422, -17.895114 ], [ 25.224609, -17.727759 ], [ 24.609375, -17.308688 ], [ 23.994141, -17.224758 ], [ 23.203125, -17.476432 ], [ 21.884766, -16.045813 ], [ 21.884766, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.125264 ], [ 23.818359, -11.695273 ], [ 23.994141, -11.178402 ], [ 23.906250, -10.919618 ], [ 24.169922, -10.919618 ], [ 24.257812, -11.178402 ], [ 25.400391, -11.264612 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.867351 ], [ 27.158203, -11.523088 ], [ 27.333984, -12.125264 ], [ 28.125000, -12.211180 ], [ 28.916016, -13.239945 ], [ 29.619141, -13.239945 ], [ 29.531250, -12.125264 ], [ 29.267578, -12.297068 ], [ 28.300781, -11.781325 ], [ 28.652344, -9.535749 ], [ 28.388672, -9.102097 ], [ 28.652344, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.113281, -15.792254 ], [ 31.552734, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.255859, -16.383391 ], [ 32.783203, -16.636192 ], [ 32.783203, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.695312, -19.642588 ], [ 32.607422, -20.303418 ], [ 32.431641, -20.385825 ], [ 32.167969, -21.043491 ], [ 31.113281, -22.187405 ], [ 30.585938, -22.105999 ], [ 30.322266, -22.268764 ], [ 29.355469, -22.024546 ], [ 28.740234, -21.616579 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.797201 ], [ 27.685547, -20.468189 ], [ 27.246094, -20.385825 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.388672, -16.467695 ], [ 28.740234, -16.383391 ], [ 28.916016, -15.961329 ], [ 29.443359, -15.623037 ], [ 30.234375, -15.453680 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 30.322266, -15.876809 ], [ 31.113281, -15.792254 ], [ 31.552734, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.255859, -16.383391 ], [ 32.783203, -16.636192 ], [ 32.783203, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.695312, -19.642588 ], [ 32.607422, -20.303418 ], [ 32.431641, -20.385825 ], [ 32.167969, -21.043491 ], [ 31.113281, -22.187405 ], [ 30.585938, -22.105999 ], [ 30.322266, -22.268764 ], [ 29.355469, -22.024546 ], [ 28.740234, -21.616579 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.797201 ], [ 27.685547, -20.468189 ], [ 27.246094, -20.385825 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.388672, -16.467695 ], [ 28.740234, -16.383391 ], [ 28.916016, -15.961329 ], [ 29.443359, -15.623037 ], [ 30.234375, -15.453680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.617188, -3.074695 ], [ 37.705078, -3.601142 ], [ 39.199219, -4.653080 ], [ 38.671875, -5.878332 ], [ 38.759766, -6.402648 ], [ 39.375000, -6.839170 ], [ 39.462891, -7.013668 ], [ 39.111328, -7.623887 ], [ 39.111328, -8.407168 ], [ 39.902344, -10.055403 ], [ 40.253906, -10.314919 ], [ 39.462891, -10.833306 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.523088 ], [ 36.474609, -11.695273 ], [ 35.244141, -11.436955 ], [ 34.541016, -11.436955 ], [ 34.277344, -10.141932 ], [ 33.662109, -9.362353 ], [ 32.695312, -9.188870 ], [ 30.673828, -8.320212 ], [ 30.146484, -7.013668 ], [ 29.619141, -6.489983 ], [ 29.355469, -5.878332 ], [ 29.443359, -5.353521 ], [ 29.267578, -4.477856 ], [ 29.707031, -4.390229 ], [ 30.673828, -3.337954 ], [ 30.410156, -2.372369 ], [ 30.673828, -2.284551 ], [ 30.761719, -1.669686 ], [ 30.410156, -1.054628 ], [ 30.761719, -0.966751 ], [ 33.837891, -0.878872 ], [ 37.617188, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.837891, -0.878872 ], [ 37.617188, -3.074695 ], [ 37.705078, -3.601142 ], [ 39.199219, -4.653080 ], [ 38.671875, -5.878332 ], [ 38.759766, -6.402648 ], [ 39.375000, -6.839170 ], [ 39.462891, -7.013668 ], [ 39.111328, -7.623887 ], [ 39.111328, -8.407168 ], [ 39.902344, -10.055403 ], [ 40.253906, -10.314919 ], [ 39.462891, -10.833306 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.523088 ], [ 36.474609, -11.695273 ], [ 35.244141, -11.436955 ], [ 34.541016, -11.436955 ], [ 34.277344, -10.141932 ], [ 33.662109, -9.362353 ], [ 32.695312, -9.188870 ], [ 30.673828, -8.320212 ], [ 30.146484, -7.013668 ], [ 29.619141, -6.489983 ], [ 29.355469, -5.878332 ], [ 29.443359, -5.353521 ], [ 29.267578, -4.477856 ], [ 29.707031, -4.390229 ], [ 30.673828, -3.337954 ], [ 30.410156, -2.372369 ], [ 30.673828, -2.284551 ], [ 30.761719, -1.669686 ], [ 30.410156, -1.054628 ], [ 30.761719, -0.966751 ], [ 33.837891, -0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.662109, -9.362353 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.436955 ], [ 34.277344, -12.211180 ], [ 34.541016, -13.496473 ], [ 34.892578, -13.496473 ], [ 35.244141, -13.838080 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.045813 ], [ 34.980469, -16.720385 ], [ 34.365234, -16.130262 ], [ 34.277344, -15.453680 ], [ 34.453125, -14.944785 ], [ 34.453125, -14.604847 ], [ 34.013672, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.607422, -13.667338 ], [ 32.958984, -12.726084 ], [ 33.222656, -12.382928 ], [ 33.046875, -11.523088 ], [ 33.398438, -10.487812 ], [ 33.222656, -9.622414 ], [ 32.695312, -9.188870 ], [ 33.662109, -9.362353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, -9.188870 ], [ 33.662109, -9.362353 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.436955 ], [ 34.277344, -12.211180 ], [ 34.541016, -13.496473 ], [ 34.892578, -13.496473 ], [ 35.244141, -13.838080 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.045813 ], [ 34.980469, -16.720385 ], [ 34.365234, -16.130262 ], [ 34.277344, -15.453680 ], [ 34.453125, -14.944785 ], [ 34.453125, -14.604847 ], [ 34.013672, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.607422, -13.667338 ], [ 32.958984, -12.726084 ], [ 33.222656, -12.382928 ], [ 33.046875, -11.523088 ], [ 33.398438, -10.487812 ], [ 33.222656, -9.622414 ], [ 32.695312, -9.188870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.746969 ], [ 40.517578, -14.179186 ], [ 40.693359, -14.689881 ], [ 40.078125, -16.045813 ], [ 39.375000, -16.720385 ], [ 37.353516, -17.560247 ], [ 36.210938, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.476950 ], [ 34.716797, -19.725342 ], [ 34.628906, -20.468189 ], [ 35.156250, -21.207459 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.024546 ], [ 35.507812, -22.998852 ], [ 35.332031, -23.483401 ], [ 35.595703, -23.644524 ], [ 35.419922, -24.046464 ], [ 34.980469, -24.447150 ], [ 32.958984, -25.324167 ], [ 32.519531, -25.720735 ], [ 32.607422, -26.115986 ], [ 32.871094, -26.194877 ], [ 32.783203, -26.667096 ], [ 31.992188, -26.667096 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.113281, -22.187405 ], [ 32.167969, -21.043491 ], [ 32.431641, -20.385825 ], [ 32.607422, -20.303418 ], [ 32.695312, -19.642588 ], [ 32.607422, -19.394068 ], [ 32.783203, -17.978733 ], [ 32.783203, -16.636192 ], [ 32.255859, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.552734, -16.045813 ], [ 31.113281, -15.792254 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.134766, -13.923404 ], [ 33.750000, -14.434680 ], [ 34.013672, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.453125, -14.944785 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.130262 ], [ 34.980469, -16.720385 ], [ 35.332031, -16.045813 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.838080 ], [ 34.892578, -13.496473 ], [ 34.541016, -13.496473 ], [ 34.277344, -12.211180 ], [ 34.541016, -11.436955 ], [ 35.244141, -11.436955 ], [ 36.474609, -11.695273 ], [ 37.441406, -11.523088 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.462891, -10.833306 ], [ 40.253906, -10.314919 ], [ 40.429688, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, -10.314919 ], [ 40.429688, -10.746969 ], [ 40.517578, -14.179186 ], [ 40.693359, -14.689881 ], [ 40.078125, -16.045813 ], [ 39.375000, -16.720385 ], [ 37.353516, -17.560247 ], [ 36.210938, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.476950 ], [ 34.716797, -19.725342 ], [ 34.628906, -20.468189 ], [ 35.156250, -21.207459 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.024546 ], [ 35.507812, -22.998852 ], [ 35.332031, -23.483401 ], [ 35.595703, -23.644524 ], [ 35.419922, -24.046464 ], [ 34.980469, -24.447150 ], [ 32.958984, -25.324167 ], [ 32.519531, -25.720735 ], [ 32.607422, -26.115986 ], [ 32.871094, -26.194877 ], [ 32.783203, -26.667096 ], [ 31.992188, -26.667096 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.113281, -22.187405 ], [ 32.167969, -21.043491 ], [ 32.431641, -20.385825 ], [ 32.607422, -20.303418 ], [ 32.695312, -19.642588 ], [ 32.607422, -19.394068 ], [ 32.783203, -17.978733 ], [ 32.783203, -16.636192 ], [ 32.255859, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.552734, -16.045813 ], [ 31.113281, -15.792254 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.134766, -13.923404 ], [ 33.750000, -14.434680 ], [ 34.013672, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.453125, -14.944785 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.130262 ], [ 34.980469, -16.720385 ], [ 35.332031, -16.045813 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.838080 ], [ 34.892578, -13.496473 ], [ 34.541016, -13.496473 ], [ 34.277344, -12.211180 ], [ 34.541016, -11.436955 ], [ 35.244141, -11.436955 ], [ 36.474609, -11.695273 ], [ 37.441406, -11.523088 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.462891, -10.833306 ], [ 40.253906, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.224609, -17.727759 ], [ 25.576172, -18.479609 ], [ 26.103516, -19.228177 ], [ 27.246094, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.797201 ], [ 27.949219, -21.453069 ], [ 28.740234, -21.616579 ], [ 29.355469, -22.024546 ], [ 27.949219, -22.755921 ], [ 27.070312, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 24.960938, -25.641526 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 22.763672, -25.482951 ], [ 22.500000, -25.958045 ], [ 21.533203, -26.667096 ], [ 20.830078, -26.824071 ], [ 20.654297, -26.431228 ], [ 20.742188, -25.799891 ], [ 20.126953, -24.846565 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.779905 ], [ 20.830078, -21.779905 ], [ 20.830078, -18.229351 ], [ 21.621094, -18.145852 ], [ 23.115234, -17.811456 ], [ 23.554688, -18.229351 ], [ 24.169922, -17.811456 ], [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 25.576172, -18.479609 ], [ 26.103516, -19.228177 ], [ 27.246094, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.797201 ], [ 27.949219, -21.453069 ], [ 28.740234, -21.616579 ], [ 29.355469, -22.024546 ], [ 27.949219, -22.755921 ], [ 27.070312, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 24.960938, -25.641526 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 22.763672, -25.482951 ], [ 22.500000, -25.958045 ], [ 21.533203, -26.667096 ], [ 20.830078, -26.824071 ], [ 20.654297, -26.431228 ], [ 20.742188, -25.799891 ], [ 20.126953, -24.846565 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.779905 ], [ 20.830078, -21.779905 ], [ 20.830078, -18.229351 ], [ 21.621094, -18.145852 ], [ 23.115234, -17.811456 ], [ 23.554688, -18.229351 ], [ 24.169922, -17.811456 ], [ 25.048828, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.585938, -22.105999 ], [ 31.113281, -22.187405 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.352498 ], [ 30.673828, -26.667096 ], [ 31.201172, -27.215556 ], [ 31.816406, -27.137368 ], [ 31.992188, -26.667096 ], [ 32.783203, -26.667096 ], [ 32.431641, -28.226970 ], [ 32.167969, -28.690588 ], [ 31.464844, -29.228890 ], [ 30.849609, -29.840644 ], [ 29.970703, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.367188, -33.578015 ], [ 25.839844, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.724340 ], [ 24.609375, -33.943360 ], [ 23.554688, -33.724340 ], [ 22.939453, -33.870416 ], [ 22.500000, -33.797409 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.379713 ], [ 20.039062, -34.741612 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.808594, -34.379713 ], [ 18.369141, -33.943360 ], [ 18.369141, -34.089061 ], [ 18.193359, -33.797409 ], [ 18.193359, -33.211116 ], [ 17.841797, -32.546813 ], [ 18.193359, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.259766, -28.536275 ], [ 16.787109, -28.071980 ], [ 17.138672, -28.304381 ], [ 17.314453, -28.767659 ], [ 18.457031, -28.998532 ], [ 18.984375, -28.921631 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.846565 ], [ 20.742188, -25.799891 ], [ 20.654297, -26.431228 ], [ 20.830078, -26.824071 ], [ 21.533203, -26.667096 ], [ 22.500000, -25.958045 ], [ 22.763672, -25.482951 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 24.960938, -25.641526 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.070312, -23.563987 ], [ 27.949219, -22.755921 ], [ 29.355469, -22.024546 ], [ 29.794922, -22.024546 ], [ 30.322266, -22.268764 ] ], [ [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.685547, -30.600094 ], [ 28.037109, -30.524413 ], [ 28.212891, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.267578, -29.228890 ], [ 28.916016, -28.921631 ], [ 28.476562, -28.613459 ], [ 28.037109, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.794922, -22.024546 ], [ 30.322266, -22.268764 ], [ 30.585938, -22.105999 ], [ 31.113281, -22.187405 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.352498 ], [ 30.673828, -26.667096 ], [ 31.201172, -27.215556 ], [ 31.816406, -27.137368 ], [ 31.992188, -26.667096 ], [ 32.783203, -26.667096 ], [ 32.431641, -28.226970 ], [ 32.167969, -28.690588 ], [ 31.464844, -29.228890 ], [ 30.849609, -29.840644 ], [ 29.970703, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.367188, -33.578015 ], [ 25.839844, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.724340 ], [ 24.609375, -33.943360 ], [ 23.554688, -33.724340 ], [ 22.939453, -33.870416 ], [ 22.500000, -33.797409 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.379713 ], [ 20.039062, -34.741612 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.808594, -34.379713 ], [ 18.369141, -33.943360 ], [ 18.369141, -34.089061 ], [ 18.193359, -33.797409 ], [ 18.193359, -33.211116 ], [ 17.841797, -32.546813 ], [ 18.193359, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.259766, -28.536275 ], [ 16.787109, -28.071980 ], [ 17.138672, -28.304381 ], [ 17.314453, -28.767659 ], [ 18.457031, -28.998532 ], [ 18.984375, -28.921631 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.846565 ], [ 20.742188, -25.799891 ], [ 20.654297, -26.431228 ], [ 20.830078, -26.824071 ], [ 21.533203, -26.667096 ], [ 22.500000, -25.958045 ], [ 22.763672, -25.482951 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 24.960938, -25.641526 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.070312, -23.563987 ], [ 27.949219, -22.755921 ], [ 29.355469, -22.024546 ], [ 29.794922, -22.024546 ] ], [ [ 28.476562, -28.613459 ], [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.685547, -30.600094 ], [ 28.037109, -30.524413 ], [ 28.212891, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.267578, -29.228890 ], [ 28.916016, -28.921631 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.799891 ], [ 31.992188, -26.667096 ], [ 31.816406, -27.137368 ], [ 31.201172, -27.215556 ], [ 30.673828, -26.667096 ], [ 30.673828, -26.352498 ], [ 31.025391, -25.720735 ], [ 31.289062, -25.641526 ], [ 31.816406, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, -25.641526 ], [ 31.816406, -25.799891 ], [ 31.992188, -26.667096 ], [ 31.816406, -27.137368 ], [ 31.201172, -27.215556 ], [ 30.673828, -26.667096 ], [ 30.673828, -26.352498 ], [ 31.025391, -25.720735 ], [ 31.289062, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.916016, -28.921631 ], [ 29.267578, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.212891, -30.221102 ], [ 28.037109, -30.524413 ], [ 27.685547, -30.600094 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.476562, -28.613459 ], [ 28.916016, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, -28.613459 ], [ 28.916016, -28.921631 ], [ 29.267578, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.212891, -30.221102 ], [ 28.037109, -30.524413 ], [ 27.685547, -30.600094 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.482422, -12.468760 ], [ 50.009766, -13.496473 ], [ 50.185547, -14.689881 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.623037 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.368950 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.383391 ], [ 49.746094, -16.804541 ], [ 49.482422, -17.056785 ], [ 49.394531, -17.895114 ], [ 47.021484, -24.926295 ], [ 45.351562, -25.562265 ], [ 44.033203, -24.926295 ], [ 43.681641, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.289374 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.296875, -20.055931 ], [ 44.384766, -19.394068 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.804541 ], [ 44.384766, -16.214675 ], [ 44.912109, -16.130262 ], [ 45.791016, -15.792254 ], [ 46.230469, -15.707663 ], [ 47.636719, -14.519780 ], [ 47.988281, -14.008696 ], [ 47.812500, -13.581921 ], [ 48.251953, -13.752725 ], [ 48.779297, -13.068777 ], [ 48.779297, -12.468760 ], [ 49.130859, -12.039321 ], [ 49.482422, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.130859, -12.039321 ], [ 49.482422, -12.468760 ], [ 50.009766, -13.496473 ], [ 50.185547, -14.689881 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.623037 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.368950 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.383391 ], [ 49.746094, -16.804541 ], [ 49.482422, -17.056785 ], [ 49.394531, -17.895114 ], [ 47.021484, -24.926295 ], [ 45.351562, -25.562265 ], [ 44.033203, -24.926295 ], [ 43.681641, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.289374 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.296875, -20.055931 ], [ 44.384766, -19.394068 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.804541 ], [ 44.384766, -16.214675 ], [ 44.912109, -16.130262 ], [ 45.791016, -15.792254 ], [ 46.230469, -15.707663 ], [ 47.636719, -14.519780 ], [ 47.988281, -14.008696 ], [ 47.812500, -13.581921 ], [ 48.251953, -13.752725 ], [ 48.779297, -13.068777 ], [ 48.779297, -12.468760 ], [ 49.130859, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ] ] ], [ [ [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ] ] ], [ [ [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ] ] ], [ [ [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ] ] ], [ [ [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ] ] ], [ [ [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ] ] ], [ [ [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ] ] ], [ [ [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 109.775391, 1.406109 ], [ 110.478516, 0.790990 ], [ 111.093750, 1.054628 ], [ 111.796875, 0.966751 ], [ 112.324219, 1.493971 ], [ 112.851562, 1.581830 ], [ 113.730469, 1.230374 ], [ 114.609375, 1.493971 ], [ 115.048828, 2.899153 ], [ 115.488281, 3.250209 ], [ 115.839844, 4.390229 ], [ 116.982422, 4.390229 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ] ] ], [ [ [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ] ] ], [ [ [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ] ] ], [ [ [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ] ] ], [ [ [ 116.982422, 4.390229 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 109.775391, 1.406109 ], [ 110.478516, 0.790990 ], [ 111.093750, 1.054628 ], [ 111.796875, 0.966751 ], [ 112.324219, 1.493971 ], [ 112.851562, 1.581830 ], [ 113.730469, 1.230374 ], [ 114.609375, 1.493971 ], [ 115.048828, 2.899153 ], [ 115.488281, 3.250209 ], [ 115.839844, 4.390229 ], [ 116.982422, 4.390229 ] ] ], [ [ [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ] ] ], [ [ [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ] ] ], [ [ [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.358544 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 145.371094, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 114.169922, -22.512557 ], [ 114.609375, -21.779905 ], [ 115.400391, -21.453069 ], [ 115.927734, -21.043491 ], [ 116.630859, -20.632784 ], [ 117.158203, -20.550509 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.303418 ], [ 118.828125, -20.220966 ], [ 118.916016, -19.973349 ], [ 119.179688, -19.890723 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.646245 ], [ 122.167969, -18.145852 ], [ 122.255859, -17.224758 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.551962 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.604847 ], [ 125.595703, -14.434680 ], [ 125.683594, -14.179186 ], [ 126.123047, -14.264383 ], [ 126.123047, -14.093957 ], [ 127.001953, -13.752725 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 129.814453, -13.581921 ], [ 130.253906, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.468760 ], [ 131.220703, -12.125264 ], [ 131.660156, -12.297068 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 131.748047, -11.264612 ], [ 132.275391, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.505859, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.867351 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 136.230469, -13.239945 ], [ 135.878906, -13.239945 ], [ 136.054688, -13.667338 ], [ 135.351562, -14.689881 ], [ 135.439453, -14.944785 ], [ 136.230469, -15.538376 ], [ 137.021484, -15.792254 ], [ 138.251953, -16.804541 ], [ 138.515625, -16.804541 ], [ 139.042969, -17.056785 ], [ 139.218750, -17.308688 ], [ 140.185547, -17.644022 ], [ 140.800781, -17.308688 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.591797, -12.897489 ], [ 141.767578, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.470703, -10.660608 ], [ 142.734375, -11.092166 ], [ 142.822266, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.297068 ], [ 143.437500, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 145.195312, -15.368950 ], [ 145.458984, -16.214675 ], [ 145.634766, -16.720385 ], [ 145.810547, -16.888660 ], [ 146.074219, -17.727759 ], [ 145.986328, -18.229351 ], [ 146.337891, -18.895893 ], [ 147.392578, -19.476950 ], [ 148.798828, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.238281, -21.207459 ], [ 149.677734, -22.268764 ], [ 150.029297, -22.105999 ], [ 150.468750, -22.512557 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.017578, -27.215556 ], [ 153.544922, -28.071980 ], [ 153.457031, -28.921631 ], [ 153.017578, -30.297018 ], [ 153.017578, -30.902225 ], [ 152.402344, -32.546813 ], [ 151.699219, -32.990236 ], [ 150.996094, -34.307144 ], [ 150.644531, -35.101934 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.090240 ], [ 149.941406, -37.370157 ], [ 149.414062, -37.718590 ], [ 148.271484, -37.788081 ], [ 147.304688, -38.203655 ], [ 146.250000, -39.027719 ], [ 145.458984, -38.548165 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 144.404297, -38.065392 ], [ 143.525391, -38.754083 ], [ 140.625000, -37.996163 ], [ 139.921875, -37.370157 ], [ 139.570312, -36.102376 ], [ 139.042969, -35.675147 ], [ 138.076172, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.285156, -34.669359 ], [ 137.460938, -34.089061 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 136.933594, -33.724340 ], [ 136.318359, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.175781, -33.943360 ], [ 134.560547, -33.211116 ], [ 134.033203, -32.842674 ], [ 134.208984, -32.546813 ], [ 132.978516, -31.952162 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.428663 ], [ 129.462891, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.175612 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.916485 ], [ 124.013672, -33.431441 ], [ 123.574219, -33.870416 ], [ 122.167969, -33.943360 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.452218 ], [ 119.003906, -34.452218 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 115.488281, -34.379713 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.488281, -33.431441 ], [ 115.664062, -33.211116 ], [ 115.751953, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 114.960938, -29.458731 ], [ 114.609375, -28.767659 ], [ 114.609375, -28.459033 ], [ 114.169922, -28.071980 ], [ 113.994141, -27.293689 ], [ 113.466797, -26.509905 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 113.906250, -25.878994 ], [ 114.169922, -26.273714 ], [ 114.169922, -25.720735 ], [ 113.378906, -24.367114 ], [ 113.818359, -22.998852 ], [ 113.730469, -22.431340 ], [ 114.082031, -21.779905 ], [ 114.169922, -22.512557 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.358544 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 145.371094, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ] ] ], [ [ [ 142.470703, -10.660608 ], [ 142.734375, -11.092166 ], [ 142.822266, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.297068 ], [ 143.437500, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 145.195312, -15.368950 ], [ 145.458984, -16.214675 ], [ 145.634766, -16.720385 ], [ 145.810547, -16.888660 ], [ 146.074219, -17.727759 ], [ 145.986328, -18.229351 ], [ 146.337891, -18.895893 ], [ 147.392578, -19.476950 ], [ 148.798828, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.238281, -21.207459 ], [ 149.677734, -22.268764 ], [ 150.029297, -22.105999 ], [ 150.468750, -22.512557 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.017578, -27.215556 ], [ 153.544922, -28.071980 ], [ 153.457031, -28.921631 ], [ 153.017578, -30.297018 ], [ 153.017578, -30.902225 ], [ 152.402344, -32.546813 ], [ 151.699219, -32.990236 ], [ 150.996094, -34.307144 ], [ 150.644531, -35.101934 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.090240 ], [ 149.941406, -37.370157 ], [ 149.414062, -37.718590 ], [ 148.271484, -37.788081 ], [ 147.304688, -38.203655 ], [ 146.250000, -39.027719 ], [ 145.458984, -38.548165 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 144.404297, -38.065392 ], [ 143.525391, -38.754083 ], [ 140.625000, -37.996163 ], [ 139.921875, -37.370157 ], [ 139.570312, -36.102376 ], [ 139.042969, -35.675147 ], [ 138.076172, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.285156, -34.669359 ], [ 137.460938, -34.089061 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 136.933594, -33.724340 ], [ 136.318359, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.175781, -33.943360 ], [ 134.560547, -33.211116 ], [ 134.033203, -32.842674 ], [ 134.208984, -32.546813 ], [ 132.978516, -31.952162 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.428663 ], [ 129.462891, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.175612 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.916485 ], [ 124.013672, -33.431441 ], [ 123.574219, -33.870416 ], [ 122.167969, -33.943360 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.452218 ], [ 119.003906, -34.452218 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 115.488281, -34.379713 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.488281, -33.431441 ], [ 115.664062, -33.211116 ], [ 115.751953, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 114.960938, -29.458731 ], [ 114.609375, -28.767659 ], [ 114.609375, -28.459033 ], [ 114.169922, -28.071980 ], [ 113.994141, -27.293689 ], [ 113.466797, -26.509905 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 113.906250, -25.878994 ], [ 114.169922, -26.273714 ], [ 114.169922, -25.720735 ], [ 113.378906, -24.367114 ], [ 113.818359, -22.998852 ], [ 113.730469, -22.431340 ], [ 114.082031, -21.698265 ], [ 114.169922, -22.512557 ], [ 114.609375, -21.779905 ], [ 115.400391, -21.453069 ], [ 115.927734, -21.043491 ], [ 116.630859, -20.632784 ], [ 117.158203, -20.550509 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.303418 ], [ 118.828125, -20.220966 ], [ 118.916016, -19.973349 ], [ 119.179688, -19.890723 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.646245 ], [ 122.167969, -18.145852 ], [ 122.255859, -17.224758 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.551962 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.604847 ], [ 125.595703, -14.434680 ], [ 125.683594, -14.179186 ], [ 126.123047, -14.264383 ], [ 126.123047, -14.093957 ], [ 127.001953, -13.752725 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 129.814453, -13.581921 ], [ 130.253906, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.468760 ], [ 131.220703, -12.125264 ], [ 131.660156, -12.297068 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 131.748047, -11.264612 ], [ 132.275391, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.505859, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.867351 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 136.230469, -13.239945 ], [ 135.878906, -13.239945 ], [ 136.054688, -13.667338 ], [ 135.351562, -14.689881 ], [ 135.439453, -14.944785 ], [ 136.230469, -15.538376 ], [ 137.021484, -15.792254 ], [ 138.251953, -16.804541 ], [ 138.515625, -16.804541 ], [ 139.042969, -17.056785 ], [ 139.218750, -17.308688 ], [ 140.185547, -17.644022 ], [ 140.800781, -17.308688 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.591797, -12.897489 ], [ 141.767578, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.470703, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.580078, -3.776559 ], [ 145.810547, -4.828260 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 148.007812, -7.972198 ], [ 148.710938, -9.102097 ], [ 149.238281, -9.015302 ], [ 149.238281, -9.449062 ], [ 150.029297, -9.622414 ], [ 149.677734, -9.795678 ], [ 150.732422, -10.228437 ], [ 150.644531, -10.574222 ], [ 149.941406, -10.574222 ], [ 149.765625, -10.314919 ], [ 147.832031, -10.055403 ], [ 146.513672, -8.928487 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ] ] ], [ [ [ 154.687500, -5.266008 ], [ 155.478516, -6.140555 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.566406, -6.839170 ], [ 155.126953, -6.489983 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.090944 ], [ 154.599609, -5.003394 ], [ 154.687500, -5.266008 ] ] ], [ [ [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.790897 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.271484, -5.703448 ], [ 148.359375, -5.353521 ], [ 149.238281, -5.528511 ], [ 149.765625, -5.441022 ], [ 149.941406, -5.003394 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ], [ 152.314453, -4.302591 ] ] ], [ [ [ 152.226562, -3.162456 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -2.986927 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ], [ 145.810547, -4.828260 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 148.007812, -7.972198 ], [ 148.710938, -9.102097 ], [ 149.238281, -9.015302 ], [ 149.238281, -9.449062 ], [ 150.029297, -9.622414 ], [ 149.677734, -9.795678 ], [ 150.732422, -10.228437 ], [ 150.644531, -10.574222 ], [ 149.941406, -10.574222 ], [ 149.765625, -10.314919 ], [ 147.832031, -10.055403 ], [ 146.513672, -8.928487 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.547988 ] ] ], [ [ [ 154.599609, -5.003394 ], [ 154.687500, -5.266008 ], [ 155.478516, -6.140555 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.566406, -6.839170 ], [ 155.126953, -6.489983 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.090944 ], [ 154.599609, -5.003394 ] ] ], [ [ [ 152.050781, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.790897 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.271484, -5.703448 ], [ 148.359375, -5.353521 ], [ 149.238281, -5.528511 ], [ 149.765625, -5.441022 ], [ 149.941406, -5.003394 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.162456 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -2.986927 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ] ] ], [ [ [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.630859, -9.535749 ], [ 161.455078, -9.709057 ], [ 160.751953, -8.841651 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.536764 ], [ 159.609375, -7.972198 ], [ 159.873047, -8.320212 ], [ 159.873047, -8.494105 ], [ 158.203125, -7.362467 ], [ 158.291016, -7.275292 ], [ 158.818359, -7.536764 ] ] ], [ [ [ 157.060547, -7.013668 ], [ 157.500000, -7.275292 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.100893 ], [ 156.445312, -6.751896 ], [ 156.533203, -6.577303 ], [ 157.060547, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ] ] ], [ [ [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.188870 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 161.279297, -9.102097 ], [ 161.630859, -9.535749 ], [ 161.455078, -9.709057 ], [ 160.751953, -8.841651 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 158.291016, -7.275292 ], [ 158.818359, -7.536764 ], [ 159.609375, -7.972198 ], [ 159.873047, -8.320212 ], [ 159.873047, -8.494105 ], [ 158.203125, -7.362467 ], [ 158.291016, -7.275292 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.060547, -7.013668 ], [ 157.500000, -7.275292 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.100893 ], [ 156.445312, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -16.130262 ], [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ] ] ], [ [ [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.728516, -15.623037 ], [ 166.640625, -15.368950 ], [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -16.130262 ], [ 167.167969, -15.876809 ] ] ], [ [ [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.728516, -15.623037 ], [ 166.640625, -15.368950 ], [ 166.552734, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.091797, -20.385825 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.091797, -20.385825 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 173.144531, -42.940339 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.695312, -46.255847 ], [ 166.640625, -46.195042 ], [ 166.464844, -45.828799 ], [ 166.992188, -45.089036 ], [ 168.222656, -44.087585 ], [ 168.925781, -43.897892 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.705729 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ] ] ], [ [ [ 173.496094, -34.957995 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.781250, -36.738884 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 177.363281, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.842286 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.990234, -41.376809 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 173.847656, -39.095963 ], [ 174.550781, -38.754083 ], [ 174.726562, -37.996163 ], [ 174.638672, -37.370157 ], [ 174.287109, -36.668419 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ], [ 173.496094, -34.957995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 173.144531, -42.940339 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.695312, -46.255847 ], [ 166.640625, -46.195042 ], [ 166.464844, -45.828799 ], [ 166.992188, -45.089036 ], [ 168.222656, -44.087585 ], [ 168.925781, -43.897892 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.705729 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ] ] ], [ [ [ 172.968750, -34.379713 ], [ 173.496094, -34.957995 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.781250, -36.738884 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 177.363281, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.842286 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.990234, -41.376809 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 173.847656, -39.095963 ], [ 174.550781, -38.754083 ], [ 174.726562, -37.996163 ], [ 174.638672, -37.370157 ], [ 174.287109, -36.668419 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.387695, 3.513421 ], [ -67.368164, 3.513421 ], [ -67.324219, 3.337954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.368164, 3.513421 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.387695, 3.513421 ], [ -67.368164, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.513421 ], [ -64.423828, 3.513421 ], [ -64.423828, 3.162456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.423828, 3.513421 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.513421 ], [ -64.423828, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.513421 ], [ -57.744141, 3.513421 ], [ -57.612305, 3.337954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.744141, 3.513421 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.513421 ], [ -57.744141, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -57.744141, 3.513421 ], [ -54.096680, 3.513421 ], [ -54.272461, 2.767478 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.096680, 3.513421 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -57.744141, 3.513421 ], [ -54.096680, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.096680, 3.513421 ], [ -52.119141, 3.513421 ], [ -52.558594, 2.547988 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.119141, 3.513421 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.096680, 3.513421 ], [ -52.119141, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.053203 ], [ -72.290039, -54.470038 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.872070, -53.041213 ], [ -72.465820, -53.696706 ], [ -71.147461, -54.059388 ], [ -70.620117, -53.592505 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -69.125977, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.038086, -27.488781 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -71.147461, -37.544577 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -71.938477, -46.860191 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -69.521484, -52.133488 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -69.960938, -52.536273 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -73.740234, -52.829321 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -71.894531, -33.906896 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.751953, -25.681137 ], [ -70.092773, -21.371244 ], [ -70.180664, -19.725342 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ], [ -69.125977, -18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.053203 ], [ -72.290039, -54.470038 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.872070, -53.041213 ], [ -72.465820, -53.696706 ], [ -71.147461, -54.059388 ], [ -70.620117, -53.592505 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.125977, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.038086, -27.488781 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -71.147461, -37.544577 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -71.938477, -46.860191 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -69.521484, -52.133488 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -69.960938, -52.536273 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -73.740234, -52.829321 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -71.894531, -33.906896 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.751953, -25.681137 ], [ -70.092773, -21.371244 ], [ -70.180664, -19.725342 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478516, -10.487812 ], [ -65.346680, -10.876465 ], [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.743164, -13.453737 ], [ -61.127930, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.468750, -14.349548 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.403320, -16.846605 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.700195, -18.937464 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -60.073242, -19.311143 ], [ -61.787109, -19.601194 ], [ -62.270508, -20.509355 ], [ -62.314453, -21.043491 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.247070, -21.493964 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.125977, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.818359, -11.005904 ], [ -68.291016, -11.005904 ], [ -68.071289, -10.703792 ], [ -67.192383, -10.271681 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.478516, -10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.478516, -10.487812 ], [ -65.346680, -10.876465 ], [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.743164, -13.453737 ], [ -61.127930, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.468750, -14.349548 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.403320, -16.846605 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.700195, -18.937464 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -60.073242, -19.311143 ], [ -61.787109, -19.601194 ], [ -62.270508, -20.509355 ], [ -62.314453, -21.043491 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.247070, -21.493964 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.125977, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.818359, -11.005904 ], [ -68.291016, -11.005904 ], [ -68.071289, -10.703792 ], [ -67.192383, -10.271681 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.119141, 3.513421 ], [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.119141, 3.513421 ], [ -51.064453, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.138470 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.634293 ], [ -55.546875, -23.563987 ], [ -55.415039, -23.926013 ], [ -55.063477, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.316406, -24.567108 ], [ -54.667969, -25.720735 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -57.612305, -27.371767 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -58.842773, -24.766785 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -62.314453, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.601194 ], [ -60.073242, -19.311143 ], [ -59.150391, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.073242, -19.311143 ], [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.138470 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.634293 ], [ -55.546875, -23.563987 ], [ -55.415039, -23.926013 ], [ -55.063477, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.316406, -24.567108 ], [ -54.667969, -25.720735 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -57.612305, -27.371767 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -58.842773, -24.766785 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -62.314453, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.601194 ], [ -60.073242, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ] ] ], [ [ [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.864510 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.528806 ], [ -173.144531, -84.115970 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.807617, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.631968 ], [ -59.589844, -80.035262 ] ] ], [ [ [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ] ] ], [ [ [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ] ] ], [ [ [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.807617, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.782227, 68.301905 ], [ -86.044922, 68.301905 ], [ -85.605469, 68.800041 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.213867, 68.301905 ], [ -141.020508, 68.301905 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -104.897461, 68.301905 ], [ -108.852539, 68.301905 ], [ -108.852539, 68.318146 ], [ -108.193359, 68.656555 ] ] ], [ [ [ -97.690430, 68.592487 ], [ -96.372070, 68.301905 ], [ -98.569336, 68.301905 ], [ -98.569336, 68.415352 ], [ -97.690430, 68.592487 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.198242, 68.301905 ], [ -94.614258, 68.301905 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.324219, 68.301905 ], [ -74.091797, 68.301905 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.213867, 68.301905 ], [ -141.020508, 68.301905 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.324219, 68.301905 ], [ -74.091797, 68.301905 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ] ] ], [ [ [ -105.380859, 68.576441 ], [ -104.897461, 68.301905 ], [ -108.852539, 68.301905 ], [ -108.852539, 68.318146 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ] ] ], [ [ [ -96.372070, 68.301905 ], [ -98.569336, 68.301905 ], [ -98.569336, 68.415352 ], [ -97.690430, 68.592487 ], [ -96.372070, 68.301905 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.198242, 68.301905 ], [ -94.614258, 68.301905 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.782227, 68.301905 ], [ -86.044922, 68.301905 ], [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ] ] ], [ [ [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ] ] ], [ [ [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ] ] ], [ [ [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ] ] ], [ [ [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ] ] ], [ [ [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ] ] ], [ [ [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.301905 ], [ -104.897461, 68.301905 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.301905 ], [ -96.372070, 68.301905 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.614258, 68.301905 ], [ -88.198242, 68.301905 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -86.044922, 68.301905 ], [ -81.782227, 68.301905 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.301905 ], [ -114.213867, 68.301905 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.091797, 68.301905 ], [ -67.324219, 68.301905 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.782227, 68.301905 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.301905 ], [ -114.213867, 68.301905 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.301905 ], [ -104.897461, 68.301905 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.301905 ], [ -96.372070, 68.301905 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.614258, 68.301905 ], [ -88.198242, 68.301905 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -86.044922, 68.301905 ], [ -81.782227, 68.301905 ] ] ], [ [ [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ] ] ], [ [ [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ] ] ], [ [ [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ] ] ], [ [ [ -67.324219, 68.301905 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.818359, 63.763065 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.091797, 68.301905 ], [ -67.324219, 68.301905 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ] ] ], [ [ [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ] ] ], [ [ [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ] ] ], [ [ [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ] ] ], [ [ [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ] ] ], [ [ [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ] ] ], [ [ [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ] ] ], [ [ [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ] ] ], [ [ [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ] ] ], [ [ [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ] ] ], [ [ [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ] ] ], [ [ [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.945312, 15.919074 ], [ -88.637695, 15.707663 ], [ -88.549805, 15.876809 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.368950 ], [ -89.165039, 15.072124 ], [ -89.252930, 14.902322 ], [ -89.165039, 14.689881 ], [ -89.384766, 14.434680 ], [ -89.604492, 14.392118 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.131836, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.274414, 13.966054 ], [ -91.713867, 14.136576 ], [ -92.241211, 14.562318 ], [ -92.241211, 14.859850 ], [ -92.109375, 15.072124 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.509833 ], [ -90.747070, 16.720385 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.945312, 15.919074 ], [ -88.637695, 15.707663 ], [ -88.549805, 15.876809 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.368950 ], [ -89.165039, 15.072124 ], [ -89.252930, 14.902322 ], [ -89.165039, 14.689881 ], [ -89.384766, 14.434680 ], [ -89.604492, 14.392118 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.131836, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.274414, 13.966054 ], [ -91.713867, 14.136576 ], [ -92.241211, 14.562318 ], [ -92.241211, 14.859850 ], [ -92.109375, 15.072124 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.509833 ], [ -90.747070, 16.720385 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ] ] ], [ [ [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ] ] ], [ [ [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ] ] ], [ [ [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.330078, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.154297, 18.104087 ], [ -88.286133, 17.685895 ], [ -88.198242, 17.518344 ], [ -88.330078, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.551962 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.256867 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.978733 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.521283 ], [ -88.330078, 18.521283 ], [ -88.330078, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.330078, 18.521283 ], [ -88.330078, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.154297, 18.104087 ], [ -88.286133, 17.685895 ], [ -88.198242, 17.518344 ], [ -88.330078, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.551962 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.256867 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.978733 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.521283 ], [ -88.330078, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.549805, 14.008696 ], [ -88.505859, 13.880746 ], [ -88.066406, 13.966054 ], [ -87.890625, 13.923404 ], [ -87.758789, 13.795406 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.539201 ], [ -90.131836, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.604492, 14.392118 ], [ -89.384766, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.549805, 14.008696 ], [ -88.505859, 13.880746 ], [ -88.066406, 13.966054 ], [ -87.890625, 13.923404 ], [ -87.758789, 13.795406 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.539201 ], [ -90.131836, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.604492, 14.392118 ], [ -89.384766, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.473633, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.876809 ], [ -83.803711, 15.453680 ], [ -83.452148, 15.284185 ], [ -83.188477, 15.029686 ], [ -83.496094, 15.029686 ], [ -83.671875, 14.902322 ], [ -83.979492, 14.774883 ], [ -84.243164, 14.774883 ], [ -84.462891, 14.647368 ], [ -84.682617, 14.689881 ], [ -84.858398, 14.859850 ], [ -84.946289, 14.817371 ], [ -85.078125, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.392118 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.352539, 13.795406 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -86.923828, 13.282719 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.025966 ], [ -87.495117, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.758789, 13.795406 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.880746 ], [ -88.549805, 14.008696 ], [ -89.077148, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.252930, 14.902322 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.368950 ], [ -88.242188, 15.749963 ], [ -88.154297, 15.707663 ], [ -87.934570, 15.876809 ], [ -87.626953, 15.919074 ], [ -87.539062, 15.834536 ], [ -87.407227, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.132812, 15.919074 ], [ -86.044922, 16.045813 ], [ -85.473633, 15.919074 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.044922, 16.045813 ], [ -85.473633, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.876809 ], [ -83.803711, 15.453680 ], [ -83.452148, 15.284185 ], [ -83.188477, 15.029686 ], [ -83.496094, 15.029686 ], [ -83.671875, 14.902322 ], [ -83.979492, 14.774883 ], [ -84.243164, 14.774883 ], [ -84.462891, 14.647368 ], [ -84.682617, 14.689881 ], [ -84.858398, 14.859850 ], [ -84.946289, 14.817371 ], [ -85.078125, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.392118 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.352539, 13.795406 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -86.923828, 13.282719 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.025966 ], [ -87.495117, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.758789, 13.795406 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.880746 ], [ -88.549805, 14.008696 ], [ -89.077148, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.252930, 14.902322 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.368950 ], [ -88.242188, 15.749963 ], [ -88.154297, 15.707663 ], [ -87.934570, 15.876809 ], [ -87.626953, 15.919074 ], [ -87.539062, 15.834536 ], [ -87.407227, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.132812, 15.919074 ], [ -86.044922, 16.045813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.689881 ], [ -83.188477, 14.349548 ], [ -83.452148, 14.008696 ], [ -83.540039, 13.581921 ], [ -83.583984, 13.154376 ], [ -83.496094, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.759766, 11.910354 ], [ -83.671875, 11.652236 ], [ -83.891602, 11.393879 ], [ -83.847656, 11.135287 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.199219, 10.833306 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.946289, 10.962764 ], [ -85.605469, 11.221510 ], [ -85.737305, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.168226 ], [ -87.670898, 12.940322 ], [ -87.583008, 13.068777 ], [ -87.407227, 12.940322 ], [ -87.319336, 13.025966 ], [ -87.011719, 13.025966 ], [ -86.923828, 13.282719 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.352539, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -85.166016, 14.392118 ], [ -85.166016, 14.562318 ], [ -85.078125, 14.562318 ], [ -84.946289, 14.817371 ], [ -84.858398, 14.859850 ], [ -84.682617, 14.689881 ], [ -84.462891, 14.647368 ], [ -84.243164, 14.774883 ], [ -83.979492, 14.774883 ], [ -83.671875, 14.902322 ], [ -83.496094, 15.029686 ], [ -83.188477, 15.029686 ], [ -83.320312, 14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.188477, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.188477, 14.349548 ], [ -83.452148, 14.008696 ], [ -83.540039, 13.581921 ], [ -83.583984, 13.154376 ], [ -83.496094, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.759766, 11.910354 ], [ -83.671875, 11.652236 ], [ -83.891602, 11.393879 ], [ -83.847656, 11.135287 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.199219, 10.833306 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.946289, 10.962764 ], [ -85.605469, 11.221510 ], [ -85.737305, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.168226 ], [ -87.670898, 12.940322 ], [ -87.583008, 13.068777 ], [ -87.407227, 12.940322 ], [ -87.319336, 13.025966 ], [ -87.011719, 13.025966 ], [ -86.923828, 13.282719 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.352539, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -85.166016, 14.392118 ], [ -85.166016, 14.562318 ], [ -85.078125, 14.562318 ], [ -84.946289, 14.817371 ], [ -84.858398, 14.859850 ], [ -84.682617, 14.689881 ], [ -84.462891, 14.647368 ], [ -84.243164, 14.774883 ], [ -83.979492, 14.774883 ], [ -83.671875, 14.902322 ], [ -83.496094, 15.029686 ], [ -83.188477, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.639648, 23.120154 ], [ -79.716797, 22.796439 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.248422 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.673828, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -77.519531, 20.673905 ], [ -78.178711, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.321289, 21.575719 ], [ -80.244141, 21.861499 ], [ -80.551758, 22.065278 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.067383, 21.943046 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.228090 ], [ -84.243164, 22.593726 ], [ -83.803711, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ], [ -79.716797, 22.796439 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.248422 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.673828, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -77.519531, 20.673905 ], [ -78.178711, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.321289, 21.575719 ], [ -80.244141, 21.861499 ], [ -80.551758, 22.065278 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.067383, 21.943046 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.228090 ], [ -84.243164, 22.593726 ], [ -83.803711, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.309570, 23.200961 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.946289, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -83.408203, 10.401378 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.968750, 9.102097 ], [ -82.749023, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.836914, 8.667918 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.627930, 8.841651 ], [ -83.671875, 9.058702 ], [ -83.935547, 9.318990 ], [ -84.682617, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.946289, 9.838979 ], [ -85.122070, 9.579084 ], [ -85.341797, 9.838979 ], [ -85.693359, 9.968851 ], [ -85.825195, 10.141932 ], [ -85.825195, 10.444598 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ], [ -84.946289, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.221510 ], [ -84.946289, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -83.408203, 10.401378 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.968750, 9.102097 ], [ -82.749023, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.836914, 8.667918 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.627930, 8.841651 ], [ -83.671875, 9.058702 ], [ -83.935547, 9.318990 ], [ -84.682617, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.946289, 9.838979 ], [ -85.122070, 9.579084 ], [ -85.341797, 9.838979 ], [ -85.693359, 9.968851 ], [ -85.825195, 10.141932 ], [ -85.825195, 10.444598 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.057617, 9.579084 ], [ -79.101562, 9.492408 ], [ -78.530273, 9.449062 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.222656, 7.536764 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.145508, 9.015302 ], [ -79.584961, 8.971897 ], [ -79.760742, 8.624472 ], [ -80.200195, 8.363693 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.210938, 7.667441 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.397461, 8.320212 ], [ -82.836914, 8.320212 ], [ -82.880859, 8.102739 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.667918 ], [ -82.880859, 8.841651 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.232249 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.738281, 9.058702 ], [ -81.474609, 8.798225 ], [ -80.991211, 8.885072 ], [ -80.551758, 9.145486 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.057617, 9.579084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.057617, 9.579084 ], [ -79.101562, 9.492408 ], [ -78.530273, 9.449062 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.222656, 7.536764 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.145508, 9.015302 ], [ -79.584961, 8.971897 ], [ -79.760742, 8.624472 ], [ -80.200195, 8.363693 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.210938, 7.667441 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.397461, 8.320212 ], [ -82.836914, 8.320212 ], [ -82.880859, 8.102739 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.667918 ], [ -82.880859, 8.841651 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.232249 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.738281, 9.058702 ], [ -81.474609, 8.798225 ], [ -80.991211, 8.885072 ], [ -80.551758, 9.145486 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ], [ -76.376953, 18.187607 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.211914, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.827148, 18.562947 ], [ -77.607422, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.827148, 18.562947 ], [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ], [ -76.376953, 18.187607 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.211914, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.827148, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.354526 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ], [ -72.597656, 19.890723 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.932041 ], [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.354526 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.818359, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.437925 ], [ -69.653320, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.271086 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.015625, 18.312811 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.354526 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.818359, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.437925 ], [ -69.653320, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.271086 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.015625, 18.312811 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.354526 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.785156, -3.513421 ], [ -70.576172, -3.513421 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.785156, -3.513421 ], [ -70.576172, -3.513421 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.790141 ], [ -61.127930, 10.919618 ], [ -60.908203, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.127930, 10.919618 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.790141 ], [ -61.127930, 10.919618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.987305, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.987305, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.457504 ], [ 3.515625, 43.197167 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.457504 ], [ 3.515625, 43.197167 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 25.918526 ], [ -11.997070, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.590820, 27.019984 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.448242, 27.098254 ], [ -8.833008, 27.137368 ], [ -8.833008, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ], [ -11.997070, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.590820, 27.019984 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.448242, 27.098254 ], [ -8.833008, 27.137368 ], [ -8.833008, 27.683528 ], [ -8.701172, 27.683528 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.041992, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.294922, 41.934977 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -6.899414, 40.346544 ], [ -7.031250, 40.212441 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.207031, 37.822802 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.920898, 36.879621 ], [ -8.789062, 37.683820 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -8.833008, 41.211722 ], [ -9.008789, 41.574361 ], [ -9.052734, 41.902277 ], [ -8.701172, 42.163403 ], [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.294922, 41.934977 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -6.899414, 40.346544 ], [ -7.031250, 40.212441 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.207031, 37.822802 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.920898, 36.879621 ], [ -8.789062, 37.683820 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -8.833008, 41.211722 ], [ -9.008789, 41.574361 ], [ -9.052734, 41.902277 ], [ -8.701172, 42.163403 ], [ -8.305664, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.341226 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -12.128906, 14.008696 ], [ -11.953125, 13.453737 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.557617, 12.468760 ], [ -11.689453, 12.425848 ], [ -12.216797, 12.468760 ], [ -12.304688, 12.382928 ], [ -12.524414, 12.340002 ], [ -13.227539, 12.597455 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.732422, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.539201 ], [ -14.721680, 13.325485 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.414062, 13.667338 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -15.424805, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.743164, 13.624633 ], [ -17.138672, 14.392118 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.743164, 15.623037 ], [ -16.479492, 16.172473 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.161133, 16.594081 ], [ -14.589844, 16.636192 ], [ -14.106445, 16.341226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -14.106445, 16.341226 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -12.128906, 14.008696 ], [ -11.953125, 13.453737 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.557617, 12.468760 ], [ -11.689453, 12.425848 ], [ -12.216797, 12.468760 ], [ -12.304688, 12.382928 ], [ -12.524414, 12.340002 ], [ -13.227539, 12.597455 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.732422, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.539201 ], [ -14.721680, 13.325485 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.414062, 13.667338 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -15.424805, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.743164, 13.624633 ], [ -17.138672, 14.392118 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.743164, 15.623037 ], [ -16.479492, 16.172473 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.161133, 16.594081 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.721680, 13.667338 ], [ -14.414062, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.325485 ], [ -15.161133, 13.539201 ], [ -15.512695, 13.282719 ], [ -15.732422, 13.282719 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ], [ -15.117188, 13.880746 ], [ -14.721680, 13.667338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.880746 ], [ -14.721680, 13.667338 ], [ -14.414062, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.325485 ], [ -15.161133, 13.539201 ], [ -15.512695, 13.282719 ], [ -15.732422, 13.282719 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ], [ -15.117188, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.524414, 12.340002 ], [ -12.304688, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.689453, 12.425848 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.337891, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.898438, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.931641, 12.082296 ], [ -9.360352, 12.340002 ], [ -9.140625, 12.340002 ], [ -8.920898, 12.125264 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.613281, 11.178402 ], [ -8.657227, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.305664, 10.833306 ], [ -8.349609, 10.531020 ], [ -8.041992, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -8.085938, 9.405710 ], [ -7.866211, 8.581021 ], [ -8.217773, 8.494105 ], [ -8.305664, 8.320212 ], [ -8.261719, 8.146243 ], [ -8.305664, 7.710992 ], [ -8.481445, 7.710992 ], [ -8.745117, 7.754537 ], [ -8.964844, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.360352, 7.928675 ], [ -9.755859, 8.581021 ], [ -10.019531, 8.450639 ], [ -10.546875, 8.363693 ], [ -10.502930, 8.754795 ], [ -10.678711, 9.015302 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.172852, 9.882275 ], [ -12.436523, 9.838979 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -13.710938, 9.535749 ], [ -14.106445, 9.925566 ], [ -14.589844, 10.228437 ], [ -14.721680, 10.660608 ], [ -14.853516, 10.919618 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -14.414062, 11.523088 ], [ -14.150391, 11.695273 ], [ -13.930664, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.168226 ], [ -13.754883, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.597455 ], [ -12.524414, 12.340002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.597455 ], [ -12.524414, 12.340002 ], [ -12.304688, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.689453, 12.425848 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.337891, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.898438, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.931641, 12.082296 ], [ -9.360352, 12.340002 ], [ -9.140625, 12.340002 ], [ -8.920898, 12.125264 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.613281, 11.178402 ], [ -8.657227, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.305664, 10.833306 ], [ -8.349609, 10.531020 ], [ -8.041992, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -8.085938, 9.405710 ], [ -7.866211, 8.581021 ], [ -8.217773, 8.494105 ], [ -8.305664, 8.320212 ], [ -8.261719, 8.146243 ], [ -8.305664, 7.710992 ], [ -8.481445, 7.710992 ], [ -8.745117, 7.754537 ], [ -8.964844, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.360352, 7.928675 ], [ -9.755859, 8.581021 ], [ -10.019531, 8.450639 ], [ -10.546875, 8.363693 ], [ -10.502930, 8.754795 ], [ -10.678711, 9.015302 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.172852, 9.882275 ], [ -12.436523, 9.838979 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -13.710938, 9.535749 ], [ -14.106445, 9.925566 ], [ -14.589844, 10.228437 ], [ -14.721680, 10.660608 ], [ -14.853516, 10.919618 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -14.414062, 11.523088 ], [ -14.150391, 11.695273 ], [ -13.930664, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.168226 ], [ -13.754883, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.634766, 9.275622 ], [ -10.678711, 9.015302 ], [ -10.502930, 8.754795 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.144499 ], [ -11.469727, 6.795535 ], [ -11.733398, 6.882800 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.841615 ], [ -13.139648, 8.189742 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.172852, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.678711, 9.015302 ], [ -10.502930, 8.754795 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.144499 ], [ -11.469727, 6.795535 ], [ -11.733398, 6.882800 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.841615 ], [ -13.139648, 8.189742 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.172852, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.678711, 15.156974 ], [ -11.381836, 15.411319 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.341226 ], [ -14.589844, 16.636192 ], [ -15.161133, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.567383, 16.678293 ], [ -16.303711, 17.182779 ], [ -16.171875, 18.145852 ], [ -16.391602, 19.601194 ], [ -16.303711, 20.097206 ], [ -16.567383, 20.591652 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.678711, 15.156974 ], [ -11.381836, 15.411319 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.341226 ], [ -14.589844, 16.636192 ], [ -15.161133, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.567383, 16.678293 ], [ -16.303711, 17.182779 ], [ -16.171875, 18.145852 ], [ -16.391602, 19.601194 ], [ -16.303711, 20.097206 ], [ -16.567383, 20.591652 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 3.515625, 19.103648 ], [ 3.515625, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ], [ 0.000000, 21.820708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 3.515625, 19.103648 ], [ 3.515625, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.360352, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.964844, 7.318882 ], [ -8.745117, 7.754537 ], [ -8.481445, 7.710992 ], [ -8.525391, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.602539, 5.747174 ], [ -7.558594, 5.353521 ], [ -7.646484, 5.222247 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.008789, 4.872048 ], [ -9.931641, 5.615986 ], [ -10.766602, 6.184246 ], [ -11.469727, 6.795535 ], [ -11.206055, 7.144499 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ], [ -9.360352, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.360352, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.964844, 7.318882 ], [ -8.745117, 7.754537 ], [ -8.481445, 7.710992 ], [ -8.525391, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.602539, 5.747174 ], [ -7.558594, 5.353521 ], [ -7.646484, 5.222247 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.008789, 4.872048 ], [ -9.931641, 5.615986 ], [ -10.766602, 6.184246 ], [ -11.469727, 6.795535 ], [ -11.206055, 7.144499 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.000000, 10.962764 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ], [ 0.000000, 10.962764 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.222656, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.222656, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.576172, -3.513421 ], [ -78.222656, -3.513421 ], [ -77.871094, -2.986927 ] ] ], [ [ [ -80.288086, -3.513421 ], [ -80.463867, -3.513421 ], [ -80.332031, -3.381824 ], [ -80.288086, -3.513421 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.332031, -3.381824 ], [ -80.288086, -3.513421 ], [ -80.463867, -3.513421 ], [ -80.332031, -3.381824 ] ] ], [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.576172, -3.513421 ], [ -78.222656, -3.513421 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.344339 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.481383 ], [ 3.515625, 51.344339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.481383 ], [ 3.515625, 51.344339 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.344339 ], [ 3.515625, 50.457504 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.344339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.295898, 51.371780 ], [ 3.515625, 51.344339 ], [ 3.515625, 50.457504 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 19.103648 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.515625, 36.809285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.738302 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.515625, 15.580711 ], [ 3.515625, 11.738302 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.580711 ], [ 3.515625, 11.738302 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.515625, 15.580711 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.962764 ], [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.962764 ], [ 0.000000, 11.049038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.738302 ], [ 3.515625, 9.838979 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ], [ 3.515625, 11.738302 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.254128 ], [ 3.515625, 11.738302 ], [ 3.515625, 9.838979 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.515625, 9.838979 ], [ 3.515625, 6.271618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.838979 ], [ 3.515625, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.515625, 9.838979 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.249023, 3.513421 ], [ 15.380859, 3.337954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 3.513421 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.249023, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.249023, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.523438, 3.206333 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 3.513421 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.249023, 3.513421 ], [ 16.875000, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.000000 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 34.453125, 3.513421 ], [ 35.024414, 1.933227 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.000000 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.550781, 3.425692 ], [ 39.594727, 3.513421 ], [ 41.528320, 3.513421 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.453125, 3.513421 ], [ 38.847656, 3.513421 ], [ 39.550781, 3.425692 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.528320, 3.513421 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.453125, 3.513421 ], [ 38.847656, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.594727, 3.513421 ], [ 41.528320, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.550781, 3.425692 ], [ 38.847656, 3.513421 ], [ 39.594727, 3.513421 ], [ 39.550781, 3.425692 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.594727, 3.513421 ], [ 39.550781, 3.425692 ], [ 38.847656, 3.513421 ], [ 39.594727, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 41.528320, 3.513421 ], [ 47.109375, 3.513421 ], [ 46.538086, 2.899153 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 3.513421 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 41.528320, 3.513421 ], [ 47.109375, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.334961, 3.513421 ], [ 115.576172, 3.513421 ], [ 115.488281, 3.206333 ] ] ], [ [ [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 101.030273, 3.513421 ], [ 103.359375, 3.513421 ], [ 103.491211, 2.811371 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.576172, 3.513421 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.334961, 3.513421 ], [ 115.576172, 3.513421 ] ] ], [ [ [ 103.359375, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 101.030273, 3.513421 ], [ 103.359375, 3.513421 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 16.875000, 3.513421 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 16.875000, 3.513421 ], [ 18.413086, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, -6.620957 ], [ 16.831055, -7.188101 ], [ 17.446289, -8.059230 ], [ 18.105469, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 19.995117, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.928711, -8.276727 ], [ 21.796875, -8.885072 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 22.368164, -10.962764 ], [ 22.807617, -11.005904 ], [ 23.422852, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.221510 ], [ 23.862305, -11.695273 ], [ 24.038086, -12.168226 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 12.788086, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 11.777344, -15.792254 ], [ 12.084961, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 13.666992, -10.703792 ], [ 13.359375, -10.358151 ], [ 12.832031, -9.145486 ], [ 12.919922, -8.928487 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ], [ 16.567383, -6.620957 ] ] ], [ [ [ 12.963867, -4.740675 ], [ 12.612305, -4.959615 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.303711, -5.834616 ], [ 16.567383, -6.620957 ], [ 16.831055, -7.188101 ], [ 17.446289, -8.059230 ], [ 18.105469, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 19.995117, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.928711, -8.276727 ], [ 21.796875, -8.885072 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 22.368164, -10.962764 ], [ 22.807617, -11.005904 ], [ 23.422852, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.221510 ], [ 23.862305, -11.695273 ], [ 24.038086, -12.168226 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 12.788086, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 11.777344, -15.792254 ], [ 12.084961, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 13.666992, -10.703792 ], [ 13.359375, -10.358151 ], [ 12.832031, -9.145486 ], [ 12.919922, -8.928487 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.959615 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.018555, -17.392579 ], [ 14.194336, -17.350638 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 24.653320, -17.350638 ], [ 25.048828, -17.560247 ], [ 25.048828, -17.644022 ], [ 24.477539, -17.853290 ], [ 24.213867, -17.853290 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 21.621094, -18.187607 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 17.182617, -28.343065 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.600586, -27.800210 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.370117, -22.634293 ], [ 14.238281, -22.105999 ], [ 13.842773, -21.698265 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 12.788086, -16.930705 ], [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ], [ 14.194336, -17.350638 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 24.653320, -17.350638 ], [ 25.048828, -17.560247 ], [ 25.048828, -17.644022 ], [ 24.477539, -17.853290 ], [ 24.213867, -17.853290 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 21.621094, -18.187607 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 17.182617, -28.343065 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.600586, -27.800210 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.370117, -22.634293 ], [ 14.238281, -22.105999 ], [ 13.842773, -21.698265 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 12.788086, -16.930705 ], [ 13.447266, -16.930705 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.717773, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.167969, -8.928487 ], [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.310547, -10.790141 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.958984, -12.768946 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 29.487305, -15.623037 ], [ 28.916016, -16.003576 ], [ 28.784180, -16.383391 ], [ 28.432617, -16.467695 ], [ 27.597656, -17.266728 ], [ 27.026367, -17.936929 ], [ 26.674805, -17.936929 ], [ 26.367188, -17.811456 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.994141, -17.266728 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.038086, -12.168226 ], [ 23.862305, -11.695273 ], [ 23.994141, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 24.741211, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 28.959961, -8.363693 ], [ 30.322266, -8.233237 ], [ 30.717773, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 30.717773, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.167969, -8.928487 ], [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.310547, -10.790141 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.958984, -12.768946 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 29.487305, -15.623037 ], [ 28.916016, -16.003576 ], [ 28.784180, -16.383391 ], [ 28.432617, -16.467695 ], [ 27.597656, -17.266728 ], [ 27.026367, -17.936929 ], [ 26.674805, -17.936929 ], [ 26.367188, -17.811456 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.994141, -17.266728 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.038086, -12.168226 ], [ 23.862305, -11.695273 ], [ 23.994141, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 24.741211, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 28.959961, -8.363693 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 31.596680, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.299805, -16.383391 ], [ 32.827148, -16.678293 ], [ 32.827148, -17.978733 ], [ 32.651367, -18.646245 ], [ 32.607422, -19.394068 ], [ 32.739258, -19.683970 ], [ 32.651367, -20.303418 ], [ 32.475586, -20.385825 ], [ 32.211914, -21.084500 ], [ 31.157227, -22.228090 ], [ 30.629883, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.065278 ], [ 29.399414, -22.065278 ], [ 28.784180, -21.616579 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.838278 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.839844, -18.687879 ], [ 25.620117, -18.521283 ], [ 25.224609, -17.727759 ], [ 26.367188, -17.811456 ], [ 26.674805, -17.936929 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.266728 ], [ 28.432617, -16.467695 ], [ 28.784180, -16.383391 ], [ 28.916016, -16.003576 ], [ 29.487305, -15.623037 ], [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 31.596680, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.299805, -16.383391 ], [ 32.827148, -16.678293 ], [ 32.827148, -17.978733 ], [ 32.651367, -18.646245 ], [ 32.607422, -19.394068 ], [ 32.739258, -19.683970 ], [ 32.651367, -20.303418 ], [ 32.475586, -20.385825 ], [ 32.211914, -21.084500 ], [ 31.157227, -22.228090 ], [ 30.629883, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.065278 ], [ 29.399414, -22.065278 ], [ 28.784180, -21.616579 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.838278 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.839844, -18.687879 ], [ 25.620117, -18.521283 ], [ 25.224609, -17.727759 ], [ 26.367188, -17.811456 ], [ 26.674805, -17.936929 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.266728 ], [ 28.432617, -16.467695 ], [ 28.784180, -16.383391 ], [ 28.916016, -16.003576 ], [ 29.487305, -15.623037 ], [ 30.234375, -15.496032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 34.892578, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.277344, -15.453680 ], [ 34.497070, -14.987240 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.750000, -14.434680 ], [ 33.178711, -13.966054 ], [ 32.651367, -13.710035 ], [ 32.958984, -12.768946 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.310547, -10.790141 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 34.892578, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.277344, -15.453680 ], [ 34.497070, -14.987240 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.750000, -14.434680 ], [ 33.178711, -13.966054 ], [ 32.651367, -13.710035 ], [ 32.958984, -12.768946 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.310547, -10.790141 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.746969 ], [ 40.429688, -11.738302 ], [ 40.517578, -12.597455 ], [ 40.561523, -14.179186 ], [ 40.737305, -14.689881 ], [ 40.473633, -15.368950 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 36.254883, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.518375 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.156250, -21.248422 ], [ 35.332031, -21.820708 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.507812, -23.039298 ], [ 35.332031, -23.523700 ], [ 35.595703, -23.684774 ], [ 35.419922, -24.086589 ], [ 35.024414, -24.447150 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.211914, -21.084500 ], [ 32.475586, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.739258, -19.683970 ], [ 32.607422, -19.394068 ], [ 32.651367, -18.646245 ], [ 32.827148, -17.978733 ], [ 32.827148, -16.678293 ], [ 32.299805, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.596680, -16.045813 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 33.750000, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -14.987240 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.892578, -13.539201 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 35.288086, -11.436955 ], [ 36.474609, -11.695273 ], [ 36.738281, -11.566144 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.738302 ], [ 40.517578, -12.597455 ], [ 40.561523, -14.179186 ], [ 40.737305, -14.689881 ], [ 40.473633, -15.368950 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 36.254883, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.518375 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.156250, -21.248422 ], [ 35.332031, -21.820708 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.507812, -23.039298 ], [ 35.332031, -23.523700 ], [ 35.595703, -23.684774 ], [ 35.419922, -24.086589 ], [ 35.024414, -24.447150 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.211914, -21.084500 ], [ 32.475586, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.739258, -19.683970 ], [ 32.607422, -19.394068 ], [ 32.651367, -18.646245 ], [ 32.827148, -17.978733 ], [ 32.827148, -16.678293 ], [ 32.299805, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.596680, -16.045813 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 33.750000, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -14.987240 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.892578, -13.539201 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 35.288086, -11.436955 ], [ 36.474609, -11.695273 ], [ 36.738281, -11.566144 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.224609, -17.727759 ], [ 25.620117, -18.521283 ], [ 25.839844, -18.687879 ], [ 26.147461, -19.269665 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.838278 ], [ 27.993164, -21.453069 ], [ 28.784180, -21.616579 ], [ 29.399414, -22.065278 ], [ 27.993164, -22.796439 ], [ 27.114258, -23.563987 ], [ 26.762695, -24.206890 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.681137 ], [ 24.169922, -25.641526 ], [ 23.730469, -25.363882 ], [ 23.291016, -25.244696 ], [ 22.807617, -25.482951 ], [ 22.543945, -25.958045 ], [ 22.104492, -26.273714 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.839449 ], [ 20.126953, -24.886436 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 21.621094, -18.187607 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 24.213867, -17.853290 ], [ 24.477539, -17.853290 ], [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 25.620117, -18.521283 ], [ 25.839844, -18.687879 ], [ 26.147461, -19.269665 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.838278 ], [ 27.993164, -21.453069 ], [ 28.784180, -21.616579 ], [ 29.399414, -22.065278 ], [ 27.993164, -22.796439 ], [ 27.114258, -23.563987 ], [ 26.762695, -24.206890 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.681137 ], [ 24.169922, -25.641526 ], [ 23.730469, -25.363882 ], [ 23.291016, -25.244696 ], [ 22.807617, -25.482951 ], [ 22.543945, -25.958045 ], [ 22.104492, -26.273714 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.839449 ], [ 20.126953, -24.886436 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 21.621094, -18.187607 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 24.213867, -17.853290 ], [ 24.477539, -17.853290 ], [ 25.048828, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.629883, -22.146708 ], [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -25.997550 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.563477, -27.449790 ], [ 32.431641, -28.265682 ], [ 32.167969, -28.729130 ], [ 31.508789, -29.228890 ], [ 31.289062, -29.382175 ], [ 30.893555, -29.878755 ], [ 30.585938, -30.410782 ], [ 30.014648, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.760882 ], [ 24.653320, -33.979809 ], [ 23.554688, -33.760882 ], [ 22.983398, -33.906896 ], [ 22.543945, -33.833920 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.415973 ], [ 20.039062, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.852539, -34.415973 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.833920 ], [ 18.237305, -33.247876 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 17.534180, -30.713504 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.182617, -28.343065 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.886436 ], [ 20.742188, -25.839449 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 22.104492, -26.273714 ], [ 22.543945, -25.958045 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.244696 ], [ 23.730469, -25.363882 ], [ 24.169922, -25.641526 ], [ 25.004883, -25.681137 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 26.762695, -24.206890 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.399414, -22.065278 ], [ 29.838867, -22.065278 ], [ 30.322266, -22.268764 ] ], [ [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.081055, -30.524413 ], [ 28.256836, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.065278 ], [ 30.322266, -22.268764 ], [ 30.629883, -22.146708 ], [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -25.997550 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.563477, -27.449790 ], [ 32.431641, -28.265682 ], [ 32.167969, -28.729130 ], [ 31.508789, -29.228890 ], [ 31.289062, -29.382175 ], [ 30.893555, -29.878755 ], [ 30.585938, -30.410782 ], [ 30.014648, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.760882 ], [ 24.653320, -33.979809 ], [ 23.554688, -33.760882 ], [ 22.983398, -33.906896 ], [ 22.543945, -33.833920 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.415973 ], [ 20.039062, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.852539, -34.415973 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.833920 ], [ 18.237305, -33.247876 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 17.534180, -30.713504 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.182617, -28.343065 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.886436 ], [ 20.742188, -25.839449 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 22.104492, -26.273714 ], [ 22.543945, -25.958045 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.244696 ], [ 23.730469, -25.363882 ], [ 24.169922, -25.641526 ], [ 25.004883, -25.681137 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 26.762695, -24.206890 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.399414, -22.065278 ], [ 29.838867, -22.065278 ] ], [ [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.081055, -30.524413 ], [ 28.256836, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 30.673828, -26.391870 ], [ 30.937500, -25.997550 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 30.673828, -26.391870 ], [ 30.937500, -25.997550 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.256836, -30.221102 ], [ 28.081055, -30.524413 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.256836, -30.221102 ], [ 28.081055, -30.524413 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 48.515625, -20.468189 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 48.515625, -20.468189 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ] ] ], [ [ [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ] ] ], [ [ [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ] ] ], [ [ [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ] ] ], [ [ [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ] ] ], [ [ [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ], [ 99.667969, 3.206333 ] ] ], [ [ [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ] ] ], [ [ [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.576172, 3.513421 ], [ 117.465820, 3.513421 ], [ 117.290039, 3.250209 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ] ] ], [ [ [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 117.465820, 3.513421 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.576172, 3.513421 ], [ 117.465820, 3.513421 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.309570, -8.363693 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.362353 ], [ 125.068359, -9.058702 ], [ 124.936523, -8.885072 ], [ 125.068359, -8.624472 ], [ 125.903320, -8.407168 ], [ 126.606445, -8.363693 ], [ 126.914062, -8.233237 ], [ 127.309570, -8.363693 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.309570, -8.363693 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.362353 ], [ 125.068359, -9.058702 ], [ 124.936523, -8.885072 ], [ 125.068359, -8.624472 ], [ 125.903320, -8.407168 ], [ 126.606445, -8.363693 ], [ 126.914062, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ] ] ], [ [ [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ] ] ], [ [ [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ] ] ], [ [ [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ] ] ], [ [ [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ] ] ], [ [ [ 160.356445, -9.362353 ], [ 160.664062, -9.579084 ], [ 160.839844, -9.838979 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.752370 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.751953, -8.885072 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.536764 ], [ 159.609375, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.554688, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.334961, -7.318882 ], [ 158.818359, -7.536764 ] ] ], [ [ [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.144499 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ], [ 160.664062, -9.579084 ], [ 160.839844, -9.838979 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.752370 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.883789, -8.276727 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.751953, -8.885072 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ] ] ], [ [ [ 158.334961, -7.318882 ], [ 158.818359, -7.536764 ], [ 159.609375, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.554688, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.334961, -7.318882 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.144499 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.167969, -16.130262 ], [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ] ] ], [ [ [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.580711 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.368950 ], [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.167969, -16.130262 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.580711 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.368950 ], [ 166.596680, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.014648, -20.427013 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.794922, -21.125498 ], [ 164.135742, -20.427013 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ], [ 165.014648, -20.427013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.097206 ], [ 165.014648, -20.427013 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.794922, -21.125498 ], [ 164.135742, -20.427013 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.738528 ], [ 173.188477, -42.940339 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 171.166992, -44.871443 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 168.925781, -43.929550 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.738528 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.242188, -38.582526 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 175.034180, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.726562, -37.996163 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.287109, -36.527295 ], [ 173.803711, -36.102376 ], [ 173.012695, -35.209722 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.738528 ], [ 173.188477, -42.940339 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 171.166992, -44.871443 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 168.925781, -43.929550 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.738528 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.242188, -38.582526 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 175.034180, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.726562, -37.996163 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.287109, -36.527295 ], [ 173.803711, -36.102376 ], [ 173.012695, -35.209722 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.515625, 50.317408 ], [ -3.515625, 51.426614 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.454007 ], [ -3.515625, 53.435719 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ] ] ], [ [ [ -3.032227, 58.654085 ], [ -3.515625, 58.147519 ], [ -3.515625, 58.608334 ], [ -3.032227, 58.654085 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 57.633640 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.515625, 50.317408 ], [ -3.515625, 51.426614 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.454007 ], [ -3.515625, 53.435719 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ] ] ], [ [ [ -3.515625, 58.147519 ], [ -3.515625, 58.608334 ], [ -3.032227, 58.654085 ], [ -3.515625, 58.147519 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.893615 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.893615 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.484812 ], [ -1.933594, 43.452919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.484812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.515625, 31.690782 ], [ -3.515625, 35.389050 ], [ -2.636719, 35.209722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 35.389050 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.515625, 31.690782 ], [ -3.515625, 35.389050 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.515625, 13.368243 ], [ -3.515625, 24.086589 ], [ 0.000000, 21.820708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 24.086589 ], [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.515625, 13.368243 ], [ -3.515625, 24.086589 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.515625, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.515625, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 9.925566 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.000000, 10.962764 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ], [ 0.000000, 10.962764 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ] ] ], [ [ [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ] ] ], [ [ [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ] ] ], [ [ [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ] ] ], [ [ [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ] ] ], [ [ [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ] ] ], [ [ [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ] ] ], [ [ [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ] ] ], [ [ [ 10.502930, 57.231503 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ], [ 10.502930, 57.231503 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.502930, 57.231503 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ], [ 21.972656, 68.624544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.610352, 69.115611 ], [ 21.972656, 68.624544 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.922935 ], [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ], [ 6.240234, 49.922935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.020508, 50.148746 ], [ 6.240234, 49.922935 ], [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.754240 ], [ 14.985352, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.282227, 51.124213 ], [ 14.018555, 50.930738 ], [ 13.315430, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.216797, 50.289339 ], [ 12.392578, 49.979488 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.579102, 48.893615 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.312428 ], [ 13.007812, 47.665387 ], [ 12.919922, 47.487513 ], [ 12.612305, 47.694974 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 9.580078, 47.546872 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 6.240234, 49.922935 ], [ 6.020508, 50.148746 ], [ 6.152344, 50.819818 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.754240 ], [ 14.985352, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.282227, 51.124213 ], [ 14.018555, 50.930738 ], [ 13.315430, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.216797, 50.289339 ], [ 12.392578, 49.979488 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.579102, 48.893615 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.312428 ], [ 13.007812, 47.665387 ], [ 12.919922, 47.487513 ], [ 12.612305, 47.694974 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 9.580078, 47.546872 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 6.240234, 49.922935 ], [ 6.020508, 50.148746 ], [ 6.152344, 50.819818 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.546872 ], [ 9.624023, 47.368594 ], [ 9.448242, 47.129951 ], [ 9.931641, 46.950262 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.250977, 45.798170 ], [ 6.811523, 46.012224 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 7.163086, 47.457809 ], [ 7.426758, 47.635784 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ], [ 9.624023, 47.368594 ], [ 9.448242, 47.129951 ], [ 9.931641, 46.950262 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.250977, 45.798170 ], [ 6.811523, 46.012224 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 7.163086, 47.457809 ], [ 7.426758, 47.635784 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.296472 ], [ 18.061523, 49.066668 ], [ 17.885742, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 16.479492, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.249023, 49.066668 ], [ 14.897461, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.579102, 48.893615 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.979488 ], [ 12.216797, 50.289339 ], [ 12.963867, 50.485474 ], [ 13.315430, 50.736455 ], [ 14.018555, 50.930738 ], [ 14.282227, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.296472 ], [ 18.061523, 49.066668 ], [ 17.885742, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 16.479492, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.249023, 49.066668 ], [ 14.897461, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.579102, 48.893615 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.979488 ], [ 12.216797, 50.289339 ], [ 12.963867, 50.485474 ], [ 13.315430, 50.736455 ], [ 14.018555, 50.930738 ], [ 14.282227, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.985352, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.342149 ], [ 23.203125, 54.239551 ], [ 23.466797, 53.930220 ], [ 23.510742, 53.488046 ], [ 23.774414, 53.094024 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.466797, 52.025459 ], [ 23.510742, 51.590723 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.342149 ], [ 23.203125, 54.239551 ], [ 23.466797, 53.930220 ], [ 23.510742, 53.488046 ], [ 23.774414, 53.094024 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.466797, 52.025459 ], [ 23.510742, 51.590723 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.875000, 48.487486 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 16.171875, 46.860191 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 13.798828, 46.528635 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 10.415039, 46.920255 ], [ 9.931641, 46.950262 ], [ 9.448242, 47.129951 ], [ 9.624023, 47.368594 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.612305, 47.694974 ], [ 12.919922, 47.487513 ], [ 13.007812, 47.665387 ], [ 12.875977, 48.312428 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 14.897461, 48.980217 ], [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.875000, 48.487486 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 16.171875, 46.860191 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 13.798828, 46.528635 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 10.415039, 46.920255 ], [ 9.931641, 46.950262 ], [ 9.448242, 47.129951 ], [ 9.624023, 47.368594 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.612305, 47.694974 ], [ 12.919922, 47.487513 ], [ 13.007812, 47.665387 ], [ 12.875977, 48.312428 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 14.897461, 48.980217 ], [ 15.249023, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.859412 ], [ 15.292969, 45.736860 ], [ 15.292969, 45.460131 ], [ 14.897461, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.709736 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ], [ 16.523438, 46.528635 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.859412 ], [ 15.292969, 45.736860 ], [ 15.292969, 45.460131 ], [ 14.897461, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.709736 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.117188, 37.474858 ], [ 15.292969, 37.160317 ], [ 15.073242, 36.633162 ], [ 14.326172, 37.020098 ], [ 13.798828, 37.125286 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.512695, 38.238180 ], [ 15.117188, 37.474858 ] ] ], [ [ [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.348633, 44.902578 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.238180 ], [ 15.864258, 38.754083 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 14.985352, 40.178873 ], [ 14.677734, 40.613952 ], [ 14.018555, 40.813809 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 12.084961, 41.705729 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.667969, 44.056012 ], [ 8.876953, 44.370987 ], [ 8.393555, 44.245199 ], [ 7.822266, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.736860 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ] ] ], [ [ [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.349609, 40.380028 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.117188, 37.474858 ], [ 15.292969, 37.160317 ], [ 15.073242, 36.633162 ], [ 14.326172, 37.020098 ], [ 13.798828, 37.125286 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.348633, 44.902578 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.238180 ], [ 15.864258, 38.754083 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 14.985352, 40.178873 ], [ 14.677734, 40.613952 ], [ 14.018555, 40.813809 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 12.084961, 41.705729 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.667969, 44.056012 ], [ 8.876953, 44.370987 ], [ 8.393555, 44.245199 ], [ 7.822266, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.736860 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ] ] ], [ [ [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.349609, 40.380028 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.621094, 47.010226 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.875000, 46.407564 ], [ 16.523438, 46.528635 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.446289, 47.872144 ], [ 17.841797, 47.783635 ], [ 18.676758, 47.901614 ], [ 18.764648, 48.107431 ], [ 19.160156, 48.136767 ], [ 19.643555, 48.283193 ], [ 19.731445, 48.224673 ], [ 20.214844, 48.341646 ], [ 20.434570, 48.574790 ], [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.621094, 47.010226 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.875000, 46.407564 ], [ 16.523438, 46.528635 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.446289, 47.872144 ], [ 17.841797, 47.783635 ], [ 18.676758, 47.901614 ], [ 18.764648, 48.107431 ], [ 19.160156, 48.136767 ], [ 19.643555, 48.283193 ], [ 19.731445, 48.224673 ], [ 20.214844, 48.341646 ], [ 20.434570, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.060547, 48.429201 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 20.434570, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.731445, 48.224673 ], [ 19.643555, 48.283193 ], [ 19.160156, 48.136767 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.841797, 47.783635 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.487486 ], [ 17.094727, 48.835797 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.922499 ], [ 17.885742, 49.009051 ], [ 18.061523, 49.066668 ], [ 18.149414, 49.296472 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.060547, 48.429201 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 20.434570, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.731445, 48.224673 ], [ 19.643555, 48.283193 ], [ 19.160156, 48.136767 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.841797, 47.783635 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.487486 ], [ 17.094727, 48.835797 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.922499 ], [ 17.885742, 49.009051 ], [ 18.061523, 49.066668 ], [ 18.149414, 49.296472 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.291992, 49.582226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 19.204102, 43.548548 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.270508, 43.452919 ], [ 16.875000, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.215820, 44.370987 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.243953 ], [ 17.841797, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.243953 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 19.204102, 43.548548 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.270508, 43.452919 ], [ 16.875000, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.215820, 44.370987 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.243953 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 43.229195 ], [ 19.951172, 43.133061 ], [ 20.302734, 42.908160 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.967659 ], [ 18.852539, 42.293564 ], [ 18.413086, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.599609, 43.229195 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.548548 ], [ 19.599609, 43.229195 ], [ 19.951172, 43.133061 ], [ 20.302734, 42.908160 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.967659 ], [ 18.852539, 42.293564 ], [ 18.413086, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.433780 ], [ 22.631836, 44.245199 ], [ 22.368164, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.229195 ], [ 22.587891, 42.908160 ], [ 22.412109, 42.585444 ], [ 22.543945, 42.488302 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.752930, 42.714732 ], [ 21.621094, 42.682435 ], [ 20.786133, 43.293200 ], [ 20.610352, 43.229195 ], [ 20.478516, 42.908160 ], [ 20.214844, 42.843751 ], [ 20.302734, 42.908160 ], [ 19.951172, 43.133061 ], [ 19.599609, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.433780 ], [ 22.631836, 44.245199 ], [ 22.368164, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.229195 ], [ 22.587891, 42.908160 ], [ 22.412109, 42.585444 ], [ 22.543945, 42.488302 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.752930, 42.714732 ], [ 21.621094, 42.682435 ], [ 20.786133, 43.293200 ], [ 20.610352, 43.229195 ], [ 20.478516, 42.908160 ], [ 20.214844, 42.843751 ], [ 20.302734, 42.908160 ], [ 19.951172, 43.133061 ], [ 19.599609, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 42.682435 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.326062 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.258789, 42.326062 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.610352, 43.229195 ], [ 20.786133, 43.293200 ], [ 21.621094, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 43.293200 ], [ 21.621094, 42.682435 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.326062 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.258789, 42.326062 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.610352, 43.229195 ], [ 20.786133, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.520700 ], [ 20.039062, 42.617791 ], [ 20.258789, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.961914, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.943436 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.738528 ], [ 19.335938, 41.902277 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ], [ 19.775391, 42.520700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.714732 ], [ 19.775391, 42.520700 ], [ 20.039062, 42.617791 ], [ 20.258789, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.961914, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.943436 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.738528 ], [ 19.335938, 41.902277 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.719727, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.016602, 41.178654 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 42.065607 ], [ 21.313477, 42.228517 ], [ 21.884766, 42.326062 ], [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.719727, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.016602, 41.178654 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 42.065607 ], [ 21.313477, 42.228517 ], [ 21.884766, 42.326062 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.904910 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.904910 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.576172, 57.868132 ], [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 27.817383, 56.776808 ], [ 28.168945, 56.170023 ], [ 27.070312, 55.801281 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 23.862305, 56.292157 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ], [ 25.576172, 57.868132 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 25.576172, 57.868132 ], [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 27.817383, 56.776808 ], [ 28.168945, 56.170023 ], [ 27.070312, 55.801281 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 23.862305, 56.292157 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.576172, 57.868132 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 24.565430, 59.467408 ], [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.576172, 57.868132 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 24.565430, 59.467408 ], [ 25.839844, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.876607 ], [ 22.280273, 55.028022 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.292157 ], [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.876607 ], [ 22.280273, 55.028022 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.292157 ], [ 24.829102, 56.389584 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.937500, 55.103516 ], [ 30.717773, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.094024 ], [ 31.508789, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 30.146484, 51.426614 ], [ 29.223633, 51.371780 ], [ 28.959961, 51.618017 ], [ 28.608398, 51.454007 ], [ 28.212891, 51.590723 ], [ 27.421875, 51.618017 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.466797, 52.025459 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.774414, 53.094024 ], [ 23.510742, 53.488046 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 27.070312, 55.801281 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.937500, 55.103516 ], [ 30.717773, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.094024 ], [ 31.508789, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 30.146484, 51.426614 ], [ 29.223633, 51.371780 ], [ 28.959961, 51.618017 ], [ 28.608398, 51.454007 ], [ 28.212891, 51.590723 ], [ 27.421875, 51.618017 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.466797, 52.025459 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.774414, 53.094024 ], [ 23.510742, 53.488046 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 27.070312, 55.801281 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.125000, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.652344, 45.305803 ], [ 29.135742, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.202148, 44.182204 ], [ 26.059570, 43.961191 ], [ 25.532227, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 47.010226 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 23.730469, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.180664, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.586914, 48.224673 ], [ 26.894531, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.586914, 48.224673 ], [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.125000, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.652344, 45.305803 ], [ 29.135742, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.202148, 44.182204 ], [ 26.059570, 43.961191 ], [ 25.532227, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 47.010226 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 23.730469, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.180664, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.586914, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.532227, 43.707594 ], [ 26.059570, 43.961191 ], [ 27.202148, 44.182204 ], [ 27.949219, 43.834527 ], [ 28.520508, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.488302 ], [ 22.412109, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.532227, 43.707594 ], [ 26.059570, 43.961191 ], [ 27.202148, 44.182204 ], [ 27.949219, 43.834527 ], [ 28.520508, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.488302 ], [ 22.412109, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.166085 ], [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 29.531250, 46.950262 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.377254 ], [ 29.135742, 46.407564 ], [ 29.047852, 46.528635 ], [ 28.828125, 46.468133 ], [ 28.916016, 46.286224 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.614037 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.377254 ], [ 28.125000, 46.830134 ], [ 26.894531, 48.136767 ], [ 26.586914, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.487486 ], [ 28.256836, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.487486 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 29.531250, 46.950262 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.377254 ], [ 29.135742, 46.407564 ], [ 29.047852, 46.528635 ], [ 28.828125, 46.468133 ], [ 28.916016, 46.286224 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.614037 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.377254 ], [ 28.125000, 46.830134 ], [ 26.894531, 48.136767 ], [ 26.586914, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.487486 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.375977, 50.792047 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 38.583984, 49.951220 ], [ 40.034180, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 37.397461, 47.040182 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.575195, 45.305803 ], [ 29.135742, 45.490946 ], [ 28.652344, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.614037 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.286224 ], [ 28.828125, 46.468133 ], [ 29.047852, 46.528635 ], [ 29.135742, 46.407564 ], [ 29.750977, 46.377254 ], [ 30.014648, 46.437857 ], [ 29.794922, 46.528635 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.950262 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.487486 ], [ 26.850586, 48.370848 ], [ 26.586914, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.180664, 47.901614 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.730469, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.590723 ], [ 28.608398, 51.454007 ], [ 28.959961, 51.618017 ], [ 29.223633, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.375977, 50.792047 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 38.583984, 49.951220 ], [ 40.034180, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 37.397461, 47.040182 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.575195, 45.305803 ], [ 29.135742, 45.490946 ], [ 28.652344, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.614037 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.286224 ], [ 28.828125, 46.468133 ], [ 29.047852, 46.528635 ], [ 29.135742, 46.407564 ], [ 29.750977, 46.377254 ], [ 30.014648, 46.437857 ], [ 29.794922, 46.528635 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.950262 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.487486 ], [ 26.850586, 48.370848 ], [ 26.586914, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.180664, 47.901614 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.730469, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.590723 ], [ 28.608398, 51.454007 ], [ 28.959961, 51.618017 ], [ 29.223633, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.348763 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.363281, 43.229195 ], [ 43.725586, 42.747012 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 46.494141, 41.079351 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 44.956055, 41.277806 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.036776 ], [ 40.297852, 43.133061 ], [ 39.946289, 43.452919 ], [ 40.034180, 43.580391 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.034180, 43.580391 ], [ 40.913086, 43.389082 ], [ 42.363281, 43.229195 ], [ 43.725586, 42.747012 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 46.494141, 41.079351 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 44.956055, 41.277806 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.036776 ], [ 40.297852, 43.133061 ], [ 39.946289, 43.452919 ], [ 40.034180, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.690782 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.690782 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.805745 ], [ 13.051758, 32.879587 ], [ 13.886719, 32.731841 ], [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 16.611328, 31.203405 ], [ 18.017578, 30.789037 ], [ 19.072266, 30.297018 ], [ 19.555664, 30.562261 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 23.598633, 32.212801 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.931641, 24.966140 ], [ 9.887695, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.624023, 27.176469 ], [ 9.755859, 27.722436 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.458731 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.101190 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.051758, 32.879587 ], [ 13.886719, 32.731841 ], [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 16.611328, 31.203405 ], [ 18.017578, 30.789037 ], [ 19.072266, 30.297018 ], [ 19.555664, 30.562261 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 23.598633, 32.212801 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.931641, 24.966140 ], [ 9.887695, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.624023, 27.176469 ], [ 9.755859, 27.722436 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.458731 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.101190 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.962764 ], [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.962764 ], [ 0.000000, 11.049038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.543945, 14.944785 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 22.016602, 12.983148 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.456055, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.393879 ], [ 22.851562, 11.178402 ], [ 22.192383, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.102097 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.928675 ], [ 16.699219, 7.536764 ], [ 16.435547, 7.754537 ], [ 16.259766, 7.754537 ], [ 16.083984, 7.536764 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 14.501953, 8.971897 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.941406, 11.566144 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.644531, 19.973349 ], [ 15.864258, 20.427013 ], [ 15.468750, 20.756114 ], [ 15.468750, 21.084500 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.543945, 14.944785 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 22.016602, 12.983148 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.456055, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.393879 ], [ 22.851562, 11.178402 ], [ 22.192383, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.102097 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.928675 ], [ 16.699219, 7.536764 ], [ 16.435547, 7.754537 ], [ 16.259766, 7.754537 ], [ 16.083984, 7.536764 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 14.501953, 8.971897 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.941406, 11.566144 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.644531, 19.973349 ], [ 15.864258, 20.427013 ], [ 15.468750, 20.756114 ], [ 15.468750, 21.084500 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.213867, 35.389050 ], [ 25.004883, 35.460670 ], [ 25.751953, 35.389050 ], [ 25.708008, 35.209722 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ] ] ], [ [ [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.015625, 40.847060 ], [ 25.444336, 40.880295 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.510742, 38.513788 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.961914, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.016602, 41.178654 ], [ 22.587891, 41.145570 ], [ 22.719727, 41.310824 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ], [ 25.004883, 35.460670 ], [ 25.751953, 35.389050 ], [ 25.708008, 35.209722 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.015625, 40.847060 ], [ 25.444336, 40.880295 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.510742, 38.513788 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.961914, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.016602, 41.178654 ], [ 22.587891, 41.145570 ], [ 22.719727, 41.310824 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.442383, 35.029996 ], [ 33.837891, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.969727, 34.994004 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.354492, 35.173808 ], [ 33.442383, 35.029996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.354492, 35.173808 ], [ 33.442383, 35.029996 ], [ 33.837891, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.969727, 34.994004 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.354492, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.872070, 30.902225 ], [ 29.663086, 31.203405 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.381735 ], [ 34.145508, 27.839076 ], [ 33.881836, 27.683528 ], [ 33.134766, 28.420391 ], [ 32.387695, 29.878755 ], [ 32.299805, 29.764377 ], [ 32.695312, 28.729130 ], [ 33.310547, 27.722436 ], [ 34.101562, 26.155438 ], [ 34.760742, 25.045792 ], [ 35.683594, 23.966176 ], [ 35.463867, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.650391, 22.228090 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ], [ 29.663086, 31.203405 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.381735 ], [ 34.145508, 27.839076 ], [ 33.881836, 27.683528 ], [ 33.134766, 28.420391 ], [ 32.387695, 29.878755 ], [ 32.299805, 29.764377 ], [ 32.695312, 28.729130 ], [ 33.310547, 27.722436 ], [ 34.101562, 26.155438 ], [ 34.760742, 25.045792 ], [ 35.683594, 23.966176 ], [ 35.463867, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.650391, 22.228090 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 39.506836, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.725586, 40.747257 ], [ 43.637695, 40.279526 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 42.319336, 37.230328 ], [ 41.176758, 37.090240 ], [ 40.649414, 37.125286 ], [ 39.506836, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ] ] ], [ [ [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 39.506836, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.725586, 40.747257 ], [ 43.637695, 40.279526 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 42.319336, 37.230328 ], [ 41.176758, 37.090240 ], [ 40.649414, 37.125286 ], [ 39.506836, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ] ] ], [ [ [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.284620 ], [ 35.419922, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.284620 ], [ 35.419922, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.123047, 35.853440 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 38.671875, 36.738884 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 41.176758, 37.090240 ], [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.123047, 35.853440 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 38.671875, 36.738884 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 41.176758, 37.090240 ], [ 42.319336, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.914868 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.914868 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 32.879587 ], [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 34.541016, 31.578535 ], [ 34.453125, 31.615966 ], [ 34.716797, 32.101190 ], [ 34.936523, 32.842674 ], [ 35.068359, 33.100745 ], [ 35.419922, 33.100745 ], [ 35.551758, 33.284620 ], [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 34.541016, 31.578535 ], [ 34.453125, 31.615966 ], [ 34.716797, 32.101190 ], [ 34.936523, 32.842674 ], [ 35.068359, 33.100745 ], [ 35.419922, 33.100745 ], [ 35.551758, 33.284620 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.936523, 31.653381 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.936523, 31.653381 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 38.979492, 32.026706 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.661133, 30.372875 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.936523, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.375977, 31.503629 ], [ 35.507812, 31.802893 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ], [ 38.979492, 32.026706 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.661133, 30.372875 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.936523, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.375977, 31.503629 ], [ 35.507812, 31.802893 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.043491 ], [ 36.958008, 20.838278 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 37.133789, 17.266728 ], [ 36.826172, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.125264 ], [ 34.804688, 11.350797 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.793945, 9.492408 ], [ 33.837891, 10.012130 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.046875, 11.480025 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.816406, 10.574222 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.575195, 10.098670 ], [ 29.487305, 9.795678 ], [ 28.959961, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 26.455078, 9.579084 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.838979 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.456055, 12.297068 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.983148 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.543945, 14.944785 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 36.958008, 20.838278 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 37.133789, 17.266728 ], [ 36.826172, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.125264 ], [ 34.804688, 11.350797 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.793945, 9.492408 ], [ 33.837891, 10.012130 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.046875, 11.480025 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.816406, 10.574222 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.575195, 10.098670 ], [ 29.487305, 9.795678 ], [ 28.959961, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 26.455078, 9.579084 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.838979 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.456055, 12.297068 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.983148 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.543945, 14.944785 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.178711, 12.211180 ], [ 33.046875, 11.480025 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.837891, 10.012130 ], [ 33.793945, 9.492408 ], [ 33.925781, 9.492408 ], [ 33.969727, 8.711359 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.672852, 6.620957 ], [ 35.288086, 5.528511 ], [ 33.969727, 4.258768 ], [ 33.354492, 3.820408 ], [ 32.651367, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.926758, 4.214943 ], [ 29.707031, 4.609278 ], [ 29.135742, 4.390229 ], [ 28.696289, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.795898, 7.013668 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.838979 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.455078, 9.579084 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.959961, 9.622414 ], [ 29.487305, 9.795678 ], [ 29.575195, 10.098670 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 31.816406, 10.574222 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ], [ 33.046875, 11.480025 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.837891, 10.012130 ], [ 33.793945, 9.492408 ], [ 33.925781, 9.492408 ], [ 33.969727, 8.711359 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.672852, 6.620957 ], [ 35.288086, 5.528511 ], [ 33.969727, 4.258768 ], [ 33.354492, 3.820408 ], [ 32.651367, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.926758, 4.214943 ], [ 29.707031, 4.609278 ], [ 29.135742, 4.390229 ], [ 28.696289, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.795898, 7.013668 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.838979 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.455078, 9.579084 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.959961, 9.622414 ], [ 29.487305, 9.795678 ], [ 29.575195, 10.098670 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 31.816406, 10.574222 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.000000 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.000000 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.979492, 16.846605 ], [ 39.243164, 15.961329 ], [ 39.770508, 15.453680 ], [ 41.176758, 14.519780 ], [ 42.583008, 13.025966 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 41.967773, 12.897489 ], [ 41.572266, 13.453737 ], [ 41.132812, 13.795406 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.331055, 14.562318 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.738281, 16.299051 ], [ 36.826172, 16.972741 ], [ 37.133789, 17.266728 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ], [ 38.979492, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.020528 ], [ 38.979492, 16.846605 ], [ 39.243164, 15.961329 ], [ 39.770508, 15.453680 ], [ 41.176758, 14.519780 ], [ 42.583008, 13.025966 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 41.967773, 12.897489 ], [ 41.572266, 13.453737 ], [ 41.132812, 13.795406 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.331055, 14.562318 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.738281, 16.299051 ], [ 36.826172, 16.972741 ], [ 37.133789, 17.266728 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.286133, 12.425848 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 42.539062, 11.135287 ], [ 42.275391, 11.049038 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ], [ 43.286133, 12.425848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.286133, 12.425848 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 42.539062, 11.135287 ], [ 42.275391, 11.049038 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.902344, -3.513421 ], [ 37.705078, -3.513421 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.902344, -3.513421 ], [ 37.705078, -3.513421 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 63.149414, 43.675818 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.356445, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.971680, 40.245992 ], [ 70.576172, 40.245992 ], [ 70.444336, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.994141, 40.111689 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.925229 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 57.744141, 42.195969 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 63.149414, 43.675818 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.356445, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.971680, 40.245992 ], [ 70.576172, 40.245992 ], [ 70.444336, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.994141, 40.111689 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.925229 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 57.744141, 42.195969 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 41.013066 ], [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.010742, 39.639538 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.334297 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.740986 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.279526 ], [ 43.725586, 40.747257 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.013066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.277806 ], [ 45.175781, 41.013066 ], [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.010742, 39.639538 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.334297 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.740986 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.279526 ], [ 43.725586, 40.747257 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.944336, 41.409776 ], [ 48.559570, 41.836828 ], [ 49.086914, 41.310824 ], [ 49.614258, 40.580585 ], [ 50.053711, 40.547200 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 47.680664, 39.537940 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 46.010742, 39.639538 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 45.175781, 41.013066 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 45.922852, 41.145570 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.362305, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.944336, 41.409776 ], [ 48.559570, 41.836828 ], [ 49.086914, 41.310824 ], [ 49.614258, 40.580585 ], [ 50.053711, 40.547200 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 47.680664, 39.537940 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 46.010742, 39.639538 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 45.175781, 41.013066 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 45.922852, 41.145570 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.788345 ], [ 47.680664, 39.537940 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.162109, 37.961523 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.030786 ], [ 58.403320, 37.544577 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.820312, 32.212801 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 58.491211, 25.641526 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.844674 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.736328, 37.195331 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ], [ 44.912109, 39.368279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.740986 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.788345 ], [ 47.680664, 39.537940 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.162109, 37.961523 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.030786 ], [ 58.403320, 37.544577 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.820312, 32.212801 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 58.491211, 25.641526 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.844674 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.736328, 37.195331 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.944336, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.343875 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.343875 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.766602, 24.287027 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 55.502930, 23.563987 ], [ 55.195312, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.723633, 24.327077 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.766602, 24.287027 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 55.502930, 23.563987 ], [ 55.195312, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.723633, 24.327077 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.925229 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 66.181641, 37.405074 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.940430, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.961523 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 57.744141, 42.195969 ], [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.925229 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 66.181641, 37.405074 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.940430, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.961523 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 57.744141, 42.195969 ], [ 58.623047, 42.779275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.961329 ], [ 52.163086, 15.623037 ], [ 51.152344, 15.199386 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 48.208008, 13.966054 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.325485 ], [ 45.395508, 13.068777 ], [ 45.131836, 12.983148 ], [ 44.956055, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.198242, 13.239945 ], [ 43.242188, 13.795406 ], [ 43.066406, 14.093957 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.670898, 15.749963 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 44.033203, 17.434511 ], [ 45.175781, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.266728 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.961329 ], [ 52.163086, 15.623037 ], [ 51.152344, 15.199386 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 48.208008, 13.966054 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.325485 ], [ 45.395508, 13.068777 ], [ 45.131836, 12.983148 ], [ 44.956055, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.198242, 13.239945 ], [ 43.242188, 13.795406 ], [ 43.066406, 14.093957 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.670898, 15.749963 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 44.033203, 17.434511 ], [ 45.175781, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.266728 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.821289, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.095703, 23.765237 ], [ 58.710938, 23.604262 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.553147 ], [ 59.765625, 22.350076 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 19.766704 ], [ 57.788086, 19.103648 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.469727, 18.104087 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.239258, 17.644022 ], [ 55.239258, 17.266728 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.715390 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.563987 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.766602, 24.287027 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ], [ 56.821289, 24.246965 ] ] ], [ [ [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.821289, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.095703, 23.765237 ], [ 58.710938, 23.604262 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.553147 ], [ 59.765625, 22.350076 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 19.766704 ], [ 57.788086, 19.103648 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.469727, 18.104087 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.239258, 17.644022 ], [ 55.239258, 17.266728 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.715390 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.563987 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.766602, 24.287027 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.307708 ], [ 43.637695, 10.876465 ], [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 45.527344, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 47.988281, 11.221510 ], [ 48.339844, 11.393879 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 43.286133, 9.579084 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ], [ 43.461914, 11.307708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.110352, 11.480025 ], [ 43.461914, 11.307708 ], [ 43.637695, 10.876465 ], [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 45.527344, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 47.988281, 11.221510 ], [ 48.339844, 11.393879 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 43.286133, 9.579084 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.262695, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.262695, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.323242, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.499023, 37.926868 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.158203, 36.949892 ], [ 72.597656, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.916016, 37.439974 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.575195, 37.055177 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.738884 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.455078, 35.675147 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 63.544922, 29.496988 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.212801 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 63.940430, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 66.181641, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.268555, 37.753344 ], [ 70.356445, 38.169114 ], [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.499023, 37.926868 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.158203, 36.949892 ], [ 72.597656, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.916016, 37.439974 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.575195, 37.055177 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.738884 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.455078, 35.675147 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 63.544922, 29.496988 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.212801 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 63.940430, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 66.181641, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.268555, 37.753344 ], [ 70.356445, 38.169114 ], [ 70.795898, 38.513788 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.998532 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.244696 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 63.544922, 29.496988 ], [ 64.116211, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.147461, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.455078, 35.675147 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 72.905273, 36.738884 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.055177 ], [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.998532 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.244696 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 63.544922, 29.496988 ], [ 64.116211, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.147461, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.455078, 35.675147 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 72.905273, 36.738884 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.055177 ], [ 75.146484, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.309570, 30.145127 ], [ 83.320312, 29.496988 ], [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.781250, 28.226970 ], [ 86.923828, 27.994401 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 81.958008, 27.955591 ], [ 81.035156, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ], [ 82.309570, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.448674 ], [ 82.309570, 30.145127 ], [ 83.320312, 29.496988 ], [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.781250, 28.226970 ], [ 86.923828, 27.994401 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 81.958008, 27.955591 ], [ 81.035156, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.815430, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 91.186523, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 88.813477, 27.332735 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 91.186523, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 88.813477, 27.332735 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.037042 ], [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 90.834961, 25.165173 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.739091 ], [ 91.801758, 22.187405 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.065278 ], [ 89.692383, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.286133, 24.886436 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ], [ 89.340820, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.470573 ], [ 89.340820, 26.037042 ], [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 90.834961, 25.165173 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.739091 ], [ 91.801758, 22.187405 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.065278 ], [ 89.692383, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.286133, 24.886436 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ] ] ], [ [ [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.217773, 27.761330 ], [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 97.822266, 17.602139 ], [ 98.481445, 16.846605 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 98.393555, 14.647368 ], [ 99.096680, 13.838080 ], [ 99.184570, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.008789, 10.962764 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.467695 ], [ 95.361328, 15.749963 ], [ 94.790039, 15.834536 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.032227, 22.715390 ], [ 93.251953, 23.079732 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 94.526367, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.217773, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.217773, 27.761330 ], [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 97.822266, 17.602139 ], [ 98.481445, 16.846605 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 98.393555, 14.647368 ], [ 99.096680, 13.838080 ], [ 99.184570, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.008789, 10.962764 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.467695 ], [ 95.361328, 15.749963 ], [ 94.790039, 15.834536 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.032227, 22.715390 ], [ 93.251953, 23.079732 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 94.526367, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 106.523438, 16.636192 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.030273, 18.437925 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ], [ 102.744141, 21.698265 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.471955 ], [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 106.523438, 16.636192 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.030273, 18.437925 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 18.437925 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.392578, 17.936929 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 104.238281, 14.434680 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.239258, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.882800 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 99.667969, 6.882800 ], [ 99.492188, 7.362467 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.217773, 9.015302 ], [ 98.525391, 9.968851 ], [ 99.008789, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.184570, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.393555, 14.647368 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 98.481445, 16.846605 ], [ 97.822266, 17.602139 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 99.536133, 20.220966 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 18.437925 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.392578, 17.936929 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 104.238281, 14.434680 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.239258, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.882800 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 99.667969, 6.882800 ], [ 99.492188, 7.362467 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.217773, 9.015302 ], [ 98.525391, 9.968851 ], [ 99.008789, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.184570, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.393555, 14.647368 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 98.481445, 16.846605 ], [ 97.822266, 17.602139 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 99.536133, 20.220966 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.237305, 16.088042 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 108.325195, 11.049038 ], [ 107.182617, 10.401378 ], [ 106.391602, 9.535749 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.578125, 13.539201 ], [ 107.358398, 14.221789 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 106.523438, 16.636192 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.150391, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.237305, 16.088042 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 108.325195, 11.049038 ], [ 107.182617, 10.401378 ], [ 106.391602, 9.535749 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.578125, 13.539201 ], [ 107.358398, 14.221789 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 106.523438, 16.636192 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.150391, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 103.051758, 11.178402 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.306969 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 103.051758, 11.178402 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.306969 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.717773, 21.983801 ], [ 120.190430, 22.836946 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.567108 ], [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.717773, 21.983801 ], [ 120.190430, 22.836946 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.567108 ], [ 121.464844, 25.324167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.967659 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 129.155273, 40.680638 ], [ 128.627930, 40.212441 ], [ 127.924805, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.485352, 39.334297 ], [ 127.353516, 39.232253 ], [ 127.749023, 39.061849 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 126.210938, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.961523 ], [ 125.551758, 37.753344 ], [ 125.244141, 37.683820 ], [ 125.200195, 37.857507 ], [ 124.672852, 38.134557 ], [ 124.980469, 38.582526 ], [ 125.200195, 38.685510 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.288086, 39.571822 ], [ 124.716797, 39.673370 ], [ 124.233398, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.967659 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 129.155273, 40.680638 ], [ 128.627930, 40.212441 ], [ 127.924805, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.485352, 39.334297 ], [ 127.353516, 39.232253 ], [ 127.749023, 39.061849 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 126.210938, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.961523 ], [ 125.551758, 37.753344 ], [ 125.244141, 37.683820 ], [ 125.200195, 37.857507 ], [ 124.672852, 38.134557 ], [ 124.980469, 38.582526 ], [ 125.200195, 38.685510 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.288086, 39.571822 ], [ 124.716797, 39.673370 ], [ 124.233398, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 128.144531, 34.921971 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.342773, 34.957995 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 128.144531, 34.921971 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.342773, 34.957995 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ] ] ], [ [ [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.202148, 8.450639 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ] ] ], [ [ [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ] ] ], [ [ [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ] ] ], [ [ [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ] ] ], [ [ [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ] ] ], [ [ [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ] ] ], [ [ [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.158203, 8.407168 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ] ] ], [ [ [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ] ] ], [ [ [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ] ] ], [ [ [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ] ] ], [ [ [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ] ] ], [ [ [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 114.565430, 4.915833 ], [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 114.565430, 4.915833 ], [ 115.444336, 5.484768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.777716 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ] ] ], [ [ [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ] ] ], [ [ [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.635742, 44.777936 ], [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.777716 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.635742, 44.777936 ], [ 141.943359, 45.552525 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.689453, -3.513421 ], [ 10.590820, -3.513421 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.689453, -3.513421 ], [ 10.590820, -3.513421 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 11.689453, -3.513421 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 11.689453, -3.513421 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 30.541992, -3.513421 ], [ 29.267578, -3.513421 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 30.541992, -3.513421 ], [ 29.267578, -3.513421 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.661133, -3.074695 ], [ 37.705078, -3.513421 ], [ 30.541992, -3.513421 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.705078, -3.513421 ], [ 30.541992, -3.513421 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.221680, -3.425692 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 140.976562, -3.513421 ], [ 132.714844, -3.513421 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ] ] ], [ [ [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.322266, -3.513421 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ] ] ], [ [ [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.235352, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 140.976562, -3.513421 ], [ 132.714844, -3.513421 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.235352, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.322266, -3.513421 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -3.513421 ], [ 140.976562, -3.513421 ], [ 140.976562, -2.591889 ], [ 143.437500, -3.513421 ] ] ], [ [ [ 152.226562, -3.206333 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 143.437500, -3.513421 ], [ 140.976562, -3.513421 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.664960 ], [ -88.242188, 17.581194 ], [ -88.242188, 17.350638 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.664960 ], [ -88.242188, 17.581194 ], [ -88.242188, 17.350638 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.175771 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.175771 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 13.923404 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.242188, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.728814 ], [ -88.242188, 13.923404 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ], [ [ [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ] ] ], [ [ [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ] ] ], [ [ [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ], [ [ [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.695312, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.695312, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ], [ -62.600098, -65.856756 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.622070, -65.802776 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.684082, 1.757537 ], [ -67.829590, 1.757537 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ] ] ], [ [ [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ], [ -66.884766, 1.274309 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.829590, 1.757537 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.684082, 1.757537 ], [ -67.829590, 1.757537 ] ] ], [ [ [ -67.038574, 1.757537 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.038574, 1.757537 ], [ -64.138184, 1.757537 ], [ -64.204102, 1.493971 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.138184, 1.757537 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.038574, 1.757537 ], [ -64.138184, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.611816, 1.757537 ], [ -57.590332, 1.757537 ], [ -57.678223, 1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.590332, 1.757537 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.611816, 1.757537 ], [ -57.590332, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.590332, 1.757537 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.829590, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.829590, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.590332, 1.757537 ], [ -49.987793, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.448242, -25.145285 ], [ -54.645996, -25.720735 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.448242, -25.145285 ], [ -54.645996, -25.720735 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ] ] ], [ [ [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -63.786621, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ] ] ], [ [ [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ] ] ], [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.757812, 14.200488 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.757812, 14.200488 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ] ] ], [ [ [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ] ] ], [ [ [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ] ] ], [ [ [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ] ] ], [ [ [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.166504, 15.008464 ], [ -83.254395, 14.902322 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.430176, 13.987376 ], [ -83.540039, 13.581921 ], [ -83.562012, 13.132979 ], [ -83.518066, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.737793, 11.910354 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.825684, 11.113727 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.199219, 10.811724 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.146746 ], [ -87.187500, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.319336, 13.004558 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.715332, 13.966054 ], [ -85.166016, 14.370834 ], [ -85.166016, 14.562318 ], [ -85.056152, 14.562318 ], [ -84.946289, 14.796128 ], [ -84.836426, 14.838612 ], [ -84.660645, 14.668626 ], [ -84.462891, 14.626109 ], [ -84.243164, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.649902, 14.881087 ], [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ], [ -83.254395, 14.902322 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.430176, 13.987376 ], [ -83.540039, 13.581921 ], [ -83.562012, 13.132979 ], [ -83.518066, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.737793, 11.910354 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.825684, 11.113727 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.199219, 10.811724 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.146746 ], [ -87.187500, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.319336, 13.004558 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.715332, 13.966054 ], [ -85.166016, 14.370834 ], [ -85.166016, 14.562318 ], [ -85.056152, 14.562318 ], [ -84.946289, 14.796128 ], [ -84.836426, 14.838612 ], [ -84.660645, 14.668626 ], [ -84.462891, 14.626109 ], [ -84.243164, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.649902, 14.881087 ], [ -83.496094, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.651855, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.287598, 23.200961 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.287598, 23.200961 ], [ -81.408691, 23.120154 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.651855, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.287598, 23.200961 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.836914, 8.646196 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.605957, 8.841651 ], [ -83.649902, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.803223, 10.444598 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.836914, 8.646196 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.605957, 8.841651 ], [ -83.649902, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.803223, 10.444598 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.542117 ], [ -77.585449, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.542117 ], [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.542117 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ], [ -72.597656, 19.890723 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.932041 ], [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.631348, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.631348, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.499512, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.499512, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -61.105957, 10.898042 ], [ -60.908203, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.745531 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.745531 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -8.349609, 54.673831 ], [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -8.349609, 54.673831 ], [ -7.580566, 55.141210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ] ] ], [ [ [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 1.757812, 42.374778 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 1.757812, 50.986099 ], [ 1.757812, 42.374778 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ] ] ], [ [ [ 1.757812, 50.986099 ], [ 1.757812, 42.374778 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 1.757812, 50.986099 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.185059, 37.805444 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.789062, 40.763901 ], [ -8.811035, 41.195190 ], [ -9.008789, 41.557922 ], [ -9.052734, 41.885921 ], [ -8.679199, 42.147114 ], [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.185059, 37.805444 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.789062, 40.763901 ], [ -8.811035, 41.195190 ], [ -9.008789, 41.557922 ], [ -9.052734, 41.885921 ], [ -8.679199, 42.147114 ], [ -8.283691, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -3.427734, 36.668419 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -3.427734, 36.668419 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.320139 ], [ -13.447266, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 14.008696 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.535645, 12.447305 ], [ -11.667480, 12.404389 ], [ -12.216797, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.533115 ], [ -16.149902, 12.554564 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.710449, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.392090, 13.645987 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.721191, 15.623037 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ], [ -14.106445, 16.320139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.615138 ], [ -14.106445, 16.320139 ], [ -13.447266, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 14.008696 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.535645, 12.447305 ], [ -11.667480, 12.404389 ], [ -12.216797, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.533115 ], [ -16.149902, 12.554564 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.710449, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.392090, 13.645987 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.721191, 15.623037 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.699707, 13.645987 ], [ -14.392090, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.710449, 13.282719 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ], [ -14.392090, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.710449, 13.282719 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.216797, 12.468760 ], [ -11.667480, 12.404389 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.315918, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.876465, 12.189704 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.909668, 12.060809 ], [ -9.580078, 12.211180 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.920898, 12.103781 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.844238, 8.581021 ], [ -8.217773, 8.472372 ], [ -8.305664, 8.320212 ], [ -8.239746, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.019531, 8.428904 ], [ -10.524902, 8.363693 ], [ -10.502930, 8.733077 ], [ -10.656738, 8.993600 ], [ -10.634766, 9.275622 ], [ -10.854492, 9.709057 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.612305, 9.622414 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.514079 ], [ -14.084473, 9.903921 ], [ -14.348145, 10.033767 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -14.853516, 10.898042 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -14.128418, 11.695273 ], [ -13.908691, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.732910, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.216797, 12.468760 ], [ -11.667480, 12.404389 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.315918, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.876465, 12.189704 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.909668, 12.060809 ], [ -9.580078, 12.211180 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.920898, 12.103781 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.844238, 8.581021 ], [ -8.217773, 8.472372 ], [ -8.305664, 8.320212 ], [ -8.239746, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.019531, 8.428904 ], [ -10.524902, 8.363693 ], [ -10.502930, 8.733077 ], [ -10.656738, 8.993600 ], [ -10.634766, 9.275622 ], [ -10.854492, 9.709057 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.612305, 9.622414 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.514079 ], [ -14.084473, 9.903921 ], [ -14.348145, 10.033767 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -14.853516, 10.898042 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -14.128418, 11.695273 ], [ -13.908691, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.732910, 12.254128 ], [ -13.710938, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.854492, 9.709057 ], [ -10.634766, 9.275622 ], [ -10.656738, 8.993600 ], [ -10.502930, 8.733077 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.950437 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.122696 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.139648, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.612305, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.854492, 9.709057 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.854492, 9.709057 ], [ -10.634766, 9.275622 ], [ -10.656738, 8.993600 ], [ -10.502930, 8.733077 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.950437 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.122696 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.139648, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.612305, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.320139 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.259766, 19.103648 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.320139 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.259766, 19.103648 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.368950 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.580078, 12.211180 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.368950 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.580078, 12.211180 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 1.757812, 12.726084 ], [ 1.757812, 11.609193 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 1.757812, 12.726084 ], [ 1.757812, 11.609193 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.503418, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.558594, 5.331644 ], [ -7.646484, 5.200365 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -9.931641, 5.594118 ], [ -10.766602, 6.162401 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.122696 ], [ -11.162109, 7.406048 ], [ -10.700684, 7.950437 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.503418, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.558594, 5.331644 ], [ -7.646484, 5.200365 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -9.931641, 5.594118 ], [ -10.766602, 6.162401 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.122696 ], [ -11.162109, 7.406048 ], [ -10.700684, 7.950437 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.559294 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 5.003394 ], [ -4.020996, 5.200365 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.536621, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.646484, 5.200365 ], [ -7.558594, 5.331644 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.239746, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.472372 ], [ -7.844238, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -8.041992, 10.206813 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.422988 ], [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 5.003394 ], [ -4.020996, 5.200365 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.536621, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.646484, 5.200365 ], [ -7.558594, 5.331644 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.239746, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.472372 ], [ -7.844238, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -8.041992, 10.206813 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.422988 ], [ -6.218262, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -75.761719, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -75.761719, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.388672, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.388672, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.499512, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.499512, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 1.757812, 36.650793 ], [ 1.757812, 20.653346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.650793 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 1.757812, 36.650793 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 12.726084 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.368950 ], [ 1.757812, 12.726084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.368950 ], [ 1.757812, 12.726084 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.368950 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.757812, 6.446318 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.757812, 6.446318 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 6.446318 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.757812, 11.609193 ], [ 1.757812, 6.446318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.609193 ], [ 1.757812, 6.446318 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.757812, 11.609193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.764299 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ] ] ], [ [ [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.764299 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ] ] ], [ [ [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.742188, 65.802776 ], [ -24.147949, 65.802776 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.742188, 65.802776 ] ] ], [ [ [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.802776 ], [ -20.390625, 65.802776 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.416748 ], [ -20.742188, 65.802776 ], [ -24.147949, 65.802776 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.802776 ], [ -20.390625, 65.802776 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ], [ [ [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ] ] ], [ [ [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.930176, 1.735574 ], [ 15.842285, 1.757537 ], [ 15.930176, 1.757537 ], [ 15.930176, 1.735574 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.930176, 1.757537 ], [ 15.930176, 1.735574 ], [ 15.842285, 1.757537 ], [ 15.930176, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.695801, 1.757537 ], [ 34.936523, 1.757537 ], [ 34.650879, 1.186439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.936523, 1.757537 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.695801, 1.757537 ], [ 34.936523, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 34.936523, 1.757537 ], [ 40.979004, 1.757537 ], [ 40.979004, -0.856902 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 1.757537 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 34.936523, 1.757537 ], [ 40.979004, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 1.757537 ], [ 45.109863, 1.757537 ], [ 44.055176, 1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.109863, 1.757537 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 1.757537 ], [ 45.109863, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 1.757537 ], [ 13.029785, 1.757537 ], [ 13.271484, 1.318243 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.029785, 1.757537 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 1.757537 ], [ 13.029785, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.930176, 1.735574 ], [ 15.930176, 1.757537 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 13.029785, 1.757537 ], [ 15.842285, 1.757537 ], [ 15.930176, 1.735574 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 13.029785, 1.757537 ], [ 15.842285, 1.757537 ], [ 15.930176, 1.735574 ], [ 15.930176, 1.757537 ], [ 17.885742, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 30.695801, 1.757537 ], [ 30.454102, 1.603794 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.695801, 1.757537 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 30.695801, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, -6.620957 ], [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.160156, -7.732765 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 22.390137, -10.984335 ], [ 22.829590, -11.005904 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 12.194824, -17.098792 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 11.777344, -15.792254 ], [ 12.106934, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.722168, -13.132979 ], [ 13.293457, -12.468760 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 12.722168, -5.943900 ], [ 13.007812, -5.965754 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ], [ 16.567383, -6.620957 ] ] ], [ [ [ 12.985840, -4.762573 ], [ 12.612305, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.304688, -4.587376 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.856475 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.160156, -7.732765 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 22.390137, -10.984335 ], [ 22.829590, -11.005904 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 12.194824, -17.098792 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 11.777344, -15.792254 ], [ 12.106934, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.722168, -13.132979 ], [ 13.293457, -12.468760 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 12.722168, -5.943900 ], [ 13.007812, -5.965754 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.304688, -4.587376 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 14.194336, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 23.203125, -17.518344 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 25.070801, -17.644022 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.819824, -28.844674 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.985352, -26.115986 ], [ 14.721680, -25.383735 ], [ 14.392090, -23.845650 ], [ 14.370117, -22.654572 ], [ 14.238281, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.337402, -20.858812 ], [ 12.810059, -19.663280 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.194824, -17.098792 ], [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 14.194336, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 23.203125, -17.518344 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 25.070801, -17.644022 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.819824, -28.844674 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.985352, -26.115986 ], [ 14.721680, -25.383735 ], [ 14.392090, -23.845650 ], [ 14.370117, -22.654572 ], [ 14.238281, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.337402, -20.858812 ], [ 12.810059, -19.663280 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.194824, -17.098792 ], [ 12.810059, -16.930705 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.320212 ], [ 31.157227, -8.581021 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.026367, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.367188, -17.832374 ], [ 25.246582, -17.727759 ], [ 25.070801, -17.644022 ], [ 25.070801, -17.560247 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 24.763184, -11.221510 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.520508, -12.683215 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 28.981934, -8.385431 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.320212 ], [ 31.157227, -8.581021 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.026367, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.367188, -17.832374 ], [ 25.246582, -17.727759 ], [ 25.070801, -17.644022 ], [ 25.070801, -17.560247 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 24.763184, -11.221510 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.520508, -12.683215 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 28.981934, -8.385431 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.085640 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.521283 ], [ 25.246582, -17.727759 ], [ 26.367188, -17.832374 ], [ 26.696777, -17.957832 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.085640 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.521283 ], [ 25.246582, -17.727759 ], [ 26.367188, -17.832374 ], [ 26.696777, -17.957832 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 33.200684, -13.966054 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.310547, -10.790141 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 33.200684, -13.966054 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.310547, -10.790141 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 25.839844, -18.708692 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.784668, -24.226929 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 24.499512, -17.874203 ], [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 25.839844, -18.708692 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.784668, -24.226929 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 24.499512, -17.874203 ], [ 25.070801, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ] ], [ [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ] ], [ [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.839449 ], [ 31.970215, -26.273714 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.017298 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 31.970215, -26.273714 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.017298 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.526367, -12.468760 ], [ 49.790039, -12.876070 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.526855, -23.765237 ], [ 47.087402, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.483398, -15.961329 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 46.867676, -15.199386 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.876070 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.526855, -23.765237 ], [ 47.087402, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.483398, -15.961329 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 46.867676, -15.199386 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ], [ -1.120605, 54.635697 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ] ] ], [ [ [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.293200 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.676454 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.710273 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.293200 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.676454 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.710273 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -1.757812, 37.107765 ], [ -1.757812, 43.293200 ], [ -1.516113, 43.036776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 43.293200 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -1.757812, 37.107765 ], [ -1.757812, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -1.757812, 32.212801 ], [ -1.757812, 34.143635 ], [ -1.735840, 33.925130 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 34.143635 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -1.757812, 32.212801 ], [ -1.757812, 34.143635 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -1.757812, 14.689881 ], [ -1.757812, 22.938160 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 22.938160 ], [ 0.000000, 21.800308 ], [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -1.757812, 14.689881 ], [ -1.757812, 22.938160 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -1.757812, 11.005904 ], [ -1.757812, 14.689881 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -1.757812, 11.005904 ], [ -1.757812, 14.689881 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 15.996094, 67.204032 ], [ 15.380859, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 67.204032 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 15.996094, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ] ] ], [ [ [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ] ] ], [ [ [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.387508 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.387508 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.414551, 49.979488 ], [ 12.502441, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.414551, 49.979488 ], [ 12.502441, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.431713 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.466797, 53.917281 ], [ 23.510742, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 22.543945, 49.095452 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 16.347656, 54.521081 ], [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.431713 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.466797, 53.917281 ], [ 23.510742, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 22.543945, 49.095452 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 16.347656, 54.521081 ], [ 17.622070, 54.863963 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.860191 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 10.437012, 46.905246 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.624023, 47.353711 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.860191 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 10.437012, 46.905246 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.624023, 47.353711 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.666504, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 12.084961, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.689941, 44.040219 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ] ] ], [ [ [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.666504, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 12.084961, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.689941, 44.040219 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.621094, 46.995241 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.875000, 46.392411 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.468262, 47.872144 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 19.160156, 48.122101 ], [ 19.643555, 48.268569 ], [ 19.753418, 48.210032 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.621094, 46.995241 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.875000, 46.392411 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.468262, 47.872144 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 19.160156, 48.122101 ], [ 19.643555, 48.268569 ], [ 19.753418, 48.210032 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 19.160156, 48.122101 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.009051 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 19.160156, 48.122101 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.009051 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 19.204102, 43.532620 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.896973, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.237793, 44.355278 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 19.204102, 43.532620 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.896973, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.237793, 44.355278 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 43.357138 ], [ 19.621582, 43.229195 ], [ 19.951172, 43.117024 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 19.160156, 41.967659 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.698730, 43.213183 ], [ 19.028320, 43.436966 ], [ 19.204102, 43.532620 ], [ 19.467773, 43.357138 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.532620 ], [ 19.467773, 43.357138 ], [ 19.621582, 43.229195 ], [ 19.951172, 43.117024 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 19.160156, 41.967659 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.698730, 43.213183 ], [ 19.028320, 43.436966 ], [ 19.204102, 43.532620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.555176, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.643066, 42.439674 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 21.423340, 42.875964 ], [ 21.269531, 42.924252 ], [ 21.137695, 43.068888 ], [ 20.939941, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.951172, 43.117024 ], [ 19.621582, 43.229195 ], [ 19.467773, 43.357138 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.555176, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.643066, 42.439674 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 21.423340, 42.875964 ], [ 21.269531, 42.924252 ], [ 21.137695, 43.068888 ], [ 20.939941, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.951172, 43.117024 ], [ 19.621582, 43.229195 ], [ 19.467773, 43.357138 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.939941, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.924252 ], [ 21.423340, 42.875964 ], [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.643066, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ], [ 20.939941, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.939941, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.924252 ], [ 21.423340, 42.875964 ], [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.643066, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.741699, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.741699, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.856443 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ], [ 25.598145, 57.856443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.856443 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.856443 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.856443 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.530762, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.530762, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.916504, 48.136767 ], [ 27.224121, 47.827908 ], [ 27.531738, 47.413220 ], [ 28.125000, 46.815099 ], [ 28.146973, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.245199 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 23.752441, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ], [ 26.916504, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.136767 ], [ 27.224121, 47.827908 ], [ 27.531738, 47.413220 ], [ 28.125000, 46.815099 ], [ 28.146973, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.245199 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 23.752441, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.146973, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.531738, 47.413220 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.146973, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.531738, 47.413220 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.056152, 43.564472 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 11.513672, 13.346865 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 13.293457, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.941895, 9.427387 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 12.062988, 7.819847 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.746582, 7.885147 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.208008, 9.449062 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 11.513672, 13.346865 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 13.293457, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.941895, 9.427387 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 12.062988, 7.819847 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.746582, 7.885147 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.208008, 9.449062 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 22.016602, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 18.369141, 8.298470 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.435547, 7.754537 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 15.117188, 8.385431 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 14.611816, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.941406, 11.566144 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 22.016602, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 18.369141, 8.298470 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.435547, 7.754537 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 15.117188, 8.385431 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 14.611816, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.941406, 11.566144 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 25.795898, 6.991859 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 26.389160, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.697754, 4.653080 ], [ 22.390137, 4.039618 ], [ 21.643066, 4.236856 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.797852, 3.579213 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.886230, 2.569939 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.462896 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.369141, 8.298470 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 19.072266, 9.080400 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 25.795898, 6.991859 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 26.389160, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.697754, 4.653080 ], [ 22.390137, 4.039618 ], [ 21.643066, 4.236856 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.797852, 3.579213 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.886230, 2.569939 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.462896 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.369141, 8.298470 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 19.072266, 9.080400 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.004883, 35.442771 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 25.444336, 40.863680 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 23.510742, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.004883, 35.442771 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 25.444336, 40.863680 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 23.510742, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.442383, 35.101934 ], [ 33.464355, 35.012002 ], [ 33.508301, 35.047987 ], [ 33.662109, 35.029996 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 32.717285, 35.155846 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ], [ 33.442383, 35.101934 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.173808 ], [ 33.442383, 35.101934 ], [ 33.464355, 35.012002 ], [ 33.508301, 35.047987 ], [ 33.662109, 35.029996 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 32.717285, 35.155846 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.443848, 31.334871 ], [ 28.894043, 30.883369 ], [ 29.663086, 31.203405 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.362402 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 33.332520, 27.702984 ], [ 34.101562, 26.155438 ], [ 34.453125, 25.601902 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.672363, 22.207749 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ], [ 27.443848, 31.334871 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.477051, 31.597253 ], [ 27.443848, 31.334871 ], [ 28.894043, 30.883369 ], [ 29.663086, 31.203405 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.362402 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 33.332520, 27.702984 ], [ 34.101562, 26.155438 ], [ 34.453125, 25.601902 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.672363, 22.207749 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.198730, 37.090240 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ] ] ], [ [ [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.198730, 37.090240 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ] ] ], [ [ [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 41.198730, 37.090240 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 41.198730, 37.090240 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.375977, 31.503629 ], [ 35.529785, 31.784217 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.375977, 31.503629 ], [ 35.529785, 31.784217 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.991699, 4.258768 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.355957, 5.244128 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.991859 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.817329 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 25.949707, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 31.838379, 10.552622 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.991699, 4.258768 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.355957, 5.244128 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.991859 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.817329 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 25.949707, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 31.838379, 10.552622 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 39.792480, 15.453680 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 41.989746, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.738281, 16.299051 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 39.792480, 15.453680 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 41.989746, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.738281, 16.299051 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 42.297363, 11.049038 ], [ 41.748047, 11.070603 ], [ 41.726074, 11.372339 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 42.297363, 11.049038 ], [ 41.748047, 11.070603 ], [ 41.726074, 11.372339 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 41.440430, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 41.440430, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 41.989746, 12.876070 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.726074, 11.372339 ], [ 41.748047, 11.070603 ], [ 42.297363, 11.049038 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.557417 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.649902, 3.623071 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 41.989746, 12.876070 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.726074, 11.372339 ], [ 41.748047, 11.070603 ], [ 42.297363, 11.049038 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.557417 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.649902, 3.623071 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 63.171387, 43.659924 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.993652, 40.245992 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 63.171387, 43.659924 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.993652, 40.245992 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.032715, 39.639538 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.334297 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.032715, 39.639538 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.334297 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.108887, 41.294317 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 46.032715, 39.639538 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 45.725098, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.108887, 41.294317 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 46.032715, 39.639538 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 45.725098, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.966309, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.324720 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.324720 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 55.217285, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.613770, 24.026397 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 55.217285, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.613770, 24.026397 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.052246, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.152344, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.966054 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 46.713867, 13.410994 ], [ 45.856934, 13.368243 ], [ 45.615234, 13.304103 ], [ 45.395508, 13.047372 ], [ 45.131836, 12.961736 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 43.066406, 14.072645 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.197754, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.152344, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.966054 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 46.713867, 13.410994 ], [ 45.856934, 13.368243 ], [ 45.615234, 13.304103 ], [ 45.395508, 13.047372 ], [ 45.131836, 12.961736 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 43.066406, 14.072645 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.197754, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.117676, 23.765237 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.117676, 23.765237 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 48.010254, 11.199957 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 48.471680, 8.841651 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 43.286133, 9.557417 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 48.010254, 11.199957 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 48.471680, 8.841651 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 43.286133, 9.557417 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.180176, 36.949892 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.575195, 37.037640 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.721274 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.477051, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 60.798340, 34.415973 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 67.060547, 37.370157 ], [ 67.829590, 37.160317 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.180176, 36.949892 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.575195, 37.037640 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.721274 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.477051, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 60.798340, 34.415973 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 67.060547, 37.370157 ], [ 67.829590, 37.160317 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.091797, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.224820 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.477051, 35.657296 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 72.905273, 36.721274 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.037640 ], [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.091797, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.224820 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.477051, 35.657296 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 72.905273, 36.721274 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.037640 ], [ 75.146484, 37.142803 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 86.022949, 26.647459 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.979980, 27.936181 ], [ 81.057129, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.101074, 30.202114 ], [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 86.022949, 26.647459 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.979980, 27.936181 ], [ 81.057129, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.101074, 30.202114 ], [ 81.518555, 30.429730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 91.757812, 26.843677 ], [ 91.757812, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ] ] ], [ [ [ 91.757812, 23.200961 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.757812, 24.126702 ], [ 91.757812, 23.200961 ] ] ], [ [ [ 91.757812, 27.800210 ], [ 91.757812, 27.741885 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.800210 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 26.843677 ], [ 91.757812, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 91.757812, 26.843677 ] ] ], [ [ [ 91.757812, 24.126702 ], [ 91.757812, 23.200961 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.757812, 24.126702 ] ] ], [ [ [ 91.757812, 27.741885 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.800210 ], [ 91.757812, 27.741885 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.741885 ], [ 91.757812, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.741885 ], [ 91.757812, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.000000, 25.264568 ], [ 90.856934, 25.145285 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.126702 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.757812, 23.200961 ], [ 91.757812, 22.309426 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.000000, 25.264568 ], [ 90.856934, 25.145285 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.126702 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.757812, 23.200961 ], [ 91.757812, 22.309426 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.182037 ], [ 91.757812, 27.800210 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.182037 ], [ 91.757812, 27.800210 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.326172, -1.757537 ], [ 9.162598, -1.757537 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.326172, -1.757537 ], [ 9.162598, -1.757537 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.757537 ], [ 14.326172, -1.757537 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.757537 ], [ 14.326172, -1.757537 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.783691, -1.757537 ], [ 29.267578, -1.757537 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.783691, -1.757537 ], [ 29.267578, -1.757537 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.310059, -1.757537 ], [ 30.783691, -1.757537 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ], [ 35.310059, -1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 35.310059, -1.757537 ], [ 30.783691, -1.757537 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.804688, 65.802776 ], [ 30.190430, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ] ] ], [ [ [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ], [ [ [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.804688, 65.802776 ], [ 30.190430, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ] ] ], [ [ [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ], [ [ [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ] ] ], [ [ [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.110204 ] ] ], [ [ [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ] ] ], [ [ [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ] ] ], [ [ [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.651855, -67.204032 ], [ 120.849609, -67.187000 ] ] ], [ [ [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ] ] ], [ [ [ 92.592773, -67.187000 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ] ] ], [ [ [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ] ] ], [ [ [ 99.382324, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ] ] ], [ [ [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ] ] ], [ [ [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.651855, -67.204032 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.390625, 1.669686 ], [ 110.764160, 1.757537 ], [ 114.719238, 1.757537 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.709473, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ] ] ], [ [ [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.172363, 1.757537 ], [ 104.238281, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.719238, 1.757537 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.709473, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.764160, 1.757537 ], [ 114.719238, 1.757537 ] ] ], [ [ [ 104.172363, 1.757537 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.172363, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ] ] ], [ [ [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ] ] ], [ [ [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ] ] ], [ [ [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ] ] ], [ [ [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.719238, 1.757537 ], [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ] ] ], [ [ [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ] ] ], [ [ [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.719238, 1.757537 ], [ 117.949219, 1.757537 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.068359, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.628418, -8.385431 ], [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.068359, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.628418, -8.385431 ], [ 126.936035, -8.254983 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ] ] ], [ [ [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.325195, -29.439598 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.325195, -29.439598 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ] ] ], [ [ [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ] ] ], [ [ [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.384032 ], [ 160.686035, -9.600750 ], [ 160.839844, -9.860628 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ], [ 160.686035, -9.600750 ], [ 160.839844, -9.860628 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.992188, -15.601875 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.992188, -15.601875 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.117840 ], [ 165.014648, -20.447602 ], [ 165.761719, -21.063997 ], [ 166.596680, -21.698265 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.454102, -21.677848 ], [ 164.816895, -21.145992 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ], [ 165.014648, -20.447602 ], [ 165.761719, -21.063997 ], [ 166.596680, -21.698265 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.454102, -21.677848 ], [ 164.816895, -21.145992 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.839449 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ] ] ], [ [ [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ] ] ], [ [ [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 25.839449 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.839449 ] ] ], [ [ [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ] ] ], [ [ [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.760320 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.000000, 25.264568 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.242188, 24.447150 ], [ 88.242188, 24.766785 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.760320 ], [ 88.242188, 25.839449 ], [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.000000, 25.264568 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.242188, 24.447150 ], [ 88.242188, 24.766785 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.760320 ], [ 88.242188, 25.839449 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.975586, 21.759500 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ] ] ], [ [ [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.975586, 21.759500 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.701172, 26.745610 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 99.975586, 21.759500 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.481445, 16.846605 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.756348, 14.838612 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.446622 ], [ 95.361328, 15.728814 ], [ 94.790039, 15.813396 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.701172, 26.745610 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 99.975586, 21.759500 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.481445, 16.846605 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.756348, 14.838612 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.446622 ], [ 95.361328, 15.728814 ], [ 94.790039, 15.813396 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.677848 ], [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ], [ 102.744141, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.150879, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.239746, 8.993600 ], [ 98.547363, 9.947209 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.206543, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 98.481445, 16.846605 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.239746, 8.993600 ], [ 98.547363, 9.947209 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.206543, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 98.481445, 16.846605 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.951320 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.497092 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 127.770996, 39.061849 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.980469, 37.961523 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.951320 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.497092 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 127.770996, 39.061849 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.980469, 37.961523 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 127.770996, 38.307181 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 127.770996, 38.307181 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ] ] ], [ [ [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ] ] ], [ [ [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ] ] ], [ [ [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ] ] ], [ [ [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ] ] ], [ [ [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 114.587402, 4.915833 ], [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 114.587402, 4.915833 ], [ 115.444336, 5.462896 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ] ] ], [ [ [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ] ] ], [ [ [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.657715, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.657715, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.816406, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.816406, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ] ] ], [ [ [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.916260, -79.004962 ], [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ] ] ], [ [ [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.916260, -79.004962 ], [ -159.576416, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.314941, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.314941, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -162.894287, 66.861082 ], [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -140.998535, 66.861082 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.990234, 66.861082 ], [ -175.023193, 66.587583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.990234, 66.861082 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.607378 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.607378 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.685303, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ] ] ], [ [ [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.416926 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.416926 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.211426, 41.640078 ], [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.211426, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.978733 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.978733 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.093339 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.093339 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.121094, 17.978733 ], [ -89.121094, 15.887376 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.978733 ], [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.121094, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.370834 ], [ -89.121094, 13.400307 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.121094, 14.370834 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.121094, 14.370834 ], [ -89.121094, 13.400307 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -89.121094, 15.093339 ], [ -89.121094, 14.370834 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.093339 ], [ -89.121094, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -89.121094, 15.093339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.078079 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.078079 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.078079 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.078079 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.017224 ], [ -89.121094, 76.462920 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ], [ [ [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -89.121094, 77.017224 ], [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.017224 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ], [ [ [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.326660, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.326660, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ] ] ], [ [ [ -44.121094, -80.184334 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ], [ -44.121094, -80.184334 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.184334 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.365639 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.961914, -66.160511 ], [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.365639 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.961914, -66.160511 ], [ -62.171631, -66.160511 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ] ] ], [ [ [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.236328, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.775635, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.236328, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ], [ -77.980957, 0.878872 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.980957, 0.878872 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ], [ -77.980957, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.817627, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.817627, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.211058 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.211058 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.437256, -25.155229 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.437256, -25.155229 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.817627, -41.640078 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.817627, -41.640078 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ] ] ], [ [ [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ] ] ], [ [ [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.077486 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.077486 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ] ] ], [ [ [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ] ] ], [ [ [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ] ] ], [ [ [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ] ] ], [ [ [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.944730 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.693359, 15.961329 ], [ -85.451660, 15.887376 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.528809, 15.866242 ], [ -84.375000, 15.845105 ], [ -84.067383, 15.654776 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.704346, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.528320, 13.784737 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -88.846436, 14.147229 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ], [ -85.693359, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.011963, 16.014136 ], [ -85.693359, 15.961329 ], [ -85.451660, 15.887376 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.528809, 15.866242 ], [ -84.375000, 15.845105 ], [ -84.067383, 15.654776 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.704346, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.528320, 13.784737 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -88.846436, 14.147229 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.628662, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.288330, 22.400872 ], [ -78.354492, 22.512557 ], [ -78.002930, 22.278931 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.293113 ], [ -74.300537, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.640869, 19.880392 ], [ -76.333008, 19.963023 ], [ -77.761230, 19.859727 ], [ -77.091064, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.145752, 20.745840 ], [ -78.486328, 21.033237 ], [ -78.728027, 21.606365 ], [ -79.288330, 21.565502 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.044913 ], [ -81.826172, 22.197577 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.644432 ], [ -82.781982, 22.695120 ], [ -83.496094, 22.177232 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.810508 ], [ -84.979248, 21.902278 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.988738 ], [ -82.518311, 23.079732 ], [ -82.276611, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.276611, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.628662, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.288330, 22.400872 ], [ -78.354492, 22.512557 ], [ -78.002930, 22.278931 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.293113 ], [ -74.300537, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.640869, 19.880392 ], [ -76.333008, 19.963023 ], [ -77.761230, 19.859727 ], [ -77.091064, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.145752, 20.745840 ], [ -78.486328, 21.033237 ], [ -78.728027, 21.606365 ], [ -79.288330, 21.565502 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.044913 ], [ -81.826172, 22.197577 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.644432 ], [ -82.781982, 22.695120 ], [ -83.496094, 22.177232 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.810508 ], [ -84.979248, 21.902278 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.988738 ], [ -82.518311, 23.079732 ], [ -82.276611, 23.190863 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -83.023682, 10.001310 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -83.023682, 10.001310 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.574463, 18.500447 ], [ -76.904297, 18.406655 ], [ -76.365967, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.772217, 17.863747 ], [ -78.343506, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.531700 ], [ -77.574463, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.531700 ], [ -77.574463, 18.500447 ], [ -76.904297, 18.406655 ], [ -76.365967, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.772217, 17.863747 ], [ -78.343506, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.531700 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.224609, 19.632240 ], [ -69.960938, 19.652934 ], [ -69.774170, 19.300775 ], [ -69.224854, 19.321511 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.989415 ], [ -68.323975, 18.615013 ], [ -68.697510, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.631348, 18.385805 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.675049, 18.427502 ], [ -71.004639, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.663818, 17.759150 ], [ -71.718750, 18.051867 ], [ -71.696777, 18.323240 ], [ -71.949463, 18.625425 ], [ -71.707764, 18.791918 ], [ -71.630859, 19.176301 ], [ -71.718750, 19.715000 ], [ -71.597900, 19.890723 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.597900, 19.890723 ], [ -70.806885, 19.880392 ], [ -70.224609, 19.632240 ], [ -69.960938, 19.652934 ], [ -69.774170, 19.300775 ], [ -69.224854, 19.321511 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.989415 ], [ -68.323975, 18.615013 ], [ -68.697510, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.631348, 18.385805 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.675049, 18.427502 ], [ -71.004639, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.663818, 17.759150 ], [ -71.718750, 18.051867 ], [ -71.696777, 18.323240 ], [ -71.949463, 18.625425 ], [ -71.707764, 18.791918 ], [ -71.630859, 19.176301 ], [ -71.718750, 19.715000 ], [ -71.597900, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.499512, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.499512, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.004837 ], [ -58.491211, 7.351571 ], [ -58.458252, 6.839170 ], [ -58.084717, 6.817353 ], [ -57.150879, 5.976680 ], [ -57.315674, 5.080001 ], [ -57.919922, 4.817312 ], [ -57.864990, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.778451 ], [ -56.546631, 1.900286 ], [ -56.788330, 1.867345 ], [ -57.337646, 1.955187 ], [ -57.667236, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.436279, 1.472006 ], [ -58.546143, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.985352, 2.756504 ], [ -59.820557, 3.612107 ], [ -59.545898, 3.962901 ], [ -59.776611, 4.434044 ], [ -60.117188, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.255068 ], [ -60.743408, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.303955, 7.046379 ], [ -60.644531, 7.416942 ], [ -60.556641, 7.787194 ], [ -59.765625, 8.374562 ], [ -59.106445, 8.004837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.374562 ], [ -59.106445, 8.004837 ], [ -58.491211, 7.351571 ], [ -58.458252, 6.839170 ], [ -58.084717, 6.817353 ], [ -57.150879, 5.976680 ], [ -57.315674, 5.080001 ], [ -57.919922, 4.817312 ], [ -57.864990, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.778451 ], [ -56.546631, 1.900286 ], [ -56.788330, 1.867345 ], [ -57.337646, 1.955187 ], [ -57.667236, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.436279, 1.472006 ], [ -58.546143, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.985352, 2.756504 ], [ -59.820557, 3.612107 ], [ -59.545898, 3.962901 ], [ -59.776611, 4.434044 ], [ -60.117188, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.255068 ], [ -60.743408, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.303955, 7.046379 ], [ -60.644531, 7.416942 ], [ -60.556641, 7.787194 ], [ -59.765625, 8.374562 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.245361, -0.878872 ], [ -80.584717, -0.878872 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.245361, -0.878872 ], [ -80.584717, -0.878872 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.212646, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.212646, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -47.834473, -0.571280 ], [ -46.790771, -0.878872 ], [ -48.186035, -0.878872 ], [ -47.834473, -0.571280 ] ] ], [ [ [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.499512, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.499512, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ], [ [ [ -46.790771, -0.878872 ], [ -48.186035, -0.878872 ], [ -47.834473, -0.571280 ], [ -46.790771, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -82.100830, 66.861082 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -61.864014, 66.861082 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.360596, 66.861082 ], [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.360596, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.357422, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.907249 ], [ -90.516357, 73.858452 ] ] ], [ [ [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ] ] ], [ [ [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.596680, 79.335219 ], [ -76.915283, 79.325049 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.878906, 76.232138 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.357422, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -90.878906, 73.907249 ], [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.907249 ] ] ], [ [ [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ] ] ], [ [ [ -76.596680, 79.335219 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.596680, 79.335219 ] ] ], [ [ [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ] ] ], [ [ [ -90.878906, 76.232138 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.232138 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.445068, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.445068, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.004962 ], [ -68.708496, 79.004962 ], [ -67.445068, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ], [ -68.708496, 79.004962 ], [ -67.445068, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ] ] ], [ [ [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ], [ -43.494873, -79.084302 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -42.791748, -82.063963 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -43.516846, -82.000000 ], [ -45.878906, -81.786210 ] ] ], [ [ [ -43.560791, -79.004962 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.113037, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ] ] ], [ [ [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.113037, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ], [ -45.000000, -1.504954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.878906, -1.186439 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.635310 ], [ -14.051514, 13.795406 ], [ -13.853760, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.150146, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.699463, 13.272026 ], [ -15.941162, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.633545, 13.624633 ], [ -15.402832, 13.870080 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.635310 ], [ -14.051514, 13.795406 ], [ -13.853760, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.150146, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.699463, 13.272026 ], [ -15.941162, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.633545, 13.624633 ], [ -15.402832, 13.870080 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.205811, 12.468760 ], [ -11.667480, 12.393659 ], [ -11.524658, 12.447305 ], [ -11.458740, 12.082296 ], [ -11.304932, 12.082296 ], [ -11.041260, 12.221918 ], [ -10.876465, 12.178965 ], [ -10.601807, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.898682, 12.060809 ], [ -9.569092, 12.200442 ], [ -9.338379, 12.340002 ], [ -9.129639, 12.318536 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.382568, 11.393879 ], [ -8.591309, 11.146066 ], [ -8.624268, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.800933 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.239746, 10.131117 ], [ -8.316650, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.461506 ], [ -8.305664, 8.320212 ], [ -8.228760, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.448486, 7.689217 ], [ -8.723145, 7.721878 ], [ -8.931885, 7.318882 ], [ -9.217529, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.548430 ], [ -10.019531, 8.428904 ], [ -10.239258, 8.407168 ], [ -10.513916, 8.352823 ], [ -10.502930, 8.722218 ], [ -10.656738, 8.982749 ], [ -10.623779, 9.275622 ], [ -10.843506, 9.698228 ], [ -11.118164, 10.055403 ], [ -11.920166, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.722168, 9.351513 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.503244 ], [ -14.084473, 9.893099 ], [ -14.337158, 10.022948 ], [ -14.589844, 10.217625 ], [ -14.699707, 10.660608 ], [ -14.842529, 10.887254 ], [ -15.139160, 11.049038 ], [ -14.688721, 11.533852 ], [ -14.392090, 11.512322 ], [ -14.128418, 11.684514 ], [ -13.908691, 11.684514 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.254128 ], [ -13.710938, 12.586732 ], [ -13.227539, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.205811, 12.468760 ], [ -11.667480, 12.393659 ], [ -11.524658, 12.447305 ], [ -11.458740, 12.082296 ], [ -11.304932, 12.082296 ], [ -11.041260, 12.221918 ], [ -10.876465, 12.178965 ], [ -10.601807, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.898682, 12.060809 ], [ -9.569092, 12.200442 ], [ -9.338379, 12.340002 ], [ -9.129639, 12.318536 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.382568, 11.393879 ], [ -8.591309, 11.146066 ], [ -8.624268, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.800933 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.239746, 10.131117 ], [ -8.316650, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.461506 ], [ -8.305664, 8.320212 ], [ -8.228760, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.448486, 7.689217 ], [ -8.723145, 7.721878 ], [ -8.931885, 7.318882 ], [ -9.217529, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.548430 ], [ -10.019531, 8.428904 ], [ -10.239258, 8.407168 ], [ -10.513916, 8.352823 ], [ -10.502930, 8.722218 ], [ -10.656738, 8.982749 ], [ -10.623779, 9.275622 ], [ -10.843506, 9.698228 ], [ -11.118164, 10.055403 ], [ -11.920166, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.722168, 9.351513 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.503244 ], [ -14.084473, 9.893099 ], [ -14.337158, 10.022948 ], [ -14.589844, 10.217625 ], [ -14.699707, 10.660608 ], [ -14.842529, 10.887254 ], [ -15.139160, 11.049038 ], [ -14.688721, 11.533852 ], [ -14.392090, 11.512322 ], [ -14.128418, 11.684514 ], [ -13.908691, 11.684514 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.254128 ], [ -13.710938, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.966013 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ 0.000000, 21.800308 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.966013 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.878906, 13.475106 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.878906, 13.475106 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.217529, 7.318882 ], [ -8.931885, 7.318882 ], [ -8.723145, 7.721878 ], [ -8.448486, 7.689217 ], [ -8.492432, 7.406048 ], [ -8.393555, 6.915521 ], [ -8.613281, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.580566, 5.714380 ], [ -7.547607, 5.320705 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.839207 ], [ -9.920654, 5.594118 ], [ -10.766602, 6.151478 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.111795 ], [ -11.151123, 7.406048 ], [ -10.700684, 7.939556 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.548430 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.548430 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.217529, 7.318882 ], [ -8.931885, 7.318882 ], [ -8.723145, 7.721878 ], [ -8.448486, 7.689217 ], [ -8.492432, 7.406048 ], [ -8.393555, 6.915521 ], [ -8.613281, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.580566, 5.714380 ], [ -7.547607, 5.320705 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.839207 ], [ -9.920654, 5.594118 ], [ -10.766602, 6.151478 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.111795 ], [ -11.151123, 7.406048 ], [ -10.700684, 7.939556 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.548430 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.867403 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.867403 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.430122 ], [ 0.878906, 21.227942 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.430122 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.430122 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 13.475106 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.966013 ], [ 0.878906, 13.475106 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.966013 ], [ 0.878906, 13.475106 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.878906, 10.941192 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.878906, 10.941192 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.368958 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.941192 ], [ 0.878906, 10.368958 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.941192 ], [ 0.878906, 10.368958 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.941192 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.980713, 66.861082 ], [ -34.211426, 66.683436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.980713, 66.861082 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.980713, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.965346 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.965346 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.688955 ], [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.688955 ], [ 0.878906, 49.979488 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -6.899414, 40.313043 ], [ -8.931885, 40.313043 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -6.899414, 40.313043 ], [ -8.931885, 40.313043 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 0.878906, 42.730874 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -6.899414, 40.313043 ], [ -6.866455, 40.338170 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 0.878906, 42.730874 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -6.899414, 40.313043 ], [ -6.866455, 40.338170 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.815430, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.815430, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.555176, 66.160511 ], [ -23.763428, 66.160511 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -21.555176, 66.160511 ] ] ], [ [ [ -18.544922, 66.160511 ], [ -19.390869, 66.160511 ], [ -19.061279, 66.280118 ], [ -18.544922, 66.160511 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.622803, 66.160511 ], [ -17.303467, 66.160511 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.555176, 66.160511 ], [ -23.763428, 66.160511 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -18.544922, 66.160511 ], [ -19.390869, 66.160511 ], [ -19.061279, 66.280118 ], [ -18.544922, 66.160511 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.622803, 66.160511 ], [ -17.303467, 66.160511 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.767713 ], [ 45.878906, -79.335219 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.767713 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.767713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.442139, 0.878872 ], [ 40.979004, 0.878872 ], [ 40.979004, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.878872 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.442139, 0.878872 ], [ 40.979004, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 0.878872 ], [ 43.846436, 0.878872 ], [ 43.132324, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.846436, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 0.878872 ], [ 43.846436, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.448242, 0.878872 ], [ 14.150391, 0.878872 ], [ 13.842773, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.150391, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.448242, 0.878872 ], [ 14.150391, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.150391, 0.878872 ], [ 17.764893, 0.878872 ], [ 17.819824, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.764893, 0.878872 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.150391, 0.878872 ], [ 17.764893, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.878872 ], [ 29.992676, 0.878872 ], [ 29.871826, 0.604237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.992676, 0.878872 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.878872 ], [ 29.992676, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ] ] ], [ [ [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ] ], [ [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ] ], [ [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.827393, -25.839449 ], [ 31.981201, -26.283565 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ], [ 31.981201, -26.283565 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.970947, -28.950476 ], [ 29.322510, -29.248063 ], [ 29.014893, -29.735762 ], [ 28.839111, -30.069094 ], [ 28.289795, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.740479, -30.637912 ], [ 26.993408, -29.869229 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.844674 ], [ 28.531494, -28.642389 ], [ 28.970947, -28.950476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.531494, -28.642389 ], [ 28.970947, -28.950476 ], [ 29.322510, -29.248063 ], [ 29.014893, -29.735762 ], [ 28.839111, -30.069094 ], [ 28.289795, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.740479, -30.637912 ], [ 26.993408, -29.869229 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.844674 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -25.363882 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.781682 ], [ 45.878906, -25.363882 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.781682 ], [ 45.878906, -25.363882 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.781682 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.745117, 41.640078 ], [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.745117, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -0.878906, 10.962764 ], [ -0.878906, 15.029686 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -0.878906, 10.962764 ], [ -0.878906, 15.029686 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -0.878906, 5.123772 ], [ -0.878906, 10.962764 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -0.878906, 5.123772 ], [ -0.878906, 10.962764 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ] ] ], [ [ [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.205811, 41.640078 ], [ 16.018066, 41.640078 ], [ 15.886230, 41.541478 ] ] ], [ [ [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 16.018066, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.205811, 41.640078 ], [ 16.018066, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.500488, 41.640078 ], [ 20.456543, 41.516804 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.500488, 41.640078 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.500488, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.500488, 41.640078 ], [ 22.917480, 41.640078 ], [ 22.950439, 41.343825 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 41.640078 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.500488, 41.640078 ], [ 22.917480, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.103516, 41.640078 ], [ 26.103516, 41.335576 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 41.640078 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.103516, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.583252, 41.640078 ], [ 45.878906, 41.640078 ], [ 45.878906, 41.162114 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.583252, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.878906, 22.370396 ], [ -0.878906, 35.773258 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.878906, 22.370396 ], [ -0.878906, 35.773258 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ], [ 23.829346, 19.580493 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.853271, 23.412847 ], [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.700105 ], [ 15.270996, 7.427837 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.700105 ], [ 15.270996, 7.427837 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.543701, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.389893, 9.275622 ], [ 23.455811, 8.961045 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.830731 ], [ 25.114746, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.954827 ], [ 27.213135, 5.561315 ], [ 27.366943, 5.244128 ], [ 27.037354, 5.134715 ], [ 26.400146, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.125732, 4.937724 ], [ 24.796143, 4.904887 ], [ 24.400635, 5.112830 ], [ 23.291016, 4.620229 ], [ 22.840576, 4.718778 ], [ 22.697754, 4.642130 ], [ 22.401123, 4.039618 ], [ 21.654053, 4.225900 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.718778 ], [ 18.533936, 4.203986 ], [ 18.446045, 3.513421 ], [ 17.808838, 3.568248 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.206333 ], [ 16.007080, 2.273573 ], [ 15.897217, 2.558963 ], [ 15.853271, 3.019841 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.853293 ], [ 14.941406, 4.214943 ], [ 14.468994, 4.740675 ], [ 14.556885, 5.036227 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.765625, 6.413566 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.504089 ], [ 16.281738, 7.754537 ], [ 16.446533, 7.743651 ], [ 16.699219, 7.514981 ], [ 17.962646, 7.896030 ], [ 18.380127, 8.287599 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.993600 ], [ 19.083252, 9.080400 ], [ 20.050049, 9.015302 ], [ 20.994873, 9.481572 ], [ 21.719971, 10.574222 ], [ 22.225342, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.543701, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.389893, 9.275622 ], [ 23.455811, 8.961045 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.830731 ], [ 25.114746, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.954827 ], [ 27.213135, 5.561315 ], [ 27.366943, 5.244128 ], [ 27.037354, 5.134715 ], [ 26.400146, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.125732, 4.937724 ], [ 24.796143, 4.904887 ], [ 24.400635, 5.112830 ], [ 23.291016, 4.620229 ], [ 22.840576, 4.718778 ], [ 22.697754, 4.642130 ], [ 22.401123, 4.039618 ], [ 21.654053, 4.225900 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.718778 ], [ 18.533936, 4.203986 ], [ 18.446045, 3.513421 ], [ 17.808838, 3.568248 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.206333 ], [ 16.007080, 2.273573 ], [ 15.897217, 2.558963 ], [ 15.853271, 3.019841 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.853293 ], [ 14.941406, 4.214943 ], [ 14.468994, 4.740675 ], [ 14.556885, 5.036227 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.765625, 6.413566 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.504089 ], [ 16.281738, 7.754537 ], [ 16.446533, 7.743651 ], [ 16.699219, 7.514981 ], [ 17.962646, 7.896030 ], [ 18.380127, 8.287599 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.993600 ], [ 19.083252, 9.080400 ], [ 20.050049, 9.015302 ], [ 20.994873, 9.481572 ], [ 21.719971, 10.574222 ], [ 22.225342, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.103516, 41.640078 ], [ 26.455078, 41.640078 ], [ 26.597900, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ] ] ], [ [ [ 26.455078, 41.640078 ], [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.103516, 41.640078 ], [ 26.455078, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.673096, 35.021000 ], [ 33.519287, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.673096, 35.021000 ], [ 33.519287, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.519287, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.519287, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.156982, 41.640078 ], [ 36.156006, 41.640078 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.103027, 41.640078 ], [ 28.114014, 41.623655 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.156006, 41.640078 ], [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.156982, 41.640078 ], [ 36.156006, 41.640078 ] ] ], [ [ [ 28.103027, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.103027, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.773258 ], [ 45.878906, 34.912962 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 45.878906, 33.330528 ], [ 45.878906, 29.132970 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.773258 ], [ 45.878906, 34.912962 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 45.878906, 33.330528 ], [ 45.878906, 29.132970 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 32.870360 ], [ 35.694580, 32.722599 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ], [ 35.694580, 32.722599 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.386963, 31.494262 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.625321 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.178223, 32.537552 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.537552 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.386963, 31.494262 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.625321 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.178223, 32.537552 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.878872 ], [ 29.575195, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.878872 ], [ 29.575195, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.846605 ], [ 39.265137, 15.929638 ], [ 39.803467, 15.443091 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.769775, 12.458033 ], [ 42.341309, 12.543840 ], [ 42.000732, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.125922 ], [ 40.023193, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.743011 ], [ 38.507080, 14.509144 ], [ 37.902832, 14.966013 ], [ 37.584229, 14.221789 ], [ 36.419678, 14.424040 ], [ 36.320801, 14.827991 ], [ 36.749268, 16.299051 ], [ 36.848145, 16.962233 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.846605 ], [ 39.265137, 15.929638 ], [ 39.803467, 15.443091 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.769775, 12.458033 ], [ 42.341309, 12.543840 ], [ 42.000732, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.125922 ], [ 40.023193, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.743011 ], [ 38.507080, 14.509144 ], [ 37.902832, 14.966013 ], [ 37.584229, 14.221789 ], [ 36.419678, 14.424040 ], [ 36.320801, 14.827991 ], [ 36.749268, 16.299051 ], [ 36.848145, 16.962233 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.737061, 11.361568 ], [ 41.660156, 11.641476 ], [ 41.989746, 12.103781 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.737061, 11.361568 ], [ 41.660156, 11.641476 ], [ 41.989746, 12.103781 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.000977, -0.878872 ], [ 33.892822, -0.878872 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.000977, -0.878872 ], [ 33.892822, -0.878872 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.878906, 8.396300 ], [ 45.878906, 5.987607 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.878906, 8.396300 ], [ 45.878906, 5.987607 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.212441 ], [ 45.604248, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.121537 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.212441 ], [ 45.604248, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.121537 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 45.878906, 39.121537 ], [ 45.878906, 38.796908 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ], [ [ [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ] ] ], [ [ [ 45.878906, 39.732538 ], [ 45.604248, 39.901309 ], [ 45.878906, 40.212441 ], [ 45.878906, 39.732538 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 45.878906, 39.121537 ], [ 45.878906, 38.796908 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ], [ 45.878906, 40.229218 ] ] ], [ [ [ 45.878906, 40.212441 ], [ 45.878906, 39.732538 ], [ 45.604248, 39.901309 ], [ 45.878906, 40.212441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ] ] ], [ [ [ 45.878906, 33.330528 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ], [ 45.878906, 33.330528 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ] ] ], [ [ [ 45.878906, 34.912962 ], [ 45.878906, 33.330528 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.396300 ], [ 45.000000, 8.711359 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.923584, 10.022948 ], [ 42.550049, 10.574222 ], [ 42.769775, 10.930405 ], [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.396300 ], [ 45.000000, 8.711359 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.923584, 10.022948 ], [ 42.550049, 10.574222 ], [ 42.769775, 10.930405 ], [ 43.143311, 11.469258 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 2.317483 ], [ 45.560303, 2.054003 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.066650, -0.878872 ], [ 41.000977, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.878906, 5.987607 ], [ 45.878906, 2.317483 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.987607 ], [ 45.878906, 2.317483 ], [ 45.560303, 2.054003 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.066650, -0.878872 ], [ 41.000977, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.878906, 5.987607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.811035, -0.878872 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.811035, -0.878872 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 17.325439, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 17.325439, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -0.878872 ], [ 17.325439, -0.878872 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -0.878872 ], [ 17.325439, -0.878872 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.688955 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.688955 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.110840, 66.861082 ], [ 41.121826, 66.791909 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.110840, 66.861082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ], [ 15.380859, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.699463, 66.861082 ], [ 15.380859, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ] ] ], [ [ [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ] ] ], [ [ [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.699463, 66.861082 ], [ 23.554688, 66.861082 ], [ 23.554688, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.699463, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.790039, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.380502 ], [ 3.120117, 50.785102 ], [ 2.647705, 50.798991 ], [ 2.504883, 51.151786 ], [ 3.306885, 51.351201 ], [ 4.042969, 51.268789 ], [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.790039, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.380502 ], [ 3.120117, 50.785102 ], [ 2.647705, 50.798991 ], [ 2.504883, 51.151786 ], [ 3.306885, 51.351201 ], [ 4.042969, 51.268789 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.845164 ], [ 16.556396, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.314941, 45.736860 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.403076, 45.467836 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.019853 ], [ 13.798828, 46.513516 ], [ 14.622803, 46.437857 ], [ 15.128174, 46.664517 ], [ 16.007080, 46.687131 ], [ 16.193848, 46.852678 ], [ 16.369629, 46.845164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.852678 ], [ 16.369629, 46.845164 ], [ 16.556396, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.314941, 45.736860 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.403076, 45.467836 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.019853 ], [ 13.798828, 46.513516 ], [ 14.622803, 46.437857 ], [ 15.128174, 46.664517 ], [ 16.007080, 46.687131 ], [ 16.193848, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.777832, 40.313043 ], [ 8.382568, 40.313043 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.391113, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.864014, 40.446947 ], [ 16.776123, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.777832, 40.313043 ], [ 8.382568, 40.313043 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.391113, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.864014, 40.446947 ], [ 16.776123, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.708740, 47.886881 ], [ 22.093506, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.588623, 46.172223 ], [ 18.819580, 45.912944 ], [ 18.446045, 45.759859 ], [ 17.622070, 45.958788 ], [ 16.875000, 46.384833 ], [ 16.556396, 46.505954 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.852678 ], [ 16.523438, 47.502359 ], [ 16.336670, 47.717154 ], [ 16.896973, 47.717154 ], [ 16.973877, 48.129434 ], [ 17.479248, 47.872144 ], [ 17.852783, 47.761484 ], [ 18.687744, 47.886881 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.654541, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.334343 ], [ 20.467529, 48.567520 ], [ 20.797119, 48.625647 ], [ 21.862793, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.708740, 47.886881 ], [ 22.093506, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.588623, 46.172223 ], [ 18.819580, 45.912944 ], [ 18.446045, 45.759859 ], [ 17.622070, 45.958788 ], [ 16.875000, 46.384833 ], [ 16.556396, 46.505954 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.852678 ], [ 16.523438, 47.502359 ], [ 16.336670, 47.717154 ], [ 16.896973, 47.717154 ], [ 16.973877, 48.129434 ], [ 17.479248, 47.872144 ], [ 17.852783, 47.761484 ], [ 18.687744, 47.886881 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.654541, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.334343 ], [ 20.467529, 48.567520 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.852783, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.995361, 44.863656 ], [ 19.357910, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.572432 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.205176 ], [ 18.555908, 42.650122 ], [ 17.666016, 43.028745 ], [ 17.292480, 43.452919 ], [ 16.907959, 43.667872 ], [ 16.446533, 44.048116 ], [ 16.237793, 44.355278 ], [ 15.743408, 44.824708 ], [ 15.952148, 45.236218 ], [ 16.314697, 45.011419 ], [ 16.534424, 45.213004 ], [ 16.995850, 45.236218 ], [ 17.852783, 45.073521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.995850, 45.236218 ], [ 17.852783, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.995361, 44.863656 ], [ 19.357910, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.572432 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.205176 ], [ 18.555908, 42.650122 ], [ 17.666016, 43.028745 ], [ 17.292480, 43.452919 ], [ 16.907959, 43.667872 ], [ 16.446533, 44.048116 ], [ 16.237793, 44.355278 ], [ 15.743408, 44.824708 ], [ 15.952148, 45.236218 ], [ 16.314697, 45.011419 ], [ 16.534424, 45.213004 ], [ 16.995850, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.357138 ], [ 19.621582, 43.221190 ], [ 19.951172, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.061035, 42.593533 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.959490 ], [ 18.874512, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.698730, 43.205176 ], [ 19.028320, 43.436966 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.357138 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.357138 ], [ 19.621582, 43.221190 ], [ 19.951172, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.061035, 42.593533 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.959490 ], [ 18.874512, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.698730, 43.205176 ], [ 19.028320, 43.436966 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.950928, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.916206 ], [ 21.434326, 42.867912 ], [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.654053, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.346436, 42.212245 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ], [ 20.950928, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.950928, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.916206 ], [ 21.434326, 42.867912 ], [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.654053, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.346436, 42.212245 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.643311, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.643311, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.346436, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.346436, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.135742, 66.861082 ], [ 29.498291, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.135742, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.135742, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.450660 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.305160 ], [ 27.410889, 58.728302 ], [ 27.707520, 57.792089 ], [ 27.279053, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.850598 ], [ 25.158691, 57.973157 ], [ 24.312744, 57.797944 ], [ 24.422607, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.192812 ], [ 24.598389, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.938477, 59.450660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.450660 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.305160 ], [ 27.410889, 58.728302 ], [ 27.707520, 57.792089 ], [ 27.279053, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.850598 ], [ 25.158691, 57.973157 ], [ 24.312744, 57.797944 ], [ 24.422607, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.192812 ], [ 24.598389, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.795105 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.750732, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.783447, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.398682, 53.618579 ], [ 32.684326, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.300049, 53.074228 ], [ 31.530762, 52.742943 ], [ 31.783447, 52.106505 ], [ 30.926514, 52.045734 ], [ 30.618896, 51.828988 ], [ 30.552979, 51.323747 ], [ 30.146484, 51.419764 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.433464 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.597548 ], [ 26.334229, 51.835778 ], [ 25.323486, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.521729, 51.583897 ], [ 23.499756, 52.025459 ], [ 23.192139, 52.489470 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.521729, 53.474970 ], [ 23.477783, 53.917281 ], [ 24.444580, 53.910810 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.851315 ], [ 26.586914, 55.172594 ], [ 26.488037, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.795105 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.750732, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.783447, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.398682, 53.618579 ], [ 32.684326, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.300049, 53.074228 ], [ 31.530762, 52.742943 ], [ 31.783447, 52.106505 ], [ 30.926514, 52.045734 ], [ 30.618896, 51.828988 ], [ 30.552979, 51.323747 ], [ 30.146484, 51.419764 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.433464 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.597548 ], [ 26.334229, 51.835778 ], [ 25.323486, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.521729, 51.583897 ], [ 23.499756, 52.025459 ], [ 23.192139, 52.489470 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.521729, 53.474970 ], [ 23.477783, 53.917281 ], [ 24.444580, 53.910810 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.851315 ], [ 26.586914, 55.172594 ], [ 26.488037, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.916504, 48.129434 ], [ 27.224121, 47.827908 ], [ 27.542725, 47.405785 ], [ 28.125000, 46.815099 ], [ 28.157959, 46.377254 ], [ 28.048096, 45.951150 ], [ 28.223877, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.597168, 45.298075 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.553467, 43.707594 ], [ 27.960205, 43.818675 ], [ 27.235107, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.093018, 43.747289 ], [ 23.323975, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.467041, 44.410240 ], [ 22.697754, 44.582643 ], [ 22.456055, 44.707706 ], [ 22.137451, 44.480830 ], [ 21.555176, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.421588 ], [ 20.753174, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.093506, 47.672786 ], [ 22.708740, 47.886881 ], [ 23.137207, 48.100095 ], [ 23.752441, 47.989922 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.938721, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ], [ 26.916504, 48.129434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.129434 ], [ 27.224121, 47.827908 ], [ 27.542725, 47.405785 ], [ 28.125000, 46.815099 ], [ 28.157959, 46.377254 ], [ 28.048096, 45.951150 ], [ 28.223877, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.597168, 45.298075 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.553467, 43.707594 ], [ 27.960205, 43.818675 ], [ 27.235107, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.093018, 43.747289 ], [ 23.323975, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.467041, 44.410240 ], [ 22.697754, 44.582643 ], [ 22.456055, 44.707706 ], [ 22.137451, 44.480830 ], [ 21.555176, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.421588 ], [ 20.753174, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.093506, 47.672786 ], [ 22.708740, 47.886881 ], [ 23.137207, 48.100095 ], [ 23.752441, 47.989922 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.938721, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.663330, 48.122101 ], [ 29.113770, 47.850031 ], [ 29.047852, 47.517201 ], [ 29.410400, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.827881, 46.528635 ], [ 30.014648, 46.430285 ], [ 29.750977, 46.354511 ], [ 29.168701, 46.384833 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.445427 ], [ 28.927002, 46.263443 ], [ 28.652344, 45.943511 ], [ 28.476562, 45.598666 ], [ 28.223877, 45.490946 ], [ 28.048096, 45.951150 ], [ 28.157959, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.542725, 47.405785 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.129434 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.520752, 48.472921 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.472921 ], [ 28.256836, 48.158757 ], [ 28.663330, 48.122101 ], [ 29.113770, 47.850031 ], [ 29.047852, 47.517201 ], [ 29.410400, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.827881, 46.528635 ], [ 30.014648, 46.430285 ], [ 29.750977, 46.354511 ], [ 29.168701, 46.384833 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.445427 ], [ 28.927002, 46.263443 ], [ 28.652344, 45.943511 ], [ 28.476562, 45.598666 ], [ 28.223877, 45.490946 ], [ 28.048096, 45.951150 ], [ 28.157959, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.542725, 47.405785 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.129434 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.520752, 48.472921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.169922, 40.313043 ], [ 22.972412, 40.313043 ], [ 22.807617, 40.480381 ], [ 22.664795, 40.313043 ], [ 20.643311, 40.313043 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.169922, 40.313043 ], [ 22.972412, 40.313043 ], [ 22.807617, 40.480381 ], [ 22.664795, 40.313043 ], [ 20.643311, 40.313043 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 43.659668, 40.313043 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 43.659668, 40.313043 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.162114 ], [ 45.878906, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ], [ 45.878906, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.849854, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.353027, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.421143 ], [ 43.692627, 66.160511 ], [ 41.319580, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.011230, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 39.353027, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.849854, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.353027, 66.160511 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.011230, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.319580, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.692627, 66.160511 ], [ 41.319580, 66.160511 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.885254, 79.335219 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 19.885254, 79.335219 ], [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.885254, 79.335219 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.498291, 66.513260 ], [ 29.849854, 66.160511 ], [ 23.763428, 66.160511 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.498291, 66.513260 ], [ 29.849854, 66.160511 ], [ 23.763428, 66.160511 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.577145 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.473145, -66.861082 ], [ 87.747803, -66.513260 ] ] ], [ [ [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ] ] ], [ [ [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.473145, -66.861082 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.140790 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.140790 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.317871, 41.640078 ], [ 47.977295, 41.409776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.317871, 41.640078 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.317871, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ], [ 46.636963, 41.186922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.444678 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ] ] ], [ [ [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.376772 ], [ 44.417725, 38.281313 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.376772 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.376772 ] ] ], [ [ [ 44.121094, 39.444678 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.444678 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.966309, 29.983487 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 44.121094, 29.611670 ], [ 44.121094, 37.134045 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.966309, 29.983487 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 44.121094, 29.611670 ], [ 44.121094, 37.134045 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.037003 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.037003 ], [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.037003 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ] ] ], [ [ [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.953369, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ] ] ], [ [ [ 55.953369, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.953369, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 69.543457, 41.640078 ], [ 70.565186, 41.640078 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 60.040283, 41.640078 ], [ 66.588135, 41.640078 ], [ 66.708984, 41.170384 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.953369, 41.640078 ], [ 56.986084, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.565186, 41.640078 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 60.040283, 41.640078 ], [ 66.588135, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 69.543457, 41.640078 ], [ 70.565186, 41.640078 ] ] ], [ [ [ 56.986084, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.953369, 41.640078 ], [ 56.986084, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 70.565186, 41.640078 ], [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 70.565186, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 44.121094, 40.103286 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 44.121094, 40.103286 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.317871, 41.640078 ], [ 48.746338, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.219482, 41.640078 ], [ 46.889648, 41.640078 ], [ 47.373047, 41.219986 ] ] ], [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.746338, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.219482, 41.640078 ], [ 46.889648, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.317871, 41.640078 ], [ 48.746338, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.376772 ], [ 44.121094, 39.444678 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.376772 ], [ 44.121094, 39.444678 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.966309, 29.983487 ], [ 48.175049, 29.535230 ], [ 48.087158, 29.315141 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.526622 ], [ 47.449951, 29.008140 ], [ 46.560059, 29.104177 ], [ 47.296143, 30.059586 ], [ 47.966309, 29.983487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.296143, 30.059586 ], [ 47.966309, 29.983487 ], [ 48.175049, 29.535230 ], [ 48.087158, 29.315141 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.526622 ], [ 47.449951, 29.008140 ], [ 46.560059, 29.104177 ], [ 47.296143, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.424029 ], [ 44.121094, 29.611670 ], [ 44.703369, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.611670 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.424029 ], [ 44.121094, 29.611670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.580811, 25.809782 ], [ 51.602783, 25.224820 ], [ 51.383057, 24.637031 ], [ 51.108398, 24.557116 ], [ 50.800781, 24.756808 ], [ 50.734863, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.580811, 25.809782 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.580811, 25.809782 ], [ 51.602783, 25.224820 ], [ 51.383057, 24.637031 ], [ 51.108398, 24.557116 ], [ 50.800781, 24.756808 ], [ 50.734863, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.613770, 24.016362 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.613770, 24.016362 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.063232, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.040283, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ] ] ], [ [ [ 52.558594, 41.640078 ], [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.558594, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.040283, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.040283, 41.640078 ] ] ], [ [ [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.558594, 41.640078 ], [ 52.877197, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.778320, 17.350638 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 44.121094, 12.597455 ], [ 44.121094, 17.424029 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ], [ 52.778320, 17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.010190 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 44.121094, 12.597455 ], [ 44.121094, 17.424029 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.933105, 10.984335 ], [ 48.933105, 9.459899 ], [ 48.482666, 8.841651 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 45.000000, 8.711359 ], [ 44.121094, 9.037003 ], [ 44.121094, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.459899 ], [ 48.482666, 8.841651 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 45.000000, 8.711359 ], [ 44.121094, 9.037003 ], [ 44.121094, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 45.000000, 1.680667 ], [ 44.121094, 1.098565 ], [ 44.121094, 4.981505 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 45.000000, 1.680667 ], [ 44.121094, 1.098565 ], [ 44.121094, 4.981505 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 86.022949, 26.637639 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.101074, 30.192618 ], [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 86.022949, 26.637639 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.101074, 30.192618 ], [ 81.518555, 30.429730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 90.878906, 26.843677 ], [ 90.878906, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 90.878906, 26.843677 ], [ 90.878906, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.843677 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.843677 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 90.878906, 25.145285 ], [ 90.878906, 22.796439 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 90.878906, 25.145285 ], [ 90.878906, 22.796439 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 28.062286 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.340332, 66.670387 ], [ 47.713623, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ], [ 90.878906, 50.394512 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.394512 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ], [ 47.713623, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 42.609706 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 42.609706 ], [ 44.527588, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.059326, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.059326, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 74.652100, 40.313043 ], [ 72.059326, 40.313043 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 74.652100, 40.313043 ], [ 72.059326, 40.313043 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.317383, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.317383, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.543213, 40.313043 ], [ 69.114990, 40.313043 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.543213, 40.313043 ], [ 69.114990, 40.313043 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.000000, 47.776252 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 90.878906, 50.394512 ], [ 90.878906, 46.995241 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ] ] ], [ [ [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.626806 ], [ 90.878906, 45.367584 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.995241 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 90.878906, 50.394512 ], [ 90.878906, 46.995241 ] ] ], [ [ [ 90.878906, 46.626806 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.626806 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.626806 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.652100, 40.313043 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.626806 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.652100, 40.313043 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.875541 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.011685 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.674916 ], [ 90.878906, 66.160511 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 75.674916 ], [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.875541 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.011685 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.674916 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.918457, -66.861082 ], [ 110.225830, -66.696478 ] ] ], [ [ [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ] ] ], [ [ [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.918457, -66.861082 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.511475, 0.780005 ], [ 110.379639, 0.878872 ], [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.379639, 0.878872 ], [ 110.841064, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ] ] ], [ [ [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.377197, 0.878872 ], [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.718262, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.377197, 0.878872 ], [ 124.793701, 0.878872 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 118.718262, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.718262, 0.878872 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 135.878906, -14.051331 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.822823 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 135.878906, -14.051331 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.822823 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.990619 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.990619 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.990619 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.990619 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.121094, 22.044913 ], [ 89.121094, 26.145576 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.121094, 26.145576 ], [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.121094, 22.044913 ], [ 89.121094, 26.145576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.683350, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ] ] ], [ [ [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.144531, 41.640078 ], [ 128.199463, 41.467428 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 126.683350, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.683350, 41.640078 ] ] ], [ [ [ 128.144531, 41.640078 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.144531, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.986816, 7.917793 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.986816, 7.917793 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.556396, 22.228090 ], [ 107.039795, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.710205, 20.704739 ], [ 105.875244, 19.756364 ], [ 105.655518, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.324951, 13.432367 ], [ 109.193115, 11.673755 ], [ 108.358154, 11.016689 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.150146, 8.602747 ], [ 104.787598, 9.243093 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.194092, 10.898042 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.576907 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.211139 ], [ 107.556152, 15.209988 ], [ 107.303467, 15.919074 ], [ 106.545410, 16.604610 ], [ 105.084229, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.183350, 19.632240 ], [ 104.820557, 19.890723 ], [ 104.425049, 20.766387 ], [ 103.194580, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.161865, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.502197, 22.705255 ], [ 104.468994, 22.826820 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.556396, 22.228090 ], [ 107.039795, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.710205, 20.704739 ], [ 105.875244, 19.756364 ], [ 105.655518, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.324951, 13.432367 ], [ 109.193115, 11.673755 ], [ 108.358154, 11.016689 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.150146, 8.602747 ], [ 104.787598, 9.243093 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.194092, 10.898042 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.576907 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.211139 ], [ 107.556152, 15.209988 ], [ 107.303467, 15.919074 ], [ 106.545410, 16.604610 ], [ 105.084229, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.183350, 19.632240 ], [ 104.820557, 19.890723 ], [ 104.425049, 20.766387 ], [ 103.194580, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.161865, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.502197, 22.705255 ], [ 104.468994, 22.826820 ], [ 105.325928, 23.352343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ] ] ], [ [ [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.144531, 41.640078 ], [ 129.693604, 41.640078 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.683350, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.693604, 41.640078 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.683350, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.144531, 41.640078 ], [ 129.693604, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.439974 ], [ 129.451904, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.177490, 34.894942 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.551514, 35.692995 ], [ 126.112061, 36.730080 ], [ 126.859131, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.848833 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.264063 ], [ 127.770996, 38.307181 ], [ 128.199463, 38.376115 ], [ 128.342285, 38.616870 ], [ 129.210205, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.210205, 37.439974 ], [ 129.451904, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.177490, 34.894942 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.551514, 35.692995 ], [ 126.112061, 36.730080 ], [ 126.859131, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.848833 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.264063 ], [ 127.770996, 38.307181 ], [ 128.199463, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ] ] ], [ [ [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ] ] ], [ [ [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.324501 ], [ 114.862061, 4.357366 ], [ 114.653320, 4.017699 ], [ 114.202881, 4.532618 ], [ 114.598389, 4.904887 ], [ 115.444336, 5.451959 ], [ 115.345459, 4.324501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.451959 ], [ 115.345459, 4.324501 ], [ 114.862061, 4.357366 ], [ 114.653320, 4.017699 ], [ 114.202881, 4.532618 ], [ 114.598389, 4.904887 ], [ 115.444336, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.814209, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.882324, -0.878872 ], [ 123.332520, -0.615223 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.122559, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.313965, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.814209, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.122559, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.313965, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 123.288574, -0.878872 ], [ 121.882324, -0.878872 ], [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.315988 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.315988 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.738770, 40.313043 ], [ 122.025146, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.738770, 40.313043 ], [ 122.025146, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.781738, 40.313043 ], [ 124.738770, 40.313043 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.781738, 40.313043 ], [ 124.738770, 40.313043 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.986084, 79.335219 ], [ 102.216797, 79.335219 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 102.216797, 79.335219 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.986084, 79.335219 ], [ 102.216797, 79.335219 ] ] ], [ [ [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.361328, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.361328, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.966797, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 144.722900, -66.861082 ], [ 140.097656, -66.861082 ], [ 140.800781, -66.813547 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ] ] ], [ [ [ 144.371338, -66.835165 ], [ 144.722900, -66.861082 ], [ 140.097656, -66.861082 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.087581 ], [ 134.143066, -1.142502 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.217012 ], [ 134.121094, -6.107784 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.087581 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.087581 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.217012 ], [ 134.121094, -6.107784 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ] ] ], [ [ [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ] ] ], [ [ [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ] ] ], [ [ [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.454346, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.454102, -20.797201 ], [ 165.772705, -21.074249 ], [ 166.596680, -21.698265 ], [ 167.113037, -22.156883 ], [ 166.739502, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.465088, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.157715, -20.437308 ], [ 164.025879, -20.097206 ], [ 164.454346, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.454346, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.454102, -20.797201 ], [ 165.772705, -21.074249 ], [ 166.596680, -21.698265 ], [ 167.113037, -22.156883 ], [ 166.739502, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.465088, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.157715, -20.437308 ], [ 164.025879, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.640078 ], [ 171.749268, -41.640078 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.319824, -41.640078 ], [ 175.198975, -41.640078 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.640078 ], [ 171.749268, -41.640078 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.319824, -41.640078 ], [ 175.198975, -41.640078 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ] ] ], [ [ [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -162.306519, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ], [ [ [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ], [ [ [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ] ] ], [ [ [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ] ] ], [ [ [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.830811, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ] ] ], [ [ [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ] ] ], [ [ [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ] ] ], [ [ [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ] ] ], [ [ [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ] ] ], [ [ [ -112.500000, 78.559399 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ] ] ], [ [ [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -72.853361 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ] ] ], [ [ [ -89.560547, 14.376155 ], [ -89.560547, 14.301647 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.237762 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ], [ -89.560547, 14.301647 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ] ] ], [ [ [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ] ] ], [ [ [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.992089 ], [ -89.560547, 71.223149 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -89.560547, 72.993696 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.993696 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ] ] ], [ [ [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ] ] ], [ [ [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ] ] ], [ [ [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ] ] ], [ [ [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ] ] ], [ [ [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ] ] ], [ [ [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ] ] ], [ [ [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ] ] ], [ [ [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ] ] ], [ [ [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ] ] ], [ [ [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ] ] ], [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ] ] ], [ [ [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ] ] ], [ [ [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ] ] ], [ [ [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ] ] ], [ [ [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ] ] ], [ [ [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -55.531739 ], [ -67.939453, -55.528631 ], [ -67.928467, -55.528631 ], [ -67.939453, -55.531739 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -67.939453, -55.531739 ], [ -67.939453, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ] ] ], [ [ [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ] ] ], [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ] ] ], [ [ [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ] ] ], [ [ [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ] ] ], [ [ [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ] ] ], [ [ [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ] ] ], [ [ [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ] ] ], [ [ [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ] ] ], [ [ [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ] ] ], [ [ [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ] ] ], [ [ [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ] ] ], [ [ [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ], [ [ [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.068237, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ] ] ], [ [ [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ] ] ], [ [ [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ] ] ], [ [ [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ] ] ], [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ] ] ], [ [ [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ] ] ], [ [ [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ] ] ], [ [ [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ] ] ], [ [ [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ] ] ], [ [ [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ] ] ], [ [ [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ] ] ], [ [ [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ] ] ], [ [ [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ] ] ], [ [ [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ] ] ], [ [ [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ] ] ], [ [ [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 40.984497, -0.439449 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ] ] ], [ [ [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.061761 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.934245 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.061761 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.934245 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.012939, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ], [ [ [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ] ] ], [ [ [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ] ] ], [ [ [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ] ] ], [ [ [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ] ] ], [ [ [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ] ] ], [ [ [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ] ] ], [ [ [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ], [ [ [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ] ] ], [ [ [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ] ] ], [ [ [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ] ] ], [ [ [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ] ] ], [ [ [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ] ] ], [ [ [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ] ] ], [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ] ] ], [ [ [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ] ] ], [ [ [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ] ] ], [ [ [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ] ] ], [ [ [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ] ] ], [ [ [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ] ] ], [ [ [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ] ] ], [ [ [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ] ] ], [ [ [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ] ] ], [ [ [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ] ] ], [ [ [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ] ] ], [ [ [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.012085, 21.534847 ], [ 102.815552, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.012085, 21.534847 ], [ 102.815552, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ] ] ], [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ] ] ], [ [ [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ] ] ], [ [ [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ] ] ], [ [ [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ] ] ], [ [ [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ] ] ], [ [ [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ] ] ], [ [ [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ] ] ], [ [ [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ] ] ], [ [ [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ] ] ], [ [ [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ] ] ], [ [ [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ] ] ], [ [ [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ] ] ], [ [ [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ] ] ], [ [ [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ] ] ], [ [ [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ] ] ], [ [ [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ] ] ], [ [ [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ] ] ], [ [ [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ] ] ], [ [ [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ] ] ], [ [ [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ] ] ], [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ] ] ], [ [ [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } ] } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json index d93de74..b276f06 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json @@ -12,4011 +12,4011 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -69.257812, 47.457809 ], [ -70.664062, 45.460131 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -82.705078, 41.705729 ], [ -83.144531, 42.098222 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -91.669922, 48.166085 ], [ -94.394531, 48.690960 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.527344, 59.800634 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -141.064453, 60.326948 ], [ -141.064453, 69.718107 ], [ -136.582031, 68.911005 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -117.685547, 69.037142 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.171875, 68.815927 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.306641, 69.099940 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.496040 ], [ -89.296875, 69.287257 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -76.552734, 56.559482 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -59.589844, 55.229023 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -60.117188, 50.289339 ], [ -66.445312, 50.233152 ], [ -68.554688, 49.095452 ], [ -71.103516, 46.920255 ], [ -66.621094, 49.152970 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -62.050781, 46.498392 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -54.228516, 46.860191 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -125.771484, 50.345460 ], [ -123.574219, 48.516604 ], [ -125.683594, 48.864715 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.408203, 50.792047 ], [ -125.771484, 50.345460 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.152970 ], [ -64.599609, 49.894634 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -133.066406, 53.435719 ], [ -133.242188, 54.213861 ], [ -131.835938, 54.162434 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -79.980469, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -68.818359, 63.782486 ], [ -66.181641, 61.938950 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -105.996094, 69.193800 ], [ -109.072266, 68.784144 ], [ -113.378906, 68.560384 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -115.576172, 73.478485 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 73.453473 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -88.154297, 74.402163 ], [ -92.460938, 74.844929 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -93.691406, 74.982183 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.867188, 77.523122 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.701172, 78.887002 ], [ -96.767578, 78.767792 ] ] ], [ [ [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -100.898438, 78.801980 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -111.533203, 78.853070 ], [ -109.687500, 78.612665 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.496040 ], [ -89.296875, 69.287257 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -76.552734, 56.559482 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -59.589844, 55.229023 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -60.117188, 50.289339 ], [ -66.445312, 50.233152 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -69.257812, 47.457809 ], [ -70.664062, 45.460131 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -82.705078, 41.705729 ], [ -83.144531, 42.098222 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -91.669922, 48.166085 ], [ -94.394531, 48.690960 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.527344, 59.800634 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -141.064453, 60.326948 ], [ -141.064453, 69.718107 ], [ -136.582031, 68.911005 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -117.685547, 69.037142 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.171875, 68.815927 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.306641, 69.099940 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ] ] ], [ [ [ -55.458984, 51.618017 ], [ -56.865234, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -54.228516, 46.860191 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.458984, 51.618017 ] ] ], [ [ [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ], [ -62.050781, 46.498392 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.072266, 47.040182 ] ] ], [ [ [ -128.408203, 50.792047 ], [ -125.771484, 50.345460 ], [ -123.574219, 48.516604 ], [ -125.683594, 48.864715 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.408203, 50.792047 ] ] ], [ [ [ -64.599609, 49.894634 ], [ -62.929688, 49.724479 ], [ -61.875000, 49.152970 ], [ -64.599609, 49.894634 ] ] ], [ [ [ -133.242188, 54.213861 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -133.066406, 53.435719 ], [ -133.242188, 54.213861 ] ] ], [ [ [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.554498 ], [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -68.818359, 63.782486 ], [ -66.181641, 61.938950 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ] ] ], [ [ [ -79.980469, 62.390369 ], [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -79.980469, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.261719, 70.170201 ] ] ], [ [ [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -105.996094, 69.193800 ], [ -109.072266, 68.784144 ], [ -113.378906, 68.560384 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -115.576172, 73.478485 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 73.453473 ], [ -94.570312, 74.140084 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -105.292969, 73.652545 ] ] ], [ [ [ -80.859375, 73.701948 ], [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -88.154297, 74.402163 ], [ -92.460938, 74.844929 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ -94.921875, 75.650431 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ], [ -93.867188, 77.523122 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ] ] ], [ [ [ -98.701172, 78.887002 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.701172, 78.887002 ] ] ], [ [ [ -105.556641, 79.302640 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ] ] ], [ [ [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -111.533203, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -156.005859, 19.062118 ], [ -155.917969, 20.303418 ], [ -154.863281, 19.559790 ] ] ], [ [ [ -156.093750, 20.715015 ], [ -156.796875, 20.961440 ], [ -156.269531, 20.961440 ], [ -156.093750, 20.715015 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ] ] ], [ [ [ -159.345703, 22.024546 ], [ -159.873047, 22.105999 ], [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ] ] ], [ [ [ -94.394531, 48.690960 ], [ -91.669922, 48.166085 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.199219, 46.558860 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -83.144531, 42.098222 ], [ -82.705078, 41.705729 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -70.664062, 45.460131 ], [ -69.257812, 47.457809 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -66.972656, 44.840291 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.358544 ], [ -70.048828, 41.640078 ], [ -73.740234, 40.979898 ], [ -71.982422, 40.979898 ], [ -74.003906, 40.780541 ], [ -74.970703, 38.959409 ], [ -75.585938, 39.504041 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.996163 ], [ -76.376953, 39.164141 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -75.761719, 35.603719 ], [ -81.386719, 31.503629 ], [ -81.386719, 30.069094 ], [ -80.068359, 26.902477 ], [ -80.683594, 25.085599 ], [ -82.265625, 26.745610 ], [ -82.705078, 28.613459 ], [ -83.759766, 29.993002 ], [ -85.166016, 29.688053 ], [ -86.484375, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.228890 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -97.207031, 27.839076 ], [ -97.207031, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -100.986328, 29.382175 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -106.523438, 31.802893 ], [ -111.093750, 31.353637 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -118.564453, 34.089061 ], [ -120.673828, 34.669359 ], [ -123.750000, 38.959409 ], [ -124.453125, 40.380028 ], [ -124.541016, 42.811522 ], [ -123.925781, 45.583290 ], [ -124.716797, 48.224673 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -94.833984, 49.439557 ], [ -94.394531, 48.690960 ] ] ], [ [ [ -161.982422, 58.676938 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.619141, 63.154355 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -168.134766, 65.694476 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -135.527344, 59.800634 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -130.605469, 54.826008 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -151.787109, 59.175928 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -158.466797, 56.022948 ], [ -164.794922, 54.418930 ], [ -158.730469, 57.040730 ], [ -157.763672, 57.610107 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.631217 ], [ -160.400391, 59.085739 ], [ -161.982422, 58.676938 ] ] ], [ [ [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ] ] ], [ [ [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ] ] ], [ [ [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.738281, 63.821288 ], [ -168.837891, 63.194018 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.917969, 20.303418 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -156.005859, 19.062118 ], [ -155.917969, 20.303418 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.093750, 20.715015 ], [ -156.796875, 20.961440 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ] ] ], [ [ [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ], [ -159.873047, 22.105999 ], [ -159.433594, 22.268764 ] ] ], [ [ [ -94.833984, 49.439557 ], [ -94.394531, 48.690960 ], [ -91.669922, 48.166085 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.199219, 46.558860 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -83.144531, 42.098222 ], [ -82.705078, 41.705729 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -70.664062, 45.460131 ], [ -69.257812, 47.457809 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -66.972656, 44.840291 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.358544 ], [ -70.048828, 41.640078 ], [ -73.740234, 40.979898 ], [ -71.982422, 40.979898 ], [ -74.003906, 40.780541 ], [ -74.970703, 38.959409 ], [ -75.585938, 39.504041 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.996163 ], [ -76.376953, 39.164141 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -75.761719, 35.603719 ], [ -81.386719, 31.503629 ], [ -81.386719, 30.069094 ], [ -80.068359, 26.902477 ], [ -80.683594, 25.085599 ], [ -82.265625, 26.745610 ], [ -82.705078, 28.613459 ], [ -83.759766, 29.993002 ], [ -85.166016, 29.688053 ], [ -86.484375, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.228890 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -97.207031, 27.839076 ], [ -97.207031, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -100.986328, 29.382175 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -106.523438, 31.802893 ], [ -111.093750, 31.353637 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -118.564453, 34.089061 ], [ -120.673828, 34.669359 ], [ -123.750000, 38.959409 ], [ -124.453125, 40.380028 ], [ -124.541016, 42.811522 ], [ -123.925781, 45.583290 ], [ -124.716797, 48.224673 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -94.833984, 49.439557 ] ] ], [ [ [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -135.527344, 59.800634 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -130.605469, 54.826008 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -151.787109, 59.175928 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -158.466797, 56.022948 ], [ -164.794922, 54.418930 ], [ -158.730469, 57.040730 ], [ -157.763672, 57.610107 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.585436 ], [ -160.400391, 59.085739 ], [ -161.982422, 58.676938 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.619141, 63.154355 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -168.134766, 65.694476 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ] ] ], [ [ [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ] ] ], [ [ [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -165.761719, 60.326948 ] ] ], [ [ [ -171.738281, 63.821288 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.738281, 63.821288 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.093750, 31.353637 ], [ -106.523438, 31.802893 ], [ -103.974609, 29.305561 ], [ -103.183594, 28.998532 ], [ -102.480469, 29.764377 ], [ -100.986328, 29.382175 ], [ -99.052734, 26.431228 ], [ -97.207031, 25.878994 ], [ -97.734375, 21.943046 ], [ -95.976562, 18.895893 ], [ -94.482422, 18.145852 ], [ -90.791016, 19.311143 ], [ -90.351562, 21.043491 ], [ -86.835938, 21.371244 ], [ -87.890625, 18.312811 ], [ -91.054688, 17.895114 ], [ -91.054688, 17.308688 ], [ -91.494141, 17.308688 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -92.285156, 14.604847 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -96.591797, 15.707663 ], [ -103.535156, 18.312811 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.292969, 21.453069 ], [ -106.083984, 22.836946 ], [ -112.236328, 28.998532 ], [ -113.203125, 31.203405 ], [ -114.785156, 31.802893 ], [ -114.697266, 30.221102 ], [ -111.621094, 26.667096 ], [ -110.742188, 24.367114 ], [ -109.423828, 23.402765 ], [ -110.039062, 22.836946 ], [ -112.236328, 24.766785 ], [ -112.324219, 26.037042 ], [ -115.136719, 27.761330 ], [ -114.169922, 28.613459 ], [ -115.576172, 29.611670 ], [ -117.158203, 32.546813 ], [ -114.785156, 32.768800 ], [ -111.093750, 31.353637 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.785156, 32.768800 ], [ -111.093750, 31.353637 ], [ -106.523438, 31.802893 ], [ -103.974609, 29.305561 ], [ -103.183594, 28.998532 ], [ -102.480469, 29.764377 ], [ -100.986328, 29.382175 ], [ -99.052734, 26.431228 ], [ -97.207031, 25.878994 ], [ -97.734375, 21.943046 ], [ -95.976562, 18.895893 ], [ -94.482422, 18.145852 ], [ -90.791016, 19.311143 ], [ -90.351562, 21.043491 ], [ -86.835938, 21.371244 ], [ -87.890625, 18.312811 ], [ -91.054688, 17.895114 ], [ -91.054688, 17.308688 ], [ -91.494141, 17.308688 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -92.285156, 14.604847 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -96.591797, 15.707663 ], [ -103.535156, 18.312811 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.292969, 21.453069 ], [ -106.083984, 22.836946 ], [ -112.236328, 28.998532 ], [ -113.203125, 31.203405 ], [ -114.785156, 31.802893 ], [ -114.697266, 30.221102 ], [ -111.621094, 26.667096 ], [ -110.742188, 24.367114 ], [ -109.423828, 23.402765 ], [ -110.039062, 22.836946 ], [ -112.236328, 24.766785 ], [ -112.324219, 26.037042 ], [ -115.136719, 27.761330 ], [ -114.169922, 28.613459 ], [ -115.576172, 29.611670 ], [ -117.158203, 32.546813 ], [ -114.785156, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.208984, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.792254 ], [ -90.175781, 13.752725 ], [ -92.285156, 14.604847 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -91.494141, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.895114 ], [ -89.208984, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.054688, 17.895114 ], [ -89.208984, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.792254 ], [ -90.175781, 13.752725 ], [ -92.285156, 14.604847 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -91.494141, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.895114 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -27.773438, 68.496040 ], [ -31.816406, 68.138852 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -51.679688, 63.665760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -50.888672, 69.930300 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.404297, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -27.773438, 68.496040 ], [ -31.816406, 68.138852 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -51.679688, 63.665760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -50.888672, 69.930300 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.404297, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.607422, 23.805450 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ], [ -77.607422, 23.805450 ] ] ], [ [ [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ] ] ], [ [ [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.958984, 25.244696 ], [ -77.607422, 23.805450 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ] ] ], [ [ [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.871094, 27.059126 ] ] ], [ [ [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.208984, 17.811456 ], [ -88.154297, 18.396230 ], [ -88.945312, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.154297, 18.396230 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.208984, 17.811456 ], [ -88.154297, 18.396230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.890625, 13.923404 ], [ -87.802734, 13.410994 ], [ -90.175781, 13.752725 ], [ -89.384766, 14.434680 ], [ -87.890625, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.410994 ], [ -90.175781, 13.752725 ], [ -89.384766, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.232422, 15.029686 ], [ -84.990234, 14.859850 ], [ -87.363281, 13.068777 ], [ -87.890625, 13.923404 ], [ -89.384766, 14.434680 ], [ -88.242188, 15.792254 ], [ -84.990234, 16.045813 ], [ -83.232422, 15.029686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 16.045813 ], [ -83.232422, 15.029686 ], [ -84.990234, 14.859850 ], [ -87.363281, 13.068777 ], [ -87.890625, 13.923404 ], [ -89.384766, 14.434680 ], [ -88.242188, 15.792254 ], [ -84.990234, 16.045813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.671875, 11.005904 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -84.990234, 14.859850 ], [ -83.232422, 15.029686 ], [ -83.671875, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.232422, 15.029686 ], [ -83.671875, 11.005904 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -84.990234, 14.859850 ], [ -83.232422, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.398438, 22.512557 ], [ -74.179688, 20.303418 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -78.222656, 20.797201 ], [ -78.750000, 21.616579 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -84.990234, 21.943046 ], [ -82.353516, 23.241346 ], [ -78.398438, 22.512557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.353516, 23.241346 ], [ -78.398438, 22.512557 ], [ -74.179688, 20.303418 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -78.222656, 20.797201 ], [ -78.750000, 21.616579 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -84.990234, 21.943046 ], [ -82.353516, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.617188, 9.622414 ], [ -82.968750, 8.233237 ], [ -84.990234, 10.141932 ], [ -85.166016, 9.622414 ], [ -85.693359, 9.968851 ], [ -85.957031, 10.919618 ], [ -83.671875, 11.005904 ], [ -82.617188, 9.622414 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.671875, 11.005904 ], [ -82.617188, 9.622414 ], [ -82.968750, 8.233237 ], [ -84.990234, 10.141932 ], [ -85.166016, 9.622414 ], [ -85.693359, 9.968851 ], [ -85.957031, 10.919618 ], [ -83.671875, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.134766, 9.275622 ], [ -77.255859, 7.972198 ], [ -77.958984, 7.275292 ], [ -78.222656, 8.320212 ], [ -79.189453, 9.015302 ], [ -80.419922, 8.320212 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.146243 ], [ -82.968750, 9.535749 ], [ -81.474609, 8.841651 ], [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ], [ -77.255859, 7.972198 ], [ -77.958984, 7.275292 ], [ -78.222656, 8.320212 ], [ -79.189453, 9.015302 ], [ -80.419922, 8.320212 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.146243 ], [ -82.968750, 9.535749 ], [ -81.474609, 8.841651 ], [ -79.628906, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.201172, 17.895114 ], [ -77.255859, 17.727759 ], [ -78.398438, 18.229351 ], [ -77.607422, 18.562947 ], [ -76.201172, 17.895114 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.607422, 18.562947 ], [ -76.201172, 17.895114 ], [ -77.255859, 17.727759 ], [ -78.398438, 18.229351 ], [ -77.607422, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.725342 ], [ -71.718750, 18.062312 ], [ -74.531250, 18.396230 ], [ -72.421875, 18.729502 ], [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ], [ -71.718750, 18.062312 ], [ -74.531250, 18.396230 ], [ -72.421875, 18.729502 ], [ -73.212891, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.455078, 17.644022 ], [ -71.982422, 18.646245 ], [ -71.718750, 19.725342 ], [ -69.960938, 19.725342 ], [ -68.378906, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 19.725342 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.455078, 17.644022 ], [ -71.982422, 18.646245 ], [ -71.718750, 19.725342 ], [ -69.960938, 19.725342 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.367188, 11.781325 ], [ -72.949219, 10.487812 ], [ -73.388672, 9.188870 ], [ -72.861328, 9.102097 ], [ -71.982422, 7.013668 ], [ -70.136719, 7.013668 ], [ -69.433594, 6.140555 ], [ -67.412109, 6.140555 ], [ -67.851562, 4.565474 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.899153 ], [ -66.884766, 1.318243 ], [ -67.587891, 2.108899 ], [ -69.873047, 1.757537 ], [ -69.873047, 1.142502 ], [ -69.257812, 1.054628 ], [ -70.048828, 0.615223 ], [ -69.433594, -1.054628 ], [ -69.960938, -4.214943 ], [ -70.751953, -3.688855 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.196727 ], [ -73.125000, -2.284551 ], [ -73.740234, -1.230374 ], [ -75.410156, -0.087891 ], [ -77.431641, 0.439449 ], [ -79.013672, 1.757537 ], [ -77.167969, 3.864255 ], [ -77.783203, 7.710992 ], [ -77.255859, 7.972198 ], [ -77.431641, 8.754795 ], [ -75.761719, 9.449062 ], [ -74.970703, 11.092166 ], [ -73.476562, 11.264612 ], [ -71.455078, 12.382928 ], [ -71.367188, 11.781325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.455078, 12.382928 ], [ -71.367188, 11.781325 ], [ -72.949219, 10.487812 ], [ -73.388672, 9.188870 ], [ -72.861328, 9.102097 ], [ -71.982422, 7.013668 ], [ -70.136719, 7.013668 ], [ -69.433594, 6.140555 ], [ -67.412109, 6.140555 ], [ -67.851562, 4.565474 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.899153 ], [ -66.884766, 1.318243 ], [ -67.587891, 2.108899 ], [ -69.873047, 1.757537 ], [ -69.873047, 1.142502 ], [ -69.257812, 1.054628 ], [ -70.048828, 0.615223 ], [ -69.433594, -1.054628 ], [ -69.960938, -4.214943 ], [ -70.751953, -3.688855 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.196727 ], [ -73.125000, -2.284551 ], [ -73.740234, -1.230374 ], [ -75.410156, -0.087891 ], [ -77.431641, 0.439449 ], [ -79.013672, 1.757537 ], [ -77.167969, 3.864255 ], [ -77.783203, 7.710992 ], [ -77.255859, 7.972198 ], [ -77.431641, 8.754795 ], [ -75.761719, 9.449062 ], [ -74.970703, 11.092166 ], [ -73.476562, 11.264612 ], [ -71.455078, 12.382928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.654297, 18.229351 ], [ -67.236328, 17.978733 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ], [ -65.654297, 18.229351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.357422, 18.562947 ], [ -65.654297, 18.229351 ], [ -67.236328, 17.978733 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.718750, 9.102097 ], [ -71.103516, 9.882275 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -69.960938, 12.211180 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -59.765625, 8.407168 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -63.105469, 3.776559 ], [ -64.863281, 4.127285 ], [ -64.335938, 2.547988 ], [ -63.369141, 2.284551 ], [ -66.357422, 0.790990 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.412109, 6.140555 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -71.982422, 7.013668 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -72.949219, 10.487812 ], [ -71.982422, 11.264612 ], [ -71.718750, 9.102097 ] ] ], [ [ [ -71.982422, 11.436955 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.264612 ], [ -71.982422, 11.436955 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.211180 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -59.765625, 8.407168 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -63.105469, 3.776559 ], [ -64.863281, 4.127285 ], [ -64.335938, 2.547988 ], [ -63.369141, 2.284551 ], [ -66.357422, 0.790990 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.412109, 6.140555 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -71.982422, 7.013668 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -72.949219, 10.487812 ], [ -71.982422, 11.264612 ], [ -71.718750, 9.102097 ], [ -71.103516, 9.882275 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -69.960938, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.996094, 10.141932 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.216797, 6.053161 ], [ -58.095703, 4.127285 ], [ -56.601562, 1.933227 ], [ -58.623047, 1.318243 ], [ -59.677734, 1.845384 ], [ -60.029297, 2.811371 ], [ -59.589844, 4.039618 ], [ -60.029297, 5.090944 ], [ -61.435547, 5.965754 ], [ -59.765625, 8.407168 ], [ -57.216797, 6.053161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -57.216797, 6.053161 ], [ -58.095703, 4.127285 ], [ -56.601562, 1.933227 ], [ -58.623047, 1.318243 ], [ -59.677734, 1.845384 ], [ -60.029297, 2.811371 ], [ -59.589844, 4.039618 ], [ -60.029297, 5.090944 ], [ -61.435547, 5.965754 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -55.986328, 2.547988 ], [ -56.074219, 1.845384 ], [ -56.601562, 1.933227 ], [ -57.656250, 3.337954 ], [ -58.095703, 4.127285 ], [ -57.216797, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.216797, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -55.986328, 2.547988 ], [ -56.074219, 1.845384 ], [ -56.601562, 1.933227 ], [ -57.656250, 3.337954 ], [ -58.095703, 4.127285 ], [ -57.216797, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.646484, 54.110943 ], [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ], [ -7.646484, 54.110943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.646484, 55.178868 ], [ -7.646484, 54.110943 ], [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.130859, 57.562995 ], [ -2.021484, 57.704147 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -6.152344, 56.800878 ], [ -5.097656, 58.631217 ], [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ] ] ], [ [ [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ], [ -7.646484, 54.110943 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ], [ -2.021484, 57.704147 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -6.152344, 56.800878 ], [ -5.097656, 58.631217 ], [ -3.076172, 58.676938 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ], [ -7.646484, 54.110943 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -51.855469, 4.653080 ], [ -52.558594, 2.547988 ], [ -53.437500, 2.108899 ], [ -54.580078, 2.372369 ], [ -54.052734, 3.688855 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -51.855469, 4.653080 ] ] ], [ [ [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ] ] ], [ [ [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 8.085938, 49.037868 ], [ 7.382812, 47.635784 ], [ 6.679688, 47.576526 ], [ 5.976562, 46.739861 ], [ 5.976562, 46.316584 ], [ 6.416016, 46.437857 ], [ 6.767578, 46.012224 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 1.757812, 42.358544 ], [ -1.582031, 43.068888 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.515625, 50.401515 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -51.855469, 4.653080 ], [ -52.558594, 2.547988 ], [ -53.437500, 2.108899 ], [ -54.580078, 2.372369 ], [ -54.052734, 3.688855 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 9.316406, 43.068888 ] ] ], [ [ [ 2.460938, 51.179343 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 8.085938, 49.037868 ], [ 7.382812, 47.635784 ], [ 6.679688, 47.576526 ], [ 5.976562, 46.739861 ], [ 5.976562, 46.316584 ], [ 6.416016, 46.437857 ], [ 6.767578, 46.012224 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 1.757812, 42.358544 ], [ -1.582031, 43.068888 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 23.402765 ], [ -12.919922, 23.322080 ], [ -13.007812, 21.371244 ], [ -17.138672, 21.043491 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -13.974609, 23.725012 ], [ -12.568359, 24.846565 ], [ -12.041016, 25.720735 ], [ -11.953125, 23.402765 ] ] ], [ [ [ -11.425781, 26.902477 ], [ -8.876953, 27.137368 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.958045 ], [ -11.953125, 25.958045 ], [ -11.425781, 26.902477 ] ] ], [ [ [ -12.041016, 25.720735 ], [ -12.041016, 25.958045 ], [ -11.953125, 25.958045 ], [ -12.041016, 25.720735 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.041016, 25.799891 ], [ -11.953125, 23.402765 ], [ -12.919922, 23.322080 ], [ -13.007812, 21.371244 ], [ -17.138672, 21.043491 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -13.974609, 23.725012 ], [ -12.568359, 24.846565 ], [ -12.041016, 25.799891 ] ] ], [ [ [ -8.701172, 25.958045 ], [ -11.953125, 25.958045 ], [ -11.425781, 26.902477 ], [ -8.876953, 27.137368 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.958045 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 41.836828 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.442726 ], [ -7.558594, 39.639538 ], [ -7.031250, 38.134557 ], [ -7.910156, 36.879621 ], [ -8.964844, 36.879621 ], [ -8.876953, 38.272689 ], [ -9.580078, 38.754083 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.349609, 42.293564 ], [ -8.085938, 41.836828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.349609, 42.293564 ], [ -8.085938, 41.836828 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.442726 ], [ -7.558594, 39.639538 ], [ -7.031250, 38.134557 ], [ -7.910156, 36.879621 ], [ -8.964844, 36.879621 ], [ -8.876953, 38.272689 ], [ -9.580078, 38.754083 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.349609, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.933594, 43.452919 ], [ 0.263672, 42.617791 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 0.791016, 41.046217 ], [ -0.703125, 37.649034 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.449219, 35.960223 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.558594, 39.639538 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ], [ -1.933594, 43.452919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -1.933594, 43.452919 ], [ 0.263672, 42.617791 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 0.791016, 41.046217 ], [ -0.703125, 37.649034 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.449219, 35.960223 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.558594, 39.639538 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.658203, 35.389050 ], [ -2.197266, 35.173808 ], [ -1.318359, 32.324276 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -5.273438, 30.069094 ], [ -8.701172, 28.844674 ], [ -8.876953, 27.137368 ], [ -11.425781, 26.902477 ], [ -12.568359, 24.846565 ], [ -13.974609, 23.725012 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -14.501953, 26.273714 ], [ -9.580078, 29.993002 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.620870 ], [ -6.943359, 34.161818 ], [ -5.976562, 35.817813 ], [ -5.273438, 35.817813 ], [ -4.658203, 35.389050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.817813 ], [ -4.658203, 35.389050 ], [ -2.197266, 35.173808 ], [ -1.318359, 32.324276 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -5.273438, 30.069094 ], [ -8.701172, 28.844674 ], [ -8.876953, 27.137368 ], [ -11.425781, 26.902477 ], [ -12.568359, 24.846565 ], [ -13.974609, 23.725012 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -14.501953, 26.273714 ], [ -9.580078, 29.993002 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.620870 ], [ -6.943359, 34.161818 ], [ -5.976562, 35.817813 ], [ -5.273438, 35.817813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.216797, 14.689881 ], [ -11.601562, 12.468760 ], [ -16.699219, 12.468760 ], [ -16.875000, 13.154376 ], [ -13.886719, 13.581921 ], [ -16.787109, 13.667338 ], [ -17.666016, 14.774883 ], [ -16.171875, 16.467695 ], [ -14.589844, 16.636192 ], [ -12.216797, 14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -12.216797, 14.689881 ], [ -11.601562, 12.468760 ], [ -16.699219, 12.468760 ], [ -16.875000, 13.154376 ], [ -13.886719, 13.581921 ], [ -16.787109, 13.667338 ], [ -17.666016, 14.774883 ], [ -16.171875, 16.467695 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.886719, 13.581921 ], [ -14.326172, 13.325485 ], [ -16.875000, 13.154376 ], [ -15.468750, 13.923404 ], [ -13.886719, 13.581921 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 13.923404 ], [ -13.886719, 13.581921 ], [ -14.326172, 13.325485 ], [ -16.875000, 13.154376 ], [ -15.468750, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.798828, 11.867351 ], [ -15.205078, 11.092166 ], [ -16.699219, 12.468760 ], [ -13.710938, 12.640338 ], [ -13.798828, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.640338 ], [ -13.798828, 11.867351 ], [ -15.205078, 11.092166 ], [ -16.699219, 12.468760 ], [ -13.710938, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.195312, 11.867351 ], [ -9.140625, 12.382928 ], [ -8.085938, 10.228437 ], [ -7.910156, 8.581021 ], [ -8.525391, 7.710992 ], [ -9.228516, 7.362467 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.407168 ], [ -11.162109, 10.055403 ], [ -12.480469, 9.882275 ], [ -13.271484, 8.928487 ], [ -15.205078, 11.092166 ], [ -13.798828, 11.867351 ], [ -13.710938, 12.640338 ], [ -10.195312, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.640338 ], [ -10.195312, 11.867351 ], [ -9.140625, 12.382928 ], [ -8.085938, 10.228437 ], [ -7.910156, 8.581021 ], [ -8.525391, 7.710992 ], [ -9.228516, 7.362467 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.407168 ], [ -11.162109, 10.055403 ], [ -12.480469, 9.882275 ], [ -13.271484, 8.928487 ], [ -15.205078, 11.092166 ], [ -13.798828, 11.867351 ], [ -13.710938, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.283203, 8.407168 ], [ -11.513672, 6.839170 ], [ -13.007812, 7.885147 ], [ -13.271484, 8.928487 ], [ -11.953125, 10.055403 ], [ -11.162109, 10.055403 ], [ -10.283203, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.162109, 10.055403 ], [ -10.283203, 8.407168 ], [ -11.513672, 6.839170 ], [ -13.007812, 7.885147 ], [ -13.271484, 8.928487 ], [ -11.953125, 10.055403 ], [ -11.162109, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.005973 ], [ -6.503906, 25.005973 ], [ -5.361328, 16.214675 ], [ -5.625000, 15.538376 ], [ -11.689453, 15.453680 ], [ -12.216797, 14.689881 ], [ -14.589844, 16.636192 ], [ -16.523438, 16.214675 ], [ -16.347656, 20.138470 ], [ -17.138672, 21.043491 ], [ -13.007812, 21.371244 ], [ -12.919922, 23.322080 ], [ -11.953125, 23.402765 ], [ -12.041016, 25.958045 ], [ -8.701172, 25.958045 ], [ -8.701172, 27.449790 ], [ -5.009766, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.449790 ], [ -5.009766, 25.005973 ], [ -6.503906, 25.005973 ], [ -5.361328, 16.214675 ], [ -5.625000, 15.538376 ], [ -11.689453, 15.453680 ], [ -12.216797, 14.689881 ], [ -14.589844, 16.636192 ], [ -16.523438, 16.214675 ], [ -16.347656, 20.138470 ], [ -17.138672, 21.043491 ], [ -13.007812, 21.371244 ], [ -12.919922, 23.322080 ], [ -11.953125, 23.402765 ], [ -12.041016, 25.958045 ], [ -8.701172, 25.958045 ], [ -8.701172, 27.449790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.076172, 19.725342 ], [ 3.076172, 19.062118 ], [ 4.218750, 19.228177 ], [ 4.218750, 16.888660 ], [ 3.603516, 15.623037 ], [ -1.142578, 15.029686 ], [ -3.164062, 13.581921 ], [ -4.042969, 13.496473 ], [ -5.273438, 11.781325 ], [ -5.449219, 10.401378 ], [ -6.064453, 10.141932 ], [ -6.240234, 10.574222 ], [ -8.085938, 10.228437 ], [ -9.140625, 12.382928 ], [ -10.195312, 11.867351 ], [ -11.513672, 12.125264 ], [ -12.216797, 14.689881 ], [ -11.689453, 15.453680 ], [ -5.625000, 15.538376 ], [ -6.503906, 25.005973 ], [ -5.009766, 25.005973 ], [ 3.076172, 19.725342 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.005973 ], [ 3.076172, 19.725342 ], [ 3.076172, 19.062118 ], [ 4.218750, 19.228177 ], [ 4.218750, 16.888660 ], [ 3.603516, 15.623037 ], [ -1.142578, 15.029686 ], [ -3.164062, 13.581921 ], [ -4.042969, 13.496473 ], [ -5.273438, 11.781325 ], [ -5.449219, 10.401378 ], [ -6.064453, 10.141932 ], [ -6.240234, 10.574222 ], [ -8.085938, 10.228437 ], [ -9.140625, 12.382928 ], [ -10.195312, 11.867351 ], [ -11.513672, 12.125264 ], [ -12.216797, 14.689881 ], [ -11.689453, 15.453680 ], [ -5.625000, 15.538376 ], [ -6.503906, 25.005973 ], [ -5.009766, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 0.878906, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -4.833984, 9.882275 ], [ -5.449219, 10.401378 ], [ -5.273438, 11.781325 ], [ -4.042969, 13.496473 ], [ -3.164062, 13.581921 ], [ -1.142578, 15.029686 ], [ 0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.142578, 15.029686 ], [ 0.351562, 14.944785 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 0.878906, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -4.833984, 9.882275 ], [ -5.449219, 10.401378 ], [ -5.273438, 11.781325 ], [ -4.042969, 13.496473 ], [ -3.164062, 13.581921 ], [ -1.142578, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.228516, 7.362467 ], [ -8.525391, 7.710992 ], [ -8.613281, 6.489983 ], [ -7.646484, 5.790897 ], [ -7.734375, 4.390229 ], [ -11.513672, 6.839170 ], [ -10.283203, 8.407168 ], [ -9.755859, 8.581021 ], [ -9.228516, 7.362467 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.228516, 7.362467 ], [ -8.525391, 7.710992 ], [ -8.613281, 6.489983 ], [ -7.646484, 5.790897 ], [ -7.734375, 4.390229 ], [ -11.513672, 6.839170 ], [ -10.283203, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.394531, 9.622414 ], [ -2.900391, 9.709057 ], [ -2.636719, 8.233237 ], [ -3.251953, 6.315299 ], [ -2.900391, 5.003394 ], [ -4.658203, 5.178482 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.790897 ], [ -8.613281, 6.489983 ], [ -7.910156, 8.581021 ], [ -8.261719, 10.141932 ], [ -6.240234, 10.574222 ], [ -4.394531, 9.622414 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.574222 ], [ -4.394531, 9.622414 ], [ -2.900391, 9.709057 ], [ -2.636719, 8.233237 ], [ -3.251953, 6.315299 ], [ -2.900391, 5.003394 ], [ -4.658203, 5.178482 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.790897 ], [ -8.613281, 6.489983 ], [ -7.910156, 8.581021 ], [ -8.261719, 10.141932 ], [ -6.240234, 10.574222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.054688, 5.965754 ], [ -2.021484, 4.740675 ], [ -2.900391, 5.003394 ], [ -3.251953, 6.315299 ], [ -2.636719, 8.233237 ], [ -2.988281, 11.005904 ], [ 0.000000, 11.092166 ], [ 1.054688, 5.965754 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.092166 ], [ 1.054688, 5.965754 ], [ -2.021484, 4.740675 ], [ -2.900391, 5.003394 ], [ -3.251953, 6.315299 ], [ -2.636719, 8.233237 ], [ -2.988281, 11.005904 ], [ 0.000000, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.410156, -0.087891 ], [ -75.585938, -1.493971 ], [ -77.871094, -2.986927 ], [ -79.277344, -4.915833 ], [ -80.507812, -4.390229 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.947266, -1.054628 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ], [ -75.410156, -0.087891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.925781, 1.406109 ], [ -75.410156, -0.087891 ], [ -75.585938, -1.493971 ], [ -77.871094, -2.986927 ], [ -79.277344, -4.915833 ], [ -80.507812, -4.390229 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.947266, -1.054628 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125000, -2.284551 ], [ -70.839844, -2.196727 ], [ -70.048828, -2.723583 ], [ -70.751953, -3.688855 ], [ -69.960938, -4.214943 ], [ -72.949219, -5.266008 ], [ -73.125000, -6.577303 ], [ -74.003906, -7.449624 ], [ -73.300781, -9.449062 ], [ -72.246094, -9.968851 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -69.609375, -10.919618 ], [ -68.730469, -12.554564 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -70.400391, -18.312811 ], [ -76.025391, -14.604847 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -80.507812, -4.390229 ], [ -79.277344, -4.915833 ], [ -77.871094, -2.986927 ], [ -75.585938, -1.493971 ], [ -75.146484, 0.000000 ], [ -73.125000, -2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, 0.000000 ], [ -73.125000, -2.284551 ], [ -70.839844, -2.196727 ], [ -70.048828, -2.723583 ], [ -70.751953, -3.688855 ], [ -69.960938, -4.214943 ], [ -72.949219, -5.266008 ], [ -73.125000, -6.577303 ], [ -74.003906, -7.449624 ], [ -73.300781, -9.449062 ], [ -72.246094, -9.968851 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -69.609375, -10.919618 ], [ -68.730469, -12.554564 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -70.400391, -18.312811 ], [ -76.025391, -14.604847 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -80.507812, -4.390229 ], [ -79.277344, -4.915833 ], [ -77.871094, -2.986927 ], [ -75.585938, -1.493971 ], [ -75.146484, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.589701 ], [ -68.642578, -54.826008 ], [ -66.972656, -54.876607 ], [ -68.203125, -55.578345 ], [ -71.015625, -55.028022 ], [ -74.707031, -52.802761 ], [ -71.191406, -54.059388 ], [ -71.015625, -53.800651 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -68.466797, -19.394068 ], [ -68.818359, -20.303418 ], [ -68.291016, -21.453069 ], [ -67.851562, -22.836946 ], [ -67.060547, -22.917923 ], [ -67.412109, -23.966176 ], [ -68.466797, -24.447150 ], [ -68.378906, -26.824071 ], [ -69.697266, -28.459033 ], [ -70.576172, -31.353637 ], [ -69.873047, -34.161818 ], [ -70.400391, -35.960223 ], [ -71.191406, -36.597889 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -72.158203, -42.228517 ], [ -71.279297, -44.777936 ], [ -71.718750, -44.964798 ], [ -72.333984, -48.224673 ], [ -73.476562, -49.267805 ], [ -73.388672, -50.345460 ], [ -73.037109, -50.736455 ], [ -72.333984, -50.625073 ], [ -71.982422, -51.998410 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -74.970703, -52.214339 ], [ -75.673828, -48.632909 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.300781, -39.232253 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.455078, -32.398516 ], [ -71.542969, -28.844674 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.609375, -17.560247 ], [ -68.466797, -19.394068 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ], [ -68.642578, -54.826008 ], [ -66.972656, -54.876607 ], [ -68.203125, -55.578345 ], [ -71.015625, -55.028022 ], [ -74.707031, -52.802761 ], [ -71.191406, -54.059388 ], [ -71.015625, -53.800651 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -68.466797, -19.394068 ], [ -68.818359, -20.303418 ], [ -68.291016, -21.453069 ], [ -67.851562, -22.836946 ], [ -67.060547, -22.917923 ], [ -67.412109, -23.966176 ], [ -68.466797, -24.447150 ], [ -68.378906, -26.824071 ], [ -69.697266, -28.459033 ], [ -70.576172, -31.353637 ], [ -69.873047, -34.161818 ], [ -70.400391, -35.960223 ], [ -71.191406, -36.597889 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -72.158203, -42.228517 ], [ -71.279297, -44.777936 ], [ -71.718750, -44.964798 ], [ -72.333984, -48.224673 ], [ -73.476562, -49.267805 ], [ -73.388672, -50.345460 ], [ -73.037109, -50.736455 ], [ -72.333984, -50.625073 ], [ -71.982422, -51.998410 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -74.970703, -52.214339 ], [ -75.673828, -48.632909 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.300781, -39.232253 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.455078, -32.398516 ], [ -71.542969, -28.844674 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478516, -11.523088 ], [ -64.335938, -12.382928 ], [ -60.556641, -13.752725 ], [ -60.205078, -16.214675 ], [ -58.271484, -16.299051 ], [ -58.359375, -17.224758 ], [ -57.568359, -18.145852 ], [ -57.919922, -19.890723 ], [ -59.150391, -19.311143 ], [ -61.787109, -19.559790 ], [ -62.929688, -22.024546 ], [ -64.072266, -21.943046 ], [ -64.423828, -22.755921 ], [ -65.039062, -22.024546 ], [ -66.357422, -21.779905 ], [ -67.851562, -22.836946 ], [ -68.818359, -20.303418 ], [ -68.466797, -19.394068 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -68.730469, -12.554564 ], [ -69.609375, -10.919618 ], [ -68.291016, -11.005904 ], [ -66.708984, -9.882275 ], [ -65.390625, -9.709057 ], [ -65.478516, -11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.709057 ], [ -65.478516, -11.523088 ], [ -64.335938, -12.382928 ], [ -60.556641, -13.752725 ], [ -60.205078, -16.214675 ], [ -58.271484, -16.299051 ], [ -58.359375, -17.224758 ], [ -57.568359, -18.145852 ], [ -57.919922, -19.890723 ], [ -59.150391, -19.311143 ], [ -61.787109, -19.559790 ], [ -62.929688, -22.024546 ], [ -64.072266, -21.943046 ], [ -64.423828, -22.755921 ], [ -65.039062, -22.024546 ], [ -66.357422, -21.779905 ], [ -67.851562, -22.836946 ], [ -68.818359, -20.303418 ], [ -68.466797, -19.394068 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -68.730469, -12.554564 ], [ -69.609375, -10.919618 ], [ -68.291016, -11.005904 ], [ -66.708984, -9.882275 ], [ -65.390625, -9.709057 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.589844, 4.039618 ], [ -60.029297, 2.811371 ], [ -59.062500, 1.318243 ], [ -56.074219, 1.845384 ], [ -55.986328, 2.547988 ], [ -52.998047, 2.196727 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -39.990234, -2.811371 ], [ -37.265625, -4.740675 ], [ -35.683594, -5.090944 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -38.759766, -12.983148 ], [ -39.287109, -17.811456 ], [ -40.957031, -21.861499 ], [ -42.011719, -22.917923 ], [ -44.648438, -23.322080 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.955078, -28.613459 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.701172, -33.137551 ], [ -53.261719, -32.694866 ], [ -53.789062, -32.026706 ], [ -57.041016, -30.069094 ], [ -57.656250, -30.145127 ], [ -53.701172, -26.902477 ], [ -53.701172, -26.115986 ], [ -54.140625, -25.482951 ], [ -54.667969, -25.720735 ], [ -54.316406, -23.966176 ], [ -55.458984, -23.885838 ], [ -55.810547, -22.350076 ], [ -58.007812, -22.024546 ], [ -58.183594, -20.138470 ], [ -57.568359, -18.145852 ], [ -58.359375, -17.224758 ], [ -58.271484, -16.299051 ], [ -60.205078, -16.214675 ], [ -60.556641, -13.752725 ], [ -64.335938, -12.382928 ], [ -65.478516, -11.523088 ], [ -65.390625, -9.709057 ], [ -66.708984, -9.882275 ], [ -68.291016, -11.005904 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -72.246094, -9.968851 ], [ -73.300781, -9.449062 ], [ -74.003906, -7.449624 ], [ -73.125000, -6.577303 ], [ -72.949219, -5.266008 ], [ -69.960938, -4.214943 ], [ -69.433594, -1.054628 ], [ -70.048828, 0.615223 ], [ -69.257812, 1.054628 ], [ -69.873047, 1.142502 ], [ -69.873047, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.148438, 1.142502 ], [ -65.566406, 0.790990 ], [ -63.369141, 2.284551 ], [ -64.335938, 2.547988 ], [ -64.863281, 4.127285 ], [ -63.105469, 3.776559 ], [ -60.292969, 5.266008 ], [ -59.589844, 4.039618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.292969, 5.266008 ], [ -59.589844, 4.039618 ], [ -60.029297, 2.811371 ], [ -59.062500, 1.318243 ], [ -56.074219, 1.845384 ], [ -55.986328, 2.547988 ], [ -52.998047, 2.196727 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -39.990234, -2.811371 ], [ -37.265625, -4.740675 ], [ -35.683594, -5.090944 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -38.759766, -12.983148 ], [ -39.287109, -17.811456 ], [ -40.957031, -21.861499 ], [ -42.011719, -22.917923 ], [ -44.648438, -23.322080 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.955078, -28.613459 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.701172, -33.137551 ], [ -53.261719, -32.694866 ], [ -53.789062, -32.026706 ], [ -57.041016, -30.069094 ], [ -57.656250, -30.145127 ], [ -53.701172, -26.902477 ], [ -53.701172, -26.115986 ], [ -54.140625, -25.482951 ], [ -54.667969, -25.720735 ], [ -54.316406, -23.966176 ], [ -55.458984, -23.885838 ], [ -55.810547, -22.350076 ], [ -58.007812, -22.024546 ], [ -58.183594, -20.138470 ], [ -57.568359, -18.145852 ], [ -58.359375, -17.224758 ], [ -58.271484, -16.299051 ], [ -60.205078, -16.214675 ], [ -60.556641, -13.752725 ], [ -64.335938, -12.382928 ], [ -65.478516, -11.523088 ], [ -65.390625, -9.709057 ], [ -66.708984, -9.882275 ], [ -68.291016, -11.005904 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -72.246094, -9.968851 ], [ -73.300781, -9.449062 ], [ -74.003906, -7.449624 ], [ -73.125000, -6.577303 ], [ -72.949219, -5.266008 ], [ -69.960938, -4.214943 ], [ -69.433594, -1.054628 ], [ -70.048828, 0.615223 ], [ -69.257812, 1.054628 ], [ -69.873047, 1.142502 ], [ -69.873047, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.148438, 1.142502 ], [ -65.566406, 0.790990 ], [ -63.369141, 2.284551 ], [ -64.335938, 2.547988 ], [ -64.863281, 4.127285 ], [ -63.105469, 3.776559 ], [ -60.292969, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.183594, -19.808054 ], [ -58.007812, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.458984, -23.885838 ], [ -54.316406, -23.966176 ], [ -54.843750, -26.588527 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.832031, -25.085599 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -61.787109, -19.559790 ], [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ], [ -58.007812, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.458984, -23.885838 ], [ -54.316406, -23.966176 ], [ -54.843750, -26.588527 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.832031, -25.085599 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -61.787109, -19.559790 ], [ -59.150391, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.763672, -53.800651 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -68.642578, -54.826008 ], [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ] ] ], [ [ [ -65.039062, -22.024546 ], [ -64.423828, -22.755921 ], [ -64.072266, -21.943046 ], [ -62.929688, -22.024546 ], [ -60.908203, -23.805450 ], [ -57.832031, -25.085599 ], [ -58.623047, -27.059126 ], [ -55.722656, -27.371767 ], [ -54.140625, -25.482951 ], [ -53.701172, -26.902477 ], [ -57.656250, -30.145127 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -62.402344, -38.822591 ], [ -62.226562, -40.647304 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -65.214844, -43.452919 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -69.169922, -50.680797 ], [ -68.203125, -52.321911 ], [ -71.982422, -51.998410 ], [ -72.333984, -50.625073 ], [ -73.037109, -50.736455 ], [ -73.388672, -50.345460 ], [ -73.476562, -49.267805 ], [ -72.333984, -48.224673 ], [ -71.718750, -44.964798 ], [ -71.279297, -44.777936 ], [ -72.158203, -42.228517 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.191406, -36.597889 ], [ -70.400391, -35.960223 ], [ -69.873047, -34.161818 ], [ -70.576172, -31.353637 ], [ -70.048828, -29.305561 ], [ -68.378906, -26.824071 ], [ -68.466797, -24.447150 ], [ -67.412109, -23.966176 ], [ -67.148438, -22.674847 ], [ -66.357422, -21.779905 ], [ -65.039062, -22.024546 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -68.642578, -54.826008 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -66.357422, -21.779905 ], [ -65.039062, -22.024546 ], [ -64.423828, -22.755921 ], [ -64.072266, -21.943046 ], [ -62.929688, -22.024546 ], [ -60.908203, -23.805450 ], [ -57.832031, -25.085599 ], [ -58.623047, -27.059126 ], [ -55.722656, -27.371767 ], [ -54.140625, -25.482951 ], [ -53.701172, -26.902477 ], [ -57.656250, -30.145127 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -62.402344, -38.822591 ], [ -62.226562, -40.647304 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -65.214844, -43.452919 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -69.169922, -50.680797 ], [ -68.203125, -52.321911 ], [ -71.982422, -51.998410 ], [ -72.333984, -50.625073 ], [ -73.037109, -50.736455 ], [ -73.388672, -50.345460 ], [ -73.476562, -49.267805 ], [ -72.333984, -48.224673 ], [ -71.718750, -44.964798 ], [ -71.279297, -44.777936 ], [ -72.158203, -42.228517 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.191406, -36.597889 ], [ -70.400391, -35.960223 ], [ -69.873047, -34.161818 ], [ -70.576172, -31.353637 ], [ -70.048828, -29.305561 ], [ -68.378906, -26.824071 ], [ -68.466797, -24.447150 ], [ -67.412109, -23.966176 ], [ -67.148438, -22.674847 ], [ -66.357422, -21.779905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.789062, -32.026706 ], [ -53.261719, -32.694866 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -56.250000, -34.813803 ], [ -58.447266, -33.870416 ], [ -57.656250, -30.145127 ], [ -57.041016, -30.069094 ], [ -53.789062, -32.026706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.041016, -30.069094 ], [ -53.789062, -32.026706 ], [ -53.261719, -32.694866 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -56.250000, -34.813803 ], [ -58.447266, -33.870416 ], [ -57.656250, -30.145127 ], [ -57.041016, -30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -51.508742 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 73.828125, -69.869892 ], [ 77.607422, -69.442128 ], [ 79.101562, -68.301905 ], [ 82.001953, -67.339861 ], [ 86.748047, -67.135829 ], [ 87.978516, -66.196009 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 94.130859, -67.101656 ], [ 95.712891, -67.373698 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 106.171875, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 113.554688, -65.874725 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.293468 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 145.458984, -66.895596 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 161.542969, -70.554179 ], [ 167.255859, -70.815812 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.706049 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.524614 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -143.261719, -85.051129 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -155.390625, -79.055137 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.060547, -77.293202 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -141.679688, -75.073010 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -113.994141, -73.701948 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -107.578125, -75.163300 ], [ -104.941406, -74.936567 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.710938, -72.607120 ], [ -99.140625, -72.893802 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -81.474609, -73.849286 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -67.412109, -72.475276 ], [ -67.324219, -71.635993 ], [ -68.554688, -69.687618 ], [ -67.587891, -68.528235 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.666016, -65.476508 ], [ -62.138672, -66.160511 ], [ -63.808594, -66.478208 ], [ -65.742188, -67.941650 ], [ -64.863281, -68.656555 ], [ -63.281250, -69.224997 ], [ -61.523438, -71.074056 ], [ -60.732422, -73.150440 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -35.683594, -79.448477 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -22.500000, -76.100796 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -12.304688, -72.395706 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 6.240234, -70.436799 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 31.904297, -69.657086 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 41.923828, -68.592487 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 50.712891, -66.861082 ], [ 51.767578, -66.231457 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.984375, -67.373698 ], [ 68.818359, -67.908619 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 67.939453, -71.828840 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.417969, -80.012423 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -48.691406, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -66.357422, -80.253391 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ] ] ], [ [ [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ] ] ], [ [ [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ], [ -99.052734, -71.910888 ] ] ], [ [ [ -68.466797, -70.931004 ], [ -68.818359, -72.154890 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -72.158203, -71.187754 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ], [ -68.466797, -70.931004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.666016, -65.476508 ], [ -62.138672, -66.160511 ], [ -63.808594, -66.478208 ], [ -65.742188, -67.941650 ], [ -64.863281, -68.656555 ], [ -63.281250, -69.224997 ], [ -61.523438, -71.074056 ], [ -60.732422, -73.150440 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -35.683594, -79.448477 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -22.500000, -76.100796 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -12.304688, -72.395706 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 6.240234, -70.436799 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 31.904297, -69.657086 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 41.923828, -68.592487 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 50.712891, -66.861082 ], [ 51.767578, -66.231457 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.984375, -67.373698 ], [ 68.818359, -67.908619 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 73.828125, -69.869892 ], [ 77.607422, -69.442128 ], [ 79.101562, -68.301905 ], [ 82.001953, -67.339861 ], [ 86.748047, -67.135829 ], [ 87.978516, -66.196009 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 94.130859, -67.101656 ], [ 95.712891, -67.373698 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 106.171875, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 113.554688, -65.874725 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.293468 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 145.458984, -66.895596 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 161.542969, -70.554179 ], [ 167.255859, -70.815812 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.706049 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.532994 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -143.261719, -85.051129 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -155.390625, -79.055137 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.060547, -77.293202 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -141.679688, -75.073010 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -113.994141, -73.701948 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -107.578125, -75.163300 ], [ -104.941406, -74.936567 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.710938, -72.607120 ], [ -99.140625, -72.893802 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -81.474609, -73.849286 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -67.412109, -72.475276 ], [ -67.324219, -71.635993 ], [ -68.554688, -69.687618 ], [ -67.587891, -68.528235 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -57.832031, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.777344, -71.691293 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -68.466797, -70.931004 ], [ -68.818359, -72.154890 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -72.158203, -71.187754 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.417969, -80.012423 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -48.691406, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -66.357422, -80.253391 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 109.335938, 74.188052 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 179.296875, 62.995158 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 173.671875, 61.689872 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 140.009766, 48.458352 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.693359, 42.228517 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 135.000000, 48.516604 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 125.859375, 52.802761 ], [ 123.486328, 53.488046 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 51.998410 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 110.654297, 49.152970 ], [ 108.457031, 49.325122 ], [ 106.875000, 50.289339 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 92.197266, 50.847573 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 49.042969, 46.437857 ], [ 46.669922, 44.653024 ], [ 48.515625, 41.836828 ], [ 47.812500, 41.178654 ], [ 45.439453, 42.553080 ], [ 39.902344, 43.452919 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 39.726562, 47.931066 ], [ 39.990234, 49.610710 ], [ 35.332031, 50.625073 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 32.607422, 53.383328 ], [ 30.673828, 54.826008 ], [ 30.849609, 55.578345 ], [ 29.355469, 55.677584 ], [ 28.125000, 56.170023 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 73.916016, 66.791909 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ] ] ], [ [ [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ], [ 143.613281, 50.792047 ] ] ], [ [ [ 22.675781, 54.876607 ], [ 22.675781, 54.367759 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ], [ 22.675781, 54.876607 ] ] ], [ [ [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -174.990234, 67.238062 ] ] ], [ [ [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ -177.626953, 71.272595 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -179.912109, 71.580532 ], [ -177.626953, 71.272595 ] ] ], [ [ [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ] ] ], [ [ [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ] ] ], [ [ [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ] ] ], [ [ [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ], [ 105.292969, 78.716316 ] ] ], [ [ [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 109.335938, 74.188052 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 179.296875, 62.995158 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 173.671875, 61.689872 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 140.009766, 48.458352 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.693359, 42.228517 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 135.000000, 48.516604 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 125.859375, 52.802761 ], [ 123.486328, 53.488046 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 51.998410 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 110.654297, 49.152970 ], [ 108.457031, 49.325122 ], [ 106.875000, 50.289339 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 92.197266, 50.847573 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 49.042969, 46.437857 ], [ 46.669922, 44.653024 ], [ 48.515625, 41.836828 ], [ 47.812500, 41.178654 ], [ 45.439453, 42.553080 ], [ 39.902344, 43.452919 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 39.726562, 47.931066 ], [ 39.990234, 49.610710 ], [ 35.332031, 50.625073 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 32.607422, 53.383328 ], [ 30.673828, 54.826008 ], [ 30.849609, 55.578345 ], [ 29.355469, 55.677584 ], [ 28.125000, 56.170023 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 73.916016, 66.791909 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.181641, 55.229023 ], [ 22.675781, 54.876607 ], [ 22.675781, 54.367759 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.912109, 71.580532 ], [ -177.626953, 71.272595 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -179.912109, 71.580532 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ] ] ], [ [ [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.041016, 79.351472 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ] ] ], [ [ [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ] ] ], [ [ [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 50.009766, 80.928426 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.685547, 70.170201 ], [ 26.103516, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.911005 ], [ 22.324219, 68.847665 ], [ 21.181641, 69.380313 ], [ 19.951172, 69.068563 ], [ 19.863281, 68.431513 ], [ 17.929688, 68.592487 ], [ 17.666016, 68.040461 ], [ 16.699219, 68.040461 ], [ 13.535156, 64.811557 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.091408 ], [ 11.865234, 63.154355 ], [ 11.953125, 61.814664 ], [ 12.568359, 61.312452 ], [ 12.216797, 60.152442 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 4.921875, 61.980267 ], [ 10.458984, 64.510643 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ] ] ], [ [ [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ] ] ], [ [ [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.685547, 70.170201 ], [ 26.103516, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.911005 ], [ 22.324219, 68.847665 ], [ 21.181641, 69.380313 ], [ 19.951172, 69.068563 ], [ 19.863281, 68.431513 ], [ 17.929688, 68.592487 ], [ 17.666016, 68.040461 ], [ 16.699219, 68.040461 ], [ 13.535156, 64.811557 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.091408 ], [ 11.865234, 63.154355 ], [ 11.953125, 61.814664 ], [ 12.568359, 61.312452 ], [ 12.216797, 60.152442 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 4.921875, 61.980267 ], [ 10.458984, 64.510643 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ] ] ], [ [ [ 10.195312, 56.897004 ], [ 10.898438, 56.462490 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 8.525391, 54.977614 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 10.546875, 57.751076 ], [ 10.195312, 56.897004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.195312, 56.897004 ], [ 10.898438, 56.462490 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 8.525391, 54.977614 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 10.546875, 57.751076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.466797, 67.941650 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 10.986328, 58.859224 ], [ 12.216797, 60.152442 ], [ 12.568359, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.865234, 63.154355 ], [ 12.568359, 64.091408 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.811557 ], [ 16.699219, 68.040461 ], [ 17.666016, 68.040461 ], [ 17.929688, 68.592487 ], [ 19.863281, 68.431513 ], [ 19.951172, 69.068563 ], [ 20.566406, 69.131271 ], [ 23.466797, 67.941650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 69.131271 ], [ 23.466797, 67.941650 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 10.986328, 58.859224 ], [ 12.216797, 60.152442 ], [ 12.568359, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.865234, 63.154355 ], [ 12.568359, 64.091408 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.811557 ], [ 16.699219, 68.040461 ], [ 17.666016, 68.040461 ], [ 17.929688, 68.592487 ], [ 19.863281, 68.431513 ], [ 19.951172, 69.068563 ], [ 20.566406, 69.131271 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.855469, 53.488046 ], [ 7.031250, 53.173119 ], [ 6.503906, 51.890054 ], [ 5.976562, 51.890054 ], [ 6.152344, 50.847573 ], [ 4.921875, 51.508742 ], [ 3.251953, 51.399206 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.173119 ], [ 6.503906, 51.890054 ], [ 5.976562, 51.890054 ], [ 6.152344, 50.847573 ], [ 4.921875, 51.508742 ], [ 3.251953, 51.399206 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.152344, 50.847573 ], [ 5.625000, 49.553726 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.921875, 51.508742 ], [ 6.152344, 50.847573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 6.152344, 50.847573 ], [ 5.625000, 49.553726 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.921875, 51.508742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.888672, 49.496675 ], [ 5.712891, 50.120578 ], [ 5.976562, 50.176898 ], [ 5.888672, 49.496675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.176898 ], [ 5.888672, 49.496675 ], [ 5.712891, 50.120578 ], [ 5.976562, 50.176898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.898438, 54.059388 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.014783 ], [ 14.941406, 51.124213 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.535156, 48.922499 ], [ 12.832031, 48.341646 ], [ 12.919922, 47.517201 ], [ 12.128906, 47.754098 ], [ 10.371094, 47.338823 ], [ 8.437500, 47.872144 ], [ 7.382812, 47.635784 ], [ 8.085938, 49.037868 ], [ 6.152344, 49.496675 ], [ 5.976562, 51.890054 ], [ 6.767578, 52.268157 ], [ 6.855469, 53.488046 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.977614 ], [ 9.843750, 55.028022 ], [ 10.898438, 54.059388 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 55.028022 ], [ 10.898438, 54.059388 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.014783 ], [ 14.941406, 51.124213 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.535156, 48.922499 ], [ 12.832031, 48.341646 ], [ 12.919922, 47.517201 ], [ 12.128906, 47.754098 ], [ 10.371094, 47.338823 ], [ 8.437500, 47.872144 ], [ 7.382812, 47.635784 ], [ 8.085938, 49.037868 ], [ 6.152344, 49.496675 ], [ 5.976562, 51.890054 ], [ 6.767578, 52.268157 ], [ 6.855469, 53.488046 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.977614 ], [ 9.843750, 55.028022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.576526 ], [ 9.404297, 47.159840 ], [ 10.371094, 46.920255 ], [ 9.843750, 46.316584 ], [ 9.140625, 46.498392 ], [ 8.964844, 46.073231 ], [ 7.207031, 45.828799 ], [ 6.416016, 46.437857 ], [ 5.976562, 46.316584 ], [ 6.679688, 47.576526 ], [ 8.437500, 47.872144 ], [ 9.580078, 47.576526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 47.872144 ], [ 9.580078, 47.576526 ], [ 9.404297, 47.159840 ], [ 10.371094, 46.920255 ], [ 9.843750, 46.316584 ], [ 9.140625, 46.498392 ], [ 8.964844, 46.073231 ], [ 7.207031, 45.828799 ], [ 6.416016, 46.437857 ], [ 5.976562, 46.316584 ], [ 6.679688, 47.576526 ], [ 8.437500, 47.872144 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 50.736455 ], [ 16.699219, 50.233152 ], [ 17.490234, 50.401515 ], [ 18.808594, 49.496675 ], [ 16.875000, 48.632909 ], [ 15.205078, 49.095452 ], [ 14.326172, 48.574790 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 14.238281, 51.124213 ], [ 16.171875, 50.736455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.238281, 51.124213 ], [ 16.171875, 50.736455 ], [ 16.699219, 50.233152 ], [ 17.490234, 50.401515 ], [ 18.808594, 49.496675 ], [ 16.875000, 48.632909 ], [ 15.205078, 49.095452 ], [ 14.326172, 48.574790 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 14.238281, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.632812, 54.470038 ], [ 23.203125, 54.265224 ], [ 23.730469, 52.696361 ], [ 23.115234, 52.536273 ], [ 23.994141, 50.736455 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.533203, 49.496675 ], [ 19.775391, 49.267805 ], [ 18.896484, 49.439557 ], [ 17.490234, 50.401515 ], [ 16.699219, 50.233152 ], [ 14.941406, 51.124213 ], [ 14.062500, 53.014783 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ], [ 18.632812, 54.470038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 54.876607 ], [ 18.632812, 54.470038 ], [ 23.203125, 54.265224 ], [ 23.730469, 52.696361 ], [ 23.115234, 52.536273 ], [ 23.994141, 50.736455 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.533203, 49.496675 ], [ 19.775391, 49.267805 ], [ 18.896484, 49.439557 ], [ 17.490234, 50.401515 ], [ 16.699219, 50.233152 ], [ 14.941406, 51.124213 ], [ 14.062500, 53.014783 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.435547, 48.806863 ], [ 16.962891, 48.166085 ], [ 15.996094, 46.739861 ], [ 14.589844, 46.437857 ], [ 12.304688, 46.800059 ], [ 12.128906, 47.159840 ], [ 10.986328, 46.800059 ], [ 9.404297, 47.159840 ], [ 9.843750, 47.635784 ], [ 10.371094, 47.338823 ], [ 12.128906, 47.754098 ], [ 12.919922, 47.517201 ], [ 12.832031, 48.341646 ], [ 13.535156, 48.922499 ], [ 14.326172, 48.574790 ], [ 15.205078, 49.095452 ], [ 16.435547, 48.806863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.205078, 49.095452 ], [ 16.435547, 48.806863 ], [ 16.962891, 48.166085 ], [ 15.996094, 46.739861 ], [ 14.589844, 46.437857 ], [ 12.304688, 46.800059 ], [ 12.128906, 47.159840 ], [ 10.986328, 46.800059 ], [ 9.404297, 47.159840 ], [ 9.843750, 47.635784 ], [ 10.371094, 47.338823 ], [ 12.128906, 47.754098 ], [ 12.919922, 47.517201 ], [ 12.832031, 48.341646 ], [ 13.535156, 48.922499 ], [ 14.326172, 48.574790 ], [ 15.205078, 49.095452 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 15.732422, 46.255847 ], [ 15.292969, 45.460131 ], [ 13.710938, 45.521744 ], [ 13.798828, 46.558860 ], [ 16.171875, 46.860191 ], [ 16.523438, 46.558860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 46.860191 ], [ 16.523438, 46.558860 ], [ 15.732422, 46.255847 ], [ 15.292969, 45.460131 ], [ 13.710938, 45.521744 ], [ 13.798828, 46.558860 ], [ 16.171875, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.029297, 36.668419 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 15.468750, 38.272689 ], [ 15.029297, 36.668419 ] ] ], [ [ [ 12.304688, 46.800059 ], [ 13.798828, 46.558860 ], [ 13.886719, 45.644768 ], [ 12.304688, 45.398450 ], [ 12.568359, 44.150681 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 15.820312, 41.574361 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 11.162109, 42.358544 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 7.382812, 43.707594 ], [ 7.470703, 44.150681 ], [ 6.943359, 44.276671 ], [ 6.767578, 46.012224 ], [ 8.964844, 46.073231 ], [ 9.140625, 46.498392 ], [ 10.283203, 46.498392 ], [ 10.371094, 46.920255 ], [ 12.128906, 47.159840 ], [ 12.304688, 46.800059 ] ] ], [ [ [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 8.789062, 38.959409 ], [ 8.085938, 40.979898 ], [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.029297, 36.668419 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 12.128906, 47.159840 ], [ 12.304688, 46.800059 ], [ 13.798828, 46.558860 ], [ 13.886719, 45.644768 ], [ 12.304688, 45.398450 ], [ 12.568359, 44.150681 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 15.820312, 41.574361 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 11.162109, 42.358544 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 7.382812, 43.707594 ], [ 7.470703, 44.150681 ], [ 6.943359, 44.276671 ], [ 6.767578, 46.012224 ], [ 8.964844, 46.073231 ], [ 9.140625, 46.498392 ], [ 10.283203, 46.498392 ], [ 10.371094, 46.920255 ], [ 12.128906, 47.159840 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 8.789062, 38.959409 ], [ 8.085938, 40.979898 ], [ 9.140625, 41.244772 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 46.012224 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 18.369141, 42.488302 ], [ 15.996094, 43.516689 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 18.369141, 42.488302 ], [ 15.996094, 43.516689 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.587891, 48.166085 ], [ 21.005859, 46.316584 ], [ 18.369141, 45.767523 ], [ 16.171875, 46.860191 ], [ 16.259766, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.962891, 48.166085 ], [ 17.841797, 47.813155 ], [ 20.742188, 48.632909 ], [ 22.587891, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 48.632909 ], [ 22.587891, 48.166085 ], [ 21.005859, 46.316584 ], [ 18.369141, 45.767523 ], [ 16.171875, 46.860191 ], [ 16.259766, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.962891, 48.166085 ], [ 17.841797, 47.813155 ], [ 20.742188, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 49.095452 ], [ 21.796875, 48.341646 ], [ 20.742188, 48.632909 ], [ 18.632812, 47.931066 ], [ 17.402344, 47.872144 ], [ 16.962891, 48.166085 ], [ 17.050781, 48.864715 ], [ 18.808594, 49.496675 ], [ 19.775391, 49.267805 ], [ 21.533203, 49.496675 ], [ 22.500000, 49.095452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.533203, 49.496675 ], [ 22.500000, 49.095452 ], [ 21.796875, 48.341646 ], [ 20.742188, 48.632909 ], [ 18.632812, 47.931066 ], [ 17.402344, 47.872144 ], [ 16.962891, 48.166085 ], [ 17.050781, 48.864715 ], [ 18.808594, 49.496675 ], [ 19.775391, 49.267805 ], [ 21.533203, 49.496675 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 44.902578 ], [ 19.599609, 44.087585 ], [ 18.544922, 42.682435 ], [ 15.732422, 44.840291 ], [ 15.908203, 45.274886 ], [ 18.984375, 44.902578 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.908203, 45.274886 ], [ 18.984375, 44.902578 ], [ 19.599609, 44.087585 ], [ 18.544922, 42.682435 ], [ 15.732422, 44.840291 ], [ 15.908203, 45.274886 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 19.775391, 42.553080 ], [ 19.335938, 41.902277 ], [ 18.369141, 42.488302 ], [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 19.775391, 42.553080 ], [ 19.335938, 41.902277 ], [ 18.369141, 42.488302 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.830078, 45.460131 ], [ 22.060547, 44.527843 ], [ 22.675781, 44.590467 ], [ 22.324219, 44.024422 ], [ 22.939453, 43.261206 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 20.742188, 43.325178 ], [ 20.214844, 42.875964 ], [ 19.160156, 43.580391 ], [ 19.599609, 44.087585 ], [ 18.808594, 45.951150 ], [ 20.214844, 46.134170 ], [ 20.830078, 45.460131 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.830078, 45.460131 ], [ 22.060547, 44.527843 ], [ 22.675781, 44.590467 ], [ 22.324219, 44.024422 ], [ 22.939453, 43.261206 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 20.742188, 43.325178 ], [ 20.214844, 42.875964 ], [ 19.160156, 43.580391 ], [ 19.599609, 44.087585 ], [ 18.808594, 45.951150 ], [ 20.214844, 46.134170 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.708984, 42.747012 ], [ 20.742188, 42.098222 ], [ 20.039062, 42.617791 ], [ 20.742188, 43.325178 ], [ 21.708984, 42.747012 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.708984, 42.747012 ], [ 20.742188, 42.098222 ], [ 20.039062, 42.617791 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 41.902277 ], [ 20.917969, 40.580585 ], [ 20.126953, 39.639538 ], [ 19.248047, 40.780541 ], [ 19.687500, 42.747012 ], [ 20.566406, 41.902277 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.747012 ], [ 20.566406, 41.902277 ], [ 20.917969, 40.580585 ], [ 20.126953, 39.639538 ], [ 19.248047, 40.780541 ], [ 19.687500, 42.747012 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.376809 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.902277 ], [ 22.324219, 42.358544 ], [ 22.939453, 41.376809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.358544 ], [ 22.939453, 41.376809 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.902277 ], [ 22.324219, 42.358544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.388672, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.003906, 66.964476 ], [ 30.146484, 65.838776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 29.970703, 63.587675 ], [ 31.464844, 62.875188 ], [ 28.037109, 60.543775 ], [ 22.851562, 59.888937 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 22.412109, 63.821288 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.554688, 66.407955 ], [ 23.466797, 67.941650 ], [ 20.566406, 69.131271 ], [ 21.181641, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.911005 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.103516, 69.839622 ], [ 27.685547, 70.170201 ], [ 29.003906, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.685547, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.388672, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.003906, 66.964476 ], [ 30.146484, 65.838776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 29.970703, 63.587675 ], [ 31.464844, 62.875188 ], [ 28.037109, 60.543775 ], [ 22.851562, 59.888937 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 22.412109, 63.821288 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.554688, 66.407955 ], [ 23.466797, 67.941650 ], [ 20.566406, 69.131271 ], [ 21.181641, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.911005 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.103516, 69.839622 ], [ 27.685547, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.685547, 57.279043 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 24.785156, 56.413901 ], [ 22.148438, 56.365250 ], [ 21.005859, 56.072035 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 25.136719, 57.984808 ], [ 27.685547, 57.279043 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 27.685547, 57.279043 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 24.785156, 56.413901 ], [ 22.148438, 56.365250 ], [ 21.005859, 56.072035 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 59.489726 ], [ 27.246094, 57.515823 ], [ 25.136719, 57.984808 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 25.839844, 59.623325 ], [ 27.949219, 59.489726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 27.949219, 59.489726 ], [ 27.246094, 57.515823 ], [ 25.136719, 57.984808 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 25.839844, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 55.627996 ], [ 26.542969, 55.178868 ], [ 25.751953, 54.876607 ], [ 25.488281, 54.316523 ], [ 23.466797, 53.956086 ], [ 22.675781, 54.367759 ], [ 22.675781, 54.876607 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 22.148438, 56.365250 ], [ 24.785156, 56.413901 ], [ 26.455078, 55.627996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 56.413901 ], [ 26.455078, 55.627996 ], [ 26.542969, 55.178868 ], [ 25.751953, 54.876607 ], [ 25.488281, 54.316523 ], [ 23.466797, 53.956086 ], [ 22.675781, 54.367759 ], [ 22.675781, 54.876607 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 22.148438, 56.365250 ], [ 24.785156, 56.413901 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.355469, 55.677584 ], [ 30.849609, 55.578345 ], [ 30.673828, 54.826008 ], [ 32.607422, 53.383328 ], [ 31.289062, 53.120405 ], [ 31.728516, 52.106505 ], [ 30.849609, 52.052490 ], [ 30.498047, 51.344339 ], [ 25.312500, 51.944265 ], [ 23.466797, 51.618017 ], [ 23.466797, 53.956086 ], [ 25.488281, 54.316523 ], [ 25.751953, 54.876607 ], [ 26.542969, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.125000, 56.170023 ], [ 29.355469, 55.677584 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 56.170023 ], [ 29.355469, 55.677584 ], [ 30.849609, 55.578345 ], [ 30.673828, 54.826008 ], [ 32.607422, 53.383328 ], [ 31.289062, 53.120405 ], [ 31.728516, 52.106505 ], [ 30.849609, 52.052490 ], [ 30.498047, 51.344339 ], [ 25.312500, 51.944265 ], [ 23.466797, 51.618017 ], [ 23.466797, 53.956086 ], [ 25.488281, 54.316523 ], [ 25.751953, 54.876607 ], [ 26.542969, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.125000, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 46.860191 ], [ 28.212891, 45.521744 ], [ 29.531250, 45.336702 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 27.158203, 44.213710 ], [ 25.488281, 43.707594 ], [ 22.939453, 43.834527 ], [ 22.675781, 44.590467 ], [ 21.533203, 44.777936 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.675781, 47.931066 ], [ 23.115234, 48.107431 ], [ 24.785156, 47.754098 ], [ 26.894531, 48.166085 ], [ 28.125000, 46.860191 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.166085 ], [ 28.125000, 46.860191 ], [ 28.212891, 45.521744 ], [ 29.531250, 45.336702 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 27.158203, 44.213710 ], [ 25.488281, 43.707594 ], [ 22.939453, 43.834527 ], [ 22.675781, 44.590467 ], [ 21.533203, 44.777936 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.675781, 47.931066 ], [ 23.115234, 48.107431 ], [ 24.785156, 47.754098 ], [ 26.894531, 48.166085 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 25.488281, 43.707594 ], [ 27.158203, 44.213710 ], [ 28.476562, 43.707594 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.376809 ], [ 22.939453, 41.376809 ], [ 22.324219, 42.358544 ], [ 22.939453, 43.261206 ], [ 22.587891, 44.276671 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.587891, 44.276671 ], [ 22.939453, 43.834527 ], [ 25.488281, 43.707594 ], [ 27.158203, 44.213710 ], [ 28.476562, 43.707594 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.376809 ], [ 22.939453, 41.376809 ], [ 22.324219, 42.358544 ], [ 22.939453, 43.261206 ], [ 22.587891, 44.276671 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.652344, 48.166085 ], [ 29.970703, 46.437857 ], [ 28.828125, 46.498392 ], [ 28.212891, 45.521744 ], [ 28.125000, 46.860191 ], [ 26.542969, 48.224673 ], [ 27.509766, 48.516604 ], [ 28.652344, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.516604 ], [ 28.652344, 48.166085 ], [ 29.970703, 46.437857 ], [ 28.828125, 46.498392 ], [ 28.212891, 45.521744 ], [ 28.125000, 46.860191 ], [ 26.542969, 48.224673 ], [ 27.509766, 48.516604 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.365234, 51.781436 ], [ 34.189453, 51.289406 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.625073 ], [ 39.990234, 49.610710 ], [ 39.726562, 47.931066 ], [ 38.759766, 47.872144 ], [ 38.144531, 47.159840 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 33.574219, 45.890008 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 29.531250, 45.336702 ], [ 28.212891, 45.521744 ], [ 28.828125, 46.498392 ], [ 29.970703, 46.437857 ], [ 28.652344, 48.166085 ], [ 27.509766, 48.516604 ], [ 24.785156, 47.754098 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.931066 ], [ 22.060547, 48.458352 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.906250, 50.457504 ], [ 23.466797, 51.618017 ], [ 25.312500, 51.944265 ], [ 30.498047, 51.344339 ], [ 30.849609, 52.052490 ], [ 31.728516, 52.106505 ], [ 33.750000, 52.375599 ], [ 34.365234, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.375599 ], [ 34.365234, 51.781436 ], [ 34.189453, 51.289406 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.625073 ], [ 39.990234, 49.610710 ], [ 39.726562, 47.931066 ], [ 38.759766, 47.872144 ], [ 38.144531, 47.159840 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 33.574219, 45.890008 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 29.531250, 45.336702 ], [ 28.212891, 45.521744 ], [ 28.828125, 46.498392 ], [ 29.970703, 46.437857 ], [ 28.652344, 48.166085 ], [ 27.509766, 48.516604 ], [ 24.785156, 47.754098 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.931066 ], [ 22.060547, 48.458352 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.906250, 50.457504 ], [ 23.466797, 51.618017 ], [ 25.312500, 51.944265 ], [ 30.498047, 51.344339 ], [ 30.849609, 52.052490 ], [ 31.728516, 52.106505 ], [ 33.750000, 52.375599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 42.553080 ], [ 46.582031, 41.244772 ], [ 45.175781, 41.442726 ], [ 43.505859, 41.112469 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.574361 ], [ 41.396484, 42.682435 ], [ 39.990234, 43.580391 ], [ 45.439453, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.990234, 43.580391 ], [ 45.439453, 42.553080 ], [ 46.582031, 41.244772 ], [ 45.175781, 41.442726 ], [ 43.505859, 41.112469 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.574361 ], [ 41.396484, 42.682435 ], [ 39.990234, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 10.546875, 36.456636 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 10.546875, 36.456636 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.085938, 34.669359 ], [ 7.470703, 34.161818 ], [ 7.558594, 33.358062 ], [ 9.052734, 32.175612 ], [ 9.755859, 29.458731 ], [ 9.316406, 26.115986 ], [ 10.283203, 24.447150 ], [ 10.722656, 24.607069 ], [ 11.953125, 23.483401 ], [ 5.625000, 19.642588 ], [ 3.076172, 19.062118 ], [ 3.076172, 19.725342 ], [ -8.701172, 27.449790 ], [ -8.701172, 28.844674 ], [ -5.273438, 30.069094 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -1.318359, 32.324276 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ 1.406250, 36.668419 ], [ 8.349609, 36.949892 ], [ 8.085938, 34.669359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.349609, 36.949892 ], [ 8.085938, 34.669359 ], [ 7.470703, 34.161818 ], [ 7.558594, 33.358062 ], [ 9.052734, 32.175612 ], [ 9.755859, 29.458731 ], [ 9.316406, 26.115986 ], [ 10.283203, 24.447150 ], [ 10.722656, 24.607069 ], [ 11.953125, 23.483401 ], [ 5.625000, 19.642588 ], [ 3.076172, 19.062118 ], [ 3.076172, 19.725342 ], [ -8.701172, 27.449790 ], [ -8.701172, 28.844674 ], [ -5.273438, 30.069094 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -1.318359, 32.324276 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ 1.406250, 36.668419 ], [ 8.349609, 36.949892 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.205078, 32.324276 ], [ 15.644531, 31.428663 ], [ 19.072266, 30.297018 ], [ 20.039062, 31.052934 ], [ 19.775391, 31.802893 ], [ 20.830078, 32.768800 ], [ 22.851562, 32.694866 ], [ 24.873047, 31.952162 ], [ 24.960938, 20.055931 ], [ 23.818359, 20.055931 ], [ 23.818359, 19.642588 ], [ 15.820312, 23.483401 ], [ 14.765625, 22.917923 ], [ 14.062500, 22.512557 ], [ 10.722656, 24.607069 ], [ 10.283203, 24.447150 ], [ 9.316406, 26.115986 ], [ 9.843750, 28.998532 ], [ 9.404297, 30.372875 ], [ 9.931641, 30.600094 ], [ 9.931641, 31.428663 ], [ 11.425781, 32.398516 ], [ 11.425781, 33.137551 ], [ 15.205078, 32.324276 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.425781, 33.137551 ], [ 15.205078, 32.324276 ], [ 15.644531, 31.428663 ], [ 19.072266, 30.297018 ], [ 20.039062, 31.052934 ], [ 19.775391, 31.802893 ], [ 20.830078, 32.768800 ], [ 22.851562, 32.694866 ], [ 24.873047, 31.952162 ], [ 24.960938, 20.055931 ], [ 23.818359, 20.055931 ], [ 23.818359, 19.642588 ], [ 15.820312, 23.483401 ], [ 14.765625, 22.917923 ], [ 14.062500, 22.512557 ], [ 10.722656, 24.607069 ], [ 10.283203, 24.447150 ], [ 9.316406, 26.115986 ], [ 9.843750, 28.998532 ], [ 9.404297, 30.372875 ], [ 9.931641, 30.600094 ], [ 9.931641, 31.428663 ], [ 11.425781, 32.398516 ], [ 11.425781, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 22.512557 ], [ 14.765625, 22.917923 ], [ 15.029297, 21.371244 ], [ 15.820312, 20.468189 ], [ 15.205078, 16.636192 ], [ 13.886719, 15.707663 ], [ 13.535156, 14.434680 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.150391, 12.554564 ], [ 13.271484, 13.581921 ], [ 8.964844, 12.897489 ], [ 5.361328, 13.923404 ], [ 4.042969, 13.581921 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.297068 ], [ 2.109375, 11.953349 ], [ 2.109375, 12.640338 ], [ 0.966797, 12.897489 ], [ 0.351562, 14.944785 ], [ 3.603516, 15.623037 ], [ 4.218750, 16.888660 ], [ 4.218750, 19.228177 ], [ 11.953125, 23.483401 ], [ 14.062500, 22.512557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.953125, 23.483401 ], [ 14.062500, 22.512557 ], [ 14.765625, 22.917923 ], [ 15.029297, 21.371244 ], [ 15.820312, 20.468189 ], [ 15.205078, 16.636192 ], [ 13.886719, 15.707663 ], [ 13.535156, 14.434680 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.150391, 12.554564 ], [ 13.271484, 13.581921 ], [ 8.964844, 12.897489 ], [ 5.361328, 13.923404 ], [ 4.042969, 13.581921 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.297068 ], [ 2.109375, 11.953349 ], [ 2.109375, 12.640338 ], [ 0.966797, 12.897489 ], [ 0.351562, 14.944785 ], [ 3.603516, 15.623037 ], [ 4.218750, 16.888660 ], [ 4.218750, 19.228177 ], [ 11.953125, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 1.406250, 9.882275 ], [ 1.845703, 6.227934 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.000000, 11.092166 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.092166 ], [ 0.878906, 11.005904 ], [ 1.406250, 9.882275 ], [ 1.845703, 6.227934 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.000000, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.779297, 10.746969 ], [ 2.636719, 8.581021 ], [ 2.636719, 6.315299 ], [ 1.845703, 6.227934 ], [ 1.582031, 9.188870 ], [ 0.703125, 10.487812 ], [ 2.460938, 12.297068 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.460938, 12.297068 ], [ 3.603516, 11.695273 ], [ 3.779297, 10.746969 ], [ 2.636719, 8.581021 ], [ 2.636719, 6.315299 ], [ 1.845703, 6.227934 ], [ 1.582031, 9.188870 ], [ 0.703125, 10.487812 ], [ 2.460938, 12.297068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.964844, 12.897489 ], [ 13.271484, 13.581921 ], [ 14.501953, 12.125264 ], [ 14.414062, 11.609193 ], [ 11.689453, 7.013668 ], [ 10.986328, 6.664608 ], [ 10.107422, 7.100893 ], [ 9.228516, 6.489983 ], [ 8.437500, 4.828260 ], [ 5.888672, 4.302591 ], [ 4.306641, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.581021 ], [ 3.691406, 10.141932 ], [ 4.042969, 13.581921 ], [ 5.361328, 13.923404 ], [ 8.964844, 12.897489 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.361328, 13.923404 ], [ 8.964844, 12.897489 ], [ 13.271484, 13.581921 ], [ 14.501953, 12.125264 ], [ 14.414062, 11.609193 ], [ 11.689453, 7.013668 ], [ 10.986328, 6.664608 ], [ 10.107422, 7.100893 ], [ 9.228516, 6.489983 ], [ 8.437500, 4.828260 ], [ 5.888672, 4.302591 ], [ 4.306641, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.581021 ], [ 3.691406, 10.141932 ], [ 4.042969, 13.581921 ], [ 5.361328, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.142502 ], [ 9.492188, 1.054628 ], [ 9.580078, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.142502 ], [ 9.492188, 1.054628 ], [ 9.580078, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.642588 ], [ 23.818359, 15.623037 ], [ 22.939453, 15.707663 ], [ 21.884766, 12.640338 ], [ 22.851562, 11.178402 ], [ 20.917969, 9.535749 ], [ 18.808594, 9.015302 ], [ 17.929688, 7.972198 ], [ 15.205078, 7.449624 ], [ 14.941406, 8.841651 ], [ 13.886719, 9.622414 ], [ 14.150391, 10.055403 ], [ 15.380859, 10.055403 ], [ 14.414062, 12.897489 ], [ 13.535156, 14.434680 ], [ 13.886719, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.820312, 20.468189 ], [ 15.029297, 21.371244 ], [ 14.765625, 22.917923 ], [ 15.820312, 23.483401 ], [ 23.818359, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.483401 ], [ 23.818359, 19.642588 ], [ 23.818359, 15.623037 ], [ 22.939453, 15.707663 ], [ 21.884766, 12.640338 ], [ 22.851562, 11.178402 ], [ 20.917969, 9.535749 ], [ 18.808594, 9.015302 ], [ 17.929688, 7.972198 ], [ 15.205078, 7.449624 ], [ 14.941406, 8.841651 ], [ 13.886719, 9.622414 ], [ 14.150391, 10.055403 ], [ 15.380859, 10.055403 ], [ 14.414062, 12.897489 ], [ 13.535156, 14.434680 ], [ 13.886719, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.820312, 20.468189 ], [ 15.029297, 21.371244 ], [ 14.765625, 22.917923 ], [ 15.820312, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 10.055403 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 15.380859, 7.710992 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 13.007812, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 14.414062, 11.609193 ], [ 14.414062, 12.897489 ], [ 15.380859, 10.055403 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 15.380859, 10.055403 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 15.380859, 7.710992 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 13.007812, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 14.414062, 11.609193 ], [ 14.414062, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.466797, 10.141932 ], [ 23.378906, 9.015302 ], [ 27.333984, 5.266008 ], [ 24.345703, 5.178482 ], [ 22.763672, 4.740675 ], [ 22.324219, 4.039618 ], [ 19.423828, 5.090944 ], [ 18.369141, 3.513421 ], [ 17.050781, 3.776559 ], [ 15.996094, 2.284551 ], [ 14.414062, 4.740675 ], [ 14.501953, 6.227934 ], [ 15.205078, 7.449624 ], [ 17.929688, 7.972198 ], [ 18.808594, 9.015302 ], [ 20.917969, 9.535749 ], [ 22.851562, 11.178402 ], [ 23.466797, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 23.466797, 10.141932 ], [ 23.378906, 9.015302 ], [ 27.333984, 5.266008 ], [ 24.345703, 5.178482 ], [ 22.763672, 4.740675 ], [ 22.324219, 4.039618 ], [ 19.423828, 5.090944 ], [ 18.369141, 3.513421 ], [ 17.050781, 3.776559 ], [ 15.996094, 2.284551 ], [ 14.414062, 4.740675 ], [ 14.501953, 6.227934 ], [ 15.205078, 7.449624 ], [ 17.929688, 7.972198 ], [ 18.808594, 9.015302 ], [ 20.917969, 9.535749 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.279297, 35.317366 ], [ 24.697266, 34.957995 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ], [ 26.279297, 35.317366 ] ] ], [ [ [ 26.542969, 41.574361 ], [ 26.015625, 40.847060 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 22.763672, 40.513799 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 21.621094, 36.879621 ], [ 20.126953, 39.639538 ], [ 21.005859, 40.847060 ], [ 24.433594, 41.640078 ], [ 26.103516, 41.376809 ], [ 26.103516, 41.836828 ], [ 26.542969, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.642578, 35.746512 ], [ 26.279297, 35.317366 ], [ 24.697266, 34.957995 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.542969, 41.574361 ], [ 26.015625, 40.847060 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 22.763672, 40.513799 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 21.621094, 36.879621 ], [ 20.126953, 39.639538 ], [ 21.005859, 40.847060 ], [ 24.433594, 41.640078 ], [ 26.103516, 41.376809 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 35.101934 ], [ 32.695312, 35.173808 ], [ 34.541016, 35.675147 ], [ 33.925781, 35.101934 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.925781, 35.101934 ], [ 32.695312, 35.173808 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 35.101934 ], [ 32.958984, 34.597042 ], [ 32.255859, 35.173808 ], [ 33.134766, 35.173808 ], [ 33.925781, 35.101934 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.134766, 35.173808 ], [ 33.925781, 35.101934 ], [ 32.958984, 34.597042 ], [ 32.255859, 35.173808 ], [ 33.134766, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 23.160563 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.697266, 30.069094 ], [ 25.136719, 31.578535 ], [ 28.828125, 30.902225 ], [ 30.937500, 31.578535 ], [ 31.904297, 30.977609 ], [ 34.189453, 31.278551 ], [ 34.892578, 29.535230 ], [ 33.837891, 27.683528 ], [ 32.431641, 29.535230 ], [ 35.683594, 23.966176 ], [ 35.507812, 23.160563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, 31.578535 ], [ 31.904297, 30.977609 ], [ 34.189453, 31.278551 ], [ 34.892578, 29.535230 ], [ 33.837891, 27.683528 ], [ 32.255859, 29.764377 ], [ 35.683594, 23.966176 ], [ 35.507812, 23.160563 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.697266, 30.069094 ], [ 25.136719, 31.578535 ], [ 28.828125, 30.902225 ], [ 30.937500, 31.578535 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.826172, 41.376809 ], [ 40.341797, 41.046217 ], [ 42.539062, 41.640078 ], [ 43.505859, 41.112469 ], [ 43.593750, 40.313043 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.736328, 37.230328 ], [ 42.714844, 37.439974 ], [ 39.462891, 36.738884 ], [ 36.738281, 36.879621 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 30.585938, 36.738884 ], [ 29.619141, 36.173357 ], [ 27.597656, 36.668419 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ] ] ], [ [ [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.847060 ], [ 26.542969, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.949219, 42.032974 ], [ 28.916016, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ], [ 40.341797, 41.046217 ], [ 42.539062, 41.640078 ], [ 43.505859, 41.112469 ], [ 43.593750, 40.313043 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.736328, 37.230328 ], [ 42.714844, 37.439974 ], [ 39.462891, 36.738884 ], [ 36.738281, 36.879621 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 30.585938, 36.738884 ], [ 29.619141, 36.173357 ], [ 27.597656, 36.668419 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ] ] ], [ [ [ 27.949219, 42.032974 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.847060 ], [ 26.542969, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.949219, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 34.597042 ], [ 36.562500, 34.234512 ], [ 35.771484, 33.284620 ], [ 35.068359, 33.137551 ], [ 35.947266, 34.669359 ], [ 36.386719, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.947266, 34.669359 ], [ 36.386719, 34.597042 ], [ 36.562500, 34.234512 ], [ 35.771484, 33.284620 ], [ 35.068359, 33.137551 ], [ 35.947266, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.220703, 36.385913 ], [ 40.957031, 34.452218 ], [ 38.759766, 33.431441 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.768800 ], [ 36.562500, 34.234512 ], [ 35.859375, 35.460670 ], [ 36.738281, 36.879621 ], [ 39.462891, 36.738884 ], [ 42.275391, 37.230328 ], [ 41.220703, 36.385913 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.275391, 37.230328 ], [ 41.220703, 36.385913 ], [ 40.957031, 34.452218 ], [ 38.759766, 33.431441 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.768800 ], [ 36.562500, 34.234512 ], [ 35.859375, 35.460670 ], [ 36.738281, 36.879621 ], [ 39.462891, 36.738884 ], [ 42.275391, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.351562, 36.031332 ], [ 46.142578, 35.101934 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.063924 ], [ 47.285156, 32.472695 ], [ 48.515625, 29.993002 ], [ 47.285156, 30.069094 ], [ 46.494141, 29.152161 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.203405 ], [ 39.111328, 32.175612 ], [ 38.759766, 33.431441 ], [ 40.957031, 34.452218 ], [ 41.220703, 36.385913 ], [ 42.275391, 37.230328 ], [ 44.736328, 37.230328 ], [ 45.351562, 36.031332 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.736328, 37.230328 ], [ 45.351562, 36.031332 ], [ 46.142578, 35.101934 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.063924 ], [ 47.285156, 32.472695 ], [ 48.515625, 29.993002 ], [ 47.285156, 30.069094 ], [ 46.494141, 29.152161 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.203405 ], [ 39.111328, 32.175612 ], [ 38.759766, 33.431441 ], [ 40.957031, 34.452218 ], [ 41.220703, 36.385913 ], [ 42.275391, 37.230328 ], [ 44.736328, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.683594, 32.768800 ], [ 34.892578, 31.877558 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 35.068359, 33.137551 ], [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ], [ 34.892578, 31.877558 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 35.068359, 33.137551 ], [ 35.771484, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 34.892578, 31.353637 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 34.892578, 31.353637 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 32.175612 ], [ 37.001953, 31.578535 ], [ 37.968750, 30.524413 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.535230 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.768800 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.431441 ], [ 39.111328, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.431441 ], [ 39.111328, 32.175612 ], [ 37.001953, 31.578535 ], [ 37.968750, 30.524413 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.535230 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.768800 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.431441 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.441406, 18.646245 ], [ 38.408203, 18.062312 ], [ 36.826172, 16.972741 ], [ 36.210938, 13.581921 ], [ 33.925781, 9.535749 ], [ 33.134766, 10.746969 ], [ 33.134766, 12.211180 ], [ 32.695312, 12.297068 ], [ 31.992188, 12.039321 ], [ 32.343750, 11.092166 ], [ 31.289062, 9.882275 ], [ 29.970703, 10.314919 ], [ 28.916016, 9.449062 ], [ 26.718750, 9.535749 ], [ 25.751953, 10.487812 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.378906, 9.015302 ], [ 23.466797, 10.141932 ], [ 21.884766, 12.640338 ], [ 22.939453, 15.707663 ], [ 23.818359, 15.623037 ], [ 23.818359, 20.055931 ], [ 24.960938, 20.055931 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ], [ 37.441406, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.062312 ], [ 36.826172, 16.972741 ], [ 36.210938, 13.581921 ], [ 33.925781, 9.535749 ], [ 33.134766, 10.746969 ], [ 33.134766, 12.211180 ], [ 32.695312, 12.297068 ], [ 31.992188, 12.039321 ], [ 32.343750, 11.092166 ], [ 31.289062, 9.882275 ], [ 29.970703, 10.314919 ], [ 28.916016, 9.449062 ], [ 26.718750, 9.535749 ], [ 25.751953, 10.487812 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.378906, 9.015302 ], [ 23.466797, 10.141932 ], [ 21.884766, 12.640338 ], [ 22.939453, 15.707663 ], [ 23.818359, 15.623037 ], [ 23.818359, 20.055931 ], [ 24.960938, 20.055931 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.134766, 12.211180 ], [ 33.134766, 10.746969 ], [ 33.925781, 9.535749 ], [ 33.750000, 8.407168 ], [ 32.871094, 7.798079 ], [ 34.013672, 7.275292 ], [ 35.244141, 5.528511 ], [ 33.310547, 3.864255 ], [ 31.816406, 3.601142 ], [ 30.761719, 3.513421 ], [ 29.707031, 4.653080 ], [ 27.949219, 4.477856 ], [ 23.818359, 8.667918 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.487812 ], [ 26.718750, 9.535749 ], [ 28.916016, 9.449062 ], [ 29.970703, 10.314919 ], [ 31.289062, 9.882275 ], [ 32.343750, 11.092166 ], [ 31.992188, 12.039321 ], [ 32.695312, 12.297068 ], [ 33.134766, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, 12.297068 ], [ 33.134766, 12.211180 ], [ 33.134766, 10.746969 ], [ 33.925781, 9.535749 ], [ 33.750000, 8.407168 ], [ 32.871094, 7.798079 ], [ 34.013672, 7.275292 ], [ 35.244141, 5.528511 ], [ 33.310547, 3.864255 ], [ 31.816406, 3.601142 ], [ 30.761719, 3.513421 ], [ 29.707031, 4.653080 ], [ 27.949219, 4.477856 ], [ 23.818359, 8.667918 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.487812 ], [ 26.718750, 9.535749 ], [ 28.916016, 9.449062 ], [ 29.970703, 10.314919 ], [ 31.289062, 9.882275 ], [ 32.343750, 11.092166 ], [ 31.992188, 12.039321 ], [ 32.695312, 12.297068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.980469, 1.933227 ], [ 33.837891, 0.175781 ], [ 33.837891, -0.878872 ], [ 31.816406, -0.966751 ], [ 29.531250, -1.318243 ], [ 29.794922, 0.615223 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.372369 ], [ 30.761719, 3.513421 ], [ 33.925781, 4.302591 ], [ 34.980469, 1.933227 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 4.302591 ], [ 34.980469, 1.933227 ], [ 33.837891, 0.175781 ], [ 33.837891, -0.878872 ], [ 31.816406, -0.966751 ], [ 29.531250, -1.318243 ], [ 29.794922, 0.615223 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.372369 ], [ 30.761719, 3.513421 ], [ 33.925781, 4.302591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 15.961329 ], [ 43.066406, 12.726084 ], [ 42.275391, 12.554564 ], [ 39.990234, 14.519780 ], [ 37.880859, 15.029686 ], [ 37.529297, 14.264383 ], [ 36.386719, 14.434680 ], [ 36.826172, 16.972741 ], [ 38.408203, 18.062312 ], [ 39.199219, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.062312 ], [ 39.199219, 15.961329 ], [ 43.066406, 12.726084 ], [ 42.275391, 12.554564 ], [ 39.990234, 14.519780 ], [ 37.880859, 15.029686 ], [ 37.529297, 14.264383 ], [ 36.386719, 14.434680 ], [ 36.826172, 16.972741 ], [ 38.408203, 18.062312 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.714844, 11.005904 ], [ 41.748047, 11.092166 ], [ 42.275391, 12.554564 ], [ 43.066406, 12.726084 ], [ 42.714844, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 42.714844, 11.005904 ], [ 41.748047, 11.092166 ], [ 42.275391, 12.554564 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.123047, 4.477856 ], [ 38.056641, 3.601142 ], [ 39.550781, 3.425692 ], [ 40.693359, 4.302591 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.790990 ], [ 41.572266, -1.669686 ], [ 40.253906, -2.547988 ], [ 39.199219, -4.653080 ], [ 37.617188, -3.074695 ], [ 33.837891, -0.878872 ], [ 33.837891, 0.175781 ], [ 34.980469, 1.933227 ], [ 33.925781, 4.302591 ], [ 35.244141, 5.528511 ], [ 36.123047, 4.477856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.244141, 5.528511 ], [ 36.123047, 4.477856 ], [ 38.056641, 3.601142 ], [ 39.550781, 3.425692 ], [ 40.693359, 4.302591 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.790990 ], [ 41.572266, -1.669686 ], [ 40.253906, -2.547988 ], [ 39.199219, -4.653080 ], [ 37.617188, -3.074695 ], [ 33.837891, -0.878872 ], [ 33.837891, 0.175781 ], [ 34.980469, 1.933227 ], [ 33.925781, 4.302591 ], [ 35.244141, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.990234, 14.519780 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.748047, 11.092166 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 41.835938, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.123047, 4.477856 ], [ 34.628906, 6.664608 ], [ 32.871094, 7.798079 ], [ 33.750000, 8.407168 ], [ 34.189453, 10.660608 ], [ 35.859375, 12.640338 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ], [ 39.990234, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 15.029686 ], [ 39.990234, 14.519780 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.748047, 11.092166 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 41.835938, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.123047, 4.477856 ], [ 34.628906, 6.664608 ], [ 32.871094, 7.798079 ], [ 33.750000, 8.407168 ], [ 34.189453, 10.660608 ], [ 35.859375, 12.640338 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.103516, 54.162434 ], [ 72.158203, 54.418930 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.540307 ], [ 76.816406, 54.521081 ], [ 76.464844, 54.213861 ], [ 77.783203, 53.435719 ], [ 79.980469, 50.903033 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.847573 ], [ 83.320312, 51.124213 ], [ 85.517578, 49.724479 ], [ 86.748047, 49.837982 ], [ 87.275391, 49.267805 ], [ 86.572266, 48.574790 ], [ 85.693359, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.078125, 47.040182 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.583290 ], [ 79.892578, 44.964798 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.101562, 42.875964 ], [ 75.585938, 42.940339 ], [ 74.179688, 43.325178 ], [ 73.476562, 42.553080 ], [ 71.806641, 42.875964 ], [ 70.927734, 42.293564 ], [ 68.203125, 40.713956 ], [ 67.939453, 41.178654 ], [ 66.708984, 41.178654 ], [ 66.445312, 42.032974 ], [ 66.005859, 42.032974 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.771094 ], [ 61.962891, 43.516689 ], [ 58.447266, 45.644768 ], [ 55.898438, 45.026950 ], [ 55.898438, 41.310824 ], [ 55.371094, 41.310824 ], [ 54.052734, 42.358544 ], [ 52.470703, 41.836828 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.998047, 45.274886 ], [ 52.998047, 46.860191 ], [ 51.152344, 47.100045 ], [ 49.042969, 46.437857 ], [ 48.515625, 46.619261 ], [ 47.988281, 47.754098 ], [ 47.285156, 47.754098 ], [ 46.406250, 48.400032 ], [ 46.669922, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.515625, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.712891, 51.727028 ], [ 52.294922, 51.727028 ], [ 55.634766, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.589844, 50.569283 ], [ 59.853516, 50.847573 ], [ 61.259766, 50.847573 ], [ 61.523438, 51.289406 ], [ 59.941406, 51.998410 ], [ 60.908203, 52.482780 ], [ 60.732422, 52.749594 ], [ 61.699219, 53.014783 ], [ 60.908203, 53.696706 ], [ 61.435547, 54.007769 ], [ 65.126953, 54.367759 ], [ 68.994141, 55.429013 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.994141, 55.429013 ], [ 70.839844, 55.178868 ], [ 71.103516, 54.162434 ], [ 72.158203, 54.418930 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.540307 ], [ 76.816406, 54.521081 ], [ 76.464844, 54.213861 ], [ 77.783203, 53.435719 ], [ 79.980469, 50.903033 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.847573 ], [ 83.320312, 51.124213 ], [ 85.517578, 49.724479 ], [ 86.748047, 49.837982 ], [ 87.275391, 49.267805 ], [ 86.572266, 48.574790 ], [ 85.693359, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.078125, 47.040182 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.583290 ], [ 79.892578, 44.964798 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.101562, 42.875964 ], [ 75.585938, 42.940339 ], [ 74.179688, 43.325178 ], [ 73.476562, 42.553080 ], [ 71.806641, 42.875964 ], [ 70.927734, 42.293564 ], [ 68.203125, 40.713956 ], [ 67.939453, 41.178654 ], [ 66.708984, 41.178654 ], [ 66.445312, 42.032974 ], [ 66.005859, 42.032974 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.771094 ], [ 61.962891, 43.516689 ], [ 58.447266, 45.644768 ], [ 55.898438, 45.026950 ], [ 55.898438, 41.310824 ], [ 55.371094, 41.310824 ], [ 54.052734, 42.358544 ], [ 52.470703, 41.836828 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.998047, 45.274886 ], [ 52.998047, 46.860191 ], [ 51.152344, 47.100045 ], [ 49.042969, 46.437857 ], [ 48.515625, 46.619261 ], [ 47.988281, 47.754098 ], [ 47.285156, 47.754098 ], [ 46.406250, 48.400032 ], [ 46.669922, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.515625, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.712891, 51.727028 ], [ 52.294922, 51.727028 ], [ 55.634766, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.589844, 50.569283 ], [ 59.853516, 50.847573 ], [ 61.259766, 50.847573 ], [ 61.523438, 51.289406 ], [ 59.941406, 51.998410 ], [ 60.908203, 52.482780 ], [ 60.732422, 52.749594 ], [ 61.699219, 53.014783 ], [ 60.908203, 53.696706 ], [ 61.435547, 54.007769 ], [ 65.126953, 54.367759 ], [ 68.994141, 55.429013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.400391, 41.574361 ], [ 73.037109, 40.913513 ], [ 71.718750, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.780541 ], [ 68.466797, 39.571822 ], [ 67.675781, 39.639538 ], [ 67.412109, 39.164141 ], [ 68.115234, 38.959409 ], [ 68.378906, 38.203655 ], [ 67.763672, 37.160317 ], [ 66.445312, 37.370157 ], [ 66.533203, 37.996163 ], [ 64.160156, 38.959409 ], [ 62.314453, 40.111689 ], [ 61.875000, 41.112469 ], [ 60.380859, 41.244772 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.811522 ], [ 56.865234, 41.836828 ], [ 57.041016, 41.376809 ], [ 55.898438, 41.310824 ], [ 55.898438, 45.026950 ], [ 58.447266, 45.644768 ], [ 61.962891, 43.516689 ], [ 64.863281, 43.771094 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.708984, 41.178654 ], [ 67.939453, 41.178654 ], [ 68.203125, 40.713956 ], [ 70.839844, 42.228517 ], [ 70.400391, 41.574361 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.447266, 45.644768 ], [ 61.962891, 43.516689 ], [ 64.863281, 43.771094 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.708984, 41.178654 ], [ 67.939453, 41.178654 ], [ 68.203125, 40.713956 ], [ 70.927734, 42.293564 ], [ 70.400391, 41.574361 ], [ 73.037109, 40.913513 ], [ 71.718750, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.780541 ], [ 68.466797, 39.571822 ], [ 67.675781, 39.639538 ], [ 67.412109, 39.164141 ], [ 68.115234, 38.959409 ], [ 68.378906, 38.203655 ], [ 67.763672, 37.160317 ], [ 66.445312, 37.370157 ], [ 66.533203, 37.996163 ], [ 64.160156, 38.959409 ], [ 62.314453, 40.111689 ], [ 61.875000, 41.112469 ], [ 60.380859, 41.244772 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.811522 ], [ 56.865234, 41.836828 ], [ 57.041016, 41.376809 ], [ 55.898438, 41.310824 ], [ 55.898438, 45.026950 ], [ 58.447266, 45.644768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.585938, 42.940339 ], [ 79.101562, 42.875964 ], [ 80.244141, 42.358544 ], [ 78.134766, 41.244772 ], [ 76.904297, 41.112469 ], [ 76.464844, 40.446947 ], [ 75.410156, 40.580585 ], [ 73.740234, 39.909736 ], [ 73.652344, 39.436193 ], [ 71.718750, 39.300299 ], [ 69.433594, 39.571822 ], [ 69.521484, 40.111689 ], [ 71.718750, 40.178873 ], [ 73.037109, 40.913513 ], [ 70.400391, 41.574361 ], [ 70.927734, 42.293564 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.553080 ], [ 74.179688, 43.325178 ], [ 75.585938, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.585938, 42.940339 ], [ 79.101562, 42.875964 ], [ 80.244141, 42.358544 ], [ 78.134766, 41.244772 ], [ 76.904297, 41.112469 ], [ 76.464844, 40.446947 ], [ 75.410156, 40.580585 ], [ 73.740234, 39.909736 ], [ 73.652344, 39.436193 ], [ 71.718750, 39.300299 ], [ 69.433594, 39.571822 ], [ 69.521484, 40.111689 ], [ 71.718750, 40.178873 ], [ 73.037109, 40.913513 ], [ 70.400391, 41.574361 ], [ 70.927734, 42.293564 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.553080 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 40.847060 ], [ 45.527344, 39.909736 ], [ 46.406250, 39.504041 ], [ 46.494141, 38.822591 ], [ 43.593750, 40.313043 ], [ 43.505859, 41.112469 ], [ 44.912109, 41.310824 ], [ 45.527344, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 41.310824 ], [ 45.527344, 40.847060 ], [ 45.527344, 39.909736 ], [ 46.406250, 39.504041 ], [ 46.494141, 38.822591 ], [ 43.593750, 40.313043 ], [ 43.505859, 41.112469 ], [ 44.912109, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.373047, 41.244772 ], [ 48.515625, 41.836828 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 48.867188, 38.341656 ], [ 47.988281, 38.822591 ], [ 47.988281, 39.639538 ], [ 46.494141, 38.822591 ], [ 46.406250, 39.504041 ], [ 45.527344, 39.909736 ], [ 45.878906, 40.245992 ], [ 44.912109, 41.310824 ], [ 46.494141, 41.112469 ], [ 46.318359, 41.902277 ], [ 47.373047, 41.244772 ] ] ], [ [ [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.774769 ], [ 46.142578, 38.754083 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.318359, 41.902277 ], [ 47.373047, 41.244772 ], [ 48.515625, 41.836828 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 48.867188, 38.341656 ], [ 47.988281, 38.822591 ], [ 47.988281, 39.639538 ], [ 46.494141, 38.822591 ], [ 46.406250, 39.504041 ], [ 45.527344, 39.909736 ], [ 45.878906, 40.245992 ], [ 44.912109, 41.310824 ], [ 46.494141, 41.112469 ], [ 46.318359, 41.902277 ] ] ], [ [ [ 45.000000, 39.774769 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.774769 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.142578, 38.754083 ], [ 47.988281, 39.639538 ], [ 47.988281, 38.822591 ], [ 49.130859, 37.649034 ], [ 50.800781, 36.879621 ], [ 52.207031, 36.738884 ], [ 53.876953, 37.230328 ], [ 56.601562, 38.134557 ], [ 61.083984, 36.527295 ], [ 60.468750, 32.990236 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.428663 ], [ 61.699219, 30.751278 ], [ 60.820312, 29.840644 ], [ 62.666016, 28.304381 ], [ 63.281250, 26.824071 ], [ 61.787109, 26.273714 ], [ 61.435547, 25.085599 ], [ 57.392578, 25.799891 ], [ 56.425781, 27.215556 ], [ 54.667969, 26.509905 ], [ 53.437500, 26.824071 ], [ 51.503906, 27.916767 ], [ 50.097656, 30.221102 ], [ 48.867188, 30.372875 ], [ 48.515625, 29.993002 ], [ 47.285156, 32.472695 ], [ 46.054688, 33.063924 ], [ 45.351562, 34.016242 ], [ 46.054688, 35.746512 ], [ 44.208984, 37.996163 ], [ 44.033203, 39.436193 ], [ 44.736328, 39.774769 ], [ 46.142578, 38.754083 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.736328, 39.774769 ], [ 46.142578, 38.754083 ], [ 47.988281, 39.639538 ], [ 47.988281, 38.822591 ], [ 49.130859, 37.649034 ], [ 50.800781, 36.879621 ], [ 52.207031, 36.738884 ], [ 53.876953, 37.230328 ], [ 56.601562, 38.134557 ], [ 61.083984, 36.527295 ], [ 60.468750, 32.990236 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.428663 ], [ 61.699219, 30.751278 ], [ 60.820312, 29.840644 ], [ 62.666016, 28.304381 ], [ 63.281250, 26.824071 ], [ 61.787109, 26.273714 ], [ 61.435547, 25.085599 ], [ 57.392578, 25.799891 ], [ 56.425781, 27.215556 ], [ 54.667969, 26.509905 ], [ 53.437500, 26.824071 ], [ 51.503906, 27.916767 ], [ 50.097656, 30.221102 ], [ 48.867188, 30.372875 ], [ 48.515625, 29.993002 ], [ 47.285156, 32.472695 ], [ 46.054688, 33.063924 ], [ 45.351562, 34.016242 ], [ 46.054688, 35.746512 ], [ 44.208984, 37.996163 ], [ 44.033203, 39.436193 ], [ 44.736328, 39.774769 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.900391, 29.993002 ], [ 48.339844, 28.613459 ], [ 46.494141, 29.152161 ], [ 47.285156, 30.069094 ], [ 47.900391, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.900391, 29.993002 ], [ 48.339844, 28.613459 ], [ 46.494141, 29.152161 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 31.203405 ], [ 44.648438, 29.228890 ], [ 48.339844, 28.613459 ], [ 50.097656, 26.745610 ], [ 50.185547, 25.641526 ], [ 51.328125, 24.686952 ], [ 51.943359, 23.079732 ], [ 55.195312, 22.755921 ], [ 55.634766, 22.024546 ], [ 54.931641, 20.055931 ], [ 49.042969, 18.646245 ], [ 46.933594, 16.972741 ], [ 43.330078, 17.644022 ], [ 42.714844, 16.383391 ], [ 40.869141, 19.559790 ], [ 39.111328, 21.371244 ], [ 38.408203, 23.725012 ], [ 37.441406, 24.287027 ], [ 35.068359, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.892578, 29.382175 ], [ 36.035156, 29.228890 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.578535 ], [ 39.111328, 32.175612 ], [ 41.835938, 31.203405 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 32.175612 ], [ 41.835938, 31.203405 ], [ 44.648438, 29.228890 ], [ 48.339844, 28.613459 ], [ 50.097656, 26.745610 ], [ 50.185547, 25.641526 ], [ 51.328125, 24.686952 ], [ 51.943359, 23.079732 ], [ 55.195312, 22.755921 ], [ 55.634766, 22.024546 ], [ 54.931641, 20.055931 ], [ 49.042969, 18.646245 ], [ 46.933594, 16.972741 ], [ 43.330078, 17.644022 ], [ 42.714844, 16.383391 ], [ 40.869141, 19.559790 ], [ 39.111328, 21.371244 ], [ 38.408203, 23.725012 ], [ 37.441406, 24.287027 ], [ 35.068359, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.892578, 29.382175 ], [ 36.035156, 29.228890 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.578535 ], [ 39.111328, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.591797, 25.244696 ], [ 51.328125, 24.686952 ], [ 50.800781, 24.766785 ], [ 51.240234, 26.115986 ], [ 51.591797, 25.244696 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.240234, 26.115986 ], [ 51.591797, 25.244696 ], [ 51.328125, 24.686952 ], [ 50.800781, 24.766785 ], [ 51.240234, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.898438, 24.206890 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.898438, 24.206890 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.052734, 42.358544 ], [ 55.371094, 41.310824 ], [ 57.041016, 41.376809 ], [ 56.865234, 41.836828 ], [ 58.623047, 42.811522 ], [ 59.941406, 42.228517 ], [ 60.380859, 41.244772 ], [ 61.875000, 41.112469 ], [ 62.314453, 40.111689 ], [ 64.160156, 38.959409 ], [ 66.533203, 37.996163 ], [ 66.445312, 37.370157 ], [ 65.742188, 37.718590 ], [ 62.929688, 35.460670 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 57.304688, 38.065392 ], [ 55.458984, 37.996163 ], [ 53.876953, 37.230328 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.244772 ], [ 52.470703, 41.836828 ], [ 54.052734, 42.358544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.811522 ], [ 59.941406, 42.228517 ], [ 60.380859, 41.244772 ], [ 61.875000, 41.112469 ], [ 62.314453, 40.111689 ], [ 64.160156, 38.959409 ], [ 66.533203, 37.996163 ], [ 66.445312, 37.370157 ], [ 65.742188, 37.718590 ], [ 62.929688, 35.460670 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 57.304688, 38.065392 ], [ 55.458984, 37.996163 ], [ 53.876953, 37.230328 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.178654 ], [ 52.470703, 41.836828 ], [ 54.052734, 42.358544 ], [ 55.371094, 41.310824 ], [ 57.041016, 41.376809 ], [ 56.865234, 41.836828 ], [ 58.623047, 42.811522 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 48.603516, 14.008696 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 42.539062, 15.284185 ], [ 43.330078, 17.644022 ], [ 46.933594, 16.972741 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 48.603516, 14.008696 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 42.539062, 15.284185 ], [ 43.330078, 17.644022 ], [ 46.933594, 16.972741 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.765625, 22.593726 ], [ 58.798828, 21.125498 ], [ 57.744141, 20.303418 ], [ 57.656250, 18.979026 ], [ 54.755859, 16.972741 ], [ 53.085938, 16.720385 ], [ 51.943359, 19.062118 ], [ 54.931641, 20.055931 ], [ 55.810547, 24.926295 ], [ 59.765625, 22.593726 ] ] ], [ [ [ 56.425781, 26.352498 ], [ 56.337891, 25.958045 ], [ 56.337891, 26.431228 ], [ 56.425781, 26.352498 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.810547, 24.926295 ], [ 59.765625, 22.593726 ], [ 58.798828, 21.125498 ], [ 57.744141, 20.303418 ], [ 57.656250, 18.979026 ], [ 54.755859, 16.972741 ], [ 53.085938, 16.720385 ], [ 51.943359, 19.062118 ], [ 54.931641, 20.055931 ], [ 55.810547, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.425781, 26.352498 ], [ 56.337891, 25.958045 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 10.487812 ], [ 48.867188, 11.436955 ], [ 48.867188, 9.535749 ], [ 47.724609, 8.059230 ], [ 46.933594, 8.059230 ], [ 43.593750, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.066406, 11.523088 ], [ 44.560547, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 11.523088 ], [ 44.560547, 10.487812 ], [ 48.867188, 11.436955 ], [ 48.867188, 9.535749 ], [ 47.724609, 8.059230 ], [ 46.933594, 8.059230 ], [ 43.593750, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.066406, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 10.660608 ], [ 48.515625, 5.353521 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.790990 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.302591 ], [ 44.912109, 5.003394 ], [ 48.867188, 9.535749 ], [ 48.867188, 11.436955 ], [ 49.658203, 11.609193 ], [ 51.064453, 12.039321 ], [ 50.976562, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.064453, 12.039321 ], [ 50.976562, 10.660608 ], [ 48.515625, 5.353521 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.790990 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.302591 ], [ 44.912109, 5.003394 ], [ 48.867188, 9.535749 ], [ 48.867188, 11.436955 ], [ 49.658203, 11.609193 ], [ 51.064453, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.400391, 40.513799 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 71.806641, 36.738884 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 69.169922, 37.160317 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 71.806641, 36.738884 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 69.169922, 37.160317 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.279297, 38.272689 ], [ 71.806641, 36.738884 ], [ 73.212891, 37.509726 ], [ 75.146484, 37.160317 ], [ 71.806641, 36.527295 ], [ 71.191406, 36.102376 ], [ 71.542969, 35.173808 ], [ 70.839844, 34.016242 ], [ 69.873047, 34.089061 ], [ 70.312500, 33.431441 ], [ 69.257812, 32.546813 ], [ 69.257812, 31.952162 ], [ 66.884766, 31.353637 ], [ 66.269531, 29.916852 ], [ 64.072266, 29.382175 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.468750, 32.990236 ], [ 61.171875, 35.675147 ], [ 62.929688, 35.460670 ], [ 65.742188, 37.718590 ], [ 69.169922, 37.160317 ], [ 70.751953, 38.548165 ], [ 71.279297, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.751953, 38.548165 ], [ 71.279297, 38.272689 ], [ 71.806641, 36.738884 ], [ 73.212891, 37.509726 ], [ 75.146484, 37.160317 ], [ 71.806641, 36.527295 ], [ 71.191406, 36.102376 ], [ 71.542969, 35.173808 ], [ 70.839844, 34.016242 ], [ 69.873047, 34.089061 ], [ 70.312500, 33.431441 ], [ 69.257812, 32.546813 ], [ 69.257812, 31.952162 ], [ 66.884766, 31.353637 ], [ 66.269531, 29.916852 ], [ 64.072266, 29.382175 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.468750, 32.990236 ], [ 61.171875, 35.675147 ], [ 62.929688, 35.460670 ], [ 65.742188, 37.718590 ], [ 69.169922, 37.160317 ], [ 70.751953, 38.548165 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.113281, 35.960223 ], [ 77.783203, 35.532226 ], [ 76.816406, 34.669359 ], [ 74.179688, 34.813803 ], [ 73.740234, 34.379713 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.324276 ], [ 71.718750, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.433594, 26.980829 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.115234, 23.725012 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 62.666016, 28.304381 ], [ 60.820312, 29.840644 ], [ 62.490234, 29.382175 ], [ 66.269531, 29.916852 ], [ 66.884766, 31.353637 ], [ 69.257812, 31.952162 ], [ 69.257812, 32.546813 ], [ 70.312500, 33.431441 ], [ 69.873047, 34.089061 ], [ 70.839844, 34.016242 ], [ 71.542969, 35.173808 ], [ 71.191406, 36.102376 ], [ 75.146484, 37.160317 ], [ 76.113281, 35.960223 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 76.113281, 35.960223 ], [ 77.783203, 35.532226 ], [ 76.816406, 34.669359 ], [ 74.179688, 34.813803 ], [ 73.740234, 34.379713 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.324276 ], [ 71.718750, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.433594, 26.980829 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.115234, 23.725012 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 62.666016, 28.304381 ], [ 60.820312, 29.840644 ], [ 62.490234, 29.382175 ], [ 66.269531, 29.916852 ], [ 66.884766, 31.353637 ], [ 69.257812, 31.952162 ], [ 69.257812, 32.546813 ], [ 70.312500, 33.431441 ], [ 69.873047, 34.089061 ], [ 70.839844, 34.016242 ], [ 71.542969, 35.173808 ], [ 71.191406, 36.102376 ], [ 75.146484, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 81.474609, 30.448674 ], [ 85.781250, 28.226970 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.474609, 30.448674 ], [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 81.474609, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.837891, 34.379713 ], [ 79.189453, 33.063924 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.620870 ], [ 78.662109, 31.578535 ], [ 81.035156, 30.221102 ], [ 80.068359, 28.844674 ], [ 83.232422, 27.371767 ], [ 87.978516, 26.431228 ], [ 88.066406, 27.916767 ], [ 88.681641, 28.149503 ], [ 88.769531, 27.137368 ], [ 89.736328, 26.745610 ], [ 92.021484, 26.902477 ], [ 91.669922, 27.839076 ], [ 94.482422, 29.305561 ], [ 95.361328, 29.075375 ], [ 96.064453, 29.458731 ], [ 96.503906, 28.844674 ], [ 96.240234, 28.459033 ], [ 97.382812, 27.916767 ], [ 97.119141, 27.137368 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 94.482422, 24.686952 ], [ 94.042969, 23.885838 ], [ 93.251953, 24.126702 ], [ 93.164062, 22.350076 ], [ 92.636719, 22.105999 ], [ 92.109375, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.563987 ], [ 92.373047, 25.005973 ], [ 89.912109, 25.324167 ], [ 89.824219, 26.037042 ], [ 88.505859, 26.509905 ], [ 88.154297, 25.799891 ], [ 88.857422, 25.244696 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.287027 ], [ 88.857422, 21.698265 ], [ 86.923828, 21.534847 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 82.177734, 16.636192 ], [ 80.244141, 15.961329 ], [ 79.804688, 10.401378 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 73.476562, 16.045813 ], [ 72.597656, 21.371244 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 69.433594, 26.980829 ], [ 70.576172, 27.994401 ], [ 71.718750, 27.916767 ], [ 75.234375, 32.324276 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.379713 ], [ 74.179688, 34.813803 ], [ 76.816406, 34.669359 ], [ 77.783203, 35.532226 ], [ 78.837891, 34.379713 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.783203, 35.532226 ], [ 78.837891, 34.379713 ], [ 79.189453, 33.063924 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.620870 ], [ 78.662109, 31.578535 ], [ 81.035156, 30.221102 ], [ 80.068359, 28.844674 ], [ 83.232422, 27.371767 ], [ 87.978516, 26.431228 ], [ 88.066406, 27.916767 ], [ 88.681641, 28.149503 ], [ 88.769531, 27.137368 ], [ 89.736328, 26.745610 ], [ 92.021484, 26.902477 ], [ 91.669922, 27.839076 ], [ 94.482422, 29.305561 ], [ 95.361328, 29.075375 ], [ 96.064453, 29.458731 ], [ 96.503906, 28.844674 ], [ 96.240234, 28.459033 ], [ 97.382812, 27.916767 ], [ 97.119141, 27.137368 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 94.482422, 24.686952 ], [ 94.042969, 23.885838 ], [ 93.251953, 24.126702 ], [ 93.164062, 22.350076 ], [ 92.636719, 22.105999 ], [ 92.109375, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.563987 ], [ 92.373047, 25.005973 ], [ 89.912109, 25.324167 ], [ 89.824219, 26.037042 ], [ 88.505859, 26.509905 ], [ 88.154297, 25.799891 ], [ 88.857422, 25.244696 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.287027 ], [ 88.857422, 21.698265 ], [ 86.923828, 21.534847 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 82.177734, 16.636192 ], [ 80.244141, 15.961329 ], [ 79.804688, 10.401378 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 73.476562, 16.045813 ], [ 72.597656, 21.371244 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 69.433594, 26.980829 ], [ 70.576172, 27.994401 ], [ 71.718750, 27.916767 ], [ 75.234375, 32.324276 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.379713 ], [ 74.179688, 34.813803 ], [ 76.816406, 34.669359 ], [ 77.783203, 35.532226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 80.332031, 6.053161 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 80.332031, 6.053161 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.041016, 51.289406 ], [ 102.216797, 50.513427 ], [ 103.623047, 50.120578 ], [ 106.875000, 50.289339 ], [ 108.457031, 49.325122 ], [ 110.654297, 49.152970 ], [ 112.851562, 49.553726 ], [ 114.345703, 50.289339 ], [ 115.400391, 49.837982 ], [ 116.630859, 49.894634 ], [ 115.400391, 48.166085 ], [ 115.664062, 47.754098 ], [ 117.246094, 47.754098 ], [ 118.037109, 48.107431 ], [ 119.707031, 47.100045 ], [ 119.619141, 46.739861 ], [ 117.333984, 46.679594 ], [ 113.378906, 44.840291 ], [ 111.796875, 45.151053 ], [ 111.269531, 44.465151 ], [ 111.796875, 43.771094 ], [ 110.390625, 42.875964 ], [ 104.941406, 41.640078 ], [ 100.810547, 42.682435 ], [ 96.328125, 42.747012 ], [ 95.273438, 44.276671 ], [ 93.427734, 45.026950 ], [ 90.878906, 45.336702 ], [ 90.527344, 45.767523 ], [ 90.966797, 46.920255 ], [ 90.263672, 47.694974 ], [ 87.978516, 48.632909 ], [ 87.714844, 49.325122 ], [ 92.197266, 50.847573 ], [ 94.130859, 50.513427 ], [ 94.746094, 50.064192 ], [ 97.207031, 49.781264 ], [ 98.173828, 50.457504 ], [ 97.822266, 51.013755 ], [ 98.789062, 52.052490 ], [ 102.041016, 51.289406 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.789062, 52.052490 ], [ 102.041016, 51.289406 ], [ 102.216797, 50.513427 ], [ 103.623047, 50.120578 ], [ 106.875000, 50.289339 ], [ 108.457031, 49.325122 ], [ 110.654297, 49.152970 ], [ 112.851562, 49.553726 ], [ 114.345703, 50.289339 ], [ 115.400391, 49.837982 ], [ 116.630859, 49.894634 ], [ 115.400391, 48.166085 ], [ 115.664062, 47.754098 ], [ 117.246094, 47.754098 ], [ 118.037109, 48.107431 ], [ 119.707031, 47.100045 ], [ 119.619141, 46.739861 ], [ 117.333984, 46.679594 ], [ 113.378906, 44.840291 ], [ 111.796875, 45.151053 ], [ 111.269531, 44.465151 ], [ 111.796875, 43.771094 ], [ 110.390625, 42.875964 ], [ 104.941406, 41.640078 ], [ 100.810547, 42.682435 ], [ 96.328125, 42.747012 ], [ 95.273438, 44.276671 ], [ 93.427734, 45.026950 ], [ 90.878906, 45.336702 ], [ 90.527344, 45.767523 ], [ 90.966797, 46.920255 ], [ 90.263672, 47.694974 ], [ 87.978516, 48.632909 ], [ 87.714844, 49.325122 ], [ 92.197266, 50.847573 ], [ 94.130859, 50.513427 ], [ 94.746094, 50.064192 ], [ 97.207031, 49.781264 ], [ 98.173828, 50.457504 ], [ 97.822266, 51.013755 ], [ 98.789062, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.669922, 27.839076 ], [ 92.021484, 26.902477 ], [ 88.769531, 27.137368 ], [ 90.000000, 28.304381 ], [ 91.669922, 27.839076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 91.669922, 27.839076 ], [ 92.021484, 26.902477 ], [ 88.769531, 27.137368 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.824219, 26.037042 ], [ 89.912109, 25.324167 ], [ 92.373047, 25.005973 ], [ 91.142578, 23.563987 ], [ 91.669922, 22.998852 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.105999 ], [ 92.285156, 20.715015 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.263672, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.681641, 24.287027 ], [ 88.066406, 24.527135 ], [ 88.857422, 25.244696 ], [ 88.154297, 25.799891 ], [ 88.505859, 26.509905 ], [ 89.824219, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.505859, 26.509905 ], [ 89.824219, 26.037042 ], [ 89.912109, 25.324167 ], [ 92.373047, 25.005973 ], [ 91.142578, 23.563987 ], [ 91.669922, 22.998852 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.105999 ], [ 92.285156, 20.715015 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.263672, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.681641, 24.287027 ], [ 88.066406, 24.527135 ], [ 88.857422, 25.244696 ], [ 88.154297, 25.799891 ], [ 88.505859, 26.509905 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 110.742188, 20.138470 ], [ 110.302734, 18.729502 ] ] ], [ [ [ 125.859375, 52.802761 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 135.000000, 48.516604 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 126.826172, 41.836828 ], [ 124.189453, 39.977120 ], [ 121.025391, 38.959409 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 117.509766, 38.754083 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.863281, 21.453069 ], [ 106.962891, 21.861499 ], [ 106.699219, 22.836946 ], [ 105.292969, 23.402765 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 97.910156, 28.381735 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 92.460938, 27.916767 ], [ 90.000000, 28.304381 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 85.781250, 28.226970 ], [ 82.265625, 30.145127 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 73.916016, 38.548165 ], [ 73.740234, 39.909736 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 80.068359, 42.163403 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 95.273438, 44.276671 ], [ 96.328125, 42.747012 ], [ 100.810547, 42.682435 ], [ 104.941406, 41.640078 ], [ 110.390625, 42.875964 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 117.333984, 46.679594 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 120.673828, 51.998410 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 123.486328, 53.488046 ], [ 125.859375, 52.802761 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 123.486328, 53.488046 ], [ 125.859375, 52.802761 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 135.000000, 48.516604 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 126.826172, 41.836828 ], [ 124.189453, 39.977120 ], [ 121.025391, 38.959409 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 117.509766, 38.754083 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.863281, 21.453069 ], [ 106.962891, 21.861499 ], [ 106.699219, 22.836946 ], [ 105.292969, 23.402765 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 97.910156, 28.381735 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 92.460938, 27.916767 ], [ 90.000000, 28.304381 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 85.781250, 28.226970 ], [ 82.265625, 30.145127 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 73.916016, 38.548165 ], [ 73.740234, 39.909736 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 80.068359, 42.163403 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 95.273438, 44.276671 ], [ 96.328125, 42.747012 ], [ 100.810547, 42.682435 ], [ 104.941406, 41.640078 ], [ 110.390625, 42.875964 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 117.333984, 46.679594 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 120.673828, 51.998410 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 123.486328, 53.488046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.613281, 27.527758 ], [ 98.613281, 25.958045 ], [ 97.646484, 25.085599 ], [ 97.558594, 23.966176 ], [ 98.613281, 24.126702 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.998852 ], [ 99.228516, 22.187405 ], [ 100.371094, 21.616579 ], [ 101.074219, 21.861499 ], [ 99.492188, 20.220966 ], [ 98.173828, 19.725342 ], [ 97.294922, 18.479609 ], [ 98.876953, 16.214675 ], [ 98.173828, 15.199386 ], [ 99.580078, 11.953349 ], [ 98.525391, 9.968851 ], [ 98.437500, 13.154376 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.306641, 18.229351 ], [ 93.603516, 19.808054 ], [ 92.285156, 20.715015 ], [ 92.285156, 21.534847 ], [ 92.636719, 21.371244 ], [ 93.164062, 22.350076 ], [ 93.251953, 24.126702 ], [ 94.042969, 23.885838 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.137368 ], [ 97.294922, 28.304381 ], [ 97.910156, 28.381735 ], [ 98.613281, 27.527758 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.381735 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.958045 ], [ 97.646484, 25.085599 ], [ 97.558594, 23.966176 ], [ 98.613281, 24.126702 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.998852 ], [ 99.228516, 22.187405 ], [ 100.371094, 21.616579 ], [ 101.074219, 21.861499 ], [ 99.492188, 20.220966 ], [ 98.173828, 19.725342 ], [ 97.294922, 18.479609 ], [ 98.876953, 16.214675 ], [ 98.173828, 15.199386 ], [ 99.580078, 11.953349 ], [ 98.525391, 9.968851 ], [ 98.437500, 13.154376 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.306641, 18.229351 ], [ 93.603516, 19.808054 ], [ 92.285156, 20.715015 ], [ 92.285156, 21.534847 ], [ 92.636719, 21.371244 ], [ 93.164062, 22.350076 ], [ 93.251953, 24.126702 ], [ 94.042969, 23.885838 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.137368 ], [ 97.294922, 28.304381 ], [ 97.910156, 28.381735 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 107.226562, 15.961329 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.556641, 15.623037 ], [ 103.886719, 18.312811 ], [ 100.986328, 17.560247 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.107422, 20.468189 ], [ 101.162109, 21.453069 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ], [ 103.183594, 20.797201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.512557 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 107.226562, 15.961329 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.556641, 15.623037 ], [ 103.886719, 18.312811 ], [ 100.986328, 17.560247 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.107422, 20.468189 ], [ 101.162109, 21.453069 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 17.560247 ], [ 103.183594, 18.312811 ], [ 104.677734, 17.476432 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.140625, 9.968851 ], [ 100.458984, 7.449624 ], [ 102.128906, 6.227934 ], [ 101.074219, 5.703448 ], [ 98.085938, 8.407168 ], [ 99.580078, 11.953349 ], [ 98.173828, 15.199386 ], [ 98.876953, 16.214675 ], [ 97.294922, 18.479609 ], [ 98.173828, 19.725342 ], [ 100.107422, 20.468189 ], [ 100.546875, 19.559790 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.468189 ], [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 17.560247 ], [ 103.183594, 18.312811 ], [ 104.677734, 17.476432 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.140625, 9.968851 ], [ 100.458984, 7.449624 ], [ 102.128906, 6.227934 ], [ 101.074219, 5.703448 ], [ 98.085938, 8.407168 ], [ 99.580078, 11.953349 ], [ 98.173828, 15.199386 ], [ 98.876953, 16.214675 ], [ 97.294922, 18.479609 ], [ 98.173828, 19.725342 ], [ 100.107422, 20.468189 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.699219, 22.836946 ], [ 106.962891, 21.861499 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.644531, 19.062118 ], [ 108.808594, 15.284185 ], [ 109.160156, 11.695273 ], [ 105.117188, 8.667918 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 106.171875, 11.005904 ], [ 105.732422, 11.609193 ], [ 107.490234, 12.382928 ], [ 107.490234, 15.284185 ], [ 105.029297, 18.729502 ], [ 103.886719, 19.311143 ], [ 104.765625, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.512557 ], [ 105.292969, 23.402765 ], [ 106.699219, 22.836946 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.402765 ], [ 106.699219, 22.836946 ], [ 106.962891, 21.861499 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.644531, 19.062118 ], [ 108.808594, 15.284185 ], [ 109.160156, 11.695273 ], [ 105.117188, 8.667918 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 106.171875, 11.005904 ], [ 105.732422, 11.609193 ], [ 107.490234, 12.382928 ], [ 107.490234, 15.284185 ], [ 105.029297, 18.729502 ], [ 103.886719, 19.311143 ], [ 104.765625, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.512557 ], [ 105.292969, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.314453, 14.264383 ], [ 107.490234, 12.382928 ], [ 105.732422, 11.609193 ], [ 106.171875, 11.005904 ], [ 103.447266, 10.660608 ], [ 102.304688, 13.410994 ], [ 102.919922, 14.264383 ], [ 105.996094, 13.923404 ], [ 106.435547, 14.604847 ], [ 107.314453, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 14.604847 ], [ 107.314453, 14.264383 ], [ 107.490234, 12.382928 ], [ 105.732422, 11.609193 ], [ 106.171875, 11.005904 ], [ 103.447266, 10.660608 ], [ 102.304688, 13.410994 ], [ 102.919922, 14.264383 ], [ 105.996094, 13.923404 ], [ 106.435547, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.179688, 5.441022 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 115.839844, 4.390229 ], [ 114.609375, 1.493971 ], [ 110.478516, 0.790990 ], [ 109.775391, 1.406109 ], [ 109.599609, 2.021065 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 114.609375, 4.039618 ], [ 115.312500, 4.390229 ], [ 115.400391, 5.528511 ], [ 116.718750, 6.926427 ], [ 119.179688, 5.441022 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.074219, 5.703448 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 100.019531, 6.489983 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.718750, 6.926427 ], [ 119.179688, 5.441022 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 115.839844, 4.390229 ], [ 114.609375, 1.493971 ], [ 110.478516, 0.790990 ], [ 109.775391, 1.406109 ], [ 109.599609, 2.021065 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 114.609375, 4.039618 ], [ 115.312500, 4.390229 ], [ 115.400391, 5.528511 ], [ 116.718750, 6.926427 ] ] ], [ [ [ 100.019531, 6.489983 ], [ 101.074219, 6.227934 ], [ 101.074219, 5.703448 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 100.019531, 6.489983 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.058594, 23.563987 ], [ 121.464844, 25.324167 ], [ 121.728516, 24.447150 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.058594, 23.563987 ], [ 121.464844, 25.324167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.605469, 42.423457 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 127.529297, 39.774769 ], [ 127.353516, 39.232253 ], [ 128.144531, 38.410558 ], [ 125.244141, 37.718590 ], [ 124.628906, 38.134557 ], [ 125.244141, 39.571822 ], [ 124.189453, 39.977120 ], [ 126.826172, 41.836828 ], [ 128.144531, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.550781, 42.488302 ], [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 127.529297, 39.774769 ], [ 127.353516, 39.232253 ], [ 128.144531, 38.410558 ], [ 125.244141, 37.718590 ], [ 124.628906, 38.134557 ], [ 125.244141, 39.571822 ], [ 124.189453, 39.977120 ], [ 126.826172, 41.836828 ], [ 128.144531, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.550781, 42.488302 ], [ 129.990234, 43.004647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 126.474609, 34.452218 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 128.320312, 38.616870 ], [ 129.375000, 36.809285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 126.474609, 34.452218 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 128.320312, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 121.904297, 7.275292 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ] ] ], [ [ [ 119.619141, 10.574222 ], [ 118.476562, 9.362353 ], [ 117.246094, 8.494105 ], [ 119.443359, 11.436955 ], [ 119.619141, 10.574222 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.398438, 10.487812 ], [ 124.013672, 11.264612 ] ] ], [ [ [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ], [ 125.419922, 12.211180 ] ] ], [ [ [ 123.046875, 11.609193 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ], [ 123.046875, 11.609193 ] ] ], [ [ [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ] ] ], [ [ [ 122.167969, 18.479609 ], [ 122.431641, 17.140790 ], [ 121.640625, 15.961329 ], [ 121.728516, 14.349548 ], [ 123.925781, 13.838080 ], [ 124.013672, 12.554564 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 120.585938, 13.923404 ], [ 120.937500, 14.604847 ], [ 120.058594, 15.029686 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ], [ 122.167969, 18.479609 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 121.904297, 7.275292 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ] ] ], [ [ [ 119.443359, 11.436955 ], [ 119.619141, 10.574222 ], [ 118.476562, 9.362353 ], [ 117.158203, 8.407168 ], [ 119.443359, 11.436955 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.310547, 10.314919 ], [ 124.013672, 11.264612 ] ] ], [ [ [ 124.189453, 12.640338 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ] ] ], [ [ [ 121.816406, 11.953349 ], [ 123.046875, 11.609193 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ] ] ], [ [ [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ] ] ], [ [ [ 121.289062, 18.562947 ], [ 122.167969, 18.479609 ], [ 122.431641, 17.140790 ], [ 121.640625, 15.961329 ], [ 121.728516, 14.349548 ], [ 123.925781, 13.838080 ], [ 124.013672, 12.554564 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 120.585938, 13.923404 ], [ 120.937500, 14.604847 ], [ 120.058594, 15.029686 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.390229 ], [ 114.609375, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ], [ 115.312500, 4.390229 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.400391, 5.528511 ], [ 115.312500, 4.390229 ], [ 114.609375, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.185547, 35.173808 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.375000, 33.358062 ], [ 132.539062, 35.460670 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ], [ 141.855469, 39.232253 ] ] ], [ [ [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.890625, 34.089061 ], [ 134.560547, 34.161818 ], [ 134.121094, 33.211116 ] ] ], [ [ [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.943359, 45.583290 ], [ 143.876953, 44.213710 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.442726 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.185547, 35.173808 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.375000, 33.358062 ], [ 132.539062, 35.460670 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ] ] ], [ [ [ 134.560547, 34.161818 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.890625, 34.089061 ], [ 134.560547, 34.161818 ] ] ], [ [ [ 141.943359, 45.583290 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.943359, 45.583290 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.505859, -18.145852 ], [ 177.363281, -18.145852 ], [ 177.626953, -17.308688 ], [ 178.330078, -17.308688 ], [ 178.505859, -18.145852 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -180.000000, -16.467695 ], [ -180.000000, -16.045813 ], [ -179.824219, -15.961329 ], [ -180.000000, -16.467695 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.505859, -18.145852 ], [ 177.363281, -18.145852 ], [ 177.626953, -17.308688 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ] ] ], [ [ [ -179.824219, -15.961329 ], [ -180.000000, -16.467695 ], [ -180.000000, -16.045813 ], [ -179.824219, -15.961329 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.271484, 1.318243 ], [ 14.238281, 1.230374 ], [ 13.798828, 0.087891 ], [ 14.238281, -1.933227 ], [ 13.974609, -2.460181 ], [ 12.568359, -1.933227 ], [ 11.425781, -2.723583 ], [ 11.777344, -3.425692 ], [ 11.074219, -3.951941 ], [ 8.789062, -0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.142502 ], [ 11.250000, 2.284551 ], [ 12.919922, 2.372369 ], [ 13.271484, 1.318243 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.372369 ], [ 13.271484, 1.318243 ], [ 14.238281, 1.230374 ], [ 13.798828, 0.087891 ], [ 14.238281, -1.933227 ], [ 13.974609, -2.460181 ], [ 12.568359, -1.933227 ], [ 11.425781, -2.723583 ], [ 11.777344, -3.425692 ], [ 11.074219, -3.951941 ], [ 8.789062, -0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.142502 ], [ 11.250000, 2.284551 ], [ 12.919922, 2.372369 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 3.513421 ], [ 17.578125, -0.351560 ], [ 16.347656, -1.669686 ], [ 15.996094, -3.513421 ], [ 14.501953, -4.915833 ], [ 14.062500, -4.477856 ], [ 12.919922, -4.740675 ], [ 12.568359, -4.390229 ], [ 11.865234, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.777344, -3.425692 ], [ 11.425781, -2.723583 ], [ 12.568359, -1.933227 ], [ 13.974609, -2.460181 ], [ 14.238281, -1.933227 ], [ 13.798828, 0.087891 ], [ 14.238281, 1.230374 ], [ 13.271484, 1.318243 ], [ 13.007812, 2.284551 ], [ 15.908203, 1.757537 ], [ 17.050781, 3.776559 ], [ 18.369141, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.050781, 3.776559 ], [ 18.369141, 3.513421 ], [ 17.578125, -0.351560 ], [ 16.347656, -1.669686 ], [ 15.996094, -3.513421 ], [ 14.501953, -4.915833 ], [ 14.062500, -4.477856 ], [ 12.919922, -4.740675 ], [ 12.568359, -4.390229 ], [ 11.865234, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.777344, -3.425692 ], [ 11.425781, -2.723583 ], [ 12.568359, -1.933227 ], [ 13.974609, -2.460181 ], [ 14.238281, -1.933227 ], [ 13.798828, 0.087891 ], [ 14.238281, 1.230374 ], [ 13.271484, 1.318243 ], [ 13.007812, 2.284551 ], [ 15.908203, 1.757537 ], [ 17.050781, 3.776559 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.477856 ], [ 29.707031, 4.653080 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.113281, 2.284551 ], [ 29.794922, 0.615223 ], [ 29.003906, -2.811371 ], [ 29.355469, -5.878332 ], [ 30.673828, -8.320212 ], [ 28.916016, -8.320212 ], [ 28.388672, -9.102097 ], [ 28.300781, -11.781325 ], [ 29.531250, -12.125264 ], [ 29.619141, -13.239945 ], [ 28.916016, -13.239945 ], [ 27.158203, -11.523088 ], [ 26.542969, -11.867351 ], [ 24.169922, -10.919618 ], [ 22.148438, -11.005904 ], [ 21.708984, -7.275292 ], [ 20.039062, -6.926427 ], [ 18.984375, -7.972198 ], [ 17.402344, -8.059230 ], [ 16.259766, -5.790897 ], [ 12.304688, -6.053161 ], [ 12.568359, -4.915833 ], [ 13.535156, -4.477856 ], [ 14.501953, -4.915833 ], [ 15.996094, -3.513421 ], [ 16.347656, -1.669686 ], [ 17.578125, -0.351560 ], [ 18.457031, 4.214943 ], [ 19.423828, 5.090944 ], [ 22.324219, 4.039618 ], [ 22.763672, 4.740675 ], [ 24.345703, 5.178482 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.477856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.477856 ], [ 29.707031, 4.653080 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.113281, 2.284551 ], [ 29.794922, 0.615223 ], [ 29.003906, -2.811371 ], [ 29.355469, -5.878332 ], [ 30.673828, -8.320212 ], [ 28.916016, -8.320212 ], [ 28.388672, -9.102097 ], [ 28.300781, -11.781325 ], [ 29.531250, -12.125264 ], [ 29.619141, -13.239945 ], [ 28.916016, -13.239945 ], [ 27.158203, -11.523088 ], [ 26.542969, -11.867351 ], [ 24.169922, -10.919618 ], [ 22.148438, -11.005904 ], [ 21.708984, -7.275292 ], [ 20.039062, -6.926427 ], [ 18.984375, -7.972198 ], [ 17.402344, -8.059230 ], [ 16.259766, -5.790897 ], [ 12.304688, -6.053161 ], [ 12.568359, -4.915833 ], [ 13.535156, -4.477856 ], [ 14.501953, -4.915833 ], [ 15.996094, -3.513421 ], [ 16.347656, -1.669686 ], [ 17.578125, -0.351560 ], [ 18.457031, 4.214943 ], [ 19.423828, 5.090944 ], [ 22.324219, 4.039618 ], [ 22.763672, 4.740675 ], [ 24.345703, 5.178482 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.402344, -8.059230 ], [ 18.984375, -7.972198 ], [ 20.039062, -6.926427 ], [ 21.708984, -7.275292 ], [ 22.148438, -11.005904 ], [ 23.906250, -10.919618 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 11.689453, -17.224758 ], [ 12.128906, -14.434680 ], [ 13.710938, -11.264612 ], [ 12.216797, -6.227934 ], [ 16.259766, -5.790897 ], [ 17.402344, -8.059230 ] ] ], [ [ [ 12.919922, -4.740675 ], [ 12.392578, -5.615986 ], [ 11.865234, -5.003394 ], [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.259766, -5.790897 ], [ 17.402344, -8.059230 ], [ 18.984375, -7.972198 ], [ 20.039062, -6.926427 ], [ 21.708984, -7.275292 ], [ 22.148438, -11.005904 ], [ 23.906250, -10.919618 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 11.689453, -17.224758 ], [ 12.128906, -14.434680 ], [ 13.710938, -11.264612 ], [ 12.216797, -6.227934 ], [ 16.259766, -5.790897 ] ] ], [ [ [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ], [ 12.392578, -5.615986 ], [ 11.865234, -5.003394 ], [ 12.568359, -4.390229 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.974609, -17.392579 ], [ 18.193359, -17.308688 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.224758 ], [ 25.048828, -17.560247 ], [ 23.554688, -18.229351 ], [ 23.115234, -17.811456 ], [ 20.830078, -18.229351 ], [ 20.830078, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.459033 ], [ 18.457031, -28.998532 ], [ 16.787109, -28.071980 ], [ 16.259766, -28.536275 ], [ 15.205078, -27.059126 ], [ 14.238281, -22.105999 ], [ 11.689453, -17.224758 ], [ 13.447266, -16.888660 ], [ 13.974609, -17.392579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.888660 ], [ 13.974609, -17.392579 ], [ 18.193359, -17.308688 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.224758 ], [ 25.048828, -17.560247 ], [ 23.554688, -18.229351 ], [ 23.115234, -17.811456 ], [ 20.830078, -18.229351 ], [ 20.830078, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.459033 ], [ 18.457031, -28.998532 ], [ 16.787109, -28.071980 ], [ 16.259766, -28.536275 ], [ 15.205078, -27.059126 ], [ 14.238281, -22.105999 ], [ 11.689453, -17.224758 ], [ 13.447266, -16.888660 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.673828, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -1.581830 ], [ 30.410156, -1.054628 ], [ 30.673828, -2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.054628 ], [ 30.673828, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -1.581830 ], [ 30.410156, -1.054628 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.673828, -3.337954 ], [ 29.267578, -4.477856 ], [ 29.003906, -2.811371 ], [ 30.410156, -2.372369 ], [ 30.673828, -3.337954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -2.372369 ], [ 30.673828, -3.337954 ], [ 29.267578, -4.477856 ], [ 29.003906, -2.811371 ], [ 30.410156, -2.372369 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, -9.188870 ], [ 33.398438, -10.487812 ], [ 32.607422, -13.667338 ], [ 33.134766, -13.923404 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.453680 ], [ 28.916016, -15.961329 ], [ 26.982422, -17.895114 ], [ 23.203125, -17.476432 ], [ 21.884766, -16.045813 ], [ 21.884766, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -10.919618 ], [ 25.751953, -11.781325 ], [ 27.158203, -11.523088 ], [ 28.916016, -13.239945 ], [ 29.619141, -13.239945 ], [ 29.531250, -12.125264 ], [ 28.300781, -11.781325 ], [ 28.652344, -8.494105 ], [ 30.322266, -8.233237 ], [ 32.695312, -9.188870 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.695312, -9.188870 ], [ 33.398438, -10.487812 ], [ 32.607422, -13.667338 ], [ 33.134766, -13.923404 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.453680 ], [ 28.916016, -15.961329 ], [ 26.982422, -17.895114 ], [ 23.203125, -17.476432 ], [ 21.884766, -16.045813 ], [ 21.884766, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -10.919618 ], [ 25.751953, -11.781325 ], [ 27.158203, -11.523088 ], [ 28.916016, -13.239945 ], [ 29.619141, -13.239945 ], [ 29.531250, -12.125264 ], [ 28.300781, -11.781325 ], [ 28.652344, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.783203, -16.636192 ], [ 32.607422, -20.303418 ], [ 31.113281, -22.187405 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.468189 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.916016, -15.961329 ], [ 30.234375, -15.453680 ], [ 32.783203, -16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 32.783203, -16.636192 ], [ 32.607422, -20.303418 ], [ 31.113281, -22.187405 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.468189 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.916016, -15.961329 ], [ 30.234375, -15.453680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.617188, -3.074695 ], [ 39.199219, -4.653080 ], [ 38.671875, -5.878332 ], [ 39.375000, -6.839170 ], [ 39.111328, -8.407168 ], [ 40.253906, -10.314919 ], [ 39.462891, -10.833306 ], [ 36.474609, -11.695273 ], [ 34.541016, -11.436955 ], [ 33.662109, -9.362353 ], [ 30.673828, -8.320212 ], [ 29.619141, -6.489983 ], [ 29.267578, -4.477856 ], [ 30.673828, -3.337954 ], [ 30.410156, -1.054628 ], [ 33.837891, -0.878872 ], [ 37.617188, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.837891, -0.878872 ], [ 37.617188, -3.074695 ], [ 39.199219, -4.653080 ], [ 38.671875, -5.878332 ], [ 39.375000, -6.839170 ], [ 39.111328, -8.407168 ], [ 40.253906, -10.314919 ], [ 39.462891, -10.833306 ], [ 36.474609, -11.695273 ], [ 34.541016, -11.436955 ], [ 33.662109, -9.362353 ], [ 30.673828, -8.320212 ], [ 29.619141, -6.489983 ], [ 29.267578, -4.477856 ], [ 30.673828, -3.337954 ], [ 30.410156, -1.054628 ], [ 33.837891, -0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.662109, -9.362353 ], [ 34.541016, -11.436955 ], [ 34.541016, -13.496473 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 34.980469, -16.720385 ], [ 34.365234, -16.130262 ], [ 34.453125, -14.604847 ], [ 32.607422, -13.667338 ], [ 33.398438, -10.487812 ], [ 32.695312, -9.188870 ], [ 33.662109, -9.362353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, -9.188870 ], [ 33.662109, -9.362353 ], [ 34.541016, -11.436955 ], [ 34.541016, -13.496473 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 34.980469, -16.720385 ], [ 34.365234, -16.130262 ], [ 34.453125, -14.604847 ], [ 32.607422, -13.667338 ], [ 33.398438, -10.487812 ], [ 32.695312, -9.188870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.693359, -14.689881 ], [ 39.375000, -16.720385 ], [ 37.353516, -17.560247 ], [ 34.716797, -19.725342 ], [ 35.507812, -22.024546 ], [ 35.419922, -24.046464 ], [ 32.958984, -25.324167 ], [ 32.519531, -25.720735 ], [ 32.783203, -26.667096 ], [ 31.992188, -26.667096 ], [ 31.113281, -22.187405 ], [ 32.607422, -20.303418 ], [ 32.783203, -16.636192 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.134766, -13.923404 ], [ 34.453125, -14.604847 ], [ 34.365234, -16.130262 ], [ 34.980469, -16.720385 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 34.541016, -13.496473 ], [ 34.541016, -11.436955 ], [ 37.441406, -11.523088 ], [ 40.253906, -10.314919 ], [ 40.693359, -14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, -10.314919 ], [ 40.693359, -14.689881 ], [ 39.375000, -16.720385 ], [ 37.353516, -17.560247 ], [ 34.716797, -19.725342 ], [ 35.507812, -22.024546 ], [ 35.419922, -24.046464 ], [ 32.958984, -25.324167 ], [ 32.519531, -25.720735 ], [ 32.783203, -26.667096 ], [ 31.992188, -26.667096 ], [ 31.113281, -22.187405 ], [ 32.607422, -20.303418 ], [ 32.783203, -16.636192 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.134766, -13.923404 ], [ 34.453125, -14.604847 ], [ 34.365234, -16.130262 ], [ 34.980469, -16.720385 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 34.541016, -13.496473 ], [ 34.541016, -11.436955 ], [ 37.441406, -11.523088 ], [ 40.253906, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.576172, -18.479609 ], [ 27.685547, -20.468189 ], [ 27.949219, -21.453069 ], [ 29.355469, -22.024546 ], [ 27.070312, -23.563987 ], [ 25.664062, -25.482951 ], [ 23.291016, -25.244696 ], [ 20.830078, -26.824071 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.779905 ], [ 20.830078, -21.779905 ], [ 20.830078, -18.229351 ], [ 23.115234, -17.811456 ], [ 23.554688, -18.229351 ], [ 25.048828, -17.644022 ], [ 25.576172, -18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.576172, -18.479609 ], [ 27.685547, -20.468189 ], [ 27.949219, -21.453069 ], [ 29.355469, -22.024546 ], [ 27.070312, -23.563987 ], [ 25.664062, -25.482951 ], [ 23.291016, -25.244696 ], [ 20.830078, -26.824071 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.779905 ], [ 20.830078, -21.779905 ], [ 20.830078, -18.229351 ], [ 23.115234, -17.811456 ], [ 23.554688, -18.229351 ], [ 25.048828, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.113281, -22.187405 ], [ 31.904297, -24.367114 ], [ 31.816406, -25.799891 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.667096 ], [ 31.201172, -27.215556 ], [ 32.783203, -26.667096 ], [ 32.431641, -28.226970 ], [ 31.464844, -29.228890 ], [ 27.421875, -33.211116 ], [ 25.751953, -33.943360 ], [ 22.500000, -33.797409 ], [ 19.599609, -34.813803 ], [ 18.369141, -34.089061 ], [ 17.841797, -32.546813 ], [ 18.193359, -31.653381 ], [ 16.259766, -28.536275 ], [ 16.787109, -28.071980 ], [ 18.457031, -28.998532 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.830078, -26.824071 ], [ 21.533203, -26.667096 ], [ 23.291016, -25.244696 ], [ 25.664062, -25.482951 ], [ 27.949219, -22.755921 ], [ 29.794922, -22.024546 ], [ 31.113281, -22.187405 ] ], [ [ 26.982422, -29.840644 ], [ 27.685547, -30.600094 ], [ 28.828125, -30.069094 ], [ 29.267578, -29.228890 ], [ 28.916016, -28.921631 ], [ 28.037109, -28.844674 ], [ 26.982422, -29.840644 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.794922, -22.024546 ], [ 31.113281, -22.187405 ], [ 31.904297, -24.367114 ], [ 31.816406, -25.799891 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.667096 ], [ 31.201172, -27.215556 ], [ 32.783203, -26.667096 ], [ 32.431641, -28.226970 ], [ 31.464844, -29.228890 ], [ 27.421875, -33.211116 ], [ 25.751953, -33.943360 ], [ 22.500000, -33.797409 ], [ 19.599609, -34.813803 ], [ 18.369141, -34.089061 ], [ 17.841797, -32.546813 ], [ 18.193359, -31.653381 ], [ 16.259766, -28.536275 ], [ 16.787109, -28.071980 ], [ 18.457031, -28.998532 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.830078, -26.824071 ], [ 21.533203, -26.667096 ], [ 23.291016, -25.244696 ], [ 25.664062, -25.482951 ], [ 27.949219, -22.755921 ], [ 29.794922, -22.024546 ] ], [ [ 28.037109, -28.844674 ], [ 26.982422, -29.840644 ], [ 27.685547, -30.600094 ], [ 28.828125, -30.069094 ], [ 29.267578, -29.228890 ], [ 28.916016, -28.921631 ], [ 28.037109, -28.844674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.799891 ], [ 31.992188, -26.667096 ], [ 31.201172, -27.215556 ], [ 30.673828, -26.667096 ], [ 31.025391, -25.720735 ], [ 31.816406, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.025391, -25.720735 ], [ 31.816406, -25.799891 ], [ 31.992188, -26.667096 ], [ 31.201172, -27.215556 ], [ 30.673828, -26.667096 ], [ 31.025391, -25.720735 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.916016, -28.921631 ], [ 29.267578, -29.228890 ], [ 28.828125, -30.069094 ], [ 27.685547, -30.600094 ], [ 26.982422, -29.840644 ], [ 28.037109, -28.844674 ], [ 28.916016, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.037109, -28.844674 ], [ 28.916016, -28.921631 ], [ 29.267578, -29.228890 ], [ 28.828125, -30.069094 ], [ 27.685547, -30.600094 ], [ 26.982422, -29.840644 ], [ 28.037109, -28.844674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.482422, -12.468760 ], [ 50.361328, -15.623037 ], [ 49.658203, -15.707663 ], [ 49.746094, -16.804541 ], [ 47.021484, -24.926295 ], [ 45.351562, -25.562265 ], [ 44.033203, -24.926295 ], [ 43.330078, -22.755921 ], [ 43.417969, -21.289374 ], [ 44.384766, -19.394068 ], [ 43.945312, -17.392579 ], [ 44.384766, -16.214675 ], [ 46.230469, -15.707663 ], [ 47.636719, -14.519780 ], [ 49.130859, -12.039321 ], [ 49.482422, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.130859, -12.039321 ], [ 49.482422, -12.468760 ], [ 50.361328, -15.623037 ], [ 49.658203, -15.707663 ], [ 49.746094, -16.804541 ], [ 47.021484, -24.926295 ], [ 45.351562, -25.562265 ], [ 44.033203, -24.926295 ], [ 43.330078, -22.755921 ], [ 43.417969, -21.289374 ], [ 44.384766, -19.394068 ], [ 43.945312, -17.392579 ], [ 44.384766, -16.214675 ], [ 46.230469, -15.707663 ], [ 47.636719, -14.519780 ], [ 49.130859, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.488281, -49.037868 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.906250, -48.574790 ], [ 70.488281, -49.037868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.574790 ], [ 70.488281, -49.037868 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.906250, -48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.673828, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ], [ 120.673828, -10.228437 ] ] ], [ [ [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ] ] ], [ [ [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 137.373047, -1.669686 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 137.548828, -8.407168 ], [ 138.603516, -7.275292 ], [ 137.900391, -5.353521 ], [ 133.593750, -3.513421 ], [ 132.978516, -4.039618 ], [ 131.923828, -2.811371 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 130.517578, -0.878872 ], [ 132.363281, -0.351560 ], [ 134.121094, -1.142502 ] ] ], [ [ [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.861328, -8.059230 ], [ 119.091797, -8.667918 ] ] ], [ [ [ 122.695312, -8.581021 ], [ 119.882812, -8.754795 ], [ 120.673828, -8.233237 ], [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ] ] ], [ [ [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 108.544922, -6.751896 ] ] ], [ [ [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.472656, -5.441022 ], [ 134.648438, -6.140555 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 106.083984, -2.986927 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 102.568359, -4.214943 ], [ 98.525391, 1.845384 ], [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 121.464844, -4.565474 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.355469, -5.353521 ], [ 119.443359, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 122.871094, 0.878872 ], [ 125.156250, 1.493971 ], [ 123.662109, 0.263671 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 123.310547, -0.615223 ], [ 121.464844, -1.845384 ], [ 122.695312, -4.390229 ], [ 121.464844, -4.565474 ] ] ], [ [ [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.072266, -0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.478516, 0.790990 ], [ 114.609375, 1.493971 ], [ 115.839844, 4.390229 ], [ 117.861328, 4.214943 ] ] ], [ [ [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.880859, 2.196727 ], [ 128.671875, 1.142502 ], [ 128.056641, -0.790990 ], [ 127.353516, 1.054628 ], [ 127.880859, 2.196727 ] ] ], [ [ [ 123.134766, -5.266008 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 123.134766, -5.266008 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.882812, -9.275622 ], [ 120.673828, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 137.373047, -1.669686 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 137.548828, -8.407168 ], [ 138.603516, -7.275292 ], [ 137.900391, -5.353521 ], [ 133.593750, -3.513421 ], [ 132.978516, -4.039618 ], [ 131.923828, -2.811371 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 130.517578, -0.878872 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ], [ 119.882812, -8.754795 ], [ 120.673828, -8.233237 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 105.996094, -5.878332 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 106.083984, -2.986927 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 102.568359, -4.214943 ], [ 98.525391, 1.845384 ], [ 95.273438, 5.528511 ] ] ], [ [ [ 122.695312, -4.390229 ], [ 121.464844, -4.565474 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.355469, -5.353521 ], [ 119.443359, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 122.871094, 0.878872 ], [ 125.156250, 1.493971 ], [ 123.662109, 0.263671 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 123.310547, -0.615223 ], [ 121.464844, -1.845384 ], [ 122.695312, -4.390229 ] ] ], [ [ [ 115.839844, 4.390229 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.072266, -0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.478516, 0.790990 ], [ 114.609375, 1.493971 ], [ 115.839844, 4.390229 ] ] ], [ [ [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ] ] ], [ [ [ 128.056641, -2.811371 ], [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ] ] ], [ [ [ 127.880859, 2.196727 ], [ 128.671875, 1.142502 ], [ 128.056641, -0.878872 ], [ 127.353516, 1.054628 ], [ 127.880859, 2.196727 ] ] ], [ [ [ 122.695312, -4.390229 ], [ 123.134766, -5.266008 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 127.265625, -8.320212 ], [ 125.068359, -9.362353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.320212 ], [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 127.265625, -8.320212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 148.271484, -40.847060 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 146.337891, -18.895893 ], [ 148.798828, -20.385825 ], [ 149.677734, -22.268764 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 153.105469, -26.037042 ], [ 153.544922, -28.071980 ], [ 153.017578, -30.902225 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.370157 ], [ 148.271484, -37.788081 ], [ 146.250000, -39.027719 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 143.525391, -38.754083 ], [ 140.625000, -37.996163 ], [ 139.570312, -36.102376 ], [ 138.076172, -35.603719 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 134.208984, -32.546813 ], [ 131.308594, -31.428663 ], [ 126.123047, -32.175612 ], [ 124.189453, -32.916485 ], [ 123.574219, -33.870416 ], [ 119.882812, -33.943360 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 114.960938, -34.161818 ], [ 115.664062, -33.211116 ], [ 115.664062, -31.578535 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 114.169922, -26.273714 ], [ 113.378906, -24.367114 ], [ 114.082031, -21.698265 ], [ 114.169922, -22.512557 ], [ 116.630859, -20.632784 ], [ 120.849609, -19.642588 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 125.683594, -14.179186 ], [ 127.001953, -13.752725 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 130.605469, -12.468760 ], [ 132.539062, -12.039321 ], [ 131.748047, -11.264612 ], [ 135.263672, -12.211180 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 135.878906, -13.239945 ], [ 135.439453, -14.944785 ], [ 140.185547, -17.644022 ], [ 141.240234, -16.383391 ], [ 141.679688, -12.382928 ], [ 142.470703, -10.660608 ], [ 143.525391, -13.752725 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 148.271484, -40.847060 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ] ] ], [ [ [ 142.470703, -10.660608 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 146.337891, -18.895893 ], [ 148.798828, -20.385825 ], [ 149.677734, -22.268764 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 153.105469, -26.037042 ], [ 153.544922, -28.071980 ], [ 153.017578, -30.902225 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.370157 ], [ 148.271484, -37.788081 ], [ 146.250000, -39.027719 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 143.525391, -38.754083 ], [ 140.625000, -37.996163 ], [ 139.570312, -36.102376 ], [ 138.076172, -35.603719 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 134.208984, -32.546813 ], [ 131.308594, -31.428663 ], [ 126.123047, -32.175612 ], [ 124.189453, -32.916485 ], [ 123.574219, -33.870416 ], [ 119.882812, -33.943360 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 114.960938, -34.161818 ], [ 115.664062, -33.211116 ], [ 115.664062, -31.578535 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 114.169922, -26.273714 ], [ 113.378906, -24.367114 ], [ 114.082031, -21.698265 ], [ 114.169922, -22.512557 ], [ 116.630859, -20.632784 ], [ 120.849609, -19.642588 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 125.683594, -14.179186 ], [ 127.001953, -13.752725 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 130.605469, -12.468760 ], [ 132.539062, -12.039321 ], [ 131.748047, -11.264612 ], [ 135.263672, -12.211180 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 135.878906, -13.239945 ], [ 135.439453, -14.944785 ], [ 140.185547, -17.644022 ], [ 141.240234, -16.383391 ], [ 141.679688, -12.382928 ], [ 142.470703, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.580078, -3.776559 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 150.644531, -10.574222 ], [ 147.832031, -10.055403 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ] ] ], [ [ [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.126953, -6.489983 ], [ 154.511719, -5.090944 ], [ 156.005859, -6.489983 ] ] ], [ [ [ 151.962891, -5.441022 ], [ 150.205078, -6.315299 ], [ 148.271484, -5.703448 ], [ 149.765625, -5.441022 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ], [ 151.962891, -5.441022 ] ] ], [ [ [ 152.226562, -3.162456 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 150.644531, -2.723583 ], [ 152.226562, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 150.644531, -10.574222 ], [ 147.832031, -10.055403 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.547988 ] ] ], [ [ [ 154.511719, -5.090944 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.126953, -6.489983 ], [ 154.511719, -5.090944 ] ] ], [ [ [ 152.050781, -4.127285 ], [ 151.962891, -5.441022 ], [ 150.205078, -6.315299 ], [ 148.271484, -5.703448 ], [ 149.765625, -5.441022 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ] ] ], [ [ [ 150.644531, -2.723583 ], [ 152.226562, -3.162456 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 150.644531, -2.723583 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ] ] ], [ [ [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ] ] ], [ [ [ 161.630859, -9.535749 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ], [ 161.630859, -9.535749 ] ] ], [ [ [ 158.818359, -7.536764 ], [ 159.873047, -8.320212 ], [ 158.203125, -7.362467 ], [ 158.818359, -7.536764 ] ] ], [ [ [ 157.500000, -7.275292 ], [ 157.060547, -7.013668 ], [ 156.533203, -6.577303 ], [ 157.500000, -7.275292 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ] ] ], [ [ [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.697266, -9.188870 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 161.630859, -9.535749 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 158.203125, -7.362467 ], [ 158.818359, -7.536764 ], [ 159.873047, -8.320212 ], [ 158.203125, -7.362467 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ] ] ], [ [ [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.728516, -15.623037 ], [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -15.876809 ] ] ], [ [ [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.728516, -15.623037 ], [ 166.552734, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.705729 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 166.640625, -46.195042 ], [ 166.992188, -45.089036 ], [ 170.507812, -43.004647 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ] ] ], [ [ [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 174.550781, -38.754083 ], [ 174.638672, -37.370157 ], [ 172.617188, -34.524661 ], [ 174.287109, -35.245619 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.705729 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 166.640625, -46.195042 ], [ 166.992188, -45.089036 ], [ 170.507812, -43.004647 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ] ] ], [ [ [ 172.617188, -34.524661 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 174.550781, -38.754083 ], [ 174.638672, -37.370157 ], [ 172.617188, -34.524661 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.851562, 2.855263 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -70.048828, 0.571280 ], [ -70.048828, 0.000000 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.387695, 3.513421 ], [ -67.368164, 3.513421 ], [ -67.851562, 2.855263 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.368164, 3.513421 ], [ -67.851562, 2.855263 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -70.048828, 0.571280 ], [ -70.048828, 0.000000 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.387695, 3.513421 ], [ -67.368164, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.851562, 2.855263 ], [ -67.368164, 3.513421 ], [ -64.423828, 3.513421 ], [ -64.291992, 2.504085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.423828, 3.513421 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.851562, 2.855263 ], [ -67.368164, 3.513421 ], [ -64.423828, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.304688, 3.337954 ], [ -56.557617, 1.933227 ], [ -57.348633, 1.977147 ], [ -58.579102, 1.274309 ], [ -59.677734, 1.801461 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.513421 ], [ -57.744141, 3.513421 ], [ -57.304688, 3.337954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.744141, 3.513421 ], [ -57.304688, 3.337954 ], [ -56.557617, 1.933227 ], [ -57.348633, 1.977147 ], [ -58.579102, 1.274309 ], [ -59.677734, 1.801461 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.513421 ], [ -57.744141, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.536133, 2.328460 ], [ -55.986328, 2.547988 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.304688, 3.337954 ], [ -57.744141, 3.513421 ], [ -54.096680, 3.513421 ], [ -54.536133, 2.328460 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.096680, 3.513421 ], [ -54.536133, 2.328460 ], [ -55.986328, 2.547988 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.304688, 3.337954 ], [ -57.744141, 3.513421 ], [ -54.096680, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.558594, 2.547988 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.096680, 3.513421 ], [ -52.119141, 3.513421 ], [ -52.558594, 2.547988 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.119141, 3.513421 ], [ -52.558594, 2.547988 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.096680, 3.513421 ], [ -52.119141, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.463867, -4.390229 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.244141, 0.000000 ], [ -80.112305, 0.790990 ], [ -78.881836, 1.406109 ], [ -77.695312, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.463867, -4.390229 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.244141, 0.000000 ], [ -80.112305, 0.790990 ], [ -78.881836, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -72.905273, -5.266008 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -74.003906, -7.493196 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -79.760742, -7.188101 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.463867, -4.390229 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -73.696289, -1.230374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, -0.043945 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -72.905273, -5.266008 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -74.003906, -7.493196 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -79.760742, -7.188101 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.463867, -4.390229 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -71.015625, -55.053203 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -71.147461, -54.059388 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.092773, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ], [ -68.994141, -18.979026 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -71.015625, -55.053203 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -71.147461, -54.059388 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.092773, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -61.743164, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -61.787109, -19.601194 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.291016, -11.005904 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.434570, -11.566144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -61.743164, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -61.787109, -19.601194 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.291016, -11.005904 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 2.767478 ], [ -59.677734, 1.801461 ], [ -58.579102, 1.274309 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.986328, 2.547988 ], [ -52.954102, 2.152814 ], [ -52.119141, 3.513421 ], [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -37.089844, -11.005904 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -44.648438, -23.322080 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.515625, -27.137368 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.415039, -23.926013 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.512695, -13.752725 ], [ -61.743164, -13.453737 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -68.291016, -11.005904 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -74.003906, -7.493196 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.905273, -5.266008 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -70.048828, 0.000000 ], [ -70.048828, 0.571280 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -37.089844, -11.005904 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -44.648438, -23.322080 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.515625, -27.137368 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.415039, -23.926013 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.512695, -13.752725 ], [ -61.743164, -13.453737 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -68.291016, -11.005904 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -74.003906, -7.493196 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.905273, -5.266008 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -70.048828, 0.000000 ], [ -70.048828, 0.571280 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ], [ -59.677734, 1.801461 ], [ -58.579102, 1.274309 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.986328, 2.547988 ], [ -52.954102, 2.152814 ], [ -52.119141, 3.513421 ], [ -51.064453, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.183594, -19.849394 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.415039, -23.926013 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -61.787109, -19.601194 ], [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.415039, -23.926013 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -61.787109, -19.601194 ], [ -59.150391, -19.352611 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ], [ -67.763672, -53.826597 ] ] ], [ [ [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -57.656250, -30.183122 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -62.358398, -38.822591 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -57.656250, -30.183122 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -62.358398, -38.822591 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ], [ -53.789062, -32.026706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.528806 ], [ -172.924805, -84.057113 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.807617, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.016602, -77.293202 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -72.861328, -73.390781 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -59.897461, -63.937372 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -64.819336, -68.672544 ], [ -63.237305, -69.224997 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -17.534180, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -142.910156, -84.566386 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.631968 ], [ -59.589844, -80.035262 ] ] ], [ [ [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ] ] ], [ [ [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ], [ -99.008789, -71.924528 ] ] ], [ [ [ -69.741211, -69.240579 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.818359, -72.168351 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.807617, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -64.819336, -68.672544 ], [ -63.237305, -69.224997 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -17.534180, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.016602, -77.293202 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -72.861328, -73.390781 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -59.897461, -63.937372 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.818359, -72.168351 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.956055, -16.467695 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 69.271709 ], [ -94.614258, 69.271709 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ] ] ], [ [ [ -85.561523, 69.885010 ], [ -82.661133, 69.672358 ], [ -81.606445, 69.271709 ], [ -85.605469, 69.271709 ], [ -85.561523, 69.885010 ] ] ], [ [ [ -139.130859, 69.472969 ], [ -138.471680, 69.271709 ], [ -141.020508, 69.271709 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ] ] ], [ [ [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -119.267578, 69.271709 ], [ -135.791016, 69.271709 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ] ] ], [ [ [ -115.356445, 69.271709 ], [ -116.323242, 69.271709 ], [ -117.377930, 69.960439 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.501953, 71.002660 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.392578, 69.271709 ], [ -115.180664, 69.271709 ], [ -115.224609, 69.287257 ], [ -115.356445, 69.271709 ] ] ], [ [ [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.932617, 69.271709 ], [ -99.404297, 69.271709 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -67.060547, 69.271709 ], [ -76.464844, 69.271709 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -115.532227, 73.478485 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -92.460938, 74.844929 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -96.767578, 78.767792 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -109.687500, 78.603986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -138.471680, 69.271709 ], [ -141.020508, 69.271709 ], [ -141.020508, 69.718107 ] ] ], [ [ [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -67.060547, 69.271709 ], [ -76.464844, 69.271709 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -119.267578, 69.271709 ], [ -135.791016, 69.271709 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -102.392578, 69.271709 ], [ -115.180664, 69.271709 ], [ -115.224609, 69.287257 ], [ -115.356445, 69.271709 ], [ -116.323242, 69.271709 ], [ -117.377930, 69.960439 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.501953, 71.002660 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.392578, 69.271709 ] ] ], [ [ [ -82.661133, 69.672358 ], [ -81.606445, 69.271709 ], [ -85.605469, 69.271709 ], [ -85.561523, 69.885010 ], [ -82.661133, 69.672358 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -115.532227, 73.478485 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ] ] ], [ [ [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ] ] ], [ [ [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -92.460938, 74.844929 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ] ] ], [ [ [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ] ] ], [ [ [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ] ] ], [ [ [ -98.657227, 78.878528 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ] ] ], [ [ [ -94.614258, 69.271709 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 69.271709 ], [ -94.614258, 69.271709 ] ] ], [ [ [ -95.932617, 69.271709 ], [ -99.404297, 69.271709 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.932617, 69.271709 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.791016, 69.271709 ], [ -119.267578, 69.271709 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.193359, 68.656555 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -97.690430, 68.592487 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.262695, 69.084257 ], [ -94.614258, 69.271709 ], [ -90.571289, 69.271709 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.605469, 68.800041 ], [ -85.605469, 69.271709 ], [ -81.606445, 69.271709 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -87.363281, 56.022948 ], [ -85.034180, 55.304138 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -64.599609, 60.348696 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.664062, 45.460131 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -78.969727, 42.875964 ], [ -82.705078, 41.705729 ], [ -83.144531, 42.098222 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.891602, 46.134170 ], [ -84.155273, 46.528635 ], [ -84.638672, 46.468133 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -94.350586, 48.690960 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 69.271709 ], [ -138.471680, 69.271709 ], [ -137.548828, 69.005675 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.050781, 46.468133 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.364258, 50.792047 ], [ -125.771484, 50.317408 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -133.066406, 53.435719 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -76.464844, 69.271709 ], [ -67.060547, 69.271709 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ], [ [ [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.180664, 69.271709 ], [ -102.392578, 69.271709 ], [ -102.128906, 69.131271 ] ] ], [ [ [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.404297, 69.271709 ], [ -95.932617, 69.271709 ], [ -95.668945, 69.115611 ] ] ], [ [ [ -116.323242, 69.271709 ], [ -115.356445, 69.271709 ], [ -116.147461, 69.178184 ], [ -116.323242, 69.271709 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.606445, 69.271709 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -87.363281, 56.022948 ], [ -85.034180, 55.304138 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -64.599609, 60.348696 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.664062, 45.460131 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -78.969727, 42.875964 ], [ -82.705078, 41.705729 ], [ -83.144531, 42.098222 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.891602, 46.134170 ], [ -84.155273, 46.528635 ], [ -84.638672, 46.468133 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -94.350586, 48.690960 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 69.271709 ], [ -138.471680, 69.271709 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.791016, 69.271709 ], [ -119.267578, 69.271709 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.193359, 68.656555 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -97.690430, 68.592487 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.262695, 69.084257 ], [ -94.614258, 69.271709 ], [ -90.571289, 69.271709 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.605469, 68.800041 ], [ -85.605469, 69.271709 ], [ -81.606445, 69.271709 ] ] ], [ [ [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.050781, 46.468133 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.792047 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.364258, 50.792047 ] ] ], [ [ [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ] ] ], [ [ [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -133.066406, 53.435719 ], [ -133.198242, 54.188155 ] ] ], [ [ [ -67.060547, 69.271709 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.818359, 63.763065 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -76.464844, 69.271709 ], [ -67.060547, 69.271709 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.913086, 65.748683 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -95.932617, 69.271709 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.404297, 69.271709 ], [ -95.932617, 69.271709 ] ] ], [ [ [ -102.392578, 69.271709 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.180664, 69.271709 ], [ -102.392578, 69.271709 ] ] ], [ [ [ -115.356445, 69.271709 ], [ -116.147461, 69.178184 ], [ -116.323242, 69.271709 ], [ -115.356445, 69.271709 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.961914, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.303418 ], [ -154.819336, 19.518375 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.330315 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ] ] ], [ [ [ -159.345703, 21.983801 ], [ -159.829102, 22.105999 ], [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ] ] ], [ [ [ -94.350586, 48.690960 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.638672, 46.468133 ], [ -84.155273, 46.528635 ], [ -83.891602, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -83.144531, 42.098222 ], [ -82.705078, 41.705729 ], [ -78.969727, 42.875964 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -66.972656, 44.840291 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.541992, 39.504041 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -78.574219, 33.870416 ], [ -81.342773, 31.466154 ], [ -81.342773, 30.069094 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -82.265625, 26.745610 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -86.440430, 30.410782 ], [ -89.604492, 30.183122 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -94.702148, 29.496988 ], [ -97.163086, 27.839076 ], [ -97.382812, 26.706360 ], [ -97.163086, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.536133, 27.566721 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -118.520508, 34.052659 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ], [ -94.350586, 48.690960 ] ] ], [ [ [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -149.765625, 59.712097 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ] ] ], [ [ [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ] ] ], [ [ [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ] ] ], [ [ [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.303418 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.961914, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.303418 ] ] ], [ [ [ -156.752930, 20.961440 ], [ -156.269531, 20.920397 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ] ] ], [ [ [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ] ] ], [ [ [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ] ] ], [ [ [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.829102, 22.105999 ], [ -159.389648, 22.228090 ] ] ], [ [ [ -94.833984, 49.410973 ], [ -94.350586, 48.690960 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.638672, 46.468133 ], [ -84.155273, 46.528635 ], [ -83.891602, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -83.144531, 42.098222 ], [ -82.705078, 41.705729 ], [ -78.969727, 42.875964 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -66.972656, 44.840291 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.541992, 39.504041 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -78.574219, 33.870416 ], [ -81.342773, 31.466154 ], [ -81.342773, 30.069094 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -82.265625, 26.745610 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -86.440430, 30.410782 ], [ -89.604492, 30.183122 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -94.702148, 29.496988 ], [ -97.163086, 27.839076 ], [ -97.382812, 26.706360 ], [ -97.163086, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.536133, 27.566721 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -118.520508, 34.052659 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ] ] ], [ [ [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -149.765625, 59.712097 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ] ] ], [ [ [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.237305, 57.984808 ] ] ], [ [ [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ] ] ], [ [ [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -99.536133, 27.566721 ], [ -99.052734, 26.391870 ], [ -97.163086, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.734375, 21.902278 ], [ -97.207031, 20.673905 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.307617, 21.002471 ], [ -88.549805, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.241211, 14.562318 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -96.591797, 15.665354 ], [ -100.854492, 17.182779 ], [ -101.953125, 17.936929 ], [ -103.535156, 18.312811 ], [ -105.029297, 19.352611 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.292969, 21.453069 ], [ -106.040039, 22.796439 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.291992, 26.470573 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -113.159180, 31.203405 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.183122 ], [ -111.621094, 26.667096 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -112.192383, 24.766785 ], [ -112.324219, 26.037042 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.169922, 28.574874 ], [ -115.532227, 29.573457 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -99.536133, 27.566721 ], [ -99.052734, 26.391870 ], [ -97.163086, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.734375, 21.902278 ], [ -97.207031, 20.673905 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.307617, 21.002471 ], [ -88.549805, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.241211, 14.562318 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -96.591797, 15.665354 ], [ -100.854492, 17.182779 ], [ -101.953125, 17.936929 ], [ -103.535156, 18.312811 ], [ -105.029297, 19.352611 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.292969, 21.453069 ], [ -106.040039, 22.796439 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.291992, 26.470573 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -113.159180, 31.203405 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.183122 ], [ -111.621094, 26.667096 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -112.192383, 24.766785 ], [ -112.324219, 26.037042 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.169922, 28.574874 ], [ -115.532227, 29.573457 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.242188, 15.749963 ], [ -89.165039, 15.072124 ], [ -89.165039, 14.689881 ], [ -90.131836, 13.752725 ], [ -91.274414, 13.966054 ], [ -92.241211, 14.562318 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.242188, 15.749963 ], [ -89.165039, 15.072124 ], [ -89.165039, 14.689881 ], [ -90.131836, 13.752725 ], [ -91.274414, 13.966054 ], [ -92.241211, 14.562318 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.368164, 70.140364 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -68.510742, 76.069092 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.368164, 70.140364 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -68.510742, 76.069092 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.915039, 25.204941 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ] ] ], [ [ [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ] ] ], [ [ [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.827148, 27.059126 ] ] ], [ [ [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.863281 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.110352, 18.354526 ], [ -88.374023, 16.551962 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -88.505859, 18.521283 ], [ -88.110352, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.505859, 18.521283 ], [ -88.110352, 18.354526 ], [ -88.374023, 16.551962 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -88.505859, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.505859, 13.880746 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -90.131836, 13.752725 ], [ -89.384766, 14.434680 ], [ -88.505859, 13.880746 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -88.505859, 13.880746 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -90.131836, 13.752725 ], [ -89.384766, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.188477, 15.029686 ], [ -84.462891, 14.647368 ], [ -84.946289, 14.817371 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -87.319336, 13.025966 ], [ -87.802734, 13.410994 ], [ -87.890625, 13.923404 ], [ -88.505859, 13.880746 ], [ -89.384766, 14.434680 ], [ -89.165039, 15.072124 ], [ -88.242188, 15.749963 ], [ -84.990234, 16.003576 ], [ -83.188477, 15.029686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 16.003576 ], [ -83.188477, 15.029686 ], [ -84.462891, 14.647368 ], [ -84.946289, 14.817371 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -87.319336, 13.025966 ], [ -87.802734, 13.410994 ], [ -87.890625, 13.923404 ], [ -88.505859, 13.880746 ], [ -89.384766, 14.434680 ], [ -89.165039, 15.072124 ], [ -88.242188, 15.749963 ], [ -84.990234, 16.003576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.540039, 13.581921 ], [ -83.496094, 12.425848 ], [ -83.891602, 11.393879 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.682617, 11.092166 ], [ -85.737305, 11.092166 ], [ -87.670898, 12.940322 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -84.946289, 14.817371 ], [ -84.462891, 14.647368 ], [ -83.188477, 15.029686 ], [ -83.540039, 13.581921 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.188477, 15.029686 ], [ -83.540039, 13.581921 ], [ -83.496094, 12.425848 ], [ -83.891602, 11.393879 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.682617, 11.092166 ], [ -85.737305, 11.092166 ], [ -87.670898, 12.940322 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -84.946289, 14.817371 ], [ -84.462891, 14.647368 ], [ -83.188477, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.639648, 23.120154 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.970703, 19.932041 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -78.178711, 20.756114 ], [ -78.750000, 21.616579 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -84.067383, 21.943046 ], [ -84.990234, 21.902278 ], [ -83.803711, 22.796439 ], [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.970703, 19.932041 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -78.178711, 20.756114 ], [ -78.750000, 21.616579 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -84.067383, 21.943046 ], [ -84.990234, 21.902278 ], [ -83.803711, 22.796439 ], [ -82.309570, 23.200961 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.749023, 8.928487 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.671875, 9.058702 ], [ -84.990234, 10.098670 ], [ -85.122070, 9.579084 ], [ -85.693359, 9.968851 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ], [ -83.935547, 10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.221510 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.749023, 8.928487 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.671875, 9.058702 ], [ -84.990234, 10.098670 ], [ -85.122070, 9.579084 ], [ -85.693359, 9.968851 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.015302 ], [ -81.474609, 8.798225 ], [ -79.584961, 9.622414 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -79.145508, 9.015302 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.836914, 8.320212 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.492408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -79.145508, 9.015302 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.836914, 8.320212 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.015302 ], [ -81.474609, 8.798225 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.904297, 18.437925 ], [ -76.201172, 17.895114 ], [ -77.211914, 17.727759 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ], [ -76.201172, 17.895114 ], [ -77.211914, 17.727759 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.062312 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ], [ -71.718750, 19.725342 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.932041 ], [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.062312 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.960938, 18.437925 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.411133, 17.602139 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -70.839844, 19.890723 ], [ -69.960938, 19.683970 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.960938, 18.437925 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.411133, 17.602139 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -70.839844, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.949219, 10.487812 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.465820, 8.407168 ], [ -72.465820, 7.449624 ], [ -71.982422, 7.013668 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -67.368164, 6.096860 ], [ -67.851562, 4.521666 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -70.048828, 0.571280 ], [ -70.048828, 0.000000 ], [ -69.433594, -1.098565 ], [ -69.785156, -3.513421 ], [ -70.576172, -3.513421 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -77.431641, 0.439449 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -73.432617, 11.264612 ], [ -71.762695, 12.468760 ], [ -71.147461, 12.125264 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.468760 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.949219, 10.487812 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.465820, 8.407168 ], [ -72.465820, 7.449624 ], [ -71.982422, 7.013668 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -67.368164, 6.096860 ], [ -67.851562, 4.521666 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -70.048828, 0.571280 ], [ -70.048828, 0.000000 ], [ -69.433594, -1.098565 ], [ -69.785156, -3.513421 ], [ -70.576172, -3.513421 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -77.431641, 0.439449 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -73.432617, 11.264612 ], [ -71.762695, 12.468760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ], [ -65.610352, 18.229351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.313477, 18.521283 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -61.171875, 6.708254 ], [ -61.435547, 5.965754 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -63.105469, 3.776559 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.521666 ], [ -67.368164, 6.096860 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -71.982422, 7.013668 ], [ -72.465820, 7.449624 ], [ -72.465820, 8.407168 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -72.949219, 10.487812 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -61.171875, 6.708254 ], [ -61.435547, 5.965754 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -63.105469, 3.776559 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.521666 ], [ -67.368164, 6.096860 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -71.982422, 7.013668 ], [ -72.465820, 7.449624 ], [ -72.465820, 8.407168 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -72.949219, 10.487812 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.952148, 10.141932 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.790141 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.790141 ], [ -60.908203, 10.876465 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -56.557617, 1.933227 ], [ -57.348633, 1.977147 ], [ -58.579102, 1.274309 ], [ -59.677734, 1.801461 ], [ -59.985352, 2.767478 ], [ -59.545898, 3.995781 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.708254 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ], [ -58.491211, 7.362467 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -56.557617, 1.933227 ], [ -57.348633, 1.977147 ], [ -58.579102, 1.274309 ], [ -59.677734, 1.801461 ], [ -59.985352, 2.767478 ], [ -59.545898, 3.995781 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.708254 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.008789, 3.645000 ], [ -54.536133, 2.328460 ], [ -55.986328, 2.547988 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.008789, 3.645000 ], [ -54.536133, 2.328460 ], [ -55.986328, 2.547988 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.063477, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ 0.000000, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ 0.000000, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -3.032227, 58.654085 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.558594, 2.547988 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.052734, 3.645000 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.457504 ], [ 3.515625, 43.197167 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.558594, 2.547988 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.052734, 3.645000 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.457504 ], [ 3.515625, 43.197167 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -11.997070, 25.760320 ], [ -11.953125, 23.402765 ] ] ], [ [ [ -8.701172, 25.918526 ], [ -11.909180, 25.958045 ], [ -11.425781, 26.902477 ], [ -9.755859, 26.863281 ], [ -8.833008, 27.137368 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ] ] ], [ [ [ -11.997070, 25.958045 ], [ -11.909180, 25.958045 ], [ -11.997070, 25.760320 ], [ -11.997070, 25.958045 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.997070, 25.839449 ], [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -11.997070, 25.839449 ] ] ], [ [ [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ], [ -11.909180, 25.958045 ], [ -11.425781, 26.902477 ], [ -9.755859, 26.863281 ], [ -8.833008, 27.137368 ], [ -8.701172, 27.683528 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.041992, 41.804078 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.920898, 36.879621 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.920898, 36.879621 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.305664, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.350586, 43.421009 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.000000, 38.685510 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ], [ -4.350586, 43.421009 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -4.350586, 43.421009 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.000000, 38.685510 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.614258, 35.353216 ], [ -2.197266, 35.173808 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.833008, 27.137368 ], [ -9.755859, 26.863281 ], [ -11.425781, 26.902477 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.303711, 22.715390 ], [ -15.996094, 23.725012 ], [ -15.117188, 24.527135 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -6.943359, 34.125448 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ], [ -2.197266, 35.173808 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.833008, 27.137368 ], [ -9.755859, 26.863281 ], [ -11.425781, 26.902477 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.303711, 22.715390 ], [ -15.996094, 23.725012 ], [ -15.117188, 24.527135 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -6.943359, 34.125448 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -11.557617, 12.468760 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.161133, 13.539201 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -16.743164, 13.624633 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.127930, 16.467695 ], [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -11.557617, 12.468760 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.161133, 13.539201 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -16.743164, 13.624633 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.127930, 16.467695 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.721680, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -15.161133, 13.539201 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ], [ -14.721680, 13.667338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.424805, 13.880746 ], [ -14.721680, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -15.161133, 13.539201 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.754883, 11.824341 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -16.127930, 11.566144 ], [ -16.699219, 12.425848 ], [ -13.710938, 12.597455 ], [ -13.754883, 11.824341 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.754883, 11.824341 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -16.127930, 11.566144 ], [ -16.699219, 12.425848 ], [ -13.710938, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.524414, 12.340002 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.195312, 11.867351 ], [ -9.140625, 12.340002 ], [ -8.393555, 11.393879 ], [ -8.657227, 10.833306 ], [ -8.305664, 10.833306 ], [ -8.041992, 10.228437 ], [ -8.349609, 9.795678 ], [ -7.866211, 8.581021 ], [ -8.305664, 8.320212 ], [ -8.481445, 7.710992 ], [ -9.228516, 7.318882 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.363693 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -12.436523, 9.838979 ], [ -13.271484, 8.928487 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -13.754883, 11.824341 ], [ -13.710938, 12.597455 ], [ -12.524414, 12.340002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -12.524414, 12.340002 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.195312, 11.867351 ], [ -9.140625, 12.340002 ], [ -8.393555, 11.393879 ], [ -8.657227, 10.833306 ], [ -8.305664, 10.833306 ], [ -8.041992, 10.228437 ], [ -8.349609, 9.795678 ], [ -7.866211, 8.581021 ], [ -8.305664, 8.320212 ], [ -8.481445, 7.710992 ], [ -9.228516, 7.318882 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.363693 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -12.436523, 9.838979 ], [ -13.271484, 8.928487 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -13.754883, 11.824341 ], [ -13.710938, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.634766, 9.275622 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.469727, 6.795535 ], [ -12.963867, 7.841615 ], [ -13.271484, 8.928487 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.469727, 6.795535 ], [ -12.963867, 7.841615 ], [ -13.271484, 8.928487 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -10.678711, 15.156974 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.171875, 18.145852 ], [ -16.303711, 20.097206 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -10.678711, 15.156974 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.171875, 18.145852 ], [ -16.303711, 20.097206 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 3.515625, 19.103648 ], [ 3.515625, 15.580711 ], [ 0.000000, 14.944785 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -3.120117, 13.581921 ], [ -4.042969, 13.496473 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.855469, 10.141932 ], [ -8.041992, 10.228437 ], [ -8.305664, 10.833306 ], [ -8.657227, 10.833306 ], [ -8.393555, 11.393879 ], [ -9.140625, 12.340002 ], [ -10.195312, 11.867351 ], [ -11.074219, 12.254128 ], [ -11.469727, 12.082296 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -10.678711, 15.156974 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ], [ 0.000000, 21.820708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 3.515625, 19.103648 ], [ 3.515625, 15.580711 ], [ 0.000000, 14.944785 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -3.120117, 13.581921 ], [ -4.042969, 13.496473 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.855469, 10.141932 ], [ -8.041992, 10.228437 ], [ -8.305664, 10.833306 ], [ -8.657227, 10.833306 ], [ -8.393555, 11.393879 ], [ -9.140625, 12.340002 ], [ -10.195312, 11.867351 ], [ -11.074219, 12.254128 ], [ -11.469727, 12.082296 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -10.678711, 15.156974 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.000000, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -5.405273, 10.401378 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.042969, 13.496473 ], [ -3.120117, 13.581921 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ 0.000000, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.098633, 14.987240 ], [ 0.000000, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.000000, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -5.405273, 10.401378 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.042969, 13.496473 ], [ -3.120117, 13.581921 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.228516, 7.318882 ], [ -8.481445, 7.710992 ], [ -8.613281, 6.489983 ], [ -7.602539, 5.747174 ], [ -7.734375, 4.390229 ], [ -9.008789, 4.872048 ], [ -11.469727, 6.795535 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ], [ -9.228516, 7.318882 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.228516, 7.318882 ], [ -8.481445, 7.710992 ], [ -8.613281, 6.489983 ], [ -7.602539, 5.747174 ], [ -7.734375, 4.390229 ], [ -9.008789, 4.872048 ], [ -11.469727, 6.795535 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.350586, 9.622414 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -3.251953, 6.271618 ], [ -2.856445, 5.003394 ], [ -4.658203, 5.178482 ], [ -7.734375, 4.390229 ], [ -7.602539, 5.747174 ], [ -8.613281, 6.489983 ], [ -8.305664, 8.320212 ], [ -7.866211, 8.581021 ], [ -8.261719, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.350586, 9.622414 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -3.251953, 6.271618 ], [ -2.856445, 5.003394 ], [ -4.658203, 5.178482 ], [ -7.734375, 4.390229 ], [ -7.602539, 5.747174 ], [ -8.613281, 6.489983 ], [ -8.305664, 8.320212 ], [ -7.866211, 8.581021 ], [ -8.261719, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.240234, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -3.251953, 6.271618 ], [ -2.592773, 8.233237 ], [ -2.944336, 10.962764 ], [ 0.000000, 11.049038 ], [ 0.000000, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -3.251953, 6.271618 ], [ -2.592773, 8.233237 ], [ -2.944336, 10.962764 ], [ 0.000000, 11.049038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.222656, -3.513421 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.244141, 0.000000 ], [ -80.112305, 0.790990 ], [ -78.881836, 1.406109 ], [ -77.695312, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.222656, -3.513421 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.244141, 0.000000 ], [ -80.112305, 0.790990 ], [ -78.881836, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.576172, -3.513421 ], [ -78.222656, -3.513421 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -73.696289, -1.230374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, -0.043945 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.576172, -3.513421 ], [ -78.222656, -3.513421 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.545898, 3.995781 ], [ -59.985352, 2.767478 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.986328, 2.547988 ], [ -52.954102, 2.152814 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.098565 ], [ -70.048828, 0.000000 ], [ -70.048828, 0.571280 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -63.105469, 3.776559 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.545898, 3.995781 ], [ -59.985352, 2.767478 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.986328, 2.547988 ], [ -52.954102, 2.152814 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.098565 ], [ -70.048828, 0.000000 ], [ -70.048828, 0.571280 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -63.105469, 3.776559 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -174.946289, 67.221053 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.974164 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.344339 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.481383 ], [ 3.515625, 51.344339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.481383 ], [ 3.515625, 51.344339 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.344339 ], [ 3.515625, 50.457504 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.344339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.295898, 51.371780 ], [ 3.515625, 51.344339 ], [ 3.515625, 50.457504 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 19.103648 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ 0.000000, 35.995785 ], [ 1.450195, 36.633162 ], [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ 0.000000, 35.995785 ], [ 1.450195, 36.633162 ], [ 3.515625, 36.809285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.738302 ], [ 2.812500, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 3.515625, 15.580711 ], [ 3.515625, 11.738302 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.580711 ], [ 3.515625, 11.738302 ], [ 2.812500, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 3.515625, 15.580711 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.962764 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.962764 ], [ 0.878906, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.738302 ], [ 3.515625, 9.838979 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 2.460938, 12.254128 ], [ 3.515625, 11.738302 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.460938, 12.254128 ], [ 3.515625, 11.738302 ], [ 3.515625, 9.838979 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 2.460938, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 3.515625, 9.838979 ], [ 3.515625, 6.271618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.838979 ], [ 3.515625, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 3.515625, 9.838979 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.659180, -65.567550 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 143.041992, -66.791909 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 167.299805, -70.830248 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.223633, -75.453071 ], [ 163.564453, -76.237366 ], [ 163.476562, -77.059116 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 19.248047, -69.885010 ], [ 21.445312, -70.065585 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 66.884766, -67.842416 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.894531, -71.314877 ], [ 73.081055, -70.714471 ], [ 73.828125, -69.869892 ], [ 77.607422, -69.457554 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 102.832031, -65.549367 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 143.041992, -66.791909 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 167.299805, -70.830248 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.223633, -75.453071 ], [ 163.564453, -76.237366 ], [ 163.476562, -77.059116 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 19.248047, -69.885010 ], [ 21.445312, -70.065585 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 66.884766, -67.842416 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.894531, -71.314877 ], [ 73.081055, -70.714471 ], [ 73.828125, -69.869892 ], [ 77.607422, -69.457554 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 102.832031, -65.549367 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.043945, -65.293468 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 3.030812 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.249023, 3.513421 ], [ 15.820312, 3.030812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 3.513421 ], [ 15.820312, 3.030812 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.249023, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 2.284551 ], [ 15.820312, 3.030812 ], [ 15.249023, 3.513421 ], [ 16.875000, 3.513421 ], [ 15.996094, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 3.513421 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.030812 ], [ 15.249023, 3.513421 ], [ 16.875000, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.024414, 1.933227 ], [ 33.881836, 0.000000 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 29.575195, -1.318243 ], [ 29.794922, 0.000000 ], [ 30.058594, 1.098565 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 34.453125, 3.513421 ], [ 35.024414, 1.933227 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 35.024414, 1.933227 ], [ 33.881836, 0.000000 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 29.575195, -1.318243 ], [ 29.794922, 0.000000 ], [ 30.058594, 1.098565 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.253906, -2.547988 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.000000 ], [ 35.024414, 1.933227 ], [ 34.453125, 3.513421 ], [ 41.528320, 3.513421 ], [ 40.957031, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.528320, 3.513421 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.253906, -2.547988 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.000000 ], [ 35.024414, 1.933227 ], [ 34.453125, 3.513421 ], [ 41.528320, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.550781, 3.425692 ], [ 38.847656, 3.513421 ], [ 39.594727, 3.513421 ], [ 39.550781, 3.425692 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.594727, 3.513421 ], [ 39.550781, 3.425692 ], [ 38.847656, 3.513421 ], [ 39.594727, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.846680, 0.000000 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 41.528320, 3.513421 ], [ 47.109375, 3.513421 ], [ 42.846680, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 3.513421 ], [ 42.846680, 0.000000 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 41.528320, 3.513421 ], [ 47.109375, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 111.796875, 0.922812 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 112.983398, 3.118576 ], [ 113.334961, 3.513421 ], [ 115.576172, 3.513421 ], [ 114.609375, 1.450040 ] ] ], [ [ [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 101.381836, 2.767478 ], [ 101.030273, 3.513421 ], [ 103.359375, 3.513421 ], [ 104.194336, 1.318243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.576172, 3.513421 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 111.796875, 0.922812 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 112.983398, 3.118576 ], [ 113.334961, 3.513421 ], [ 115.576172, 3.513421 ] ] ], [ [ [ 103.359375, 3.513421 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 101.381836, 2.767478 ], [ 101.030273, 3.513421 ], [ 103.359375, 3.513421 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 2.284551 ], [ 13.271484, 1.318243 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 8.789062, -1.098565 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 13.051758, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.733398, 2.328460 ], [ 13.051758, 2.284551 ], [ 13.271484, 1.318243 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 8.789062, -1.098565 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.666016, 0.000000 ], [ 17.490234, -0.703107 ], [ 16.391602, -1.713612 ], [ 15.732422, -3.820408 ], [ 14.545898, -4.959615 ], [ 14.106445, -4.477856 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 14.238281, 1.230374 ], [ 13.271484, 1.318243 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.875000, 3.513421 ], [ 18.413086, 3.513421 ], [ 17.666016, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.413086, 3.513421 ], [ 17.666016, 0.000000 ], [ 17.490234, -0.703107 ], [ 16.391602, -1.713612 ], [ 15.732422, -3.820408 ], [ 14.545898, -4.959615 ], [ 14.106445, -4.477856 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 14.238281, 1.230374 ], [ 13.271484, 1.318243 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.875000, 3.513421 ], [ 18.413086, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.058594, 1.098565 ], [ 29.794922, 0.000000 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.399414, -5.922045 ], [ 30.717773, -8.320212 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.612305, -4.959615 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.545898, -4.959615 ], [ 15.732422, -3.820408 ], [ 16.391602, -1.713612 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.885742, 1.757537 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.058594, 1.098565 ], [ 29.794922, 0.000000 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.399414, -5.922045 ], [ 30.717773, -8.320212 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.612305, -4.959615 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.545898, -4.959615 ], [ 15.732422, -3.820408 ], [ 16.391602, -1.713612 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.885742, 1.757537 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.446289, -8.059230 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 23.906250, -10.919618 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 12.172852, -14.434680 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 12.832031, -9.145486 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ], [ 17.446289, -8.059230 ] ] ], [ [ [ 12.963867, -4.740675 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.303711, -5.834616 ], [ 17.446289, -8.059230 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 23.906250, -10.919618 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 12.172852, -14.434680 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 12.832031, -9.145486 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.018555, -17.392579 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 25.048828, -17.560247 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.238281, -22.105999 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 25.048828, -17.560247 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.238281, -22.105999 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 13.447266, -16.930705 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.267578, -1.581830 ], [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.267578, -1.581830 ], [ 30.410156, -1.098565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.372369 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 28.916016, -16.003576 ], [ 27.026367, -17.936929 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.203125, -17.518344 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 30.322266, -8.233237 ], [ 32.739258, -9.188870 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 28.916016, -16.003576 ], [ 27.026367, -17.936929 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.203125, -17.518344 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 32.827148, -16.678293 ], [ 32.651367, -20.303418 ], [ 31.157227, -22.228090 ], [ 29.399414, -22.065278 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.224609, -17.727759 ], [ 27.026367, -17.936929 ], [ 28.916016, -16.003576 ], [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 32.827148, -16.678293 ], [ 32.651367, -20.303418 ], [ 31.157227, -22.228090 ], [ 29.399414, -22.065278 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.224609, -17.727759 ], [ 27.026367, -17.936929 ], [ 28.916016, -16.003576 ], [ 30.234375, -15.496032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.155273, -8.450639 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 36.474609, -11.695273 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.155273, -8.450639 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 36.474609, -11.695273 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 33.881836, -0.922812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.453125, -14.604847 ], [ 32.651367, -13.710035 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.453125, -14.604847 ], [ 32.651367, -13.710035 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.737305, -14.689881 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.419922, -24.086589 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.651367, -20.303418 ], [ 32.827148, -16.678293 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 34.453125, -14.604847 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.737305, -14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.737305, -14.689881 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.419922, -24.086589 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.651367, -20.303418 ], [ 32.827148, -16.678293 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 34.453125, -14.604847 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.620117, -18.521283 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.993164, -21.453069 ], [ 29.399414, -22.065278 ], [ 27.114258, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.742188, -25.839449 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 25.048828, -17.644022 ], [ 25.620117, -18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.620117, -18.521283 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.993164, -21.453069 ], [ 29.399414, -22.065278 ], [ 27.114258, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.742188, -25.839449 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 25.048828, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.816406, -25.839449 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.431641, -28.265682 ], [ 31.508789, -29.228890 ], [ 30.014648, -31.128199 ], [ 27.421875, -33.211116 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 22.543945, -33.833920 ], [ 19.599609, -34.813803 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.742188, -25.839449 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.838867, -22.065278 ], [ 31.157227, -22.228090 ] ], [ [ 28.037109, -28.844674 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.065278 ], [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.816406, -25.839449 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.431641, -28.265682 ], [ 31.508789, -29.228890 ], [ 30.014648, -31.128199 ], [ 27.421875, -33.211116 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 22.543945, -33.833920 ], [ 19.599609, -34.813803 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.742188, -25.839449 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.838867, -22.065278 ] ], [ [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 31.025391, -25.720735 ], [ 31.816406, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.025391, -25.720735 ], [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 31.025391, -25.720735 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.526367, -12.468760 ], [ 50.053711, -13.539201 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 47.065430, -24.926295 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.330078, -22.755921 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 44.428711, -19.394068 ], [ 43.945312, -17.392579 ], [ 44.428711, -16.214675 ], [ 46.274414, -15.749963 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 50.053711, -13.539201 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 47.065430, -24.926295 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.330078, -22.755921 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 44.428711, -19.394068 ], [ 43.945312, -17.392579 ], [ 44.428711, -16.214675 ], [ 46.274414, -15.749963 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.906250, -48.603858 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ], [ 120.761719, -9.968851 ] ] ], [ [ [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.442383, -10.228437 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ], [ 125.068359, -9.362353 ] ] ], [ [ [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ] ] ], [ [ [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ] ] ], [ [ [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ] ] ], [ [ [ 107.226562, -5.922045 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ] ] ], [ [ [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.692383, -6.184246 ] ] ], [ [ [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 104.326172, -1.054628 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 102.568359, -4.214943 ], [ 99.448242, 0.000000 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ], [ 100.634766, 2.108899 ] ] ], [ [ [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.750977, 0.000000 ], [ 120.849609, 1.318243 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ] ] ], [ [ [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 108.984375, 0.000000 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.796875, 0.922812 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.576172, 3.513421 ], [ 117.465820, 3.513421 ], [ 117.290039, 3.250209 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.882812, -9.318990 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ] ] ], [ [ [ 124.936523, -8.885072 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.442383, -10.228437 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 104.326172, -1.054628 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 102.568359, -4.214943 ], [ 99.448242, 0.000000 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.750977, 0.000000 ], [ 120.849609, 1.318243 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 117.465820, 3.513421 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 108.984375, 0.000000 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.796875, 0.922812 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.576172, 3.513421 ], [ 117.465820, 3.513421 ] ] ], [ [ [ 128.100586, -2.811371 ], [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ] ] ], [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.924805, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.068359, -9.362353 ], [ 124.936523, -8.885072 ], [ 125.903320, -8.407168 ], [ 127.309570, -8.363693 ], [ 125.068359, -9.362353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.309570, -8.363693 ], [ 125.068359, -9.362353 ], [ 124.936523, -8.885072 ], [ 125.903320, -8.407168 ], [ 127.309570, -8.363693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.030273, -43.548548 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 143.481445, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 145.371094, -14.944785 ], [ 145.458984, -16.256867 ], [ 145.854492, -16.888660 ], [ 146.381836, -18.937464 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.061523, -30.902225 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 150.292969, -35.639441 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 146.293945, -39.027719 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 143.569336, -38.788345 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 124.189453, -32.953368 ], [ 123.618164, -33.870416 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.708008, -33.247876 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 115.004883, -29.458731 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.378906, -24.367114 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 116.674805, -20.673905 ], [ 117.421875, -20.715015 ], [ 119.223633, -19.932041 ], [ 120.849609, -19.642588 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 133.549805, -11.781325 ], [ 135.263672, -12.211180 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 138.295898, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ], [ 143.481445, -12.811801 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.030273, -43.548548 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 143.481445, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 145.371094, -14.944785 ], [ 145.458984, -16.256867 ], [ 145.854492, -16.888660 ], [ 146.381836, -18.937464 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.061523, -30.902225 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 150.292969, -35.639441 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 146.293945, -39.027719 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 143.569336, -38.788345 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 124.189453, -32.953368 ], [ 123.618164, -33.870416 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.708008, -33.247876 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 115.004883, -29.458731 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.378906, -24.367114 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 116.674805, -20.673905 ], [ 117.421875, -20.715015 ], [ 119.223633, -19.932041 ], [ 120.849609, -19.642588 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 133.549805, -11.781325 ], [ 135.263672, -12.211180 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 138.295898, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ], [ 144.580078, -3.820408 ] ] ], [ [ [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.511719, -5.134715 ], [ 156.005859, -6.533645 ] ] ], [ [ [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 150.205078, -6.315299 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.809570, -5.484768 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ], [ 152.314453, -4.828260 ] ] ], [ [ [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.402344, -3.776559 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 154.511719, -5.134715 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.511719, -5.134715 ] ] ], [ [ [ 152.094727, -4.127285 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 150.205078, -6.315299 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.809570, -5.484768 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.402344, -3.776559 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ] ] ], [ [ [ 160.356445, -9.362353 ], [ 160.839844, -9.838979 ], [ 159.829102, -9.752370 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ] ] ], [ [ [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ], [ 161.674805, -9.579084 ] ] ], [ [ [ 158.818359, -7.536764 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.203125, -7.406048 ], [ 158.818359, -7.536764 ] ] ], [ [ [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 156.884766, -7.144499 ], [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ], [ 160.839844, -9.838979 ], [ 159.829102, -9.752370 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.883789, -8.276727 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ] ] ], [ [ [ 158.203125, -7.406048 ], [ 158.818359, -7.536764 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.203125, -7.406048 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 156.884766, -7.144499 ], [ 156.533203, -6.577303 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ] ] ], [ [ [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.772461, -15.665354 ], [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.772461, -15.665354 ], [ 166.596680, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ], [ 165.761719, -21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.097206 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.738528 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 170.507812, -43.004647 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.527295 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.738528 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 170.507812, -43.004647 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.527295 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ 0.000000, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.515625, 50.317408 ], [ -3.515625, 53.435719 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ] ] ], [ [ [ -3.032227, 58.654085 ], [ -3.515625, 58.147519 ], [ -3.515625, 58.608334 ], [ -3.032227, 58.654085 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 57.633640 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ 0.000000, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.515625, 50.317408 ], [ -3.515625, 53.435719 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ] ] ], [ [ [ -3.515625, 58.147519 ], [ -3.515625, 58.608334 ], [ -3.032227, 58.654085 ], [ -3.515625, 58.147519 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.893615 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 9.360352, 43.036776 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.893615 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.000000, 38.685510 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.484812 ], [ -1.933594, 43.452919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.000000, 38.685510 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.484812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.197266, 35.173808 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.515625, 31.690782 ], [ -3.515625, 35.389050 ], [ -2.197266, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 35.389050 ], [ -2.197266, 35.173808 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.515625, 31.690782 ], [ -3.515625, 35.389050 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 0.000000, 14.944785 ], [ -0.527344, 15.156974 ], [ -2.021484, 14.562318 ], [ -3.515625, 13.368243 ], [ -3.515625, 24.086589 ], [ 0.000000, 21.820708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 24.086589 ], [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 0.000000, 14.944785 ], [ -0.527344, 15.156974 ], [ -2.021484, 14.562318 ], [ -3.515625, 13.368243 ], [ -3.515625, 24.086589 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.000000, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.515625, 13.368243 ], [ -2.021484, 14.562318 ], [ -0.527344, 15.156974 ], [ 0.000000, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ 0.000000, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.000000, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.515625, 13.368243 ], [ -2.021484, 14.562318 ], [ -0.527344, 15.156974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -3.251953, 6.271618 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -3.251953, 6.271618 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 9.925566 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -3.251953, 6.271618 ], [ -2.592773, 8.233237 ], [ -2.944336, 10.962764 ], [ 0.000000, 11.049038 ], [ 0.000000, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -3.251953, 6.271618 ], [ -2.592773, 8.233237 ], [ -2.944336, 10.962764 ], [ 0.000000, 11.049038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 110.654297, 49.152970 ], [ 108.457031, 49.296472 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.812500, 41.178654 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 42.363281, 43.229195 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.034180, 49.610710 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.289062, 53.094024 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 30.717773, 54.826008 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ] ] ], [ [ [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 48.864715 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ], [ 143.613281, 50.764259 ] ] ], [ [ [ 22.719727, 54.876607 ], [ 22.719727, 54.342149 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ], [ 22.719727, 54.876607 ] ] ], [ [ [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ] ] ], [ [ [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 110.654297, 49.152970 ], [ 108.457031, 49.296472 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.812500, 41.178654 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 42.363281, 43.229195 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.034180, 49.610710 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.289062, 53.094024 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 30.717773, 54.826008 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 48.864715 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.225586, 55.203953 ], [ 22.719727, 54.876607 ], [ 22.719727, 54.342149 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ] ] ], [ [ [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ] ] ], [ [ [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ] ] ], [ [ [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 14.721680, 67.825836 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 14.721680, 67.825836 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ] ] ], [ [ [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 10.546875, 57.751076 ], [ 10.239258, 56.897004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 10.546875, 57.751076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 10.986328, 58.859224 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ], [ 23.510742, 67.941650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.610352, 69.115611 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 10.986328, 58.859224 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.152344, 50.819818 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ], [ 6.152344, 50.819818 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 6.152344, 50.819818 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ], [ 6.152344, 49.468124 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.020508, 50.148746 ], [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.985352, 51.124213 ], [ 14.282227, 51.124213 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.579102, 48.893615 ], [ 12.875977, 48.312428 ], [ 12.919922, 47.487513 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.985352, 51.124213 ], [ 14.282227, 51.124213 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.579102, 48.893615 ], [ 12.875977, 48.312428 ], [ 12.919922, 47.487513 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.546872 ], [ 9.448242, 47.129951 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.305664, 46.164614 ], [ 7.250977, 45.798170 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ], [ 9.448242, 47.129951 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.305664, 46.164614 ], [ 7.250977, 45.798170 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.149414, 49.296472 ], [ 17.885742, 48.922499 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 15.249023, 49.066668 ], [ 14.326172, 48.574790 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 14.282227, 51.124213 ], [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.149414, 49.296472 ], [ 17.885742, 48.922499 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 15.249023, 49.066668 ], [ 14.326172, 48.574790 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 14.282227, 51.124213 ], [ 14.985352, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 23.203125, 54.239551 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 23.203125, 54.239551 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 9.448242, 47.129951 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.919922, 47.487513 ], [ 12.875977, 48.312428 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 9.448242, 47.129951 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.919922, 47.487513 ], [ 12.875977, 48.312428 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 15.249023, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.292969, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 16.171875, 46.860191 ], [ 16.523438, 46.528635 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 46.860191 ], [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.292969, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 16.171875, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.073242, 36.633162 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 15.512695, 38.238180 ], [ 15.073242, 36.633162 ] ] ], [ [ [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 8.876953, 44.370987 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 8.305664, 46.164614 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ] ] ], [ [ [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.073242, 36.633162 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 8.876953, 44.370987 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 8.305664, 46.164614 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ] ] ], [ [ [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 15.292969, 45.460131 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ], [ 17.622070, 45.981695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 15.292969, 45.460131 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.841797, 47.783635 ], [ 20.214844, 48.341646 ], [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.841797, 47.783635 ], [ 20.214844, 48.341646 ], [ 20.786133, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 19.731445, 48.224673 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 17.094727, 48.835797 ], [ 17.885742, 48.922499 ], [ 18.149414, 49.296472 ], [ 18.852539, 49.496675 ], [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 19.731445, 48.224673 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 17.094727, 48.835797 ], [ 17.885742, 48.922499 ], [ 18.149414, 49.296472 ], [ 18.852539, 49.496675 ], [ 19.291992, 49.582226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.962891, 45.243953 ], [ 18.544922, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.243953 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.962891, 45.243953 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.908160 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 18.413086, 42.488302 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ], [ 20.302734, 42.908160 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.548548 ], [ 20.302734, 42.908160 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 18.413086, 42.488302 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.368164, 44.024422 ], [ 22.983398, 43.229195 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.752930, 42.714732 ], [ 20.786133, 43.293200 ], [ 20.214844, 42.843751 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.368164, 44.024422 ], [ 22.983398, 43.229195 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.752930, 42.714732 ], [ 20.786133, 43.293200 ], [ 20.214844, 42.843751 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.752930, 42.714732 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.566406, 41.869561 ], [ 20.039062, 42.617791 ], [ 20.786133, 43.293200 ], [ 21.752930, 42.714732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 43.293200 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.566406, 41.869561 ], [ 20.039062, 42.617791 ], [ 20.786133, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.961914, 40.580585 ], [ 20.126953, 39.639538 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.511719, 41.738528 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ], [ 20.522461, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.714732 ], [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.961914, 40.580585 ], [ 20.126953, 39.639538 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.511719, 41.738528 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.566406, 41.869561 ], [ 21.313477, 42.228517 ], [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.566406, 41.869561 ], [ 21.313477, 42.228517 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 22.412109, 63.821288 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 22.412109, 63.821288 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 28.168945, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ], [ 26.455078, 57.492214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 28.168945, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 25.839844, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.719727, 54.876607 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.719727, 54.876607 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 24.829102, 56.389584 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.717773, 54.826008 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.289062, 53.094024 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.510742, 51.590723 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.717773, 54.826008 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.289062, 53.094024 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.510742, 51.590723 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.212891, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.202148, 44.182204 ], [ 25.532227, 43.707594 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.894531, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 48.224673 ], [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.212891, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.202148, 44.182204 ], [ 25.532227, 43.707594 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 25.532227, 43.707594 ], [ 27.202148, 44.182204 ], [ 28.520508, 43.707594 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ], [ 25.532227, 43.707594 ], [ 27.202148, 44.182204 ], [ 28.520508, 43.707594 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 30.014648, 46.437857 ], [ 28.828125, 46.468133 ], [ 28.212891, 45.490946 ], [ 28.125000, 46.830134 ], [ 26.586914, 48.224673 ], [ 27.509766, 48.487486 ], [ 28.652344, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.487486 ], [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 30.014648, 46.437857 ], [ 28.828125, 46.468133 ], [ 28.212891, 45.490946 ], [ 28.125000, 46.830134 ], [ 26.586914, 48.224673 ], [ 27.509766, 48.487486 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 40.034180, 49.610710 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 29.575195, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.828125, 46.468133 ], [ 30.014648, 46.437857 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 27.509766, 48.487486 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 40.034180, 49.610710 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 29.575195, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.828125, 46.468133 ], [ 30.014648, 46.437857 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 27.509766, 48.487486 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 33.750000, 52.348763 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 43.229195 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.297852, 43.133061 ], [ 40.034180, 43.580391 ], [ 42.363281, 43.229195 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.034180, 43.580391 ], [ 42.363281, 43.229195 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.297852, 43.133061 ], [ 40.034180, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.391158 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.391158 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.393555, 36.949892 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 9.052734, 32.138409 ], [ 9.799805, 29.458731 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.690782 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ 0.000000, 35.995785 ], [ 1.450195, 36.633162 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 8.393555, 36.949892 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 37.125286 ], [ 8.393555, 36.949892 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 9.052734, 32.138409 ], [ 9.799805, 29.458731 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.690782 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ 0.000000, 35.995785 ], [ 1.450195, 36.633162 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 19.072266, 30.297018 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.843750, 28.960089 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 9.931641, 31.391158 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ], [ 15.205078, 32.287133 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 19.072266, 30.297018 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.843750, 28.960089 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 9.931641, 31.391158 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.864258, 20.427013 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.150391, 12.511665 ], [ 13.315430, 13.581921 ], [ 12.260742, 13.068777 ], [ 10.986328, 13.410994 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 6.811523, 13.154376 ], [ 5.405273, 13.880746 ], [ 4.086914, 13.539201 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.864258, 20.427013 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.150391, 12.511665 ], [ 13.315430, 13.581921 ], [ 12.260742, 13.068777 ], [ 10.986328, 13.410994 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 6.811523, 13.154376 ], [ 5.405273, 13.880746 ], [ 4.086914, 13.539201 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.962764 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.962764 ], [ 0.878906, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.779297, 10.746969 ], [ 3.691406, 10.098670 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 2.460938, 12.254128 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.460938, 12.254128 ], [ 3.603516, 11.695273 ], [ 3.779297, 10.746969 ], [ 3.691406, 10.098670 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 2.460938, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.811523, 13.154376 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 10.986328, 13.410994 ], [ 12.260742, 13.068777 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.545898, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.107422, 7.057282 ], [ 9.228516, 6.446318 ], [ 8.481445, 4.784469 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 3.691406, 10.098670 ], [ 3.647461, 12.554564 ], [ 4.086914, 13.539201 ], [ 5.405273, 13.880746 ], [ 6.811523, 13.154376 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.405273, 13.880746 ], [ 6.811523, 13.154376 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 10.986328, 13.410994 ], [ 12.260742, 13.068777 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.545898, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.107422, 7.057282 ], [ 9.228516, 6.446318 ], [ 8.481445, 4.784469 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 3.691406, 10.098670 ], [ 3.647461, 12.554564 ], [ 4.086914, 13.539201 ], [ 5.405273, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.851562, 11.178402 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.928675 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.864258, 20.427013 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.851562, 11.178402 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.928675 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.864258, 20.427013 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 12.254128 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.501953, 6.227934 ], [ 14.458008, 4.740675 ], [ 15.820312, 3.030812 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 8.481445, 4.784469 ], [ 9.228516, 6.446318 ], [ 10.107422, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.501953, 6.227934 ], [ 14.458008, 4.740675 ], [ 15.820312, 3.030812 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 8.481445, 4.784469 ], [ 9.228516, 6.446318 ], [ 10.107422, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.510742, 10.098670 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.333984, 5.266008 ], [ 25.620117, 5.266008 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.368164, 4.039618 ], [ 20.917969, 4.346411 ], [ 19.467773, 5.047171 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.094727, 3.732708 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.030812 ], [ 14.458008, 4.740675 ], [ 14.501953, 6.227934 ], [ 15.249023, 7.449624 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.851562, 11.178402 ], [ 23.510742, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 23.510742, 10.098670 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.333984, 5.266008 ], [ 25.620117, 5.266008 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.368164, 4.039618 ], [ 20.917969, 4.346411 ], [ 19.467773, 5.047171 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.094727, 3.732708 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.030812 ], [ 14.458008, 4.740675 ], [ 14.501953, 6.227934 ], [ 15.249023, 7.449624 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.213867, 35.389050 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ] ] ], [ [ [ 26.586914, 41.574361 ], [ 26.015625, 40.847060 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.126953, 39.639538 ], [ 21.005859, 40.847060 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.015625, 40.847060 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.126953, 39.639538 ], [ 21.005859, 40.847060 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 35.065973 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 33.178711, 35.173808 ], [ 33.969727, 35.065973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.178711, 35.173808 ], [ 33.969727, 35.065973 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 33.178711, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.872070, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 33.881836, 27.683528 ], [ 32.299805, 29.764377 ], [ 34.101562, 26.155438 ], [ 35.683594, 23.966176 ], [ 35.507812, 23.120154 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 33.881836, 27.683528 ], [ 32.299805, 29.764377 ], [ 34.101562, 26.155438 ], [ 35.683594, 23.966176 ], [ 35.507812, 23.120154 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.637695, 40.279526 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 39.506836, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ] ] ], [ [ [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.847060 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.637695, 40.279526 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 39.506836, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ] ] ], [ [ [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.847060 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.112305, 33.100745 ], [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.112305, 33.100745 ], [ 35.991211, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 42.319336, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 35.068359, 33.100745 ], [ 35.815430, 33.284620 ], [ 35.683594, 32.731841 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 35.068359, 33.100745 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.535230 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.535230 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 36.826172, 16.972741 ], [ 36.254883, 13.581921 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.387695, 11.092166 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 28.959961, 9.405710 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ], [ 37.441406, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 36.826172, 16.972741 ], [ 36.254883, 13.581921 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.387695, 11.092166 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 28.959961, 9.405710 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.178711, 12.211180 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.925781, 9.492408 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 35.288086, 5.528511 ], [ 33.354492, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.707031, 4.609278 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 28.959961, 9.405710 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 32.387695, 11.092166 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.925781, 9.492408 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 35.288086, 5.528511 ], [ 33.354492, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.707031, 4.609278 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 28.959961, 9.405710 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 32.387695, 11.092166 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.024414, 1.933227 ], [ 33.881836, 0.000000 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 29.575195, -1.318243 ], [ 29.794922, 0.000000 ], [ 30.058594, 1.098565 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ], [ 35.024414, 1.933227 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.258768 ], [ 35.024414, 1.933227 ], [ 33.881836, 0.000000 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 29.575195, -1.318243 ], [ 29.794922, 0.000000 ], [ 30.058594, 1.098565 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.243164, 15.961329 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.826172, 16.972741 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ], [ 39.243164, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.020528 ], [ 39.243164, 15.961329 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.826172, 16.972741 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ], [ 43.286133, 11.996338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 39.550781, 3.425692 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.253906, -2.547988 ], [ 39.902344, -3.513421 ], [ 37.705078, -3.513421 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.000000 ], [ 35.024414, 1.933227 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 39.550781, 3.425692 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.253906, -2.547988 ], [ 39.902344, -3.513421 ], [ 37.705078, -3.513421 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.000000 ], [ 35.024414, 1.933227 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.990234, 14.519780 ], [ 41.572266, 13.453737 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.550781, 3.425692 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.990234, 14.519780 ], [ 41.572266, 13.453737 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.550781, 3.425692 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.101562, 42.875964 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.101562, 42.875964 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 64.160156, 38.925229 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 64.160156, 38.925229 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.908160 ], [ 79.101562, 42.875964 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ], [ 79.101562, 42.875964 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 43.637695, 40.279526 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ], [ 45.527344, 40.813809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.277806 ], [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 43.637695, 40.279526 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 48.559570, 41.836828 ], [ 49.614258, 40.580585 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ], [ 47.373047, 41.244772 ] ] ], [ [ [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.362305, 41.869561 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 48.559570, 41.836828 ], [ 49.614258, 40.580585 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.601562, 38.134557 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ], [ 45.439453, 38.891033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.740986 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.601562, 38.134557 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.944336, 29.993002 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 50.141602, 26.706360 ], [ 50.229492, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 40.913086, 19.518375 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 39.155273, 32.175612 ], [ 41.879883, 31.203405 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 50.141602, 26.706360 ], [ 50.229492, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 40.913086, 19.518375 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 39.155273, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.767578, 24.046464 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.767578, 24.046464 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 64.160156, 38.925229 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 64.160156, 38.925229 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 58.623047, 42.779275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.623037 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 45.615234, 13.325485 ], [ 44.956055, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.623037 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 45.615234, 13.325485 ], [ 44.956055, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 57.392578, 23.885838 ], [ 58.710938, 23.604262 ], [ 59.765625, 22.553147 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ], [ 57.392578, 23.885838 ] ] ], [ [ [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.604262 ], [ 59.765625, 22.553147 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ], [ 44.077148, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.110352, 11.480025 ], [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.020508, 10.660608 ], [ 50.053711, 8.102739 ], [ 48.559570, 5.353521 ], [ 46.538086, 2.899153 ], [ 42.846680, 0.000000 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.702148, 11.609193 ], [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ], [ 50.053711, 8.102739 ], [ 48.559570, 5.353521 ], [ 46.538086, 2.899153 ], [ 42.846680, 0.000000 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.702148, 11.609193 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.256836, 37.509726 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.256836, 37.509726 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.323242, 38.272689 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 73.256836, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 73.256836, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.795898, 38.513788 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 75.146484, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 85.781250, 28.226970 ], [ 88.110352, 27.877928 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ], [ 83.891602, 29.343875 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.448674 ], [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 85.781250, 28.226970 ], [ 88.110352, 27.877928 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 88.022461, 26.431228 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 88.022461, 26.431228 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.815430, 9.275622 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 108.457031, 49.296472 ], [ 110.654297, 49.152970 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.796875, 43.771094 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 96.328125, 42.747012 ], [ 95.273438, 44.245199 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 108.457031, 49.296472 ], [ 110.654297, 49.152970 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.796875, 43.771094 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 96.328125, 42.747012 ], [ 95.273438, 44.245199 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ], [ 91.669922, 27.800210 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ], [ 89.824219, 25.997550 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.470573 ], [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 111.005859, 19.725342 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ] ] ], [ [ [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 102.700195, 22.715390 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 97.910156, 28.343065 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 90.000000, 28.304381 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 85.781250, 28.226970 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 74.970703, 37.439974 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 95.273438, 44.245199 ], [ 96.328125, 42.747012 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.796875, 43.771094 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 102.700195, 22.715390 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 97.910156, 28.343065 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 90.000000, 28.304381 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 85.781250, 28.226970 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 74.970703, 37.439974 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 95.273438, 44.245199 ], [ 96.328125, 42.747012 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.796875, 43.771094 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 123.530273, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 99.096680, 13.838080 ], [ 99.580078, 11.910354 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 95.361328, 15.749963 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.657227, 27.527758 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 99.096680, 13.838080 ], [ 99.580078, 11.910354 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 95.361328, 15.749963 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ], [ 103.183594, 20.797201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.471955 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.458984, 7.449624 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.910354 ], [ 99.096680, 13.838080 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.458984, 7.449624 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.910354 ], [ 99.096680, 13.838080 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.471955 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.471955 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 115.839844, 4.346411 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 111.796875, 0.922812 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 101.381836, 2.767478 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 115.839844, 4.346411 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 111.796875, 0.922812 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 101.381836, 2.767478 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 120.717773, 21.983801 ], [ 120.102539, 23.563987 ], [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 120.717773, 21.983801 ], [ 120.102539, 23.563987 ], [ 121.464844, 25.324167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 127.529297, 39.774769 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 125.683594, 37.961523 ], [ 125.244141, 37.683820 ], [ 124.672852, 38.134557 ], [ 125.200195, 38.685510 ], [ 125.288086, 39.571822 ], [ 124.233398, 39.943436 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 127.529297, 39.774769 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 125.683594, 37.961523 ], [ 125.244141, 37.683820 ], [ 124.672852, 38.134557 ], [ 125.200195, 38.685510 ], [ 125.288086, 39.571822 ], [ 124.233398, 39.943436 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ], [ 129.418945, 36.809285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ] ] ], [ [ [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 118.476562, 9.318990 ], [ 117.202148, 8.450639 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ] ] ], [ [ [ 123.969727, 10.314919 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ] ] ], [ [ [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ] ] ], [ [ [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 121.992188, 10.444598 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ], [ 123.090820, 11.609193 ] ] ], [ [ [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ] ] ], [ [ [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 124.057617, 12.554564 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ] ] ], [ [ [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 118.476562, 9.318990 ], [ 117.158203, 8.407168 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ] ] ], [ [ [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ] ] ], [ [ [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ] ] ], [ [ [ 121.860352, 11.910354 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 121.992188, 10.444598 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ] ] ], [ [ [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.322266, 13.496473 ] ] ], [ [ [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 124.057617, 12.554564 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.444336, 5.484768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ] ] ], [ [ [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ] ] ], [ [ [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.943359, 45.552525 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 2.284551 ], [ 13.271484, 1.318243 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 10.590820, -3.513421 ], [ 8.789062, -1.098565 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 13.051758, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.733398, 2.328460 ], [ 13.051758, 2.284551 ], [ 13.271484, 1.318243 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 10.590820, -3.513421 ], [ 8.789062, -1.098565 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.413086, 3.513421 ], [ 17.666016, 0.000000 ], [ 17.490234, -0.703107 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 11.689453, -3.513421 ], [ 11.469727, -2.723583 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 14.238281, 1.230374 ], [ 13.271484, 1.318243 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ], [ 18.413086, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.094727, 3.732708 ], [ 18.413086, 3.513421 ], [ 17.666016, 0.000000 ], [ 17.490234, -0.703107 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 11.689453, -3.513421 ], [ 11.469727, -2.723583 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 14.238281, 1.230374 ], [ 13.271484, 1.318243 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.434044 ], [ 29.707031, 4.609278 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.058594, 1.098565 ], [ 29.794922, 0.000000 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 18.500977, 4.214943 ], [ 19.467773, 5.047171 ], [ 20.917969, 4.346411 ], [ 22.368164, 4.039618 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.620117, 5.266008 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ], [ 29.707031, 4.609278 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.058594, 1.098565 ], [ 29.794922, 0.000000 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 18.500977, 4.214943 ], [ 19.467773, 5.047171 ], [ 20.917969, 4.346411 ], [ 22.368164, 4.039618 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.620117, 5.266008 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.267578, -1.581830 ], [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.267578, -1.581830 ], [ 30.410156, -1.098565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.372369 ], [ 30.717773, -3.337954 ], [ 29.267578, -3.513421 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.717773, -3.337954 ], [ 29.267578, -3.513421 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.661133, -3.074695 ], [ 37.705078, -3.513421 ], [ 30.541992, -3.513421 ], [ 30.717773, -3.030812 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.705078, -3.513421 ], [ 30.541992, -3.513421 ], [ 30.717773, -3.030812 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 33.881836, -0.922812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.221680, -3.425692 ], [ 126.123047, -3.513421 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.649414, -3.513421 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 140.976562, -2.591889 ], [ 140.976562, -3.513421 ], [ 132.714844, -3.513421 ], [ 131.967773, -2.811371 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ] ] ], [ [ [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.322266, -3.513421 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.750977, 0.000000 ], [ 120.849609, 1.318243 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ] ] ], [ [ [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.235352, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 108.984375, 0.000000 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.796875, 0.922812 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.839844, 4.346411 ], [ 117.861328, 4.171115 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 104.326172, -1.054628 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 99.448242, 0.000000 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 140.976562, -2.591889 ], [ 140.976562, -3.513421 ], [ 132.714844, -3.513421 ], [ 131.967773, -2.811371 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 104.326172, -1.054628 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 99.448242, 0.000000 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 126.123047, -3.513421 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 128.100586, -2.811371 ], [ 130.429688, -3.074695 ], [ 130.649414, -3.513421 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.322266, -3.513421 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.750977, 0.000000 ], [ 120.849609, 1.318243 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 115.839844, 4.346411 ], [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.235352, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 108.984375, 0.000000 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.796875, 0.922812 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.839844, 4.346411 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.924805, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -3.513421 ], [ 140.976562, -3.513421 ], [ 140.976562, -2.591889 ], [ 143.437500, -3.513421 ] ] ], [ [ [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.490234, -3.513421 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 143.437500, -3.513421 ], [ 140.976562, -3.513421 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -172.902832, -84.059387 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -135.219727, -74.301409 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -135.219727, -74.301409 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ] ] ], [ [ [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -126.716309, 50.401515 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -154.819336, 19.518375 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -156.093750, 19.704658 ], [ -155.852051, 19.993998 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -99.030762, 26.372185 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -105.051270, 30.656816 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -154.819336, 19.518375 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -156.093750, 19.704658 ], [ -155.852051, 19.993998 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -99.030762, 26.372185 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -105.051270, 30.656816 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -105.051270, 30.656816 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.030762, 26.372185 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.712402, 24.287027 ], [ -97.888184, 22.451649 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.569824, 15.665354 ], [ -100.832520, 17.182779 ], [ -101.931152, 17.936929 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.675293, 30.164126 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -105.051270, 30.656816 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.030762, 26.372185 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.712402, 24.287027 ], [ -97.888184, 22.451649 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.569824, 15.665354 ], [ -100.832520, 17.182779 ], [ -101.931152, 17.936929 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.675293, 30.164126 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.230957, 15.897942 ], [ -88.242188, 15.749963 ], [ -89.165039, 15.072124 ], [ -89.165039, 14.689881 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.230957, 15.897942 ], [ -88.242188, 15.749963 ], [ -89.165039, 15.072124 ], [ -89.165039, 14.689881 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.811456 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.242188, 17.056785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.811456 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.505859, 13.859414 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.175771 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.604492, 14.370834 ], [ -89.077148, 14.349548 ], [ -88.505859, 13.859414 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.175771 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 13.923404 ], [ -88.505859, 13.859414 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.165039, 15.072124 ], [ -88.242188, 15.728814 ], [ -88.242188, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.728814 ], [ -88.242188, 13.923404 ], [ -88.505859, 13.859414 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.165039, 15.072124 ], [ -88.242188, 15.728814 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.479980, 70.995506 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -96.569824, 69.687618 ] ] ], [ [ [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ], [ [ [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ] ] ], [ [ [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ] ] ], [ [ [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.479980, 70.995506 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ], [ [ [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.695312, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.695312, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.696289, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.786621, -66.513260 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -72.839355, -73.397060 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ], [ -62.138672, -66.187139 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.622070, -65.802776 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.786621, -66.513260 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -72.839355, -73.397060 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -68.576660, 1.757537 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ] ] ], [ [ [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ], [ -66.884766, 1.274309 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -69.829102, 1.735574 ] ] ], [ [ [ -67.038574, 1.757537 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.204102, 1.493971 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.038574, 1.757537 ], [ -64.138184, 1.757537 ], [ -64.204102, 1.493971 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.138184, 1.757537 ], [ -64.204102, 1.493971 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.038574, 1.757537 ], [ -64.138184, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.611816, 1.757537 ], [ -57.590332, 1.757537 ], [ -58.447266, 1.472006 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.590332, 1.757537 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.611816, 1.757537 ], [ -57.590332, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -79.760742, -7.188101 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -79.760742, -7.188101 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.092773, -21.391705 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.092773, -21.391705 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.412598, -11.566144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -57.590332, 1.757537 ], [ -50.031738, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.471191, 0.000000 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.031738, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.471191, 0.000000 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -57.590332, 1.757537 ], [ -50.031738, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -67.763672, -53.839564 ] ] ], [ [ [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -57.634277, -30.202114 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -57.634277, -30.202114 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.786621, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.786621, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.122559, 42.081917 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ] ] ], [ [ [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.122559, 42.081917 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ] ] ], [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -83.122559, 42.081917 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.900879, 29.152161 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -83.122559, 42.081917 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.900879, 29.152161 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -88.549805, 21.493964 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -88.549805, 21.493964 ], [ -87.055664, 21.555284 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.230957, 15.897942 ], [ -88.242188, 15.728814 ], [ -89.165039, 15.072124 ], [ -89.165039, 14.689881 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.757812, 14.200488 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.230957, 15.897942 ], [ -88.242188, 15.728814 ], [ -89.165039, 15.072124 ], [ -89.165039, 14.689881 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.757812, 14.200488 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ] ] ], [ [ [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ] ] ], [ [ [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ] ] ], [ [ [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 27.059126 ] ] ], [ [ [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -77.871094, 26.843677 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.110352, 18.354526 ], [ -88.374023, 16.530898 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.811456 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.110352, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.505859, 18.500447 ], [ -88.110352, 18.354526 ], [ -88.374023, 16.530898 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.811456 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.505859, 13.859414 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.505859, 13.859414 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.451660, 15.897942 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.626109 ], [ -84.946289, 14.796128 ], [ -85.166016, 14.370834 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.505859, 13.859414 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.165039, 15.072124 ], [ -88.242188, 15.728814 ], [ -87.912598, 15.876809 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.626109 ], [ -84.946289, 14.796128 ], [ -85.166016, 14.370834 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.505859, 13.859414 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.165039, 15.072124 ], [ -88.242188, 15.728814 ], [ -87.912598, 15.876809 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.022949, 16.024696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.166504, 15.008464 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.540039, 13.581921 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.166016, 14.370834 ], [ -84.946289, 14.796128 ], [ -84.462891, 14.626109 ], [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.540039, 13.581921 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.166016, 14.370834 ], [ -84.946289, 14.796128 ], [ -84.462891, 14.626109 ], [ -83.496094, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -82.287598, 23.200961 ], [ -80.639648, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.287598, 23.200961 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -82.287598, 23.200961 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.649902, 9.058702 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.649902, 9.058702 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.068848, 9.253936 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ], [ -78.068848, 9.253936 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -78.068848, 9.253936 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.585449, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.725342 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ], [ -71.718750, 19.725342 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.932041 ], [ -71.718750, 19.725342 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.499512, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.499512, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -60.908203, 10.876465 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -7.580566, 55.141210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ] ] ], [ [ [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 1.757812, 42.374778 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 1.757812, 50.986099 ], [ 1.757812, 42.374778 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ] ] ], [ [ [ 1.757812, 50.986099 ], [ 1.757812, 42.374778 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 1.757812, 50.986099 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.789062, 40.763901 ], [ -9.052734, 41.885921 ], [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.789062, 40.763901 ], [ -9.052734, 41.885921 ], [ -8.283691, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -6.921387, 34.125448 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -6.921387, 34.125448 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.447266, 16.045813 ], [ -12.172852, 14.626109 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.535645, 12.447305 ], [ -12.216797, 12.468760 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ], [ -13.447266, 16.045813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.615138 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.626109 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.535645, 12.447305 ], [ -12.216797, 12.468760 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.699707, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.699219, 12.404389 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.699219, 12.404389 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.216797, 12.468760 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -7.844238, 8.581021 ], [ -8.305664, 8.320212 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.524902, 8.363693 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -14.084473, 9.903921 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.216797, 12.468760 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -7.844238, 8.581021 ], [ -8.305664, 8.320212 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.524902, 8.363693 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -14.084473, 9.903921 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.710938, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.634766, 9.275622 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.447754, 6.795535 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.447754, 6.795535 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.368950 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -11.052246, 12.232655 ], [ -11.469727, 12.082296 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.368950 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -11.052246, 12.232655 ], [ -11.469727, 12.082296 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 1.757812, 12.726084 ], [ 1.757812, 11.609193 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 1.757812, 12.726084 ], [ 1.757812, 11.609193 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -11.447754, 6.795535 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -11.447754, 6.795535 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.559294 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.712402, 4.368320 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.305664, 8.320212 ], [ -7.844238, 8.581021 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.712402, 4.368320 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.305664, 8.320212 ], [ -7.844238, 8.581021 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.218262, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ 0.000000, 5.550381 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ 0.000000, 5.550381 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.761719, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.761719, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.388672, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.388672, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.471191, 0.000000 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.499512, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.471191, 0.000000 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.499512, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.757812, 36.650793 ], [ 1.757812, 20.653346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.650793 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.757812, 36.650793 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 12.726084 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.368950 ], [ 1.757812, 12.726084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.368950 ], [ 1.757812, 12.726084 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.368950 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.943900 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.943900 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 6.446318 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.757812, 11.609193 ], [ 1.757812, 6.446318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.609193 ], [ 1.757812, 6.446318 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.757812, 11.609193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.208984, 75.612262 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.764299 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.488504 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ] ] ], [ [ [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.208984, 75.612262 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.764299 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ] ] ], [ [ [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.742188, 65.802776 ], [ -24.147949, 65.802776 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.742188, 65.802776 ] ] ], [ [ [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.802776 ], [ -20.390625, 65.802776 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.416748 ], [ -20.742188, 65.802776 ], [ -24.147949, 65.802776 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.802776 ], [ -20.390625, 65.802776 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.237793, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.894531, -71.321915 ], [ 73.081055, -70.714471 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 77.629395, -69.457554 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 19.248047, -69.892565 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 27.092285, -70.458859 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 52.602539, -66.044796 ], [ 54.514160, -65.811781 ], [ 56.337891, -65.973325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.514160, -65.811781 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.894531, -71.321915 ], [ 73.081055, -70.714471 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 77.629395, -69.457554 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 19.248047, -69.892565 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 27.092285, -70.458859 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 52.602539, -66.044796 ], [ 54.514160, -65.811781 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.812988, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ] ] ], [ [ [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ] ] ], [ [ [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 52.602539, -66.044796 ], [ 54.514160, -65.811781 ], [ 56.337891, -65.973325 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.514160, -65.811781 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.954590, -66.513260 ], [ 52.602539, -66.044796 ], [ 54.514160, -65.811781 ] ] ], [ [ [ 90.812988, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.812988, -67.204032 ] ] ], [ [ [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 0.000000 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.695801, 1.757537 ], [ 34.936523, 1.757537 ], [ 33.881836, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.936523, 1.757537 ], [ 33.881836, 0.000000 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.695801, 1.757537 ], [ 34.936523, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.000000 ], [ 34.936523, 1.757537 ], [ 40.979004, 1.757537 ], [ 40.979004, -0.856902 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 1.757537 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.000000 ], [ 34.936523, 1.757537 ], [ 40.979004, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.055176, 1.054628 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 1.757537 ], [ 45.109863, 1.757537 ], [ 44.055176, 1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.109863, 1.757537 ], [ 44.055176, 1.054628 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 1.757537 ], [ 45.109863, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 8.789062, -1.098565 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 11.271973, 1.076597 ], [ 11.271973, 1.757537 ], [ 13.029785, 1.757537 ], [ 13.271484, 1.318243 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.029785, 1.757537 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 8.789062, -1.098565 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 11.271973, 1.076597 ], [ 11.271973, 1.757537 ], [ 13.029785, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.512207, -0.725078 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 13.029785, 1.757537 ], [ 17.885742, 1.757537 ], [ 17.819824, 0.307616 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.885742, 1.757537 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.512207, -0.725078 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 13.029785, 1.757537 ], [ 17.885742, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 17.512207, -0.725078 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.885742, 1.757537 ], [ 30.695801, 1.757537 ], [ 30.080566, 1.076597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.695801, 1.757537 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 17.512207, -0.725078 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.885742, 1.757537 ], [ 30.695801, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 12.172852, -14.434680 ], [ 12.722168, -13.132979 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ], [ 16.853027, -7.209900 ] ] ], [ [ [ 12.985840, -4.762573 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.856475 ], [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 12.172852, -14.434680 ], [ 12.722168, -13.132979 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.392090, -23.845650 ], [ 14.238281, -22.105999 ], [ 13.337402, -20.858812 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.392090, -23.845650 ], [ 14.238281, -22.105999 ], [ 13.337402, -20.858812 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.810059, -16.930705 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.394322 ], [ 30.739746, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ], [ 30.739746, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.026367, -17.936929 ], [ 25.246582, -17.727759 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 30.344238, -8.233237 ], [ 32.739258, -9.210560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.026367, -17.936929 ], [ 25.246582, -17.727759 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.246582, -17.727759 ], [ 27.026367, -17.936929 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.246582, -17.727759 ], [ 27.026367, -17.936929 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.177246, -8.472372 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.739746, -3.337954 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.177246, -8.472372 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.739746, -3.337954 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.746969 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 25.070801, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 30.893555, -29.897806 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ] ], [ [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 30.893555, -29.897806 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ] ], [ [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.839449 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.526367, -12.468760 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 47.087402, -24.926295 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 47.087402, -24.926295 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ], [ -1.120605, 54.635697 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ] ] ], [ [ [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.293200 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.676454 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.710273 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.293200 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.676454 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.710273 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -1.757812, 37.107765 ], [ -1.757812, 43.293200 ], [ -1.516113, 43.036776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 43.293200 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -1.757812, 37.107765 ], [ -1.757812, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -1.757812, 32.212801 ], [ -1.757812, 34.143635 ], [ -1.406250, 32.879587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 34.143635 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -1.757812, 32.212801 ], [ -1.757812, 34.143635 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.757812, 14.689881 ], [ -1.757812, 22.938160 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 22.938160 ], [ 0.000000, 21.800308 ], [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.757812, 14.689881 ], [ -1.757812, 22.938160 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.757812, 11.005904 ], [ -1.757812, 14.689881 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.757812, 11.005904 ], [ -1.757812, 14.689881 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ 0.000000, 5.550381 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ 0.000000, 11.027472 ], [ 0.000000, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ 0.000000, 5.550381 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ 0.000000, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.936523, 64.415921 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.936523, 64.415921 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 66.513260 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 15.996094, 67.204032 ], [ 15.380859, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 67.204032 ], [ 15.380859, 66.513260 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 15.996094, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ] ] ], [ [ [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ] ] ], [ [ [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.502441, 49.553726 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.502441, 49.553726 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.532038 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 12.502441, 49.553726 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 12.502441, 49.553726 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 17.622070, 54.863963 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ] ] ], [ [ [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.435547, 44.056012 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ], [ 17.622070, 45.966425 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.545410, 46.513516 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.435547, 44.056012 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.435547, 44.056012 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.435547, 44.056012 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.698730, 43.213183 ], [ 19.204102, 43.532620 ], [ 20.324707, 42.908160 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.532620 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.698730, 43.213183 ], [ 19.204102, 43.532620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.555176, 42.261049 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.555176, 42.261049 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ], [ 21.621094, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.533691, 41.722131 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.533691, 41.722131 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ], [ 26.455078, 57.480403 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.916504, 48.136767 ], [ 28.125000, 46.815099 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.916504, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 48.224673 ], [ 26.916504, 48.136767 ], [ 28.125000, 46.815099 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.815099 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.815099 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ], [ 42.385254, 43.229195 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.056152, 43.564472 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.230469, 35.728677 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.230469, 35.728677 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.875488, 12.232655 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.390137, 4.039618 ], [ 20.917969, 4.324501 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.390137, 4.039618 ], [ 20.917969, 4.324501 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.464355, 35.012002 ], [ 33.376465, 35.173808 ], [ 32.717285, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.464355, 35.012002 ], [ 33.376465, 35.173808 ], [ 32.717285, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.464355, 35.012002 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ], [ 33.464355, 35.012002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.173808 ], [ 33.464355, 35.012002 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.894043, 30.883369 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 34.101562, 26.155438 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ], [ 28.894043, 30.883369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.477051, 31.597253 ], [ 28.894043, 30.883369 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 34.101562, 26.155438 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ] ] ], [ [ [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ] ] ], [ [ [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.705566, 32.713355 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.521484, 8.928487 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.521484, 8.928487 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 23.884277, 8.624472 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 23.884277, 8.624472 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 35.024414, 1.911267 ], [ 33.881836, 0.000000 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ], [ 35.024414, 1.911267 ], [ 33.881836, 0.000000 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 41.748047, 11.070603 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 41.748047, 11.070603 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 35.310059, -1.757537 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.000000 ], [ 35.024414, 1.911267 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 35.310059, -1.757537 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.000000 ], [ 35.024414, 1.911267 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.594238, 13.453737 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.070603 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.594238, 13.453737 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.070603 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.966309, 29.993002 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.197754, 17.434511 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.197754, 17.434511 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 56.052246, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.601875 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 45.615234, 13.304103 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 45.197754, 17.434511 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.601875 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 45.615234, 13.304103 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 45.197754, 17.434511 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 46.625977, 10.833306 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 46.625977, 10.833306 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.042480, 10.660608 ], [ 50.053711, 8.102739 ], [ 48.581543, 5.353521 ], [ 46.560059, 2.877208 ], [ 44.055176, 1.054628 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.042480, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.042480, 10.660608 ], [ 50.053711, 8.102739 ], [ 48.581543, 5.353521 ], [ 46.560059, 2.877208 ], [ 44.055176, 1.054628 ], [ 42.846680, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.970703, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.970703, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.047852, 36.844461 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.047852, 36.844461 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 74.047852, 36.844461 ], [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 74.047852, 36.844461 ], [ 75.146484, 37.142803 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.518555, 30.429730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.000000, 25.264568 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 75.739746, 11.329253 ], [ 74.860840, 12.747516 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.735840, 26.843677 ], [ 91.713867, 25.165173 ], [ 90.000000, 25.264568 ] ] ], [ [ [ 91.757812, 26.843677 ], [ 91.735840, 26.843677 ], [ 91.757812, 27.117813 ], [ 91.757812, 26.843677 ] ] ], [ [ [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.713867, 24.126702 ], [ 91.691895, 22.998852 ] ] ], [ [ [ 91.757812, 25.165173 ], [ 91.757812, 24.126702 ], [ 91.713867, 24.126702 ], [ 91.713867, 25.165173 ], [ 91.757812, 25.165173 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.735840, 26.843677 ], [ 91.713867, 25.165173 ], [ 90.000000, 25.264568 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 75.739746, 11.329253 ], [ 74.860840, 12.747516 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ], [ [ [ 91.713867, 24.126702 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.713867, 24.126702 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 91.757812, 50.666872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 91.757812, 26.843677 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 91.757812, 26.843677 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 90.000000, 25.264568 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.126702 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.757812, 23.200961 ], [ 91.757812, 22.309426 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 90.000000, 25.264568 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.126702 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.757812, 23.200961 ], [ 91.757812, 22.309426 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.182037 ], [ 91.757812, 27.800210 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.182037 ], [ 91.757812, 27.800210 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.348633, 2.196727 ], [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.326172, -1.757537 ], [ 9.162598, -1.757537 ], [ 8.789062, -1.098565 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.326172, -1.757537 ], [ 9.162598, -1.757537 ], [ 8.789062, -1.098565 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 17.885742, 1.757537 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.512207, -0.725078 ], [ 16.391602, -1.757537 ], [ 14.326172, -1.757537 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ], [ 18.435059, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.116699, 3.732708 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 17.885742, 1.757537 ], [ 17.819824, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.512207, -0.725078 ], [ 16.391602, -1.757537 ], [ 14.326172, -1.757537 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 17.512207, -0.725078 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.885742, 1.757537 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.917969, 4.324501 ], [ 22.390137, 4.039618 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 27.026367, 5.134715 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 17.512207, -0.725078 ], [ 17.666016, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.885742, 1.757537 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.917969, 4.324501 ], [ 22.390137, 4.039618 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.783691, -1.757537 ], [ 29.267578, -1.757537 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ], [ 30.783691, -1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.783691, -1.757537 ], [ 29.267578, -1.757537 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.310059, -1.757537 ], [ 30.783691, -1.757537 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.944781 ], [ 35.310059, -1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 35.310059, -1.757537 ], [ 30.783691, -1.757537 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.804688, 65.802776 ], [ 30.190430, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ] ] ], [ [ [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ], [ [ [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.804688, 65.802776 ], [ 30.190430, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ] ] ], [ [ [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ], [ [ [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ] ] ], [ [ [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ], [ 23.532715, 67.941650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.632324, 69.107777 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.941650 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.941650 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.398438, -66.513260 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ], [ 136.274414, -66.513260 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.223633, -75.458589 ], [ 163.564453, -76.237366 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.813477, -66.947274 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 101.052246, -66.513260 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.769043, -65.802776 ], [ 136.274414, -66.513260 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.223633, -75.458589 ], [ 163.564453, -76.237366 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.813477, -66.947274 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 101.052246, -66.513260 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.398438, -66.513260 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.582031, -67.110204 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 95.119629, -67.204032 ], [ 93.317871, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.119629, -67.204032 ] ] ], [ [ [ 98.679199, -67.110204 ], [ 99.799805, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ] ] ], [ [ [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ] ] ], [ [ [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.274414, -66.513260 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 119.003906, -67.204032 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.398438, -66.513260 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ] ] ], [ [ [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ], [ 88.813477, -66.947274 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.390361 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ] ] ], [ [ [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 93.317871, -67.204032 ] ] ], [ [ [ 119.003906, -67.204032 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.557007 ], [ 122.849121, -66.513260 ], [ 123.398438, -66.513260 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 130.144043, -66.513260 ], [ 130.781250, -66.416748 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.274414, -66.513260 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 119.003906, -67.204032 ] ] ], [ [ [ 93.317871, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.119629, -67.204032 ], [ 93.317871, -67.204032 ] ] ], [ [ [ 99.799805, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.799805, -67.204032 ] ] ], [ [ [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.709473, 1.757537 ], [ 110.390625, 1.669686 ], [ 114.719238, 1.757537 ], [ 114.609375, 1.450040 ] ] ], [ [ [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.172363, 1.757537 ], [ 104.216309, 1.296276 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.719238, 1.757537 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.709473, 1.757537 ], [ 110.390625, 1.669686 ], [ 114.719238, 1.757537 ] ] ], [ [ [ 104.172363, 1.757537 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.172363, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.384032 ] ] ], [ [ [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ], [ 120.761719, -9.968851 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ] ] ], [ [ [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ] ] ], [ [ [ 107.248535, -5.943900 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 111.511230, -8.298470 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ] ] ], [ [ [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ] ] ], [ [ [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 101.381836, -2.789425 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.719238, 1.757537 ], [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ] ] ], [ [ [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ] ] ], [ [ [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ] ] ], [ [ [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 128.583984, 1.559866 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 111.511230, -8.298470 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 101.381836, -2.789425 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.719238, 1.757537 ], [ 117.949219, 1.757537 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.573242, 1.757537 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.384032 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.384032 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.936035, -8.254983 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ] ] ], [ [ [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.015137, -35.047987 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.378906, -24.367114 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.701660, -15.029686 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.015137, -35.047987 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.378906, -24.367114 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.701660, -15.029686 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.580078, -3.842332 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ], [ 144.580078, -3.842332 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 152.226562, -3.228271 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ], [ 152.226562, -3.228271 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 144.580078, -3.842332 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ] ] ], [ [ [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ] ] ], [ [ [ 150.930176, -2.482133 ], [ 152.226562, -3.228271 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.384032 ], [ 160.839844, -9.860628 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ], [ 160.839844, -9.860628 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.117840 ], [ 165.761719, -21.063997 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.677848 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ], [ 165.761719, -21.063997 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.677848 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.000000, 25.264568 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.760320 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ] ] ], [ [ [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ] ] ], [ [ [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.447150 ], [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 25.760320 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.000000, 25.264568 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.760320 ] ] ], [ [ [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ] ] ], [ [ [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.447150 ], [ 88.242188, 25.760320 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.804461 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 90.000000, 25.264568 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.242188, 24.447150 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.760320 ], [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 90.000000, 25.264568 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.242188, 24.447150 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.760320 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 102.700195, 22.715390 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ] ] ], [ [ [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 102.700195, 22.715390 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 95.361328, 15.728814 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 95.361328, 15.728814 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ], [ 103.183594, 20.776659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.150879, 22.471955 ], [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.547363, 9.947209 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.547363, 9.947209 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 112.983398, 3.118576 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 112.983398, 3.118576 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ] ] ], [ [ [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ] ] ], [ [ [ 123.969727, 10.293301 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ] ] ], [ [ [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ] ] ], [ [ [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ] ] ], [ [ [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 115.444336, 5.462896 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ] ] ], [ [ [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ] ] ], [ [ [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.965332, 45.552525 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.816406, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.816406, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -167.025146, -84.569506 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ] ] ], [ [ [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.916260, -79.004962 ], [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ] ] ], [ [ [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.916260, -79.004962 ], [ -159.576416, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.314941, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.314941, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -135.219727, -74.301409 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.225830, 19.993998 ], [ -154.808350, 19.518375 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.225830, 19.993998 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.225830, 19.993998 ], [ -154.808350, 19.518375 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 58.790978 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -162.894287, 66.861082 ], [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -140.998535, 66.861082 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.990234, 66.861082 ], [ -175.023193, 66.587583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.990234, 66.861082 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.607378 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.607378 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.685303, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ] ] ], [ [ [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.663330, 66.578851 ], [ -163.685303, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.416926 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.416926 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 30.325471 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -105.040283, 30.647364 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.211426, 41.640078 ], [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -105.040283, 30.647364 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.211426, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.040283, 30.647364 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.121094, 21.371244 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.040283, 30.647364 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.121094, 21.371244 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.093339 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.093339 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.811456 ], [ -89.121094, 17.978733 ], [ -89.121094, 15.887376 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.978733 ], [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.811456 ], [ -89.121094, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.370834 ], [ -89.121094, 13.400307 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.121094, 14.370834 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.121094, 14.370834 ], [ -89.121094, 13.400307 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.121094, 15.093339 ], [ -89.121094, 14.370834 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.093339 ], [ -89.121094, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.121094, 15.093339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.078079 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ] ] ], [ [ [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -126.705322, 50.401515 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.078079 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.121094, 48.078079 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -135.000000, 59.327585 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.121094, 48.078079 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -96.558838, 69.683804 ] ] ], [ [ [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.017224 ], [ -89.121094, 76.462920 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ], [ [ [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -89.121094, 77.017224 ], [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.017224 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ], [ [ [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.326660, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.326660, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.779297, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.024902, -79.171335 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ] ] ], [ [ [ -44.121094, -80.184334 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ], [ -44.121094, -80.184334 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.184334 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.775635, -66.513260 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.365639 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.961914, -66.160511 ], [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.775635, -66.513260 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.365639 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.961914, -66.160511 ], [ -62.171631, -66.160511 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ], [ -71.905518, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.806641, -40.313043 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ] ] ], [ [ [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.775635, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.236328, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.775635, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.236328, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ], [ -77.673340, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.815674, 0.878872 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.817627, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.817627, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.211058 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.211058 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.817627, -41.640078 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.817627, -41.640078 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ] ] ], [ [ [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ] ] ], [ [ [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.077486 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.077486 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ] ] ], [ [ [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ] ] ], [ [ [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ] ] ], [ [ [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ] ] ], [ [ [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.066162, 14.349548 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.451660, 15.887376 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.845105 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ], [ -85.451660, 15.887376 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.011963, 16.014136 ], [ -85.451660, 15.887376 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.845105 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.155518, 14.997852 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.628662, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.288330, 22.400872 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.293113 ], [ -74.300537, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.640869, 19.880392 ], [ -76.333008, 19.963023 ], [ -77.761230, 19.859727 ], [ -77.091064, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.145752, 20.745840 ], [ -78.486328, 21.033237 ], [ -78.728027, 21.606365 ], [ -79.288330, 21.565502 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.044913 ], [ -81.826172, 22.197577 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.644432 ], [ -82.781982, 22.695120 ], [ -83.496094, 22.177232 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.810508 ], [ -84.979248, 21.902278 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.988738 ], [ -82.518311, 23.079732 ], [ -82.276611, 23.190863 ], [ -80.628662, 23.110049 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.276611, 23.190863 ], [ -80.628662, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.288330, 22.400872 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.293113 ], [ -74.300537, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.640869, 19.880392 ], [ -76.333008, 19.963023 ], [ -77.761230, 19.859727 ], [ -77.091064, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.145752, 20.745840 ], [ -78.486328, 21.033237 ], [ -78.728027, 21.606365 ], [ -79.288330, 21.565502 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.044913 ], [ -81.826172, 22.197577 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.644432 ], [ -82.781982, 22.695120 ], [ -83.496094, 22.177232 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.810508 ], [ -84.979248, 21.902278 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.988738 ], [ -82.518311, 23.079732 ], [ -82.276611, 23.190863 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.574463, 18.500447 ], [ -76.904297, 18.406655 ], [ -76.365967, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.772217, 17.863747 ], [ -78.343506, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.531700 ], [ -77.574463, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.531700 ], [ -77.574463, 18.500447 ], [ -76.904297, 18.406655 ], [ -76.365967, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.772217, 17.863747 ], [ -78.343506, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.531700 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.224609, 19.632240 ], [ -69.960938, 19.652934 ], [ -69.774170, 19.300775 ], [ -69.224854, 19.321511 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.989415 ], [ -68.323975, 18.615013 ], [ -68.697510, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.631348, 18.385805 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.675049, 18.427502 ], [ -71.004639, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.663818, 17.759150 ], [ -71.696777, 18.323240 ], [ -71.949463, 18.625425 ], [ -71.707764, 18.791918 ], [ -71.630859, 19.176301 ], [ -71.718750, 19.715000 ], [ -71.597900, 19.890723 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.597900, 19.890723 ], [ -70.806885, 19.880392 ], [ -70.224609, 19.632240 ], [ -69.960938, 19.652934 ], [ -69.774170, 19.300775 ], [ -69.224854, 19.321511 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.989415 ], [ -68.323975, 18.615013 ], [ -68.697510, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.631348, 18.385805 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.675049, 18.427502 ], [ -71.004639, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.663818, 17.759150 ], [ -71.696777, 18.323240 ], [ -71.949463, 18.625425 ], [ -71.707764, 18.791918 ], [ -71.630859, 19.176301 ], [ -71.718750, 19.715000 ], [ -71.597900, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.499512, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.499512, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.004837 ], [ -58.491211, 7.351571 ], [ -58.458252, 6.839170 ], [ -58.084717, 6.817353 ], [ -57.150879, 5.976680 ], [ -57.315674, 5.080001 ], [ -57.919922, 4.817312 ], [ -57.864990, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.778451 ], [ -56.546631, 1.900286 ], [ -56.788330, 1.867345 ], [ -57.337646, 1.955187 ], [ -57.667236, 1.691649 ], [ -58.436279, 1.472006 ], [ -58.546143, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.985352, 2.756504 ], [ -59.820557, 3.612107 ], [ -59.545898, 3.962901 ], [ -59.776611, 4.434044 ], [ -60.117188, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.255068 ], [ -60.743408, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.303955, 7.046379 ], [ -60.644531, 7.416942 ], [ -60.556641, 7.787194 ], [ -59.765625, 8.374562 ], [ -59.106445, 8.004837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.374562 ], [ -59.106445, 8.004837 ], [ -58.491211, 7.351571 ], [ -58.458252, 6.839170 ], [ -58.084717, 6.817353 ], [ -57.150879, 5.976680 ], [ -57.315674, 5.080001 ], [ -57.919922, 4.817312 ], [ -57.864990, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.778451 ], [ -56.546631, 1.900286 ], [ -56.788330, 1.867345 ], [ -57.337646, 1.955187 ], [ -57.667236, 1.691649 ], [ -58.436279, 1.472006 ], [ -58.546143, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.985352, 2.756504 ], [ -59.820557, 3.612107 ], [ -59.545898, 3.962901 ], [ -59.776611, 4.434044 ], [ -60.117188, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.255068 ], [ -60.743408, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.303955, 7.046379 ], [ -60.644531, 7.416942 ], [ -60.556641, 7.787194 ], [ -59.765625, 8.374562 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.245361, -0.878872 ], [ -80.584717, -0.878872 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.245361, -0.878872 ], [ -80.584717, -0.878872 ], [ -80.408936, -0.274657 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.212646, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.212646, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -47.834473, -0.571280 ], [ -46.790771, -0.878872 ], [ -48.186035, -0.878872 ], [ -47.834473, -0.571280 ] ] ], [ [ [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.499512, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.499512, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ], [ [ [ -46.790771, -0.878872 ], [ -48.186035, -0.878872 ], [ -47.834473, -0.571280 ], [ -46.790771, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -82.100830, 66.861082 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -61.864014, 66.861082 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -70.125732, 43.691708 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -84.880371, 46.905246 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.385010, 48.305121 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -70.125732, 43.691708 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.586426, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.037354, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.360596, 66.861082 ], [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.360596, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.357422, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.907249 ], [ -90.516357, 73.858452 ] ] ], [ [ [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ] ] ], [ [ [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.596680, 79.335219 ], [ -76.915283, 79.325049 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.878906, 76.232138 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.078613, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.807986 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.357422, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.580532 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.485198 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -90.878906, 73.907249 ], [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.907249 ] ] ], [ [ [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ] ] ], [ [ [ -76.596680, 79.335219 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.596680, 79.335219 ] ] ], [ [ [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ] ] ], [ [ [ -90.878906, 76.232138 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.232138 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.445068, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.445068, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.004962 ], [ -68.708496, 79.004962 ], [ -67.445068, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ], [ -68.708496, 79.004962 ], [ -67.445068, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ] ] ], [ [ [ -43.472900, -79.171335 ], [ -43.341064, -80.025752 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ], [ -43.472900, -79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -42.791748, -82.063963 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -43.516846, -82.000000 ], [ -45.878906, -81.786210 ] ] ], [ [ [ -43.560791, -79.004962 ], [ -43.472900, -79.171335 ], [ -43.341064, -80.025752 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.113037, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ] ] ], [ [ [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.113037, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ], [ -45.000000, -1.504954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.878906, -1.186439 ], [ -45.000000, -1.504954 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ], [ -8.690186, 25.888879 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.664069 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.635310 ], [ -14.051514, 13.795406 ], [ -13.853760, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.150146, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.699463, 13.272026 ], [ -15.941162, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.633545, 13.624633 ], [ -15.402832, 13.870080 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.635310 ], [ -14.051514, 13.795406 ], [ -13.853760, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.150146, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.699463, 13.272026 ], [ -15.941162, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.633545, 13.624633 ], [ -15.402832, 13.870080 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.205811, 12.468760 ], [ -11.667480, 12.393659 ], [ -11.524658, 12.447305 ], [ -11.458740, 12.082296 ], [ -11.304932, 12.082296 ], [ -11.041260, 12.221918 ], [ -10.876465, 12.178965 ], [ -10.601807, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.898682, 12.060809 ], [ -9.338379, 12.340002 ], [ -9.129639, 12.318536 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.382568, 11.393879 ], [ -8.591309, 11.146066 ], [ -8.624268, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.800933 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.239746, 10.131117 ], [ -8.316650, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.461506 ], [ -8.305664, 8.320212 ], [ -8.228760, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.448486, 7.689217 ], [ -8.723145, 7.721878 ], [ -8.931885, 7.318882 ], [ -9.217529, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.548430 ], [ -10.019531, 8.428904 ], [ -10.513916, 8.352823 ], [ -10.502930, 8.722218 ], [ -10.656738, 8.982749 ], [ -10.623779, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.920166, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.722168, 9.351513 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.503244 ], [ -14.084473, 9.893099 ], [ -14.589844, 10.217625 ], [ -14.699707, 10.660608 ], [ -14.842529, 10.887254 ], [ -15.139160, 11.049038 ], [ -14.688721, 11.533852 ], [ -14.392090, 11.512322 ], [ -14.128418, 11.684514 ], [ -13.908691, 11.684514 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.254128 ], [ -13.710938, 12.586732 ], [ -13.227539, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.205811, 12.468760 ], [ -11.667480, 12.393659 ], [ -11.524658, 12.447305 ], [ -11.458740, 12.082296 ], [ -11.304932, 12.082296 ], [ -11.041260, 12.221918 ], [ -10.876465, 12.178965 ], [ -10.601807, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.898682, 12.060809 ], [ -9.338379, 12.340002 ], [ -9.129639, 12.318536 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.382568, 11.393879 ], [ -8.591309, 11.146066 ], [ -8.624268, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.800933 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.239746, 10.131117 ], [ -8.316650, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.461506 ], [ -8.305664, 8.320212 ], [ -8.228760, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.448486, 7.689217 ], [ -8.723145, 7.721878 ], [ -8.931885, 7.318882 ], [ -9.217529, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.548430 ], [ -10.019531, 8.428904 ], [ -10.513916, 8.352823 ], [ -10.502930, 8.722218 ], [ -10.656738, 8.982749 ], [ -10.623779, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.920166, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.722168, 9.351513 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.503244 ], [ -14.084473, 9.893099 ], [ -14.589844, 10.217625 ], [ -14.699707, 10.660608 ], [ -14.842529, 10.887254 ], [ -15.139160, 11.049038 ], [ -14.688721, 11.533852 ], [ -14.392090, 11.512322 ], [ -14.128418, 11.684514 ], [ -13.908691, 11.684514 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.254128 ], [ -13.710938, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.623779, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.966013 ], [ 0.000000, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ 0.000000, 21.800308 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.966013 ], [ 0.000000, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.878906, 13.475106 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.878906, 13.475106 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.217529, 7.318882 ], [ -8.931885, 7.318882 ], [ -8.723145, 7.721878 ], [ -8.448486, 7.689217 ], [ -8.492432, 7.406048 ], [ -8.393555, 6.915521 ], [ -8.613281, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.580566, 5.714380 ], [ -7.547607, 5.320705 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.839207 ], [ -9.920654, 5.594118 ], [ -10.766602, 6.151478 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.111795 ], [ -11.151123, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.548430 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.548430 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.217529, 7.318882 ], [ -8.931885, 7.318882 ], [ -8.723145, 7.721878 ], [ -8.448486, 7.689217 ], [ -8.492432, 7.406048 ], [ -8.393555, 6.915521 ], [ -8.613281, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.580566, 5.714380 ], [ -7.547607, 5.320705 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.839207 ], [ -9.920654, 5.594118 ], [ -10.766602, 6.151478 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.111795 ], [ -11.151123, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.548430 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.867403 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.867403 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -8.690186, 27.401032 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.430122 ], [ 0.878906, 21.227942 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.430122 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -8.690186, 27.401032 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.430122 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 13.475106 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.966013 ], [ 0.878906, 13.475106 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.966013 ], [ 0.878906, 13.475106 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.368958 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.941192 ], [ 0.878906, 10.368958 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.941192 ], [ 0.878906, 10.368958 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.941192 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.980713, 66.861082 ], [ -34.211426, 66.683436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.980713, 66.861082 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.980713, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -7.580566, 55.134930 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.965346 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.965346 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.688955 ], [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.688955 ], [ 0.878906, 49.979488 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.899414, 40.313043 ], [ -8.931885, 40.313043 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.979898 ], [ -6.899414, 40.313043 ], [ -8.931885, 40.313043 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 0.878906, 42.730874 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -6.899414, 40.313043 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 0.878906, 42.730874 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -6.899414, 40.313043 ], [ -6.866455, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.815430, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.815430, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.555176, 66.160511 ], [ -23.763428, 66.160511 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -21.555176, 66.160511 ] ] ], [ [ [ -18.544922, 66.160511 ], [ -19.390869, 66.160511 ], [ -19.061279, 66.280118 ], [ -18.544922, 66.160511 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.622803, 66.160511 ], [ -17.303467, 66.160511 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.555176, 66.160511 ], [ -23.763428, 66.160511 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -18.544922, 66.160511 ], [ -19.390869, 66.160511 ], [ -19.061279, 66.280118 ], [ -18.544922, 66.160511 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.622803, 66.160511 ], [ -17.303467, 66.160511 ], [ -16.226807, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 27.092285, -70.458859 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.767713 ], [ 45.878906, -79.335219 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.767713 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 27.092285, -70.458859 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.767713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.442139, 0.878872 ], [ 40.979004, 0.878872 ], [ 40.979004, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.878872 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.442139, 0.878872 ], [ 40.979004, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.857666, 0.000000 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 0.878872 ], [ 43.846436, 0.878872 ], [ 42.857666, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.846436, 0.878872 ], [ 42.857666, 0.000000 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 0.000000 ], [ 40.979004, 0.878872 ], [ 43.846436, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.448242, 0.878872 ], [ 14.150391, 0.878872 ], [ 13.842773, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.150391, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.448242, 0.878872 ], [ 14.150391, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.150391, 0.878872 ], [ 17.764893, 0.878872 ], [ 17.819824, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.764893, 0.878872 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.150391, 0.878872 ], [ 17.764893, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.366699, -11.792080 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.878872 ], [ 29.992676, 0.878872 ], [ 29.871826, 0.604237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.992676, 0.878872 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.366699, -11.792080 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.878872 ], [ 29.992676, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ] ] ], [ [ [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 13.370361, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.331083 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.366699, -11.792080 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.366699, -11.792080 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 33.892822, -0.944781 ], [ 37.694092, -3.096636 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, -0.944781 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 33.892822, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ] ], [ [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ] ], [ [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.827393, -25.839449 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.970947, -28.950476 ], [ 29.322510, -29.248063 ], [ 28.839111, -30.069094 ], [ 28.289795, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.740479, -30.637912 ], [ 26.993408, -29.869229 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.844674 ], [ 28.531494, -28.642389 ], [ 28.970947, -28.950476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.531494, -28.642389 ], [ 28.970947, -28.950476 ], [ 29.322510, -29.248063 ], [ 28.839111, -30.069094 ], [ 28.289795, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.740479, -30.637912 ], [ 26.993408, -29.869229 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.844674 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -25.363882 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.781682 ], [ 45.878906, -25.363882 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.781682 ], [ 45.878906, -25.363882 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.781682 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.745117, 41.640078 ], [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.745117, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.000000, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.000000, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -0.878906, 10.962764 ], [ -0.878906, 15.029686 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -0.878906, 10.962764 ], [ -0.878906, 15.029686 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -0.878906, 5.123772 ], [ -0.878906, 10.962764 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.000000, 10.941192 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -0.878906, 5.123772 ], [ -0.878906, 10.962764 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ] ] ], [ [ [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.205811, 41.640078 ], [ 16.018066, 41.640078 ], [ 15.886230, 41.541478 ] ] ], [ [ [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 16.018066, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.205811, 41.640078 ], [ 16.018066, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.500488, 41.640078 ], [ 20.456543, 41.516804 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.500488, 41.640078 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.500488, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.500488, 41.640078 ], [ 22.917480, 41.640078 ], [ 22.950439, 41.343825 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 41.640078 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.500488, 41.640078 ], [ 22.917480, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.103516, 41.640078 ], [ 26.103516, 41.335576 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 41.640078 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.103516, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.583252, 41.640078 ], [ 45.878906, 41.640078 ], [ 45.878906, 41.162114 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.583252, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.878906, 22.370396 ], [ -0.878906, 35.773258 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.878906, 22.370396 ], [ -0.878906, 35.773258 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.941192 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ], [ 23.829346, 19.580493 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.853271, 23.412847 ], [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.435791, 7.700105 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.435791, 7.700105 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.543701, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.389893, 9.275622 ], [ 23.455811, 8.961045 ], [ 25.114746, 7.830731 ], [ 25.114746, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.954827 ], [ 27.213135, 5.561315 ], [ 27.366943, 5.244128 ], [ 27.037354, 5.134715 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.125732, 4.937724 ], [ 24.796143, 4.904887 ], [ 24.400635, 5.112830 ], [ 23.291016, 4.620229 ], [ 22.840576, 4.718778 ], [ 22.697754, 4.642130 ], [ 22.401123, 4.039618 ], [ 21.654053, 4.225900 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.718778 ], [ 18.533936, 4.203986 ], [ 18.446045, 3.513421 ], [ 17.808838, 3.568248 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.206333 ], [ 16.007080, 2.273573 ], [ 15.897217, 2.558963 ], [ 15.853271, 3.019841 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.853293 ], [ 14.941406, 4.214943 ], [ 14.468994, 4.740675 ], [ 14.556885, 5.036227 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.765625, 6.413566 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.504089 ], [ 16.281738, 7.754537 ], [ 16.446533, 7.743651 ], [ 16.699219, 7.514981 ], [ 17.962646, 7.896030 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.993600 ], [ 19.083252, 9.080400 ], [ 20.050049, 9.015302 ], [ 20.994873, 9.481572 ], [ 21.719971, 10.574222 ], [ 22.225342, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.543701, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.389893, 9.275622 ], [ 23.455811, 8.961045 ], [ 25.114746, 7.830731 ], [ 25.114746, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.954827 ], [ 27.213135, 5.561315 ], [ 27.366943, 5.244128 ], [ 27.037354, 5.134715 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.125732, 4.937724 ], [ 24.796143, 4.904887 ], [ 24.400635, 5.112830 ], [ 23.291016, 4.620229 ], [ 22.840576, 4.718778 ], [ 22.697754, 4.642130 ], [ 22.401123, 4.039618 ], [ 21.654053, 4.225900 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.718778 ], [ 18.533936, 4.203986 ], [ 18.446045, 3.513421 ], [ 17.808838, 3.568248 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.206333 ], [ 16.007080, 2.273573 ], [ 15.897217, 2.558963 ], [ 15.853271, 3.019841 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.853293 ], [ 14.941406, 4.214943 ], [ 14.468994, 4.740675 ], [ 14.556885, 5.036227 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.765625, 6.413566 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.504089 ], [ 16.281738, 7.754537 ], [ 16.446533, 7.743651 ], [ 16.699219, 7.514981 ], [ 17.962646, 7.896030 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.993600 ], [ 19.083252, 9.080400 ], [ 20.050049, 9.015302 ], [ 20.994873, 9.481572 ], [ 21.719971, 10.574222 ], [ 22.225342, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.103516, 41.640078 ], [ 26.455078, 41.640078 ], [ 26.597900, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ] ] ], [ [ [ 26.455078, 41.640078 ], [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.103516, 41.640078 ], [ 26.455078, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.164828 ], [ 33.475342, 35.003003 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ], [ 33.475342, 35.003003 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ], [ 28.905029, 30.873940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.488037, 31.587894 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.156982, 41.640078 ], [ 36.156006, 41.640078 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.103027, 41.640078 ], [ 28.981934, 41.302571 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.156006, 41.640078 ], [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.156982, 41.640078 ], [ 36.156006, 41.640078 ] ] ], [ [ [ 28.103027, 41.640078 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.103027, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.773258 ], [ 45.878906, 34.912962 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 45.878906, 33.330528 ], [ 45.878906, 29.132970 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.773258 ], [ 45.878906, 34.912962 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 45.878906, 33.330528 ], [ 45.878906, 29.132970 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 32.870360 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.386963, 31.494262 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.625321 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.178223, 32.537552 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.537552 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.386963, 31.494262 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.625321 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.178223, 32.537552 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 23.884277, 8.624472 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 23.884277, 8.624472 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 23.884277, 8.624472 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 23.884277, 8.624472 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.878872 ], [ 29.575195, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.878872 ], [ 29.575195, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.846605 ], [ 39.265137, 15.929638 ], [ 39.803467, 15.443091 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.769775, 12.458033 ], [ 42.341309, 12.543840 ], [ 42.000732, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.125922 ], [ 40.023193, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.743011 ], [ 38.507080, 14.509144 ], [ 37.902832, 14.966013 ], [ 37.584229, 14.221789 ], [ 36.419678, 14.424040 ], [ 36.320801, 14.827991 ], [ 36.749268, 16.299051 ], [ 36.848145, 16.962233 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.846605 ], [ 39.265137, 15.929638 ], [ 39.803467, 15.443091 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.769775, 12.458033 ], [ 42.341309, 12.543840 ], [ 42.000732, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.125922 ], [ 40.023193, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.743011 ], [ 38.507080, 14.509144 ], [ 37.902832, 14.966013 ], [ 37.584229, 14.221789 ], [ 36.419678, 14.424040 ], [ 36.320801, 14.827991 ], [ 36.749268, 16.299051 ], [ 36.848145, 16.962233 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.660156, 11.641476 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.660156, 11.641476 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 33.892822, -0.878872 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.979004, 0.000000 ], [ 40.989990, -0.856902 ], [ 33.892822, -0.878872 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.660156, 11.641476 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.878906, 8.396300 ], [ 45.878906, 5.987607 ], [ 45.000000, 5.047171 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.660156, 11.641476 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.878906, 8.396300 ], [ 45.878906, 5.987607 ], [ 45.000000, 5.047171 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.604248, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.121537 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.604248, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.121537 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 45.878906, 39.121537 ], [ 45.878906, 38.796908 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ], [ [ [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ] ] ], [ [ [ 45.878906, 39.732538 ], [ 45.604248, 39.901309 ], [ 45.878906, 40.229218 ], [ 45.878906, 39.732538 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 45.878906, 39.121537 ], [ 45.878906, 38.796908 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ], [ 45.878906, 40.229218 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.878906, 39.732538 ], [ 45.604248, 39.901309 ], [ 45.878906, 40.229218 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 36.756490 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ] ] ], [ [ [ 45.878906, 33.330528 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ], [ 45.878906, 33.330528 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ] ] ], [ [ [ 45.878906, 34.912962 ], [ 45.878906, 33.330528 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.396300 ], [ 45.000000, 8.711359 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.550049, 10.574222 ], [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.396300 ], [ 45.000000, 8.711359 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.550049, 10.574222 ], [ 43.143311, 11.469258 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 2.317483 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.066650, -0.878872 ], [ 41.000977, -0.878872 ], [ 40.979004, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 45.000000, 5.047171 ], [ 45.878906, 5.987607 ], [ 45.878906, 2.317483 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.987607 ], [ 45.878906, 2.317483 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.857666, 0.000000 ], [ 42.066650, -0.878872 ], [ 41.000977, -0.878872 ], [ 40.979004, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 45.000000, 5.047171 ], [ 45.878906, 5.987607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.811035, -0.878872 ], [ 9.195557, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.811035, -0.878872 ], [ 9.195557, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 17.325439, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.677002, 0.000000 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 17.325439, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -0.878872 ], [ 17.325439, -0.878872 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 27.037354, 5.134715 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -0.878872 ], [ 17.325439, -0.878872 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.677002, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.778155 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.688955 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.688955 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.110840, 66.861082 ], [ 41.121826, 66.791909 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.110840, 66.861082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ], [ 15.380859, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.699463, 66.861082 ], [ 15.380859, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ] ] ], [ [ [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ] ] ], [ [ [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.699463, 66.861082 ], [ 23.554688, 66.861082 ], [ 23.554688, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.699463, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.790039, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.380502 ], [ 3.120117, 50.785102 ], [ 2.647705, 50.798991 ], [ 2.504883, 51.151786 ], [ 3.306885, 51.351201 ], [ 4.042969, 51.268789 ], [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.790039, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.380502 ], [ 3.120117, 50.785102 ], [ 2.647705, 50.798991 ], [ 2.504883, 51.151786 ], [ 3.306885, 51.351201 ], [ 4.042969, 51.268789 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 17.622070, 54.857640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.845164 ], [ 16.556396, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.314941, 45.736860 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.403076, 45.467836 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.019853 ], [ 13.798828, 46.513516 ], [ 14.622803, 46.437857 ], [ 15.128174, 46.664517 ], [ 16.007080, 46.687131 ], [ 16.193848, 46.852678 ], [ 16.369629, 46.845164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.852678 ], [ 16.369629, 46.845164 ], [ 16.556396, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.314941, 45.736860 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.403076, 45.467836 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.019853 ], [ 13.798828, 46.513516 ], [ 14.622803, 46.437857 ], [ 15.128174, 46.664517 ], [ 16.007080, 46.687131 ], [ 16.193848, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.777832, 40.313043 ], [ 8.382568, 40.313043 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.391113, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.864014, 40.446947 ], [ 16.776123, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.393311, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.777832, 40.313043 ], [ 8.382568, 40.313043 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.391113, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.864014, 40.446947 ], [ 16.776123, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.708740, 47.886881 ], [ 22.093506, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.588623, 46.172223 ], [ 18.446045, 45.759859 ], [ 17.622070, 45.958788 ], [ 16.875000, 46.384833 ], [ 16.556396, 46.505954 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.852678 ], [ 16.523438, 47.502359 ], [ 16.336670, 47.717154 ], [ 16.896973, 47.717154 ], [ 16.973877, 48.129434 ], [ 17.479248, 47.872144 ], [ 17.852783, 47.761484 ], [ 18.687744, 47.886881 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.654541, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.334343 ], [ 20.467529, 48.567520 ], [ 20.797119, 48.625647 ], [ 21.862793, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.708740, 47.886881 ], [ 22.093506, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.588623, 46.172223 ], [ 18.446045, 45.759859 ], [ 17.622070, 45.958788 ], [ 16.875000, 46.384833 ], [ 16.556396, 46.505954 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.852678 ], [ 16.523438, 47.502359 ], [ 16.336670, 47.717154 ], [ 16.896973, 47.717154 ], [ 16.973877, 48.129434 ], [ 17.479248, 47.872144 ], [ 17.852783, 47.761484 ], [ 18.687744, 47.886881 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.654541, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.334343 ], [ 20.467529, 48.567520 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.852783, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.995361, 44.863656 ], [ 19.357910, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.572432 ], [ 19.215088, 43.524655 ], [ 18.698730, 43.205176 ], [ 18.555908, 42.650122 ], [ 17.666016, 43.028745 ], [ 17.292480, 43.452919 ], [ 16.907959, 43.667872 ], [ 16.446533, 44.048116 ], [ 16.237793, 44.355278 ], [ 15.743408, 44.824708 ], [ 15.952148, 45.236218 ], [ 16.314697, 45.011419 ], [ 16.534424, 45.213004 ], [ 16.995850, 45.236218 ], [ 17.852783, 45.073521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.995850, 45.236218 ], [ 17.852783, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.995361, 44.863656 ], [ 19.357910, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.572432 ], [ 19.215088, 43.524655 ], [ 18.698730, 43.205176 ], [ 18.555908, 42.650122 ], [ 17.666016, 43.028745 ], [ 17.292480, 43.452919 ], [ 16.907959, 43.667872 ], [ 16.446533, 44.048116 ], [ 16.237793, 44.355278 ], [ 15.743408, 44.824708 ], [ 15.952148, 45.236218 ], [ 16.314697, 45.011419 ], [ 16.534424, 45.213004 ], [ 16.995850, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.621582, 43.221190 ], [ 19.951172, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.061035, 42.593533 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.959490 ], [ 18.874512, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.698730, 43.205176 ], [ 19.215088, 43.524655 ], [ 19.621582, 43.221190 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.621582, 43.221190 ], [ 19.951172, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.061035, 42.593533 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.959490 ], [ 18.874512, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.698730, 43.205176 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ], [ 21.632080, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.643311, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.643311, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.335938, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.741943, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.786133, 40.979898 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.135742, 66.861082 ], [ 29.498291, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.135742, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.135742, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.450660 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.305160 ], [ 27.410889, 58.728302 ], [ 27.707520, 57.792089 ], [ 27.279053, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.850598 ], [ 25.158691, 57.973157 ], [ 24.312744, 57.797944 ], [ 24.422607, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.192812 ], [ 24.598389, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.938477, 59.450660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.450660 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.305160 ], [ 27.410889, 58.728302 ], [ 27.707520, 57.792089 ], [ 27.279053, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.850598 ], [ 25.158691, 57.973157 ], [ 24.312744, 57.797944 ], [ 24.422607, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.192812 ], [ 24.598389, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.795105 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.750732, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.783447, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.398682, 53.618579 ], [ 32.684326, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.300049, 53.074228 ], [ 31.530762, 52.742943 ], [ 31.783447, 52.106505 ], [ 30.926514, 52.045734 ], [ 30.618896, 51.828988 ], [ 30.552979, 51.323747 ], [ 30.146484, 51.419764 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.433464 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.597548 ], [ 26.334229, 51.835778 ], [ 25.323486, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.521729, 51.583897 ], [ 23.499756, 52.025459 ], [ 23.192139, 52.489470 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.521729, 53.474970 ], [ 23.477783, 53.917281 ], [ 24.444580, 53.910810 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.851315 ], [ 26.586914, 55.172594 ], [ 26.488037, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.795105 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.750732, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.783447, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.398682, 53.618579 ], [ 32.684326, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.300049, 53.074228 ], [ 31.530762, 52.742943 ], [ 31.783447, 52.106505 ], [ 30.926514, 52.045734 ], [ 30.618896, 51.828988 ], [ 30.552979, 51.323747 ], [ 30.146484, 51.419764 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.433464 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.597548 ], [ 26.334229, 51.835778 ], [ 25.323486, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.521729, 51.583897 ], [ 23.499756, 52.025459 ], [ 23.192139, 52.489470 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.521729, 53.474970 ], [ 23.477783, 53.917281 ], [ 24.444580, 53.910810 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.851315 ], [ 26.586914, 55.172594 ], [ 26.488037, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.916504, 48.129434 ], [ 28.125000, 46.815099 ], [ 28.157959, 46.377254 ], [ 28.048096, 45.951150 ], [ 28.223877, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.597168, 45.298075 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.553467, 43.707594 ], [ 27.960205, 43.818675 ], [ 27.235107, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.093018, 43.747289 ], [ 23.323975, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.467041, 44.410240 ], [ 22.697754, 44.582643 ], [ 22.456055, 44.707706 ], [ 22.137451, 44.480830 ], [ 21.555176, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.421588 ], [ 20.753174, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.093506, 47.672786 ], [ 22.708740, 47.886881 ], [ 23.137207, 48.100095 ], [ 23.752441, 47.989922 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.938721, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ], [ 26.916504, 48.129434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.129434 ], [ 28.125000, 46.815099 ], [ 28.157959, 46.377254 ], [ 28.048096, 45.951150 ], [ 28.223877, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.597168, 45.298075 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.553467, 43.707594 ], [ 27.960205, 43.818675 ], [ 27.235107, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.093018, 43.747289 ], [ 23.323975, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.467041, 44.410240 ], [ 22.697754, 44.582643 ], [ 22.456055, 44.707706 ], [ 22.137451, 44.480830 ], [ 21.555176, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.421588 ], [ 20.753174, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.093506, 47.672786 ], [ 22.708740, 47.886881 ], [ 23.137207, 48.100095 ], [ 23.752441, 47.989922 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.938721, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.663330, 48.122101 ], [ 29.113770, 47.850031 ], [ 29.047852, 47.517201 ], [ 29.410400, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.827881, 46.528635 ], [ 30.014648, 46.430285 ], [ 29.750977, 46.354511 ], [ 29.168701, 46.384833 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.445427 ], [ 28.927002, 46.263443 ], [ 28.652344, 45.943511 ], [ 28.476562, 45.598666 ], [ 28.223877, 45.490946 ], [ 28.048096, 45.951150 ], [ 28.157959, 46.377254 ], [ 28.125000, 46.815099 ], [ 26.916504, 48.129434 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.520752, 48.472921 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.472921 ], [ 28.256836, 48.158757 ], [ 28.663330, 48.122101 ], [ 29.113770, 47.850031 ], [ 29.047852, 47.517201 ], [ 29.410400, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.827881, 46.528635 ], [ 30.014648, 46.430285 ], [ 29.750977, 46.354511 ], [ 29.168701, 46.384833 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.445427 ], [ 28.927002, 46.263443 ], [ 28.652344, 45.943511 ], [ 28.476562, 45.598666 ], [ 28.223877, 45.490946 ], [ 28.048096, 45.951150 ], [ 28.157959, 46.377254 ], [ 28.125000, 46.815099 ], [ 26.916504, 48.129434 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.520752, 48.472921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.169922, 40.313043 ], [ 22.972412, 40.313043 ], [ 22.807617, 40.480381 ], [ 22.664795, 40.313043 ], [ 20.643311, 40.313043 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ], [ 26.301270, 40.979898 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.169922, 40.313043 ], [ 22.972412, 40.313043 ], [ 22.807617, 40.480381 ], [ 22.664795, 40.313043 ], [ 20.643311, 40.313043 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.741943, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.562012, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.091797, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.575684, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.301270, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 43.659668, 40.313043 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 43.659668, 40.313043 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.162114 ], [ 45.878906, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ], [ 45.878906, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.849854, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.353027, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.421143 ], [ 43.692627, 66.160511 ], [ 41.319580, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.011230, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 39.353027, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.849854, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.353027, 66.160511 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.011230, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.319580, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.692627, 66.160511 ], [ 41.319580, 66.160511 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.885254, 79.335219 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 19.885254, 79.335219 ], [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.885254, 79.335219 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.498291, 66.513260 ], [ 29.849854, 66.160511 ], [ 23.763428, 66.160511 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.498291, 66.513260 ], [ 29.849854, 66.160511 ], [ 23.763428, 66.160511 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.577145 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.473145, -66.861082 ], [ 87.747803, -66.513260 ] ] ], [ [ [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 56.348877, -65.973325 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.525146, -65.816282 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.965576, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ] ] ], [ [ [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.473145, -66.861082 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.140790 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 45.000000, -16.151369 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.140790 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 45.000000, -16.151369 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.317871, 41.640078 ], [ 47.977295, 41.409776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.317871, 41.640078 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.317871, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ], [ 46.636963, 41.186922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.444678 ], [ 44.417725, 38.281313 ] ] ], [ [ [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.444678 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.444678 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.444678 ] ] ], [ [ [ 44.121094, 39.444678 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.444678 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 44.121094, 29.611670 ], [ 44.121094, 37.134045 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 44.121094, 29.611670 ], [ 44.121094, 37.134045 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.037003 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.037003 ], [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.037003 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ] ] ], [ [ [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.953369, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ] ] ], [ [ [ 55.953369, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.953369, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 69.543457, 41.640078 ], [ 70.565186, 41.640078 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 60.040283, 41.640078 ], [ 66.588135, 41.640078 ], [ 66.708984, 41.170384 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.953369, 41.640078 ], [ 56.986084, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.565186, 41.640078 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 60.040283, 41.640078 ], [ 66.588135, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 69.543457, 41.640078 ], [ 70.565186, 41.640078 ] ] ], [ [ [ 56.986084, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.953369, 41.640078 ], [ 56.986084, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 70.565186, 41.640078 ], [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 70.565186, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 44.121094, 40.103286 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 44.121094, 40.103286 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.317871, 41.640078 ], [ 48.746338, 41.640078 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.219482, 41.640078 ], [ 46.889648, 41.640078 ], [ 47.373047, 41.219986 ] ] ], [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.746338, 41.640078 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.219482, 41.640078 ], [ 46.889648, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.317871, 41.640078 ], [ 48.746338, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.444678 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.300299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.444678 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.966309, 29.983487 ], [ 48.175049, 29.535230 ], [ 48.087158, 29.315141 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.526622 ], [ 47.449951, 29.008140 ], [ 46.560059, 29.104177 ], [ 47.296143, 30.059586 ], [ 47.966309, 29.983487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.296143, 30.059586 ], [ 47.966309, 29.983487 ], [ 48.175049, 29.535230 ], [ 48.087158, 29.315141 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.526622 ], [ 47.449951, 29.008140 ], [ 46.560059, 29.104177 ], [ 47.296143, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.424029 ], [ 44.121094, 29.611670 ], [ 44.703369, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.611670 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.424029 ], [ 44.121094, 29.611670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.580811, 25.809782 ], [ 51.602783, 25.224820 ], [ 51.383057, 24.637031 ], [ 51.108398, 24.557116 ], [ 50.800781, 24.756808 ], [ 50.734863, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.580811, 25.809782 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.580811, 25.809782 ], [ 51.602783, 25.224820 ], [ 51.383057, 24.637031 ], [ 51.108398, 24.557116 ], [ 50.800781, 24.756808 ], [ 50.734863, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 56.063232, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.447998, 41.261291 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.040283, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ] ] ], [ [ [ 52.558594, 41.640078 ], [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.558594, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.040283, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.040283, 41.640078 ] ] ], [ [ [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.558594, 41.640078 ], [ 52.877197, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.778320, 17.350638 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.483643, 12.726084 ], [ 44.121094, 12.597455 ], [ 44.121094, 17.424029 ], [ 45.000000, 17.434511 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ], [ 52.778320, 17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.010190 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.483643, 12.726084 ], [ 44.121094, 12.597455 ], [ 44.121094, 17.424029 ], [ 45.000000, 17.434511 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.933105, 10.984335 ], [ 48.933105, 9.459899 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 45.000000, 8.711359 ], [ 44.121094, 9.037003 ], [ 44.121094, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.459899 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 45.000000, 8.711359 ], [ 44.121094, 9.037003 ], [ 44.121094, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.000000, 1.680667 ], [ 44.121094, 1.098565 ], [ 44.121094, 4.981505 ], [ 45.000000, 5.047171 ], [ 47.779541, 8.004837 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ], [ 51.042480, 10.649811 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.000000, 1.680667 ], [ 44.121094, 1.098565 ], [ 44.121094, 4.981505 ], [ 45.000000, 5.047171 ], [ 47.779541, 8.004837 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 67.071533, 37.361426 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 67.071533, 37.361426 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.518555, 30.429730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 90.878906, 26.843677 ], [ 90.878906, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 90.878906, 26.843677 ], [ 90.878906, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.843677 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.843677 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 90.878906, 25.145285 ], [ 90.878906, 22.796439 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 90.878906, 25.145285 ], [ 90.878906, 22.796439 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 28.062286 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.340332, 66.670387 ], [ 47.713623, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ], [ 90.878906, 50.394512 ], [ 90.000000, 50.021858 ], [ 88.802490, 49.475263 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.394512 ], [ 90.000000, 50.021858 ], [ 88.802490, 49.475263 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.373779, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ], [ 47.713623, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 42.609706 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.277806 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.162114 ], [ 44.121094, 42.609706 ], [ 44.527588, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.807373, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.059326, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.807373, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.059326, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.652100, 40.313043 ], [ 72.059326, 40.313043 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.652100, 40.313043 ], [ 72.059326, 40.313043 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.162114 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.317383, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.317383, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 45.000000, 41.277806 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.543213, 40.313043 ], [ 69.114990, 40.313043 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.543213, 40.313043 ], [ 69.114990, 40.313043 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.000000, 47.776252 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.021858 ], [ 90.878906, 50.394512 ], [ 90.878906, 46.995241 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ] ] ], [ [ [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.626806 ], [ 90.878906, 45.367584 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.995241 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.021858 ], [ 90.878906, 50.394512 ], [ 90.878906, 46.995241 ] ] ], [ [ [ 90.878906, 46.626806 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.626806 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.626806 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.652100, 40.313043 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.626806 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.652100, 40.313043 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.875541 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.011685 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.674916 ], [ 90.878906, 66.160511 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 75.674916 ], [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.875541 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.011685 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.674916 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 101.052246, -66.513260 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 101.052246, -66.513260 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.918457, -66.861082 ], [ 110.225830, -66.696478 ] ] ], [ [ [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ] ] ], [ [ [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.918457, -66.861082 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ], [ 122.860107, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 130.155029, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.511475, 0.780005 ], [ 110.379639, 0.878872 ], [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.379639, 0.878872 ], [ 110.841064, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ] ] ], [ [ [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.761963, 0.000000 ], [ 120.025635, 0.571280 ], [ 120.377197, 0.878872 ], [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.718262, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.761963, 0.000000 ], [ 120.025635, 0.571280 ], [ 120.377197, 0.878872 ], [ 124.793701, 0.878872 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 118.718262, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.718262, 0.878872 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 135.878906, -14.051331 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.822823 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.015137, -35.056980 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 135.878906, -14.051331 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.822823 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.015137, -35.056980 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.990619 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.990619 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.990619 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.294707 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.794654 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.990619 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.121094, 22.044913 ], [ 89.121094, 26.145576 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.121094, 26.145576 ], [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.121094, 22.044913 ], [ 89.121094, 26.145576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.683350, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ] ] ], [ [ [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.144531, 41.640078 ], [ 128.199463, 41.467428 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 126.683350, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.683350, 41.640078 ] ] ], [ [ [ 128.144531, 41.640078 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.144531, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.556396, 22.228090 ], [ 107.039795, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.710205, 20.704739 ], [ 105.875244, 19.756364 ], [ 105.655518, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.324951, 13.432367 ], [ 109.193115, 11.673755 ], [ 108.358154, 11.016689 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.150146, 8.602747 ], [ 104.787598, 9.243093 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.194092, 10.898042 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.576907 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.211139 ], [ 107.556152, 15.209988 ], [ 107.303467, 15.919074 ], [ 106.545410, 16.604610 ], [ 105.084229, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.183350, 19.632240 ], [ 104.820557, 19.890723 ], [ 104.425049, 20.766387 ], [ 103.194580, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.161865, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.502197, 22.705255 ], [ 104.468994, 22.826820 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.556396, 22.228090 ], [ 107.039795, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.710205, 20.704739 ], [ 105.875244, 19.756364 ], [ 105.655518, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.324951, 13.432367 ], [ 109.193115, 11.673755 ], [ 108.358154, 11.016689 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.150146, 8.602747 ], [ 104.787598, 9.243093 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.194092, 10.898042 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.576907 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.211139 ], [ 107.556152, 15.209988 ], [ 107.303467, 15.919074 ], [ 106.545410, 16.604610 ], [ 105.084229, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.183350, 19.632240 ], [ 104.820557, 19.890723 ], [ 104.425049, 20.766387 ], [ 103.194580, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.161865, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.502197, 22.705255 ], [ 104.468994, 22.826820 ], [ 105.325928, 23.352343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ] ] ], [ [ [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.144531, 41.640078 ], [ 129.693604, 41.640078 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.683350, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.508577 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.693604, 41.640078 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.683350, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.144531, 41.640078 ], [ 129.693604, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.439974 ], [ 129.451904, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.177490, 34.894942 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.551514, 35.692995 ], [ 126.112061, 36.730080 ], [ 126.859131, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.848833 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.264063 ], [ 128.199463, 38.376115 ], [ 128.342285, 38.616870 ], [ 129.210205, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.210205, 37.439974 ], [ 129.451904, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.177490, 34.894942 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.551514, 35.692995 ], [ 126.112061, 36.730080 ], [ 126.859131, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.848833 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.264063 ], [ 128.199463, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ] ] ], [ [ [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ] ] ], [ [ [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.324501 ], [ 114.862061, 4.357366 ], [ 114.653320, 4.017699 ], [ 114.202881, 4.532618 ], [ 114.598389, 4.904887 ], [ 115.444336, 5.451959 ], [ 115.345459, 4.324501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.451959 ], [ 115.345459, 4.324501 ], [ 114.862061, 4.357366 ], [ 114.653320, 4.017699 ], [ 114.202881, 4.532618 ], [ 114.598389, 4.904887 ], [ 115.444336, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.814209, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.882324, -0.878872 ], [ 123.332520, -0.615223 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.761963, 0.000000 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.122559, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.313965, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 97.481689, 5.255068 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.814209, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.761963, 0.000000 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.313965, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.006348, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 123.288574, -0.878872 ], [ 121.882324, -0.878872 ], [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.122559, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.315988 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.315988 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.021858 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.738770, 40.313043 ], [ 122.025146, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.903320, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.738770, 40.313043 ], [ 122.025146, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 128.781738, 40.313043 ], [ 124.738770, 40.313043 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 128.781738, 40.313043 ], [ 124.738770, 40.313043 ], [ 125.079346, 40.572240 ], [ 125.903320, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.986084, 79.335219 ], [ 102.216797, 79.335219 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 102.216797, 79.335219 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.986084, 79.335219 ], [ 102.216797, 79.335219 ] ] ], [ [ [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.361328, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.361328, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.285400, -66.513260 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.831787, -68.382996 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.966797, -66.160511 ], [ 136.285400, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.966797, -66.160511 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.831787, -68.382996 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.740723, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.769287, -66.160511 ], [ 135.966797, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.800781, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.722900, -66.861082 ], [ 140.097656, -66.861082 ], [ 140.800781, -66.813547 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.065918, -65.307240 ] ] ], [ [ [ 144.722900, -66.861082 ], [ 140.097656, -66.861082 ], [ 140.800781, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.722900, -66.861082 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.087581 ], [ 134.143066, -1.142502 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.107784 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.087581 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.087581 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.107784 ], [ 134.494629, -5.441022 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.964111, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 152.237549, -3.239240 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ], [ 152.237549, -3.239240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ] ] ], [ [ [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ] ] ], [ [ [ 150.930176, -2.493109 ], [ 152.237549, -3.239240 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ] ] ], [ [ [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.454346, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.772705, -21.074249 ], [ 167.113037, -22.156883 ], [ 166.739502, -22.390714 ], [ 165.465088, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.157715, -20.437308 ], [ 164.025879, -20.097206 ], [ 164.454346, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.454346, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.772705, -21.074249 ], [ 167.113037, -22.156883 ], [ 166.739502, -22.390714 ], [ 165.465088, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.157715, -20.437308 ], [ 164.025879, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.640078 ], [ 171.749268, -41.640078 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.319824, -41.640078 ], [ 175.198975, -41.640078 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.640078 ], [ 171.749268, -41.640078 ], [ 171.947021, -41.508577 ], [ 172.078857, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.319824, -41.640078 ], [ 175.198975, -41.640078 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ] ] ], [ [ [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -162.306519, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -168.530273, -84.236914 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ] ] ], [ [ [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.325198 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.840576, 21.534847 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ], [ [ [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.918828 ], [ -157.060547, 56.818921 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ], [ [ [ -157.060547, 58.918828 ], [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.918828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ] ] ], [ [ [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ] ] ], [ [ [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.830811, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.225830, 19.993998 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 59.037729 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.318481, -74.019543 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ] ] ], [ [ [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -114.724731, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ] ] ], [ [ [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ] ] ], [ [ [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ] ] ], [ [ [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ] ] ], [ [ [ -112.500000, 78.559399 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ] ] ], [ [ [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -72.853361 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.717896, 21.943046 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.237762 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.237762 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ] ] ], [ [ [ -89.560547, 14.376155 ], [ -89.560547, 14.237762 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.560547, 14.237762 ] ] ], [ [ [ -89.560547, 14.237762 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ], [ -89.560547, 14.237762 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ] ] ], [ [ [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ] ] ], [ [ [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 48.015650 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.992089 ], [ -89.560547, 71.223149 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -89.560547, 72.993696 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.993696 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.500000, -75.842482 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.500000, -75.842482 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ] ] ], [ [ [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ] ] ], [ [ [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.369507, 15.839820 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ], [ -85.446167, 15.887376 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.369507, 15.839820 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ] ] ], [ [ [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ] ] ], [ [ [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ], [ -72.877808, 41.224118 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.971436, 41.310824 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ] ] ], [ [ [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ] ] ], [ [ [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -84.880371, 46.901492 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.574817 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ] ] ], [ [ [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ] ] ], [ [ [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ] ] ], [ [ [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ] ] ], [ [ [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ] ] ], [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ] ] ], [ [ [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ] ] ], [ [ [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ] ] ], [ [ [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -55.947876, -82.676285 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ] ] ], [ [ [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ] ] ], [ [ [ -44.560547, -80.273828 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ] ] ], [ [ [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ] ] ], [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -61.885986, 10.719984 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ] ] ], [ [ [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ] ] ], [ [ [ -67.500000, 62.965212 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ] ] ], [ [ [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ] ] ], [ [ [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ] ] ], [ [ [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.500000, 69.716202 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ] ] ], [ [ [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.666853 ], [ -45.000000, 81.771285 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.666853 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.666853 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ] ] ], [ [ [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ] ] ], [ [ [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.060547, -76.039967 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ], [ -40.968018, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.885620, -21.534847 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ], [ -34.727783, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.200439, 66.687784 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ] ] ], [ [ [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ], [ [ [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.068237, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ], [ -14.562378, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 13.982046 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.690186, 25.883937 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -0.230713, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.534847 ], [ -0.230713, 21.943046 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ], [ -0.230713, 21.943046 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ] ] ], [ [ [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ] ] ], [ [ [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ] ] ], [ [ [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ] ] ], [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ] ] ], [ [ [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ] ] ], [ [ [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ] ] ], [ [ [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ] ] ], [ [ [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ] ] ], [ [ [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.256236 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.500000, 14.790817 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.500000, 14.790817 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ] ] ], [ [ [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ] ] ], [ [ [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.593384, 41.133159 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ] ] ], [ [ [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ] ] ], [ [ [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.372192, -11.792080 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.372192, -11.792080 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ] ] ], [ [ [ 22.500000, -16.820316 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 24.032593, -17.292954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.372192, -11.792080 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.372192, -11.792080 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ], [ 37.694092, -3.096636 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.500000, 14.790817 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ] ] ], [ [ [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.500000, 14.790817 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.790817 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.790817 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 40.984497, -0.439449 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.555542, 10.574222 ], [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.555542, 10.574222 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ], [ 22.593384, 41.133159 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ] ] ], [ [ [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.987427, 41.302571 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 26.471558, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.831909, 32.870360 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.012939, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ], [ [ [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ] ] ], [ [ [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ] ] ], [ [ [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 35.969115 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ] ] ], [ [ [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ] ] ], [ [ [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.070679, -21.943046 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ], [ 59.573364, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ] ] ], [ [ [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ], [ [ [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ] ] ], [ [ [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ], [ 45.192261, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ] ] ], [ [ [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ] ] ], [ [ [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ] ] ], [ [ [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.214600, 37.396346 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.613749 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.613749 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ] ] ], [ [ [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ] ] ], [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ] ] ], [ [ [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ] ] ], [ [ [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ] ] ], [ [ [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ] ] ], [ [ [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ], [ 88.385010, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ], [ 88.385010, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ] ] ], [ [ [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ] ] ], [ [ [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ] ] ], [ [ [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ] ] ], [ [ [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ] ] ], [ [ [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ] ] ], [ [ [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ] ] ], [ [ [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.725098, 28.067133 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.294707 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 102.815552, 21.534847 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 102.815552, 21.534847 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 49.567978 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ], [ 110.758667, 74.019543 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.753418, 74.140084 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ] ] ], [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ] ] ], [ [ [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ] ] ], [ [ [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 115.175171, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.768188, -66.687784 ], [ 115.570679, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ] ] ], [ [ [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ] ] ], [ [ [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ] ] ], [ [ [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ] ] ], [ [ [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ] ] ], [ [ [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ] ] ], [ [ [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ] ] ], [ [ [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ] ] ], [ [ [ 115.570679, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ], [ 115.570679, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ], [ 123.684082, 0.236205 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ] ] ], [ [ [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.428467, -14.711135 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.428467, -14.711135 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ] ] ], [ [ [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ] ] ], [ [ [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ] ] ], [ [ [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ] ] ], [ [ [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ], [ 136.285400, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.065918, -65.307240 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ] ] ], [ [ [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ] ] ], [ [ [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ] ] ], [ [ [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 143.256226, 52.742943 ] ] ], [ [ [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ] ] ], [ [ [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ] ] ], [ [ [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ], [ 166.871338, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.376953, -21.534847 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ] ] ], [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ] ] ], [ [ [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.778198, -21.079375 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.778198, -21.079375 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 64.981682 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } ] } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json index 800209c..08599bb 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json @@ -12,2137 +12,2137 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ] ] ], [ [ [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ] ] ], [ [ [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ] ] ], [ [ [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ] ] ], [ [ [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ] ] ], [ [ [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.554498 ], [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ] ] ], [ [ [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ] ] ], [ [ [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ] ] ], [ [ [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ] ] ], [ [ [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ] ] ], [ [ [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ] ] ], [ [ [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ] ] ], [ [ [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ] ] ], [ [ [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.730469, 63.743631 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ], [ [ [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ] ] ], [ [ [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.865234, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ] ] ], [ [ [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ] ] ], [ [ [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ] ] ], [ [ [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ] ] ], [ [ [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ] ] ], [ [ [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.818359, 63.782486 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ] ] ], [ [ [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ] ] ], [ [ [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ] ] ], [ [ [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -70.664062, 41.508577 ], [ -71.191406, 41.508577 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.322266, 39.027719 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.947266, 32.101190 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.273714 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ] ] ], [ [ [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.631217 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ] ] ], [ [ [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ] ] ], [ [ [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ] ] ], [ [ [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ] ] ], [ [ [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ], [ [ [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -70.664062, 41.508577 ], [ -71.191406, 41.508577 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.322266, 39.027719 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.947266, 32.101190 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.273714 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ] ] ], [ [ [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.585436 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ] ] ], [ [ [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ] ] ], [ [ [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ] ] ], [ [ [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.873047, 32.546813 ], [ -111.093750, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -105.117188, 30.675715 ], [ -104.501953, 29.611670 ], [ -103.974609, 29.305561 ], [ -103.183594, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.840644 ], [ -100.986328, 29.382175 ], [ -100.195312, 28.149503 ], [ -99.580078, 27.605671 ], [ -99.052734, 26.431228 ], [ -97.558594, 25.878994 ], [ -97.207031, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.512557 ], [ -97.734375, 21.943046 ], [ -97.470703, 21.453069 ], [ -97.207031, 20.715015 ], [ -96.591797, 19.973349 ], [ -96.328125, 19.394068 ], [ -95.976562, 18.895893 ], [ -94.921875, 18.562947 ], [ -94.482422, 18.145852 ], [ -91.494141, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.615234, 19.890723 ], [ -90.527344, 20.715015 ], [ -90.351562, 21.043491 ], [ -88.593750, 21.534847 ], [ -87.099609, 21.616579 ], [ -86.835938, 21.371244 ], [ -86.923828, 20.879343 ], [ -87.451172, 20.303418 ], [ -87.626953, 19.725342 ], [ -87.451172, 19.476950 ], [ -87.890625, 18.312811 ], [ -88.154297, 18.562947 ], [ -88.505859, 18.562947 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.062312 ], [ -89.208984, 17.811456 ], [ -91.054688, 17.895114 ], [ -91.054688, 17.308688 ], [ -91.494141, 17.308688 ], [ -90.439453, 16.467695 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.114553 ], [ -92.285156, 14.604847 ], [ -93.427734, 15.623037 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.591797, 15.707663 ], [ -100.898438, 17.224758 ], [ -101.953125, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.974609, 18.812718 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.468750, 20.550509 ], [ -105.556641, 20.879343 ], [ -105.292969, 21.125498 ], [ -105.292969, 21.453069 ], [ -106.083984, 22.836946 ], [ -106.962891, 23.805450 ], [ -107.929688, 24.607069 ], [ -108.457031, 25.244696 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.878994 ], [ -109.335938, 26.509905 ], [ -109.863281, 26.745610 ], [ -110.478516, 27.215556 ], [ -110.654297, 27.916767 ], [ -111.181641, 27.994401 ], [ -112.236328, 28.998532 ], [ -112.324219, 29.305561 ], [ -112.851562, 30.069094 ], [ -113.203125, 30.826781 ], [ -113.203125, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.257812, 31.578535 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.221102 ], [ -113.291016, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -112.763672, 27.839076 ], [ -112.324219, 27.215556 ], [ -111.621094, 26.667096 ], [ -111.357422, 25.799891 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.511719, 23.241346 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.483401 ], [ -111.005859, 24.046464 ], [ -112.236328, 24.766785 ], [ -112.236328, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.824071 ], [ -113.642578, 26.667096 ], [ -113.906250, 26.902477 ], [ -114.521484, 27.215556 ], [ -115.136719, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.257812, 28.149503 ], [ -114.169922, 28.613459 ], [ -114.960938, 29.305561 ], [ -115.576172, 29.611670 ], [ -117.158203, 32.546813 ], [ -114.785156, 32.768800 ], [ -114.873047, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.785156, 32.768800 ], [ -114.873047, 32.546813 ], [ -111.093750, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -105.117188, 30.675715 ], [ -104.501953, 29.611670 ], [ -103.974609, 29.305561 ], [ -103.183594, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.840644 ], [ -100.986328, 29.382175 ], [ -100.195312, 28.149503 ], [ -99.580078, 27.605671 ], [ -99.052734, 26.431228 ], [ -97.558594, 25.878994 ], [ -97.207031, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.512557 ], [ -97.734375, 21.943046 ], [ -97.470703, 21.453069 ], [ -97.207031, 20.715015 ], [ -96.591797, 19.973349 ], [ -96.328125, 19.394068 ], [ -95.976562, 18.895893 ], [ -94.921875, 18.562947 ], [ -94.482422, 18.145852 ], [ -91.494141, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.615234, 19.890723 ], [ -90.527344, 20.715015 ], [ -90.351562, 21.043491 ], [ -88.593750, 21.534847 ], [ -87.099609, 21.616579 ], [ -86.835938, 21.371244 ], [ -86.923828, 20.879343 ], [ -87.451172, 20.303418 ], [ -87.626953, 19.725342 ], [ -87.451172, 19.476950 ], [ -87.890625, 18.312811 ], [ -88.154297, 18.562947 ], [ -88.505859, 18.562947 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.062312 ], [ -89.208984, 17.811456 ], [ -91.054688, 17.895114 ], [ -91.054688, 17.308688 ], [ -91.494141, 17.308688 ], [ -90.439453, 16.467695 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.114553 ], [ -92.285156, 14.604847 ], [ -93.427734, 15.623037 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.591797, 15.707663 ], [ -100.898438, 17.224758 ], [ -101.953125, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.974609, 18.812718 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.468750, 20.550509 ], [ -105.556641, 20.879343 ], [ -105.292969, 21.125498 ], [ -105.292969, 21.453069 ], [ -106.083984, 22.836946 ], [ -106.962891, 23.805450 ], [ -107.929688, 24.607069 ], [ -108.457031, 25.244696 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.878994 ], [ -109.335938, 26.509905 ], [ -109.863281, 26.745610 ], [ -110.478516, 27.215556 ], [ -110.654297, 27.916767 ], [ -111.181641, 27.994401 ], [ -112.236328, 28.998532 ], [ -112.324219, 29.305561 ], [ -112.851562, 30.069094 ], [ -113.203125, 30.826781 ], [ -113.203125, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.257812, 31.578535 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.221102 ], [ -113.291016, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -112.763672, 27.839076 ], [ -112.324219, 27.215556 ], [ -111.621094, 26.667096 ], [ -111.357422, 25.799891 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.511719, 23.241346 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.483401 ], [ -111.005859, 24.046464 ], [ -112.236328, 24.766785 ], [ -112.236328, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.824071 ], [ -113.642578, 26.667096 ], [ -113.906250, 26.902477 ], [ -114.521484, 27.215556 ], [ -115.136719, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.257812, 28.149503 ], [ -114.169922, 28.613459 ], [ -114.960938, 29.305561 ], [ -115.576172, 29.611670 ], [ -117.158203, 32.546813 ], [ -114.785156, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.208984, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.792254 ], [ -89.208984, 15.114553 ], [ -89.208984, 14.689881 ], [ -90.175781, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.318359, 14.008696 ], [ -92.285156, 14.604847 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.284185 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.439453, 16.467695 ], [ -91.494141, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.895114 ], [ -89.208984, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.054688, 17.895114 ], [ -89.208984, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.792254 ], [ -89.208984, 15.114553 ], [ -89.208984, 14.689881 ], [ -90.175781, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.318359, 14.008696 ], [ -92.285156, 14.604847 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.284185 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.439453, 16.467695 ], [ -91.494141, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.895114 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.607422, 24.367114 ], [ -77.607422, 23.805450 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ], [ -77.607422, 24.367114 ] ] ], [ [ [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ] ] ], [ [ [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.958984, 25.244696 ], [ -77.607422, 24.367114 ], [ -77.607422, 23.805450 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ] ] ], [ [ [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ] ] ], [ [ [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.154297, 18.396230 ], [ -88.417969, 16.551962 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.208984, 17.811456 ], [ -89.033203, 18.062312 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.562947 ], [ -88.154297, 18.396230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.505859, 18.562947 ], [ -88.154297, 18.396230 ], [ -88.417969, 16.551962 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.208984, 17.811456 ], [ -89.033203, 18.062312 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.349548 ], [ -88.505859, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.838080 ], [ -87.802734, 13.410994 ], [ -87.978516, 13.154376 ], [ -88.505859, 13.239945 ], [ -89.824219, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.384766, 14.434680 ], [ -89.121094, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -89.121094, 14.349548 ], [ -88.505859, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.838080 ], [ -87.802734, 13.410994 ], [ -87.978516, 13.154376 ], [ -88.505859, 13.239945 ], [ -89.824219, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.384766, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.876809 ], [ -83.232422, 15.029686 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.689881 ], [ -84.990234, 14.859850 ], [ -85.166016, 14.434680 ], [ -85.869141, 13.838080 ], [ -86.132812, 14.093957 ], [ -86.396484, 13.838080 ], [ -86.835938, 13.838080 ], [ -86.748047, 13.325485 ], [ -86.923828, 13.325485 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.539062, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.802734, 13.838080 ], [ -87.890625, 13.923404 ], [ -88.505859, 13.923404 ], [ -89.121094, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.208984, 14.689881 ], [ -89.208984, 15.114553 ], [ -88.242188, 15.792254 ], [ -87.978516, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ], [ -85.517578, 15.961329 ], [ -84.990234, 16.045813 ], [ -84.375000, 15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 16.045813 ], [ -84.375000, 15.876809 ], [ -83.232422, 15.029686 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.689881 ], [ -84.990234, 14.859850 ], [ -85.166016, 14.434680 ], [ -85.869141, 13.838080 ], [ -86.132812, 14.093957 ], [ -86.396484, 13.838080 ], [ -86.835938, 13.838080 ], [ -86.748047, 13.325485 ], [ -86.923828, 13.325485 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.539062, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.802734, 13.838080 ], [ -87.890625, 13.923404 ], [ -88.505859, 13.923404 ], [ -89.121094, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.208984, 14.689881 ], [ -89.208984, 15.114553 ], [ -88.242188, 15.792254 ], [ -87.978516, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ], [ -85.517578, 15.961329 ], [ -84.990234, 16.045813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.935547, 10.746969 ], [ -84.726562, 11.092166 ], [ -84.990234, 11.005904 ], [ -85.605469, 11.264612 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -86.923828, 13.325485 ], [ -86.748047, 13.325485 ], [ -86.835938, 13.838080 ], [ -86.396484, 13.838080 ], [ -86.132812, 14.093957 ], [ -85.869141, 13.838080 ], [ -85.166016, 14.434680 ], [ -84.990234, 14.859850 ], [ -84.462891, 14.689881 ], [ -83.496094, 15.029686 ], [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.935547, 10.746969 ], [ -84.726562, 11.092166 ], [ -84.990234, 11.005904 ], [ -85.605469, 11.264612 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -86.923828, 13.325485 ], [ -86.748047, 13.325485 ], [ -86.835938, 13.838080 ], [ -86.396484, 13.838080 ], [ -86.132812, 14.093957 ], [ -85.869141, 13.838080 ], [ -85.166016, 14.434680 ], [ -84.990234, 14.859850 ], [ -84.462891, 14.689881 ], [ -83.496094, 15.029686 ], [ -83.232422, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.683594, 23.160563 ], [ -79.716797, 22.836946 ], [ -79.365234, 22.431340 ], [ -78.398438, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.673828, 21.043491 ], [ -75.673828, 20.797201 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.355469, 20.055931 ], [ -74.970703, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.715015 ], [ -78.222656, 20.797201 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.365234, 21.616579 ], [ -80.244141, 21.861499 ], [ -80.595703, 22.105999 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.755921 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.111328, 21.943046 ], [ -84.550781, 21.861499 ], [ -84.990234, 21.943046 ], [ -84.462891, 22.268764 ], [ -84.287109, 22.593726 ], [ -83.847656, 22.836946 ], [ -82.353516, 23.241346 ], [ -80.683594, 23.160563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.353516, 23.241346 ], [ -80.683594, 23.160563 ], [ -79.716797, 22.836946 ], [ -79.365234, 22.431340 ], [ -78.398438, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.673828, 21.043491 ], [ -75.673828, 20.797201 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.355469, 20.055931 ], [ -74.970703, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.715015 ], [ -78.222656, 20.797201 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.365234, 21.616579 ], [ -80.244141, 21.861499 ], [ -80.595703, 22.105999 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.755921 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.111328, 21.943046 ], [ -84.550781, 21.861499 ], [ -84.990234, 21.943046 ], [ -84.462891, 22.268764 ], [ -84.287109, 22.593726 ], [ -83.847656, 22.836946 ], [ -82.353516, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 11.005904 ], [ -84.726562, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 11.005904 ], [ -83.408203, 10.401378 ], [ -82.617188, 9.622414 ], [ -82.968750, 9.535749 ], [ -82.968750, 9.102097 ], [ -82.792969, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.583984, 8.494105 ], [ -83.759766, 8.667918 ], [ -83.671875, 9.102097 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -84.990234, 10.141932 ], [ -84.990234, 9.882275 ], [ -85.166016, 9.622414 ], [ -85.341797, 9.882275 ], [ -85.693359, 9.968851 ], [ -85.869141, 10.141932 ], [ -85.693359, 10.833306 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.264612 ], [ -84.990234, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.264612 ], [ -84.990234, 11.005904 ], [ -84.726562, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 11.005904 ], [ -83.408203, 10.401378 ], [ -82.617188, 9.622414 ], [ -82.968750, 9.535749 ], [ -82.968750, 9.102097 ], [ -82.792969, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.583984, 8.494105 ], [ -83.759766, 8.667918 ], [ -83.671875, 9.102097 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -84.990234, 10.141932 ], [ -84.990234, 9.882275 ], [ -85.166016, 9.622414 ], [ -85.341797, 9.882275 ], [ -85.693359, 9.968851 ], [ -85.869141, 10.141932 ], [ -85.693359, 10.833306 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.264612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.134766, 9.275622 ], [ -77.431641, 8.754795 ], [ -77.519531, 8.581021 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.710992 ], [ -77.783203, 7.710992 ], [ -77.958984, 7.275292 ], [ -78.222656, 7.536764 ], [ -78.486328, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.486328, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.189453, 9.015302 ], [ -79.628906, 9.015302 ], [ -79.804688, 8.667918 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.146243 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -80.947266, 7.275292 ], [ -81.123047, 7.885147 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.320212 ], [ -82.880859, 8.146243 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.841651 ], [ -82.792969, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.535749 ], [ -82.617188, 9.622414 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.015302 ], [ -81.738281, 9.102097 ], [ -81.474609, 8.841651 ], [ -81.035156, 8.928487 ], [ -79.980469, 9.362353 ], [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ], [ -77.431641, 8.754795 ], [ -77.519531, 8.581021 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.710992 ], [ -77.783203, 7.710992 ], [ -77.958984, 7.275292 ], [ -78.222656, 7.536764 ], [ -78.486328, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.486328, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.189453, 9.015302 ], [ -79.628906, 9.015302 ], [ -79.804688, 8.667918 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.146243 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -80.947266, 7.275292 ], [ -81.123047, 7.885147 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.320212 ], [ -82.880859, 8.146243 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.841651 ], [ -82.792969, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.535749 ], [ -82.617188, 9.622414 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.015302 ], [ -81.738281, 9.102097 ], [ -81.474609, 8.841651 ], [ -81.035156, 8.928487 ], [ -79.980469, 9.362353 ], [ -79.628906, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.904297, 18.479609 ], [ -76.376953, 18.229351 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.255859, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.398438, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.562947 ], [ -76.904297, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.607422, 18.562947 ], [ -76.904297, 18.479609 ], [ -76.376953, 18.229351 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.255859, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.398438, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.396230 ], [ -71.718750, 18.062312 ], [ -72.421875, 18.229351 ], [ -73.476562, 18.229351 ], [ -74.003906, 18.062312 ], [ -74.531250, 18.396230 ], [ -74.443359, 18.729502 ], [ -72.773438, 18.479609 ], [ -72.421875, 18.729502 ], [ -72.861328, 19.145168 ], [ -72.861328, 19.559790 ], [ -73.476562, 19.642588 ], [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.396230 ], [ -71.718750, 18.062312 ], [ -72.421875, 18.229351 ], [ -73.476562, 18.229351 ], [ -74.003906, 18.062312 ], [ -74.531250, 18.396230 ], [ -74.443359, 18.729502 ], [ -72.773438, 18.479609 ], [ -72.421875, 18.729502 ], [ -72.861328, 19.145168 ], [ -72.861328, 19.559790 ], [ -73.476562, 19.642588 ], [ -73.212891, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.725342 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.394068 ], [ -69.257812, 19.062118 ], [ -68.818359, 19.062118 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.479609 ], [ -69.960938, 18.479609 ], [ -70.136719, 18.312811 ], [ -70.576172, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.015625, 18.312811 ], [ -71.455078, 17.644022 ], [ -71.718750, 17.811456 ], [ -71.718750, 18.396230 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.725342 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.394068 ], [ -69.257812, 19.062118 ], [ -68.818359, 19.062118 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.479609 ], [ -69.960938, 18.479609 ], [ -70.136719, 18.312811 ], [ -70.576172, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.015625, 18.312811 ], [ -71.455078, 17.644022 ], [ -71.718750, 17.811456 ], [ -71.718750, 18.396230 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.455078, 12.382928 ], [ -71.191406, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.178402 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.795678 ], [ -73.388672, 9.188870 ], [ -72.861328, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.509766, 8.407168 ], [ -72.509766, 7.449624 ], [ -72.246094, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.751953, 7.100893 ], [ -70.136719, 7.013668 ], [ -69.433594, 6.140555 ], [ -67.763672, 6.315299 ], [ -67.412109, 6.140555 ], [ -67.763672, 5.266008 ], [ -67.851562, 4.565474 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.899153 ], [ -67.236328, 2.284551 ], [ -66.884766, 1.318243 ], [ -67.148438, 1.142502 ], [ -67.324219, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.939453, 1.757537 ], [ -69.873047, 1.757537 ], [ -69.873047, 1.142502 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.615223 ], [ -69.521484, 0.790990 ], [ -70.048828, 0.615223 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.054628 ], [ -69.960938, -4.214943 ], [ -70.400391, -3.688855 ], [ -70.751953, -3.688855 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.196727 ], [ -71.455078, -2.284551 ], [ -71.806641, -2.108899 ], [ -72.333984, -2.372369 ], [ -73.125000, -2.284551 ], [ -73.740234, -1.230374 ], [ -74.179688, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, 0.000000 ], [ -75.410156, -0.087891 ], [ -76.376953, 0.439449 ], [ -76.640625, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.878872 ], [ -77.871094, 0.878872 ], [ -78.925781, 1.406109 ], [ -79.013672, 1.757537 ], [ -78.662109, 1.845384 ], [ -78.750000, 2.284551 ], [ -78.486328, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.740675 ], [ -77.607422, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.751896 ], [ -77.958984, 7.275292 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.710992 ], [ -77.255859, 7.972198 ], [ -77.519531, 8.581021 ], [ -77.431641, 8.754795 ], [ -76.904297, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.761719, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.970703, 11.092166 ], [ -74.355469, 11.178402 ], [ -74.267578, 11.350797 ], [ -73.476562, 11.264612 ], [ -72.246094, 12.039321 ], [ -71.806641, 12.468760 ], [ -71.455078, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.806641, 12.468760 ], [ -71.455078, 12.382928 ], [ -71.191406, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.178402 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.795678 ], [ -73.388672, 9.188870 ], [ -72.861328, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.509766, 8.407168 ], [ -72.509766, 7.449624 ], [ -72.246094, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.751953, 7.100893 ], [ -70.136719, 7.013668 ], [ -69.433594, 6.140555 ], [ -67.763672, 6.315299 ], [ -67.412109, 6.140555 ], [ -67.763672, 5.266008 ], [ -67.851562, 4.565474 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.899153 ], [ -67.236328, 2.284551 ], [ -66.884766, 1.318243 ], [ -67.148438, 1.142502 ], [ -67.324219, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.939453, 1.757537 ], [ -69.873047, 1.757537 ], [ -69.873047, 1.142502 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.615223 ], [ -69.521484, 0.790990 ], [ -70.048828, 0.615223 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.054628 ], [ -69.960938, -4.214943 ], [ -70.400391, -3.688855 ], [ -70.751953, -3.688855 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.196727 ], [ -71.455078, -2.284551 ], [ -71.806641, -2.108899 ], [ -72.333984, -2.372369 ], [ -73.125000, -2.284551 ], [ -73.740234, -1.230374 ], [ -74.179688, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, 0.000000 ], [ -75.410156, -0.087891 ], [ -76.376953, 0.439449 ], [ -76.640625, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.878872 ], [ -77.871094, 0.878872 ], [ -78.925781, 1.406109 ], [ -79.013672, 1.757537 ], [ -78.662109, 1.845384 ], [ -78.750000, 2.284551 ], [ -78.486328, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.740675 ], [ -77.607422, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.751896 ], [ -77.958984, 7.275292 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.710992 ], [ -77.255859, 7.972198 ], [ -77.519531, 8.581021 ], [ -77.431641, 8.754795 ], [ -76.904297, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.761719, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.970703, 11.092166 ], [ -74.355469, 11.178402 ], [ -74.267578, 11.350797 ], [ -73.476562, 11.264612 ], [ -72.246094, 12.039321 ], [ -71.806641, 12.468760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.830078, 18.479609 ], [ -65.654297, 18.229351 ], [ -65.917969, 17.978733 ], [ -67.236328, 17.978733 ], [ -67.324219, 18.396230 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ], [ -65.830078, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.357422, 18.562947 ], [ -65.830078, 18.479609 ], [ -65.654297, 18.229351 ], [ -65.917969, 17.978733 ], [ -67.236328, 17.978733 ], [ -67.324219, 18.396230 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.291016, 10.919618 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.742188, 10.228437 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.908203, 9.449062 ], [ -60.732422, 8.581021 ], [ -60.205078, 8.667918 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.380859, 7.100893 ], [ -61.171875, 6.751896 ], [ -61.171875, 6.315299 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -60.996094, 4.565474 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -64.687500, 4.214943 ], [ -64.863281, 4.127285 ], [ -64.423828, 3.864255 ], [ -64.423828, 3.162456 ], [ -64.335938, 2.547988 ], [ -63.457031, 2.460181 ], [ -63.369141, 2.284551 ], [ -64.160156, 1.933227 ], [ -64.248047, 1.493971 ], [ -65.390625, 1.142502 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.790990 ], [ -66.884766, 1.318243 ], [ -67.236328, 2.284551 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.763672, 5.266008 ], [ -67.412109, 6.140555 ], [ -67.763672, 6.315299 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -70.751953, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.246094, 7.362467 ], [ -72.509766, 7.449624 ], [ -72.509766, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -73.037109, 9.795678 ], [ -72.949219, 10.487812 ], [ -72.246094, 11.178402 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.609193 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.718750, 10.487812 ], [ -72.158203, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.188870 ], [ -71.103516, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.211180 ], [ -69.609375, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.211180 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.291016, 10.919618 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.742188, 10.228437 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.908203, 9.449062 ], [ -60.732422, 8.581021 ], [ -60.205078, 8.667918 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.380859, 7.100893 ], [ -61.171875, 6.751896 ], [ -61.171875, 6.315299 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -60.996094, 4.565474 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -64.687500, 4.214943 ], [ -64.863281, 4.127285 ], [ -64.423828, 3.864255 ], [ -64.423828, 3.162456 ], [ -64.335938, 2.547988 ], [ -63.457031, 2.460181 ], [ -63.369141, 2.284551 ], [ -64.160156, 1.933227 ], [ -64.248047, 1.493971 ], [ -65.390625, 1.142502 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.790990 ], [ -66.884766, 1.318243 ], [ -67.236328, 2.284551 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.763672, 5.266008 ], [ -67.412109, 6.140555 ], [ -67.763672, 6.315299 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -70.751953, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.246094, 7.362467 ], [ -72.509766, 7.449624 ], [ -72.509766, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -73.037109, 9.795678 ], [ -72.949219, 10.487812 ], [ -72.246094, 11.178402 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.609193 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.718750, 10.487812 ], [ -72.158203, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.188870 ], [ -71.103516, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.996094, 10.141932 ], [ -61.787109, 10.055403 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ], [ -61.787109, 10.055403 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, 8.059230 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.216797, 6.053161 ], [ -57.392578, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.919922, 4.653080 ], [ -58.095703, 4.127285 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.216797, 2.811371 ], [ -56.601562, 1.933227 ], [ -57.392578, 2.021065 ], [ -57.744141, 1.757537 ], [ -58.447266, 1.493971 ], [ -58.623047, 1.318243 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.845384 ], [ -60.029297, 2.811371 ], [ -59.853516, 3.688855 ], [ -59.589844, 4.039618 ], [ -59.853516, 4.477856 ], [ -60.117188, 4.653080 ], [ -60.029297, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.820312, 5.266008 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.315299 ], [ -61.171875, 6.751896 ], [ -60.380859, 7.100893 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ], [ -59.150391, 8.059230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.150391, 8.059230 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.216797, 6.053161 ], [ -57.392578, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.919922, 4.653080 ], [ -58.095703, 4.127285 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.216797, 2.811371 ], [ -56.601562, 1.933227 ], [ -57.392578, 2.021065 ], [ -57.744141, 1.757537 ], [ -58.447266, 1.493971 ], [ -58.623047, 1.318243 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.845384 ], [ -60.029297, 2.811371 ], [ -59.853516, 3.688855 ], [ -59.589844, 4.039618 ], [ -59.853516, 4.477856 ], [ -60.117188, 4.653080 ], [ -60.029297, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.820312, 5.266008 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.315299 ], [ -61.171875, 6.751896 ], [ -60.380859, 7.100893 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -55.107422, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.108899 ], [ -56.074219, 1.845384 ], [ -56.601562, 1.933227 ], [ -57.216797, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -58.095703, 4.127285 ], [ -57.919922, 4.653080 ], [ -57.919922, 4.828260 ], [ -57.392578, 5.090944 ], [ -57.216797, 6.053161 ], [ -55.986328, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.107422, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.107422, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -55.107422, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.108899 ], [ -56.074219, 1.845384 ], [ -56.601562, 1.933227 ], [ -57.216797, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -58.095703, 4.127285 ], [ -57.919922, 4.653080 ], [ -57.919922, 4.828260 ], [ -57.392578, 5.090944 ], [ -57.216797, 6.053161 ], [ -55.986328, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.107422, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.622978 ], [ -7.646484, 54.110943 ], [ -7.031250, 54.110943 ], [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ], [ -7.382812, 54.622978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.646484, 55.178868 ], [ -7.382812, 54.622978 ], [ -7.646484, 54.110943 ], [ -7.031250, 54.110943 ], [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.130859, 57.562995 ], [ -3.076172, 57.704147 ], [ -2.021484, 57.704147 ], [ -2.285156, 56.897004 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.673831 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 1.494141, 52.106505 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.548828, 50.513427 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -4.394531, 51.234407 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -5.712891, 56.316537 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.844751 ], [ -5.097656, 58.631217 ], [ -4.218750, 58.585436 ], [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ] ] ], [ [ [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ], [ -7.031250, 54.110943 ], [ -7.646484, 54.110943 ], [ -7.382812, 54.622978 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ], [ -3.076172, 57.704147 ], [ -2.021484, 57.704147 ], [ -2.285156, 56.897004 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.673831 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 1.494141, 52.106505 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.548828, 50.513427 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -4.394531, 51.234407 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -5.712891, 56.316537 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.844751 ], [ -5.097656, 58.631217 ], [ -4.218750, 58.585436 ], [ -3.076172, 58.676938 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ], [ -7.031250, 54.110943 ], [ -7.646484, 54.110943 ], [ -7.382812, 54.622978 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.653080 ], [ -51.679688, 4.214943 ], [ -52.558594, 2.547988 ], [ -52.998047, 2.196727 ], [ -53.437500, 2.108899 ], [ -53.613281, 2.372369 ], [ -53.789062, 2.460181 ], [ -54.140625, 2.108899 ], [ -54.580078, 2.372369 ], [ -54.052734, 3.688855 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 8.701172, 42.682435 ], [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ] ] ], [ [ [ 2.636719, 50.847573 ], [ 3.076172, 50.792047 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 4.746094, 50.007739 ], [ 5.625000, 49.553726 ], [ 5.888672, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.591797, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.382812, 47.635784 ], [ 7.119141, 47.457809 ], [ 6.679688, 47.576526 ], [ 6.767578, 47.338823 ], [ 5.976562, 46.739861 ], [ 5.976562, 46.316584 ], [ 6.416016, 46.437857 ], [ 6.767578, 46.012224 ], [ 6.767578, 45.767523 ], [ 7.031250, 45.336702 ], [ 6.679688, 45.089036 ], [ 6.943359, 44.276671 ], [ 7.470703, 44.150681 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 1.757812, 42.358544 ], [ 0.615234, 42.811522 ], [ 0.263672, 42.617791 ], [ -1.582031, 43.068888 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.285156, 47.100045 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.636719, 50.847573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.653080 ], [ -51.679688, 4.214943 ], [ -52.558594, 2.547988 ], [ -52.998047, 2.196727 ], [ -53.437500, 2.108899 ], [ -53.613281, 2.372369 ], [ -53.789062, 2.460181 ], [ -54.140625, 2.108899 ], [ -54.580078, 2.372369 ], [ -54.052734, 3.688855 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 8.701172, 42.682435 ], [ 9.316406, 43.068888 ] ] ], [ [ [ 2.460938, 51.179343 ], [ 2.636719, 50.847573 ], [ 3.076172, 50.792047 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 4.746094, 50.007739 ], [ 5.625000, 49.553726 ], [ 5.888672, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.591797, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.382812, 47.635784 ], [ 7.119141, 47.457809 ], [ 6.679688, 47.576526 ], [ 6.767578, 47.338823 ], [ 5.976562, 46.739861 ], [ 5.976562, 46.316584 ], [ 6.416016, 46.437857 ], [ 6.767578, 46.012224 ], [ 6.767578, 45.767523 ], [ 7.031250, 45.336702 ], [ 6.679688, 45.089036 ], [ 6.943359, 44.276671 ], [ 7.470703, 44.150681 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 1.757812, 42.358544 ], [ 0.615234, 42.811522 ], [ 0.263672, 42.617791 ], [ -1.582031, 43.068888 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.285156, 47.100045 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 23.402765 ], [ -12.919922, 23.322080 ], [ -13.183594, 22.836946 ], [ -13.007812, 21.371244 ], [ -16.875000, 21.371244 ], [ -17.138672, 21.043491 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.677734, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.974609, 23.725012 ], [ -12.568359, 24.846565 ], [ -12.041016, 25.958045 ], [ -11.953125, 23.402765 ] ] ], [ [ [ -11.777344, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.634766, 27.059126 ], [ -9.755859, 26.902477 ], [ -9.492188, 27.137368 ], [ -8.876953, 27.137368 ], [ -8.876953, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.958045 ], [ -12.041016, 25.958045 ], [ -12.041016, 26.037042 ], [ -11.777344, 26.115986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.041016, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.919922, 23.322080 ], [ -13.183594, 22.836946 ], [ -13.007812, 21.371244 ], [ -16.875000, 21.371244 ], [ -17.138672, 21.043491 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.677734, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.974609, 23.725012 ], [ -12.568359, 24.846565 ], [ -12.041016, 25.958045 ] ] ], [ [ [ -12.041016, 25.958045 ], [ -12.041016, 26.037042 ], [ -11.777344, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.634766, 27.059126 ], [ -9.755859, 26.902477 ], [ -9.492188, 27.137368 ], [ -8.876953, 27.137368 ], [ -8.876953, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.958045 ], [ -12.041016, 25.958045 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 41.836828 ], [ -7.470703, 41.836828 ], [ -7.294922, 41.967659 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.442726 ], [ -6.855469, 41.112469 ], [ -6.943359, 40.380028 ], [ -7.031250, 40.245992 ], [ -7.119141, 39.774769 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.095963 ], [ -7.382812, 38.410558 ], [ -7.031250, 38.134557 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.160317 ], [ -7.910156, 36.879621 ], [ -8.437500, 37.020098 ], [ -8.964844, 36.879621 ], [ -8.789062, 37.718590 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.580078, 38.754083 ], [ -9.492188, 39.436193 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.349609, 42.293564 ], [ -8.085938, 41.836828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.349609, 42.293564 ], [ -8.085938, 41.836828 ], [ -7.470703, 41.836828 ], [ -7.294922, 41.967659 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.442726 ], [ -6.855469, 41.112469 ], [ -6.943359, 40.380028 ], [ -7.031250, 40.245992 ], [ -7.119141, 39.774769 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.095963 ], [ -7.382812, 38.410558 ], [ -7.031250, 38.134557 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.160317 ], [ -7.910156, 36.879621 ], [ -8.437500, 37.020098 ], [ -8.964844, 36.879621 ], [ -8.789062, 37.718590 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.580078, 38.754083 ], [ -9.492188, 39.436193 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.349609, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.582031, 43.068888 ], [ 0.263672, 42.617791 ], [ 0.615234, 42.811522 ], [ 1.757812, 42.358544 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 2.021484, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.713956 ], [ 0.087891, 40.178873 ], [ -0.351562, 39.368279 ], [ 0.087891, 38.754083 ], [ -0.527344, 38.341656 ], [ -0.703125, 37.649034 ], [ -1.494141, 37.509726 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.009766, 36.385913 ], [ -5.449219, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.382812, 38.410558 ], [ -7.119141, 39.095963 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.774769 ], [ -7.031250, 40.245992 ], [ -6.943359, 40.380028 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.967659 ], [ -7.470703, 41.836828 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.582031, 43.068888 ], [ 0.263672, 42.617791 ], [ 0.615234, 42.811522 ], [ 1.757812, 42.358544 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 2.021484, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.713956 ], [ 0.087891, 40.178873 ], [ -0.351562, 39.368279 ], [ 0.087891, 38.754083 ], [ -0.527344, 38.341656 ], [ -0.703125, 37.649034 ], [ -1.494141, 37.509726 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.009766, 36.385913 ], [ -5.449219, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.382812, 38.410558 ], [ -7.119141, 39.095963 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.774769 ], [ -7.031250, 40.245992 ], [ -6.943359, 40.380028 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.967659 ], [ -7.470703, 41.836828 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.658203, 35.389050 ], [ -3.691406, 35.460670 ], [ -2.197266, 35.173808 ], [ -1.845703, 34.597042 ], [ -1.406250, 32.916485 ], [ -1.142578, 32.694866 ], [ -1.318359, 32.324276 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.921875, 30.524413 ], [ -5.273438, 30.069094 ], [ -7.119141, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.876953, 27.683528 ], [ -8.876953, 27.137368 ], [ -9.492188, 27.137368 ], [ -9.755859, 26.902477 ], [ -10.634766, 27.059126 ], [ -11.425781, 26.902477 ], [ -11.777344, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.568359, 24.846565 ], [ -13.974609, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.677734, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.611328, 22.187405 ], [ -16.347656, 22.755921 ], [ -16.347656, 23.079732 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.165173 ], [ -14.853516, 25.641526 ], [ -14.501953, 26.273714 ], [ -13.798828, 26.667096 ], [ -13.183594, 27.683528 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.986328, 28.844674 ], [ -10.458984, 29.152161 ], [ -9.580078, 29.993002 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.620870 ], [ -8.701172, 33.284620 ], [ -6.943359, 34.161818 ], [ -5.976562, 35.817813 ], [ -5.273438, 35.817813 ], [ -4.658203, 35.389050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.817813 ], [ -4.658203, 35.389050 ], [ -3.691406, 35.460670 ], [ -2.197266, 35.173808 ], [ -1.845703, 34.597042 ], [ -1.406250, 32.916485 ], [ -1.142578, 32.694866 ], [ -1.318359, 32.324276 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.921875, 30.524413 ], [ -5.273438, 30.069094 ], [ -7.119141, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.876953, 27.683528 ], [ -8.876953, 27.137368 ], [ -9.492188, 27.137368 ], [ -9.755859, 26.902477 ], [ -10.634766, 27.059126 ], [ -11.425781, 26.902477 ], [ -11.777344, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.568359, 24.846565 ], [ -13.974609, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.677734, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.611328, 22.187405 ], [ -16.347656, 22.755921 ], [ -16.347656, 23.079732 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.165173 ], [ -14.853516, 25.641526 ], [ -14.501953, 26.273714 ], [ -13.798828, 26.667096 ], [ -13.183594, 27.683528 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.986328, 28.844674 ], [ -10.458984, 29.152161 ], [ -9.580078, 29.993002 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.620870 ], [ -8.701172, 33.284620 ], [ -6.943359, 34.161818 ], [ -5.976562, 35.817813 ], [ -5.273438, 35.817813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.447266, 16.045813 ], [ -12.216797, 14.689881 ], [ -11.953125, 13.496473 ], [ -11.601562, 13.154376 ], [ -11.601562, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.568359, 12.382928 ], [ -13.271484, 12.640338 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.468760 ], [ -16.875000, 13.154376 ], [ -15.996094, 13.154376 ], [ -15.205078, 13.581921 ], [ -14.765625, 13.325485 ], [ -14.326172, 13.325485 ], [ -13.886719, 13.581921 ], [ -14.062500, 13.838080 ], [ -14.765625, 13.667338 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.644531, 13.667338 ], [ -16.787109, 13.667338 ], [ -17.138672, 14.434680 ], [ -17.666016, 14.774883 ], [ -17.226562, 14.944785 ], [ -16.523438, 16.214675 ], [ -16.171875, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.205078, 16.636192 ], [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ], [ -12.216797, 14.689881 ], [ -11.953125, 13.496473 ], [ -11.601562, 13.154376 ], [ -11.601562, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.568359, 12.382928 ], [ -13.271484, 12.640338 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.468760 ], [ -16.875000, 13.154376 ], [ -15.996094, 13.154376 ], [ -15.205078, 13.581921 ], [ -14.765625, 13.325485 ], [ -14.326172, 13.325485 ], [ -13.886719, 13.581921 ], [ -14.062500, 13.838080 ], [ -14.765625, 13.667338 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.644531, 13.667338 ], [ -16.787109, 13.667338 ], [ -17.138672, 14.434680 ], [ -17.666016, 14.774883 ], [ -17.226562, 14.944785 ], [ -16.523438, 16.214675 ], [ -16.171875, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.205078, 16.636192 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.765625, 13.667338 ], [ -14.062500, 13.838080 ], [ -13.886719, 13.581921 ], [ -14.326172, 13.325485 ], [ -14.765625, 13.325485 ], [ -15.205078, 13.581921 ], [ -15.996094, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.787109, 13.667338 ], [ -15.644531, 13.667338 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ], [ -14.765625, 13.667338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -14.765625, 13.667338 ], [ -14.062500, 13.838080 ], [ -13.886719, 13.581921 ], [ -14.326172, 13.325485 ], [ -14.765625, 13.325485 ], [ -15.205078, 13.581921 ], [ -15.996094, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.787109, 13.667338 ], [ -15.644531, 13.667338 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.886719, 12.211180 ], [ -13.798828, 11.867351 ], [ -14.414062, 11.523088 ], [ -14.765625, 11.609193 ], [ -15.205078, 11.092166 ], [ -15.732422, 11.523088 ], [ -16.171875, 11.609193 ], [ -16.699219, 12.468760 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.640338 ], [ -13.886719, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.640338 ], [ -13.886719, 12.211180 ], [ -13.798828, 11.867351 ], [ -14.414062, 11.523088 ], [ -14.765625, 11.609193 ], [ -15.205078, 11.092166 ], [ -15.732422, 11.523088 ], [ -16.171875, 11.609193 ], [ -16.699219, 12.468760 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.568359, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.601562, 12.468760 ], [ -11.513672, 12.125264 ], [ -11.074219, 12.297068 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.404297, 12.382928 ], [ -9.140625, 12.382928 ], [ -8.437500, 11.436955 ], [ -8.613281, 11.178402 ], [ -8.701172, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.349609, 10.833306 ], [ -8.349609, 10.574222 ], [ -8.085938, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -7.910156, 8.581021 ], [ -8.349609, 8.320212 ], [ -8.349609, 7.710992 ], [ -8.525391, 7.710992 ], [ -8.789062, 7.798079 ], [ -8.964844, 7.362467 ], [ -9.228516, 7.362467 ], [ -9.404297, 7.536764 ], [ -9.404297, 7.972198 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.407168 ], [ -10.634766, 9.275622 ], [ -11.162109, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.216797, 9.882275 ], [ -12.480469, 9.882275 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -14.150391, 9.968851 ], [ -14.589844, 10.228437 ], [ -14.765625, 10.660608 ], [ -15.205078, 11.092166 ], [ -14.765625, 11.609193 ], [ -14.414062, 11.523088 ], [ -13.798828, 11.867351 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.640338 ], [ -13.271484, 12.640338 ], [ -12.568359, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.271484, 12.640338 ], [ -12.568359, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.601562, 12.468760 ], [ -11.513672, 12.125264 ], [ -11.074219, 12.297068 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.404297, 12.382928 ], [ -9.140625, 12.382928 ], [ -8.437500, 11.436955 ], [ -8.613281, 11.178402 ], [ -8.701172, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.349609, 10.833306 ], [ -8.349609, 10.574222 ], [ -8.085938, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -7.910156, 8.581021 ], [ -8.349609, 8.320212 ], [ -8.349609, 7.710992 ], [ -8.525391, 7.710992 ], [ -8.789062, 7.798079 ], [ -8.964844, 7.362467 ], [ -9.228516, 7.362467 ], [ -9.404297, 7.536764 ], [ -9.404297, 7.972198 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.407168 ], [ -10.634766, 9.275622 ], [ -11.162109, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.216797, 9.882275 ], [ -12.480469, 9.882275 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -14.150391, 9.968851 ], [ -14.589844, 10.228437 ], [ -14.765625, 10.660608 ], [ -15.205078, 11.092166 ], [ -14.765625, 11.609193 ], [ -14.414062, 11.523088 ], [ -13.798828, 11.867351 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.640338 ], [ -13.271484, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.634766, 9.275622 ], [ -10.546875, 8.407168 ], [ -10.283203, 8.407168 ], [ -11.162109, 7.449624 ], [ -11.513672, 6.839170 ], [ -12.480469, 7.275292 ], [ -13.007812, 7.885147 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.480469, 9.882275 ], [ -12.216797, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.162109, 10.055403 ], [ -10.634766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.162109, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.546875, 8.407168 ], [ -10.283203, 8.407168 ], [ -11.162109, 7.449624 ], [ -11.513672, 6.839170 ], [ -12.480469, 7.275292 ], [ -13.007812, 7.885147 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.480469, 9.882275 ], [ -12.216797, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.162109, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.005973 ], [ -6.503906, 25.005973 ], [ -5.537109, 16.383391 ], [ -5.361328, 16.214675 ], [ -5.625000, 15.538376 ], [ -9.580078, 15.538376 ], [ -9.755859, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.722656, 15.199386 ], [ -11.425781, 15.453680 ], [ -11.689453, 15.453680 ], [ -11.865234, 14.859850 ], [ -12.216797, 14.689881 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -15.205078, 16.636192 ], [ -15.644531, 16.383391 ], [ -16.171875, 16.467695 ], [ -16.523438, 16.214675 ], [ -16.611328, 16.720385 ], [ -16.347656, 17.224758 ], [ -16.171875, 18.145852 ], [ -16.435547, 19.642588 ], [ -16.347656, 20.138470 ], [ -16.611328, 20.632784 ], [ -17.138672, 21.043491 ], [ -16.875000, 21.371244 ], [ -13.007812, 21.371244 ], [ -13.183594, 22.836946 ], [ -12.919922, 23.322080 ], [ -11.953125, 23.402765 ], [ -12.041016, 25.958045 ], [ -8.701172, 25.958045 ], [ -8.701172, 27.449790 ], [ -5.009766, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.449790 ], [ -5.009766, 25.005973 ], [ -6.503906, 25.005973 ], [ -5.537109, 16.383391 ], [ -5.361328, 16.214675 ], [ -5.625000, 15.538376 ], [ -9.580078, 15.538376 ], [ -9.755859, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.722656, 15.199386 ], [ -11.425781, 15.453680 ], [ -11.689453, 15.453680 ], [ -11.865234, 14.859850 ], [ -12.216797, 14.689881 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -15.205078, 16.636192 ], [ -15.644531, 16.383391 ], [ -16.171875, 16.467695 ], [ -16.523438, 16.214675 ], [ -16.611328, 16.720385 ], [ -16.347656, 17.224758 ], [ -16.171875, 18.145852 ], [ -16.435547, 19.642588 ], [ -16.347656, 20.138470 ], [ -16.611328, 20.632784 ], [ -17.138672, 21.043491 ], [ -16.875000, 21.371244 ], [ -13.007812, 21.371244 ], [ -13.183594, 22.836946 ], [ -12.919922, 23.322080 ], [ -11.953125, 23.402765 ], [ -12.041016, 25.958045 ], [ -8.701172, 25.958045 ], [ -8.701172, 27.449790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 20.632784 ], [ 2.021484, 20.220966 ], [ 3.076172, 19.725342 ], [ 3.076172, 19.062118 ], [ 4.218750, 19.228177 ], [ 4.218750, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.623037 ], [ 1.318359, 15.368950 ], [ 0.966797, 15.029686 ], [ -0.351562, 14.944785 ], [ -0.527344, 15.199386 ], [ -1.142578, 15.029686 ], [ -2.021484, 14.604847 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.164062, 13.581921 ], [ -3.603516, 13.410994 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.482422, 12.554564 ], [ -5.273438, 11.781325 ], [ -5.273438, 11.436955 ], [ -5.537109, 11.005904 ], [ -5.449219, 10.401378 ], [ -6.064453, 10.141932 ], [ -6.240234, 10.574222 ], [ -6.679688, 10.487812 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.228437 ], [ -7.910156, 10.314919 ], [ -8.085938, 10.228437 ], [ -8.349609, 10.574222 ], [ -8.349609, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.701172, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.436955 ], [ -9.140625, 12.382928 ], [ -9.404297, 12.382928 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -11.074219, 12.297068 ], [ -11.513672, 12.125264 ], [ -11.601562, 13.154376 ], [ -11.953125, 13.496473 ], [ -12.216797, 14.689881 ], [ -11.865234, 14.859850 ], [ -11.689453, 15.453680 ], [ -11.425781, 15.453680 ], [ -10.722656, 15.199386 ], [ -10.107422, 15.368950 ], [ -9.755859, 15.284185 ], [ -9.580078, 15.538376 ], [ -5.625000, 15.538376 ], [ -5.361328, 16.214675 ], [ -5.537109, 16.383391 ], [ -6.503906, 25.005973 ], [ -5.009766, 25.005973 ], [ 1.757812, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.005973 ], [ 1.757812, 20.632784 ], [ 2.021484, 20.220966 ], [ 3.076172, 19.725342 ], [ 3.076172, 19.062118 ], [ 4.218750, 19.228177 ], [ 4.218750, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.623037 ], [ 1.318359, 15.368950 ], [ 0.966797, 15.029686 ], [ -0.351562, 14.944785 ], [ -0.527344, 15.199386 ], [ -1.142578, 15.029686 ], [ -2.021484, 14.604847 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.164062, 13.581921 ], [ -3.603516, 13.410994 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.482422, 12.554564 ], [ -5.273438, 11.781325 ], [ -5.273438, 11.436955 ], [ -5.537109, 11.005904 ], [ -5.449219, 10.401378 ], [ -6.064453, 10.141932 ], [ -6.240234, 10.574222 ], [ -6.679688, 10.487812 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.228437 ], [ -7.910156, 10.314919 ], [ -8.085938, 10.228437 ], [ -8.349609, 10.574222 ], [ -8.349609, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.701172, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.436955 ], [ -9.140625, 12.382928 ], [ -9.404297, 12.382928 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -11.074219, 12.297068 ], [ -11.513672, 12.125264 ], [ -11.601562, 13.154376 ], [ -11.953125, 13.496473 ], [ -12.216797, 14.689881 ], [ -11.865234, 14.859850 ], [ -11.689453, 15.453680 ], [ -11.425781, 15.453680 ], [ -10.722656, 15.199386 ], [ -10.107422, 15.368950 ], [ -9.755859, 15.284185 ], [ -9.580078, 15.538376 ], [ -5.625000, 15.538376 ], [ -5.361328, 16.214675 ], [ -5.537109, 16.383391 ], [ -6.503906, 25.005973 ], [ -5.009766, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.351562, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.008696 ], [ 0.966797, 13.410994 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.609193 ], [ 1.230469, 11.178402 ], [ 0.878906, 11.005904 ], [ -0.439453, 11.178402 ], [ -0.791016, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -3.515625, 9.968851 ], [ -4.042969, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.833984, 9.882275 ], [ -5.009766, 10.228437 ], [ -5.449219, 10.401378 ], [ -5.537109, 11.005904 ], [ -5.273438, 11.436955 ], [ -5.273438, 11.781325 ], [ -4.482422, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.603516, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.604847 ], [ -1.142578, 15.029686 ], [ -0.527344, 15.199386 ], [ -0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.199386 ], [ -0.351562, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.008696 ], [ 0.966797, 13.410994 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.609193 ], [ 1.230469, 11.178402 ], [ 0.878906, 11.005904 ], [ -0.439453, 11.178402 ], [ -0.791016, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -3.515625, 9.968851 ], [ -4.042969, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.833984, 9.882275 ], [ -5.009766, 10.228437 ], [ -5.449219, 10.401378 ], [ -5.537109, 11.005904 ], [ -5.273438, 11.436955 ], [ -5.273438, 11.781325 ], [ -4.482422, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.603516, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.604847 ], [ -1.142578, 15.029686 ], [ -0.527344, 15.199386 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.404297, 7.972198 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.789062, 7.798079 ], [ -8.525391, 7.710992 ], [ -8.437500, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.646484, 5.790897 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.052734, 4.915833 ], [ -11.513672, 6.839170 ], [ -11.162109, 7.449624 ], [ -10.283203, 8.407168 ], [ -9.755859, 8.581021 ], [ -9.404297, 7.972198 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.404297, 7.972198 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.789062, 7.798079 ], [ -8.525391, 7.710992 ], [ -8.437500, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.646484, 5.790897 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.052734, 4.915833 ], [ -11.513672, 6.839170 ], [ -11.162109, 7.449624 ], [ -10.283203, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.141932 ], [ -5.449219, 10.401378 ], [ -5.009766, 10.228437 ], [ -4.833984, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.042969, 9.882275 ], [ -3.515625, 9.968851 ], [ -2.900391, 9.709057 ], [ -2.636719, 8.233237 ], [ -2.988281, 7.449624 ], [ -3.251953, 6.315299 ], [ -2.812500, 5.441022 ], [ -2.900391, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.888672, 5.003394 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.790897 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.437500, 6.926427 ], [ -8.525391, 7.449624 ], [ -8.525391, 7.710992 ], [ -8.349609, 7.710992 ], [ -8.349609, 8.320212 ], [ -7.910156, 8.581021 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.228437 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.240234, 10.574222 ], [ -6.064453, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.574222 ], [ -6.064453, 10.141932 ], [ -5.449219, 10.401378 ], [ -5.009766, 10.228437 ], [ -4.833984, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.042969, 9.882275 ], [ -3.515625, 9.968851 ], [ -2.900391, 9.709057 ], [ -2.636719, 8.233237 ], [ -2.988281, 7.449624 ], [ -3.251953, 6.315299 ], [ -2.812500, 5.441022 ], [ -2.900391, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.888672, 5.003394 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.790897 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.437500, 6.926427 ], [ -8.525391, 7.449624 ], [ -8.525391, 7.710992 ], [ -8.349609, 7.710992 ], [ -8.349609, 8.320212 ], [ -7.910156, 8.581021 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.228437 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.240234, 10.574222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.092166 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.754795 ], [ 0.703125, 8.320212 ], [ 0.439453, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -2.021484, 4.740675 ], [ -2.900391, 5.003394 ], [ -2.812500, 5.441022 ], [ -3.251953, 6.315299 ], [ -2.988281, 7.449624 ], [ -2.636719, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.988281, 11.005904 ], [ -0.791016, 11.005904 ], [ -0.439453, 11.178402 ], [ 0.000000, 11.092166 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.178402 ], [ 0.000000, 11.092166 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.754795 ], [ 0.703125, 8.320212 ], [ 0.439453, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -2.021484, 4.740675 ], [ -2.900391, 5.003394 ], [ -2.812500, 5.441022 ], [ -3.251953, 6.315299 ], [ -2.988281, 7.449624 ], [ -2.636719, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.988281, 11.005904 ], [ -0.791016, 11.005904 ], [ -0.439453, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.179688, -0.966751 ], [ -73.740234, -1.230374 ], [ -73.125000, -2.284551 ], [ -72.333984, -2.372369 ], [ -71.806641, -2.108899 ], [ -71.455078, -2.284551 ], [ -70.839844, -2.196727 ], [ -70.048828, -2.723583 ], [ -70.751953, -3.688855 ], [ -70.400391, -3.688855 ], [ -69.960938, -4.214943 ], [ -70.839844, -4.214943 ], [ -71.015625, -4.390229 ], [ -71.806641, -4.565474 ], [ -72.949219, -5.266008 ], [ -73.037109, -5.703448 ], [ -73.300781, -6.053161 ], [ -73.125000, -6.577303 ], [ -73.740234, -6.839170 ], [ -73.740234, -7.275292 ], [ -74.003906, -7.449624 ], [ -73.652344, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.300781, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.246094, -9.968851 ], [ -71.367188, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.609375, -10.919618 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.994141, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.455078, -17.727759 ], [ -71.542969, -17.308688 ], [ -73.476562, -16.299051 ], [ -76.025391, -14.604847 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.496473 ], [ -77.167969, -12.211180 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -80.947266, -5.615986 ], [ -81.474609, -4.653080 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -80.244141, -3.776559 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.390229 ], [ -79.277344, -4.915833 ], [ -78.662109, -4.477856 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.547988 ], [ -75.585938, -1.493971 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.087891 ], [ -75.146484, 0.000000 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, 0.000000 ], [ -74.443359, -0.527336 ], [ -74.179688, -0.966751 ], [ -73.740234, -1.230374 ], [ -73.125000, -2.284551 ], [ -72.333984, -2.372369 ], [ -71.806641, -2.108899 ], [ -71.455078, -2.284551 ], [ -70.839844, -2.196727 ], [ -70.048828, -2.723583 ], [ -70.751953, -3.688855 ], [ -70.400391, -3.688855 ], [ -69.960938, -4.214943 ], [ -70.839844, -4.214943 ], [ -71.015625, -4.390229 ], [ -71.806641, -4.565474 ], [ -72.949219, -5.266008 ], [ -73.037109, -5.703448 ], [ -73.300781, -6.053161 ], [ -73.125000, -6.577303 ], [ -73.740234, -6.839170 ], [ -73.740234, -7.275292 ], [ -74.003906, -7.449624 ], [ -73.652344, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.300781, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.246094, -9.968851 ], [ -71.367188, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.609375, -10.919618 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.994141, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.455078, -17.727759 ], [ -71.542969, -17.308688 ], [ -73.476562, -16.299051 ], [ -76.025391, -14.604847 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.496473 ], [ -77.167969, -12.211180 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -80.947266, -5.615986 ], [ -81.474609, -4.653080 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -80.244141, -3.776559 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.390229 ], [ -79.277344, -4.915833 ], [ -78.662109, -4.477856 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.547988 ], [ -75.585938, -1.493971 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.087891 ], [ -75.146484, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.589701 ], [ -68.642578, -54.826008 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.203125, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.028022 ], [ -73.300781, -53.956086 ], [ -74.707031, -52.802761 ], [ -73.916016, -53.014783 ], [ -72.509766, -53.696706 ], [ -71.191406, -54.059388 ], [ -70.664062, -53.592505 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -69.169922, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.818359, -20.303418 ], [ -68.291016, -21.453069 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.674847 ], [ -67.060547, -22.917923 ], [ -67.412109, -23.966176 ], [ -68.466797, -24.447150 ], [ -68.466797, -26.115986 ], [ -68.642578, -26.431228 ], [ -68.378906, -26.824071 ], [ -69.082031, -27.449790 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.305561 ], [ -69.960938, -30.297018 ], [ -70.576172, -31.353637 ], [ -70.136719, -33.063924 ], [ -69.873047, -33.211116 ], [ -69.873047, -34.161818 ], [ -70.400391, -35.101934 ], [ -70.400391, -35.960223 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.509726 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.982422, -40.780541 ], [ -71.806641, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.982422, -43.389082 ], [ -71.542969, -43.771094 ], [ -71.806641, -44.150681 ], [ -71.367188, -44.402392 ], [ -71.279297, -44.777936 ], [ -71.718750, -44.964798 ], [ -71.630859, -45.521744 ], [ -71.982422, -46.860191 ], [ -72.509766, -47.694974 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.476562, -49.267805 ], [ -73.388672, -50.345460 ], [ -73.037109, -50.736455 ], [ -72.333984, -50.625073 ], [ -72.333984, -51.399206 ], [ -71.982422, -51.998410 ], [ -69.521484, -52.106505 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.488046 ], [ -73.740234, -52.802761 ], [ -74.970703, -52.214339 ], [ -75.322266, -51.618017 ], [ -75.058594, -51.013755 ], [ -75.498047, -50.345460 ], [ -75.673828, -48.632909 ], [ -75.234375, -47.694974 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.740234, -39.909736 ], [ -73.300781, -39.232253 ], [ -73.564453, -38.272689 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.894531, -33.870416 ], [ -71.455078, -32.398516 ], [ -71.718750, -30.902225 ], [ -71.455078, -30.069094 ], [ -71.542969, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ], [ -69.169922, -18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ], [ -68.642578, -54.826008 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.203125, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.028022 ], [ -73.300781, -53.956086 ], [ -74.707031, -52.802761 ], [ -73.916016, -53.014783 ], [ -72.509766, -53.696706 ], [ -71.191406, -54.059388 ], [ -70.664062, -53.592505 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.169922, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.818359, -20.303418 ], [ -68.291016, -21.453069 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.674847 ], [ -67.060547, -22.917923 ], [ -67.412109, -23.966176 ], [ -68.466797, -24.447150 ], [ -68.466797, -26.115986 ], [ -68.642578, -26.431228 ], [ -68.378906, -26.824071 ], [ -69.082031, -27.449790 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.305561 ], [ -69.960938, -30.297018 ], [ -70.576172, -31.353637 ], [ -70.136719, -33.063924 ], [ -69.873047, -33.211116 ], [ -69.873047, -34.161818 ], [ -70.400391, -35.101934 ], [ -70.400391, -35.960223 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.509726 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.982422, -40.780541 ], [ -71.806641, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.982422, -43.389082 ], [ -71.542969, -43.771094 ], [ -71.806641, -44.150681 ], [ -71.367188, -44.402392 ], [ -71.279297, -44.777936 ], [ -71.718750, -44.964798 ], [ -71.630859, -45.521744 ], [ -71.982422, -46.860191 ], [ -72.509766, -47.694974 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.476562, -49.267805 ], [ -73.388672, -50.345460 ], [ -73.037109, -50.736455 ], [ -72.333984, -50.625073 ], [ -72.333984, -51.399206 ], [ -71.982422, -51.998410 ], [ -69.521484, -52.106505 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.488046 ], [ -73.740234, -52.802761 ], [ -74.970703, -52.214339 ], [ -75.322266, -51.618017 ], [ -75.058594, -51.013755 ], [ -75.498047, -50.345460 ], [ -75.673828, -48.632909 ], [ -75.234375, -47.694974 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.740234, -39.909736 ], [ -73.300781, -39.232253 ], [ -73.564453, -38.272689 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.894531, -33.870416 ], [ -71.455078, -32.398516 ], [ -71.718750, -30.902225 ], [ -71.455078, -30.069094 ], [ -71.542969, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478516, -11.523088 ], [ -64.335938, -12.382928 ], [ -63.281250, -12.554564 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.154376 ], [ -61.787109, -13.410994 ], [ -61.171875, -13.410994 ], [ -60.556641, -13.752725 ], [ -60.292969, -15.029686 ], [ -60.556641, -15.029686 ], [ -60.205078, -16.214675 ], [ -58.271484, -16.299051 ], [ -58.447266, -16.804541 ], [ -58.359375, -17.224758 ], [ -57.744141, -17.476432 ], [ -57.568359, -18.145852 ], [ -57.744141, -18.895893 ], [ -58.007812, -19.394068 ], [ -57.919922, -19.890723 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -59.150391, -19.311143 ], [ -60.117188, -19.311143 ], [ -61.787109, -19.559790 ], [ -62.314453, -20.468189 ], [ -62.314453, -21.043491 ], [ -62.753906, -22.187405 ], [ -62.929688, -22.024546 ], [ -64.072266, -21.943046 ], [ -64.423828, -22.755921 ], [ -65.039062, -22.024546 ], [ -66.357422, -21.779905 ], [ -67.148438, -22.674847 ], [ -67.851562, -22.836946 ], [ -68.291016, -21.453069 ], [ -68.818359, -20.303418 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.169922, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.994141, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.730469, -12.554564 ], [ -69.609375, -10.919618 ], [ -68.291016, -11.005904 ], [ -68.115234, -10.660608 ], [ -66.708984, -9.882275 ], [ -65.390625, -9.709057 ], [ -65.478516, -11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.709057 ], [ -65.478516, -11.523088 ], [ -64.335938, -12.382928 ], [ -63.281250, -12.554564 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.154376 ], [ -61.787109, -13.410994 ], [ -61.171875, -13.410994 ], [ -60.556641, -13.752725 ], [ -60.292969, -15.029686 ], [ -60.556641, -15.029686 ], [ -60.205078, -16.214675 ], [ -58.271484, -16.299051 ], [ -58.447266, -16.804541 ], [ -58.359375, -17.224758 ], [ -57.744141, -17.476432 ], [ -57.568359, -18.145852 ], [ -57.744141, -18.895893 ], [ -58.007812, -19.394068 ], [ -57.919922, -19.890723 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -59.150391, -19.311143 ], [ -60.117188, -19.311143 ], [ -61.787109, -19.559790 ], [ -62.314453, -20.468189 ], [ -62.314453, -21.043491 ], [ -62.753906, -22.187405 ], [ -62.929688, -22.024546 ], [ -64.072266, -21.943046 ], [ -64.423828, -22.755921 ], [ -65.039062, -22.024546 ], [ -66.357422, -21.779905 ], [ -67.148438, -22.674847 ], [ -67.851562, -22.836946 ], [ -68.291016, -21.453069 ], [ -68.818359, -20.303418 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.169922, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.994141, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.730469, -12.554564 ], [ -69.609375, -10.919618 ], [ -68.291016, -11.005904 ], [ -68.115234, -10.660608 ], [ -66.708984, -9.882275 ], [ -65.390625, -9.709057 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.029297, 5.090944 ], [ -60.117188, 4.653080 ], [ -59.853516, 4.477856 ], [ -59.589844, 4.039618 ], [ -59.853516, 3.688855 ], [ -60.029297, 2.811371 ], [ -59.677734, 1.845384 ], [ -59.062500, 1.318243 ], [ -58.623047, 1.318243 ], [ -58.447266, 1.493971 ], [ -57.744141, 1.757537 ], [ -57.392578, 2.021065 ], [ -56.074219, 1.845384 ], [ -55.986328, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.140625, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.613281, 2.372369 ], [ -53.437500, 2.108899 ], [ -52.998047, 2.196727 ], [ -52.558594, 2.547988 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.009766, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.472656, -2.108899 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.811371 ], [ -38.583984, -3.688855 ], [ -37.265625, -4.740675 ], [ -36.474609, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.244141, -5.441022 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.125264 ], [ -38.496094, -12.983148 ], [ -38.759766, -12.983148 ], [ -39.023438, -13.752725 ], [ -38.935547, -15.623037 ], [ -39.287109, -17.811456 ], [ -39.638672, -18.229351 ], [ -39.814453, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.861499 ], [ -41.835938, -22.350076 ], [ -42.011719, -22.917923 ], [ -43.154297, -22.917923 ], [ -44.648438, -23.322080 ], [ -45.439453, -23.725012 ], [ -46.494141, -24.046464 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.691406, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.955078, -28.613459 ], [ -49.658203, -29.152161 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.175612 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.701172, -33.137551 ], [ -53.261719, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.826781 ], [ -57.041016, -30.069094 ], [ -57.656250, -30.145127 ], [ -55.195312, -27.839076 ], [ -53.701172, -26.902477 ], [ -53.701172, -26.115986 ], [ -54.140625, -25.482951 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.527135 ], [ -54.316406, -23.966176 ], [ -54.667969, -23.805450 ], [ -55.107422, -23.966176 ], [ -55.458984, -23.885838 ], [ -55.634766, -22.593726 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.024546 ], [ -56.953125, -22.268764 ], [ -58.007812, -22.024546 ], [ -57.919922, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.919922, -19.890723 ], [ -58.007812, -19.394068 ], [ -57.744141, -18.895893 ], [ -57.568359, -18.145852 ], [ -57.744141, -17.476432 ], [ -58.359375, -17.224758 ], [ -58.447266, -16.804541 ], [ -58.271484, -16.299051 ], [ -60.205078, -16.214675 ], [ -60.556641, -15.029686 ], [ -60.292969, -15.029686 ], [ -60.556641, -13.752725 ], [ -61.171875, -13.410994 ], [ -61.787109, -13.410994 ], [ -62.138672, -13.154376 ], [ -62.841797, -12.983148 ], [ -63.281250, -12.554564 ], [ -64.335938, -12.382928 ], [ -65.478516, -11.523088 ], [ -65.390625, -9.709057 ], [ -66.708984, -9.882275 ], [ -68.115234, -10.660608 ], [ -68.291016, -11.005904 ], [ -69.609375, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.367188, -10.055403 ], [ -72.246094, -9.968851 ], [ -72.597656, -9.449062 ], [ -73.300781, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.652344, -8.407168 ], [ -74.003906, -7.449624 ], [ -73.740234, -7.275292 ], [ -73.740234, -6.839170 ], [ -73.125000, -6.577303 ], [ -73.300781, -6.053161 ], [ -73.037109, -5.703448 ], [ -72.949219, -5.266008 ], [ -71.806641, -4.565474 ], [ -71.015625, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.433594, -1.054628 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.615223 ], [ -69.521484, 0.790990 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.054628 ], [ -69.873047, 1.142502 ], [ -69.873047, 1.757537 ], [ -67.939453, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.324219, 1.757537 ], [ -67.148438, 1.142502 ], [ -66.884766, 1.318243 ], [ -66.357422, 0.790990 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.142502 ], [ -64.248047, 1.493971 ], [ -64.160156, 1.933227 ], [ -63.369141, 2.284551 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.547988 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.864255 ], [ -64.863281, 4.127285 ], [ -64.687500, 4.214943 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -60.996094, 4.565474 ], [ -60.644531, 5.003394 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ], [ -60.029297, 5.090944 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.292969, 5.266008 ], [ -60.029297, 5.090944 ], [ -60.117188, 4.653080 ], [ -59.853516, 4.477856 ], [ -59.589844, 4.039618 ], [ -59.853516, 3.688855 ], [ -60.029297, 2.811371 ], [ -59.677734, 1.845384 ], [ -59.062500, 1.318243 ], [ -58.623047, 1.318243 ], [ -58.447266, 1.493971 ], [ -57.744141, 1.757537 ], [ -57.392578, 2.021065 ], [ -56.074219, 1.845384 ], [ -55.986328, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.140625, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.613281, 2.372369 ], [ -53.437500, 2.108899 ], [ -52.998047, 2.196727 ], [ -52.558594, 2.547988 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.009766, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.472656, -2.108899 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.811371 ], [ -38.583984, -3.688855 ], [ -37.265625, -4.740675 ], [ -36.474609, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.244141, -5.441022 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.125264 ], [ -38.496094, -12.983148 ], [ -38.759766, -12.983148 ], [ -39.023438, -13.752725 ], [ -38.935547, -15.623037 ], [ -39.287109, -17.811456 ], [ -39.638672, -18.229351 ], [ -39.814453, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.861499 ], [ -41.835938, -22.350076 ], [ -42.011719, -22.917923 ], [ -43.154297, -22.917923 ], [ -44.648438, -23.322080 ], [ -45.439453, -23.725012 ], [ -46.494141, -24.046464 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.691406, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.955078, -28.613459 ], [ -49.658203, -29.152161 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.175612 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.701172, -33.137551 ], [ -53.261719, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.826781 ], [ -57.041016, -30.069094 ], [ -57.656250, -30.145127 ], [ -55.195312, -27.839076 ], [ -53.701172, -26.902477 ], [ -53.701172, -26.115986 ], [ -54.140625, -25.482951 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.527135 ], [ -54.316406, -23.966176 ], [ -54.667969, -23.805450 ], [ -55.107422, -23.966176 ], [ -55.458984, -23.885838 ], [ -55.634766, -22.593726 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.024546 ], [ -56.953125, -22.268764 ], [ -58.007812, -22.024546 ], [ -57.919922, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.919922, -19.890723 ], [ -58.007812, -19.394068 ], [ -57.744141, -18.895893 ], [ -57.568359, -18.145852 ], [ -57.744141, -17.476432 ], [ -58.359375, -17.224758 ], [ -58.447266, -16.804541 ], [ -58.271484, -16.299051 ], [ -60.205078, -16.214675 ], [ -60.556641, -15.029686 ], [ -60.292969, -15.029686 ], [ -60.556641, -13.752725 ], [ -61.171875, -13.410994 ], [ -61.787109, -13.410994 ], [ -62.138672, -13.154376 ], [ -62.841797, -12.983148 ], [ -63.281250, -12.554564 ], [ -64.335938, -12.382928 ], [ -65.478516, -11.523088 ], [ -65.390625, -9.709057 ], [ -66.708984, -9.882275 ], [ -68.115234, -10.660608 ], [ -68.291016, -11.005904 ], [ -69.609375, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.367188, -10.055403 ], [ -72.246094, -9.968851 ], [ -72.597656, -9.449062 ], [ -73.300781, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.652344, -8.407168 ], [ -74.003906, -7.449624 ], [ -73.740234, -7.275292 ], [ -73.740234, -6.839170 ], [ -73.125000, -6.577303 ], [ -73.300781, -6.053161 ], [ -73.037109, -5.703448 ], [ -72.949219, -5.266008 ], [ -71.806641, -4.565474 ], [ -71.015625, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.433594, -1.054628 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.615223 ], [ -69.521484, 0.790990 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.054628 ], [ -69.873047, 1.142502 ], [ -69.873047, 1.757537 ], [ -67.939453, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.324219, 1.757537 ], [ -67.148438, 1.142502 ], [ -66.884766, 1.318243 ], [ -66.357422, 0.790990 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.142502 ], [ -64.248047, 1.493971 ], [ -64.160156, 1.933227 ], [ -63.369141, 2.284551 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.547988 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.864255 ], [ -64.863281, 4.127285 ], [ -64.687500, 4.214943 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -60.996094, 4.565474 ], [ -60.644531, 5.003394 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.183594, -19.808054 ], [ -58.183594, -20.138470 ], [ -57.919922, -20.715015 ], [ -58.007812, -22.024546 ], [ -56.953125, -22.268764 ], [ -56.513672, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.593726 ], [ -55.458984, -23.885838 ], [ -55.107422, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -23.966176 ], [ -54.316406, -24.527135 ], [ -54.843750, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.656250, -25.562265 ], [ -57.832031, -25.085599 ], [ -58.886719, -24.766785 ], [ -60.029297, -23.966176 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -62.314453, -21.043491 ], [ -62.314453, -20.468189 ], [ -61.787109, -19.559790 ], [ -60.117188, -19.311143 ], [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.138470 ], [ -57.919922, -20.715015 ], [ -58.007812, -22.024546 ], [ -56.953125, -22.268764 ], [ -56.513672, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.593726 ], [ -55.458984, -23.885838 ], [ -55.107422, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -23.966176 ], [ -54.316406, -24.527135 ], [ -54.843750, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.656250, -25.562265 ], [ -57.832031, -25.085599 ], [ -58.886719, -24.766785 ], [ -60.029297, -23.966176 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -62.314453, -21.043491 ], [ -62.314453, -20.468189 ], [ -61.787109, -19.559790 ], [ -60.117188, -19.311143 ], [ -59.150391, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.763672, -53.800651 ], [ -66.533203, -54.418930 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -66.533203, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.826008 ], [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ] ] ], [ [ [ -65.039062, -22.024546 ], [ -64.423828, -22.755921 ], [ -64.072266, -21.943046 ], [ -62.929688, -22.024546 ], [ -60.908203, -23.805450 ], [ -60.029297, -23.966176 ], [ -58.886719, -24.766785 ], [ -57.832031, -25.085599 ], [ -57.656250, -25.562265 ], [ -58.623047, -27.059126 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.843750, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.482951 ], [ -53.701172, -26.115986 ], [ -53.701172, -26.902477 ], [ -55.195312, -27.839076 ], [ -57.656250, -30.145127 ], [ -58.183594, -32.026706 ], [ -58.183594, -32.990236 ], [ -58.359375, -33.211116 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.865234, -36.879621 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -61.259766, -38.891033 ], [ -62.402344, -38.822591 ], [ -62.138672, -39.368279 ], [ -62.402344, -40.111689 ], [ -62.226562, -40.647304 ], [ -62.753906, -40.979898 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -64.423828, -42.811522 ], [ -65.214844, -43.452919 ], [ -65.390625, -44.465151 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -66.621094, -46.980252 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -68.730469, -50.233152 ], [ -69.169922, -50.680797 ], [ -68.818359, -51.727028 ], [ -68.203125, -52.321911 ], [ -69.521484, -52.106505 ], [ -71.982422, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.625073 ], [ -73.037109, -50.736455 ], [ -73.388672, -50.345460 ], [ -73.476562, -49.267805 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.509766, -47.694974 ], [ -71.982422, -46.860191 ], [ -71.630859, -45.521744 ], [ -71.718750, -44.964798 ], [ -71.279297, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.150681 ], [ -71.542969, -43.771094 ], [ -71.982422, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.806641, -42.032974 ], [ -71.982422, -40.780541 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.191406, -37.509726 ], [ -71.191406, -36.597889 ], [ -70.400391, -35.960223 ], [ -70.400391, -35.101934 ], [ -69.873047, -34.161818 ], [ -69.873047, -33.211116 ], [ -70.136719, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.297018 ], [ -70.048828, -29.305561 ], [ -69.697266, -28.459033 ], [ -69.082031, -27.449790 ], [ -68.378906, -26.824071 ], [ -68.642578, -26.431228 ], [ -68.466797, -26.115986 ], [ -68.466797, -24.447150 ], [ -67.412109, -23.966176 ], [ -67.060547, -22.917923 ], [ -67.148438, -22.674847 ], [ -66.357422, -21.779905 ], [ -65.039062, -22.024546 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ], [ -66.533203, -54.418930 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -66.533203, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.826008 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -66.357422, -21.779905 ], [ -65.039062, -22.024546 ], [ -64.423828, -22.755921 ], [ -64.072266, -21.943046 ], [ -62.929688, -22.024546 ], [ -60.908203, -23.805450 ], [ -60.029297, -23.966176 ], [ -58.886719, -24.766785 ], [ -57.832031, -25.085599 ], [ -57.656250, -25.562265 ], [ -58.623047, -27.059126 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.843750, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.482951 ], [ -53.701172, -26.115986 ], [ -53.701172, -26.902477 ], [ -55.195312, -27.839076 ], [ -57.656250, -30.145127 ], [ -58.183594, -32.026706 ], [ -58.183594, -32.990236 ], [ -58.359375, -33.211116 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.865234, -36.879621 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -61.259766, -38.891033 ], [ -62.402344, -38.822591 ], [ -62.138672, -39.368279 ], [ -62.402344, -40.111689 ], [ -62.226562, -40.647304 ], [ -62.753906, -40.979898 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -64.423828, -42.811522 ], [ -65.214844, -43.452919 ], [ -65.390625, -44.465151 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -66.621094, -46.980252 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -68.730469, -50.233152 ], [ -69.169922, -50.680797 ], [ -68.818359, -51.727028 ], [ -68.203125, -52.321911 ], [ -69.521484, -52.106505 ], [ -71.982422, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.625073 ], [ -73.037109, -50.736455 ], [ -73.388672, -50.345460 ], [ -73.476562, -49.267805 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.509766, -47.694974 ], [ -71.982422, -46.860191 ], [ -71.630859, -45.521744 ], [ -71.718750, -44.964798 ], [ -71.279297, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.150681 ], [ -71.542969, -43.771094 ], [ -71.982422, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.806641, -42.032974 ], [ -71.982422, -40.780541 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.191406, -37.509726 ], [ -71.191406, -36.597889 ], [ -70.400391, -35.960223 ], [ -70.400391, -35.101934 ], [ -69.873047, -34.161818 ], [ -69.873047, -33.211116 ], [ -70.136719, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.297018 ], [ -70.048828, -29.305561 ], [ -69.697266, -28.459033 ], [ -69.082031, -27.449790 ], [ -68.378906, -26.824071 ], [ -68.642578, -26.431228 ], [ -68.466797, -26.115986 ], [ -68.466797, -24.447150 ], [ -67.412109, -23.966176 ], [ -67.060547, -22.917923 ], [ -67.148438, -22.674847 ], [ -66.357422, -21.779905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.826781 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.261719, -32.694866 ], [ -53.701172, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -55.722656, -34.741612 ], [ -56.250000, -34.813803 ], [ -57.216797, -34.379713 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.870416 ], [ -58.359375, -33.211116 ], [ -58.183594, -32.990236 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.145127 ], [ -57.041016, -30.069094 ], [ -55.986328, -30.826781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.041016, -30.069094 ], [ -55.986328, -30.826781 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.261719, -32.694866 ], [ -53.701172, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -55.722656, -34.741612 ], [ -56.250000, -34.813803 ], [ -57.216797, -34.379713 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.870416 ], [ -58.359375, -33.211116 ], [ -58.183594, -32.990236 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.145127 ], [ -57.041016, -30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -51.508742 ], [ -58.095703, -51.890054 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ], [ -58.095703, -51.890054 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.231457 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.524614 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ] ] ], [ [ [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ] ] ], [ [ [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ] ] ], [ [ [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.532994 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 152.753906, 58.904646 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ] ] ], [ [ [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ] ] ], [ [ [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ] ] ], [ [ [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ] ] ], [ [ [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ] ] ], [ [ [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ] ] ], [ [ [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ] ] ], [ [ [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 152.753906, 58.904646 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ] ] ], [ [ [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ] ] ], [ [ [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ] ] ], [ [ [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ], [ 29.355469, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.685547, 70.170201 ], [ 26.103516, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.911005 ], [ 22.324219, 68.847665 ], [ 21.181641, 69.380313 ], [ 20.566406, 69.131271 ], [ 19.951172, 69.068563 ], [ 19.863281, 68.431513 ], [ 17.929688, 68.592487 ], [ 17.666016, 68.040461 ], [ 16.699219, 68.040461 ], [ 15.029297, 66.196009 ], [ 13.535156, 64.811557 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.091408 ], [ 11.865234, 63.154355 ], [ 11.953125, 61.814664 ], [ 12.568359, 61.312452 ], [ 12.216797, 60.152442 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 5.273438, 59.667741 ], [ 4.921875, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.458984, 64.510643 ], [ 12.304688, 65.910623 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ] ] ], [ [ [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ] ] ], [ [ [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ], [ 29.355469, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.685547, 70.170201 ], [ 26.103516, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.911005 ], [ 22.324219, 68.847665 ], [ 21.181641, 69.380313 ], [ 20.566406, 69.131271 ], [ 19.951172, 69.068563 ], [ 19.863281, 68.431513 ], [ 17.929688, 68.592487 ], [ 17.666016, 68.040461 ], [ 16.699219, 68.040461 ], [ 15.029297, 66.196009 ], [ 13.535156, 64.811557 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.091408 ], [ 11.865234, 63.154355 ], [ 11.953125, 61.814664 ], [ 12.568359, 61.312452 ], [ 12.216797, 60.152442 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 5.273438, 59.667741 ], [ 4.921875, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.458984, 64.510643 ], [ 12.304688, 65.910623 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.986328, 55.379110 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ] ] ], [ [ [ 10.458984, 57.231503 ], [ 10.195312, 56.897004 ], [ 10.283203, 56.656226 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.121060 ], [ 10.283203, 56.218923 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 9.228516, 54.876607 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ], [ 10.458984, 57.231503 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.986328, 55.379110 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.458984, 57.231503 ], [ 10.195312, 56.897004 ], [ 10.283203, 56.656226 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.121060 ], [ 10.283203, 56.218923 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 9.228516, 54.876607 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.466797, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 17.753906, 60.673179 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.088515 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.568359, 56.316537 ], [ 11.777344, 57.468589 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.216797, 60.152442 ], [ 12.568359, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.865234, 63.154355 ], [ 12.568359, 64.091408 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.811557 ], [ 15.029297, 66.196009 ], [ 16.699219, 68.040461 ], [ 17.666016, 68.040461 ], [ 17.929688, 68.592487 ], [ 19.863281, 68.431513 ], [ 19.951172, 69.068563 ], [ 20.566406, 69.131271 ], [ 23.466797, 67.941650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 69.131271 ], [ 23.466797, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 17.753906, 60.673179 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.088515 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.568359, 56.316537 ], [ 11.777344, 57.468589 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.216797, 60.152442 ], [ 12.568359, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.865234, 63.154355 ], [ 12.568359, 64.091408 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.811557 ], [ 15.029297, 66.196009 ], [ 16.699219, 68.040461 ], [ 17.666016, 68.040461 ], [ 17.929688, 68.592487 ], [ 19.863281, 68.431513 ], [ 19.951172, 69.068563 ], [ 20.566406, 69.131271 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.855469, 53.488046 ], [ 7.031250, 53.173119 ], [ 6.767578, 52.268157 ], [ 6.503906, 51.890054 ], [ 5.976562, 51.890054 ], [ 6.152344, 50.847573 ], [ 5.537109, 51.069017 ], [ 4.921875, 51.508742 ], [ 4.042969, 51.289406 ], [ 3.251953, 51.399206 ], [ 3.779297, 51.672555 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.173119 ], [ 6.767578, 52.268157 ], [ 6.503906, 51.890054 ], [ 5.976562, 51.890054 ], [ 6.152344, 50.847573 ], [ 5.537109, 51.069017 ], [ 4.921875, 51.508742 ], [ 4.042969, 51.289406 ], [ 3.251953, 51.399206 ], [ 3.779297, 51.672555 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.537109, 51.069017 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.176898 ], [ 5.712891, 50.120578 ], [ 5.625000, 49.553726 ], [ 4.746094, 50.007739 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.042969, 51.289406 ], [ 4.921875, 51.508742 ], [ 5.537109, 51.069017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 5.537109, 51.069017 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.176898 ], [ 5.712891, 50.120578 ], [ 5.625000, 49.553726 ], [ 4.746094, 50.007739 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.042969, 51.289406 ], [ 4.921875, 51.508742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.951220 ], [ 6.152344, 49.496675 ], [ 5.888672, 49.496675 ], [ 5.625000, 49.553726 ], [ 5.712891, 50.120578 ], [ 5.976562, 50.176898 ], [ 6.240234, 49.951220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.176898 ], [ 6.240234, 49.951220 ], [ 6.152344, 49.496675 ], [ 5.888672, 49.496675 ], [ 5.625000, 49.553726 ], [ 5.712891, 50.120578 ], [ 5.976562, 50.176898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.622978 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.062500, 53.800651 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.014783 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.781436 ], [ 14.941406, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.238281, 51.124213 ], [ 13.974609, 50.958427 ], [ 13.271484, 50.736455 ], [ 12.919922, 50.513427 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.535156, 48.922499 ], [ 13.183594, 48.458352 ], [ 12.832031, 48.341646 ], [ 13.007812, 47.694974 ], [ 12.919922, 47.517201 ], [ 12.568359, 47.694974 ], [ 12.128906, 47.754098 ], [ 11.425781, 47.576526 ], [ 10.458984, 47.576526 ], [ 10.371094, 47.338823 ], [ 9.843750, 47.635784 ], [ 9.580078, 47.576526 ], [ 8.437500, 47.872144 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.591797, 49.210420 ], [ 6.152344, 49.496675 ], [ 6.240234, 49.951220 ], [ 5.976562, 50.176898 ], [ 6.152344, 50.847573 ], [ 5.976562, 51.890054 ], [ 6.503906, 51.890054 ], [ 6.767578, 52.268157 ], [ 7.031250, 53.173119 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.228516, 54.876607 ], [ 9.843750, 55.028022 ], [ 9.931641, 54.622978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 55.028022 ], [ 9.931641, 54.622978 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.062500, 53.800651 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.014783 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.781436 ], [ 14.941406, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.238281, 51.124213 ], [ 13.974609, 50.958427 ], [ 13.271484, 50.736455 ], [ 12.919922, 50.513427 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.535156, 48.922499 ], [ 13.183594, 48.458352 ], [ 12.832031, 48.341646 ], [ 13.007812, 47.694974 ], [ 12.919922, 47.517201 ], [ 12.568359, 47.694974 ], [ 12.128906, 47.754098 ], [ 11.425781, 47.576526 ], [ 10.458984, 47.576526 ], [ 10.371094, 47.338823 ], [ 9.843750, 47.635784 ], [ 9.580078, 47.576526 ], [ 8.437500, 47.872144 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.591797, 49.210420 ], [ 6.152344, 49.496675 ], [ 6.240234, 49.951220 ], [ 5.976562, 50.176898 ], [ 6.152344, 50.847573 ], [ 5.976562, 51.890054 ], [ 6.503906, 51.890054 ], [ 6.767578, 52.268157 ], [ 7.031250, 53.173119 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.228516, 54.876607 ], [ 9.843750, 55.028022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.576526 ], [ 9.404297, 47.159840 ], [ 9.931641, 46.980252 ], [ 10.371094, 46.920255 ], [ 10.283203, 46.498392 ], [ 9.843750, 46.316584 ], [ 9.140625, 46.498392 ], [ 8.964844, 46.073231 ], [ 8.437500, 46.012224 ], [ 8.261719, 46.195042 ], [ 7.734375, 45.828799 ], [ 7.207031, 45.828799 ], [ 6.767578, 46.012224 ], [ 6.416016, 46.437857 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.739861 ], [ 6.767578, 47.338823 ], [ 6.679688, 47.576526 ], [ 7.119141, 47.457809 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.437500, 47.872144 ], [ 9.580078, 47.576526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 47.872144 ], [ 9.580078, 47.576526 ], [ 9.404297, 47.159840 ], [ 9.931641, 46.980252 ], [ 10.371094, 46.920255 ], [ 10.283203, 46.498392 ], [ 9.843750, 46.316584 ], [ 9.140625, 46.498392 ], [ 8.964844, 46.073231 ], [ 8.437500, 46.012224 ], [ 8.261719, 46.195042 ], [ 7.734375, 45.828799 ], [ 7.207031, 45.828799 ], [ 6.767578, 46.012224 ], [ 6.416016, 46.437857 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.739861 ], [ 6.767578, 47.338823 ], [ 6.679688, 47.576526 ], [ 7.119141, 47.457809 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.437500, 47.872144 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.792047 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.457504 ], [ 16.699219, 50.233152 ], [ 16.787109, 50.513427 ], [ 17.490234, 50.401515 ], [ 17.578125, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.808594, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.105469, 49.325122 ], [ 18.017578, 49.095452 ], [ 17.841797, 48.922499 ], [ 17.490234, 48.806863 ], [ 17.050781, 48.864715 ], [ 16.875000, 48.632909 ], [ 16.435547, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.205078, 49.095452 ], [ 14.853516, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.535156, 48.922499 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 12.919922, 50.513427 ], [ 13.271484, 50.736455 ], [ 13.974609, 50.958427 ], [ 14.238281, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.941406, 51.124213 ], [ 15.468750, 50.792047 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.941406, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.457504 ], [ 16.699219, 50.233152 ], [ 16.787109, 50.513427 ], [ 17.490234, 50.401515 ], [ 17.578125, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.808594, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.105469, 49.325122 ], [ 18.017578, 49.095452 ], [ 17.841797, 48.922499 ], [ 17.490234, 48.806863 ], [ 17.050781, 48.864715 ], [ 16.875000, 48.632909 ], [ 16.435547, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.205078, 49.095452 ], [ 14.853516, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.535156, 48.922499 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 12.919922, 50.513427 ], [ 13.271484, 50.736455 ], [ 13.974609, 50.958427 ], [ 14.238281, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.941406, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.544922, 54.724620 ], [ 18.632812, 54.470038 ], [ 20.830078, 54.316523 ], [ 22.675781, 54.367759 ], [ 23.203125, 54.265224 ], [ 23.730469, 53.120405 ], [ 23.730469, 52.696361 ], [ 23.115234, 52.536273 ], [ 23.466797, 52.052490 ], [ 23.466797, 51.618017 ], [ 23.994141, 50.736455 ], [ 23.906250, 50.457504 ], [ 23.378906, 50.345460 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.533203, 49.496675 ], [ 20.830078, 49.382373 ], [ 20.390625, 49.439557 ], [ 19.775391, 49.267805 ], [ 19.248047, 49.610710 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.578125, 50.064192 ], [ 17.490234, 50.401515 ], [ 16.787109, 50.513427 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.457504 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.792047 ], [ 14.941406, 51.124213 ], [ 14.589844, 51.781436 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 53.014783 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ], [ 18.544922, 54.724620 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 54.876607 ], [ 18.544922, 54.724620 ], [ 18.632812, 54.470038 ], [ 20.830078, 54.316523 ], [ 22.675781, 54.367759 ], [ 23.203125, 54.265224 ], [ 23.730469, 53.120405 ], [ 23.730469, 52.696361 ], [ 23.115234, 52.536273 ], [ 23.466797, 52.052490 ], [ 23.466797, 51.618017 ], [ 23.994141, 50.736455 ], [ 23.906250, 50.457504 ], [ 23.378906, 50.345460 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.533203, 49.496675 ], [ 20.830078, 49.382373 ], [ 20.390625, 49.439557 ], [ 19.775391, 49.267805 ], [ 19.248047, 49.610710 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.578125, 50.064192 ], [ 17.490234, 50.401515 ], [ 16.787109, 50.513427 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.457504 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.792047 ], [ 14.941406, 51.124213 ], [ 14.589844, 51.781436 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 53.014783 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 48.748945 ], [ 16.435547, 48.806863 ], [ 16.875000, 48.632909 ], [ 16.875000, 48.516604 ], [ 16.962891, 48.166085 ], [ 16.875000, 47.754098 ], [ 16.259766, 47.754098 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.739861 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.304688, 46.800059 ], [ 12.128906, 47.159840 ], [ 11.162109, 46.980252 ], [ 10.986328, 46.800059 ], [ 9.931641, 46.980252 ], [ 9.404297, 47.159840 ], [ 9.580078, 47.576526 ], [ 9.843750, 47.635784 ], [ 10.371094, 47.338823 ], [ 10.458984, 47.576526 ], [ 11.425781, 47.576526 ], [ 12.128906, 47.754098 ], [ 12.568359, 47.694974 ], [ 12.919922, 47.517201 ], [ 13.007812, 47.694974 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.458352 ], [ 13.535156, 48.922499 ], [ 14.326172, 48.574790 ], [ 14.853516, 48.980217 ], [ 15.205078, 49.095452 ], [ 15.996094, 48.748945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.205078, 49.095452 ], [ 15.996094, 48.748945 ], [ 16.435547, 48.806863 ], [ 16.875000, 48.632909 ], [ 16.875000, 48.516604 ], [ 16.962891, 48.166085 ], [ 16.875000, 47.754098 ], [ 16.259766, 47.754098 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.739861 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.304688, 46.800059 ], [ 12.128906, 47.159840 ], [ 11.162109, 46.980252 ], [ 10.986328, 46.800059 ], [ 9.931641, 46.980252 ], [ 9.404297, 47.159840 ], [ 9.580078, 47.576526 ], [ 9.843750, 47.635784 ], [ 10.371094, 47.338823 ], [ 10.458984, 47.576526 ], [ 11.425781, 47.576526 ], [ 12.128906, 47.754098 ], [ 12.568359, 47.694974 ], [ 12.919922, 47.517201 ], [ 13.007812, 47.694974 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.458352 ], [ 13.535156, 48.922499 ], [ 14.326172, 48.574790 ], [ 14.853516, 48.980217 ], [ 15.205078, 49.095452 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.890008 ], [ 15.292969, 45.767523 ], [ 15.292969, 45.460131 ], [ 14.853516, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.326172, 45.521744 ], [ 13.710938, 45.521744 ], [ 13.886719, 45.644768 ], [ 13.623047, 46.073231 ], [ 13.798828, 46.558860 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.739861 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ], [ 16.523438, 46.558860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.558860 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.890008 ], [ 15.292969, 45.767523 ], [ 15.292969, 45.460131 ], [ 14.853516, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.326172, 45.521744 ], [ 13.710938, 45.521744 ], [ 13.886719, 45.644768 ], [ 13.623047, 46.073231 ], [ 13.798828, 46.558860 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.739861 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.117188, 37.509726 ], [ 15.292969, 37.160317 ], [ 15.029297, 36.668419 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.468750, 38.272689 ], [ 15.117188, 37.509726 ] ] ], [ [ [ 12.304688, 46.800059 ], [ 13.798828, 46.558860 ], [ 13.623047, 46.073231 ], [ 13.886719, 45.644768 ], [ 13.095703, 45.767523 ], [ 12.304688, 45.398450 ], [ 12.304688, 44.902578 ], [ 12.216797, 44.653024 ], [ 12.568359, 44.150681 ], [ 13.447266, 43.644026 ], [ 13.974609, 42.811522 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.083984, 41.771312 ], [ 15.820312, 41.574361 ], [ 17.490234, 40.913513 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.666016, 40.313043 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.611328, 38.891033 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.820312, 38.754083 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 14.941406, 40.178873 ], [ 14.677734, 40.647304 ], [ 13.974609, 40.847060 ], [ 13.623047, 41.244772 ], [ 12.832031, 41.310824 ], [ 11.162109, 42.358544 ], [ 10.458984, 42.940339 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 8.349609, 44.276671 ], [ 7.822266, 43.771094 ], [ 7.382812, 43.707594 ], [ 7.470703, 44.150681 ], [ 6.943359, 44.276671 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.336702 ], [ 6.767578, 45.767523 ], [ 6.767578, 46.012224 ], [ 7.207031, 45.828799 ], [ 7.734375, 45.828799 ], [ 8.261719, 46.195042 ], [ 8.437500, 46.012224 ], [ 8.964844, 46.073231 ], [ 9.140625, 46.498392 ], [ 9.843750, 46.316584 ], [ 10.283203, 46.498392 ], [ 10.371094, 46.920255 ], [ 10.986328, 46.800059 ], [ 11.162109, 46.980252 ], [ 12.128906, 47.159840 ], [ 12.304688, 46.800059 ] ] ], [ [ [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.300299 ], [ 8.789062, 38.959409 ], [ 8.349609, 39.232253 ], [ 8.349609, 40.380028 ], [ 8.085938, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.117188, 37.509726 ], [ 15.292969, 37.160317 ], [ 15.029297, 36.668419 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 12.128906, 47.159840 ], [ 12.304688, 46.800059 ], [ 13.798828, 46.558860 ], [ 13.623047, 46.073231 ], [ 13.886719, 45.644768 ], [ 13.095703, 45.767523 ], [ 12.304688, 45.398450 ], [ 12.304688, 44.902578 ], [ 12.216797, 44.653024 ], [ 12.568359, 44.150681 ], [ 13.447266, 43.644026 ], [ 13.974609, 42.811522 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.083984, 41.771312 ], [ 15.820312, 41.574361 ], [ 17.490234, 40.913513 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.666016, 40.313043 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.611328, 38.891033 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.820312, 38.754083 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 14.941406, 40.178873 ], [ 14.677734, 40.647304 ], [ 13.974609, 40.847060 ], [ 13.623047, 41.244772 ], [ 12.832031, 41.310824 ], [ 11.162109, 42.358544 ], [ 10.458984, 42.940339 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 8.349609, 44.276671 ], [ 7.822266, 43.771094 ], [ 7.382812, 43.707594 ], [ 7.470703, 44.150681 ], [ 6.943359, 44.276671 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.336702 ], [ 6.767578, 45.767523 ], [ 6.767578, 46.012224 ], [ 7.207031, 45.828799 ], [ 7.734375, 45.828799 ], [ 8.261719, 46.195042 ], [ 8.437500, 46.012224 ], [ 8.964844, 46.073231 ], [ 9.140625, 46.498392 ], [ 9.843750, 46.316584 ], [ 10.283203, 46.498392 ], [ 10.371094, 46.920255 ], [ 10.986328, 46.800059 ], [ 11.162109, 46.980252 ], [ 12.128906, 47.159840 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.300299 ], [ 8.789062, 38.959409 ], [ 8.349609, 39.232253 ], [ 8.349609, 40.380028 ], [ 8.085938, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.140625, 41.244772 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 46.012224 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.213004 ], [ 16.259766, 45.026950 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.666016, 43.068888 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.875000, 43.261206 ], [ 15.996094, 43.516689 ], [ 15.117188, 44.276671 ], [ 15.292969, 44.339565 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.853516, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.767523 ], [ 15.644531, 45.890008 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.213004 ], [ 16.259766, 45.026950 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.666016, 43.068888 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.875000, 43.261206 ], [ 15.996094, 43.516689 ], [ 15.117188, 44.276671 ], [ 15.292969, 44.339565 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.853516, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.767523 ], [ 15.644531, 45.890008 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 48.341646 ], [ 22.060547, 48.458352 ], [ 22.587891, 48.166085 ], [ 22.675781, 47.931066 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.511719, 46.195042 ], [ 18.369141, 45.767523 ], [ 17.578125, 46.012224 ], [ 16.523438, 46.558860 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.259766, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.962891, 48.166085 ], [ 17.841797, 47.813155 ], [ 18.632812, 47.931066 ], [ 18.720703, 48.107431 ], [ 20.214844, 48.341646 ], [ 20.390625, 48.574790 ], [ 20.742188, 48.632909 ], [ 21.796875, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 48.632909 ], [ 21.796875, 48.341646 ], [ 22.060547, 48.458352 ], [ 22.587891, 48.166085 ], [ 22.675781, 47.931066 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.511719, 46.195042 ], [ 18.369141, 45.767523 ], [ 17.578125, 46.012224 ], [ 16.523438, 46.558860 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.259766, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.962891, 48.166085 ], [ 17.841797, 47.813155 ], [ 18.632812, 47.931066 ], [ 18.720703, 48.107431 ], [ 20.214844, 48.341646 ], [ 20.390625, 48.574790 ], [ 20.742188, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 49.267805 ], [ 20.390625, 49.439557 ], [ 20.830078, 49.382373 ], [ 21.533203, 49.496675 ], [ 22.500000, 49.095452 ], [ 22.060547, 48.458352 ], [ 21.796875, 48.341646 ], [ 20.742188, 48.632909 ], [ 20.390625, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.687500, 48.224673 ], [ 19.599609, 48.283193 ], [ 18.720703, 48.107431 ], [ 18.632812, 47.931066 ], [ 17.841797, 47.813155 ], [ 17.402344, 47.872144 ], [ 16.962891, 48.166085 ], [ 16.875000, 48.516604 ], [ 17.050781, 48.864715 ], [ 17.490234, 48.806863 ], [ 17.841797, 48.922499 ], [ 18.017578, 49.095452 ], [ 18.105469, 49.325122 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.248047, 49.610710 ], [ 19.775391, 49.267805 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.248047, 49.610710 ], [ 19.775391, 49.267805 ], [ 20.390625, 49.439557 ], [ 20.830078, 49.382373 ], [ 21.533203, 49.496675 ], [ 22.500000, 49.095452 ], [ 22.060547, 48.458352 ], [ 21.796875, 48.341646 ], [ 20.742188, 48.632909 ], [ 20.390625, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.687500, 48.224673 ], [ 19.599609, 48.283193 ], [ 18.720703, 48.107431 ], [ 18.632812, 47.931066 ], [ 17.841797, 47.813155 ], [ 17.402344, 47.872144 ], [ 16.962891, 48.166085 ], [ 16.875000, 48.516604 ], [ 17.050781, 48.864715 ], [ 17.490234, 48.806863 ], [ 17.841797, 48.922499 ], [ 18.017578, 49.095452 ], [ 18.105469, 49.325122 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.248047, 49.610710 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.465151 ], [ 19.599609, 44.087585 ], [ 19.423828, 43.580391 ], [ 18.632812, 43.261206 ], [ 18.544922, 42.682435 ], [ 17.666016, 43.068888 ], [ 17.226562, 43.452919 ], [ 16.435547, 44.087585 ], [ 15.732422, 44.840291 ], [ 15.908203, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.274886 ], [ 17.841797, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.274886 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.465151 ], [ 19.599609, 44.087585 ], [ 19.423828, 43.580391 ], [ 18.632812, 43.261206 ], [ 18.544922, 42.682435 ], [ 17.666016, 43.068888 ], [ 17.226562, 43.452919 ], [ 16.435547, 44.087585 ], [ 15.732422, 44.840291 ], [ 15.908203, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.274886 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.553080 ], [ 20.039062, 42.617791 ], [ 20.478516, 42.228517 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.917969, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.566406, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.977120 ], [ 19.335938, 40.313043 ], [ 19.248047, 40.780541 ], [ 19.511719, 41.771312 ], [ 19.248047, 42.228517 ], [ 19.687500, 42.747012 ], [ 19.775391, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.747012 ], [ 19.775391, 42.553080 ], [ 20.039062, 42.617791 ], [ 20.478516, 42.228517 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.917969, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.566406, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.977120 ], [ 19.335938, 40.313043 ], [ 19.248047, 40.780541 ], [ 19.511719, 41.771312 ], [ 19.248047, 42.228517 ], [ 19.687500, 42.747012 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 42.032974 ], [ 22.939453, 41.376809 ], [ 22.587891, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.621094, 40.979898 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.654297, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.269531, 42.228517 ], [ 22.324219, 42.358544 ], [ 22.851562, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.358544 ], [ 22.851562, 42.032974 ], [ 22.939453, 41.376809 ], [ 22.587891, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.621094, 40.979898 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.654297, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.269531, 42.228517 ], [ 22.324219, 42.358544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.388672, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.003906, 66.964476 ], [ 30.146484, 65.838776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 29.970703, 63.587675 ], [ 31.464844, 62.875188 ], [ 31.113281, 62.390369 ], [ 28.037109, 60.543775 ], [ 26.191406, 60.457218 ], [ 24.433594, 60.064840 ], [ 22.851562, 59.888937 ], [ 22.236328, 60.413852 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.923542 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.818359, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.466797, 67.941650 ], [ 20.566406, 69.131271 ], [ 21.181641, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.911005 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.103516, 69.839622 ], [ 27.685547, 70.170201 ], [ 29.003906, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.685547, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.388672, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.003906, 66.964476 ], [ 30.146484, 65.838776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 29.970703, 63.587675 ], [ 31.464844, 62.875188 ], [ 31.113281, 62.390369 ], [ 28.037109, 60.543775 ], [ 26.191406, 60.457218 ], [ 24.433594, 60.064840 ], [ 22.851562, 59.888937 ], [ 22.236328, 60.413852 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.923542 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.818359, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.466797, 67.941650 ], [ 20.566406, 69.131271 ], [ 21.181641, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.911005 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.103516, 69.839622 ], [ 27.685547, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.279043 ], [ 27.773438, 56.800878 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.488281, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.785156, 56.413901 ], [ 23.818359, 56.316537 ], [ 22.148438, 56.365250 ], [ 21.005859, 56.072035 ], [ 21.005859, 56.800878 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 25.136719, 57.984808 ], [ 26.455078, 57.515823 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 26.455078, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.279043 ], [ 27.773438, 56.800878 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.488281, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.785156, 56.413901 ], [ 23.818359, 56.316537 ], [ 22.148438, 56.365250 ], [ 21.005859, 56.072035 ], [ 21.005859, 56.800878 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 59.489726 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.333984, 58.768200 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.515823 ], [ 26.455078, 57.515823 ], [ 25.136719, 57.984808 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 24.521484, 59.489726 ], [ 25.839844, 59.623325 ], [ 26.894531, 59.489726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.894531, 59.489726 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.333984, 58.768200 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.515823 ], [ 26.455078, 57.515823 ], [ 25.136719, 57.984808 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 24.521484, 59.489726 ], [ 25.839844, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.170023 ], [ 25.488281, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.542969, 55.178868 ], [ 25.751953, 54.876607 ], [ 25.488281, 54.316523 ], [ 24.433594, 53.956086 ], [ 23.466797, 53.956086 ], [ 23.203125, 54.265224 ], [ 22.675781, 54.367759 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.876607 ], [ 22.236328, 55.028022 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 22.148438, 56.365250 ], [ 23.818359, 56.316537 ], [ 24.785156, 56.413901 ], [ 24.960938, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 56.413901 ], [ 24.960938, 56.170023 ], [ 25.488281, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.542969, 55.178868 ], [ 25.751953, 54.876607 ], [ 25.488281, 54.316523 ], [ 24.433594, 53.956086 ], [ 23.466797, 53.956086 ], [ 23.203125, 54.265224 ], [ 22.675781, 54.367759 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.876607 ], [ 22.236328, 55.028022 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 22.148438, 56.365250 ], [ 23.818359, 56.316537 ], [ 24.785156, 56.413901 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.825973 ], [ 30.849609, 55.578345 ], [ 30.937500, 55.128649 ], [ 30.673828, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.728516, 54.007769 ], [ 31.728516, 53.800651 ], [ 32.343750, 53.644638 ], [ 32.607422, 53.383328 ], [ 32.255859, 53.173119 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.120405 ], [ 31.728516, 52.106505 ], [ 30.849609, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.498047, 51.344339 ], [ 30.146484, 51.454007 ], [ 29.179688, 51.399206 ], [ 28.916016, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.212891, 51.618017 ], [ 27.421875, 51.618017 ], [ 26.279297, 51.835778 ], [ 25.312500, 51.944265 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.466797, 51.618017 ], [ 23.466797, 52.052490 ], [ 23.115234, 52.536273 ], [ 23.730469, 52.696361 ], [ 23.730469, 53.120405 ], [ 23.466797, 53.488046 ], [ 23.466797, 53.956086 ], [ 24.433594, 53.956086 ], [ 25.488281, 54.316523 ], [ 25.751953, 54.876607 ], [ 26.542969, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.125000, 56.170023 ], [ 29.179688, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 56.170023 ], [ 29.179688, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.825973 ], [ 30.849609, 55.578345 ], [ 30.937500, 55.128649 ], [ 30.673828, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.728516, 54.007769 ], [ 31.728516, 53.800651 ], [ 32.343750, 53.644638 ], [ 32.607422, 53.383328 ], [ 32.255859, 53.173119 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.120405 ], [ 31.728516, 52.106505 ], [ 30.849609, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.498047, 51.344339 ], [ 30.146484, 51.454007 ], [ 29.179688, 51.399206 ], [ 28.916016, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.212891, 51.618017 ], [ 27.421875, 51.618017 ], [ 26.279297, 51.835778 ], [ 25.312500, 51.944265 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.466797, 51.618017 ], [ 23.466797, 52.052490 ], [ 23.115234, 52.536273 ], [ 23.730469, 52.696361 ], [ 23.730469, 53.120405 ], [ 23.466797, 53.488046 ], [ 23.466797, 53.956086 ], [ 24.433594, 53.956086 ], [ 25.488281, 54.316523 ], [ 25.751953, 54.876607 ], [ 26.542969, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.125000, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.166085 ], [ 28.125000, 46.860191 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.521744 ], [ 28.652344, 45.336702 ], [ 29.091797, 45.521744 ], [ 29.531250, 45.336702 ], [ 29.619141, 45.089036 ], [ 29.091797, 44.840291 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.158203, 44.213710 ], [ 26.015625, 43.961191 ], [ 25.488281, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.412109, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.715514 ], [ 22.060547, 44.527843 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.213004 ], [ 20.830078, 45.460131 ], [ 20.742188, 45.767523 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.931066 ], [ 23.115234, 48.107431 ], [ 24.345703, 47.989922 ], [ 24.785156, 47.754098 ], [ 25.136719, 47.931066 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.894531, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 48.224673 ], [ 26.894531, 48.166085 ], [ 28.125000, 46.860191 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.521744 ], [ 28.652344, 45.336702 ], [ 29.091797, 45.521744 ], [ 29.531250, 45.336702 ], [ 29.619141, 45.089036 ], [ 29.091797, 44.840291 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.158203, 44.213710 ], [ 26.015625, 43.961191 ], [ 25.488281, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.412109, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.715514 ], [ 22.060547, 44.527843 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.213004 ], [ 20.830078, 45.460131 ], [ 20.742188, 45.767523 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.931066 ], [ 23.115234, 48.107431 ], [ 24.345703, 47.989922 ], [ 24.785156, 47.754098 ], [ 25.136719, 47.931066 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.488281, 43.707594 ], [ 26.015625, 43.961191 ], [ 27.158203, 44.213710 ], [ 27.949219, 43.834527 ], [ 28.476562, 43.707594 ], [ 28.037109, 43.325178 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 27.070312, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.376809 ], [ 25.136719, 41.244772 ], [ 24.433594, 41.640078 ], [ 23.642578, 41.310824 ], [ 22.939453, 41.376809 ], [ 22.851562, 42.032974 ], [ 22.324219, 42.358544 ], [ 22.500000, 42.488302 ], [ 22.412109, 42.617791 ], [ 22.587891, 42.940339 ], [ 22.939453, 43.261206 ], [ 22.500000, 43.644026 ], [ 22.324219, 44.024422 ], [ 22.587891, 44.276671 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.587891, 44.276671 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.488281, 43.707594 ], [ 26.015625, 43.961191 ], [ 27.158203, 44.213710 ], [ 27.949219, 43.834527 ], [ 28.476562, 43.707594 ], [ 28.037109, 43.325178 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 27.070312, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.376809 ], [ 25.136719, 41.244772 ], [ 24.433594, 41.640078 ], [ 23.642578, 41.310824 ], [ 22.939453, 41.376809 ], [ 22.851562, 42.032974 ], [ 22.324219, 42.358544 ], [ 22.500000, 42.488302 ], [ 22.412109, 42.617791 ], [ 22.587891, 42.940339 ], [ 22.939453, 43.261206 ], [ 22.500000, 43.644026 ], [ 22.324219, 44.024422 ], [ 22.587891, 44.276671 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.212891, 48.166085 ], [ 28.652344, 48.166085 ], [ 29.091797, 47.872144 ], [ 29.003906, 47.517201 ], [ 29.355469, 47.398349 ], [ 29.531250, 46.980252 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.558860 ], [ 29.970703, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.091797, 46.437857 ], [ 29.003906, 46.558860 ], [ 28.828125, 46.498392 ], [ 28.916016, 46.316584 ], [ 28.476562, 45.644768 ], [ 28.212891, 45.521744 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.860191 ], [ 26.894531, 48.166085 ], [ 26.542969, 48.224673 ], [ 26.806641, 48.400032 ], [ 27.509766, 48.516604 ], [ 28.212891, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.516604 ], [ 28.212891, 48.166085 ], [ 28.652344, 48.166085 ], [ 29.091797, 47.872144 ], [ 29.003906, 47.517201 ], [ 29.355469, 47.398349 ], [ 29.531250, 46.980252 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.558860 ], [ 29.970703, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.091797, 46.437857 ], [ 29.003906, 46.558860 ], [ 28.828125, 46.498392 ], [ 28.916016, 46.316584 ], [ 28.476562, 45.644768 ], [ 28.212891, 45.521744 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.860191 ], [ 26.894531, 48.166085 ], [ 26.542969, 48.224673 ], [ 26.806641, 48.400032 ], [ 27.509766, 48.516604 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.564453, 51.454007 ], [ 28.916016, 51.618017 ], [ 29.179688, 51.399206 ], [ 30.146484, 51.454007 ], [ 30.498047, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.849609, 52.052490 ], [ 31.728516, 52.106505 ], [ 32.080078, 52.106505 ], [ 32.343750, 52.321911 ], [ 32.695312, 52.268157 ], [ 33.750000, 52.375599 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.618017 ], [ 34.189453, 51.289406 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.792047 ], [ 35.332031, 50.625073 ], [ 36.562500, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.951220 ], [ 38.583984, 49.951220 ], [ 39.990234, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.814453, 48.283193 ], [ 39.726562, 47.931066 ], [ 38.759766, 47.872144 ], [ 38.232422, 47.576526 ], [ 38.144531, 47.159840 ], [ 37.353516, 47.040182 ], [ 36.738281, 46.739861 ], [ 35.771484, 46.679594 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 35.507812, 45.460131 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 35.156250, 44.964798 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.890008 ], [ 33.222656, 46.134170 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 30.322266, 46.073231 ], [ 29.531250, 45.336702 ], [ 29.091797, 45.521744 ], [ 28.652344, 45.336702 ], [ 28.212891, 45.521744 ], [ 28.476562, 45.644768 ], [ 28.916016, 46.316584 ], [ 28.828125, 46.498392 ], [ 29.003906, 46.558860 ], [ 29.091797, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.970703, 46.437857 ], [ 29.794922, 46.558860 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.980252 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.166085 ], [ 28.212891, 48.166085 ], [ 27.509766, 48.516604 ], [ 26.806641, 48.400032 ], [ 26.542969, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.136719, 47.931066 ], [ 24.785156, 47.754098 ], [ 24.345703, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.931066 ], [ 22.587891, 48.166085 ], [ 22.060547, 48.458352 ], [ 22.500000, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.378906, 50.345460 ], [ 23.906250, 50.457504 ], [ 23.994141, 50.736455 ], [ 23.466797, 51.618017 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.944265 ], [ 26.279297, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.618017 ], [ 28.564453, 51.454007 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.375599 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.618017 ], [ 34.189453, 51.289406 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.792047 ], [ 35.332031, 50.625073 ], [ 36.562500, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.951220 ], [ 38.583984, 49.951220 ], [ 39.990234, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.814453, 48.283193 ], [ 39.726562, 47.931066 ], [ 38.759766, 47.872144 ], [ 38.232422, 47.576526 ], [ 38.144531, 47.159840 ], [ 37.353516, 47.040182 ], [ 36.738281, 46.739861 ], [ 35.771484, 46.679594 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 35.507812, 45.460131 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 35.156250, 44.964798 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.890008 ], [ 33.222656, 46.134170 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 30.322266, 46.073231 ], [ 29.531250, 45.336702 ], [ 29.091797, 45.521744 ], [ 28.652344, 45.336702 ], [ 28.212891, 45.521744 ], [ 28.476562, 45.644768 ], [ 28.916016, 46.316584 ], [ 28.828125, 46.498392 ], [ 29.003906, 46.558860 ], [ 29.091797, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.970703, 46.437857 ], [ 29.794922, 46.558860 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.980252 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.166085 ], [ 28.212891, 48.166085 ], [ 27.509766, 48.516604 ], [ 26.806641, 48.400032 ], [ 26.542969, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.136719, 47.931066 ], [ 24.785156, 47.754098 ], [ 24.345703, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.931066 ], [ 22.587891, 48.166085 ], [ 22.060547, 48.458352 ], [ 22.500000, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.378906, 50.345460 ], [ 23.906250, 50.457504 ], [ 23.994141, 50.736455 ], [ 23.466797, 51.618017 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.944265 ], [ 26.279297, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.916016, 51.618017 ], [ 29.179688, 51.399206 ], [ 30.146484, 51.454007 ], [ 30.498047, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.849609, 52.052490 ], [ 31.728516, 52.106505 ], [ 32.080078, 52.106505 ], [ 32.343750, 52.321911 ], [ 32.695312, 52.268157 ], [ 33.750000, 52.375599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 43.261206 ], [ 43.681641, 42.747012 ], [ 43.857422, 42.617791 ], [ 44.472656, 42.747012 ], [ 45.439453, 42.553080 ], [ 45.703125, 42.098222 ], [ 46.318359, 41.902277 ], [ 46.142578, 41.771312 ], [ 46.582031, 41.244772 ], [ 46.494141, 41.112469 ], [ 45.878906, 41.178654 ], [ 45.175781, 41.442726 ], [ 44.912109, 41.310824 ], [ 43.505859, 41.112469 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.574361 ], [ 41.660156, 41.967659 ], [ 41.396484, 42.682435 ], [ 40.869141, 43.068888 ], [ 40.253906, 43.133061 ], [ 39.902344, 43.452919 ], [ 39.990234, 43.580391 ], [ 42.363281, 43.261206 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.990234, 43.580391 ], [ 42.363281, 43.261206 ], [ 43.681641, 42.747012 ], [ 43.857422, 42.617791 ], [ 44.472656, 42.747012 ], [ 45.439453, 42.553080 ], [ 45.703125, 42.098222 ], [ 46.318359, 41.902277 ], [ 46.142578, 41.771312 ], [ 46.582031, 41.244772 ], [ 46.494141, 41.112469 ], [ 45.878906, 41.178654 ], [ 45.175781, 41.442726 ], [ 44.912109, 41.310824 ], [ 43.505859, 41.112469 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.574361 ], [ 41.660156, 41.967659 ], [ 41.396484, 42.682435 ], [ 40.869141, 43.068888 ], [ 40.253906, 43.133061 ], [ 39.902344, 43.452919 ], [ 39.990234, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.949892 ], [ 8.349609, 36.949892 ], [ 8.173828, 36.456636 ], [ 8.349609, 35.532226 ], [ 8.085938, 34.669359 ], [ 7.470703, 34.161818 ], [ 7.558594, 33.358062 ], [ 8.349609, 32.768800 ], [ 8.437500, 32.546813 ], [ 9.052734, 32.175612 ], [ 9.755859, 29.458731 ], [ 9.843750, 28.998532 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.761330 ], [ 9.580078, 27.215556 ], [ 9.667969, 26.588527 ], [ 9.316406, 26.115986 ], [ 9.843750, 25.403585 ], [ 9.931641, 25.005973 ], [ 10.283203, 24.447150 ], [ 10.722656, 24.607069 ], [ 11.513672, 24.126702 ], [ 11.953125, 23.483401 ], [ 8.525391, 21.616579 ], [ 5.625000, 19.642588 ], [ 4.218750, 19.228177 ], [ 3.076172, 19.062118 ], [ 3.076172, 19.725342 ], [ 2.021484, 20.220966 ], [ 1.757812, 20.632784 ], [ -8.701172, 27.449790 ], [ -8.701172, 28.844674 ], [ -7.119141, 29.611670 ], [ -5.273438, 30.069094 ], [ -4.921875, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.324276 ], [ -1.142578, 32.694866 ], [ -1.406250, 32.916485 ], [ -1.845703, 34.597042 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.175781, 35.889050 ], [ 0.439453, 36.315125 ], [ 1.406250, 36.668419 ], [ 4.746094, 36.879621 ], [ 5.273438, 36.738884 ], [ 6.240234, 37.160317 ], [ 7.294922, 37.160317 ], [ 7.734375, 36.949892 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.160317 ], [ 7.734375, 36.949892 ], [ 8.349609, 36.949892 ], [ 8.173828, 36.456636 ], [ 8.349609, 35.532226 ], [ 8.085938, 34.669359 ], [ 7.470703, 34.161818 ], [ 7.558594, 33.358062 ], [ 8.349609, 32.768800 ], [ 8.437500, 32.546813 ], [ 9.052734, 32.175612 ], [ 9.755859, 29.458731 ], [ 9.843750, 28.998532 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.761330 ], [ 9.580078, 27.215556 ], [ 9.667969, 26.588527 ], [ 9.316406, 26.115986 ], [ 9.843750, 25.403585 ], [ 9.931641, 25.005973 ], [ 10.283203, 24.447150 ], [ 10.722656, 24.607069 ], [ 11.513672, 24.126702 ], [ 11.953125, 23.483401 ], [ 8.525391, 21.616579 ], [ 5.625000, 19.642588 ], [ 4.218750, 19.228177 ], [ 3.076172, 19.062118 ], [ 3.076172, 19.725342 ], [ 2.021484, 20.220966 ], [ 1.757812, 20.632784 ], [ -8.701172, 27.449790 ], [ -8.701172, 28.844674 ], [ -7.119141, 29.611670 ], [ -5.273438, 30.069094 ], [ -4.921875, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.324276 ], [ -1.142578, 32.694866 ], [ -1.406250, 32.916485 ], [ -1.845703, 34.597042 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.175781, 35.889050 ], [ 0.439453, 36.315125 ], [ 1.406250, 36.668419 ], [ 4.746094, 36.879621 ], [ 5.273438, 36.738884 ], [ 6.240234, 37.160317 ], [ 7.294922, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.842674 ], [ 13.007812, 32.916485 ], [ 13.886719, 32.768800 ], [ 15.205078, 32.324276 ], [ 15.644531, 31.428663 ], [ 18.017578, 30.826781 ], [ 19.072266, 30.297018 ], [ 19.511719, 30.600094 ], [ 20.039062, 31.052934 ], [ 19.775391, 31.802893 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.768800 ], [ 21.533203, 32.916485 ], [ 22.851562, 32.694866 ], [ 23.203125, 32.249974 ], [ 24.873047, 31.952162 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.128199 ], [ 24.873047, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.305561 ], [ 24.960938, 20.055931 ], [ 23.818359, 20.055931 ], [ 23.818359, 19.642588 ], [ 15.820312, 23.483401 ], [ 14.765625, 22.917923 ], [ 14.062500, 22.512557 ], [ 13.535156, 23.079732 ], [ 11.953125, 23.483401 ], [ 11.513672, 24.126702 ], [ 10.722656, 24.607069 ], [ 10.283203, 24.447150 ], [ 9.931641, 25.005973 ], [ 9.843750, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.667969, 26.588527 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.998532 ], [ 9.404297, 30.372875 ], [ 9.931641, 30.600094 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.428663 ], [ 11.425781, 32.398516 ], [ 11.425781, 33.137551 ], [ 12.656250, 32.842674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.425781, 33.137551 ], [ 12.656250, 32.842674 ], [ 13.007812, 32.916485 ], [ 13.886719, 32.768800 ], [ 15.205078, 32.324276 ], [ 15.644531, 31.428663 ], [ 18.017578, 30.826781 ], [ 19.072266, 30.297018 ], [ 19.511719, 30.600094 ], [ 20.039062, 31.052934 ], [ 19.775391, 31.802893 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.768800 ], [ 21.533203, 32.916485 ], [ 22.851562, 32.694866 ], [ 23.203125, 32.249974 ], [ 24.873047, 31.952162 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.128199 ], [ 24.873047, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.305561 ], [ 24.960938, 20.055931 ], [ 23.818359, 20.055931 ], [ 23.818359, 19.642588 ], [ 15.820312, 23.483401 ], [ 14.765625, 22.917923 ], [ 14.062500, 22.512557 ], [ 13.535156, 23.079732 ], [ 11.953125, 23.483401 ], [ 11.513672, 24.126702 ], [ 10.722656, 24.607069 ], [ 10.283203, 24.447150 ], [ 9.931641, 25.005973 ], [ 9.843750, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.667969, 26.588527 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.998532 ], [ 9.404297, 30.372875 ], [ 9.931641, 30.600094 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.428663 ], [ 11.425781, 32.398516 ], [ 11.425781, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.535156, 23.079732 ], [ 14.062500, 22.512557 ], [ 14.765625, 22.917923 ], [ 15.029297, 21.371244 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.797201 ], [ 15.820312, 20.468189 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.978733 ], [ 15.205078, 16.636192 ], [ 13.886719, 15.707663 ], [ 13.535156, 14.434680 ], [ 13.886719, 14.008696 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.414062, 12.897489 ], [ 14.150391, 12.811801 ], [ 14.150391, 12.554564 ], [ 13.974609, 12.468760 ], [ 13.271484, 13.581921 ], [ 13.007812, 13.667338 ], [ 12.216797, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.634766, 13.325485 ], [ 10.107422, 13.325485 ], [ 9.492188, 12.897489 ], [ 8.964844, 12.897489 ], [ 7.734375, 13.410994 ], [ 7.294922, 13.154376 ], [ 6.767578, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.361328, 13.923404 ], [ 4.306641, 13.752725 ], [ 4.042969, 13.581921 ], [ 3.955078, 12.983148 ], [ 3.603516, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.297068 ], [ 2.460938, 12.297068 ], [ 2.109375, 11.953349 ], [ 2.109375, 12.640338 ], [ 0.966797, 12.897489 ], [ 0.966797, 13.410994 ], [ 0.351562, 14.008696 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.944785 ], [ 0.966797, 15.029686 ], [ 1.318359, 15.368950 ], [ 3.603516, 15.623037 ], [ 3.691406, 16.214675 ], [ 4.218750, 16.888660 ], [ 4.218750, 19.228177 ], [ 5.625000, 19.642588 ], [ 8.525391, 21.616579 ], [ 11.953125, 23.483401 ], [ 13.535156, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.953125, 23.483401 ], [ 13.535156, 23.079732 ], [ 14.062500, 22.512557 ], [ 14.765625, 22.917923 ], [ 15.029297, 21.371244 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.797201 ], [ 15.820312, 20.468189 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.978733 ], [ 15.205078, 16.636192 ], [ 13.886719, 15.707663 ], [ 13.535156, 14.434680 ], [ 13.886719, 14.008696 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.414062, 12.897489 ], [ 14.150391, 12.811801 ], [ 14.150391, 12.554564 ], [ 13.974609, 12.468760 ], [ 13.271484, 13.581921 ], [ 13.007812, 13.667338 ], [ 12.216797, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.634766, 13.325485 ], [ 10.107422, 13.325485 ], [ 9.492188, 12.897489 ], [ 8.964844, 12.897489 ], [ 7.734375, 13.410994 ], [ 7.294922, 13.154376 ], [ 6.767578, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.361328, 13.923404 ], [ 4.306641, 13.752725 ], [ 4.042969, 13.581921 ], [ 3.955078, 12.983148 ], [ 3.603516, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.297068 ], [ 2.460938, 12.297068 ], [ 2.109375, 11.953349 ], [ 2.109375, 12.640338 ], [ 0.966797, 12.897489 ], [ 0.966797, 13.410994 ], [ 0.351562, 14.008696 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.944785 ], [ 0.966797, 15.029686 ], [ 1.318359, 15.368950 ], [ 3.603516, 15.623037 ], [ 3.691406, 16.214675 ], [ 4.218750, 16.888660 ], [ 4.218750, 19.228177 ], [ 5.625000, 19.642588 ], [ 8.525391, 21.616579 ], [ 11.953125, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.703125, 10.487812 ], [ 1.406250, 9.882275 ], [ 1.406250, 9.362353 ], [ 1.582031, 9.188870 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.227934 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.439453, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.754795 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.092166 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.092166 ], [ 0.878906, 11.005904 ], [ 0.703125, 10.487812 ], [ 1.406250, 9.882275 ], [ 1.406250, 9.362353 ], [ 1.582031, 9.188870 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.227934 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.439453, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.754795 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.515625, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.515625, 10.401378 ], [ 3.691406, 10.141932 ], [ 2.900391, 9.188870 ], [ 2.636719, 8.581021 ], [ 2.636719, 6.315299 ], [ 1.845703, 6.227934 ], [ 1.582031, 6.839170 ], [ 1.582031, 9.188870 ], [ 1.406250, 9.362353 ], [ 1.406250, 9.882275 ], [ 0.703125, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.178402 ], [ 1.406250, 11.609193 ], [ 1.933594, 11.695273 ], [ 2.460938, 12.297068 ], [ 2.812500, 12.297068 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.297068 ], [ 3.603516, 11.695273 ], [ 3.515625, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.515625, 10.401378 ], [ 3.691406, 10.141932 ], [ 2.900391, 9.188870 ], [ 2.636719, 8.581021 ], [ 2.636719, 6.315299 ], [ 1.845703, 6.227934 ], [ 1.582031, 6.839170 ], [ 1.582031, 9.188870 ], [ 1.406250, 9.362353 ], [ 1.406250, 9.882275 ], [ 0.703125, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.178402 ], [ 1.406250, 11.609193 ], [ 1.933594, 11.695273 ], [ 2.460938, 12.297068 ], [ 2.812500, 12.297068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.416016, 13.496473 ], [ 6.767578, 13.154376 ], [ 7.294922, 13.154376 ], [ 7.734375, 13.410994 ], [ 8.964844, 12.897489 ], [ 9.492188, 12.897489 ], [ 10.107422, 13.325485 ], [ 10.634766, 13.325485 ], [ 10.986328, 13.410994 ], [ 12.216797, 13.068777 ], [ 13.007812, 13.667338 ], [ 13.271484, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.554564 ], [ 14.501953, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 11.689453, 7.013668 ], [ 10.986328, 6.664608 ], [ 10.458984, 7.100893 ], [ 10.107422, 7.100893 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.489983 ], [ 8.437500, 4.828260 ], [ 7.382812, 4.477856 ], [ 7.031250, 4.477856 ], [ 6.679688, 4.302591 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.581021 ], [ 2.900391, 9.188870 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.401378 ], [ 3.779297, 10.746969 ], [ 3.515625, 11.350797 ], [ 3.603516, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.042969, 13.581921 ], [ 4.306641, 13.752725 ], [ 5.361328, 13.923404 ], [ 6.416016, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.361328, 13.923404 ], [ 6.416016, 13.496473 ], [ 6.767578, 13.154376 ], [ 7.294922, 13.154376 ], [ 7.734375, 13.410994 ], [ 8.964844, 12.897489 ], [ 9.492188, 12.897489 ], [ 10.107422, 13.325485 ], [ 10.634766, 13.325485 ], [ 10.986328, 13.410994 ], [ 12.216797, 13.068777 ], [ 13.007812, 13.667338 ], [ 13.271484, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.554564 ], [ 14.501953, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 11.689453, 7.013668 ], [ 10.986328, 6.664608 ], [ 10.458984, 7.100893 ], [ 10.107422, 7.100893 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.489983 ], [ 8.437500, 4.828260 ], [ 7.382812, 4.477856 ], [ 7.031250, 4.477856 ], [ 6.679688, 4.302591 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.581021 ], [ 2.900391, 9.188870 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.401378 ], [ 3.779297, 10.746969 ], [ 3.515625, 11.350797 ], [ 3.603516, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.042969, 13.581921 ], [ 4.306641, 13.752725 ], [ 5.361328, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.142502 ], [ 9.492188, 1.054628 ], [ 9.228516, 1.230374 ], [ 9.580078, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.142502 ], [ 9.492188, 1.054628 ], [ 9.228516, 1.230374 ], [ 9.580078, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.642588 ], [ 23.818359, 15.623037 ], [ 22.939453, 15.707663 ], [ 22.236328, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.838080 ], [ 22.236328, 13.410994 ], [ 21.884766, 12.640338 ], [ 22.236328, 12.726084 ], [ 22.412109, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.436955 ], [ 22.851562, 11.178402 ], [ 22.148438, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.917969, 9.535749 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.972198 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.083984, 7.536764 ], [ 15.205078, 7.449624 ], [ 15.380859, 7.710992 ], [ 14.941406, 8.841651 ], [ 14.501953, 9.015302 ], [ 13.886719, 9.622414 ], [ 14.150391, 10.055403 ], [ 15.380859, 10.055403 ], [ 14.853516, 10.919618 ], [ 14.853516, 12.297068 ], [ 14.414062, 12.897489 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 14.008696 ], [ 13.535156, 14.434680 ], [ 13.886719, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.978733 ], [ 15.644531, 19.973349 ], [ 15.820312, 20.468189 ], [ 15.468750, 20.797201 ], [ 15.468750, 21.125498 ], [ 15.029297, 21.371244 ], [ 14.765625, 22.917923 ], [ 15.820312, 23.483401 ], [ 23.818359, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.483401 ], [ 23.818359, 19.642588 ], [ 23.818359, 15.623037 ], [ 22.939453, 15.707663 ], [ 22.236328, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.838080 ], [ 22.236328, 13.410994 ], [ 21.884766, 12.640338 ], [ 22.236328, 12.726084 ], [ 22.412109, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.436955 ], [ 22.851562, 11.178402 ], [ 22.148438, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.917969, 9.535749 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.972198 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.083984, 7.536764 ], [ 15.205078, 7.449624 ], [ 15.380859, 7.710992 ], [ 14.941406, 8.841651 ], [ 14.501953, 9.015302 ], [ 13.886719, 9.622414 ], [ 14.150391, 10.055403 ], [ 15.380859, 10.055403 ], [ 14.853516, 10.919618 ], [ 14.853516, 12.297068 ], [ 14.414062, 12.897489 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 14.008696 ], [ 13.535156, 14.434680 ], [ 13.886719, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.978733 ], [ 15.644531, 19.973349 ], [ 15.820312, 20.468189 ], [ 15.468750, 20.797201 ], [ 15.468750, 21.125498 ], [ 15.029297, 21.371244 ], [ 14.765625, 22.917923 ], [ 15.820312, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 12.297068 ], [ 14.853516, 10.919618 ], [ 15.380859, 10.055403 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 14.501953, 9.015302 ], [ 14.941406, 8.841651 ], [ 15.380859, 7.710992 ], [ 14.765625, 6.489983 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.074695 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.876953, 3.951941 ], [ 8.701172, 4.390229 ], [ 8.437500, 4.565474 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.458984, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.501953, 12.125264 ], [ 14.150391, 12.554564 ], [ 14.150391, 12.811801 ], [ 14.414062, 12.897489 ], [ 14.853516, 12.297068 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.853516, 12.297068 ], [ 14.853516, 10.919618 ], [ 15.380859, 10.055403 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 14.501953, 9.015302 ], [ 14.941406, 8.841651 ], [ 15.380859, 7.710992 ], [ 14.765625, 6.489983 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.074695 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.876953, 3.951941 ], [ 8.701172, 4.390229 ], [ 8.437500, 4.565474 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.458984, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.501953, 12.125264 ], [ 14.150391, 12.554564 ], [ 14.150391, 12.811801 ], [ 14.414062, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.746969 ], [ 23.466797, 10.141932 ], [ 23.378906, 9.275622 ], [ 23.378906, 9.015302 ], [ 25.048828, 7.885147 ], [ 25.048828, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.158203, 5.615986 ], [ 27.333984, 5.266008 ], [ 26.982422, 5.178482 ], [ 25.576172, 5.266008 ], [ 25.224609, 5.178482 ], [ 25.048828, 5.003394 ], [ 24.785156, 4.915833 ], [ 24.345703, 5.178482 ], [ 23.291016, 4.653080 ], [ 22.763672, 4.740675 ], [ 22.324219, 4.039618 ], [ 20.917969, 4.390229 ], [ 19.423828, 5.090944 ], [ 18.896484, 4.740675 ], [ 18.457031, 4.214943 ], [ 18.369141, 3.513421 ], [ 17.050781, 3.776559 ], [ 16.523438, 3.250209 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.074695 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.414062, 4.740675 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.489983 ], [ 15.205078, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.972198 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 20.917969, 9.535749 ], [ 21.708984, 10.574222 ], [ 22.148438, 11.005904 ], [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.466797, 10.141932 ], [ 23.378906, 9.275622 ], [ 23.378906, 9.015302 ], [ 25.048828, 7.885147 ], [ 25.048828, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.158203, 5.615986 ], [ 27.333984, 5.266008 ], [ 26.982422, 5.178482 ], [ 25.576172, 5.266008 ], [ 25.224609, 5.178482 ], [ 25.048828, 5.003394 ], [ 24.785156, 4.915833 ], [ 24.345703, 5.178482 ], [ 23.291016, 4.653080 ], [ 22.763672, 4.740675 ], [ 22.324219, 4.039618 ], [ 20.917969, 4.390229 ], [ 19.423828, 5.090944 ], [ 18.896484, 4.740675 ], [ 18.457031, 4.214943 ], [ 18.369141, 3.513421 ], [ 17.050781, 3.776559 ], [ 16.523438, 3.250209 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.074695 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.414062, 4.740675 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.489983 ], [ 15.205078, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.972198 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 20.917969, 9.535749 ], [ 21.708984, 10.574222 ], [ 22.148438, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.169922, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.664062, 35.245619 ], [ 26.279297, 35.317366 ], [ 26.103516, 35.029996 ], [ 24.697266, 34.957995 ], [ 24.697266, 35.101934 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ], [ 24.169922, 35.389050 ] ] ], [ [ [ 26.542969, 41.574361 ], [ 26.279297, 40.979898 ], [ 26.015625, 40.847060 ], [ 24.873047, 40.979898 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 23.291016, 39.977120 ], [ 22.763672, 40.513799 ], [ 22.587891, 40.313043 ], [ 22.763672, 39.707187 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 22.412109, 36.456636 ], [ 21.621094, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.566406, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.917969, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.621094, 40.979898 ], [ 21.972656, 41.178654 ], [ 22.587891, 41.178654 ], [ 22.675781, 41.310824 ], [ 23.642578, 41.310824 ], [ 24.433594, 41.640078 ], [ 25.136719, 41.244772 ], [ 26.103516, 41.376809 ], [ 26.103516, 41.836828 ], [ 26.542969, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.642578, 35.746512 ], [ 24.169922, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.664062, 35.245619 ], [ 26.279297, 35.317366 ], [ 26.103516, 35.029996 ], [ 24.697266, 34.957995 ], [ 24.697266, 35.101934 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.542969, 41.574361 ], [ 26.279297, 40.979898 ], [ 26.015625, 40.847060 ], [ 24.873047, 40.979898 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 23.291016, 39.977120 ], [ 22.763672, 40.513799 ], [ 22.587891, 40.313043 ], [ 22.763672, 39.707187 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 22.412109, 36.456636 ], [ 21.621094, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.566406, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.917969, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.621094, 40.979898 ], [ 21.972656, 41.178654 ], [ 22.587891, 41.178654 ], [ 22.675781, 41.310824 ], [ 23.642578, 41.310824 ], [ 24.433594, 41.640078 ], [ 25.136719, 41.244772 ], [ 26.103516, 41.376809 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.837891, 35.317366 ], [ 33.925781, 35.101934 ], [ 33.398438, 35.029996 ], [ 33.310547, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.837891, 35.317366 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.837891, 35.317366 ], [ 33.925781, 35.101934 ], [ 33.398438, 35.029996 ], [ 33.310547, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 35.029996 ], [ 33.925781, 35.101934 ], [ 33.925781, 35.029996 ], [ 32.958984, 34.597042 ], [ 32.431641, 34.741612 ], [ 32.255859, 35.173808 ], [ 33.310547, 35.173808 ], [ 33.398438, 35.029996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.310547, 35.173808 ], [ 33.398438, 35.029996 ], [ 33.925781, 35.101934 ], [ 33.925781, 35.029996 ], [ 32.958984, 34.597042 ], [ 32.431641, 34.741612 ], [ 32.255859, 35.173808 ], [ 33.310547, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.640625, 31.503629 ], [ 31.904297, 30.977609 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.189453, 31.278551 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.152161 ], [ 34.101562, 27.839076 ], [ 33.837891, 27.683528 ], [ 33.134766, 28.459033 ], [ 32.343750, 29.916852 ], [ 32.255859, 29.764377 ], [ 32.695312, 28.767659 ], [ 34.101562, 26.194877 ], [ 34.716797, 25.085599 ], [ 35.683594, 23.966176 ], [ 35.419922, 23.805450 ], [ 35.507812, 23.160563 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.305561 ], [ 24.697266, 30.069094 ], [ 24.873047, 30.675715 ], [ 24.785156, 31.128199 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.653381 ], [ 28.828125, 30.902225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.653381 ], [ 28.828125, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.640625, 31.503629 ], [ 31.904297, 30.977609 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.189453, 31.278551 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.152161 ], [ 34.101562, 27.839076 ], [ 33.837891, 27.683528 ], [ 33.134766, 28.459033 ], [ 32.343750, 29.916852 ], [ 32.255859, 29.764377 ], [ 32.695312, 28.767659 ], [ 34.101562, 26.194877 ], [ 34.716797, 25.085599 ], [ 35.683594, 23.966176 ], [ 35.419922, 23.805450 ], [ 35.507812, 23.160563 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.305561 ], [ 24.697266, 30.069094 ], [ 24.873047, 30.675715 ], [ 24.785156, 31.128199 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.653381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.826172, 41.376809 ], [ 38.320312, 40.979898 ], [ 39.462891, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.484375, 41.574361 ], [ 42.539062, 41.640078 ], [ 43.505859, 41.112469 ], [ 43.681641, 40.780541 ], [ 43.593750, 40.313043 ], [ 44.384766, 40.044438 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.384766, 38.341656 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.230328 ], [ 44.208984, 37.020098 ], [ 43.857422, 37.300275 ], [ 42.714844, 37.439974 ], [ 42.275391, 37.230328 ], [ 40.605469, 37.160317 ], [ 39.462891, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.949892 ], [ 37.001953, 36.668419 ], [ 36.738281, 36.879621 ], [ 36.650391, 36.315125 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 31.640625, 36.668419 ], [ 30.585938, 36.738884 ], [ 30.322266, 36.315125 ], [ 29.619141, 36.173357 ], [ 28.652344, 36.738884 ], [ 27.597656, 36.668419 ], [ 26.982422, 37.718590 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.771312 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ] ] ], [ [ [ 27.949219, 42.032974 ], [ 28.037109, 41.640078 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.597656, 41.046217 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.979898 ], [ 26.542969, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.070312, 42.163403 ], [ 27.949219, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ], [ 38.320312, 40.979898 ], [ 39.462891, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.484375, 41.574361 ], [ 42.539062, 41.640078 ], [ 43.505859, 41.112469 ], [ 43.681641, 40.780541 ], [ 43.593750, 40.313043 ], [ 44.384766, 40.044438 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.384766, 38.341656 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.230328 ], [ 44.208984, 37.020098 ], [ 43.857422, 37.300275 ], [ 42.714844, 37.439974 ], [ 42.275391, 37.230328 ], [ 40.605469, 37.160317 ], [ 39.462891, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.949892 ], [ 37.001953, 36.668419 ], [ 36.738281, 36.879621 ], [ 36.650391, 36.315125 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 31.640625, 36.668419 ], [ 30.585938, 36.738884 ], [ 30.322266, 36.315125 ], [ 29.619141, 36.173357 ], [ 28.652344, 36.738884 ], [ 27.597656, 36.668419 ], [ 26.982422, 37.718590 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.771312 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ] ] ], [ [ [ 27.070312, 42.163403 ], [ 27.949219, 42.032974 ], [ 28.037109, 41.640078 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.597656, 41.046217 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.979898 ], [ 26.542969, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.070312, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 34.597042 ], [ 36.562500, 34.234512 ], [ 36.035156, 33.870416 ], [ 35.771484, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.419922, 33.137551 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.943360 ], [ 35.947266, 34.669359 ], [ 36.386719, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.947266, 34.669359 ], [ 36.386719, 34.597042 ], [ 36.562500, 34.234512 ], [ 36.035156, 33.870416 ], [ 35.771484, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.419922, 33.137551 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.943360 ], [ 35.947266, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.668419 ], [ 41.220703, 36.385913 ], [ 41.308594, 35.675147 ], [ 40.957031, 34.452218 ], [ 38.759766, 33.431441 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.768800 ], [ 36.035156, 33.870416 ], [ 36.562500, 34.234512 ], [ 36.386719, 34.597042 ], [ 35.947266, 34.669359 ], [ 35.859375, 35.460670 ], [ 36.123047, 35.889050 ], [ 36.650391, 36.315125 ], [ 36.738281, 36.879621 ], [ 37.001953, 36.668419 ], [ 38.144531, 36.949892 ], [ 38.671875, 36.738884 ], [ 39.462891, 36.738884 ], [ 40.605469, 37.160317 ], [ 42.275391, 37.230328 ], [ 41.835938, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.275391, 37.230328 ], [ 41.835938, 36.668419 ], [ 41.220703, 36.385913 ], [ 41.308594, 35.675147 ], [ 40.957031, 34.452218 ], [ 38.759766, 33.431441 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.768800 ], [ 36.035156, 33.870416 ], [ 36.562500, 34.234512 ], [ 36.386719, 34.597042 ], [ 35.947266, 34.669359 ], [ 35.859375, 35.460670 ], [ 36.123047, 35.889050 ], [ 36.650391, 36.315125 ], [ 36.738281, 36.879621 ], [ 37.001953, 36.668419 ], [ 38.144531, 36.949892 ], [ 38.671875, 36.738884 ], [ 39.462891, 36.738884 ], [ 40.605469, 37.160317 ], [ 42.275391, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 37.300275 ], [ 44.208984, 37.020098 ], [ 44.736328, 37.230328 ], [ 45.351562, 36.031332 ], [ 46.054688, 35.746512 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.813803 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.063924 ], [ 47.285156, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.524413 ], [ 48.515625, 29.993002 ], [ 47.285156, 30.069094 ], [ 46.494141, 29.152161 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.203405 ], [ 40.341797, 31.952162 ], [ 39.111328, 32.175612 ], [ 38.759766, 33.431441 ], [ 40.957031, 34.452218 ], [ 41.308594, 35.675147 ], [ 41.220703, 36.385913 ], [ 41.835938, 36.668419 ], [ 42.275391, 37.230328 ], [ 42.714844, 37.439974 ], [ 43.857422, 37.300275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.714844, 37.439974 ], [ 43.857422, 37.300275 ], [ 44.208984, 37.020098 ], [ 44.736328, 37.230328 ], [ 45.351562, 36.031332 ], [ 46.054688, 35.746512 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.813803 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.063924 ], [ 47.285156, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.524413 ], [ 48.515625, 29.993002 ], [ 47.285156, 30.069094 ], [ 46.494141, 29.152161 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.203405 ], [ 40.341797, 31.952162 ], [ 39.111328, 32.175612 ], [ 38.759766, 33.431441 ], [ 40.957031, 34.452218 ], [ 41.308594, 35.675147 ], [ 41.220703, 36.385913 ], [ 41.835938, 36.668419 ], [ 42.275391, 37.230328 ], [ 42.714844, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.683594, 32.768800 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.892578, 31.877558 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.332031, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.892578, 31.877558 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.332031, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.771484, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.332031, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.892578, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.877558 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.332031, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.892578, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 32.175612 ], [ 38.935547, 32.026706 ], [ 37.001953, 31.578535 ], [ 37.968750, 30.524413 ], [ 37.617188, 30.372875 ], [ 37.441406, 30.069094 ], [ 36.738281, 29.916852 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.768800 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.431441 ], [ 39.111328, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.431441 ], [ 39.111328, 32.175612 ], [ 38.935547, 32.026706 ], [ 37.001953, 31.578535 ], [ 37.968750, 30.524413 ], [ 37.617188, 30.372875 ], [ 37.441406, 30.069094 ], [ 36.738281, 29.916852 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.768800 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.431441 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.043491 ], [ 36.914062, 20.879343 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.062312 ], [ 37.880859, 17.476432 ], [ 37.089844, 17.308688 ], [ 36.826172, 16.972741 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.210938, 13.581921 ], [ 35.859375, 12.640338 ], [ 35.244141, 12.125264 ], [ 34.716797, 10.919618 ], [ 34.189453, 10.660608 ], [ 33.925781, 9.535749 ], [ 33.750000, 9.535749 ], [ 33.662109, 10.401378 ], [ 33.134766, 10.746969 ], [ 33.046875, 11.523088 ], [ 33.134766, 12.211180 ], [ 32.695312, 12.297068 ], [ 32.607422, 12.039321 ], [ 31.992188, 12.039321 ], [ 32.255859, 11.695273 ], [ 32.343750, 11.092166 ], [ 31.289062, 9.882275 ], [ 30.761719, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.531250, 10.141932 ], [ 29.443359, 9.795678 ], [ 28.916016, 9.622414 ], [ 28.916016, 9.449062 ], [ 27.949219, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.709057 ], [ 26.718750, 9.535749 ], [ 26.455078, 9.622414 ], [ 25.751953, 10.487812 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.818359, 8.667918 ], [ 23.378906, 9.015302 ], [ 23.378906, 9.275622 ], [ 23.466797, 10.141932 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.436955 ], [ 22.500000, 11.695273 ], [ 22.412109, 12.297068 ], [ 22.236328, 12.726084 ], [ 21.884766, 12.640338 ], [ 22.236328, 13.410994 ], [ 22.148438, 13.838080 ], [ 22.500000, 14.093957 ], [ 22.236328, 14.349548 ], [ 22.939453, 15.707663 ], [ 23.818359, 15.623037 ], [ 23.818359, 20.055931 ], [ 24.960938, 20.055931 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 36.914062, 20.879343 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.062312 ], [ 37.880859, 17.476432 ], [ 37.089844, 17.308688 ], [ 36.826172, 16.972741 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.210938, 13.581921 ], [ 35.859375, 12.640338 ], [ 35.244141, 12.125264 ], [ 34.716797, 10.919618 ], [ 34.189453, 10.660608 ], [ 33.925781, 9.535749 ], [ 33.750000, 9.535749 ], [ 33.662109, 10.401378 ], [ 33.134766, 10.746969 ], [ 33.046875, 11.523088 ], [ 33.134766, 12.211180 ], [ 32.695312, 12.297068 ], [ 32.607422, 12.039321 ], [ 31.992188, 12.039321 ], [ 32.255859, 11.695273 ], [ 32.343750, 11.092166 ], [ 31.289062, 9.882275 ], [ 30.761719, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.531250, 10.141932 ], [ 29.443359, 9.795678 ], [ 28.916016, 9.622414 ], [ 28.916016, 9.449062 ], [ 27.949219, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.709057 ], [ 26.718750, 9.535749 ], [ 26.455078, 9.622414 ], [ 25.751953, 10.487812 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.818359, 8.667918 ], [ 23.378906, 9.015302 ], [ 23.378906, 9.275622 ], [ 23.466797, 10.141932 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.436955 ], [ 22.500000, 11.695273 ], [ 22.412109, 12.297068 ], [ 22.236328, 12.726084 ], [ 21.884766, 12.640338 ], [ 22.236328, 13.410994 ], [ 22.148438, 13.838080 ], [ 22.500000, 14.093957 ], [ 22.236328, 14.349548 ], [ 22.939453, 15.707663 ], [ 23.818359, 15.623037 ], [ 23.818359, 20.055931 ], [ 24.960938, 20.055931 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.134766, 12.211180 ], [ 33.046875, 11.523088 ], [ 33.134766, 10.746969 ], [ 33.662109, 10.401378 ], [ 33.750000, 9.535749 ], [ 33.925781, 9.535749 ], [ 33.925781, 8.754795 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 32.871094, 7.798079 ], [ 33.486328, 7.798079 ], [ 34.013672, 7.275292 ], [ 34.189453, 6.839170 ], [ 34.628906, 6.664608 ], [ 35.244141, 5.528511 ], [ 33.310547, 3.864255 ], [ 32.607422, 3.864255 ], [ 31.816406, 3.601142 ], [ 31.201172, 3.864255 ], [ 30.761719, 3.513421 ], [ 29.882812, 4.214943 ], [ 29.707031, 4.653080 ], [ 29.091797, 4.390229 ], [ 28.652344, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.477856 ], [ 27.158203, 5.615986 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.048828, 7.536764 ], [ 25.048828, 7.885147 ], [ 23.818359, 8.667918 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.487812 ], [ 26.455078, 9.622414 ], [ 26.718750, 9.535749 ], [ 27.070312, 9.709057 ], [ 27.773438, 9.622414 ], [ 27.949219, 9.449062 ], [ 28.916016, 9.449062 ], [ 28.916016, 9.622414 ], [ 29.443359, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.970703, 10.314919 ], [ 30.761719, 9.709057 ], [ 31.289062, 9.882275 ], [ 32.343750, 11.092166 ], [ 32.255859, 11.695273 ], [ 31.992188, 12.039321 ], [ 32.607422, 12.039321 ], [ 32.695312, 12.297068 ], [ 33.134766, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, 12.297068 ], [ 33.134766, 12.211180 ], [ 33.046875, 11.523088 ], [ 33.134766, 10.746969 ], [ 33.662109, 10.401378 ], [ 33.750000, 9.535749 ], [ 33.925781, 9.535749 ], [ 33.925781, 8.754795 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 32.871094, 7.798079 ], [ 33.486328, 7.798079 ], [ 34.013672, 7.275292 ], [ 34.189453, 6.839170 ], [ 34.628906, 6.664608 ], [ 35.244141, 5.528511 ], [ 33.310547, 3.864255 ], [ 32.607422, 3.864255 ], [ 31.816406, 3.601142 ], [ 31.201172, 3.864255 ], [ 30.761719, 3.513421 ], [ 29.882812, 4.214943 ], [ 29.707031, 4.653080 ], [ 29.091797, 4.390229 ], [ 28.652344, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.477856 ], [ 27.158203, 5.615986 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.048828, 7.536764 ], [ 25.048828, 7.885147 ], [ 23.818359, 8.667918 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.487812 ], [ 26.455078, 9.622414 ], [ 26.718750, 9.535749 ], [ 27.070312, 9.709057 ], [ 27.773438, 9.622414 ], [ 27.949219, 9.449062 ], [ 28.916016, 9.449062 ], [ 28.916016, 9.622414 ], [ 29.443359, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.970703, 10.314919 ], [ 30.761719, 9.709057 ], [ 31.289062, 9.882275 ], [ 32.343750, 11.092166 ], [ 32.255859, 11.695273 ], [ 31.992188, 12.039321 ], [ 32.607422, 12.039321 ], [ 32.695312, 12.297068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.601142 ], [ 34.980469, 1.933227 ], [ 33.837891, 0.175781 ], [ 33.837891, -0.878872 ], [ 31.816406, -0.966751 ], [ 30.761719, -0.966751 ], [ 29.794922, -1.406109 ], [ 29.531250, -1.318243 ], [ 29.531250, -0.527336 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.615223 ], [ 30.410156, 1.669686 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.372369 ], [ 30.761719, 3.513421 ], [ 31.201172, 3.864255 ], [ 31.816406, 3.601142 ], [ 32.607422, 3.864255 ], [ 33.310547, 3.864255 ], [ 33.925781, 4.302591 ], [ 34.453125, 3.601142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 4.302591 ], [ 34.453125, 3.601142 ], [ 34.980469, 1.933227 ], [ 33.837891, 0.175781 ], [ 33.837891, -0.878872 ], [ 31.816406, -0.966751 ], [ 30.761719, -0.966751 ], [ 29.794922, -1.406109 ], [ 29.531250, -1.318243 ], [ 29.531250, -0.527336 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.615223 ], [ 30.410156, 1.669686 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.372369 ], [ 30.761719, 3.513421 ], [ 31.201172, 3.864255 ], [ 31.816406, 3.601142 ], [ 32.607422, 3.864255 ], [ 33.310547, 3.864255 ], [ 33.925781, 4.302591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.935547, 16.888660 ], [ 39.199219, 15.961329 ], [ 41.132812, 14.519780 ], [ 42.539062, 13.068777 ], [ 43.066406, 12.726084 ], [ 42.714844, 12.468760 ], [ 42.275391, 12.554564 ], [ 40.869141, 14.179186 ], [ 39.990234, 14.519780 ], [ 39.287109, 14.604847 ], [ 39.023438, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 15.029686 ], [ 37.529297, 14.264383 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.826172, 16.972741 ], [ 37.089844, 17.308688 ], [ 37.880859, 17.476432 ], [ 38.408203, 18.062312 ], [ 38.935547, 16.888660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.062312 ], [ 38.935547, 16.888660 ], [ 39.199219, 15.961329 ], [ 41.132812, 14.519780 ], [ 42.539062, 13.068777 ], [ 43.066406, 12.726084 ], [ 42.714844, 12.468760 ], [ 42.275391, 12.554564 ], [ 40.869141, 14.179186 ], [ 39.990234, 14.519780 ], [ 39.287109, 14.604847 ], [ 39.023438, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 15.029686 ], [ 37.529297, 14.264383 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.826172, 16.972741 ], [ 37.089844, 17.308688 ], [ 37.880859, 17.476432 ], [ 38.408203, 18.062312 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.468760 ], [ 43.242188, 12.039321 ], [ 42.714844, 11.781325 ], [ 43.066406, 11.523088 ], [ 42.714844, 11.005904 ], [ 42.539062, 11.178402 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.695273 ], [ 42.275391, 12.554564 ], [ 42.714844, 12.468760 ], [ 43.066406, 12.726084 ], [ 43.242188, 12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.242188, 12.468760 ], [ 43.242188, 12.039321 ], [ 42.714844, 11.781325 ], [ 43.066406, 11.523088 ], [ 42.714844, 11.005904 ], [ 42.539062, 11.178402 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.695273 ], [ 42.275391, 12.554564 ], [ 42.714844, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 5.353521 ], [ 35.771484, 4.828260 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.056641, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.693359, 4.302591 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.790990 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.021065 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.726562, -3.601142 ], [ 39.550781, -4.302591 ], [ 39.199219, -4.653080 ], [ 37.705078, -3.601142 ], [ 37.617188, -3.074695 ], [ 33.837891, -0.878872 ], [ 33.837891, 0.175781 ], [ 34.980469, 1.933227 ], [ 34.453125, 3.601142 ], [ 33.925781, 4.302591 ], [ 35.244141, 5.528511 ], [ 35.771484, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.244141, 5.528511 ], [ 35.771484, 5.353521 ], [ 35.771484, 4.828260 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.056641, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.693359, 4.302591 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.790990 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.021065 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.726562, -3.601142 ], [ 39.550781, -4.302591 ], [ 39.199219, -4.653080 ], [ 37.705078, -3.601142 ], [ 37.617188, -3.074695 ], [ 33.837891, -0.878872 ], [ 33.837891, 0.175781 ], [ 34.980469, 1.933227 ], [ 34.453125, 3.601142 ], [ 33.925781, 4.302591 ], [ 35.244141, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.023438, 14.774883 ], [ 39.287109, 14.604847 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.179186 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.660156, 11.695273 ], [ 41.748047, 11.092166 ], [ 42.539062, 11.178402 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 46.933594, 8.059230 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 42.714844, 4.302591 ], [ 42.099609, 4.302591 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.771484, 4.828260 ], [ 35.771484, 5.353521 ], [ 35.244141, 5.528511 ], [ 34.628906, 6.664608 ], [ 34.189453, 6.839170 ], [ 34.013672, 7.275292 ], [ 33.486328, 7.798079 ], [ 32.871094, 7.798079 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.925781, 8.754795 ], [ 33.925781, 9.622414 ], [ 34.189453, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.640338 ], [ 36.210938, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 15.029686 ], [ 38.496094, 14.519780 ], [ 39.023438, 14.774883 ], [ 39.287109, 14.604847 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.179186 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.660156, 11.695273 ], [ 41.748047, 11.092166 ], [ 42.539062, 11.178402 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 46.933594, 8.059230 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 42.714844, 4.302591 ], [ 42.099609, 4.302591 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.771484, 4.828260 ], [ 35.771484, 5.353521 ], [ 35.244141, 5.528511 ], [ 34.628906, 6.664608 ], [ 34.189453, 6.839170 ], [ 34.013672, 7.275292 ], [ 33.486328, 7.798079 ], [ 32.871094, 7.798079 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.925781, 8.754795 ], [ 33.925781, 9.622414 ], [ 34.189453, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.640338 ], [ 36.210938, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.103516, 54.162434 ], [ 72.158203, 54.418930 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.540307 ], [ 74.355469, 53.592505 ], [ 76.816406, 54.521081 ], [ 76.464844, 54.213861 ], [ 77.783203, 53.435719 ], [ 79.980469, 50.903033 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.847573 ], [ 83.320312, 51.124213 ], [ 83.847656, 50.903033 ], [ 84.375000, 50.345460 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.724479 ], [ 86.748047, 49.837982 ], [ 87.275391, 49.267805 ], [ 86.572266, 48.574790 ], [ 85.693359, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.078125, 47.040182 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.583290 ], [ 81.914062, 45.336702 ], [ 79.892578, 44.964798 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.553080 ], [ 79.101562, 42.875964 ], [ 75.937500, 43.004647 ], [ 75.585938, 42.940339 ], [ 74.179688, 43.325178 ], [ 73.564453, 43.133061 ], [ 73.476562, 42.553080 ], [ 71.806641, 42.875964 ], [ 71.103516, 42.747012 ], [ 70.927734, 42.293564 ], [ 70.312500, 42.098222 ], [ 68.994141, 41.442726 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 67.939453, 41.178654 ], [ 66.708984, 41.178654 ], [ 66.445312, 42.032974 ], [ 66.005859, 42.032974 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.771094 ], [ 61.962891, 43.516689 ], [ 60.996094, 44.465151 ], [ 58.447266, 45.644768 ], [ 55.898438, 45.026950 ], [ 55.898438, 41.310824 ], [ 55.371094, 41.310824 ], [ 54.667969, 42.098222 ], [ 54.052734, 42.358544 ], [ 52.910156, 42.163403 ], [ 52.470703, 41.836828 ], [ 52.382812, 42.032974 ], [ 52.646484, 42.488302 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.087585 ], [ 50.273438, 44.339565 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.119141, 45.460131 ], [ 52.998047, 45.274886 ], [ 53.173828, 46.255847 ], [ 52.998047, 46.860191 ], [ 52.031250, 46.860191 ], [ 51.152344, 47.100045 ], [ 50.009766, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.515625, 46.619261 ], [ 48.691406, 47.100045 ], [ 47.988281, 47.754098 ], [ 47.285156, 47.754098 ], [ 46.406250, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.669922, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.515625, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.712891, 51.727028 ], [ 52.294922, 51.727028 ], [ 55.634766, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.589844, 50.569283 ], [ 59.853516, 50.847573 ], [ 61.259766, 50.847573 ], [ 61.523438, 51.289406 ], [ 59.941406, 51.998410 ], [ 60.908203, 52.482780 ], [ 60.732422, 52.749594 ], [ 61.699219, 53.014783 ], [ 60.908203, 53.696706 ], [ 61.435547, 54.007769 ], [ 65.126953, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.115234, 54.977614 ], [ 68.994141, 55.429013 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.994141, 55.429013 ], [ 70.839844, 55.178868 ], [ 71.103516, 54.162434 ], [ 72.158203, 54.418930 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.540307 ], [ 74.355469, 53.592505 ], [ 76.816406, 54.521081 ], [ 76.464844, 54.213861 ], [ 77.783203, 53.435719 ], [ 79.980469, 50.903033 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.847573 ], [ 83.320312, 51.124213 ], [ 83.847656, 50.903033 ], [ 84.375000, 50.345460 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.724479 ], [ 86.748047, 49.837982 ], [ 87.275391, 49.267805 ], [ 86.572266, 48.574790 ], [ 85.693359, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.078125, 47.040182 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.583290 ], [ 81.914062, 45.336702 ], [ 79.892578, 44.964798 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.553080 ], [ 79.101562, 42.875964 ], [ 75.937500, 43.004647 ], [ 75.585938, 42.940339 ], [ 74.179688, 43.325178 ], [ 73.564453, 43.133061 ], [ 73.476562, 42.553080 ], [ 71.806641, 42.875964 ], [ 71.103516, 42.747012 ], [ 70.927734, 42.293564 ], [ 70.312500, 42.098222 ], [ 68.994141, 41.442726 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 67.939453, 41.178654 ], [ 66.708984, 41.178654 ], [ 66.445312, 42.032974 ], [ 66.005859, 42.032974 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.771094 ], [ 61.962891, 43.516689 ], [ 60.996094, 44.465151 ], [ 58.447266, 45.644768 ], [ 55.898438, 45.026950 ], [ 55.898438, 41.310824 ], [ 55.371094, 41.310824 ], [ 54.667969, 42.098222 ], [ 54.052734, 42.358544 ], [ 52.910156, 42.163403 ], [ 52.470703, 41.836828 ], [ 52.382812, 42.032974 ], [ 52.646484, 42.488302 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.087585 ], [ 50.273438, 44.339565 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.119141, 45.460131 ], [ 52.998047, 45.274886 ], [ 53.173828, 46.255847 ], [ 52.998047, 46.860191 ], [ 52.031250, 46.860191 ], [ 51.152344, 47.100045 ], [ 50.009766, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.515625, 46.619261 ], [ 48.691406, 47.100045 ], [ 47.988281, 47.754098 ], [ 47.285156, 47.754098 ], [ 46.406250, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.669922, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.515625, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.712891, 51.727028 ], [ 52.294922, 51.727028 ], [ 55.634766, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.589844, 50.569283 ], [ 59.853516, 50.847573 ], [ 61.259766, 50.847573 ], [ 61.523438, 51.289406 ], [ 59.941406, 51.998410 ], [ 60.908203, 52.482780 ], [ 60.732422, 52.749594 ], [ 61.699219, 53.014783 ], [ 60.908203, 53.696706 ], [ 61.435547, 54.007769 ], [ 65.126953, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.115234, 54.977614 ], [ 68.994141, 55.429013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.996094, 44.465151 ], [ 61.962891, 43.516689 ], [ 64.863281, 43.771094 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.708984, 41.178654 ], [ 67.939453, 41.178654 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.994141, 41.442726 ], [ 70.312500, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.191406, 42.228517 ], [ 70.400391, 41.574361 ], [ 71.103516, 41.178654 ], [ 71.806641, 41.442726 ], [ 73.037109, 40.913513 ], [ 71.718750, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.400391, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.780541 ], [ 68.994141, 40.111689 ], [ 68.466797, 39.571822 ], [ 67.675781, 39.639538 ], [ 67.412109, 39.164141 ], [ 68.115234, 38.959409 ], [ 68.378906, 38.203655 ], [ 67.763672, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.445312, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.959409 ], [ 62.314453, 40.111689 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.310824 ], [ 60.380859, 41.244772 ], [ 60.029297, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.811522 ], [ 57.744141, 42.228517 ], [ 56.865234, 41.836828 ], [ 57.041016, 41.376809 ], [ 55.898438, 41.310824 ], [ 55.898438, 45.026950 ], [ 58.447266, 45.644768 ], [ 60.996094, 44.465151 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.447266, 45.644768 ], [ 60.996094, 44.465151 ], [ 61.962891, 43.516689 ], [ 64.863281, 43.771094 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.708984, 41.178654 ], [ 67.939453, 41.178654 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.994141, 41.442726 ], [ 70.312500, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.191406, 42.228517 ], [ 70.400391, 41.574361 ], [ 71.103516, 41.178654 ], [ 71.806641, 41.442726 ], [ 73.037109, 40.913513 ], [ 71.718750, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.400391, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.780541 ], [ 68.994141, 40.111689 ], [ 68.466797, 39.571822 ], [ 67.675781, 39.639538 ], [ 67.412109, 39.164141 ], [ 68.115234, 38.959409 ], [ 68.378906, 38.203655 ], [ 67.763672, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.445312, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.959409 ], [ 62.314453, 40.111689 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.310824 ], [ 60.380859, 41.244772 ], [ 60.029297, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.811522 ], [ 57.744141, 42.228517 ], [ 56.865234, 41.836828 ], [ 57.041016, 41.376809 ], [ 55.898438, 41.310824 ], [ 55.898438, 45.026950 ], [ 58.447266, 45.644768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.585938, 42.940339 ], [ 75.937500, 43.004647 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.553080 ], [ 80.244141, 42.358544 ], [ 80.068359, 42.163403 ], [ 78.486328, 41.640078 ], [ 78.134766, 41.244772 ], [ 76.904297, 41.112469 ], [ 76.464844, 40.446947 ], [ 75.410156, 40.580585 ], [ 74.707031, 40.380028 ], [ 73.740234, 39.909736 ], [ 73.916016, 39.707187 ], [ 73.652344, 39.436193 ], [ 71.718750, 39.300299 ], [ 70.488281, 39.639538 ], [ 69.433594, 39.571822 ], [ 69.521484, 40.111689 ], [ 70.576172, 39.977120 ], [ 70.927734, 40.245992 ], [ 71.718750, 40.178873 ], [ 73.037109, 40.913513 ], [ 71.806641, 41.442726 ], [ 71.103516, 41.178654 ], [ 70.400391, 41.574361 ], [ 71.191406, 42.228517 ], [ 70.927734, 42.293564 ], [ 71.103516, 42.747012 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.553080 ], [ 73.564453, 43.133061 ], [ 74.179688, 43.325178 ], [ 75.585938, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.585938, 42.940339 ], [ 75.937500, 43.004647 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.553080 ], [ 80.244141, 42.358544 ], [ 80.068359, 42.163403 ], [ 78.486328, 41.640078 ], [ 78.134766, 41.244772 ], [ 76.904297, 41.112469 ], [ 76.464844, 40.446947 ], [ 75.410156, 40.580585 ], [ 74.707031, 40.380028 ], [ 73.740234, 39.909736 ], [ 73.916016, 39.707187 ], [ 73.652344, 39.436193 ], [ 71.718750, 39.300299 ], [ 70.488281, 39.639538 ], [ 69.433594, 39.571822 ], [ 69.521484, 40.111689 ], [ 70.576172, 39.977120 ], [ 70.927734, 40.245992 ], [ 71.718750, 40.178873 ], [ 73.037109, 40.913513 ], [ 71.806641, 41.442726 ], [ 71.103516, 41.178654 ], [ 70.400391, 41.574361 ], [ 71.191406, 42.228517 ], [ 70.927734, 42.293564 ], [ 71.103516, 42.747012 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.553080 ], [ 73.564453, 43.133061 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 41.046217 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.527344, 39.909736 ], [ 46.406250, 39.504041 ], [ 46.494141, 38.822591 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.774769 ], [ 44.736328, 39.774769 ], [ 44.384766, 40.044438 ], [ 43.593750, 40.313043 ], [ 43.681641, 40.780541 ], [ 43.505859, 41.112469 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.046217 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 41.310824 ], [ 45.175781, 41.046217 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.527344, 39.909736 ], [ 46.406250, 39.504041 ], [ 46.494141, 38.822591 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.774769 ], [ 44.736328, 39.774769 ], [ 44.384766, 40.044438 ], [ 43.593750, 40.313043 ], [ 43.681641, 40.780541 ], [ 43.505859, 41.112469 ], [ 44.912109, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.900391, 41.442726 ], [ 48.515625, 41.836828 ], [ 49.570312, 40.580585 ], [ 50.009766, 40.580585 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 49.218750, 39.095963 ], [ 48.779297, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.571822 ], [ 46.494141, 38.822591 ], [ 46.406250, 39.504041 ], [ 45.527344, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.847060 ], [ 45.175781, 41.046217 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.442726 ], [ 45.878906, 41.178654 ], [ 46.494141, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.142578, 41.771312 ], [ 46.318359, 41.902277 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.736328, 39.774769 ], [ 45.000000, 39.774769 ], [ 45.263672, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.318359, 41.902277 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.900391, 41.442726 ], [ 48.515625, 41.836828 ], [ 49.570312, 40.580585 ], [ 50.009766, 40.580585 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 49.218750, 39.095963 ], [ 48.779297, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.571822 ], [ 46.494141, 38.822591 ], [ 46.406250, 39.504041 ], [ 45.527344, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.847060 ], [ 45.175781, 41.046217 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.442726 ], [ 45.878906, 41.178654 ], [ 46.494141, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.142578, 41.771312 ], [ 46.318359, 41.902277 ] ] ], [ [ [ 45.000000, 39.774769 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.736328, 39.774769 ], [ 45.000000, 39.774769 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.822591 ], [ 47.636719, 39.571822 ], [ 47.988281, 39.639538 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.130859, 37.649034 ], [ 50.097656, 37.439974 ], [ 50.800781, 36.879621 ], [ 52.207031, 36.738884 ], [ 53.789062, 37.020098 ], [ 53.876953, 37.230328 ], [ 54.755859, 37.439974 ], [ 55.458984, 37.996163 ], [ 56.162109, 37.996163 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.065392 ], [ 58.359375, 37.579413 ], [ 59.150391, 37.439974 ], [ 60.292969, 36.597889 ], [ 61.083984, 36.527295 ], [ 61.171875, 35.675147 ], [ 60.468750, 33.724340 ], [ 60.908203, 33.578015 ], [ 60.468750, 32.990236 ], [ 60.820312, 32.249974 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.428663 ], [ 61.699219, 30.751278 ], [ 60.820312, 29.840644 ], [ 61.699219, 28.767659 ], [ 62.666016, 28.304381 ], [ 62.753906, 27.449790 ], [ 63.193359, 27.293689 ], [ 63.281250, 26.824071 ], [ 61.787109, 26.273714 ], [ 61.435547, 25.085599 ], [ 57.392578, 25.799891 ], [ 56.953125, 26.980829 ], [ 56.425781, 27.215556 ], [ 55.722656, 26.980829 ], [ 54.667969, 26.509905 ], [ 53.437500, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.916767 ], [ 50.097656, 30.221102 ], [ 49.570312, 29.993002 ], [ 48.867188, 30.372875 ], [ 48.515625, 29.993002 ], [ 47.988281, 30.524413 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.812500, 31.728167 ], [ 47.285156, 32.472695 ], [ 46.054688, 33.063924 ], [ 45.351562, 34.016242 ], [ 45.615234, 34.813803 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.746512 ], [ 45.351562, 36.031332 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.341656 ], [ 44.033203, 39.436193 ], [ 44.736328, 39.774769 ], [ 44.912109, 39.368279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.736328, 39.774769 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.822591 ], [ 47.636719, 39.571822 ], [ 47.988281, 39.639538 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.130859, 37.649034 ], [ 50.097656, 37.439974 ], [ 50.800781, 36.879621 ], [ 52.207031, 36.738884 ], [ 53.789062, 37.020098 ], [ 53.876953, 37.230328 ], [ 54.755859, 37.439974 ], [ 55.458984, 37.996163 ], [ 56.162109, 37.996163 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.065392 ], [ 58.359375, 37.579413 ], [ 59.150391, 37.439974 ], [ 60.292969, 36.597889 ], [ 61.083984, 36.527295 ], [ 61.171875, 35.675147 ], [ 60.468750, 33.724340 ], [ 60.908203, 33.578015 ], [ 60.468750, 32.990236 ], [ 60.820312, 32.249974 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.428663 ], [ 61.699219, 30.751278 ], [ 60.820312, 29.840644 ], [ 61.699219, 28.767659 ], [ 62.666016, 28.304381 ], [ 62.753906, 27.449790 ], [ 63.193359, 27.293689 ], [ 63.281250, 26.824071 ], [ 61.787109, 26.273714 ], [ 61.435547, 25.085599 ], [ 57.392578, 25.799891 ], [ 56.953125, 26.980829 ], [ 56.425781, 27.215556 ], [ 55.722656, 26.980829 ], [ 54.667969, 26.509905 ], [ 53.437500, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.916767 ], [ 50.097656, 30.221102 ], [ 49.570312, 29.993002 ], [ 48.867188, 30.372875 ], [ 48.515625, 29.993002 ], [ 47.988281, 30.524413 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.812500, 31.728167 ], [ 47.285156, 32.472695 ], [ 46.054688, 33.063924 ], [ 45.351562, 34.016242 ], [ 45.615234, 34.813803 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.746512 ], [ 45.351562, 36.031332 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.341656 ], [ 44.033203, 39.436193 ], [ 44.736328, 39.774769 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.900391, 29.993002 ], [ 48.339844, 28.613459 ], [ 47.636719, 28.536275 ], [ 47.373047, 29.075375 ], [ 46.494141, 29.152161 ], [ 47.285156, 30.069094 ], [ 47.900391, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.900391, 29.993002 ], [ 48.339844, 28.613459 ], [ 47.636719, 28.536275 ], [ 47.373047, 29.075375 ], [ 46.494141, 29.152161 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.341797, 31.952162 ], [ 41.835938, 31.203405 ], [ 44.648438, 29.228890 ], [ 47.373047, 29.075375 ], [ 47.636719, 28.536275 ], [ 48.339844, 28.613459 ], [ 48.779297, 27.761330 ], [ 49.218750, 27.527758 ], [ 49.394531, 27.137368 ], [ 50.097656, 26.745610 ], [ 50.097656, 25.958045 ], [ 50.185547, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.064453, 24.607069 ], [ 51.328125, 24.686952 ], [ 51.943359, 23.079732 ], [ 54.931641, 22.512557 ], [ 55.195312, 22.755921 ], [ 55.634766, 22.024546 ], [ 54.931641, 20.055931 ], [ 51.943359, 19.062118 ], [ 49.042969, 18.646245 ], [ 48.164062, 18.229351 ], [ 47.460938, 17.140790 ], [ 46.933594, 16.972741 ], [ 46.669922, 17.308688 ], [ 46.318359, 17.308688 ], [ 45.175781, 17.476432 ], [ 43.769531, 17.392579 ], [ 43.330078, 17.644022 ], [ 43.066406, 17.140790 ], [ 43.154297, 16.720385 ], [ 42.714844, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.275391, 17.140790 ], [ 42.187500, 17.476432 ], [ 41.748047, 17.895114 ], [ 41.220703, 18.729502 ], [ 40.869141, 19.559790 ], [ 40.166016, 20.220966 ], [ 39.726562, 20.385825 ], [ 39.111328, 21.371244 ], [ 39.023438, 22.593726 ], [ 38.408203, 23.725012 ], [ 37.968750, 24.126702 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.878994 ], [ 36.210938, 26.588527 ], [ 35.068359, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.892578, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.916852 ], [ 37.441406, 30.069094 ], [ 37.617188, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.578535 ], [ 38.935547, 32.026706 ], [ 39.111328, 32.175612 ], [ 40.341797, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 32.175612 ], [ 40.341797, 31.952162 ], [ 41.835938, 31.203405 ], [ 44.648438, 29.228890 ], [ 47.373047, 29.075375 ], [ 47.636719, 28.536275 ], [ 48.339844, 28.613459 ], [ 48.779297, 27.761330 ], [ 49.218750, 27.527758 ], [ 49.394531, 27.137368 ], [ 50.097656, 26.745610 ], [ 50.097656, 25.958045 ], [ 50.185547, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.064453, 24.607069 ], [ 51.328125, 24.686952 ], [ 51.943359, 23.079732 ], [ 54.931641, 22.512557 ], [ 55.195312, 22.755921 ], [ 55.634766, 22.024546 ], [ 54.931641, 20.055931 ], [ 51.943359, 19.062118 ], [ 49.042969, 18.646245 ], [ 48.164062, 18.229351 ], [ 47.460938, 17.140790 ], [ 46.933594, 16.972741 ], [ 46.669922, 17.308688 ], [ 46.318359, 17.308688 ], [ 45.175781, 17.476432 ], [ 43.769531, 17.392579 ], [ 43.330078, 17.644022 ], [ 43.066406, 17.140790 ], [ 43.154297, 16.720385 ], [ 42.714844, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.275391, 17.140790 ], [ 42.187500, 17.476432 ], [ 41.748047, 17.895114 ], [ 41.220703, 18.729502 ], [ 40.869141, 19.559790 ], [ 40.166016, 20.220966 ], [ 39.726562, 20.385825 ], [ 39.111328, 21.371244 ], [ 39.023438, 22.593726 ], [ 38.408203, 23.725012 ], [ 37.968750, 24.126702 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.878994 ], [ 36.210938, 26.588527 ], [ 35.068359, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.892578, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.916852 ], [ 37.441406, 30.069094 ], [ 37.617188, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.578535 ], [ 38.935547, 32.026706 ], [ 39.111328, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.503906, 25.878994 ], [ 51.591797, 25.244696 ], [ 51.328125, 24.686952 ], [ 51.064453, 24.607069 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.240234, 26.115986 ], [ 51.503906, 25.878994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.240234, 26.115986 ], [ 51.503906, 25.878994 ], [ 51.591797, 25.244696 ], [ 51.328125, 24.686952 ], [ 51.064453, 24.607069 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.240234, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.722656, 24.287027 ], [ 55.898438, 24.206890 ], [ 55.458984, 23.966176 ], [ 55.458984, 23.563987 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 51.679688, 24.367114 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.722656, 24.287027 ], [ 55.898438, 24.206890 ], [ 55.458984, 23.966176 ], [ 55.458984, 23.563987 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 51.679688, 24.367114 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, 42.163403 ], [ 54.052734, 42.358544 ], [ 54.667969, 42.098222 ], [ 55.371094, 41.310824 ], [ 57.041016, 41.376809 ], [ 56.865234, 41.836828 ], [ 57.744141, 42.228517 ], [ 58.623047, 42.811522 ], [ 59.941406, 42.228517 ], [ 60.029297, 41.442726 ], [ 60.380859, 41.244772 ], [ 61.523438, 41.310824 ], [ 61.875000, 41.112469 ], [ 62.314453, 40.111689 ], [ 64.160156, 38.959409 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.445312, 37.370157 ], [ 66.181641, 37.439974 ], [ 65.742188, 37.718590 ], [ 65.566406, 37.370157 ], [ 64.687500, 37.160317 ], [ 64.511719, 36.315125 ], [ 63.896484, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.929688, 35.460670 ], [ 62.226562, 35.317366 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 60.292969, 36.597889 ], [ 59.150391, 37.439974 ], [ 58.359375, 37.579413 ], [ 57.304688, 38.065392 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.996163 ], [ 55.458984, 37.996163 ], [ 54.755859, 37.439974 ], [ 53.876953, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.244772 ], [ 52.470703, 41.836828 ], [ 52.910156, 42.163403 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.811522 ], [ 59.941406, 42.228517 ], [ 60.029297, 41.442726 ], [ 60.380859, 41.244772 ], [ 61.523438, 41.310824 ], [ 61.875000, 41.112469 ], [ 62.314453, 40.111689 ], [ 64.160156, 38.959409 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.445312, 37.370157 ], [ 66.181641, 37.439974 ], [ 65.742188, 37.718590 ], [ 65.566406, 37.370157 ], [ 64.687500, 37.160317 ], [ 64.511719, 36.315125 ], [ 63.896484, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.929688, 35.460670 ], [ 62.226562, 35.317366 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 60.292969, 36.597889 ], [ 59.150391, 37.439974 ], [ 58.359375, 37.579413 ], [ 57.304688, 38.065392 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.996163 ], [ 55.458984, 37.996163 ], [ 54.755859, 37.439974 ], [ 53.876953, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.178654 ], [ 52.470703, 41.836828 ], [ 52.910156, 42.163403 ], [ 54.052734, 42.358544 ], [ 54.667969, 42.098222 ], [ 55.371094, 41.310824 ], [ 57.041016, 41.376809 ], [ 56.865234, 41.836828 ], [ 57.744141, 42.228517 ], [ 58.623047, 42.811522 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 49.570312, 14.774883 ], [ 48.603516, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.285156, 13.667338 ], [ 45.615234, 13.325485 ], [ 44.912109, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 43.154297, 13.239945 ], [ 43.242188, 13.838080 ], [ 42.890625, 14.859850 ], [ 42.539062, 15.284185 ], [ 42.802734, 15.284185 ], [ 42.626953, 15.792254 ], [ 42.802734, 15.961329 ], [ 42.714844, 16.383391 ], [ 43.154297, 16.720385 ], [ 43.066406, 17.140790 ], [ 43.330078, 17.644022 ], [ 43.769531, 17.392579 ], [ 45.175781, 17.476432 ], [ 46.318359, 17.308688 ], [ 46.669922, 17.308688 ], [ 46.933594, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.229351 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 49.570312, 14.774883 ], [ 48.603516, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.285156, 13.667338 ], [ 45.615234, 13.325485 ], [ 44.912109, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 43.154297, 13.239945 ], [ 43.242188, 13.838080 ], [ 42.890625, 14.859850 ], [ 42.539062, 15.284185 ], [ 42.802734, 15.284185 ], [ 42.626953, 15.792254 ], [ 42.802734, 15.961329 ], [ 42.714844, 16.383391 ], [ 43.154297, 16.720385 ], [ 43.066406, 17.140790 ], [ 43.330078, 17.644022 ], [ 43.769531, 17.392579 ], [ 45.175781, 17.476432 ], [ 46.318359, 17.308688 ], [ 46.669922, 17.308688 ], [ 46.933594, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.229351 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.777344, 24.287027 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.644524 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.350076 ], [ 59.238281, 21.453069 ], [ 58.798828, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.550509 ], [ 57.744141, 20.303418 ], [ 57.656250, 19.808054 ], [ 57.744141, 19.145168 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.646245 ], [ 56.425781, 18.145852 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.308688 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.525391, 16.720385 ], [ 53.085938, 16.720385 ], [ 51.943359, 19.062118 ], [ 54.931641, 20.055931 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.755921 ], [ 55.195312, 23.160563 ], [ 55.458984, 23.563987 ], [ 55.458984, 23.966176 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.287027 ], [ 55.810547, 24.926295 ], [ 56.337891, 24.926295 ], [ 56.777344, 24.287027 ] ] ], [ [ [ 56.425781, 26.352498 ], [ 56.337891, 25.958045 ], [ 56.250000, 25.720735 ], [ 55.986328, 26.115986 ], [ 56.337891, 26.431228 ], [ 56.425781, 26.352498 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.337891, 24.926295 ], [ 56.777344, 24.287027 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.644524 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.350076 ], [ 59.238281, 21.453069 ], [ 58.798828, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.550509 ], [ 57.744141, 20.303418 ], [ 57.656250, 19.808054 ], [ 57.744141, 19.145168 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.646245 ], [ 56.425781, 18.145852 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.308688 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.525391, 16.720385 ], [ 53.085938, 16.720385 ], [ 51.943359, 19.062118 ], [ 54.931641, 20.055931 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.755921 ], [ 55.195312, 23.160563 ], [ 55.458984, 23.563987 ], [ 55.458984, 23.966176 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.287027 ], [ 55.810547, 24.926295 ], [ 56.337891, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.425781, 26.352498 ], [ 56.337891, 25.958045 ], [ 56.250000, 25.720735 ], [ 55.986328, 26.115986 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 11.350797 ], [ 43.593750, 10.919618 ], [ 44.033203, 10.487812 ], [ 44.560547, 10.487812 ], [ 46.582031, 10.833306 ], [ 48.339844, 11.436955 ], [ 48.867188, 11.436955 ], [ 48.867188, 9.535749 ], [ 47.724609, 8.059230 ], [ 46.933594, 8.059230 ], [ 43.593750, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.066406, 11.523088 ], [ 43.417969, 11.350797 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 11.523088 ], [ 43.417969, 11.350797 ], [ 43.593750, 10.919618 ], [ 44.033203, 10.487812 ], [ 44.560547, 10.487812 ], [ 46.582031, 10.833306 ], [ 48.339844, 11.436955 ], [ 48.867188, 11.436955 ], [ 48.867188, 9.535749 ], [ 47.724609, 8.059230 ], [ 46.933594, 8.059230 ], [ 43.593750, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.066406, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 10.660608 ], [ 50.009766, 8.146243 ], [ 48.515625, 5.353521 ], [ 46.494141, 2.899153 ], [ 43.066406, 0.351560 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.790990 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.302591 ], [ 42.714844, 4.302591 ], [ 43.593750, 5.003394 ], [ 44.912109, 5.003394 ], [ 47.724609, 8.059230 ], [ 48.867188, 9.535749 ], [ 48.867188, 11.436955 ], [ 49.658203, 11.609193 ], [ 50.185547, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.064453, 12.039321 ], [ 50.976562, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.064453, 12.039321 ], [ 50.976562, 10.660608 ], [ 50.009766, 8.146243 ], [ 48.515625, 5.353521 ], [ 46.494141, 2.899153 ], [ 43.066406, 0.351560 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.790990 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.302591 ], [ 42.714844, 4.302591 ], [ 43.593750, 5.003394 ], [ 44.912109, 5.003394 ], [ 47.724609, 8.059230 ], [ 48.867188, 9.535749 ], [ 48.867188, 11.436955 ], [ 49.658203, 11.609193 ], [ 50.185547, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.064453, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.400391, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 70.488281, 39.639538 ], [ 71.718750, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.179688, 38.616870 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 72.597656, 37.090240 ], [ 71.806641, 36.738884 ], [ 71.367188, 37.090240 ], [ 71.455078, 37.926868 ], [ 71.191406, 37.996163 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 70.312500, 38.203655 ], [ 70.048828, 37.649034 ], [ 69.433594, 37.649034 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.090240 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 68.994141, 40.111689 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 70.488281, 39.639538 ], [ 71.718750, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.179688, 38.616870 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 72.597656, 37.090240 ], [ 71.806641, 36.738884 ], [ 71.367188, 37.090240 ], [ 71.455078, 37.926868 ], [ 71.191406, 37.996163 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 70.312500, 38.203655 ], [ 70.048828, 37.649034 ], [ 69.433594, 37.649034 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.090240 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 68.994141, 40.111689 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.279297, 38.272689 ], [ 71.191406, 37.996163 ], [ 71.455078, 37.926868 ], [ 71.367188, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.090240 ], [ 73.212891, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.003906, 36.879621 ], [ 71.806641, 36.527295 ], [ 71.191406, 36.102376 ], [ 71.542969, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.103516, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.873047, 34.089061 ], [ 70.312500, 33.431441 ], [ 69.609375, 33.137551 ], [ 69.257812, 32.546813 ], [ 69.257812, 31.952162 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.653381 ], [ 67.675781, 31.353637 ], [ 66.884766, 31.353637 ], [ 66.357422, 30.751278 ], [ 66.269531, 29.916852 ], [ 65.039062, 29.535230 ], [ 64.335938, 29.611670 ], [ 64.072266, 29.382175 ], [ 63.544922, 29.535230 ], [ 62.490234, 29.382175 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.249974 ], [ 60.468750, 32.990236 ], [ 60.908203, 33.578015 ], [ 60.468750, 33.724340 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.317366 ], [ 62.929688, 35.460670 ], [ 63.193359, 35.889050 ], [ 63.896484, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.687500, 37.160317 ], [ 65.566406, 37.370157 ], [ 65.742188, 37.718590 ], [ 66.181641, 37.439974 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.090240 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.433594, 37.649034 ], [ 70.048828, 37.649034 ], [ 70.312500, 38.203655 ], [ 70.751953, 38.548165 ], [ 71.279297, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.751953, 38.548165 ], [ 71.279297, 38.272689 ], [ 71.191406, 37.996163 ], [ 71.455078, 37.926868 ], [ 71.367188, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.090240 ], [ 73.212891, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.003906, 36.879621 ], [ 71.806641, 36.527295 ], [ 71.191406, 36.102376 ], [ 71.542969, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.103516, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.873047, 34.089061 ], [ 70.312500, 33.431441 ], [ 69.609375, 33.137551 ], [ 69.257812, 32.546813 ], [ 69.257812, 31.952162 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.653381 ], [ 67.675781, 31.353637 ], [ 66.884766, 31.353637 ], [ 66.357422, 30.751278 ], [ 66.269531, 29.916852 ], [ 65.039062, 29.535230 ], [ 64.335938, 29.611670 ], [ 64.072266, 29.382175 ], [ 63.544922, 29.535230 ], [ 62.490234, 29.382175 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.249974 ], [ 60.468750, 32.990236 ], [ 60.908203, 33.578015 ], [ 60.468750, 33.724340 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.317366 ], [ 62.929688, 35.460670 ], [ 63.193359, 35.889050 ], [ 63.896484, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.687500, 37.160317 ], [ 65.566406, 37.370157 ], [ 65.742188, 37.718590 ], [ 66.181641, 37.439974 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.090240 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.433594, 37.649034 ], [ 70.048828, 37.649034 ], [ 70.312500, 38.203655 ], [ 70.751953, 38.548165 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.849609, 36.668419 ], [ 76.113281, 35.960223 ], [ 77.783203, 35.532226 ], [ 76.816406, 34.669359 ], [ 75.673828, 34.524661 ], [ 74.179688, 34.813803 ], [ 73.740234, 34.379713 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.324276 ], [ 74.355469, 31.728167 ], [ 74.355469, 31.052934 ], [ 73.388672, 29.993002 ], [ 72.773438, 28.998532 ], [ 71.718750, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.433594, 26.980829 ], [ 70.136719, 26.509905 ], [ 70.224609, 25.799891 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.115234, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.060547, 24.686952 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 63.193359, 27.293689 ], [ 62.753906, 27.449790 ], [ 62.666016, 28.304381 ], [ 61.699219, 28.767659 ], [ 60.820312, 29.840644 ], [ 62.490234, 29.382175 ], [ 63.544922, 29.535230 ], [ 64.072266, 29.382175 ], [ 64.335938, 29.611670 ], [ 65.039062, 29.535230 ], [ 66.269531, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.884766, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.763672, 31.653381 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.257812, 31.952162 ], [ 69.257812, 32.546813 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.431441 ], [ 69.873047, 34.089061 ], [ 70.839844, 34.016242 ], [ 71.103516, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.542969, 35.173808 ], [ 71.191406, 36.102376 ], [ 71.806641, 36.527295 ], [ 74.003906, 36.879621 ], [ 75.146484, 37.160317 ], [ 75.849609, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.849609, 36.668419 ], [ 76.113281, 35.960223 ], [ 77.783203, 35.532226 ], [ 76.816406, 34.669359 ], [ 75.673828, 34.524661 ], [ 74.179688, 34.813803 ], [ 73.740234, 34.379713 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.324276 ], [ 74.355469, 31.728167 ], [ 74.355469, 31.052934 ], [ 73.388672, 29.993002 ], [ 72.773438, 28.998532 ], [ 71.718750, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.433594, 26.980829 ], [ 70.136719, 26.509905 ], [ 70.224609, 25.799891 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.115234, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.060547, 24.686952 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 63.193359, 27.293689 ], [ 62.753906, 27.449790 ], [ 62.666016, 28.304381 ], [ 61.699219, 28.767659 ], [ 60.820312, 29.840644 ], [ 62.490234, 29.382175 ], [ 63.544922, 29.535230 ], [ 64.072266, 29.382175 ], [ 64.335938, 29.611670 ], [ 65.039062, 29.535230 ], [ 66.269531, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.884766, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.763672, 31.653381 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.257812, 31.952162 ], [ 69.257812, 32.546813 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.431441 ], [ 69.873047, 34.089061 ], [ 70.839844, 34.016242 ], [ 71.103516, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.542969, 35.173808 ], [ 71.191406, 36.102376 ], [ 71.806641, 36.527295 ], [ 74.003906, 36.879621 ], [ 75.146484, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 83.320312, 29.535230 ], [ 83.847656, 29.382175 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.690588 ], [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 27.449790 ], [ 88.154297, 26.824071 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.166016, 26.745610 ], [ 84.638672, 27.293689 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 80.419922, 29.764377 ], [ 81.474609, 30.448674 ], [ 82.265625, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.474609, 30.448674 ], [ 82.265625, 30.145127 ], [ 83.320312, 29.535230 ], [ 83.847656, 29.382175 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.690588 ], [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 27.449790 ], [ 88.154297, 26.824071 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.166016, 26.745610 ], [ 84.638672, 27.293689 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 80.419922, 29.764377 ], [ 81.474609, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.837891, 34.379713 ], [ 78.750000, 33.578015 ], [ 79.189453, 33.063924 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.620870 ], [ 78.662109, 31.578535 ], [ 81.035156, 30.221102 ], [ 80.419922, 29.764377 ], [ 80.068359, 28.844674 ], [ 83.232422, 27.371767 ], [ 84.638672, 27.293689 ], [ 85.166016, 26.745610 ], [ 87.187500, 26.431228 ], [ 87.978516, 26.431228 ], [ 88.154297, 26.824071 ], [ 87.978516, 27.449790 ], [ 88.066406, 27.916767 ], [ 88.681641, 28.149503 ], [ 88.769531, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.902477 ], [ 92.021484, 27.527758 ], [ 91.669922, 27.839076 ], [ 92.460938, 27.916767 ], [ 93.339844, 28.690588 ], [ 94.482422, 29.305561 ], [ 95.361328, 29.075375 ], [ 96.064453, 29.458731 ], [ 96.503906, 28.844674 ], [ 96.240234, 28.459033 ], [ 97.294922, 28.304381 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.761330 ], [ 97.119141, 27.137368 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.097656, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.482422, 24.686952 ], [ 94.042969, 23.885838 ], [ 93.251953, 24.126702 ], [ 93.251953, 23.079732 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.350076 ], [ 92.636719, 22.105999 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.563987 ], [ 91.406250, 24.126702 ], [ 91.845703, 24.206890 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.324167 ], [ 89.824219, 26.037042 ], [ 89.296875, 26.037042 ], [ 88.505859, 26.509905 ], [ 88.154297, 25.799891 ], [ 88.857422, 25.244696 ], [ 88.242188, 24.926295 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.287027 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.945312, 22.105999 ], [ 88.857422, 21.698265 ], [ 86.923828, 21.534847 ], [ 87.011719, 20.797201 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.636192 ], [ 80.771484, 15.961329 ], [ 80.244141, 15.961329 ], [ 79.980469, 15.199386 ], [ 80.244141, 13.068777 ], [ 79.804688, 12.125264 ], [ 79.804688, 10.401378 ], [ 79.277344, 10.314919 ], [ 78.837891, 9.622414 ], [ 79.189453, 9.275622 ], [ 78.222656, 9.015302 ], [ 77.871094, 8.320212 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.673828, 11.350797 ], [ 74.794922, 12.811801 ], [ 74.443359, 14.689881 ], [ 73.476562, 16.045813 ], [ 72.773438, 19.228177 ], [ 72.773438, 20.468189 ], [ 72.597656, 21.371244 ], [ 71.103516, 20.797201 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.224609, 25.799891 ], [ 70.136719, 26.509905 ], [ 69.433594, 26.980829 ], [ 70.576172, 27.994401 ], [ 71.718750, 27.916767 ], [ 72.773438, 28.998532 ], [ 73.388672, 29.993002 ], [ 74.355469, 31.052934 ], [ 74.355469, 31.728167 ], [ 75.234375, 32.324276 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.379713 ], [ 74.179688, 34.813803 ], [ 75.673828, 34.524661 ], [ 76.816406, 34.669359 ], [ 77.783203, 35.532226 ], [ 78.837891, 34.379713 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.783203, 35.532226 ], [ 78.837891, 34.379713 ], [ 78.750000, 33.578015 ], [ 79.189453, 33.063924 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.620870 ], [ 78.662109, 31.578535 ], [ 81.035156, 30.221102 ], [ 80.419922, 29.764377 ], [ 80.068359, 28.844674 ], [ 83.232422, 27.371767 ], [ 84.638672, 27.293689 ], [ 85.166016, 26.745610 ], [ 87.187500, 26.431228 ], [ 87.978516, 26.431228 ], [ 88.154297, 26.824071 ], [ 87.978516, 27.449790 ], [ 88.066406, 27.916767 ], [ 88.681641, 28.149503 ], [ 88.769531, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.902477 ], [ 92.021484, 27.527758 ], [ 91.669922, 27.839076 ], [ 92.460938, 27.916767 ], [ 93.339844, 28.690588 ], [ 94.482422, 29.305561 ], [ 95.361328, 29.075375 ], [ 96.064453, 29.458731 ], [ 96.503906, 28.844674 ], [ 96.240234, 28.459033 ], [ 97.294922, 28.304381 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.761330 ], [ 97.119141, 27.137368 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.097656, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.482422, 24.686952 ], [ 94.042969, 23.885838 ], [ 93.251953, 24.126702 ], [ 93.251953, 23.079732 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.350076 ], [ 92.636719, 22.105999 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.563987 ], [ 91.406250, 24.126702 ], [ 91.845703, 24.206890 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.324167 ], [ 89.824219, 26.037042 ], [ 89.296875, 26.037042 ], [ 88.505859, 26.509905 ], [ 88.154297, 25.799891 ], [ 88.857422, 25.244696 ], [ 88.242188, 24.926295 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.287027 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.945312, 22.105999 ], [ 88.857422, 21.698265 ], [ 86.923828, 21.534847 ], [ 87.011719, 20.797201 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.636192 ], [ 80.771484, 15.961329 ], [ 80.244141, 15.961329 ], [ 79.980469, 15.199386 ], [ 80.244141, 13.068777 ], [ 79.804688, 12.125264 ], [ 79.804688, 10.401378 ], [ 79.277344, 10.314919 ], [ 78.837891, 9.622414 ], [ 79.189453, 9.275622 ], [ 78.222656, 9.015302 ], [ 77.871094, 8.320212 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.673828, 11.350797 ], [ 74.794922, 12.811801 ], [ 74.443359, 14.689881 ], [ 73.476562, 16.045813 ], [ 72.773438, 19.228177 ], [ 72.773438, 20.468189 ], [ 72.597656, 21.371244 ], [ 71.103516, 20.797201 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.224609, 25.799891 ], [ 70.136719, 26.509905 ], [ 69.433594, 26.980829 ], [ 70.576172, 27.994401 ], [ 71.718750, 27.916767 ], [ 72.773438, 28.998532 ], [ 73.388672, 29.993002 ], [ 74.355469, 31.052934 ], [ 74.355469, 31.728167 ], [ 75.234375, 32.324276 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.379713 ], [ 74.179688, 34.813803 ], [ 75.673828, 34.524661 ], [ 76.816406, 34.669359 ], [ 77.783203, 35.532226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.053161 ], [ 79.804688, 6.839170 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.053161 ], [ 79.804688, 6.839170 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.931641, 51.672555 ], [ 102.041016, 51.289406 ], [ 102.216797, 50.513427 ], [ 103.623047, 50.120578 ], [ 105.820312, 50.457504 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.837982 ], [ 108.457031, 49.325122 ], [ 109.335938, 49.325122 ], [ 110.654297, 49.152970 ], [ 111.533203, 49.382373 ], [ 112.851562, 49.553726 ], [ 114.345703, 50.289339 ], [ 114.960938, 50.176898 ], [ 115.400391, 49.837982 ], [ 116.630859, 49.894634 ], [ 115.400391, 48.166085 ], [ 115.664062, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.246094, 47.754098 ], [ 118.037109, 48.107431 ], [ 118.828125, 47.754098 ], [ 119.707031, 47.100045 ], [ 119.619141, 46.739861 ], [ 118.828125, 46.860191 ], [ 117.333984, 46.679594 ], [ 116.630859, 46.437857 ], [ 115.927734, 45.767523 ], [ 114.433594, 45.398450 ], [ 113.378906, 44.840291 ], [ 111.796875, 45.151053 ], [ 111.269531, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.452919 ], [ 110.390625, 42.875964 ], [ 109.160156, 42.553080 ], [ 107.666016, 42.488302 ], [ 106.083984, 42.163403 ], [ 104.941406, 41.640078 ], [ 104.501953, 41.967659 ], [ 103.271484, 41.967659 ], [ 101.777344, 42.553080 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.382812, 42.811522 ], [ 96.328125, 42.747012 ], [ 95.712891, 43.325178 ], [ 95.273438, 44.276671 ], [ 94.658203, 44.402392 ], [ 93.427734, 45.026950 ], [ 90.878906, 45.336702 ], [ 90.527344, 45.767523 ], [ 90.966797, 46.920255 ], [ 90.263672, 47.694974 ], [ 88.769531, 48.107431 ], [ 87.978516, 48.632909 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.847573 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.513427 ], [ 94.746094, 50.064192 ], [ 95.800781, 50.007739 ], [ 97.207031, 49.781264 ], [ 98.173828, 50.457504 ], [ 97.822266, 51.013755 ], [ 98.789062, 52.052490 ], [ 99.931641, 51.672555 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.789062, 52.052490 ], [ 99.931641, 51.672555 ], [ 102.041016, 51.289406 ], [ 102.216797, 50.513427 ], [ 103.623047, 50.120578 ], [ 105.820312, 50.457504 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.837982 ], [ 108.457031, 49.325122 ], [ 109.335938, 49.325122 ], [ 110.654297, 49.152970 ], [ 111.533203, 49.382373 ], [ 112.851562, 49.553726 ], [ 114.345703, 50.289339 ], [ 114.960938, 50.176898 ], [ 115.400391, 49.837982 ], [ 116.630859, 49.894634 ], [ 115.400391, 48.166085 ], [ 115.664062, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.246094, 47.754098 ], [ 118.037109, 48.107431 ], [ 118.828125, 47.754098 ], [ 119.707031, 47.100045 ], [ 119.619141, 46.739861 ], [ 118.828125, 46.860191 ], [ 117.333984, 46.679594 ], [ 116.630859, 46.437857 ], [ 115.927734, 45.767523 ], [ 114.433594, 45.398450 ], [ 113.378906, 44.840291 ], [ 111.796875, 45.151053 ], [ 111.269531, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.452919 ], [ 110.390625, 42.875964 ], [ 109.160156, 42.553080 ], [ 107.666016, 42.488302 ], [ 106.083984, 42.163403 ], [ 104.941406, 41.640078 ], [ 104.501953, 41.967659 ], [ 103.271484, 41.967659 ], [ 101.777344, 42.553080 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.382812, 42.811522 ], [ 96.328125, 42.747012 ], [ 95.712891, 43.325178 ], [ 95.273438, 44.276671 ], [ 94.658203, 44.402392 ], [ 93.427734, 45.026950 ], [ 90.878906, 45.336702 ], [ 90.527344, 45.767523 ], [ 90.966797, 46.920255 ], [ 90.263672, 47.694974 ], [ 88.769531, 48.107431 ], [ 87.978516, 48.632909 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.847573 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.513427 ], [ 94.746094, 50.064192 ], [ 95.800781, 50.007739 ], [ 97.207031, 49.781264 ], [ 98.173828, 50.457504 ], [ 97.822266, 51.013755 ], [ 98.789062, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.839076 ], [ 92.021484, 27.527758 ], [ 92.021484, 26.902477 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.769531, 27.137368 ], [ 88.769531, 27.371767 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.839076 ], [ 92.021484, 27.527758 ], [ 92.021484, 26.902477 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.769531, 27.137368 ], [ 88.769531, 27.371767 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.296875, 26.037042 ], [ 89.824219, 26.037042 ], [ 89.912109, 25.324167 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.845703, 24.206890 ], [ 91.406250, 24.126702 ], [ 91.142578, 23.563987 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.105999 ], [ 92.636719, 21.371244 ], [ 92.285156, 21.534847 ], [ 92.285156, 20.715015 ], [ 92.021484, 21.207459 ], [ 91.757812, 22.187405 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.527344, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.105999 ], [ 89.648438, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.287027 ], [ 88.066406, 24.527135 ], [ 88.242188, 24.926295 ], [ 88.857422, 25.244696 ], [ 88.154297, 25.799891 ], [ 88.505859, 26.509905 ], [ 89.296875, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.505859, 26.509905 ], [ 89.296875, 26.037042 ], [ 89.824219, 26.037042 ], [ 89.912109, 25.324167 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.845703, 24.206890 ], [ 91.406250, 24.126702 ], [ 91.142578, 23.563987 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.105999 ], [ 92.636719, 21.371244 ], [ 92.285156, 21.534847 ], [ 92.285156, 20.715015 ], [ 92.021484, 21.207459 ], [ 91.757812, 22.187405 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.527344, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.105999 ], [ 89.648438, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.287027 ], [ 88.066406, 24.527135 ], [ 88.242188, 24.926295 ], [ 88.857422, 25.244696 ], [ 88.154297, 25.799891 ], [ 88.505859, 26.509905 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ] ] ], [ [ [ 124.980469, 53.173119 ], [ 125.859375, 52.802761 ], [ 127.265625, 50.792047 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 133.330078, 48.224673 ], [ 135.000000, 48.516604 ], [ 134.472656, 47.635784 ], [ 134.033203, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.220703, 44.150681 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 127.265625, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.123047, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.962891, 21.861499 ], [ 106.523438, 22.268764 ], [ 106.699219, 22.836946 ], [ 105.732422, 22.998852 ], [ 105.292969, 23.402765 ], [ 104.414062, 22.836946 ], [ 102.656250, 22.755921 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 98.173828, 27.761330 ], [ 97.910156, 28.381735 ], [ 97.294922, 28.304381 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 93.339844, 28.690588 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.839076 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 88.066406, 27.916767 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.690588 ], [ 84.199219, 28.844674 ], [ 83.847656, 29.382175 ], [ 83.320312, 29.535230 ], [ 82.265625, 30.145127 ], [ 81.474609, 30.448674 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.750000, 33.578015 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 75.849609, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 74.179688, 38.616870 ], [ 73.916016, 38.548165 ], [ 73.652344, 39.436193 ], [ 73.916016, 39.707187 ], [ 73.740234, 39.909736 ], [ 74.707031, 40.380028 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 78.486328, 41.640078 ], [ 80.068359, 42.163403 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.275391, 49.267805 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 88.769531, 48.107431 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 94.658203, 44.402392 ], [ 95.273438, 44.276671 ], [ 95.712891, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.382812, 42.811522 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.777344, 42.553080 ], [ 103.271484, 41.967659 ], [ 104.501953, 41.967659 ], [ 104.941406, 41.640078 ], [ 106.083984, 42.163403 ], [ 107.666016, 42.488302 ], [ 109.160156, 42.553080 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.452919 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 114.433594, 45.398450 ], [ 115.927734, 45.767523 ], [ 116.630859, 46.437857 ], [ 117.333984, 46.679594 ], [ 118.828125, 46.860191 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 116.279297, 47.872144 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 119.267578, 50.625073 ], [ 120.146484, 51.672555 ], [ 120.673828, 51.998410 ], [ 120.673828, 52.536273 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 122.167969, 53.435719 ], [ 123.486328, 53.488046 ], [ 124.980469, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 123.486328, 53.488046 ], [ 124.980469, 53.173119 ], [ 125.859375, 52.802761 ], [ 127.265625, 50.792047 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 133.330078, 48.224673 ], [ 135.000000, 48.516604 ], [ 134.472656, 47.635784 ], [ 134.033203, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.220703, 44.150681 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 127.265625, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.123047, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.962891, 21.861499 ], [ 106.523438, 22.268764 ], [ 106.699219, 22.836946 ], [ 105.732422, 22.998852 ], [ 105.292969, 23.402765 ], [ 104.414062, 22.836946 ], [ 102.656250, 22.755921 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 98.173828, 27.761330 ], [ 97.910156, 28.381735 ], [ 97.294922, 28.304381 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 93.339844, 28.690588 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.839076 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 88.066406, 27.916767 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.690588 ], [ 84.199219, 28.844674 ], [ 83.847656, 29.382175 ], [ 83.320312, 29.535230 ], [ 82.265625, 30.145127 ], [ 81.474609, 30.448674 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.750000, 33.578015 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 75.849609, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 74.179688, 38.616870 ], [ 73.916016, 38.548165 ], [ 73.652344, 39.436193 ], [ 73.916016, 39.707187 ], [ 73.740234, 39.909736 ], [ 74.707031, 40.380028 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 78.486328, 41.640078 ], [ 80.068359, 42.163403 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.275391, 49.267805 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 88.769531, 48.107431 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 94.658203, 44.402392 ], [ 95.273438, 44.276671 ], [ 95.712891, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.382812, 42.811522 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.777344, 42.553080 ], [ 103.271484, 41.967659 ], [ 104.501953, 41.967659 ], [ 104.941406, 41.640078 ], [ 106.083984, 42.163403 ], [ 107.666016, 42.488302 ], [ 109.160156, 42.553080 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.452919 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 114.433594, 45.398450 ], [ 115.927734, 45.767523 ], [ 116.630859, 46.437857 ], [ 117.333984, 46.679594 ], [ 118.828125, 46.860191 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 116.279297, 47.872144 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 119.267578, 50.625073 ], [ 120.146484, 51.672555 ], [ 120.673828, 51.998410 ], [ 120.673828, 52.536273 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 122.167969, 53.435719 ], [ 123.486328, 53.488046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.173828, 27.761330 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.958045 ], [ 97.646484, 25.085599 ], [ 97.558594, 23.966176 ], [ 98.613281, 24.126702 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.998852 ], [ 99.228516, 22.187405 ], [ 100.371094, 21.616579 ], [ 101.074219, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.283203, 20.797201 ], [ 100.107422, 20.468189 ], [ 99.492188, 20.220966 ], [ 98.876953, 19.808054 ], [ 98.173828, 19.725342 ], [ 97.734375, 18.646245 ], [ 97.294922, 18.479609 ], [ 97.822266, 17.644022 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.368950 ], [ 98.173828, 15.199386 ], [ 98.349609, 14.689881 ], [ 99.052734, 13.838080 ], [ 99.140625, 12.811801 ], [ 99.580078, 11.953349 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.746969 ], [ 98.701172, 11.523088 ], [ 98.349609, 12.039321 ], [ 98.437500, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.482422, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.603516, 19.808054 ], [ 93.076172, 19.890723 ], [ 92.285156, 20.715015 ], [ 92.285156, 21.534847 ], [ 92.636719, 21.371244 ], [ 92.636719, 22.105999 ], [ 93.164062, 22.350076 ], [ 92.988281, 22.755921 ], [ 93.251953, 23.079732 ], [ 93.251953, 24.126702 ], [ 94.042969, 23.885838 ], [ 94.482422, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.097656, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.137368 ], [ 97.031250, 27.761330 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.304381 ], [ 97.910156, 28.381735 ], [ 98.173828, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.381735 ], [ 98.173828, 27.761330 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.958045 ], [ 97.646484, 25.085599 ], [ 97.558594, 23.966176 ], [ 98.613281, 24.126702 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.998852 ], [ 99.228516, 22.187405 ], [ 100.371094, 21.616579 ], [ 101.074219, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.283203, 20.797201 ], [ 100.107422, 20.468189 ], [ 99.492188, 20.220966 ], [ 98.876953, 19.808054 ], [ 98.173828, 19.725342 ], [ 97.734375, 18.646245 ], [ 97.294922, 18.479609 ], [ 97.822266, 17.644022 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.368950 ], [ 98.173828, 15.199386 ], [ 98.349609, 14.689881 ], [ 99.052734, 13.838080 ], [ 99.140625, 12.811801 ], [ 99.580078, 11.953349 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.746969 ], [ 98.701172, 11.523088 ], [ 98.349609, 12.039321 ], [ 98.437500, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.482422, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.603516, 19.808054 ], [ 93.076172, 19.890723 ], [ 92.285156, 20.715015 ], [ 92.285156, 21.534847 ], [ 92.636719, 21.371244 ], [ 92.636719, 22.105999 ], [ 93.164062, 22.350076 ], [ 92.988281, 22.755921 ], [ 93.251953, 23.079732 ], [ 93.251953, 24.126702 ], [ 94.042969, 23.885838 ], [ 94.482422, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.097656, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.137368 ], [ 97.031250, 27.761330 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.304381 ], [ 97.910156, 28.381735 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 106.523438, 16.636192 ], [ 107.226562, 15.961329 ], [ 107.490234, 15.284185 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.468750, 14.774883 ], [ 105.556641, 15.623037 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.476432 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 102.919922, 17.978733 ], [ 102.392578, 17.978733 ], [ 102.041016, 18.145852 ], [ 100.986328, 17.560247 ], [ 100.986328, 18.479609 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.468189 ], [ 100.283203, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ], [ 103.183594, 20.797201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.512557 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 106.523438, 16.636192 ], [ 107.226562, 15.961329 ], [ 107.490234, 15.284185 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.468750, 14.774883 ], [ 105.556641, 15.623037 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.476432 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 102.919922, 17.978733 ], [ 102.392578, 17.978733 ], [ 102.041016, 18.145852 ], [ 100.986328, 17.560247 ], [ 100.986328, 18.479609 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.468189 ], [ 100.283203, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.138470 ], [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 18.479609 ], [ 100.986328, 17.560247 ], [ 102.041016, 18.145852 ], [ 102.392578, 17.978733 ], [ 102.919922, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 104.677734, 17.476432 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.623037 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 104.238281, 14.434680 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.601562, 12.726084 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.931641, 12.382928 ], [ 99.140625, 9.968851 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 100.195312, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.878332 ], [ 101.074219, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.195312, 6.664608 ], [ 100.019531, 6.489983 ], [ 99.667969, 6.926427 ], [ 99.492188, 7.362467 ], [ 98.437500, 8.407168 ], [ 98.261719, 7.798079 ], [ 98.085938, 8.407168 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.953349 ], [ 99.140625, 12.811801 ], [ 99.052734, 13.838080 ], [ 98.349609, 14.689881 ], [ 98.173828, 15.199386 ], [ 98.525391, 15.368950 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.644022 ], [ 97.294922, 18.479609 ], [ 97.734375, 18.646245 ], [ 98.173828, 19.725342 ], [ 98.876953, 19.808054 ], [ 99.492188, 20.220966 ], [ 100.107422, 20.468189 ], [ 100.546875, 20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.468189 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 18.479609 ], [ 100.986328, 17.560247 ], [ 102.041016, 18.145852 ], [ 102.392578, 17.978733 ], [ 102.919922, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 104.677734, 17.476432 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.623037 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 104.238281, 14.434680 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.601562, 12.726084 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.931641, 12.382928 ], [ 99.140625, 9.968851 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 100.195312, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.878332 ], [ 101.074219, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.195312, 6.664608 ], [ 100.019531, 6.489983 ], [ 99.667969, 6.926427 ], [ 99.492188, 7.362467 ], [ 98.437500, 8.407168 ], [ 98.261719, 7.798079 ], [ 98.085938, 8.407168 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.953349 ], [ 99.140625, 12.811801 ], [ 99.052734, 13.838080 ], [ 98.349609, 14.689881 ], [ 98.173828, 15.199386 ], [ 98.525391, 15.368950 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.644022 ], [ 97.294922, 18.479609 ], [ 97.734375, 18.646245 ], [ 98.173828, 19.725342 ], [ 98.876953, 19.808054 ], [ 99.492188, 20.220966 ], [ 100.107422, 20.468189 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.732422, 22.998852 ], [ 106.699219, 22.836946 ], [ 106.523438, 22.268764 ], [ 106.962891, 21.861499 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.820312, 19.808054 ], [ 105.644531, 19.062118 ], [ 107.314453, 16.720385 ], [ 108.193359, 16.130262 ], [ 108.808594, 15.284185 ], [ 109.248047, 13.496473 ], [ 109.160156, 11.695273 ], [ 108.281250, 11.092166 ], [ 107.138672, 10.401378 ], [ 106.347656, 9.535749 ], [ 105.117188, 8.667918 ], [ 104.765625, 9.275622 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 105.117188, 10.919618 ], [ 106.171875, 11.005904 ], [ 105.732422, 11.609193 ], [ 107.490234, 12.382928 ], [ 107.578125, 13.581921 ], [ 107.314453, 14.264383 ], [ 107.490234, 15.284185 ], [ 107.226562, 15.961329 ], [ 106.523438, 16.636192 ], [ 105.029297, 18.729502 ], [ 103.886719, 19.311143 ], [ 104.150391, 19.642588 ], [ 104.765625, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.512557 ], [ 102.656250, 22.755921 ], [ 104.414062, 22.836946 ], [ 105.292969, 23.402765 ], [ 105.732422, 22.998852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.402765 ], [ 105.732422, 22.998852 ], [ 106.699219, 22.836946 ], [ 106.523438, 22.268764 ], [ 106.962891, 21.861499 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.820312, 19.808054 ], [ 105.644531, 19.062118 ], [ 107.314453, 16.720385 ], [ 108.193359, 16.130262 ], [ 108.808594, 15.284185 ], [ 109.248047, 13.496473 ], [ 109.160156, 11.695273 ], [ 108.281250, 11.092166 ], [ 107.138672, 10.401378 ], [ 106.347656, 9.535749 ], [ 105.117188, 8.667918 ], [ 104.765625, 9.275622 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 105.117188, 10.919618 ], [ 106.171875, 11.005904 ], [ 105.732422, 11.609193 ], [ 107.490234, 12.382928 ], [ 107.578125, 13.581921 ], [ 107.314453, 14.264383 ], [ 107.490234, 15.284185 ], [ 107.226562, 15.961329 ], [ 106.523438, 16.636192 ], [ 105.029297, 18.729502 ], [ 103.886719, 19.311143 ], [ 104.150391, 19.642588 ], [ 104.765625, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.512557 ], [ 102.656250, 22.755921 ], [ 104.414062, 22.836946 ], [ 105.292969, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.314453, 14.264383 ], [ 107.578125, 13.581921 ], [ 107.490234, 12.382928 ], [ 105.732422, 11.609193 ], [ 106.171875, 11.005904 ], [ 105.117188, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.447266, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.919922, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.349548 ], [ 105.996094, 13.923404 ], [ 106.435547, 14.604847 ], [ 107.314453, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 14.604847 ], [ 107.314453, 14.264383 ], [ 107.578125, 13.581921 ], [ 107.490234, 12.382928 ], [ 105.732422, 11.609193 ], [ 106.171875, 11.005904 ], [ 105.117188, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.447266, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.919922, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.349548 ], [ 105.996094, 13.923404 ], [ 106.435547, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.597656, 6.489983 ], [ 117.685547, 6.053161 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.090944 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 117.861328, 4.214943 ], [ 116.982422, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.488281, 3.250209 ], [ 115.048828, 2.899153 ], [ 114.609375, 1.493971 ], [ 113.730469, 1.230374 ], [ 112.851562, 1.581830 ], [ 112.324219, 1.493971 ], [ 111.796875, 0.966751 ], [ 111.093750, 1.054628 ], [ 110.478516, 0.790990 ], [ 109.775391, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 114.609375, 4.039618 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.400391, 5.528511 ], [ 116.191406, 6.227934 ], [ 116.718750, 6.926427 ], [ 117.070312, 7.013668 ], [ 117.597656, 6.489983 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.074219, 5.703448 ], [ 101.777344, 5.878332 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.915833 ], [ 103.271484, 3.776559 ], [ 103.447266, 2.811371 ], [ 103.798828, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 101.250000, 3.337954 ], [ 100.634766, 3.951941 ], [ 100.546875, 4.828260 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.019531, 6.489983 ], [ 100.195312, 6.664608 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.070312, 7.013668 ], [ 117.597656, 6.489983 ], [ 117.685547, 6.053161 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.090944 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 117.861328, 4.214943 ], [ 116.982422, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.488281, 3.250209 ], [ 115.048828, 2.899153 ], [ 114.609375, 1.493971 ], [ 113.730469, 1.230374 ], [ 112.851562, 1.581830 ], [ 112.324219, 1.493971 ], [ 111.796875, 0.966751 ], [ 111.093750, 1.054628 ], [ 110.478516, 0.790990 ], [ 109.775391, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 114.609375, 4.039618 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.400391, 5.528511 ], [ 116.191406, 6.227934 ], [ 116.718750, 6.926427 ], [ 117.070312, 7.013668 ] ] ], [ [ [ 100.195312, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.074219, 5.703448 ], [ 101.777344, 5.878332 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.915833 ], [ 103.271484, 3.776559 ], [ 103.447266, 2.811371 ], [ 103.798828, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 101.250000, 3.337954 ], [ 100.634766, 3.951941 ], [ 100.546875, 4.828260 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.019531, 6.489983 ], [ 100.195312, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.904297, 25.005973 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.146484, 22.836946 ], [ 120.058594, 23.563987 ], [ 120.673828, 24.607069 ], [ 121.464844, 25.324167 ], [ 121.904297, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.904297, 25.005973 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.146484, 22.836946 ], [ 120.058594, 23.563987 ], [ 120.673828, 24.607069 ], [ 121.464844, 25.324167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.605469, 42.423457 ], [ 130.693359, 42.228517 ], [ 130.341797, 42.293564 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 129.111328, 40.713956 ], [ 128.583984, 40.245992 ], [ 127.880859, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.441406, 39.368279 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 128.144531, 38.410558 ], [ 127.001953, 38.272689 ], [ 126.650391, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.123047, 37.788081 ], [ 125.683594, 37.996163 ], [ 125.507812, 37.788081 ], [ 125.244141, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.628906, 38.134557 ], [ 124.980469, 38.616870 ], [ 125.156250, 38.685510 ], [ 125.068359, 38.891033 ], [ 125.332031, 39.436193 ], [ 125.244141, 39.571822 ], [ 124.716797, 39.707187 ], [ 124.189453, 39.977120 ], [ 125.068359, 40.580585 ], [ 126.123047, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.265625, 41.508577 ], [ 128.144531, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.550781, 42.488302 ], [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 130.693359, 42.228517 ], [ 130.341797, 42.293564 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 129.111328, 40.713956 ], [ 128.583984, 40.245992 ], [ 127.880859, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.441406, 39.368279 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 128.144531, 38.410558 ], [ 127.001953, 38.272689 ], [ 126.650391, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.123047, 37.788081 ], [ 125.683594, 37.996163 ], [ 125.507812, 37.788081 ], [ 125.244141, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.628906, 38.134557 ], [ 124.980469, 38.616870 ], [ 125.156250, 38.685510 ], [ 125.068359, 38.891033 ], [ 125.332031, 39.436193 ], [ 125.244141, 39.571822 ], [ 124.716797, 39.707187 ], [ 124.189453, 39.977120 ], [ 125.068359, 40.580585 ], [ 126.123047, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.265625, 41.508577 ], [ 128.144531, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.550781, 42.488302 ], [ 129.990234, 43.004647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 128.144531, 34.957995 ], [ 127.353516, 34.524661 ], [ 126.474609, 34.452218 ], [ 126.298828, 34.957995 ], [ 126.474609, 35.746512 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.857507 ], [ 127.001953, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 128.144531, 34.957995 ], [ 127.353516, 34.524661 ], [ 126.474609, 34.452218 ], [ 126.298828, 34.957995 ], [ 126.474609, 35.746512 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.857507 ], [ 127.001953, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.320312, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.595703, 6.053161 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 123.925781, 6.926427 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 123.222656, 7.449624 ], [ 122.783203, 7.536764 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.275292 ], [ 122.255859, 8.059230 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 124.541016, 8.581021 ], [ 124.716797, 9.015302 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ] ] ], [ [ [ 118.916016, 10.401378 ], [ 119.443359, 11.350797 ], [ 119.619141, 10.574222 ], [ 119.003906, 10.055403 ], [ 118.476562, 9.362353 ], [ 117.246094, 8.494105 ], [ 117.597656, 9.102097 ], [ 118.916016, 10.401378 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.783203, 10.314919 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.398438, 10.487812 ], [ 124.013672, 11.264612 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.716797, 10.919618 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.436955 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ], [ 125.156250, 12.554564 ] ] ], [ [ [ 122.431641, 11.609193 ], [ 123.046875, 11.609193 ], [ 123.046875, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ], [ 122.431641, 11.609193 ] ] ], [ [ [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ] ] ], [ [ [ 121.904297, 18.229351 ], [ 122.167969, 18.479609 ], [ 122.255859, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.431641, 17.140790 ], [ 122.167969, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.199386 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.264383 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.838080 ], [ 123.837891, 13.239945 ], [ 124.101562, 13.068777 ], [ 124.013672, 12.554564 ], [ 123.222656, 13.068777 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.923404 ], [ 120.673828, 14.349548 ], [ 120.937500, 14.604847 ], [ 120.673828, 14.774883 ], [ 120.498047, 14.434680 ], [ 120.058594, 15.029686 ], [ 119.882812, 15.453680 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.322266, 17.644022 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ], [ 121.904297, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.595703, 6.053161 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 123.925781, 6.926427 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 123.222656, 7.449624 ], [ 122.783203, 7.536764 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.275292 ], [ 122.255859, 8.059230 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 124.541016, 8.581021 ], [ 124.716797, 9.015302 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ] ] ], [ [ [ 119.443359, 11.436955 ], [ 119.619141, 10.574222 ], [ 119.003906, 10.055403 ], [ 118.476562, 9.362353 ], [ 117.158203, 8.407168 ], [ 117.597656, 9.102097 ], [ 118.916016, 10.401378 ], [ 119.443359, 11.436955 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.783203, 10.314919 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.310547, 10.314919 ], [ 124.013672, 11.264612 ] ] ], [ [ [ 124.189453, 12.640338 ], [ 125.156250, 12.554564 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.716797, 10.919618 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.436955 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ] ] ], [ [ [ 121.816406, 11.953349 ], [ 122.431641, 11.609193 ], [ 123.046875, 11.609193 ], [ 123.046875, 11.178402 ], [ 122.871094, 10.919618 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ] ] ], [ [ [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ] ] ], [ [ [ 121.289062, 18.562947 ], [ 121.904297, 18.229351 ], [ 122.167969, 18.479609 ], [ 122.255859, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.431641, 17.140790 ], [ 122.167969, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.199386 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.264383 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.838080 ], [ 123.837891, 13.239945 ], [ 124.101562, 13.068777 ], [ 124.013672, 12.554564 ], [ 123.222656, 13.068777 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.923404 ], [ 120.673828, 14.349548 ], [ 120.937500, 14.604847 ], [ 120.673828, 14.774883 ], [ 120.498047, 14.434680 ], [ 120.058594, 15.029686 ], [ 119.882812, 15.453680 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.322266, 17.644022 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.609375, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ], [ 115.312500, 4.390229 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.400391, 5.528511 ], [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.609375, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.855469, 40.044438 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.537109, 36.385913 ], [ 140.712891, 35.889050 ], [ 140.185547, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.099609, 33.943360 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.358062 ], [ 130.341797, 33.651208 ], [ 130.869141, 34.234512 ], [ 131.835938, 34.813803 ], [ 132.539062, 35.460670 ], [ 134.560547, 35.746512 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ], [ 141.855469, 40.044438 ] ] ], [ [ [ 134.560547, 34.161818 ], [ 134.736328, 33.870416 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 133.242188, 33.358062 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.363281, 33.504759 ], [ 132.890625, 34.089061 ], [ 133.417969, 34.016242 ], [ 133.857422, 34.379713 ], [ 134.560547, 34.161818 ] ] ], [ [ [ 143.085938, 44.527843 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.943359, 45.583290 ], [ 143.085938, 44.527843 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.442726 ], [ 141.855469, 40.044438 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.537109, 36.385913 ], [ 140.712891, 35.889050 ], [ 140.185547, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.099609, 33.943360 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.358062 ], [ 130.341797, 33.651208 ], [ 130.869141, 34.234512 ], [ 131.835938, 34.813803 ], [ 132.539062, 35.460670 ], [ 134.560547, 35.746512 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ] ] ], [ [ [ 133.857422, 34.379713 ], [ 134.560547, 34.161818 ], [ 134.736328, 33.870416 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 133.242188, 33.358062 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.363281, 33.504759 ], [ 132.890625, 34.089061 ], [ 133.417969, 34.016242 ], [ 133.857422, 34.379713 ] ] ], [ [ [ 141.943359, 45.583290 ], [ 143.085938, 44.527843 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.943359, 45.583290 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.560247 ], [ 178.505859, -18.145852 ], [ 177.890625, -18.229351 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.644022 ], [ 177.626953, -17.308688 ], [ 178.066406, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.560247 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -180.000000, -16.467695 ], [ -180.000000, -16.045813 ], [ -179.824219, -15.961329 ], [ -180.000000, -16.467695 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.560247 ], [ 178.505859, -18.145852 ], [ 177.890625, -18.229351 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.644022 ], [ 177.626953, -17.308688 ], [ 178.066406, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.284551 ], [ 12.919922, 1.845384 ], [ 13.271484, 1.318243 ], [ 13.974609, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.798828, 0.087891 ], [ 14.238281, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.238281, -1.933227 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.372369 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.460181 ], [ 11.425781, -2.723583 ], [ 11.777344, -3.425692 ], [ 11.074219, -3.951941 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.054628 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.439449 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.142502 ], [ 11.250000, 2.284551 ], [ 11.689453, 2.372369 ], [ 12.304688, 2.196727 ], [ 12.919922, 2.372369 ], [ 13.007812, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.372369 ], [ 13.007812, 2.284551 ], [ 12.919922, 1.845384 ], [ 13.271484, 1.318243 ], [ 13.974609, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.798828, 0.087891 ], [ 14.238281, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.238281, -1.933227 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.372369 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.460181 ], [ 11.425781, -2.723583 ], [ 11.777344, -3.425692 ], [ 11.074219, -3.951941 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.054628 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.439449 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.142502 ], [ 11.250000, 2.284551 ], [ 11.689453, 2.372369 ], [ 12.304688, 2.196727 ], [ 12.919922, 2.372369 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 3.513421 ], [ 18.369141, 2.986927 ], [ 17.841797, 1.757537 ], [ 17.753906, 0.351560 ], [ 17.490234, -0.703107 ], [ 16.347656, -1.669686 ], [ 15.908203, -2.635789 ], [ 15.996094, -3.513421 ], [ 14.501953, -4.915833 ], [ 14.150391, -4.740675 ], [ 14.062500, -4.477856 ], [ 13.535156, -4.477856 ], [ 13.183594, -4.828260 ], [ 12.919922, -4.740675 ], [ 12.568359, -4.390229 ], [ 11.865234, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.777344, -3.425692 ], [ 11.425781, -2.723583 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.372369 ], [ 13.974609, -2.460181 ], [ 14.238281, -1.933227 ], [ 14.414062, -1.318243 ], [ 14.238281, -0.527336 ], [ 13.798828, 0.087891 ], [ 14.238281, 1.230374 ], [ 13.974609, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.919922, 1.845384 ], [ 13.007812, 2.284551 ], [ 14.326172, 2.284551 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.250209 ], [ 17.050781, 3.776559 ], [ 18.369141, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.050781, 3.776559 ], [ 18.369141, 3.513421 ], [ 18.369141, 2.986927 ], [ 17.841797, 1.757537 ], [ 17.753906, 0.351560 ], [ 17.490234, -0.703107 ], [ 16.347656, -1.669686 ], [ 15.908203, -2.635789 ], [ 15.996094, -3.513421 ], [ 14.501953, -4.915833 ], [ 14.150391, -4.740675 ], [ 14.062500, -4.477856 ], [ 13.535156, -4.477856 ], [ 13.183594, -4.828260 ], [ 12.919922, -4.740675 ], [ 12.568359, -4.390229 ], [ 11.865234, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.777344, -3.425692 ], [ 11.425781, -2.723583 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.372369 ], [ 13.974609, -2.460181 ], [ 14.238281, -1.933227 ], [ 14.414062, -1.318243 ], [ 14.238281, -0.527336 ], [ 13.798828, 0.087891 ], [ 14.238281, 1.230374 ], [ 13.974609, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.919922, 1.845384 ], [ 13.007812, 2.284551 ], [ 14.326172, 2.284551 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.250209 ], [ 17.050781, 3.776559 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.477856 ], [ 28.388672, 4.302591 ], [ 28.652344, 4.477856 ], [ 29.091797, 4.390229 ], [ 29.707031, 4.653080 ], [ 29.882812, 4.214943 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.113281, 2.284551 ], [ 30.410156, 1.669686 ], [ 29.794922, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.179688, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.443359, -5.353521 ], [ 29.355469, -5.878332 ], [ 29.619141, -6.489983 ], [ 30.146484, -7.013668 ], [ 30.673828, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.916016, -8.320212 ], [ 28.652344, -8.494105 ], [ 28.388672, -9.102097 ], [ 28.652344, -9.535749 ], [ 28.300781, -11.781325 ], [ 29.267578, -12.297068 ], [ 29.531250, -12.125264 ], [ 29.619141, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.211180 ], [ 27.333984, -12.125264 ], [ 27.158203, -11.523088 ], [ 26.542969, -11.867351 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.264612 ], [ 24.257812, -11.178402 ], [ 24.169922, -10.919618 ], [ 23.378906, -10.833306 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.882275 ], [ 21.796875, -9.449062 ], [ 21.796875, -8.841651 ], [ 21.884766, -8.233237 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.039062, -6.926427 ], [ 19.951172, -7.100893 ], [ 19.335938, -7.100893 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.798079 ], [ 17.402344, -8.059230 ], [ 16.787109, -7.188101 ], [ 16.259766, -5.790897 ], [ 13.359375, -5.790897 ], [ 12.304688, -6.053161 ], [ 12.128906, -5.703448 ], [ 12.392578, -5.615986 ], [ 12.392578, -5.178482 ], [ 12.568359, -4.915833 ], [ 12.919922, -4.740675 ], [ 13.183594, -4.828260 ], [ 13.535156, -4.477856 ], [ 14.062500, -4.477856 ], [ 14.150391, -4.740675 ], [ 14.501953, -4.915833 ], [ 15.996094, -3.513421 ], [ 15.908203, -2.635789 ], [ 16.347656, -1.669686 ], [ 17.490234, -0.703107 ], [ 17.753906, 0.351560 ], [ 17.841797, 1.757537 ], [ 18.369141, 2.986927 ], [ 18.457031, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.423828, 5.090944 ], [ 20.917969, 4.390229 ], [ 22.324219, 4.039618 ], [ 22.763672, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.345703, 5.178482 ], [ 24.785156, 4.915833 ], [ 25.048828, 5.003394 ], [ 25.224609, 5.178482 ], [ 25.576172, 5.266008 ], [ 26.982422, 5.178482 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.477856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.477856 ], [ 28.388672, 4.302591 ], [ 28.652344, 4.477856 ], [ 29.091797, 4.390229 ], [ 29.707031, 4.653080 ], [ 29.882812, 4.214943 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.113281, 2.284551 ], [ 30.410156, 1.669686 ], [ 29.794922, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.179688, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.443359, -5.353521 ], [ 29.355469, -5.878332 ], [ 29.619141, -6.489983 ], [ 30.146484, -7.013668 ], [ 30.673828, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.916016, -8.320212 ], [ 28.652344, -8.494105 ], [ 28.388672, -9.102097 ], [ 28.652344, -9.535749 ], [ 28.300781, -11.781325 ], [ 29.267578, -12.297068 ], [ 29.531250, -12.125264 ], [ 29.619141, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.211180 ], [ 27.333984, -12.125264 ], [ 27.158203, -11.523088 ], [ 26.542969, -11.867351 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.264612 ], [ 24.257812, -11.178402 ], [ 24.169922, -10.919618 ], [ 23.378906, -10.833306 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.882275 ], [ 21.796875, -9.449062 ], [ 21.796875, -8.841651 ], [ 21.884766, -8.233237 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.039062, -6.926427 ], [ 19.951172, -7.100893 ], [ 19.335938, -7.100893 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.798079 ], [ 17.402344, -8.059230 ], [ 16.787109, -7.188101 ], [ 16.259766, -5.790897 ], [ 13.359375, -5.790897 ], [ 12.304688, -6.053161 ], [ 12.128906, -5.703448 ], [ 12.392578, -5.615986 ], [ 12.392578, -5.178482 ], [ 12.568359, -4.915833 ], [ 12.919922, -4.740675 ], [ 13.183594, -4.828260 ], [ 13.535156, -4.477856 ], [ 14.062500, -4.477856 ], [ 14.150391, -4.740675 ], [ 14.501953, -4.915833 ], [ 15.996094, -3.513421 ], [ 15.908203, -2.635789 ], [ 16.347656, -1.669686 ], [ 17.490234, -0.703107 ], [ 17.753906, 0.351560 ], [ 17.841797, 1.757537 ], [ 18.369141, 2.986927 ], [ 18.457031, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.423828, 5.090944 ], [ 20.917969, 4.390229 ], [ 22.324219, 4.039618 ], [ 22.763672, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.345703, 5.178482 ], [ 24.785156, 4.915833 ], [ 25.048828, 5.003394 ], [ 25.224609, 5.178482 ], [ 25.576172, 5.266008 ], [ 26.982422, 5.178482 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.787109, -7.188101 ], [ 17.402344, -8.059230 ], [ 18.457031, -7.798079 ], [ 18.984375, -7.972198 ], [ 19.335938, -7.100893 ], [ 19.951172, -7.100893 ], [ 20.039062, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.884766, -8.233237 ], [ 21.796875, -8.841651 ], [ 21.796875, -9.449062 ], [ 22.148438, -9.882275 ], [ 22.148438, -11.005904 ], [ 23.378906, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.178402 ], [ 23.818359, -11.695273 ], [ 23.994141, -12.125264 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.896484, -17.727759 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 12.744141, -16.888660 ], [ 11.689453, -17.224758 ], [ 11.601562, -16.636192 ], [ 12.128906, -14.434680 ], [ 12.656250, -13.068777 ], [ 13.623047, -11.953349 ], [ 13.710938, -11.264612 ], [ 13.623047, -10.660608 ], [ 13.359375, -10.314919 ], [ 12.832031, -9.102097 ], [ 13.183594, -8.494105 ], [ 12.656250, -6.926427 ], [ 12.216797, -6.227934 ], [ 12.304688, -6.053161 ], [ 13.359375, -5.790897 ], [ 16.259766, -5.790897 ], [ 16.787109, -7.188101 ] ] ], [ [ [ 12.919922, -4.740675 ], [ 12.392578, -5.178482 ], [ 12.392578, -5.615986 ], [ 12.128906, -5.703448 ], [ 11.865234, -5.003394 ], [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.259766, -5.790897 ], [ 16.787109, -7.188101 ], [ 17.402344, -8.059230 ], [ 18.457031, -7.798079 ], [ 18.984375, -7.972198 ], [ 19.335938, -7.100893 ], [ 19.951172, -7.100893 ], [ 20.039062, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.884766, -8.233237 ], [ 21.796875, -8.841651 ], [ 21.796875, -9.449062 ], [ 22.148438, -9.882275 ], [ 22.148438, -11.005904 ], [ 23.378906, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.178402 ], [ 23.818359, -11.695273 ], [ 23.994141, -12.125264 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.896484, -17.727759 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 12.744141, -16.888660 ], [ 11.689453, -17.224758 ], [ 11.601562, -16.636192 ], [ 12.128906, -14.434680 ], [ 12.656250, -13.068777 ], [ 13.623047, -11.953349 ], [ 13.710938, -11.264612 ], [ 13.623047, -10.660608 ], [ 13.359375, -10.314919 ], [ 12.832031, -9.102097 ], [ 13.183594, -8.494105 ], [ 12.656250, -6.926427 ], [ 12.216797, -6.227934 ], [ 12.304688, -6.053161 ], [ 13.359375, -5.790897 ], [ 16.259766, -5.790897 ] ] ], [ [ [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ], [ 12.392578, -5.178482 ], [ 12.392578, -5.615986 ], [ 12.128906, -5.703448 ], [ 11.865234, -5.003394 ], [ 12.568359, -4.390229 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.974609, -17.392579 ], [ 18.193359, -17.308688 ], [ 18.896484, -17.727759 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.224758 ], [ 24.609375, -17.308688 ], [ 25.048828, -17.560247 ], [ 24.433594, -17.811456 ], [ 24.169922, -17.811456 ], [ 23.554688, -18.229351 ], [ 23.115234, -17.811456 ], [ 21.621094, -18.145852 ], [ 20.830078, -18.229351 ], [ 20.830078, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.921631 ], [ 18.457031, -28.998532 ], [ 17.314453, -28.767659 ], [ 17.138672, -28.304381 ], [ 16.787109, -28.071980 ], [ 16.259766, -28.536275 ], [ 15.556641, -27.761330 ], [ 15.205078, -27.059126 ], [ 14.326172, -23.805450 ], [ 14.238281, -22.105999 ], [ 13.271484, -20.797201 ], [ 12.568359, -18.979026 ], [ 11.777344, -18.062312 ], [ 11.689453, -17.224758 ], [ 12.744141, -16.888660 ], [ 13.447266, -16.888660 ], [ 13.974609, -17.392579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.888660 ], [ 13.974609, -17.392579 ], [ 18.193359, -17.308688 ], [ 18.896484, -17.727759 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.224758 ], [ 24.609375, -17.308688 ], [ 25.048828, -17.560247 ], [ 24.433594, -17.811456 ], [ 24.169922, -17.811456 ], [ 23.554688, -18.229351 ], [ 23.115234, -17.811456 ], [ 21.621094, -18.145852 ], [ 20.830078, -18.229351 ], [ 20.830078, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.921631 ], [ 18.457031, -28.998532 ], [ 17.314453, -28.767659 ], [ 17.138672, -28.304381 ], [ 16.787109, -28.071980 ], [ 16.259766, -28.536275 ], [ 15.556641, -27.761330 ], [ 15.205078, -27.059126 ], [ 14.326172, -23.805450 ], [ 14.238281, -22.105999 ], [ 13.271484, -20.797201 ], [ 12.568359, -18.979026 ], [ 11.777344, -18.062312 ], [ 11.689453, -17.224758 ], [ 12.744141, -16.888660 ], [ 13.447266, -16.888660 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, -1.669686 ], [ 30.673828, -2.284551 ], [ 30.410156, -2.372369 ], [ 29.882812, -2.284551 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.179688, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.531250, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.054628 ], [ 30.761719, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.054628 ], [ 30.761719, -1.669686 ], [ 30.673828, -2.284551 ], [ 30.410156, -2.372369 ], [ 29.882812, -2.284551 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.179688, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.531250, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.054628 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -2.372369 ], [ 30.673828, -3.337954 ], [ 29.707031, -4.390229 ], [ 29.267578, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.882812, -2.284551 ], [ 30.410156, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.882812, -2.284551 ], [ 30.410156, -2.372369 ], [ 30.673828, -3.337954 ], [ 29.707031, -4.390229 ], [ 29.267578, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.882812, -2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, -9.188870 ], [ 33.222656, -9.622414 ], [ 33.398438, -10.487812 ], [ 33.046875, -11.523088 ], [ 33.222656, -12.382928 ], [ 32.958984, -12.726084 ], [ 32.607422, -13.667338 ], [ 33.134766, -13.923404 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.453680 ], [ 29.443359, -15.623037 ], [ 28.916016, -15.961329 ], [ 28.740234, -16.383391 ], [ 28.388672, -16.467695 ], [ 26.982422, -17.895114 ], [ 25.224609, -17.727759 ], [ 24.609375, -17.308688 ], [ 23.994141, -17.224758 ], [ 23.203125, -17.476432 ], [ 21.884766, -16.045813 ], [ 21.884766, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.125264 ], [ 23.818359, -11.695273 ], [ 23.994141, -11.178402 ], [ 23.906250, -10.919618 ], [ 24.169922, -10.919618 ], [ 24.257812, -11.178402 ], [ 25.400391, -11.264612 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.867351 ], [ 27.158203, -11.523088 ], [ 27.333984, -12.125264 ], [ 28.125000, -12.211180 ], [ 28.916016, -13.239945 ], [ 29.619141, -13.239945 ], [ 29.531250, -12.125264 ], [ 29.267578, -12.297068 ], [ 28.300781, -11.781325 ], [ 28.652344, -9.535749 ], [ 28.388672, -9.102097 ], [ 28.652344, -8.494105 ], [ 30.322266, -8.233237 ], [ 32.695312, -9.188870 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.695312, -9.188870 ], [ 33.222656, -9.622414 ], [ 33.398438, -10.487812 ], [ 33.046875, -11.523088 ], [ 33.222656, -12.382928 ], [ 32.958984, -12.726084 ], [ 32.607422, -13.667338 ], [ 33.134766, -13.923404 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.453680 ], [ 29.443359, -15.623037 ], [ 28.916016, -15.961329 ], [ 28.740234, -16.383391 ], [ 28.388672, -16.467695 ], [ 26.982422, -17.895114 ], [ 25.224609, -17.727759 ], [ 24.609375, -17.308688 ], [ 23.994141, -17.224758 ], [ 23.203125, -17.476432 ], [ 21.884766, -16.045813 ], [ 21.884766, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.125264 ], [ 23.818359, -11.695273 ], [ 23.994141, -11.178402 ], [ 23.906250, -10.919618 ], [ 24.169922, -10.919618 ], [ 24.257812, -11.178402 ], [ 25.400391, -11.264612 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.867351 ], [ 27.158203, -11.523088 ], [ 27.333984, -12.125264 ], [ 28.125000, -12.211180 ], [ 28.916016, -13.239945 ], [ 29.619141, -13.239945 ], [ 29.531250, -12.125264 ], [ 29.267578, -12.297068 ], [ 28.300781, -11.781325 ], [ 28.652344, -9.535749 ], [ 28.388672, -9.102097 ], [ 28.652344, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.113281, -15.792254 ], [ 31.552734, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.255859, -16.383391 ], [ 32.783203, -16.636192 ], [ 32.783203, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.695312, -19.642588 ], [ 32.607422, -20.303418 ], [ 32.431641, -20.385825 ], [ 32.167969, -21.043491 ], [ 31.113281, -22.187405 ], [ 30.585938, -22.105999 ], [ 30.322266, -22.268764 ], [ 29.355469, -22.024546 ], [ 28.740234, -21.616579 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.797201 ], [ 27.685547, -20.468189 ], [ 27.246094, -20.385825 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.388672, -16.467695 ], [ 28.740234, -16.383391 ], [ 28.916016, -15.961329 ], [ 29.443359, -15.623037 ], [ 30.234375, -15.453680 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 30.322266, -15.876809 ], [ 31.113281, -15.792254 ], [ 31.552734, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.255859, -16.383391 ], [ 32.783203, -16.636192 ], [ 32.783203, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.695312, -19.642588 ], [ 32.607422, -20.303418 ], [ 32.431641, -20.385825 ], [ 32.167969, -21.043491 ], [ 31.113281, -22.187405 ], [ 30.585938, -22.105999 ], [ 30.322266, -22.268764 ], [ 29.355469, -22.024546 ], [ 28.740234, -21.616579 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.797201 ], [ 27.685547, -20.468189 ], [ 27.246094, -20.385825 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.388672, -16.467695 ], [ 28.740234, -16.383391 ], [ 28.916016, -15.961329 ], [ 29.443359, -15.623037 ], [ 30.234375, -15.453680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.617188, -3.074695 ], [ 37.705078, -3.601142 ], [ 39.199219, -4.653080 ], [ 38.671875, -5.878332 ], [ 38.759766, -6.402648 ], [ 39.375000, -6.839170 ], [ 39.462891, -7.013668 ], [ 39.111328, -7.623887 ], [ 39.111328, -8.407168 ], [ 39.902344, -10.055403 ], [ 40.253906, -10.314919 ], [ 39.462891, -10.833306 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.523088 ], [ 36.474609, -11.695273 ], [ 35.244141, -11.436955 ], [ 34.541016, -11.436955 ], [ 34.277344, -10.141932 ], [ 33.662109, -9.362353 ], [ 32.695312, -9.188870 ], [ 30.673828, -8.320212 ], [ 30.146484, -7.013668 ], [ 29.619141, -6.489983 ], [ 29.355469, -5.878332 ], [ 29.443359, -5.353521 ], [ 29.267578, -4.477856 ], [ 29.707031, -4.390229 ], [ 30.673828, -3.337954 ], [ 30.410156, -2.372369 ], [ 30.673828, -2.284551 ], [ 30.761719, -1.669686 ], [ 30.410156, -1.054628 ], [ 30.761719, -0.966751 ], [ 33.837891, -0.878872 ], [ 37.617188, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.837891, -0.878872 ], [ 37.617188, -3.074695 ], [ 37.705078, -3.601142 ], [ 39.199219, -4.653080 ], [ 38.671875, -5.878332 ], [ 38.759766, -6.402648 ], [ 39.375000, -6.839170 ], [ 39.462891, -7.013668 ], [ 39.111328, -7.623887 ], [ 39.111328, -8.407168 ], [ 39.902344, -10.055403 ], [ 40.253906, -10.314919 ], [ 39.462891, -10.833306 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.523088 ], [ 36.474609, -11.695273 ], [ 35.244141, -11.436955 ], [ 34.541016, -11.436955 ], [ 34.277344, -10.141932 ], [ 33.662109, -9.362353 ], [ 32.695312, -9.188870 ], [ 30.673828, -8.320212 ], [ 30.146484, -7.013668 ], [ 29.619141, -6.489983 ], [ 29.355469, -5.878332 ], [ 29.443359, -5.353521 ], [ 29.267578, -4.477856 ], [ 29.707031, -4.390229 ], [ 30.673828, -3.337954 ], [ 30.410156, -2.372369 ], [ 30.673828, -2.284551 ], [ 30.761719, -1.669686 ], [ 30.410156, -1.054628 ], [ 30.761719, -0.966751 ], [ 33.837891, -0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.662109, -9.362353 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.436955 ], [ 34.277344, -12.211180 ], [ 34.541016, -13.496473 ], [ 34.892578, -13.496473 ], [ 35.244141, -13.838080 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.045813 ], [ 34.980469, -16.720385 ], [ 34.365234, -16.130262 ], [ 34.277344, -15.453680 ], [ 34.453125, -14.944785 ], [ 34.453125, -14.604847 ], [ 34.013672, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.607422, -13.667338 ], [ 32.958984, -12.726084 ], [ 33.222656, -12.382928 ], [ 33.046875, -11.523088 ], [ 33.398438, -10.487812 ], [ 33.222656, -9.622414 ], [ 32.695312, -9.188870 ], [ 33.662109, -9.362353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, -9.188870 ], [ 33.662109, -9.362353 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.436955 ], [ 34.277344, -12.211180 ], [ 34.541016, -13.496473 ], [ 34.892578, -13.496473 ], [ 35.244141, -13.838080 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.045813 ], [ 34.980469, -16.720385 ], [ 34.365234, -16.130262 ], [ 34.277344, -15.453680 ], [ 34.453125, -14.944785 ], [ 34.453125, -14.604847 ], [ 34.013672, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.607422, -13.667338 ], [ 32.958984, -12.726084 ], [ 33.222656, -12.382928 ], [ 33.046875, -11.523088 ], [ 33.398438, -10.487812 ], [ 33.222656, -9.622414 ], [ 32.695312, -9.188870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.746969 ], [ 40.517578, -14.179186 ], [ 40.693359, -14.689881 ], [ 40.078125, -16.045813 ], [ 39.375000, -16.720385 ], [ 37.353516, -17.560247 ], [ 36.210938, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.476950 ], [ 34.716797, -19.725342 ], [ 34.628906, -20.468189 ], [ 35.156250, -21.207459 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.024546 ], [ 35.507812, -22.998852 ], [ 35.332031, -23.483401 ], [ 35.595703, -23.644524 ], [ 35.419922, -24.046464 ], [ 34.980469, -24.447150 ], [ 32.958984, -25.324167 ], [ 32.519531, -25.720735 ], [ 32.607422, -26.115986 ], [ 32.871094, -26.194877 ], [ 32.783203, -26.667096 ], [ 31.992188, -26.667096 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.113281, -22.187405 ], [ 32.167969, -21.043491 ], [ 32.431641, -20.385825 ], [ 32.607422, -20.303418 ], [ 32.695312, -19.642588 ], [ 32.607422, -19.394068 ], [ 32.783203, -17.978733 ], [ 32.783203, -16.636192 ], [ 32.255859, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.552734, -16.045813 ], [ 31.113281, -15.792254 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.134766, -13.923404 ], [ 33.750000, -14.434680 ], [ 34.013672, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.453125, -14.944785 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.130262 ], [ 34.980469, -16.720385 ], [ 35.332031, -16.045813 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.838080 ], [ 34.892578, -13.496473 ], [ 34.541016, -13.496473 ], [ 34.277344, -12.211180 ], [ 34.541016, -11.436955 ], [ 35.244141, -11.436955 ], [ 36.474609, -11.695273 ], [ 37.441406, -11.523088 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.462891, -10.833306 ], [ 40.253906, -10.314919 ], [ 40.429688, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, -10.314919 ], [ 40.429688, -10.746969 ], [ 40.517578, -14.179186 ], [ 40.693359, -14.689881 ], [ 40.078125, -16.045813 ], [ 39.375000, -16.720385 ], [ 37.353516, -17.560247 ], [ 36.210938, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.476950 ], [ 34.716797, -19.725342 ], [ 34.628906, -20.468189 ], [ 35.156250, -21.207459 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.024546 ], [ 35.507812, -22.998852 ], [ 35.332031, -23.483401 ], [ 35.595703, -23.644524 ], [ 35.419922, -24.046464 ], [ 34.980469, -24.447150 ], [ 32.958984, -25.324167 ], [ 32.519531, -25.720735 ], [ 32.607422, -26.115986 ], [ 32.871094, -26.194877 ], [ 32.783203, -26.667096 ], [ 31.992188, -26.667096 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.113281, -22.187405 ], [ 32.167969, -21.043491 ], [ 32.431641, -20.385825 ], [ 32.607422, -20.303418 ], [ 32.695312, -19.642588 ], [ 32.607422, -19.394068 ], [ 32.783203, -17.978733 ], [ 32.783203, -16.636192 ], [ 32.255859, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.552734, -16.045813 ], [ 31.113281, -15.792254 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.134766, -13.923404 ], [ 33.750000, -14.434680 ], [ 34.013672, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.453125, -14.944785 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.130262 ], [ 34.980469, -16.720385 ], [ 35.332031, -16.045813 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.838080 ], [ 34.892578, -13.496473 ], [ 34.541016, -13.496473 ], [ 34.277344, -12.211180 ], [ 34.541016, -11.436955 ], [ 35.244141, -11.436955 ], [ 36.474609, -11.695273 ], [ 37.441406, -11.523088 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.462891, -10.833306 ], [ 40.253906, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.224609, -17.727759 ], [ 25.576172, -18.479609 ], [ 26.103516, -19.228177 ], [ 27.246094, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.797201 ], [ 27.949219, -21.453069 ], [ 28.740234, -21.616579 ], [ 29.355469, -22.024546 ], [ 27.949219, -22.755921 ], [ 27.070312, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 24.960938, -25.641526 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 22.763672, -25.482951 ], [ 22.500000, -25.958045 ], [ 21.533203, -26.667096 ], [ 20.830078, -26.824071 ], [ 20.654297, -26.431228 ], [ 20.742188, -25.799891 ], [ 20.126953, -24.846565 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.779905 ], [ 20.830078, -21.779905 ], [ 20.830078, -18.229351 ], [ 21.621094, -18.145852 ], [ 23.115234, -17.811456 ], [ 23.554688, -18.229351 ], [ 24.169922, -17.811456 ], [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 25.576172, -18.479609 ], [ 26.103516, -19.228177 ], [ 27.246094, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.797201 ], [ 27.949219, -21.453069 ], [ 28.740234, -21.616579 ], [ 29.355469, -22.024546 ], [ 27.949219, -22.755921 ], [ 27.070312, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 24.960938, -25.641526 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 22.763672, -25.482951 ], [ 22.500000, -25.958045 ], [ 21.533203, -26.667096 ], [ 20.830078, -26.824071 ], [ 20.654297, -26.431228 ], [ 20.742188, -25.799891 ], [ 20.126953, -24.846565 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.779905 ], [ 20.830078, -21.779905 ], [ 20.830078, -18.229351 ], [ 21.621094, -18.145852 ], [ 23.115234, -17.811456 ], [ 23.554688, -18.229351 ], [ 24.169922, -17.811456 ], [ 25.048828, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.585938, -22.105999 ], [ 31.113281, -22.187405 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.352498 ], [ 30.673828, -26.667096 ], [ 31.201172, -27.215556 ], [ 31.816406, -27.137368 ], [ 31.992188, -26.667096 ], [ 32.783203, -26.667096 ], [ 32.431641, -28.226970 ], [ 32.167969, -28.690588 ], [ 31.464844, -29.228890 ], [ 30.849609, -29.840644 ], [ 29.970703, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.367188, -33.578015 ], [ 25.839844, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.724340 ], [ 24.609375, -33.943360 ], [ 23.554688, -33.724340 ], [ 22.939453, -33.870416 ], [ 22.500000, -33.797409 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.379713 ], [ 20.039062, -34.741612 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.808594, -34.379713 ], [ 18.369141, -33.943360 ], [ 18.369141, -34.089061 ], [ 18.193359, -33.797409 ], [ 18.193359, -33.211116 ], [ 17.841797, -32.546813 ], [ 18.193359, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.259766, -28.536275 ], [ 16.787109, -28.071980 ], [ 17.138672, -28.304381 ], [ 17.314453, -28.767659 ], [ 18.457031, -28.998532 ], [ 18.984375, -28.921631 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.846565 ], [ 20.742188, -25.799891 ], [ 20.654297, -26.431228 ], [ 20.830078, -26.824071 ], [ 21.533203, -26.667096 ], [ 22.500000, -25.958045 ], [ 22.763672, -25.482951 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 24.960938, -25.641526 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.070312, -23.563987 ], [ 27.949219, -22.755921 ], [ 29.355469, -22.024546 ], [ 29.794922, -22.024546 ], [ 30.322266, -22.268764 ] ], [ [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.685547, -30.600094 ], [ 28.037109, -30.524413 ], [ 28.212891, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.267578, -29.228890 ], [ 28.916016, -28.921631 ], [ 28.476562, -28.613459 ], [ 28.037109, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.794922, -22.024546 ], [ 30.322266, -22.268764 ], [ 30.585938, -22.105999 ], [ 31.113281, -22.187405 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.352498 ], [ 30.673828, -26.667096 ], [ 31.201172, -27.215556 ], [ 31.816406, -27.137368 ], [ 31.992188, -26.667096 ], [ 32.783203, -26.667096 ], [ 32.431641, -28.226970 ], [ 32.167969, -28.690588 ], [ 31.464844, -29.228890 ], [ 30.849609, -29.840644 ], [ 29.970703, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.367188, -33.578015 ], [ 25.839844, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.724340 ], [ 24.609375, -33.943360 ], [ 23.554688, -33.724340 ], [ 22.939453, -33.870416 ], [ 22.500000, -33.797409 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.379713 ], [ 20.039062, -34.741612 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.808594, -34.379713 ], [ 18.369141, -33.943360 ], [ 18.369141, -34.089061 ], [ 18.193359, -33.797409 ], [ 18.193359, -33.211116 ], [ 17.841797, -32.546813 ], [ 18.193359, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.259766, -28.536275 ], [ 16.787109, -28.071980 ], [ 17.138672, -28.304381 ], [ 17.314453, -28.767659 ], [ 18.457031, -28.998532 ], [ 18.984375, -28.921631 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.846565 ], [ 20.742188, -25.799891 ], [ 20.654297, -26.431228 ], [ 20.830078, -26.824071 ], [ 21.533203, -26.667096 ], [ 22.500000, -25.958045 ], [ 22.763672, -25.482951 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 24.960938, -25.641526 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.070312, -23.563987 ], [ 27.949219, -22.755921 ], [ 29.355469, -22.024546 ], [ 29.794922, -22.024546 ] ], [ [ 28.476562, -28.613459 ], [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.685547, -30.600094 ], [ 28.037109, -30.524413 ], [ 28.212891, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.267578, -29.228890 ], [ 28.916016, -28.921631 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.799891 ], [ 31.992188, -26.667096 ], [ 31.816406, -27.137368 ], [ 31.201172, -27.215556 ], [ 30.673828, -26.667096 ], [ 30.673828, -26.352498 ], [ 31.025391, -25.720735 ], [ 31.289062, -25.641526 ], [ 31.816406, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, -25.641526 ], [ 31.816406, -25.799891 ], [ 31.992188, -26.667096 ], [ 31.816406, -27.137368 ], [ 31.201172, -27.215556 ], [ 30.673828, -26.667096 ], [ 30.673828, -26.352498 ], [ 31.025391, -25.720735 ], [ 31.289062, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.916016, -28.921631 ], [ 29.267578, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.212891, -30.221102 ], [ 28.037109, -30.524413 ], [ 27.685547, -30.600094 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.476562, -28.613459 ], [ 28.916016, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, -28.613459 ], [ 28.916016, -28.921631 ], [ 29.267578, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.212891, -30.221102 ], [ 28.037109, -30.524413 ], [ 27.685547, -30.600094 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.482422, -12.468760 ], [ 50.009766, -13.496473 ], [ 50.185547, -14.689881 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.623037 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.368950 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.383391 ], [ 49.746094, -16.804541 ], [ 49.482422, -17.056785 ], [ 49.394531, -17.895114 ], [ 47.021484, -24.926295 ], [ 45.351562, -25.562265 ], [ 44.033203, -24.926295 ], [ 43.681641, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.289374 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.296875, -20.055931 ], [ 44.384766, -19.394068 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.804541 ], [ 44.384766, -16.214675 ], [ 44.912109, -16.130262 ], [ 45.791016, -15.792254 ], [ 46.230469, -15.707663 ], [ 47.636719, -14.519780 ], [ 47.988281, -14.008696 ], [ 47.812500, -13.581921 ], [ 48.251953, -13.752725 ], [ 48.779297, -13.068777 ], [ 48.779297, -12.468760 ], [ 49.130859, -12.039321 ], [ 49.482422, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.130859, -12.039321 ], [ 49.482422, -12.468760 ], [ 50.009766, -13.496473 ], [ 50.185547, -14.689881 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.623037 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.368950 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.383391 ], [ 49.746094, -16.804541 ], [ 49.482422, -17.056785 ], [ 49.394531, -17.895114 ], [ 47.021484, -24.926295 ], [ 45.351562, -25.562265 ], [ 44.033203, -24.926295 ], [ 43.681641, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.289374 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.296875, -20.055931 ], [ 44.384766, -19.394068 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.804541 ], [ 44.384766, -16.214675 ], [ 44.912109, -16.130262 ], [ 45.791016, -15.792254 ], [ 46.230469, -15.707663 ], [ 47.636719, -14.519780 ], [ 47.988281, -14.008696 ], [ 47.812500, -13.581921 ], [ 48.251953, -13.752725 ], [ 48.779297, -13.068777 ], [ 48.779297, -12.468760 ], [ 49.130859, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ] ] ], [ [ [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ] ] ], [ [ [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ] ] ], [ [ [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ] ] ], [ [ [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ] ] ], [ [ [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ] ] ], [ [ [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ] ] ], [ [ [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 109.775391, 1.406109 ], [ 110.478516, 0.790990 ], [ 111.093750, 1.054628 ], [ 111.796875, 0.966751 ], [ 112.324219, 1.493971 ], [ 112.851562, 1.581830 ], [ 113.730469, 1.230374 ], [ 114.609375, 1.493971 ], [ 115.048828, 2.899153 ], [ 115.488281, 3.250209 ], [ 115.839844, 4.390229 ], [ 116.982422, 4.390229 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ] ] ], [ [ [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ] ] ], [ [ [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ] ] ], [ [ [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ] ] ], [ [ [ 116.982422, 4.390229 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 109.775391, 1.406109 ], [ 110.478516, 0.790990 ], [ 111.093750, 1.054628 ], [ 111.796875, 0.966751 ], [ 112.324219, 1.493971 ], [ 112.851562, 1.581830 ], [ 113.730469, 1.230374 ], [ 114.609375, 1.493971 ], [ 115.048828, 2.899153 ], [ 115.488281, 3.250209 ], [ 115.839844, 4.390229 ], [ 116.982422, 4.390229 ] ] ], [ [ [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ] ] ], [ [ [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ] ] ], [ [ [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.358544 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 145.371094, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 114.169922, -22.512557 ], [ 114.609375, -21.779905 ], [ 115.400391, -21.453069 ], [ 115.927734, -21.043491 ], [ 116.630859, -20.632784 ], [ 117.158203, -20.550509 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.303418 ], [ 118.828125, -20.220966 ], [ 118.916016, -19.973349 ], [ 119.179688, -19.890723 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.646245 ], [ 122.167969, -18.145852 ], [ 122.255859, -17.224758 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.551962 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.604847 ], [ 125.595703, -14.434680 ], [ 125.683594, -14.179186 ], [ 126.123047, -14.264383 ], [ 126.123047, -14.093957 ], [ 127.001953, -13.752725 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 129.814453, -13.581921 ], [ 130.253906, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.468760 ], [ 131.220703, -12.125264 ], [ 131.660156, -12.297068 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 131.748047, -11.264612 ], [ 132.275391, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.505859, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.867351 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 136.230469, -13.239945 ], [ 135.878906, -13.239945 ], [ 136.054688, -13.667338 ], [ 135.351562, -14.689881 ], [ 135.439453, -14.944785 ], [ 136.230469, -15.538376 ], [ 137.021484, -15.792254 ], [ 138.251953, -16.804541 ], [ 138.515625, -16.804541 ], [ 139.042969, -17.056785 ], [ 139.218750, -17.308688 ], [ 140.185547, -17.644022 ], [ 140.800781, -17.308688 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.591797, -12.897489 ], [ 141.767578, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.470703, -10.660608 ], [ 142.734375, -11.092166 ], [ 142.822266, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.297068 ], [ 143.437500, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 145.195312, -15.368950 ], [ 145.458984, -16.214675 ], [ 145.634766, -16.720385 ], [ 145.810547, -16.888660 ], [ 146.074219, -17.727759 ], [ 145.986328, -18.229351 ], [ 146.337891, -18.895893 ], [ 147.392578, -19.476950 ], [ 148.798828, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.238281, -21.207459 ], [ 149.677734, -22.268764 ], [ 150.029297, -22.105999 ], [ 150.468750, -22.512557 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.017578, -27.215556 ], [ 153.544922, -28.071980 ], [ 153.457031, -28.921631 ], [ 153.017578, -30.297018 ], [ 153.017578, -30.902225 ], [ 152.402344, -32.546813 ], [ 151.699219, -32.990236 ], [ 150.996094, -34.307144 ], [ 150.644531, -35.101934 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.090240 ], [ 149.941406, -37.370157 ], [ 149.414062, -37.718590 ], [ 148.271484, -37.788081 ], [ 147.304688, -38.203655 ], [ 146.250000, -39.027719 ], [ 145.458984, -38.548165 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 144.404297, -38.065392 ], [ 143.525391, -38.754083 ], [ 140.625000, -37.996163 ], [ 139.921875, -37.370157 ], [ 139.570312, -36.102376 ], [ 139.042969, -35.675147 ], [ 138.076172, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.285156, -34.669359 ], [ 137.460938, -34.089061 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 136.933594, -33.724340 ], [ 136.318359, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.175781, -33.943360 ], [ 134.560547, -33.211116 ], [ 134.033203, -32.842674 ], [ 134.208984, -32.546813 ], [ 132.978516, -31.952162 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.428663 ], [ 129.462891, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.175612 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.916485 ], [ 124.013672, -33.431441 ], [ 123.574219, -33.870416 ], [ 122.167969, -33.943360 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.452218 ], [ 119.003906, -34.452218 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 115.488281, -34.379713 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.488281, -33.431441 ], [ 115.664062, -33.211116 ], [ 115.751953, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 114.960938, -29.458731 ], [ 114.609375, -28.767659 ], [ 114.609375, -28.459033 ], [ 114.169922, -28.071980 ], [ 113.994141, -27.293689 ], [ 113.466797, -26.509905 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 113.906250, -25.878994 ], [ 114.169922, -26.273714 ], [ 114.169922, -25.720735 ], [ 113.378906, -24.367114 ], [ 113.818359, -22.998852 ], [ 113.730469, -22.431340 ], [ 114.082031, -21.779905 ], [ 114.169922, -22.512557 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.358544 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 145.371094, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ] ] ], [ [ [ 142.470703, -10.660608 ], [ 142.734375, -11.092166 ], [ 142.822266, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.297068 ], [ 143.437500, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 145.195312, -15.368950 ], [ 145.458984, -16.214675 ], [ 145.634766, -16.720385 ], [ 145.810547, -16.888660 ], [ 146.074219, -17.727759 ], [ 145.986328, -18.229351 ], [ 146.337891, -18.895893 ], [ 147.392578, -19.476950 ], [ 148.798828, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.238281, -21.207459 ], [ 149.677734, -22.268764 ], [ 150.029297, -22.105999 ], [ 150.468750, -22.512557 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.017578, -27.215556 ], [ 153.544922, -28.071980 ], [ 153.457031, -28.921631 ], [ 153.017578, -30.297018 ], [ 153.017578, -30.902225 ], [ 152.402344, -32.546813 ], [ 151.699219, -32.990236 ], [ 150.996094, -34.307144 ], [ 150.644531, -35.101934 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.090240 ], [ 149.941406, -37.370157 ], [ 149.414062, -37.718590 ], [ 148.271484, -37.788081 ], [ 147.304688, -38.203655 ], [ 146.250000, -39.027719 ], [ 145.458984, -38.548165 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 144.404297, -38.065392 ], [ 143.525391, -38.754083 ], [ 140.625000, -37.996163 ], [ 139.921875, -37.370157 ], [ 139.570312, -36.102376 ], [ 139.042969, -35.675147 ], [ 138.076172, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.285156, -34.669359 ], [ 137.460938, -34.089061 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 136.933594, -33.724340 ], [ 136.318359, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.175781, -33.943360 ], [ 134.560547, -33.211116 ], [ 134.033203, -32.842674 ], [ 134.208984, -32.546813 ], [ 132.978516, -31.952162 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.428663 ], [ 129.462891, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.175612 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.916485 ], [ 124.013672, -33.431441 ], [ 123.574219, -33.870416 ], [ 122.167969, -33.943360 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.452218 ], [ 119.003906, -34.452218 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 115.488281, -34.379713 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.488281, -33.431441 ], [ 115.664062, -33.211116 ], [ 115.751953, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 114.960938, -29.458731 ], [ 114.609375, -28.767659 ], [ 114.609375, -28.459033 ], [ 114.169922, -28.071980 ], [ 113.994141, -27.293689 ], [ 113.466797, -26.509905 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 113.906250, -25.878994 ], [ 114.169922, -26.273714 ], [ 114.169922, -25.720735 ], [ 113.378906, -24.367114 ], [ 113.818359, -22.998852 ], [ 113.730469, -22.431340 ], [ 114.082031, -21.698265 ], [ 114.169922, -22.512557 ], [ 114.609375, -21.779905 ], [ 115.400391, -21.453069 ], [ 115.927734, -21.043491 ], [ 116.630859, -20.632784 ], [ 117.158203, -20.550509 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.303418 ], [ 118.828125, -20.220966 ], [ 118.916016, -19.973349 ], [ 119.179688, -19.890723 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.646245 ], [ 122.167969, -18.145852 ], [ 122.255859, -17.224758 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.551962 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.604847 ], [ 125.595703, -14.434680 ], [ 125.683594, -14.179186 ], [ 126.123047, -14.264383 ], [ 126.123047, -14.093957 ], [ 127.001953, -13.752725 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 129.814453, -13.581921 ], [ 130.253906, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.468760 ], [ 131.220703, -12.125264 ], [ 131.660156, -12.297068 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 131.748047, -11.264612 ], [ 132.275391, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.505859, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.867351 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 136.230469, -13.239945 ], [ 135.878906, -13.239945 ], [ 136.054688, -13.667338 ], [ 135.351562, -14.689881 ], [ 135.439453, -14.944785 ], [ 136.230469, -15.538376 ], [ 137.021484, -15.792254 ], [ 138.251953, -16.804541 ], [ 138.515625, -16.804541 ], [ 139.042969, -17.056785 ], [ 139.218750, -17.308688 ], [ 140.185547, -17.644022 ], [ 140.800781, -17.308688 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.591797, -12.897489 ], [ 141.767578, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.470703, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.580078, -3.776559 ], [ 145.810547, -4.828260 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 148.007812, -7.972198 ], [ 148.710938, -9.102097 ], [ 149.238281, -9.015302 ], [ 149.238281, -9.449062 ], [ 150.029297, -9.622414 ], [ 149.677734, -9.795678 ], [ 150.732422, -10.228437 ], [ 150.644531, -10.574222 ], [ 149.941406, -10.574222 ], [ 149.765625, -10.314919 ], [ 147.832031, -10.055403 ], [ 146.513672, -8.928487 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ] ] ], [ [ [ 154.687500, -5.266008 ], [ 155.478516, -6.140555 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.566406, -6.839170 ], [ 155.126953, -6.489983 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.090944 ], [ 154.599609, -5.003394 ], [ 154.687500, -5.266008 ] ] ], [ [ [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.790897 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.271484, -5.703448 ], [ 148.359375, -5.353521 ], [ 149.238281, -5.528511 ], [ 149.765625, -5.441022 ], [ 149.941406, -5.003394 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ], [ 152.314453, -4.302591 ] ] ], [ [ [ 152.226562, -3.162456 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -2.986927 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ], [ 145.810547, -4.828260 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 148.007812, -7.972198 ], [ 148.710938, -9.102097 ], [ 149.238281, -9.015302 ], [ 149.238281, -9.449062 ], [ 150.029297, -9.622414 ], [ 149.677734, -9.795678 ], [ 150.732422, -10.228437 ], [ 150.644531, -10.574222 ], [ 149.941406, -10.574222 ], [ 149.765625, -10.314919 ], [ 147.832031, -10.055403 ], [ 146.513672, -8.928487 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.547988 ] ] ], [ [ [ 154.599609, -5.003394 ], [ 154.687500, -5.266008 ], [ 155.478516, -6.140555 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.566406, -6.839170 ], [ 155.126953, -6.489983 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.090944 ], [ 154.599609, -5.003394 ] ] ], [ [ [ 152.050781, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.790897 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.271484, -5.703448 ], [ 148.359375, -5.353521 ], [ 149.238281, -5.528511 ], [ 149.765625, -5.441022 ], [ 149.941406, -5.003394 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.162456 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -2.986927 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ] ] ], [ [ [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.630859, -9.535749 ], [ 161.455078, -9.709057 ], [ 160.751953, -8.841651 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.536764 ], [ 159.609375, -7.972198 ], [ 159.873047, -8.320212 ], [ 159.873047, -8.494105 ], [ 158.203125, -7.362467 ], [ 158.291016, -7.275292 ], [ 158.818359, -7.536764 ] ] ], [ [ [ 157.060547, -7.013668 ], [ 157.500000, -7.275292 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.100893 ], [ 156.445312, -6.751896 ], [ 156.533203, -6.577303 ], [ 157.060547, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ] ] ], [ [ [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.188870 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 161.279297, -9.102097 ], [ 161.630859, -9.535749 ], [ 161.455078, -9.709057 ], [ 160.751953, -8.841651 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 158.291016, -7.275292 ], [ 158.818359, -7.536764 ], [ 159.609375, -7.972198 ], [ 159.873047, -8.320212 ], [ 159.873047, -8.494105 ], [ 158.203125, -7.362467 ], [ 158.291016, -7.275292 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.060547, -7.013668 ], [ 157.500000, -7.275292 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.100893 ], [ 156.445312, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -16.130262 ], [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ] ] ], [ [ [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.728516, -15.623037 ], [ 166.640625, -15.368950 ], [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -16.130262 ], [ 167.167969, -15.876809 ] ] ], [ [ [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.728516, -15.623037 ], [ 166.640625, -15.368950 ], [ 166.552734, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.091797, -20.385825 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.091797, -20.385825 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 173.144531, -42.940339 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.695312, -46.255847 ], [ 166.640625, -46.195042 ], [ 166.464844, -45.828799 ], [ 166.992188, -45.089036 ], [ 168.222656, -44.087585 ], [ 168.925781, -43.897892 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.705729 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ] ] ], [ [ [ 173.496094, -34.957995 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.781250, -36.738884 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 177.363281, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.842286 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.990234, -41.376809 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 173.847656, -39.095963 ], [ 174.550781, -38.754083 ], [ 174.726562, -37.996163 ], [ 174.638672, -37.370157 ], [ 174.287109, -36.668419 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ], [ 173.496094, -34.957995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 173.144531, -42.940339 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.695312, -46.255847 ], [ 166.640625, -46.195042 ], [ 166.464844, -45.828799 ], [ 166.992188, -45.089036 ], [ 168.222656, -44.087585 ], [ 168.925781, -43.897892 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.705729 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ] ] ], [ [ [ 172.968750, -34.379713 ], [ 173.496094, -34.957995 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.781250, -36.738884 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 177.363281, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.842286 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.990234, -41.376809 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 173.847656, -39.095963 ], [ 174.550781, -38.754083 ], [ 174.726562, -37.996163 ], [ 174.638672, -37.370157 ], [ 174.287109, -36.668419 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.053203 ], [ -72.290039, -54.470038 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.872070, -53.041213 ], [ -72.465820, -53.696706 ], [ -71.147461, -54.059388 ], [ -70.620117, -53.592505 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -69.125977, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.038086, -27.488781 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -71.147461, -37.544577 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -71.938477, -46.860191 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -69.521484, -52.133488 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -69.960938, -52.536273 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -73.740234, -52.829321 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -71.894531, -33.906896 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.751953, -25.681137 ], [ -70.092773, -21.371244 ], [ -70.180664, -19.725342 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ], [ -69.125977, -18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.053203 ], [ -72.290039, -54.470038 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.872070, -53.041213 ], [ -72.465820, -53.696706 ], [ -71.147461, -54.059388 ], [ -70.620117, -53.592505 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.125977, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.038086, -27.488781 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -71.147461, -37.544577 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -71.938477, -46.860191 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -69.521484, -52.133488 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -69.960938, -52.536273 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -73.740234, -52.829321 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -71.894531, -33.906896 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.751953, -25.681137 ], [ -70.092773, -21.371244 ], [ -70.180664, -19.725342 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478516, -10.487812 ], [ -65.346680, -10.876465 ], [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.743164, -13.453737 ], [ -61.127930, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.468750, -14.349548 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.403320, -16.846605 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.700195, -18.937464 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -60.073242, -19.311143 ], [ -61.787109, -19.601194 ], [ -62.270508, -20.509355 ], [ -62.314453, -21.043491 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.247070, -21.493964 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.125977, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.818359, -11.005904 ], [ -68.291016, -11.005904 ], [ -68.071289, -10.703792 ], [ -67.192383, -10.271681 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.478516, -10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.478516, -10.487812 ], [ -65.346680, -10.876465 ], [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.743164, -13.453737 ], [ -61.127930, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.468750, -14.349548 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.403320, -16.846605 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.700195, -18.937464 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -60.073242, -19.311143 ], [ -61.787109, -19.601194 ], [ -62.270508, -20.509355 ], [ -62.314453, -21.043491 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.247070, -21.493964 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.125977, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.818359, -11.005904 ], [ -68.291016, -11.005904 ], [ -68.071289, -10.703792 ], [ -67.192383, -10.271681 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.138470 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.634293 ], [ -55.546875, -23.563987 ], [ -55.415039, -23.926013 ], [ -55.063477, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.316406, -24.567108 ], [ -54.667969, -25.720735 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -57.612305, -27.371767 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -58.842773, -24.766785 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -62.314453, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.601194 ], [ -60.073242, -19.311143 ], [ -59.150391, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.073242, -19.311143 ], [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.138470 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.634293 ], [ -55.546875, -23.563987 ], [ -55.415039, -23.926013 ], [ -55.063477, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.316406, -24.567108 ], [ -54.667969, -25.720735 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -57.612305, -27.371767 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -58.842773, -24.766785 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -62.314453, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.601194 ], [ -60.073242, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ] ] ], [ [ [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.864510 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ] ] ], [ [ [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ] ] ], [ [ [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ] ] ], [ [ [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ] ] ], [ [ [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ] ] ], [ [ [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ] ] ], [ [ [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ] ] ], [ [ [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ] ] ], [ [ [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ] ] ], [ [ [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ] ] ], [ [ [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ] ] ], [ [ [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.818359, 63.763065 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ] ] ], [ [ [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ] ] ], [ [ [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ] ] ], [ [ [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ] ] ], [ [ [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ] ] ], [ [ [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ] ] ], [ [ [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ] ] ], [ [ [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ] ] ], [ [ [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ] ] ], [ [ [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ] ] ], [ [ [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ] ] ], [ [ [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.945312, 15.919074 ], [ -88.637695, 15.707663 ], [ -88.549805, 15.876809 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.368950 ], [ -89.165039, 15.072124 ], [ -89.252930, 14.902322 ], [ -89.165039, 14.689881 ], [ -89.384766, 14.434680 ], [ -89.604492, 14.392118 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.131836, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.274414, 13.966054 ], [ -91.713867, 14.136576 ], [ -92.241211, 14.562318 ], [ -92.241211, 14.859850 ], [ -92.109375, 15.072124 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.509833 ], [ -90.747070, 16.720385 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.945312, 15.919074 ], [ -88.637695, 15.707663 ], [ -88.549805, 15.876809 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.368950 ], [ -89.165039, 15.072124 ], [ -89.252930, 14.902322 ], [ -89.165039, 14.689881 ], [ -89.384766, 14.434680 ], [ -89.604492, 14.392118 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.131836, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.274414, 13.966054 ], [ -91.713867, 14.136576 ], [ -92.241211, 14.562318 ], [ -92.241211, 14.859850 ], [ -92.109375, 15.072124 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.509833 ], [ -90.747070, 16.720385 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ] ] ], [ [ [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ] ] ], [ [ [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ] ] ], [ [ [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.330078, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.154297, 18.104087 ], [ -88.286133, 17.685895 ], [ -88.198242, 17.518344 ], [ -88.330078, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.551962 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.256867 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.978733 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.521283 ], [ -88.330078, 18.521283 ], [ -88.330078, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.330078, 18.521283 ], [ -88.330078, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.154297, 18.104087 ], [ -88.286133, 17.685895 ], [ -88.198242, 17.518344 ], [ -88.330078, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.551962 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.256867 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.978733 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.521283 ], [ -88.330078, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.549805, 14.008696 ], [ -88.505859, 13.880746 ], [ -88.066406, 13.966054 ], [ -87.890625, 13.923404 ], [ -87.758789, 13.795406 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.539201 ], [ -90.131836, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.604492, 14.392118 ], [ -89.384766, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.549805, 14.008696 ], [ -88.505859, 13.880746 ], [ -88.066406, 13.966054 ], [ -87.890625, 13.923404 ], [ -87.758789, 13.795406 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.539201 ], [ -90.131836, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.604492, 14.392118 ], [ -89.384766, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.473633, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.876809 ], [ -83.803711, 15.453680 ], [ -83.452148, 15.284185 ], [ -83.188477, 15.029686 ], [ -83.496094, 15.029686 ], [ -83.671875, 14.902322 ], [ -83.979492, 14.774883 ], [ -84.243164, 14.774883 ], [ -84.462891, 14.647368 ], [ -84.682617, 14.689881 ], [ -84.858398, 14.859850 ], [ -84.946289, 14.817371 ], [ -85.078125, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.392118 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.352539, 13.795406 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -86.923828, 13.282719 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.025966 ], [ -87.495117, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.758789, 13.795406 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.880746 ], [ -88.549805, 14.008696 ], [ -89.077148, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.252930, 14.902322 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.368950 ], [ -88.242188, 15.749963 ], [ -88.154297, 15.707663 ], [ -87.934570, 15.876809 ], [ -87.626953, 15.919074 ], [ -87.539062, 15.834536 ], [ -87.407227, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.132812, 15.919074 ], [ -86.044922, 16.045813 ], [ -85.473633, 15.919074 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.044922, 16.045813 ], [ -85.473633, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.876809 ], [ -83.803711, 15.453680 ], [ -83.452148, 15.284185 ], [ -83.188477, 15.029686 ], [ -83.496094, 15.029686 ], [ -83.671875, 14.902322 ], [ -83.979492, 14.774883 ], [ -84.243164, 14.774883 ], [ -84.462891, 14.647368 ], [ -84.682617, 14.689881 ], [ -84.858398, 14.859850 ], [ -84.946289, 14.817371 ], [ -85.078125, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.392118 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.352539, 13.795406 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -86.923828, 13.282719 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.025966 ], [ -87.495117, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.758789, 13.795406 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.880746 ], [ -88.549805, 14.008696 ], [ -89.077148, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.252930, 14.902322 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.368950 ], [ -88.242188, 15.749963 ], [ -88.154297, 15.707663 ], [ -87.934570, 15.876809 ], [ -87.626953, 15.919074 ], [ -87.539062, 15.834536 ], [ -87.407227, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.132812, 15.919074 ], [ -86.044922, 16.045813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.689881 ], [ -83.188477, 14.349548 ], [ -83.452148, 14.008696 ], [ -83.540039, 13.581921 ], [ -83.583984, 13.154376 ], [ -83.496094, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.759766, 11.910354 ], [ -83.671875, 11.652236 ], [ -83.891602, 11.393879 ], [ -83.847656, 11.135287 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.199219, 10.833306 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.946289, 10.962764 ], [ -85.605469, 11.221510 ], [ -85.737305, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.168226 ], [ -87.670898, 12.940322 ], [ -87.583008, 13.068777 ], [ -87.407227, 12.940322 ], [ -87.319336, 13.025966 ], [ -87.011719, 13.025966 ], [ -86.923828, 13.282719 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.352539, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -85.166016, 14.392118 ], [ -85.166016, 14.562318 ], [ -85.078125, 14.562318 ], [ -84.946289, 14.817371 ], [ -84.858398, 14.859850 ], [ -84.682617, 14.689881 ], [ -84.462891, 14.647368 ], [ -84.243164, 14.774883 ], [ -83.979492, 14.774883 ], [ -83.671875, 14.902322 ], [ -83.496094, 15.029686 ], [ -83.188477, 15.029686 ], [ -83.320312, 14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.188477, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.188477, 14.349548 ], [ -83.452148, 14.008696 ], [ -83.540039, 13.581921 ], [ -83.583984, 13.154376 ], [ -83.496094, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.759766, 11.910354 ], [ -83.671875, 11.652236 ], [ -83.891602, 11.393879 ], [ -83.847656, 11.135287 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.199219, 10.833306 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.946289, 10.962764 ], [ -85.605469, 11.221510 ], [ -85.737305, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.168226 ], [ -87.670898, 12.940322 ], [ -87.583008, 13.068777 ], [ -87.407227, 12.940322 ], [ -87.319336, 13.025966 ], [ -87.011719, 13.025966 ], [ -86.923828, 13.282719 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.352539, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -85.166016, 14.392118 ], [ -85.166016, 14.562318 ], [ -85.078125, 14.562318 ], [ -84.946289, 14.817371 ], [ -84.858398, 14.859850 ], [ -84.682617, 14.689881 ], [ -84.462891, 14.647368 ], [ -84.243164, 14.774883 ], [ -83.979492, 14.774883 ], [ -83.671875, 14.902322 ], [ -83.496094, 15.029686 ], [ -83.188477, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.639648, 23.120154 ], [ -79.716797, 22.796439 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.248422 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.673828, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -77.519531, 20.673905 ], [ -78.178711, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.321289, 21.575719 ], [ -80.244141, 21.861499 ], [ -80.551758, 22.065278 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.067383, 21.943046 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.228090 ], [ -84.243164, 22.593726 ], [ -83.803711, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ], [ -79.716797, 22.796439 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.248422 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.673828, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -77.519531, 20.673905 ], [ -78.178711, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.321289, 21.575719 ], [ -80.244141, 21.861499 ], [ -80.551758, 22.065278 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.067383, 21.943046 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.228090 ], [ -84.243164, 22.593726 ], [ -83.803711, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.309570, 23.200961 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.946289, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -83.408203, 10.401378 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.968750, 9.102097 ], [ -82.749023, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.836914, 8.667918 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.627930, 8.841651 ], [ -83.671875, 9.058702 ], [ -83.935547, 9.318990 ], [ -84.682617, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.946289, 9.838979 ], [ -85.122070, 9.579084 ], [ -85.341797, 9.838979 ], [ -85.693359, 9.968851 ], [ -85.825195, 10.141932 ], [ -85.825195, 10.444598 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ], [ -84.946289, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.221510 ], [ -84.946289, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -83.408203, 10.401378 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.968750, 9.102097 ], [ -82.749023, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.836914, 8.667918 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.627930, 8.841651 ], [ -83.671875, 9.058702 ], [ -83.935547, 9.318990 ], [ -84.682617, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.946289, 9.838979 ], [ -85.122070, 9.579084 ], [ -85.341797, 9.838979 ], [ -85.693359, 9.968851 ], [ -85.825195, 10.141932 ], [ -85.825195, 10.444598 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.057617, 9.579084 ], [ -79.101562, 9.492408 ], [ -78.530273, 9.449062 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.222656, 7.536764 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.145508, 9.015302 ], [ -79.584961, 8.971897 ], [ -79.760742, 8.624472 ], [ -80.200195, 8.363693 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.210938, 7.667441 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.397461, 8.320212 ], [ -82.836914, 8.320212 ], [ -82.880859, 8.102739 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.667918 ], [ -82.880859, 8.841651 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.232249 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.738281, 9.058702 ], [ -81.474609, 8.798225 ], [ -80.991211, 8.885072 ], [ -80.551758, 9.145486 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.057617, 9.579084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.057617, 9.579084 ], [ -79.101562, 9.492408 ], [ -78.530273, 9.449062 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.222656, 7.536764 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.145508, 9.015302 ], [ -79.584961, 8.971897 ], [ -79.760742, 8.624472 ], [ -80.200195, 8.363693 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.210938, 7.667441 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.397461, 8.320212 ], [ -82.836914, 8.320212 ], [ -82.880859, 8.102739 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.667918 ], [ -82.880859, 8.841651 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.232249 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.738281, 9.058702 ], [ -81.474609, 8.798225 ], [ -80.991211, 8.885072 ], [ -80.551758, 9.145486 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ], [ -76.376953, 18.187607 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.211914, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.827148, 18.562947 ], [ -77.607422, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.827148, 18.562947 ], [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ], [ -76.376953, 18.187607 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.211914, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.827148, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.354526 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ], [ -72.597656, 19.890723 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.932041 ], [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.354526 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.818359, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.437925 ], [ -69.653320, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.271086 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.015625, 18.312811 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.354526 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.818359, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.437925 ], [ -69.653320, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.271086 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.015625, 18.312811 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.354526 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.790141 ], [ -61.127930, 10.919618 ], [ -60.908203, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.127930, 10.919618 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.790141 ], [ -61.127930, 10.919618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.987305, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.987305, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 25.918526 ], [ -11.997070, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.590820, 27.019984 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.448242, 27.098254 ], [ -8.833008, 27.137368 ], [ -8.833008, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ], [ -11.997070, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.590820, 27.019984 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.448242, 27.098254 ], [ -8.833008, 27.137368 ], [ -8.833008, 27.683528 ], [ -8.701172, 27.683528 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.041992, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.294922, 41.934977 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -6.899414, 40.346544 ], [ -7.031250, 40.212441 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.207031, 37.822802 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.920898, 36.879621 ], [ -8.789062, 37.683820 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -8.833008, 41.211722 ], [ -9.008789, 41.574361 ], [ -9.052734, 41.902277 ], [ -8.701172, 42.163403 ], [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.294922, 41.934977 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -6.899414, 40.346544 ], [ -7.031250, 40.212441 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.207031, 37.822802 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.920898, 36.879621 ], [ -8.789062, 37.683820 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -8.833008, 41.211722 ], [ -9.008789, 41.574361 ], [ -9.052734, 41.902277 ], [ -8.701172, 42.163403 ], [ -8.305664, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ -0.307617, 39.334297 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ -0.307617, 39.334297 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.341226 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -12.128906, 14.008696 ], [ -11.953125, 13.453737 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.557617, 12.468760 ], [ -11.689453, 12.425848 ], [ -12.216797, 12.468760 ], [ -12.304688, 12.382928 ], [ -12.524414, 12.340002 ], [ -13.227539, 12.597455 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.732422, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.539201 ], [ -14.721680, 13.325485 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.414062, 13.667338 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -15.424805, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.743164, 13.624633 ], [ -17.138672, 14.392118 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.743164, 15.623037 ], [ -16.479492, 16.172473 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.161133, 16.594081 ], [ -14.589844, 16.636192 ], [ -14.106445, 16.341226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -14.106445, 16.341226 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -12.128906, 14.008696 ], [ -11.953125, 13.453737 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.557617, 12.468760 ], [ -11.689453, 12.425848 ], [ -12.216797, 12.468760 ], [ -12.304688, 12.382928 ], [ -12.524414, 12.340002 ], [ -13.227539, 12.597455 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.732422, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.539201 ], [ -14.721680, 13.325485 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.414062, 13.667338 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -15.424805, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.743164, 13.624633 ], [ -17.138672, 14.392118 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.743164, 15.623037 ], [ -16.479492, 16.172473 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.161133, 16.594081 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.721680, 13.667338 ], [ -14.414062, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.325485 ], [ -15.161133, 13.539201 ], [ -15.512695, 13.282719 ], [ -15.732422, 13.282719 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ], [ -15.117188, 13.880746 ], [ -14.721680, 13.667338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.880746 ], [ -14.721680, 13.667338 ], [ -14.414062, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.325485 ], [ -15.161133, 13.539201 ], [ -15.512695, 13.282719 ], [ -15.732422, 13.282719 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ], [ -15.117188, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.524414, 12.340002 ], [ -12.304688, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.689453, 12.425848 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.337891, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.898438, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.931641, 12.082296 ], [ -9.360352, 12.340002 ], [ -9.140625, 12.340002 ], [ -8.920898, 12.125264 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.613281, 11.178402 ], [ -8.657227, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.305664, 10.833306 ], [ -8.349609, 10.531020 ], [ -8.041992, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -8.085938, 9.405710 ], [ -7.866211, 8.581021 ], [ -8.217773, 8.494105 ], [ -8.305664, 8.320212 ], [ -8.261719, 8.146243 ], [ -8.305664, 7.710992 ], [ -8.481445, 7.710992 ], [ -8.745117, 7.754537 ], [ -8.964844, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.360352, 7.928675 ], [ -9.755859, 8.581021 ], [ -10.019531, 8.450639 ], [ -10.546875, 8.363693 ], [ -10.502930, 8.754795 ], [ -10.678711, 9.015302 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.172852, 9.882275 ], [ -12.436523, 9.838979 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -13.710938, 9.535749 ], [ -14.106445, 9.925566 ], [ -14.589844, 10.228437 ], [ -14.721680, 10.660608 ], [ -14.853516, 10.919618 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -14.414062, 11.523088 ], [ -14.150391, 11.695273 ], [ -13.930664, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.168226 ], [ -13.754883, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.597455 ], [ -12.524414, 12.340002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.597455 ], [ -12.524414, 12.340002 ], [ -12.304688, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.689453, 12.425848 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.337891, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.898438, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.931641, 12.082296 ], [ -9.360352, 12.340002 ], [ -9.140625, 12.340002 ], [ -8.920898, 12.125264 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.613281, 11.178402 ], [ -8.657227, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.305664, 10.833306 ], [ -8.349609, 10.531020 ], [ -8.041992, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -8.085938, 9.405710 ], [ -7.866211, 8.581021 ], [ -8.217773, 8.494105 ], [ -8.305664, 8.320212 ], [ -8.261719, 8.146243 ], [ -8.305664, 7.710992 ], [ -8.481445, 7.710992 ], [ -8.745117, 7.754537 ], [ -8.964844, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.360352, 7.928675 ], [ -9.755859, 8.581021 ], [ -10.019531, 8.450639 ], [ -10.546875, 8.363693 ], [ -10.502930, 8.754795 ], [ -10.678711, 9.015302 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.172852, 9.882275 ], [ -12.436523, 9.838979 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -13.710938, 9.535749 ], [ -14.106445, 9.925566 ], [ -14.589844, 10.228437 ], [ -14.721680, 10.660608 ], [ -14.853516, 10.919618 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -14.414062, 11.523088 ], [ -14.150391, 11.695273 ], [ -13.930664, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.168226 ], [ -13.754883, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.634766, 9.275622 ], [ -10.678711, 9.015302 ], [ -10.502930, 8.754795 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.144499 ], [ -11.469727, 6.795535 ], [ -11.733398, 6.882800 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.841615 ], [ -13.139648, 8.189742 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.172852, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.678711, 9.015302 ], [ -10.502930, 8.754795 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.144499 ], [ -11.469727, 6.795535 ], [ -11.733398, 6.882800 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.841615 ], [ -13.139648, 8.189742 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.172852, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.678711, 15.156974 ], [ -11.381836, 15.411319 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.341226 ], [ -14.589844, 16.636192 ], [ -15.161133, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.567383, 16.678293 ], [ -16.303711, 17.182779 ], [ -16.171875, 18.145852 ], [ -16.391602, 19.601194 ], [ -16.303711, 20.097206 ], [ -16.567383, 20.591652 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.678711, 15.156974 ], [ -11.381836, 15.411319 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.341226 ], [ -14.589844, 16.636192 ], [ -15.161133, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.567383, 16.678293 ], [ -16.303711, 17.182779 ], [ -16.171875, 18.145852 ], [ -16.391602, 19.601194 ], [ -16.303711, 20.097206 ], [ -16.567383, 20.591652 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ], [ 1.801758, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.360352, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.964844, 7.318882 ], [ -8.745117, 7.754537 ], [ -8.481445, 7.710992 ], [ -8.525391, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.602539, 5.747174 ], [ -7.558594, 5.353521 ], [ -7.646484, 5.222247 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.008789, 4.872048 ], [ -9.931641, 5.615986 ], [ -10.766602, 6.184246 ], [ -11.469727, 6.795535 ], [ -11.206055, 7.144499 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ], [ -9.360352, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.360352, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.964844, 7.318882 ], [ -8.745117, 7.754537 ], [ -8.481445, 7.710992 ], [ -8.525391, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.602539, 5.747174 ], [ -7.558594, 5.353521 ], [ -7.646484, 5.222247 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.008789, 4.872048 ], [ -9.931641, 5.615986 ], [ -10.766602, 6.184246 ], [ -11.469727, 6.795535 ], [ -11.206055, 7.144499 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -161.938477, -85.137560 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.313119 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.528806 ], [ -173.144531, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.631968 ], [ -59.589844, -80.035262 ] ] ], [ [ [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ] ] ], [ [ [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ] ] ], [ [ [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -161.938477, -85.137560 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.313119 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ] ] ], [ [ [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.622070, -0.043945 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.622070, -0.043945 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.622070, -0.043945 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.622070, -0.043945 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, -6.620957 ], [ 16.831055, -7.188101 ], [ 17.446289, -8.059230 ], [ 18.105469, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 19.995117, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.928711, -8.276727 ], [ 21.796875, -8.885072 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 22.368164, -10.962764 ], [ 22.807617, -11.005904 ], [ 23.422852, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.221510 ], [ 23.862305, -11.695273 ], [ 24.038086, -12.168226 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 12.788086, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 11.777344, -15.792254 ], [ 12.084961, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 13.666992, -10.703792 ], [ 13.359375, -10.358151 ], [ 12.832031, -9.145486 ], [ 12.919922, -8.928487 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ], [ 16.567383, -6.620957 ] ] ], [ [ [ 12.963867, -4.740675 ], [ 12.612305, -4.959615 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.303711, -5.834616 ], [ 16.567383, -6.620957 ], [ 16.831055, -7.188101 ], [ 17.446289, -8.059230 ], [ 18.105469, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 19.995117, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.928711, -8.276727 ], [ 21.796875, -8.885072 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 22.368164, -10.962764 ], [ 22.807617, -11.005904 ], [ 23.422852, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.221510 ], [ 23.862305, -11.695273 ], [ 24.038086, -12.168226 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 12.788086, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 11.777344, -15.792254 ], [ 12.084961, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 13.666992, -10.703792 ], [ 13.359375, -10.358151 ], [ 12.832031, -9.145486 ], [ 12.919922, -8.928487 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.959615 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.018555, -17.392579 ], [ 14.194336, -17.350638 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 24.653320, -17.350638 ], [ 25.048828, -17.560247 ], [ 25.048828, -17.644022 ], [ 24.477539, -17.853290 ], [ 24.213867, -17.853290 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 21.621094, -18.187607 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 17.182617, -28.343065 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.600586, -27.800210 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.370117, -22.634293 ], [ 14.238281, -22.105999 ], [ 13.842773, -21.698265 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 12.788086, -16.930705 ], [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ], [ 14.194336, -17.350638 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 24.653320, -17.350638 ], [ 25.048828, -17.560247 ], [ 25.048828, -17.644022 ], [ 24.477539, -17.853290 ], [ 24.213867, -17.853290 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 21.621094, -18.187607 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 17.182617, -28.343065 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.600586, -27.800210 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.370117, -22.634293 ], [ 14.238281, -22.105999 ], [ 13.842773, -21.698265 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 12.788086, -16.930705 ], [ 13.447266, -16.930705 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.717773, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.167969, -8.928487 ], [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.310547, -10.790141 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.958984, -12.768946 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 29.487305, -15.623037 ], [ 28.916016, -16.003576 ], [ 28.784180, -16.383391 ], [ 28.432617, -16.467695 ], [ 27.597656, -17.266728 ], [ 27.026367, -17.936929 ], [ 26.674805, -17.936929 ], [ 26.367188, -17.811456 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.994141, -17.266728 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.038086, -12.168226 ], [ 23.862305, -11.695273 ], [ 23.994141, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 24.741211, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 28.959961, -8.363693 ], [ 30.322266, -8.233237 ], [ 30.717773, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 30.717773, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.167969, -8.928487 ], [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.310547, -10.790141 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.958984, -12.768946 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 29.487305, -15.623037 ], [ 28.916016, -16.003576 ], [ 28.784180, -16.383391 ], [ 28.432617, -16.467695 ], [ 27.597656, -17.266728 ], [ 27.026367, -17.936929 ], [ 26.674805, -17.936929 ], [ 26.367188, -17.811456 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.994141, -17.266728 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.038086, -12.168226 ], [ 23.862305, -11.695273 ], [ 23.994141, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 24.741211, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 28.959961, -8.363693 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 31.596680, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.299805, -16.383391 ], [ 32.827148, -16.678293 ], [ 32.827148, -17.978733 ], [ 32.651367, -18.646245 ], [ 32.607422, -19.394068 ], [ 32.739258, -19.683970 ], [ 32.651367, -20.303418 ], [ 32.475586, -20.385825 ], [ 32.211914, -21.084500 ], [ 31.157227, -22.228090 ], [ 30.629883, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.065278 ], [ 29.399414, -22.065278 ], [ 28.784180, -21.616579 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.838278 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.839844, -18.687879 ], [ 25.620117, -18.521283 ], [ 25.224609, -17.727759 ], [ 26.367188, -17.811456 ], [ 26.674805, -17.936929 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.266728 ], [ 28.432617, -16.467695 ], [ 28.784180, -16.383391 ], [ 28.916016, -16.003576 ], [ 29.487305, -15.623037 ], [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 31.596680, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.299805, -16.383391 ], [ 32.827148, -16.678293 ], [ 32.827148, -17.978733 ], [ 32.651367, -18.646245 ], [ 32.607422, -19.394068 ], [ 32.739258, -19.683970 ], [ 32.651367, -20.303418 ], [ 32.475586, -20.385825 ], [ 32.211914, -21.084500 ], [ 31.157227, -22.228090 ], [ 30.629883, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.065278 ], [ 29.399414, -22.065278 ], [ 28.784180, -21.616579 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.838278 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.839844, -18.687879 ], [ 25.620117, -18.521283 ], [ 25.224609, -17.727759 ], [ 26.367188, -17.811456 ], [ 26.674805, -17.936929 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.266728 ], [ 28.432617, -16.467695 ], [ 28.784180, -16.383391 ], [ 28.916016, -16.003576 ], [ 29.487305, -15.623037 ], [ 30.234375, -15.496032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 34.892578, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.277344, -15.453680 ], [ 34.497070, -14.987240 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.750000, -14.434680 ], [ 33.178711, -13.966054 ], [ 32.651367, -13.710035 ], [ 32.958984, -12.768946 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.310547, -10.790141 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 34.892578, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.277344, -15.453680 ], [ 34.497070, -14.987240 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.750000, -14.434680 ], [ 33.178711, -13.966054 ], [ 32.651367, -13.710035 ], [ 32.958984, -12.768946 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.310547, -10.790141 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.746969 ], [ 40.429688, -11.738302 ], [ 40.517578, -12.597455 ], [ 40.561523, -14.179186 ], [ 40.737305, -14.689881 ], [ 40.473633, -15.368950 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 36.254883, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.518375 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.156250, -21.248422 ], [ 35.332031, -21.820708 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.507812, -23.039298 ], [ 35.332031, -23.523700 ], [ 35.595703, -23.684774 ], [ 35.419922, -24.086589 ], [ 35.024414, -24.447150 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.211914, -21.084500 ], [ 32.475586, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.739258, -19.683970 ], [ 32.607422, -19.394068 ], [ 32.651367, -18.646245 ], [ 32.827148, -17.978733 ], [ 32.827148, -16.678293 ], [ 32.299805, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.596680, -16.045813 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 33.750000, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -14.987240 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.892578, -13.539201 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 35.288086, -11.436955 ], [ 36.474609, -11.695273 ], [ 36.738281, -11.566144 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.738302 ], [ 40.517578, -12.597455 ], [ 40.561523, -14.179186 ], [ 40.737305, -14.689881 ], [ 40.473633, -15.368950 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 36.254883, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.518375 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.156250, -21.248422 ], [ 35.332031, -21.820708 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.507812, -23.039298 ], [ 35.332031, -23.523700 ], [ 35.595703, -23.684774 ], [ 35.419922, -24.086589 ], [ 35.024414, -24.447150 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.211914, -21.084500 ], [ 32.475586, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.739258, -19.683970 ], [ 32.607422, -19.394068 ], [ 32.651367, -18.646245 ], [ 32.827148, -17.978733 ], [ 32.827148, -16.678293 ], [ 32.299805, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.596680, -16.045813 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 33.750000, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -14.987240 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.892578, -13.539201 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 35.288086, -11.436955 ], [ 36.474609, -11.695273 ], [ 36.738281, -11.566144 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.224609, -17.727759 ], [ 25.620117, -18.521283 ], [ 25.839844, -18.687879 ], [ 26.147461, -19.269665 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.838278 ], [ 27.993164, -21.453069 ], [ 28.784180, -21.616579 ], [ 29.399414, -22.065278 ], [ 27.993164, -22.796439 ], [ 27.114258, -23.563987 ], [ 26.762695, -24.206890 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.681137 ], [ 24.169922, -25.641526 ], [ 23.730469, -25.363882 ], [ 23.291016, -25.244696 ], [ 22.807617, -25.482951 ], [ 22.543945, -25.958045 ], [ 22.104492, -26.273714 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.839449 ], [ 20.126953, -24.886436 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 21.621094, -18.187607 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 24.213867, -17.853290 ], [ 24.477539, -17.853290 ], [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 25.620117, -18.521283 ], [ 25.839844, -18.687879 ], [ 26.147461, -19.269665 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.838278 ], [ 27.993164, -21.453069 ], [ 28.784180, -21.616579 ], [ 29.399414, -22.065278 ], [ 27.993164, -22.796439 ], [ 27.114258, -23.563987 ], [ 26.762695, -24.206890 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.681137 ], [ 24.169922, -25.641526 ], [ 23.730469, -25.363882 ], [ 23.291016, -25.244696 ], [ 22.807617, -25.482951 ], [ 22.543945, -25.958045 ], [ 22.104492, -26.273714 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.839449 ], [ 20.126953, -24.886436 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 21.621094, -18.187607 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 24.213867, -17.853290 ], [ 24.477539, -17.853290 ], [ 25.048828, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.629883, -22.146708 ], [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -25.997550 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.563477, -27.449790 ], [ 32.431641, -28.265682 ], [ 32.167969, -28.729130 ], [ 31.508789, -29.228890 ], [ 31.289062, -29.382175 ], [ 30.893555, -29.878755 ], [ 30.585938, -30.410782 ], [ 30.014648, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.760882 ], [ 24.653320, -33.979809 ], [ 23.554688, -33.760882 ], [ 22.983398, -33.906896 ], [ 22.543945, -33.833920 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.415973 ], [ 20.039062, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.852539, -34.415973 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.833920 ], [ 18.237305, -33.247876 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 17.534180, -30.713504 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.182617, -28.343065 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.886436 ], [ 20.742188, -25.839449 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 22.104492, -26.273714 ], [ 22.543945, -25.958045 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.244696 ], [ 23.730469, -25.363882 ], [ 24.169922, -25.641526 ], [ 25.004883, -25.681137 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 26.762695, -24.206890 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.399414, -22.065278 ], [ 29.838867, -22.065278 ], [ 30.322266, -22.268764 ] ], [ [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.081055, -30.524413 ], [ 28.256836, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.065278 ], [ 30.322266, -22.268764 ], [ 30.629883, -22.146708 ], [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -25.997550 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.563477, -27.449790 ], [ 32.431641, -28.265682 ], [ 32.167969, -28.729130 ], [ 31.508789, -29.228890 ], [ 31.289062, -29.382175 ], [ 30.893555, -29.878755 ], [ 30.585938, -30.410782 ], [ 30.014648, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.760882 ], [ 24.653320, -33.979809 ], [ 23.554688, -33.760882 ], [ 22.983398, -33.906896 ], [ 22.543945, -33.833920 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.415973 ], [ 20.039062, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.852539, -34.415973 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.833920 ], [ 18.237305, -33.247876 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 17.534180, -30.713504 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.182617, -28.343065 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.886436 ], [ 20.742188, -25.839449 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 22.104492, -26.273714 ], [ 22.543945, -25.958045 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.244696 ], [ 23.730469, -25.363882 ], [ 24.169922, -25.641526 ], [ 25.004883, -25.681137 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 26.762695, -24.206890 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.399414, -22.065278 ], [ 29.838867, -22.065278 ] ], [ [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.081055, -30.524413 ], [ 28.256836, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 30.673828, -26.391870 ], [ 30.937500, -25.997550 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 30.673828, -26.391870 ], [ 30.937500, -25.997550 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.256836, -30.221102 ], [ 28.081055, -30.524413 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.256836, -30.221102 ], [ 28.081055, -30.524413 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 48.515625, -20.468189 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 48.515625, -20.468189 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ] ] ], [ [ [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ] ] ], [ [ [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ] ] ], [ [ [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ] ] ], [ [ [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.794922, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ] ] ], [ [ [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ] ] ], [ [ [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.794922, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.309570, -8.363693 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.362353 ], [ 125.068359, -9.058702 ], [ 124.936523, -8.885072 ], [ 125.068359, -8.624472 ], [ 125.903320, -8.407168 ], [ 126.606445, -8.363693 ], [ 126.914062, -8.233237 ], [ 127.309570, -8.363693 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.309570, -8.363693 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.362353 ], [ 125.068359, -9.058702 ], [ 124.936523, -8.885072 ], [ 125.068359, -8.624472 ], [ 125.903320, -8.407168 ], [ 126.606445, -8.363693 ], [ 126.914062, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ] ] ], [ [ [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ] ] ], [ [ [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ] ] ], [ [ [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ] ] ], [ [ [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ] ] ], [ [ [ 160.356445, -9.362353 ], [ 160.664062, -9.579084 ], [ 160.839844, -9.838979 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.752370 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.751953, -8.885072 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.536764 ], [ 159.609375, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.554688, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.334961, -7.318882 ], [ 158.818359, -7.536764 ] ] ], [ [ [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.144499 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ], [ 160.664062, -9.579084 ], [ 160.839844, -9.838979 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.752370 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.883789, -8.276727 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.751953, -8.885072 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ] ] ], [ [ [ 158.334961, -7.318882 ], [ 158.818359, -7.536764 ], [ 159.609375, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.554688, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.334961, -7.318882 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.144499 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.167969, -16.130262 ], [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ] ] ], [ [ [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.580711 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.368950 ], [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.167969, -16.130262 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.580711 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.368950 ], [ 166.596680, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.014648, -20.427013 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.794922, -21.125498 ], [ 164.135742, -20.427013 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ], [ 165.014648, -20.427013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.097206 ], [ 165.014648, -20.427013 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.794922, -21.125498 ], [ 164.135742, -20.427013 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.738528 ], [ 173.188477, -42.940339 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 171.166992, -44.871443 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 168.925781, -43.929550 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.738528 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.242188, -38.582526 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 175.034180, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.726562, -37.996163 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.287109, -36.527295 ], [ 173.803711, -36.102376 ], [ 173.012695, -35.209722 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.738528 ], [ 173.188477, -42.940339 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 171.166992, -44.871443 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 168.925781, -43.929550 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.738528 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.242188, -38.582526 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 175.034180, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.726562, -37.996163 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.287109, -36.527295 ], [ 173.803711, -36.102376 ], [ 173.012695, -35.209722 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ] ] ], [ [ [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ] ] ], [ [ [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ] ] ], [ [ [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ] ] ], [ [ [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ] ] ], [ [ [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ] ] ], [ [ [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ] ] ], [ [ [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ] ] ], [ [ [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ] ] ], [ [ [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ] ] ], [ [ [ 10.502930, 57.231503 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ], [ 10.502930, 57.231503 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.502930, 57.231503 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ], [ 21.972656, 68.624544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.610352, 69.115611 ], [ 21.972656, 68.624544 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.922935 ], [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ], [ 6.240234, 49.922935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.020508, 50.148746 ], [ 6.240234, 49.922935 ], [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.754240 ], [ 14.985352, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.282227, 51.124213 ], [ 14.018555, 50.930738 ], [ 13.315430, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.216797, 50.289339 ], [ 12.392578, 49.979488 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.579102, 48.893615 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.312428 ], [ 13.007812, 47.665387 ], [ 12.919922, 47.487513 ], [ 12.612305, 47.694974 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 9.580078, 47.546872 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 6.240234, 49.922935 ], [ 6.020508, 50.148746 ], [ 6.152344, 50.819818 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.754240 ], [ 14.985352, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.282227, 51.124213 ], [ 14.018555, 50.930738 ], [ 13.315430, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.216797, 50.289339 ], [ 12.392578, 49.979488 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.579102, 48.893615 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.312428 ], [ 13.007812, 47.665387 ], [ 12.919922, 47.487513 ], [ 12.612305, 47.694974 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 9.580078, 47.546872 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 6.240234, 49.922935 ], [ 6.020508, 50.148746 ], [ 6.152344, 50.819818 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.546872 ], [ 9.624023, 47.368594 ], [ 9.448242, 47.129951 ], [ 9.931641, 46.950262 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.250977, 45.798170 ], [ 6.811523, 46.012224 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 7.163086, 47.457809 ], [ 7.426758, 47.635784 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ], [ 9.624023, 47.368594 ], [ 9.448242, 47.129951 ], [ 9.931641, 46.950262 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.250977, 45.798170 ], [ 6.811523, 46.012224 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 7.163086, 47.457809 ], [ 7.426758, 47.635784 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.296472 ], [ 18.061523, 49.066668 ], [ 17.885742, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 16.479492, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.249023, 49.066668 ], [ 14.897461, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.579102, 48.893615 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.979488 ], [ 12.216797, 50.289339 ], [ 12.963867, 50.485474 ], [ 13.315430, 50.736455 ], [ 14.018555, 50.930738 ], [ 14.282227, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.296472 ], [ 18.061523, 49.066668 ], [ 17.885742, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 16.479492, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.249023, 49.066668 ], [ 14.897461, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.579102, 48.893615 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.979488 ], [ 12.216797, 50.289339 ], [ 12.963867, 50.485474 ], [ 13.315430, 50.736455 ], [ 14.018555, 50.930738 ], [ 14.282227, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.985352, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.342149 ], [ 23.203125, 54.239551 ], [ 23.466797, 53.930220 ], [ 23.510742, 53.488046 ], [ 23.774414, 53.094024 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.466797, 52.025459 ], [ 23.510742, 51.590723 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.342149 ], [ 23.203125, 54.239551 ], [ 23.466797, 53.930220 ], [ 23.510742, 53.488046 ], [ 23.774414, 53.094024 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.466797, 52.025459 ], [ 23.510742, 51.590723 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.875000, 48.487486 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 16.171875, 46.860191 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 13.798828, 46.528635 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 10.415039, 46.920255 ], [ 9.931641, 46.950262 ], [ 9.448242, 47.129951 ], [ 9.624023, 47.368594 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.612305, 47.694974 ], [ 12.919922, 47.487513 ], [ 13.007812, 47.665387 ], [ 12.875977, 48.312428 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 14.897461, 48.980217 ], [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.875000, 48.487486 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 16.171875, 46.860191 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 13.798828, 46.528635 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 10.415039, 46.920255 ], [ 9.931641, 46.950262 ], [ 9.448242, 47.129951 ], [ 9.624023, 47.368594 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.612305, 47.694974 ], [ 12.919922, 47.487513 ], [ 13.007812, 47.665387 ], [ 12.875977, 48.312428 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 14.897461, 48.980217 ], [ 15.249023, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.859412 ], [ 15.292969, 45.736860 ], [ 15.292969, 45.460131 ], [ 14.897461, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.709736 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ], [ 16.523438, 46.528635 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.859412 ], [ 15.292969, 45.736860 ], [ 15.292969, 45.460131 ], [ 14.897461, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.709736 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.117188, 37.474858 ], [ 15.292969, 37.160317 ], [ 15.073242, 36.633162 ], [ 14.326172, 37.020098 ], [ 13.798828, 37.125286 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.512695, 38.238180 ], [ 15.117188, 37.474858 ] ] ], [ [ [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.348633, 44.902578 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.238180 ], [ 15.864258, 38.754083 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 14.985352, 40.178873 ], [ 14.677734, 40.613952 ], [ 14.018555, 40.813809 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 12.084961, 41.705729 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.667969, 44.056012 ], [ 8.876953, 44.370987 ], [ 8.393555, 44.245199 ], [ 7.822266, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.736860 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ] ] ], [ [ [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.349609, 40.380028 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.117188, 37.474858 ], [ 15.292969, 37.160317 ], [ 15.073242, 36.633162 ], [ 14.326172, 37.020098 ], [ 13.798828, 37.125286 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.348633, 44.902578 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.238180 ], [ 15.864258, 38.754083 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 14.985352, 40.178873 ], [ 14.677734, 40.613952 ], [ 14.018555, 40.813809 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 12.084961, 41.705729 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.667969, 44.056012 ], [ 8.876953, 44.370987 ], [ 8.393555, 44.245199 ], [ 7.822266, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.736860 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ] ] ], [ [ [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.349609, 40.380028 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.621094, 47.010226 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.875000, 46.407564 ], [ 16.523438, 46.528635 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.446289, 47.872144 ], [ 17.841797, 47.783635 ], [ 18.676758, 47.901614 ], [ 18.764648, 48.107431 ], [ 19.160156, 48.136767 ], [ 19.643555, 48.283193 ], [ 19.731445, 48.224673 ], [ 20.214844, 48.341646 ], [ 20.434570, 48.574790 ], [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.621094, 47.010226 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.875000, 46.407564 ], [ 16.523438, 46.528635 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.446289, 47.872144 ], [ 17.841797, 47.783635 ], [ 18.676758, 47.901614 ], [ 18.764648, 48.107431 ], [ 19.160156, 48.136767 ], [ 19.643555, 48.283193 ], [ 19.731445, 48.224673 ], [ 20.214844, 48.341646 ], [ 20.434570, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.060547, 48.429201 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 20.434570, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.731445, 48.224673 ], [ 19.643555, 48.283193 ], [ 19.160156, 48.136767 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.841797, 47.783635 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.487486 ], [ 17.094727, 48.835797 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.922499 ], [ 17.885742, 49.009051 ], [ 18.061523, 49.066668 ], [ 18.149414, 49.296472 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.060547, 48.429201 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 20.434570, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.731445, 48.224673 ], [ 19.643555, 48.283193 ], [ 19.160156, 48.136767 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.841797, 47.783635 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.487486 ], [ 17.094727, 48.835797 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.922499 ], [ 17.885742, 49.009051 ], [ 18.061523, 49.066668 ], [ 18.149414, 49.296472 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.291992, 49.582226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 19.204102, 43.548548 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.270508, 43.452919 ], [ 16.875000, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.215820, 44.370987 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.243953 ], [ 17.841797, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.243953 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 19.204102, 43.548548 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.270508, 43.452919 ], [ 16.875000, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.215820, 44.370987 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.243953 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 43.229195 ], [ 19.951172, 43.133061 ], [ 20.302734, 42.908160 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.967659 ], [ 18.852539, 42.293564 ], [ 18.413086, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.599609, 43.229195 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.548548 ], [ 19.599609, 43.229195 ], [ 19.951172, 43.133061 ], [ 20.302734, 42.908160 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.967659 ], [ 18.852539, 42.293564 ], [ 18.413086, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.433780 ], [ 22.631836, 44.245199 ], [ 22.368164, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.229195 ], [ 22.587891, 42.908160 ], [ 22.412109, 42.585444 ], [ 22.543945, 42.488302 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.752930, 42.714732 ], [ 21.621094, 42.682435 ], [ 20.786133, 43.293200 ], [ 20.610352, 43.229195 ], [ 20.478516, 42.908160 ], [ 20.214844, 42.843751 ], [ 20.302734, 42.908160 ], [ 19.951172, 43.133061 ], [ 19.599609, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.433780 ], [ 22.631836, 44.245199 ], [ 22.368164, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.229195 ], [ 22.587891, 42.908160 ], [ 22.412109, 42.585444 ], [ 22.543945, 42.488302 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.752930, 42.714732 ], [ 21.621094, 42.682435 ], [ 20.786133, 43.293200 ], [ 20.610352, 43.229195 ], [ 20.478516, 42.908160 ], [ 20.214844, 42.843751 ], [ 20.302734, 42.908160 ], [ 19.951172, 43.133061 ], [ 19.599609, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 42.682435 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.326062 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.258789, 42.326062 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.610352, 43.229195 ], [ 20.786133, 43.293200 ], [ 21.621094, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 43.293200 ], [ 21.621094, 42.682435 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.326062 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.258789, 42.326062 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.610352, 43.229195 ], [ 20.786133, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.520700 ], [ 20.039062, 42.617791 ], [ 20.258789, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.961914, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.943436 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.738528 ], [ 19.335938, 41.902277 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ], [ 19.775391, 42.520700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.714732 ], [ 19.775391, 42.520700 ], [ 20.039062, 42.617791 ], [ 20.258789, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.961914, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.943436 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.738528 ], [ 19.335938, 41.902277 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.719727, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.016602, 41.178654 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 42.065607 ], [ 21.313477, 42.228517 ], [ 21.884766, 42.326062 ], [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.719727, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.016602, 41.178654 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 42.065607 ], [ 21.313477, 42.228517 ], [ 21.884766, 42.326062 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.904910 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.904910 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.576172, 57.868132 ], [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 27.817383, 56.776808 ], [ 28.168945, 56.170023 ], [ 27.070312, 55.801281 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 23.862305, 56.292157 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ], [ 25.576172, 57.868132 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 25.576172, 57.868132 ], [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 27.817383, 56.776808 ], [ 28.168945, 56.170023 ], [ 27.070312, 55.801281 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 23.862305, 56.292157 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.576172, 57.868132 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 24.565430, 59.467408 ], [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.576172, 57.868132 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 24.565430, 59.467408 ], [ 25.839844, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.876607 ], [ 22.280273, 55.028022 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.292157 ], [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.876607 ], [ 22.280273, 55.028022 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.292157 ], [ 24.829102, 56.389584 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.937500, 55.103516 ], [ 30.717773, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.094024 ], [ 31.508789, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 30.146484, 51.426614 ], [ 29.223633, 51.371780 ], [ 28.959961, 51.618017 ], [ 28.608398, 51.454007 ], [ 28.212891, 51.590723 ], [ 27.421875, 51.618017 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.466797, 52.025459 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.774414, 53.094024 ], [ 23.510742, 53.488046 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 27.070312, 55.801281 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.937500, 55.103516 ], [ 30.717773, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.094024 ], [ 31.508789, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 30.146484, 51.426614 ], [ 29.223633, 51.371780 ], [ 28.959961, 51.618017 ], [ 28.608398, 51.454007 ], [ 28.212891, 51.590723 ], [ 27.421875, 51.618017 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.466797, 52.025459 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.774414, 53.094024 ], [ 23.510742, 53.488046 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 27.070312, 55.801281 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.125000, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.652344, 45.305803 ], [ 29.135742, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.202148, 44.182204 ], [ 26.059570, 43.961191 ], [ 25.532227, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 47.010226 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 23.730469, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.180664, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.586914, 48.224673 ], [ 26.894531, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.586914, 48.224673 ], [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.125000, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.652344, 45.305803 ], [ 29.135742, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.202148, 44.182204 ], [ 26.059570, 43.961191 ], [ 25.532227, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 47.010226 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 23.730469, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.180664, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.586914, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.532227, 43.707594 ], [ 26.059570, 43.961191 ], [ 27.202148, 44.182204 ], [ 27.949219, 43.834527 ], [ 28.520508, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.488302 ], [ 22.412109, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.532227, 43.707594 ], [ 26.059570, 43.961191 ], [ 27.202148, 44.182204 ], [ 27.949219, 43.834527 ], [ 28.520508, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.488302 ], [ 22.412109, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.166085 ], [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 29.531250, 46.950262 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.377254 ], [ 29.135742, 46.407564 ], [ 29.047852, 46.528635 ], [ 28.828125, 46.468133 ], [ 28.916016, 46.286224 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.614037 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.377254 ], [ 28.125000, 46.830134 ], [ 26.894531, 48.136767 ], [ 26.586914, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.487486 ], [ 28.256836, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.487486 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 29.531250, 46.950262 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.377254 ], [ 29.135742, 46.407564 ], [ 29.047852, 46.528635 ], [ 28.828125, 46.468133 ], [ 28.916016, 46.286224 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.614037 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.377254 ], [ 28.125000, 46.830134 ], [ 26.894531, 48.136767 ], [ 26.586914, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.487486 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.375977, 50.792047 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 38.583984, 49.951220 ], [ 40.034180, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 37.397461, 47.040182 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.575195, 45.305803 ], [ 29.135742, 45.490946 ], [ 28.652344, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.614037 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.286224 ], [ 28.828125, 46.468133 ], [ 29.047852, 46.528635 ], [ 29.135742, 46.407564 ], [ 29.750977, 46.377254 ], [ 30.014648, 46.437857 ], [ 29.794922, 46.528635 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.950262 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.487486 ], [ 26.850586, 48.370848 ], [ 26.586914, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.180664, 47.901614 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.730469, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.590723 ], [ 28.608398, 51.454007 ], [ 28.959961, 51.618017 ], [ 29.223633, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.375977, 50.792047 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 38.583984, 49.951220 ], [ 40.034180, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 37.397461, 47.040182 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.575195, 45.305803 ], [ 29.135742, 45.490946 ], [ 28.652344, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.614037 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.286224 ], [ 28.828125, 46.468133 ], [ 29.047852, 46.528635 ], [ 29.135742, 46.407564 ], [ 29.750977, 46.377254 ], [ 30.014648, 46.437857 ], [ 29.794922, 46.528635 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.950262 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.487486 ], [ 26.850586, 48.370848 ], [ 26.586914, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.180664, 47.901614 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.730469, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.590723 ], [ 28.608398, 51.454007 ], [ 28.959961, 51.618017 ], [ 29.223633, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.348763 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.363281, 43.229195 ], [ 43.725586, 42.747012 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 46.494141, 41.079351 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 44.956055, 41.277806 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.036776 ], [ 40.297852, 43.133061 ], [ 39.946289, 43.452919 ], [ 40.034180, 43.580391 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.034180, 43.580391 ], [ 40.913086, 43.389082 ], [ 42.363281, 43.229195 ], [ 43.725586, 42.747012 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 46.494141, 41.079351 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 44.956055, 41.277806 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.036776 ], [ 40.297852, 43.133061 ], [ 39.946289, 43.452919 ], [ 40.034180, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.805745 ], [ 13.051758, 32.879587 ], [ 13.886719, 32.731841 ], [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 16.611328, 31.203405 ], [ 18.017578, 30.789037 ], [ 19.072266, 30.297018 ], [ 19.555664, 30.562261 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 23.598633, 32.212801 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.931641, 24.966140 ], [ 9.887695, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.624023, 27.176469 ], [ 9.755859, 27.722436 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.458731 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.101190 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.051758, 32.879587 ], [ 13.886719, 32.731841 ], [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 16.611328, 31.203405 ], [ 18.017578, 30.789037 ], [ 19.072266, 30.297018 ], [ 19.555664, 30.562261 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 23.598633, 32.212801 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.931641, 24.966140 ], [ 9.887695, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.624023, 27.176469 ], [ 9.755859, 27.722436 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.458731 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.101190 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.049038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.543945, 14.944785 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 22.016602, 12.983148 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.456055, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.393879 ], [ 22.851562, 11.178402 ], [ 22.192383, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.102097 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.928675 ], [ 16.699219, 7.536764 ], [ 16.435547, 7.754537 ], [ 16.259766, 7.754537 ], [ 16.083984, 7.536764 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 14.501953, 8.971897 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.941406, 11.566144 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.644531, 19.973349 ], [ 15.864258, 20.427013 ], [ 15.468750, 20.756114 ], [ 15.468750, 21.084500 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.543945, 14.944785 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 22.016602, 12.983148 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.456055, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.393879 ], [ 22.851562, 11.178402 ], [ 22.192383, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.102097 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.928675 ], [ 16.699219, 7.536764 ], [ 16.435547, 7.754537 ], [ 16.259766, 7.754537 ], [ 16.083984, 7.536764 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 14.501953, 8.971897 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.941406, 11.566144 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.644531, 19.973349 ], [ 15.864258, 20.427013 ], [ 15.468750, 20.756114 ], [ 15.468750, 21.084500 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.213867, 35.389050 ], [ 25.004883, 35.460670 ], [ 25.751953, 35.389050 ], [ 25.708008, 35.209722 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ] ] ], [ [ [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.015625, 40.847060 ], [ 25.444336, 40.880295 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.510742, 38.513788 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.961914, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.016602, 41.178654 ], [ 22.587891, 41.145570 ], [ 22.719727, 41.310824 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ], [ 25.004883, 35.460670 ], [ 25.751953, 35.389050 ], [ 25.708008, 35.209722 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.015625, 40.847060 ], [ 25.444336, 40.880295 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.510742, 38.513788 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.961914, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.016602, 41.178654 ], [ 22.587891, 41.145570 ], [ 22.719727, 41.310824 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.442383, 35.029996 ], [ 33.837891, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.969727, 34.994004 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.354492, 35.173808 ], [ 33.442383, 35.029996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.354492, 35.173808 ], [ 33.442383, 35.029996 ], [ 33.837891, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.969727, 34.994004 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.354492, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.872070, 30.902225 ], [ 29.663086, 31.203405 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.381735 ], [ 34.145508, 27.839076 ], [ 33.881836, 27.683528 ], [ 33.134766, 28.420391 ], [ 32.387695, 29.878755 ], [ 32.299805, 29.764377 ], [ 32.695312, 28.729130 ], [ 33.310547, 27.722436 ], [ 34.101562, 26.155438 ], [ 34.760742, 25.045792 ], [ 35.683594, 23.966176 ], [ 35.463867, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.650391, 22.228090 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ], [ 29.663086, 31.203405 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.381735 ], [ 34.145508, 27.839076 ], [ 33.881836, 27.683528 ], [ 33.134766, 28.420391 ], [ 32.387695, 29.878755 ], [ 32.299805, 29.764377 ], [ 32.695312, 28.729130 ], [ 33.310547, 27.722436 ], [ 34.101562, 26.155438 ], [ 34.760742, 25.045792 ], [ 35.683594, 23.966176 ], [ 35.463867, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.650391, 22.228090 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 39.506836, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.725586, 40.747257 ], [ 43.637695, 40.279526 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 42.319336, 37.230328 ], [ 41.176758, 37.090240 ], [ 40.649414, 37.125286 ], [ 39.506836, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ] ] ], [ [ [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 39.506836, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.725586, 40.747257 ], [ 43.637695, 40.279526 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 42.319336, 37.230328 ], [ 41.176758, 37.090240 ], [ 40.649414, 37.125286 ], [ 39.506836, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ] ] ], [ [ [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.284620 ], [ 35.419922, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.284620 ], [ 35.419922, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.123047, 35.853440 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 38.671875, 36.738884 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 41.176758, 37.090240 ], [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.123047, 35.853440 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 38.671875, 36.738884 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 41.176758, 37.090240 ], [ 42.319336, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.914868 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.914868 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 32.879587 ], [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 34.541016, 31.578535 ], [ 34.453125, 31.615966 ], [ 34.716797, 32.101190 ], [ 34.936523, 32.842674 ], [ 35.068359, 33.100745 ], [ 35.419922, 33.100745 ], [ 35.551758, 33.284620 ], [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 34.541016, 31.578535 ], [ 34.453125, 31.615966 ], [ 34.716797, 32.101190 ], [ 34.936523, 32.842674 ], [ 35.068359, 33.100745 ], [ 35.419922, 33.100745 ], [ 35.551758, 33.284620 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.936523, 31.653381 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.936523, 31.653381 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 38.979492, 32.026706 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.661133, 30.372875 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.936523, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.375977, 31.503629 ], [ 35.507812, 31.802893 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ], [ 38.979492, 32.026706 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.661133, 30.372875 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.936523, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.375977, 31.503629 ], [ 35.507812, 31.802893 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.043491 ], [ 36.958008, 20.838278 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 37.133789, 17.266728 ], [ 36.826172, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.125264 ], [ 34.804688, 11.350797 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.793945, 9.492408 ], [ 33.837891, 10.012130 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.046875, 11.480025 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.816406, 10.574222 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.575195, 10.098670 ], [ 29.487305, 9.795678 ], [ 28.959961, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 26.455078, 9.579084 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.838979 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.456055, 12.297068 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.983148 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.543945, 14.944785 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 36.958008, 20.838278 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 37.133789, 17.266728 ], [ 36.826172, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.125264 ], [ 34.804688, 11.350797 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.793945, 9.492408 ], [ 33.837891, 10.012130 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.046875, 11.480025 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.816406, 10.574222 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.575195, 10.098670 ], [ 29.487305, 9.795678 ], [ 28.959961, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 26.455078, 9.579084 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.838979 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.456055, 12.297068 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.983148 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.543945, 14.944785 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.178711, 12.211180 ], [ 33.046875, 11.480025 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.837891, 10.012130 ], [ 33.793945, 9.492408 ], [ 33.925781, 9.492408 ], [ 33.969727, 8.711359 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.672852, 6.620957 ], [ 35.288086, 5.528511 ], [ 33.969727, 4.258768 ], [ 33.354492, 3.820408 ], [ 32.651367, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.926758, 4.214943 ], [ 29.707031, 4.609278 ], [ 29.135742, 4.390229 ], [ 28.696289, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.795898, 7.013668 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.838979 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.455078, 9.579084 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.959961, 9.622414 ], [ 29.487305, 9.795678 ], [ 29.575195, 10.098670 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 31.816406, 10.574222 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ], [ 33.046875, 11.480025 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.837891, 10.012130 ], [ 33.793945, 9.492408 ], [ 33.925781, 9.492408 ], [ 33.969727, 8.711359 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.672852, 6.620957 ], [ 35.288086, 5.528511 ], [ 33.969727, 4.258768 ], [ 33.354492, 3.820408 ], [ 32.651367, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.926758, 4.214943 ], [ 29.707031, 4.609278 ], [ 29.135742, 4.390229 ], [ 28.696289, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.795898, 7.013668 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.838979 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.455078, 9.579084 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.959961, 9.622414 ], [ 29.487305, 9.795678 ], [ 29.575195, 10.098670 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 31.816406, 10.574222 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.979492, 16.846605 ], [ 39.243164, 15.961329 ], [ 39.770508, 15.453680 ], [ 41.176758, 14.519780 ], [ 42.583008, 13.025966 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 41.967773, 12.897489 ], [ 41.572266, 13.453737 ], [ 41.132812, 13.795406 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.331055, 14.562318 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.738281, 16.299051 ], [ 36.826172, 16.972741 ], [ 37.133789, 17.266728 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ], [ 38.979492, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.020528 ], [ 38.979492, 16.846605 ], [ 39.243164, 15.961329 ], [ 39.770508, 15.453680 ], [ 41.176758, 14.519780 ], [ 42.583008, 13.025966 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 41.967773, 12.897489 ], [ 41.572266, 13.453737 ], [ 41.132812, 13.795406 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.331055, 14.562318 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.738281, 16.299051 ], [ 36.826172, 16.972741 ], [ 37.133789, 17.266728 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.286133, 12.425848 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 42.539062, 11.135287 ], [ 42.275391, 11.049038 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ], [ 43.286133, 12.425848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.286133, 12.425848 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 42.539062, 11.135287 ], [ 42.275391, 11.049038 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 63.149414, 43.675818 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.356445, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.971680, 40.245992 ], [ 70.576172, 40.245992 ], [ 70.444336, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.994141, 40.111689 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.925229 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 57.744141, 42.195969 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 63.149414, 43.675818 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.356445, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.971680, 40.245992 ], [ 70.576172, 40.245992 ], [ 70.444336, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.994141, 40.111689 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.925229 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 57.744141, 42.195969 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 41.013066 ], [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.010742, 39.639538 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.334297 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.740986 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.279526 ], [ 43.725586, 40.747257 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.013066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.277806 ], [ 45.175781, 41.013066 ], [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.010742, 39.639538 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.334297 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.740986 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.279526 ], [ 43.725586, 40.747257 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.944336, 41.409776 ], [ 48.559570, 41.836828 ], [ 49.086914, 41.310824 ], [ 49.614258, 40.580585 ], [ 50.053711, 40.547200 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 47.680664, 39.537940 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 46.010742, 39.639538 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 45.175781, 41.013066 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 45.922852, 41.145570 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.362305, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.944336, 41.409776 ], [ 48.559570, 41.836828 ], [ 49.086914, 41.310824 ], [ 49.614258, 40.580585 ], [ 50.053711, 40.547200 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 47.680664, 39.537940 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 46.010742, 39.639538 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 45.175781, 41.013066 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 45.922852, 41.145570 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.788345 ], [ 47.680664, 39.537940 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.162109, 37.961523 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.030786 ], [ 58.403320, 37.544577 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.820312, 32.212801 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 58.491211, 25.641526 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.844674 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.736328, 37.195331 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ], [ 44.912109, 39.368279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.740986 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.788345 ], [ 47.680664, 39.537940 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.162109, 37.961523 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.030786 ], [ 58.403320, 37.544577 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.820312, 32.212801 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 58.491211, 25.641526 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.844674 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.736328, 37.195331 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.944336, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.343875 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.343875 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.766602, 24.287027 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 55.502930, 23.563987 ], [ 55.195312, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.723633, 24.327077 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.766602, 24.287027 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 55.502930, 23.563987 ], [ 55.195312, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.723633, 24.327077 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.925229 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 66.181641, 37.405074 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.940430, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.961523 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 57.744141, 42.195969 ], [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.925229 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 66.181641, 37.405074 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.940430, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.961523 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 57.744141, 42.195969 ], [ 58.623047, 42.779275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.961329 ], [ 52.163086, 15.623037 ], [ 51.152344, 15.199386 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 48.208008, 13.966054 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.325485 ], [ 45.395508, 13.068777 ], [ 45.131836, 12.983148 ], [ 44.956055, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.198242, 13.239945 ], [ 43.242188, 13.795406 ], [ 43.066406, 14.093957 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.670898, 15.749963 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 44.033203, 17.434511 ], [ 45.175781, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.266728 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.961329 ], [ 52.163086, 15.623037 ], [ 51.152344, 15.199386 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 48.208008, 13.966054 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.325485 ], [ 45.395508, 13.068777 ], [ 45.131836, 12.983148 ], [ 44.956055, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.198242, 13.239945 ], [ 43.242188, 13.795406 ], [ 43.066406, 14.093957 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.670898, 15.749963 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 44.033203, 17.434511 ], [ 45.175781, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.266728 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.821289, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.095703, 23.765237 ], [ 58.710938, 23.604262 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.553147 ], [ 59.765625, 22.350076 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 19.766704 ], [ 57.788086, 19.103648 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.469727, 18.104087 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.239258, 17.644022 ], [ 55.239258, 17.266728 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.715390 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.563987 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.766602, 24.287027 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ], [ 56.821289, 24.246965 ] ] ], [ [ [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.821289, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.095703, 23.765237 ], [ 58.710938, 23.604262 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.553147 ], [ 59.765625, 22.350076 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 19.766704 ], [ 57.788086, 19.103648 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.469727, 18.104087 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.239258, 17.644022 ], [ 55.239258, 17.266728 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.715390 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.563987 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.766602, 24.287027 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.307708 ], [ 43.637695, 10.876465 ], [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 45.527344, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 47.988281, 11.221510 ], [ 48.339844, 11.393879 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 43.286133, 9.579084 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ], [ 43.461914, 11.307708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.110352, 11.480025 ], [ 43.461914, 11.307708 ], [ 43.637695, 10.876465 ], [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 45.527344, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 47.988281, 11.221510 ], [ 48.339844, 11.393879 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 43.286133, 9.579084 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.262695, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.262695, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.323242, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.499023, 37.926868 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.158203, 36.949892 ], [ 72.597656, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.916016, 37.439974 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.575195, 37.055177 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.738884 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.455078, 35.675147 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 63.544922, 29.496988 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.212801 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 63.940430, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 66.181641, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.268555, 37.753344 ], [ 70.356445, 38.169114 ], [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.499023, 37.926868 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.158203, 36.949892 ], [ 72.597656, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.916016, 37.439974 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.575195, 37.055177 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.738884 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.455078, 35.675147 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 63.544922, 29.496988 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.212801 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 63.940430, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 66.181641, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.268555, 37.753344 ], [ 70.356445, 38.169114 ], [ 70.795898, 38.513788 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.998532 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.244696 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 63.544922, 29.496988 ], [ 64.116211, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.147461, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.455078, 35.675147 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 72.905273, 36.738884 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.055177 ], [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.998532 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.244696 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 63.544922, 29.496988 ], [ 64.116211, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.147461, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.455078, 35.675147 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 72.905273, 36.738884 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.055177 ], [ 75.146484, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.309570, 30.145127 ], [ 83.320312, 29.496988 ], [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.781250, 28.226970 ], [ 86.923828, 27.994401 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 81.958008, 27.955591 ], [ 81.035156, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ], [ 82.309570, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.448674 ], [ 82.309570, 30.145127 ], [ 83.320312, 29.496988 ], [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.781250, 28.226970 ], [ 86.923828, 27.994401 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 81.958008, 27.955591 ], [ 81.035156, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.815430, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 91.186523, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 88.813477, 27.332735 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 91.186523, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 88.813477, 27.332735 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.037042 ], [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 90.834961, 25.165173 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.739091 ], [ 91.801758, 22.187405 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.065278 ], [ 89.692383, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.286133, 24.886436 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ], [ 89.340820, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.470573 ], [ 89.340820, 26.037042 ], [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 90.834961, 25.165173 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.739091 ], [ 91.801758, 22.187405 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.065278 ], [ 89.692383, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.286133, 24.886436 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ] ] ], [ [ [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.217773, 27.761330 ], [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 97.822266, 17.602139 ], [ 98.481445, 16.846605 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 98.393555, 14.647368 ], [ 99.096680, 13.838080 ], [ 99.184570, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.008789, 10.962764 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.467695 ], [ 95.361328, 15.749963 ], [ 94.790039, 15.834536 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.032227, 22.715390 ], [ 93.251953, 23.079732 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 94.526367, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.217773, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.217773, 27.761330 ], [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 97.822266, 17.602139 ], [ 98.481445, 16.846605 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 98.393555, 14.647368 ], [ 99.096680, 13.838080 ], [ 99.184570, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.008789, 10.962764 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.467695 ], [ 95.361328, 15.749963 ], [ 94.790039, 15.834536 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.032227, 22.715390 ], [ 93.251953, 23.079732 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 94.526367, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 106.523438, 16.636192 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.030273, 18.437925 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ], [ 102.744141, 21.698265 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.471955 ], [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 106.523438, 16.636192 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.030273, 18.437925 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 18.437925 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.392578, 17.936929 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 104.238281, 14.434680 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.239258, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.882800 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 99.667969, 6.882800 ], [ 99.492188, 7.362467 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.217773, 9.015302 ], [ 98.525391, 9.968851 ], [ 99.008789, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.184570, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.393555, 14.647368 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 98.481445, 16.846605 ], [ 97.822266, 17.602139 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 99.536133, 20.220966 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 18.437925 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.392578, 17.936929 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 104.238281, 14.434680 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.239258, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.882800 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 99.667969, 6.882800 ], [ 99.492188, 7.362467 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.217773, 9.015302 ], [ 98.525391, 9.968851 ], [ 99.008789, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.184570, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.393555, 14.647368 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 98.481445, 16.846605 ], [ 97.822266, 17.602139 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 99.536133, 20.220966 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.237305, 16.088042 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 108.325195, 11.049038 ], [ 107.182617, 10.401378 ], [ 106.391602, 9.535749 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.578125, 13.539201 ], [ 107.358398, 14.221789 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 106.523438, 16.636192 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.150391, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.237305, 16.088042 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 108.325195, 11.049038 ], [ 107.182617, 10.401378 ], [ 106.391602, 9.535749 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.578125, 13.539201 ], [ 107.358398, 14.221789 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 106.523438, 16.636192 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.150391, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 103.051758, 11.178402 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.306969 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 103.051758, 11.178402 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.306969 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.717773, 21.983801 ], [ 120.190430, 22.836946 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.567108 ], [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.717773, 21.983801 ], [ 120.190430, 22.836946 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.567108 ], [ 121.464844, 25.324167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.967659 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 129.155273, 40.680638 ], [ 128.627930, 40.212441 ], [ 127.924805, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.485352, 39.334297 ], [ 127.353516, 39.232253 ], [ 127.749023, 39.061849 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 126.210938, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.961523 ], [ 125.551758, 37.753344 ], [ 125.244141, 37.683820 ], [ 125.200195, 37.857507 ], [ 124.672852, 38.134557 ], [ 124.980469, 38.582526 ], [ 125.200195, 38.685510 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.288086, 39.571822 ], [ 124.716797, 39.673370 ], [ 124.233398, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.967659 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 129.155273, 40.680638 ], [ 128.627930, 40.212441 ], [ 127.924805, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.485352, 39.334297 ], [ 127.353516, 39.232253 ], [ 127.749023, 39.061849 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 126.210938, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.961523 ], [ 125.551758, 37.753344 ], [ 125.244141, 37.683820 ], [ 125.200195, 37.857507 ], [ 124.672852, 38.134557 ], [ 124.980469, 38.582526 ], [ 125.200195, 38.685510 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.288086, 39.571822 ], [ 124.716797, 39.673370 ], [ 124.233398, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 128.144531, 34.921971 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.342773, 34.957995 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 128.144531, 34.921971 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.342773, 34.957995 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ] ] ], [ [ [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.202148, 8.450639 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ] ] ], [ [ [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ] ] ], [ [ [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ] ] ], [ [ [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ] ] ], [ [ [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ] ] ], [ [ [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ] ] ], [ [ [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.158203, 8.407168 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ] ] ], [ [ [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ] ] ], [ [ [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ] ] ], [ [ [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ] ] ], [ [ [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ] ] ], [ [ [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 114.565430, 4.915833 ], [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 114.565430, 4.915833 ], [ 115.444336, 5.484768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.777716 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ] ] ], [ [ [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ] ] ], [ [ [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.635742, 44.777936 ], [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.777716 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.635742, 44.777936 ], [ 141.943359, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.745610 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.745610 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.342487 ], [ -85.979004, 68.342487 ], [ -85.583496, 68.792094 ] ] ], [ [ [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.082031, 68.342487 ], [ -140.998535, 68.342487 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.941406, 68.342487 ], [ -108.786621, 68.342487 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.690430, 68.584465 ], [ -96.591797, 68.342487 ], [ -98.569336, 68.342487 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.342487 ], [ -94.592285, 68.342487 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.456055, 68.342487 ], [ -74.179688, 68.342487 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.082031, 68.342487 ], [ -140.998535, 68.342487 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.456055, 68.342487 ], [ -74.179688, 68.342487 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -105.358887, 68.568414 ], [ -104.941406, 68.342487 ], [ -108.786621, 68.342487 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ] ] ], [ [ [ -96.591797, 68.342487 ], [ -98.569336, 68.342487 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.591797, 68.342487 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.342487 ], [ -94.592285, 68.342487 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.342487 ], [ -85.979004, 68.342487 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.786621, 68.342487 ], [ -104.941406, 68.342487 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.342487 ], [ -96.591797, 68.342487 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.592285, 68.342487 ], [ -88.154297, 68.342487 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.342487 ], [ -81.716309, 68.342487 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.342487 ], [ -114.082031, 68.342487 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.179688, 68.342487 ], [ -67.456055, 68.342487 ], [ -66.467285, 68.073305 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.716309, 68.342487 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.342487 ], [ -114.082031, 68.342487 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.786621, 68.342487 ], [ -104.941406, 68.342487 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.342487 ], [ -96.591797, 68.342487 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.592285, 68.342487 ], [ -88.154297, 68.342487 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.342487 ], [ -81.716309, 68.342487 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ], [ [ [ -67.456055, 68.342487 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.179688, 68.342487 ], [ -67.456055, 68.342487 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.448242, -25.145285 ], [ -54.645996, -25.720735 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.448242, -25.145285 ], [ -54.645996, -25.720735 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ] ] ], [ [ [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ] ] ], [ [ [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ] ] ], [ [ [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ] ] ], [ [ [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ] ] ], [ [ [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.166504, 15.008464 ], [ -83.254395, 14.902322 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.430176, 13.987376 ], [ -83.540039, 13.581921 ], [ -83.562012, 13.132979 ], [ -83.518066, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.737793, 11.910354 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.825684, 11.113727 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.199219, 10.811724 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.146746 ], [ -87.187500, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.319336, 13.004558 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.715332, 13.966054 ], [ -85.166016, 14.370834 ], [ -85.166016, 14.562318 ], [ -85.056152, 14.562318 ], [ -84.946289, 14.796128 ], [ -84.836426, 14.838612 ], [ -84.660645, 14.668626 ], [ -84.462891, 14.626109 ], [ -84.243164, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.649902, 14.881087 ], [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ], [ -83.254395, 14.902322 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.430176, 13.987376 ], [ -83.540039, 13.581921 ], [ -83.562012, 13.132979 ], [ -83.518066, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.737793, 11.910354 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.825684, 11.113727 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.199219, 10.811724 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.146746 ], [ -87.187500, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.319336, 13.004558 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.715332, 13.966054 ], [ -85.166016, 14.370834 ], [ -85.166016, 14.562318 ], [ -85.056152, 14.562318 ], [ -84.946289, 14.796128 ], [ -84.836426, 14.838612 ], [ -84.660645, 14.668626 ], [ -84.462891, 14.626109 ], [ -84.243164, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.649902, 14.881087 ], [ -83.496094, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.651855, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.287598, 23.200961 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.287598, 23.200961 ], [ -81.408691, 23.120154 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.651855, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.287598, 23.200961 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.836914, 8.646196 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.605957, 8.841651 ], [ -83.649902, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.803223, 10.444598 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.836914, 8.646196 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.605957, 8.841651 ], [ -83.649902, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.803223, 10.444598 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.542117 ], [ -77.585449, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.542117 ], [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.542117 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ], [ -72.597656, 19.890723 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.932041 ], [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.631348, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.631348, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.805664, 0.087891 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.805664, 0.087891 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -61.105957, 10.898042 ], [ -60.908203, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.745531 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.745531 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.171875, 66.530768 ], [ -14.523926, 66.460663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -8.349609, 54.673831 ], [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -8.349609, 54.673831 ], [ -7.580566, 55.141210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ] ] ], [ [ [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ] ] ], [ [ [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ] ] ], [ [ [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.185059, 37.805444 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.789062, 40.763901 ], [ -8.811035, 41.195190 ], [ -9.008789, 41.557922 ], [ -9.052734, 41.885921 ], [ -8.679199, 42.147114 ], [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.185059, 37.805444 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.789062, 40.763901 ], [ -8.811035, 41.195190 ], [ -9.008789, 41.557922 ], [ -9.052734, 41.885921 ], [ -8.679199, 42.147114 ], [ -8.283691, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -3.427734, 36.668419 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -3.427734, 36.668419 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.320139 ], [ -13.447266, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 14.008696 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.535645, 12.447305 ], [ -11.667480, 12.404389 ], [ -12.216797, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.533115 ], [ -16.149902, 12.554564 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.710449, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.392090, 13.645987 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.721191, 15.623037 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ], [ -14.106445, 16.320139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.615138 ], [ -14.106445, 16.320139 ], [ -13.447266, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 14.008696 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.535645, 12.447305 ], [ -11.667480, 12.404389 ], [ -12.216797, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.533115 ], [ -16.149902, 12.554564 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.710449, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.392090, 13.645987 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.721191, 15.623037 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.699707, 13.645987 ], [ -14.392090, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.710449, 13.282719 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ], [ -14.392090, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.710449, 13.282719 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.216797, 12.468760 ], [ -11.667480, 12.404389 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.315918, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.876465, 12.189704 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.909668, 12.060809 ], [ -9.580078, 12.211180 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.920898, 12.103781 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.844238, 8.581021 ], [ -8.217773, 8.472372 ], [ -8.305664, 8.320212 ], [ -8.239746, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.019531, 8.428904 ], [ -10.524902, 8.363693 ], [ -10.502930, 8.733077 ], [ -10.656738, 8.993600 ], [ -10.634766, 9.275622 ], [ -10.854492, 9.709057 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.612305, 9.622414 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.514079 ], [ -14.084473, 9.903921 ], [ -14.348145, 10.033767 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -14.853516, 10.898042 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -14.128418, 11.695273 ], [ -13.908691, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.732910, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.216797, 12.468760 ], [ -11.667480, 12.404389 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.315918, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.876465, 12.189704 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.909668, 12.060809 ], [ -9.580078, 12.211180 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.920898, 12.103781 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.844238, 8.581021 ], [ -8.217773, 8.472372 ], [ -8.305664, 8.320212 ], [ -8.239746, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.019531, 8.428904 ], [ -10.524902, 8.363693 ], [ -10.502930, 8.733077 ], [ -10.656738, 8.993600 ], [ -10.634766, 9.275622 ], [ -10.854492, 9.709057 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.612305, 9.622414 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.514079 ], [ -14.084473, 9.903921 ], [ -14.348145, 10.033767 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -14.853516, 10.898042 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -14.128418, 11.695273 ], [ -13.908691, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.732910, 12.254128 ], [ -13.710938, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.854492, 9.709057 ], [ -10.634766, 9.275622 ], [ -10.656738, 8.993600 ], [ -10.502930, 8.733077 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.950437 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.122696 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.139648, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.612305, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.854492, 9.709057 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.854492, 9.709057 ], [ -10.634766, 9.275622 ], [ -10.656738, 8.993600 ], [ -10.502930, 8.733077 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.950437 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.122696 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.139648, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.612305, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.320139 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.259766, 19.103648 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.320139 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.259766, 19.103648 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.580078, 12.211180 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ], [ 1.801758, 20.612220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.580078, 12.211180 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.503418, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.558594, 5.331644 ], [ -7.646484, 5.200365 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -9.931641, 5.594118 ], [ -10.766602, 6.162401 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.122696 ], [ -11.162109, 7.406048 ], [ -10.700684, 7.950437 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.503418, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.558594, 5.331644 ], [ -7.646484, 5.200365 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -9.931641, 5.594118 ], [ -10.766602, 6.162401 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.122696 ], [ -11.162109, 7.406048 ], [ -10.700684, 7.950437 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.559294 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 5.003394 ], [ -4.020996, 5.200365 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.536621, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.646484, 5.200365 ], [ -7.558594, 5.331644 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.239746, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.472372 ], [ -7.844238, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -8.041992, 10.206813 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.422988 ], [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 5.003394 ], [ -4.020996, 5.200365 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.536621, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.646484, 5.200365 ], [ -7.558594, 5.331644 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.239746, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.472372 ], [ -7.844238, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -8.041992, 10.206813 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.422988 ], [ -6.218262, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ -0.065918, 10.725381 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ], [ 0.021973, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.021973, 11.027472 ], [ -0.065918, 10.725381 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ] ] ], [ [ [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.644043, -0.043945 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.644043, -0.043945 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.644043, -0.043945 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.644043, -0.043945 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, -6.620957 ], [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.160156, -7.732765 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 22.390137, -10.984335 ], [ 22.829590, -11.005904 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 12.194824, -17.098792 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 11.777344, -15.792254 ], [ 12.106934, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.722168, -13.132979 ], [ 13.293457, -12.468760 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 12.722168, -5.943900 ], [ 13.007812, -5.965754 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ], [ 16.567383, -6.620957 ] ] ], [ [ [ 12.985840, -4.762573 ], [ 12.612305, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.304688, -4.587376 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.856475 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.160156, -7.732765 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 22.390137, -10.984335 ], [ 22.829590, -11.005904 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 12.194824, -17.098792 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 11.777344, -15.792254 ], [ 12.106934, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.722168, -13.132979 ], [ 13.293457, -12.468760 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 12.722168, -5.943900 ], [ 13.007812, -5.965754 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.304688, -4.587376 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 14.194336, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 23.203125, -17.518344 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 25.070801, -17.644022 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.819824, -28.844674 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.985352, -26.115986 ], [ 14.721680, -25.383735 ], [ 14.392090, -23.845650 ], [ 14.370117, -22.654572 ], [ 14.238281, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.337402, -20.858812 ], [ 12.810059, -19.663280 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.194824, -17.098792 ], [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 14.194336, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 23.203125, -17.518344 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 25.070801, -17.644022 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.819824, -28.844674 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.985352, -26.115986 ], [ 14.721680, -25.383735 ], [ 14.392090, -23.845650 ], [ 14.370117, -22.654572 ], [ 14.238281, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.337402, -20.858812 ], [ 12.810059, -19.663280 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.194824, -17.098792 ], [ 12.810059, -16.930705 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.320212 ], [ 31.157227, -8.581021 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.026367, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.367188, -17.832374 ], [ 25.246582, -17.727759 ], [ 25.070801, -17.644022 ], [ 25.070801, -17.560247 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 24.763184, -11.221510 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.520508, -12.683215 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 28.981934, -8.385431 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.320212 ], [ 31.157227, -8.581021 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.026367, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.367188, -17.832374 ], [ 25.246582, -17.727759 ], [ 25.070801, -17.644022 ], [ 25.070801, -17.560247 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 24.763184, -11.221510 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.520508, -12.683215 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 28.981934, -8.385431 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.085640 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.521283 ], [ 25.246582, -17.727759 ], [ 26.367188, -17.832374 ], [ 26.696777, -17.957832 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.085640 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.521283 ], [ 25.246582, -17.727759 ], [ 26.367188, -17.832374 ], [ 26.696777, -17.957832 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 33.200684, -13.966054 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.310547, -10.790141 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 33.200684, -13.966054 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.310547, -10.790141 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 25.839844, -18.708692 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.784668, -24.226929 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 24.499512, -17.874203 ], [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 25.839844, -18.708692 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.784668, -24.226929 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 24.499512, -17.874203 ], [ 25.070801, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ] ], [ [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ] ], [ [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.839449 ], [ 31.970215, -26.273714 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.017298 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 31.970215, -26.273714 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.017298 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.526367, -12.468760 ], [ 49.790039, -12.876070 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.526855, -23.765237 ], [ 47.087402, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.483398, -15.961329 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 46.867676, -15.199386 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.876070 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.526855, -23.765237 ], [ 47.087402, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.483398, -15.961329 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 46.867676, -15.199386 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ] ] ], [ [ [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ] ] ], [ [ [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.387508 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.387508 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.414551, 49.979488 ], [ 12.502441, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.414551, 49.979488 ], [ 12.502441, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.431713 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.466797, 53.917281 ], [ 23.510742, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 22.543945, 49.095452 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 16.347656, 54.521081 ], [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.431713 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.466797, 53.917281 ], [ 23.510742, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 22.543945, 49.095452 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 16.347656, 54.521081 ], [ 17.622070, 54.863963 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.860191 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 10.437012, 46.905246 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.624023, 47.353711 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.860191 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 10.437012, 46.905246 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.624023, 47.353711 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.666504, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 12.084961, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.689941, 44.040219 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ] ] ], [ [ [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.666504, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 12.084961, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.689941, 44.040219 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.621094, 46.995241 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.875000, 46.392411 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.468262, 47.872144 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 19.160156, 48.122101 ], [ 19.643555, 48.268569 ], [ 19.753418, 48.210032 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.621094, 46.995241 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.875000, 46.392411 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.468262, 47.872144 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 19.160156, 48.122101 ], [ 19.643555, 48.268569 ], [ 19.753418, 48.210032 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 19.160156, 48.122101 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.009051 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 19.160156, 48.122101 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.009051 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 19.204102, 43.532620 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.896973, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.237793, 44.355278 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 19.204102, 43.532620 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.896973, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.237793, 44.355278 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 43.357138 ], [ 19.621582, 43.229195 ], [ 19.951172, 43.117024 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 19.160156, 41.967659 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.698730, 43.213183 ], [ 19.028320, 43.436966 ], [ 19.204102, 43.532620 ], [ 19.467773, 43.357138 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.532620 ], [ 19.467773, 43.357138 ], [ 19.621582, 43.229195 ], [ 19.951172, 43.117024 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 19.160156, 41.967659 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.698730, 43.213183 ], [ 19.028320, 43.436966 ], [ 19.204102, 43.532620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.555176, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.643066, 42.439674 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 21.423340, 42.875964 ], [ 21.269531, 42.924252 ], [ 21.137695, 43.068888 ], [ 20.939941, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.951172, 43.117024 ], [ 19.621582, 43.229195 ], [ 19.467773, 43.357138 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.555176, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.643066, 42.439674 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 21.423340, 42.875964 ], [ 21.269531, 42.924252 ], [ 21.137695, 43.068888 ], [ 20.939941, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.951172, 43.117024 ], [ 19.621582, 43.229195 ], [ 19.467773, 43.357138 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.939941, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.924252 ], [ 21.423340, 42.875964 ], [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.643066, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ], [ 20.939941, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.939941, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.924252 ], [ 21.423340, 42.875964 ], [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.643066, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.741699, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.741699, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.856443 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ], [ 25.598145, 57.856443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.856443 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.856443 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.856443 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.530762, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.530762, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.916504, 48.136767 ], [ 27.224121, 47.827908 ], [ 27.531738, 47.413220 ], [ 28.125000, 46.815099 ], [ 28.146973, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.245199 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 23.752441, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ], [ 26.916504, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.136767 ], [ 27.224121, 47.827908 ], [ 27.531738, 47.413220 ], [ 28.125000, 46.815099 ], [ 28.146973, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.245199 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 23.752441, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.146973, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.531738, 47.413220 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.146973, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.531738, 47.413220 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.056152, 43.564472 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ -0.065918, 10.725381 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ -0.065918, 10.725381 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 11.513672, 13.346865 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 13.293457, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.941895, 9.427387 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 12.062988, 7.819847 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.746582, 7.885147 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.208008, 9.449062 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 11.513672, 13.346865 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 13.293457, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.941895, 9.427387 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 12.062988, 7.819847 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.746582, 7.885147 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.208008, 9.449062 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 22.016602, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 18.369141, 8.298470 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.435547, 7.754537 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 15.117188, 8.385431 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 14.611816, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.941406, 11.566144 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 22.016602, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 18.369141, 8.298470 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.435547, 7.754537 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 15.117188, 8.385431 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 14.611816, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.941406, 11.566144 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 25.795898, 6.991859 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 26.389160, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.697754, 4.653080 ], [ 22.390137, 4.039618 ], [ 21.643066, 4.236856 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.797852, 3.579213 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.886230, 2.569939 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.462896 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.369141, 8.298470 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 19.072266, 9.080400 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 25.795898, 6.991859 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 26.389160, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.697754, 4.653080 ], [ 22.390137, 4.039618 ], [ 21.643066, 4.236856 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.797852, 3.579213 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.886230, 2.569939 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.462896 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.369141, 8.298470 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 19.072266, 9.080400 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.004883, 35.442771 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 25.444336, 40.863680 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 23.510742, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.004883, 35.442771 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 25.444336, 40.863680 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 23.510742, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.442383, 35.101934 ], [ 33.464355, 35.012002 ], [ 33.508301, 35.047987 ], [ 33.662109, 35.029996 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 32.717285, 35.155846 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ], [ 33.442383, 35.101934 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.173808 ], [ 33.442383, 35.101934 ], [ 33.464355, 35.012002 ], [ 33.508301, 35.047987 ], [ 33.662109, 35.029996 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 32.717285, 35.155846 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.443848, 31.334871 ], [ 28.894043, 30.883369 ], [ 29.663086, 31.203405 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.362402 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 33.332520, 27.702984 ], [ 34.101562, 26.155438 ], [ 34.453125, 25.601902 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.672363, 22.207749 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ], [ 27.443848, 31.334871 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.477051, 31.597253 ], [ 27.443848, 31.334871 ], [ 28.894043, 30.883369 ], [ 29.663086, 31.203405 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.362402 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 33.332520, 27.702984 ], [ 34.101562, 26.155438 ], [ 34.453125, 25.601902 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.672363, 22.207749 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.198730, 37.090240 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ] ] ], [ [ [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.198730, 37.090240 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ] ] ], [ [ [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 41.198730, 37.090240 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 41.198730, 37.090240 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.375977, 31.503629 ], [ 35.529785, 31.784217 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.375977, 31.503629 ], [ 35.529785, 31.784217 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.991699, 4.258768 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.355957, 5.244128 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.991859 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.817329 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 25.949707, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 31.838379, 10.552622 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.991699, 4.258768 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.355957, 5.244128 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.991859 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.817329 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 25.949707, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 31.838379, 10.552622 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 39.792480, 15.453680 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 41.989746, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.738281, 16.299051 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 39.792480, 15.453680 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 41.989746, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.738281, 16.299051 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 42.297363, 11.049038 ], [ 41.748047, 11.070603 ], [ 41.726074, 11.372339 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 42.297363, 11.049038 ], [ 41.748047, 11.070603 ], [ 41.726074, 11.372339 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 41.989746, 12.876070 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.726074, 11.372339 ], [ 41.748047, 11.070603 ], [ 42.297363, 11.049038 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.557417 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.649902, 3.623071 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 41.989746, 12.876070 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.726074, 11.372339 ], [ 41.748047, 11.070603 ], [ 42.297363, 11.049038 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.557417 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.649902, 3.623071 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 63.171387, 43.659924 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.993652, 40.245992 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 63.171387, 43.659924 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.993652, 40.245992 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.032715, 39.639538 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.334297 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.032715, 39.639538 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.334297 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.108887, 41.294317 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 46.032715, 39.639538 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 45.725098, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.108887, 41.294317 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 46.032715, 39.639538 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 45.725098, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.966309, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.324720 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.324720 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 55.217285, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.613770, 24.026397 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 55.217285, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.613770, 24.026397 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.052246, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.152344, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.966054 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 46.713867, 13.410994 ], [ 45.856934, 13.368243 ], [ 45.615234, 13.304103 ], [ 45.395508, 13.047372 ], [ 45.131836, 12.961736 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 43.066406, 14.072645 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.197754, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.152344, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.966054 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 46.713867, 13.410994 ], [ 45.856934, 13.368243 ], [ 45.615234, 13.304103 ], [ 45.395508, 13.047372 ], [ 45.131836, 12.961736 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 43.066406, 14.072645 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.197754, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.117676, 23.765237 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.117676, 23.765237 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 48.010254, 11.199957 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 48.471680, 8.841651 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 43.286133, 9.557417 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 48.010254, 11.199957 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 48.471680, 8.841651 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 43.286133, 9.557417 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.180176, 36.949892 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.575195, 37.037640 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.721274 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.477051, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 60.798340, 34.415973 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 67.060547, 37.370157 ], [ 67.829590, 37.160317 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.180176, 36.949892 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.575195, 37.037640 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.721274 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.477051, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 60.798340, 34.415973 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 67.060547, 37.370157 ], [ 67.829590, 37.160317 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.091797, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.224820 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.477051, 35.657296 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 72.905273, 36.721274 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.037640 ], [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.091797, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.224820 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.477051, 35.657296 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 72.905273, 36.721274 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.037640 ], [ 75.146484, 37.142803 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 86.022949, 26.647459 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.979980, 27.936181 ], [ 81.057129, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.101074, 30.202114 ], [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 86.022949, 26.647459 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.979980, 27.936181 ], [ 81.057129, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.101074, 30.202114 ], [ 81.518555, 30.429730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ] ] ], [ [ [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ] ] ], [ [ [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ] ] ], [ [ [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ] ] ], [ [ [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.816895, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ] ] ], [ [ [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ] ] ], [ [ [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.816895, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.068359, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.628418, -8.385431 ], [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.068359, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.628418, -8.385431 ], [ 126.936035, -8.254983 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ] ] ], [ [ [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.325195, -29.439598 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.325195, -29.439598 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ] ] ], [ [ [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ] ] ], [ [ [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.384032 ], [ 160.686035, -9.600750 ], [ 160.839844, -9.860628 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ], [ 160.686035, -9.600750 ], [ 160.839844, -9.860628 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.992188, -15.601875 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.992188, -15.601875 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.117840 ], [ 165.014648, -20.447602 ], [ 165.761719, -21.063997 ], [ 166.596680, -21.698265 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.454102, -21.677848 ], [ 164.816895, -21.145992 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ], [ 165.014648, -20.447602 ], [ 165.761719, -21.063997 ], [ 166.596680, -21.698265 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.454102, -21.677848 ], [ 164.816895, -21.145992 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.975586, 21.759500 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ] ] ], [ [ [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.975586, 21.759500 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.701172, 26.745610 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 99.975586, 21.759500 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.481445, 16.846605 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.756348, 14.838612 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.446622 ], [ 95.361328, 15.728814 ], [ 94.790039, 15.813396 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.701172, 26.745610 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 99.975586, 21.759500 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.481445, 16.846605 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.756348, 14.838612 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.446622 ], [ 95.361328, 15.728814 ], [ 94.790039, 15.813396 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.677848 ], [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ], [ 102.744141, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.150879, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.239746, 8.993600 ], [ 98.547363, 9.947209 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.206543, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 98.481445, 16.846605 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.239746, 8.993600 ], [ 98.547363, 9.947209 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.206543, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 98.481445, 16.846605 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.951320 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.497092 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 127.770996, 39.061849 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.980469, 37.961523 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.951320 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.497092 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 127.770996, 39.061849 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.980469, 37.961523 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 127.770996, 38.307181 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 127.770996, 38.307181 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ] ] ], [ [ [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ] ] ], [ [ [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ] ] ], [ [ [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ] ] ], [ [ [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ] ] ], [ [ [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 114.587402, 4.915833 ], [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 114.587402, 4.915833 ], [ 115.444336, 5.462896 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ] ] ], [ [ [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ] ] ], [ [ [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.657715, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.657715, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ] ] ], [ [ [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ] ] ], [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ], [ [ [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.437256, -25.155229 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.437256, -25.155229 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ] ] ], [ [ [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.742432, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.742432, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ] ] ], [ [ [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ] ] ], [ [ [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ] ] ], [ [ [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ] ] ], [ [ [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.693359, 15.961329 ], [ -85.451660, 15.887376 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.528809, 15.866242 ], [ -84.375000, 15.845105 ], [ -84.067383, 15.654776 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.704346, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.528320, 13.784737 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -88.846436, 14.147229 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ], [ -85.693359, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.011963, 16.014136 ], [ -85.693359, 15.961329 ], [ -85.451660, 15.887376 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.528809, 15.866242 ], [ -84.375000, 15.845105 ], [ -84.067383, 15.654776 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.704346, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.528320, 13.784737 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -88.846436, 14.147229 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.628662, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.288330, 22.400872 ], [ -78.354492, 22.512557 ], [ -78.002930, 22.278931 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.293113 ], [ -74.300537, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.640869, 19.880392 ], [ -76.333008, 19.963023 ], [ -77.761230, 19.859727 ], [ -77.091064, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.145752, 20.745840 ], [ -78.486328, 21.033237 ], [ -78.728027, 21.606365 ], [ -79.288330, 21.565502 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.044913 ], [ -81.826172, 22.197577 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.644432 ], [ -82.781982, 22.695120 ], [ -83.496094, 22.177232 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.810508 ], [ -84.979248, 21.902278 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.988738 ], [ -82.518311, 23.079732 ], [ -82.276611, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.276611, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.628662, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.288330, 22.400872 ], [ -78.354492, 22.512557 ], [ -78.002930, 22.278931 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.293113 ], [ -74.300537, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.640869, 19.880392 ], [ -76.333008, 19.963023 ], [ -77.761230, 19.859727 ], [ -77.091064, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.145752, 20.745840 ], [ -78.486328, 21.033237 ], [ -78.728027, 21.606365 ], [ -79.288330, 21.565502 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.044913 ], [ -81.826172, 22.197577 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.644432 ], [ -82.781982, 22.695120 ], [ -83.496094, 22.177232 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.810508 ], [ -84.979248, 21.902278 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.988738 ], [ -82.518311, 23.079732 ], [ -82.276611, 23.190863 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -83.023682, 10.001310 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -83.023682, 10.001310 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.574463, 18.500447 ], [ -76.904297, 18.406655 ], [ -76.365967, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.772217, 17.863747 ], [ -78.343506, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.531700 ], [ -77.574463, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.531700 ], [ -77.574463, 18.500447 ], [ -76.904297, 18.406655 ], [ -76.365967, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.772217, 17.863747 ], [ -78.343506, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.531700 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.224609, 19.632240 ], [ -69.960938, 19.652934 ], [ -69.774170, 19.300775 ], [ -69.224854, 19.321511 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.989415 ], [ -68.323975, 18.615013 ], [ -68.697510, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.631348, 18.385805 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.675049, 18.427502 ], [ -71.004639, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.663818, 17.759150 ], [ -71.718750, 18.051867 ], [ -71.696777, 18.323240 ], [ -71.949463, 18.625425 ], [ -71.707764, 18.791918 ], [ -71.630859, 19.176301 ], [ -71.718750, 19.715000 ], [ -71.597900, 19.890723 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.597900, 19.890723 ], [ -70.806885, 19.880392 ], [ -70.224609, 19.632240 ], [ -69.960938, 19.652934 ], [ -69.774170, 19.300775 ], [ -69.224854, 19.321511 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.989415 ], [ -68.323975, 18.615013 ], [ -68.697510, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.631348, 18.385805 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.675049, 18.427502 ], [ -71.004639, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.663818, 17.759150 ], [ -71.718750, 18.051867 ], [ -71.696777, 18.323240 ], [ -71.949463, 18.625425 ], [ -71.707764, 18.791918 ], [ -71.630859, 19.176301 ], [ -71.718750, 19.715000 ], [ -71.597900, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.004837 ], [ -58.491211, 7.351571 ], [ -58.458252, 6.839170 ], [ -58.084717, 6.817353 ], [ -57.150879, 5.976680 ], [ -57.315674, 5.080001 ], [ -57.919922, 4.817312 ], [ -57.864990, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.778451 ], [ -56.546631, 1.900286 ], [ -56.788330, 1.867345 ], [ -57.337646, 1.955187 ], [ -57.667236, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.436279, 1.472006 ], [ -58.546143, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.985352, 2.756504 ], [ -59.820557, 3.612107 ], [ -59.545898, 3.962901 ], [ -59.776611, 4.434044 ], [ -60.117188, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.255068 ], [ -60.743408, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.303955, 7.046379 ], [ -60.644531, 7.416942 ], [ -60.556641, 7.787194 ], [ -59.765625, 8.374562 ], [ -59.106445, 8.004837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.374562 ], [ -59.106445, 8.004837 ], [ -58.491211, 7.351571 ], [ -58.458252, 6.839170 ], [ -58.084717, 6.817353 ], [ -57.150879, 5.976680 ], [ -57.315674, 5.080001 ], [ -57.919922, 4.817312 ], [ -57.864990, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.778451 ], [ -56.546631, 1.900286 ], [ -56.788330, 1.867345 ], [ -57.337646, 1.955187 ], [ -57.667236, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.436279, 1.472006 ], [ -58.546143, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.985352, 2.756504 ], [ -59.820557, 3.612107 ], [ -59.545898, 3.962901 ], [ -59.776611, 4.434044 ], [ -60.117188, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.255068 ], [ -60.743408, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.303955, 7.046379 ], [ -60.644531, 7.416942 ], [ -60.556641, 7.787194 ], [ -59.765625, 8.374562 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ], [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.635310 ], [ -14.051514, 13.795406 ], [ -13.853760, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.150146, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.699463, 13.272026 ], [ -15.941162, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.633545, 13.624633 ], [ -15.402832, 13.870080 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.635310 ], [ -14.051514, 13.795406 ], [ -13.853760, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.150146, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.699463, 13.272026 ], [ -15.941162, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.633545, 13.624633 ], [ -15.402832, 13.870080 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.205811, 12.468760 ], [ -11.667480, 12.393659 ], [ -11.524658, 12.447305 ], [ -11.458740, 12.082296 ], [ -11.304932, 12.082296 ], [ -11.041260, 12.221918 ], [ -10.876465, 12.178965 ], [ -10.601807, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.898682, 12.060809 ], [ -9.569092, 12.200442 ], [ -9.338379, 12.340002 ], [ -9.129639, 12.318536 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.382568, 11.393879 ], [ -8.591309, 11.146066 ], [ -8.624268, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.800933 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.239746, 10.131117 ], [ -8.316650, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.461506 ], [ -8.305664, 8.320212 ], [ -8.228760, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.448486, 7.689217 ], [ -8.723145, 7.721878 ], [ -8.931885, 7.318882 ], [ -9.217529, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.548430 ], [ -10.019531, 8.428904 ], [ -10.239258, 8.407168 ], [ -10.513916, 8.352823 ], [ -10.502930, 8.722218 ], [ -10.656738, 8.982749 ], [ -10.623779, 9.275622 ], [ -10.843506, 9.698228 ], [ -11.118164, 10.055403 ], [ -11.920166, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.722168, 9.351513 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.503244 ], [ -14.084473, 9.893099 ], [ -14.337158, 10.022948 ], [ -14.589844, 10.217625 ], [ -14.699707, 10.660608 ], [ -14.842529, 10.887254 ], [ -15.139160, 11.049038 ], [ -14.688721, 11.533852 ], [ -14.392090, 11.512322 ], [ -14.128418, 11.684514 ], [ -13.908691, 11.684514 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.254128 ], [ -13.710938, 12.586732 ], [ -13.227539, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.205811, 12.468760 ], [ -11.667480, 12.393659 ], [ -11.524658, 12.447305 ], [ -11.458740, 12.082296 ], [ -11.304932, 12.082296 ], [ -11.041260, 12.221918 ], [ -10.876465, 12.178965 ], [ -10.601807, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.898682, 12.060809 ], [ -9.569092, 12.200442 ], [ -9.338379, 12.340002 ], [ -9.129639, 12.318536 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.382568, 11.393879 ], [ -8.591309, 11.146066 ], [ -8.624268, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.800933 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.239746, 10.131117 ], [ -8.316650, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.461506 ], [ -8.305664, 8.320212 ], [ -8.228760, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.448486, 7.689217 ], [ -8.723145, 7.721878 ], [ -8.931885, 7.318882 ], [ -9.217529, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.548430 ], [ -10.019531, 8.428904 ], [ -10.239258, 8.407168 ], [ -10.513916, 8.352823 ], [ -10.502930, 8.722218 ], [ -10.656738, 8.982749 ], [ -10.623779, 9.275622 ], [ -10.843506, 9.698228 ], [ -11.118164, 10.055403 ], [ -11.920166, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.722168, 9.351513 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.503244 ], [ -14.084473, 9.893099 ], [ -14.337158, 10.022948 ], [ -14.589844, 10.217625 ], [ -14.699707, 10.660608 ], [ -14.842529, 10.887254 ], [ -15.139160, 11.049038 ], [ -14.688721, 11.533852 ], [ -14.392090, 11.512322 ], [ -14.128418, 11.684514 ], [ -13.908691, 11.684514 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.254128 ], [ -13.710938, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.560059, 22.796439 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ], [ -1.560059, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ -1.560059, 22.796439 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.217529, 7.318882 ], [ -8.931885, 7.318882 ], [ -8.723145, 7.721878 ], [ -8.448486, 7.689217 ], [ -8.492432, 7.406048 ], [ -8.393555, 6.915521 ], [ -8.613281, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.580566, 5.714380 ], [ -7.547607, 5.320705 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.839207 ], [ -9.920654, 5.594118 ], [ -10.766602, 6.151478 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.111795 ], [ -11.151123, 7.406048 ], [ -10.700684, 7.939556 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.548430 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.548430 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.217529, 7.318882 ], [ -8.931885, 7.318882 ], [ -8.723145, 7.721878 ], [ -8.448486, 7.689217 ], [ -8.492432, 7.406048 ], [ -8.393555, 6.915521 ], [ -8.613281, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.580566, 5.714380 ], [ -7.547607, 5.320705 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.839207 ], [ -9.920654, 5.594118 ], [ -10.766602, 6.151478 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.111795 ], [ -11.151123, 7.406048 ], [ -10.700684, 7.939556 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.548430 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ -0.054932, 10.714587 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.021973, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.021973, 11.027472 ], [ -0.054932, 10.714587 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.171875, 66.530768 ], [ -14.512939, 66.456275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ] ] ], [ [ [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ] ] ], [ [ [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ] ], [ [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ] ], [ [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.827393, -25.839449 ], [ 31.981201, -26.283565 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ], [ 31.981201, -26.283565 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.970947, -28.950476 ], [ 29.322510, -29.248063 ], [ 29.014893, -29.735762 ], [ 28.839111, -30.069094 ], [ 28.289795, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.740479, -30.637912 ], [ 26.993408, -29.869229 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.844674 ], [ 28.531494, -28.642389 ], [ 28.970947, -28.950476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.531494, -28.642389 ], [ 28.970947, -28.950476 ], [ 29.322510, -29.248063 ], [ 29.014893, -29.735762 ], [ 28.839111, -30.069094 ], [ 28.289795, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.740479, -30.637912 ], [ 26.993408, -29.869229 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.844674 ], [ 28.531494, -28.642389 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ -1.560059, 22.796439 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ -1.560059, 22.796439 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.714587 ], [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.714587 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ], [ 23.829346, 19.580493 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.853271, 23.412847 ], [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.700105 ], [ 15.270996, 7.427837 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.700105 ], [ 15.270996, 7.427837 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.543701, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.389893, 9.275622 ], [ 23.455811, 8.961045 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.830731 ], [ 25.114746, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.954827 ], [ 27.213135, 5.561315 ], [ 27.366943, 5.244128 ], [ 27.037354, 5.134715 ], [ 26.400146, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.125732, 4.937724 ], [ 24.796143, 4.904887 ], [ 24.400635, 5.112830 ], [ 23.291016, 4.620229 ], [ 22.840576, 4.718778 ], [ 22.697754, 4.642130 ], [ 22.401123, 4.039618 ], [ 21.654053, 4.225900 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.718778 ], [ 18.533936, 4.203986 ], [ 18.446045, 3.513421 ], [ 17.808838, 3.568248 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.206333 ], [ 16.007080, 2.273573 ], [ 15.897217, 2.558963 ], [ 15.853271, 3.019841 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.853293 ], [ 14.941406, 4.214943 ], [ 14.468994, 4.740675 ], [ 14.556885, 5.036227 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.765625, 6.413566 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.504089 ], [ 16.281738, 7.754537 ], [ 16.446533, 7.743651 ], [ 16.699219, 7.514981 ], [ 17.962646, 7.896030 ], [ 18.380127, 8.287599 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.993600 ], [ 19.083252, 9.080400 ], [ 20.050049, 9.015302 ], [ 20.994873, 9.481572 ], [ 21.719971, 10.574222 ], [ 22.225342, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.543701, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.389893, 9.275622 ], [ 23.455811, 8.961045 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.830731 ], [ 25.114746, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.954827 ], [ 27.213135, 5.561315 ], [ 27.366943, 5.244128 ], [ 27.037354, 5.134715 ], [ 26.400146, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.125732, 4.937724 ], [ 24.796143, 4.904887 ], [ 24.400635, 5.112830 ], [ 23.291016, 4.620229 ], [ 22.840576, 4.718778 ], [ 22.697754, 4.642130 ], [ 22.401123, 4.039618 ], [ 21.654053, 4.225900 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.718778 ], [ 18.533936, 4.203986 ], [ 18.446045, 3.513421 ], [ 17.808838, 3.568248 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.206333 ], [ 16.007080, 2.273573 ], [ 15.897217, 2.558963 ], [ 15.853271, 3.019841 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.853293 ], [ 14.941406, 4.214943 ], [ 14.468994, 4.740675 ], [ 14.556885, 5.036227 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.765625, 6.413566 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.504089 ], [ 16.281738, 7.754537 ], [ 16.446533, 7.743651 ], [ 16.699219, 7.514981 ], [ 17.962646, 7.896030 ], [ 18.380127, 8.287599 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.993600 ], [ 19.083252, 9.080400 ], [ 20.050049, 9.015302 ], [ 20.994873, 9.481572 ], [ 21.719971, 10.574222 ], [ 22.225342, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.597900, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ] ] ], [ [ [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.673096, 35.021000 ], [ 33.519287, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.673096, 35.021000 ], [ 33.519287, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.519287, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.519287, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.342285, 40.955011 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.342285, 40.955011 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.966309, 29.983487 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.966309, 29.983487 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 32.870360 ], [ 35.694580, 32.722599 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ], [ 35.694580, 32.722599 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.386963, 31.494262 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.625321 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.178223, 32.537552 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.537552 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.386963, 31.494262 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.625321 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.178223, 32.537552 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.846605 ], [ 39.265137, 15.929638 ], [ 39.803467, 15.443091 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.769775, 12.458033 ], [ 42.341309, 12.543840 ], [ 42.000732, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.125922 ], [ 40.023193, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.743011 ], [ 38.507080, 14.509144 ], [ 37.902832, 14.966013 ], [ 37.584229, 14.221789 ], [ 36.419678, 14.424040 ], [ 36.320801, 14.827991 ], [ 36.749268, 16.299051 ], [ 36.848145, 16.962233 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.846605 ], [ 39.265137, 15.929638 ], [ 39.803467, 15.443091 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.769775, 12.458033 ], [ 42.341309, 12.543840 ], [ 42.000732, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.125922 ], [ 40.023193, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.743011 ], [ 38.507080, 14.509144 ], [ 37.902832, 14.966013 ], [ 37.584229, 14.221789 ], [ 36.419678, 14.424040 ], [ 36.320801, 14.827991 ], [ 36.749268, 16.299051 ], [ 36.848145, 16.962233 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.737061, 11.361568 ], [ 41.660156, 11.641476 ], [ 41.989746, 12.103781 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.737061, 11.361568 ], [ 41.660156, 11.641476 ], [ 41.989746, 12.103781 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ] ] ], [ [ [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ] ] ], [ [ [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.790039, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.380502 ], [ 3.120117, 50.785102 ], [ 2.647705, 50.798991 ], [ 2.504883, 51.151786 ], [ 3.306885, 51.351201 ], [ 4.042969, 51.268789 ], [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.790039, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.380502 ], [ 3.120117, 50.785102 ], [ 2.647705, 50.798991 ], [ 2.504883, 51.151786 ], [ 3.306885, 51.351201 ], [ 4.042969, 51.268789 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.845164 ], [ 16.556396, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.314941, 45.736860 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.403076, 45.467836 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.019853 ], [ 13.798828, 46.513516 ], [ 14.622803, 46.437857 ], [ 15.128174, 46.664517 ], [ 16.007080, 46.687131 ], [ 16.193848, 46.852678 ], [ 16.369629, 46.845164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.852678 ], [ 16.369629, 46.845164 ], [ 16.556396, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.314941, 45.736860 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.403076, 45.467836 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.019853 ], [ 13.798828, 46.513516 ], [ 14.622803, 46.437857 ], [ 15.128174, 46.664517 ], [ 16.007080, 46.687131 ], [ 16.193848, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ] ] ], [ [ [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 9.206543, 41.211722 ], [ 9.799805, 40.505446 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.708740, 47.886881 ], [ 22.093506, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.588623, 46.172223 ], [ 18.819580, 45.912944 ], [ 18.446045, 45.759859 ], [ 17.622070, 45.958788 ], [ 16.875000, 46.384833 ], [ 16.556396, 46.505954 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.852678 ], [ 16.523438, 47.502359 ], [ 16.336670, 47.717154 ], [ 16.896973, 47.717154 ], [ 16.973877, 48.129434 ], [ 17.479248, 47.872144 ], [ 17.852783, 47.761484 ], [ 18.687744, 47.886881 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.654541, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.334343 ], [ 20.467529, 48.567520 ], [ 20.797119, 48.625647 ], [ 21.862793, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.708740, 47.886881 ], [ 22.093506, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.588623, 46.172223 ], [ 18.819580, 45.912944 ], [ 18.446045, 45.759859 ], [ 17.622070, 45.958788 ], [ 16.875000, 46.384833 ], [ 16.556396, 46.505954 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.852678 ], [ 16.523438, 47.502359 ], [ 16.336670, 47.717154 ], [ 16.896973, 47.717154 ], [ 16.973877, 48.129434 ], [ 17.479248, 47.872144 ], [ 17.852783, 47.761484 ], [ 18.687744, 47.886881 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.654541, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.334343 ], [ 20.467529, 48.567520 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.852783, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.995361, 44.863656 ], [ 19.357910, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.572432 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.205176 ], [ 18.555908, 42.650122 ], [ 17.666016, 43.028745 ], [ 17.292480, 43.452919 ], [ 16.907959, 43.667872 ], [ 16.446533, 44.048116 ], [ 16.237793, 44.355278 ], [ 15.743408, 44.824708 ], [ 15.952148, 45.236218 ], [ 16.314697, 45.011419 ], [ 16.534424, 45.213004 ], [ 16.995850, 45.236218 ], [ 17.852783, 45.073521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.995850, 45.236218 ], [ 17.852783, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.995361, 44.863656 ], [ 19.357910, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.572432 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.205176 ], [ 18.555908, 42.650122 ], [ 17.666016, 43.028745 ], [ 17.292480, 43.452919 ], [ 16.907959, 43.667872 ], [ 16.446533, 44.048116 ], [ 16.237793, 44.355278 ], [ 15.743408, 44.824708 ], [ 15.952148, 45.236218 ], [ 16.314697, 45.011419 ], [ 16.534424, 45.213004 ], [ 16.995850, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.357138 ], [ 19.621582, 43.221190 ], [ 19.951172, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.061035, 42.593533 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.959490 ], [ 18.874512, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.698730, 43.205176 ], [ 19.028320, 43.436966 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.357138 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.357138 ], [ 19.621582, 43.221190 ], [ 19.951172, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.061035, 42.593533 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.959490 ], [ 18.874512, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.698730, 43.205176 ], [ 19.028320, 43.436966 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.950928, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.916206 ], [ 21.434326, 42.867912 ], [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.654053, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.346436, 42.212245 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ], [ 20.950928, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.950928, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.916206 ], [ 21.434326, 42.867912 ], [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.654053, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.346436, 42.212245 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.346436, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.346436, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.450660 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.305160 ], [ 27.410889, 58.728302 ], [ 27.707520, 57.792089 ], [ 27.279053, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.850598 ], [ 25.158691, 57.973157 ], [ 24.312744, 57.797944 ], [ 24.422607, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.192812 ], [ 24.598389, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.938477, 59.450660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.450660 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.305160 ], [ 27.410889, 58.728302 ], [ 27.707520, 57.792089 ], [ 27.279053, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.850598 ], [ 25.158691, 57.973157 ], [ 24.312744, 57.797944 ], [ 24.422607, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.192812 ], [ 24.598389, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.795105 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.750732, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.783447, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.398682, 53.618579 ], [ 32.684326, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.300049, 53.074228 ], [ 31.530762, 52.742943 ], [ 31.783447, 52.106505 ], [ 30.926514, 52.045734 ], [ 30.618896, 51.828988 ], [ 30.552979, 51.323747 ], [ 30.146484, 51.419764 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.433464 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.597548 ], [ 26.334229, 51.835778 ], [ 25.323486, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.521729, 51.583897 ], [ 23.499756, 52.025459 ], [ 23.192139, 52.489470 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.521729, 53.474970 ], [ 23.477783, 53.917281 ], [ 24.444580, 53.910810 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.851315 ], [ 26.586914, 55.172594 ], [ 26.488037, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.795105 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.750732, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.783447, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.398682, 53.618579 ], [ 32.684326, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.300049, 53.074228 ], [ 31.530762, 52.742943 ], [ 31.783447, 52.106505 ], [ 30.926514, 52.045734 ], [ 30.618896, 51.828988 ], [ 30.552979, 51.323747 ], [ 30.146484, 51.419764 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.433464 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.597548 ], [ 26.334229, 51.835778 ], [ 25.323486, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.521729, 51.583897 ], [ 23.499756, 52.025459 ], [ 23.192139, 52.489470 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.521729, 53.474970 ], [ 23.477783, 53.917281 ], [ 24.444580, 53.910810 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.851315 ], [ 26.586914, 55.172594 ], [ 26.488037, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.916504, 48.129434 ], [ 27.224121, 47.827908 ], [ 27.542725, 47.405785 ], [ 28.125000, 46.815099 ], [ 28.157959, 46.377254 ], [ 28.048096, 45.951150 ], [ 28.223877, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.597168, 45.298075 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.553467, 43.707594 ], [ 27.960205, 43.818675 ], [ 27.235107, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.093018, 43.747289 ], [ 23.323975, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.467041, 44.410240 ], [ 22.697754, 44.582643 ], [ 22.456055, 44.707706 ], [ 22.137451, 44.480830 ], [ 21.555176, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.421588 ], [ 20.753174, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.093506, 47.672786 ], [ 22.708740, 47.886881 ], [ 23.137207, 48.100095 ], [ 23.752441, 47.989922 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.938721, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ], [ 26.916504, 48.129434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.129434 ], [ 27.224121, 47.827908 ], [ 27.542725, 47.405785 ], [ 28.125000, 46.815099 ], [ 28.157959, 46.377254 ], [ 28.048096, 45.951150 ], [ 28.223877, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.597168, 45.298075 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.553467, 43.707594 ], [ 27.960205, 43.818675 ], [ 27.235107, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.093018, 43.747289 ], [ 23.323975, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.467041, 44.410240 ], [ 22.697754, 44.582643 ], [ 22.456055, 44.707706 ], [ 22.137451, 44.480830 ], [ 21.555176, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.421588 ], [ 20.753174, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.093506, 47.672786 ], [ 22.708740, 47.886881 ], [ 23.137207, 48.100095 ], [ 23.752441, 47.989922 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.938721, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.663330, 48.122101 ], [ 29.113770, 47.850031 ], [ 29.047852, 47.517201 ], [ 29.410400, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.827881, 46.528635 ], [ 30.014648, 46.430285 ], [ 29.750977, 46.354511 ], [ 29.168701, 46.384833 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.445427 ], [ 28.927002, 46.263443 ], [ 28.652344, 45.943511 ], [ 28.476562, 45.598666 ], [ 28.223877, 45.490946 ], [ 28.048096, 45.951150 ], [ 28.157959, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.542725, 47.405785 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.129434 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.520752, 48.472921 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.472921 ], [ 28.256836, 48.158757 ], [ 28.663330, 48.122101 ], [ 29.113770, 47.850031 ], [ 29.047852, 47.517201 ], [ 29.410400, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.827881, 46.528635 ], [ 30.014648, 46.430285 ], [ 29.750977, 46.354511 ], [ 29.168701, 46.384833 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.445427 ], [ 28.927002, 46.263443 ], [ 28.652344, 45.943511 ], [ 28.476562, 45.598666 ], [ 28.223877, 45.490946 ], [ 28.048096, 45.951150 ], [ 28.157959, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.542725, 47.405785 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.129434 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.520752, 48.472921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.945068, 39.342794 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.966309, 29.983487 ], [ 48.175049, 29.535230 ], [ 48.087158, 29.315141 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.526622 ], [ 47.449951, 29.008140 ], [ 46.560059, 29.104177 ], [ 47.296143, 30.059586 ], [ 47.966309, 29.983487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.296143, 30.059586 ], [ 47.966309, 29.983487 ], [ 48.175049, 29.535230 ], [ 48.087158, 29.315141 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.526622 ], [ 47.449951, 29.008140 ], [ 46.560059, 29.104177 ], [ 47.296143, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.580811, 25.809782 ], [ 51.602783, 25.224820 ], [ 51.383057, 24.637031 ], [ 51.108398, 24.557116 ], [ 50.800781, 24.756808 ], [ 50.734863, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.580811, 25.809782 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.580811, 25.809782 ], [ 51.602783, 25.224820 ], [ 51.383057, 24.637031 ], [ 51.108398, 24.557116 ], [ 50.800781, 24.756808 ], [ 50.734863, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.613770, 24.016362 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.613770, 24.016362 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.063232, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ], [ 53.107910, 16.657244 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.010190 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ], [ 48.933105, 9.459899 ], [ 48.482666, 8.841651 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.923584, 10.022948 ], [ 42.550049, 10.574222 ], [ 42.769775, 10.930405 ], [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ], [ 48.933105, 9.459899 ], [ 48.482666, 8.841651 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.923584, 10.022948 ], [ 42.550049, 10.574222 ], [ 42.769775, 10.930405 ], [ 43.143311, 11.469258 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 86.022949, 26.637639 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.101074, 30.192618 ], [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 86.022949, 26.637639 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.101074, 30.192618 ], [ 81.518555, 30.429730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.986816, 7.917793 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.986816, 7.917793 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.556396, 22.228090 ], [ 107.039795, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.710205, 20.704739 ], [ 105.875244, 19.756364 ], [ 105.655518, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.324951, 13.432367 ], [ 109.193115, 11.673755 ], [ 108.358154, 11.016689 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.150146, 8.602747 ], [ 104.787598, 9.243093 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.194092, 10.898042 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.576907 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.211139 ], [ 107.556152, 15.209988 ], [ 107.303467, 15.919074 ], [ 106.545410, 16.604610 ], [ 105.084229, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.183350, 19.632240 ], [ 104.820557, 19.890723 ], [ 104.425049, 20.766387 ], [ 103.194580, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.161865, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.502197, 22.705255 ], [ 104.468994, 22.826820 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.556396, 22.228090 ], [ 107.039795, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.710205, 20.704739 ], [ 105.875244, 19.756364 ], [ 105.655518, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.324951, 13.432367 ], [ 109.193115, 11.673755 ], [ 108.358154, 11.016689 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.150146, 8.602747 ], [ 104.787598, 9.243093 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.194092, 10.898042 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.576907 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.211139 ], [ 107.556152, 15.209988 ], [ 107.303467, 15.919074 ], [ 106.545410, 16.604610 ], [ 105.084229, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.183350, 19.632240 ], [ 104.820557, 19.890723 ], [ 104.425049, 20.766387 ], [ 103.194580, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.161865, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.502197, 22.705255 ], [ 104.468994, 22.826820 ], [ 105.325928, 23.352343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ] ] ], [ [ [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.439974 ], [ 129.451904, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.177490, 34.894942 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.551514, 35.692995 ], [ 126.112061, 36.730080 ], [ 126.859131, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.848833 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.264063 ], [ 127.770996, 38.307181 ], [ 128.199463, 38.376115 ], [ 128.342285, 38.616870 ], [ 129.210205, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.210205, 37.439974 ], [ 129.451904, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.177490, 34.894942 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.551514, 35.692995 ], [ 126.112061, 36.730080 ], [ 126.859131, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.848833 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.264063 ], [ 127.770996, 38.307181 ], [ 128.199463, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ] ] ], [ [ [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ] ] ], [ [ [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.324501 ], [ 114.862061, 4.357366 ], [ 114.653320, 4.017699 ], [ 114.202881, 4.532618 ], [ 114.598389, 4.904887 ], [ 115.444336, 5.451959 ], [ 115.345459, 4.324501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.451959 ], [ 115.345459, 4.324501 ], [ 114.862061, 4.357366 ], [ 114.653320, 4.017699 ], [ 114.202881, 4.532618 ], [ 114.598389, 4.904887 ], [ 115.444336, 5.451959 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ] ] ], [ [ [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ] ] ], [ [ [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ] ] ], [ [ [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.454346, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.454102, -20.797201 ], [ 165.772705, -21.074249 ], [ 166.596680, -21.698265 ], [ 167.113037, -22.156883 ], [ 166.739502, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.465088, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.157715, -20.437308 ], [ 164.025879, -20.097206 ], [ 164.454346, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.454346, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.454102, -20.797201 ], [ 165.772705, -21.074249 ], [ 166.596680, -21.698265 ], [ 167.113037, -22.156883 ], [ 166.739502, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.465088, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.157715, -20.437308 ], [ 164.025879, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.243408, -41.327326 ], [ 173.957520, -40.921814 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.243408, -41.327326 ], [ 173.957520, -40.921814 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.361084, 41.385052 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.071411, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.071411, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.071411, 17.821916 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.813110, 2.822344 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.813110, 2.822344 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ] ] ], [ [ [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ] ] ], [ [ [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.813110, 2.822344 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.813110, 2.822344 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -5.976562, 20.643066 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -5.976562, 20.643066 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.021973, 11.022080 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.021973, 11.022080 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ -0.054932, 10.709189 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.021973, 11.022080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.021973, 11.022080 ], [ -0.054932, 10.709189 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ], [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ], [ [ [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ] ] ], [ [ [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.709189 ], [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.709189 ], [ 0.021973, 11.022080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.846802, 21.499075 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 19.846802, 21.499075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 19.846802, 21.499075 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ] ] ], [ [ [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ] ] ], [ [ [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 9.206543, 41.211722 ], [ 9.805298, 40.501269 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.703247, 44.578730 ], [ 22.472534, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.434082, 42.581400 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.703247, 44.578730 ], [ 22.472534, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.434082, 42.581400 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.689209, 55.612487 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ], [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 37.183228, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.908569, 41.335576 ], [ 38.342285, 40.950863 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.342285, 40.950863 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.792017 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.097778, 55.785840 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.792017 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.097778, 55.785840 ], [ 28.174438, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.472534, 44.410240 ], [ 22.703247, 44.578730 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.472534, 44.410240 ], [ 22.703247, 44.578730 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.379150, 42.322001 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.581400 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.379150, 42.322001 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.581400 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.097778, 55.785840 ], [ 26.493530, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.097778, 55.785840 ], [ 26.493530, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ], [ 53.107910, 16.651981 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.338546 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.439575, 39.142842 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.439575, 39.142842 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ], [ 102.749634, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ] ] ], [ [ [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ] ] ], [ [ [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ] ] ], [ [ [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.243408, -41.331451 ], [ 173.957520, -40.925965 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.243408, -41.331451 ], [ 173.957520, -40.925965 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ] ] ], [ [ [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ] ] ] } } ] } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json index 087b396..80326c7 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json @@ -12,4091 +12,4091 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ] ] ], [ [ [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ] ] ], [ [ [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ] ] ], [ [ [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ] ] ], [ [ [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ] ] ], [ [ [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.554498 ], [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ] ] ], [ [ [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ] ] ], [ [ [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ] ] ], [ [ [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ] ] ], [ [ [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ] ] ], [ [ [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ] ] ], [ [ [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ] ] ], [ [ [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ] ] ], [ [ [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.730469, 63.743631 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ], [ [ [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ] ] ], [ [ [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.865234, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ] ] ], [ [ [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ] ] ], [ [ [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ] ] ], [ [ [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ] ] ], [ [ [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ] ] ], [ [ [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.818359, 63.782486 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ] ] ], [ [ [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ] ] ], [ [ [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ] ] ], [ [ [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -70.664062, 41.508577 ], [ -71.191406, 41.508577 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.322266, 39.027719 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.947266, 32.101190 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.273714 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ] ] ], [ [ [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.631217 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ] ] ], [ [ [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ] ] ], [ [ [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ] ] ], [ [ [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ] ] ], [ [ [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ], [ [ [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -70.664062, 41.508577 ], [ -71.191406, 41.508577 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.322266, 39.027719 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.947266, 32.101190 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.273714 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ] ] ], [ [ [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.585436 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ] ] ], [ [ [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ] ] ], [ [ [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ] ] ], [ [ [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.873047, 32.546813 ], [ -111.093750, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -105.117188, 30.675715 ], [ -104.501953, 29.611670 ], [ -103.974609, 29.305561 ], [ -103.183594, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.840644 ], [ -100.986328, 29.382175 ], [ -100.195312, 28.149503 ], [ -99.580078, 27.605671 ], [ -99.052734, 26.431228 ], [ -97.558594, 25.878994 ], [ -97.207031, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.512557 ], [ -97.734375, 21.943046 ], [ -97.470703, 21.453069 ], [ -97.207031, 20.715015 ], [ -96.591797, 19.973349 ], [ -96.328125, 19.394068 ], [ -95.976562, 18.895893 ], [ -94.921875, 18.562947 ], [ -94.482422, 18.145852 ], [ -91.494141, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.615234, 19.890723 ], [ -90.527344, 20.715015 ], [ -90.351562, 21.043491 ], [ -88.593750, 21.534847 ], [ -87.099609, 21.616579 ], [ -86.835938, 21.371244 ], [ -86.923828, 20.879343 ], [ -87.451172, 20.303418 ], [ -87.626953, 19.725342 ], [ -87.451172, 19.476950 ], [ -87.890625, 18.312811 ], [ -88.154297, 18.562947 ], [ -88.505859, 18.562947 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.062312 ], [ -89.208984, 17.811456 ], [ -91.054688, 17.895114 ], [ -91.054688, 17.308688 ], [ -91.494141, 17.308688 ], [ -90.439453, 16.467695 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.114553 ], [ -92.285156, 14.604847 ], [ -93.427734, 15.623037 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.591797, 15.707663 ], [ -100.898438, 17.224758 ], [ -101.953125, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.974609, 18.812718 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.468750, 20.550509 ], [ -105.556641, 20.879343 ], [ -105.292969, 21.125498 ], [ -105.292969, 21.453069 ], [ -106.083984, 22.836946 ], [ -106.962891, 23.805450 ], [ -107.929688, 24.607069 ], [ -108.457031, 25.244696 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.878994 ], [ -109.335938, 26.509905 ], [ -109.863281, 26.745610 ], [ -110.478516, 27.215556 ], [ -110.654297, 27.916767 ], [ -111.181641, 27.994401 ], [ -112.236328, 28.998532 ], [ -112.324219, 29.305561 ], [ -112.851562, 30.069094 ], [ -113.203125, 30.826781 ], [ -113.203125, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.257812, 31.578535 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.221102 ], [ -113.291016, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -112.763672, 27.839076 ], [ -112.324219, 27.215556 ], [ -111.621094, 26.667096 ], [ -111.357422, 25.799891 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.511719, 23.241346 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.483401 ], [ -111.005859, 24.046464 ], [ -112.236328, 24.766785 ], [ -112.236328, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.824071 ], [ -113.642578, 26.667096 ], [ -113.906250, 26.902477 ], [ -114.521484, 27.215556 ], [ -115.136719, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.257812, 28.149503 ], [ -114.169922, 28.613459 ], [ -114.960938, 29.305561 ], [ -115.576172, 29.611670 ], [ -117.158203, 32.546813 ], [ -114.785156, 32.768800 ], [ -114.873047, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.785156, 32.768800 ], [ -114.873047, 32.546813 ], [ -111.093750, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -105.117188, 30.675715 ], [ -104.501953, 29.611670 ], [ -103.974609, 29.305561 ], [ -103.183594, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.840644 ], [ -100.986328, 29.382175 ], [ -100.195312, 28.149503 ], [ -99.580078, 27.605671 ], [ -99.052734, 26.431228 ], [ -97.558594, 25.878994 ], [ -97.207031, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.512557 ], [ -97.734375, 21.943046 ], [ -97.470703, 21.453069 ], [ -97.207031, 20.715015 ], [ -96.591797, 19.973349 ], [ -96.328125, 19.394068 ], [ -95.976562, 18.895893 ], [ -94.921875, 18.562947 ], [ -94.482422, 18.145852 ], [ -91.494141, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.615234, 19.890723 ], [ -90.527344, 20.715015 ], [ -90.351562, 21.043491 ], [ -88.593750, 21.534847 ], [ -87.099609, 21.616579 ], [ -86.835938, 21.371244 ], [ -86.923828, 20.879343 ], [ -87.451172, 20.303418 ], [ -87.626953, 19.725342 ], [ -87.451172, 19.476950 ], [ -87.890625, 18.312811 ], [ -88.154297, 18.562947 ], [ -88.505859, 18.562947 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.062312 ], [ -89.208984, 17.811456 ], [ -91.054688, 17.895114 ], [ -91.054688, 17.308688 ], [ -91.494141, 17.308688 ], [ -90.439453, 16.467695 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.114553 ], [ -92.285156, 14.604847 ], [ -93.427734, 15.623037 ], [ -93.955078, 15.961329 ], [ -94.746094, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.591797, 15.707663 ], [ -100.898438, 17.224758 ], [ -101.953125, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.974609, 18.812718 ], [ -105.029297, 19.394068 ], [ -105.732422, 20.468189 ], [ -105.468750, 20.550509 ], [ -105.556641, 20.879343 ], [ -105.292969, 21.125498 ], [ -105.292969, 21.453069 ], [ -106.083984, 22.836946 ], [ -106.962891, 23.805450 ], [ -107.929688, 24.607069 ], [ -108.457031, 25.244696 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.878994 ], [ -109.335938, 26.509905 ], [ -109.863281, 26.745610 ], [ -110.478516, 27.215556 ], [ -110.654297, 27.916767 ], [ -111.181641, 27.994401 ], [ -112.236328, 28.998532 ], [ -112.324219, 29.305561 ], [ -112.851562, 30.069094 ], [ -113.203125, 30.826781 ], [ -113.203125, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.257812, 31.578535 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.221102 ], [ -113.291016, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -112.763672, 27.839076 ], [ -112.324219, 27.215556 ], [ -111.621094, 26.667096 ], [ -111.357422, 25.799891 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.511719, 23.241346 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.483401 ], [ -111.005859, 24.046464 ], [ -112.236328, 24.766785 ], [ -112.236328, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.824071 ], [ -113.642578, 26.667096 ], [ -113.906250, 26.902477 ], [ -114.521484, 27.215556 ], [ -115.136719, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.257812, 28.149503 ], [ -114.169922, 28.613459 ], [ -114.960938, 29.305561 ], [ -115.576172, 29.611670 ], [ -117.158203, 32.546813 ], [ -114.785156, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.208984, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.792254 ], [ -89.208984, 15.114553 ], [ -89.208984, 14.689881 ], [ -90.175781, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.318359, 14.008696 ], [ -92.285156, 14.604847 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.284185 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.439453, 16.467695 ], [ -91.494141, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.895114 ], [ -89.208984, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.054688, 17.895114 ], [ -89.208984, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.792254 ], [ -89.208984, 15.114553 ], [ -89.208984, 14.689881 ], [ -90.175781, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.318359, 14.008696 ], [ -92.285156, 14.604847 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.284185 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.439453, 16.467695 ], [ -91.494141, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.895114 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.607422, 24.367114 ], [ -77.607422, 23.805450 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ], [ -77.607422, 24.367114 ] ] ], [ [ [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ] ] ], [ [ [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.958984, 25.244696 ], [ -77.607422, 24.367114 ], [ -77.607422, 23.805450 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.486328, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.958984, 25.244696 ] ] ], [ [ [ -77.871094, 27.059126 ], [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ] ] ], [ [ [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.154297, 18.396230 ], [ -88.417969, 16.551962 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.208984, 17.811456 ], [ -89.033203, 18.062312 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.562947 ], [ -88.154297, 18.396230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.505859, 18.562947 ], [ -88.154297, 18.396230 ], [ -88.417969, 16.551962 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.208984, 17.811456 ], [ -89.033203, 18.062312 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.349548 ], [ -88.505859, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.838080 ], [ -87.802734, 13.410994 ], [ -87.978516, 13.154376 ], [ -88.505859, 13.239945 ], [ -89.824219, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.384766, 14.434680 ], [ -89.121094, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -89.121094, 14.349548 ], [ -88.505859, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.802734, 13.838080 ], [ -87.802734, 13.410994 ], [ -87.978516, 13.154376 ], [ -88.505859, 13.239945 ], [ -89.824219, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.384766, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.876809 ], [ -83.232422, 15.029686 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.689881 ], [ -84.990234, 14.859850 ], [ -85.166016, 14.434680 ], [ -85.869141, 13.838080 ], [ -86.132812, 14.093957 ], [ -86.396484, 13.838080 ], [ -86.835938, 13.838080 ], [ -86.748047, 13.325485 ], [ -86.923828, 13.325485 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.539062, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.802734, 13.838080 ], [ -87.890625, 13.923404 ], [ -88.505859, 13.923404 ], [ -89.121094, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.208984, 14.689881 ], [ -89.208984, 15.114553 ], [ -88.242188, 15.792254 ], [ -87.978516, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ], [ -85.517578, 15.961329 ], [ -84.990234, 16.045813 ], [ -84.375000, 15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 16.045813 ], [ -84.375000, 15.876809 ], [ -83.232422, 15.029686 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.689881 ], [ -84.990234, 14.859850 ], [ -85.166016, 14.434680 ], [ -85.869141, 13.838080 ], [ -86.132812, 14.093957 ], [ -86.396484, 13.838080 ], [ -86.835938, 13.838080 ], [ -86.748047, 13.325485 ], [ -86.923828, 13.325485 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.539062, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.802734, 13.838080 ], [ -87.890625, 13.923404 ], [ -88.505859, 13.923404 ], [ -89.121094, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.208984, 14.689881 ], [ -89.208984, 15.114553 ], [ -88.242188, 15.792254 ], [ -87.978516, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ], [ -85.517578, 15.961329 ], [ -84.990234, 16.045813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.935547, 10.746969 ], [ -84.726562, 11.092166 ], [ -84.990234, 11.005904 ], [ -85.605469, 11.264612 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -86.923828, 13.325485 ], [ -86.748047, 13.325485 ], [ -86.835938, 13.838080 ], [ -86.396484, 13.838080 ], [ -86.132812, 14.093957 ], [ -85.869141, 13.838080 ], [ -85.166016, 14.434680 ], [ -84.990234, 14.859850 ], [ -84.462891, 14.689881 ], [ -83.496094, 15.029686 ], [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.935547, 10.746969 ], [ -84.726562, 11.092166 ], [ -84.990234, 11.005904 ], [ -85.605469, 11.264612 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -86.923828, 13.325485 ], [ -86.748047, 13.325485 ], [ -86.835938, 13.838080 ], [ -86.396484, 13.838080 ], [ -86.132812, 14.093957 ], [ -85.869141, 13.838080 ], [ -85.166016, 14.434680 ], [ -84.990234, 14.859850 ], [ -84.462891, 14.689881 ], [ -83.496094, 15.029686 ], [ -83.232422, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.683594, 23.160563 ], [ -79.716797, 22.836946 ], [ -79.365234, 22.431340 ], [ -78.398438, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.673828, 21.043491 ], [ -75.673828, 20.797201 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.355469, 20.055931 ], [ -74.970703, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.715015 ], [ -78.222656, 20.797201 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.365234, 21.616579 ], [ -80.244141, 21.861499 ], [ -80.595703, 22.105999 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.755921 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.111328, 21.943046 ], [ -84.550781, 21.861499 ], [ -84.990234, 21.943046 ], [ -84.462891, 22.268764 ], [ -84.287109, 22.593726 ], [ -83.847656, 22.836946 ], [ -82.353516, 23.241346 ], [ -80.683594, 23.160563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.353516, 23.241346 ], [ -80.683594, 23.160563 ], [ -79.716797, 22.836946 ], [ -79.365234, 22.431340 ], [ -78.398438, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.673828, 21.043491 ], [ -75.673828, 20.797201 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.355469, 20.055931 ], [ -74.970703, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.715015 ], [ -78.222656, 20.797201 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.365234, 21.616579 ], [ -80.244141, 21.861499 ], [ -80.595703, 22.105999 ], [ -81.826172, 22.268764 ], [ -82.177734, 22.431340 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.755921 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.111328, 21.943046 ], [ -84.550781, 21.861499 ], [ -84.990234, 21.943046 ], [ -84.462891, 22.268764 ], [ -84.287109, 22.593726 ], [ -83.847656, 22.836946 ], [ -82.353516, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 11.005904 ], [ -84.726562, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 11.005904 ], [ -83.408203, 10.401378 ], [ -82.617188, 9.622414 ], [ -82.968750, 9.535749 ], [ -82.968750, 9.102097 ], [ -82.792969, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.583984, 8.494105 ], [ -83.759766, 8.667918 ], [ -83.671875, 9.102097 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -84.990234, 10.141932 ], [ -84.990234, 9.882275 ], [ -85.166016, 9.622414 ], [ -85.341797, 9.882275 ], [ -85.693359, 9.968851 ], [ -85.869141, 10.141932 ], [ -85.693359, 10.833306 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.264612 ], [ -84.990234, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.264612 ], [ -84.990234, 11.005904 ], [ -84.726562, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 11.005904 ], [ -83.408203, 10.401378 ], [ -82.617188, 9.622414 ], [ -82.968750, 9.535749 ], [ -82.968750, 9.102097 ], [ -82.792969, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.583984, 8.494105 ], [ -83.759766, 8.667918 ], [ -83.671875, 9.102097 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -84.990234, 10.141932 ], [ -84.990234, 9.882275 ], [ -85.166016, 9.622414 ], [ -85.341797, 9.882275 ], [ -85.693359, 9.968851 ], [ -85.869141, 10.141932 ], [ -85.693359, 10.833306 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.264612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.134766, 9.275622 ], [ -77.431641, 8.754795 ], [ -77.519531, 8.581021 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.710992 ], [ -77.783203, 7.710992 ], [ -77.958984, 7.275292 ], [ -78.222656, 7.536764 ], [ -78.486328, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.486328, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.189453, 9.015302 ], [ -79.628906, 9.015302 ], [ -79.804688, 8.667918 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.146243 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -80.947266, 7.275292 ], [ -81.123047, 7.885147 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.320212 ], [ -82.880859, 8.146243 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.841651 ], [ -82.792969, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.535749 ], [ -82.617188, 9.622414 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.015302 ], [ -81.738281, 9.102097 ], [ -81.474609, 8.841651 ], [ -81.035156, 8.928487 ], [ -79.980469, 9.362353 ], [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.628906, 9.622414 ], [ -78.134766, 9.275622 ], [ -77.431641, 8.754795 ], [ -77.519531, 8.581021 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.710992 ], [ -77.783203, 7.710992 ], [ -77.958984, 7.275292 ], [ -78.222656, 7.536764 ], [ -78.486328, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.486328, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.189453, 9.015302 ], [ -79.628906, 9.015302 ], [ -79.804688, 8.667918 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.146243 ], [ -80.068359, 7.623887 ], [ -80.507812, 7.275292 ], [ -80.947266, 7.275292 ], [ -81.123047, 7.885147 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.880859, 8.320212 ], [ -82.880859, 8.146243 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.841651 ], [ -82.792969, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.535749 ], [ -82.617188, 9.622414 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.015302 ], [ -81.738281, 9.102097 ], [ -81.474609, 8.841651 ], [ -81.035156, 8.928487 ], [ -79.980469, 9.362353 ], [ -79.628906, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.904297, 18.479609 ], [ -76.376953, 18.229351 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.255859, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.398438, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.562947 ], [ -76.904297, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.607422, 18.562947 ], [ -76.904297, 18.479609 ], [ -76.376953, 18.229351 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.255859, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.398438, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.607422, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.396230 ], [ -71.718750, 18.062312 ], [ -72.421875, 18.229351 ], [ -73.476562, 18.229351 ], [ -74.003906, 18.062312 ], [ -74.531250, 18.396230 ], [ -74.443359, 18.729502 ], [ -72.773438, 18.479609 ], [ -72.421875, 18.729502 ], [ -72.861328, 19.145168 ], [ -72.861328, 19.559790 ], [ -73.476562, 19.642588 ], [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.973349 ], [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.396230 ], [ -71.718750, 18.062312 ], [ -72.421875, 18.229351 ], [ -73.476562, 18.229351 ], [ -74.003906, 18.062312 ], [ -74.531250, 18.396230 ], [ -74.443359, 18.729502 ], [ -72.773438, 18.479609 ], [ -72.421875, 18.729502 ], [ -72.861328, 19.145168 ], [ -72.861328, 19.559790 ], [ -73.476562, 19.642588 ], [ -73.212891, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.725342 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.394068 ], [ -69.257812, 19.062118 ], [ -68.818359, 19.062118 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.479609 ], [ -69.960938, 18.479609 ], [ -70.136719, 18.312811 ], [ -70.576172, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.015625, 18.312811 ], [ -71.455078, 17.644022 ], [ -71.718750, 17.811456 ], [ -71.718750, 18.396230 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.725342 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.394068 ], [ -69.257812, 19.062118 ], [ -68.818359, 19.062118 ], [ -68.378906, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.479609 ], [ -69.960938, 18.479609 ], [ -70.136719, 18.312811 ], [ -70.576172, 18.229351 ], [ -70.751953, 18.479609 ], [ -71.015625, 18.312811 ], [ -71.455078, 17.644022 ], [ -71.718750, 17.811456 ], [ -71.718750, 18.396230 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.455078, 12.382928 ], [ -71.191406, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.178402 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.795678 ], [ -73.388672, 9.188870 ], [ -72.861328, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.509766, 8.407168 ], [ -72.509766, 7.449624 ], [ -72.246094, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.751953, 7.100893 ], [ -70.136719, 7.013668 ], [ -69.433594, 6.140555 ], [ -67.763672, 6.315299 ], [ -67.412109, 6.140555 ], [ -67.763672, 5.266008 ], [ -67.851562, 4.565474 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.899153 ], [ -67.236328, 2.284551 ], [ -66.884766, 1.318243 ], [ -67.148438, 1.142502 ], [ -67.324219, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.939453, 1.757537 ], [ -69.873047, 1.757537 ], [ -69.873047, 1.142502 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.615223 ], [ -69.521484, 0.790990 ], [ -70.048828, 0.615223 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.054628 ], [ -69.960938, -4.214943 ], [ -70.400391, -3.688855 ], [ -70.751953, -3.688855 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.196727 ], [ -71.455078, -2.284551 ], [ -71.806641, -2.108899 ], [ -72.333984, -2.372369 ], [ -73.125000, -2.284551 ], [ -73.740234, -1.230374 ], [ -74.179688, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, 0.000000 ], [ -75.410156, -0.087891 ], [ -76.376953, 0.439449 ], [ -76.640625, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.878872 ], [ -77.871094, 0.878872 ], [ -78.925781, 1.406109 ], [ -79.013672, 1.757537 ], [ -78.662109, 1.845384 ], [ -78.750000, 2.284551 ], [ -78.486328, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.740675 ], [ -77.607422, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.751896 ], [ -77.958984, 7.275292 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.710992 ], [ -77.255859, 7.972198 ], [ -77.519531, 8.581021 ], [ -77.431641, 8.754795 ], [ -76.904297, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.761719, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.970703, 11.092166 ], [ -74.355469, 11.178402 ], [ -74.267578, 11.350797 ], [ -73.476562, 11.264612 ], [ -72.246094, 12.039321 ], [ -71.806641, 12.468760 ], [ -71.455078, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.806641, 12.468760 ], [ -71.455078, 12.382928 ], [ -71.191406, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.178402 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.795678 ], [ -73.388672, 9.188870 ], [ -72.861328, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.509766, 8.407168 ], [ -72.509766, 7.449624 ], [ -72.246094, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.751953, 7.100893 ], [ -70.136719, 7.013668 ], [ -69.433594, 6.140555 ], [ -67.763672, 6.315299 ], [ -67.412109, 6.140555 ], [ -67.763672, 5.266008 ], [ -67.851562, 4.565474 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.899153 ], [ -67.236328, 2.284551 ], [ -66.884766, 1.318243 ], [ -67.148438, 1.142502 ], [ -67.324219, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.939453, 1.757537 ], [ -69.873047, 1.757537 ], [ -69.873047, 1.142502 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.615223 ], [ -69.521484, 0.790990 ], [ -70.048828, 0.615223 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.054628 ], [ -69.960938, -4.214943 ], [ -70.400391, -3.688855 ], [ -70.751953, -3.688855 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.196727 ], [ -71.455078, -2.284551 ], [ -71.806641, -2.108899 ], [ -72.333984, -2.372369 ], [ -73.125000, -2.284551 ], [ -73.740234, -1.230374 ], [ -74.179688, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, 0.000000 ], [ -75.410156, -0.087891 ], [ -76.376953, 0.439449 ], [ -76.640625, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.878872 ], [ -77.871094, 0.878872 ], [ -78.925781, 1.406109 ], [ -79.013672, 1.757537 ], [ -78.662109, 1.845384 ], [ -78.750000, 2.284551 ], [ -78.486328, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.740675 ], [ -77.607422, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.751896 ], [ -77.958984, 7.275292 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.710992 ], [ -77.255859, 7.972198 ], [ -77.519531, 8.581021 ], [ -77.431641, 8.754795 ], [ -76.904297, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.761719, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.970703, 11.092166 ], [ -74.355469, 11.178402 ], [ -74.267578, 11.350797 ], [ -73.476562, 11.264612 ], [ -72.246094, 12.039321 ], [ -71.806641, 12.468760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.830078, 18.479609 ], [ -65.654297, 18.229351 ], [ -65.917969, 17.978733 ], [ -67.236328, 17.978733 ], [ -67.324219, 18.396230 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ], [ -65.830078, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.357422, 18.562947 ], [ -65.830078, 18.479609 ], [ -65.654297, 18.229351 ], [ -65.917969, 17.978733 ], [ -67.236328, 17.978733 ], [ -67.324219, 18.396230 ], [ -67.148438, 18.562947 ], [ -66.357422, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.291016, 10.919618 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.742188, 10.228437 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.908203, 9.449062 ], [ -60.732422, 8.581021 ], [ -60.205078, 8.667918 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.380859, 7.100893 ], [ -61.171875, 6.751896 ], [ -61.171875, 6.315299 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -60.996094, 4.565474 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -64.687500, 4.214943 ], [ -64.863281, 4.127285 ], [ -64.423828, 3.864255 ], [ -64.423828, 3.162456 ], [ -64.335938, 2.547988 ], [ -63.457031, 2.460181 ], [ -63.369141, 2.284551 ], [ -64.160156, 1.933227 ], [ -64.248047, 1.493971 ], [ -65.390625, 1.142502 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.790990 ], [ -66.884766, 1.318243 ], [ -67.236328, 2.284551 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.763672, 5.266008 ], [ -67.412109, 6.140555 ], [ -67.763672, 6.315299 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -70.751953, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.246094, 7.362467 ], [ -72.509766, 7.449624 ], [ -72.509766, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -73.037109, 9.795678 ], [ -72.949219, 10.487812 ], [ -72.246094, 11.178402 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.609193 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.718750, 10.487812 ], [ -72.158203, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.188870 ], [ -71.103516, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.211180 ], [ -69.609375, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.211180 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.291016, 10.919618 ], [ -68.203125, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.742188, 10.228437 ], [ -64.951172, 10.141932 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.962891, 10.746969 ], [ -62.753906, 10.487812 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.908203, 9.449062 ], [ -60.732422, 8.581021 ], [ -60.205078, 8.667918 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.380859, 7.100893 ], [ -61.171875, 6.751896 ], [ -61.171875, 6.315299 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -60.996094, 4.565474 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -64.687500, 4.214943 ], [ -64.863281, 4.127285 ], [ -64.423828, 3.864255 ], [ -64.423828, 3.162456 ], [ -64.335938, 2.547988 ], [ -63.457031, 2.460181 ], [ -63.369141, 2.284551 ], [ -64.160156, 1.933227 ], [ -64.248047, 1.493971 ], [ -65.390625, 1.142502 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.790990 ], [ -66.884766, 1.318243 ], [ -67.236328, 2.284551 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.763672, 5.266008 ], [ -67.412109, 6.140555 ], [ -67.763672, 6.315299 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -70.751953, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.246094, 7.362467 ], [ -72.509766, 7.449624 ], [ -72.509766, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -73.037109, 9.795678 ], [ -72.949219, 10.487812 ], [ -72.246094, 11.178402 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.609193 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.718750, 10.487812 ], [ -72.158203, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.188870 ], [ -71.103516, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.455078, 11.005904 ], [ -70.224609, 11.436955 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.996094, 10.141932 ], [ -61.787109, 10.055403 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.919618 ], [ -60.996094, 10.141932 ], [ -61.787109, 10.055403 ], [ -61.962891, 10.141932 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.833306 ], [ -60.908203, 10.919618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, 8.059230 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.216797, 6.053161 ], [ -57.392578, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.919922, 4.653080 ], [ -58.095703, 4.127285 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.216797, 2.811371 ], [ -56.601562, 1.933227 ], [ -57.392578, 2.021065 ], [ -57.744141, 1.757537 ], [ -58.447266, 1.493971 ], [ -58.623047, 1.318243 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.845384 ], [ -60.029297, 2.811371 ], [ -59.853516, 3.688855 ], [ -59.589844, 4.039618 ], [ -59.853516, 4.477856 ], [ -60.117188, 4.653080 ], [ -60.029297, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.820312, 5.266008 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.315299 ], [ -61.171875, 6.751896 ], [ -60.380859, 7.100893 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ], [ -59.150391, 8.059230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.150391, 8.059230 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.216797, 6.053161 ], [ -57.392578, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.919922, 4.653080 ], [ -58.095703, 4.127285 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.216797, 2.811371 ], [ -56.601562, 1.933227 ], [ -57.392578, 2.021065 ], [ -57.744141, 1.757537 ], [ -58.447266, 1.493971 ], [ -58.623047, 1.318243 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.845384 ], [ -60.029297, 2.811371 ], [ -59.853516, 3.688855 ], [ -59.589844, 4.039618 ], [ -59.853516, 4.477856 ], [ -60.117188, 4.653080 ], [ -60.029297, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.820312, 5.266008 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.315299 ], [ -61.171875, 6.751896 ], [ -60.380859, 7.100893 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -55.107422, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.108899 ], [ -56.074219, 1.845384 ], [ -56.601562, 1.933227 ], [ -57.216797, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -58.095703, 4.127285 ], [ -57.919922, 4.653080 ], [ -57.919922, 4.828260 ], [ -57.392578, 5.090944 ], [ -57.216797, 6.053161 ], [ -55.986328, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.107422, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.107422, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.052734, 3.688855 ], [ -54.580078, 2.372369 ], [ -55.107422, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.108899 ], [ -56.074219, 1.845384 ], [ -56.601562, 1.933227 ], [ -57.216797, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -58.095703, 4.127285 ], [ -57.919922, 4.653080 ], [ -57.919922, 4.828260 ], [ -57.392578, 5.090944 ], [ -57.216797, 6.053161 ], [ -55.986328, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.107422, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.548263 ], [ -14.589844, 66.478208 ], [ -14.765625, 65.838776 ], [ -13.623047, 65.146115 ], [ -14.941406, 64.396938 ], [ -18.720703, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.434892 ], [ -23.994141, 64.923542 ], [ -22.236328, 65.109148 ], [ -22.236328, 65.403445 ], [ -24.345703, 65.622023 ], [ -23.730469, 66.266856 ], [ -22.148438, 66.443107 ], [ -20.654297, 65.766727 ], [ -19.072266, 66.302205 ], [ -17.841797, 66.018018 ], [ -16.171875, 66.548263 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.622978 ], [ -7.646484, 54.110943 ], [ -7.031250, 54.110943 ], [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ], [ -7.382812, 54.622978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.646484, 55.178868 ], [ -7.382812, 54.622978 ], [ -7.646484, 54.110943 ], [ -7.031250, 54.110943 ], [ -6.240234, 53.904338 ], [ -6.064453, 53.173119 ], [ -6.855469, 52.268157 ], [ -8.613281, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.228516, 52.908902 ], [ -9.755859, 53.904338 ], [ -7.646484, 55.178868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.130859, 57.562995 ], [ -3.076172, 57.704147 ], [ -2.021484, 57.704147 ], [ -2.285156, 56.897004 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.673831 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 1.494141, 52.106505 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.548828, 50.513427 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -4.394531, 51.234407 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -5.712891, 56.316537 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.844751 ], [ -5.097656, 58.631217 ], [ -4.218750, 58.585436 ], [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ] ] ], [ [ [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ], [ -7.031250, 54.110943 ], [ -7.646484, 54.110943 ], [ -7.382812, 54.622978 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 58.676938 ], [ -4.130859, 57.562995 ], [ -3.076172, 57.704147 ], [ -2.021484, 57.704147 ], [ -2.285156, 56.897004 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.673831 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.961875 ], [ 1.669922, 52.749594 ], [ 1.494141, 52.106505 ], [ 0.966797, 51.835778 ], [ 1.406250, 51.344339 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.548828, 50.513427 ], [ -2.988281, 50.736455 ], [ -3.691406, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 50.007739 ], [ -5.800781, 50.176898 ], [ -4.394531, 51.234407 ], [ -3.427734, 51.454007 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.306641, 52.321911 ], [ -4.833984, 52.855864 ], [ -4.658203, 53.540307 ], [ -3.164062, 53.435719 ], [ -2.988281, 54.007769 ], [ -3.691406, 54.622978 ], [ -4.921875, 54.826008 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.097656, 55.825973 ], [ -5.625000, 55.329144 ], [ -5.712891, 56.316537 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.844751 ], [ -5.097656, 58.631217 ], [ -4.218750, 58.585436 ], [ -3.076172, 58.676938 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.712891, 54.572062 ], [ -6.240234, 53.904338 ], [ -7.031250, 54.110943 ], [ -7.646484, 54.110943 ], [ -7.382812, 54.622978 ], [ -7.646484, 55.178868 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.653080 ], [ -51.679688, 4.214943 ], [ -52.558594, 2.547988 ], [ -52.998047, 2.196727 ], [ -53.437500, 2.108899 ], [ -53.613281, 2.372369 ], [ -53.789062, 2.460181 ], [ -54.140625, 2.108899 ], [ -54.580078, 2.372369 ], [ -54.052734, 3.688855 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 8.701172, 42.682435 ], [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ] ] ], [ [ [ 2.636719, 50.847573 ], [ 3.076172, 50.792047 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 4.746094, 50.007739 ], [ 5.625000, 49.553726 ], [ 5.888672, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.591797, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.382812, 47.635784 ], [ 7.119141, 47.457809 ], [ 6.679688, 47.576526 ], [ 6.767578, 47.338823 ], [ 5.976562, 46.739861 ], [ 5.976562, 46.316584 ], [ 6.416016, 46.437857 ], [ 6.767578, 46.012224 ], [ 6.767578, 45.767523 ], [ 7.031250, 45.336702 ], [ 6.679688, 45.089036 ], [ 6.943359, 44.276671 ], [ 7.470703, 44.150681 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 1.757812, 42.358544 ], [ 0.615234, 42.811522 ], [ 0.263672, 42.617791 ], [ -1.582031, 43.068888 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.285156, 47.100045 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.636719, 50.847573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.653080 ], [ -51.679688, 4.214943 ], [ -52.558594, 2.547988 ], [ -52.998047, 2.196727 ], [ -53.437500, 2.108899 ], [ -53.613281, 2.372369 ], [ -53.789062, 2.460181 ], [ -54.140625, 2.108899 ], [ -54.580078, 2.372369 ], [ -54.052734, 3.688855 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 9.316406, 43.068888 ], [ 9.492188, 42.163403 ], [ 9.228516, 41.442726 ], [ 8.701172, 41.640078 ], [ 8.525391, 42.293564 ], [ 8.701172, 42.682435 ], [ 9.316406, 43.068888 ] ] ], [ [ [ 2.460938, 51.179343 ], [ 2.636719, 50.847573 ], [ 3.076172, 50.792047 ], [ 3.515625, 50.401515 ], [ 4.218750, 49.951220 ], [ 4.746094, 50.007739 ], [ 5.625000, 49.553726 ], [ 5.888672, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.591797, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.382812, 47.635784 ], [ 7.119141, 47.457809 ], [ 6.679688, 47.576526 ], [ 6.767578, 47.338823 ], [ 5.976562, 46.739861 ], [ 5.976562, 46.316584 ], [ 6.416016, 46.437857 ], [ 6.767578, 46.012224 ], [ 6.767578, 45.767523 ], [ 7.031250, 45.336702 ], [ 6.679688, 45.089036 ], [ 6.943359, 44.276671 ], [ 7.470703, 44.150681 ], [ 7.382812, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.482422, 43.452919 ], [ 3.076172, 43.133061 ], [ 2.900391, 42.488302 ], [ 1.757812, 42.358544 ], [ 0.615234, 42.811522 ], [ 0.263672, 42.617791 ], [ -1.582031, 43.068888 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.073231 ], [ -2.285156, 47.100045 ], [ -2.988281, 47.576526 ], [ -4.570312, 47.989922 ], [ -4.658203, 48.690960 ], [ -3.339844, 48.922499 ], [ -1.669922, 48.690960 ], [ -1.933594, 49.781264 ], [ -1.054688, 49.382373 ], [ 1.318359, 50.176898 ], [ 1.582031, 50.958427 ], [ 2.460938, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 23.402765 ], [ -12.919922, 23.322080 ], [ -13.183594, 22.836946 ], [ -13.007812, 21.371244 ], [ -16.875000, 21.371244 ], [ -17.138672, 21.043491 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.677734, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.974609, 23.725012 ], [ -12.568359, 24.846565 ], [ -12.041016, 25.958045 ], [ -11.953125, 23.402765 ] ] ], [ [ [ -11.777344, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.634766, 27.059126 ], [ -9.755859, 26.902477 ], [ -9.492188, 27.137368 ], [ -8.876953, 27.137368 ], [ -8.876953, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.958045 ], [ -12.041016, 25.958045 ], [ -12.041016, 26.037042 ], [ -11.777344, 26.115986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.041016, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.919922, 23.322080 ], [ -13.183594, 22.836946 ], [ -13.007812, 21.371244 ], [ -16.875000, 21.371244 ], [ -17.138672, 21.043491 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.677734, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.974609, 23.725012 ], [ -12.568359, 24.846565 ], [ -12.041016, 25.958045 ] ] ], [ [ [ -12.041016, 25.958045 ], [ -12.041016, 26.037042 ], [ -11.777344, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.634766, 27.059126 ], [ -9.755859, 26.902477 ], [ -9.492188, 27.137368 ], [ -8.876953, 27.137368 ], [ -8.876953, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.958045 ], [ -12.041016, 25.958045 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 41.836828 ], [ -7.470703, 41.836828 ], [ -7.294922, 41.967659 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.442726 ], [ -6.855469, 41.112469 ], [ -6.943359, 40.380028 ], [ -7.031250, 40.245992 ], [ -7.119141, 39.774769 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.095963 ], [ -7.382812, 38.410558 ], [ -7.031250, 38.134557 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.160317 ], [ -7.910156, 36.879621 ], [ -8.437500, 37.020098 ], [ -8.964844, 36.879621 ], [ -8.789062, 37.718590 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.580078, 38.754083 ], [ -9.492188, 39.436193 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.349609, 42.293564 ], [ -8.085938, 41.836828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.349609, 42.293564 ], [ -8.085938, 41.836828 ], [ -7.470703, 41.836828 ], [ -7.294922, 41.967659 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.442726 ], [ -6.855469, 41.112469 ], [ -6.943359, 40.380028 ], [ -7.031250, 40.245992 ], [ -7.119141, 39.774769 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.095963 ], [ -7.382812, 38.410558 ], [ -7.031250, 38.134557 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.160317 ], [ -7.910156, 36.879621 ], [ -8.437500, 37.020098 ], [ -8.964844, 36.879621 ], [ -8.789062, 37.718590 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.580078, 38.754083 ], [ -9.492188, 39.436193 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.349609, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.582031, 43.068888 ], [ 0.263672, 42.617791 ], [ 0.615234, 42.811522 ], [ 1.757812, 42.358544 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 2.021484, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.713956 ], [ 0.087891, 40.178873 ], [ -0.351562, 39.368279 ], [ 0.087891, 38.754083 ], [ -0.527344, 38.341656 ], [ -0.703125, 37.649034 ], [ -1.494141, 37.509726 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.009766, 36.385913 ], [ -5.449219, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.382812, 38.410558 ], [ -7.119141, 39.095963 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.774769 ], [ -7.031250, 40.245992 ], [ -6.943359, 40.380028 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.967659 ], [ -7.470703, 41.836828 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.582031, 43.068888 ], [ 0.263672, 42.617791 ], [ 0.615234, 42.811522 ], [ 1.757812, 42.358544 ], [ 2.900391, 42.488302 ], [ 2.988281, 41.902277 ], [ 2.021484, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.713956 ], [ 0.087891, 40.178873 ], [ -0.351562, 39.368279 ], [ 0.087891, 38.754083 ], [ -0.527344, 38.341656 ], [ -0.703125, 37.649034 ], [ -1.494141, 37.509726 ], [ -2.197266, 36.738884 ], [ -4.394531, 36.738884 ], [ -5.009766, 36.385913 ], [ -5.449219, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.382812, 38.410558 ], [ -7.119141, 39.095963 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.774769 ], [ -7.031250, 40.245992 ], [ -6.943359, 40.380028 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.967659 ], [ -7.470703, 41.836828 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.658203, 35.389050 ], [ -3.691406, 35.460670 ], [ -2.197266, 35.173808 ], [ -1.845703, 34.597042 ], [ -1.406250, 32.916485 ], [ -1.142578, 32.694866 ], [ -1.318359, 32.324276 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.921875, 30.524413 ], [ -5.273438, 30.069094 ], [ -7.119141, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.876953, 27.683528 ], [ -8.876953, 27.137368 ], [ -9.492188, 27.137368 ], [ -9.755859, 26.902477 ], [ -10.634766, 27.059126 ], [ -11.425781, 26.902477 ], [ -11.777344, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.568359, 24.846565 ], [ -13.974609, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.677734, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.611328, 22.187405 ], [ -16.347656, 22.755921 ], [ -16.347656, 23.079732 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.165173 ], [ -14.853516, 25.641526 ], [ -14.501953, 26.273714 ], [ -13.798828, 26.667096 ], [ -13.183594, 27.683528 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.986328, 28.844674 ], [ -10.458984, 29.152161 ], [ -9.580078, 29.993002 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.620870 ], [ -8.701172, 33.284620 ], [ -6.943359, 34.161818 ], [ -5.976562, 35.817813 ], [ -5.273438, 35.817813 ], [ -4.658203, 35.389050 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.817813 ], [ -4.658203, 35.389050 ], [ -3.691406, 35.460670 ], [ -2.197266, 35.173808 ], [ -1.845703, 34.597042 ], [ -1.406250, 32.916485 ], [ -1.142578, 32.694866 ], [ -1.318359, 32.324276 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.921875, 30.524413 ], [ -5.273438, 30.069094 ], [ -7.119141, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.876953, 27.683528 ], [ -8.876953, 27.137368 ], [ -9.492188, 27.137368 ], [ -9.755859, 26.902477 ], [ -10.634766, 27.059126 ], [ -11.425781, 26.902477 ], [ -11.777344, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.568359, 24.846565 ], [ -13.974609, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.677734, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.611328, 22.187405 ], [ -16.347656, 22.755921 ], [ -16.347656, 23.079732 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.165173 ], [ -14.853516, 25.641526 ], [ -14.501953, 26.273714 ], [ -13.798828, 26.667096 ], [ -13.183594, 27.683528 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.986328, 28.844674 ], [ -10.458984, 29.152161 ], [ -9.580078, 29.993002 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.620870 ], [ -8.701172, 33.284620 ], [ -6.943359, 34.161818 ], [ -5.976562, 35.817813 ], [ -5.273438, 35.817813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.447266, 16.045813 ], [ -12.216797, 14.689881 ], [ -11.953125, 13.496473 ], [ -11.601562, 13.154376 ], [ -11.601562, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.568359, 12.382928 ], [ -13.271484, 12.640338 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.468760 ], [ -16.875000, 13.154376 ], [ -15.996094, 13.154376 ], [ -15.205078, 13.581921 ], [ -14.765625, 13.325485 ], [ -14.326172, 13.325485 ], [ -13.886719, 13.581921 ], [ -14.062500, 13.838080 ], [ -14.765625, 13.667338 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.644531, 13.667338 ], [ -16.787109, 13.667338 ], [ -17.138672, 14.434680 ], [ -17.666016, 14.774883 ], [ -17.226562, 14.944785 ], [ -16.523438, 16.214675 ], [ -16.171875, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.205078, 16.636192 ], [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ], [ -12.216797, 14.689881 ], [ -11.953125, 13.496473 ], [ -11.601562, 13.154376 ], [ -11.601562, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.568359, 12.382928 ], [ -13.271484, 12.640338 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.468760 ], [ -16.875000, 13.154376 ], [ -15.996094, 13.154376 ], [ -15.205078, 13.581921 ], [ -14.765625, 13.325485 ], [ -14.326172, 13.325485 ], [ -13.886719, 13.581921 ], [ -14.062500, 13.838080 ], [ -14.765625, 13.667338 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.644531, 13.667338 ], [ -16.787109, 13.667338 ], [ -17.138672, 14.434680 ], [ -17.666016, 14.774883 ], [ -17.226562, 14.944785 ], [ -16.523438, 16.214675 ], [ -16.171875, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.205078, 16.636192 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.765625, 13.667338 ], [ -14.062500, 13.838080 ], [ -13.886719, 13.581921 ], [ -14.326172, 13.325485 ], [ -14.765625, 13.325485 ], [ -15.205078, 13.581921 ], [ -15.996094, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.787109, 13.667338 ], [ -15.644531, 13.667338 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ], [ -14.765625, 13.667338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -14.765625, 13.667338 ], [ -14.062500, 13.838080 ], [ -13.886719, 13.581921 ], [ -14.326172, 13.325485 ], [ -14.765625, 13.325485 ], [ -15.205078, 13.581921 ], [ -15.996094, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.787109, 13.667338 ], [ -15.644531, 13.667338 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.886719, 12.211180 ], [ -13.798828, 11.867351 ], [ -14.414062, 11.523088 ], [ -14.765625, 11.609193 ], [ -15.205078, 11.092166 ], [ -15.732422, 11.523088 ], [ -16.171875, 11.609193 ], [ -16.699219, 12.468760 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.640338 ], [ -13.886719, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.640338 ], [ -13.886719, 12.211180 ], [ -13.798828, 11.867351 ], [ -14.414062, 11.523088 ], [ -14.765625, 11.609193 ], [ -15.205078, 11.092166 ], [ -15.732422, 11.523088 ], [ -16.171875, 11.609193 ], [ -16.699219, 12.468760 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.568359, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.601562, 12.468760 ], [ -11.513672, 12.125264 ], [ -11.074219, 12.297068 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.404297, 12.382928 ], [ -9.140625, 12.382928 ], [ -8.437500, 11.436955 ], [ -8.613281, 11.178402 ], [ -8.701172, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.349609, 10.833306 ], [ -8.349609, 10.574222 ], [ -8.085938, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -7.910156, 8.581021 ], [ -8.349609, 8.320212 ], [ -8.349609, 7.710992 ], [ -8.525391, 7.710992 ], [ -8.789062, 7.798079 ], [ -8.964844, 7.362467 ], [ -9.228516, 7.362467 ], [ -9.404297, 7.536764 ], [ -9.404297, 7.972198 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.407168 ], [ -10.634766, 9.275622 ], [ -11.162109, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.216797, 9.882275 ], [ -12.480469, 9.882275 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -14.150391, 9.968851 ], [ -14.589844, 10.228437 ], [ -14.765625, 10.660608 ], [ -15.205078, 11.092166 ], [ -14.765625, 11.609193 ], [ -14.414062, 11.523088 ], [ -13.798828, 11.867351 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.640338 ], [ -13.271484, 12.640338 ], [ -12.568359, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.271484, 12.640338 ], [ -12.568359, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.601562, 12.468760 ], [ -11.513672, 12.125264 ], [ -11.074219, 12.297068 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.404297, 12.382928 ], [ -9.140625, 12.382928 ], [ -8.437500, 11.436955 ], [ -8.613281, 11.178402 ], [ -8.701172, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.349609, 10.833306 ], [ -8.349609, 10.574222 ], [ -8.085938, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -7.910156, 8.581021 ], [ -8.349609, 8.320212 ], [ -8.349609, 7.710992 ], [ -8.525391, 7.710992 ], [ -8.789062, 7.798079 ], [ -8.964844, 7.362467 ], [ -9.228516, 7.362467 ], [ -9.404297, 7.536764 ], [ -9.404297, 7.972198 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.407168 ], [ -10.634766, 9.275622 ], [ -11.162109, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.216797, 9.882275 ], [ -12.480469, 9.882275 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -14.150391, 9.968851 ], [ -14.589844, 10.228437 ], [ -14.765625, 10.660608 ], [ -15.205078, 11.092166 ], [ -14.765625, 11.609193 ], [ -14.414062, 11.523088 ], [ -13.798828, 11.867351 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.640338 ], [ -13.271484, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.634766, 9.275622 ], [ -10.546875, 8.407168 ], [ -10.283203, 8.407168 ], [ -11.162109, 7.449624 ], [ -11.513672, 6.839170 ], [ -12.480469, 7.275292 ], [ -13.007812, 7.885147 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.480469, 9.882275 ], [ -12.216797, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.162109, 10.055403 ], [ -10.634766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.162109, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.546875, 8.407168 ], [ -10.283203, 8.407168 ], [ -11.162109, 7.449624 ], [ -11.513672, 6.839170 ], [ -12.480469, 7.275292 ], [ -13.007812, 7.885147 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.480469, 9.882275 ], [ -12.216797, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.162109, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.005973 ], [ -6.503906, 25.005973 ], [ -5.537109, 16.383391 ], [ -5.361328, 16.214675 ], [ -5.625000, 15.538376 ], [ -9.580078, 15.538376 ], [ -9.755859, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.722656, 15.199386 ], [ -11.425781, 15.453680 ], [ -11.689453, 15.453680 ], [ -11.865234, 14.859850 ], [ -12.216797, 14.689881 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -15.205078, 16.636192 ], [ -15.644531, 16.383391 ], [ -16.171875, 16.467695 ], [ -16.523438, 16.214675 ], [ -16.611328, 16.720385 ], [ -16.347656, 17.224758 ], [ -16.171875, 18.145852 ], [ -16.435547, 19.642588 ], [ -16.347656, 20.138470 ], [ -16.611328, 20.632784 ], [ -17.138672, 21.043491 ], [ -16.875000, 21.371244 ], [ -13.007812, 21.371244 ], [ -13.183594, 22.836946 ], [ -12.919922, 23.322080 ], [ -11.953125, 23.402765 ], [ -12.041016, 25.958045 ], [ -8.701172, 25.958045 ], [ -8.701172, 27.449790 ], [ -5.009766, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.449790 ], [ -5.009766, 25.005973 ], [ -6.503906, 25.005973 ], [ -5.537109, 16.383391 ], [ -5.361328, 16.214675 ], [ -5.625000, 15.538376 ], [ -9.580078, 15.538376 ], [ -9.755859, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.722656, 15.199386 ], [ -11.425781, 15.453680 ], [ -11.689453, 15.453680 ], [ -11.865234, 14.859850 ], [ -12.216797, 14.689881 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -15.205078, 16.636192 ], [ -15.644531, 16.383391 ], [ -16.171875, 16.467695 ], [ -16.523438, 16.214675 ], [ -16.611328, 16.720385 ], [ -16.347656, 17.224758 ], [ -16.171875, 18.145852 ], [ -16.435547, 19.642588 ], [ -16.347656, 20.138470 ], [ -16.611328, 20.632784 ], [ -17.138672, 21.043491 ], [ -16.875000, 21.371244 ], [ -13.007812, 21.371244 ], [ -13.183594, 22.836946 ], [ -12.919922, 23.322080 ], [ -11.953125, 23.402765 ], [ -12.041016, 25.958045 ], [ -8.701172, 25.958045 ], [ -8.701172, 27.449790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 20.632784 ], [ 2.021484, 20.220966 ], [ 3.076172, 19.725342 ], [ 3.076172, 19.062118 ], [ 4.218750, 19.228177 ], [ 4.218750, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.623037 ], [ 1.318359, 15.368950 ], [ 0.966797, 15.029686 ], [ -0.351562, 14.944785 ], [ -0.527344, 15.199386 ], [ -1.142578, 15.029686 ], [ -2.021484, 14.604847 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.164062, 13.581921 ], [ -3.603516, 13.410994 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.482422, 12.554564 ], [ -5.273438, 11.781325 ], [ -5.273438, 11.436955 ], [ -5.537109, 11.005904 ], [ -5.449219, 10.401378 ], [ -6.064453, 10.141932 ], [ -6.240234, 10.574222 ], [ -6.679688, 10.487812 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.228437 ], [ -7.910156, 10.314919 ], [ -8.085938, 10.228437 ], [ -8.349609, 10.574222 ], [ -8.349609, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.701172, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.436955 ], [ -9.140625, 12.382928 ], [ -9.404297, 12.382928 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -11.074219, 12.297068 ], [ -11.513672, 12.125264 ], [ -11.601562, 13.154376 ], [ -11.953125, 13.496473 ], [ -12.216797, 14.689881 ], [ -11.865234, 14.859850 ], [ -11.689453, 15.453680 ], [ -11.425781, 15.453680 ], [ -10.722656, 15.199386 ], [ -10.107422, 15.368950 ], [ -9.755859, 15.284185 ], [ -9.580078, 15.538376 ], [ -5.625000, 15.538376 ], [ -5.361328, 16.214675 ], [ -5.537109, 16.383391 ], [ -6.503906, 25.005973 ], [ -5.009766, 25.005973 ], [ 1.757812, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.009766, 25.005973 ], [ 1.757812, 20.632784 ], [ 2.021484, 20.220966 ], [ 3.076172, 19.725342 ], [ 3.076172, 19.062118 ], [ 4.218750, 19.228177 ], [ 4.218750, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.623037 ], [ 1.318359, 15.368950 ], [ 0.966797, 15.029686 ], [ -0.351562, 14.944785 ], [ -0.527344, 15.199386 ], [ -1.142578, 15.029686 ], [ -2.021484, 14.604847 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.164062, 13.581921 ], [ -3.603516, 13.410994 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.482422, 12.554564 ], [ -5.273438, 11.781325 ], [ -5.273438, 11.436955 ], [ -5.537109, 11.005904 ], [ -5.449219, 10.401378 ], [ -6.064453, 10.141932 ], [ -6.240234, 10.574222 ], [ -6.679688, 10.487812 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.228437 ], [ -7.910156, 10.314919 ], [ -8.085938, 10.228437 ], [ -8.349609, 10.574222 ], [ -8.349609, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.701172, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.436955 ], [ -9.140625, 12.382928 ], [ -9.404297, 12.382928 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -11.074219, 12.297068 ], [ -11.513672, 12.125264 ], [ -11.601562, 13.154376 ], [ -11.953125, 13.496473 ], [ -12.216797, 14.689881 ], [ -11.865234, 14.859850 ], [ -11.689453, 15.453680 ], [ -11.425781, 15.453680 ], [ -10.722656, 15.199386 ], [ -10.107422, 15.368950 ], [ -9.755859, 15.284185 ], [ -9.580078, 15.538376 ], [ -5.625000, 15.538376 ], [ -5.361328, 16.214675 ], [ -5.537109, 16.383391 ], [ -6.503906, 25.005973 ], [ -5.009766, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.351562, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.008696 ], [ 0.966797, 13.410994 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.609193 ], [ 1.230469, 11.178402 ], [ 0.878906, 11.005904 ], [ -0.439453, 11.178402 ], [ -0.791016, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -3.515625, 9.968851 ], [ -4.042969, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.833984, 9.882275 ], [ -5.009766, 10.228437 ], [ -5.449219, 10.401378 ], [ -5.537109, 11.005904 ], [ -5.273438, 11.436955 ], [ -5.273438, 11.781325 ], [ -4.482422, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.603516, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.604847 ], [ -1.142578, 15.029686 ], [ -0.527344, 15.199386 ], [ -0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.199386 ], [ -0.351562, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.008696 ], [ 0.966797, 13.410994 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.609193 ], [ 1.230469, 11.178402 ], [ 0.878906, 11.005904 ], [ -0.439453, 11.178402 ], [ -0.791016, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -3.515625, 9.968851 ], [ -4.042969, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.833984, 9.882275 ], [ -5.009766, 10.228437 ], [ -5.449219, 10.401378 ], [ -5.537109, 11.005904 ], [ -5.273438, 11.436955 ], [ -5.273438, 11.781325 ], [ -4.482422, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.603516, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.604847 ], [ -1.142578, 15.029686 ], [ -0.527344, 15.199386 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.404297, 7.972198 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.789062, 7.798079 ], [ -8.525391, 7.710992 ], [ -8.437500, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.646484, 5.790897 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.052734, 4.915833 ], [ -11.513672, 6.839170 ], [ -11.162109, 7.449624 ], [ -10.283203, 8.407168 ], [ -9.755859, 8.581021 ], [ -9.404297, 7.972198 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.404297, 7.972198 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.789062, 7.798079 ], [ -8.525391, 7.710992 ], [ -8.437500, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.646484, 5.790897 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.052734, 4.915833 ], [ -11.513672, 6.839170 ], [ -11.162109, 7.449624 ], [ -10.283203, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.141932 ], [ -5.449219, 10.401378 ], [ -5.009766, 10.228437 ], [ -4.833984, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.042969, 9.882275 ], [ -3.515625, 9.968851 ], [ -2.900391, 9.709057 ], [ -2.636719, 8.233237 ], [ -2.988281, 7.449624 ], [ -3.251953, 6.315299 ], [ -2.812500, 5.441022 ], [ -2.900391, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.888672, 5.003394 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.790897 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.437500, 6.926427 ], [ -8.525391, 7.449624 ], [ -8.525391, 7.710992 ], [ -8.349609, 7.710992 ], [ -8.349609, 8.320212 ], [ -7.910156, 8.581021 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.228437 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.240234, 10.574222 ], [ -6.064453, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.574222 ], [ -6.064453, 10.141932 ], [ -5.449219, 10.401378 ], [ -5.009766, 10.228437 ], [ -4.833984, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.042969, 9.882275 ], [ -3.515625, 9.968851 ], [ -2.900391, 9.709057 ], [ -2.636719, 8.233237 ], [ -2.988281, 7.449624 ], [ -3.251953, 6.315299 ], [ -2.812500, 5.441022 ], [ -2.900391, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.888672, 5.003394 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.790897 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.437500, 6.926427 ], [ -8.525391, 7.449624 ], [ -8.525391, 7.710992 ], [ -8.349609, 7.710992 ], [ -8.349609, 8.320212 ], [ -7.910156, 8.581021 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.228437 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.240234, 10.574222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.092166 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.754795 ], [ 0.703125, 8.320212 ], [ 0.439453, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -2.021484, 4.740675 ], [ -2.900391, 5.003394 ], [ -2.812500, 5.441022 ], [ -3.251953, 6.315299 ], [ -2.988281, 7.449624 ], [ -2.636719, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.988281, 11.005904 ], [ -0.791016, 11.005904 ], [ -0.439453, 11.178402 ], [ 0.000000, 11.092166 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.178402 ], [ 0.000000, 11.092166 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.754795 ], [ 0.703125, 8.320212 ], [ 0.439453, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -2.021484, 4.740675 ], [ -2.900391, 5.003394 ], [ -2.812500, 5.441022 ], [ -3.251953, 6.315299 ], [ -2.988281, 7.449624 ], [ -2.636719, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.988281, 11.005904 ], [ -0.791016, 11.005904 ], [ -0.439453, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -80.332031, -3.337954 ], [ -79.804688, -2.635789 ], [ -80.068359, -2.196727 ], [ -80.419922, -2.635789 ], [ -81.035156, -2.196727 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.179688, -0.966751 ], [ -73.740234, -1.230374 ], [ -73.125000, -2.284551 ], [ -72.333984, -2.372369 ], [ -71.806641, -2.108899 ], [ -71.455078, -2.284551 ], [ -70.839844, -2.196727 ], [ -70.048828, -2.723583 ], [ -70.751953, -3.688855 ], [ -70.400391, -3.688855 ], [ -69.960938, -4.214943 ], [ -70.839844, -4.214943 ], [ -71.015625, -4.390229 ], [ -71.806641, -4.565474 ], [ -72.949219, -5.266008 ], [ -73.037109, -5.703448 ], [ -73.300781, -6.053161 ], [ -73.125000, -6.577303 ], [ -73.740234, -6.839170 ], [ -73.740234, -7.275292 ], [ -74.003906, -7.449624 ], [ -73.652344, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.300781, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.246094, -9.968851 ], [ -71.367188, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.609375, -10.919618 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.994141, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.455078, -17.727759 ], [ -71.542969, -17.308688 ], [ -73.476562, -16.299051 ], [ -76.025391, -14.604847 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.496473 ], [ -77.167969, -12.211180 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -80.947266, -5.615986 ], [ -81.474609, -4.653080 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -80.244141, -3.776559 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.390229 ], [ -79.277344, -4.915833 ], [ -78.662109, -4.477856 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.547988 ], [ -75.585938, -1.493971 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.087891 ], [ -75.146484, 0.000000 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, 0.000000 ], [ -74.443359, -0.527336 ], [ -74.179688, -0.966751 ], [ -73.740234, -1.230374 ], [ -73.125000, -2.284551 ], [ -72.333984, -2.372369 ], [ -71.806641, -2.108899 ], [ -71.455078, -2.284551 ], [ -70.839844, -2.196727 ], [ -70.048828, -2.723583 ], [ -70.751953, -3.688855 ], [ -70.400391, -3.688855 ], [ -69.960938, -4.214943 ], [ -70.839844, -4.214943 ], [ -71.015625, -4.390229 ], [ -71.806641, -4.565474 ], [ -72.949219, -5.266008 ], [ -73.037109, -5.703448 ], [ -73.300781, -6.053161 ], [ -73.125000, -6.577303 ], [ -73.740234, -6.839170 ], [ -73.740234, -7.275292 ], [ -74.003906, -7.449624 ], [ -73.652344, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.300781, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.246094, -9.968851 ], [ -71.367188, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.609375, -10.919618 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.994141, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.455078, -17.727759 ], [ -71.542969, -17.308688 ], [ -73.476562, -16.299051 ], [ -76.025391, -14.604847 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.496473 ], [ -77.167969, -12.211180 ], [ -79.804688, -7.188101 ], [ -81.298828, -6.053161 ], [ -80.947266, -5.615986 ], [ -81.474609, -4.653080 ], [ -81.123047, -3.951941 ], [ -80.332031, -3.337954 ], [ -80.244141, -3.776559 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.390229 ], [ -79.277344, -4.915833 ], [ -78.662109, -4.477856 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.547988 ], [ -75.585938, -1.493971 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.087891 ], [ -75.146484, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.589701 ], [ -68.642578, -54.826008 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.203125, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.028022 ], [ -73.300781, -53.956086 ], [ -74.707031, -52.802761 ], [ -73.916016, -53.014783 ], [ -72.509766, -53.696706 ], [ -71.191406, -54.059388 ], [ -70.664062, -53.592505 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -69.169922, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.818359, -20.303418 ], [ -68.291016, -21.453069 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.674847 ], [ -67.060547, -22.917923 ], [ -67.412109, -23.966176 ], [ -68.466797, -24.447150 ], [ -68.466797, -26.115986 ], [ -68.642578, -26.431228 ], [ -68.378906, -26.824071 ], [ -69.082031, -27.449790 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.305561 ], [ -69.960938, -30.297018 ], [ -70.576172, -31.353637 ], [ -70.136719, -33.063924 ], [ -69.873047, -33.211116 ], [ -69.873047, -34.161818 ], [ -70.400391, -35.101934 ], [ -70.400391, -35.960223 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.509726 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.982422, -40.780541 ], [ -71.806641, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.982422, -43.389082 ], [ -71.542969, -43.771094 ], [ -71.806641, -44.150681 ], [ -71.367188, -44.402392 ], [ -71.279297, -44.777936 ], [ -71.718750, -44.964798 ], [ -71.630859, -45.521744 ], [ -71.982422, -46.860191 ], [ -72.509766, -47.694974 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.476562, -49.267805 ], [ -73.388672, -50.345460 ], [ -73.037109, -50.736455 ], [ -72.333984, -50.625073 ], [ -72.333984, -51.399206 ], [ -71.982422, -51.998410 ], [ -69.521484, -52.106505 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.488046 ], [ -73.740234, -52.802761 ], [ -74.970703, -52.214339 ], [ -75.322266, -51.618017 ], [ -75.058594, -51.013755 ], [ -75.498047, -50.345460 ], [ -75.673828, -48.632909 ], [ -75.234375, -47.694974 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.740234, -39.909736 ], [ -73.300781, -39.232253 ], [ -73.564453, -38.272689 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.894531, -33.870416 ], [ -71.455078, -32.398516 ], [ -71.718750, -30.902225 ], [ -71.455078, -30.069094 ], [ -71.542969, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ], [ -69.169922, -18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.482780 ], [ -68.642578, -52.589701 ], [ -68.642578, -54.826008 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.203125, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.028022 ], [ -73.300781, -53.956086 ], [ -74.707031, -52.802761 ], [ -73.916016, -53.014783 ], [ -72.509766, -53.696706 ], [ -71.191406, -54.059388 ], [ -70.664062, -53.592505 ], [ -70.312500, -52.908902 ], [ -69.345703, -52.482780 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.169922, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.818359, -20.303418 ], [ -68.291016, -21.453069 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.674847 ], [ -67.060547, -22.917923 ], [ -67.412109, -23.966176 ], [ -68.466797, -24.447150 ], [ -68.466797, -26.115986 ], [ -68.642578, -26.431228 ], [ -68.378906, -26.824071 ], [ -69.082031, -27.449790 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.305561 ], [ -69.960938, -30.297018 ], [ -70.576172, -31.353637 ], [ -70.136719, -33.063924 ], [ -69.873047, -33.211116 ], [ -69.873047, -34.161818 ], [ -70.400391, -35.101934 ], [ -70.400391, -35.960223 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.509726 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.982422, -40.780541 ], [ -71.806641, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.982422, -43.389082 ], [ -71.542969, -43.771094 ], [ -71.806641, -44.150681 ], [ -71.367188, -44.402392 ], [ -71.279297, -44.777936 ], [ -71.718750, -44.964798 ], [ -71.630859, -45.521744 ], [ -71.982422, -46.860191 ], [ -72.509766, -47.694974 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.476562, -49.267805 ], [ -73.388672, -50.345460 ], [ -73.037109, -50.736455 ], [ -72.333984, -50.625073 ], [ -72.333984, -51.399206 ], [ -71.982422, -51.998410 ], [ -69.521484, -52.106505 ], [ -68.642578, -52.268157 ], [ -69.521484, -52.268157 ], [ -70.927734, -52.855864 ], [ -71.015625, -53.800651 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.488046 ], [ -73.740234, -52.802761 ], [ -74.970703, -52.214339 ], [ -75.322266, -51.618017 ], [ -75.058594, -51.013755 ], [ -75.498047, -50.345460 ], [ -75.673828, -48.632909 ], [ -75.234375, -47.694974 ], [ -74.179688, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.706179 ], [ -74.355469, -44.087585 ], [ -73.300781, -44.402392 ], [ -72.773438, -42.358544 ], [ -73.476562, -42.098222 ], [ -73.740234, -43.325178 ], [ -74.355469, -43.197167 ], [ -73.740234, -39.909736 ], [ -73.300781, -39.232253 ], [ -73.564453, -38.272689 ], [ -73.652344, -37.090240 ], [ -73.212891, -37.090240 ], [ -71.894531, -33.870416 ], [ -71.455078, -32.398516 ], [ -71.718750, -30.902225 ], [ -71.455078, -30.069094 ], [ -71.542969, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.136719, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478516, -11.523088 ], [ -64.335938, -12.382928 ], [ -63.281250, -12.554564 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.154376 ], [ -61.787109, -13.410994 ], [ -61.171875, -13.410994 ], [ -60.556641, -13.752725 ], [ -60.292969, -15.029686 ], [ -60.556641, -15.029686 ], [ -60.205078, -16.214675 ], [ -58.271484, -16.299051 ], [ -58.447266, -16.804541 ], [ -58.359375, -17.224758 ], [ -57.744141, -17.476432 ], [ -57.568359, -18.145852 ], [ -57.744141, -18.895893 ], [ -58.007812, -19.394068 ], [ -57.919922, -19.890723 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -59.150391, -19.311143 ], [ -60.117188, -19.311143 ], [ -61.787109, -19.559790 ], [ -62.314453, -20.468189 ], [ -62.314453, -21.043491 ], [ -62.753906, -22.187405 ], [ -62.929688, -22.024546 ], [ -64.072266, -21.943046 ], [ -64.423828, -22.755921 ], [ -65.039062, -22.024546 ], [ -66.357422, -21.779905 ], [ -67.148438, -22.674847 ], [ -67.851562, -22.836946 ], [ -68.291016, -21.453069 ], [ -68.818359, -20.303418 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.169922, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.994141, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.730469, -12.554564 ], [ -69.609375, -10.919618 ], [ -68.291016, -11.005904 ], [ -68.115234, -10.660608 ], [ -66.708984, -9.882275 ], [ -65.390625, -9.709057 ], [ -65.478516, -11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.709057 ], [ -65.478516, -11.523088 ], [ -64.335938, -12.382928 ], [ -63.281250, -12.554564 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.154376 ], [ -61.787109, -13.410994 ], [ -61.171875, -13.410994 ], [ -60.556641, -13.752725 ], [ -60.292969, -15.029686 ], [ -60.556641, -15.029686 ], [ -60.205078, -16.214675 ], [ -58.271484, -16.299051 ], [ -58.447266, -16.804541 ], [ -58.359375, -17.224758 ], [ -57.744141, -17.476432 ], [ -57.568359, -18.145852 ], [ -57.744141, -18.895893 ], [ -58.007812, -19.394068 ], [ -57.919922, -19.890723 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -59.150391, -19.311143 ], [ -60.117188, -19.311143 ], [ -61.787109, -19.559790 ], [ -62.314453, -20.468189 ], [ -62.314453, -21.043491 ], [ -62.753906, -22.187405 ], [ -62.929688, -22.024546 ], [ -64.072266, -21.943046 ], [ -64.423828, -22.755921 ], [ -65.039062, -22.024546 ], [ -66.357422, -21.779905 ], [ -67.148438, -22.674847 ], [ -67.851562, -22.836946 ], [ -68.291016, -21.453069 ], [ -68.818359, -20.303418 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.169922, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.994141, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.730469, -12.554564 ], [ -69.609375, -10.919618 ], [ -68.291016, -11.005904 ], [ -68.115234, -10.660608 ], [ -66.708984, -9.882275 ], [ -65.390625, -9.709057 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.029297, 5.090944 ], [ -60.117188, 4.653080 ], [ -59.853516, 4.477856 ], [ -59.589844, 4.039618 ], [ -59.853516, 3.688855 ], [ -60.029297, 2.811371 ], [ -59.677734, 1.845384 ], [ -59.062500, 1.318243 ], [ -58.623047, 1.318243 ], [ -58.447266, 1.493971 ], [ -57.744141, 1.757537 ], [ -57.392578, 2.021065 ], [ -56.074219, 1.845384 ], [ -55.986328, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.140625, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.613281, 2.372369 ], [ -53.437500, 2.108899 ], [ -52.998047, 2.196727 ], [ -52.558594, 2.547988 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.009766, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.472656, -2.108899 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.811371 ], [ -38.583984, -3.688855 ], [ -37.265625, -4.740675 ], [ -36.474609, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.244141, -5.441022 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.125264 ], [ -38.496094, -12.983148 ], [ -38.759766, -12.983148 ], [ -39.023438, -13.752725 ], [ -38.935547, -15.623037 ], [ -39.287109, -17.811456 ], [ -39.638672, -18.229351 ], [ -39.814453, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.861499 ], [ -41.835938, -22.350076 ], [ -42.011719, -22.917923 ], [ -43.154297, -22.917923 ], [ -44.648438, -23.322080 ], [ -45.439453, -23.725012 ], [ -46.494141, -24.046464 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.691406, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.955078, -28.613459 ], [ -49.658203, -29.152161 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.175612 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.701172, -33.137551 ], [ -53.261719, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.826781 ], [ -57.041016, -30.069094 ], [ -57.656250, -30.145127 ], [ -55.195312, -27.839076 ], [ -53.701172, -26.902477 ], [ -53.701172, -26.115986 ], [ -54.140625, -25.482951 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.527135 ], [ -54.316406, -23.966176 ], [ -54.667969, -23.805450 ], [ -55.107422, -23.966176 ], [ -55.458984, -23.885838 ], [ -55.634766, -22.593726 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.024546 ], [ -56.953125, -22.268764 ], [ -58.007812, -22.024546 ], [ -57.919922, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.919922, -19.890723 ], [ -58.007812, -19.394068 ], [ -57.744141, -18.895893 ], [ -57.568359, -18.145852 ], [ -57.744141, -17.476432 ], [ -58.359375, -17.224758 ], [ -58.447266, -16.804541 ], [ -58.271484, -16.299051 ], [ -60.205078, -16.214675 ], [ -60.556641, -15.029686 ], [ -60.292969, -15.029686 ], [ -60.556641, -13.752725 ], [ -61.171875, -13.410994 ], [ -61.787109, -13.410994 ], [ -62.138672, -13.154376 ], [ -62.841797, -12.983148 ], [ -63.281250, -12.554564 ], [ -64.335938, -12.382928 ], [ -65.478516, -11.523088 ], [ -65.390625, -9.709057 ], [ -66.708984, -9.882275 ], [ -68.115234, -10.660608 ], [ -68.291016, -11.005904 ], [ -69.609375, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.367188, -10.055403 ], [ -72.246094, -9.968851 ], [ -72.597656, -9.449062 ], [ -73.300781, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.652344, -8.407168 ], [ -74.003906, -7.449624 ], [ -73.740234, -7.275292 ], [ -73.740234, -6.839170 ], [ -73.125000, -6.577303 ], [ -73.300781, -6.053161 ], [ -73.037109, -5.703448 ], [ -72.949219, -5.266008 ], [ -71.806641, -4.565474 ], [ -71.015625, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.433594, -1.054628 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.615223 ], [ -69.521484, 0.790990 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.054628 ], [ -69.873047, 1.142502 ], [ -69.873047, 1.757537 ], [ -67.939453, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.324219, 1.757537 ], [ -67.148438, 1.142502 ], [ -66.884766, 1.318243 ], [ -66.357422, 0.790990 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.142502 ], [ -64.248047, 1.493971 ], [ -64.160156, 1.933227 ], [ -63.369141, 2.284551 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.547988 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.864255 ], [ -64.863281, 4.127285 ], [ -64.687500, 4.214943 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -60.996094, 4.565474 ], [ -60.644531, 5.003394 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ], [ -60.029297, 5.090944 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.292969, 5.266008 ], [ -60.029297, 5.090944 ], [ -60.117188, 4.653080 ], [ -59.853516, 4.477856 ], [ -59.589844, 4.039618 ], [ -59.853516, 3.688855 ], [ -60.029297, 2.811371 ], [ -59.677734, 1.845384 ], [ -59.062500, 1.318243 ], [ -58.623047, 1.318243 ], [ -58.447266, 1.493971 ], [ -57.744141, 1.757537 ], [ -57.392578, 2.021065 ], [ -56.074219, 1.845384 ], [ -55.986328, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.986328, 2.547988 ], [ -55.634766, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.140625, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.613281, 2.372369 ], [ -53.437500, 2.108899 ], [ -52.998047, 2.196727 ], [ -52.558594, 2.547988 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -50.009766, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.449219, 0.000000 ], [ -48.691406, -0.175781 ], [ -48.603516, -1.230374 ], [ -47.900391, -0.527336 ], [ -44.912109, -1.493971 ], [ -44.472656, -2.108899 ], [ -44.648438, -2.635789 ], [ -43.505859, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.811371 ], [ -38.583984, -3.688855 ], [ -37.265625, -4.740675 ], [ -36.474609, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.244141, -5.441022 ], [ -34.804688, -7.275292 ], [ -35.156250, -8.928487 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.125264 ], [ -38.496094, -12.983148 ], [ -38.759766, -12.983148 ], [ -39.023438, -13.752725 ], [ -38.935547, -15.623037 ], [ -39.287109, -17.811456 ], [ -39.638672, -18.229351 ], [ -39.814453, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.861499 ], [ -41.835938, -22.350076 ], [ -42.011719, -22.917923 ], [ -43.154297, -22.917923 ], [ -44.648438, -23.322080 ], [ -45.439453, -23.725012 ], [ -46.494141, -24.046464 ], [ -47.724609, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.691406, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.955078, -28.613459 ], [ -49.658203, -29.152161 ], [ -50.712891, -30.977609 ], [ -52.294922, -32.175612 ], [ -52.734375, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.701172, -33.137551 ], [ -53.261719, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.826781 ], [ -57.041016, -30.069094 ], [ -57.656250, -30.145127 ], [ -55.195312, -27.839076 ], [ -53.701172, -26.902477 ], [ -53.701172, -26.115986 ], [ -54.140625, -25.482951 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.527135 ], [ -54.316406, -23.966176 ], [ -54.667969, -23.805450 ], [ -55.107422, -23.966176 ], [ -55.458984, -23.885838 ], [ -55.634766, -22.593726 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.024546 ], [ -56.953125, -22.268764 ], [ -58.007812, -22.024546 ], [ -57.919922, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.919922, -19.890723 ], [ -58.007812, -19.394068 ], [ -57.744141, -18.895893 ], [ -57.568359, -18.145852 ], [ -57.744141, -17.476432 ], [ -58.359375, -17.224758 ], [ -58.447266, -16.804541 ], [ -58.271484, -16.299051 ], [ -60.205078, -16.214675 ], [ -60.556641, -15.029686 ], [ -60.292969, -15.029686 ], [ -60.556641, -13.752725 ], [ -61.171875, -13.410994 ], [ -61.787109, -13.410994 ], [ -62.138672, -13.154376 ], [ -62.841797, -12.983148 ], [ -63.281250, -12.554564 ], [ -64.335938, -12.382928 ], [ -65.478516, -11.523088 ], [ -65.390625, -9.709057 ], [ -66.708984, -9.882275 ], [ -68.115234, -10.660608 ], [ -68.291016, -11.005904 ], [ -69.609375, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.367188, -10.055403 ], [ -72.246094, -9.968851 ], [ -72.597656, -9.449062 ], [ -73.300781, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.652344, -8.407168 ], [ -74.003906, -7.449624 ], [ -73.740234, -7.275292 ], [ -73.740234, -6.839170 ], [ -73.125000, -6.577303 ], [ -73.300781, -6.053161 ], [ -73.037109, -5.703448 ], [ -72.949219, -5.266008 ], [ -71.806641, -4.565474 ], [ -71.015625, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.433594, -1.054628 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.615223 ], [ -69.521484, 0.790990 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.054628 ], [ -69.873047, 1.142502 ], [ -69.873047, 1.757537 ], [ -67.939453, 1.757537 ], [ -67.587891, 2.108899 ], [ -67.324219, 1.757537 ], [ -67.148438, 1.142502 ], [ -66.884766, 1.318243 ], [ -66.357422, 0.790990 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.142502 ], [ -64.248047, 1.493971 ], [ -64.160156, 1.933227 ], [ -63.369141, 2.284551 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.547988 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.864255 ], [ -64.863281, 4.127285 ], [ -64.687500, 4.214943 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -60.996094, 4.565474 ], [ -60.644531, 5.003394 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.183594, -19.808054 ], [ -58.183594, -20.138470 ], [ -57.919922, -20.715015 ], [ -58.007812, -22.024546 ], [ -56.953125, -22.268764 ], [ -56.513672, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.593726 ], [ -55.458984, -23.885838 ], [ -55.107422, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -23.966176 ], [ -54.316406, -24.527135 ], [ -54.843750, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.656250, -25.562265 ], [ -57.832031, -25.085599 ], [ -58.886719, -24.766785 ], [ -60.029297, -23.966176 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -62.314453, -21.043491 ], [ -62.314453, -20.468189 ], [ -61.787109, -19.559790 ], [ -60.117188, -19.311143 ], [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.138470 ], [ -57.919922, -20.715015 ], [ -58.007812, -22.024546 ], [ -56.953125, -22.268764 ], [ -56.513672, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.593726 ], [ -55.458984, -23.885838 ], [ -55.107422, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -23.966176 ], [ -54.316406, -24.527135 ], [ -54.843750, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.656250, -25.562265 ], [ -57.832031, -25.085599 ], [ -58.886719, -24.766785 ], [ -60.029297, -23.966176 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -62.314453, -21.043491 ], [ -62.314453, -20.468189 ], [ -61.787109, -19.559790 ], [ -60.117188, -19.311143 ], [ -59.150391, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.763672, -53.800651 ], [ -66.533203, -54.418930 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -66.533203, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.826008 ], [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ] ] ], [ [ [ -65.039062, -22.024546 ], [ -64.423828, -22.755921 ], [ -64.072266, -21.943046 ], [ -62.929688, -22.024546 ], [ -60.908203, -23.805450 ], [ -60.029297, -23.966176 ], [ -58.886719, -24.766785 ], [ -57.832031, -25.085599 ], [ -57.656250, -25.562265 ], [ -58.623047, -27.059126 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.843750, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.482951 ], [ -53.701172, -26.115986 ], [ -53.701172, -26.902477 ], [ -55.195312, -27.839076 ], [ -57.656250, -30.145127 ], [ -58.183594, -32.026706 ], [ -58.183594, -32.990236 ], [ -58.359375, -33.211116 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.865234, -36.879621 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -61.259766, -38.891033 ], [ -62.402344, -38.822591 ], [ -62.138672, -39.368279 ], [ -62.402344, -40.111689 ], [ -62.226562, -40.647304 ], [ -62.753906, -40.979898 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -64.423828, -42.811522 ], [ -65.214844, -43.452919 ], [ -65.390625, -44.465151 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -66.621094, -46.980252 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -68.730469, -50.233152 ], [ -69.169922, -50.680797 ], [ -68.818359, -51.727028 ], [ -68.203125, -52.321911 ], [ -69.521484, -52.106505 ], [ -71.982422, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.625073 ], [ -73.037109, -50.736455 ], [ -73.388672, -50.345460 ], [ -73.476562, -49.267805 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.509766, -47.694974 ], [ -71.982422, -46.860191 ], [ -71.630859, -45.521744 ], [ -71.718750, -44.964798 ], [ -71.279297, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.150681 ], [ -71.542969, -43.771094 ], [ -71.982422, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.806641, -42.032974 ], [ -71.982422, -40.780541 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.191406, -37.509726 ], [ -71.191406, -36.597889 ], [ -70.400391, -35.960223 ], [ -70.400391, -35.101934 ], [ -69.873047, -34.161818 ], [ -69.873047, -33.211116 ], [ -70.136719, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.297018 ], [ -70.048828, -29.305561 ], [ -69.697266, -28.459033 ], [ -69.082031, -27.449790 ], [ -68.378906, -26.824071 ], [ -68.642578, -26.431228 ], [ -68.466797, -26.115986 ], [ -68.466797, -24.447150 ], [ -67.412109, -23.966176 ], [ -67.060547, -22.917923 ], [ -67.148438, -22.674847 ], [ -66.357422, -21.779905 ], [ -65.039062, -22.024546 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.589701 ], [ -67.763672, -53.800651 ], [ -66.533203, -54.418930 ], [ -65.126953, -54.673831 ], [ -65.566406, -55.178868 ], [ -66.533203, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.826008 ], [ -68.642578, -52.589701 ] ] ], [ [ [ -66.357422, -21.779905 ], [ -65.039062, -22.024546 ], [ -64.423828, -22.755921 ], [ -64.072266, -21.943046 ], [ -62.929688, -22.024546 ], [ -60.908203, -23.805450 ], [ -60.029297, -23.966176 ], [ -58.886719, -24.766785 ], [ -57.832031, -25.085599 ], [ -57.656250, -25.562265 ], [ -58.623047, -27.059126 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.843750, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.482951 ], [ -53.701172, -26.115986 ], [ -53.701172, -26.902477 ], [ -55.195312, -27.839076 ], [ -57.656250, -30.145127 ], [ -58.183594, -32.026706 ], [ -58.183594, -32.990236 ], [ -58.359375, -33.211116 ], [ -58.535156, -34.379713 ], [ -57.304688, -35.245619 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.865234, -36.879621 ], [ -57.832031, -38.134557 ], [ -59.238281, -38.685510 ], [ -61.259766, -38.891033 ], [ -62.402344, -38.822591 ], [ -62.138672, -39.368279 ], [ -62.402344, -40.111689 ], [ -62.226562, -40.647304 ], [ -62.753906, -40.979898 ], [ -63.808594, -41.112469 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.808594, -42.032974 ], [ -63.544922, -42.553080 ], [ -64.423828, -42.811522 ], [ -65.214844, -43.452919 ], [ -65.390625, -44.465151 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.255847 ], [ -66.621094, -46.980252 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.236328, -48.690960 ], [ -67.851562, -49.837982 ], [ -68.730469, -50.233152 ], [ -69.169922, -50.680797 ], [ -68.818359, -51.727028 ], [ -68.203125, -52.321911 ], [ -69.521484, -52.106505 ], [ -71.982422, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.625073 ], [ -73.037109, -50.736455 ], [ -73.388672, -50.345460 ], [ -73.476562, -49.267805 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.509766, -47.694974 ], [ -71.982422, -46.860191 ], [ -71.630859, -45.521744 ], [ -71.718750, -44.964798 ], [ -71.279297, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.150681 ], [ -71.542969, -43.771094 ], [ -71.982422, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.806641, -42.032974 ], [ -71.982422, -40.780541 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.191406, -37.509726 ], [ -71.191406, -36.597889 ], [ -70.400391, -35.960223 ], [ -70.400391, -35.101934 ], [ -69.873047, -34.161818 ], [ -69.873047, -33.211116 ], [ -70.136719, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.297018 ], [ -70.048828, -29.305561 ], [ -69.697266, -28.459033 ], [ -69.082031, -27.449790 ], [ -68.378906, -26.824071 ], [ -68.642578, -26.431228 ], [ -68.466797, -26.115986 ], [ -68.466797, -24.447150 ], [ -67.412109, -23.966176 ], [ -67.060547, -22.917923 ], [ -67.148438, -22.674847 ], [ -66.357422, -21.779905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.826781 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.261719, -32.694866 ], [ -53.701172, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -55.722656, -34.741612 ], [ -56.250000, -34.813803 ], [ -57.216797, -34.379713 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.870416 ], [ -58.359375, -33.211116 ], [ -58.183594, -32.990236 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.145127 ], [ -57.041016, -30.069094 ], [ -55.986328, -30.826781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.041016, -30.069094 ], [ -55.986328, -30.826781 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.261719, -32.694866 ], [ -53.701172, -33.137551 ], [ -53.437500, -33.724340 ], [ -53.876953, -34.379713 ], [ -55.019531, -34.885931 ], [ -55.722656, -34.741612 ], [ -56.250000, -34.813803 ], [ -57.216797, -34.379713 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.870416 ], [ -58.359375, -33.211116 ], [ -58.183594, -32.990236 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.145127 ], [ -57.041016, -30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -51.508742 ], [ -58.095703, -51.890054 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.623047, -51.069017 ], [ -57.832031, -51.508742 ], [ -58.095703, -51.890054 ], [ -59.414062, -52.160455 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.268157 ], [ -61.259766, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.454007 ], [ -58.623047, -51.069017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.231457 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.524614 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ] ] ], [ [ [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ] ] ], [ [ [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ] ] ], [ [ [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.532994 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 152.753906, 58.904646 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ] ] ], [ [ [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ] ] ], [ [ [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ] ] ], [ [ [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ] ] ], [ [ [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ] ] ], [ [ [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ] ] ], [ [ [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ] ] ], [ [ [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 152.753906, 58.904646 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ] ] ], [ [ [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ] ] ], [ [ [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ] ] ], [ [ [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ], [ 29.355469, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.685547, 70.170201 ], [ 26.103516, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.911005 ], [ 22.324219, 68.847665 ], [ 21.181641, 69.380313 ], [ 20.566406, 69.131271 ], [ 19.951172, 69.068563 ], [ 19.863281, 68.431513 ], [ 17.929688, 68.592487 ], [ 17.666016, 68.040461 ], [ 16.699219, 68.040461 ], [ 15.029297, 66.196009 ], [ 13.535156, 64.811557 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.091408 ], [ 11.865234, 63.154355 ], [ 11.953125, 61.814664 ], [ 12.568359, 61.312452 ], [ 12.216797, 60.152442 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 5.273438, 59.667741 ], [ 4.921875, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.458984, 64.510643 ], [ 12.304688, 65.910623 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ] ] ], [ [ [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ] ] ], [ [ [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.025391, 69.565226 ], [ 29.355469, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.685547, 70.170201 ], [ 26.103516, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.911005 ], [ 22.324219, 68.847665 ], [ 21.181641, 69.380313 ], [ 20.566406, 69.131271 ], [ 19.951172, 69.068563 ], [ 19.863281, 68.431513 ], [ 17.929688, 68.592487 ], [ 17.666016, 68.040461 ], [ 16.699219, 68.040461 ], [ 15.029297, 66.196009 ], [ 13.535156, 64.811557 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.091408 ], [ 11.865234, 63.154355 ], [ 11.953125, 61.814664 ], [ 12.568359, 61.312452 ], [ 12.216797, 60.152442 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.283203, 59.489726 ], [ 8.349609, 58.355630 ], [ 7.031250, 58.124320 ], [ 5.625000, 58.631217 ], [ 5.273438, 59.667741 ], [ 4.921875, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.458984, 64.510643 ], [ 12.304688, 65.910623 ], [ 14.677734, 67.842416 ], [ 19.160156, 69.839622 ], [ 21.357422, 70.259452 ], [ 22.939453, 70.229744 ], [ 24.521484, 71.045529 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.193359, 79.702907 ], [ 21.533203, 78.971386 ], [ 18.984375, 78.577907 ], [ 18.457031, 77.841848 ], [ 17.578125, 77.655346 ], [ 17.050781, 76.820793 ], [ 15.908203, 76.780655 ], [ 13.710938, 77.389504 ], [ 14.589844, 77.748946 ], [ 13.095703, 78.025574 ], [ 11.162109, 78.870048 ], [ 10.371094, 79.655668 ], [ 13.095703, 80.012423 ], [ 13.710938, 79.671438 ], [ 15.117188, 79.687184 ], [ 15.468750, 80.027655 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.203125, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.412109, 77.446940 ], [ 20.654297, 77.692870 ], [ 21.357422, 77.952414 ], [ 20.742188, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.851562, 80.661308 ], [ 25.400391, 80.415707 ], [ 27.333984, 80.058050 ], [ 25.839844, 79.528647 ], [ 22.939453, 79.400085 ], [ 20.039062, 79.576460 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.874297 ], [ 17.314453, 80.327506 ], [ 20.390625, 80.604086 ], [ 21.884766, 80.371707 ], [ 22.851562, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.986328, 55.379110 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ] ] ], [ [ [ 10.458984, 57.231503 ], [ 10.195312, 56.897004 ], [ 10.283203, 56.656226 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.121060 ], [ 10.283203, 56.218923 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 9.228516, 54.876607 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ], [ 10.458984, 57.231503 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.041016, 54.826008 ], [ 10.986328, 55.379110 ], [ 10.898438, 55.825973 ], [ 12.304688, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.458984, 57.231503 ], [ 10.195312, 56.897004 ], [ 10.283203, 56.656226 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.121060 ], [ 10.283203, 56.218923 ], [ 9.580078, 55.478853 ], [ 9.843750, 55.028022 ], [ 9.228516, 54.876607 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.136239 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.466797, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 17.753906, 60.673179 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.088515 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.568359, 56.316537 ], [ 11.777344, 57.468589 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.216797, 60.152442 ], [ 12.568359, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.865234, 63.154355 ], [ 12.568359, 64.091408 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.811557 ], [ 15.029297, 66.196009 ], [ 16.699219, 68.040461 ], [ 17.666016, 68.040461 ], [ 17.929688, 68.592487 ], [ 19.863281, 68.431513 ], [ 19.951172, 69.068563 ], [ 20.566406, 69.131271 ], [ 23.466797, 67.941650 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 69.131271 ], [ 23.466797, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.818359, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.434892 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.050781, 61.354614 ], [ 17.753906, 60.673179 ], [ 18.720703, 60.108670 ], [ 17.841797, 58.995311 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.088515 ], [ 15.820312, 56.121060 ], [ 14.589844, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.568359, 56.316537 ], [ 11.777344, 57.468589 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.216797, 60.152442 ], [ 12.568359, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.865234, 63.154355 ], [ 12.568359, 64.091408 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.472794 ], [ 13.535156, 64.811557 ], [ 15.029297, 66.196009 ], [ 16.699219, 68.040461 ], [ 17.666016, 68.040461 ], [ 17.929688, 68.592487 ], [ 19.863281, 68.431513 ], [ 19.951172, 69.068563 ], [ 20.566406, 69.131271 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.855469, 53.488046 ], [ 7.031250, 53.173119 ], [ 6.767578, 52.268157 ], [ 6.503906, 51.890054 ], [ 5.976562, 51.890054 ], [ 6.152344, 50.847573 ], [ 5.537109, 51.069017 ], [ 4.921875, 51.508742 ], [ 4.042969, 51.289406 ], [ 3.251953, 51.399206 ], [ 3.779297, 51.672555 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.540307 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.173119 ], [ 6.767578, 52.268157 ], [ 6.503906, 51.890054 ], [ 5.976562, 51.890054 ], [ 6.152344, 50.847573 ], [ 5.537109, 51.069017 ], [ 4.921875, 51.508742 ], [ 4.042969, 51.289406 ], [ 3.251953, 51.399206 ], [ 3.779297, 51.672555 ], [ 4.658203, 53.120405 ], [ 6.064453, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.537109, 51.069017 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.176898 ], [ 5.712891, 50.120578 ], [ 5.625000, 49.553726 ], [ 4.746094, 50.007739 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.042969, 51.289406 ], [ 4.921875, 51.508742 ], [ 5.537109, 51.069017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 5.537109, 51.069017 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.176898 ], [ 5.712891, 50.120578 ], [ 5.625000, 49.553726 ], [ 4.746094, 50.007739 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.042969, 51.289406 ], [ 4.921875, 51.508742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.951220 ], [ 6.152344, 49.496675 ], [ 5.888672, 49.496675 ], [ 5.625000, 49.553726 ], [ 5.712891, 50.120578 ], [ 5.976562, 50.176898 ], [ 6.240234, 49.951220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.176898 ], [ 6.240234, 49.951220 ], [ 6.152344, 49.496675 ], [ 5.888672, 49.496675 ], [ 5.625000, 49.553726 ], [ 5.712891, 50.120578 ], [ 5.976562, 50.176898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.622978 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.062500, 53.800651 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.014783 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.781436 ], [ 14.941406, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.238281, 51.124213 ], [ 13.974609, 50.958427 ], [ 13.271484, 50.736455 ], [ 12.919922, 50.513427 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.535156, 48.922499 ], [ 13.183594, 48.458352 ], [ 12.832031, 48.341646 ], [ 13.007812, 47.694974 ], [ 12.919922, 47.517201 ], [ 12.568359, 47.694974 ], [ 12.128906, 47.754098 ], [ 11.425781, 47.576526 ], [ 10.458984, 47.576526 ], [ 10.371094, 47.338823 ], [ 9.843750, 47.635784 ], [ 9.580078, 47.576526 ], [ 8.437500, 47.872144 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.591797, 49.210420 ], [ 6.152344, 49.496675 ], [ 6.240234, 49.951220 ], [ 5.976562, 50.176898 ], [ 6.152344, 50.847573 ], [ 5.976562, 51.890054 ], [ 6.503906, 51.890054 ], [ 6.767578, 52.268157 ], [ 7.031250, 53.173119 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.228516, 54.876607 ], [ 9.843750, 55.028022 ], [ 9.931641, 54.622978 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 55.028022 ], [ 9.931641, 54.622978 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.521081 ], [ 13.623047, 54.110943 ], [ 14.062500, 53.800651 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.014783 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.781436 ], [ 14.941406, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.238281, 51.124213 ], [ 13.974609, 50.958427 ], [ 13.271484, 50.736455 ], [ 12.919922, 50.513427 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.535156, 48.922499 ], [ 13.183594, 48.458352 ], [ 12.832031, 48.341646 ], [ 13.007812, 47.694974 ], [ 12.919922, 47.517201 ], [ 12.568359, 47.694974 ], [ 12.128906, 47.754098 ], [ 11.425781, 47.576526 ], [ 10.458984, 47.576526 ], [ 10.371094, 47.338823 ], [ 9.843750, 47.635784 ], [ 9.580078, 47.576526 ], [ 8.437500, 47.872144 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.591797, 49.210420 ], [ 6.152344, 49.496675 ], [ 6.240234, 49.951220 ], [ 5.976562, 50.176898 ], [ 6.152344, 50.847573 ], [ 5.976562, 51.890054 ], [ 6.503906, 51.890054 ], [ 6.767578, 52.268157 ], [ 7.031250, 53.173119 ], [ 6.855469, 53.488046 ], [ 7.031250, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.059388 ], [ 8.525391, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.228516, 54.876607 ], [ 9.843750, 55.028022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.576526 ], [ 9.404297, 47.159840 ], [ 9.931641, 46.980252 ], [ 10.371094, 46.920255 ], [ 10.283203, 46.498392 ], [ 9.843750, 46.316584 ], [ 9.140625, 46.498392 ], [ 8.964844, 46.073231 ], [ 8.437500, 46.012224 ], [ 8.261719, 46.195042 ], [ 7.734375, 45.828799 ], [ 7.207031, 45.828799 ], [ 6.767578, 46.012224 ], [ 6.416016, 46.437857 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.739861 ], [ 6.767578, 47.338823 ], [ 6.679688, 47.576526 ], [ 7.119141, 47.457809 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.437500, 47.872144 ], [ 9.580078, 47.576526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 47.872144 ], [ 9.580078, 47.576526 ], [ 9.404297, 47.159840 ], [ 9.931641, 46.980252 ], [ 10.371094, 46.920255 ], [ 10.283203, 46.498392 ], [ 9.843750, 46.316584 ], [ 9.140625, 46.498392 ], [ 8.964844, 46.073231 ], [ 8.437500, 46.012224 ], [ 8.261719, 46.195042 ], [ 7.734375, 45.828799 ], [ 7.207031, 45.828799 ], [ 6.767578, 46.012224 ], [ 6.416016, 46.437857 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.739861 ], [ 6.767578, 47.338823 ], [ 6.679688, 47.576526 ], [ 7.119141, 47.457809 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.437500, 47.872144 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.792047 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.457504 ], [ 16.699219, 50.233152 ], [ 16.787109, 50.513427 ], [ 17.490234, 50.401515 ], [ 17.578125, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.808594, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.105469, 49.325122 ], [ 18.017578, 49.095452 ], [ 17.841797, 48.922499 ], [ 17.490234, 48.806863 ], [ 17.050781, 48.864715 ], [ 16.875000, 48.632909 ], [ 16.435547, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.205078, 49.095452 ], [ 14.853516, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.535156, 48.922499 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 12.919922, 50.513427 ], [ 13.271484, 50.736455 ], [ 13.974609, 50.958427 ], [ 14.238281, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.941406, 51.124213 ], [ 15.468750, 50.792047 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.941406, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.457504 ], [ 16.699219, 50.233152 ], [ 16.787109, 50.513427 ], [ 17.490234, 50.401515 ], [ 17.578125, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.808594, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.105469, 49.325122 ], [ 18.017578, 49.095452 ], [ 17.841797, 48.922499 ], [ 17.490234, 48.806863 ], [ 17.050781, 48.864715 ], [ 16.875000, 48.632909 ], [ 16.435547, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.205078, 49.095452 ], [ 14.853516, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.535156, 48.922499 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 12.919922, 50.513427 ], [ 13.271484, 50.736455 ], [ 13.974609, 50.958427 ], [ 14.238281, 51.124213 ], [ 14.501953, 51.013755 ], [ 14.941406, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.544922, 54.724620 ], [ 18.632812, 54.470038 ], [ 20.830078, 54.316523 ], [ 22.675781, 54.367759 ], [ 23.203125, 54.265224 ], [ 23.730469, 53.120405 ], [ 23.730469, 52.696361 ], [ 23.115234, 52.536273 ], [ 23.466797, 52.052490 ], [ 23.466797, 51.618017 ], [ 23.994141, 50.736455 ], [ 23.906250, 50.457504 ], [ 23.378906, 50.345460 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.533203, 49.496675 ], [ 20.830078, 49.382373 ], [ 20.390625, 49.439557 ], [ 19.775391, 49.267805 ], [ 19.248047, 49.610710 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.578125, 50.064192 ], [ 17.490234, 50.401515 ], [ 16.787109, 50.513427 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.457504 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.792047 ], [ 14.941406, 51.124213 ], [ 14.589844, 51.781436 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 53.014783 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ], [ 18.544922, 54.724620 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 54.876607 ], [ 18.544922, 54.724620 ], [ 18.632812, 54.470038 ], [ 20.830078, 54.316523 ], [ 22.675781, 54.367759 ], [ 23.203125, 54.265224 ], [ 23.730469, 53.120405 ], [ 23.730469, 52.696361 ], [ 23.115234, 52.536273 ], [ 23.466797, 52.052490 ], [ 23.466797, 51.618017 ], [ 23.994141, 50.736455 ], [ 23.906250, 50.457504 ], [ 23.378906, 50.345460 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.533203, 49.496675 ], [ 20.830078, 49.382373 ], [ 20.390625, 49.439557 ], [ 19.775391, 49.267805 ], [ 19.248047, 49.610710 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.578125, 50.064192 ], [ 17.490234, 50.401515 ], [ 16.787109, 50.513427 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.457504 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.792047 ], [ 14.941406, 51.124213 ], [ 14.589844, 51.781436 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 53.014783 ], [ 14.326172, 53.278353 ], [ 14.062500, 53.800651 ], [ 14.765625, 54.059388 ], [ 17.578125, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 48.748945 ], [ 16.435547, 48.806863 ], [ 16.875000, 48.632909 ], [ 16.875000, 48.516604 ], [ 16.962891, 48.166085 ], [ 16.875000, 47.754098 ], [ 16.259766, 47.754098 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.739861 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.304688, 46.800059 ], [ 12.128906, 47.159840 ], [ 11.162109, 46.980252 ], [ 10.986328, 46.800059 ], [ 9.931641, 46.980252 ], [ 9.404297, 47.159840 ], [ 9.580078, 47.576526 ], [ 9.843750, 47.635784 ], [ 10.371094, 47.338823 ], [ 10.458984, 47.576526 ], [ 11.425781, 47.576526 ], [ 12.128906, 47.754098 ], [ 12.568359, 47.694974 ], [ 12.919922, 47.517201 ], [ 13.007812, 47.694974 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.458352 ], [ 13.535156, 48.922499 ], [ 14.326172, 48.574790 ], [ 14.853516, 48.980217 ], [ 15.205078, 49.095452 ], [ 15.996094, 48.748945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.205078, 49.095452 ], [ 15.996094, 48.748945 ], [ 16.435547, 48.806863 ], [ 16.875000, 48.632909 ], [ 16.875000, 48.516604 ], [ 16.962891, 48.166085 ], [ 16.875000, 47.754098 ], [ 16.259766, 47.754098 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.739861 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.304688, 46.800059 ], [ 12.128906, 47.159840 ], [ 11.162109, 46.980252 ], [ 10.986328, 46.800059 ], [ 9.931641, 46.980252 ], [ 9.404297, 47.159840 ], [ 9.580078, 47.576526 ], [ 9.843750, 47.635784 ], [ 10.371094, 47.338823 ], [ 10.458984, 47.576526 ], [ 11.425781, 47.576526 ], [ 12.128906, 47.754098 ], [ 12.568359, 47.694974 ], [ 12.919922, 47.517201 ], [ 13.007812, 47.694974 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.458352 ], [ 13.535156, 48.922499 ], [ 14.326172, 48.574790 ], [ 14.853516, 48.980217 ], [ 15.205078, 49.095452 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.890008 ], [ 15.292969, 45.767523 ], [ 15.292969, 45.460131 ], [ 14.853516, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.326172, 45.521744 ], [ 13.710938, 45.521744 ], [ 13.886719, 45.644768 ], [ 13.623047, 46.073231 ], [ 13.798828, 46.558860 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.739861 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ], [ 16.523438, 46.558860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.558860 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.890008 ], [ 15.292969, 45.767523 ], [ 15.292969, 45.460131 ], [ 14.853516, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.326172, 45.521744 ], [ 13.710938, 45.521744 ], [ 13.886719, 45.644768 ], [ 13.623047, 46.073231 ], [ 13.798828, 46.558860 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.739861 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.117188, 37.509726 ], [ 15.292969, 37.160317 ], [ 15.029297, 36.668419 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.468750, 38.272689 ], [ 15.117188, 37.509726 ] ] ], [ [ [ 12.304688, 46.800059 ], [ 13.798828, 46.558860 ], [ 13.623047, 46.073231 ], [ 13.886719, 45.644768 ], [ 13.095703, 45.767523 ], [ 12.304688, 45.398450 ], [ 12.304688, 44.902578 ], [ 12.216797, 44.653024 ], [ 12.568359, 44.150681 ], [ 13.447266, 43.644026 ], [ 13.974609, 42.811522 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.083984, 41.771312 ], [ 15.820312, 41.574361 ], [ 17.490234, 40.913513 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.666016, 40.313043 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.611328, 38.891033 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.820312, 38.754083 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 14.941406, 40.178873 ], [ 14.677734, 40.647304 ], [ 13.974609, 40.847060 ], [ 13.623047, 41.244772 ], [ 12.832031, 41.310824 ], [ 11.162109, 42.358544 ], [ 10.458984, 42.940339 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 8.349609, 44.276671 ], [ 7.822266, 43.771094 ], [ 7.382812, 43.707594 ], [ 7.470703, 44.150681 ], [ 6.943359, 44.276671 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.336702 ], [ 6.767578, 45.767523 ], [ 6.767578, 46.012224 ], [ 7.207031, 45.828799 ], [ 7.734375, 45.828799 ], [ 8.261719, 46.195042 ], [ 8.437500, 46.012224 ], [ 8.964844, 46.073231 ], [ 9.140625, 46.498392 ], [ 9.843750, 46.316584 ], [ 10.283203, 46.498392 ], [ 10.371094, 46.920255 ], [ 10.986328, 46.800059 ], [ 11.162109, 46.980252 ], [ 12.128906, 47.159840 ], [ 12.304688, 46.800059 ] ] ], [ [ [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.300299 ], [ 8.789062, 38.959409 ], [ 8.349609, 39.232253 ], [ 8.349609, 40.380028 ], [ 8.085938, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.117188, 37.509726 ], [ 15.292969, 37.160317 ], [ 15.029297, 36.668419 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.649034 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 12.128906, 47.159840 ], [ 12.304688, 46.800059 ], [ 13.798828, 46.558860 ], [ 13.623047, 46.073231 ], [ 13.886719, 45.644768 ], [ 13.095703, 45.767523 ], [ 12.304688, 45.398450 ], [ 12.304688, 44.902578 ], [ 12.216797, 44.653024 ], [ 12.568359, 44.150681 ], [ 13.447266, 43.644026 ], [ 13.974609, 42.811522 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.083984, 41.771312 ], [ 15.820312, 41.574361 ], [ 17.490234, 40.913513 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.666016, 40.313043 ], [ 16.787109, 40.446947 ], [ 16.435547, 39.842286 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.959409 ], [ 16.611328, 38.891033 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.820312, 38.754083 ], [ 16.083984, 39.027719 ], [ 15.380859, 40.111689 ], [ 14.941406, 40.178873 ], [ 14.677734, 40.647304 ], [ 13.974609, 40.847060 ], [ 13.623047, 41.244772 ], [ 12.832031, 41.310824 ], [ 11.162109, 42.358544 ], [ 10.458984, 42.940339 ], [ 10.195312, 43.961191 ], [ 8.876953, 44.402392 ], [ 8.349609, 44.276671 ], [ 7.822266, 43.771094 ], [ 7.382812, 43.707594 ], [ 7.470703, 44.150681 ], [ 6.943359, 44.276671 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.336702 ], [ 6.767578, 45.767523 ], [ 6.767578, 46.012224 ], [ 7.207031, 45.828799 ], [ 7.734375, 45.828799 ], [ 8.261719, 46.195042 ], [ 8.437500, 46.012224 ], [ 8.964844, 46.073231 ], [ 9.140625, 46.498392 ], [ 9.843750, 46.316584 ], [ 10.283203, 46.498392 ], [ 10.371094, 46.920255 ], [ 10.986328, 46.800059 ], [ 11.162109, 46.980252 ], [ 12.128906, 47.159840 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.755859, 40.513799 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.300299 ], [ 8.789062, 38.959409 ], [ 8.349609, 39.232253 ], [ 8.349609, 40.380028 ], [ 8.085938, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.140625, 41.244772 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 46.012224 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.213004 ], [ 16.259766, 45.026950 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.666016, 43.068888 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.875000, 43.261206 ], [ 15.996094, 43.516689 ], [ 15.117188, 44.276671 ], [ 15.292969, 44.339565 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.853516, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.767523 ], [ 15.644531, 45.890008 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.213004 ], [ 16.259766, 45.026950 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.666016, 43.068888 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.875000, 43.261206 ], [ 15.996094, 43.516689 ], [ 15.117188, 44.276671 ], [ 15.292969, 44.339565 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.238281, 45.274886 ], [ 13.886719, 44.840291 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.853516, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.767523 ], [ 15.644531, 45.890008 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 48.341646 ], [ 22.060547, 48.458352 ], [ 22.587891, 48.166085 ], [ 22.675781, 47.931066 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.511719, 46.195042 ], [ 18.369141, 45.767523 ], [ 17.578125, 46.012224 ], [ 16.523438, 46.558860 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.259766, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.962891, 48.166085 ], [ 17.841797, 47.813155 ], [ 18.632812, 47.931066 ], [ 18.720703, 48.107431 ], [ 20.214844, 48.341646 ], [ 20.390625, 48.574790 ], [ 20.742188, 48.632909 ], [ 21.796875, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 48.632909 ], [ 21.796875, 48.341646 ], [ 22.060547, 48.458352 ], [ 22.587891, 48.166085 ], [ 22.675781, 47.931066 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.511719, 46.195042 ], [ 18.369141, 45.767523 ], [ 17.578125, 46.012224 ], [ 16.523438, 46.558860 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.259766, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.962891, 48.166085 ], [ 17.841797, 47.813155 ], [ 18.632812, 47.931066 ], [ 18.720703, 48.107431 ], [ 20.214844, 48.341646 ], [ 20.390625, 48.574790 ], [ 20.742188, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 49.267805 ], [ 20.390625, 49.439557 ], [ 20.830078, 49.382373 ], [ 21.533203, 49.496675 ], [ 22.500000, 49.095452 ], [ 22.060547, 48.458352 ], [ 21.796875, 48.341646 ], [ 20.742188, 48.632909 ], [ 20.390625, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.687500, 48.224673 ], [ 19.599609, 48.283193 ], [ 18.720703, 48.107431 ], [ 18.632812, 47.931066 ], [ 17.841797, 47.813155 ], [ 17.402344, 47.872144 ], [ 16.962891, 48.166085 ], [ 16.875000, 48.516604 ], [ 17.050781, 48.864715 ], [ 17.490234, 48.806863 ], [ 17.841797, 48.922499 ], [ 18.017578, 49.095452 ], [ 18.105469, 49.325122 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.248047, 49.610710 ], [ 19.775391, 49.267805 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.248047, 49.610710 ], [ 19.775391, 49.267805 ], [ 20.390625, 49.439557 ], [ 20.830078, 49.382373 ], [ 21.533203, 49.496675 ], [ 22.500000, 49.095452 ], [ 22.060547, 48.458352 ], [ 21.796875, 48.341646 ], [ 20.742188, 48.632909 ], [ 20.390625, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.687500, 48.224673 ], [ 19.599609, 48.283193 ], [ 18.720703, 48.107431 ], [ 18.632812, 47.931066 ], [ 17.841797, 47.813155 ], [ 17.402344, 47.872144 ], [ 16.962891, 48.166085 ], [ 16.875000, 48.516604 ], [ 17.050781, 48.864715 ], [ 17.490234, 48.806863 ], [ 17.841797, 48.922499 ], [ 18.017578, 49.095452 ], [ 18.105469, 49.325122 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.248047, 49.610710 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.465151 ], [ 19.599609, 44.087585 ], [ 19.423828, 43.580391 ], [ 18.632812, 43.261206 ], [ 18.544922, 42.682435 ], [ 17.666016, 43.068888 ], [ 17.226562, 43.452919 ], [ 16.435547, 44.087585 ], [ 15.732422, 44.840291 ], [ 15.908203, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.274886 ], [ 17.841797, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.274886 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.465151 ], [ 19.599609, 44.087585 ], [ 19.423828, 43.580391 ], [ 18.632812, 43.261206 ], [ 18.544922, 42.682435 ], [ 17.666016, 43.068888 ], [ 17.226562, 43.452919 ], [ 16.435547, 44.087585 ], [ 15.732422, 44.840291 ], [ 15.908203, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.274886 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 43.580391 ], [ 20.302734, 42.940339 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.553080 ], [ 19.687500, 42.747012 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.369141, 42.488302 ], [ 18.632812, 43.261206 ], [ 19.160156, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.767523 ], [ 20.830078, 45.460131 ], [ 21.445312, 45.213004 ], [ 21.533203, 44.777936 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.465151 ], [ 22.587891, 44.276671 ], [ 22.324219, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.261206 ], [ 22.587891, 42.940339 ], [ 22.412109, 42.617791 ], [ 22.500000, 42.488302 ], [ 22.324219, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.708984, 42.747012 ], [ 21.621094, 42.682435 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.478516, 42.940339 ], [ 20.214844, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.160156, 43.580391 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.087585 ], [ 19.072266, 44.465151 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.335938, 45.274886 ], [ 18.808594, 45.951150 ], [ 19.511719, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 21.621094, 42.682435 ], [ 21.708984, 42.747012 ], [ 21.533203, 42.293564 ], [ 20.742188, 42.098222 ], [ 20.654297, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.875964 ], [ 20.478516, 42.940339 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.553080 ], [ 20.039062, 42.617791 ], [ 20.478516, 42.228517 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.917969, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.566406, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.977120 ], [ 19.335938, 40.313043 ], [ 19.248047, 40.780541 ], [ 19.511719, 41.771312 ], [ 19.248047, 42.228517 ], [ 19.687500, 42.747012 ], [ 19.775391, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.747012 ], [ 19.775391, 42.553080 ], [ 20.039062, 42.617791 ], [ 20.478516, 42.228517 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.917969, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.566406, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.977120 ], [ 19.335938, 40.313043 ], [ 19.248047, 40.780541 ], [ 19.511719, 41.771312 ], [ 19.248047, 42.228517 ], [ 19.687500, 42.747012 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 42.032974 ], [ 22.939453, 41.376809 ], [ 22.587891, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.621094, 40.979898 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.654297, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.269531, 42.228517 ], [ 22.324219, 42.358544 ], [ 22.851562, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.358544 ], [ 22.851562, 42.032974 ], [ 22.939453, 41.376809 ], [ 22.587891, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.621094, 40.979898 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.654297, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.269531, 42.228517 ], [ 22.324219, 42.358544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.388672, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.003906, 66.964476 ], [ 30.146484, 65.838776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 29.970703, 63.587675 ], [ 31.464844, 62.875188 ], [ 31.113281, 62.390369 ], [ 28.037109, 60.543775 ], [ 26.191406, 60.457218 ], [ 24.433594, 60.064840 ], [ 22.851562, 59.888937 ], [ 22.236328, 60.413852 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.923542 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.818359, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.466797, 67.941650 ], [ 20.566406, 69.131271 ], [ 21.181641, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.911005 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.103516, 69.839622 ], [ 27.685547, 70.170201 ], [ 29.003906, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.685547, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.388672, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.003906, 66.964476 ], [ 30.146484, 65.838776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 29.970703, 63.587675 ], [ 31.464844, 62.875188 ], [ 31.113281, 62.390369 ], [ 28.037109, 60.543775 ], [ 26.191406, 60.457218 ], [ 24.433594, 60.064840 ], [ 22.851562, 59.888937 ], [ 22.236328, 60.413852 ], [ 21.269531, 60.759160 ], [ 21.533203, 61.731526 ], [ 21.005859, 62.633770 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.923542 ], [ 25.312500, 65.146115 ], [ 25.224609, 65.549367 ], [ 23.818359, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.466797, 67.941650 ], [ 20.566406, 69.131271 ], [ 21.181641, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.911005 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.103516, 69.839622 ], [ 27.685547, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.279043 ], [ 27.773438, 56.800878 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.488281, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.785156, 56.413901 ], [ 23.818359, 56.316537 ], [ 22.148438, 56.365250 ], [ 21.005859, 56.072035 ], [ 21.005859, 56.800878 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 25.136719, 57.984808 ], [ 26.455078, 57.515823 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 26.455078, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.279043 ], [ 27.773438, 56.800878 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.488281, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.785156, 56.413901 ], [ 23.818359, 56.316537 ], [ 22.148438, 56.365250 ], [ 21.005859, 56.072035 ], [ 21.005859, 56.800878 ], [ 21.533203, 57.421294 ], [ 22.500000, 57.797944 ], [ 23.291016, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.257812, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 59.489726 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.333984, 58.768200 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.515823 ], [ 26.455078, 57.515823 ], [ 25.136719, 57.984808 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 24.521484, 59.489726 ], [ 25.839844, 59.623325 ], [ 26.894531, 59.489726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.894531, 59.489726 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.333984, 58.768200 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.515823 ], [ 26.455078, 57.515823 ], [ 25.136719, 57.984808 ], [ 24.257812, 57.797944 ], [ 24.345703, 58.401712 ], [ 23.994141, 58.263287 ], [ 23.378906, 58.631217 ], [ 23.291016, 59.220934 ], [ 24.521484, 59.489726 ], [ 25.839844, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.170023 ], [ 25.488281, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.542969, 55.178868 ], [ 25.751953, 54.876607 ], [ 25.488281, 54.316523 ], [ 24.433594, 53.956086 ], [ 23.466797, 53.956086 ], [ 23.203125, 54.265224 ], [ 22.675781, 54.367759 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.876607 ], [ 22.236328, 55.028022 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 22.148438, 56.365250 ], [ 23.818359, 56.316537 ], [ 24.785156, 56.413901 ], [ 24.960938, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 56.413901 ], [ 24.960938, 56.170023 ], [ 25.488281, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.542969, 55.178868 ], [ 25.751953, 54.876607 ], [ 25.488281, 54.316523 ], [ 24.433594, 53.956086 ], [ 23.466797, 53.956086 ], [ 23.203125, 54.265224 ], [ 22.675781, 54.367759 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.876607 ], [ 22.236328, 55.028022 ], [ 21.181641, 55.229023 ], [ 21.005859, 56.072035 ], [ 22.148438, 56.365250 ], [ 23.818359, 56.316537 ], [ 24.785156, 56.413901 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.825973 ], [ 30.849609, 55.578345 ], [ 30.937500, 55.128649 ], [ 30.673828, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.728516, 54.007769 ], [ 31.728516, 53.800651 ], [ 32.343750, 53.644638 ], [ 32.607422, 53.383328 ], [ 32.255859, 53.173119 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.120405 ], [ 31.728516, 52.106505 ], [ 30.849609, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.498047, 51.344339 ], [ 30.146484, 51.454007 ], [ 29.179688, 51.399206 ], [ 28.916016, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.212891, 51.618017 ], [ 27.421875, 51.618017 ], [ 26.279297, 51.835778 ], [ 25.312500, 51.944265 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.466797, 51.618017 ], [ 23.466797, 52.052490 ], [ 23.115234, 52.536273 ], [ 23.730469, 52.696361 ], [ 23.730469, 53.120405 ], [ 23.466797, 53.488046 ], [ 23.466797, 53.956086 ], [ 24.433594, 53.956086 ], [ 25.488281, 54.316523 ], [ 25.751953, 54.876607 ], [ 26.542969, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.125000, 56.170023 ], [ 29.179688, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 56.170023 ], [ 29.179688, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.825973 ], [ 30.849609, 55.578345 ], [ 30.937500, 55.128649 ], [ 30.673828, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.728516, 54.007769 ], [ 31.728516, 53.800651 ], [ 32.343750, 53.644638 ], [ 32.607422, 53.383328 ], [ 32.255859, 53.173119 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.120405 ], [ 31.728516, 52.106505 ], [ 30.849609, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.498047, 51.344339 ], [ 30.146484, 51.454007 ], [ 29.179688, 51.399206 ], [ 28.916016, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.212891, 51.618017 ], [ 27.421875, 51.618017 ], [ 26.279297, 51.835778 ], [ 25.312500, 51.944265 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.466797, 51.618017 ], [ 23.466797, 52.052490 ], [ 23.115234, 52.536273 ], [ 23.730469, 52.696361 ], [ 23.730469, 53.120405 ], [ 23.466797, 53.488046 ], [ 23.466797, 53.956086 ], [ 24.433594, 53.956086 ], [ 25.488281, 54.316523 ], [ 25.751953, 54.876607 ], [ 26.542969, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.125000, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.166085 ], [ 28.125000, 46.860191 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.521744 ], [ 28.652344, 45.336702 ], [ 29.091797, 45.521744 ], [ 29.531250, 45.336702 ], [ 29.619141, 45.089036 ], [ 29.091797, 44.840291 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.158203, 44.213710 ], [ 26.015625, 43.961191 ], [ 25.488281, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.412109, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.715514 ], [ 22.060547, 44.527843 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.213004 ], [ 20.830078, 45.460131 ], [ 20.742188, 45.767523 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.931066 ], [ 23.115234, 48.107431 ], [ 24.345703, 47.989922 ], [ 24.785156, 47.754098 ], [ 25.136719, 47.931066 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.894531, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 48.224673 ], [ 26.894531, 48.166085 ], [ 28.125000, 46.860191 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.521744 ], [ 28.652344, 45.336702 ], [ 29.091797, 45.521744 ], [ 29.531250, 45.336702 ], [ 29.619141, 45.089036 ], [ 29.091797, 44.840291 ], [ 28.828125, 44.964798 ], [ 28.476562, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.158203, 44.213710 ], [ 26.015625, 43.961191 ], [ 25.488281, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.412109, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.412109, 44.715514 ], [ 22.060547, 44.527843 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.213004 ], [ 20.830078, 45.460131 ], [ 20.742188, 45.767523 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.931066 ], [ 23.115234, 48.107431 ], [ 24.345703, 47.989922 ], [ 24.785156, 47.754098 ], [ 25.136719, 47.931066 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.488281, 43.707594 ], [ 26.015625, 43.961191 ], [ 27.158203, 44.213710 ], [ 27.949219, 43.834527 ], [ 28.476562, 43.707594 ], [ 28.037109, 43.325178 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 27.070312, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.376809 ], [ 25.136719, 41.244772 ], [ 24.433594, 41.640078 ], [ 23.642578, 41.310824 ], [ 22.939453, 41.376809 ], [ 22.851562, 42.032974 ], [ 22.324219, 42.358544 ], [ 22.500000, 42.488302 ], [ 22.412109, 42.617791 ], [ 22.587891, 42.940339 ], [ 22.939453, 43.261206 ], [ 22.500000, 43.644026 ], [ 22.324219, 44.024422 ], [ 22.587891, 44.276671 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.587891, 44.276671 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.488281, 43.707594 ], [ 26.015625, 43.961191 ], [ 27.158203, 44.213710 ], [ 27.949219, 43.834527 ], [ 28.476562, 43.707594 ], [ 28.037109, 43.325178 ], [ 27.597656, 42.617791 ], [ 27.949219, 42.032974 ], [ 27.070312, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.376809 ], [ 25.136719, 41.244772 ], [ 24.433594, 41.640078 ], [ 23.642578, 41.310824 ], [ 22.939453, 41.376809 ], [ 22.851562, 42.032974 ], [ 22.324219, 42.358544 ], [ 22.500000, 42.488302 ], [ 22.412109, 42.617791 ], [ 22.587891, 42.940339 ], [ 22.939453, 43.261206 ], [ 22.500000, 43.644026 ], [ 22.324219, 44.024422 ], [ 22.587891, 44.276671 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.212891, 48.166085 ], [ 28.652344, 48.166085 ], [ 29.091797, 47.872144 ], [ 29.003906, 47.517201 ], [ 29.355469, 47.398349 ], [ 29.531250, 46.980252 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.558860 ], [ 29.970703, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.091797, 46.437857 ], [ 29.003906, 46.558860 ], [ 28.828125, 46.498392 ], [ 28.916016, 46.316584 ], [ 28.476562, 45.644768 ], [ 28.212891, 45.521744 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.860191 ], [ 26.894531, 48.166085 ], [ 26.542969, 48.224673 ], [ 26.806641, 48.400032 ], [ 27.509766, 48.516604 ], [ 28.212891, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.516604 ], [ 28.212891, 48.166085 ], [ 28.652344, 48.166085 ], [ 29.091797, 47.872144 ], [ 29.003906, 47.517201 ], [ 29.355469, 47.398349 ], [ 29.531250, 46.980252 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.558860 ], [ 29.970703, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.091797, 46.437857 ], [ 29.003906, 46.558860 ], [ 28.828125, 46.498392 ], [ 28.916016, 46.316584 ], [ 28.476562, 45.644768 ], [ 28.212891, 45.521744 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.860191 ], [ 26.894531, 48.166085 ], [ 26.542969, 48.224673 ], [ 26.806641, 48.400032 ], [ 27.509766, 48.516604 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.564453, 51.454007 ], [ 28.916016, 51.618017 ], [ 29.179688, 51.399206 ], [ 30.146484, 51.454007 ], [ 30.498047, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.849609, 52.052490 ], [ 31.728516, 52.106505 ], [ 32.080078, 52.106505 ], [ 32.343750, 52.321911 ], [ 32.695312, 52.268157 ], [ 33.750000, 52.375599 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.618017 ], [ 34.189453, 51.289406 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.792047 ], [ 35.332031, 50.625073 ], [ 36.562500, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.951220 ], [ 38.583984, 49.951220 ], [ 39.990234, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.814453, 48.283193 ], [ 39.726562, 47.931066 ], [ 38.759766, 47.872144 ], [ 38.232422, 47.576526 ], [ 38.144531, 47.159840 ], [ 37.353516, 47.040182 ], [ 36.738281, 46.739861 ], [ 35.771484, 46.679594 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 35.507812, 45.460131 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 35.156250, 44.964798 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.890008 ], [ 33.222656, 46.134170 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 30.322266, 46.073231 ], [ 29.531250, 45.336702 ], [ 29.091797, 45.521744 ], [ 28.652344, 45.336702 ], [ 28.212891, 45.521744 ], [ 28.476562, 45.644768 ], [ 28.916016, 46.316584 ], [ 28.828125, 46.498392 ], [ 29.003906, 46.558860 ], [ 29.091797, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.970703, 46.437857 ], [ 29.794922, 46.558860 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.980252 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.166085 ], [ 28.212891, 48.166085 ], [ 27.509766, 48.516604 ], [ 26.806641, 48.400032 ], [ 26.542969, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.136719, 47.931066 ], [ 24.785156, 47.754098 ], [ 24.345703, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.931066 ], [ 22.587891, 48.166085 ], [ 22.060547, 48.458352 ], [ 22.500000, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.378906, 50.345460 ], [ 23.906250, 50.457504 ], [ 23.994141, 50.736455 ], [ 23.466797, 51.618017 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.944265 ], [ 26.279297, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.618017 ], [ 28.564453, 51.454007 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.375599 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.618017 ], [ 34.189453, 51.289406 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.792047 ], [ 35.332031, 50.625073 ], [ 36.562500, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.951220 ], [ 38.583984, 49.951220 ], [ 39.990234, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.814453, 48.283193 ], [ 39.726562, 47.931066 ], [ 38.759766, 47.872144 ], [ 38.232422, 47.576526 ], [ 38.144531, 47.159840 ], [ 37.353516, 47.040182 ], [ 36.738281, 46.739861 ], [ 35.771484, 46.679594 ], [ 34.892578, 46.316584 ], [ 34.980469, 45.706179 ], [ 35.507812, 45.460131 ], [ 36.474609, 45.521744 ], [ 36.298828, 45.151053 ], [ 35.156250, 44.964798 ], [ 33.837891, 44.402392 ], [ 33.310547, 44.590467 ], [ 33.486328, 45.089036 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.890008 ], [ 33.222656, 46.134170 ], [ 31.728516, 46.377254 ], [ 31.640625, 46.739861 ], [ 30.673828, 46.619261 ], [ 30.322266, 46.073231 ], [ 29.531250, 45.336702 ], [ 29.091797, 45.521744 ], [ 28.652344, 45.336702 ], [ 28.212891, 45.521744 ], [ 28.476562, 45.644768 ], [ 28.916016, 46.316584 ], [ 28.828125, 46.498392 ], [ 29.003906, 46.558860 ], [ 29.091797, 46.437857 ], [ 29.707031, 46.377254 ], [ 29.970703, 46.437857 ], [ 29.794922, 46.558860 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.980252 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.166085 ], [ 28.212891, 48.166085 ], [ 27.509766, 48.516604 ], [ 26.806641, 48.400032 ], [ 26.542969, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.136719, 47.931066 ], [ 24.785156, 47.754098 ], [ 24.345703, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.931066 ], [ 22.587891, 48.166085 ], [ 22.060547, 48.458352 ], [ 22.500000, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.378906, 50.345460 ], [ 23.906250, 50.457504 ], [ 23.994141, 50.736455 ], [ 23.466797, 51.618017 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.944265 ], [ 26.279297, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.618017 ], [ 28.564453, 51.454007 ], [ 28.916016, 51.618017 ], [ 29.179688, 51.399206 ], [ 30.146484, 51.454007 ], [ 30.498047, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.849609, 52.052490 ], [ 31.728516, 52.106505 ], [ 32.080078, 52.106505 ], [ 32.343750, 52.321911 ], [ 32.695312, 52.268157 ], [ 33.750000, 52.375599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 43.261206 ], [ 43.681641, 42.747012 ], [ 43.857422, 42.617791 ], [ 44.472656, 42.747012 ], [ 45.439453, 42.553080 ], [ 45.703125, 42.098222 ], [ 46.318359, 41.902277 ], [ 46.142578, 41.771312 ], [ 46.582031, 41.244772 ], [ 46.494141, 41.112469 ], [ 45.878906, 41.178654 ], [ 45.175781, 41.442726 ], [ 44.912109, 41.310824 ], [ 43.505859, 41.112469 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.574361 ], [ 41.660156, 41.967659 ], [ 41.396484, 42.682435 ], [ 40.869141, 43.068888 ], [ 40.253906, 43.133061 ], [ 39.902344, 43.452919 ], [ 39.990234, 43.580391 ], [ 42.363281, 43.261206 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.990234, 43.580391 ], [ 42.363281, 43.261206 ], [ 43.681641, 42.747012 ], [ 43.857422, 42.617791 ], [ 44.472656, 42.747012 ], [ 45.439453, 42.553080 ], [ 45.703125, 42.098222 ], [ 46.318359, 41.902277 ], [ 46.142578, 41.771312 ], [ 46.582031, 41.244772 ], [ 46.494141, 41.112469 ], [ 45.878906, 41.178654 ], [ 45.175781, 41.442726 ], [ 44.912109, 41.310824 ], [ 43.505859, 41.112469 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.574361 ], [ 41.660156, 41.967659 ], [ 41.396484, 42.682435 ], [ 40.869141, 43.068888 ], [ 40.253906, 43.133061 ], [ 39.902344, 43.452919 ], [ 39.990234, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.949892 ], [ 8.349609, 36.949892 ], [ 8.173828, 36.456636 ], [ 8.349609, 35.532226 ], [ 8.085938, 34.669359 ], [ 7.470703, 34.161818 ], [ 7.558594, 33.358062 ], [ 8.349609, 32.768800 ], [ 8.437500, 32.546813 ], [ 9.052734, 32.175612 ], [ 9.755859, 29.458731 ], [ 9.843750, 28.998532 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.761330 ], [ 9.580078, 27.215556 ], [ 9.667969, 26.588527 ], [ 9.316406, 26.115986 ], [ 9.843750, 25.403585 ], [ 9.931641, 25.005973 ], [ 10.283203, 24.447150 ], [ 10.722656, 24.607069 ], [ 11.513672, 24.126702 ], [ 11.953125, 23.483401 ], [ 8.525391, 21.616579 ], [ 5.625000, 19.642588 ], [ 4.218750, 19.228177 ], [ 3.076172, 19.062118 ], [ 3.076172, 19.725342 ], [ 2.021484, 20.220966 ], [ 1.757812, 20.632784 ], [ -8.701172, 27.449790 ], [ -8.701172, 28.844674 ], [ -7.119141, 29.611670 ], [ -5.273438, 30.069094 ], [ -4.921875, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.324276 ], [ -1.142578, 32.694866 ], [ -1.406250, 32.916485 ], [ -1.845703, 34.597042 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.175781, 35.889050 ], [ 0.439453, 36.315125 ], [ 1.406250, 36.668419 ], [ 4.746094, 36.879621 ], [ 5.273438, 36.738884 ], [ 6.240234, 37.160317 ], [ 7.294922, 37.160317 ], [ 7.734375, 36.949892 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.160317 ], [ 7.734375, 36.949892 ], [ 8.349609, 36.949892 ], [ 8.173828, 36.456636 ], [ 8.349609, 35.532226 ], [ 8.085938, 34.669359 ], [ 7.470703, 34.161818 ], [ 7.558594, 33.358062 ], [ 8.349609, 32.768800 ], [ 8.437500, 32.546813 ], [ 9.052734, 32.175612 ], [ 9.755859, 29.458731 ], [ 9.843750, 28.998532 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.761330 ], [ 9.580078, 27.215556 ], [ 9.667969, 26.588527 ], [ 9.316406, 26.115986 ], [ 9.843750, 25.403585 ], [ 9.931641, 25.005973 ], [ 10.283203, 24.447150 ], [ 10.722656, 24.607069 ], [ 11.513672, 24.126702 ], [ 11.953125, 23.483401 ], [ 8.525391, 21.616579 ], [ 5.625000, 19.642588 ], [ 4.218750, 19.228177 ], [ 3.076172, 19.062118 ], [ 3.076172, 19.725342 ], [ 2.021484, 20.220966 ], [ 1.757812, 20.632784 ], [ -8.701172, 27.449790 ], [ -8.701172, 28.844674 ], [ -7.119141, 29.611670 ], [ -5.273438, 30.069094 ], [ -4.921875, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.324276 ], [ -1.142578, 32.694866 ], [ -1.406250, 32.916485 ], [ -1.845703, 34.597042 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.175781, 35.889050 ], [ 0.439453, 36.315125 ], [ 1.406250, 36.668419 ], [ 4.746094, 36.879621 ], [ 5.273438, 36.738884 ], [ 6.240234, 37.160317 ], [ 7.294922, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.842674 ], [ 13.007812, 32.916485 ], [ 13.886719, 32.768800 ], [ 15.205078, 32.324276 ], [ 15.644531, 31.428663 ], [ 18.017578, 30.826781 ], [ 19.072266, 30.297018 ], [ 19.511719, 30.600094 ], [ 20.039062, 31.052934 ], [ 19.775391, 31.802893 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.768800 ], [ 21.533203, 32.916485 ], [ 22.851562, 32.694866 ], [ 23.203125, 32.249974 ], [ 24.873047, 31.952162 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.128199 ], [ 24.873047, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.305561 ], [ 24.960938, 20.055931 ], [ 23.818359, 20.055931 ], [ 23.818359, 19.642588 ], [ 15.820312, 23.483401 ], [ 14.765625, 22.917923 ], [ 14.062500, 22.512557 ], [ 13.535156, 23.079732 ], [ 11.953125, 23.483401 ], [ 11.513672, 24.126702 ], [ 10.722656, 24.607069 ], [ 10.283203, 24.447150 ], [ 9.931641, 25.005973 ], [ 9.843750, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.667969, 26.588527 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.998532 ], [ 9.404297, 30.372875 ], [ 9.931641, 30.600094 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.428663 ], [ 11.425781, 32.398516 ], [ 11.425781, 33.137551 ], [ 12.656250, 32.842674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.425781, 33.137551 ], [ 12.656250, 32.842674 ], [ 13.007812, 32.916485 ], [ 13.886719, 32.768800 ], [ 15.205078, 32.324276 ], [ 15.644531, 31.428663 ], [ 18.017578, 30.826781 ], [ 19.072266, 30.297018 ], [ 19.511719, 30.600094 ], [ 20.039062, 31.052934 ], [ 19.775391, 31.802893 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.768800 ], [ 21.533203, 32.916485 ], [ 22.851562, 32.694866 ], [ 23.203125, 32.249974 ], [ 24.873047, 31.952162 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.128199 ], [ 24.873047, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.305561 ], [ 24.960938, 20.055931 ], [ 23.818359, 20.055931 ], [ 23.818359, 19.642588 ], [ 15.820312, 23.483401 ], [ 14.765625, 22.917923 ], [ 14.062500, 22.512557 ], [ 13.535156, 23.079732 ], [ 11.953125, 23.483401 ], [ 11.513672, 24.126702 ], [ 10.722656, 24.607069 ], [ 10.283203, 24.447150 ], [ 9.931641, 25.005973 ], [ 9.843750, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.667969, 26.588527 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.998532 ], [ 9.404297, 30.372875 ], [ 9.931641, 30.600094 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.428663 ], [ 11.425781, 32.398516 ], [ 11.425781, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.535156, 23.079732 ], [ 14.062500, 22.512557 ], [ 14.765625, 22.917923 ], [ 15.029297, 21.371244 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.797201 ], [ 15.820312, 20.468189 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.978733 ], [ 15.205078, 16.636192 ], [ 13.886719, 15.707663 ], [ 13.535156, 14.434680 ], [ 13.886719, 14.008696 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.414062, 12.897489 ], [ 14.150391, 12.811801 ], [ 14.150391, 12.554564 ], [ 13.974609, 12.468760 ], [ 13.271484, 13.581921 ], [ 13.007812, 13.667338 ], [ 12.216797, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.634766, 13.325485 ], [ 10.107422, 13.325485 ], [ 9.492188, 12.897489 ], [ 8.964844, 12.897489 ], [ 7.734375, 13.410994 ], [ 7.294922, 13.154376 ], [ 6.767578, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.361328, 13.923404 ], [ 4.306641, 13.752725 ], [ 4.042969, 13.581921 ], [ 3.955078, 12.983148 ], [ 3.603516, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.297068 ], [ 2.460938, 12.297068 ], [ 2.109375, 11.953349 ], [ 2.109375, 12.640338 ], [ 0.966797, 12.897489 ], [ 0.966797, 13.410994 ], [ 0.351562, 14.008696 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.944785 ], [ 0.966797, 15.029686 ], [ 1.318359, 15.368950 ], [ 3.603516, 15.623037 ], [ 3.691406, 16.214675 ], [ 4.218750, 16.888660 ], [ 4.218750, 19.228177 ], [ 5.625000, 19.642588 ], [ 8.525391, 21.616579 ], [ 11.953125, 23.483401 ], [ 13.535156, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.953125, 23.483401 ], [ 13.535156, 23.079732 ], [ 14.062500, 22.512557 ], [ 14.765625, 22.917923 ], [ 15.029297, 21.371244 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.797201 ], [ 15.820312, 20.468189 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.978733 ], [ 15.205078, 16.636192 ], [ 13.886719, 15.707663 ], [ 13.535156, 14.434680 ], [ 13.886719, 14.008696 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.414062, 12.897489 ], [ 14.150391, 12.811801 ], [ 14.150391, 12.554564 ], [ 13.974609, 12.468760 ], [ 13.271484, 13.581921 ], [ 13.007812, 13.667338 ], [ 12.216797, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.634766, 13.325485 ], [ 10.107422, 13.325485 ], [ 9.492188, 12.897489 ], [ 8.964844, 12.897489 ], [ 7.734375, 13.410994 ], [ 7.294922, 13.154376 ], [ 6.767578, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.361328, 13.923404 ], [ 4.306641, 13.752725 ], [ 4.042969, 13.581921 ], [ 3.955078, 12.983148 ], [ 3.603516, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.297068 ], [ 2.460938, 12.297068 ], [ 2.109375, 11.953349 ], [ 2.109375, 12.640338 ], [ 0.966797, 12.897489 ], [ 0.966797, 13.410994 ], [ 0.351562, 14.008696 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.944785 ], [ 0.966797, 15.029686 ], [ 1.318359, 15.368950 ], [ 3.603516, 15.623037 ], [ 3.691406, 16.214675 ], [ 4.218750, 16.888660 ], [ 4.218750, 19.228177 ], [ 5.625000, 19.642588 ], [ 8.525391, 21.616579 ], [ 11.953125, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.703125, 10.487812 ], [ 1.406250, 9.882275 ], [ 1.406250, 9.362353 ], [ 1.582031, 9.188870 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.227934 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.439453, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.754795 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.092166 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.092166 ], [ 0.878906, 11.005904 ], [ 0.703125, 10.487812 ], [ 1.406250, 9.882275 ], [ 1.406250, 9.362353 ], [ 1.582031, 9.188870 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.227934 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.439453, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.754795 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.515625, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.515625, 10.401378 ], [ 3.691406, 10.141932 ], [ 2.900391, 9.188870 ], [ 2.636719, 8.581021 ], [ 2.636719, 6.315299 ], [ 1.845703, 6.227934 ], [ 1.582031, 6.839170 ], [ 1.582031, 9.188870 ], [ 1.406250, 9.362353 ], [ 1.406250, 9.882275 ], [ 0.703125, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.178402 ], [ 1.406250, 11.609193 ], [ 1.933594, 11.695273 ], [ 2.460938, 12.297068 ], [ 2.812500, 12.297068 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.297068 ], [ 3.603516, 11.695273 ], [ 3.515625, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.515625, 10.401378 ], [ 3.691406, 10.141932 ], [ 2.900391, 9.188870 ], [ 2.636719, 8.581021 ], [ 2.636719, 6.315299 ], [ 1.845703, 6.227934 ], [ 1.582031, 6.839170 ], [ 1.582031, 9.188870 ], [ 1.406250, 9.362353 ], [ 1.406250, 9.882275 ], [ 0.703125, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.178402 ], [ 1.406250, 11.609193 ], [ 1.933594, 11.695273 ], [ 2.460938, 12.297068 ], [ 2.812500, 12.297068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.416016, 13.496473 ], [ 6.767578, 13.154376 ], [ 7.294922, 13.154376 ], [ 7.734375, 13.410994 ], [ 8.964844, 12.897489 ], [ 9.492188, 12.897489 ], [ 10.107422, 13.325485 ], [ 10.634766, 13.325485 ], [ 10.986328, 13.410994 ], [ 12.216797, 13.068777 ], [ 13.007812, 13.667338 ], [ 13.271484, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.554564 ], [ 14.501953, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 11.689453, 7.013668 ], [ 10.986328, 6.664608 ], [ 10.458984, 7.100893 ], [ 10.107422, 7.100893 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.489983 ], [ 8.437500, 4.828260 ], [ 7.382812, 4.477856 ], [ 7.031250, 4.477856 ], [ 6.679688, 4.302591 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.581021 ], [ 2.900391, 9.188870 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.401378 ], [ 3.779297, 10.746969 ], [ 3.515625, 11.350797 ], [ 3.603516, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.042969, 13.581921 ], [ 4.306641, 13.752725 ], [ 5.361328, 13.923404 ], [ 6.416016, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.361328, 13.923404 ], [ 6.416016, 13.496473 ], [ 6.767578, 13.154376 ], [ 7.294922, 13.154376 ], [ 7.734375, 13.410994 ], [ 8.964844, 12.897489 ], [ 9.492188, 12.897489 ], [ 10.107422, 13.325485 ], [ 10.634766, 13.325485 ], [ 10.986328, 13.410994 ], [ 12.216797, 13.068777 ], [ 13.007812, 13.667338 ], [ 13.271484, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.554564 ], [ 14.501953, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 11.689453, 7.013668 ], [ 10.986328, 6.664608 ], [ 10.458984, 7.100893 ], [ 10.107422, 7.100893 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.489983 ], [ 8.437500, 4.828260 ], [ 7.382812, 4.477856 ], [ 7.031250, 4.477856 ], [ 6.679688, 4.302591 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.581021 ], [ 2.900391, 9.188870 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.401378 ], [ 3.779297, 10.746969 ], [ 3.515625, 11.350797 ], [ 3.603516, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.042969, 13.581921 ], [ 4.306641, 13.752725 ], [ 5.361328, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.142502 ], [ 9.492188, 1.054628 ], [ 9.228516, 1.230374 ], [ 9.580078, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.142502 ], [ 9.492188, 1.054628 ], [ 9.228516, 1.230374 ], [ 9.580078, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.642588 ], [ 23.818359, 15.623037 ], [ 22.939453, 15.707663 ], [ 22.236328, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.838080 ], [ 22.236328, 13.410994 ], [ 21.884766, 12.640338 ], [ 22.236328, 12.726084 ], [ 22.412109, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.436955 ], [ 22.851562, 11.178402 ], [ 22.148438, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.917969, 9.535749 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.972198 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.083984, 7.536764 ], [ 15.205078, 7.449624 ], [ 15.380859, 7.710992 ], [ 14.941406, 8.841651 ], [ 14.501953, 9.015302 ], [ 13.886719, 9.622414 ], [ 14.150391, 10.055403 ], [ 15.380859, 10.055403 ], [ 14.853516, 10.919618 ], [ 14.853516, 12.297068 ], [ 14.414062, 12.897489 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 14.008696 ], [ 13.535156, 14.434680 ], [ 13.886719, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.978733 ], [ 15.644531, 19.973349 ], [ 15.820312, 20.468189 ], [ 15.468750, 20.797201 ], [ 15.468750, 21.125498 ], [ 15.029297, 21.371244 ], [ 14.765625, 22.917923 ], [ 15.820312, 23.483401 ], [ 23.818359, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.483401 ], [ 23.818359, 19.642588 ], [ 23.818359, 15.623037 ], [ 22.939453, 15.707663 ], [ 22.236328, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.838080 ], [ 22.236328, 13.410994 ], [ 21.884766, 12.640338 ], [ 22.236328, 12.726084 ], [ 22.412109, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.436955 ], [ 22.851562, 11.178402 ], [ 22.148438, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.917969, 9.535749 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.972198 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.083984, 7.536764 ], [ 15.205078, 7.449624 ], [ 15.380859, 7.710992 ], [ 14.941406, 8.841651 ], [ 14.501953, 9.015302 ], [ 13.886719, 9.622414 ], [ 14.150391, 10.055403 ], [ 15.380859, 10.055403 ], [ 14.853516, 10.919618 ], [ 14.853516, 12.297068 ], [ 14.414062, 12.897489 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 14.008696 ], [ 13.535156, 14.434680 ], [ 13.886719, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.978733 ], [ 15.644531, 19.973349 ], [ 15.820312, 20.468189 ], [ 15.468750, 20.797201 ], [ 15.468750, 21.125498 ], [ 15.029297, 21.371244 ], [ 14.765625, 22.917923 ], [ 15.820312, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 12.297068 ], [ 14.853516, 10.919618 ], [ 15.380859, 10.055403 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 14.501953, 9.015302 ], [ 14.941406, 8.841651 ], [ 15.380859, 7.710992 ], [ 14.765625, 6.489983 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.074695 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.876953, 3.951941 ], [ 8.701172, 4.390229 ], [ 8.437500, 4.565474 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.458984, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.501953, 12.125264 ], [ 14.150391, 12.554564 ], [ 14.150391, 12.811801 ], [ 14.414062, 12.897489 ], [ 14.853516, 12.297068 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.853516, 12.297068 ], [ 14.853516, 10.919618 ], [ 15.380859, 10.055403 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 14.501953, 9.015302 ], [ 14.941406, 8.841651 ], [ 15.380859, 7.710992 ], [ 14.765625, 6.489983 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.074695 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.876953, 3.951941 ], [ 8.701172, 4.390229 ], [ 8.437500, 4.565474 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.458984, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.501953, 12.125264 ], [ 14.150391, 12.554564 ], [ 14.150391, 12.811801 ], [ 14.414062, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.746969 ], [ 23.466797, 10.141932 ], [ 23.378906, 9.275622 ], [ 23.378906, 9.015302 ], [ 25.048828, 7.885147 ], [ 25.048828, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.158203, 5.615986 ], [ 27.333984, 5.266008 ], [ 26.982422, 5.178482 ], [ 25.576172, 5.266008 ], [ 25.224609, 5.178482 ], [ 25.048828, 5.003394 ], [ 24.785156, 4.915833 ], [ 24.345703, 5.178482 ], [ 23.291016, 4.653080 ], [ 22.763672, 4.740675 ], [ 22.324219, 4.039618 ], [ 20.917969, 4.390229 ], [ 19.423828, 5.090944 ], [ 18.896484, 4.740675 ], [ 18.457031, 4.214943 ], [ 18.369141, 3.513421 ], [ 17.050781, 3.776559 ], [ 16.523438, 3.250209 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.074695 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.414062, 4.740675 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.489983 ], [ 15.205078, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.972198 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 20.917969, 9.535749 ], [ 21.708984, 10.574222 ], [ 22.148438, 11.005904 ], [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.466797, 10.141932 ], [ 23.378906, 9.275622 ], [ 23.378906, 9.015302 ], [ 25.048828, 7.885147 ], [ 25.048828, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.158203, 5.615986 ], [ 27.333984, 5.266008 ], [ 26.982422, 5.178482 ], [ 25.576172, 5.266008 ], [ 25.224609, 5.178482 ], [ 25.048828, 5.003394 ], [ 24.785156, 4.915833 ], [ 24.345703, 5.178482 ], [ 23.291016, 4.653080 ], [ 22.763672, 4.740675 ], [ 22.324219, 4.039618 ], [ 20.917969, 4.390229 ], [ 19.423828, 5.090944 ], [ 18.896484, 4.740675 ], [ 18.457031, 4.214943 ], [ 18.369141, 3.513421 ], [ 17.050781, 3.776559 ], [ 16.523438, 3.250209 ], [ 15.996094, 2.284551 ], [ 15.820312, 3.074695 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.414062, 4.740675 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.489983 ], [ 15.205078, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.798079 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.972198 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 20.917969, 9.535749 ], [ 21.708984, 10.574222 ], [ 22.148438, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.169922, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.664062, 35.245619 ], [ 26.279297, 35.317366 ], [ 26.103516, 35.029996 ], [ 24.697266, 34.957995 ], [ 24.697266, 35.101934 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ], [ 24.169922, 35.389050 ] ] ], [ [ [ 26.542969, 41.574361 ], [ 26.279297, 40.979898 ], [ 26.015625, 40.847060 ], [ 24.873047, 40.979898 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 23.291016, 39.977120 ], [ 22.763672, 40.513799 ], [ 22.587891, 40.313043 ], [ 22.763672, 39.707187 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 22.412109, 36.456636 ], [ 21.621094, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.566406, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.917969, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.621094, 40.979898 ], [ 21.972656, 41.178654 ], [ 22.587891, 41.178654 ], [ 22.675781, 41.310824 ], [ 23.642578, 41.310824 ], [ 24.433594, 41.640078 ], [ 25.136719, 41.244772 ], [ 26.103516, 41.376809 ], [ 26.103516, 41.836828 ], [ 26.542969, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.642578, 35.746512 ], [ 24.169922, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.664062, 35.245619 ], [ 26.279297, 35.317366 ], [ 26.103516, 35.029996 ], [ 24.697266, 34.957995 ], [ 24.697266, 35.101934 ], [ 23.466797, 35.317366 ], [ 23.642578, 35.746512 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.542969, 41.574361 ], [ 26.279297, 40.979898 ], [ 26.015625, 40.847060 ], [ 24.873047, 40.979898 ], [ 23.642578, 40.713956 ], [ 24.345703, 40.178873 ], [ 23.818359, 39.977120 ], [ 23.291016, 39.977120 ], [ 22.763672, 40.513799 ], [ 22.587891, 40.313043 ], [ 22.763672, 39.707187 ], [ 23.291016, 39.232253 ], [ 22.939453, 39.027719 ], [ 23.994141, 38.272689 ], [ 23.994141, 37.718590 ], [ 23.027344, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.370157 ], [ 23.115234, 36.456636 ], [ 22.412109, 36.456636 ], [ 21.621094, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.566406, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.917969, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.621094, 40.979898 ], [ 21.972656, 41.178654 ], [ 22.587891, 41.178654 ], [ 22.675781, 41.310824 ], [ 23.642578, 41.310824 ], [ 24.433594, 41.640078 ], [ 25.136719, 41.244772 ], [ 26.103516, 41.376809 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.837891, 35.317366 ], [ 33.925781, 35.101934 ], [ 33.398438, 35.029996 ], [ 33.310547, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.837891, 35.317366 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.837891, 35.317366 ], [ 33.925781, 35.101934 ], [ 33.398438, 35.029996 ], [ 33.310547, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 35.029996 ], [ 33.925781, 35.101934 ], [ 33.925781, 35.029996 ], [ 32.958984, 34.597042 ], [ 32.431641, 34.741612 ], [ 32.255859, 35.173808 ], [ 33.310547, 35.173808 ], [ 33.398438, 35.029996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.310547, 35.173808 ], [ 33.398438, 35.029996 ], [ 33.925781, 35.101934 ], [ 33.925781, 35.029996 ], [ 32.958984, 34.597042 ], [ 32.431641, 34.741612 ], [ 32.255859, 35.173808 ], [ 33.310547, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.640625, 31.503629 ], [ 31.904297, 30.977609 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.189453, 31.278551 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.152161 ], [ 34.101562, 27.839076 ], [ 33.837891, 27.683528 ], [ 33.134766, 28.459033 ], [ 32.343750, 29.916852 ], [ 32.255859, 29.764377 ], [ 32.695312, 28.767659 ], [ 34.101562, 26.194877 ], [ 34.716797, 25.085599 ], [ 35.683594, 23.966176 ], [ 35.419922, 23.805450 ], [ 35.507812, 23.160563 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.305561 ], [ 24.697266, 30.069094 ], [ 24.873047, 30.675715 ], [ 24.785156, 31.128199 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.653381 ], [ 28.828125, 30.902225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.653381 ], [ 28.828125, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.640625, 31.503629 ], [ 31.904297, 30.977609 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.189453, 31.278551 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.152161 ], [ 34.101562, 27.839076 ], [ 33.837891, 27.683528 ], [ 33.134766, 28.459033 ], [ 32.343750, 29.916852 ], [ 32.255859, 29.764377 ], [ 32.695312, 28.767659 ], [ 34.101562, 26.194877 ], [ 34.716797, 25.085599 ], [ 35.683594, 23.966176 ], [ 35.419922, 23.805450 ], [ 35.507812, 23.160563 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.305561 ], [ 24.697266, 30.069094 ], [ 24.873047, 30.675715 ], [ 24.785156, 31.128199 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.653381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.826172, 41.376809 ], [ 38.320312, 40.979898 ], [ 39.462891, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.484375, 41.574361 ], [ 42.539062, 41.640078 ], [ 43.505859, 41.112469 ], [ 43.681641, 40.780541 ], [ 43.593750, 40.313043 ], [ 44.384766, 40.044438 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.384766, 38.341656 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.230328 ], [ 44.208984, 37.020098 ], [ 43.857422, 37.300275 ], [ 42.714844, 37.439974 ], [ 42.275391, 37.230328 ], [ 40.605469, 37.160317 ], [ 39.462891, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.949892 ], [ 37.001953, 36.668419 ], [ 36.738281, 36.879621 ], [ 36.650391, 36.315125 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 31.640625, 36.668419 ], [ 30.585938, 36.738884 ], [ 30.322266, 36.315125 ], [ 29.619141, 36.173357 ], [ 28.652344, 36.738884 ], [ 27.597656, 36.668419 ], [ 26.982422, 37.718590 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.771312 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ] ] ], [ [ [ 27.949219, 42.032974 ], [ 28.037109, 41.640078 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.597656, 41.046217 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.979898 ], [ 26.542969, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.070312, 42.163403 ], [ 27.949219, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.098222 ], [ 36.826172, 41.376809 ], [ 38.320312, 40.979898 ], [ 39.462891, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.484375, 41.574361 ], [ 42.539062, 41.640078 ], [ 43.505859, 41.112469 ], [ 43.681641, 40.780541 ], [ 43.593750, 40.313043 ], [ 44.384766, 40.044438 ], [ 44.736328, 39.774769 ], [ 44.033203, 39.436193 ], [ 44.384766, 38.341656 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.230328 ], [ 44.208984, 37.020098 ], [ 43.857422, 37.300275 ], [ 42.714844, 37.439974 ], [ 42.275391, 37.230328 ], [ 40.605469, 37.160317 ], [ 39.462891, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.949892 ], [ 37.001953, 36.668419 ], [ 36.738281, 36.879621 ], [ 36.650391, 36.315125 ], [ 36.123047, 35.889050 ], [ 35.771484, 36.315125 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.628906, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.431641, 36.173357 ], [ 31.640625, 36.668419 ], [ 30.585938, 36.738884 ], [ 30.322266, 36.315125 ], [ 29.619141, 36.173357 ], [ 28.652344, 36.738884 ], [ 27.597656, 36.668419 ], [ 26.982422, 37.718590 ], [ 26.279297, 38.272689 ], [ 26.718750, 39.027719 ], [ 26.103516, 39.504041 ], [ 27.246094, 40.446947 ], [ 28.740234, 40.513799 ], [ 29.179688, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.771312 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.098222 ] ] ], [ [ [ 27.070312, 42.163403 ], [ 27.949219, 42.032974 ], [ 28.037109, 41.640078 ], [ 28.916016, 41.310824 ], [ 28.740234, 41.112469 ], [ 27.597656, 41.046217 ], [ 27.158203, 40.713956 ], [ 26.279297, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.979898 ], [ 26.542969, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.070312, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 34.597042 ], [ 36.562500, 34.234512 ], [ 36.035156, 33.870416 ], [ 35.771484, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.419922, 33.137551 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.943360 ], [ 35.947266, 34.669359 ], [ 36.386719, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.947266, 34.669359 ], [ 36.386719, 34.597042 ], [ 36.562500, 34.234512 ], [ 36.035156, 33.870416 ], [ 35.771484, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.419922, 33.137551 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.943360 ], [ 35.947266, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.668419 ], [ 41.220703, 36.385913 ], [ 41.308594, 35.675147 ], [ 40.957031, 34.452218 ], [ 38.759766, 33.431441 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.768800 ], [ 36.035156, 33.870416 ], [ 36.562500, 34.234512 ], [ 36.386719, 34.597042 ], [ 35.947266, 34.669359 ], [ 35.859375, 35.460670 ], [ 36.123047, 35.889050 ], [ 36.650391, 36.315125 ], [ 36.738281, 36.879621 ], [ 37.001953, 36.668419 ], [ 38.144531, 36.949892 ], [ 38.671875, 36.738884 ], [ 39.462891, 36.738884 ], [ 40.605469, 37.160317 ], [ 42.275391, 37.230328 ], [ 41.835938, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.275391, 37.230328 ], [ 41.835938, 36.668419 ], [ 41.220703, 36.385913 ], [ 41.308594, 35.675147 ], [ 40.957031, 34.452218 ], [ 38.759766, 33.431441 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.768800 ], [ 36.035156, 33.870416 ], [ 36.562500, 34.234512 ], [ 36.386719, 34.597042 ], [ 35.947266, 34.669359 ], [ 35.859375, 35.460670 ], [ 36.123047, 35.889050 ], [ 36.650391, 36.315125 ], [ 36.738281, 36.879621 ], [ 37.001953, 36.668419 ], [ 38.144531, 36.949892 ], [ 38.671875, 36.738884 ], [ 39.462891, 36.738884 ], [ 40.605469, 37.160317 ], [ 42.275391, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 37.300275 ], [ 44.208984, 37.020098 ], [ 44.736328, 37.230328 ], [ 45.351562, 36.031332 ], [ 46.054688, 35.746512 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.813803 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.063924 ], [ 47.285156, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.524413 ], [ 48.515625, 29.993002 ], [ 47.285156, 30.069094 ], [ 46.494141, 29.152161 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.203405 ], [ 40.341797, 31.952162 ], [ 39.111328, 32.175612 ], [ 38.759766, 33.431441 ], [ 40.957031, 34.452218 ], [ 41.308594, 35.675147 ], [ 41.220703, 36.385913 ], [ 41.835938, 36.668419 ], [ 42.275391, 37.230328 ], [ 42.714844, 37.439974 ], [ 43.857422, 37.300275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.714844, 37.439974 ], [ 43.857422, 37.300275 ], [ 44.208984, 37.020098 ], [ 44.736328, 37.230328 ], [ 45.351562, 36.031332 ], [ 46.054688, 35.746512 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.813803 ], [ 45.351562, 34.016242 ], [ 46.054688, 33.063924 ], [ 47.285156, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.524413 ], [ 48.515625, 29.993002 ], [ 47.285156, 30.069094 ], [ 46.494141, 29.152161 ], [ 44.648438, 29.228890 ], [ 41.835938, 31.203405 ], [ 40.341797, 31.952162 ], [ 39.111328, 32.175612 ], [ 38.759766, 33.431441 ], [ 40.957031, 34.452218 ], [ 41.308594, 35.675147 ], [ 41.220703, 36.385913 ], [ 41.835938, 36.668419 ], [ 42.275391, 37.230328 ], [ 42.714844, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.683594, 32.768800 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.892578, 31.877558 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.332031, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.892578, 31.877558 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.332031, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.771484, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.332031, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.892578, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.877558 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.332031, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.892578, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 32.175612 ], [ 38.935547, 32.026706 ], [ 37.001953, 31.578535 ], [ 37.968750, 30.524413 ], [ 37.617188, 30.372875 ], [ 37.441406, 30.069094 ], [ 36.738281, 29.916852 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.768800 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.431441 ], [ 39.111328, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.431441 ], [ 39.111328, 32.175612 ], [ 38.935547, 32.026706 ], [ 37.001953, 31.578535 ], [ 37.968750, 30.524413 ], [ 37.617188, 30.372875 ], [ 37.441406, 30.069094 ], [ 36.738281, 29.916852 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.892578, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.768800 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.431441 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.043491 ], [ 36.914062, 20.879343 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.062312 ], [ 37.880859, 17.476432 ], [ 37.089844, 17.308688 ], [ 36.826172, 16.972741 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.210938, 13.581921 ], [ 35.859375, 12.640338 ], [ 35.244141, 12.125264 ], [ 34.716797, 10.919618 ], [ 34.189453, 10.660608 ], [ 33.925781, 9.535749 ], [ 33.750000, 9.535749 ], [ 33.662109, 10.401378 ], [ 33.134766, 10.746969 ], [ 33.046875, 11.523088 ], [ 33.134766, 12.211180 ], [ 32.695312, 12.297068 ], [ 32.607422, 12.039321 ], [ 31.992188, 12.039321 ], [ 32.255859, 11.695273 ], [ 32.343750, 11.092166 ], [ 31.289062, 9.882275 ], [ 30.761719, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.531250, 10.141932 ], [ 29.443359, 9.795678 ], [ 28.916016, 9.622414 ], [ 28.916016, 9.449062 ], [ 27.949219, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.709057 ], [ 26.718750, 9.535749 ], [ 26.455078, 9.622414 ], [ 25.751953, 10.487812 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.818359, 8.667918 ], [ 23.378906, 9.015302 ], [ 23.378906, 9.275622 ], [ 23.466797, 10.141932 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.436955 ], [ 22.500000, 11.695273 ], [ 22.412109, 12.297068 ], [ 22.236328, 12.726084 ], [ 21.884766, 12.640338 ], [ 22.236328, 13.410994 ], [ 22.148438, 13.838080 ], [ 22.500000, 14.093957 ], [ 22.236328, 14.349548 ], [ 22.939453, 15.707663 ], [ 23.818359, 15.623037 ], [ 23.818359, 20.055931 ], [ 24.960938, 20.055931 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 36.914062, 20.879343 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.062312 ], [ 37.880859, 17.476432 ], [ 37.089844, 17.308688 ], [ 36.826172, 16.972741 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.210938, 13.581921 ], [ 35.859375, 12.640338 ], [ 35.244141, 12.125264 ], [ 34.716797, 10.919618 ], [ 34.189453, 10.660608 ], [ 33.925781, 9.535749 ], [ 33.750000, 9.535749 ], [ 33.662109, 10.401378 ], [ 33.134766, 10.746969 ], [ 33.046875, 11.523088 ], [ 33.134766, 12.211180 ], [ 32.695312, 12.297068 ], [ 32.607422, 12.039321 ], [ 31.992188, 12.039321 ], [ 32.255859, 11.695273 ], [ 32.343750, 11.092166 ], [ 31.289062, 9.882275 ], [ 30.761719, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.531250, 10.141932 ], [ 29.443359, 9.795678 ], [ 28.916016, 9.622414 ], [ 28.916016, 9.449062 ], [ 27.949219, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.709057 ], [ 26.718750, 9.535749 ], [ 26.455078, 9.622414 ], [ 25.751953, 10.487812 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.818359, 8.667918 ], [ 23.378906, 9.015302 ], [ 23.378906, 9.275622 ], [ 23.466797, 10.141932 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.436955 ], [ 22.500000, 11.695273 ], [ 22.412109, 12.297068 ], [ 22.236328, 12.726084 ], [ 21.884766, 12.640338 ], [ 22.236328, 13.410994 ], [ 22.148438, 13.838080 ], [ 22.500000, 14.093957 ], [ 22.236328, 14.349548 ], [ 22.939453, 15.707663 ], [ 23.818359, 15.623037 ], [ 23.818359, 20.055931 ], [ 24.960938, 20.055931 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.134766, 12.211180 ], [ 33.046875, 11.523088 ], [ 33.134766, 10.746969 ], [ 33.662109, 10.401378 ], [ 33.750000, 9.535749 ], [ 33.925781, 9.535749 ], [ 33.925781, 8.754795 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 32.871094, 7.798079 ], [ 33.486328, 7.798079 ], [ 34.013672, 7.275292 ], [ 34.189453, 6.839170 ], [ 34.628906, 6.664608 ], [ 35.244141, 5.528511 ], [ 33.310547, 3.864255 ], [ 32.607422, 3.864255 ], [ 31.816406, 3.601142 ], [ 31.201172, 3.864255 ], [ 30.761719, 3.513421 ], [ 29.882812, 4.214943 ], [ 29.707031, 4.653080 ], [ 29.091797, 4.390229 ], [ 28.652344, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.477856 ], [ 27.158203, 5.615986 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.048828, 7.536764 ], [ 25.048828, 7.885147 ], [ 23.818359, 8.667918 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.487812 ], [ 26.455078, 9.622414 ], [ 26.718750, 9.535749 ], [ 27.070312, 9.709057 ], [ 27.773438, 9.622414 ], [ 27.949219, 9.449062 ], [ 28.916016, 9.449062 ], [ 28.916016, 9.622414 ], [ 29.443359, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.970703, 10.314919 ], [ 30.761719, 9.709057 ], [ 31.289062, 9.882275 ], [ 32.343750, 11.092166 ], [ 32.255859, 11.695273 ], [ 31.992188, 12.039321 ], [ 32.607422, 12.039321 ], [ 32.695312, 12.297068 ], [ 33.134766, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, 12.297068 ], [ 33.134766, 12.211180 ], [ 33.046875, 11.523088 ], [ 33.134766, 10.746969 ], [ 33.662109, 10.401378 ], [ 33.750000, 9.535749 ], [ 33.925781, 9.535749 ], [ 33.925781, 8.754795 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 32.871094, 7.798079 ], [ 33.486328, 7.798079 ], [ 34.013672, 7.275292 ], [ 34.189453, 6.839170 ], [ 34.628906, 6.664608 ], [ 35.244141, 5.528511 ], [ 33.310547, 3.864255 ], [ 32.607422, 3.864255 ], [ 31.816406, 3.601142 ], [ 31.201172, 3.864255 ], [ 30.761719, 3.513421 ], [ 29.882812, 4.214943 ], [ 29.707031, 4.653080 ], [ 29.091797, 4.390229 ], [ 28.652344, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.477856 ], [ 27.158203, 5.615986 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.048828, 7.536764 ], [ 25.048828, 7.885147 ], [ 23.818359, 8.667918 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.487812 ], [ 26.455078, 9.622414 ], [ 26.718750, 9.535749 ], [ 27.070312, 9.709057 ], [ 27.773438, 9.622414 ], [ 27.949219, 9.449062 ], [ 28.916016, 9.449062 ], [ 28.916016, 9.622414 ], [ 29.443359, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.970703, 10.314919 ], [ 30.761719, 9.709057 ], [ 31.289062, 9.882275 ], [ 32.343750, 11.092166 ], [ 32.255859, 11.695273 ], [ 31.992188, 12.039321 ], [ 32.607422, 12.039321 ], [ 32.695312, 12.297068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.601142 ], [ 34.980469, 1.933227 ], [ 33.837891, 0.175781 ], [ 33.837891, -0.878872 ], [ 31.816406, -0.966751 ], [ 30.761719, -0.966751 ], [ 29.794922, -1.406109 ], [ 29.531250, -1.318243 ], [ 29.531250, -0.527336 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.615223 ], [ 30.410156, 1.669686 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.372369 ], [ 30.761719, 3.513421 ], [ 31.201172, 3.864255 ], [ 31.816406, 3.601142 ], [ 32.607422, 3.864255 ], [ 33.310547, 3.864255 ], [ 33.925781, 4.302591 ], [ 34.453125, 3.601142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 4.302591 ], [ 34.453125, 3.601142 ], [ 34.980469, 1.933227 ], [ 33.837891, 0.175781 ], [ 33.837891, -0.878872 ], [ 31.816406, -0.966751 ], [ 30.761719, -0.966751 ], [ 29.794922, -1.406109 ], [ 29.531250, -1.318243 ], [ 29.531250, -0.527336 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.615223 ], [ 30.410156, 1.669686 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.372369 ], [ 30.761719, 3.513421 ], [ 31.201172, 3.864255 ], [ 31.816406, 3.601142 ], [ 32.607422, 3.864255 ], [ 33.310547, 3.864255 ], [ 33.925781, 4.302591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.935547, 16.888660 ], [ 39.199219, 15.961329 ], [ 41.132812, 14.519780 ], [ 42.539062, 13.068777 ], [ 43.066406, 12.726084 ], [ 42.714844, 12.468760 ], [ 42.275391, 12.554564 ], [ 40.869141, 14.179186 ], [ 39.990234, 14.519780 ], [ 39.287109, 14.604847 ], [ 39.023438, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 15.029686 ], [ 37.529297, 14.264383 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.826172, 16.972741 ], [ 37.089844, 17.308688 ], [ 37.880859, 17.476432 ], [ 38.408203, 18.062312 ], [ 38.935547, 16.888660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.062312 ], [ 38.935547, 16.888660 ], [ 39.199219, 15.961329 ], [ 41.132812, 14.519780 ], [ 42.539062, 13.068777 ], [ 43.066406, 12.726084 ], [ 42.714844, 12.468760 ], [ 42.275391, 12.554564 ], [ 40.869141, 14.179186 ], [ 39.990234, 14.519780 ], [ 39.287109, 14.604847 ], [ 39.023438, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 15.029686 ], [ 37.529297, 14.264383 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.826172, 16.972741 ], [ 37.089844, 17.308688 ], [ 37.880859, 17.476432 ], [ 38.408203, 18.062312 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.468760 ], [ 43.242188, 12.039321 ], [ 42.714844, 11.781325 ], [ 43.066406, 11.523088 ], [ 42.714844, 11.005904 ], [ 42.539062, 11.178402 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.695273 ], [ 42.275391, 12.554564 ], [ 42.714844, 12.468760 ], [ 43.066406, 12.726084 ], [ 43.242188, 12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.242188, 12.468760 ], [ 43.242188, 12.039321 ], [ 42.714844, 11.781325 ], [ 43.066406, 11.523088 ], [ 42.714844, 11.005904 ], [ 42.539062, 11.178402 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.695273 ], [ 42.275391, 12.554564 ], [ 42.714844, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 5.353521 ], [ 35.771484, 4.828260 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.056641, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.693359, 4.302591 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.790990 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.021065 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.726562, -3.601142 ], [ 39.550781, -4.302591 ], [ 39.199219, -4.653080 ], [ 37.705078, -3.601142 ], [ 37.617188, -3.074695 ], [ 33.837891, -0.878872 ], [ 33.837891, 0.175781 ], [ 34.980469, 1.933227 ], [ 34.453125, 3.601142 ], [ 33.925781, 4.302591 ], [ 35.244141, 5.528511 ], [ 35.771484, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.244141, 5.528511 ], [ 35.771484, 5.353521 ], [ 35.771484, 4.828260 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.056641, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.693359, 4.302591 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.790990 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.021065 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.726562, -3.601142 ], [ 39.550781, -4.302591 ], [ 39.199219, -4.653080 ], [ 37.705078, -3.601142 ], [ 37.617188, -3.074695 ], [ 33.837891, -0.878872 ], [ 33.837891, 0.175781 ], [ 34.980469, 1.933227 ], [ 34.453125, 3.601142 ], [ 33.925781, 4.302591 ], [ 35.244141, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.023438, 14.774883 ], [ 39.287109, 14.604847 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.179186 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.660156, 11.695273 ], [ 41.748047, 11.092166 ], [ 42.539062, 11.178402 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 46.933594, 8.059230 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 42.714844, 4.302591 ], [ 42.099609, 4.302591 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.771484, 4.828260 ], [ 35.771484, 5.353521 ], [ 35.244141, 5.528511 ], [ 34.628906, 6.664608 ], [ 34.189453, 6.839170 ], [ 34.013672, 7.275292 ], [ 33.486328, 7.798079 ], [ 32.871094, 7.798079 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.925781, 8.754795 ], [ 33.925781, 9.622414 ], [ 34.189453, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.640338 ], [ 36.210938, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 15.029686 ], [ 38.496094, 14.519780 ], [ 39.023438, 14.774883 ], [ 39.287109, 14.604847 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.179186 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.660156, 11.695273 ], [ 41.748047, 11.092166 ], [ 42.539062, 11.178402 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 46.933594, 8.059230 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 42.714844, 4.302591 ], [ 42.099609, 4.302591 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.771484, 4.828260 ], [ 35.771484, 5.353521 ], [ 35.244141, 5.528511 ], [ 34.628906, 6.664608 ], [ 34.189453, 6.839170 ], [ 34.013672, 7.275292 ], [ 33.486328, 7.798079 ], [ 32.871094, 7.798079 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.925781, 8.754795 ], [ 33.925781, 9.622414 ], [ 34.189453, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.640338 ], [ 36.210938, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.103516, 54.162434 ], [ 72.158203, 54.418930 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.540307 ], [ 74.355469, 53.592505 ], [ 76.816406, 54.521081 ], [ 76.464844, 54.213861 ], [ 77.783203, 53.435719 ], [ 79.980469, 50.903033 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.847573 ], [ 83.320312, 51.124213 ], [ 83.847656, 50.903033 ], [ 84.375000, 50.345460 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.724479 ], [ 86.748047, 49.837982 ], [ 87.275391, 49.267805 ], [ 86.572266, 48.574790 ], [ 85.693359, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.078125, 47.040182 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.583290 ], [ 81.914062, 45.336702 ], [ 79.892578, 44.964798 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.553080 ], [ 79.101562, 42.875964 ], [ 75.937500, 43.004647 ], [ 75.585938, 42.940339 ], [ 74.179688, 43.325178 ], [ 73.564453, 43.133061 ], [ 73.476562, 42.553080 ], [ 71.806641, 42.875964 ], [ 71.103516, 42.747012 ], [ 70.927734, 42.293564 ], [ 70.312500, 42.098222 ], [ 68.994141, 41.442726 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 67.939453, 41.178654 ], [ 66.708984, 41.178654 ], [ 66.445312, 42.032974 ], [ 66.005859, 42.032974 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.771094 ], [ 61.962891, 43.516689 ], [ 60.996094, 44.465151 ], [ 58.447266, 45.644768 ], [ 55.898438, 45.026950 ], [ 55.898438, 41.310824 ], [ 55.371094, 41.310824 ], [ 54.667969, 42.098222 ], [ 54.052734, 42.358544 ], [ 52.910156, 42.163403 ], [ 52.470703, 41.836828 ], [ 52.382812, 42.032974 ], [ 52.646484, 42.488302 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.087585 ], [ 50.273438, 44.339565 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.119141, 45.460131 ], [ 52.998047, 45.274886 ], [ 53.173828, 46.255847 ], [ 52.998047, 46.860191 ], [ 52.031250, 46.860191 ], [ 51.152344, 47.100045 ], [ 50.009766, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.515625, 46.619261 ], [ 48.691406, 47.100045 ], [ 47.988281, 47.754098 ], [ 47.285156, 47.754098 ], [ 46.406250, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.669922, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.515625, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.712891, 51.727028 ], [ 52.294922, 51.727028 ], [ 55.634766, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.589844, 50.569283 ], [ 59.853516, 50.847573 ], [ 61.259766, 50.847573 ], [ 61.523438, 51.289406 ], [ 59.941406, 51.998410 ], [ 60.908203, 52.482780 ], [ 60.732422, 52.749594 ], [ 61.699219, 53.014783 ], [ 60.908203, 53.696706 ], [ 61.435547, 54.007769 ], [ 65.126953, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.115234, 54.977614 ], [ 68.994141, 55.429013 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.994141, 55.429013 ], [ 70.839844, 55.178868 ], [ 71.103516, 54.162434 ], [ 72.158203, 54.418930 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.540307 ], [ 74.355469, 53.592505 ], [ 76.816406, 54.521081 ], [ 76.464844, 54.213861 ], [ 77.783203, 53.435719 ], [ 79.980469, 50.903033 ], [ 80.507812, 51.399206 ], [ 81.914062, 50.847573 ], [ 83.320312, 51.124213 ], [ 83.847656, 50.903033 ], [ 84.375000, 50.345460 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.724479 ], [ 86.748047, 49.837982 ], [ 87.275391, 49.267805 ], [ 86.572266, 48.574790 ], [ 85.693359, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.078125, 47.040182 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.583290 ], [ 81.914062, 45.336702 ], [ 79.892578, 44.964798 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.553080 ], [ 79.101562, 42.875964 ], [ 75.937500, 43.004647 ], [ 75.585938, 42.940339 ], [ 74.179688, 43.325178 ], [ 73.564453, 43.133061 ], [ 73.476562, 42.553080 ], [ 71.806641, 42.875964 ], [ 71.103516, 42.747012 ], [ 70.927734, 42.293564 ], [ 70.312500, 42.098222 ], [ 68.994141, 41.442726 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 67.939453, 41.178654 ], [ 66.708984, 41.178654 ], [ 66.445312, 42.032974 ], [ 66.005859, 42.032974 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.771094 ], [ 61.962891, 43.516689 ], [ 60.996094, 44.465151 ], [ 58.447266, 45.644768 ], [ 55.898438, 45.026950 ], [ 55.898438, 41.310824 ], [ 55.371094, 41.310824 ], [ 54.667969, 42.098222 ], [ 54.052734, 42.358544 ], [ 52.910156, 42.163403 ], [ 52.470703, 41.836828 ], [ 52.382812, 42.032974 ], [ 52.646484, 42.488302 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.087585 ], [ 50.273438, 44.339565 ], [ 50.273438, 44.653024 ], [ 51.240234, 44.527843 ], [ 51.240234, 45.274886 ], [ 52.119141, 45.460131 ], [ 52.998047, 45.274886 ], [ 53.173828, 46.255847 ], [ 52.998047, 46.860191 ], [ 52.031250, 46.860191 ], [ 51.152344, 47.100045 ], [ 50.009766, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.515625, 46.619261 ], [ 48.691406, 47.100045 ], [ 47.988281, 47.754098 ], [ 47.285156, 47.754098 ], [ 46.406250, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.669922, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.515625, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.712891, 51.727028 ], [ 52.294922, 51.727028 ], [ 55.634766, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.589844, 50.569283 ], [ 59.853516, 50.847573 ], [ 61.259766, 50.847573 ], [ 61.523438, 51.289406 ], [ 59.941406, 51.998410 ], [ 60.908203, 52.482780 ], [ 60.732422, 52.749594 ], [ 61.699219, 53.014783 ], [ 60.908203, 53.696706 ], [ 61.435547, 54.007769 ], [ 65.126953, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.115234, 54.977614 ], [ 68.994141, 55.429013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.996094, 44.465151 ], [ 61.962891, 43.516689 ], [ 64.863281, 43.771094 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.708984, 41.178654 ], [ 67.939453, 41.178654 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.994141, 41.442726 ], [ 70.312500, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.191406, 42.228517 ], [ 70.400391, 41.574361 ], [ 71.103516, 41.178654 ], [ 71.806641, 41.442726 ], [ 73.037109, 40.913513 ], [ 71.718750, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.400391, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.780541 ], [ 68.994141, 40.111689 ], [ 68.466797, 39.571822 ], [ 67.675781, 39.639538 ], [ 67.412109, 39.164141 ], [ 68.115234, 38.959409 ], [ 68.378906, 38.203655 ], [ 67.763672, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.445312, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.959409 ], [ 62.314453, 40.111689 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.310824 ], [ 60.380859, 41.244772 ], [ 60.029297, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.811522 ], [ 57.744141, 42.228517 ], [ 56.865234, 41.836828 ], [ 57.041016, 41.376809 ], [ 55.898438, 41.310824 ], [ 55.898438, 45.026950 ], [ 58.447266, 45.644768 ], [ 60.996094, 44.465151 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.447266, 45.644768 ], [ 60.996094, 44.465151 ], [ 61.962891, 43.516689 ], [ 64.863281, 43.771094 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.708984, 41.178654 ], [ 67.939453, 41.178654 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.994141, 41.442726 ], [ 70.312500, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.191406, 42.228517 ], [ 70.400391, 41.574361 ], [ 71.103516, 41.178654 ], [ 71.806641, 41.442726 ], [ 73.037109, 40.913513 ], [ 71.718750, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.400391, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.780541 ], [ 68.994141, 40.111689 ], [ 68.466797, 39.571822 ], [ 67.675781, 39.639538 ], [ 67.412109, 39.164141 ], [ 68.115234, 38.959409 ], [ 68.378906, 38.203655 ], [ 67.763672, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.445312, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.959409 ], [ 62.314453, 40.111689 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.310824 ], [ 60.380859, 41.244772 ], [ 60.029297, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.811522 ], [ 57.744141, 42.228517 ], [ 56.865234, 41.836828 ], [ 57.041016, 41.376809 ], [ 55.898438, 41.310824 ], [ 55.898438, 45.026950 ], [ 58.447266, 45.644768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.585938, 42.940339 ], [ 75.937500, 43.004647 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.553080 ], [ 80.244141, 42.358544 ], [ 80.068359, 42.163403 ], [ 78.486328, 41.640078 ], [ 78.134766, 41.244772 ], [ 76.904297, 41.112469 ], [ 76.464844, 40.446947 ], [ 75.410156, 40.580585 ], [ 74.707031, 40.380028 ], [ 73.740234, 39.909736 ], [ 73.916016, 39.707187 ], [ 73.652344, 39.436193 ], [ 71.718750, 39.300299 ], [ 70.488281, 39.639538 ], [ 69.433594, 39.571822 ], [ 69.521484, 40.111689 ], [ 70.576172, 39.977120 ], [ 70.927734, 40.245992 ], [ 71.718750, 40.178873 ], [ 73.037109, 40.913513 ], [ 71.806641, 41.442726 ], [ 71.103516, 41.178654 ], [ 70.400391, 41.574361 ], [ 71.191406, 42.228517 ], [ 70.927734, 42.293564 ], [ 71.103516, 42.747012 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.553080 ], [ 73.564453, 43.133061 ], [ 74.179688, 43.325178 ], [ 75.585938, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.585938, 42.940339 ], [ 75.937500, 43.004647 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.553080 ], [ 80.244141, 42.358544 ], [ 80.068359, 42.163403 ], [ 78.486328, 41.640078 ], [ 78.134766, 41.244772 ], [ 76.904297, 41.112469 ], [ 76.464844, 40.446947 ], [ 75.410156, 40.580585 ], [ 74.707031, 40.380028 ], [ 73.740234, 39.909736 ], [ 73.916016, 39.707187 ], [ 73.652344, 39.436193 ], [ 71.718750, 39.300299 ], [ 70.488281, 39.639538 ], [ 69.433594, 39.571822 ], [ 69.521484, 40.111689 ], [ 70.576172, 39.977120 ], [ 70.927734, 40.245992 ], [ 71.718750, 40.178873 ], [ 73.037109, 40.913513 ], [ 71.806641, 41.442726 ], [ 71.103516, 41.178654 ], [ 70.400391, 41.574361 ], [ 71.191406, 42.228517 ], [ 70.927734, 42.293564 ], [ 71.103516, 42.747012 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.553080 ], [ 73.564453, 43.133061 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 41.046217 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.527344, 39.909736 ], [ 46.406250, 39.504041 ], [ 46.494141, 38.822591 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.774769 ], [ 44.736328, 39.774769 ], [ 44.384766, 40.044438 ], [ 43.593750, 40.313043 ], [ 43.681641, 40.780541 ], [ 43.505859, 41.112469 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.046217 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 41.310824 ], [ 45.175781, 41.046217 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.527344, 39.909736 ], [ 46.406250, 39.504041 ], [ 46.494141, 38.822591 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.774769 ], [ 44.736328, 39.774769 ], [ 44.384766, 40.044438 ], [ 43.593750, 40.313043 ], [ 43.681641, 40.780541 ], [ 43.505859, 41.112469 ], [ 44.912109, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.900391, 41.442726 ], [ 48.515625, 41.836828 ], [ 49.570312, 40.580585 ], [ 50.009766, 40.580585 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 49.218750, 39.095963 ], [ 48.779297, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.571822 ], [ 46.494141, 38.822591 ], [ 46.406250, 39.504041 ], [ 45.527344, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.847060 ], [ 45.175781, 41.046217 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.442726 ], [ 45.878906, 41.178654 ], [ 46.494141, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.142578, 41.771312 ], [ 46.318359, 41.902277 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.736328, 39.774769 ], [ 45.000000, 39.774769 ], [ 45.263672, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.318359, 41.902277 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.900391, 41.442726 ], [ 48.515625, 41.836828 ], [ 49.570312, 40.580585 ], [ 50.009766, 40.580585 ], [ 50.361328, 40.313043 ], [ 49.482422, 40.178873 ], [ 49.218750, 39.095963 ], [ 48.779297, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.571822 ], [ 46.494141, 38.822591 ], [ 46.406250, 39.504041 ], [ 45.527344, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.847060 ], [ 45.175781, 41.046217 ], [ 44.912109, 41.310824 ], [ 45.175781, 41.442726 ], [ 45.878906, 41.178654 ], [ 46.494141, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.142578, 41.771312 ], [ 46.318359, 41.902277 ] ] ], [ [ [ 45.000000, 39.774769 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.736328, 39.774769 ], [ 45.000000, 39.774769 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.822591 ], [ 47.636719, 39.571822 ], [ 47.988281, 39.639538 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.130859, 37.649034 ], [ 50.097656, 37.439974 ], [ 50.800781, 36.879621 ], [ 52.207031, 36.738884 ], [ 53.789062, 37.020098 ], [ 53.876953, 37.230328 ], [ 54.755859, 37.439974 ], [ 55.458984, 37.996163 ], [ 56.162109, 37.996163 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.065392 ], [ 58.359375, 37.579413 ], [ 59.150391, 37.439974 ], [ 60.292969, 36.597889 ], [ 61.083984, 36.527295 ], [ 61.171875, 35.675147 ], [ 60.468750, 33.724340 ], [ 60.908203, 33.578015 ], [ 60.468750, 32.990236 ], [ 60.820312, 32.249974 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.428663 ], [ 61.699219, 30.751278 ], [ 60.820312, 29.840644 ], [ 61.699219, 28.767659 ], [ 62.666016, 28.304381 ], [ 62.753906, 27.449790 ], [ 63.193359, 27.293689 ], [ 63.281250, 26.824071 ], [ 61.787109, 26.273714 ], [ 61.435547, 25.085599 ], [ 57.392578, 25.799891 ], [ 56.953125, 26.980829 ], [ 56.425781, 27.215556 ], [ 55.722656, 26.980829 ], [ 54.667969, 26.509905 ], [ 53.437500, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.916767 ], [ 50.097656, 30.221102 ], [ 49.570312, 29.993002 ], [ 48.867188, 30.372875 ], [ 48.515625, 29.993002 ], [ 47.988281, 30.524413 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.812500, 31.728167 ], [ 47.285156, 32.472695 ], [ 46.054688, 33.063924 ], [ 45.351562, 34.016242 ], [ 45.615234, 34.813803 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.746512 ], [ 45.351562, 36.031332 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.341656 ], [ 44.033203, 39.436193 ], [ 44.736328, 39.774769 ], [ 44.912109, 39.368279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.736328, 39.774769 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.822591 ], [ 47.636719, 39.571822 ], [ 47.988281, 39.639538 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.130859, 37.649034 ], [ 50.097656, 37.439974 ], [ 50.800781, 36.879621 ], [ 52.207031, 36.738884 ], [ 53.789062, 37.020098 ], [ 53.876953, 37.230328 ], [ 54.755859, 37.439974 ], [ 55.458984, 37.996163 ], [ 56.162109, 37.996163 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.065392 ], [ 58.359375, 37.579413 ], [ 59.150391, 37.439974 ], [ 60.292969, 36.597889 ], [ 61.083984, 36.527295 ], [ 61.171875, 35.675147 ], [ 60.468750, 33.724340 ], [ 60.908203, 33.578015 ], [ 60.468750, 32.990236 ], [ 60.820312, 32.249974 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.428663 ], [ 61.699219, 30.751278 ], [ 60.820312, 29.840644 ], [ 61.699219, 28.767659 ], [ 62.666016, 28.304381 ], [ 62.753906, 27.449790 ], [ 63.193359, 27.293689 ], [ 63.281250, 26.824071 ], [ 61.787109, 26.273714 ], [ 61.435547, 25.085599 ], [ 57.392578, 25.799891 ], [ 56.953125, 26.980829 ], [ 56.425781, 27.215556 ], [ 55.722656, 26.980829 ], [ 54.667969, 26.509905 ], [ 53.437500, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.916767 ], [ 50.097656, 30.221102 ], [ 49.570312, 29.993002 ], [ 48.867188, 30.372875 ], [ 48.515625, 29.993002 ], [ 47.988281, 30.524413 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.812500, 31.728167 ], [ 47.285156, 32.472695 ], [ 46.054688, 33.063924 ], [ 45.351562, 34.016242 ], [ 45.615234, 34.813803 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.746512 ], [ 45.351562, 36.031332 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.341656 ], [ 44.033203, 39.436193 ], [ 44.736328, 39.774769 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.900391, 29.993002 ], [ 48.339844, 28.613459 ], [ 47.636719, 28.536275 ], [ 47.373047, 29.075375 ], [ 46.494141, 29.152161 ], [ 47.285156, 30.069094 ], [ 47.900391, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.900391, 29.993002 ], [ 48.339844, 28.613459 ], [ 47.636719, 28.536275 ], [ 47.373047, 29.075375 ], [ 46.494141, 29.152161 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.341797, 31.952162 ], [ 41.835938, 31.203405 ], [ 44.648438, 29.228890 ], [ 47.373047, 29.075375 ], [ 47.636719, 28.536275 ], [ 48.339844, 28.613459 ], [ 48.779297, 27.761330 ], [ 49.218750, 27.527758 ], [ 49.394531, 27.137368 ], [ 50.097656, 26.745610 ], [ 50.097656, 25.958045 ], [ 50.185547, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.064453, 24.607069 ], [ 51.328125, 24.686952 ], [ 51.943359, 23.079732 ], [ 54.931641, 22.512557 ], [ 55.195312, 22.755921 ], [ 55.634766, 22.024546 ], [ 54.931641, 20.055931 ], [ 51.943359, 19.062118 ], [ 49.042969, 18.646245 ], [ 48.164062, 18.229351 ], [ 47.460938, 17.140790 ], [ 46.933594, 16.972741 ], [ 46.669922, 17.308688 ], [ 46.318359, 17.308688 ], [ 45.175781, 17.476432 ], [ 43.769531, 17.392579 ], [ 43.330078, 17.644022 ], [ 43.066406, 17.140790 ], [ 43.154297, 16.720385 ], [ 42.714844, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.275391, 17.140790 ], [ 42.187500, 17.476432 ], [ 41.748047, 17.895114 ], [ 41.220703, 18.729502 ], [ 40.869141, 19.559790 ], [ 40.166016, 20.220966 ], [ 39.726562, 20.385825 ], [ 39.111328, 21.371244 ], [ 39.023438, 22.593726 ], [ 38.408203, 23.725012 ], [ 37.968750, 24.126702 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.878994 ], [ 36.210938, 26.588527 ], [ 35.068359, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.892578, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.916852 ], [ 37.441406, 30.069094 ], [ 37.617188, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.578535 ], [ 38.935547, 32.026706 ], [ 39.111328, 32.175612 ], [ 40.341797, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.111328, 32.175612 ], [ 40.341797, 31.952162 ], [ 41.835938, 31.203405 ], [ 44.648438, 29.228890 ], [ 47.373047, 29.075375 ], [ 47.636719, 28.536275 ], [ 48.339844, 28.613459 ], [ 48.779297, 27.761330 ], [ 49.218750, 27.527758 ], [ 49.394531, 27.137368 ], [ 50.097656, 26.745610 ], [ 50.097656, 25.958045 ], [ 50.185547, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.064453, 24.607069 ], [ 51.328125, 24.686952 ], [ 51.943359, 23.079732 ], [ 54.931641, 22.512557 ], [ 55.195312, 22.755921 ], [ 55.634766, 22.024546 ], [ 54.931641, 20.055931 ], [ 51.943359, 19.062118 ], [ 49.042969, 18.646245 ], [ 48.164062, 18.229351 ], [ 47.460938, 17.140790 ], [ 46.933594, 16.972741 ], [ 46.669922, 17.308688 ], [ 46.318359, 17.308688 ], [ 45.175781, 17.476432 ], [ 43.769531, 17.392579 ], [ 43.330078, 17.644022 ], [ 43.066406, 17.140790 ], [ 43.154297, 16.720385 ], [ 42.714844, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.275391, 17.140790 ], [ 42.187500, 17.476432 ], [ 41.748047, 17.895114 ], [ 41.220703, 18.729502 ], [ 40.869141, 19.559790 ], [ 40.166016, 20.220966 ], [ 39.726562, 20.385825 ], [ 39.111328, 21.371244 ], [ 39.023438, 22.593726 ], [ 38.408203, 23.725012 ], [ 37.968750, 24.126702 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.878994 ], [ 36.210938, 26.588527 ], [ 35.068359, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.892578, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.916852 ], [ 37.441406, 30.069094 ], [ 37.617188, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.578535 ], [ 38.935547, 32.026706 ], [ 39.111328, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.503906, 25.878994 ], [ 51.591797, 25.244696 ], [ 51.328125, 24.686952 ], [ 51.064453, 24.607069 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.240234, 26.115986 ], [ 51.503906, 25.878994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.240234, 26.115986 ], [ 51.503906, 25.878994 ], [ 51.591797, 25.244696 ], [ 51.328125, 24.686952 ], [ 51.064453, 24.607069 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.240234, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.722656, 24.287027 ], [ 55.898438, 24.206890 ], [ 55.458984, 23.966176 ], [ 55.458984, 23.563987 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 51.679688, 24.367114 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.722656, 24.287027 ], [ 55.898438, 24.206890 ], [ 55.458984, 23.966176 ], [ 55.458984, 23.563987 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 51.679688, 24.367114 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, 42.163403 ], [ 54.052734, 42.358544 ], [ 54.667969, 42.098222 ], [ 55.371094, 41.310824 ], [ 57.041016, 41.376809 ], [ 56.865234, 41.836828 ], [ 57.744141, 42.228517 ], [ 58.623047, 42.811522 ], [ 59.941406, 42.228517 ], [ 60.029297, 41.442726 ], [ 60.380859, 41.244772 ], [ 61.523438, 41.310824 ], [ 61.875000, 41.112469 ], [ 62.314453, 40.111689 ], [ 64.160156, 38.959409 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.445312, 37.370157 ], [ 66.181641, 37.439974 ], [ 65.742188, 37.718590 ], [ 65.566406, 37.370157 ], [ 64.687500, 37.160317 ], [ 64.511719, 36.315125 ], [ 63.896484, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.929688, 35.460670 ], [ 62.226562, 35.317366 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 60.292969, 36.597889 ], [ 59.150391, 37.439974 ], [ 58.359375, 37.579413 ], [ 57.304688, 38.065392 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.996163 ], [ 55.458984, 37.996163 ], [ 54.755859, 37.439974 ], [ 53.876953, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.244772 ], [ 52.470703, 41.836828 ], [ 52.910156, 42.163403 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.811522 ], [ 59.941406, 42.228517 ], [ 60.029297, 41.442726 ], [ 60.380859, 41.244772 ], [ 61.523438, 41.310824 ], [ 61.875000, 41.112469 ], [ 62.314453, 40.111689 ], [ 64.160156, 38.959409 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.445312, 37.370157 ], [ 66.181641, 37.439974 ], [ 65.742188, 37.718590 ], [ 65.566406, 37.370157 ], [ 64.687500, 37.160317 ], [ 64.511719, 36.315125 ], [ 63.896484, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.929688, 35.460670 ], [ 62.226562, 35.317366 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.527295 ], [ 60.292969, 36.597889 ], [ 59.150391, 37.439974 ], [ 58.359375, 37.579413 ], [ 57.304688, 38.065392 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.996163 ], [ 55.458984, 37.996163 ], [ 54.755859, 37.439974 ], [ 53.876953, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.646484, 40.044438 ], [ 52.910156, 40.913513 ], [ 53.789062, 40.647304 ], [ 54.667969, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.163403 ], [ 52.910156, 41.902277 ], [ 52.734375, 41.178654 ], [ 52.470703, 41.836828 ], [ 52.910156, 42.163403 ], [ 54.052734, 42.358544 ], [ 54.667969, 42.098222 ], [ 55.371094, 41.310824 ], [ 57.041016, 41.376809 ], [ 56.865234, 41.836828 ], [ 57.744141, 42.228517 ], [ 58.623047, 42.811522 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 49.570312, 14.774883 ], [ 48.603516, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.285156, 13.667338 ], [ 45.615234, 13.325485 ], [ 44.912109, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 43.154297, 13.239945 ], [ 43.242188, 13.838080 ], [ 42.890625, 14.859850 ], [ 42.539062, 15.284185 ], [ 42.802734, 15.284185 ], [ 42.626953, 15.792254 ], [ 42.802734, 15.961329 ], [ 42.714844, 16.383391 ], [ 43.154297, 16.720385 ], [ 43.066406, 17.140790 ], [ 43.330078, 17.644022 ], [ 43.769531, 17.392579 ], [ 45.175781, 17.476432 ], [ 46.318359, 17.308688 ], [ 46.669922, 17.308688 ], [ 46.933594, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.229351 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 49.570312, 14.774883 ], [ 48.603516, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.285156, 13.667338 ], [ 45.615234, 13.325485 ], [ 44.912109, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 43.154297, 13.239945 ], [ 43.242188, 13.838080 ], [ 42.890625, 14.859850 ], [ 42.539062, 15.284185 ], [ 42.802734, 15.284185 ], [ 42.626953, 15.792254 ], [ 42.802734, 15.961329 ], [ 42.714844, 16.383391 ], [ 43.154297, 16.720385 ], [ 43.066406, 17.140790 ], [ 43.330078, 17.644022 ], [ 43.769531, 17.392579 ], [ 45.175781, 17.476432 ], [ 46.318359, 17.308688 ], [ 46.669922, 17.308688 ], [ 46.933594, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.229351 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.777344, 24.287027 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.644524 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.350076 ], [ 59.238281, 21.453069 ], [ 58.798828, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.550509 ], [ 57.744141, 20.303418 ], [ 57.656250, 19.808054 ], [ 57.744141, 19.145168 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.646245 ], [ 56.425781, 18.145852 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.308688 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.525391, 16.720385 ], [ 53.085938, 16.720385 ], [ 51.943359, 19.062118 ], [ 54.931641, 20.055931 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.755921 ], [ 55.195312, 23.160563 ], [ 55.458984, 23.563987 ], [ 55.458984, 23.966176 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.287027 ], [ 55.810547, 24.926295 ], [ 56.337891, 24.926295 ], [ 56.777344, 24.287027 ] ] ], [ [ [ 56.425781, 26.352498 ], [ 56.337891, 25.958045 ], [ 56.250000, 25.720735 ], [ 55.986328, 26.115986 ], [ 56.337891, 26.431228 ], [ 56.425781, 26.352498 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.337891, 24.926295 ], [ 56.777344, 24.287027 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.644524 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.350076 ], [ 59.238281, 21.453069 ], [ 58.798828, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.550509 ], [ 57.744141, 20.303418 ], [ 57.656250, 19.808054 ], [ 57.744141, 19.145168 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.646245 ], [ 56.425781, 18.145852 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.308688 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.525391, 16.720385 ], [ 53.085938, 16.720385 ], [ 51.943359, 19.062118 ], [ 54.931641, 20.055931 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.755921 ], [ 55.195312, 23.160563 ], [ 55.458984, 23.563987 ], [ 55.458984, 23.966176 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.287027 ], [ 55.810547, 24.926295 ], [ 56.337891, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.425781, 26.352498 ], [ 56.337891, 25.958045 ], [ 56.250000, 25.720735 ], [ 55.986328, 26.115986 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 11.350797 ], [ 43.593750, 10.919618 ], [ 44.033203, 10.487812 ], [ 44.560547, 10.487812 ], [ 46.582031, 10.833306 ], [ 48.339844, 11.436955 ], [ 48.867188, 11.436955 ], [ 48.867188, 9.535749 ], [ 47.724609, 8.059230 ], [ 46.933594, 8.059230 ], [ 43.593750, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.066406, 11.523088 ], [ 43.417969, 11.350797 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 11.523088 ], [ 43.417969, 11.350797 ], [ 43.593750, 10.919618 ], [ 44.033203, 10.487812 ], [ 44.560547, 10.487812 ], [ 46.582031, 10.833306 ], [ 48.339844, 11.436955 ], [ 48.867188, 11.436955 ], [ 48.867188, 9.535749 ], [ 47.724609, 8.059230 ], [ 46.933594, 8.059230 ], [ 43.593750, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.066406, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 10.660608 ], [ 50.009766, 8.146243 ], [ 48.515625, 5.353521 ], [ 46.494141, 2.899153 ], [ 43.066406, 0.351560 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.790990 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.302591 ], [ 42.714844, 4.302591 ], [ 43.593750, 5.003394 ], [ 44.912109, 5.003394 ], [ 47.724609, 8.059230 ], [ 48.867188, 9.535749 ], [ 48.867188, 11.436955 ], [ 49.658203, 11.609193 ], [ 50.185547, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.064453, 12.039321 ], [ 50.976562, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.064453, 12.039321 ], [ 50.976562, 10.660608 ], [ 50.009766, 8.146243 ], [ 48.515625, 5.353521 ], [ 46.494141, 2.899153 ], [ 43.066406, 0.351560 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.790990 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.302591 ], [ 42.714844, 4.302591 ], [ 43.593750, 5.003394 ], [ 44.912109, 5.003394 ], [ 47.724609, 8.059230 ], [ 48.867188, 9.535749 ], [ 48.867188, 11.436955 ], [ 49.658203, 11.609193 ], [ 50.185547, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.064453, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.400391, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 70.488281, 39.639538 ], [ 71.718750, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.179688, 38.616870 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 72.597656, 37.090240 ], [ 71.806641, 36.738884 ], [ 71.367188, 37.090240 ], [ 71.455078, 37.926868 ], [ 71.191406, 37.996163 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 70.312500, 38.203655 ], [ 70.048828, 37.649034 ], [ 69.433594, 37.649034 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.090240 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 68.994141, 40.111689 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.400391, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.927734, 40.245992 ], [ 70.576172, 39.977120 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.571822 ], [ 70.488281, 39.639538 ], [ 71.718750, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.548165 ], [ 74.179688, 38.616870 ], [ 74.794922, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.212891, 37.509726 ], [ 72.597656, 37.090240 ], [ 71.806641, 36.738884 ], [ 71.367188, 37.090240 ], [ 71.455078, 37.926868 ], [ 71.191406, 37.996163 ], [ 71.279297, 38.272689 ], [ 70.751953, 38.548165 ], [ 70.312500, 38.203655 ], [ 70.048828, 37.649034 ], [ 69.433594, 37.649034 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.090240 ], [ 67.763672, 37.160317 ], [ 68.378906, 38.203655 ], [ 68.115234, 38.959409 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.639538 ], [ 68.466797, 39.571822 ], [ 68.994141, 40.111689 ], [ 69.257812, 40.780541 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.279297, 38.272689 ], [ 71.191406, 37.996163 ], [ 71.455078, 37.926868 ], [ 71.367188, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.090240 ], [ 73.212891, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.003906, 36.879621 ], [ 71.806641, 36.527295 ], [ 71.191406, 36.102376 ], [ 71.542969, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.103516, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.873047, 34.089061 ], [ 70.312500, 33.431441 ], [ 69.609375, 33.137551 ], [ 69.257812, 32.546813 ], [ 69.257812, 31.952162 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.653381 ], [ 67.675781, 31.353637 ], [ 66.884766, 31.353637 ], [ 66.357422, 30.751278 ], [ 66.269531, 29.916852 ], [ 65.039062, 29.535230 ], [ 64.335938, 29.611670 ], [ 64.072266, 29.382175 ], [ 63.544922, 29.535230 ], [ 62.490234, 29.382175 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.249974 ], [ 60.468750, 32.990236 ], [ 60.908203, 33.578015 ], [ 60.468750, 33.724340 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.317366 ], [ 62.929688, 35.460670 ], [ 63.193359, 35.889050 ], [ 63.896484, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.687500, 37.160317 ], [ 65.566406, 37.370157 ], [ 65.742188, 37.718590 ], [ 66.181641, 37.439974 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.090240 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.433594, 37.649034 ], [ 70.048828, 37.649034 ], [ 70.312500, 38.203655 ], [ 70.751953, 38.548165 ], [ 71.279297, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.751953, 38.548165 ], [ 71.279297, 38.272689 ], [ 71.191406, 37.996163 ], [ 71.455078, 37.926868 ], [ 71.367188, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.090240 ], [ 73.212891, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.003906, 36.879621 ], [ 71.806641, 36.527295 ], [ 71.191406, 36.102376 ], [ 71.542969, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.103516, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.873047, 34.089061 ], [ 70.312500, 33.431441 ], [ 69.609375, 33.137551 ], [ 69.257812, 32.546813 ], [ 69.257812, 31.952162 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.653381 ], [ 67.675781, 31.353637 ], [ 66.884766, 31.353637 ], [ 66.357422, 30.751278 ], [ 66.269531, 29.916852 ], [ 65.039062, 29.535230 ], [ 64.335938, 29.611670 ], [ 64.072266, 29.382175 ], [ 63.544922, 29.535230 ], [ 62.490234, 29.382175 ], [ 60.820312, 29.840644 ], [ 61.699219, 30.751278 ], [ 61.699219, 31.428663 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.249974 ], [ 60.468750, 32.990236 ], [ 60.908203, 33.578015 ], [ 60.468750, 33.724340 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.317366 ], [ 62.929688, 35.460670 ], [ 63.193359, 35.889050 ], [ 63.896484, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.687500, 37.160317 ], [ 65.566406, 37.370157 ], [ 65.742188, 37.718590 ], [ 66.181641, 37.439974 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.090240 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.433594, 37.649034 ], [ 70.048828, 37.649034 ], [ 70.312500, 38.203655 ], [ 70.751953, 38.548165 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.849609, 36.668419 ], [ 76.113281, 35.960223 ], [ 77.783203, 35.532226 ], [ 76.816406, 34.669359 ], [ 75.673828, 34.524661 ], [ 74.179688, 34.813803 ], [ 73.740234, 34.379713 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.324276 ], [ 74.355469, 31.728167 ], [ 74.355469, 31.052934 ], [ 73.388672, 29.993002 ], [ 72.773438, 28.998532 ], [ 71.718750, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.433594, 26.980829 ], [ 70.136719, 26.509905 ], [ 70.224609, 25.799891 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.115234, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.060547, 24.686952 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 63.193359, 27.293689 ], [ 62.753906, 27.449790 ], [ 62.666016, 28.304381 ], [ 61.699219, 28.767659 ], [ 60.820312, 29.840644 ], [ 62.490234, 29.382175 ], [ 63.544922, 29.535230 ], [ 64.072266, 29.382175 ], [ 64.335938, 29.611670 ], [ 65.039062, 29.535230 ], [ 66.269531, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.884766, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.763672, 31.653381 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.257812, 31.952162 ], [ 69.257812, 32.546813 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.431441 ], [ 69.873047, 34.089061 ], [ 70.839844, 34.016242 ], [ 71.103516, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.542969, 35.173808 ], [ 71.191406, 36.102376 ], [ 71.806641, 36.527295 ], [ 74.003906, 36.879621 ], [ 75.146484, 37.160317 ], [ 75.849609, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.849609, 36.668419 ], [ 76.113281, 35.960223 ], [ 77.783203, 35.532226 ], [ 76.816406, 34.669359 ], [ 75.673828, 34.524661 ], [ 74.179688, 34.813803 ], [ 73.740234, 34.379713 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.324276 ], [ 74.355469, 31.728167 ], [ 74.355469, 31.052934 ], [ 73.388672, 29.993002 ], [ 72.773438, 28.998532 ], [ 71.718750, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.433594, 26.980829 ], [ 70.136719, 26.509905 ], [ 70.224609, 25.799891 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.115234, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.060547, 24.686952 ], [ 66.357422, 25.482951 ], [ 61.435547, 25.085599 ], [ 61.787109, 26.273714 ], [ 63.281250, 26.824071 ], [ 63.193359, 27.293689 ], [ 62.753906, 27.449790 ], [ 62.666016, 28.304381 ], [ 61.699219, 28.767659 ], [ 60.820312, 29.840644 ], [ 62.490234, 29.382175 ], [ 63.544922, 29.535230 ], [ 64.072266, 29.382175 ], [ 64.335938, 29.611670 ], [ 65.039062, 29.535230 ], [ 66.269531, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.884766, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.763672, 31.653381 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.257812, 31.952162 ], [ 69.257812, 32.546813 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.431441 ], [ 69.873047, 34.089061 ], [ 70.839844, 34.016242 ], [ 71.103516, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.542969, 35.173808 ], [ 71.191406, 36.102376 ], [ 71.806641, 36.527295 ], [ 74.003906, 36.879621 ], [ 75.146484, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 83.320312, 29.535230 ], [ 83.847656, 29.382175 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.690588 ], [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 27.449790 ], [ 88.154297, 26.824071 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.166016, 26.745610 ], [ 84.638672, 27.293689 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 80.419922, 29.764377 ], [ 81.474609, 30.448674 ], [ 82.265625, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.474609, 30.448674 ], [ 82.265625, 30.145127 ], [ 83.320312, 29.535230 ], [ 83.847656, 29.382175 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.690588 ], [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 27.449790 ], [ 88.154297, 26.824071 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.166016, 26.745610 ], [ 84.638672, 27.293689 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 80.419922, 29.764377 ], [ 81.474609, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.837891, 34.379713 ], [ 78.750000, 33.578015 ], [ 79.189453, 33.063924 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.620870 ], [ 78.662109, 31.578535 ], [ 81.035156, 30.221102 ], [ 80.419922, 29.764377 ], [ 80.068359, 28.844674 ], [ 83.232422, 27.371767 ], [ 84.638672, 27.293689 ], [ 85.166016, 26.745610 ], [ 87.187500, 26.431228 ], [ 87.978516, 26.431228 ], [ 88.154297, 26.824071 ], [ 87.978516, 27.449790 ], [ 88.066406, 27.916767 ], [ 88.681641, 28.149503 ], [ 88.769531, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.902477 ], [ 92.021484, 27.527758 ], [ 91.669922, 27.839076 ], [ 92.460938, 27.916767 ], [ 93.339844, 28.690588 ], [ 94.482422, 29.305561 ], [ 95.361328, 29.075375 ], [ 96.064453, 29.458731 ], [ 96.503906, 28.844674 ], [ 96.240234, 28.459033 ], [ 97.294922, 28.304381 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.761330 ], [ 97.119141, 27.137368 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.097656, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.482422, 24.686952 ], [ 94.042969, 23.885838 ], [ 93.251953, 24.126702 ], [ 93.251953, 23.079732 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.350076 ], [ 92.636719, 22.105999 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.563987 ], [ 91.406250, 24.126702 ], [ 91.845703, 24.206890 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.324167 ], [ 89.824219, 26.037042 ], [ 89.296875, 26.037042 ], [ 88.505859, 26.509905 ], [ 88.154297, 25.799891 ], [ 88.857422, 25.244696 ], [ 88.242188, 24.926295 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.287027 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.945312, 22.105999 ], [ 88.857422, 21.698265 ], [ 86.923828, 21.534847 ], [ 87.011719, 20.797201 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.636192 ], [ 80.771484, 15.961329 ], [ 80.244141, 15.961329 ], [ 79.980469, 15.199386 ], [ 80.244141, 13.068777 ], [ 79.804688, 12.125264 ], [ 79.804688, 10.401378 ], [ 79.277344, 10.314919 ], [ 78.837891, 9.622414 ], [ 79.189453, 9.275622 ], [ 78.222656, 9.015302 ], [ 77.871094, 8.320212 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.673828, 11.350797 ], [ 74.794922, 12.811801 ], [ 74.443359, 14.689881 ], [ 73.476562, 16.045813 ], [ 72.773438, 19.228177 ], [ 72.773438, 20.468189 ], [ 72.597656, 21.371244 ], [ 71.103516, 20.797201 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.224609, 25.799891 ], [ 70.136719, 26.509905 ], [ 69.433594, 26.980829 ], [ 70.576172, 27.994401 ], [ 71.718750, 27.916767 ], [ 72.773438, 28.998532 ], [ 73.388672, 29.993002 ], [ 74.355469, 31.052934 ], [ 74.355469, 31.728167 ], [ 75.234375, 32.324276 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.379713 ], [ 74.179688, 34.813803 ], [ 75.673828, 34.524661 ], [ 76.816406, 34.669359 ], [ 77.783203, 35.532226 ], [ 78.837891, 34.379713 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.783203, 35.532226 ], [ 78.837891, 34.379713 ], [ 78.750000, 33.578015 ], [ 79.189453, 33.063924 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.620870 ], [ 78.662109, 31.578535 ], [ 81.035156, 30.221102 ], [ 80.419922, 29.764377 ], [ 80.068359, 28.844674 ], [ 83.232422, 27.371767 ], [ 84.638672, 27.293689 ], [ 85.166016, 26.745610 ], [ 87.187500, 26.431228 ], [ 87.978516, 26.431228 ], [ 88.154297, 26.824071 ], [ 87.978516, 27.449790 ], [ 88.066406, 27.916767 ], [ 88.681641, 28.149503 ], [ 88.769531, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.902477 ], [ 92.021484, 27.527758 ], [ 91.669922, 27.839076 ], [ 92.460938, 27.916767 ], [ 93.339844, 28.690588 ], [ 94.482422, 29.305561 ], [ 95.361328, 29.075375 ], [ 96.064453, 29.458731 ], [ 96.503906, 28.844674 ], [ 96.240234, 28.459033 ], [ 97.294922, 28.304381 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.761330 ], [ 97.119141, 27.137368 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.097656, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.482422, 24.686952 ], [ 94.042969, 23.885838 ], [ 93.251953, 24.126702 ], [ 93.251953, 23.079732 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.350076 ], [ 92.636719, 22.105999 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.563987 ], [ 91.406250, 24.126702 ], [ 91.845703, 24.206890 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.324167 ], [ 89.824219, 26.037042 ], [ 89.296875, 26.037042 ], [ 88.505859, 26.509905 ], [ 88.154297, 25.799891 ], [ 88.857422, 25.244696 ], [ 88.242188, 24.926295 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.287027 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.945312, 22.105999 ], [ 88.857422, 21.698265 ], [ 86.923828, 21.534847 ], [ 87.011719, 20.797201 ], [ 86.484375, 20.220966 ], [ 84.990234, 19.559790 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.636192 ], [ 80.771484, 15.961329 ], [ 80.244141, 15.961329 ], [ 79.980469, 15.199386 ], [ 80.244141, 13.068777 ], [ 79.804688, 12.125264 ], [ 79.804688, 10.401378 ], [ 79.277344, 10.314919 ], [ 78.837891, 9.622414 ], [ 79.189453, 9.275622 ], [ 78.222656, 9.015302 ], [ 77.871094, 8.320212 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.673828, 11.350797 ], [ 74.794922, 12.811801 ], [ 74.443359, 14.689881 ], [ 73.476562, 16.045813 ], [ 72.773438, 19.228177 ], [ 72.773438, 20.468189 ], [ 72.597656, 21.371244 ], [ 71.103516, 20.797201 ], [ 70.400391, 20.879343 ], [ 69.082031, 22.105999 ], [ 69.609375, 22.512557 ], [ 69.345703, 22.917923 ], [ 68.115234, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.224609, 25.799891 ], [ 70.136719, 26.509905 ], [ 69.433594, 26.980829 ], [ 70.576172, 27.994401 ], [ 71.718750, 27.916767 ], [ 72.773438, 28.998532 ], [ 73.388672, 29.993002 ], [ 74.355469, 31.052934 ], [ 74.355469, 31.728167 ], [ 75.234375, 32.324276 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.379713 ], [ 74.179688, 34.813803 ], [ 75.673828, 34.524661 ], [ 76.816406, 34.669359 ], [ 77.783203, 35.532226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.053161 ], [ 79.804688, 6.839170 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.068359, 9.882275 ], [ 80.771484, 9.275622 ], [ 81.738281, 7.536764 ], [ 81.562500, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.053161 ], [ 79.804688, 6.839170 ], [ 79.628906, 8.233237 ], [ 80.068359, 9.882275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.931641, 51.672555 ], [ 102.041016, 51.289406 ], [ 102.216797, 50.513427 ], [ 103.623047, 50.120578 ], [ 105.820312, 50.457504 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.837982 ], [ 108.457031, 49.325122 ], [ 109.335938, 49.325122 ], [ 110.654297, 49.152970 ], [ 111.533203, 49.382373 ], [ 112.851562, 49.553726 ], [ 114.345703, 50.289339 ], [ 114.960938, 50.176898 ], [ 115.400391, 49.837982 ], [ 116.630859, 49.894634 ], [ 115.400391, 48.166085 ], [ 115.664062, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.246094, 47.754098 ], [ 118.037109, 48.107431 ], [ 118.828125, 47.754098 ], [ 119.707031, 47.100045 ], [ 119.619141, 46.739861 ], [ 118.828125, 46.860191 ], [ 117.333984, 46.679594 ], [ 116.630859, 46.437857 ], [ 115.927734, 45.767523 ], [ 114.433594, 45.398450 ], [ 113.378906, 44.840291 ], [ 111.796875, 45.151053 ], [ 111.269531, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.452919 ], [ 110.390625, 42.875964 ], [ 109.160156, 42.553080 ], [ 107.666016, 42.488302 ], [ 106.083984, 42.163403 ], [ 104.941406, 41.640078 ], [ 104.501953, 41.967659 ], [ 103.271484, 41.967659 ], [ 101.777344, 42.553080 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.382812, 42.811522 ], [ 96.328125, 42.747012 ], [ 95.712891, 43.325178 ], [ 95.273438, 44.276671 ], [ 94.658203, 44.402392 ], [ 93.427734, 45.026950 ], [ 90.878906, 45.336702 ], [ 90.527344, 45.767523 ], [ 90.966797, 46.920255 ], [ 90.263672, 47.694974 ], [ 88.769531, 48.107431 ], [ 87.978516, 48.632909 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.847573 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.513427 ], [ 94.746094, 50.064192 ], [ 95.800781, 50.007739 ], [ 97.207031, 49.781264 ], [ 98.173828, 50.457504 ], [ 97.822266, 51.013755 ], [ 98.789062, 52.052490 ], [ 99.931641, 51.672555 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.789062, 52.052490 ], [ 99.931641, 51.672555 ], [ 102.041016, 51.289406 ], [ 102.216797, 50.513427 ], [ 103.623047, 50.120578 ], [ 105.820312, 50.457504 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.837982 ], [ 108.457031, 49.325122 ], [ 109.335938, 49.325122 ], [ 110.654297, 49.152970 ], [ 111.533203, 49.382373 ], [ 112.851562, 49.553726 ], [ 114.345703, 50.289339 ], [ 114.960938, 50.176898 ], [ 115.400391, 49.837982 ], [ 116.630859, 49.894634 ], [ 115.400391, 48.166085 ], [ 115.664062, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.246094, 47.754098 ], [ 118.037109, 48.107431 ], [ 118.828125, 47.754098 ], [ 119.707031, 47.100045 ], [ 119.619141, 46.739861 ], [ 118.828125, 46.860191 ], [ 117.333984, 46.679594 ], [ 116.630859, 46.437857 ], [ 115.927734, 45.767523 ], [ 114.433594, 45.398450 ], [ 113.378906, 44.840291 ], [ 111.796875, 45.151053 ], [ 111.269531, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.452919 ], [ 110.390625, 42.875964 ], [ 109.160156, 42.553080 ], [ 107.666016, 42.488302 ], [ 106.083984, 42.163403 ], [ 104.941406, 41.640078 ], [ 104.501953, 41.967659 ], [ 103.271484, 41.967659 ], [ 101.777344, 42.553080 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.382812, 42.811522 ], [ 96.328125, 42.747012 ], [ 95.712891, 43.325178 ], [ 95.273438, 44.276671 ], [ 94.658203, 44.402392 ], [ 93.427734, 45.026950 ], [ 90.878906, 45.336702 ], [ 90.527344, 45.767523 ], [ 90.966797, 46.920255 ], [ 90.263672, 47.694974 ], [ 88.769531, 48.107431 ], [ 87.978516, 48.632909 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.847573 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.513427 ], [ 94.746094, 50.064192 ], [ 95.800781, 50.007739 ], [ 97.207031, 49.781264 ], [ 98.173828, 50.457504 ], [ 97.822266, 51.013755 ], [ 98.789062, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.839076 ], [ 92.021484, 27.527758 ], [ 92.021484, 26.902477 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.769531, 27.137368 ], [ 88.769531, 27.371767 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.839076 ], [ 92.021484, 27.527758 ], [ 92.021484, 26.902477 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.769531, 27.137368 ], [ 88.769531, 27.371767 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.296875, 26.037042 ], [ 89.824219, 26.037042 ], [ 89.912109, 25.324167 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.845703, 24.206890 ], [ 91.406250, 24.126702 ], [ 91.142578, 23.563987 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.105999 ], [ 92.636719, 21.371244 ], [ 92.285156, 21.534847 ], [ 92.285156, 20.715015 ], [ 92.021484, 21.207459 ], [ 91.757812, 22.187405 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.527344, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.105999 ], [ 89.648438, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.287027 ], [ 88.066406, 24.527135 ], [ 88.242188, 24.926295 ], [ 88.857422, 25.244696 ], [ 88.154297, 25.799891 ], [ 88.505859, 26.509905 ], [ 89.296875, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.505859, 26.509905 ], [ 89.296875, 26.037042 ], [ 89.824219, 26.037042 ], [ 89.912109, 25.324167 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.845703, 24.206890 ], [ 91.406250, 24.126702 ], [ 91.142578, 23.563987 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.105999 ], [ 92.636719, 21.371244 ], [ 92.285156, 21.534847 ], [ 92.285156, 20.715015 ], [ 92.021484, 21.207459 ], [ 91.757812, 22.187405 ], [ 91.406250, 22.836946 ], [ 90.439453, 22.836946 ], [ 90.527344, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.105999 ], [ 89.648438, 21.861499 ], [ 88.945312, 22.105999 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.287027 ], [ 88.066406, 24.527135 ], [ 88.242188, 24.926295 ], [ 88.857422, 25.244696 ], [ 88.154297, 25.799891 ], [ 88.505859, 26.509905 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ] ] ], [ [ [ 124.980469, 53.173119 ], [ 125.859375, 52.802761 ], [ 127.265625, 50.792047 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 133.330078, 48.224673 ], [ 135.000000, 48.516604 ], [ 134.472656, 47.635784 ], [ 134.033203, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.220703, 44.150681 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 127.265625, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.123047, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.962891, 21.861499 ], [ 106.523438, 22.268764 ], [ 106.699219, 22.836946 ], [ 105.732422, 22.998852 ], [ 105.292969, 23.402765 ], [ 104.414062, 22.836946 ], [ 102.656250, 22.755921 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 98.173828, 27.761330 ], [ 97.910156, 28.381735 ], [ 97.294922, 28.304381 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 93.339844, 28.690588 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.839076 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 88.066406, 27.916767 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.690588 ], [ 84.199219, 28.844674 ], [ 83.847656, 29.382175 ], [ 83.320312, 29.535230 ], [ 82.265625, 30.145127 ], [ 81.474609, 30.448674 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.750000, 33.578015 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 75.849609, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 74.179688, 38.616870 ], [ 73.916016, 38.548165 ], [ 73.652344, 39.436193 ], [ 73.916016, 39.707187 ], [ 73.740234, 39.909736 ], [ 74.707031, 40.380028 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 78.486328, 41.640078 ], [ 80.068359, 42.163403 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.275391, 49.267805 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 88.769531, 48.107431 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 94.658203, 44.402392 ], [ 95.273438, 44.276671 ], [ 95.712891, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.382812, 42.811522 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.777344, 42.553080 ], [ 103.271484, 41.967659 ], [ 104.501953, 41.967659 ], [ 104.941406, 41.640078 ], [ 106.083984, 42.163403 ], [ 107.666016, 42.488302 ], [ 109.160156, 42.553080 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.452919 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 114.433594, 45.398450 ], [ 115.927734, 45.767523 ], [ 116.630859, 46.437857 ], [ 117.333984, 46.679594 ], [ 118.828125, 46.860191 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 116.279297, 47.872144 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 119.267578, 50.625073 ], [ 120.146484, 51.672555 ], [ 120.673828, 51.998410 ], [ 120.673828, 52.536273 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 122.167969, 53.435719 ], [ 123.486328, 53.488046 ], [ 124.980469, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 123.486328, 53.488046 ], [ 124.980469, 53.173119 ], [ 125.859375, 52.802761 ], [ 127.265625, 50.792047 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 133.330078, 48.224673 ], [ 135.000000, 48.516604 ], [ 134.472656, 47.635784 ], [ 134.033203, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.220703, 44.150681 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 127.265625, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.123047, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.962891, 21.861499 ], [ 106.523438, 22.268764 ], [ 106.699219, 22.836946 ], [ 105.732422, 22.998852 ], [ 105.292969, 23.402765 ], [ 104.414062, 22.836946 ], [ 102.656250, 22.755921 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 98.173828, 27.761330 ], [ 97.910156, 28.381735 ], [ 97.294922, 28.304381 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 93.339844, 28.690588 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.839076 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 88.066406, 27.916767 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.690588 ], [ 84.199219, 28.844674 ], [ 83.847656, 29.382175 ], [ 83.320312, 29.535230 ], [ 82.265625, 30.145127 ], [ 81.474609, 30.448674 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.750000, 33.578015 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 75.849609, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 74.179688, 38.616870 ], [ 73.916016, 38.548165 ], [ 73.652344, 39.436193 ], [ 73.916016, 39.707187 ], [ 73.740234, 39.909736 ], [ 74.707031, 40.380028 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 78.486328, 41.640078 ], [ 80.068359, 42.163403 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.275391, 49.267805 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 88.769531, 48.107431 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 94.658203, 44.402392 ], [ 95.273438, 44.276671 ], [ 95.712891, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.382812, 42.811522 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.777344, 42.553080 ], [ 103.271484, 41.967659 ], [ 104.501953, 41.967659 ], [ 104.941406, 41.640078 ], [ 106.083984, 42.163403 ], [ 107.666016, 42.488302 ], [ 109.160156, 42.553080 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.452919 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 114.433594, 45.398450 ], [ 115.927734, 45.767523 ], [ 116.630859, 46.437857 ], [ 117.333984, 46.679594 ], [ 118.828125, 46.860191 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 116.279297, 47.872144 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 119.267578, 50.625073 ], [ 120.146484, 51.672555 ], [ 120.673828, 51.998410 ], [ 120.673828, 52.536273 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 122.167969, 53.435719 ], [ 123.486328, 53.488046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.173828, 27.761330 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.958045 ], [ 97.646484, 25.085599 ], [ 97.558594, 23.966176 ], [ 98.613281, 24.126702 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.998852 ], [ 99.228516, 22.187405 ], [ 100.371094, 21.616579 ], [ 101.074219, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.283203, 20.797201 ], [ 100.107422, 20.468189 ], [ 99.492188, 20.220966 ], [ 98.876953, 19.808054 ], [ 98.173828, 19.725342 ], [ 97.734375, 18.646245 ], [ 97.294922, 18.479609 ], [ 97.822266, 17.644022 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.368950 ], [ 98.173828, 15.199386 ], [ 98.349609, 14.689881 ], [ 99.052734, 13.838080 ], [ 99.140625, 12.811801 ], [ 99.580078, 11.953349 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.746969 ], [ 98.701172, 11.523088 ], [ 98.349609, 12.039321 ], [ 98.437500, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.482422, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.603516, 19.808054 ], [ 93.076172, 19.890723 ], [ 92.285156, 20.715015 ], [ 92.285156, 21.534847 ], [ 92.636719, 21.371244 ], [ 92.636719, 22.105999 ], [ 93.164062, 22.350076 ], [ 92.988281, 22.755921 ], [ 93.251953, 23.079732 ], [ 93.251953, 24.126702 ], [ 94.042969, 23.885838 ], [ 94.482422, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.097656, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.137368 ], [ 97.031250, 27.761330 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.304381 ], [ 97.910156, 28.381735 ], [ 98.173828, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.381735 ], [ 98.173828, 27.761330 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.958045 ], [ 97.646484, 25.085599 ], [ 97.558594, 23.966176 ], [ 98.613281, 24.126702 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.998852 ], [ 99.228516, 22.187405 ], [ 100.371094, 21.616579 ], [ 101.074219, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.283203, 20.797201 ], [ 100.107422, 20.468189 ], [ 99.492188, 20.220966 ], [ 98.876953, 19.808054 ], [ 98.173828, 19.725342 ], [ 97.734375, 18.646245 ], [ 97.294922, 18.479609 ], [ 97.822266, 17.644022 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.368950 ], [ 98.173828, 15.199386 ], [ 98.349609, 14.689881 ], [ 99.052734, 13.838080 ], [ 99.140625, 12.811801 ], [ 99.580078, 11.953349 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.746969 ], [ 98.701172, 11.523088 ], [ 98.349609, 12.039321 ], [ 98.437500, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.119141, 16.972741 ], [ 95.361328, 15.792254 ], [ 94.130859, 16.045813 ], [ 94.482422, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.603516, 19.808054 ], [ 93.076172, 19.890723 ], [ 92.285156, 20.715015 ], [ 92.285156, 21.534847 ], [ 92.636719, 21.371244 ], [ 92.636719, 22.105999 ], [ 93.164062, 22.350076 ], [ 92.988281, 22.755921 ], [ 93.251953, 23.079732 ], [ 93.251953, 24.126702 ], [ 94.042969, 23.885838 ], [ 94.482422, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.097656, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.137368 ], [ 97.031250, 27.761330 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.304381 ], [ 97.910156, 28.381735 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 106.523438, 16.636192 ], [ 107.226562, 15.961329 ], [ 107.490234, 15.284185 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.468750, 14.774883 ], [ 105.556641, 15.623037 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.476432 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 102.919922, 17.978733 ], [ 102.392578, 17.978733 ], [ 102.041016, 18.145852 ], [ 100.986328, 17.560247 ], [ 100.986328, 18.479609 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.468189 ], [ 100.283203, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ], [ 103.183594, 20.797201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.512557 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 106.523438, 16.636192 ], [ 107.226562, 15.961329 ], [ 107.490234, 15.284185 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.468750, 14.774883 ], [ 105.556641, 15.623037 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.476432 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 102.919922, 17.978733 ], [ 102.392578, 17.978733 ], [ 102.041016, 18.145852 ], [ 100.986328, 17.560247 ], [ 100.986328, 18.479609 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.468189 ], [ 100.283203, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.138470 ], [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 18.479609 ], [ 100.986328, 17.560247 ], [ 102.041016, 18.145852 ], [ 102.392578, 17.978733 ], [ 102.919922, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 104.677734, 17.476432 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.623037 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 104.238281, 14.434680 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.601562, 12.726084 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.931641, 12.382928 ], [ 99.140625, 9.968851 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 100.195312, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.878332 ], [ 101.074219, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.195312, 6.664608 ], [ 100.019531, 6.489983 ], [ 99.667969, 6.926427 ], [ 99.492188, 7.362467 ], [ 98.437500, 8.407168 ], [ 98.261719, 7.798079 ], [ 98.085938, 8.407168 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.953349 ], [ 99.140625, 12.811801 ], [ 99.052734, 13.838080 ], [ 98.349609, 14.689881 ], [ 98.173828, 15.199386 ], [ 98.525391, 15.368950 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.644022 ], [ 97.294922, 18.479609 ], [ 97.734375, 18.646245 ], [ 98.173828, 19.725342 ], [ 98.876953, 19.808054 ], [ 99.492188, 20.220966 ], [ 100.107422, 20.468189 ], [ 100.546875, 20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.468189 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 18.479609 ], [ 100.986328, 17.560247 ], [ 102.041016, 18.145852 ], [ 102.392578, 17.978733 ], [ 102.919922, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 104.677734, 17.476432 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.623037 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 104.238281, 14.434680 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.601562, 12.726084 ], [ 100.810547, 12.640338 ], [ 100.898438, 13.496473 ], [ 100.019531, 13.410994 ], [ 99.931641, 12.382928 ], [ 99.140625, 9.968851 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 100.195312, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.878332 ], [ 101.074219, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.195312, 6.664608 ], [ 100.019531, 6.489983 ], [ 99.667969, 6.926427 ], [ 99.492188, 7.362467 ], [ 98.437500, 8.407168 ], [ 98.261719, 7.798079 ], [ 98.085938, 8.407168 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.953349 ], [ 99.140625, 12.811801 ], [ 99.052734, 13.838080 ], [ 98.349609, 14.689881 ], [ 98.173828, 15.199386 ], [ 98.525391, 15.368950 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.644022 ], [ 97.294922, 18.479609 ], [ 97.734375, 18.646245 ], [ 98.173828, 19.725342 ], [ 98.876953, 19.808054 ], [ 99.492188, 20.220966 ], [ 100.107422, 20.468189 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.732422, 22.998852 ], [ 106.699219, 22.836946 ], [ 106.523438, 22.268764 ], [ 106.962891, 21.861499 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.820312, 19.808054 ], [ 105.644531, 19.062118 ], [ 107.314453, 16.720385 ], [ 108.193359, 16.130262 ], [ 108.808594, 15.284185 ], [ 109.248047, 13.496473 ], [ 109.160156, 11.695273 ], [ 108.281250, 11.092166 ], [ 107.138672, 10.401378 ], [ 106.347656, 9.535749 ], [ 105.117188, 8.667918 ], [ 104.765625, 9.275622 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 105.117188, 10.919618 ], [ 106.171875, 11.005904 ], [ 105.732422, 11.609193 ], [ 107.490234, 12.382928 ], [ 107.578125, 13.581921 ], [ 107.314453, 14.264383 ], [ 107.490234, 15.284185 ], [ 107.226562, 15.961329 ], [ 106.523438, 16.636192 ], [ 105.029297, 18.729502 ], [ 103.886719, 19.311143 ], [ 104.150391, 19.642588 ], [ 104.765625, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.512557 ], [ 102.656250, 22.755921 ], [ 104.414062, 22.836946 ], [ 105.292969, 23.402765 ], [ 105.732422, 22.998852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.402765 ], [ 105.732422, 22.998852 ], [ 106.699219, 22.836946 ], [ 106.523438, 22.268764 ], [ 106.962891, 21.861499 ], [ 108.017578, 21.616579 ], [ 106.699219, 20.715015 ], [ 105.820312, 19.808054 ], [ 105.644531, 19.062118 ], [ 107.314453, 16.720385 ], [ 108.193359, 16.130262 ], [ 108.808594, 15.284185 ], [ 109.248047, 13.496473 ], [ 109.160156, 11.695273 ], [ 108.281250, 11.092166 ], [ 107.138672, 10.401378 ], [ 106.347656, 9.535749 ], [ 105.117188, 8.667918 ], [ 104.765625, 9.275622 ], [ 105.029297, 9.968851 ], [ 104.326172, 10.487812 ], [ 105.117188, 10.919618 ], [ 106.171875, 11.005904 ], [ 105.732422, 11.609193 ], [ 107.490234, 12.382928 ], [ 107.578125, 13.581921 ], [ 107.314453, 14.264383 ], [ 107.490234, 15.284185 ], [ 107.226562, 15.961329 ], [ 106.523438, 16.636192 ], [ 105.029297, 18.729502 ], [ 103.886719, 19.311143 ], [ 104.150391, 19.642588 ], [ 104.765625, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.512557 ], [ 102.656250, 22.755921 ], [ 104.414062, 22.836946 ], [ 105.292969, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.314453, 14.264383 ], [ 107.578125, 13.581921 ], [ 107.490234, 12.382928 ], [ 105.732422, 11.609193 ], [ 106.171875, 11.005904 ], [ 105.117188, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.447266, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.919922, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.349548 ], [ 105.996094, 13.923404 ], [ 106.435547, 14.604847 ], [ 107.314453, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 14.604847 ], [ 107.314453, 14.264383 ], [ 107.578125, 13.581921 ], [ 107.490234, 12.382928 ], [ 105.732422, 11.609193 ], [ 106.171875, 11.005904 ], [ 105.117188, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.447266, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.919922, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.349548 ], [ 105.996094, 13.923404 ], [ 106.435547, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.597656, 6.489983 ], [ 117.685547, 6.053161 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.090944 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 117.861328, 4.214943 ], [ 116.982422, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.488281, 3.250209 ], [ 115.048828, 2.899153 ], [ 114.609375, 1.493971 ], [ 113.730469, 1.230374 ], [ 112.851562, 1.581830 ], [ 112.324219, 1.493971 ], [ 111.796875, 0.966751 ], [ 111.093750, 1.054628 ], [ 110.478516, 0.790990 ], [ 109.775391, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 114.609375, 4.039618 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.400391, 5.528511 ], [ 116.191406, 6.227934 ], [ 116.718750, 6.926427 ], [ 117.070312, 7.013668 ], [ 117.597656, 6.489983 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.074219, 5.703448 ], [ 101.777344, 5.878332 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.915833 ], [ 103.271484, 3.776559 ], [ 103.447266, 2.811371 ], [ 103.798828, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 101.250000, 3.337954 ], [ 100.634766, 3.951941 ], [ 100.546875, 4.828260 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.019531, 6.489983 ], [ 100.195312, 6.664608 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.070312, 7.013668 ], [ 117.597656, 6.489983 ], [ 117.685547, 6.053161 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.090944 ], [ 118.388672, 5.003394 ], [ 118.564453, 4.565474 ], [ 117.861328, 4.214943 ], [ 116.982422, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.488281, 3.250209 ], [ 115.048828, 2.899153 ], [ 114.609375, 1.493971 ], [ 113.730469, 1.230374 ], [ 112.851562, 1.581830 ], [ 112.324219, 1.493971 ], [ 111.796875, 0.966751 ], [ 111.093750, 1.054628 ], [ 110.478516, 0.790990 ], [ 109.775391, 1.406109 ], [ 109.599609, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.093750, 1.933227 ], [ 111.357422, 2.723583 ], [ 112.939453, 3.162456 ], [ 114.169922, 4.565474 ], [ 114.609375, 4.039618 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.400391, 5.528511 ], [ 116.191406, 6.227934 ], [ 116.718750, 6.926427 ], [ 117.070312, 7.013668 ] ] ], [ [ [ 100.195312, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.074219, 5.703448 ], [ 101.777344, 5.878332 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.915833 ], [ 103.271484, 3.776559 ], [ 103.447266, 2.811371 ], [ 103.798828, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.150391, 1.318243 ], [ 103.447266, 1.230374 ], [ 101.337891, 2.811371 ], [ 101.250000, 3.337954 ], [ 100.634766, 3.951941 ], [ 100.546875, 4.828260 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.019531, 6.489983 ], [ 100.195312, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.904297, 25.005973 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.146484, 22.836946 ], [ 120.058594, 23.563987 ], [ 120.673828, 24.607069 ], [ 121.464844, 25.324167 ], [ 121.904297, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.904297, 25.005973 ], [ 121.728516, 24.447150 ], [ 120.673828, 22.024546 ], [ 120.146484, 22.836946 ], [ 120.058594, 23.563987 ], [ 120.673828, 24.607069 ], [ 121.464844, 25.324167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.605469, 42.423457 ], [ 130.693359, 42.228517 ], [ 130.341797, 42.293564 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 129.111328, 40.713956 ], [ 128.583984, 40.245992 ], [ 127.880859, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.441406, 39.368279 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 128.144531, 38.410558 ], [ 127.001953, 38.272689 ], [ 126.650391, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.123047, 37.788081 ], [ 125.683594, 37.996163 ], [ 125.507812, 37.788081 ], [ 125.244141, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.628906, 38.134557 ], [ 124.980469, 38.616870 ], [ 125.156250, 38.685510 ], [ 125.068359, 38.891033 ], [ 125.332031, 39.436193 ], [ 125.244141, 39.571822 ], [ 124.716797, 39.707187 ], [ 124.189453, 39.977120 ], [ 125.068359, 40.580585 ], [ 126.123047, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.265625, 41.508577 ], [ 128.144531, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.550781, 42.488302 ], [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 130.693359, 42.228517 ], [ 130.341797, 42.293564 ], [ 129.638672, 41.640078 ], [ 129.638672, 40.913513 ], [ 129.111328, 40.713956 ], [ 128.583984, 40.245992 ], [ 127.880859, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.441406, 39.368279 ], [ 127.353516, 39.232253 ], [ 128.320312, 38.616870 ], [ 128.144531, 38.410558 ], [ 127.001953, 38.272689 ], [ 126.650391, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.123047, 37.788081 ], [ 125.683594, 37.996163 ], [ 125.507812, 37.788081 ], [ 125.244141, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.628906, 38.134557 ], [ 124.980469, 38.616870 ], [ 125.156250, 38.685510 ], [ 125.068359, 38.891033 ], [ 125.332031, 39.436193 ], [ 125.244141, 39.571822 ], [ 124.716797, 39.707187 ], [ 124.189453, 39.977120 ], [ 125.068359, 40.580585 ], [ 126.123047, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.265625, 41.508577 ], [ 128.144531, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.550781, 42.488302 ], [ 129.990234, 43.004647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 128.144531, 34.957995 ], [ 127.353516, 34.524661 ], [ 126.474609, 34.452218 ], [ 126.298828, 34.957995 ], [ 126.474609, 35.746512 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.857507 ], [ 127.001953, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.375000, 36.809285 ], [ 129.462891, 35.675147 ], [ 129.023438, 35.101934 ], [ 128.144531, 34.957995 ], [ 127.353516, 34.524661 ], [ 126.474609, 34.452218 ], [ 126.298828, 34.957995 ], [ 126.474609, 35.746512 ], [ 126.035156, 36.738884 ], [ 126.826172, 36.949892 ], [ 126.123047, 37.788081 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.857507 ], [ 127.001953, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.320312, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.595703, 6.053161 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 123.925781, 6.926427 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 123.222656, 7.449624 ], [ 122.783203, 7.536764 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.275292 ], [ 122.255859, 8.059230 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 124.541016, 8.581021 ], [ 124.716797, 9.015302 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ] ] ], [ [ [ 118.916016, 10.401378 ], [ 119.443359, 11.350797 ], [ 119.619141, 10.574222 ], [ 119.003906, 10.055403 ], [ 118.476562, 9.362353 ], [ 117.246094, 8.494105 ], [ 117.597656, 9.102097 ], [ 118.916016, 10.401378 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.783203, 10.314919 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.398438, 10.487812 ], [ 124.013672, 11.264612 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.716797, 10.919618 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.436955 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ], [ 125.156250, 12.554564 ] ] ], [ [ [ 122.431641, 11.609193 ], [ 123.046875, 11.609193 ], [ 123.046875, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ], [ 122.431641, 11.609193 ] ] ], [ [ [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ] ] ], [ [ [ 121.904297, 18.229351 ], [ 122.167969, 18.479609 ], [ 122.255859, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.431641, 17.140790 ], [ 122.167969, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.199386 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.264383 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.838080 ], [ 123.837891, 13.239945 ], [ 124.101562, 13.068777 ], [ 124.013672, 12.554564 ], [ 123.222656, 13.068777 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.923404 ], [ 120.673828, 14.349548 ], [ 120.937500, 14.604847 ], [ 120.673828, 14.774883 ], [ 120.498047, 14.434680 ], [ 120.058594, 15.029686 ], [ 119.882812, 15.453680 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.322266, 17.644022 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ], [ 121.904297, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.332031, 9.795678 ], [ 126.210938, 9.362353 ], [ 126.298828, 8.494105 ], [ 126.474609, 7.275292 ], [ 126.123047, 6.315299 ], [ 125.771484, 7.362467 ], [ 125.332031, 6.839170 ], [ 125.595703, 6.053161 ], [ 125.332031, 5.615986 ], [ 124.189453, 6.227934 ], [ 123.925781, 6.926427 ], [ 124.189453, 7.362467 ], [ 123.574219, 7.885147 ], [ 123.222656, 7.449624 ], [ 122.783203, 7.536764 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.275292 ], [ 122.255859, 8.059230 ], [ 123.486328, 8.754795 ], [ 123.837891, 8.320212 ], [ 124.541016, 8.581021 ], [ 124.716797, 9.015302 ], [ 125.419922, 9.015302 ], [ 125.332031, 9.795678 ] ] ], [ [ [ 119.443359, 11.436955 ], [ 119.619141, 10.574222 ], [ 119.003906, 10.055403 ], [ 118.476562, 9.362353 ], [ 117.158203, 8.407168 ], [ 117.597656, 9.102097 ], [ 118.916016, 10.401378 ], [ 119.443359, 11.436955 ] ] ], [ [ [ 124.013672, 11.264612 ], [ 123.925781, 10.314919 ], [ 122.958984, 9.102097 ], [ 122.343750, 9.795678 ], [ 122.783203, 10.314919 ], [ 122.871094, 10.919618 ], [ 123.486328, 11.005904 ], [ 123.310547, 10.314919 ], [ 124.013672, 11.264612 ] ] ], [ [ [ 124.189453, 12.640338 ], [ 125.156250, 12.554564 ], [ 125.419922, 12.211180 ], [ 125.771484, 11.092166 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.716797, 10.141932 ], [ 124.716797, 10.919618 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.436955 ], [ 124.804688, 11.867351 ], [ 124.189453, 12.640338 ] ] ], [ [ [ 121.816406, 11.953349 ], [ 122.431641, 11.609193 ], [ 123.046875, 11.609193 ], [ 123.046875, 11.178402 ], [ 122.871094, 10.919618 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.436955 ], [ 121.816406, 11.953349 ] ] ], [ [ [ 121.113281, 13.496473 ], [ 121.464844, 13.154376 ], [ 121.201172, 12.211180 ], [ 120.322266, 13.496473 ], [ 121.113281, 13.496473 ] ] ], [ [ [ 121.289062, 18.562947 ], [ 121.904297, 18.229351 ], [ 122.167969, 18.479609 ], [ 122.255859, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.431641, 17.140790 ], [ 122.167969, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.199386 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.264383 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.838080 ], [ 123.837891, 13.239945 ], [ 124.101562, 13.068777 ], [ 124.013672, 12.554564 ], [ 123.222656, 13.068777 ], [ 122.871094, 13.581921 ], [ 122.607422, 13.239945 ], [ 121.992188, 13.838080 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.923404 ], [ 120.673828, 14.349548 ], [ 120.937500, 14.604847 ], [ 120.673828, 14.774883 ], [ 120.498047, 14.434680 ], [ 120.058594, 15.029686 ], [ 119.882812, 15.453680 ], [ 119.882812, 16.383391 ], [ 120.234375, 16.045813 ], [ 120.322266, 17.644022 ], [ 120.673828, 18.562947 ], [ 121.289062, 18.562947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.609375, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ], [ 115.312500, 4.390229 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.400391, 5.528511 ], [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.609375, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.400391, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.855469, 40.044438 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.537109, 36.385913 ], [ 140.712891, 35.889050 ], [ 140.185547, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.099609, 33.943360 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.358062 ], [ 130.341797, 33.651208 ], [ 130.869141, 34.234512 ], [ 131.835938, 34.813803 ], [ 132.539062, 35.460670 ], [ 134.560547, 35.746512 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ], [ 141.855469, 40.044438 ] ] ], [ [ [ 134.560547, 34.161818 ], [ 134.736328, 33.870416 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 133.242188, 33.358062 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.363281, 33.504759 ], [ 132.890625, 34.089061 ], [ 133.417969, 34.016242 ], [ 133.857422, 34.379713 ], [ 134.560547, 34.161818 ] ] ], [ [ [ 143.085938, 44.527843 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.943359, 45.583290 ], [ 143.085938, 44.527843 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.442726 ], [ 141.855469, 40.044438 ], [ 141.855469, 39.232253 ], [ 140.888672, 38.203655 ], [ 140.888672, 37.160317 ], [ 140.537109, 36.385913 ], [ 140.712891, 35.889050 ], [ 140.185547, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.669359 ], [ 135.791016, 33.504759 ], [ 135.087891, 33.870416 ], [ 135.000000, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.099609, 33.943360 ], [ 130.957031, 33.943360 ], [ 131.923828, 33.211116 ], [ 131.308594, 31.503629 ], [ 130.605469, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.358062 ], [ 130.341797, 33.651208 ], [ 130.869141, 34.234512 ], [ 131.835938, 34.813803 ], [ 132.539062, 35.460670 ], [ 134.560547, 35.746512 ], [ 135.615234, 35.532226 ], [ 136.669922, 37.370157 ], [ 137.373047, 36.879621 ], [ 139.394531, 38.272689 ], [ 140.009766, 39.504041 ], [ 139.833984, 40.580585 ], [ 140.273438, 41.244772 ], [ 141.328125, 41.442726 ] ] ], [ [ [ 133.857422, 34.379713 ], [ 134.560547, 34.161818 ], [ 134.736328, 33.870416 ], [ 134.121094, 33.211116 ], [ 133.769531, 33.578015 ], [ 133.242188, 33.358062 ], [ 132.978516, 32.768800 ], [ 132.275391, 32.990236 ], [ 132.363281, 33.504759 ], [ 132.890625, 34.089061 ], [ 133.417969, 34.016242 ], [ 133.857422, 34.379713 ] ] ], [ [ [ 141.943359, 45.583290 ], [ 143.085938, 44.527843 ], [ 143.876953, 44.213710 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.458984, 43.325178 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.032974 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.640078 ], [ 139.921875, 41.574361 ], [ 139.746094, 42.617791 ], [ 140.273438, 43.389082 ], [ 141.328125, 43.389082 ], [ 141.943359, 45.583290 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.560247 ], [ 178.505859, -18.145852 ], [ 177.890625, -18.229351 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.644022 ], [ 177.626953, -17.308688 ], [ 178.066406, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.560247 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -180.000000, -16.467695 ], [ -180.000000, -16.045813 ], [ -179.824219, -15.961329 ], [ -180.000000, -16.467695 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.560247 ], [ 178.505859, -18.145852 ], [ 177.890625, -18.229351 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.644022 ], [ 177.626953, -17.308688 ], [ 178.066406, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.284551 ], [ 12.919922, 1.845384 ], [ 13.271484, 1.318243 ], [ 13.974609, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.798828, 0.087891 ], [ 14.238281, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.238281, -1.933227 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.372369 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.460181 ], [ 11.425781, -2.723583 ], [ 11.777344, -3.425692 ], [ 11.074219, -3.951941 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.054628 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.439449 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.142502 ], [ 11.250000, 2.284551 ], [ 11.689453, 2.372369 ], [ 12.304688, 2.196727 ], [ 12.919922, 2.372369 ], [ 13.007812, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.372369 ], [ 13.007812, 2.284551 ], [ 12.919922, 1.845384 ], [ 13.271484, 1.318243 ], [ 13.974609, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.798828, 0.087891 ], [ 14.238281, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.238281, -1.933227 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.372369 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.460181 ], [ 11.425781, -2.723583 ], [ 11.777344, -3.425692 ], [ 11.074219, -3.951941 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.054628 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.439449 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.142502 ], [ 11.250000, 2.284551 ], [ 11.689453, 2.372369 ], [ 12.304688, 2.196727 ], [ 12.919922, 2.372369 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 3.513421 ], [ 18.369141, 2.986927 ], [ 17.841797, 1.757537 ], [ 17.753906, 0.351560 ], [ 17.490234, -0.703107 ], [ 16.347656, -1.669686 ], [ 15.908203, -2.635789 ], [ 15.996094, -3.513421 ], [ 14.501953, -4.915833 ], [ 14.150391, -4.740675 ], [ 14.062500, -4.477856 ], [ 13.535156, -4.477856 ], [ 13.183594, -4.828260 ], [ 12.919922, -4.740675 ], [ 12.568359, -4.390229 ], [ 11.865234, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.777344, -3.425692 ], [ 11.425781, -2.723583 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.372369 ], [ 13.974609, -2.460181 ], [ 14.238281, -1.933227 ], [ 14.414062, -1.318243 ], [ 14.238281, -0.527336 ], [ 13.798828, 0.087891 ], [ 14.238281, 1.230374 ], [ 13.974609, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.919922, 1.845384 ], [ 13.007812, 2.284551 ], [ 14.326172, 2.284551 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.250209 ], [ 17.050781, 3.776559 ], [ 18.369141, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.050781, 3.776559 ], [ 18.369141, 3.513421 ], [ 18.369141, 2.986927 ], [ 17.841797, 1.757537 ], [ 17.753906, 0.351560 ], [ 17.490234, -0.703107 ], [ 16.347656, -1.669686 ], [ 15.908203, -2.635789 ], [ 15.996094, -3.513421 ], [ 14.501953, -4.915833 ], [ 14.150391, -4.740675 ], [ 14.062500, -4.477856 ], [ 13.535156, -4.477856 ], [ 13.183594, -4.828260 ], [ 12.919922, -4.740675 ], [ 12.568359, -4.390229 ], [ 11.865234, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.777344, -3.425692 ], [ 11.425781, -2.723583 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.372369 ], [ 13.974609, -2.460181 ], [ 14.238281, -1.933227 ], [ 14.414062, -1.318243 ], [ 14.238281, -0.527336 ], [ 13.798828, 0.087891 ], [ 14.238281, 1.230374 ], [ 13.974609, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.919922, 1.845384 ], [ 13.007812, 2.284551 ], [ 14.326172, 2.284551 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.250209 ], [ 17.050781, 3.776559 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.477856 ], [ 28.388672, 4.302591 ], [ 28.652344, 4.477856 ], [ 29.091797, 4.390229 ], [ 29.707031, 4.653080 ], [ 29.882812, 4.214943 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.113281, 2.284551 ], [ 30.410156, 1.669686 ], [ 29.794922, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.179688, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.443359, -5.353521 ], [ 29.355469, -5.878332 ], [ 29.619141, -6.489983 ], [ 30.146484, -7.013668 ], [ 30.673828, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.916016, -8.320212 ], [ 28.652344, -8.494105 ], [ 28.388672, -9.102097 ], [ 28.652344, -9.535749 ], [ 28.300781, -11.781325 ], [ 29.267578, -12.297068 ], [ 29.531250, -12.125264 ], [ 29.619141, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.211180 ], [ 27.333984, -12.125264 ], [ 27.158203, -11.523088 ], [ 26.542969, -11.867351 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.264612 ], [ 24.257812, -11.178402 ], [ 24.169922, -10.919618 ], [ 23.378906, -10.833306 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.882275 ], [ 21.796875, -9.449062 ], [ 21.796875, -8.841651 ], [ 21.884766, -8.233237 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.039062, -6.926427 ], [ 19.951172, -7.100893 ], [ 19.335938, -7.100893 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.798079 ], [ 17.402344, -8.059230 ], [ 16.787109, -7.188101 ], [ 16.259766, -5.790897 ], [ 13.359375, -5.790897 ], [ 12.304688, -6.053161 ], [ 12.128906, -5.703448 ], [ 12.392578, -5.615986 ], [ 12.392578, -5.178482 ], [ 12.568359, -4.915833 ], [ 12.919922, -4.740675 ], [ 13.183594, -4.828260 ], [ 13.535156, -4.477856 ], [ 14.062500, -4.477856 ], [ 14.150391, -4.740675 ], [ 14.501953, -4.915833 ], [ 15.996094, -3.513421 ], [ 15.908203, -2.635789 ], [ 16.347656, -1.669686 ], [ 17.490234, -0.703107 ], [ 17.753906, 0.351560 ], [ 17.841797, 1.757537 ], [ 18.369141, 2.986927 ], [ 18.457031, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.423828, 5.090944 ], [ 20.917969, 4.390229 ], [ 22.324219, 4.039618 ], [ 22.763672, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.345703, 5.178482 ], [ 24.785156, 4.915833 ], [ 25.048828, 5.003394 ], [ 25.224609, 5.178482 ], [ 25.576172, 5.266008 ], [ 26.982422, 5.178482 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.477856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.477856 ], [ 28.388672, 4.302591 ], [ 28.652344, 4.477856 ], [ 29.091797, 4.390229 ], [ 29.707031, 4.653080 ], [ 29.882812, 4.214943 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.113281, 2.284551 ], [ 30.410156, 1.669686 ], [ 29.794922, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.179688, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.443359, -5.353521 ], [ 29.355469, -5.878332 ], [ 29.619141, -6.489983 ], [ 30.146484, -7.013668 ], [ 30.673828, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.916016, -8.320212 ], [ 28.652344, -8.494105 ], [ 28.388672, -9.102097 ], [ 28.652344, -9.535749 ], [ 28.300781, -11.781325 ], [ 29.267578, -12.297068 ], [ 29.531250, -12.125264 ], [ 29.619141, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.211180 ], [ 27.333984, -12.125264 ], [ 27.158203, -11.523088 ], [ 26.542969, -11.867351 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.264612 ], [ 24.257812, -11.178402 ], [ 24.169922, -10.919618 ], [ 23.378906, -10.833306 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.882275 ], [ 21.796875, -9.449062 ], [ 21.796875, -8.841651 ], [ 21.884766, -8.233237 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.039062, -6.926427 ], [ 19.951172, -7.100893 ], [ 19.335938, -7.100893 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.798079 ], [ 17.402344, -8.059230 ], [ 16.787109, -7.188101 ], [ 16.259766, -5.790897 ], [ 13.359375, -5.790897 ], [ 12.304688, -6.053161 ], [ 12.128906, -5.703448 ], [ 12.392578, -5.615986 ], [ 12.392578, -5.178482 ], [ 12.568359, -4.915833 ], [ 12.919922, -4.740675 ], [ 13.183594, -4.828260 ], [ 13.535156, -4.477856 ], [ 14.062500, -4.477856 ], [ 14.150391, -4.740675 ], [ 14.501953, -4.915833 ], [ 15.996094, -3.513421 ], [ 15.908203, -2.635789 ], [ 16.347656, -1.669686 ], [ 17.490234, -0.703107 ], [ 17.753906, 0.351560 ], [ 17.841797, 1.757537 ], [ 18.369141, 2.986927 ], [ 18.457031, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.423828, 5.090944 ], [ 20.917969, 4.390229 ], [ 22.324219, 4.039618 ], [ 22.763672, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.345703, 5.178482 ], [ 24.785156, 4.915833 ], [ 25.048828, 5.003394 ], [ 25.224609, 5.178482 ], [ 25.576172, 5.266008 ], [ 26.982422, 5.178482 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.787109, -7.188101 ], [ 17.402344, -8.059230 ], [ 18.457031, -7.798079 ], [ 18.984375, -7.972198 ], [ 19.335938, -7.100893 ], [ 19.951172, -7.100893 ], [ 20.039062, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.884766, -8.233237 ], [ 21.796875, -8.841651 ], [ 21.796875, -9.449062 ], [ 22.148438, -9.882275 ], [ 22.148438, -11.005904 ], [ 23.378906, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.178402 ], [ 23.818359, -11.695273 ], [ 23.994141, -12.125264 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.896484, -17.727759 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 12.744141, -16.888660 ], [ 11.689453, -17.224758 ], [ 11.601562, -16.636192 ], [ 12.128906, -14.434680 ], [ 12.656250, -13.068777 ], [ 13.623047, -11.953349 ], [ 13.710938, -11.264612 ], [ 13.623047, -10.660608 ], [ 13.359375, -10.314919 ], [ 12.832031, -9.102097 ], [ 13.183594, -8.494105 ], [ 12.656250, -6.926427 ], [ 12.216797, -6.227934 ], [ 12.304688, -6.053161 ], [ 13.359375, -5.790897 ], [ 16.259766, -5.790897 ], [ 16.787109, -7.188101 ] ] ], [ [ [ 12.919922, -4.740675 ], [ 12.392578, -5.178482 ], [ 12.392578, -5.615986 ], [ 12.128906, -5.703448 ], [ 11.865234, -5.003394 ], [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.259766, -5.790897 ], [ 16.787109, -7.188101 ], [ 17.402344, -8.059230 ], [ 18.457031, -7.798079 ], [ 18.984375, -7.972198 ], [ 19.335938, -7.100893 ], [ 19.951172, -7.100893 ], [ 20.039062, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.884766, -8.233237 ], [ 21.796875, -8.841651 ], [ 21.796875, -9.449062 ], [ 22.148438, -9.882275 ], [ 22.148438, -11.005904 ], [ 23.378906, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.178402 ], [ 23.818359, -11.695273 ], [ 23.994141, -12.125264 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.884766, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.476432 ], [ 21.357422, -17.895114 ], [ 18.896484, -17.727759 ], [ 18.193359, -17.308688 ], [ 13.974609, -17.392579 ], [ 13.447266, -16.888660 ], [ 12.744141, -16.888660 ], [ 11.689453, -17.224758 ], [ 11.601562, -16.636192 ], [ 12.128906, -14.434680 ], [ 12.656250, -13.068777 ], [ 13.623047, -11.953349 ], [ 13.710938, -11.264612 ], [ 13.623047, -10.660608 ], [ 13.359375, -10.314919 ], [ 12.832031, -9.102097 ], [ 13.183594, -8.494105 ], [ 12.656250, -6.926427 ], [ 12.216797, -6.227934 ], [ 12.304688, -6.053161 ], [ 13.359375, -5.790897 ], [ 16.259766, -5.790897 ] ] ], [ [ [ 12.568359, -4.390229 ], [ 12.919922, -4.740675 ], [ 12.392578, -5.178482 ], [ 12.392578, -5.615986 ], [ 12.128906, -5.703448 ], [ 11.865234, -5.003394 ], [ 12.568359, -4.390229 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.974609, -17.392579 ], [ 18.193359, -17.308688 ], [ 18.896484, -17.727759 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.224758 ], [ 24.609375, -17.308688 ], [ 25.048828, -17.560247 ], [ 24.433594, -17.811456 ], [ 24.169922, -17.811456 ], [ 23.554688, -18.229351 ], [ 23.115234, -17.811456 ], [ 21.621094, -18.145852 ], [ 20.830078, -18.229351 ], [ 20.830078, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.921631 ], [ 18.457031, -28.998532 ], [ 17.314453, -28.767659 ], [ 17.138672, -28.304381 ], [ 16.787109, -28.071980 ], [ 16.259766, -28.536275 ], [ 15.556641, -27.761330 ], [ 15.205078, -27.059126 ], [ 14.326172, -23.805450 ], [ 14.238281, -22.105999 ], [ 13.271484, -20.797201 ], [ 12.568359, -18.979026 ], [ 11.777344, -18.062312 ], [ 11.689453, -17.224758 ], [ 12.744141, -16.888660 ], [ 13.447266, -16.888660 ], [ 13.974609, -17.392579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.888660 ], [ 13.974609, -17.392579 ], [ 18.193359, -17.308688 ], [ 18.896484, -17.727759 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.224758 ], [ 24.609375, -17.308688 ], [ 25.048828, -17.560247 ], [ 24.433594, -17.811456 ], [ 24.169922, -17.811456 ], [ 23.554688, -18.229351 ], [ 23.115234, -17.811456 ], [ 21.621094, -18.145852 ], [ 20.830078, -18.229351 ], [ 20.830078, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.921631 ], [ 18.457031, -28.998532 ], [ 17.314453, -28.767659 ], [ 17.138672, -28.304381 ], [ 16.787109, -28.071980 ], [ 16.259766, -28.536275 ], [ 15.556641, -27.761330 ], [ 15.205078, -27.059126 ], [ 14.326172, -23.805450 ], [ 14.238281, -22.105999 ], [ 13.271484, -20.797201 ], [ 12.568359, -18.979026 ], [ 11.777344, -18.062312 ], [ 11.689453, -17.224758 ], [ 12.744141, -16.888660 ], [ 13.447266, -16.888660 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, -1.669686 ], [ 30.673828, -2.284551 ], [ 30.410156, -2.372369 ], [ 29.882812, -2.284551 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.179688, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.531250, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.054628 ], [ 30.761719, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.054628 ], [ 30.761719, -1.669686 ], [ 30.673828, -2.284551 ], [ 30.410156, -2.372369 ], [ 29.882812, -2.284551 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.179688, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.531250, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.054628 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -2.372369 ], [ 30.673828, -3.337954 ], [ 29.707031, -4.390229 ], [ 29.267578, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.882812, -2.284551 ], [ 30.410156, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.882812, -2.284551 ], [ 30.410156, -2.372369 ], [ 30.673828, -3.337954 ], [ 29.707031, -4.390229 ], [ 29.267578, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.882812, -2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, -9.188870 ], [ 33.222656, -9.622414 ], [ 33.398438, -10.487812 ], [ 33.046875, -11.523088 ], [ 33.222656, -12.382928 ], [ 32.958984, -12.726084 ], [ 32.607422, -13.667338 ], [ 33.134766, -13.923404 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.453680 ], [ 29.443359, -15.623037 ], [ 28.916016, -15.961329 ], [ 28.740234, -16.383391 ], [ 28.388672, -16.467695 ], [ 26.982422, -17.895114 ], [ 25.224609, -17.727759 ], [ 24.609375, -17.308688 ], [ 23.994141, -17.224758 ], [ 23.203125, -17.476432 ], [ 21.884766, -16.045813 ], [ 21.884766, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.125264 ], [ 23.818359, -11.695273 ], [ 23.994141, -11.178402 ], [ 23.906250, -10.919618 ], [ 24.169922, -10.919618 ], [ 24.257812, -11.178402 ], [ 25.400391, -11.264612 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.867351 ], [ 27.158203, -11.523088 ], [ 27.333984, -12.125264 ], [ 28.125000, -12.211180 ], [ 28.916016, -13.239945 ], [ 29.619141, -13.239945 ], [ 29.531250, -12.125264 ], [ 29.267578, -12.297068 ], [ 28.300781, -11.781325 ], [ 28.652344, -9.535749 ], [ 28.388672, -9.102097 ], [ 28.652344, -8.494105 ], [ 30.322266, -8.233237 ], [ 32.695312, -9.188870 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.695312, -9.188870 ], [ 33.222656, -9.622414 ], [ 33.398438, -10.487812 ], [ 33.046875, -11.523088 ], [ 33.222656, -12.382928 ], [ 32.958984, -12.726084 ], [ 32.607422, -13.667338 ], [ 33.134766, -13.923404 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.453680 ], [ 29.443359, -15.623037 ], [ 28.916016, -15.961329 ], [ 28.740234, -16.383391 ], [ 28.388672, -16.467695 ], [ 26.982422, -17.895114 ], [ 25.224609, -17.727759 ], [ 24.609375, -17.308688 ], [ 23.994141, -17.224758 ], [ 23.203125, -17.476432 ], [ 21.884766, -16.045813 ], [ 21.884766, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.125264 ], [ 23.818359, -11.695273 ], [ 23.994141, -11.178402 ], [ 23.906250, -10.919618 ], [ 24.169922, -10.919618 ], [ 24.257812, -11.178402 ], [ 25.400391, -11.264612 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.867351 ], [ 27.158203, -11.523088 ], [ 27.333984, -12.125264 ], [ 28.125000, -12.211180 ], [ 28.916016, -13.239945 ], [ 29.619141, -13.239945 ], [ 29.531250, -12.125264 ], [ 29.267578, -12.297068 ], [ 28.300781, -11.781325 ], [ 28.652344, -9.535749 ], [ 28.388672, -9.102097 ], [ 28.652344, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.113281, -15.792254 ], [ 31.552734, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.255859, -16.383391 ], [ 32.783203, -16.636192 ], [ 32.783203, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.695312, -19.642588 ], [ 32.607422, -20.303418 ], [ 32.431641, -20.385825 ], [ 32.167969, -21.043491 ], [ 31.113281, -22.187405 ], [ 30.585938, -22.105999 ], [ 30.322266, -22.268764 ], [ 29.355469, -22.024546 ], [ 28.740234, -21.616579 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.797201 ], [ 27.685547, -20.468189 ], [ 27.246094, -20.385825 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.388672, -16.467695 ], [ 28.740234, -16.383391 ], [ 28.916016, -15.961329 ], [ 29.443359, -15.623037 ], [ 30.234375, -15.453680 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 30.322266, -15.876809 ], [ 31.113281, -15.792254 ], [ 31.552734, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.255859, -16.383391 ], [ 32.783203, -16.636192 ], [ 32.783203, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.695312, -19.642588 ], [ 32.607422, -20.303418 ], [ 32.431641, -20.385825 ], [ 32.167969, -21.043491 ], [ 31.113281, -22.187405 ], [ 30.585938, -22.105999 ], [ 30.322266, -22.268764 ], [ 29.355469, -22.024546 ], [ 28.740234, -21.616579 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.797201 ], [ 27.685547, -20.468189 ], [ 27.246094, -20.385825 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.388672, -16.467695 ], [ 28.740234, -16.383391 ], [ 28.916016, -15.961329 ], [ 29.443359, -15.623037 ], [ 30.234375, -15.453680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.617188, -3.074695 ], [ 37.705078, -3.601142 ], [ 39.199219, -4.653080 ], [ 38.671875, -5.878332 ], [ 38.759766, -6.402648 ], [ 39.375000, -6.839170 ], [ 39.462891, -7.013668 ], [ 39.111328, -7.623887 ], [ 39.111328, -8.407168 ], [ 39.902344, -10.055403 ], [ 40.253906, -10.314919 ], [ 39.462891, -10.833306 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.523088 ], [ 36.474609, -11.695273 ], [ 35.244141, -11.436955 ], [ 34.541016, -11.436955 ], [ 34.277344, -10.141932 ], [ 33.662109, -9.362353 ], [ 32.695312, -9.188870 ], [ 30.673828, -8.320212 ], [ 30.146484, -7.013668 ], [ 29.619141, -6.489983 ], [ 29.355469, -5.878332 ], [ 29.443359, -5.353521 ], [ 29.267578, -4.477856 ], [ 29.707031, -4.390229 ], [ 30.673828, -3.337954 ], [ 30.410156, -2.372369 ], [ 30.673828, -2.284551 ], [ 30.761719, -1.669686 ], [ 30.410156, -1.054628 ], [ 30.761719, -0.966751 ], [ 33.837891, -0.878872 ], [ 37.617188, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.837891, -0.878872 ], [ 37.617188, -3.074695 ], [ 37.705078, -3.601142 ], [ 39.199219, -4.653080 ], [ 38.671875, -5.878332 ], [ 38.759766, -6.402648 ], [ 39.375000, -6.839170 ], [ 39.462891, -7.013668 ], [ 39.111328, -7.623887 ], [ 39.111328, -8.407168 ], [ 39.902344, -10.055403 ], [ 40.253906, -10.314919 ], [ 39.462891, -10.833306 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.523088 ], [ 36.474609, -11.695273 ], [ 35.244141, -11.436955 ], [ 34.541016, -11.436955 ], [ 34.277344, -10.141932 ], [ 33.662109, -9.362353 ], [ 32.695312, -9.188870 ], [ 30.673828, -8.320212 ], [ 30.146484, -7.013668 ], [ 29.619141, -6.489983 ], [ 29.355469, -5.878332 ], [ 29.443359, -5.353521 ], [ 29.267578, -4.477856 ], [ 29.707031, -4.390229 ], [ 30.673828, -3.337954 ], [ 30.410156, -2.372369 ], [ 30.673828, -2.284551 ], [ 30.761719, -1.669686 ], [ 30.410156, -1.054628 ], [ 30.761719, -0.966751 ], [ 33.837891, -0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.662109, -9.362353 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.436955 ], [ 34.277344, -12.211180 ], [ 34.541016, -13.496473 ], [ 34.892578, -13.496473 ], [ 35.244141, -13.838080 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.045813 ], [ 34.980469, -16.720385 ], [ 34.365234, -16.130262 ], [ 34.277344, -15.453680 ], [ 34.453125, -14.944785 ], [ 34.453125, -14.604847 ], [ 34.013672, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.607422, -13.667338 ], [ 32.958984, -12.726084 ], [ 33.222656, -12.382928 ], [ 33.046875, -11.523088 ], [ 33.398438, -10.487812 ], [ 33.222656, -9.622414 ], [ 32.695312, -9.188870 ], [ 33.662109, -9.362353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.695312, -9.188870 ], [ 33.662109, -9.362353 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.436955 ], [ 34.277344, -12.211180 ], [ 34.541016, -13.496473 ], [ 34.892578, -13.496473 ], [ 35.244141, -13.838080 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.045813 ], [ 34.980469, -16.720385 ], [ 34.365234, -16.130262 ], [ 34.277344, -15.453680 ], [ 34.453125, -14.944785 ], [ 34.453125, -14.604847 ], [ 34.013672, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.607422, -13.667338 ], [ 32.958984, -12.726084 ], [ 33.222656, -12.382928 ], [ 33.046875, -11.523088 ], [ 33.398438, -10.487812 ], [ 33.222656, -9.622414 ], [ 32.695312, -9.188870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.746969 ], [ 40.517578, -14.179186 ], [ 40.693359, -14.689881 ], [ 40.078125, -16.045813 ], [ 39.375000, -16.720385 ], [ 37.353516, -17.560247 ], [ 36.210938, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.476950 ], [ 34.716797, -19.725342 ], [ 34.628906, -20.468189 ], [ 35.156250, -21.207459 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.024546 ], [ 35.507812, -22.998852 ], [ 35.332031, -23.483401 ], [ 35.595703, -23.644524 ], [ 35.419922, -24.046464 ], [ 34.980469, -24.447150 ], [ 32.958984, -25.324167 ], [ 32.519531, -25.720735 ], [ 32.607422, -26.115986 ], [ 32.871094, -26.194877 ], [ 32.783203, -26.667096 ], [ 31.992188, -26.667096 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.113281, -22.187405 ], [ 32.167969, -21.043491 ], [ 32.431641, -20.385825 ], [ 32.607422, -20.303418 ], [ 32.695312, -19.642588 ], [ 32.607422, -19.394068 ], [ 32.783203, -17.978733 ], [ 32.783203, -16.636192 ], [ 32.255859, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.552734, -16.045813 ], [ 31.113281, -15.792254 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.134766, -13.923404 ], [ 33.750000, -14.434680 ], [ 34.013672, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.453125, -14.944785 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.130262 ], [ 34.980469, -16.720385 ], [ 35.332031, -16.045813 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.838080 ], [ 34.892578, -13.496473 ], [ 34.541016, -13.496473 ], [ 34.277344, -12.211180 ], [ 34.541016, -11.436955 ], [ 35.244141, -11.436955 ], [ 36.474609, -11.695273 ], [ 37.441406, -11.523088 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.462891, -10.833306 ], [ 40.253906, -10.314919 ], [ 40.429688, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, -10.314919 ], [ 40.429688, -10.746969 ], [ 40.517578, -14.179186 ], [ 40.693359, -14.689881 ], [ 40.078125, -16.045813 ], [ 39.375000, -16.720385 ], [ 37.353516, -17.560247 ], [ 36.210938, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.476950 ], [ 34.716797, -19.725342 ], [ 34.628906, -20.468189 ], [ 35.156250, -21.207459 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.024546 ], [ 35.507812, -22.998852 ], [ 35.332031, -23.483401 ], [ 35.595703, -23.644524 ], [ 35.419922, -24.046464 ], [ 34.980469, -24.447150 ], [ 32.958984, -25.324167 ], [ 32.519531, -25.720735 ], [ 32.607422, -26.115986 ], [ 32.871094, -26.194877 ], [ 32.783203, -26.667096 ], [ 31.992188, -26.667096 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.113281, -22.187405 ], [ 32.167969, -21.043491 ], [ 32.431641, -20.385825 ], [ 32.607422, -20.303418 ], [ 32.695312, -19.642588 ], [ 32.607422, -19.394068 ], [ 32.783203, -17.978733 ], [ 32.783203, -16.636192 ], [ 32.255859, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.552734, -16.045813 ], [ 31.113281, -15.792254 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.134766, -13.923404 ], [ 33.750000, -14.434680 ], [ 34.013672, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.453125, -14.944785 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.130262 ], [ 34.980469, -16.720385 ], [ 35.332031, -16.045813 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.838080 ], [ 34.892578, -13.496473 ], [ 34.541016, -13.496473 ], [ 34.277344, -12.211180 ], [ 34.541016, -11.436955 ], [ 35.244141, -11.436955 ], [ 36.474609, -11.695273 ], [ 37.441406, -11.523088 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.462891, -10.833306 ], [ 40.253906, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.224609, -17.727759 ], [ 25.576172, -18.479609 ], [ 26.103516, -19.228177 ], [ 27.246094, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.797201 ], [ 27.949219, -21.453069 ], [ 28.740234, -21.616579 ], [ 29.355469, -22.024546 ], [ 27.949219, -22.755921 ], [ 27.070312, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 24.960938, -25.641526 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 22.763672, -25.482951 ], [ 22.500000, -25.958045 ], [ 21.533203, -26.667096 ], [ 20.830078, -26.824071 ], [ 20.654297, -26.431228 ], [ 20.742188, -25.799891 ], [ 20.126953, -24.846565 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.779905 ], [ 20.830078, -21.779905 ], [ 20.830078, -18.229351 ], [ 21.621094, -18.145852 ], [ 23.115234, -17.811456 ], [ 23.554688, -18.229351 ], [ 24.169922, -17.811456 ], [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 25.576172, -18.479609 ], [ 26.103516, -19.228177 ], [ 27.246094, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.797201 ], [ 27.949219, -21.453069 ], [ 28.740234, -21.616579 ], [ 29.355469, -22.024546 ], [ 27.949219, -22.755921 ], [ 27.070312, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 24.960938, -25.641526 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 22.763672, -25.482951 ], [ 22.500000, -25.958045 ], [ 21.533203, -26.667096 ], [ 20.830078, -26.824071 ], [ 20.654297, -26.431228 ], [ 20.742188, -25.799891 ], [ 20.126953, -24.846565 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.779905 ], [ 20.830078, -21.779905 ], [ 20.830078, -18.229351 ], [ 21.621094, -18.145852 ], [ 23.115234, -17.811456 ], [ 23.554688, -18.229351 ], [ 24.169922, -17.811456 ], [ 25.048828, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.585938, -22.105999 ], [ 31.113281, -22.187405 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.352498 ], [ 30.673828, -26.667096 ], [ 31.201172, -27.215556 ], [ 31.816406, -27.137368 ], [ 31.992188, -26.667096 ], [ 32.783203, -26.667096 ], [ 32.431641, -28.226970 ], [ 32.167969, -28.690588 ], [ 31.464844, -29.228890 ], [ 30.849609, -29.840644 ], [ 29.970703, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.367188, -33.578015 ], [ 25.839844, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.724340 ], [ 24.609375, -33.943360 ], [ 23.554688, -33.724340 ], [ 22.939453, -33.870416 ], [ 22.500000, -33.797409 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.379713 ], [ 20.039062, -34.741612 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.808594, -34.379713 ], [ 18.369141, -33.943360 ], [ 18.369141, -34.089061 ], [ 18.193359, -33.797409 ], [ 18.193359, -33.211116 ], [ 17.841797, -32.546813 ], [ 18.193359, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.259766, -28.536275 ], [ 16.787109, -28.071980 ], [ 17.138672, -28.304381 ], [ 17.314453, -28.767659 ], [ 18.457031, -28.998532 ], [ 18.984375, -28.921631 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.846565 ], [ 20.742188, -25.799891 ], [ 20.654297, -26.431228 ], [ 20.830078, -26.824071 ], [ 21.533203, -26.667096 ], [ 22.500000, -25.958045 ], [ 22.763672, -25.482951 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 24.960938, -25.641526 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.070312, -23.563987 ], [ 27.949219, -22.755921 ], [ 29.355469, -22.024546 ], [ 29.794922, -22.024546 ], [ 30.322266, -22.268764 ] ], [ [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.685547, -30.600094 ], [ 28.037109, -30.524413 ], [ 28.212891, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.267578, -29.228890 ], [ 28.916016, -28.921631 ], [ 28.476562, -28.613459 ], [ 28.037109, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.794922, -22.024546 ], [ 30.322266, -22.268764 ], [ 30.585938, -22.105999 ], [ 31.113281, -22.187405 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.352498 ], [ 30.673828, -26.667096 ], [ 31.201172, -27.215556 ], [ 31.816406, -27.137368 ], [ 31.992188, -26.667096 ], [ 32.783203, -26.667096 ], [ 32.431641, -28.226970 ], [ 32.167969, -28.690588 ], [ 31.464844, -29.228890 ], [ 30.849609, -29.840644 ], [ 29.970703, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.367188, -33.578015 ], [ 25.839844, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.724340 ], [ 24.609375, -33.943360 ], [ 23.554688, -33.724340 ], [ 22.939453, -33.870416 ], [ 22.500000, -33.797409 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.379713 ], [ 20.039062, -34.741612 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.808594, -34.379713 ], [ 18.369141, -33.943360 ], [ 18.369141, -34.089061 ], [ 18.193359, -33.797409 ], [ 18.193359, -33.211116 ], [ 17.841797, -32.546813 ], [ 18.193359, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.259766, -28.536275 ], [ 16.787109, -28.071980 ], [ 17.138672, -28.304381 ], [ 17.314453, -28.767659 ], [ 18.457031, -28.998532 ], [ 18.984375, -28.921631 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.846565 ], [ 20.742188, -25.799891 ], [ 20.654297, -26.431228 ], [ 20.830078, -26.824071 ], [ 21.533203, -26.667096 ], [ 22.500000, -25.958045 ], [ 22.763672, -25.482951 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 24.960938, -25.641526 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.070312, -23.563987 ], [ 27.949219, -22.755921 ], [ 29.355469, -22.024546 ], [ 29.794922, -22.024546 ] ], [ [ 28.476562, -28.613459 ], [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.685547, -30.600094 ], [ 28.037109, -30.524413 ], [ 28.212891, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.267578, -29.228890 ], [ 28.916016, -28.921631 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.799891 ], [ 31.992188, -26.667096 ], [ 31.816406, -27.137368 ], [ 31.201172, -27.215556 ], [ 30.673828, -26.667096 ], [ 30.673828, -26.352498 ], [ 31.025391, -25.720735 ], [ 31.289062, -25.641526 ], [ 31.816406, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, -25.641526 ], [ 31.816406, -25.799891 ], [ 31.992188, -26.667096 ], [ 31.816406, -27.137368 ], [ 31.201172, -27.215556 ], [ 30.673828, -26.667096 ], [ 30.673828, -26.352498 ], [ 31.025391, -25.720735 ], [ 31.289062, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.916016, -28.921631 ], [ 29.267578, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.212891, -30.221102 ], [ 28.037109, -30.524413 ], [ 27.685547, -30.600094 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.476562, -28.613459 ], [ 28.916016, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, -28.613459 ], [ 28.916016, -28.921631 ], [ 29.267578, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.212891, -30.221102 ], [ 28.037109, -30.524413 ], [ 27.685547, -30.600094 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.482422, -12.468760 ], [ 50.009766, -13.496473 ], [ 50.185547, -14.689881 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.623037 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.368950 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.383391 ], [ 49.746094, -16.804541 ], [ 49.482422, -17.056785 ], [ 49.394531, -17.895114 ], [ 47.021484, -24.926295 ], [ 45.351562, -25.562265 ], [ 44.033203, -24.926295 ], [ 43.681641, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.289374 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.296875, -20.055931 ], [ 44.384766, -19.394068 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.804541 ], [ 44.384766, -16.214675 ], [ 44.912109, -16.130262 ], [ 45.791016, -15.792254 ], [ 46.230469, -15.707663 ], [ 47.636719, -14.519780 ], [ 47.988281, -14.008696 ], [ 47.812500, -13.581921 ], [ 48.251953, -13.752725 ], [ 48.779297, -13.068777 ], [ 48.779297, -12.468760 ], [ 49.130859, -12.039321 ], [ 49.482422, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.130859, -12.039321 ], [ 49.482422, -12.468760 ], [ 50.009766, -13.496473 ], [ 50.185547, -14.689881 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.623037 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.368950 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.383391 ], [ 49.746094, -16.804541 ], [ 49.482422, -17.056785 ], [ 49.394531, -17.895114 ], [ 47.021484, -24.926295 ], [ 45.351562, -25.562265 ], [ 44.033203, -24.926295 ], [ 43.681641, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.289374 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.296875, -20.055931 ], [ 44.384766, -19.394068 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.804541 ], [ 44.384766, -16.214675 ], [ 44.912109, -16.130262 ], [ 45.791016, -15.792254 ], [ 46.230469, -15.707663 ], [ 47.636719, -14.519780 ], [ 47.988281, -14.008696 ], [ 47.812500, -13.581921 ], [ 48.251953, -13.752725 ], [ 48.779297, -13.068777 ], [ 48.779297, -12.468760 ], [ 49.130859, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ] ] ], [ [ [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ] ] ], [ [ [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ] ] ], [ [ [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ] ] ], [ [ [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ] ] ], [ [ [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ] ] ], [ [ [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ] ] ], [ [ [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 109.775391, 1.406109 ], [ 110.478516, 0.790990 ], [ 111.093750, 1.054628 ], [ 111.796875, 0.966751 ], [ 112.324219, 1.493971 ], [ 112.851562, 1.581830 ], [ 113.730469, 1.230374 ], [ 114.609375, 1.493971 ], [ 115.048828, 2.899153 ], [ 115.488281, 3.250209 ], [ 115.839844, 4.390229 ], [ 116.982422, 4.390229 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ] ] ], [ [ [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.892578, -8.841651 ], [ 125.068359, -9.362353 ], [ 124.365234, -10.055403 ], [ 123.574219, -10.314919 ], [ 123.398438, -10.228437 ], [ 123.925781, -9.275622 ], [ 124.892578, -8.841651 ] ] ], [ [ [ 119.882812, -9.275622 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.234375, -10.228437 ], [ 118.916016, -9.535749 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.703107 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.723583 ], [ 135.439453, -3.337954 ], [ 136.230469, -2.284551 ], [ 137.373047, -1.669686 ], [ 138.251953, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.547988 ], [ 140.976562, -9.102097 ], [ 140.097656, -8.233237 ], [ 139.042969, -8.059230 ], [ 138.867188, -8.320212 ], [ 137.548828, -8.407168 ], [ 137.988281, -7.536764 ], [ 138.603516, -7.275292 ], [ 138.339844, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.477856 ], [ 135.087891, -4.390229 ], [ 133.593750, -3.513421 ], [ 133.330078, -3.951941 ], [ 132.978516, -4.039618 ], [ 132.714844, -3.688855 ], [ 132.714844, -3.250209 ], [ 131.923828, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.187500, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.869141, -1.406109 ], [ 130.517578, -0.878872 ], [ 131.835938, -0.615223 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.212891, -8.320212 ], [ 118.828125, -8.233237 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.695312, -8.581021 ], [ 121.201172, -8.928487 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.289062, -8.494105 ], [ 121.992188, -8.407168 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 107.226562, -5.878332 ], [ 108.457031, -6.402648 ], [ 108.544922, -6.751896 ], [ 110.478516, -6.839170 ], [ 110.742188, -6.402648 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.536764 ], [ 114.433594, -7.710992 ], [ 115.664062, -8.320212 ], [ 114.521484, -8.667918 ], [ 113.378906, -8.320212 ], [ 111.445312, -8.233237 ], [ 108.632812, -7.623887 ], [ 108.193359, -7.710992 ], [ 106.435547, -7.275292 ], [ 106.259766, -6.839170 ], [ 105.292969, -6.839170 ], [ 105.996094, -5.878332 ], [ 107.226562, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.648438, -5.703448 ], [ 134.648438, -6.140555 ], [ 134.208984, -6.839170 ], [ 134.033203, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 95.273438, 5.528511 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.250209 ], [ 100.634766, 2.108899 ], [ 101.601562, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.007812, 0.615223 ], [ 103.798828, 0.175781 ], [ 103.359375, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.284551 ], [ 105.556641, -2.372369 ], [ 106.083984, -2.986927 ], [ 105.820312, -4.302591 ], [ 105.732422, -5.790897 ], [ 104.677734, -5.790897 ], [ 103.798828, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.337891, -2.723583 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.263671 ], [ 98.525391, 1.845384 ], [ 97.646484, 2.460181 ], [ 97.119141, 3.337954 ], [ 96.416016, 3.951941 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.528511 ] ] ], [ [ [ 124.980469, 1.669686 ], [ 125.156250, 1.493971 ], [ 124.365234, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 119.970703, -0.439449 ], [ 120.849609, -1.406109 ], [ 121.464844, -0.878872 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.878872 ], [ 122.343750, -1.493971 ], [ 121.464844, -1.845384 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.266008 ], [ 122.607422, -5.615986 ], [ 122.167969, -5.266008 ], [ 122.695312, -4.390229 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.552734, -4.127285 ], [ 120.849609, -3.601142 ], [ 120.937500, -2.547988 ], [ 120.234375, -2.899153 ], [ 120.410156, -5.441022 ], [ 119.794922, -5.615986 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.390229 ], [ 119.443359, -3.425692 ], [ 119.003906, -3.425692 ], [ 118.740234, -2.723583 ], [ 119.179688, -2.108899 ], [ 119.267578, -1.318243 ], [ 119.970703, 0.615223 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.871094, 0.878872 ], [ 124.013672, 0.966751 ], [ 124.980469, 1.669686 ] ] ], [ [ [ 116.982422, 4.390229 ], [ 117.861328, 4.214943 ], [ 117.246094, 3.250209 ], [ 118.037109, 2.372369 ], [ 117.861328, 1.845384 ], [ 118.916016, 0.966751 ], [ 117.773438, 0.790990 ], [ 117.421875, 0.175781 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.406109 ], [ 116.455078, -2.460181 ], [ 116.103516, -3.951941 ], [ 115.927734, -3.601142 ], [ 114.785156, -4.039618 ], [ 114.433594, -3.425692 ], [ 113.730469, -3.425692 ], [ 113.203125, -3.074695 ], [ 112.060547, -3.425692 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.511719, -1.230374 ], [ 109.072266, -0.439449 ], [ 108.896484, 0.439449 ], [ 108.984375, 1.406109 ], [ 109.599609, 2.021065 ], [ 109.775391, 1.406109 ], [ 110.478516, 0.790990 ], [ 111.093750, 1.054628 ], [ 111.796875, 0.966751 ], [ 112.324219, 1.493971 ], [ 112.851562, 1.581830 ], [ 113.730469, 1.230374 ], [ 114.609375, 1.493971 ], [ 115.048828, 2.899153 ], [ 115.488281, 3.250209 ], [ 115.839844, 4.390229 ], [ 116.982422, 4.390229 ] ] ], [ [ [ 126.914062, -3.074695 ], [ 127.177734, -3.425692 ], [ 126.826172, -3.776559 ], [ 126.123047, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.914062, -3.074695 ] ] ], [ [ [ 129.287109, -2.723583 ], [ 130.429688, -3.074695 ], [ 130.781250, -3.776559 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.337954 ], [ 128.056641, -2.811371 ], [ 129.287109, -2.723583 ] ] ], [ [ [ 127.880859, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.583984, 0.263671 ], [ 128.056641, 0.439449 ], [ 127.880859, -0.175781 ], [ 128.320312, -0.703107 ], [ 128.056641, -0.878872 ], [ 127.617188, -0.263671 ], [ 127.353516, 1.054628 ], [ 127.529297, 1.845384 ], [ 127.880859, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.265625, -8.320212 ], [ 126.914062, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.892578, -8.841651 ], [ 125.068359, -8.581021 ], [ 125.859375, -8.407168 ], [ 126.914062, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.358544 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 145.371094, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 114.169922, -22.512557 ], [ 114.609375, -21.779905 ], [ 115.400391, -21.453069 ], [ 115.927734, -21.043491 ], [ 116.630859, -20.632784 ], [ 117.158203, -20.550509 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.303418 ], [ 118.828125, -20.220966 ], [ 118.916016, -19.973349 ], [ 119.179688, -19.890723 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.646245 ], [ 122.167969, -18.145852 ], [ 122.255859, -17.224758 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.551962 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.604847 ], [ 125.595703, -14.434680 ], [ 125.683594, -14.179186 ], [ 126.123047, -14.264383 ], [ 126.123047, -14.093957 ], [ 127.001953, -13.752725 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 129.814453, -13.581921 ], [ 130.253906, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.468760 ], [ 131.220703, -12.125264 ], [ 131.660156, -12.297068 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 131.748047, -11.264612 ], [ 132.275391, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.505859, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.867351 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 136.230469, -13.239945 ], [ 135.878906, -13.239945 ], [ 136.054688, -13.667338 ], [ 135.351562, -14.689881 ], [ 135.439453, -14.944785 ], [ 136.230469, -15.538376 ], [ 137.021484, -15.792254 ], [ 138.251953, -16.804541 ], [ 138.515625, -16.804541 ], [ 139.042969, -17.056785 ], [ 139.218750, -17.308688 ], [ 140.185547, -17.644022 ], [ 140.800781, -17.308688 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.591797, -12.897489 ], [ 141.767578, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.470703, -10.660608 ], [ 142.734375, -11.092166 ], [ 142.822266, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.297068 ], [ 143.437500, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 145.195312, -15.368950 ], [ 145.458984, -16.214675 ], [ 145.634766, -16.720385 ], [ 145.810547, -16.888660 ], [ 146.074219, -17.727759 ], [ 145.986328, -18.229351 ], [ 146.337891, -18.895893 ], [ 147.392578, -19.476950 ], [ 148.798828, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.238281, -21.207459 ], [ 149.677734, -22.268764 ], [ 150.029297, -22.105999 ], [ 150.468750, -22.512557 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.017578, -27.215556 ], [ 153.544922, -28.071980 ], [ 153.457031, -28.921631 ], [ 153.017578, -30.297018 ], [ 153.017578, -30.902225 ], [ 152.402344, -32.546813 ], [ 151.699219, -32.990236 ], [ 150.996094, -34.307144 ], [ 150.644531, -35.101934 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.090240 ], [ 149.941406, -37.370157 ], [ 149.414062, -37.718590 ], [ 148.271484, -37.788081 ], [ 147.304688, -38.203655 ], [ 146.250000, -39.027719 ], [ 145.458984, -38.548165 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 144.404297, -38.065392 ], [ 143.525391, -38.754083 ], [ 140.625000, -37.996163 ], [ 139.921875, -37.370157 ], [ 139.570312, -36.102376 ], [ 139.042969, -35.675147 ], [ 138.076172, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.285156, -34.669359 ], [ 137.460938, -34.089061 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 136.933594, -33.724340 ], [ 136.318359, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.175781, -33.943360 ], [ 134.560547, -33.211116 ], [ 134.033203, -32.842674 ], [ 134.208984, -32.546813 ], [ 132.978516, -31.952162 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.428663 ], [ 129.462891, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.175612 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.916485 ], [ 124.013672, -33.431441 ], [ 123.574219, -33.870416 ], [ 122.167969, -33.943360 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.452218 ], [ 119.003906, -34.452218 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 115.488281, -34.379713 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.488281, -33.431441 ], [ 115.664062, -33.211116 ], [ 115.751953, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 114.960938, -29.458731 ], [ 114.609375, -28.767659 ], [ 114.609375, -28.459033 ], [ 114.169922, -28.071980 ], [ 113.994141, -27.293689 ], [ 113.466797, -26.509905 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 113.906250, -25.878994 ], [ 114.169922, -26.273714 ], [ 114.169922, -25.720735 ], [ 113.378906, -24.367114 ], [ 113.818359, -22.998852 ], [ 113.730469, -22.431340 ], [ 114.082031, -21.779905 ], [ 114.169922, -22.512557 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.667969, -40.647304 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.358544 ], [ 147.832031, -43.197167 ], [ 147.480469, -42.875964 ], [ 146.865234, -43.580391 ], [ 145.986328, -43.516689 ], [ 145.371094, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.667969, -41.112469 ], [ 144.667969, -40.647304 ] ] ], [ [ [ 142.470703, -10.660608 ], [ 142.734375, -11.092166 ], [ 142.822266, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.297068 ], [ 143.437500, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.876953, -14.519780 ], [ 144.492188, -14.093957 ], [ 145.371094, -14.944785 ], [ 145.195312, -15.368950 ], [ 145.458984, -16.214675 ], [ 145.634766, -16.720385 ], [ 145.810547, -16.888660 ], [ 146.074219, -17.727759 ], [ 145.986328, -18.229351 ], [ 146.337891, -18.895893 ], [ 147.392578, -19.476950 ], [ 148.798828, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.238281, -21.207459 ], [ 149.677734, -22.268764 ], [ 150.029297, -22.105999 ], [ 150.468750, -22.512557 ], [ 150.644531, -22.350076 ], [ 150.820312, -23.402765 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.017578, -27.215556 ], [ 153.544922, -28.071980 ], [ 153.457031, -28.921631 ], [ 153.017578, -30.297018 ], [ 153.017578, -30.902225 ], [ 152.402344, -32.546813 ], [ 151.699219, -32.990236 ], [ 150.996094, -34.307144 ], [ 150.644531, -35.101934 ], [ 150.292969, -35.603719 ], [ 149.941406, -37.090240 ], [ 149.941406, -37.370157 ], [ 149.414062, -37.718590 ], [ 148.271484, -37.788081 ], [ 147.304688, -38.203655 ], [ 146.250000, -39.027719 ], [ 145.458984, -38.548165 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.857507 ], [ 144.404297, -38.065392 ], [ 143.525391, -38.754083 ], [ 140.625000, -37.996163 ], [ 139.921875, -37.370157 ], [ 139.570312, -36.102376 ], [ 139.042969, -35.675147 ], [ 138.076172, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.636719, -35.029996 ], [ 136.757812, -35.245619 ], [ 137.285156, -34.669359 ], [ 137.460938, -34.089061 ], [ 137.812500, -33.578015 ], [ 137.724609, -32.842674 ], [ 136.933594, -33.724340 ], [ 136.318359, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.175781, -33.943360 ], [ 134.560547, -33.211116 ], [ 134.033203, -32.842674 ], [ 134.208984, -32.546813 ], [ 132.978516, -31.952162 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.428663 ], [ 129.462891, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.175612 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.916485 ], [ 124.013672, -33.431441 ], [ 123.574219, -33.870416 ], [ 122.167969, -33.943360 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.452218 ], [ 119.003906, -34.452218 ], [ 117.949219, -35.029996 ], [ 116.542969, -34.957995 ], [ 115.488281, -34.379713 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.488281, -33.431441 ], [ 115.664062, -33.211116 ], [ 115.751953, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 114.960938, -29.458731 ], [ 114.609375, -28.767659 ], [ 114.609375, -28.459033 ], [ 114.169922, -28.071980 ], [ 113.994141, -27.293689 ], [ 113.466797, -26.509905 ], [ 113.291016, -26.115986 ], [ 113.730469, -26.509905 ], [ 113.378906, -25.562265 ], [ 113.906250, -25.878994 ], [ 114.169922, -26.273714 ], [ 114.169922, -25.720735 ], [ 113.378906, -24.367114 ], [ 113.818359, -22.998852 ], [ 113.730469, -22.431340 ], [ 114.082031, -21.698265 ], [ 114.169922, -22.512557 ], [ 114.609375, -21.779905 ], [ 115.400391, -21.453069 ], [ 115.927734, -21.043491 ], [ 116.630859, -20.632784 ], [ 117.158203, -20.550509 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.303418 ], [ 118.828125, -20.220966 ], [ 118.916016, -19.973349 ], [ 119.179688, -19.890723 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.646245 ], [ 122.167969, -18.145852 ], [ 122.255859, -17.224758 ], [ 122.958984, -16.383391 ], [ 123.398438, -17.224758 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.551962 ], [ 123.750000, -16.045813 ], [ 124.189453, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.604847 ], [ 125.595703, -14.434680 ], [ 125.683594, -14.179186 ], [ 126.123047, -14.264383 ], [ 126.123047, -14.093957 ], [ 127.001953, -13.752725 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.550781, -14.944785 ], [ 129.375000, -14.349548 ], [ 129.814453, -13.581921 ], [ 130.253906, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.468760 ], [ 131.220703, -12.125264 ], [ 131.660156, -12.297068 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 131.748047, -11.264612 ], [ 132.275391, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.505859, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.867351 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.406250, -11.781325 ], [ 136.933594, -12.297068 ], [ 136.230469, -13.239945 ], [ 135.878906, -13.239945 ], [ 136.054688, -13.667338 ], [ 135.351562, -14.689881 ], [ 135.439453, -14.944785 ], [ 136.230469, -15.538376 ], [ 137.021484, -15.792254 ], [ 138.251953, -16.804541 ], [ 138.515625, -16.804541 ], [ 139.042969, -17.056785 ], [ 139.218750, -17.308688 ], [ 140.185547, -17.644022 ], [ 140.800781, -17.308688 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.591797, -12.897489 ], [ 141.767578, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.470703, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.580078, -3.776559 ], [ 145.810547, -4.828260 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 148.007812, -7.972198 ], [ 148.710938, -9.102097 ], [ 149.238281, -9.015302 ], [ 149.238281, -9.449062 ], [ 150.029297, -9.622414 ], [ 149.677734, -9.795678 ], [ 150.732422, -10.228437 ], [ 150.644531, -10.574222 ], [ 149.941406, -10.574222 ], [ 149.765625, -10.314919 ], [ 147.832031, -10.055403 ], [ 146.513672, -8.928487 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ] ] ], [ [ [ 154.687500, -5.266008 ], [ 155.478516, -6.140555 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.566406, -6.839170 ], [ 155.126953, -6.489983 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.090944 ], [ 154.599609, -5.003394 ], [ 154.687500, -5.266008 ] ] ], [ [ [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.790897 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.271484, -5.703448 ], [ 148.359375, -5.353521 ], [ 149.238281, -5.528511 ], [ 149.765625, -5.441022 ], [ 149.941406, -5.003394 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ], [ 152.314453, -4.302591 ] ] ], [ [ [ 152.226562, -3.162456 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -2.986927 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.547988 ], [ 144.580078, -3.776559 ], [ 145.810547, -4.828260 ], [ 145.898438, -5.441022 ], [ 147.568359, -6.053161 ], [ 147.832031, -6.577303 ], [ 146.953125, -6.664608 ], [ 147.128906, -7.362467 ], [ 148.007812, -7.972198 ], [ 148.710938, -9.102097 ], [ 149.238281, -9.015302 ], [ 149.238281, -9.449062 ], [ 150.029297, -9.622414 ], [ 149.677734, -9.795678 ], [ 150.732422, -10.228437 ], [ 150.644531, -10.574222 ], [ 149.941406, -10.574222 ], [ 149.765625, -10.314919 ], [ 147.832031, -10.055403 ], [ 146.513672, -8.928487 ], [ 145.986328, -8.059230 ], [ 144.667969, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.349609, -8.928487 ], [ 142.558594, -9.275622 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.547988 ] ] ], [ [ [ 154.599609, -5.003394 ], [ 154.687500, -5.266008 ], [ 155.478516, -6.140555 ], [ 156.005859, -6.489983 ], [ 155.830078, -6.751896 ], [ 155.566406, -6.839170 ], [ 155.126953, -6.489983 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.090944 ], [ 154.599609, -5.003394 ] ] ], [ [ [ 152.050781, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.790897 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.271484, -5.703448 ], [ 148.359375, -5.353521 ], [ 149.238281, -5.528511 ], [ 149.765625, -5.441022 ], [ 149.941406, -5.003394 ], [ 150.117188, -4.915833 ], [ 150.205078, -5.528511 ], [ 150.732422, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.050781, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.162456 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.753906, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -2.986927 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ] ] ], [ [ [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.630859, -9.535749 ], [ 161.455078, -9.709057 ], [ 160.751953, -8.841651 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.536764 ], [ 159.609375, -7.972198 ], [ 159.873047, -8.320212 ], [ 159.873047, -8.494105 ], [ 158.203125, -7.362467 ], [ 158.291016, -7.275292 ], [ 158.818359, -7.536764 ] ] ], [ [ [ 157.060547, -7.013668 ], [ 157.500000, -7.275292 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.100893 ], [ 156.445312, -6.751896 ], [ 156.533203, -6.577303 ], [ 157.060547, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.141932 ], [ 161.894531, -10.401378 ], [ 162.070312, -10.401378 ], [ 162.333984, -10.746969 ], [ 161.630859, -10.746969 ], [ 161.279297, -10.141932 ] ] ], [ [ [ 159.697266, -9.188870 ], [ 160.312500, -9.362353 ], [ 160.839844, -9.795678 ], [ 159.785156, -9.709057 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.188870 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 161.279297, -9.102097 ], [ 161.630859, -9.535749 ], [ 161.455078, -9.709057 ], [ 160.751953, -8.841651 ], [ 160.576172, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 158.291016, -7.275292 ], [ 158.818359, -7.536764 ], [ 159.609375, -7.972198 ], [ 159.873047, -8.320212 ], [ 159.873047, -8.494105 ], [ 158.203125, -7.362467 ], [ 158.291016, -7.275292 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.060547, -7.013668 ], [ 157.500000, -7.275292 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.100893 ], [ 156.445312, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -16.130262 ], [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ] ] ], [ [ [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.728516, -15.623037 ], [ 166.640625, -15.368950 ], [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.167969, -15.876809 ], [ 167.783203, -16.383391 ], [ 167.431641, -16.551962 ], [ 167.167969, -16.130262 ], [ 167.167969, -15.876809 ] ] ], [ [ [ 166.552734, -14.604847 ], [ 167.080078, -14.859850 ], [ 167.255859, -15.707663 ], [ 166.728516, -15.623037 ], [ 166.640625, -15.368950 ], [ 166.552734, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.091797, -20.385825 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.055931 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.105999 ], [ 166.728516, -22.350076 ], [ 165.410156, -21.616579 ], [ 164.091797, -20.385825 ], [ 164.003906, -20.055931 ], [ 164.443359, -20.055931 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 173.144531, -42.940339 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.695312, -46.255847 ], [ 166.640625, -46.195042 ], [ 166.464844, -45.828799 ], [ 166.992188, -45.089036 ], [ 168.222656, -44.087585 ], [ 168.925781, -43.897892 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.705729 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ] ] ], [ [ [ 173.496094, -34.957995 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.781250, -36.738884 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 177.363281, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.842286 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.990234, -41.376809 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 173.847656, -39.095963 ], [ 174.550781, -38.754083 ], [ 174.726562, -37.996163 ], [ 174.638672, -37.370157 ], [ 174.287109, -36.668419 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ], [ 173.496094, -34.957995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 173.144531, -42.940339 ], [ 172.705078, -43.325178 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.386719, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.277344, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.695312, -46.255847 ], [ 166.640625, -46.195042 ], [ 166.464844, -45.828799 ], [ 166.992188, -45.089036 ], [ 168.222656, -44.087585 ], [ 168.925781, -43.897892 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.705729 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.913513 ], [ 172.792969, -40.446947 ] ] ], [ [ [ 172.968750, -34.379713 ], [ 173.496094, -34.957995 ], [ 174.287109, -35.245619 ], [ 174.550781, -36.102376 ], [ 175.253906, -37.160317 ], [ 175.341797, -36.456636 ], [ 175.781250, -36.738884 ], [ 175.957031, -37.509726 ], [ 176.748047, -37.857507 ], [ 177.363281, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.649034 ], [ 177.890625, -39.164141 ], [ 177.187500, -39.095963 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.842286 ], [ 175.957031, -41.244772 ], [ 175.166016, -41.640078 ], [ 174.990234, -41.376809 ], [ 174.638672, -41.244772 ], [ 175.166016, -40.446947 ], [ 174.814453, -39.842286 ], [ 173.759766, -39.504041 ], [ 173.847656, -39.095963 ], [ 174.550781, -38.754083 ], [ 174.726562, -37.996163 ], [ 174.638672, -37.370157 ], [ 174.287109, -36.668419 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.053203 ], [ -72.290039, -54.470038 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.872070, -53.041213 ], [ -72.465820, -53.696706 ], [ -71.147461, -54.059388 ], [ -70.620117, -53.592505 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -69.125977, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.038086, -27.488781 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -71.147461, -37.544577 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -71.938477, -46.860191 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -69.521484, -52.133488 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -69.960938, -52.536273 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -73.740234, -52.829321 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -71.894531, -33.906896 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.751953, -25.681137 ], [ -70.092773, -21.371244 ], [ -70.180664, -19.725342 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ], [ -69.125977, -18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.053203 ], [ -72.290039, -54.470038 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.872070, -53.041213 ], [ -72.465820, -53.696706 ], [ -71.147461, -54.059388 ], [ -70.620117, -53.592505 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.125977, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.038086, -27.488781 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -71.147461, -37.544577 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -71.938477, -46.860191 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -69.521484, -52.133488 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -69.960938, -52.536273 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -73.740234, -52.829321 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -71.894531, -33.906896 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.751953, -25.681137 ], [ -70.092773, -21.371244 ], [ -70.180664, -19.725342 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478516, -10.487812 ], [ -65.346680, -10.876465 ], [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.743164, -13.453737 ], [ -61.127930, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.468750, -14.349548 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.403320, -16.846605 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.700195, -18.937464 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -60.073242, -19.311143 ], [ -61.787109, -19.601194 ], [ -62.270508, -20.509355 ], [ -62.314453, -21.043491 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.247070, -21.493964 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.125977, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.818359, -11.005904 ], [ -68.291016, -11.005904 ], [ -68.071289, -10.703792 ], [ -67.192383, -10.271681 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.478516, -10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.478516, -10.487812 ], [ -65.346680, -10.876465 ], [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.743164, -13.453737 ], [ -61.127930, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.468750, -14.349548 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.403320, -16.846605 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.700195, -18.937464 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -60.073242, -19.311143 ], [ -61.787109, -19.601194 ], [ -62.270508, -20.509355 ], [ -62.314453, -21.043491 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.247070, -21.493964 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.125977, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.818359, -11.005904 ], [ -68.291016, -11.005904 ], [ -68.071289, -10.703792 ], [ -67.192383, -10.271681 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.138470 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.634293 ], [ -55.546875, -23.563987 ], [ -55.415039, -23.926013 ], [ -55.063477, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.316406, -24.567108 ], [ -54.667969, -25.720735 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -57.612305, -27.371767 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -58.842773, -24.766785 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -62.314453, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.601194 ], [ -60.073242, -19.311143 ], [ -59.150391, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.073242, -19.311143 ], [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.138470 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.634293 ], [ -55.546875, -23.563987 ], [ -55.415039, -23.926013 ], [ -55.063477, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.316406, -24.567108 ], [ -54.667969, -25.720735 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -57.612305, -27.371767 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -58.842773, -24.766785 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -62.314453, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.601194 ], [ -60.073242, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ] ] ], [ [ [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.864510 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -161.938477, -85.137560 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.313119 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.528806 ], [ -173.144531, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.631968 ], [ -59.589844, -80.035262 ] ] ], [ [ [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ] ] ], [ [ [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ] ] ], [ [ [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -161.938477, -85.137560 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.313119 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ] ] ], [ [ [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ] ] ], [ [ [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ] ] ], [ [ [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ] ] ], [ [ [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ] ] ], [ [ [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ] ] ], [ [ [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ] ] ], [ [ [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ] ] ], [ [ [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ] ] ], [ [ [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ] ] ], [ [ [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ] ] ], [ [ [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ] ] ], [ [ [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.818359, 63.763065 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ] ] ], [ [ [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ] ] ], [ [ [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ] ] ], [ [ [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ] ] ], [ [ [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ] ] ], [ [ [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ] ] ], [ [ [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ] ] ], [ [ [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ] ] ], [ [ [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ] ] ], [ [ [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ] ] ], [ [ [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ] ] ], [ [ [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.945312, 15.919074 ], [ -88.637695, 15.707663 ], [ -88.549805, 15.876809 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.368950 ], [ -89.165039, 15.072124 ], [ -89.252930, 14.902322 ], [ -89.165039, 14.689881 ], [ -89.384766, 14.434680 ], [ -89.604492, 14.392118 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.131836, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.274414, 13.966054 ], [ -91.713867, 14.136576 ], [ -92.241211, 14.562318 ], [ -92.241211, 14.859850 ], [ -92.109375, 15.072124 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.509833 ], [ -90.747070, 16.720385 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.945312, 15.919074 ], [ -88.637695, 15.707663 ], [ -88.549805, 15.876809 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.368950 ], [ -89.165039, 15.072124 ], [ -89.252930, 14.902322 ], [ -89.165039, 14.689881 ], [ -89.384766, 14.434680 ], [ -89.604492, 14.392118 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.131836, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.274414, 13.966054 ], [ -91.713867, 14.136576 ], [ -92.241211, 14.562318 ], [ -92.241211, 14.859850 ], [ -92.109375, 15.072124 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.509833 ], [ -90.747070, 16.720385 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ] ] ], [ [ [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ] ] ], [ [ [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ] ] ], [ [ [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.330078, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.154297, 18.104087 ], [ -88.286133, 17.685895 ], [ -88.198242, 17.518344 ], [ -88.330078, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.551962 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.256867 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.978733 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.521283 ], [ -88.330078, 18.521283 ], [ -88.330078, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.330078, 18.521283 ], [ -88.330078, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.154297, 18.104087 ], [ -88.286133, 17.685895 ], [ -88.198242, 17.518344 ], [ -88.330078, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.551962 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.256867 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.978733 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.521283 ], [ -88.330078, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.549805, 14.008696 ], [ -88.505859, 13.880746 ], [ -88.066406, 13.966054 ], [ -87.890625, 13.923404 ], [ -87.758789, 13.795406 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.539201 ], [ -90.131836, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.604492, 14.392118 ], [ -89.384766, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.549805, 14.008696 ], [ -88.505859, 13.880746 ], [ -88.066406, 13.966054 ], [ -87.890625, 13.923404 ], [ -87.758789, 13.795406 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.539201 ], [ -90.131836, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.604492, 14.392118 ], [ -89.384766, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.473633, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.876809 ], [ -83.803711, 15.453680 ], [ -83.452148, 15.284185 ], [ -83.188477, 15.029686 ], [ -83.496094, 15.029686 ], [ -83.671875, 14.902322 ], [ -83.979492, 14.774883 ], [ -84.243164, 14.774883 ], [ -84.462891, 14.647368 ], [ -84.682617, 14.689881 ], [ -84.858398, 14.859850 ], [ -84.946289, 14.817371 ], [ -85.078125, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.392118 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.352539, 13.795406 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -86.923828, 13.282719 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.025966 ], [ -87.495117, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.758789, 13.795406 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.880746 ], [ -88.549805, 14.008696 ], [ -89.077148, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.252930, 14.902322 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.368950 ], [ -88.242188, 15.749963 ], [ -88.154297, 15.707663 ], [ -87.934570, 15.876809 ], [ -87.626953, 15.919074 ], [ -87.539062, 15.834536 ], [ -87.407227, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.132812, 15.919074 ], [ -86.044922, 16.045813 ], [ -85.473633, 15.919074 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.044922, 16.045813 ], [ -85.473633, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.876809 ], [ -83.803711, 15.453680 ], [ -83.452148, 15.284185 ], [ -83.188477, 15.029686 ], [ -83.496094, 15.029686 ], [ -83.671875, 14.902322 ], [ -83.979492, 14.774883 ], [ -84.243164, 14.774883 ], [ -84.462891, 14.647368 ], [ -84.682617, 14.689881 ], [ -84.858398, 14.859850 ], [ -84.946289, 14.817371 ], [ -85.078125, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.392118 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.352539, 13.795406 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -86.923828, 13.282719 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.025966 ], [ -87.495117, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.758789, 13.795406 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.880746 ], [ -88.549805, 14.008696 ], [ -89.077148, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.252930, 14.902322 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.368950 ], [ -88.242188, 15.749963 ], [ -88.154297, 15.707663 ], [ -87.934570, 15.876809 ], [ -87.626953, 15.919074 ], [ -87.539062, 15.834536 ], [ -87.407227, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.132812, 15.919074 ], [ -86.044922, 16.045813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.689881 ], [ -83.188477, 14.349548 ], [ -83.452148, 14.008696 ], [ -83.540039, 13.581921 ], [ -83.583984, 13.154376 ], [ -83.496094, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.759766, 11.910354 ], [ -83.671875, 11.652236 ], [ -83.891602, 11.393879 ], [ -83.847656, 11.135287 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.199219, 10.833306 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.946289, 10.962764 ], [ -85.605469, 11.221510 ], [ -85.737305, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.168226 ], [ -87.670898, 12.940322 ], [ -87.583008, 13.068777 ], [ -87.407227, 12.940322 ], [ -87.319336, 13.025966 ], [ -87.011719, 13.025966 ], [ -86.923828, 13.282719 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.352539, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -85.166016, 14.392118 ], [ -85.166016, 14.562318 ], [ -85.078125, 14.562318 ], [ -84.946289, 14.817371 ], [ -84.858398, 14.859850 ], [ -84.682617, 14.689881 ], [ -84.462891, 14.647368 ], [ -84.243164, 14.774883 ], [ -83.979492, 14.774883 ], [ -83.671875, 14.902322 ], [ -83.496094, 15.029686 ], [ -83.188477, 15.029686 ], [ -83.320312, 14.689881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.188477, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.188477, 14.349548 ], [ -83.452148, 14.008696 ], [ -83.540039, 13.581921 ], [ -83.583984, 13.154376 ], [ -83.496094, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.759766, 11.910354 ], [ -83.671875, 11.652236 ], [ -83.891602, 11.393879 ], [ -83.847656, 11.135287 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.199219, 10.833306 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.946289, 10.962764 ], [ -85.605469, 11.221510 ], [ -85.737305, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.168226 ], [ -87.670898, 12.940322 ], [ -87.583008, 13.068777 ], [ -87.407227, 12.940322 ], [ -87.319336, 13.025966 ], [ -87.011719, 13.025966 ], [ -86.923828, 13.282719 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.352539, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -85.166016, 14.392118 ], [ -85.166016, 14.562318 ], [ -85.078125, 14.562318 ], [ -84.946289, 14.817371 ], [ -84.858398, 14.859850 ], [ -84.682617, 14.689881 ], [ -84.462891, 14.647368 ], [ -84.243164, 14.774883 ], [ -83.979492, 14.774883 ], [ -83.671875, 14.902322 ], [ -83.496094, 15.029686 ], [ -83.188477, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.639648, 23.120154 ], [ -79.716797, 22.796439 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.248422 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.673828, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -77.519531, 20.673905 ], [ -78.178711, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.321289, 21.575719 ], [ -80.244141, 21.861499 ], [ -80.551758, 22.065278 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.067383, 21.943046 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.228090 ], [ -84.243164, 22.593726 ], [ -83.803711, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ], [ -79.716797, 22.796439 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.248422 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.673828, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -77.519531, 20.673905 ], [ -78.178711, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.321289, 21.575719 ], [ -80.244141, 21.861499 ], [ -80.551758, 22.065278 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.067383, 21.943046 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.228090 ], [ -84.243164, 22.593726 ], [ -83.803711, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.309570, 23.200961 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.946289, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -83.408203, 10.401378 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.968750, 9.102097 ], [ -82.749023, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.836914, 8.667918 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.627930, 8.841651 ], [ -83.671875, 9.058702 ], [ -83.935547, 9.318990 ], [ -84.682617, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.946289, 9.838979 ], [ -85.122070, 9.579084 ], [ -85.341797, 9.838979 ], [ -85.693359, 9.968851 ], [ -85.825195, 10.141932 ], [ -85.825195, 10.444598 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ], [ -84.946289, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.221510 ], [ -84.946289, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -83.408203, 10.401378 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.968750, 9.102097 ], [ -82.749023, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.836914, 8.667918 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.627930, 8.841651 ], [ -83.671875, 9.058702 ], [ -83.935547, 9.318990 ], [ -84.682617, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.946289, 9.838979 ], [ -85.122070, 9.579084 ], [ -85.341797, 9.838979 ], [ -85.693359, 9.968851 ], [ -85.825195, 10.141932 ], [ -85.825195, 10.444598 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.057617, 9.579084 ], [ -79.101562, 9.492408 ], [ -78.530273, 9.449062 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.222656, 7.536764 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.145508, 9.015302 ], [ -79.584961, 8.971897 ], [ -79.760742, 8.624472 ], [ -80.200195, 8.363693 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.210938, 7.667441 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.397461, 8.320212 ], [ -82.836914, 8.320212 ], [ -82.880859, 8.102739 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.667918 ], [ -82.880859, 8.841651 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.232249 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.738281, 9.058702 ], [ -81.474609, 8.798225 ], [ -80.991211, 8.885072 ], [ -80.551758, 9.145486 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.057617, 9.579084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.057617, 9.579084 ], [ -79.101562, 9.492408 ], [ -78.530273, 9.449062 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.222656, 7.536764 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.145508, 9.015302 ], [ -79.584961, 8.971897 ], [ -79.760742, 8.624472 ], [ -80.200195, 8.363693 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.210938, 7.667441 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.397461, 8.320212 ], [ -82.836914, 8.320212 ], [ -82.880859, 8.102739 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.667918 ], [ -82.880859, 8.841651 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.232249 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.738281, 9.058702 ], [ -81.474609, 8.798225 ], [ -80.991211, 8.885072 ], [ -80.551758, 9.145486 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ], [ -76.376953, 18.187607 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.211914, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.827148, 18.562947 ], [ -77.607422, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.827148, 18.562947 ], [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ], [ -76.376953, 18.187607 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.211914, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.827148, 18.562947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.354526 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ], [ -72.597656, 19.890723 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.932041 ], [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.354526 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.818359, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.437925 ], [ -69.653320, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.271086 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.015625, 18.312811 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.354526 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.818359, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.437925 ], [ -69.653320, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.271086 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.015625, 18.312811 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.354526 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.790141 ], [ -61.127930, 10.919618 ], [ -60.908203, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.127930, 10.919618 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.790141 ], [ -61.127930, 10.919618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.987305, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.987305, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 25.918526 ], [ -11.997070, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.590820, 27.019984 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.448242, 27.098254 ], [ -8.833008, 27.137368 ], [ -8.833008, 27.683528 ], [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ], [ -11.997070, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.590820, 27.019984 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.448242, 27.098254 ], [ -8.833008, 27.137368 ], [ -8.833008, 27.683528 ], [ -8.701172, 27.683528 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.041992, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.294922, 41.934977 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -6.899414, 40.346544 ], [ -7.031250, 40.212441 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.207031, 37.822802 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.920898, 36.879621 ], [ -8.789062, 37.683820 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -8.833008, 41.211722 ], [ -9.008789, 41.574361 ], [ -9.052734, 41.902277 ], [ -8.701172, 42.163403 ], [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.294922, 41.934977 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -6.899414, 40.346544 ], [ -7.031250, 40.212441 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.207031, 37.822802 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.920898, 36.879621 ], [ -8.789062, 37.683820 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -8.833008, 41.211722 ], [ -9.008789, 41.574361 ], [ -9.052734, 41.902277 ], [ -8.701172, 42.163403 ], [ -8.305664, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ -0.307617, 39.334297 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ -0.307617, 39.334297 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.341226 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -12.128906, 14.008696 ], [ -11.953125, 13.453737 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.557617, 12.468760 ], [ -11.689453, 12.425848 ], [ -12.216797, 12.468760 ], [ -12.304688, 12.382928 ], [ -12.524414, 12.340002 ], [ -13.227539, 12.597455 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.732422, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.539201 ], [ -14.721680, 13.325485 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.414062, 13.667338 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -15.424805, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.743164, 13.624633 ], [ -17.138672, 14.392118 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.743164, 15.623037 ], [ -16.479492, 16.172473 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.161133, 16.594081 ], [ -14.589844, 16.636192 ], [ -14.106445, 16.341226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -14.106445, 16.341226 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -12.128906, 14.008696 ], [ -11.953125, 13.453737 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.557617, 12.468760 ], [ -11.689453, 12.425848 ], [ -12.216797, 12.468760 ], [ -12.304688, 12.382928 ], [ -12.524414, 12.340002 ], [ -13.227539, 12.597455 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.732422, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.539201 ], [ -14.721680, 13.325485 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.414062, 13.667338 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -15.424805, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.743164, 13.624633 ], [ -17.138672, 14.392118 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.743164, 15.623037 ], [ -16.479492, 16.172473 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.161133, 16.594081 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.721680, 13.667338 ], [ -14.414062, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.325485 ], [ -15.161133, 13.539201 ], [ -15.512695, 13.282719 ], [ -15.732422, 13.282719 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ], [ -15.117188, 13.880746 ], [ -14.721680, 13.667338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.880746 ], [ -14.721680, 13.667338 ], [ -14.414062, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.325485 ], [ -15.161133, 13.539201 ], [ -15.512695, 13.282719 ], [ -15.732422, 13.282719 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ], [ -15.117188, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.524414, 12.340002 ], [ -12.304688, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.689453, 12.425848 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.337891, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.898438, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.931641, 12.082296 ], [ -9.360352, 12.340002 ], [ -9.140625, 12.340002 ], [ -8.920898, 12.125264 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.613281, 11.178402 ], [ -8.657227, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.305664, 10.833306 ], [ -8.349609, 10.531020 ], [ -8.041992, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -8.085938, 9.405710 ], [ -7.866211, 8.581021 ], [ -8.217773, 8.494105 ], [ -8.305664, 8.320212 ], [ -8.261719, 8.146243 ], [ -8.305664, 7.710992 ], [ -8.481445, 7.710992 ], [ -8.745117, 7.754537 ], [ -8.964844, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.360352, 7.928675 ], [ -9.755859, 8.581021 ], [ -10.019531, 8.450639 ], [ -10.546875, 8.363693 ], [ -10.502930, 8.754795 ], [ -10.678711, 9.015302 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.172852, 9.882275 ], [ -12.436523, 9.838979 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -13.710938, 9.535749 ], [ -14.106445, 9.925566 ], [ -14.589844, 10.228437 ], [ -14.721680, 10.660608 ], [ -14.853516, 10.919618 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -14.414062, 11.523088 ], [ -14.150391, 11.695273 ], [ -13.930664, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.168226 ], [ -13.754883, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.597455 ], [ -12.524414, 12.340002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.597455 ], [ -12.524414, 12.340002 ], [ -12.304688, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.689453, 12.425848 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.337891, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.898438, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.931641, 12.082296 ], [ -9.360352, 12.340002 ], [ -9.140625, 12.340002 ], [ -8.920898, 12.125264 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.613281, 11.178402 ], [ -8.657227, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.305664, 10.833306 ], [ -8.349609, 10.531020 ], [ -8.041992, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -8.085938, 9.405710 ], [ -7.866211, 8.581021 ], [ -8.217773, 8.494105 ], [ -8.305664, 8.320212 ], [ -8.261719, 8.146243 ], [ -8.305664, 7.710992 ], [ -8.481445, 7.710992 ], [ -8.745117, 7.754537 ], [ -8.964844, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.360352, 7.928675 ], [ -9.755859, 8.581021 ], [ -10.019531, 8.450639 ], [ -10.546875, 8.363693 ], [ -10.502930, 8.754795 ], [ -10.678711, 9.015302 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.172852, 9.882275 ], [ -12.436523, 9.838979 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -13.710938, 9.535749 ], [ -14.106445, 9.925566 ], [ -14.589844, 10.228437 ], [ -14.721680, 10.660608 ], [ -14.853516, 10.919618 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -14.414062, 11.523088 ], [ -14.150391, 11.695273 ], [ -13.930664, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.168226 ], [ -13.754883, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.634766, 9.275622 ], [ -10.678711, 9.015302 ], [ -10.502930, 8.754795 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.144499 ], [ -11.469727, 6.795535 ], [ -11.733398, 6.882800 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.841615 ], [ -13.139648, 8.189742 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.172852, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.678711, 9.015302 ], [ -10.502930, 8.754795 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.144499 ], [ -11.469727, 6.795535 ], [ -11.733398, 6.882800 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.841615 ], [ -13.139648, 8.189742 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.172852, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.678711, 15.156974 ], [ -11.381836, 15.411319 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.341226 ], [ -14.589844, 16.636192 ], [ -15.161133, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.567383, 16.678293 ], [ -16.303711, 17.182779 ], [ -16.171875, 18.145852 ], [ -16.391602, 19.601194 ], [ -16.303711, 20.097206 ], [ -16.567383, 20.591652 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.678711, 15.156974 ], [ -11.381836, 15.411319 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.341226 ], [ -14.589844, 16.636192 ], [ -15.161133, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.567383, 16.678293 ], [ -16.303711, 17.182779 ], [ -16.171875, 18.145852 ], [ -16.391602, 19.601194 ], [ -16.303711, 20.097206 ], [ -16.567383, 20.591652 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ], [ 1.801758, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.360352, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.964844, 7.318882 ], [ -8.745117, 7.754537 ], [ -8.481445, 7.710992 ], [ -8.525391, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.602539, 5.747174 ], [ -7.558594, 5.353521 ], [ -7.646484, 5.222247 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.008789, 4.872048 ], [ -9.931641, 5.615986 ], [ -10.766602, 6.184246 ], [ -11.469727, 6.795535 ], [ -11.206055, 7.144499 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ], [ -9.360352, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.360352, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.964844, 7.318882 ], [ -8.745117, 7.754537 ], [ -8.481445, 7.710992 ], [ -8.525391, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.602539, 5.747174 ], [ -7.558594, 5.353521 ], [ -7.646484, 5.222247 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.008789, 4.872048 ], [ -9.931641, 5.615986 ], [ -10.766602, 6.184246 ], [ -11.469727, 6.795535 ], [ -11.206055, 7.144499 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ] ] ], [ [ [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ] ] ], [ [ [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ] ] ], [ [ [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ] ] ], [ [ [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ] ] ], [ [ [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ] ] ], [ [ [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ] ] ], [ [ [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ] ] ], [ [ [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ] ] ], [ [ [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.049038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -161.938477, -85.137560 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.313119 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.528806 ], [ -173.144531, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.631968 ], [ -59.589844, -80.035262 ] ] ], [ [ [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ] ] ], [ [ [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ] ] ], [ [ [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -161.938477, -85.137560 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.313119 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -69.082031, -70.065585 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.262695, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.262695, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ] ] ], [ [ [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.622070, -0.043945 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.622070, -0.043945 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.622070, -0.043945 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.622070, -0.043945 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, -6.620957 ], [ 16.831055, -7.188101 ], [ 17.446289, -8.059230 ], [ 18.105469, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 19.995117, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.928711, -8.276727 ], [ 21.796875, -8.885072 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 22.368164, -10.962764 ], [ 22.807617, -11.005904 ], [ 23.422852, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.221510 ], [ 23.862305, -11.695273 ], [ 24.038086, -12.168226 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 12.788086, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 11.777344, -15.792254 ], [ 12.084961, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 13.666992, -10.703792 ], [ 13.359375, -10.358151 ], [ 12.832031, -9.145486 ], [ 12.919922, -8.928487 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ], [ 16.567383, -6.620957 ] ] ], [ [ [ 12.963867, -4.740675 ], [ 12.612305, -4.959615 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.303711, -5.834616 ], [ 16.567383, -6.620957 ], [ 16.831055, -7.188101 ], [ 17.446289, -8.059230 ], [ 18.105469, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 19.995117, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.928711, -8.276727 ], [ 21.796875, -8.885072 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 22.368164, -10.962764 ], [ 22.807617, -11.005904 ], [ 23.422852, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.221510 ], [ 23.862305, -11.695273 ], [ 24.038086, -12.168226 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 12.788086, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 11.777344, -15.792254 ], [ 12.084961, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 13.666992, -10.703792 ], [ 13.359375, -10.358151 ], [ 12.832031, -9.145486 ], [ 12.919922, -8.928487 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.959615 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.018555, -17.392579 ], [ 14.194336, -17.350638 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 24.653320, -17.350638 ], [ 25.048828, -17.560247 ], [ 25.048828, -17.644022 ], [ 24.477539, -17.853290 ], [ 24.213867, -17.853290 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 21.621094, -18.187607 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 17.182617, -28.343065 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.600586, -27.800210 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.370117, -22.634293 ], [ 14.238281, -22.105999 ], [ 13.842773, -21.698265 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 12.788086, -16.930705 ], [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ], [ 14.194336, -17.350638 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 24.653320, -17.350638 ], [ 25.048828, -17.560247 ], [ 25.048828, -17.644022 ], [ 24.477539, -17.853290 ], [ 24.213867, -17.853290 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 21.621094, -18.187607 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 17.182617, -28.343065 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.600586, -27.800210 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.370117, -22.634293 ], [ 14.238281, -22.105999 ], [ 13.842773, -21.698265 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 12.788086, -16.930705 ], [ 13.447266, -16.930705 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.717773, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.167969, -8.928487 ], [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.310547, -10.790141 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.958984, -12.768946 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 29.487305, -15.623037 ], [ 28.916016, -16.003576 ], [ 28.784180, -16.383391 ], [ 28.432617, -16.467695 ], [ 27.597656, -17.266728 ], [ 27.026367, -17.936929 ], [ 26.674805, -17.936929 ], [ 26.367188, -17.811456 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.994141, -17.266728 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.038086, -12.168226 ], [ 23.862305, -11.695273 ], [ 23.994141, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 24.741211, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 28.959961, -8.363693 ], [ 30.322266, -8.233237 ], [ 30.717773, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 30.717773, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.167969, -8.928487 ], [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.310547, -10.790141 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.958984, -12.768946 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 29.487305, -15.623037 ], [ 28.916016, -16.003576 ], [ 28.784180, -16.383391 ], [ 28.432617, -16.467695 ], [ 27.597656, -17.266728 ], [ 27.026367, -17.936929 ], [ 26.674805, -17.936929 ], [ 26.367188, -17.811456 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.994141, -17.266728 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.038086, -12.168226 ], [ 23.862305, -11.695273 ], [ 23.994141, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 24.741211, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 28.959961, -8.363693 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 31.596680, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.299805, -16.383391 ], [ 32.827148, -16.678293 ], [ 32.827148, -17.978733 ], [ 32.651367, -18.646245 ], [ 32.607422, -19.394068 ], [ 32.739258, -19.683970 ], [ 32.651367, -20.303418 ], [ 32.475586, -20.385825 ], [ 32.211914, -21.084500 ], [ 31.157227, -22.228090 ], [ 30.629883, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.065278 ], [ 29.399414, -22.065278 ], [ 28.784180, -21.616579 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.838278 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.839844, -18.687879 ], [ 25.620117, -18.521283 ], [ 25.224609, -17.727759 ], [ 26.367188, -17.811456 ], [ 26.674805, -17.936929 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.266728 ], [ 28.432617, -16.467695 ], [ 28.784180, -16.383391 ], [ 28.916016, -16.003576 ], [ 29.487305, -15.623037 ], [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 31.596680, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.299805, -16.383391 ], [ 32.827148, -16.678293 ], [ 32.827148, -17.978733 ], [ 32.651367, -18.646245 ], [ 32.607422, -19.394068 ], [ 32.739258, -19.683970 ], [ 32.651367, -20.303418 ], [ 32.475586, -20.385825 ], [ 32.211914, -21.084500 ], [ 31.157227, -22.228090 ], [ 30.629883, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.065278 ], [ 29.399414, -22.065278 ], [ 28.784180, -21.616579 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.838278 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.839844, -18.687879 ], [ 25.620117, -18.521283 ], [ 25.224609, -17.727759 ], [ 26.367188, -17.811456 ], [ 26.674805, -17.936929 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.266728 ], [ 28.432617, -16.467695 ], [ 28.784180, -16.383391 ], [ 28.916016, -16.003576 ], [ 29.487305, -15.623037 ], [ 30.234375, -15.496032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 34.892578, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.277344, -15.453680 ], [ 34.497070, -14.987240 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.750000, -14.434680 ], [ 33.178711, -13.966054 ], [ 32.651367, -13.710035 ], [ 32.958984, -12.768946 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.310547, -10.790141 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 34.892578, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.277344, -15.453680 ], [ 34.497070, -14.987240 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.750000, -14.434680 ], [ 33.178711, -13.966054 ], [ 32.651367, -13.710035 ], [ 32.958984, -12.768946 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.310547, -10.790141 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.746969 ], [ 40.429688, -11.738302 ], [ 40.517578, -12.597455 ], [ 40.561523, -14.179186 ], [ 40.737305, -14.689881 ], [ 40.473633, -15.368950 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 36.254883, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.518375 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.156250, -21.248422 ], [ 35.332031, -21.820708 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.507812, -23.039298 ], [ 35.332031, -23.523700 ], [ 35.595703, -23.684774 ], [ 35.419922, -24.086589 ], [ 35.024414, -24.447150 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.211914, -21.084500 ], [ 32.475586, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.739258, -19.683970 ], [ 32.607422, -19.394068 ], [ 32.651367, -18.646245 ], [ 32.827148, -17.978733 ], [ 32.827148, -16.678293 ], [ 32.299805, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.596680, -16.045813 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 33.750000, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -14.987240 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.892578, -13.539201 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 35.288086, -11.436955 ], [ 36.474609, -11.695273 ], [ 36.738281, -11.566144 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.738302 ], [ 40.517578, -12.597455 ], [ 40.561523, -14.179186 ], [ 40.737305, -14.689881 ], [ 40.473633, -15.368950 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 36.254883, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.518375 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.156250, -21.248422 ], [ 35.332031, -21.820708 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.507812, -23.039298 ], [ 35.332031, -23.523700 ], [ 35.595703, -23.684774 ], [ 35.419922, -24.086589 ], [ 35.024414, -24.447150 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.211914, -21.084500 ], [ 32.475586, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.739258, -19.683970 ], [ 32.607422, -19.394068 ], [ 32.651367, -18.646245 ], [ 32.827148, -17.978733 ], [ 32.827148, -16.678293 ], [ 32.299805, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.596680, -16.045813 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 33.750000, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -14.987240 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.892578, -13.539201 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 35.288086, -11.436955 ], [ 36.474609, -11.695273 ], [ 36.738281, -11.566144 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.224609, -17.727759 ], [ 25.620117, -18.521283 ], [ 25.839844, -18.687879 ], [ 26.147461, -19.269665 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.838278 ], [ 27.993164, -21.453069 ], [ 28.784180, -21.616579 ], [ 29.399414, -22.065278 ], [ 27.993164, -22.796439 ], [ 27.114258, -23.563987 ], [ 26.762695, -24.206890 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.681137 ], [ 24.169922, -25.641526 ], [ 23.730469, -25.363882 ], [ 23.291016, -25.244696 ], [ 22.807617, -25.482951 ], [ 22.543945, -25.958045 ], [ 22.104492, -26.273714 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.839449 ], [ 20.126953, -24.886436 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 21.621094, -18.187607 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 24.213867, -17.853290 ], [ 24.477539, -17.853290 ], [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 25.620117, -18.521283 ], [ 25.839844, -18.687879 ], [ 26.147461, -19.269665 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.838278 ], [ 27.993164, -21.453069 ], [ 28.784180, -21.616579 ], [ 29.399414, -22.065278 ], [ 27.993164, -22.796439 ], [ 27.114258, -23.563987 ], [ 26.762695, -24.206890 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.681137 ], [ 24.169922, -25.641526 ], [ 23.730469, -25.363882 ], [ 23.291016, -25.244696 ], [ 22.807617, -25.482951 ], [ 22.543945, -25.958045 ], [ 22.104492, -26.273714 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.839449 ], [ 20.126953, -24.886436 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 21.621094, -18.187607 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 24.213867, -17.853290 ], [ 24.477539, -17.853290 ], [ 25.048828, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.629883, -22.146708 ], [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -25.997550 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.563477, -27.449790 ], [ 32.431641, -28.265682 ], [ 32.167969, -28.729130 ], [ 31.508789, -29.228890 ], [ 31.289062, -29.382175 ], [ 30.893555, -29.878755 ], [ 30.585938, -30.410782 ], [ 30.014648, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.760882 ], [ 24.653320, -33.979809 ], [ 23.554688, -33.760882 ], [ 22.983398, -33.906896 ], [ 22.543945, -33.833920 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.415973 ], [ 20.039062, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.852539, -34.415973 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.833920 ], [ 18.237305, -33.247876 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 17.534180, -30.713504 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.182617, -28.343065 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.886436 ], [ 20.742188, -25.839449 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 22.104492, -26.273714 ], [ 22.543945, -25.958045 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.244696 ], [ 23.730469, -25.363882 ], [ 24.169922, -25.641526 ], [ 25.004883, -25.681137 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 26.762695, -24.206890 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.399414, -22.065278 ], [ 29.838867, -22.065278 ], [ 30.322266, -22.268764 ] ], [ [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.081055, -30.524413 ], [ 28.256836, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.065278 ], [ 30.322266, -22.268764 ], [ 30.629883, -22.146708 ], [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -25.997550 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.563477, -27.449790 ], [ 32.431641, -28.265682 ], [ 32.167969, -28.729130 ], [ 31.508789, -29.228890 ], [ 31.289062, -29.382175 ], [ 30.893555, -29.878755 ], [ 30.585938, -30.410782 ], [ 30.014648, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.760882 ], [ 24.653320, -33.979809 ], [ 23.554688, -33.760882 ], [ 22.983398, -33.906896 ], [ 22.543945, -33.833920 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.415973 ], [ 20.039062, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.852539, -34.415973 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.833920 ], [ 18.237305, -33.247876 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 17.534180, -30.713504 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.182617, -28.343065 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.886436 ], [ 20.742188, -25.839449 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 22.104492, -26.273714 ], [ 22.543945, -25.958045 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.244696 ], [ 23.730469, -25.363882 ], [ 24.169922, -25.641526 ], [ 25.004883, -25.681137 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 26.762695, -24.206890 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.399414, -22.065278 ], [ 29.838867, -22.065278 ] ], [ [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.081055, -30.524413 ], [ 28.256836, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 30.673828, -26.391870 ], [ 30.937500, -25.997550 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 30.673828, -26.391870 ], [ 30.937500, -25.997550 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.256836, -30.221102 ], [ 28.081055, -30.524413 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.256836, -30.221102 ], [ 28.081055, -30.524413 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 48.515625, -20.468189 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 48.515625, -20.468189 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ] ] ], [ [ [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ] ] ], [ [ [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ] ] ], [ [ [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ] ] ], [ [ [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.794922, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ] ] ], [ [ [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ] ] ], [ [ [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.794922, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.309570, -8.363693 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.362353 ], [ 125.068359, -9.058702 ], [ 124.936523, -8.885072 ], [ 125.068359, -8.624472 ], [ 125.903320, -8.407168 ], [ 126.606445, -8.363693 ], [ 126.914062, -8.233237 ], [ 127.309570, -8.363693 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.309570, -8.363693 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.362353 ], [ 125.068359, -9.058702 ], [ 124.936523, -8.885072 ], [ 125.068359, -8.624472 ], [ 125.903320, -8.407168 ], [ 126.606445, -8.363693 ], [ 126.914062, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ] ] ], [ [ [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ] ] ], [ [ [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ] ] ], [ [ [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ] ] ], [ [ [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ] ] ], [ [ [ 160.356445, -9.362353 ], [ 160.664062, -9.579084 ], [ 160.839844, -9.838979 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.752370 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.751953, -8.885072 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.536764 ], [ 159.609375, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.554688, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.334961, -7.318882 ], [ 158.818359, -7.536764 ] ] ], [ [ [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.144499 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ], [ 160.664062, -9.579084 ], [ 160.839844, -9.838979 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.752370 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.883789, -8.276727 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.751953, -8.885072 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ] ] ], [ [ [ 158.334961, -7.318882 ], [ 158.818359, -7.536764 ], [ 159.609375, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.554688, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.334961, -7.318882 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.144499 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.167969, -16.130262 ], [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ] ] ], [ [ [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.580711 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.368950 ], [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.167969, -16.130262 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.580711 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.368950 ], [ 166.596680, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.014648, -20.427013 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.794922, -21.125498 ], [ 164.135742, -20.427013 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ], [ 165.014648, -20.427013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.097206 ], [ 165.014648, -20.427013 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.794922, -21.125498 ], [ 164.135742, -20.427013 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.738528 ], [ 173.188477, -42.940339 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 171.166992, -44.871443 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 168.925781, -43.929550 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.738528 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.242188, -38.582526 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 175.034180, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.726562, -37.996163 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.287109, -36.527295 ], [ 173.803711, -36.102376 ], [ 173.012695, -35.209722 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.738528 ], [ 173.188477, -42.940339 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 171.166992, -44.871443 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 168.925781, -43.929550 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.738528 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.242188, -38.582526 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 175.034180, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.726562, -37.996163 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.287109, -36.527295 ], [ 173.803711, -36.102376 ], [ 173.012695, -35.209722 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ] ] ], [ [ [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ] ] ], [ [ [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ -0.307617, 39.334297 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ -0.307617, 39.334297 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ], [ 1.801758, 20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ] ] ], [ [ [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ] ] ], [ [ [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ] ] ], [ [ [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ] ] ], [ [ [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ] ] ], [ [ [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ] ] ], [ [ [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ] ] ], [ [ [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ] ] ], [ [ [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ] ] ], [ [ [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ] ] ], [ [ [ 10.502930, 57.231503 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ], [ 10.502930, 57.231503 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.502930, 57.231503 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ], [ 21.972656, 68.624544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.610352, 69.115611 ], [ 21.972656, 68.624544 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.922935 ], [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ], [ 6.240234, 49.922935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.020508, 50.148746 ], [ 6.240234, 49.922935 ], [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.754240 ], [ 14.985352, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.282227, 51.124213 ], [ 14.018555, 50.930738 ], [ 13.315430, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.216797, 50.289339 ], [ 12.392578, 49.979488 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.579102, 48.893615 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.312428 ], [ 13.007812, 47.665387 ], [ 12.919922, 47.487513 ], [ 12.612305, 47.694974 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 9.580078, 47.546872 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 6.240234, 49.922935 ], [ 6.020508, 50.148746 ], [ 6.152344, 50.819818 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.754240 ], [ 14.985352, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.282227, 51.124213 ], [ 14.018555, 50.930738 ], [ 13.315430, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.216797, 50.289339 ], [ 12.392578, 49.979488 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.579102, 48.893615 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.312428 ], [ 13.007812, 47.665387 ], [ 12.919922, 47.487513 ], [ 12.612305, 47.694974 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 9.580078, 47.546872 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 6.240234, 49.922935 ], [ 6.020508, 50.148746 ], [ 6.152344, 50.819818 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.546872 ], [ 9.624023, 47.368594 ], [ 9.448242, 47.129951 ], [ 9.931641, 46.950262 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.250977, 45.798170 ], [ 6.811523, 46.012224 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 7.163086, 47.457809 ], [ 7.426758, 47.635784 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ], [ 9.624023, 47.368594 ], [ 9.448242, 47.129951 ], [ 9.931641, 46.950262 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.250977, 45.798170 ], [ 6.811523, 46.012224 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 7.163086, 47.457809 ], [ 7.426758, 47.635784 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.296472 ], [ 18.061523, 49.066668 ], [ 17.885742, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 16.479492, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.249023, 49.066668 ], [ 14.897461, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.579102, 48.893615 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.979488 ], [ 12.216797, 50.289339 ], [ 12.963867, 50.485474 ], [ 13.315430, 50.736455 ], [ 14.018555, 50.930738 ], [ 14.282227, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.296472 ], [ 18.061523, 49.066668 ], [ 17.885742, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 16.479492, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.249023, 49.066668 ], [ 14.897461, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.579102, 48.893615 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.979488 ], [ 12.216797, 50.289339 ], [ 12.963867, 50.485474 ], [ 13.315430, 50.736455 ], [ 14.018555, 50.930738 ], [ 14.282227, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.985352, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.342149 ], [ 23.203125, 54.239551 ], [ 23.466797, 53.930220 ], [ 23.510742, 53.488046 ], [ 23.774414, 53.094024 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.466797, 52.025459 ], [ 23.510742, 51.590723 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.342149 ], [ 23.203125, 54.239551 ], [ 23.466797, 53.930220 ], [ 23.510742, 53.488046 ], [ 23.774414, 53.094024 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.466797, 52.025459 ], [ 23.510742, 51.590723 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.875000, 48.487486 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 16.171875, 46.860191 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 13.798828, 46.528635 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 10.415039, 46.920255 ], [ 9.931641, 46.950262 ], [ 9.448242, 47.129951 ], [ 9.624023, 47.368594 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.612305, 47.694974 ], [ 12.919922, 47.487513 ], [ 13.007812, 47.665387 ], [ 12.875977, 48.312428 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 14.897461, 48.980217 ], [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.875000, 48.487486 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 16.171875, 46.860191 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 13.798828, 46.528635 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 10.415039, 46.920255 ], [ 9.931641, 46.950262 ], [ 9.448242, 47.129951 ], [ 9.624023, 47.368594 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.612305, 47.694974 ], [ 12.919922, 47.487513 ], [ 13.007812, 47.665387 ], [ 12.875977, 48.312428 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 14.897461, 48.980217 ], [ 15.249023, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.859412 ], [ 15.292969, 45.736860 ], [ 15.292969, 45.460131 ], [ 14.897461, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.709736 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ], [ 16.523438, 46.528635 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.859412 ], [ 15.292969, 45.736860 ], [ 15.292969, 45.460131 ], [ 14.897461, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.709736 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.117188, 37.474858 ], [ 15.292969, 37.160317 ], [ 15.073242, 36.633162 ], [ 14.326172, 37.020098 ], [ 13.798828, 37.125286 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.512695, 38.238180 ], [ 15.117188, 37.474858 ] ] ], [ [ [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.348633, 44.902578 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.238180 ], [ 15.864258, 38.754083 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 14.985352, 40.178873 ], [ 14.677734, 40.613952 ], [ 14.018555, 40.813809 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 12.084961, 41.705729 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.667969, 44.056012 ], [ 8.876953, 44.370987 ], [ 8.393555, 44.245199 ], [ 7.822266, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.736860 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ] ] ], [ [ [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.349609, 40.380028 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.117188, 37.474858 ], [ 15.292969, 37.160317 ], [ 15.073242, 36.633162 ], [ 14.326172, 37.020098 ], [ 13.798828, 37.125286 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.348633, 44.902578 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.238180 ], [ 15.864258, 38.754083 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 14.985352, 40.178873 ], [ 14.677734, 40.613952 ], [ 14.018555, 40.813809 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 12.084961, 41.705729 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.667969, 44.056012 ], [ 8.876953, 44.370987 ], [ 8.393555, 44.245199 ], [ 7.822266, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.736860 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ] ] ], [ [ [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.349609, 40.380028 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.621094, 47.010226 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.875000, 46.407564 ], [ 16.523438, 46.528635 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.446289, 47.872144 ], [ 17.841797, 47.783635 ], [ 18.676758, 47.901614 ], [ 18.764648, 48.107431 ], [ 19.160156, 48.136767 ], [ 19.643555, 48.283193 ], [ 19.731445, 48.224673 ], [ 20.214844, 48.341646 ], [ 20.434570, 48.574790 ], [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.621094, 47.010226 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.875000, 46.407564 ], [ 16.523438, 46.528635 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.446289, 47.872144 ], [ 17.841797, 47.783635 ], [ 18.676758, 47.901614 ], [ 18.764648, 48.107431 ], [ 19.160156, 48.136767 ], [ 19.643555, 48.283193 ], [ 19.731445, 48.224673 ], [ 20.214844, 48.341646 ], [ 20.434570, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.060547, 48.429201 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 20.434570, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.731445, 48.224673 ], [ 19.643555, 48.283193 ], [ 19.160156, 48.136767 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.841797, 47.783635 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.487486 ], [ 17.094727, 48.835797 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.922499 ], [ 17.885742, 49.009051 ], [ 18.061523, 49.066668 ], [ 18.149414, 49.296472 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.060547, 48.429201 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 20.434570, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.731445, 48.224673 ], [ 19.643555, 48.283193 ], [ 19.160156, 48.136767 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.841797, 47.783635 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.487486 ], [ 17.094727, 48.835797 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.922499 ], [ 17.885742, 49.009051 ], [ 18.061523, 49.066668 ], [ 18.149414, 49.296472 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.291992, 49.582226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 19.204102, 43.548548 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.270508, 43.452919 ], [ 16.875000, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.215820, 44.370987 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.243953 ], [ 17.841797, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.243953 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 19.204102, 43.548548 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.270508, 43.452919 ], [ 16.875000, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.215820, 44.370987 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.243953 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 43.229195 ], [ 19.951172, 43.133061 ], [ 20.302734, 42.908160 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.967659 ], [ 18.852539, 42.293564 ], [ 18.413086, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.599609, 43.229195 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.548548 ], [ 19.599609, 43.229195 ], [ 19.951172, 43.133061 ], [ 20.302734, 42.908160 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.967659 ], [ 18.852539, 42.293564 ], [ 18.413086, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.433780 ], [ 22.631836, 44.245199 ], [ 22.368164, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.229195 ], [ 22.587891, 42.908160 ], [ 22.412109, 42.585444 ], [ 22.543945, 42.488302 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.752930, 42.714732 ], [ 21.621094, 42.682435 ], [ 20.786133, 43.293200 ], [ 20.610352, 43.229195 ], [ 20.478516, 42.908160 ], [ 20.214844, 42.843751 ], [ 20.302734, 42.908160 ], [ 19.951172, 43.133061 ], [ 19.599609, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.433780 ], [ 22.631836, 44.245199 ], [ 22.368164, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.229195 ], [ 22.587891, 42.908160 ], [ 22.412109, 42.585444 ], [ 22.543945, 42.488302 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.752930, 42.714732 ], [ 21.621094, 42.682435 ], [ 20.786133, 43.293200 ], [ 20.610352, 43.229195 ], [ 20.478516, 42.908160 ], [ 20.214844, 42.843751 ], [ 20.302734, 42.908160 ], [ 19.951172, 43.133061 ], [ 19.599609, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 42.682435 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.326062 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.258789, 42.326062 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.610352, 43.229195 ], [ 20.786133, 43.293200 ], [ 21.621094, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 43.293200 ], [ 21.621094, 42.682435 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.326062 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.258789, 42.326062 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.610352, 43.229195 ], [ 20.786133, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.520700 ], [ 20.039062, 42.617791 ], [ 20.258789, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.961914, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.943436 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.738528 ], [ 19.335938, 41.902277 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ], [ 19.775391, 42.520700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.714732 ], [ 19.775391, 42.520700 ], [ 20.039062, 42.617791 ], [ 20.258789, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.961914, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.943436 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.738528 ], [ 19.335938, 41.902277 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.719727, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.016602, 41.178654 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 42.065607 ], [ 21.313477, 42.228517 ], [ 21.884766, 42.326062 ], [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.719727, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.016602, 41.178654 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 42.065607 ], [ 21.313477, 42.228517 ], [ 21.884766, 42.326062 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.904910 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.904910 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.576172, 57.868132 ], [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 27.817383, 56.776808 ], [ 28.168945, 56.170023 ], [ 27.070312, 55.801281 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 23.862305, 56.292157 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ], [ 25.576172, 57.868132 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 25.576172, 57.868132 ], [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 27.817383, 56.776808 ], [ 28.168945, 56.170023 ], [ 27.070312, 55.801281 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 23.862305, 56.292157 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.576172, 57.868132 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 24.565430, 59.467408 ], [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.576172, 57.868132 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 24.565430, 59.467408 ], [ 25.839844, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.876607 ], [ 22.280273, 55.028022 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.292157 ], [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.876607 ], [ 22.280273, 55.028022 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.292157 ], [ 24.829102, 56.389584 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.937500, 55.103516 ], [ 30.717773, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.094024 ], [ 31.508789, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 30.146484, 51.426614 ], [ 29.223633, 51.371780 ], [ 28.959961, 51.618017 ], [ 28.608398, 51.454007 ], [ 28.212891, 51.590723 ], [ 27.421875, 51.618017 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.466797, 52.025459 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.774414, 53.094024 ], [ 23.510742, 53.488046 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 27.070312, 55.801281 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.937500, 55.103516 ], [ 30.717773, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.094024 ], [ 31.508789, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 30.146484, 51.426614 ], [ 29.223633, 51.371780 ], [ 28.959961, 51.618017 ], [ 28.608398, 51.454007 ], [ 28.212891, 51.590723 ], [ 27.421875, 51.618017 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.466797, 52.025459 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.774414, 53.094024 ], [ 23.510742, 53.488046 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 27.070312, 55.801281 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.125000, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.652344, 45.305803 ], [ 29.135742, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.202148, 44.182204 ], [ 26.059570, 43.961191 ], [ 25.532227, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 47.010226 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 23.730469, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.180664, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.586914, 48.224673 ], [ 26.894531, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.586914, 48.224673 ], [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.125000, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.652344, 45.305803 ], [ 29.135742, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.202148, 44.182204 ], [ 26.059570, 43.961191 ], [ 25.532227, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 47.010226 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 23.730469, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.180664, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.586914, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.532227, 43.707594 ], [ 26.059570, 43.961191 ], [ 27.202148, 44.182204 ], [ 27.949219, 43.834527 ], [ 28.520508, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.488302 ], [ 22.412109, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.532227, 43.707594 ], [ 26.059570, 43.961191 ], [ 27.202148, 44.182204 ], [ 27.949219, 43.834527 ], [ 28.520508, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.488302 ], [ 22.412109, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.166085 ], [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 29.531250, 46.950262 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.377254 ], [ 29.135742, 46.407564 ], [ 29.047852, 46.528635 ], [ 28.828125, 46.468133 ], [ 28.916016, 46.286224 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.614037 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.377254 ], [ 28.125000, 46.830134 ], [ 26.894531, 48.136767 ], [ 26.586914, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.487486 ], [ 28.256836, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.487486 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 29.531250, 46.950262 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.377254 ], [ 29.135742, 46.407564 ], [ 29.047852, 46.528635 ], [ 28.828125, 46.468133 ], [ 28.916016, 46.286224 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.614037 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.377254 ], [ 28.125000, 46.830134 ], [ 26.894531, 48.136767 ], [ 26.586914, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.487486 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.375977, 50.792047 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 38.583984, 49.951220 ], [ 40.034180, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 37.397461, 47.040182 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.575195, 45.305803 ], [ 29.135742, 45.490946 ], [ 28.652344, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.614037 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.286224 ], [ 28.828125, 46.468133 ], [ 29.047852, 46.528635 ], [ 29.135742, 46.407564 ], [ 29.750977, 46.377254 ], [ 30.014648, 46.437857 ], [ 29.794922, 46.528635 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.950262 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.487486 ], [ 26.850586, 48.370848 ], [ 26.586914, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.180664, 47.901614 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.730469, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.590723 ], [ 28.608398, 51.454007 ], [ 28.959961, 51.618017 ], [ 29.223633, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.375977, 50.792047 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 38.583984, 49.951220 ], [ 40.034180, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 37.397461, 47.040182 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.575195, 45.305803 ], [ 29.135742, 45.490946 ], [ 28.652344, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.614037 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.286224 ], [ 28.828125, 46.468133 ], [ 29.047852, 46.528635 ], [ 29.135742, 46.407564 ], [ 29.750977, 46.377254 ], [ 30.014648, 46.437857 ], [ 29.794922, 46.528635 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.950262 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.487486 ], [ 26.850586, 48.370848 ], [ 26.586914, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.180664, 47.901614 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.730469, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.590723 ], [ 28.608398, 51.454007 ], [ 28.959961, 51.618017 ], [ 29.223633, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.348763 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.363281, 43.229195 ], [ 43.725586, 42.747012 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 46.494141, 41.079351 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 44.956055, 41.277806 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.036776 ], [ 40.297852, 43.133061 ], [ 39.946289, 43.452919 ], [ 40.034180, 43.580391 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.034180, 43.580391 ], [ 40.913086, 43.389082 ], [ 42.363281, 43.229195 ], [ 43.725586, 42.747012 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 46.494141, 41.079351 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 44.956055, 41.277806 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.036776 ], [ 40.297852, 43.133061 ], [ 39.946289, 43.452919 ], [ 40.034180, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.805745 ], [ 13.051758, 32.879587 ], [ 13.886719, 32.731841 ], [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 16.611328, 31.203405 ], [ 18.017578, 30.789037 ], [ 19.072266, 30.297018 ], [ 19.555664, 30.562261 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 23.598633, 32.212801 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.931641, 24.966140 ], [ 9.887695, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.624023, 27.176469 ], [ 9.755859, 27.722436 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.458731 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.101190 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.051758, 32.879587 ], [ 13.886719, 32.731841 ], [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 16.611328, 31.203405 ], [ 18.017578, 30.789037 ], [ 19.072266, 30.297018 ], [ 19.555664, 30.562261 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 23.598633, 32.212801 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.931641, 24.966140 ], [ 9.887695, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.624023, 27.176469 ], [ 9.755859, 27.722436 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.458731 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.101190 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.049038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.543945, 14.944785 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 22.016602, 12.983148 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.456055, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.393879 ], [ 22.851562, 11.178402 ], [ 22.192383, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.102097 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.928675 ], [ 16.699219, 7.536764 ], [ 16.435547, 7.754537 ], [ 16.259766, 7.754537 ], [ 16.083984, 7.536764 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 14.501953, 8.971897 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.941406, 11.566144 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.644531, 19.973349 ], [ 15.864258, 20.427013 ], [ 15.468750, 20.756114 ], [ 15.468750, 21.084500 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.543945, 14.944785 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 22.016602, 12.983148 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.456055, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.393879 ], [ 22.851562, 11.178402 ], [ 22.192383, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.102097 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.928675 ], [ 16.699219, 7.536764 ], [ 16.435547, 7.754537 ], [ 16.259766, 7.754537 ], [ 16.083984, 7.536764 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 14.501953, 8.971897 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.941406, 11.566144 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.644531, 19.973349 ], [ 15.864258, 20.427013 ], [ 15.468750, 20.756114 ], [ 15.468750, 21.084500 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.213867, 35.389050 ], [ 25.004883, 35.460670 ], [ 25.751953, 35.389050 ], [ 25.708008, 35.209722 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ] ] ], [ [ [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.015625, 40.847060 ], [ 25.444336, 40.880295 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.510742, 38.513788 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.961914, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.016602, 41.178654 ], [ 22.587891, 41.145570 ], [ 22.719727, 41.310824 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ], [ 25.004883, 35.460670 ], [ 25.751953, 35.389050 ], [ 25.708008, 35.209722 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.015625, 40.847060 ], [ 25.444336, 40.880295 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.510742, 38.513788 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.961914, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.016602, 41.178654 ], [ 22.587891, 41.145570 ], [ 22.719727, 41.310824 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.442383, 35.029996 ], [ 33.837891, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.969727, 34.994004 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.354492, 35.173808 ], [ 33.442383, 35.029996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.354492, 35.173808 ], [ 33.442383, 35.029996 ], [ 33.837891, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.969727, 34.994004 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.354492, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.872070, 30.902225 ], [ 29.663086, 31.203405 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.381735 ], [ 34.145508, 27.839076 ], [ 33.881836, 27.683528 ], [ 33.134766, 28.420391 ], [ 32.387695, 29.878755 ], [ 32.299805, 29.764377 ], [ 32.695312, 28.729130 ], [ 33.310547, 27.722436 ], [ 34.101562, 26.155438 ], [ 34.760742, 25.045792 ], [ 35.683594, 23.966176 ], [ 35.463867, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.650391, 22.228090 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ], [ 29.663086, 31.203405 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.381735 ], [ 34.145508, 27.839076 ], [ 33.881836, 27.683528 ], [ 33.134766, 28.420391 ], [ 32.387695, 29.878755 ], [ 32.299805, 29.764377 ], [ 32.695312, 28.729130 ], [ 33.310547, 27.722436 ], [ 34.101562, 26.155438 ], [ 34.760742, 25.045792 ], [ 35.683594, 23.966176 ], [ 35.463867, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.650391, 22.228090 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 39.506836, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.725586, 40.747257 ], [ 43.637695, 40.279526 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 42.319336, 37.230328 ], [ 41.176758, 37.090240 ], [ 40.649414, 37.125286 ], [ 39.506836, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ] ] ], [ [ [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 39.506836, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.725586, 40.747257 ], [ 43.637695, 40.279526 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 42.319336, 37.230328 ], [ 41.176758, 37.090240 ], [ 40.649414, 37.125286 ], [ 39.506836, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ] ] ], [ [ [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.284620 ], [ 35.419922, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.284620 ], [ 35.419922, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.123047, 35.853440 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 38.671875, 36.738884 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 41.176758, 37.090240 ], [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.123047, 35.853440 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 38.671875, 36.738884 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 41.176758, 37.090240 ], [ 42.319336, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.914868 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.914868 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 32.879587 ], [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 34.541016, 31.578535 ], [ 34.453125, 31.615966 ], [ 34.716797, 32.101190 ], [ 34.936523, 32.842674 ], [ 35.068359, 33.100745 ], [ 35.419922, 33.100745 ], [ 35.551758, 33.284620 ], [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 34.541016, 31.578535 ], [ 34.453125, 31.615966 ], [ 34.716797, 32.101190 ], [ 34.936523, 32.842674 ], [ 35.068359, 33.100745 ], [ 35.419922, 33.100745 ], [ 35.551758, 33.284620 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.936523, 31.653381 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.936523, 31.653381 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 38.979492, 32.026706 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.661133, 30.372875 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.936523, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.375977, 31.503629 ], [ 35.507812, 31.802893 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ], [ 38.979492, 32.026706 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.661133, 30.372875 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.936523, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.375977, 31.503629 ], [ 35.507812, 31.802893 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.043491 ], [ 36.958008, 20.838278 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 37.133789, 17.266728 ], [ 36.826172, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.125264 ], [ 34.804688, 11.350797 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.793945, 9.492408 ], [ 33.837891, 10.012130 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.046875, 11.480025 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.816406, 10.574222 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.575195, 10.098670 ], [ 29.487305, 9.795678 ], [ 28.959961, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 26.455078, 9.579084 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.838979 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.456055, 12.297068 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.983148 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.543945, 14.944785 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 36.958008, 20.838278 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 37.133789, 17.266728 ], [ 36.826172, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.125264 ], [ 34.804688, 11.350797 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.793945, 9.492408 ], [ 33.837891, 10.012130 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.046875, 11.480025 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.816406, 10.574222 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.575195, 10.098670 ], [ 29.487305, 9.795678 ], [ 28.959961, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 26.455078, 9.579084 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.838979 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.456055, 12.297068 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.983148 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.543945, 14.944785 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.178711, 12.211180 ], [ 33.046875, 11.480025 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.837891, 10.012130 ], [ 33.793945, 9.492408 ], [ 33.925781, 9.492408 ], [ 33.969727, 8.711359 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.672852, 6.620957 ], [ 35.288086, 5.528511 ], [ 33.969727, 4.258768 ], [ 33.354492, 3.820408 ], [ 32.651367, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.926758, 4.214943 ], [ 29.707031, 4.609278 ], [ 29.135742, 4.390229 ], [ 28.696289, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.795898, 7.013668 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.838979 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.455078, 9.579084 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.959961, 9.622414 ], [ 29.487305, 9.795678 ], [ 29.575195, 10.098670 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 31.816406, 10.574222 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ], [ 33.046875, 11.480025 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.837891, 10.012130 ], [ 33.793945, 9.492408 ], [ 33.925781, 9.492408 ], [ 33.969727, 8.711359 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.672852, 6.620957 ], [ 35.288086, 5.528511 ], [ 33.969727, 4.258768 ], [ 33.354492, 3.820408 ], [ 32.651367, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.926758, 4.214943 ], [ 29.707031, 4.609278 ], [ 29.135742, 4.390229 ], [ 28.696289, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.795898, 7.013668 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.838979 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.455078, 9.579084 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.959961, 9.622414 ], [ 29.487305, 9.795678 ], [ 29.575195, 10.098670 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 31.816406, 10.574222 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.979492, 16.846605 ], [ 39.243164, 15.961329 ], [ 39.770508, 15.453680 ], [ 41.176758, 14.519780 ], [ 42.583008, 13.025966 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 41.967773, 12.897489 ], [ 41.572266, 13.453737 ], [ 41.132812, 13.795406 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.331055, 14.562318 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.738281, 16.299051 ], [ 36.826172, 16.972741 ], [ 37.133789, 17.266728 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ], [ 38.979492, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.020528 ], [ 38.979492, 16.846605 ], [ 39.243164, 15.961329 ], [ 39.770508, 15.453680 ], [ 41.176758, 14.519780 ], [ 42.583008, 13.025966 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 41.967773, 12.897489 ], [ 41.572266, 13.453737 ], [ 41.132812, 13.795406 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.331055, 14.562318 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.738281, 16.299051 ], [ 36.826172, 16.972741 ], [ 37.133789, 17.266728 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.286133, 12.425848 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 42.539062, 11.135287 ], [ 42.275391, 11.049038 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ], [ 43.286133, 12.425848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.286133, 12.425848 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 42.539062, 11.135287 ], [ 42.275391, 11.049038 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 63.149414, 43.675818 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.356445, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.971680, 40.245992 ], [ 70.576172, 40.245992 ], [ 70.444336, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.994141, 40.111689 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.925229 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 57.744141, 42.195969 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 63.149414, 43.675818 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.356445, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.971680, 40.245992 ], [ 70.576172, 40.245992 ], [ 70.444336, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.994141, 40.111689 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.925229 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 57.744141, 42.195969 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 41.013066 ], [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.010742, 39.639538 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.334297 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.740986 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.279526 ], [ 43.725586, 40.747257 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.013066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.277806 ], [ 45.175781, 41.013066 ], [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.010742, 39.639538 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.334297 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.740986 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.279526 ], [ 43.725586, 40.747257 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.944336, 41.409776 ], [ 48.559570, 41.836828 ], [ 49.086914, 41.310824 ], [ 49.614258, 40.580585 ], [ 50.053711, 40.547200 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 47.680664, 39.537940 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 46.010742, 39.639538 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 45.175781, 41.013066 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 45.922852, 41.145570 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.362305, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.944336, 41.409776 ], [ 48.559570, 41.836828 ], [ 49.086914, 41.310824 ], [ 49.614258, 40.580585 ], [ 50.053711, 40.547200 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 47.680664, 39.537940 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 46.010742, 39.639538 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 45.175781, 41.013066 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 45.922852, 41.145570 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.788345 ], [ 47.680664, 39.537940 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.162109, 37.961523 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.030786 ], [ 58.403320, 37.544577 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.820312, 32.212801 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 58.491211, 25.641526 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.844674 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.736328, 37.195331 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ], [ 44.912109, 39.368279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.740986 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.788345 ], [ 47.680664, 39.537940 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.162109, 37.961523 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.030786 ], [ 58.403320, 37.544577 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.820312, 32.212801 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 58.491211, 25.641526 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.844674 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.736328, 37.195331 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.944336, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.343875 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.343875 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.766602, 24.287027 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 55.502930, 23.563987 ], [ 55.195312, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.723633, 24.327077 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.766602, 24.287027 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 55.502930, 23.563987 ], [ 55.195312, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.723633, 24.327077 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.925229 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 66.181641, 37.405074 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.940430, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.961523 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 57.744141, 42.195969 ], [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.925229 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 66.181641, 37.405074 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.940430, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.961523 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 57.744141, 42.195969 ], [ 58.623047, 42.779275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.961329 ], [ 52.163086, 15.623037 ], [ 51.152344, 15.199386 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 48.208008, 13.966054 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.325485 ], [ 45.395508, 13.068777 ], [ 45.131836, 12.983148 ], [ 44.956055, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.198242, 13.239945 ], [ 43.242188, 13.795406 ], [ 43.066406, 14.093957 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.670898, 15.749963 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 44.033203, 17.434511 ], [ 45.175781, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.266728 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.961329 ], [ 52.163086, 15.623037 ], [ 51.152344, 15.199386 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 48.208008, 13.966054 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.325485 ], [ 45.395508, 13.068777 ], [ 45.131836, 12.983148 ], [ 44.956055, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.198242, 13.239945 ], [ 43.242188, 13.795406 ], [ 43.066406, 14.093957 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.670898, 15.749963 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 44.033203, 17.434511 ], [ 45.175781, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.266728 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.821289, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.095703, 23.765237 ], [ 58.710938, 23.604262 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.553147 ], [ 59.765625, 22.350076 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 19.766704 ], [ 57.788086, 19.103648 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.469727, 18.104087 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.239258, 17.644022 ], [ 55.239258, 17.266728 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.715390 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.563987 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.766602, 24.287027 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ], [ 56.821289, 24.246965 ] ] ], [ [ [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.821289, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.095703, 23.765237 ], [ 58.710938, 23.604262 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.553147 ], [ 59.765625, 22.350076 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 19.766704 ], [ 57.788086, 19.103648 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.469727, 18.104087 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.239258, 17.644022 ], [ 55.239258, 17.266728 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.715390 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.563987 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.766602, 24.287027 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.307708 ], [ 43.637695, 10.876465 ], [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 45.527344, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 47.988281, 11.221510 ], [ 48.339844, 11.393879 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 43.286133, 9.579084 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ], [ 43.461914, 11.307708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.110352, 11.480025 ], [ 43.461914, 11.307708 ], [ 43.637695, 10.876465 ], [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 45.527344, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 47.988281, 11.221510 ], [ 48.339844, 11.393879 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 43.286133, 9.579084 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.262695, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.262695, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.323242, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.499023, 37.926868 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.158203, 36.949892 ], [ 72.597656, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.916016, 37.439974 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.575195, 37.055177 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.738884 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.455078, 35.675147 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 63.544922, 29.496988 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.212801 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 63.940430, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 66.181641, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.268555, 37.753344 ], [ 70.356445, 38.169114 ], [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.499023, 37.926868 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.158203, 36.949892 ], [ 72.597656, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.916016, 37.439974 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.575195, 37.055177 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.738884 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.455078, 35.675147 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 63.544922, 29.496988 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.212801 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 63.940430, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 66.181641, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.268555, 37.753344 ], [ 70.356445, 38.169114 ], [ 70.795898, 38.513788 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.998532 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.244696 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 63.544922, 29.496988 ], [ 64.116211, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.147461, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.455078, 35.675147 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 72.905273, 36.738884 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.055177 ], [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.998532 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.244696 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 63.544922, 29.496988 ], [ 64.116211, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.147461, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.455078, 35.675147 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 72.905273, 36.738884 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.055177 ], [ 75.146484, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.309570, 30.145127 ], [ 83.320312, 29.496988 ], [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.781250, 28.226970 ], [ 86.923828, 27.994401 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 81.958008, 27.955591 ], [ 81.035156, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ], [ 82.309570, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.448674 ], [ 82.309570, 30.145127 ], [ 83.320312, 29.496988 ], [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.781250, 28.226970 ], [ 86.923828, 27.994401 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 81.958008, 27.955591 ], [ 81.035156, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.815430, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 91.186523, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 88.813477, 27.332735 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 91.186523, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 88.813477, 27.332735 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.037042 ], [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 90.834961, 25.165173 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.739091 ], [ 91.801758, 22.187405 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.065278 ], [ 89.692383, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.286133, 24.886436 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ], [ 89.340820, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.470573 ], [ 89.340820, 26.037042 ], [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 90.834961, 25.165173 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.739091 ], [ 91.801758, 22.187405 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.065278 ], [ 89.692383, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.286133, 24.886436 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ] ] ], [ [ [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.217773, 27.761330 ], [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 97.822266, 17.602139 ], [ 98.481445, 16.846605 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 98.393555, 14.647368 ], [ 99.096680, 13.838080 ], [ 99.184570, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.008789, 10.962764 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.467695 ], [ 95.361328, 15.749963 ], [ 94.790039, 15.834536 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.032227, 22.715390 ], [ 93.251953, 23.079732 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 94.526367, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.217773, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.217773, 27.761330 ], [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 97.822266, 17.602139 ], [ 98.481445, 16.846605 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 98.393555, 14.647368 ], [ 99.096680, 13.838080 ], [ 99.184570, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.008789, 10.962764 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.467695 ], [ 95.361328, 15.749963 ], [ 94.790039, 15.834536 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.032227, 22.715390 ], [ 93.251953, 23.079732 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 94.526367, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 106.523438, 16.636192 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.030273, 18.437925 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ], [ 102.744141, 21.698265 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.471955 ], [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 106.523438, 16.636192 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.030273, 18.437925 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 18.437925 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.392578, 17.936929 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 104.238281, 14.434680 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.239258, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.882800 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 99.667969, 6.882800 ], [ 99.492188, 7.362467 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.217773, 9.015302 ], [ 98.525391, 9.968851 ], [ 99.008789, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.184570, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.393555, 14.647368 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 98.481445, 16.846605 ], [ 97.822266, 17.602139 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 99.536133, 20.220966 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 18.437925 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.392578, 17.936929 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 104.238281, 14.434680 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.239258, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.882800 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 99.667969, 6.882800 ], [ 99.492188, 7.362467 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.217773, 9.015302 ], [ 98.525391, 9.968851 ], [ 99.008789, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.184570, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.393555, 14.647368 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 98.481445, 16.846605 ], [ 97.822266, 17.602139 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 99.536133, 20.220966 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.237305, 16.088042 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 108.325195, 11.049038 ], [ 107.182617, 10.401378 ], [ 106.391602, 9.535749 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.578125, 13.539201 ], [ 107.358398, 14.221789 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 106.523438, 16.636192 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.150391, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.237305, 16.088042 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 108.325195, 11.049038 ], [ 107.182617, 10.401378 ], [ 106.391602, 9.535749 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.578125, 13.539201 ], [ 107.358398, 14.221789 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 106.523438, 16.636192 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.150391, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 103.051758, 11.178402 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.306969 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 103.051758, 11.178402 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.306969 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ] ] ], [ [ [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.717773, 21.983801 ], [ 120.190430, 22.836946 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.567108 ], [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.717773, 21.983801 ], [ 120.190430, 22.836946 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.567108 ], [ 121.464844, 25.324167 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.967659 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 129.155273, 40.680638 ], [ 128.627930, 40.212441 ], [ 127.924805, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.485352, 39.334297 ], [ 127.353516, 39.232253 ], [ 127.749023, 39.061849 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 126.210938, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.961523 ], [ 125.551758, 37.753344 ], [ 125.244141, 37.683820 ], [ 125.200195, 37.857507 ], [ 124.672852, 38.134557 ], [ 124.980469, 38.582526 ], [ 125.200195, 38.685510 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.288086, 39.571822 ], [ 124.716797, 39.673370 ], [ 124.233398, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.967659 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 129.155273, 40.680638 ], [ 128.627930, 40.212441 ], [ 127.924805, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.485352, 39.334297 ], [ 127.353516, 39.232253 ], [ 127.749023, 39.061849 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 126.210938, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.961523 ], [ 125.551758, 37.753344 ], [ 125.244141, 37.683820 ], [ 125.200195, 37.857507 ], [ 124.672852, 38.134557 ], [ 124.980469, 38.582526 ], [ 125.200195, 38.685510 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.288086, 39.571822 ], [ 124.716797, 39.673370 ], [ 124.233398, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 128.144531, 34.921971 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.342773, 34.957995 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 128.144531, 34.921971 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.342773, 34.957995 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ] ] ], [ [ [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.202148, 8.450639 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ] ] ], [ [ [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ] ] ], [ [ [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ] ] ], [ [ [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ] ] ], [ [ [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ] ] ], [ [ [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ] ] ], [ [ [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.158203, 8.407168 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ] ] ], [ [ [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ] ] ], [ [ [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ] ] ], [ [ [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ] ] ], [ [ [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ] ] ], [ [ [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 114.565430, 4.915833 ], [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 114.565430, 4.915833 ], [ 115.444336, 5.484768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.777716 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ] ] ], [ [ [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ] ] ], [ [ [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.635742, 44.777936 ], [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.777716 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.635742, 44.777936 ], [ 141.943359, 45.552525 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.043945 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.622070, -0.043945 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.622070, -0.043945 ], [ 17.622070, -0.395505 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.043945 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.622070, -0.043945 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.622070, -0.395505 ], [ 17.622070, -0.043945 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ] ] ], [ [ [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ] ] ], [ [ [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ] ] ], [ [ [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ] ] ], [ [ [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ] ] ], [ [ [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ] ] ], [ [ [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.794922, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ] ] ], [ [ [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ] ] ], [ [ [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ] ] ], [ [ [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ] ] ], [ [ [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ] ] ], [ [ [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.794922, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ] ] ], [ [ [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ] ] ], [ [ [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ] ] ], [ [ [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ] ] ], [ [ [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ] ] ], [ [ [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.334376 ], [ -85.979004, 68.334376 ], [ -85.583496, 68.792094 ] ] ], [ [ [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.104004, 68.334376 ], [ -140.998535, 68.334376 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.941406, 68.334376 ], [ -108.808594, 68.334376 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.690430, 68.584465 ], [ -96.547852, 68.334376 ], [ -98.569336, 68.334376 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.334376 ], [ -94.592285, 68.334376 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.412109, 68.334376 ], [ -74.157715, 68.334376 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.104004, 68.334376 ], [ -140.998535, 68.334376 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.412109, 68.334376 ], [ -74.157715, 68.334376 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -105.358887, 68.568414 ], [ -104.941406, 68.334376 ], [ -108.808594, 68.334376 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ] ] ], [ [ [ -96.547852, 68.334376 ], [ -98.569336, 68.334376 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.547852, 68.334376 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.334376 ], [ -94.592285, 68.334376 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.334376 ], [ -85.979004, 68.334376 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.808594, 68.334376 ], [ -104.941406, 68.334376 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.334376 ], [ -96.547852, 68.334376 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.592285, 68.334376 ], [ -88.154297, 68.334376 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.334376 ], [ -81.716309, 68.334376 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.334376 ], [ -114.104004, 68.334376 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.157715, 68.334376 ], [ -67.412109, 68.334376 ], [ -66.467285, 68.073305 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.716309, 68.334376 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.334376 ], [ -114.104004, 68.334376 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.808594, 68.334376 ], [ -104.941406, 68.334376 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.334376 ], [ -96.547852, 68.334376 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.592285, 68.334376 ], [ -88.154297, 68.334376 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.334376 ], [ -81.716309, 68.334376 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ], [ [ [ -67.412109, 68.334376 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.157715, 68.334376 ], [ -67.412109, 68.334376 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.745610 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.745610 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.342487 ], [ -85.979004, 68.342487 ], [ -85.583496, 68.792094 ] ] ], [ [ [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.082031, 68.342487 ], [ -140.998535, 68.342487 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.941406, 68.342487 ], [ -108.786621, 68.342487 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.690430, 68.584465 ], [ -96.591797, 68.342487 ], [ -98.569336, 68.342487 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.342487 ], [ -94.592285, 68.342487 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.456055, 68.342487 ], [ -74.179688, 68.342487 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.082031, 68.342487 ], [ -140.998535, 68.342487 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.456055, 68.342487 ], [ -74.179688, 68.342487 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -105.358887, 68.568414 ], [ -104.941406, 68.342487 ], [ -108.786621, 68.342487 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ] ] ], [ [ [ -96.591797, 68.342487 ], [ -98.569336, 68.342487 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.591797, 68.342487 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.342487 ], [ -94.592285, 68.342487 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.342487 ], [ -85.979004, 68.342487 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.786621, 68.342487 ], [ -104.941406, 68.342487 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.342487 ], [ -96.591797, 68.342487 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.592285, 68.342487 ], [ -88.154297, 68.342487 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.342487 ], [ -81.716309, 68.342487 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.342487 ], [ -114.082031, 68.342487 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.179688, 68.342487 ], [ -67.456055, 68.342487 ], [ -66.467285, 68.073305 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.716309, 68.342487 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.342487 ], [ -114.082031, 68.342487 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.786621, 68.342487 ], [ -104.941406, 68.342487 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.342487 ], [ -96.591797, 68.342487 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.592285, 68.342487 ], [ -88.154297, 68.342487 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.342487 ], [ -81.716309, 68.342487 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ], [ [ [ -67.456055, 68.342487 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.179688, 68.342487 ], [ -67.456055, 68.342487 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.745610 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.745610 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.805664, 0.087891 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.805664, 0.087891 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.448242, -25.145285 ], [ -54.645996, -25.720735 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.448242, -25.145285 ], [ -54.645996, -25.720735 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ] ] ], [ [ [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.334376 ], [ -85.979004, 68.334376 ], [ -85.583496, 68.792094 ] ] ], [ [ [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.082031, 68.334376 ], [ -140.998535, 68.334376 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.919434, 68.334376 ], [ -108.786621, 68.334376 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.690430, 68.584465 ], [ -96.525879, 68.334376 ], [ -98.547363, 68.334376 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.334376 ], [ -94.570312, 68.334376 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.412109, 68.334376 ], [ -74.157715, 68.334376 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.082031, 68.334376 ], [ -140.998535, 68.334376 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.412109, 68.334376 ], [ -74.157715, 68.334376 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -105.358887, 68.568414 ], [ -104.919434, 68.334376 ], [ -108.786621, 68.334376 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ] ] ], [ [ [ -96.525879, 68.334376 ], [ -98.547363, 68.334376 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.525879, 68.334376 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.334376 ], [ -94.570312, 68.334376 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.334376 ], [ -85.979004, 68.334376 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.786621, 68.334376 ], [ -104.919434, 68.334376 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.547363, 68.334376 ], [ -96.525879, 68.334376 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.570312, 68.334376 ], [ -88.154297, 68.334376 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.334376 ], [ -81.716309, 68.334376 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.334376 ], [ -114.082031, 68.334376 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.157715, 68.334376 ], [ -67.412109, 68.334376 ], [ -66.467285, 68.073305 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.716309, 68.334376 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.334376 ], [ -114.082031, 68.334376 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.786621, 68.334376 ], [ -104.919434, 68.334376 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.547363, 68.334376 ], [ -96.525879, 68.334376 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.570312, 68.334376 ], [ -88.154297, 68.334376 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.334376 ], [ -81.716309, 68.334376 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ], [ [ [ -67.412109, 68.334376 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.157715, 68.334376 ], [ -67.412109, 68.334376 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.745610 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.745610 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -89.165039, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ] ] ], [ [ [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ] ] ], [ [ [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ] ] ], [ [ [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ] ] ], [ [ [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.166504, 15.008464 ], [ -83.254395, 14.902322 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.430176, 13.987376 ], [ -83.540039, 13.581921 ], [ -83.562012, 13.132979 ], [ -83.518066, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.737793, 11.910354 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.825684, 11.113727 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.199219, 10.811724 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.146746 ], [ -87.187500, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.319336, 13.004558 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.715332, 13.966054 ], [ -85.166016, 14.370834 ], [ -85.166016, 14.562318 ], [ -85.056152, 14.562318 ], [ -84.946289, 14.796128 ], [ -84.836426, 14.838612 ], [ -84.660645, 14.668626 ], [ -84.462891, 14.626109 ], [ -84.243164, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.649902, 14.881087 ], [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ], [ -83.254395, 14.902322 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.430176, 13.987376 ], [ -83.540039, 13.581921 ], [ -83.562012, 13.132979 ], [ -83.518066, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.737793, 11.910354 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.825684, 11.113727 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.199219, 10.811724 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.146746 ], [ -87.187500, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.319336, 13.004558 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.715332, 13.966054 ], [ -85.166016, 14.370834 ], [ -85.166016, 14.562318 ], [ -85.056152, 14.562318 ], [ -84.946289, 14.796128 ], [ -84.836426, 14.838612 ], [ -84.660645, 14.668626 ], [ -84.462891, 14.626109 ], [ -84.243164, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.649902, 14.881087 ], [ -83.496094, 15.029686 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.651855, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.287598, 23.200961 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.287598, 23.200961 ], [ -81.408691, 23.120154 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.651855, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.287598, 23.200961 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.836914, 8.646196 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.605957, 8.841651 ], [ -83.649902, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.803223, 10.444598 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.836914, 8.646196 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.605957, 8.841651 ], [ -83.649902, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.803223, 10.444598 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.542117 ], [ -77.585449, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.542117 ], [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.542117 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ], [ -72.597656, 19.890723 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.932041 ], [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.631348, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.631348, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.805664, 0.087891 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.805664, 0.087891 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.340210 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -61.105957, 10.898042 ], [ -60.908203, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.745531 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.745531 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.171875, 66.530768 ], [ -14.523926, 66.460663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -8.349609, 54.673831 ], [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -8.349609, 54.673831 ], [ -7.580566, 55.141210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ] ] ], [ [ [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ] ] ], [ [ [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ] ] ], [ [ [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.185059, 37.805444 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.789062, 40.763901 ], [ -8.811035, 41.195190 ], [ -9.008789, 41.557922 ], [ -9.052734, 41.885921 ], [ -8.679199, 42.147114 ], [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.185059, 37.805444 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.789062, 40.763901 ], [ -8.811035, 41.195190 ], [ -9.008789, 41.557922 ], [ -9.052734, 41.885921 ], [ -8.679199, 42.147114 ], [ -8.283691, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -3.427734, 36.668419 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -3.427734, 36.668419 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.320139 ], [ -13.447266, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 14.008696 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.535645, 12.447305 ], [ -11.667480, 12.404389 ], [ -12.216797, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.533115 ], [ -16.149902, 12.554564 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.710449, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.392090, 13.645987 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.721191, 15.623037 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ], [ -14.106445, 16.320139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.615138 ], [ -14.106445, 16.320139 ], [ -13.447266, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 14.008696 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.535645, 12.447305 ], [ -11.667480, 12.404389 ], [ -12.216797, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.533115 ], [ -16.149902, 12.554564 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.710449, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.392090, 13.645987 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.721191, 15.623037 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.699707, 13.645987 ], [ -14.392090, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.710449, 13.282719 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ], [ -14.392090, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.710449, 13.282719 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.216797, 12.468760 ], [ -11.667480, 12.404389 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.315918, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.876465, 12.189704 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.909668, 12.060809 ], [ -9.580078, 12.211180 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.920898, 12.103781 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.844238, 8.581021 ], [ -8.217773, 8.472372 ], [ -8.305664, 8.320212 ], [ -8.239746, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.019531, 8.428904 ], [ -10.524902, 8.363693 ], [ -10.502930, 8.733077 ], [ -10.656738, 8.993600 ], [ -10.634766, 9.275622 ], [ -10.854492, 9.709057 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.612305, 9.622414 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.514079 ], [ -14.084473, 9.903921 ], [ -14.348145, 10.033767 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -14.853516, 10.898042 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -14.128418, 11.695273 ], [ -13.908691, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.732910, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.216797, 12.468760 ], [ -11.667480, 12.404389 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.315918, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.876465, 12.189704 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.909668, 12.060809 ], [ -9.580078, 12.211180 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.920898, 12.103781 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.844238, 8.581021 ], [ -8.217773, 8.472372 ], [ -8.305664, 8.320212 ], [ -8.239746, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.019531, 8.428904 ], [ -10.524902, 8.363693 ], [ -10.502930, 8.733077 ], [ -10.656738, 8.993600 ], [ -10.634766, 9.275622 ], [ -10.854492, 9.709057 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.612305, 9.622414 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.514079 ], [ -14.084473, 9.903921 ], [ -14.348145, 10.033767 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -14.853516, 10.898042 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -14.128418, 11.695273 ], [ -13.908691, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.732910, 12.254128 ], [ -13.710938, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.854492, 9.709057 ], [ -10.634766, 9.275622 ], [ -10.656738, 8.993600 ], [ -10.502930, 8.733077 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.950437 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.122696 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.139648, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.612305, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.854492, 9.709057 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.854492, 9.709057 ], [ -10.634766, 9.275622 ], [ -10.656738, 8.993600 ], [ -10.502930, 8.733077 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.950437 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.122696 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.139648, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.612305, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.320139 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.259766, 19.103648 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.320139 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.259766, 19.103648 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.580078, 12.211180 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ], [ 1.801758, 20.612220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.580078, 12.211180 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.503418, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.558594, 5.331644 ], [ -7.646484, 5.200365 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -9.931641, 5.594118 ], [ -10.766602, 6.162401 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.122696 ], [ -11.162109, 7.406048 ], [ -10.700684, 7.950437 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.503418, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.558594, 5.331644 ], [ -7.646484, 5.200365 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -9.931641, 5.594118 ], [ -10.766602, 6.162401 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.122696 ], [ -11.162109, 7.406048 ], [ -10.700684, 7.950437 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.559294 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.064453, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 5.003394 ], [ -4.020996, 5.200365 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.536621, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.646484, 5.200365 ], [ -7.558594, 5.331644 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.239746, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.472372 ], [ -7.844238, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -8.041992, 10.206813 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.422988 ], [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 5.003394 ], [ -4.020996, 5.200365 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.536621, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.646484, 5.200365 ], [ -7.558594, 5.331644 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.239746, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.472372 ], [ -7.844238, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -8.041992, 10.206813 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.422988 ], [ -6.218262, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ -0.065918, 10.725381 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ], [ 0.021973, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.021973, 11.027472 ], [ -0.065918, 10.725381 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.621582, 1.340210 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ -0.065918, 10.725381 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ -0.065918, 10.725381 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.342487 ], [ -85.979004, 68.342487 ], [ -85.583496, 68.792094 ] ] ], [ [ [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.060059, 68.342487 ], [ -140.998535, 68.342487 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.919434, 68.342487 ], [ -108.764648, 68.342487 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.690430, 68.584465 ], [ -96.569824, 68.342487 ], [ -98.547363, 68.342487 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.342487 ], [ -94.570312, 68.342487 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.456055, 68.342487 ], [ -74.179688, 68.342487 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -114.060059, 68.342487 ], [ -140.998535, 68.342487 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.456055, 68.342487 ], [ -74.179688, 68.342487 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.219727, 72.235514 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -105.358887, 68.568414 ], [ -104.919434, 68.342487 ], [ -108.764648, 68.342487 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ] ] ], [ [ [ -96.569824, 68.342487 ], [ -98.547363, 68.342487 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.569824, 68.342487 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.154297, 68.342487 ], [ -94.570312, 68.342487 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.716309, 68.342487 ], [ -85.979004, 68.342487 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.764648, 68.342487 ], [ -104.919434, 68.342487 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.547363, 68.342487 ], [ -96.569824, 68.342487 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.570312, 68.342487 ], [ -88.154297, 68.342487 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.342487 ], [ -81.716309, 68.342487 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.342487 ], [ -114.060059, 68.342487 ], [ -115.312500, 67.908619 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.179688, 68.342487 ], [ -67.456055, 68.342487 ], [ -66.467285, 68.073305 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.716309, 68.342487 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 68.342487 ], [ -114.060059, 68.342487 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.764648, 68.342487 ], [ -104.919434, 68.342487 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.547363, 68.342487 ], [ -96.569824, 68.342487 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.570312, 68.342487 ], [ -88.154297, 68.342487 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.979004, 68.342487 ], [ -81.716309, 68.342487 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ], [ [ [ -67.456055, 68.342487 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.179688, 68.342487 ], [ -67.456055, 68.342487 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.171875, 66.530768 ], [ -14.523926, 66.460663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.644043, -0.043945 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.644043, -0.043945 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.644043, -0.043945 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.644043, -0.043945 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, -6.620957 ], [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.160156, -7.732765 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 22.390137, -10.984335 ], [ 22.829590, -11.005904 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 12.194824, -17.098792 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 11.777344, -15.792254 ], [ 12.106934, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.722168, -13.132979 ], [ 13.293457, -12.468760 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 12.722168, -5.943900 ], [ 13.007812, -5.965754 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ], [ 16.567383, -6.620957 ] ] ], [ [ [ 12.985840, -4.762573 ], [ 12.612305, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.304688, -4.587376 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.856475 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.160156, -7.732765 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 22.390137, -10.984335 ], [ 22.829590, -11.005904 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 12.194824, -17.098792 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 11.777344, -15.792254 ], [ 12.106934, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.722168, -13.132979 ], [ 13.293457, -12.468760 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 12.722168, -5.943900 ], [ 13.007812, -5.965754 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.304688, -4.587376 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 14.194336, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 23.203125, -17.518344 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 25.070801, -17.644022 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.819824, -28.844674 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.985352, -26.115986 ], [ 14.721680, -25.383735 ], [ 14.392090, -23.845650 ], [ 14.370117, -22.654572 ], [ 14.238281, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.337402, -20.858812 ], [ 12.810059, -19.663280 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.194824, -17.098792 ], [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 14.194336, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 23.203125, -17.518344 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 25.070801, -17.644022 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.819824, -28.844674 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.985352, -26.115986 ], [ 14.721680, -25.383735 ], [ 14.392090, -23.845650 ], [ 14.370117, -22.654572 ], [ 14.238281, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.337402, -20.858812 ], [ 12.810059, -19.663280 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.194824, -17.098792 ], [ 12.810059, -16.930705 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.320212 ], [ 31.157227, -8.581021 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.026367, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.367188, -17.832374 ], [ 25.246582, -17.727759 ], [ 25.070801, -17.644022 ], [ 25.070801, -17.560247 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 24.763184, -11.221510 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.520508, -12.683215 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 28.981934, -8.385431 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.320212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.320212 ], [ 31.157227, -8.581021 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.026367, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.367188, -17.832374 ], [ 25.246582, -17.727759 ], [ 25.070801, -17.644022 ], [ 25.070801, -17.560247 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 24.763184, -11.221510 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.520508, -12.683215 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 28.981934, -8.385431 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.085640 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.521283 ], [ 25.246582, -17.727759 ], [ 26.367188, -17.832374 ], [ 26.696777, -17.957832 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.085640 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.521283 ], [ 25.246582, -17.727759 ], [ 26.367188, -17.832374 ], [ 26.696777, -17.957832 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 33.200684, -13.966054 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.310547, -10.790141 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 33.200684, -13.966054 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.310547, -10.790141 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 25.839844, -18.708692 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.784668, -24.226929 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 24.499512, -17.874203 ], [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 25.839844, -18.708692 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.784668, -24.226929 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 24.499512, -17.874203 ], [ 25.070801, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ] ], [ [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ] ], [ [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.816406, -25.839449 ], [ 31.970215, -26.273714 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.017298 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 31.970215, -26.273714 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.017298 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.526367, -12.468760 ], [ 49.790039, -12.876070 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.526855, -23.765237 ], [ 47.087402, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.483398, -15.961329 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 46.867676, -15.199386 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.876070 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.526855, -23.765237 ], [ 47.087402, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.483398, -15.961329 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 46.867676, -15.199386 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ] ] ], [ [ [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ] ] ], [ [ [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ] ] ], [ [ [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -3.427734, 36.668419 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -3.427734, 36.668419 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.580078, 12.211180 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ], [ 1.801758, 20.612220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.580078, 12.211180 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ -0.065918, 10.725381 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ], [ 0.021973, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.021973, 11.027472 ], [ -0.065918, 10.725381 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ] ] ], [ [ [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ] ] ], [ [ [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ] ] ], [ [ [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.387508 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.387508 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.414551, 49.979488 ], [ 12.502441, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.414551, 49.979488 ], [ 12.502441, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.580078, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.431713 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.466797, 53.917281 ], [ 23.510742, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 22.543945, 49.095452 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 16.347656, 54.521081 ], [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.431713 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.466797, 53.917281 ], [ 23.510742, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 22.543945, 49.095452 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 16.347656, 54.521081 ], [ 17.622070, 54.863963 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.860191 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 10.437012, 46.905246 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.624023, 47.353711 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.860191 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 10.437012, 46.905246 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.624023, 47.353711 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.666504, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 12.084961, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.689941, 44.040219 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ] ] ], [ [ [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.666504, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 12.084961, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.689941, 44.040219 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.621094, 46.995241 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.875000, 46.392411 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.468262, 47.872144 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 19.160156, 48.122101 ], [ 19.643555, 48.268569 ], [ 19.753418, 48.210032 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.621094, 46.995241 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.875000, 46.392411 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.468262, 47.872144 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 19.160156, 48.122101 ], [ 19.643555, 48.268569 ], [ 19.753418, 48.210032 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 19.160156, 48.122101 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.009051 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 19.160156, 48.122101 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.009051 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 19.204102, 43.532620 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.896973, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.237793, 44.355278 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 19.204102, 43.532620 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.896973, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.237793, 44.355278 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 43.357138 ], [ 19.621582, 43.229195 ], [ 19.951172, 43.117024 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 19.160156, 41.967659 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.698730, 43.213183 ], [ 19.028320, 43.436966 ], [ 19.204102, 43.532620 ], [ 19.467773, 43.357138 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.532620 ], [ 19.467773, 43.357138 ], [ 19.621582, 43.229195 ], [ 19.951172, 43.117024 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 19.160156, 41.967659 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.698730, 43.213183 ], [ 19.028320, 43.436966 ], [ 19.204102, 43.532620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.555176, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.643066, 42.439674 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 21.423340, 42.875964 ], [ 21.269531, 42.924252 ], [ 21.137695, 43.068888 ], [ 20.939941, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.951172, 43.117024 ], [ 19.621582, 43.229195 ], [ 19.467773, 43.357138 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.555176, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.643066, 42.439674 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 21.423340, 42.875964 ], [ 21.269531, 42.924252 ], [ 21.137695, 43.068888 ], [ 20.939941, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.951172, 43.117024 ], [ 19.621582, 43.229195 ], [ 19.467773, 43.357138 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.939941, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.924252 ], [ 21.423340, 42.875964 ], [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.643066, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ], [ 20.939941, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.939941, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.924252 ], [ 21.423340, 42.875964 ], [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.643066, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.741699, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.741699, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.856443 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ], [ 25.598145, 57.856443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.856443 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.856443 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.856443 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.530762, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.530762, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.916504, 48.136767 ], [ 27.224121, 47.827908 ], [ 27.531738, 47.413220 ], [ 28.125000, 46.815099 ], [ 28.146973, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.245199 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 23.752441, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ], [ 26.916504, 48.136767 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.136767 ], [ 27.224121, 47.827908 ], [ 27.531738, 47.413220 ], [ 28.125000, 46.815099 ], [ 28.146973, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.245199 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 23.752441, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.146973, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.531738, 47.413220 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.146973, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.531738, 47.413220 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.056152, 43.564472 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ -0.065918, 10.725381 ], [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ -0.065918, 10.725381 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 11.513672, 13.346865 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 13.293457, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.941895, 9.427387 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 12.062988, 7.819847 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.746582, 7.885147 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.208008, 9.449062 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 11.513672, 13.346865 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 13.293457, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.941895, 9.427387 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 12.062988, 7.819847 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.746582, 7.885147 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.208008, 9.449062 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 22.016602, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 18.369141, 8.298470 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.435547, 7.754537 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 15.117188, 8.385431 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 14.611816, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.941406, 11.566144 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 22.016602, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 18.369141, 8.298470 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.435547, 7.754537 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 15.117188, 8.385431 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 14.611816, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.941406, 11.566144 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 25.795898, 6.991859 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 26.389160, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.697754, 4.653080 ], [ 22.390137, 4.039618 ], [ 21.643066, 4.236856 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.797852, 3.579213 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.886230, 2.569939 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.462896 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.369141, 8.298470 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 19.072266, 9.080400 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 25.795898, 6.991859 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 26.389160, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.697754, 4.653080 ], [ 22.390137, 4.039618 ], [ 21.643066, 4.236856 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.797852, 3.579213 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.886230, 2.569939 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.462896 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.369141, 8.298470 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 19.072266, 9.080400 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.004883, 35.442771 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 25.444336, 40.863680 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 23.510742, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.004883, 35.442771 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 25.444336, 40.863680 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 23.510742, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.442383, 35.101934 ], [ 33.464355, 35.012002 ], [ 33.508301, 35.047987 ], [ 33.662109, 35.029996 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 32.717285, 35.155846 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ], [ 33.442383, 35.101934 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.173808 ], [ 33.442383, 35.101934 ], [ 33.464355, 35.012002 ], [ 33.508301, 35.047987 ], [ 33.662109, 35.029996 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 32.717285, 35.155846 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.443848, 31.334871 ], [ 28.894043, 30.883369 ], [ 29.663086, 31.203405 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.362402 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 33.332520, 27.702984 ], [ 34.101562, 26.155438 ], [ 34.453125, 25.601902 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.672363, 22.207749 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ], [ 27.443848, 31.334871 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.477051, 31.597253 ], [ 27.443848, 31.334871 ], [ 28.894043, 30.883369 ], [ 29.663086, 31.203405 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.362402 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 33.332520, 27.702984 ], [ 34.101562, 26.155438 ], [ 34.453125, 25.601902 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.672363, 22.207749 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.198730, 37.090240 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ] ] ], [ [ [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.198730, 37.090240 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ] ] ], [ [ [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 41.198730, 37.090240 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 41.198730, 37.090240 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.375977, 31.503629 ], [ 35.529785, 31.784217 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.375977, 31.503629 ], [ 35.529785, 31.784217 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.991699, 4.258768 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.355957, 5.244128 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.991859 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.817329 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 25.949707, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 31.838379, 10.552622 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.991699, 4.258768 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.355957, 5.244128 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.991859 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.817329 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 25.949707, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 31.838379, 10.552622 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 39.792480, 15.453680 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 41.989746, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.738281, 16.299051 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 39.792480, 15.453680 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 41.989746, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.738281, 16.299051 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 42.297363, 11.049038 ], [ 41.748047, 11.070603 ], [ 41.726074, 11.372339 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 42.297363, 11.049038 ], [ 41.748047, 11.070603 ], [ 41.726074, 11.372339 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 41.989746, 12.876070 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.726074, 11.372339 ], [ 41.748047, 11.070603 ], [ 42.297363, 11.049038 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.557417 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.649902, 3.623071 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 41.989746, 12.876070 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.726074, 11.372339 ], [ 41.748047, 11.070603 ], [ 42.297363, 11.049038 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.557417 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.649902, 3.623071 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 63.171387, 43.659924 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.993652, 40.245992 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 63.171387, 43.659924 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.993652, 40.245992 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.032715, 39.639538 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.334297 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.032715, 39.639538 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.334297 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.108887, 41.294317 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 46.032715, 39.639538 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 45.725098, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.108887, 41.294317 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 46.032715, 39.639538 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 45.725098, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.966309, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.324720 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.324720 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 55.217285, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.613770, 24.026397 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 55.217285, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.613770, 24.026397 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.052246, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.152344, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.966054 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 46.713867, 13.410994 ], [ 45.856934, 13.368243 ], [ 45.615234, 13.304103 ], [ 45.395508, 13.047372 ], [ 45.131836, 12.961736 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 43.066406, 14.072645 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.197754, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.152344, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.966054 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 46.713867, 13.410994 ], [ 45.856934, 13.368243 ], [ 45.615234, 13.304103 ], [ 45.395508, 13.047372 ], [ 45.131836, 12.961736 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 43.066406, 14.072645 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.197754, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.117676, 23.765237 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.117676, 23.765237 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 48.010254, 11.199957 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 48.471680, 8.841651 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 43.286133, 9.557417 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 48.010254, 11.199957 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 48.471680, 8.841651 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 43.286133, 9.557417 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.180176, 36.949892 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.575195, 37.037640 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.721274 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.477051, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 60.798340, 34.415973 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 67.060547, 37.370157 ], [ 67.829590, 37.160317 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.180176, 36.949892 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.575195, 37.037640 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.721274 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.477051, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 60.798340, 34.415973 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 67.060547, 37.370157 ], [ 67.829590, 37.160317 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.091797, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.224820 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.477051, 35.657296 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 72.905273, 36.721274 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.037640 ], [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.091797, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.224820 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.477051, 35.657296 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 72.905273, 36.721274 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.037640 ], [ 75.146484, 37.142803 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 86.022949, 26.647459 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.979980, 27.936181 ], [ 81.057129, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.101074, 30.202114 ], [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 86.022949, 26.647459 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.979980, 27.936181 ], [ 81.057129, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.101074, 30.202114 ], [ 81.518555, 30.429730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.975586, 21.759500 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ] ] ], [ [ [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.975586, 21.759500 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.644043, -0.043945 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.644043, -0.043945 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.644043, -0.043945 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.644043, -0.043945 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ] ] ], [ [ [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.495740 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.978516, -66.204876 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 104.897461, -66.319861 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.696478 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 123.200684, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 133.835449, -66.284537 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -161.938477, -85.137560 ], [ -158.093262, -85.373767 ], [ -155.192871, -85.098291 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ] ] ], [ [ [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ] ] ], [ [ [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ] ] ], [ [ [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ] ] ], [ [ [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.816895, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ] ] ], [ [ [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ] ] ], [ [ [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.816895, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.068359, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.628418, -8.385431 ], [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.068359, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.628418, -8.385431 ], [ 126.936035, -8.254983 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ] ] ], [ [ [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.325195, -29.439598 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.325195, -29.439598 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ] ] ], [ [ [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ] ] ], [ [ [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.384032 ], [ 160.686035, -9.600750 ], [ 160.839844, -9.860628 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ] ] ], [ [ [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ], [ 160.686035, -9.600750 ], [ 160.839844, -9.860628 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.992188, -15.601875 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.992188, -15.601875 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.117840 ], [ 165.014648, -20.447602 ], [ 165.761719, -21.063997 ], [ 166.596680, -21.698265 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.454102, -21.677848 ], [ 164.816895, -21.145992 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ], [ 165.014648, -20.447602 ], [ 165.761719, -21.063997 ], [ 166.596680, -21.698265 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.454102, -21.677848 ], [ 164.816895, -21.145992 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.975586, 21.759500 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ] ] ], [ [ [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.975586, 21.759500 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.701172, 26.745610 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 99.975586, 21.759500 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.481445, 16.846605 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.756348, 14.838612 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.446622 ], [ 95.361328, 15.728814 ], [ 94.790039, 15.813396 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.701172, 26.745610 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 99.975586, 21.759500 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.481445, 16.846605 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.756348, 14.838612 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.446622 ], [ 95.361328, 15.728814 ], [ 94.790039, 15.813396 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.677848 ], [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ], [ 102.744141, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.150879, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.239746, 8.993600 ], [ 98.547363, 9.947209 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.206543, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 98.481445, 16.846605 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.239746, 8.993600 ], [ 98.547363, 9.947209 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.206543, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 98.481445, 16.846605 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.951320 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.497092 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 127.770996, 39.061849 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.980469, 37.961523 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.951320 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.497092 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 127.770996, 39.061849 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.980469, 37.961523 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 127.770996, 38.307181 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 127.770996, 38.307181 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ] ] ], [ [ [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ] ] ], [ [ [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ] ] ], [ [ [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ] ] ], [ [ [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ] ] ], [ [ [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 114.587402, 4.915833 ], [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 114.587402, 4.915833 ], [ 115.444336, 5.462896 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ] ] ], [ [ [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ] ] ], [ [ [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.657715, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.657715, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ] ] ], [ [ [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ] ] ], [ [ [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ] ] ], [ [ [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.816895, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ] ] ], [ [ [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ] ] ], [ [ [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.816895, 0.175781 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ], [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.353027, 66.337505 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ] ] ], [ [ [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.871582, 68.277521 ], [ -75.992432, 68.277521 ], [ -75.904541, 68.289716 ], [ -75.871582, 68.277521 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.277521 ], [ -86.022949, 68.277521 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.257812, 68.277521 ], [ -140.998535, 68.277521 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.820557, 68.277521 ], [ -108.731689, 68.277521 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.306152, 68.277521 ], [ -98.547363, 68.277521 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.277521 ], [ -94.603271, 68.277521 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.203369, 68.277521 ], [ -73.959961, 68.277521 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.904541, 68.289716 ], [ -75.871582, 68.277521 ], [ -75.992432, 68.277521 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.257812, 68.277521 ], [ -140.998535, 68.277521 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.203369, 68.277521 ], [ -73.959961, 68.277521 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -105.347900, 68.564399 ], [ -104.820557, 68.277521 ], [ -108.731689, 68.277521 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ] ] ], [ [ [ -96.306152, 68.277521 ], [ -98.547363, 68.277521 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.306152, 68.277521 ] ] ], [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.277521 ], [ -94.603271, 68.277521 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.277521 ], [ -86.022949, 68.277521 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.277521 ], [ -104.820557, 68.277521 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.277521 ], [ -96.306152, 68.277521 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.277521 ], [ -88.165283, 68.277521 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.277521 ], [ -81.771240, 68.277521 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 68.277521 ], [ -114.257812, 68.277521 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.959961, 68.277521 ], [ -67.203369, 68.277521 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.992432, 68.277521 ], [ -75.871582, 68.277521 ], [ -75.124512, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.771240, 68.277521 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 68.277521 ], [ -114.257812, 68.277521 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.277521 ], [ -104.820557, 68.277521 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.277521 ], [ -96.306152, 68.277521 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.277521 ], [ -88.165283, 68.277521 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.277521 ], [ -81.771240, 68.277521 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ], [ [ [ -67.203369, 68.277521 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.959961, 68.277521 ], [ -67.203369, 68.277521 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.871582, 68.277521 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.992432, 68.277521 ], [ -75.871582, 68.277521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.998535, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.998535, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ] ] ], [ [ [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ] ] ], [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ], [ [ [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.693359, 15.961329 ], [ -85.451660, 15.887376 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.528809, 15.866242 ], [ -84.375000, 15.845105 ], [ -84.067383, 15.654776 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.704346, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.528320, 13.784737 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -88.846436, 14.147229 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ], [ -85.693359, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.011963, 16.014136 ], [ -85.693359, 15.961329 ], [ -85.451660, 15.887376 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.528809, 15.866242 ], [ -84.375000, 15.845105 ], [ -84.067383, 15.654776 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.704346, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.528320, 13.784737 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -88.846436, 14.147229 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.871582, 68.277521 ], [ -75.992432, 68.277521 ], [ -75.904541, 68.289716 ], [ -75.871582, 68.277521 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.277521 ], [ -86.022949, 68.277521 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.257812, 68.277521 ], [ -140.987549, 68.277521 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.820557, 68.277521 ], [ -108.731689, 68.277521 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.306152, 68.277521 ], [ -98.547363, 68.277521 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.277521 ], [ -94.603271, 68.277521 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.203369, 68.277521 ], [ -73.959961, 68.277521 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.904541, 68.289716 ], [ -75.871582, 68.277521 ], [ -75.992432, 68.277521 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.257812, 68.277521 ], [ -140.987549, 68.277521 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.203369, 68.277521 ], [ -73.959961, 68.277521 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -105.347900, 68.564399 ], [ -104.820557, 68.277521 ], [ -108.731689, 68.277521 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ] ] ], [ [ [ -96.306152, 68.277521 ], [ -98.547363, 68.277521 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.306152, 68.277521 ] ] ], [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.277521 ], [ -94.603271, 68.277521 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.277521 ], [ -86.022949, 68.277521 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.277521 ], [ -104.820557, 68.277521 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.277521 ], [ -96.306152, 68.277521 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.277521 ], [ -88.165283, 68.277521 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.277521 ], [ -81.771240, 68.277521 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.277521 ], [ -114.257812, 68.277521 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.959961, 68.277521 ], [ -67.203369, 68.277521 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.992432, 68.277521 ], [ -75.871582, 68.277521 ], [ -75.124512, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.771240, 68.277521 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.277521 ], [ -114.257812, 68.277521 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.277521 ], [ -104.820557, 68.277521 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.277521 ], [ -96.306152, 68.277521 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.277521 ], [ -88.165283, 68.277521 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.277521 ], [ -81.771240, 68.277521 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ], [ [ [ -67.203369, 68.277521 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.959961, 68.277521 ], [ -67.203369, 68.277521 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.871582, 68.277521 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.992432, 68.277521 ], [ -75.871582, 68.277521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ] ] ], [ [ [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ] ] ], [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ], [ [ [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -105.347900, 68.564399 ], [ -104.831543, 68.281586 ], [ -108.742676, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ] ] ], [ [ [ -96.317139, 68.281586 ], [ -98.547363, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.317139, 68.281586 ] ] ], [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.603271, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.246826, 68.281586 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.742676, 68.281586 ], [ -104.831543, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.547363, 68.281586 ], [ -96.317139, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.603271, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ], [ [ [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ] ] ], [ [ [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.742432, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.742432, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.437256, -25.155229 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.437256, -25.155229 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ] ] ], [ [ [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.742432, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.742432, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -114.730225, 32.722599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -89.154053, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ] ] ], [ [ [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ] ] ], [ [ [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ] ] ], [ [ [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ] ] ], [ [ [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.066162, 14.349548 ], [ -88.846436, 14.147229 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.725830, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.693359, 15.961329 ], [ -85.451660, 15.887376 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.528809, 15.866242 ], [ -84.375000, 15.845105 ], [ -84.067383, 15.654776 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.704346, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.528320, 13.784737 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -88.846436, 14.147229 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ], [ -85.693359, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.011963, 16.014136 ], [ -85.693359, 15.961329 ], [ -85.451660, 15.887376 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.528809, 15.866242 ], [ -84.375000, 15.845105 ], [ -84.067383, 15.654776 ], [ -83.781738, 15.432501 ], [ -83.419189, 15.273587 ], [ -83.155518, 14.997852 ], [ -83.496094, 15.019075 ], [ -83.638916, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.827991 ], [ -84.935303, 14.796128 ], [ -85.056152, 14.551684 ], [ -85.155029, 14.562318 ], [ -85.166016, 14.360191 ], [ -85.704346, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.319580, 13.774066 ], [ -86.528320, 13.784737 ], [ -86.759033, 13.763396 ], [ -86.737061, 13.272026 ], [ -86.890869, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.993853 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.725830, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.549805, 13.987376 ], [ -88.846436, 14.147229 ], [ -89.066162, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.154053, 14.679254 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.231201, 15.728814 ], [ -88.121338, 15.697086 ], [ -87.912598, 15.866242 ], [ -87.615967, 15.887376 ], [ -87.528076, 15.802825 ], [ -87.374268, 15.855674 ], [ -86.912842, 15.760536 ], [ -86.451416, 15.792254 ], [ -86.121826, 15.897942 ], [ -86.011963, 16.014136 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.628662, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.288330, 22.400872 ], [ -78.354492, 22.512557 ], [ -78.002930, 22.278931 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.293113 ], [ -74.300537, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.640869, 19.880392 ], [ -76.333008, 19.963023 ], [ -77.761230, 19.859727 ], [ -77.091064, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.145752, 20.745840 ], [ -78.486328, 21.033237 ], [ -78.728027, 21.606365 ], [ -79.288330, 21.565502 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.044913 ], [ -81.826172, 22.197577 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.644432 ], [ -82.781982, 22.695120 ], [ -83.496094, 22.177232 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.810508 ], [ -84.979248, 21.902278 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.988738 ], [ -82.518311, 23.079732 ], [ -82.276611, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.276611, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.628662, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.288330, 22.400872 ], [ -78.354492, 22.512557 ], [ -78.002930, 22.278931 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.293113 ], [ -74.300537, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.640869, 19.880392 ], [ -76.333008, 19.963023 ], [ -77.761230, 19.859727 ], [ -77.091064, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.145752, 20.745840 ], [ -78.486328, 21.033237 ], [ -78.728027, 21.606365 ], [ -79.288330, 21.565502 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.044913 ], [ -81.826172, 22.197577 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.644432 ], [ -82.781982, 22.695120 ], [ -83.496094, 22.177232 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.810508 ], [ -84.979248, 21.902278 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.988738 ], [ -82.518311, 23.079732 ], [ -82.276611, 23.190863 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -83.023682, 10.001310 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -83.023682, 10.001310 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.574463, 18.500447 ], [ -76.904297, 18.406655 ], [ -76.365967, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.772217, 17.863747 ], [ -78.343506, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.531700 ], [ -77.574463, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.531700 ], [ -77.574463, 18.500447 ], [ -76.904297, 18.406655 ], [ -76.365967, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.772217, 17.863747 ], [ -78.343506, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.531700 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.224609, 19.632240 ], [ -69.960938, 19.652934 ], [ -69.774170, 19.300775 ], [ -69.224854, 19.321511 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.989415 ], [ -68.323975, 18.615013 ], [ -68.697510, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.631348, 18.385805 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.675049, 18.427502 ], [ -71.004639, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.663818, 17.759150 ], [ -71.718750, 18.051867 ], [ -71.696777, 18.323240 ], [ -71.949463, 18.625425 ], [ -71.707764, 18.791918 ], [ -71.630859, 19.176301 ], [ -71.718750, 19.715000 ], [ -71.597900, 19.890723 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.597900, 19.890723 ], [ -70.806885, 19.880392 ], [ -70.224609, 19.632240 ], [ -69.960938, 19.652934 ], [ -69.774170, 19.300775 ], [ -69.224854, 19.321511 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.989415 ], [ -68.323975, 18.615013 ], [ -68.697510, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.631348, 18.385805 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.675049, 18.427502 ], [ -71.004639, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.663818, 17.759150 ], [ -71.718750, 18.051867 ], [ -71.696777, 18.323240 ], [ -71.949463, 18.625425 ], [ -71.707764, 18.791918 ], [ -71.630859, 19.176301 ], [ -71.718750, 19.715000 ], [ -71.597900, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 8.004837 ], [ -58.491211, 7.351571 ], [ -58.458252, 6.839170 ], [ -58.084717, 6.817353 ], [ -57.150879, 5.976680 ], [ -57.315674, 5.080001 ], [ -57.919922, 4.817312 ], [ -57.864990, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.778451 ], [ -56.546631, 1.900286 ], [ -56.788330, 1.867345 ], [ -57.337646, 1.955187 ], [ -57.667236, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.436279, 1.472006 ], [ -58.546143, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.985352, 2.756504 ], [ -59.820557, 3.612107 ], [ -59.545898, 3.962901 ], [ -59.776611, 4.434044 ], [ -60.117188, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.255068 ], [ -60.743408, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.303955, 7.046379 ], [ -60.644531, 7.416942 ], [ -60.556641, 7.787194 ], [ -59.765625, 8.374562 ], [ -59.106445, 8.004837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.374562 ], [ -59.106445, 8.004837 ], [ -58.491211, 7.351571 ], [ -58.458252, 6.839170 ], [ -58.084717, 6.817353 ], [ -57.150879, 5.976680 ], [ -57.315674, 5.080001 ], [ -57.919922, 4.817312 ], [ -57.864990, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.778451 ], [ -56.546631, 1.900286 ], [ -56.788330, 1.867345 ], [ -57.337646, 1.955187 ], [ -57.667236, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.436279, 1.472006 ], [ -58.546143, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.985352, 2.756504 ], [ -59.820557, 3.612107 ], [ -59.545898, 3.962901 ], [ -59.776611, 4.434044 ], [ -60.117188, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.255068 ], [ -60.743408, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.303955, 7.046379 ], [ -60.644531, 7.416942 ], [ -60.556641, 7.787194 ], [ -59.765625, 8.374562 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ], [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.871582, 68.277521 ], [ -75.992432, 68.277521 ], [ -75.904541, 68.289716 ], [ -75.871582, 68.277521 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.277521 ], [ -86.022949, 68.277521 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.277521 ], [ -140.987549, 68.277521 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.809570, 68.277521 ], [ -108.720703, 68.277521 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.295166, 68.277521 ], [ -98.536377, 68.277521 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.277521 ], [ -94.592285, 68.277521 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.203369, 68.277521 ], [ -73.959961, 68.277521 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.904541, 68.289716 ], [ -75.871582, 68.277521 ], [ -75.992432, 68.277521 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.246826, 68.277521 ], [ -140.987549, 68.277521 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.203369, 68.277521 ], [ -73.959961, 68.277521 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -105.347900, 68.564399 ], [ -104.809570, 68.277521 ], [ -108.720703, 68.277521 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ] ] ], [ [ [ -96.295166, 68.277521 ], [ -98.536377, 68.277521 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.295166, 68.277521 ] ] ], [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.277521 ], [ -94.592285, 68.277521 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.277521 ], [ -86.022949, 68.277521 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.720703, 68.277521 ], [ -104.809570, 68.277521 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.536377, 68.277521 ], [ -96.295166, 68.277521 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.592285, 68.277521 ], [ -88.165283, 68.277521 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.277521 ], [ -81.771240, 68.277521 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.277521 ], [ -114.246826, 68.277521 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.959961, 68.277521 ], [ -67.203369, 68.277521 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.992432, 68.277521 ], [ -75.871582, 68.277521 ], [ -75.124512, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.771240, 68.277521 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.277521 ], [ -114.246826, 68.277521 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.720703, 68.277521 ], [ -104.809570, 68.277521 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.536377, 68.277521 ], [ -96.295166, 68.277521 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.592285, 68.277521 ], [ -88.165283, 68.277521 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.277521 ], [ -81.771240, 68.277521 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ], [ [ [ -67.203369, 68.277521 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.959961, 68.277521 ], [ -67.203369, 68.277521 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.871582, 68.277521 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.992432, 68.277521 ], [ -75.871582, 68.277521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.938415 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.243652, 26.735799 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.235840, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.820557, 68.281586 ], [ -108.731689, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.306152, 68.281586 ], [ -98.536377, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.592285, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.235840, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -105.347900, 68.564399 ], [ -104.820557, 68.281586 ], [ -108.731689, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ] ] ], [ [ [ -96.306152, 68.281586 ], [ -98.536377, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.306152, 68.281586 ] ] ], [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.592285, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.281586 ], [ -104.820557, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.536377, 68.281586 ], [ -96.306152, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.592285, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.235840, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.235840, 68.281586 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.281586 ], [ -104.820557, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.536377, 68.281586 ], [ -96.306152, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.592285, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ], [ [ [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ] ] ], [ [ [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.235840, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.820557, 68.281586 ], [ -108.731689, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ] ] ], [ [ [ -97.679443, 68.580453 ], [ -96.306152, 68.281586 ], [ -98.536377, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ] ] ], [ [ [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.592285, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.904541, 68.289716 ], [ -75.882568, 68.281586 ], [ -75.959473, 68.281586 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -114.235840, 68.281586 ], [ -140.987549, 68.281586 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -67.225342, 68.281586 ], [ -73.970947, 68.281586 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -105.347900, 68.564399 ], [ -104.820557, 68.281586 ], [ -108.731689, 68.281586 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ] ] ], [ [ [ -96.306152, 68.281586 ], [ -98.536377, 68.281586 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.306152, 68.281586 ] ] ], [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.281586 ], [ -94.592285, 68.281586 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.771240, 68.281586 ], [ -86.022949, 68.281586 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.281586 ], [ -104.820557, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.536377, 68.281586 ], [ -96.306152, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.592285, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.235840, 68.281586 ], [ -115.312500, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.771240, 68.281586 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.987549, 68.281586 ], [ -114.235840, 68.281586 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.731689, 68.281586 ], [ -104.820557, 68.281586 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.536377, 68.281586 ], [ -96.306152, 68.281586 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.592285, 68.281586 ], [ -88.165283, 68.281586 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -86.022949, 68.281586 ], [ -81.771240, 68.281586 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ], [ [ [ -67.225342, 68.281586 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -73.970947, 68.281586 ], [ -67.225342, 68.281586 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.882568, 68.281586 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.959473, 68.281586 ], [ -75.882568, 68.281586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.664069 ], [ -8.690186, 27.401032 ], [ -8.690186, 25.888879 ], [ -11.975098, 25.938287 ], [ -11.942139, 23.382598 ], [ -12.875977, 23.291811 ], [ -13.128662, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.853027, 21.340548 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.227295, 22.319589 ], [ -13.897705, 23.694835 ], [ -12.502441, 24.776760 ], [ -12.041016, 26.037042 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.892679 ], [ -10.557861, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.744873, 26.863281 ], [ -9.415283, 27.098254 ], [ -8.800049, 27.127591 ], [ -8.822021, 27.664069 ], [ -8.668213, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.635310 ], [ -14.051514, 13.795406 ], [ -13.853760, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.150146, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.699463, 13.272026 ], [ -15.941162, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.633545, 13.624633 ], [ -15.402832, 13.870080 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.635310 ], [ -14.051514, 13.795406 ], [ -13.853760, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.150146, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.699463, 13.272026 ], [ -15.941162, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.633545, 13.624633 ], [ -15.402832, 13.870080 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.205811, 12.468760 ], [ -11.667480, 12.393659 ], [ -11.524658, 12.447305 ], [ -11.458740, 12.082296 ], [ -11.304932, 12.082296 ], [ -11.041260, 12.221918 ], [ -10.876465, 12.178965 ], [ -10.601807, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.898682, 12.060809 ], [ -9.569092, 12.200442 ], [ -9.338379, 12.340002 ], [ -9.129639, 12.318536 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.382568, 11.393879 ], [ -8.591309, 11.146066 ], [ -8.624268, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.800933 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.239746, 10.131117 ], [ -8.316650, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.461506 ], [ -8.305664, 8.320212 ], [ -8.228760, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.448486, 7.689217 ], [ -8.723145, 7.721878 ], [ -8.931885, 7.318882 ], [ -9.217529, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.548430 ], [ -10.019531, 8.428904 ], [ -10.239258, 8.407168 ], [ -10.513916, 8.352823 ], [ -10.502930, 8.722218 ], [ -10.656738, 8.982749 ], [ -10.623779, 9.275622 ], [ -10.843506, 9.698228 ], [ -11.118164, 10.055403 ], [ -11.920166, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.722168, 9.351513 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.503244 ], [ -14.084473, 9.893099 ], [ -14.337158, 10.022948 ], [ -14.589844, 10.217625 ], [ -14.699707, 10.660608 ], [ -14.842529, 10.887254 ], [ -15.139160, 11.049038 ], [ -14.688721, 11.533852 ], [ -14.392090, 11.512322 ], [ -14.128418, 11.684514 ], [ -13.908691, 11.684514 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.254128 ], [ -13.710938, 12.586732 ], [ -13.227539, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.586732 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.205811, 12.468760 ], [ -11.667480, 12.393659 ], [ -11.524658, 12.447305 ], [ -11.458740, 12.082296 ], [ -11.304932, 12.082296 ], [ -11.041260, 12.221918 ], [ -10.876465, 12.178965 ], [ -10.601807, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.898682, 12.060809 ], [ -9.569092, 12.200442 ], [ -9.338379, 12.340002 ], [ -9.129639, 12.318536 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.382568, 11.393879 ], [ -8.591309, 11.146066 ], [ -8.624268, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.800933 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.239746, 10.131117 ], [ -8.316650, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.461506 ], [ -8.305664, 8.320212 ], [ -8.228760, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.448486, 7.689217 ], [ -8.723145, 7.721878 ], [ -8.931885, 7.318882 ], [ -9.217529, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.548430 ], [ -10.019531, 8.428904 ], [ -10.239258, 8.407168 ], [ -10.513916, 8.352823 ], [ -10.502930, 8.722218 ], [ -10.656738, 8.982749 ], [ -10.623779, 9.275622 ], [ -10.843506, 9.698228 ], [ -11.118164, 10.055403 ], [ -11.920166, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.722168, 9.351513 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.503244 ], [ -14.084473, 9.893099 ], [ -14.337158, 10.022948 ], [ -14.589844, 10.217625 ], [ -14.699707, 10.660608 ], [ -14.842529, 10.887254 ], [ -15.139160, 11.049038 ], [ -14.688721, 11.533852 ], [ -14.392090, 11.512322 ], [ -14.128418, 11.684514 ], [ -13.908691, 11.684514 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.254128 ], [ -13.710938, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.560059, 22.796439 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ], [ -1.560059, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ -1.560059, 22.796439 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.217529, 7.318882 ], [ -8.931885, 7.318882 ], [ -8.723145, 7.721878 ], [ -8.448486, 7.689217 ], [ -8.492432, 7.406048 ], [ -8.393555, 6.915521 ], [ -8.613281, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.580566, 5.714380 ], [ -7.547607, 5.320705 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.839207 ], [ -9.920654, 5.594118 ], [ -10.766602, 6.151478 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.111795 ], [ -11.151123, 7.406048 ], [ -10.700684, 7.939556 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.548430 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.548430 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.217529, 7.318882 ], [ -8.931885, 7.318882 ], [ -8.723145, 7.721878 ], [ -8.448486, 7.689217 ], [ -8.492432, 7.406048 ], [ -8.393555, 6.915521 ], [ -8.613281, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.580566, 5.714380 ], [ -7.547607, 5.320705 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.839207 ], [ -9.920654, 5.594118 ], [ -10.766602, 6.151478 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.111795 ], [ -11.151123, 7.406048 ], [ -10.700684, 7.939556 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.548430 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ -0.054932, 10.714587 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.021973, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.021973, 11.027472 ], [ -0.054932, 10.714587 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ -1.560059, 22.796439 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ -1.560059, 22.796439 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.714587 ], [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.714587 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.171875, 66.530768 ], [ -14.512939, 66.456275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ], [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.272705, 42.285437 ], [ -8.020020, 41.795888 ], [ -7.426758, 41.795888 ], [ -7.261963, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.041748, 41.885921 ], [ -8.679199, 42.138968 ], [ -8.272705, 42.285437 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.171875, 66.530768 ], [ -14.512939, 66.456275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.171875, 66.530768 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ] ] ], [ [ [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ] ], [ [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ] ], [ [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.827393, -25.839449 ], [ 31.981201, -26.283565 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ], [ 31.981201, -26.283565 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.970947, -28.950476 ], [ 29.322510, -29.248063 ], [ 29.014893, -29.735762 ], [ 28.839111, -30.069094 ], [ 28.289795, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.740479, -30.637912 ], [ 26.993408, -29.869229 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.844674 ], [ 28.531494, -28.642389 ], [ 28.970947, -28.950476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.531494, -28.642389 ], [ 28.970947, -28.950476 ], [ 29.322510, -29.248063 ], [ 29.014893, -29.735762 ], [ 28.839111, -30.069094 ], [ 28.289795, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.740479, -30.637912 ], [ 26.993408, -29.869229 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.844674 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ], [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.560059, 22.796439 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ], [ -1.560059, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ -1.560059, 22.796439 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.439209, 11.555380 ], [ 1.241455, 11.113727 ], [ 0.889893, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ -0.054932, 10.714587 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.021973, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.021973, 11.027472 ], [ -0.054932, 10.714587 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.516357, 5.353521 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.260697 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.222364 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.016689 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ] ] ], [ [ [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 9.206543, 41.211722 ], [ 9.799805, 40.505446 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.346436, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.346436, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.503174, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.173340, 36.730080 ], [ 11.019287, 37.099003 ], [ 11.096191, 36.905980 ], [ 10.590820, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.931396, 35.701917 ], [ 10.799561, 34.840859 ], [ 10.140381, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.480713, 33.137551 ], [ 11.425781, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.942627, 31.381779 ], [ 10.052490, 30.968189 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.315988 ], [ 9.052734, 32.110496 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.602539, 33.348885 ], [ 7.514648, 34.098159 ], [ 8.140869, 34.660322 ], [ 8.371582, 35.487511 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.503174, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ -1.560059, 22.796439 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ -1.560059, 22.796439 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.714587 ], [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.714587 ], [ 0.021973, 11.027472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.243392 ], [ 3.603516, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.790283, 10.736175 ], [ 3.592529, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.145486 ], [ 2.713623, 8.515836 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.856689, 6.151478 ], [ 1.614990, 6.839170 ], [ 1.658936, 9.134639 ], [ 1.461182, 9.340672 ], [ 1.417236, 9.828154 ], [ 0.769043, 10.477009 ], [ 0.889893, 11.005904 ], [ 1.241455, 11.113727 ], [ 1.439209, 11.555380 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.482910, 12.243392 ], [ 2.845459, 12.243392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.065612 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ], [ 23.829346, 19.580493 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.853271, 23.412847 ], [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.700105 ], [ 15.270996, 7.427837 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.865360 ], [ 14.886475, 12.221918 ], [ 14.952393, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.457764, 9.990491 ], [ 14.908447, 10.001310 ], [ 14.622803, 9.925566 ], [ 14.161377, 10.022948 ], [ 13.952637, 9.557417 ], [ 14.534912, 8.971897 ], [ 14.974365, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.700105 ], [ 15.270996, 7.427837 ], [ 14.765625, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.036227 ], [ 14.468994, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.853271, 3.019841 ], [ 15.897217, 2.558963 ], [ 16.007080, 2.273573 ], [ 15.930176, 1.735574 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.273573 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.744385, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.788818, 3.074695 ], [ 9.404297, 3.743671 ], [ 8.942871, 3.908099 ], [ 8.734131, 4.357366 ], [ 8.481445, 4.499762 ], [ 8.492432, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.457234 ], [ 10.107422, 7.046379 ], [ 10.491943, 7.057282 ], [ 11.052246, 6.653695 ], [ 11.744385, 6.991859 ], [ 11.832275, 7.406048 ], [ 12.062988, 7.808963 ], [ 12.216797, 8.309341 ], [ 12.744141, 8.722218 ], [ 12.952881, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.093039 ], [ 14.172363, 12.490214 ], [ 14.205322, 12.811801 ], [ 14.490967, 12.865360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.543701, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.389893, 9.275622 ], [ 23.455811, 8.961045 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.830731 ], [ 25.114746, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.954827 ], [ 27.213135, 5.561315 ], [ 27.366943, 5.244128 ], [ 27.037354, 5.134715 ], [ 26.400146, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.125732, 4.937724 ], [ 24.796143, 4.904887 ], [ 24.400635, 5.112830 ], [ 23.291016, 4.620229 ], [ 22.840576, 4.718778 ], [ 22.697754, 4.642130 ], [ 22.401123, 4.039618 ], [ 21.654053, 4.225900 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.718778 ], [ 18.533936, 4.203986 ], [ 18.446045, 3.513421 ], [ 17.808838, 3.568248 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.206333 ], [ 16.007080, 2.273573 ], [ 15.897217, 2.558963 ], [ 15.853271, 3.019841 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.853293 ], [ 14.941406, 4.214943 ], [ 14.468994, 4.740675 ], [ 14.556885, 5.036227 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.765625, 6.413566 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.504089 ], [ 16.281738, 7.754537 ], [ 16.446533, 7.743651 ], [ 16.699219, 7.514981 ], [ 17.962646, 7.896030 ], [ 18.380127, 8.287599 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.993600 ], [ 19.083252, 9.080400 ], [ 20.050049, 9.015302 ], [ 20.994873, 9.481572 ], [ 21.719971, 10.574222 ], [ 22.225342, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.543701, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.389893, 9.275622 ], [ 23.455811, 8.961045 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.830731 ], [ 25.114746, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.954827 ], [ 27.213135, 5.561315 ], [ 27.366943, 5.244128 ], [ 27.037354, 5.134715 ], [ 26.400146, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.125732, 4.937724 ], [ 24.796143, 4.904887 ], [ 24.400635, 5.112830 ], [ 23.291016, 4.620229 ], [ 22.840576, 4.718778 ], [ 22.697754, 4.642130 ], [ 22.401123, 4.039618 ], [ 21.654053, 4.225900 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.718778 ], [ 18.533936, 4.203986 ], [ 18.446045, 3.513421 ], [ 17.808838, 3.568248 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.206333 ], [ 16.007080, 2.273573 ], [ 15.897217, 2.558963 ], [ 15.853271, 3.019841 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.853293 ], [ 14.941406, 4.214943 ], [ 14.468994, 4.740675 ], [ 14.556885, 5.036227 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.765625, 6.413566 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.504089 ], [ 16.281738, 7.754537 ], [ 16.446533, 7.743651 ], [ 16.699219, 7.514981 ], [ 17.962646, 7.896030 ], [ 18.380127, 8.287599 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.993600 ], [ 19.083252, 9.080400 ], [ 20.050049, 9.015302 ], [ 20.994873, 9.481572 ], [ 21.719971, 10.574222 ], [ 22.225342, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.597900, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ] ] ], [ [ [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.673096, 35.021000 ], [ 33.519287, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.892822, 35.254591 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.673096, 35.021000 ], [ 33.519287, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.376465, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.092945 ], [ 32.728271, 35.146863 ], [ 32.794189, 35.146863 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.380093 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.519287, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.519287, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.342285, 40.955011 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.342285, 40.955011 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.374512, 35.630512 ], [ 41.000977, 34.425036 ], [ 38.781738, 33.385586 ], [ 36.826172, 32.314991 ], [ 35.694580, 32.722599 ], [ 35.826416, 32.870360 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.207259 ], [ 36.441650, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.415915 ], [ 36.145020, 35.826721 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.056885, 36.624345 ], [ 38.166504, 36.905980 ], [ 38.693848, 36.721274 ], [ 39.517822, 36.721274 ], [ 40.671387, 37.099003 ], [ 41.209717, 37.081476 ], [ 42.341309, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.966309, 29.983487 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.966309, 29.983487 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 32.870360 ], [ 35.694580, 32.722599 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.826416, 32.870360 ], [ 35.694580, 32.722599 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.178223, 32.537552 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.625321 ], [ 34.925537, 31.353637 ], [ 35.386963, 31.494262 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.506549 ], [ 34.255371, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.947510, 32.833443 ], [ 35.090332, 33.082337 ], [ 35.452881, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.386963, 31.494262 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.625321 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.178223, 32.537552 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.537552 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.386963, 31.494262 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.625321 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.178223, 32.537552 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.846605 ], [ 39.265137, 15.929638 ], [ 39.803467, 15.443091 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.769775, 12.458033 ], [ 42.341309, 12.543840 ], [ 42.000732, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.125922 ], [ 40.023193, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.743011 ], [ 38.507080, 14.509144 ], [ 37.902832, 14.966013 ], [ 37.584229, 14.221789 ], [ 36.419678, 14.424040 ], [ 36.320801, 14.827991 ], [ 36.749268, 16.299051 ], [ 36.848145, 16.962233 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.846605 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.846605 ], [ 39.265137, 15.929638 ], [ 39.803467, 15.443091 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.769775, 12.458033 ], [ 42.341309, 12.543840 ], [ 42.000732, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.125922 ], [ 40.023193, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.743011 ], [ 38.507080, 14.509144 ], [ 37.902832, 14.966013 ], [ 37.584229, 14.221789 ], [ 36.419678, 14.424040 ], [ 36.320801, 14.827991 ], [ 36.749268, 16.299051 ], [ 36.848145, 16.962233 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.737061, 11.361568 ], [ 41.660156, 11.641476 ], [ 41.989746, 12.103781 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.737061, 11.361568 ], [ 41.660156, 11.641476 ], [ 41.989746, 12.103781 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.945068, 39.342794 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ], [ 53.107910, 16.657244 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.010190 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ], [ 48.933105, 9.459899 ], [ 48.482666, 8.841651 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.923584, 10.022948 ], [ 42.550049, 10.574222 ], [ 42.769775, 10.930405 ], [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ], [ 48.933105, 9.459899 ], [ 48.482666, 8.841651 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.923584, 10.022948 ], [ 42.550049, 10.574222 ], [ 42.769775, 10.930405 ], [ 43.143311, 11.469258 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.568248 ], [ 18.446045, 3.513421 ], [ 18.391113, 2.910125 ], [ 18.083496, 2.372369 ], [ 17.896729, 1.746556 ], [ 17.764893, 0.856902 ], [ 17.819824, 0.296630 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.018555, 1.406109 ], [ 13.282471, 1.318243 ], [ 12.996826, 1.834403 ], [ 13.073730, 2.273573 ], [ 14.337158, 2.229662 ], [ 15.930176, 1.735574 ], [ 16.007080, 2.273573 ], [ 16.534424, 3.206333 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ], [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ -0.285645, 39.317300 ], [ 0.109863, 38.745515 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ] ] ], [ [ [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ] ] ], [ [ [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.790039, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.380502 ], [ 3.120117, 50.785102 ], [ 2.647705, 50.798991 ], [ 2.504883, 51.151786 ], [ 3.306885, 51.351201 ], [ 4.042969, 51.268789 ], [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.790039, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.380502 ], [ 3.120117, 50.785102 ], [ 2.647705, 50.798991 ], [ 2.504883, 51.151786 ], [ 3.306885, 51.351201 ], [ 4.042969, 51.268789 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.845164 ], [ 16.556396, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.314941, 45.736860 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.403076, 45.467836 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.019853 ], [ 13.798828, 46.513516 ], [ 14.622803, 46.437857 ], [ 15.128174, 46.664517 ], [ 16.007080, 46.687131 ], [ 16.193848, 46.852678 ], [ 16.369629, 46.845164 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.852678 ], [ 16.369629, 46.845164 ], [ 16.556396, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.314941, 45.736860 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.403076, 45.467836 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.019853 ], [ 13.798828, 46.513516 ], [ 14.622803, 46.437857 ], [ 15.128174, 46.664517 ], [ 16.007080, 46.687131 ], [ 16.193848, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ] ] ], [ [ [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ] ] ], [ [ [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 9.206543, 41.211722 ], [ 9.799805, 40.505446 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.122476 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.019853 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.579346, 44.095476 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.959490 ], [ 15.919189, 41.967659 ], [ 16.160889, 41.746726 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.095947, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.370987 ], [ 8.426514, 44.237328 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.699651 ], [ 7.547607, 44.134913 ], [ 6.998291, 44.260937 ], [ 6.745605, 45.034715 ], [ 7.086182, 45.336702 ], [ 6.800537, 45.713851 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.745361, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.173584, 46.445427 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.490829 ], [ 10.437012, 46.897739 ], [ 11.041260, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.122476 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.708740, 47.886881 ], [ 22.093506, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.588623, 46.172223 ], [ 18.819580, 45.912944 ], [ 18.446045, 45.759859 ], [ 17.622070, 45.958788 ], [ 16.875000, 46.384833 ], [ 16.556396, 46.505954 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.852678 ], [ 16.523438, 47.502359 ], [ 16.336670, 47.717154 ], [ 16.896973, 47.717154 ], [ 16.973877, 48.129434 ], [ 17.479248, 47.872144 ], [ 17.852783, 47.761484 ], [ 18.687744, 47.886881 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.654541, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.334343 ], [ 20.467529, 48.567520 ], [ 20.797119, 48.625647 ], [ 21.862793, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.708740, 47.886881 ], [ 22.093506, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.588623, 46.172223 ], [ 18.819580, 45.912944 ], [ 18.446045, 45.759859 ], [ 17.622070, 45.958788 ], [ 16.875000, 46.384833 ], [ 16.556396, 46.505954 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.852678 ], [ 16.523438, 47.502359 ], [ 16.336670, 47.717154 ], [ 16.896973, 47.717154 ], [ 16.973877, 48.129434 ], [ 17.479248, 47.872144 ], [ 17.852783, 47.761484 ], [ 18.687744, 47.886881 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.654541, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.334343 ], [ 20.467529, 48.567520 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.852783, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.995361, 44.863656 ], [ 19.357910, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.572432 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.205176 ], [ 18.555908, 42.650122 ], [ 17.666016, 43.028745 ], [ 17.292480, 43.452919 ], [ 16.907959, 43.667872 ], [ 16.446533, 44.048116 ], [ 16.237793, 44.355278 ], [ 15.743408, 44.824708 ], [ 15.952148, 45.236218 ], [ 16.314697, 45.011419 ], [ 16.534424, 45.213004 ], [ 16.995850, 45.236218 ], [ 17.852783, 45.073521 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.995850, 45.236218 ], [ 17.852783, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.995361, 44.863656 ], [ 19.357910, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.572432 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.205176 ], [ 18.555908, 42.650122 ], [ 17.666016, 43.028745 ], [ 17.292480, 43.452919 ], [ 16.907959, 43.667872 ], [ 16.446533, 44.048116 ], [ 16.237793, 44.355278 ], [ 15.743408, 44.824708 ], [ 15.952148, 45.236218 ], [ 16.314697, 45.011419 ], [ 16.534424, 45.213004 ], [ 16.995850, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.357138 ], [ 19.621582, 43.221190 ], [ 19.951172, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.061035, 42.593533 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.959490 ], [ 18.874512, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.698730, 43.205176 ], [ 19.028320, 43.436966 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.357138 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.357138 ], [ 19.621582, 43.221190 ], [ 19.951172, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.061035, 42.593533 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.959490 ], [ 18.874512, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.698730, 43.205176 ], [ 19.028320, 43.436966 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.588623, 46.172223 ], [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.950928, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.916206 ], [ 21.434326, 42.867912 ], [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.654053, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.346436, 42.212245 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ], [ 20.950928, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.950928, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.916206 ], [ 21.434326, 42.867912 ], [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.654053, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.346436, 42.212245 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.690511 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.346436, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.950439, 41.343825 ], [ 22.752686, 41.310824 ], [ 22.587891, 41.137296 ], [ 22.049561, 41.153842 ], [ 21.665039, 40.938415 ], [ 21.016846, 40.847060 ], [ 20.599365, 41.087632 ], [ 20.456543, 41.516804 ], [ 20.588379, 41.861379 ], [ 20.709229, 41.853196 ], [ 20.753174, 42.057450 ], [ 21.346436, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.379150, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.938477, 59.450660 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.305160 ], [ 27.410889, 58.728302 ], [ 27.707520, 57.792089 ], [ 27.279053, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.850598 ], [ 25.158691, 57.973157 ], [ 24.312744, 57.797944 ], [ 24.422607, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.192812 ], [ 24.598389, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.938477, 59.450660 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.450660 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.305160 ], [ 27.410889, 58.728302 ], [ 27.707520, 57.792089 ], [ 27.279053, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.850598 ], [ 25.158691, 57.973157 ], [ 24.312744, 57.797944 ], [ 24.422607, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.192812 ], [ 24.598389, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.223633, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.795105 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.750732, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.783447, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.398682, 53.618579 ], [ 32.684326, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.300049, 53.074228 ], [ 31.530762, 52.742943 ], [ 31.783447, 52.106505 ], [ 30.926514, 52.045734 ], [ 30.618896, 51.828988 ], [ 30.552979, 51.323747 ], [ 30.146484, 51.419764 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.433464 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.597548 ], [ 26.334229, 51.835778 ], [ 25.323486, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.521729, 51.583897 ], [ 23.499756, 52.025459 ], [ 23.192139, 52.489470 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.521729, 53.474970 ], [ 23.477783, 53.917281 ], [ 24.444580, 53.910810 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.851315 ], [ 26.586914, 55.172594 ], [ 26.488037, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.795105 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.750732, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.783447, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.398682, 53.618579 ], [ 32.684326, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.300049, 53.074228 ], [ 31.530762, 52.742943 ], [ 31.783447, 52.106505 ], [ 30.926514, 52.045734 ], [ 30.618896, 51.828988 ], [ 30.552979, 51.323747 ], [ 30.146484, 51.419764 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.433464 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.597548 ], [ 26.334229, 51.835778 ], [ 25.323486, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.521729, 51.583897 ], [ 23.499756, 52.025459 ], [ 23.192139, 52.489470 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.521729, 53.474970 ], [ 23.477783, 53.917281 ], [ 24.444580, 53.910810 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.851315 ], [ 26.586914, 55.172594 ], [ 26.488037, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.916504, 48.129434 ], [ 27.224121, 47.827908 ], [ 27.542725, 47.405785 ], [ 28.125000, 46.815099 ], [ 28.157959, 46.377254 ], [ 28.048096, 45.951150 ], [ 28.223877, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.597168, 45.298075 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.553467, 43.707594 ], [ 27.960205, 43.818675 ], [ 27.235107, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.093018, 43.747289 ], [ 23.323975, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.467041, 44.410240 ], [ 22.697754, 44.582643 ], [ 22.456055, 44.707706 ], [ 22.137451, 44.480830 ], [ 21.555176, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.421588 ], [ 20.753174, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.093506, 47.672786 ], [ 22.708740, 47.886881 ], [ 23.137207, 48.100095 ], [ 23.752441, 47.989922 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.938721, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ], [ 26.916504, 48.129434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.129434 ], [ 27.224121, 47.827908 ], [ 27.542725, 47.405785 ], [ 28.125000, 46.815099 ], [ 28.157959, 46.377254 ], [ 28.048096, 45.951150 ], [ 28.223877, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.597168, 45.298075 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.553467, 43.707594 ], [ 27.960205, 43.818675 ], [ 27.235107, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.093018, 43.747289 ], [ 23.323975, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.467041, 44.410240 ], [ 22.697754, 44.582643 ], [ 22.456055, 44.707706 ], [ 22.137451, 44.480830 ], [ 21.555176, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.421588 ], [ 20.753174, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.093506, 47.672786 ], [ 22.708740, 47.886881 ], [ 23.137207, 48.100095 ], [ 23.752441, 47.989922 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.938721, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.663330, 48.122101 ], [ 29.113770, 47.850031 ], [ 29.047852, 47.517201 ], [ 29.410400, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.827881, 46.528635 ], [ 30.014648, 46.430285 ], [ 29.750977, 46.354511 ], [ 29.168701, 46.384833 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.445427 ], [ 28.927002, 46.263443 ], [ 28.652344, 45.943511 ], [ 28.476562, 45.598666 ], [ 28.223877, 45.490946 ], [ 28.048096, 45.951150 ], [ 28.157959, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.542725, 47.405785 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.129434 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.520752, 48.472921 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.472921 ], [ 28.256836, 48.158757 ], [ 28.663330, 48.122101 ], [ 29.113770, 47.850031 ], [ 29.047852, 47.517201 ], [ 29.410400, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.827881, 46.528635 ], [ 30.014648, 46.430285 ], [ 29.750977, 46.354511 ], [ 29.168701, 46.384833 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.445427 ], [ 28.927002, 46.263443 ], [ 28.652344, 45.943511 ], [ 28.476562, 45.598666 ], [ 28.223877, 45.490946 ], [ 28.048096, 45.951150 ], [ 28.157959, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.542725, 47.405785 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.129434 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.520752, 48.472921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ] ] ], [ [ [ 26.597900, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ] ] ], [ [ [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.342285, 40.955011 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.342285, 40.955011 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.342285, 40.955011 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.342285, 40.955011 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.966309, 29.983487 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.065674, 35.684072 ], [ 46.142578, 35.101934 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 46.098633, 33.017876 ], [ 47.329102, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.458144 ], [ 48.559570, 29.935895 ], [ 47.966309, 29.983487 ], [ 47.296143, 30.059586 ], [ 46.560059, 29.104177 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.945068, 39.342794 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.966309, 29.983487 ], [ 48.175049, 29.535230 ], [ 48.087158, 29.315141 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.526622 ], [ 47.449951, 29.008140 ], [ 46.560059, 29.104177 ], [ 47.296143, 30.059586 ], [ 47.966309, 29.983487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.296143, 30.059586 ], [ 47.966309, 29.983487 ], [ 48.175049, 29.535230 ], [ 48.087158, 29.315141 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.526622 ], [ 47.449951, 29.008140 ], [ 46.560059, 29.104177 ], [ 47.296143, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.580811, 25.809782 ], [ 51.602783, 25.224820 ], [ 51.383057, 24.637031 ], [ 51.108398, 24.557116 ], [ 50.800781, 24.756808 ], [ 50.734863, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.580811, 25.809782 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.580811, 25.809782 ], [ 51.602783, 25.224820 ], [ 51.383057, 24.637031 ], [ 51.108398, 24.557116 ], [ 50.800781, 24.756808 ], [ 50.734863, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.613770, 24.016362 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.613770, 24.016362 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.063232, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ], [ 53.107910, 16.657244 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.010190 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ], [ 48.933105, 9.459899 ], [ 48.482666, 8.841651 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.923584, 10.022948 ], [ 42.550049, 10.574222 ], [ 42.769775, 10.930405 ], [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.469258 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.865676 ], [ 44.110107, 10.455402 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.636963, 10.822515 ], [ 47.515869, 11.135287 ], [ 48.021240, 11.199957 ], [ 48.372803, 11.383109 ], [ 48.944092, 11.415418 ], [ 48.933105, 9.459899 ], [ 48.482666, 8.841651 ], [ 47.779541, 8.004837 ], [ 46.944580, 8.004837 ], [ 43.670654, 9.188870 ], [ 43.286133, 9.546583 ], [ 42.923584, 10.022948 ], [ 42.550049, 10.574222 ], [ 42.769775, 10.930405 ], [ 43.143311, 11.469258 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.846924, 3.919060 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 86.022949, 26.637639 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.101074, 30.192618 ], [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 86.022949, 26.637639 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.101074, 30.192618 ], [ 81.518555, 30.429730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ] ] ], [ [ [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.304381 ], [ 90.725098, 28.071980 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.790771, 25.155229 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.136728 ], [ 91.461182, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.634460 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.330315 ], [ 92.296143, 21.483741 ], [ 92.362061, 20.673905 ], [ 92.076416, 21.197216 ], [ 92.021484, 21.708473 ], [ 91.834717, 22.187405 ], [ 91.406250, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.986816, 7.917793 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.986816, 7.917793 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.556396, 22.228090 ], [ 107.039795, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.710205, 20.704739 ], [ 105.875244, 19.756364 ], [ 105.655518, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.324951, 13.432367 ], [ 109.193115, 11.673755 ], [ 108.358154, 11.016689 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.150146, 8.602747 ], [ 104.787598, 9.243093 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.194092, 10.898042 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.576907 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.211139 ], [ 107.556152, 15.209988 ], [ 107.303467, 15.919074 ], [ 106.545410, 16.604610 ], [ 105.084229, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.183350, 19.632240 ], [ 104.820557, 19.890723 ], [ 104.425049, 20.766387 ], [ 103.194580, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.161865, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.502197, 22.705255 ], [ 104.468994, 22.826820 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.556396, 22.228090 ], [ 107.039795, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.710205, 20.704739 ], [ 105.875244, 19.756364 ], [ 105.655518, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.324951, 13.432367 ], [ 109.193115, 11.673755 ], [ 108.358154, 11.016689 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.150146, 8.602747 ], [ 104.787598, 9.243093 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.194092, 10.898042 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.576907 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.211139 ], [ 107.556152, 15.209988 ], [ 107.303467, 15.919074 ], [ 106.545410, 16.604610 ], [ 105.084229, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.183350, 19.632240 ], [ 104.820557, 19.890723 ], [ 104.425049, 20.766387 ], [ 103.194580, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.161865, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.502197, 22.705255 ], [ 104.468994, 22.826820 ], [ 105.325928, 23.352343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ] ] ], [ [ [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.439974 ], [ 129.451904, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.177490, 34.894942 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.551514, 35.692995 ], [ 126.112061, 36.730080 ], [ 126.859131, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.848833 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.264063 ], [ 127.770996, 38.307181 ], [ 128.199463, 38.376115 ], [ 128.342285, 38.616870 ], [ 129.210205, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.210205, 37.439974 ], [ 129.451904, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.177490, 34.894942 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.551514, 35.692995 ], [ 126.112061, 36.730080 ], [ 126.859131, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.848833 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.264063 ], [ 127.770996, 38.307181 ], [ 128.199463, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ] ] ], [ [ [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ] ] ], [ [ [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ] ] ], [ [ [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.324501 ], [ 114.862061, 4.357366 ], [ 114.653320, 4.017699 ], [ 114.202881, 4.532618 ], [ 114.598389, 4.904887 ], [ 115.444336, 5.451959 ], [ 115.345459, 4.324501 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.451959 ], [ 115.345459, 4.324501 ], [ 114.862061, 4.357366 ], [ 114.653320, 4.017699 ], [ 114.202881, 4.532618 ], [ 114.598389, 4.904887 ], [ 115.444336, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.361084, 41.385052 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ], [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -31.003418, -77.358285 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.978516, -66.209308 ], [ 88.352051, -66.482592 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 123.211670, -66.482592 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.957031, -84.110336 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -161.938477, -85.138492 ], [ -158.082275, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.952148, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.708984, -66.578851 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ], [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ], [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.372314, -79.181650 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.243408, -41.327326 ], [ 173.957520, -40.921814 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.243408, -41.327326 ], [ 173.957520, -40.921814 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ] ] ], [ [ [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 126.573486, -13.944730 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ] ] ], [ [ [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ] ] ], [ [ [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ] ] ], [ [ [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ] ] ], [ [ [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ] ] ], [ [ [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ] ] ], [ [ [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.454346, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.454102, -20.797201 ], [ 165.772705, -21.074249 ], [ 166.596680, -21.698265 ], [ 167.113037, -22.156883 ], [ 166.739502, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.465088, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.157715, -20.437308 ], [ 164.025879, -20.097206 ], [ 164.454346, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.454346, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.454102, -20.797201 ], [ 165.772705, -21.074249 ], [ 166.596680, -21.698265 ], [ 167.113037, -22.156883 ], [ 166.739502, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.465088, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.157715, -20.437308 ], [ 164.025879, -20.097206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.012695, -40.913513 ], [ 173.243408, -41.327326 ], [ 173.957520, -40.921814 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.243408, -41.327326 ], [ 173.957520, -40.921814 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.361084, 41.385052 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.021973, 48.480204 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.361084, 41.385052 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ], [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.021973, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ], [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.591523 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ], [ [ [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.323730, 68.253111 ], [ -140.993042, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.323730, 68.253111 ], [ -140.993042, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 68.253111 ], [ -114.323730, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 68.253111 ], [ -114.323730, 68.253111 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.255146 ], [ -140.993042, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.255146 ], [ -140.993042, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 68.255146 ], [ -114.318237, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 68.255146 ], [ -114.318237, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.323730, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.323730, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.323730, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.323730, 68.253111 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.323730, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.323730, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.323730, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.323730, 68.253111 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.318237, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.318237, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.318237, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.318237, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.071411, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.071411, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.071411, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.253111 ], [ -108.676758, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.253111 ], [ -98.536377, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.253111 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.603271, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.253111 ], [ -104.776611, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.253111 ], [ -96.185303, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.776611, 68.255146 ], [ -108.676758, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.190796, 68.255146 ], [ -98.536377, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.190796, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.603271, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.676758, 68.255146 ], [ -104.776611, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.536377, 68.255146 ], [ -96.190796, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.603271, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.813110, 2.822344 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.813110, 2.822344 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.071411, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.071411, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.071411, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.813110, 2.822344 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.813110, 2.822344 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.813110, 2.822344 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.813110, 2.822344 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.071411, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ] ] ], [ [ [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ] ] ], [ [ [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.805664, 68.253111 ], [ -76.129761, 68.253111 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.883057, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.253111 ], [ -86.033936, 68.253111 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.170776, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.253111 ], [ -81.804199, 68.253111 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.883057, 68.253111 ], [ -67.109985, 68.253111 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.805664, 68.253111 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.129761, 68.253111 ], [ -75.805664, 68.253111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.811157, 68.255146 ], [ -76.118774, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.894043, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.170776, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.804199, 68.255146 ], [ -86.033936, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.804199, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.170776, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.033936, 68.255146 ], [ -81.804199, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.894043, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.811157, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.118774, 68.255146 ], [ -75.811157, 68.255146 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.565918, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.872379 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -66.275024, -21.830907 ], [ -67.109985, -22.735657 ], [ -67.829590, -22.872379 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -66.275024, -21.830907 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.736938, -40.801336 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.582397, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.275024, -21.830907 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.813110, 2.822344 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.813110, 2.822344 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.813110, 2.822344 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.813110, 2.822344 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ], [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.800171, 68.253111 ], [ -76.124268, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.800171, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.253111 ], [ -86.028442, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.877563, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.800171, 68.253111 ], [ -76.124268, 68.253111 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.877563, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.253111 ], [ -86.028442, 68.253111 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.165283, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.253111 ], [ -81.798706, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.877563, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.124268, 68.253111 ], [ -75.800171, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.798706, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.165283, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.253111 ], [ -81.798706, 68.253111 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.877563, 68.253111 ], [ -67.109985, 68.253111 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.800171, 68.253111 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.124268, 68.253111 ], [ -75.800171, 68.253111 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ], [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.886987 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.712769, 40.934265 ], [ -72.246094, 41.120746 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.044067, 58.921664 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.358822 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.800171, 68.253111 ], [ -76.124268, 68.253111 ], [ -75.899048, 68.287684 ], [ -75.800171, 68.253111 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.253111 ], [ -86.028442, 68.253111 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.877563, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.800171, 68.253111 ], [ -76.124268, 68.253111 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.318237, 68.253111 ], [ -140.987549, 68.253111 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.109985, 68.253111 ], [ -73.877563, 68.253111 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.253111 ], [ -108.671265, 68.253111 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.179810, 68.253111 ], [ -98.530884, 68.253111 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.179810, 68.253111 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.253111 ], [ -94.597778, 68.253111 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.253111 ], [ -86.028442, 68.253111 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.165283, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.253111 ], [ -81.798706, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.877563, 68.253111 ], [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.124268, 68.253111 ], [ -75.800171, 68.253111 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.798706, 68.253111 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.253111 ], [ -114.318237, 68.253111 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.253111 ], [ -104.771118, 68.253111 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.253111 ], [ -96.179810, 68.253111 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.253111 ], [ -88.165283, 68.253111 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.253111 ], [ -81.798706, 68.253111 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.109985, 68.253111 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.877563, 68.253111 ], [ -67.109985, 68.253111 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.800171, 68.253111 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.124268, 68.253111 ], [ -75.800171, 68.253111 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.255146 ], [ -76.113281, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.255146 ], [ -86.028442, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.888550, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.805664, 68.255146 ], [ -76.113281, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.888550, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.255146 ], [ -86.028442, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.165283, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.255146 ], [ -81.798706, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.888550, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.113281, 68.255146 ], [ -75.805664, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.798706, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.165283, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.255146 ], [ -81.798706, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.888550, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.805664, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.113281, 68.255146 ], [ -75.805664, 68.255146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.255146 ], [ -76.113281, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.255146 ], [ -86.028442, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.888550, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.805664, 68.255146 ], [ -76.113281, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.888550, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.255146 ], [ -86.028442, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.165283, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.255146 ], [ -81.798706, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.888550, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.113281, 68.255146 ], [ -75.805664, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.798706, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.165283, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.255146 ], [ -81.798706, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.888550, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.805664, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.113281, 68.255146 ], [ -75.805664, 68.255146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.805664, 68.255146 ], [ -76.113281, 68.255146 ], [ -75.899048, 68.287684 ], [ -75.805664, 68.255146 ] ] ], [ [ [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.255146 ], [ -86.028442, 68.255146 ], [ -85.578003, 68.786132 ] ] ], [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ] ] ], [ [ [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ] ] ], [ [ [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.888550, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.899048, 68.287684 ], [ -75.805664, 68.255146 ], [ -76.113281, 68.255146 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -114.312744, 68.255146 ], [ -140.987549, 68.255146 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -66.972656, 69.187945 ], [ -68.807373, 68.720441 ], [ -67.120972, 68.255146 ], [ -73.888550, 68.255146 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -105.347900, 68.562391 ], [ -104.771118, 68.255146 ], [ -108.671265, 68.255146 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ] ] ], [ [ [ -96.185303, 68.255146 ], [ -98.530884, 68.255146 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.185303, 68.255146 ] ] ], [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.165283, 68.255146 ], [ -94.597778, 68.255146 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.798706, 68.255146 ], [ -86.028442, 68.255146 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.659302, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.496216, 79.301620 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.850946 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.165283, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.255146 ], [ -81.798706, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.888550, 68.255146 ], [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.113281, 68.255146 ], [ -75.805664, 68.255146 ], [ -75.119019, 68.011685 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.798706, 68.255146 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.987549, 68.255146 ], [ -114.312744, 68.255146 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.671265, 68.255146 ], [ -104.771118, 68.255146 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.530884, 68.255146 ], [ -96.185303, 68.255146 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.597778, 68.255146 ], [ -88.165283, 68.255146 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -86.028442, 68.255146 ], [ -81.798706, 68.255146 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ], [ [ [ -67.120972, 68.255146 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -73.888550, 68.255146 ], [ -67.120972, 68.255146 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -75.805664, 68.255146 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -76.113281, 68.255146 ], [ -75.805664, 68.255146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -5.976562, 20.643066 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -5.976562, 20.643066 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.021973, 11.022080 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.021973, 11.022080 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ -0.054932, 10.709189 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.021973, 11.022080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.021973, 11.022080 ], [ -0.054932, 10.709189 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.709189 ], [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.709189 ], [ 0.021973, 11.022080 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -5.976562, 20.643066 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -5.976562, 20.643066 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ], [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.763672, 63.961496 ], [ -21.780396, 64.404058 ], [ -23.955688, 64.893259 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.171875, 66.528580 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.846558, 82.727226 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.077026, 81.735041 ], [ -23.170166, 81.153396 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.351685, 70.131032 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -66.769409, 77.376305 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -68.027344, 80.117621 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -44.527588, 81.661279 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ] ] ], [ [ [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.021973, 11.022080 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.021973, 11.022080 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ -0.054932, 10.709189 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.021973, 11.022080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.021973, 11.022080 ], [ -0.054932, 10.709189 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.709189 ], [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ -0.054932, 10.709189 ], [ 0.021973, 11.022080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.846802, 21.499075 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 19.846802, 21.499075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 19.846802, 21.499075 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 37.183228, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -5.976562, 20.643066 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ] ] ], [ [ [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ] ] ], [ [ [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 9.206543, 41.211722 ], [ 9.805298, 40.501269 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.846802, 21.499075 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 19.846802, 21.499075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 19.846802, 21.499075 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.048218, 55.785840 ], [ -5.586548, 55.313517 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ], [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ], [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ -0.280151, 39.313050 ], [ 0.109863, 38.741231 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.689209, 55.612487 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ] ] ], [ [ [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ] ] ], [ [ [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 9.206543, 41.211722 ], [ 9.805298, 40.501269 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.703247, 44.578730 ], [ 22.472534, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.434082, 42.581400 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.703247, 44.578730 ], [ 22.472534, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.434082, 42.581400 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.472534, 44.410240 ], [ 22.703247, 44.578730 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.472534, 44.410240 ], [ 22.703247, 44.578730 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.379150, 42.322001 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.581400 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.379150, 42.322001 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.581400 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ], [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.689209, 55.612487 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.097778, 55.785840 ], [ 26.493530, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.097778, 55.785840 ], [ 26.493530, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ], [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ], [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ], [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ] ] ], [ [ [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.846802, 21.499075 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 19.846802, 21.499075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 19.846802, 21.499075 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 37.183228, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ], [ 53.107910, 16.651981 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.379150, 42.322001 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.581400 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.379150, 42.322001 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.581400 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 19.846802, 21.499075 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.908569, 41.335576 ], [ 38.342285, 40.950863 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.342285, 40.950863 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 37.183228, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.338546 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.703247, 44.578730 ], [ 22.472534, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.434082, 42.581400 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.703247, 44.578730 ], [ 22.472534, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.434082, 42.581400 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.097778, 55.785840 ], [ 26.493530, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.097778, 55.785840 ], [ 26.493530, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.792017 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.097778, 55.785840 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.792017 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.097778, 55.785840 ], [ 28.174438, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.472534, 44.410240 ], [ 22.703247, 44.578730 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.472534, 44.410240 ], [ 22.703247, 44.578730 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.379150, 42.322001 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.581400 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.379150, 42.322001 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.581400 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.908569, 41.335576 ], [ 38.342285, 40.950863 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.342285, 40.950863 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.097778, 55.785840 ], [ 26.493530, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.097778, 55.785840 ], [ 26.493530, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.792017 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.097778, 55.785840 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.792017 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.097778, 55.785840 ], [ 28.174438, 56.170023 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ], [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 23.538208, 67.937524 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.538208, 67.937524 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ], [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ], [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ], [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.879028, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ], [ 53.107910, 16.651981 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.908569, 41.335576 ], [ 38.342285, 40.950863 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.342285, 40.950863 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.338546 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.439575, 39.142842 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.439575, 39.142842 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.439575, 39.142842 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.439575, 39.142842 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.439575, 39.142842 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.439575, 39.142842 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.439575, 39.142842 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ], [ 102.749634, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.010986, 28.299544 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ], [ 102.749634, 21.677848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ] ] ], [ [ [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.434082, 45.015302 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 146.359863, -41.137296 ], [ 146.903687, -40.996484 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.147949, -21.754398 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ] ] ], [ [ [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ] ] ], [ [ [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.021973, 48.480204 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.434082, 45.015302 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.910400, 39.993956 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ], [ [ [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ], [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 44.895630, -68.050730 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 123.217163, -66.482592 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -161.932983, -85.138492 ], [ -158.076782, -85.373767 ], [ -155.192871, -85.099230 ], [ -150.946655, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.892944, -85.314914 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -113.944702, -73.714276 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.428589, -68.149077 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.252808, -66.874030 ], [ -66.703491, -66.581034 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ], [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -120.234375, -74.087457 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ], [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.366821, -79.182681 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.243408, -41.331451 ], [ 173.957520, -40.925965 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.243408, -41.331451 ], [ 173.957520, -40.925965 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.018188, -40.917664 ], [ 173.243408, -41.331451 ], [ 173.957520, -40.925965 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.243408, -41.331451 ], [ 173.957520, -40.925965 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ] ] ], [ [ [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ] ] ], [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ], [ [ [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ] ] ], [ [ [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ], [ [ [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ], [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.021973, 48.480204 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.792017 ], [ 29.366455, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.342041, 66.337505 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 68.153687, 76.940488 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ], [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 44.846191, 80.590625 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] ] } } ] } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json index 9834f50..ea3d5b5 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json @@ -12,6983 +12,6983 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ] ] ], [ [ [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ] ] ], [ [ [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ] ] ], [ [ [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ] ] ], [ [ [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ] ] ], [ [ [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ] ] ], [ [ [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.580829 ], [ -84.902344, 73.353055 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ] ] ], [ [ [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ] ] ], [ [ [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ] ] ], [ [ [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ] ] ], [ [ [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ] ] ], [ [ [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ] ] ], [ [ [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ] ] ], [ [ [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ] ] ], [ [ [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ] ] ], [ [ [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -114.785156, 68.720441 ], [ -141.064453, 68.720441 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.554498 ], [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -75.849609, 68.720441 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ] ] ], [ [ [ -110.302734, 68.720441 ], [ -113.554688, 68.720441 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -110.302734, 68.720441 ] ] ], [ [ [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.720441 ], [ -94.482422, 68.720441 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ] ] ], [ [ [ -88.242188, 68.720441 ], [ -90.263672, 68.720441 ], [ -89.296875, 69.287257 ], [ -88.242188, 68.720441 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.720441 ], [ -85.693359, 68.720441 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ] ] ], [ [ [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ] ] ], [ [ [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ] ] ], [ [ [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ] ] ], [ [ [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ] ] ], [ [ [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.908203, 68.720441 ], [ -106.962891, 68.720441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ] ] ], [ [ [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.777344, 49.894634 ], [ -56.162109, 50.176898 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.730469, 63.743631 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ] ] ], [ [ [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.298828, 68.720441 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 68.720441 ], [ -114.785156, 68.720441 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -105.908203, 68.720441 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.482422, 68.720441 ], [ -90.615234, 68.720441 ], [ -90.615234, 68.496040 ], [ -90.263672, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.693359, 68.720441 ], [ -81.298828, 68.720441 ] ] ], [ [ [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.865234, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ] ] ], [ [ [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ] ] ], [ [ [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ] ] ], [ [ [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ] ] ], [ [ [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ] ] ], [ [ [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.818359, 63.782486 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -75.849609, 68.720441 ], [ -68.818359, 68.720441 ] ] ], [ [ [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -110.302734, 68.720441 ], [ -113.378906, 68.560384 ], [ -113.554688, 68.720441 ], [ -110.302734, 68.720441 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.261719, -85.051129 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.231457 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.524614 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ] ] ], [ [ [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ] ] ], [ [ [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ] ] ], [ [ [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.532994 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.261719, -85.051129 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 36.210938, 64.129784 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ] ] ], [ [ [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ] ] ], [ [ [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ] ] ], [ [ [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ] ] ], [ [ [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ] ] ], [ [ [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ] ] ], [ [ [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ] ] ], [ [ [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 36.210938, 64.129784 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ] ] ], [ [ [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ] ] ], [ [ [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ] ] ], [ [ [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -58.139648, 1.537901 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.119141, 3.513421 ], [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -58.139648, 1.537901 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.119141, 3.513421 ], [ -51.064453, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ], [ -67.763672, -53.826597 ] ] ], [ [ [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.528806 ], [ -173.144531, -84.115970 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.807617, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -148.095703, -79.647774 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.631968 ], [ -59.589844, -80.035262 ] ] ], [ [ [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ] ] ], [ [ [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ] ] ], [ [ [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ] ] ], [ [ [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ] ] ], [ [ [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.807617, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -148.095703, -79.647774 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ] ] ], [ [ [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ] ] ], [ [ [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ] ] ], [ [ [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ] ] ], [ [ [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ] ] ], [ [ [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ] ] ], [ [ [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ] ] ], [ [ [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ] ] ], [ [ [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ] ] ], [ [ [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ] ] ], [ [ [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ] ] ], [ [ [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -114.082031, 68.463800 ], [ -141.020508, 68.463800 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ] ] ], [ [ [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -67.895508, 68.463800 ], [ -74.575195, 68.463800 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ] ] ], [ [ [ -105.380859, 68.576441 ], [ -105.205078, 68.463800 ], [ -108.588867, 68.463800 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ] ] ], [ [ [ -97.119141, 68.463800 ], [ -98.349609, 68.463800 ], [ -97.690430, 68.592487 ], [ -97.119141, 68.463800 ] ] ], [ [ [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.110352, 68.463800 ], [ -94.570312, 68.463800 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -81.562500, 68.463800 ], [ -85.913086, 68.463800 ], [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ] ] ], [ [ [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ] ] ], [ [ [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ] ] ], [ [ [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ] ] ], [ [ [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ] ] ], [ [ [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ] ] ], [ [ [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ] ] ], [ [ [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -138.383789, 59.578851 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ] ] ], [ [ [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ] ] ], [ [ [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.774414, 63.743631 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ] ] ], [ [ [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.562500, 68.463800 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -138.383789, 59.578851 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 68.463800 ], [ -114.082031, 68.463800 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.588867, 68.463800 ], [ -105.205078, 68.463800 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -98.349609, 68.463800 ], [ -97.119141, 68.463800 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.570312, 68.463800 ], [ -88.110352, 68.463800 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.913086, 68.463800 ], [ -81.562500, 68.463800 ] ] ], [ [ [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ] ] ], [ [ [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ] ] ], [ [ [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ] ] ], [ [ [ -67.895508, 68.463800 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.818359, 63.763065 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.575195, 68.463800 ], [ -67.895508, 68.463800 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ] ] ], [ [ [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ] ] ], [ [ [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ] ] ], [ [ [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -138.383789, 59.578851 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ] ] ], [ [ [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ] ] ], [ [ [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ] ] ], [ [ [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ] ] ], [ [ [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.265625, 26.745610 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ] ] ], [ [ [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -138.383789, 59.578851 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ] ] ], [ [ [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ] ] ], [ [ [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ] ] ], [ [ [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -58.139648, 1.537901 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -58.139648, 1.537901 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 19.103648 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.515625, 36.809285 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ] ] ], [ [ [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ] ] ], [ [ [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ] ] ], [ [ [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ] ] ], [ [ [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ] ] ], [ [ [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ] ] ], [ [ [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ] ] ], [ [ [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ] ] ], [ [ [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ] ] ], [ [ [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ] ] ], [ [ [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ] ] ], [ [ [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ] ] ], [ [ [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.690782 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.690782 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.538086, 29.113775 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.538086, 29.113775 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ] ] ], [ [ [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.530900 ], [ -173.122559, -84.115970 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ] ] ], [ [ [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ] ] ], [ [ [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ] ] ], [ [ [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ] ] ], [ [ [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ] ] ], [ [ [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ] ] ], [ [ [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ] ] ], [ [ [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ] ] ], [ [ [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ] ] ], [ [ [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ] ] ], [ [ [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.674316, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ] ] ], [ [ [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ] ] ], [ [ [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ] ] ], [ [ [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.674316, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.744351 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ] ] ], [ [ [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.687988, 72.067147 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ] ] ], [ [ [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ] ] ], [ [ [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ] ] ], [ [ [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ] ] ], [ [ [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ] ] ], [ [ [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ] ] ], [ [ [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ] ] ], [ [ [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ] ] ], [ [ [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ] ] ], [ [ [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ] ] ], [ [ [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ] ] ], [ [ [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ] ] ], [ [ [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ] ] ], [ [ [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.744351 ], [ -88.242188, 68.073305 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.621339 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ], [ [ [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.674316, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.674316, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ] ] ], [ [ [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.418945, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ], [ -62.600098, -65.856756 ] ] ], [ [ [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ] ] ], [ [ [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.631968 ], [ -59.589844, -80.039064 ] ] ], [ [ [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.622070, -65.802776 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.247070, -70.458859 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.622070, -65.802776 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.590332, 1.757537 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.829590, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.829590, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.590332, 1.757537 ], [ -49.987793, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ] ] ], [ [ [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -57.875977, -31.015279 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -57.875977, -31.015279 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ] ] ], [ [ [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ] ] ], [ [ [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ] ] ], [ [ [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ] ] ], [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.499512, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.499512, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 20.673905 ], [ 0.000000, 21.800308 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 1.757812, 36.650793 ], [ 1.757812, 20.673905 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.650793 ], [ 1.757812, 20.673905 ], [ 0.000000, 21.800308 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 1.757812, 36.650793 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ] ] ], [ [ [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ] ] ], [ [ [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.758524 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ] ] ], [ [ [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ] ] ], [ [ [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ] ] ], [ [ [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ], [ -91.757812, 70.392606 ], [ -91.538086, 70.192550 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ] ] ], [ [ [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.758524 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.164372 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ] ] ], [ [ [ -91.757812, 70.065585 ], [ -91.757812, 70.392606 ], [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ], [ [ [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ] ] ], [ [ [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 30.695801, 1.757537 ], [ 30.454102, 1.603794 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.695801, 1.757537 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 30.695801, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ] ], [ [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ] ], [ [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ] ] ], [ [ [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 15.996094, 67.204032 ], [ 15.380859, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 67.204032 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 15.996094, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 91.757812, 26.843677 ], [ 91.757812, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ] ] ], [ [ [ 91.757812, 23.200961 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.757812, 24.126702 ], [ 91.757812, 23.200961 ] ] ], [ [ [ 91.757812, 27.800210 ], [ 91.757812, 27.741885 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.800210 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 26.843677 ], [ 91.757812, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 91.757812, 26.843677 ] ] ], [ [ [ 91.757812, 24.126702 ], [ 91.757812, 23.200961 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.757812, 24.126702 ] ] ], [ [ [ 91.757812, 27.741885 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.800210 ], [ 91.757812, 27.741885 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.182037 ], [ 91.757812, 27.800210 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.182037 ], [ 91.757812, 27.800210 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.804688, 65.802776 ], [ 30.212402, 65.802776 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ] ] ], [ [ [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ] ] ], [ [ [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ] ] ], [ [ [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ] ] ], [ [ [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.804688, 65.802776 ], [ 30.212402, 65.802776 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ] ] ], [ [ [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ], [ [ [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ] ] ], [ [ [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ] ] ], [ [ [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ] ] ], [ [ [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.871094, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.399160 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.399160 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.871094, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.110204 ] ] ], [ [ [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ] ] ], [ [ [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ] ] ], [ [ [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.871094, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.118164, -67.204032 ], [ 120.651855, -67.204032 ], [ 120.849609, -67.187000 ] ] ], [ [ [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ], [ 88.352051, -66.478208 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.399160 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 92.592773, -67.187000 ], [ 93.317871, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ] ] ], [ [ [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ] ] ], [ [ [ 99.382324, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ] ] ], [ [ [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.158691, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ] ] ], [ [ [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.118164, -67.204032 ], [ 120.651855, -67.204032 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.871094, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ] ] ], [ [ [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ] ] ], [ [ [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ] ] ], [ [ [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ] ] ], [ [ [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.719238, 1.757537 ], [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ] ] ], [ [ [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ] ] ], [ [ [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.719238, 1.757537 ], [ 117.949219, 1.757537 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ] ] ], [ [ [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.064453, -16.825574 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.064453, -16.825574 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ] ] ], [ [ [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.839449 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ] ] ], [ [ [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ] ] ], [ [ [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 25.839449 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.804461 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.839449 ] ] ], [ [ [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ] ] ], [ [ [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.760320 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.783635 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ] ] ], [ [ [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ] ] ], [ [ [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.783635 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ] ] ], [ [ [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ] ] ], [ [ [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.816406, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ] ] ], [ [ [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ] ] ], [ [ [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.816406, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ] ] ], [ [ [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ] ] ], [ [ [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ] ] ], [ [ [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ] ] ], [ [ [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.905273, -79.004962 ], [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.478516, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ] ] ], [ [ [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.905273, -79.004962 ], [ -159.576416, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ] ] ], [ [ [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.336914, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.336914, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ] ] ], [ [ [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -162.894287, 66.861082 ], [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ] ] ], [ [ [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ] ] ], [ [ [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -140.998535, 66.861082 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.023193, 66.587583 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.603549 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.603549 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.674316, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.674316, 66.513260 ] ] ], [ [ [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.663330, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.407959, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.419877 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.242545 ], [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ] ] ], [ [ [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.419877 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.242545 ], [ -89.230957, -72.557792 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -115.993652, 32.620870 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.200439, 41.640078 ], [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -115.993652, 32.620870 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.200439, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.978733 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -115.993652, 32.620870 ], [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.978733 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -115.993652, 32.620870 ], [ -114.730225, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.070738 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ] ] ], [ [ [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.070738 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.070738 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ] ] ], [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.070738 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.233398, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ] ] ], [ [ [ -90.000000, 71.584003 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.584003 ] ] ], [ [ [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ] ] ], [ [ [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ] ] ], [ [ [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ] ] ], [ [ [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ] ] ], [ [ [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ] ] ], [ [ [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ] ] ], [ [ [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ] ] ], [ [ [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ] ] ], [ [ [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.014755 ], [ -89.121094, 76.462920 ] ] ], [ [ [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ] ] ], [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.768311, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ] ] ], [ [ [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ] ] ], [ [ [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.584003 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.469961 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -89.121094, 77.014755 ], [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.014755 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.768311, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ], [ [ [ -89.121094, 70.938181 ], [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.938181 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.337646, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.768311, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ] ] ], [ [ [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.501709, 79.302640 ], [ -103.612061, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.337646, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.479736, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.768311, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -89.121094, 82.113863 ], [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.121094, 82.113863 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ] ] ], [ [ [ -44.121094, -80.186207 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ], [ -44.121094, -80.186207 ] ] ], [ [ [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.186207 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.361328, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.764648, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.368784 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.242545 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.950928, -66.160511 ], [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ] ] ], [ [ [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.361328, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.764648, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.368784 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.242545 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.950928, -66.160511 ], [ -62.171631, -66.160511 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ] ] ], [ [ [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.764648, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.236328, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.764648, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.236328, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.515936 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.211058 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.515936 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.211058 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.677002, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -65.006104, -40.979898 ], [ -65.126953, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.575439, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.344727, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.575439, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.344727, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ] ] ], [ [ [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 17.821916 ], [ -90.878906, 19.228177 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ] ] ], [ [ [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.499512, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.499512, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.212646, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.212646, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -47.834473, -0.571280 ], [ -46.779785, -0.878872 ], [ -48.175049, -0.878872 ], [ -47.834473, -0.571280 ] ] ], [ [ [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.499512, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.499512, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ], [ [ [ -46.779785, -0.878872 ], [ -48.175049, -0.878872 ], [ -47.834473, -0.571280 ], [ -46.779785, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ] ] ], [ [ [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ] ] ], [ [ [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ] ] ], [ [ [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -82.100830, 66.861082 ], [ -83.067627, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -61.864014, 66.861082 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -61.864014, 66.861082 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ], [ -83.067627, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.575439, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.344727, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.575439, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.344727, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.067627, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ] ] ], [ [ [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.346436, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.584003 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ] ] ], [ [ [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ], [ [ [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.904204 ], [ -90.516357, 73.858452 ] ] ], [ [ [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ] ] ], [ [ [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.585693, 79.335219 ], [ -76.915283, 79.325049 ] ] ], [ [ [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.222271 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ] ] ], [ [ [ -90.747070, 76.450056 ], [ -90.878906, 76.229523 ], [ -90.878906, 76.504005 ], [ -90.747070, 76.450056 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.067627, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.346436, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.049316, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.584003 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -90.878906, 73.904204 ], [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.904204 ] ] ], [ [ [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ] ] ], [ [ [ -76.585693, 79.335219 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.585693, 79.335219 ] ] ], [ [ [ -85.836182, 79.335219 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.222271 ], [ -90.878906, 79.335219 ], [ -85.836182, 79.335219 ] ] ], [ [ [ -90.878906, 76.229523 ], [ -90.878906, 76.504005 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.229523 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.181641, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.594238, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.286377, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.164372 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.004962 ], [ -68.697510, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ], [ -68.697510, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.949772 ], [ -44.121094, 83.103160 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ] ] ], [ [ [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ], [ -43.494873, -79.084302 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -42.791748, -82.063963 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -45.878906, -81.786210 ], [ -44.835205, -81.845640 ], [ -43.516846, -82.000000 ], [ -45.878906, -81.786210 ] ] ], [ [ [ -43.560791, -79.004962 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.560791, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ] ] ], [ [ [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.102051, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ] ] ], [ [ [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.102051, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ], [ -44.912109, -1.548884 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.878906, -1.186439 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.563987 ], [ -45.362549, -23.795398 ], [ -45.878906, -1.186439 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.966013 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ 0.000000, 21.800308 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.966013 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.421282 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 13.475106 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.966013 ], [ 0.878906, 13.475106 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.966013 ], [ 0.878906, 13.475106 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.966013 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.969727, 66.861082 ], [ -34.211426, 66.683436 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.969727, 66.861082 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.969727, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.965346 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ] ] ], [ [ [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.965346 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.979488 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 0.878906, 42.730874 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -6.888428, 40.313043 ], [ -6.866455, 40.338170 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 0.878906, 42.730874 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -6.888428, 40.313043 ], [ -6.866455, 40.338170 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.804443, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.995361, 79.335219 ], [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.804443, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.995361, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.949772 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.771870 ], [ 45.878906, -79.335219 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.771870 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.771870 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.775879, 0.878872 ], [ 29.992676, 0.878872 ], [ 29.871826, 0.604237 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.992676, 0.878872 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.775879, 0.878872 ], [ 29.992676, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ] ] ], [ [ [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.662598, -23.654588 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.662598, -23.654588 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.267334, -15.506619 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.662598, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ] ], [ [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.662598, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ] ], [ [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -25.363882 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.781682 ], [ 45.878906, -25.363882 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.781682 ], [ 45.878906, -25.363882 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.781682 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.878906, 22.370396 ], [ -0.878906, 35.773258 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.878906, 22.370396 ], [ -0.878906, 35.773258 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 19.841309, 21.504186 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 19.841309, 21.504186 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.841309, 21.504186 ], [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ], [ 19.841309, 21.504186 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.853271, 23.412847 ], [ 19.841309, 21.504186 ], [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.572998, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.156982, 41.640078 ], [ 36.156006, 41.640078 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.103027, 41.640078 ], [ 28.114014, 41.623655 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.156006, 41.640078 ], [ 36.903076, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.572998, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.156982, 41.640078 ], [ 36.156006, 41.640078 ] ] ], [ [ [ 28.103027, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.103027, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.878906, 8.396300 ], [ 45.878906, 5.987607 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.878906, 8.396300 ], [ 45.878906, 5.987607 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.291797 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ] ] ], [ [ [ 45.878906, 33.339707 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ], [ 45.878906, 33.339707 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.291797 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ] ] ], [ [ [ 45.878906, 34.912962 ], [ 45.878906, 33.339707 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -0.878872 ], [ 17.325439, -0.878872 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -0.878872 ], [ 17.325439, -0.878872 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.681847 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.681847 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.110840, 66.861082 ], [ 41.121826, 66.791909 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.110840, 66.861082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.380859, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ], [ 15.380859, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.699463, 66.861082 ], [ 15.380859, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.699463, 66.861082 ], [ 23.554688, 66.861082 ], [ 23.554688, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.699463, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.135742, 66.861082 ], [ 29.498291, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.135742, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.135742, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.903076, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.572998, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.572998, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.849854, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.353027, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.421143 ], [ 43.703613, 66.160511 ], [ 41.319580, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.022217, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 39.353027, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.849854, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.353027, 66.160511 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.022217, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.319580, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.703613, 66.160511 ], [ 41.319580, 66.160511 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ] ] ], [ [ [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.896240, 79.335219 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 19.896240, 79.335219 ], [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.896240, 79.335219 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.498291, 66.513260 ], [ 29.849854, 66.160511 ], [ 23.763428, 66.160511 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.498291, 66.513260 ], [ 29.849854, 66.160511 ], [ 23.763428, 66.160511 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.577145 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ] ] ], [ [ [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.898193, -66.160511 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.261250 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.152100, -66.160511 ], [ 56.898193, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.484131, -66.861082 ], [ 87.747803, -66.513260 ] ] ], [ [ [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ] ] ], [ [ [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.484131, -66.861082 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.151288 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.594189 ], [ 44.121094, -17.151288 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.328857, 41.640078 ], [ 47.977295, 41.409776 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.328857, 41.640078 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.328857, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ] ] ], [ [ [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.385264 ] ] ], [ [ [ 44.121094, 39.436193 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.026153 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.026153 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.060059, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ] ] ], [ [ [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.953369, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ] ] ], [ [ [ 55.953369, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.953369, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.060059, 41.385052 ], [ 69.543457, 41.640078 ], [ 70.565186, 41.640078 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.588135, 41.640078 ], [ 66.708984, 41.170384 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.953369, 41.640078 ], [ 56.986084, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.565186, 41.640078 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.588135, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.060059, 41.385052 ], [ 69.543457, 41.640078 ], [ 70.565186, 41.640078 ] ] ], [ [ [ 56.986084, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.953369, 41.640078 ], [ 56.986084, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.945068, 39.342794 ], [ 45.000000, 39.291797 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.291797 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.611670 ], [ 44.703369, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.611670 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.611670 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.051270, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ] ] ], [ [ [ 52.569580, 41.640078 ], [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.877197, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 90.878906, 26.843677 ], [ 90.878906, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 90.878906, 26.843677 ], [ 90.878906, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 28.062286 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.340332, 66.670387 ], [ 47.713623, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ], [ 90.878906, 50.387508 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.387508 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ], [ 47.713623, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.059326, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.059326, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.000000, 47.776252 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.014799 ], [ 90.703125, 50.338449 ], [ 90.878906, 50.387508 ], [ 90.878906, 46.995241 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ] ] ], [ [ [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.619261 ], [ 90.878906, 45.367584 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.995241 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.014799 ], [ 90.703125, 50.338449 ], [ 90.878906, 50.387508 ], [ 90.878906, 46.995241 ] ] ], [ [ [ 90.878906, 46.619261 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.619261 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.619261 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.663086, 40.313043 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.619261 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.663086, 40.313043 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.871403 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.007571 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.672197 ], [ 90.878906, 66.160511 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 75.672197 ], [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.280118 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.871403 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.007571 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.672197 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.589727 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.780273, -66.160511 ], [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.063232, -66.513260 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.063232, -66.513260 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.665039, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.780273, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.929443, -66.861082 ], [ 110.225830, -66.696478 ] ] ], [ [ [ 122.310791, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.771236 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ] ] ], [ [ [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.063232, -66.513260 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.063232, -66.513260 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.169678, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.929443, -66.861082 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.673584, -66.861082 ], [ 122.310791, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.771236 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ] ] ], [ [ [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ] ] ], [ [ [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ] ] ], [ [ [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ] ] ], [ [ [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.740234, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ] ] ], [ [ [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ] ] ], [ [ [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ] ] ], [ [ [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.793701, 0.878872 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 118.740234, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.740234, 0.878872 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 128.660889, 0.878872 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.660889, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 135.878906, -14.051331 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.822823 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 128.232422, -31.942840 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 135.878906, -14.051331 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.822823 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 128.232422, -31.942840 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.990619 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.990619 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.794654 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ] ] ], [ [ [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.683350, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ] ] ], [ [ [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ], [ 128.199463, 41.467428 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 126.683350, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.683350, 41.640078 ] ] ], [ [ [ 128.155518, 41.640078 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.836182, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ] ] ], [ [ [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ], [ 123.332520, -0.615223 ] ] ], [ [ [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ] ] ], [ [ [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.133545, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ] ] ], [ [ [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.836182, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.761963, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.133545, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ], [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.308127 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.014799 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.308127 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.014799 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.014799 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.776252 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.014799 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.749756, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.749756, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.300293, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.000000, 47.776252 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ] ] ], [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.997070, 79.335219 ], [ 102.216797, 79.335219 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 102.216797, 79.335219 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.997070, 79.335219 ], [ 102.216797, 79.335219 ] ] ], [ [ [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ] ] ], [ [ [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.361328, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.361328, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.751709, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.751709, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.751709, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.780273, -66.160511 ], [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.751709, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.780273, -66.160511 ], [ 135.966797, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 144.722900, -66.861082 ], [ 140.119629, -66.861082 ], [ 140.800781, -66.813547 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.771236 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.771236 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ] ] ], [ [ [ 144.371338, -66.835165 ], [ 144.722900, -66.861082 ], [ 140.119629, -66.861082 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.975098, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.975098, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.098565 ], [ 134.143066, -1.142502 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.217012 ], [ 134.121094, -6.107784 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.098565 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.098565 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.217012 ], [ 134.121094, -6.107784 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.975098, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.975098, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ] ] ], [ [ [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ] ] ], [ [ [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.666222 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ] ] ], [ [ [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.436490 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.361084, 41.385052 ], [ 141.514893, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ] ] ], [ [ [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ] ] ], [ [ [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.575684, -85.051129 ], [ -162.301025, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.575684, -85.051129 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.630615, -79.171335 ], [ -162.767944, -79.088462 ], [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.630615, -79.171335 ], [ -162.767944, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ] ] ], [ [ [ -157.879028, -76.986335 ], [ -157.500000, -77.118032 ], [ -157.060547, -77.270224 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.118032 ], [ -157.060547, -77.270224 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 21.207459 ], [ -157.060547, 21.089625 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ] ] ], [ [ [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ], [ -157.060547, 21.089625 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.252563, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ] ] ], [ [ [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.252563, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.548706, 56.022948 ], [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.548706, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.915992 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ] ] ], [ [ [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ] ] ], [ [ [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ] ] ], [ [ [ -157.060547, 56.815914 ], [ -157.500000, 56.671320 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.680542, 55.528631 ], [ -162.526245, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.393076 ], [ -157.060547, 58.901809 ], [ -157.060547, 56.815914 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.915992 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.915992 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ], [ [ [ -157.060547, 58.901809 ], [ -157.060547, 56.815914 ], [ -157.500000, 56.671320 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.680542, 55.528631 ], [ -162.526245, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.393076 ], [ -157.060547, 58.901809 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.017700, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.674316, 66.513260 ], [ -163.723755, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.674316, 66.513260 ] ] ], [ [ [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.971436, 66.337505 ], [ -162.202148, 66.513260 ], [ -162.493286, 66.737732 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.657837, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.723755, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ] ] ], [ [ [ -157.060547, 66.337505 ], [ -161.971436, 66.337505 ], [ -162.202148, 66.513260 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.347534, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.347534, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ], [ [ [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.347534, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.347534, 66.337505 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ -174.347534, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.347534, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.830811, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.852295, -79.088462 ], [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.852295, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.193604, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.076752 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.118032 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.193604, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.076752 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.118032 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.251890 ], [ -155.407104, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ] ] ], [ [ [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ] ] ], [ [ [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ] ] ], [ [ [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.407104, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 59.040555 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ], [ -134.560547, 59.040555 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.040555 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.040555 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.671320 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.468589 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.393076 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ] ] ], [ [ [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.040555 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.671320 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.468589 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.393076 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.358822 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.610530 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.341490 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.878540, -74.019543 ], [ -114.505005, -73.898111 ], [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.531250, -73.898111 ], [ -119.981689, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.610530 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.341490 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.878540, -74.019543 ], [ -114.505005, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.531250, -73.898111 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.531250, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.026855, -74.066358 ], [ -114.878540, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.521240, -74.140084 ], [ -115.026855, -74.066358 ] ] ], [ [ [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ] ] ], [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.521240, -74.140084 ], [ -115.026855, -74.066358 ], [ -114.878540, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.189453, 41.310824 ], [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.189453, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.566721 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.566721 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ] ] ], [ [ [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ] ] ], [ [ [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.732354 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.364831 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ] ] ], [ [ [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.948653 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ] ] ], [ [ [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.732354 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.364831 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.948653 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ] ] ], [ [ [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.112667 ], [ -112.060547, 75.968226 ], [ -112.060547, 75.156266 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ] ] ], [ [ [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ] ] ], [ [ [ -112.060547, 77.412270 ], [ -112.500000, 77.508873 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.098296 ], [ -112.060547, 77.412270 ] ] ], [ [ [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ] ] ], [ [ [ -112.060547, 74.446412 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.413974 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014886 ], [ -112.060547, 75.108343 ], [ -112.060547, 74.446412 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -112.060547, 75.156266 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.112667 ], [ -112.060547, 75.968226 ], [ -112.060547, 75.156266 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -112.060547, 78.098296 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.508873 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.098296 ] ] ], [ [ [ -112.500000, 78.559399 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ] ] ], [ [ [ -112.060547, 75.108343 ], [ -112.060547, 74.446412 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.413974 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014886 ], [ -112.060547, 75.108343 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.610530 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.610530 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.242545 ], [ -89.560547, -72.856600 ], [ -89.560547, -74.140084 ], [ -101.997070, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ] ] ], [ [ [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.242545 ], [ -89.560547, -74.140084 ], [ -101.997070, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.110125 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.844238, 22.350076 ], [ -97.717896, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.844238, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.110125 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.844238, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 17.816686 ], [ -89.560547, 14.370834 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.232438 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.370834 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.232438 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.353394, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.306503 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ] ] ], [ [ [ -112.763672, 27.780772 ], [ -112.500000, 27.566721 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.347899 ], [ -112.763672, 27.780772 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.306503 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.353394, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.306503 ] ] ], [ [ [ -112.939453, 28.347899 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.566721 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.347899 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 48.011975 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ], [ -89.560547, 48.011975 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.011975 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 64.050575 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.974924 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ], [ -89.560547, 64.050575 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.050575 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.974924 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.560547, 69.060712 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.732354 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ] ] ], [ [ [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.556368 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.888954 ], [ -112.500000, 72.948653 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.582267 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.480238 ], [ -89.560547, 72.990483 ], [ -89.560547, 71.223149 ] ] ], [ [ [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ] ] ], [ [ [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.560547, 69.060712 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.732354 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.556368 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.888954 ], [ -112.500000, 72.948653 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -89.560547, 72.990483 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.582267 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.480238 ], [ -89.560547, 72.990483 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.422485, 74.101006 ], [ -91.790771, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ] ] ], [ [ [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.413974 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.014886 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.184995 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.112667 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.750830 ], [ -89.560547, 74.500817 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ] ] ], [ [ [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ] ] ], [ [ [ -89.560547, 76.736617 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.960334 ], [ -89.560547, 76.736617 ] ] ], [ [ [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.508873 ], [ -112.939453, 77.604745 ], [ -112.939453, 77.968455 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ] ] ], [ [ [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ] ] ], [ [ [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ] ] ], [ [ [ -103.612061, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.485229, 79.253586 ], [ -104.798584, 79.253586 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.768311, 79.171335 ], [ -93.526611, 79.253586 ], [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ] ] ], [ [ [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.790771, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.413974 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.014886 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.184995 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.112667 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.750830 ], [ -89.560547, 74.500817 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -89.560547, 76.960334 ], [ -89.560547, 76.736617 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.960334 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.508873 ], [ -112.939453, 77.604745 ], [ -112.939453, 77.968455 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.612061, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.485229, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.768311, 79.171335 ], [ -93.526611, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.612061, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.938599, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ] ] ], [ [ [ -89.560547, 80.950917 ], [ -90.000000, 81.164372 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.496216, 79.301620 ], [ -103.612061, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.938599, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ], [ -90.000000, 81.164372 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.388473 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.388473 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.223145, -73.968044 ], [ -75.256348, -73.898111 ], [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.843825 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.843825 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ], [ -75.256348, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.342036 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.242545 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.328291 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.772419 ], [ -67.060547, -74.140084 ] ] ], [ [ [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.772419 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.342036 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.242545 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.328291 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.772419 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.922974, -55.528631 ], [ -68.153687, -55.609384 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.922974, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.922974, -55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.870285 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.870285 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.168866 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.870285 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ] ] ], [ [ [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.643798 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.296472 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.168866 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.870285 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.643798 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.296472 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.831883 ], [ -67.060547, -23.206010 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.831883 ], [ -67.060547, -23.206010 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.684984 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ], [ -67.060547, -22.684984 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.684984 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.206010 ], [ -67.060547, -41.310824 ] ] ], [ [ [ -67.060547, -22.684984 ], [ -67.060547, -22.831883 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.684984 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.206010 ], [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.206010 ] ] ], [ [ [ -67.060547, -22.831883 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.684984 ], [ -67.060547, -22.831883 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.035400, 0.439449 ], [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.035400, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.588501, 19.041349 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.735566 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.110125 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.588501, 19.041349 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.735566 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.110125 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ] ] ], [ [ [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.364014, 22.350076 ], [ -83.248901, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ] ] ], [ [ [ -83.248901, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.364014, 22.350076 ], [ -83.248901, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.626919 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.129546 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.861855 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.575195, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.626919 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.129546 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.861855 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.575195, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.861855 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.626919 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.861855 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.626919 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.322266, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.322266, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.575195, -0.439449 ], [ -75.322266, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ], [ -74.575195, -0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.575195, -0.439449 ], [ -75.322266, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.575439, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.344727, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.954956, 41.310824 ], [ -72.295532, 41.273678 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.954956, 41.310824 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.575439, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.344727, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.954956, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.044678, 21.534847 ], [ -87.127075, 21.534847 ], [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.127075, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.981201, 21.534847 ], [ -78.700562, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.981201, 21.534847 ], [ -78.700562, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.421694 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.188063 ], [ -90.439453, 56.022948 ], [ -87.363281, 56.022948 ], [ -87.324829, 56.001453 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.421694 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.188063 ], [ -90.439453, 56.022948 ], [ -87.363281, 56.022948 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.770137 ], [ -67.500000, 44.570904 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.575439, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.344727, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.981934, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.069824, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.770137 ], [ -67.500000, 44.570904 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.575439, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.344727, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.981934, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.069824, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.271954 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ] ] ], [ [ [ -82.584229, 66.687784 ], [ -83.067627, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.439453, 63.755779 ], [ -90.439453, 66.687784 ], [ -82.584229, 66.687784 ] ] ], [ [ [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ] ] ], [ [ [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ] ] ], [ [ [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ] ] ], [ [ [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ] ] ], [ [ [ -90.000000, 57.076575 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ], [ -90.000000, 57.076575 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 63.755779 ], [ -90.439453, 66.687784 ], [ -82.584229, 66.687784 ], [ -83.067627, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.439453, 63.755779 ] ] ], [ [ [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.271954 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.067627, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.544315 ], [ -90.000000, 68.804014 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ] ] ], [ [ [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.279484 ], [ -67.060547, 69.164512 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.238859 ], [ -67.060547, 66.357339 ], [ -67.252808, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.582267 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.480238 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ] ] ], [ [ [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ] ] ], [ [ [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.067627, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.544315 ], [ -90.000000, 68.804014 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.279484 ], [ -67.060547, 69.164512 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.238859 ], [ -67.060547, 66.357339 ], [ -67.252808, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.582267 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.480238 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ] ] ], [ [ [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ] ] ], [ [ [ -86.588745, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.209717, 79.253586 ], [ -86.588745, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.209717, 79.253586 ], [ -86.588745, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.209717, 79.253586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.163075 ], [ -67.060547, 79.220760 ], [ -67.060547, 77.395499 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ] ] ], [ [ [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.395499 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.163075 ], [ -67.060547, 79.220760 ], [ -67.060547, 77.395499 ] ] ], [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.369100 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.588745, 79.171335 ], [ -86.967773, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ] ] ], [ [ [ -67.060547, 81.650916 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.164372 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.321593 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.688599, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ], [ -67.060547, 81.650916 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.588745, 79.171335 ], [ -86.967773, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.650916 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.164372 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.321593 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.688599, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.027344, 80.117621 ], [ -67.500000, 80.359755 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ] ] ], [ [ [ -67.060547, 79.088462 ], [ -68.065796, 79.088462 ], [ -67.060547, 79.220760 ], [ -67.060547, 79.088462 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.359755 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ] ] ], [ [ [ -67.060547, 79.220760 ], [ -67.060547, 79.088462 ], [ -68.065796, 79.088462 ], [ -67.060547, 79.220760 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.732056, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ], [ -84.732056, 82.620052 ] ] ], [ [ [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.688599, 82.676285 ], [ -82.424927, 82.860213 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -84.732056, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ], [ -82.688599, 82.676285 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.073486, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.073486, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.073486, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.255493, -82.732092 ], [ -55.947876, -82.676285 ] ] ], [ [ [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.073486, -82.676285 ], [ -58.958130, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ] ] ], [ [ [ -44.560547, -80.274756 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.357916 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.251465, -79.088462 ], [ -44.560547, -79.088462 ], [ -44.560547, -80.274756 ] ] ], [ [ [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.073486, -82.676285 ], [ -58.958130, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.255493, -82.732092 ], [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.274756 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.357916 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.251465, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.843825 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.100464, -73.898111 ], [ -61.265259, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.100464, -73.898111 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.843825 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.100464, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.764648, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.781960 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.328291 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.280518, -66.337505 ], [ -62.556152, -66.337505 ], [ -62.808838, -66.423340 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.556152, -66.337505 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.764648, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.781960 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.328291 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.280518, -66.337505 ], [ -62.556152, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.764648, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.764648, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.939453, -55.534848 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.870285 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -54.867124 ], [ -67.500000, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.939453, -55.534848 ], [ -67.939453, -54.867124 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.870285 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ] ] ], [ [ [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.296472 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.919399 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.870285 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.296472 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.919399 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ], [ -62.589111, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -23.327124 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.914429, -21.534847 ], [ -44.560547, -21.534847 ], [ -44.560547, -23.327124 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.327124 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.914429, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.451782, -21.534847 ], [ -57.914429, -21.534847 ], [ -57.936401, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.914429, -21.534847 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.451782, -21.534847 ], [ -57.914429, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.752930, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.752930, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.572632, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.572632, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ] ] ], [ [ [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.752930, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.752930, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.346191, 6.096860 ], [ -67.500000, 5.626919 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.129546 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.697139 ], [ -67.939453, 6.222473 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.626919 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.129546 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.697139 ], [ -67.939453, 6.222473 ], [ -67.697754, 6.271618 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.626919 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.222473 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.626919 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.222473 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.697139 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.697139 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.421694 ], [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ] ] ], [ [ [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ] ] ], [ [ [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.585692 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.421694 ], [ -67.939453, 49.271389 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -67.939453, 48.585692 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.585692 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.570904 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.570904 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.450607 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.271954 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ] ] ], [ [ [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ] ] ], [ [ [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.236101 ], [ -67.500000, 62.965212 ] ] ], [ [ [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.271278 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.450607 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.271954 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ] ] ], [ [ [ -67.939453, 66.271278 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.271278 ] ] ], [ [ [ -67.939453, 63.236101 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.236101 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.252808, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ] ] ], [ [ [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.942607 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.252808, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.942607 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.942607 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.357083 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.105086 ], [ -67.500000, 79.163075 ], [ -67.434082, 79.171335 ], [ -66.807861, 79.253586 ], [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.357083 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.105086 ], [ -67.500000, 79.163075 ], [ -67.434082, 79.171335 ], [ -66.807861, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.107245 ], [ -67.939453, 80.158078 ], [ -67.500000, 80.359755 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ] ] ], [ [ [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.203003, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.906128, 82.200065 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.107245 ], [ -67.939453, 80.158078 ], [ -67.500000, 80.359755 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ] ] ], [ [ [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.203003, 82.732092 ], [ -44.560547, 82.732092 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026219 ], [ -44.560547, 82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.026219 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.812068 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ] ] ], [ [ [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.357916 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.812068 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.357916 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.006183 ], [ -45.159302, -78.046071 ] ] ], [ [ [ -22.060547, -79.253586 ], [ -35.793457, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.108711 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.041292 ], [ -22.060547, -79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.006183 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.006183 ] ] ], [ [ [ -22.060547, -76.041292 ], [ -22.060547, -79.253586 ], [ -35.793457, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.108711 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.041292 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.946045, -21.932855 ], [ -40.962524, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.880127, -21.534847 ], [ -40.946045, -21.932855 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.880127, -21.534847 ], [ -40.946045, -21.932855 ], [ -40.962524, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.880127, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.515936 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.962524, -21.943046 ], [ -41.720581, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ], [ -45.000000, -1.515936 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.962524, -21.943046 ], [ -41.720581, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.205933, 66.681261 ], [ -34.722290, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.194946, 66.687784 ], [ -34.205933, 66.681261 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.194946, 66.687784 ], [ -34.205933, 66.681261 ], [ -34.722290, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.194946, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.410303 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ] ] ], [ [ [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.277992 ], [ -22.060547, 63.881808 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.410303 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ], [ [ [ -22.060547, 64.277992 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.277992 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.323130 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642914 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.314877 ], [ -22.060547, 70.632662 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.722290, 66.513260 ], [ -35.266113, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ], [ -22.060547, 73.323130 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.323130 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642914 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.314877 ], [ -22.060547, 70.632662 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.722290, 66.513260 ], [ -35.266113, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.895508, 66.337505 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.895508, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920871 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.513409 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.252526 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.806589 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920871 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.513409 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.252526 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.806589 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888151 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.870447 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888151 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.870447 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.149535 ], [ -22.500000, -76.108711 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.803833, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.149535 ], [ -22.500000, -76.108711 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.803833, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.803833, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.803833, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.068237, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.163330, 22.350076 ], [ -6.119385, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.928862 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.928862 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.011297 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.011297 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.930405 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.841651 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.930405 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.841651 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.591066 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.743652, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ], [ -8.668213, 27.591066 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.668213, 27.591066 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.743652, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.783569, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.514893, 41.310824 ], [ -6.855469, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.514893, 41.310824 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.783569, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.514893, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.655488 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.514893, 41.310824 ], [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.655488 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.514893, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.743652, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.743652, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.261992 ], [ 0.439453, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.261992 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.261992 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.670680 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.975108 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.670680 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.975108 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 42.642041 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.830896 ], [ 0.439453, 42.642041 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.830896 ], [ 0.439453, 42.642041 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.830896 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.860962, 40.647304 ], [ -8.811035, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.783569, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.860962, 40.647304 ], [ -8.811035, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.783569, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.642041 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.642041 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.842285, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.410303 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.333095 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.842285, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -15.842285, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.410303 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.333095 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.528580 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.796265, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.796265, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ] ] ], [ [ [ -22.500000, 70.136632 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.153423 ], [ -22.500000, 70.136632 ] ] ], [ [ [ -22.500000, 71.642914 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ], [ -22.500000, 71.642914 ] ] ], [ [ [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.319122 ], [ -22.939453, 72.972798 ], [ -22.500000, 72.733112 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 70.153423 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.153423 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.500000, 71.642914 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.972798 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.319122 ], [ -22.939453, 72.972798 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.967163, 66.337505 ], [ -22.895508, 66.337505 ], [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ] ] ], [ [ [ -16.171875, 66.528580 ], [ -15.842285, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.556885, 66.337505 ], [ -16.759644, 66.337505 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.528580 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.895508, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -15.842285, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.556885, 66.337505 ], [ -16.759644, 66.337505 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.842285, 66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.193115, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ], [ -19.193115, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.094238, 79.253586 ], [ -19.193115, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.890503, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.890503, 82.732092 ] ] ], [ [ [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.297485, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ], [ -22.500000, 81.252526 ], [ -20.626831, 81.524751 ] ] ], [ [ [ -22.906494, 82.093487 ], [ -22.500000, 81.920871 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.513409 ], [ -22.939453, 81.279219 ], [ -22.939453, 82.088196 ], [ -22.906494, 82.093487 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 81.187965 ], [ -22.500000, 81.252526 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.297485, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ] ] ], [ [ [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.890503, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ] ] ], [ [ [ -22.939453, 82.088196 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920871 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.513409 ], [ -22.939453, 81.279219 ], [ -22.939453, 82.088196 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.368408, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.368408, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.663607 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.663607 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -25.443275 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ], [ 22.939453, -25.443275 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.443275 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.443275 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.443275 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.043945 ], [ 13.870239, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ], [ 13.870239, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.581194 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ] ] ], [ [ [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.581194 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.581194 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.581194 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -12.902844 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.500000, -12.897489 ], [ 22.939453, -12.902844 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, -12.897489 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.500000, -12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.080550 ], [ 0.000000, 21.800308 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.080550 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.269165, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.930405 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.930405 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239502, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.080550 ], [ -0.439453, 22.350076 ], [ 9.970093, 22.350076 ], [ 9.239502, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.970093, 22.350076 ], [ 9.239502, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.080550 ], [ -0.439453, 22.350076 ], [ 9.970093, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.239502, 21.943046 ], [ 9.970093, 22.350076 ], [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.239502, 21.943046 ], [ 9.970093, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.500000, 12.119894 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.500000, 12.119894 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.854886 ], [ 22.939453, 4.691404 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.500000, 4.225900 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.939453, 10.854886 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.854886 ], [ 22.939453, 4.691404 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.500000, 4.225900 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 10.854886 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.500000, 12.119894 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ], [ 22.939453, 10.854886 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.548960 ], [ 22.939453, 10.854886 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.500000, 12.119894 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.870239, 0.000000 ], [ 14.221802, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.870239, 0.000000 ], [ 14.221802, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.221802, -0.439449 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.221802, -0.439449 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.691404 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.691404 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.655488 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.208252, 41.310824 ], [ 2.087402, 41.228249 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.208252, 41.310824 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.655488 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.208252, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.080550 ], [ 0.401001, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.080550 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ] ] ], [ [ [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ] ] ], [ [ [ 9.404297, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.239502, 21.943046 ], [ 8.519897, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.080550 ], [ -0.439453, 35.840082 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.239502, 21.943046 ], [ 8.519897, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.080550 ], [ -0.439453, 35.840082 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.519897, 21.534847 ], [ 9.239502, 21.943046 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.519897, 21.534847 ], [ 9.239502, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.918457, 21.943046 ], [ 19.764404, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ], [ 18.918457, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 18.918457, 21.943046 ], [ 19.764404, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.335224 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.752930, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.335224 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.752930, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.433960, 54.466845 ], [ 0.000000, 53.670680 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.774682 ], [ -0.439453, 54.470038 ], [ -0.433960, 54.466845 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.670680 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.774682 ], [ -0.439453, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ] ] ], [ [ [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.535904 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.535904 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.579346, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ], [ 12.579346, 55.776573 ] ] ], [ [ [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.534912, 56.022948 ], [ 14.353638, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.534912, 56.022948 ], [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.534912, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.866317 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.866317 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ] ] ], [ [ [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.034267 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.034267 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.830564 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ], [ 22.939453, 43.830564 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.939453, 43.830564 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ] ] ], [ [ [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.034267 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.866317 ], [ 22.939453, 48.000950 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.866317 ], [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.034267 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.866317 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.752930, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.752930, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.117676, 66.513260 ], [ 13.331909, 66.687784 ], [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.117676, 66.513260 ], [ 13.331909, 66.687784 ], [ 15.540161, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.579346, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ], [ 12.579346, 55.776573 ] ] ], [ [ [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.847933 ], [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.847933 ], [ 22.939453, 64.060188 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 70.220452 ], [ 22.939453, 70.205576 ], [ 22.939453, 68.865498 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.232544, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.205576 ], [ 22.939453, 68.865498 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.232544, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.232544, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.232544, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.865498 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.865498 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.925903, 79.171335 ], [ 10.843506, 79.253586 ], [ 20.253296, 79.253586 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 22.939453, 78.402537 ], [ 22.939453, 77.529054 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 22.939453, 78.402537 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.253296, 79.253586 ], [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.925903, 79.171335 ], [ 10.843506, 79.253586 ], [ 20.253296, 79.253586 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 22.939453, 78.402537 ], [ 22.939453, 77.529054 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.972900, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ] ] ], [ [ [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.972900, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.657741 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.663607 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.021966 ], [ 45.439453, -67.896221 ], [ 45.439453, -74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.896221 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.663607 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.021966 ], [ 45.439453, -67.896221 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.475830, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ], [ 31.475830, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.370483, -21.836006 ], [ 35.375977, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.475830, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.375977, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.475830, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -25.582085 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.413509 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ], [ 45.439453, -25.582085 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.582085 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.413509 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.984497, 0.439449 ], [ 40.984497, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.439449 ], [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.984497, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.984497, 0.439449 ], [ 43.308105, 0.439449 ], [ 43.132324, 0.296630 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.308105, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.984497, 0.439449 ], [ 43.308105, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.725300 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.725300 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ], [ 22.060547, -9.725300 ], [ 22.203369, -9.893099 ] ] ], [ [ [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.774843 ], [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.725300 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.774843 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.774843 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.774843 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.375977, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.551758, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.375977, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.551758, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 12.999205 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ] ] ], [ [ [ 22.494507, 12.264864 ], [ 22.500000, 12.119894 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.999205 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 12.999205 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.500000, 12.119894 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.500000, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.500000, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.496582, 22.350076 ], [ 36.688843, 22.207749 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.496582, 22.350076 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.496582, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 37.858887, 18.370166 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.500000, 12.119894 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 12.999205 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 37.858887, 18.370166 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.500000, 12.119894 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 12.999205 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.674072, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.674072, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.548430 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.548430 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.074128 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.074128 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.548430 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.548430 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 1.966167 ], [ 45.000000, 1.675176 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ], [ 45.439453, 1.966167 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.517575 ], [ 45.439453, 1.966167 ], [ 45.000000, 1.675176 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.674072, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.674072, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.922241, 41.310824 ], [ 25.197144, 41.236511 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.922241, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.922241, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.060425, 41.310824 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.060425, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.060425, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ], [ 22.500000, 32.699489 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ] ] ], [ [ [ 25.197144, 41.236511 ], [ 25.922241, 41.310824 ], [ 26.477051, 41.310824 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.922241, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 38.226929, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.578491, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.039429, 41.310824 ], [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.552734, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.226929, 40.979898 ] ] ], [ [ [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.954468, 41.310824 ], [ 28.987427, 41.302571 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.552734, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.226929, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.578491, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.039429, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.954468, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.954468, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.973561 ], [ 45.439453, 34.052659 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.973561 ], [ 45.439453, 34.052659 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 37.012939, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ], [ [ [ 44.967041, 41.248903 ], [ 45.060425, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ] ] ], [ [ [ 45.439453, 40.509623 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.509623 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.060425, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.509623 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 36.756490 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.973561 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ] ] ], [ [ [ 45.439453, 33.938803 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.052659 ], [ 45.439453, 33.938803 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 35.973561 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.973561 ] ] ], [ [ [ 45.439453, 34.052659 ], [ 45.439453, 33.938803 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.052659 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 42.512602 ], [ 45.000000, 42.609706 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.827881, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.609706 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.827881, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.329338 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.414619 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.414619 ], [ 22.082520, 48.425555 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.034267 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.414619 ], [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.034267 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.414619 ], [ 22.060547, 49.289306 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.762451, 56.022948 ], [ 27.070312, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.762451, 56.022948 ], [ 27.070312, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.762451, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.827881, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.070312, 55.776573 ], [ 27.762451, 56.022948 ], [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.827881, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.070312, 55.776573 ], [ 27.762451, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.034267 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.034267 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.603394, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.908569, 41.335576 ], [ 38.226929, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.578491, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.731079, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ] ] ], [ [ [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.119751, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.226929, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.578491, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.731079, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.119751, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ] ] ], [ [ [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.827881, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.317017, 66.687784 ], [ 33.497314, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ] ] ], [ [ [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.902100, 66.687784 ], [ 40.528564, 66.513260 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.827881, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.317017, 66.687784 ], [ 33.497314, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.902100, 66.687784 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.902100, 66.687784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.847933 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.317017, 66.687784 ], [ 29.498291, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.317017, 66.687784 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.847933 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.317017, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.070312, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.070312, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.827881, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.070312, 55.776573 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.827881, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.070312, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.498291, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.160522, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ] ] ], [ [ [ 43.011475, 66.418945 ], [ 43.231201, 66.337505 ], [ 41.748047, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ] ] ], [ [ [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.170532, 66.337505 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.160522, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.498291, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.160522, 66.337505 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.170532, 66.337505 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.748047, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.231201, 66.337505 ], [ 41.748047, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.582459 ], [ 22.500000, 68.393113 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.582459 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.582459 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.498291, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.582459 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.498291, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.582459 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.582539 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.604983 ], [ 45.439453, 80.646142 ], [ 45.439453, 80.582539 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.646142 ], [ 45.439453, 80.582539 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.604983 ], [ 45.439453, 80.646142 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.657741 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.242747 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.672699 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.142942 ], [ 45.000000, -68.021966 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.514893, -66.337505 ], [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.242747 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.672699 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.142942 ], [ 45.000000, -68.021966 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.514893, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.271729, -66.687784 ], [ 50.855713, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.271729, -66.687784 ], [ 50.855713, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.076172, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.413509 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.208008, -21.534847 ], [ 48.076172, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.208008, -21.534847 ], [ 48.076172, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.413509 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.208008, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.076172, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.076172, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.868790 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.868790 ], [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.868790 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.424029 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.424029 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.720726 ], [ 44.560547, 17.424029 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.720726 ], [ 44.560547, 17.424029 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.314508 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.868790 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.868790 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.675176 ], [ 44.560547, 1.384143 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.675176 ], [ 44.560547, 1.384143 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ] ] ], [ [ [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.060425, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.060425, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.060425, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.791260, 39.715638 ], [ 44.560547, 39.618384 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ], [ [ [ 44.560547, 39.618384 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.618384 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.756490 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.173449 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.676025, 41.310824 ], [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ] ] ], [ [ [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.676025, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.245017 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.292969, 41.310824 ], [ 66.676025, 41.310824 ], [ 66.708984, 41.170384 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.676025, 41.310824 ], [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.245017 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.292969, 41.310824 ], [ 66.676025, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.060425, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ] ] ], [ [ [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.060425, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.338546 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.618384 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.618384 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.292969, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ] ] ], [ [ [ 52.728882, 41.310824 ], [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.728882, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.292969, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.292969, 41.310824 ] ] ], [ [ [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.833252, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.439575, 39.142842 ], [ 67.500000, 39.245017 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.142842 ] ] ], [ [ [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.245017 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ] ] ], [ [ [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 23.775291 ], [ 67.500000, 23.931034 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ], [ 67.939453, 23.775291 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.931034 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.609706 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ], [ 45.000000, 42.609706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.939766 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.893433, 40.647304 ], [ 54.733887, 40.955011 ] ] ], [ [ [ 53.800049, 40.647304 ], [ 52.849731, 40.647304 ], [ 52.910156, 40.880295 ], [ 53.800049, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.910156, 40.880295 ], [ 53.800049, 40.647304 ], [ 52.849731, 40.647304 ], [ 52.910156, 40.880295 ] ] ], [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.893433, 40.647304 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.301880, 66.687784 ], [ 46.345825, 66.668211 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.301880, 66.687784 ], [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ] ] ], [ [ [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.223022, 74.019543 ], [ 54.552612, 74.140084 ], [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ] ] ], [ [ [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.277521 ], [ 67.939453, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.277521 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ] ] ], [ [ [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ] ] ], [ [ [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.223022, 74.019543 ], [ 54.552612, 74.140084 ], [ 58.205566, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.202037 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.898926, 73.898111 ], [ 54.223022, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.896974 ], [ 67.939453, 76.925585 ], [ 67.939453, 76.202037 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.925585 ], [ 67.939453, 76.202037 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.898926, 73.898111 ], [ 54.223022, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.896974 ], [ 67.939453, 76.925585 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.604983 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.604983 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.176348 ], [ 90.439453, -67.212544 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.867265 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.753296, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.176348 ], [ 90.439453, -67.212544 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.867265 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.753296, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.615967, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.615967, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.027710, 22.060187 ], [ 88.983765, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.983765, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.136532 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ], [ 90.439453, 22.136532 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.136532 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.021606, 41.310824 ], [ 68.818359, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.021606, 41.310824 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.021606, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.152954, 41.145570 ], [ 71.630859, 41.310824 ], [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.245017 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.021606, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.245017 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.021606, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ], [ 71.630859, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ] ] ], [ [ [ 70.828857, 41.310824 ], [ 71.630859, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ] ] ], [ [ [ 71.630859, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.630859, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.245017 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.245017 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.931034 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.931034 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.983765, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.198486, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.983765, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.198486, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.136532 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.136532 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.212064 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ], [ 90.439453, 50.212064 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.212064 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.873446 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.873446 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.658081, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.658081, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.658081, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.658081, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.014799 ], [ 90.439453, 50.212064 ], [ 90.439453, 47.509780 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.212064 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.014799 ], [ 90.439453, 50.212064 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.537476, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.773682, 66.687784 ], [ 71.537476, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.773682, 66.687784 ], [ 71.537476, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.301270, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.444056 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.222311 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ] ] ], [ [ [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.603149, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.301270, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.444056 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.222311 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 90.439453, 66.337505 ], [ 72.603149, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 73.898111 ], [ 86.171265, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.575362 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.650431 ], [ 90.439453, 73.898111 ] ] ], [ [ [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.079668 ], [ 67.060547, 76.867052 ], [ 67.500000, 76.896974 ], [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 75.650431 ], [ 90.439453, 73.898111 ], [ 86.171265, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.575362 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.650431 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.079668 ], [ 67.060547, 76.867052 ], [ 67.500000, 76.896974 ], [ 68.153687, 76.940488 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.791626, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.258545, -66.337505 ], [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.176348 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.502686, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.176348 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.502686, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.791626, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.258545, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.791626, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ], [ 110.269775, -66.687784 ], [ 110.791626, -66.513260 ] ] ], [ [ [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.063232, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.063232, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.939453, -66.687784 ], [ 110.269775, -66.687784 ], [ 110.791626, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ] ] ], [ [ [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.173584, 0.439449 ], [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ] ] ], [ [ [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.173584, 0.439449 ], [ 103.282471, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ] ] ], [ [ [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.560303, 22.350076 ], [ 90.329590, 21.943046 ], [ 90.269165, 21.841105 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.560303, 22.350076 ], [ 90.329590, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.560303, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ] ] ], [ [ [ 112.939453, 21.948141 ], [ 112.500000, 21.790107 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.600342, 22.350076 ], [ 112.939453, 22.350076 ], [ 112.939453, 21.948141 ] ] ], [ [ [ 101.700439, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.948141 ], [ 112.500000, 21.790107 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.600342, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.255249, 22.350076 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.600342, 22.350076 ], [ 106.561890, 22.223005 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.600342, 22.350076 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.600342, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.019841 ], [ 112.939453, 3.096636 ], [ 112.939453, 1.477497 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.096636 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.019841 ], [ 112.939453, 3.096636 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ] ] ], [ [ [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.915161, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.915161, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.329590, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.329590, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 21.948141 ], [ 111.840820, 21.555284 ], [ 111.714478, 21.534847 ], [ 109.281006, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ], [ 112.939453, 21.948141 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.948141 ], [ 111.840820, 21.555284 ], [ 111.714478, 21.534847 ], [ 109.281006, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.821045, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.821045, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.017578, 21.534847 ], [ 102.821045, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.017578, 21.534847 ], [ 102.821045, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.014799 ], [ 89.560547, 49.816721 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.014799 ], [ 89.560547, 49.816721 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.816721 ], [ 90.000000, 50.014799 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.816721 ], [ 90.000000, 50.014799 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ] ] ], [ [ [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.075840 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ] ] ], [ [ [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.403809, 79.253586 ], [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ] ] ], [ [ [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.075840 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ] ] ], [ [ [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.403809, 79.253586 ], [ 102.963867, 79.253586 ] ] ], [ [ [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ] ] ], [ [ [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.171509, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.385010, -66.337505 ], [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.171509, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.385010, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ], [ 115.933228, -66.687784 ], [ 116.696777, -66.659507 ] ] ], [ [ [ 122.316284, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.821167, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ] ] ], [ [ [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.133545, -66.687784 ], [ 125.343018, -66.687784 ], [ 126.095581, -66.561377 ] ] ], [ [ [ 129.699097, -66.581034 ], [ 130.171509, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.773490 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.160767, -66.687784 ], [ 129.699097, -66.581034 ] ] ], [ [ [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ] ] ], [ [ [ 116.768188, -66.687784 ], [ 115.933228, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ] ] ], [ [ [ 123.409424, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.821167, -66.687784 ], [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.409424, -66.513260 ] ] ], [ [ [ 128.133545, -66.687784 ], [ 125.343018, -66.687784 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.133545, -66.687784 ] ] ], [ [ [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.160767, -66.687784 ], [ 129.699097, -66.581034 ], [ 130.171509, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.773490 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.356445, -21.534847 ], [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.356445, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ] ] ], [ [ [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ] ] ], [ [ [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ] ] ], [ [ [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ] ] ], [ [ [ 112.500000, -6.915521 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.800990 ], [ 112.500000, -6.915521 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.965210, 0.439449 ], [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.469557 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ] ] ], [ [ [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.529297, 0.439449 ], [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 112.060547, -6.800990 ], [ 112.500000, -6.915521 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.800990 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.965210, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.469557 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.529297, 0.439449 ], [ 128.638916, 0.439449 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ] ] ], [ [ [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.928467, 21.943046 ], [ 112.500000, 21.790107 ], [ 112.060547, 21.631899 ], [ 112.060547, 22.350076 ], [ 113.571167, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.928467, 21.943046 ] ] ], [ [ [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.318237, 22.350076 ], [ 114.147949, 22.228090 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.571167, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.928467, 21.943046 ], [ 112.500000, 21.790107 ], [ 112.060547, 21.631899 ], [ 112.060547, 22.350076 ], [ 113.571167, 22.350076 ] ] ], [ [ [ 114.318237, 22.350076 ], [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.318237, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ] ] ], [ [ [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ] ] ], [ [ [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ] ] ], [ [ [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ] ] ], [ [ [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.053101, -0.439449 ], [ 119.624634, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ] ] ], [ [ [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ], [ [ [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.053101, -0.439449 ], [ 119.624634, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.177979, 41.108330 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.928467, 21.943046 ], [ 112.060547, 21.631899 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.928467, 21.943046 ], [ 112.060547, 21.631899 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.914307, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.914307, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.669497 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.669497 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.925594 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.439557 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.925594 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.439557 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.073521 ], [ 112.060547, 49.439557 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.073521 ], [ 112.060547, 49.439557 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.914307, 40.979898 ], [ 125.233154, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.893555, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.914307, 40.979898 ], [ 125.233154, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.893555, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.166260, 40.647304 ], [ 125.233154, 40.647304 ], [ 125.914307, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.166260, 40.647304 ], [ 125.233154, 40.647304 ], [ 125.914307, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ] ] ], [ [ [ 113.016357, 73.977144 ], [ 113.082275, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.082275, 73.898111 ], [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ], [ 113.082275, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.505127, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.773490 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.505127, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.773490 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.980591, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.980591, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.980591, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ] ] ], [ [ [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.980591, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.357366 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.424484 ], [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.357366 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.424484 ], [ 134.560547, -5.523043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.980218 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.980218 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ] ] ], [ [ [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ] ] ], [ [ [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.951904, -3.458591 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.951904, -3.458591 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.158081, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.971069, 41.310824 ], [ 141.388550, 41.310824 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.388550, 41.310824 ], [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.158081, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.971069, 41.310824 ], [ 141.388550, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.265206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ] ] ], [ [ [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ] ] ], [ [ [ 157.939453, 51.757640 ], [ 157.500000, 51.474540 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ], [ 157.939453, 51.757640 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.265206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.757640 ], [ 157.500000, 51.474540 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.436490 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.158081, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.158081, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.595946 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.436141 ] ] ], [ [ [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.566406, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.996455 ], [ 157.939453, 55.528631 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.939453, 61.595946 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.595946 ] ] ], [ [ [ 157.939453, 57.996455 ], [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.566406, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.996455 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.991928 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.991928 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ] ] ], [ [ [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.751709, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.751709, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.751709, -79.171335 ], [ 161.630859, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.751709, -79.171335 ], [ 161.630859, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.426147, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.426147, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ] ] ], [ [ [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.281860, -41.310824 ], [ 173.858643, -40.979898 ] ] ], [ [ [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.232422, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.737549, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.232422, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.737549, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.281860, -41.310824 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.474540 ], [ 157.060547, 51.189673 ], [ 157.060547, 56.022948 ], [ 162.075806, 56.022948 ], [ 161.943970, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.075806, 56.022948 ], [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.474540 ], [ 157.060547, 51.189673 ], [ 157.060547, 56.022948 ], [ 162.075806, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.538406 ], [ 157.060547, 61.480760 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.538406 ], [ 157.060547, 61.480760 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.500000, 70.991928 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.027678 ], [ 157.500000, 70.991928 ] ] ], [ [ [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.060547, 71.027678 ], [ 157.500000, 70.991928 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.027678 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.573975, -83.979259 ], [ -169.002686, -84.117659 ], [ -168.750000, -84.181769 ], [ -168.530273, -84.237190 ], [ -168.530273, -85.070048 ], [ -180.000000, -85.070048 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139294 ], [ -177.258911, -84.452865 ], [ -176.086121, -84.099052 ], [ -175.948792, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.383240, -84.534302 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060808 ], [ -171.521301, -83.979259 ], [ -171.136780, -83.956169 ], [ -169.667358, -83.956169 ], [ -169.573975, -83.979259 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.667358, -83.956169 ], [ -169.573975, -83.979259 ], [ -169.002686, -84.117659 ], [ -168.750000, -84.181769 ], [ -168.530273, -84.237190 ], [ -180.000000, -85.070048 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139294 ], [ -177.258911, -84.452865 ], [ -176.086121, -84.099052 ], [ -175.948792, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.383240, -84.534302 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060808 ], [ -171.521301, -83.979259 ], [ -171.136780, -83.956169 ], [ -169.667358, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.573975, -83.979259 ], [ -169.477844, -84.002262 ], [ -171.905823, -84.002262 ], [ -171.521301, -83.979259 ], [ -169.953003, -83.884610 ], [ -169.573975, -83.979259 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.573975, -83.979259 ], [ -169.477844, -84.002262 ], [ -171.905823, -84.002262 ], [ -171.521301, -83.979259 ], [ -169.953003, -83.884610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.917603, -16.499299 ], [ -180.000000, -16.554594 ], [ -180.000000, -16.066929 ], [ -179.794006, -16.019416 ], [ -179.917603, -16.499299 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.794006, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.554594 ], [ -180.000000, -16.066929 ], [ -179.794006, -16.019416 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.114807, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.432089 ], [ -168.750000, 63.306514 ], [ -168.689575, 63.297876 ], [ -168.750000, 63.218780 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.290833, 63.195257 ], [ -170.672607, 63.376756 ], [ -171.554260, 63.318850 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.783699 ], [ -171.114807, 63.592562 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.732788, 63.783699 ], [ -171.114807, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.432089 ], [ -168.750000, 63.306514 ], [ -168.689575, 63.297876 ], [ -168.750000, 63.218780 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.290833, 63.195257 ], [ -170.672607, 63.376756 ], [ -171.554260, 63.318850 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.783699 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -175.014954, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.336403 ], [ -174.399719, 66.513260 ], [ -174.427185, 66.600676 ], [ -171.199951, 66.600676 ], [ -171.015930, 66.513260 ], [ -169.900818, 65.977798 ], [ -170.892334, 65.541408 ], [ -172.532043, 65.438860 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.252948 ], [ -173.894348, 64.282760 ], [ -174.655151, 64.632115 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.223206, 65.520930 ], [ -178.360291, 65.390867 ], [ -178.904114, 65.740785 ], [ -178.687134, 66.112731 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.404588 ], [ -180.000000, 64.980521 ], [ -180.000000, 66.600676 ], [ -175.014954, 66.600676 ], [ -175.014954, 66.585400 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.199951, 66.600676 ], [ -171.015930, 66.513260 ], [ -169.900818, 65.977798 ], [ -170.892334, 65.541408 ], [ -172.532043, 65.438860 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.252948 ], [ -173.894348, 64.282760 ], [ -174.655151, 64.632115 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.223206, 65.520930 ], [ -178.360291, 65.390867 ], [ -178.904114, 65.740785 ], [ -178.687134, 66.112731 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.404588 ], [ -180.000000, 64.980521 ], [ -180.000000, 66.600676 ], [ -175.014954, 66.600676 ], [ -175.014954, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.336403 ], [ -174.399719, 66.513260 ], [ -174.427185, 66.600676 ], [ -171.199951, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.399719, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.913911 ], [ -171.015930, 66.513260 ], [ -170.831909, 66.425537 ], [ -174.372253, 66.425537 ], [ -174.399719, 66.513260 ] ] ], [ [ [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.014954, 66.585400 ], [ -174.822693, 66.513260 ], [ -174.586487, 66.425537 ], [ -180.000000, 66.425537 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.014954, 66.585400 ], [ -174.822693, 66.513260 ], [ -174.586487, 66.425537 ], [ -180.000000, 66.425537 ], [ -180.000000, 68.964307 ] ] ], [ [ [ -171.859131, 66.913911 ], [ -171.015930, 66.513260 ], [ -170.831909, 66.425537 ], [ -174.372253, 66.425537 ], [ -174.399719, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.913911 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.024963, 71.556217 ], [ -177.580261, 71.269949 ], [ -177.665405, 71.133652 ], [ -178.695374, 70.893280 ], [ -180.000000, 70.832953 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.024963, 71.556217 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.873657, 71.557955 ], [ -179.024963, 71.556217 ], [ -177.580261, 71.269949 ], [ -177.665405, 71.133652 ], [ -178.695374, 70.893280 ], [ -180.000000, 70.832953 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.530273, -84.237190 ], [ -167.022400, -84.570286 ], [ -164.182434, -84.825066 ], [ -162.578430, -85.051129 ], [ -162.441101, -85.070048 ], [ -168.969727, -85.070048 ], [ -168.969727, -84.125817 ], [ -168.530273, -84.237190 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.969727, -84.125817 ], [ -168.530273, -84.237190 ], [ -167.022400, -84.570286 ], [ -164.182434, -84.825066 ], [ -162.578430, -85.051129 ], [ -162.441101, -85.070048 ], [ -168.969727, -85.070048 ], [ -168.969727, -84.125817 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.408875, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.128235, -79.633945 ], [ -162.441101, -79.281206 ], [ -162.630615, -79.171335 ], [ -162.699280, -79.129976 ], [ -159.433594, -79.129976 ], [ -159.408875, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.433594, -79.129976 ], [ -159.408875, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.128235, -79.633945 ], [ -162.441101, -79.281206 ], [ -162.630615, -79.171335 ], [ -162.699280, -79.129976 ], [ -159.433594, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -161.246338, -78.379877 ], [ -160.246582, -78.693184 ], [ -159.483032, -79.046269 ], [ -159.408875, -79.171335 ], [ -159.384155, -79.212538 ], [ -162.561951, -79.212538 ], [ -162.630615, -79.171335 ], [ -163.028870, -78.928746 ], [ -163.067322, -78.869518 ], [ -163.715515, -78.595299 ], [ -163.108521, -78.222831 ], [ -161.246338, -78.379877 ] ] ], [ [ [ -157.876282, -76.986954 ], [ -157.500000, -77.118644 ], [ -157.280273, -77.194959 ], [ -157.280273, -78.373237 ], [ -157.500000, -78.274853 ], [ -158.052063, -78.025574 ], [ -158.365173, -76.888876 ], [ -157.876282, -76.986954 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.222831 ], [ -161.246338, -78.379877 ], [ -160.246582, -78.693184 ], [ -159.483032, -79.046269 ], [ -159.408875, -79.171335 ], [ -159.384155, -79.212538 ], [ -162.561951, -79.212538 ], [ -162.630615, -79.171335 ], [ -163.028870, -78.928746 ], [ -163.067322, -78.869518 ], [ -163.715515, -78.595299 ], [ -163.108521, -78.222831 ] ] ], [ [ [ -158.365173, -76.888876 ], [ -157.876282, -76.986954 ], [ -157.500000, -77.118644 ], [ -157.280273, -77.194959 ], [ -157.280273, -78.373237 ], [ -157.500000, -78.274853 ], [ -158.052063, -78.025574 ], [ -158.365173, -76.888876 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.356934, -76.890745 ], [ -158.365173, -76.890745 ], [ -158.365173, -76.888876 ], [ -158.356934, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.365173, -76.888876 ], [ -158.356934, -76.890745 ], [ -158.365173, -76.890745 ], [ -158.365173, -76.888876 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 21.099875 ], [ -157.326965, 21.099875 ], [ -157.280273, 21.176729 ], [ -157.280273, 21.099875 ] ] ], [ [ [ -157.942200, 21.654875 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.780151, 21.279137 ], [ -158.128967, 21.314964 ], [ -158.255310, 21.539957 ], [ -158.293762, 21.580827 ], [ -158.027344, 21.718680 ], [ -157.942200, 21.654875 ] ] ], [ [ [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.573669, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.738464, 22.146708 ], [ -159.362183, 22.146708 ], [ -159.345703, 21.983801 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 21.176729 ], [ -157.280273, 21.099875 ], [ -157.326965, 21.099875 ], [ -157.280273, 21.176729 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.942200, 21.654875 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.780151, 21.279137 ], [ -158.128967, 21.314964 ], [ -158.255310, 21.539957 ], [ -158.293762, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.362183, 22.146708 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.573669, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.738464, 22.146708 ], [ -159.362183, 22.146708 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.367676, 22.215377 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.573669, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.598389, 22.238260 ], [ -159.367676, 22.215377 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.215377 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.573669, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.598389, 22.238260 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.035339, 55.776573 ], [ -159.603882, 55.567475 ], [ -160.290527, 55.645049 ], [ -161.224365, 55.365064 ], [ -162.237854, 55.024873 ], [ -163.070068, 54.691297 ], [ -164.786682, 54.404544 ], [ -164.943237, 54.573654 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.349451 ], [ -162.040100, 55.776573 ], [ -161.806641, 55.895336 ], [ -161.757202, 55.899956 ], [ -158.697510, 55.899956 ], [ -159.035339, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.697510, 55.899956 ], [ -159.035339, 55.776573 ], [ -159.603882, 55.567475 ], [ -160.290527, 55.645049 ], [ -161.224365, 55.365064 ], [ -162.237854, 55.024873 ], [ -163.070068, 54.691297 ], [ -164.786682, 54.404544 ], [ -164.943237, 54.573654 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.349451 ], [ -162.040100, 55.776573 ], [ -161.806641, 55.895336 ], [ -161.757202, 55.899956 ], [ -158.697510, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.194885, 58.616917 ], [ -158.518982, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.931587 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.672654 ], [ -162.056580, 59.267284 ], [ -161.875305, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.819885, 59.799253 ], [ -164.663086, 60.268428 ], [ -165.346985, 60.508639 ], [ -165.352478, 61.074231 ], [ -166.121521, 61.500424 ], [ -166.052856, 61.606396 ], [ -165.984192, 61.710706 ], [ -157.280273, 61.710706 ], [ -157.280273, 58.859224 ], [ -157.500000, 58.800939 ], [ -158.194885, 58.616917 ] ] ], [ [ [ -165.676575, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.192932, 59.755012 ], [ -166.849365, 59.942632 ], [ -167.456360, 60.213898 ], [ -166.470337, 60.385362 ], [ -165.676575, 60.294299 ] ] ], [ [ [ -157.280273, 56.743687 ], [ -157.500000, 56.671320 ], [ -158.117981, 56.464008 ], [ -158.433838, 55.995309 ], [ -159.035339, 55.776573 ], [ -159.373169, 55.652798 ], [ -162.284546, 55.652798 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.895336 ], [ -160.565186, 56.009131 ], [ -160.070801, 56.418459 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.218121 ], [ -157.725220, 57.570361 ], [ -157.552185, 58.329683 ], [ -157.500000, 58.391637 ], [ -157.280273, 58.648369 ], [ -157.280273, 56.743687 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 58.859224 ], [ -157.500000, 58.800939 ], [ -158.194885, 58.616917 ], [ -158.518982, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.931587 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.672654 ], [ -162.056580, 59.267284 ], [ -161.875305, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.819885, 59.799253 ], [ -164.663086, 60.268428 ], [ -165.346985, 60.508639 ], [ -165.352478, 61.074231 ], [ -166.121521, 61.500424 ], [ -166.052856, 61.606396 ], [ -165.984192, 61.710706 ], [ -157.280273, 61.710706 ], [ -157.280273, 58.859224 ] ] ], [ [ [ -166.470337, 60.385362 ], [ -165.676575, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.192932, 59.755012 ], [ -166.849365, 59.942632 ], [ -167.456360, 60.213898 ], [ -166.470337, 60.385362 ] ] ], [ [ [ -157.280273, 58.648369 ], [ -157.280273, 56.743687 ], [ -157.500000, 56.671320 ], [ -158.117981, 56.464008 ], [ -158.433838, 55.995309 ], [ -159.035339, 55.776573 ], [ -159.373169, 55.652798 ], [ -162.284546, 55.652798 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.895336 ], [ -160.565186, 56.009131 ], [ -160.070801, 56.418459 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.218121 ], [ -157.725220, 57.570361 ], [ -157.552185, 58.329683 ], [ -157.500000, 58.391637 ], [ -157.280273, 58.648369 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 61.501734 ], [ -166.121521, 61.501734 ], [ -166.052856, 61.606396 ], [ -165.737000, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.753967, 63.220018 ], [ -163.067322, 63.059937 ], [ -162.262573, 63.542434 ], [ -161.534729, 63.456647 ], [ -160.773926, 63.766708 ], [ -160.960693, 64.223104 ], [ -161.518250, 64.402872 ], [ -160.779419, 64.789338 ], [ -161.394653, 64.777637 ], [ -162.454834, 64.560241 ], [ -162.759705, 64.338718 ], [ -163.547974, 64.560241 ], [ -164.962463, 64.447927 ], [ -166.426392, 64.687365 ], [ -166.846619, 65.089489 ], [ -168.112793, 65.670724 ], [ -166.706543, 66.089364 ], [ -164.770203, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.655090, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.117180 ], [ -162.199402, 66.513260 ], [ -162.314758, 66.600676 ], [ -157.280273, 66.600676 ], [ -157.280273, 61.501734 ] ] ], [ [ [ -168.750000, 63.306514 ], [ -168.689575, 63.297876 ], [ -168.750000, 63.218780 ], [ -168.771973, 63.189064 ], [ -168.969727, 63.134503 ], [ -168.969727, 63.336111 ], [ -168.750000, 63.306514 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 66.600676 ], [ -157.280273, 61.501734 ], [ -166.121521, 61.501734 ], [ -166.052856, 61.606396 ], [ -165.737000, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.753967, 63.220018 ], [ -163.067322, 63.059937 ], [ -162.262573, 63.542434 ], [ -161.534729, 63.456647 ], [ -160.773926, 63.766708 ], [ -160.960693, 64.223104 ], [ -161.518250, 64.402872 ], [ -160.779419, 64.789338 ], [ -161.394653, 64.777637 ], [ -162.454834, 64.560241 ], [ -162.759705, 64.338718 ], [ -163.547974, 64.560241 ], [ -164.962463, 64.447927 ], [ -166.426392, 64.687365 ], [ -166.846619, 65.089489 ], [ -168.112793, 65.670724 ], [ -166.706543, 66.089364 ], [ -164.770203, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.655090, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.117180 ], [ -162.199402, 66.513260 ], [ -162.314758, 66.600676 ], [ -157.280273, 66.600676 ] ] ], [ [ [ -168.969727, 63.336111 ], [ -168.750000, 63.306514 ], [ -168.689575, 63.297876 ], [ -168.750000, 63.218780 ], [ -168.771973, 63.189064 ], [ -168.969727, 63.134503 ], [ -168.969727, 63.336111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.674316, 66.513260 ], [ -163.699036, 66.425537 ], [ -165.173950, 66.425537 ], [ -164.770203, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.655090, 66.576667 ], [ -163.674316, 66.513260 ] ] ], [ [ [ -162.490540, 66.736648 ], [ -163.721008, 67.116613 ], [ -164.432373, 67.616543 ], [ -165.390930, 68.043542 ], [ -166.766968, 68.359712 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.915946 ], [ -163.168945, 69.371606 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.935974, 70.447832 ], [ -160.241089, 70.612614 ], [ -159.930725, 70.685421 ], [ -157.280273, 70.685421 ], [ -157.280273, 66.425537 ], [ -162.084045, 66.425537 ], [ -162.199402, 66.513260 ], [ -162.490540, 66.736648 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.655090, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.699036, 66.425537 ], [ -165.173950, 66.425537 ], [ -164.770203, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.655090, 66.576667 ] ] ], [ [ [ -157.280273, 66.425537 ], [ -162.084045, 66.425537 ], [ -162.199402, 66.513260 ], [ -162.490540, 66.736648 ], [ -163.721008, 67.116613 ], [ -164.432373, 67.616543 ], [ -165.390930, 68.043542 ], [ -166.766968, 68.359712 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.915946 ], [ -163.168945, 69.371606 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.935974, 70.447832 ], [ -160.241089, 70.612614 ], [ -159.930725, 70.685421 ], [ -157.280273, 70.685421 ], [ -157.280273, 66.425537 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 70.539543 ], [ -160.548706, 70.539543 ], [ -160.241089, 70.612614 ], [ -159.040833, 70.892381 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.280273, 71.118548 ], [ -157.280273, 70.539543 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 71.118548 ], [ -157.280273, 70.539543 ], [ -160.548706, 70.539543 ], [ -160.241089, 70.612614 ], [ -159.040833, 70.892381 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.280273, 71.118548 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -84.539009 ], [ -146.250000, -84.536918 ], [ -146.829529, -84.531162 ], [ -150.062256, -84.295908 ], [ -150.748901, -83.979259 ], [ -150.798340, -83.956169 ], [ -146.030273, -83.956169 ], [ -146.030273, -84.539009 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -83.956169 ], [ -146.030273, -84.539009 ], [ -146.250000, -84.536918 ], [ -146.829529, -84.531162 ], [ -150.062256, -84.295908 ], [ -150.748901, -83.979259 ], [ -150.798340, -83.956169 ], [ -146.030273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -84.002262 ], [ -150.702209, -84.002262 ], [ -150.748901, -83.979259 ], [ -150.905457, -83.904183 ], [ -153.588867, -83.688427 ], [ -153.410339, -83.237720 ], [ -153.039551, -82.826337 ], [ -152.888489, -82.676285 ], [ -152.861023, -82.648222 ], [ -146.030273, -82.648222 ], [ -146.030273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -82.648222 ], [ -146.030273, -84.002262 ], [ -150.702209, -84.002262 ], [ -150.748901, -83.979259 ], [ -150.905457, -83.904183 ], [ -153.588867, -83.688427 ], [ -153.410339, -83.237720 ], [ -153.039551, -82.826337 ], [ -152.888489, -82.676285 ], [ -152.861023, -82.648222 ], [ -146.030273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -151.718445, -81.093214 ], [ -150.650024, -81.336913 ], [ -149.166870, -81.093214 ], [ -148.963623, -81.059130 ], [ -146.030273, -81.059130 ], [ -146.030273, -82.704241 ], [ -152.915955, -82.704241 ], [ -152.888489, -82.676285 ], [ -152.666016, -82.454176 ], [ -152.863770, -82.042319 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.838074, -81.101715 ], [ -154.410095, -81.160574 ], [ -153.413086, -81.093214 ], [ -152.910461, -81.059130 ], [ -151.864014, -81.059130 ], [ -151.718445, -81.093214 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -81.059130 ], [ -146.030273, -82.704241 ], [ -152.915955, -82.704241 ], [ -152.888489, -82.676285 ], [ -152.666016, -82.454176 ], [ -152.863770, -82.042319 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.838074, -81.101715 ], [ -154.410095, -81.160574 ], [ -153.413086, -81.093214 ], [ -152.910461, -81.059130 ], [ -151.864014, -81.059130 ], [ -151.718445, -81.093214 ], [ -150.650024, -81.336913 ], [ -149.166870, -81.093214 ], [ -148.963623, -81.059130 ], [ -146.030273, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.791626, -81.127169 ], [ -156.717224, -81.127169 ], [ -156.838074, -81.101715 ], [ -155.791626, -81.127169 ] ] ], [ [ [ -152.100220, -81.003896 ], [ -151.718445, -81.093214 ], [ -151.570129, -81.127169 ], [ -153.915710, -81.127169 ], [ -153.413086, -81.093214 ], [ -152.100220, -81.003896 ] ] ], [ [ [ -148.867493, -81.043322 ], [ -147.222290, -80.670662 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.065491, -79.651722 ], [ -149.532166, -79.358068 ], [ -151.589355, -79.299070 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.028320, -79.129976 ], [ -146.030273, -79.129976 ], [ -146.030273, -81.127169 ], [ -149.372864, -81.127169 ], [ -149.166870, -81.093214 ], [ -148.867493, -81.043322 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -156.838074, -81.101715 ], [ -155.791626, -81.127169 ], [ -156.717224, -81.127169 ], [ -156.838074, -81.101715 ] ] ], [ [ [ -151.718445, -81.093214 ], [ -151.570129, -81.127169 ], [ -153.915710, -81.127169 ], [ -153.413086, -81.093214 ], [ -152.100220, -81.003896 ], [ -151.718445, -81.093214 ] ] ], [ [ [ -146.030273, -81.127169 ], [ -149.372864, -81.127169 ], [ -149.166870, -81.093214 ], [ -148.867493, -81.043322 ], [ -147.222290, -80.670662 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.065491, -79.651722 ], [ -149.532166, -79.358068 ], [ -151.589355, -79.299070 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.028320, -79.129976 ], [ -146.030273, -79.129976 ], [ -146.030273, -81.127169 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -79.212538 ], [ -152.731934, -79.212538 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063999 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.719727, -78.176211 ], [ -157.719727, -77.041882 ], [ -157.500000, -77.118644 ], [ -156.975403, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.745422, -77.065265 ], [ -152.921448, -77.496391 ], [ -151.333923, -77.398495 ], [ -150.004578, -77.182779 ], [ -148.749390, -76.908799 ], [ -148.515930, -76.840816 ], [ -148.345642, -76.790701 ], [ -146.030273, -76.790701 ], [ -146.030273, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -76.790701 ], [ -146.030273, -79.212538 ], [ -152.731934, -79.212538 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063999 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.719727, -78.176211 ], [ -157.719727, -77.041882 ], [ -157.500000, -77.118644 ], [ -156.975403, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.745422, -77.065265 ], [ -152.921448, -77.496391 ], [ -151.333923, -77.398495 ], [ -150.004578, -77.182779 ], [ -148.749390, -76.908799 ], [ -148.515930, -76.840816 ], [ -148.345642, -76.790701 ], [ -146.030273, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -76.890745 ], [ -148.688965, -76.890745 ], [ -148.515930, -76.840816 ], [ -147.615051, -76.575609 ], [ -146.250000, -76.486687 ], [ -146.104431, -76.477699 ], [ -146.145630, -76.105414 ], [ -146.250000, -75.995504 ], [ -146.497192, -75.732565 ], [ -146.250000, -75.435815 ], [ -146.203308, -75.379765 ], [ -146.030273, -75.356176 ], [ -146.030273, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -75.356176 ], [ -146.030273, -76.890745 ], [ -148.688965, -76.890745 ], [ -148.515930, -76.840816 ], [ -147.615051, -76.575609 ], [ -146.250000, -76.486687 ], [ -146.104431, -76.477699 ], [ -146.145630, -76.105414 ], [ -146.250000, -75.995504 ], [ -146.497192, -75.732565 ], [ -146.250000, -75.435815 ], [ -146.203308, -75.379765 ], [ -146.030273, -75.356176 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.786133, 20.249314 ], [ -155.404358, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.063782, 19.859727 ], [ -154.808350, 19.510609 ], [ -154.833069, 19.453644 ], [ -155.223083, 19.241143 ], [ -155.544434, 19.085480 ], [ -155.690002, 18.916680 ], [ -155.937195, 19.059522 ], [ -155.909729, 19.339653 ], [ -156.074524, 19.704658 ], [ -156.025085, 19.815806 ], [ -155.852051, 19.978511 ], [ -155.920715, 20.174567 ], [ -155.863037, 20.267350 ], [ -155.786133, 20.249314 ] ] ], [ [ [ -156.258545, 20.917831 ], [ -155.997620, 20.766387 ], [ -156.080017, 20.645636 ], [ -156.415100, 20.573653 ], [ -156.588135, 20.784363 ], [ -156.703491, 20.866511 ], [ -156.711731, 20.928093 ], [ -156.612854, 21.012727 ], [ -156.258545, 20.917831 ] ] ], [ [ [ -156.758423, 21.179290 ], [ -156.791382, 21.069123 ], [ -157.326965, 21.099875 ], [ -157.252808, 21.220261 ], [ -156.758423, 21.179290 ] ] ], [ [ [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.719727, 21.268900 ], [ -157.719727, 21.399377 ], [ -157.653809, 21.322640 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.249314 ], [ -155.404358, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.063782, 19.859727 ], [ -154.808350, 19.510609 ], [ -154.833069, 19.453644 ], [ -155.223083, 19.241143 ], [ -155.544434, 19.085480 ], [ -155.690002, 18.916680 ], [ -155.937195, 19.059522 ], [ -155.909729, 19.339653 ], [ -156.074524, 19.704658 ], [ -156.025085, 19.815806 ], [ -155.852051, 19.978511 ], [ -155.920715, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.612854, 21.012727 ], [ -156.258545, 20.917831 ], [ -155.997620, 20.766387 ], [ -156.080017, 20.645636 ], [ -156.415100, 20.573653 ], [ -156.588135, 20.784363 ], [ -156.703491, 20.866511 ], [ -156.711731, 20.928093 ], [ -156.612854, 21.012727 ] ] ], [ [ [ -157.252808, 21.220261 ], [ -156.758423, 21.179290 ], [ -156.791382, 21.069123 ], [ -157.326965, 21.099875 ], [ -157.252808, 21.220261 ] ] ], [ [ [ -157.719727, 21.399377 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.719727, 21.268900 ], [ -157.719727, 21.399377 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -146.030273, 60.497820 ], [ -146.250000, 60.577524 ], [ -147.115173, 60.885027 ], [ -148.224792, 60.673179 ], [ -148.018799, 59.978380 ], [ -148.570862, 59.915107 ], [ -149.729919, 59.706556 ], [ -150.608826, 59.369593 ], [ -151.718445, 59.156220 ], [ -151.861267, 59.745326 ], [ -151.410828, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.284752 ], [ -151.896973, 60.728287 ], [ -152.580872, 60.062099 ], [ -154.020081, 59.351396 ], [ -153.289490, 58.864905 ], [ -154.234314, 58.147519 ], [ -155.308228, 57.729086 ], [ -156.310730, 57.424252 ], [ -156.557922, 56.980911 ], [ -157.500000, 56.671320 ], [ -157.719727, 56.598815 ], [ -157.719727, 57.595391 ], [ -157.552185, 58.329683 ], [ -157.500000, 58.391637 ], [ -157.044067, 58.920246 ], [ -157.500000, 58.800939 ], [ -157.719727, 58.743982 ], [ -157.719727, 61.710706 ], [ -146.030273, 61.710706 ], [ -146.030273, 60.497820 ] ] ], [ [ [ -152.567139, 57.901715 ], [ -152.141418, 57.592447 ], [ -153.006592, 57.116859 ], [ -154.006348, 56.736155 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.461203 ], [ -153.764648, 57.816967 ], [ -153.229065, 57.970244 ], [ -152.567139, 57.901715 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -146.030273, 61.710706 ], [ -146.030273, 60.497820 ], [ -146.250000, 60.577524 ], [ -147.115173, 60.885027 ], [ -148.224792, 60.673179 ], [ -148.018799, 59.978380 ], [ -148.570862, 59.915107 ], [ -149.729919, 59.706556 ], [ -150.608826, 59.369593 ], [ -151.718445, 59.156220 ], [ -151.861267, 59.745326 ], [ -151.410828, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.284752 ], [ -151.896973, 60.728287 ], [ -152.580872, 60.062099 ], [ -154.020081, 59.351396 ], [ -153.289490, 58.864905 ], [ -154.234314, 58.147519 ], [ -155.308228, 57.729086 ], [ -156.310730, 57.424252 ], [ -156.557922, 56.980911 ], [ -157.500000, 56.671320 ], [ -157.719727, 56.598815 ], [ -157.719727, 57.595391 ], [ -157.552185, 58.329683 ], [ -157.500000, 58.391637 ], [ -157.044067, 58.920246 ], [ -157.500000, 58.800939 ], [ -157.719727, 58.743982 ], [ -157.719727, 61.710706 ], [ -146.030273, 61.710706 ] ] ], [ [ [ -153.229065, 57.970244 ], [ -152.567139, 57.901715 ], [ -152.141418, 57.592447 ], [ -153.006592, 57.116859 ], [ -154.006348, 56.736155 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.461203 ], [ -153.764648, 57.816967 ], [ -153.229065, 57.970244 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 61.501734 ], [ -157.719727, 61.501734 ], [ -157.719727, 66.600676 ], [ -146.030273, 66.600676 ], [ -146.030273, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 66.600676 ], [ -146.030273, 61.501734 ], [ -157.719727, 61.501734 ], [ -157.719727, 66.600676 ], [ -146.030273, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.267761, 70.612614 ], [ -152.270508, 70.600758 ], [ -150.740662, 70.430360 ], [ -149.721680, 70.530391 ], [ -147.615051, 70.214875 ], [ -146.250000, 70.148760 ], [ -146.030273, 70.137565 ], [ -146.030273, 66.425537 ], [ -157.719727, 66.425537 ], [ -157.719727, 70.685421 ], [ -152.248535, 70.685421 ], [ -152.267761, 70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.248535, 70.685421 ], [ -152.267761, 70.612614 ], [ -152.270508, 70.600758 ], [ -150.740662, 70.430360 ], [ -149.721680, 70.530391 ], [ -147.615051, 70.214875 ], [ -146.250000, 70.148760 ], [ -146.030273, 70.137565 ], [ -146.030273, 66.425537 ], [ -157.719727, 66.425537 ], [ -157.719727, 70.685421 ], [ -152.248535, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.069275, 71.147857 ], [ -154.344177, 70.697228 ], [ -153.901978, 70.890583 ], [ -152.210083, 70.830248 ], [ -152.267761, 70.612614 ], [ -152.270508, 70.600758 ], [ -151.721191, 70.539543 ], [ -157.719727, 70.539543 ], [ -157.719727, 70.965968 ], [ -157.500000, 71.042852 ], [ -156.582642, 71.357945 ], [ -155.069275, 71.147857 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.357945 ], [ -155.069275, 71.147857 ], [ -154.344177, 70.697228 ], [ -153.901978, 70.890583 ], [ -152.210083, 70.830248 ], [ -152.267761, 70.612614 ], [ -152.270508, 70.600758 ], [ -151.721191, 70.539543 ], [ -157.719727, 70.539543 ], [ -157.719727, 70.965968 ], [ -157.500000, 71.042852 ], [ -156.582642, 71.357945 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -85.070048 ], [ -143.401794, -85.070048 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570286 ], [ -146.250000, -84.536918 ], [ -146.469727, -84.534564 ], [ -146.469727, -83.956169 ], [ -134.780273, -83.956169 ], [ -134.780273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -83.956169 ], [ -134.780273, -85.070048 ], [ -143.401794, -85.070048 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570286 ], [ -146.250000, -84.536918 ], [ -146.469727, -84.534564 ], [ -146.469727, -83.956169 ], [ -134.780273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -84.002262 ], [ -146.469727, -84.002262 ], [ -146.469727, -82.648222 ], [ -134.780273, -82.648222 ], [ -134.780273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -82.648222 ], [ -134.780273, -84.002262 ], [ -146.469727, -84.002262 ], [ -146.469727, -82.648222 ], [ -134.780273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -82.704241 ], [ -146.469727, -82.704241 ], [ -146.469727, -81.059130 ], [ -134.780273, -81.059130 ], [ -134.780273, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -81.059130 ], [ -134.780273, -82.704241 ], [ -146.469727, -82.704241 ], [ -146.469727, -81.059130 ], [ -134.780273, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -81.127169 ], [ -146.469727, -81.127169 ], [ -146.469727, -80.358376 ], [ -146.420288, -80.337653 ], [ -146.469727, -80.280786 ], [ -146.469727, -79.129976 ], [ -134.780273, -79.129976 ], [ -134.780273, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -79.129976 ], [ -134.780273, -81.127169 ], [ -146.469727, -81.127169 ], [ -146.469727, -80.358376 ], [ -146.420288, -80.337653 ], [ -146.469727, -80.280786 ], [ -146.469727, -79.129976 ], [ -134.780273, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -79.212538 ], [ -146.469727, -79.212538 ], [ -146.469727, -76.790701 ], [ -134.780273, -76.790701 ], [ -134.780273, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -76.790701 ], [ -134.780273, -79.212538 ], [ -146.469727, -79.212538 ], [ -146.469727, -76.790701 ], [ -134.780273, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, -74.317750 ], [ -134.780273, -74.334075 ], [ -134.780273, -76.890745 ], [ -146.469727, -76.890745 ], [ -146.469727, -76.500800 ], [ -146.250000, -76.486687 ], [ -146.104431, -76.477699 ], [ -146.145630, -76.105414 ], [ -146.250000, -75.995504 ], [ -146.469727, -75.761643 ], [ -146.469727, -75.699360 ], [ -146.250000, -75.435815 ], [ -146.203308, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.324646, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.086446 ], [ -140.210266, -75.066641 ], [ -138.858948, -74.968655 ], [ -137.507629, -74.733232 ], [ -136.430969, -74.517689 ], [ -135.216980, -74.302152 ], [ -135.000000, -74.317750 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.216980, -74.302152 ], [ -135.000000, -74.317750 ], [ -134.780273, -74.334075 ], [ -134.780273, -76.890745 ], [ -146.469727, -76.890745 ], [ -146.469727, -76.500800 ], [ -146.250000, -76.486687 ], [ -146.104431, -76.477699 ], [ -146.145630, -76.105414 ], [ -146.250000, -75.995504 ], [ -146.469727, -75.761643 ], [ -146.469727, -75.699360 ], [ -146.250000, -75.435815 ], [ -146.203308, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.324646, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.086446 ], [ -140.210266, -75.066641 ], [ -138.858948, -74.968655 ], [ -137.507629, -74.733232 ], [ -136.430969, -74.517689 ], [ -135.216980, -74.302152 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 59.173113 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.326184 ], [ -135.477905, 59.788198 ], [ -136.480408, 59.464617 ], [ -137.452698, 58.906064 ], [ -138.342590, 59.562158 ], [ -139.040222, 60.000359 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.306546 ], [ -140.998535, 61.710706 ], [ -134.780273, 61.710706 ], [ -134.780273, 59.173113 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 61.710706 ], [ -134.780273, 59.173113 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.326184 ], [ -135.477905, 59.788198 ], [ -136.480408, 59.464617 ], [ -137.452698, 58.906064 ], [ -138.342590, 59.562158 ], [ -139.040222, 60.000359 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.306546 ], [ -140.998535, 61.710706 ], [ -134.780273, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.998535, 60.306546 ], [ -140.015259, 60.277962 ], [ -139.040222, 60.000359 ], [ -138.342590, 59.562158 ], [ -137.452698, 58.906064 ], [ -136.480408, 59.464617 ], [ -135.477905, 59.788198 ], [ -135.000000, 59.326184 ], [ -134.945068, 59.271495 ], [ -134.780273, 59.173113 ], [ -134.780273, 58.172151 ], [ -135.000000, 58.186633 ], [ -135.038452, 58.188080 ], [ -136.628723, 58.212685 ], [ -137.801514, 58.500870 ], [ -139.869690, 59.538495 ], [ -140.825500, 59.728716 ], [ -142.575073, 60.085393 ], [ -143.959351, 60.000359 ], [ -145.925903, 60.459926 ], [ -146.250000, 60.577524 ], [ -146.469727, 60.655686 ], [ -146.469727, 61.710706 ], [ -140.998535, 61.710706 ], [ -140.998535, 60.306546 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.998535, 61.710706 ], [ -140.998535, 60.306546 ], [ -140.015259, 60.277962 ], [ -139.040222, 60.000359 ], [ -138.342590, 59.562158 ], [ -137.452698, 58.906064 ], [ -136.480408, 59.464617 ], [ -135.477905, 59.788198 ], [ -135.000000, 59.326184 ], [ -134.945068, 59.271495 ], [ -134.780273, 59.173113 ], [ -134.780273, 58.172151 ], [ -135.000000, 58.186633 ], [ -135.038452, 58.188080 ], [ -136.628723, 58.212685 ], [ -137.801514, 58.500870 ], [ -139.869690, 59.538495 ], [ -140.825500, 59.728716 ], [ -142.575073, 60.085393 ], [ -143.959351, 60.000359 ], [ -145.925903, 60.459926 ], [ -146.250000, 60.577524 ], [ -146.469727, 60.655686 ], [ -146.469727, 61.710706 ], [ -140.998535, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 61.501734 ], [ -140.998535, 61.501734 ], [ -140.998535, 61.606396 ], [ -140.993042, 66.000150 ], [ -140.993042, 66.600676 ], [ -134.780273, 66.600676 ], [ -134.780273, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 66.600676 ], [ -134.780273, 61.501734 ], [ -140.998535, 61.501734 ], [ -140.998535, 61.606396 ], [ -140.993042, 66.000150 ], [ -140.993042, 66.600676 ], [ -134.780273, 66.600676 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.993042, 66.513260 ], [ -140.998535, 61.606396 ], [ -140.998535, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.600676 ], [ -140.993042, 66.600676 ], [ -140.993042, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.993042, 66.600676 ], [ -140.993042, 66.513260 ], [ -140.998535, 61.606396 ], [ -140.998535, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.600676 ], [ -140.993042, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.122620, 69.471042 ], [ -137.548828, 68.990910 ], [ -136.505127, 68.898154 ], [ -135.626221, 69.315410 ], [ -135.000000, 69.478746 ], [ -134.780273, 69.535478 ], [ -134.780273, 66.425537 ], [ -140.993042, 66.425537 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ], [ -139.122620, 69.471042 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.122620, 69.471042 ], [ -137.548828, 68.990910 ], [ -136.505127, 68.898154 ], [ -135.626221, 69.315410 ], [ -135.000000, 69.478746 ], [ -134.780273, 69.535478 ], [ -134.780273, 66.425537 ], [ -140.993042, 66.425537 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.250000, 70.148760 ], [ -145.692444, 70.120761 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 70.159017 ], [ -146.250000, 70.148760 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.469727, 70.159017 ], [ -146.250000, 70.148760 ], [ -145.692444, 70.120761 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 70.159017 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -85.070048 ], [ -135.219727, -85.070048 ], [ -135.219727, -83.956169 ], [ -123.530273, -83.956169 ], [ -123.530273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -83.956169 ], [ -123.530273, -85.070048 ], [ -135.219727, -85.070048 ], [ -135.219727, -83.956169 ], [ -123.530273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -84.002262 ], [ -135.219727, -84.002262 ], [ -135.219727, -82.648222 ], [ -123.530273, -82.648222 ], [ -123.530273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -82.648222 ], [ -123.530273, -84.002262 ], [ -135.219727, -84.002262 ], [ -135.219727, -82.648222 ], [ -123.530273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -82.704241 ], [ -135.219727, -82.704241 ], [ -135.219727, -81.059130 ], [ -123.530273, -81.059130 ], [ -123.530273, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -81.059130 ], [ -123.530273, -82.704241 ], [ -135.219727, -82.704241 ], [ -135.219727, -81.059130 ], [ -123.530273, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -81.127169 ], [ -135.219727, -81.127169 ], [ -135.219727, -79.129976 ], [ -123.530273, -79.129976 ], [ -123.530273, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -79.129976 ], [ -123.530273, -81.127169 ], [ -135.219727, -81.127169 ], [ -135.219727, -79.129976 ], [ -123.530273, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -79.212538 ], [ -135.219727, -79.212538 ], [ -135.219727, -76.790701 ], [ -123.530273, -76.790701 ], [ -123.530273, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -76.790701 ], [ -123.530273, -79.212538 ], [ -135.219727, -79.212538 ], [ -135.219727, -76.790701 ], [ -123.530273, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.926819, -74.478784 ], [ -129.556274, -74.458927 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.517689 ], [ -124.013672, -74.478784 ], [ -123.750000, -74.481723 ], [ -123.530273, -74.484662 ], [ -123.530273, -76.890745 ], [ -135.219727, -76.890745 ], [ -135.219727, -74.302152 ], [ -135.000000, -74.317750 ], [ -134.431458, -74.360753 ], [ -133.747559, -74.439782 ], [ -132.258911, -74.302152 ], [ -130.926819, -74.478784 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -132.258911, -74.302152 ], [ -130.926819, -74.478784 ], [ -129.556274, -74.458927 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.517689 ], [ -124.013672, -74.478784 ], [ -123.750000, -74.481723 ], [ -123.530273, -74.484662 ], [ -123.530273, -76.890745 ], [ -135.219727, -76.890745 ], [ -135.219727, -74.302152 ], [ -135.000000, -74.317750 ], [ -134.431458, -74.360753 ], [ -133.747559, -74.439782 ], [ -132.258911, -74.302152 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -125.559998, -73.480828 ], [ -124.032898, -73.872954 ], [ -124.620667, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.284851, -73.461293 ], [ -126.559753, -73.245712 ], [ -125.559998, -73.480828 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.559753, -73.245712 ], [ -125.559998, -73.480828 ], [ -124.032898, -73.872954 ], [ -124.620667, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.284851, -73.461293 ], [ -126.559753, -73.245712 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 38.741231 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.085304 ], [ -123.865356, 39.768436 ], [ -124.398193, 40.315138 ], [ -124.225159, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.183960, 41.145570 ], [ -123.530273, 41.145570 ], [ -123.530273, 38.741231 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 41.145570 ], [ -123.530273, 38.741231 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.085304 ], [ -123.865356, 39.768436 ], [ -124.398193, 40.315138 ], [ -124.225159, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.183960, 41.145570 ], [ -123.530273, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.750000, 48.832182 ], [ -123.530273, 48.538432 ], [ -123.530273, 48.507507 ], [ -123.750000, 48.445600 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.826757 ], [ -125.738525, 48.922499 ], [ -125.859375, 49.066668 ], [ -123.934021, 49.066668 ], [ -123.923035, 49.063069 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.934021, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.750000, 48.832182 ], [ -123.530273, 48.538432 ], [ -123.530273, 48.507507 ], [ -123.750000, 48.445600 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.826757 ], [ -125.738525, 48.922499 ], [ -125.859375, 49.066668 ], [ -123.934021, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.750000, 48.189895 ], [ -123.530273, 48.138600 ], [ -123.530273, 40.813809 ], [ -124.269104, 40.813809 ], [ -124.225159, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.214172, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.142761, 43.709579 ], [ -123.901062, 45.523668 ], [ -124.082336, 46.865825 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.186232 ], [ -124.568481, 48.379970 ], [ -123.750000, 48.189895 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.568481, 48.379970 ], [ -123.750000, 48.189895 ], [ -123.530273, 48.138600 ], [ -123.530273, 40.813809 ], [ -124.269104, 40.813809 ], [ -124.225159, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.214172, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.142761, 43.709579 ], [ -123.901062, 45.523668 ], [ -124.082336, 46.865825 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.186232 ], [ -124.568481, 48.379970 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.309570, 50.553580 ], [ -126.697083, 50.401515 ], [ -125.757751, 50.296358 ], [ -125.417175, 49.951220 ], [ -124.922791, 49.477048 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.711548, 48.777913 ], [ -125.480347, 48.777913 ], [ -125.656128, 48.826757 ], [ -125.738525, 48.922499 ], [ -125.955505, 49.181703 ], [ -126.850891, 49.530557 ], [ -127.032166, 49.816721 ], [ -128.059387, 49.995381 ], [ -128.446655, 50.539617 ], [ -128.358765, 50.771208 ], [ -127.309570, 50.553580 ] ] ], [ [ [ -123.530273, 49.287515 ], [ -123.750000, 49.400250 ], [ -124.911804, 49.984786 ], [ -125.625916, 50.417269 ], [ -127.435913, 50.831963 ], [ -127.993469, 51.716819 ], [ -127.850647, 52.330304 ], [ -129.130554, 52.756243 ], [ -129.306335, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.536804, 54.803851 ], [ -129.981995, 55.285372 ], [ -130.003967, 55.776573 ], [ -130.009460, 55.899956 ], [ -123.530273, 55.899956 ], [ -123.530273, 49.287515 ] ] ], [ [ [ -132.712097, 54.040038 ], [ -131.750793, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.179504, 52.180669 ], [ -131.580505, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.170474 ], [ -132.712097, 54.040038 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.553580 ], [ -126.697083, 50.401515 ], [ -125.757751, 50.296358 ], [ -125.417175, 49.951220 ], [ -124.922791, 49.477048 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.711548, 48.777913 ], [ -125.480347, 48.777913 ], [ -125.656128, 48.826757 ], [ -125.738525, 48.922499 ], [ -125.955505, 49.181703 ], [ -126.850891, 49.530557 ], [ -127.032166, 49.816721 ], [ -128.059387, 49.995381 ], [ -128.446655, 50.539617 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -123.530273, 55.899956 ], [ -123.530273, 49.287515 ], [ -123.750000, 49.400250 ], [ -124.911804, 49.984786 ], [ -125.625916, 50.417269 ], [ -127.435913, 50.831963 ], [ -127.993469, 51.716819 ], [ -127.850647, 52.330304 ], [ -129.130554, 52.756243 ], [ -129.306335, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.536804, 54.803851 ], [ -129.981995, 55.285372 ], [ -130.003967, 55.776573 ], [ -130.009460, 55.899956 ], [ -123.530273, 55.899956 ] ] ], [ [ [ -133.181763, 54.170474 ], [ -132.712097, 54.040038 ], [ -131.750793, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.179504, 52.180669 ], [ -131.580505, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.170474 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.003967, 55.776573 ], [ -129.981995, 55.285372 ], [ -130.536804, 54.803851 ], [ -131.086121, 55.180436 ], [ -131.967773, 55.499083 ], [ -132.058411, 55.776573 ], [ -132.099609, 55.899956 ], [ -130.009460, 55.899956 ], [ -130.003967, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.009460, 55.899956 ], [ -130.003967, 55.776573 ], [ -129.981995, 55.285372 ], [ -130.536804, 54.803851 ], [ -131.086121, 55.180436 ], [ -131.967773, 55.499083 ], [ -132.058411, 55.776573 ], [ -132.099609, 55.899956 ], [ -130.009460, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 55.652798 ], [ -129.998474, 55.652798 ], [ -130.003967, 55.776573 ], [ -130.009460, 55.916891 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.693873 ], [ -133.357544, 58.410345 ], [ -134.272156, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.326184 ], [ -135.219727, 59.539888 ], [ -135.219727, 61.710706 ], [ -123.530273, 61.710706 ], [ -123.530273, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 61.710706 ], [ -123.530273, 55.652798 ], [ -129.998474, 55.652798 ], [ -130.003967, 55.776573 ], [ -130.009460, 55.916891 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.693873 ], [ -133.357544, 58.410345 ], [ -134.272156, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.326184 ], [ -135.219727, 59.539888 ], [ -135.219727, 61.710706 ], [ -123.530273, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.000000, 59.326184 ], [ -134.945068, 59.271495 ], [ -134.272156, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.693873 ], [ -131.709595, 56.553428 ], [ -130.009460, 55.916891 ], [ -130.003967, 55.776573 ], [ -129.998474, 55.652798 ], [ -132.019958, 55.652798 ], [ -132.058411, 55.776573 ], [ -132.250671, 56.371335 ], [ -133.541565, 57.179436 ], [ -134.079895, 58.124320 ], [ -135.000000, 58.186633 ], [ -135.038452, 58.188080 ], [ -135.219727, 58.192424 ], [ -135.219727, 59.539888 ], [ -135.000000, 59.326184 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, 59.539888 ], [ -135.000000, 59.326184 ], [ -134.945068, 59.271495 ], [ -134.272156, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.693873 ], [ -131.709595, 56.553428 ], [ -130.009460, 55.916891 ], [ -130.003967, 55.776573 ], [ -129.998474, 55.652798 ], [ -132.019958, 55.652798 ], [ -132.058411, 55.776573 ], [ -132.250671, 56.371335 ], [ -133.541565, 57.179436 ], [ -134.079895, 58.124320 ], [ -135.000000, 58.186633 ], [ -135.038452, 58.188080 ], [ -135.219727, 58.192424 ], [ -135.219727, 59.539888 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 61.501734 ], [ -135.219727, 61.501734 ], [ -135.219727, 66.600676 ], [ -123.530273, 66.600676 ], [ -123.530273, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 66.600676 ], [ -123.530273, 61.501734 ], [ -135.219727, 61.501734 ], [ -135.219727, 66.600676 ], [ -123.530273, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -127.449646, 70.377854 ], [ -125.757751, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.291077, 69.400615 ], [ -123.750000, 69.472969 ], [ -123.530273, 69.502803 ], [ -123.530273, 66.425537 ], [ -135.219727, 66.425537 ], [ -135.219727, 69.420899 ], [ -135.000000, 69.477783 ], [ -134.414978, 69.627466 ], [ -132.931824, 69.505689 ], [ -131.432190, 69.945375 ], [ -129.795227, 70.194411 ], [ -129.108582, 69.779901 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.449646, 70.377854 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -128.139038, 70.484566 ], [ -127.449646, 70.377854 ], [ -125.757751, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.291077, 69.400615 ], [ -123.750000, 69.472969 ], [ -123.530273, 69.502803 ], [ -123.530273, 66.425537 ], [ -135.219727, 66.425537 ], [ -135.219727, 69.420899 ], [ -135.000000, 69.477783 ], [ -134.414978, 69.627466 ], [ -132.931824, 69.505689 ], [ -131.432190, 69.945375 ], [ -129.795227, 70.194411 ], [ -129.108582, 69.779901 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 71.266421 ], [ -123.620911, 71.340377 ], [ -123.750000, 71.371109 ], [ -125.930786, 71.869054 ], [ -125.502319, 72.292409 ], [ -124.807434, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.576721, 74.079925 ], [ -123.530273, 74.079925 ], [ -123.530273, 71.266421 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 74.079925 ], [ -123.530273, 71.266421 ], [ -123.620911, 71.340377 ], [ -123.750000, 71.371109 ], [ -125.930786, 71.869054 ], [ -125.502319, 72.292409 ], [ -124.807434, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.576721, 74.079925 ], [ -123.530273, 74.079925 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 73.958939 ], [ -124.384460, 73.958939 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293232 ], [ -123.750000, 74.348160 ], [ -123.530273, 74.357791 ], [ -123.530273, 73.958939 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 74.357791 ], [ -123.530273, 73.958939 ], [ -124.384460, 73.958939 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293232 ], [ -123.750000, 74.348160 ], [ -123.530273, 74.357791 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -85.070048 ], [ -123.969727, -85.070048 ], [ -123.969727, -83.956169 ], [ -112.280273, -83.956169 ], [ -112.280273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -83.956169 ], [ -112.280273, -85.070048 ], [ -123.969727, -85.070048 ], [ -123.969727, -83.956169 ], [ -112.280273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -84.002262 ], [ -123.969727, -84.002262 ], [ -123.969727, -82.648222 ], [ -112.280273, -82.648222 ], [ -112.280273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -82.648222 ], [ -112.280273, -84.002262 ], [ -123.969727, -84.002262 ], [ -123.969727, -82.648222 ], [ -112.280273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -82.704241 ], [ -123.969727, -82.704241 ], [ -123.969727, -81.059130 ], [ -112.280273, -81.059130 ], [ -112.280273, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -81.059130 ], [ -112.280273, -82.704241 ], [ -123.969727, -82.704241 ], [ -123.969727, -81.059130 ], [ -112.280273, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -81.127169 ], [ -123.969727, -81.127169 ], [ -123.969727, -79.129976 ], [ -112.280273, -79.129976 ], [ -112.280273, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -79.129976 ], [ -112.280273, -81.127169 ], [ -123.969727, -81.127169 ], [ -123.969727, -79.129976 ], [ -112.280273, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -79.212538 ], [ -123.969727, -79.212538 ], [ -123.969727, -76.790701 ], [ -112.280273, -76.790701 ], [ -112.280273, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -76.790701 ], [ -112.280273, -79.212538 ], [ -123.969727, -79.212538 ], [ -123.969727, -76.790701 ], [ -112.280273, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.318481, -74.019543 ], [ -113.299255, -74.027859 ], [ -112.947693, -74.380731 ], [ -112.500000, -74.611259 ], [ -112.299500, -74.713693 ], [ -112.280273, -74.707899 ], [ -112.280273, -76.890745 ], [ -123.969727, -76.890745 ], [ -123.969727, -74.478784 ], [ -123.750000, -74.481723 ], [ -121.074829, -74.517689 ], [ -119.704285, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027859 ], [ -116.218872, -74.243338 ], [ -115.024109, -74.067112 ], [ -114.878540, -74.019543 ], [ -114.691772, -73.958939 ], [ -113.444824, -73.958939 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -119.981689, -74.019543 ], [ -120.234375, -74.088210 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.772461, -73.958939 ], [ -119.756470, -73.958939 ], [ -119.981689, -74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.444824, -73.958939 ], [ -113.318481, -74.019543 ], [ -113.299255, -74.027859 ], [ -112.947693, -74.380731 ], [ -112.500000, -74.611259 ], [ -112.299500, -74.713693 ], [ -112.280273, -74.707899 ], [ -112.280273, -76.890745 ], [ -123.969727, -76.890745 ], [ -123.969727, -74.478784 ], [ -123.750000, -74.481723 ], [ -121.074829, -74.517689 ], [ -119.704285, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027859 ], [ -116.218872, -74.243338 ], [ -115.024109, -74.067112 ], [ -114.878540, -74.019543 ], [ -114.691772, -73.958939 ], [ -113.444824, -73.958939 ] ] ], [ [ [ -119.756470, -73.958939 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.088210 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.772461, -73.958939 ], [ -119.756470, -73.958939 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.726501, -73.480828 ], [ -119.292297, -73.833999 ], [ -119.978943, -74.019543 ], [ -120.204163, -74.079925 ], [ -120.385437, -74.079925 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.406921, -73.323918 ], [ -121.212158, -73.500341 ] ] ], [ [ [ -115.024109, -74.067112 ], [ -114.878540, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.299255, -74.027859 ], [ -113.249817, -74.079925 ], [ -115.112000, -74.079925 ], [ -115.024109, -74.067112 ] ] ], [ [ [ -117.171936, -74.079925 ], [ -117.875061, -74.079925 ], [ -117.471313, -74.027859 ], [ -117.171936, -74.079925 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.406921, -73.323918 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.726501, -73.480828 ], [ -119.292297, -73.833999 ], [ -119.978943, -74.019543 ], [ -120.204163, -74.079925 ], [ -120.385437, -74.079925 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.406921, -73.323918 ] ] ], [ [ [ -117.471313, -74.027859 ], [ -117.171936, -74.079925 ], [ -117.875061, -74.079925 ], [ -117.471313, -74.027859 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.299255, -74.027859 ], [ -113.249817, -74.079925 ], [ -115.112000, -74.079925 ], [ -115.024109, -74.067112 ], [ -114.878540, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 31.725831 ], [ -112.500000, 31.793555 ], [ -113.019104, 31.952162 ], [ -113.307495, 32.040677 ], [ -113.612366, 32.138409 ], [ -112.280273, 32.138409 ], [ -112.280273, 31.725831 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 32.138409 ], [ -112.280273, 31.725831 ], [ -112.500000, 31.793555 ], [ -113.019104, 31.952162 ], [ -113.307495, 32.040677 ], [ -113.612366, 32.138409 ], [ -112.280273, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.019104, 31.952162 ], [ -112.500000, 31.793555 ], [ -112.280273, 31.725831 ], [ -112.280273, 29.279212 ], [ -112.500000, 29.587789 ], [ -112.810364, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.150940, 31.172860 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.524703 ], [ -114.776917, 31.800558 ], [ -114.938965, 31.393502 ], [ -114.771423, 30.914007 ], [ -114.675293, 30.164126 ], [ -114.331970, 29.752455 ], [ -113.590393, 29.063372 ], [ -113.425598, 28.827832 ], [ -113.274536, 28.755620 ], [ -113.142700, 28.413144 ], [ -112.964172, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.564287 ], [ -112.458801, 27.527758 ], [ -112.280273, 27.230210 ], [ -112.280273, 25.935817 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.143111 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.640094 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.057068, 27.724867 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.200134, 28.115594 ], [ -114.164429, 28.567638 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.556734 ], [ -115.889282, 30.183122 ], [ -116.260071, 30.838573 ], [ -116.724243, 31.637014 ], [ -116.867065, 31.952162 ], [ -116.949463, 32.138409 ], [ -113.612366, 32.138409 ], [ -113.019104, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.612366, 32.138409 ], [ -113.019104, 31.952162 ], [ -112.500000, 31.793555 ], [ -112.280273, 31.725831 ], [ -112.280273, 29.279212 ], [ -112.500000, 29.587789 ], [ -112.810364, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.150940, 31.172860 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.524703 ], [ -114.776917, 31.800558 ], [ -114.938965, 31.393502 ], [ -114.771423, 30.914007 ], [ -114.675293, 30.164126 ], [ -114.331970, 29.752455 ], [ -113.590393, 29.063372 ], [ -113.425598, 28.827832 ], [ -113.274536, 28.755620 ], [ -113.142700, 28.413144 ], [ -112.964172, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.564287 ], [ -112.458801, 27.527758 ], [ -112.280273, 27.230210 ], [ -112.280273, 25.935817 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.143111 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.640094 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.057068, 27.724867 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.200134, 28.115594 ], [ -114.164429, 28.567638 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.556734 ], [ -115.889282, 30.183122 ], [ -116.260071, 30.838573 ], [ -116.724243, 31.637014 ], [ -116.867065, 31.952162 ], [ -116.949463, 32.138409 ], [ -113.612366, 32.138409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 31.765537 ], [ -112.412109, 31.765537 ], [ -113.019104, 31.952162 ], [ -113.307495, 32.040677 ], [ -114.815369, 32.525974 ], [ -114.721985, 32.722599 ], [ -115.993652, 32.613930 ], [ -117.127991, 32.537552 ], [ -117.298279, 33.047810 ], [ -117.946472, 33.621481 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.083557, 34.079962 ], [ -119.440613, 34.350239 ], [ -120.368958, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.158091 ], [ -121.714783, 36.162270 ], [ -122.549744, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.115111 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.085304 ], [ -123.865356, 39.768436 ], [ -123.969727, 39.876019 ], [ -123.969727, 41.145570 ], [ -112.280273, 41.145570 ], [ -112.280273, 31.765537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 41.145570 ], [ -112.280273, 31.765537 ], [ -112.412109, 31.765537 ], [ -113.019104, 31.952162 ], [ -113.307495, 32.040677 ], [ -114.815369, 32.525974 ], [ -114.721985, 32.722599 ], [ -115.993652, 32.613930 ], [ -117.127991, 32.537552 ], [ -117.298279, 33.047810 ], [ -117.946472, 33.621481 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.083557, 34.079962 ], [ -119.440613, 34.350239 ], [ -120.368958, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.158091 ], [ -121.714783, 36.162270 ], [ -122.549744, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.115111 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.085304 ], [ -123.865356, 39.768436 ], [ -123.969727, 39.876019 ], [ -123.969727, 41.145570 ], [ -112.280273, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.815369, 32.525974 ], [ -113.307495, 32.040677 ], [ -113.019104, 31.952162 ], [ -112.412109, 31.765537 ], [ -114.705505, 31.765537 ], [ -114.776917, 31.800558 ], [ -114.793396, 31.765537 ], [ -116.781921, 31.765537 ], [ -116.867065, 31.952162 ], [ -117.127991, 32.537552 ], [ -115.993652, 32.613930 ], [ -114.721985, 32.722599 ], [ -114.815369, 32.525974 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.721985, 32.722599 ], [ -114.815369, 32.525974 ], [ -113.307495, 32.040677 ], [ -113.019104, 31.952162 ], [ -112.412109, 31.765537 ], [ -114.705505, 31.765537 ], [ -114.776917, 31.800558 ], [ -114.793396, 31.765537 ], [ -116.781921, 31.765537 ], [ -116.867065, 31.952162 ], [ -117.127991, 32.537552 ], [ -115.993652, 32.613930 ], [ -114.721985, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.923035, 49.063069 ], [ -123.750000, 48.832182 ], [ -123.511047, 48.511146 ], [ -123.750000, 48.445600 ], [ -123.969727, 48.383618 ], [ -123.969727, 49.066668 ], [ -123.934021, 49.066668 ], [ -123.923035, 49.063069 ] ] ], [ [ [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.003646 ], [ -123.099060, 49.066668 ], [ -112.280273, 49.066668 ], [ -112.280273, 49.000042 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.934021, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.750000, 48.832182 ], [ -123.511047, 48.511146 ], [ -123.750000, 48.445600 ], [ -123.969727, 48.383618 ], [ -123.969727, 49.066668 ], [ -123.934021, 49.066668 ] ] ], [ [ [ -112.280273, 49.066668 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.003646 ], [ -123.099060, 49.066668 ], [ -112.280273, 49.066668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 40.813809 ], [ -123.969727, 40.813809 ], [ -123.969727, 45.011419 ], [ -123.901062, 45.523668 ], [ -123.969727, 46.037016 ], [ -123.969727, 48.241138 ], [ -123.750000, 48.189895 ], [ -123.121033, 48.041365 ], [ -122.588196, 47.096305 ], [ -122.341003, 47.361153 ], [ -122.500305, 48.180739 ], [ -122.810669, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ], [ -112.280273, 40.813809 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 40.813809 ], [ -123.969727, 40.813809 ], [ -123.969727, 45.011419 ], [ -123.901062, 45.523668 ], [ -123.969727, 46.037016 ], [ -123.969727, 48.241138 ], [ -123.750000, 48.189895 ], [ -123.121033, 48.041365 ], [ -122.588196, 47.096305 ], [ -122.341003, 47.361153 ], [ -122.500305, 48.180739 ], [ -122.810669, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.923035, 49.063069 ], [ -123.711548, 48.777913 ], [ -123.969727, 48.777913 ], [ -123.969727, 49.082861 ], [ -123.923035, 49.063069 ] ] ], [ [ [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.003646 ], [ -123.750000, 49.400250 ], [ -123.969727, 49.510944 ], [ -123.969727, 55.899956 ], [ -112.280273, 55.899956 ], [ -112.280273, 49.000042 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.969727, 49.082861 ], [ -123.923035, 49.063069 ], [ -123.711548, 48.777913 ], [ -123.969727, 48.777913 ], [ -123.969727, 49.082861 ] ] ], [ [ [ -112.280273, 55.899956 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.003646 ], [ -123.750000, 49.400250 ], [ -123.969727, 49.510944 ], [ -123.969727, 55.899956 ], [ -112.280273, 55.899956 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 48.777913 ], [ -122.750244, 48.777913 ], [ -122.810669, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ], [ -112.280273, 48.777913 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 48.777913 ], [ -122.750244, 48.777913 ], [ -122.810669, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 55.652798 ], [ -123.969727, 55.652798 ], [ -123.969727, 61.710706 ], [ -112.280273, 61.710706 ], [ -112.280273, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 61.710706 ], [ -112.280273, 55.652798 ], [ -123.969727, 55.652798 ], [ -123.969727, 61.710706 ], [ -112.280273, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 61.501734 ], [ -123.969727, 61.501734 ], [ -123.969727, 66.600676 ], [ -112.280273, 66.600676 ], [ -112.280273, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 66.600676 ], [ -112.280273, 61.501734 ], [ -123.969727, 61.501734 ], [ -123.969727, 66.600676 ], [ -112.280273, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.473083, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.227112, 68.841718 ], [ -115.249329, 68.906063 ], [ -113.898010, 68.399180 ], [ -115.307007, 67.903454 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.733394 ], [ -112.280273, 67.742759 ], [ -112.280273, 66.425537 ], [ -123.969727, 66.425537 ], [ -123.969727, 69.444056 ], [ -123.750000, 69.472969 ], [ -123.063354, 69.564267 ], [ -122.684326, 69.855708 ], [ -121.473083, 69.797930 ] ] ], [ [ [ -112.280273, 68.592487 ], [ -112.500000, 68.580453 ], [ -113.315735, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.221863, 69.280456 ], [ -116.109009, 69.168419 ], [ -117.342224, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.238104 ], [ -113.722229, 70.192550 ], [ -112.500000, 70.356629 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.376932 ], [ -114.351196, 70.600758 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.006897, 70.612614 ], [ -118.111267, 70.685421 ], [ -112.280273, 70.685421 ], [ -112.280273, 68.592487 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.684326, 69.855708 ], [ -121.473083, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.227112, 68.841718 ], [ -115.249329, 68.906063 ], [ -113.898010, 68.399180 ], [ -115.307007, 67.903454 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.733394 ], [ -112.280273, 67.742759 ], [ -112.280273, 66.425537 ], [ -123.969727, 66.425537 ], [ -123.969727, 69.444056 ], [ -123.750000, 69.472969 ], [ -123.063354, 69.564267 ], [ -122.684326, 69.855708 ] ] ], [ [ [ -112.280273, 70.685421 ], [ -112.280273, 68.592487 ], [ -112.500000, 68.580453 ], [ -113.315735, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.221863, 69.280456 ], [ -116.109009, 69.168419 ], [ -117.342224, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.238104 ], [ -113.722229, 70.192550 ], [ -112.500000, 70.356629 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.376932 ], [ -114.351196, 70.600758 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.006897, 70.612614 ], [ -118.111267, 70.685421 ], [ -112.280273, 70.685421 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.167175, 73.121756 ], [ -114.667053, 72.653038 ], [ -112.500000, 72.948653 ], [ -112.442322, 72.955900 ], [ -112.280273, 72.897841 ], [ -112.280273, 70.539543 ], [ -113.845825, 70.539543 ], [ -114.351196, 70.600758 ], [ -115.999146, 70.539543 ], [ -117.778931, 70.539543 ], [ -117.905273, 70.541373 ], [ -118.006897, 70.612614 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.402161, 71.558823 ], [ -118.564453, 72.308275 ], [ -117.866821, 72.706189 ], [ -115.191650, 73.315246 ], [ -114.167175, 73.121756 ] ] ], [ [ [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.513000, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.220886, 72.520707 ], [ -120.462341, 71.820272 ], [ -120.462341, 71.384265 ], [ -123.093567, 70.902268 ], [ -123.620911, 71.340377 ], [ -123.750000, 71.371109 ], [ -123.969727, 71.421929 ], [ -123.969727, 73.660274 ], [ -123.942261, 73.680352 ], [ -123.969727, 73.698093 ], [ -123.969727, 74.079925 ], [ -117.202148, 74.079925 ], [ -116.998901, 74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.191650, 73.315246 ], [ -114.167175, 73.121756 ], [ -114.667053, 72.653038 ], [ -112.500000, 72.948653 ], [ -112.442322, 72.955900 ], [ -112.280273, 72.897841 ], [ -112.280273, 70.539543 ], [ -113.845825, 70.539543 ], [ -114.351196, 70.600758 ], [ -115.999146, 70.539543 ], [ -117.778931, 70.539543 ], [ -117.905273, 70.541373 ], [ -118.006897, 70.612614 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.402161, 71.558823 ], [ -118.564453, 72.308275 ], [ -117.866821, 72.706189 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.202148, 74.079925 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.513000, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.220886, 72.520707 ], [ -120.462341, 71.820272 ], [ -120.462341, 71.384265 ], [ -123.093567, 70.902268 ], [ -123.620911, 71.340377 ], [ -123.750000, 71.371109 ], [ -123.969727, 71.421929 ], [ -123.969727, 73.660274 ], [ -123.942261, 73.680352 ], [ -123.969727, 73.698093 ], [ -123.969727, 74.079925 ], [ -117.202148, 74.079925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.110779, 74.241846 ], [ -117.556458, 74.185806 ], [ -116.998901, 74.019543 ], [ -116.795654, 73.958939 ], [ -123.969727, 73.958939 ], [ -123.969727, 74.337783 ], [ -123.750000, 74.348160 ], [ -121.539001, 74.449358 ], [ -120.110779, 74.241846 ] ] ], [ [ [ -116.312256, 75.043975 ], [ -117.713013, 75.222263 ], [ -116.347961, 76.199417 ], [ -115.405884, 76.478984 ], [ -112.590637, 76.141643 ], [ -112.500000, 76.112667 ], [ -112.280273, 76.040630 ], [ -112.280273, 75.150636 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.043975 ] ] ], [ [ [ -116.336975, 76.877034 ], [ -116.419373, 76.840816 ], [ -117.108765, 76.530261 ], [ -118.042603, 76.481552 ], [ -119.902039, 76.053875 ], [ -121.500549, 75.900140 ], [ -122.857361, 76.116622 ], [ -121.217651, 76.840816 ], [ -121.159973, 76.864556 ], [ -121.080322, 76.890745 ], [ -116.336975, 76.890745 ], [ -116.336975, 76.877034 ] ] ], [ [ [ -112.280273, 74.416926 ], [ -112.500000, 74.413974 ], [ -113.744202, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014886 ], [ -112.280273, 75.061686 ], [ -112.280273, 74.416926 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.539001, 74.449358 ], [ -120.110779, 74.241846 ], [ -117.556458, 74.185806 ], [ -116.998901, 74.019543 ], [ -116.795654, 73.958939 ], [ -123.969727, 73.958939 ], [ -123.969727, 74.337783 ], [ -123.750000, 74.348160 ], [ -121.539001, 74.449358 ] ] ], [ [ [ -112.280273, 75.150636 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.043975 ], [ -117.713013, 75.222263 ], [ -116.347961, 76.199417 ], [ -115.405884, 76.478984 ], [ -112.590637, 76.141643 ], [ -112.500000, 76.112667 ], [ -112.280273, 76.040630 ], [ -112.280273, 75.150636 ] ] ], [ [ [ -116.336975, 76.890745 ], [ -116.336975, 76.877034 ], [ -116.419373, 76.840816 ], [ -117.108765, 76.530261 ], [ -118.042603, 76.481552 ], [ -119.902039, 76.053875 ], [ -121.500549, 75.900140 ], [ -122.857361, 76.116622 ], [ -121.217651, 76.840816 ], [ -121.159973, 76.864556 ], [ -121.080322, 76.890745 ], [ -116.336975, 76.890745 ] ] ], [ [ [ -112.280273, 75.061686 ], [ -112.280273, 74.416926 ], [ -112.500000, 74.413974 ], [ -113.744202, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014886 ], [ -112.280273, 75.061686 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -116.336975, 76.877034 ], [ -116.419373, 76.840816 ], [ -116.531982, 76.790701 ], [ -121.333008, 76.790701 ], [ -121.217651, 76.840816 ], [ -121.159973, 76.864556 ], [ -119.105530, 77.512436 ], [ -117.570190, 77.498770 ], [ -116.199646, 77.645360 ], [ -116.336975, 76.877034 ] ] ], [ [ [ -112.280273, 77.460066 ], [ -112.500000, 77.508278 ], [ -113.535461, 77.732617 ], [ -112.725220, 78.051190 ], [ -112.500000, 78.067669 ], [ -112.280273, 78.082992 ], [ -112.280273, 77.460066 ] ] ], [ [ [ -112.280273, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.280273, 78.624048 ], [ -112.280273, 78.408058 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -116.199646, 77.645360 ], [ -116.336975, 76.877034 ], [ -116.419373, 76.840816 ], [ -116.531982, 76.790701 ], [ -121.333008, 76.790701 ], [ -121.217651, 76.840816 ], [ -121.159973, 76.864556 ], [ -119.105530, 77.512436 ], [ -117.570190, 77.498770 ], [ -116.199646, 77.645360 ] ] ], [ [ [ -112.280273, 78.082992 ], [ -112.280273, 77.460066 ], [ -112.500000, 77.508278 ], [ -113.535461, 77.732617 ], [ -112.725220, 78.051190 ], [ -112.500000, 78.067669 ], [ -112.280273, 78.082992 ] ] ], [ [ [ -112.500000, 78.558854 ], [ -112.280273, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558854 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -85.070048 ], [ -112.719727, -85.070048 ], [ -112.719727, -83.956169 ], [ -101.030273, -83.956169 ], [ -101.030273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -83.956169 ], [ -101.030273, -85.070048 ], [ -112.719727, -85.070048 ], [ -112.719727, -83.956169 ], [ -101.030273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -84.002262 ], [ -112.719727, -84.002262 ], [ -112.719727, -82.648222 ], [ -101.030273, -82.648222 ], [ -101.030273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -82.648222 ], [ -101.030273, -84.002262 ], [ -112.719727, -84.002262 ], [ -112.719727, -82.648222 ], [ -101.030273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -82.704241 ], [ -112.719727, -82.704241 ], [ -112.719727, -81.059130 ], [ -101.030273, -81.059130 ], [ -101.030273, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -81.059130 ], [ -101.030273, -82.704241 ], [ -112.719727, -82.704241 ], [ -112.719727, -81.059130 ], [ -101.030273, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -81.127169 ], [ -112.719727, -81.127169 ], [ -112.719727, -79.129976 ], [ -101.030273, -79.129976 ], [ -101.030273, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -79.129976 ], [ -101.030273, -81.127169 ], [ -112.719727, -81.127169 ], [ -112.719727, -79.129976 ], [ -101.030273, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -79.212538 ], [ -112.719727, -79.212538 ], [ -112.719727, -76.790701 ], [ -101.030273, -76.790701 ], [ -101.030273, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -76.790701 ], [ -101.030273, -79.212538 ], [ -112.719727, -79.212538 ], [ -112.719727, -76.790701 ], [ -101.030273, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -101.252747, -74.185058 ], [ -102.546387, -74.106272 ], [ -102.680969, -74.019543 ], [ -102.774353, -73.958939 ], [ -101.030273, -73.958939 ], [ -101.030273, -74.345937 ], [ -101.250000, -74.186555 ], [ -101.252747, -74.185058 ] ] ], [ [ [ -101.030273, -76.890745 ], [ -112.719727, -76.890745 ], [ -112.719727, -74.497881 ], [ -112.500000, -74.611259 ], [ -112.299500, -74.713693 ], [ -111.261292, -74.419877 ], [ -110.066528, -74.792423 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.878235, -74.948697 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -101.250000, -75.224364 ], [ -101.030273, -75.252357 ], [ -101.030273, -76.890745 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -111.261292, -74.419877 ], [ -110.066528, -74.792423 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.878235, -74.948697 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -101.250000, -75.224364 ], [ -101.030273, -75.252357 ], [ -101.030273, -76.890745 ], [ -112.719727, -76.890745 ], [ -112.719727, -74.497881 ], [ -112.500000, -74.611259 ], [ -112.299500, -74.713693 ], [ -111.261292, -74.419877 ] ] ], [ [ [ -101.030273, -73.958939 ], [ -101.030273, -74.345937 ], [ -101.250000, -74.186555 ], [ -101.252747, -74.185058 ], [ -102.546387, -74.106272 ], [ -102.680969, -74.019543 ], [ -102.774353, -73.958939 ], [ -101.030273, -73.958939 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -101.250000, -72.796588 ], [ -101.030273, -72.786025 ], [ -101.030273, -74.079925 ], [ -102.587585, -74.079925 ], [ -102.680969, -74.019543 ], [ -103.114929, -73.734289 ], [ -103.329163, -73.361708 ], [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ] ] ], [ [ [ -101.250000, -71.766208 ], [ -101.030273, -71.789397 ], [ -101.030273, -72.453760 ], [ -101.250000, -72.411482 ], [ -101.802063, -72.304936 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ], [ -101.250000, -71.766208 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -101.250000, -72.796588 ], [ -101.030273, -72.786025 ], [ -101.030273, -74.079925 ], [ -102.587585, -74.079925 ], [ -102.680969, -74.019543 ], [ -103.114929, -73.734289 ], [ -103.329163, -73.361708 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -101.250000, -71.766208 ], [ -101.030273, -71.789397 ], [ -101.030273, -72.453760 ], [ -101.250000, -72.411482 ], [ -101.802063, -72.304936 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 17.287709 ], [ -101.250000, 17.413546 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.918636 ], [ -102.480469, 17.976121 ], [ -103.502197, 18.294558 ], [ -103.919678, 18.750310 ], [ -104.993591, 19.316327 ], [ -105.493469, 19.947533 ], [ -105.732422, 20.434734 ], [ -105.400085, 20.532505 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.076812 ], [ -105.268250, 21.422390 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.666504, 22.146708 ], [ -101.030273, 22.146708 ], [ -101.030273, 17.287709 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 22.146708 ], [ -101.030273, 17.287709 ], [ -101.250000, 17.413546 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.918636 ], [ -102.480469, 17.976121 ], [ -103.502197, 18.294558 ], [ -103.919678, 18.750310 ], [ -104.993591, 19.316327 ], [ -105.493469, 19.947533 ], [ -105.732422, 20.434734 ], [ -105.400085, 20.532505 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.076812 ], [ -105.268250, 21.422390 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.666504, 22.146708 ], [ -101.030273, 22.146708 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 29.422853 ], [ -101.250000, 29.547177 ], [ -101.664734, 29.781066 ], [ -102.480469, 29.761993 ], [ -103.112183, 28.972104 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.707947, 30.123749 ], [ -105.037537, 30.645001 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.509705, 31.756196 ], [ -108.240051, 31.756196 ], [ -108.242798, 31.344254 ], [ -109.036560, 31.344254 ], [ -111.025085, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.719727, 31.861230 ], [ -112.719727, 32.138409 ], [ -101.030273, 32.138409 ], [ -101.030273, 29.422853 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 32.138409 ], [ -101.030273, 29.422853 ], [ -101.250000, 29.547177 ], [ -101.664734, 29.781066 ], [ -102.480469, 29.761993 ], [ -103.112183, 28.972104 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.707947, 30.123749 ], [ -105.037537, 30.645001 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.509705, 31.756196 ], [ -108.240051, 31.756196 ], [ -108.242798, 31.344254 ], [ -109.036560, 31.344254 ], [ -111.025085, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.719727, 31.861230 ], [ -112.719727, 32.138409 ], [ -101.030273, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.500000, 31.793555 ], [ -111.025085, 31.334871 ], [ -109.036560, 31.344254 ], [ -108.242798, 31.344254 ], [ -108.240051, 31.756196 ], [ -106.509705, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.037537, 30.645001 ], [ -104.707947, 30.123749 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.972104 ], [ -102.480469, 29.761993 ], [ -101.664734, 29.781066 ], [ -101.250000, 29.547177 ], [ -101.030273, 29.422853 ], [ -101.030273, 21.739091 ], [ -105.507202, 21.739091 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.693970, 22.271306 ], [ -106.029053, 22.776182 ], [ -106.910706, 23.770264 ], [ -107.915955, 24.549622 ], [ -108.402100, 25.172631 ], [ -109.261780, 25.582085 ], [ -109.445801, 25.827089 ], [ -109.291992, 26.443525 ], [ -109.802856, 26.676913 ], [ -110.393372, 27.164252 ], [ -110.643311, 27.860932 ], [ -111.181641, 27.943460 ], [ -111.761169, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.272034, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.719727, 29.895425 ], [ -112.719727, 31.861230 ], [ -112.500000, 31.793555 ] ] ], [ [ [ -112.500000, 27.564287 ], [ -112.458801, 27.527758 ], [ -112.247314, 27.174026 ], [ -111.618347, 26.664641 ], [ -111.286011, 25.733107 ], [ -110.989380, 25.296854 ], [ -110.711975, 24.826625 ], [ -110.657043, 24.299544 ], [ -110.173645, 24.266997 ], [ -109.772644, 23.812988 ], [ -109.410095, 23.364950 ], [ -109.434814, 23.185813 ], [ -109.855042, 22.819226 ], [ -110.033569, 22.824289 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.673279, 24.484649 ], [ -112.184143, 24.739348 ], [ -112.151184, 25.470554 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.143111 ], [ -112.719727, 26.286028 ], [ -112.719727, 27.746746 ], [ -112.500000, 27.564287 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.719727, 29.895425 ], [ -112.719727, 31.861230 ], [ -112.500000, 31.793555 ], [ -111.025085, 31.334871 ], [ -109.036560, 31.344254 ], [ -108.242798, 31.344254 ], [ -108.240051, 31.756196 ], [ -106.509705, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.037537, 30.645001 ], [ -104.707947, 30.123749 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.972104 ], [ -102.480469, 29.761993 ], [ -101.664734, 29.781066 ], [ -101.250000, 29.547177 ], [ -101.030273, 29.422853 ], [ -101.030273, 21.739091 ], [ -105.507202, 21.739091 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.693970, 22.271306 ], [ -106.029053, 22.776182 ], [ -106.910706, 23.770264 ], [ -107.915955, 24.549622 ], [ -108.402100, 25.172631 ], [ -109.261780, 25.582085 ], [ -109.445801, 25.827089 ], [ -109.291992, 26.443525 ], [ -109.802856, 26.676913 ], [ -110.393372, 27.164252 ], [ -110.643311, 27.860932 ], [ -111.181641, 27.943460 ], [ -111.761169, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.272034, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.719727, 29.895425 ] ] ], [ [ [ -112.719727, 27.746746 ], [ -112.500000, 27.564287 ], [ -112.458801, 27.527758 ], [ -112.247314, 27.174026 ], [ -111.618347, 26.664641 ], [ -111.286011, 25.733107 ], [ -110.989380, 25.296854 ], [ -110.711975, 24.826625 ], [ -110.657043, 24.299544 ], [ -110.173645, 24.266997 ], [ -109.772644, 23.812988 ], [ -109.410095, 23.364950 ], [ -109.434814, 23.185813 ], [ -109.855042, 22.819226 ], [ -110.033569, 22.824289 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.673279, 24.484649 ], [ -112.184143, 24.739348 ], [ -112.151184, 25.470554 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.143111 ], [ -112.719727, 26.286028 ], [ -112.719727, 27.746746 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 31.765537 ], [ -112.412109, 31.765537 ], [ -112.719727, 31.861230 ], [ -112.719727, 41.145570 ], [ -101.030273, 41.145570 ], [ -101.030273, 31.765537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 41.145570 ], [ -101.030273, 31.765537 ], [ -112.412109, 31.765537 ], [ -112.719727, 31.861230 ], [ -112.719727, 41.145570 ], [ -101.030273, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.412109, 31.765537 ], [ -112.719727, 31.765537 ], [ -112.719727, 31.861230 ], [ -112.412109, 31.765537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.719727, 31.861230 ], [ -112.412109, 31.765537 ], [ -112.719727, 31.765537 ], [ -112.719727, 31.861230 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 49.066668 ], [ -101.030273, 49.066668 ], [ -101.030273, 49.000042 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.066668 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 49.066668 ], [ -101.030273, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 40.813809 ], [ -112.719727, 40.813809 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ], [ -101.030273, 40.813809 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 40.813809 ], [ -112.719727, 40.813809 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 55.899956 ], [ -101.030273, 55.899956 ], [ -101.030273, 49.000042 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 55.899956 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 55.899956 ], [ -101.030273, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 48.777913 ], [ -112.719727, 48.777913 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ], [ -101.030273, 48.777913 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 48.777913 ], [ -112.719727, 48.777913 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 55.652798 ], [ -112.719727, 55.652798 ], [ -112.719727, 61.710706 ], [ -101.030273, 61.710706 ], [ -101.030273, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 61.710706 ], [ -101.030273, 55.652798 ], [ -112.719727, 55.652798 ], [ -112.719727, 61.710706 ], [ -101.030273, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 61.501734 ], [ -112.719727, 61.501734 ], [ -112.719727, 66.600676 ], [ -101.030273, 66.600676 ], [ -101.030273, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 66.600676 ], [ -101.030273, 61.501734 ], [ -112.719727, 61.501734 ], [ -112.719727, 66.600676 ], [ -101.030273, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.345154, 68.561388 ], [ -104.339905, 68.018882 ], [ -103.222046, 68.097907 ], [ -101.455994, 67.647899 ], [ -101.250000, 67.669824 ], [ -101.030273, 67.691728 ], [ -101.030273, 66.425537 ], [ -112.719727, 66.425537 ], [ -112.719727, 67.724026 ], [ -112.500000, 67.733394 ], [ -110.799866, 67.806132 ], [ -109.948425, 67.981843 ], [ -108.882751, 67.382150 ], [ -107.795105, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.168640, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.152649, 68.800041 ], [ -105.345154, 68.561388 ] ] ], [ [ [ -103.172607, 70.612614 ], [ -102.788086, 70.498324 ], [ -101.250000, 70.096464 ], [ -101.030273, 70.037473 ], [ -101.030273, 69.828260 ], [ -101.090698, 69.585354 ], [ -101.250000, 69.577689 ], [ -102.733154, 69.504727 ], [ -102.095947, 69.120506 ], [ -102.431030, 68.753310 ], [ -104.241028, 68.910017 ], [ -105.960388, 69.180137 ], [ -107.124939, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.535950, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.719727, 68.568414 ], [ -112.719727, 70.327062 ], [ -112.500000, 70.356629 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.376932 ], [ -112.719727, 70.403663 ], [ -112.719727, 70.685421 ], [ -103.417053, 70.685421 ], [ -103.172607, 70.612614 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -106.152649, 68.800041 ], [ -105.345154, 68.561388 ], [ -104.339905, 68.018882 ], [ -103.222046, 68.097907 ], [ -101.455994, 67.647899 ], [ -101.250000, 67.669824 ], [ -101.030273, 67.691728 ], [ -101.030273, 66.425537 ], [ -112.719727, 66.425537 ], [ -112.719727, 67.724026 ], [ -112.500000, 67.733394 ], [ -110.799866, 67.806132 ], [ -109.948425, 67.981843 ], [ -108.882751, 67.382150 ], [ -107.795105, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.168640, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.152649, 68.800041 ] ] ], [ [ [ -103.417053, 70.685421 ], [ -103.172607, 70.612614 ], [ -102.788086, 70.498324 ], [ -101.250000, 70.096464 ], [ -101.030273, 70.037473 ], [ -101.030273, 69.828260 ], [ -101.090698, 69.585354 ], [ -101.250000, 69.577689 ], [ -102.733154, 69.504727 ], [ -102.095947, 69.120506 ], [ -102.431030, 68.753310 ], [ -104.241028, 68.910017 ], [ -105.960388, 69.180137 ], [ -107.124939, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.535950, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.719727, 68.568414 ], [ -112.719727, 70.327062 ], [ -112.500000, 70.356629 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.376932 ], [ -112.719727, 70.403663 ], [ -112.719727, 70.685421 ], [ -103.417053, 70.685421 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -106.523438, 73.076242 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699056 ], [ -104.466248, 70.993717 ], [ -103.172607, 70.612614 ], [ -102.928162, 70.539543 ], [ -112.719727, 70.539543 ], [ -112.719727, 72.918829 ], [ -112.500000, 72.948653 ], [ -112.442322, 72.955900 ], [ -111.052551, 72.450448 ], [ -109.920959, 72.961534 ], [ -109.009094, 72.633374 ], [ -108.190613, 71.651562 ], [ -107.687988, 72.066302 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.076242 ] ] ], [ [ [ -101.541138, 73.360135 ], [ -101.250000, 73.480828 ], [ -101.030273, 73.571178 ], [ -101.030273, 73.060244 ], [ -101.250000, 73.190200 ], [ -101.541138, 73.360135 ] ] ], [ [ [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.460511 ], [ -106.600342, 73.600670 ], [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ] ] ], [ [ [ -101.030273, 72.057842 ], [ -101.250000, 72.126250 ], [ -102.502441, 72.510804 ], [ -102.480469, 72.830674 ], [ -101.250000, 72.755925 ], [ -101.030273, 72.742892 ], [ -101.030273, 72.057842 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.076242 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699056 ], [ -104.466248, 70.993717 ], [ -103.172607, 70.612614 ], [ -102.928162, 70.539543 ], [ -112.719727, 70.539543 ], [ -112.719727, 72.918829 ], [ -112.500000, 72.948653 ], [ -112.442322, 72.955900 ], [ -111.052551, 72.450448 ], [ -109.920959, 72.961534 ], [ -109.009094, 72.633374 ], [ -108.190613, 71.651562 ], [ -107.687988, 72.066302 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -102.480469, 72.830674 ], [ -101.250000, 72.755925 ], [ -101.030273, 72.742892 ], [ -101.030273, 72.057842 ], [ -101.250000, 72.126250 ], [ -102.502441, 72.510804 ], [ -102.480469, 72.830674 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.460511 ], [ -106.600342, 73.600670 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -101.030273, 73.571178 ], [ -101.030273, 73.060244 ], [ -101.250000, 73.190200 ], [ -101.541138, 73.360135 ], [ -101.250000, 73.480828 ], [ -101.030273, 73.571178 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -108.550415, 76.678519 ], [ -108.212585, 76.202037 ], [ -107.819824, 75.845840 ], [ -106.929932, 76.013439 ], [ -105.883484, 75.969558 ], [ -105.707703, 75.479952 ], [ -106.314697, 75.005651 ], [ -109.701233, 74.850672 ], [ -112.225342, 74.417664 ], [ -112.719727, 74.411022 ], [ -112.719727, 74.968655 ], [ -112.500000, 75.014886 ], [ -111.796875, 75.162597 ], [ -112.500000, 75.145003 ], [ -112.719727, 75.139369 ], [ -112.719727, 76.158080 ], [ -112.590637, 76.141643 ], [ -112.500000, 76.112008 ], [ -110.816345, 75.549340 ], [ -109.069519, 75.473753 ], [ -110.497742, 76.430093 ], [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ] ] ], [ [ [ -101.030273, 75.633403 ], [ -101.250000, 75.623177 ], [ -102.502441, 75.564411 ], [ -102.565613, 76.336983 ], [ -101.491699, 76.305807 ], [ -101.250000, 76.361614 ], [ -101.030273, 76.411392 ], [ -101.030273, 75.633403 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.212585, 76.202037 ], [ -107.819824, 75.845840 ], [ -106.929932, 76.013439 ], [ -105.883484, 75.969558 ], [ -105.707703, 75.479952 ], [ -106.314697, 75.005651 ], [ -109.701233, 74.850672 ], [ -112.225342, 74.417664 ], [ -112.719727, 74.411022 ], [ -112.719727, 74.968655 ], [ -112.500000, 75.014886 ], [ -111.796875, 75.162597 ], [ -112.500000, 75.145003 ], [ -112.719727, 75.139369 ], [ -112.719727, 76.158080 ], [ -112.590637, 76.141643 ], [ -112.500000, 76.112008 ], [ -110.816345, 75.549340 ], [ -109.069519, 75.473753 ], [ -110.497742, 76.430093 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -101.030273, 76.411392 ], [ -101.030273, 75.633403 ], [ -101.250000, 75.623177 ], [ -102.502441, 75.564411 ], [ -102.565613, 76.336983 ], [ -101.491699, 76.305807 ], [ -101.250000, 76.361614 ], [ -101.030273, 76.411392 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -109.550171, 76.790701 ], [ -109.594116, 76.790701 ], [ -109.583130, 76.794466 ], [ -109.550171, 76.790701 ] ] ], [ [ [ -109.855042, 77.996477 ], [ -110.187378, 77.697553 ], [ -112.052307, 77.409277 ], [ -112.500000, 77.508278 ], [ -112.719727, 77.556308 ], [ -112.719727, 78.051758 ], [ -112.500000, 78.067101 ], [ -111.266785, 78.153115 ], [ -109.855042, 77.996477 ] ] ], [ [ [ -103.612061, 79.171335 ], [ -103.529663, 79.165657 ], [ -101.250000, 78.858909 ], [ -101.030273, 78.829150 ], [ -101.030273, 78.001045 ], [ -101.250000, 78.015882 ], [ -101.304932, 78.019304 ], [ -102.950134, 78.343308 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.422058, 78.918720 ], [ -105.471497, 79.171335 ], [ -105.479736, 79.212538 ], [ -104.205322, 79.212538 ], [ -103.612061, 79.171335 ] ] ], [ [ [ -110.964661, 78.804647 ], [ -109.665527, 78.602357 ], [ -110.882263, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558854 ], [ -111.500244, 78.850415 ], [ -110.964661, 78.804647 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -109.583130, 76.794466 ], [ -109.550171, 76.790701 ], [ -109.594116, 76.790701 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -111.266785, 78.153115 ], [ -109.855042, 77.996477 ], [ -110.187378, 77.697553 ], [ -112.052307, 77.409277 ], [ -112.500000, 77.508278 ], [ -112.719727, 77.556308 ], [ -112.719727, 78.051758 ], [ -112.500000, 78.067101 ], [ -111.266785, 78.153115 ] ] ], [ [ [ -104.205322, 79.212538 ], [ -103.612061, 79.171335 ], [ -103.529663, 79.165657 ], [ -101.250000, 78.858909 ], [ -101.030273, 78.829150 ], [ -101.030273, 78.001045 ], [ -101.250000, 78.015882 ], [ -101.304932, 78.019304 ], [ -102.950134, 78.343308 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.422058, 78.918720 ], [ -105.471497, 79.171335 ], [ -105.479736, 79.212538 ], [ -104.205322, 79.212538 ] ] ], [ [ [ -111.500244, 78.850415 ], [ -110.964661, 78.804647 ], [ -109.665527, 78.602357 ], [ -110.882263, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558854 ], [ -111.500244, 78.850415 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.612061, 79.171335 ], [ -103.529663, 79.165657 ], [ -103.263245, 79.129976 ], [ -105.463257, 79.129976 ], [ -105.471497, 79.171335 ], [ -105.493469, 79.301620 ], [ -103.612061, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -105.493469, 79.301620 ], [ -103.612061, 79.171335 ], [ -103.529663, 79.165657 ], [ -103.263245, 79.129976 ], [ -105.463257, 79.129976 ], [ -105.471497, 79.171335 ], [ -105.493469, 79.301620 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -85.070048 ], [ -101.469727, -85.070048 ], [ -101.469727, -83.956169 ], [ -89.780273, -83.956169 ], [ -89.780273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -83.956169 ], [ -89.780273, -85.070048 ], [ -101.469727, -85.070048 ], [ -101.469727, -83.956169 ], [ -89.780273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -84.002262 ], [ -101.469727, -84.002262 ], [ -101.469727, -82.648222 ], [ -89.780273, -82.648222 ], [ -89.780273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -82.648222 ], [ -89.780273, -84.002262 ], [ -101.469727, -84.002262 ], [ -101.469727, -82.648222 ], [ -89.780273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -82.704241 ], [ -101.469727, -82.704241 ], [ -101.469727, -81.059130 ], [ -89.780273, -81.059130 ], [ -89.780273, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -81.059130 ], [ -89.780273, -82.704241 ], [ -101.469727, -82.704241 ], [ -101.469727, -81.059130 ], [ -89.780273, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -81.127169 ], [ -101.469727, -81.127169 ], [ -101.469727, -79.129976 ], [ -89.780273, -79.129976 ], [ -89.780273, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -79.129976 ], [ -89.780273, -81.127169 ], [ -101.469727, -81.127169 ], [ -101.469727, -79.129976 ], [ -89.780273, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -79.212538 ], [ -101.469727, -79.212538 ], [ -101.469727, -76.790701 ], [ -89.780273, -76.790701 ], [ -89.780273, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -76.790701 ], [ -89.780273, -79.212538 ], [ -101.469727, -79.212538 ], [ -101.469727, -76.790701 ], [ -89.780273, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -76.890745 ], [ -101.469727, -76.890745 ], [ -101.469727, -75.195618 ], [ -101.250000, -75.224364 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.763855, -74.537473 ], [ -101.250000, -74.186555 ], [ -101.252747, -74.185058 ], [ -101.469727, -74.171579 ], [ -101.469727, -73.958939 ], [ -89.780273, -73.958939 ], [ -89.780273, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -73.958939 ], [ -89.780273, -76.890745 ], [ -101.469727, -76.890745 ], [ -101.469727, -75.195618 ], [ -101.250000, -75.224364 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.763855, -74.537473 ], [ -101.250000, -74.186555 ], [ -101.252747, -74.185058 ], [ -101.469727, -74.171579 ], [ -101.469727, -73.958939 ], [ -89.780273, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -99.137878, -72.910759 ], [ -98.118896, -73.205286 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.616172 ], [ -95.045471, -73.479266 ], [ -93.674927, -73.283674 ], [ -92.441711, -73.165560 ], [ -91.422729, -73.400984 ], [ -90.090637, -73.322341 ], [ -90.000000, -73.243337 ], [ -89.780273, -73.050639 ], [ -89.780273, -74.079925 ], [ -101.469727, -74.079925 ], [ -101.469727, -72.806334 ], [ -101.250000, -72.796588 ], [ -100.313416, -72.754296 ], [ -99.137878, -72.910759 ] ] ], [ [ [ -101.250000, -71.766208 ], [ -100.431519, -71.854518 ], [ -98.984070, -71.933048 ], [ -97.885437, -72.070530 ], [ -96.789551, -71.952629 ], [ -96.201782, -72.520707 ], [ -96.984558, -72.442164 ], [ -98.198547, -72.481891 ], [ -99.434509, -72.442164 ], [ -100.785828, -72.500896 ], [ -101.250000, -72.411482 ], [ -101.469727, -72.369105 ], [ -101.469727, -71.742130 ], [ -101.250000, -71.766208 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -100.313416, -72.754296 ], [ -99.137878, -72.910759 ], [ -98.118896, -73.205286 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.616172 ], [ -95.045471, -73.479266 ], [ -93.674927, -73.283674 ], [ -92.441711, -73.165560 ], [ -91.422729, -73.400984 ], [ -90.090637, -73.322341 ], [ -90.000000, -73.243337 ], [ -89.780273, -73.050639 ], [ -89.780273, -74.079925 ], [ -101.469727, -74.079925 ], [ -101.469727, -72.806334 ], [ -101.250000, -72.796588 ], [ -100.313416, -72.754296 ] ] ], [ [ [ -101.469727, -71.742130 ], [ -101.250000, -71.766208 ], [ -100.431519, -71.854518 ], [ -98.984070, -71.933048 ], [ -97.885437, -72.070530 ], [ -96.789551, -71.952629 ], [ -96.201782, -72.520707 ], [ -96.984558, -72.442164 ], [ -98.198547, -72.481891 ], [ -99.434509, -72.442164 ], [ -100.785828, -72.500896 ], [ -101.250000, -72.411482 ], [ -101.469727, -72.369105 ], [ -101.469727, -71.742130 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.391052, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.893306 ], [ -96.292419, 19.321511 ], [ -95.902405, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.551331, 18.424896 ], [ -92.787781, 18.526492 ], [ -92.037964, 18.706090 ], [ -91.408997, 18.877702 ], [ -90.774536, 19.285221 ], [ -90.535583, 19.867477 ], [ -90.453186, 20.709877 ], [ -90.280151, 20.999907 ], [ -90.000000, 21.110125 ], [ -89.780273, 21.194655 ], [ -89.780273, 17.819301 ], [ -90.000000, 17.821916 ], [ -91.002502, 17.819301 ], [ -91.002502, 17.256236 ], [ -91.455688, 17.253613 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.601501, 16.472963 ], [ -90.439453, 16.412375 ], [ -90.466919, 16.069568 ], [ -91.749573, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.205505, 14.830646 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.875427, 15.940202 ], [ -94.693909, 16.201488 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.752606 ], [ -96.558838, 15.654776 ], [ -97.264709, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.698181, 16.707232 ], [ -100.829773, 17.172283 ], [ -101.250000, 17.413546 ], [ -101.469727, 17.539297 ], [ -101.469727, 22.146708 ], [ -97.781067, 22.146708 ], [ -97.715149, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.781067, 22.146708 ], [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.391052, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.893306 ], [ -96.292419, 19.321511 ], [ -95.902405, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.551331, 18.424896 ], [ -92.787781, 18.526492 ], [ -92.037964, 18.706090 ], [ -91.408997, 18.877702 ], [ -90.774536, 19.285221 ], [ -90.535583, 19.867477 ], [ -90.453186, 20.709877 ], [ -90.280151, 20.999907 ], [ -90.000000, 21.110125 ], [ -89.780273, 21.194655 ], [ -89.780273, 17.819301 ], [ -90.000000, 17.821916 ], [ -91.002502, 17.819301 ], [ -91.002502, 17.256236 ], [ -91.455688, 17.253613 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.601501, 16.472963 ], [ -90.439453, 16.412375 ], [ -90.466919, 16.069568 ], [ -91.749573, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.205505, 14.830646 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.875427, 15.940202 ], [ -94.693909, 16.201488 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.752606 ], [ -96.558838, 15.654776 ], [ -97.264709, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.698181, 16.707232 ], [ -100.829773, 17.172283 ], [ -101.250000, 17.413546 ], [ -101.469727, 17.539297 ], [ -101.469727, 22.146708 ], [ -97.781067, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 17.819301 ], [ -89.780273, 14.096621 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.883412 ], [ -90.096130, 13.736717 ], [ -90.609741, 13.910074 ], [ -91.233215, 13.928736 ], [ -91.691895, 14.128585 ], [ -92.230225, 14.541050 ], [ -92.205505, 14.830646 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.749573, 16.066929 ], [ -90.466919, 16.069568 ], [ -90.439453, 16.412375 ], [ -90.601501, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.253613 ], [ -91.002502, 17.256236 ], [ -91.002502, 17.819301 ], [ -90.000000, 17.821916 ], [ -89.780273, 17.819301 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.780273, 17.819301 ], [ -89.780273, 14.096621 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.883412 ], [ -90.096130, 13.736717 ], [ -90.609741, 13.910074 ], [ -91.233215, 13.928736 ], [ -91.691895, 14.128585 ], [ -92.230225, 14.541050 ], [ -92.205505, 14.830646 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.749573, 16.066929 ], [ -90.466919, 16.069568 ], [ -90.439453, 16.412375 ], [ -90.601501, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.253613 ], [ -91.002502, 17.256236 ], [ -91.002502, 17.819301 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 13.520508 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.664669 ], [ -90.096130, 13.736717 ], [ -90.065918, 13.883412 ], [ -90.000000, 13.934067 ], [ -89.780273, 14.096621 ], [ -89.780273, 13.520508 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 14.096621 ], [ -89.780273, 13.520508 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.664669 ], [ -90.096130, 13.736717 ], [ -90.065918, 13.883412 ], [ -90.000000, 13.934067 ], [ -89.780273, 14.096621 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 29.307956 ], [ -90.000000, 29.197726 ], [ -90.156555, 29.118574 ], [ -90.881653, 29.149763 ], [ -91.628723, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.227234, 29.785833 ], [ -93.850708, 29.714296 ], [ -94.691162, 29.480252 ], [ -95.600281, 28.738764 ], [ -96.594543, 28.309217 ], [ -97.141113, 27.831790 ], [ -97.371826, 27.381523 ], [ -97.380066, 26.691637 ], [ -97.330627, 26.212127 ], [ -97.141113, 25.871581 ], [ -97.531128, 25.841921 ], [ -98.242493, 26.061718 ], [ -99.022522, 26.372185 ], [ -99.302673, 26.841227 ], [ -99.522400, 27.542371 ], [ -100.110168, 28.110749 ], [ -100.456238, 28.697816 ], [ -100.958862, 29.382175 ], [ -101.250000, 29.547177 ], [ -101.469727, 29.671349 ], [ -101.469727, 32.138409 ], [ -89.780273, 32.138409 ], [ -89.780273, 29.307956 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 32.138409 ], [ -89.780273, 29.307956 ], [ -90.000000, 29.197726 ], [ -90.156555, 29.118574 ], [ -90.881653, 29.149763 ], [ -91.628723, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.227234, 29.785833 ], [ -93.850708, 29.714296 ], [ -94.691162, 29.480252 ], [ -95.600281, 28.738764 ], [ -96.594543, 28.309217 ], [ -97.141113, 27.831790 ], [ -97.371826, 27.381523 ], [ -97.380066, 26.691637 ], [ -97.330627, 26.212127 ], [ -97.141113, 25.871581 ], [ -97.531128, 25.841921 ], [ -98.242493, 26.061718 ], [ -99.022522, 26.372185 ], [ -99.302673, 26.841227 ], [ -99.522400, 27.542371 ], [ -100.110168, 28.110749 ], [ -100.456238, 28.697816 ], [ -100.958862, 29.382175 ], [ -101.250000, 29.547177 ], [ -101.469727, 29.671349 ], [ -101.469727, 32.138409 ], [ -89.780273, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.250000, 29.547177 ], [ -100.958862, 29.382175 ], [ -100.456238, 28.697816 ], [ -100.110168, 28.110749 ], [ -99.522400, 27.542371 ], [ -99.302673, 26.841227 ], [ -99.022522, 26.372185 ], [ -98.242493, 26.061718 ], [ -97.531128, 25.841921 ], [ -97.141113, 25.871581 ], [ -97.528381, 24.993526 ], [ -97.704163, 24.274509 ], [ -97.778320, 22.933101 ], [ -97.874451, 22.446572 ], [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.599792, 21.739091 ], [ -101.469727, 21.739091 ], [ -101.469727, 29.671349 ], [ -101.250000, 29.547177 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.469727, 29.671349 ], [ -101.250000, 29.547177 ], [ -100.958862, 29.382175 ], [ -100.456238, 28.697816 ], [ -100.110168, 28.110749 ], [ -99.522400, 27.542371 ], [ -99.302673, 26.841227 ], [ -99.022522, 26.372185 ], [ -98.242493, 26.061718 ], [ -97.531128, 25.841921 ], [ -97.141113, 25.871581 ], [ -97.528381, 24.993526 ], [ -97.704163, 24.274509 ], [ -97.778320, 22.933101 ], [ -97.874451, 22.446572 ], [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.599792, 21.739091 ], [ -101.469727, 21.739091 ], [ -101.469727, 29.671349 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 31.765537 ], [ -101.469727, 31.765537 ], [ -101.469727, 41.145570 ], [ -89.780273, 41.145570 ], [ -89.780273, 31.765537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 41.145570 ], [ -89.780273, 31.765537 ], [ -101.469727, 31.765537 ], [ -101.469727, 41.145570 ], [ -89.780273, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.780273, 48.048710 ], [ -90.000000, 48.094592 ], [ -90.832214, 48.270397 ], [ -91.642456, 48.140432 ], [ -92.612000, 48.451066 ], [ -93.630981, 48.609306 ], [ -94.331360, 48.671013 ], [ -94.641724, 48.841221 ], [ -94.669189, 48.922499 ], [ -94.715881, 49.066668 ], [ -89.780273, 49.066668 ], [ -89.780273, 48.048710 ] ] ], [ [ [ -101.469727, 49.000042 ], [ -101.469727, 49.066668 ], [ -95.160828, 49.066668 ], [ -95.160828, 49.000042 ], [ -101.469727, 49.000042 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.780273, 49.066668 ], [ -89.780273, 48.048710 ], [ -90.000000, 48.094592 ], [ -90.832214, 48.270397 ], [ -91.642456, 48.140432 ], [ -92.612000, 48.451066 ], [ -93.630981, 48.609306 ], [ -94.331360, 48.671013 ], [ -94.641724, 48.841221 ], [ -94.669189, 48.922499 ], [ -94.715881, 49.066668 ], [ -89.780273, 49.066668 ] ] ], [ [ [ -95.160828, 49.066668 ], [ -95.160828, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 49.066668 ], [ -95.160828, 49.066668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.669189, 48.922499 ], [ -94.641724, 48.841221 ], [ -94.331360, 48.671013 ], [ -93.630981, 48.609306 ], [ -92.612000, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.832214, 48.270397 ], [ -90.000000, 48.094592 ], [ -89.780273, 48.048710 ], [ -89.780273, 40.813809 ], [ -101.469727, 40.813809 ], [ -101.469727, 49.000042 ], [ -95.160828, 49.000042 ], [ -95.160828, 49.066668 ], [ -94.715881, 49.066668 ], [ -94.669189, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.715881, 49.066668 ], [ -94.669189, 48.922499 ], [ -94.641724, 48.841221 ], [ -94.331360, 48.671013 ], [ -93.630981, 48.609306 ], [ -92.612000, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.832214, 48.270397 ], [ -90.000000, 48.094592 ], [ -89.780273, 48.048710 ], [ -89.780273, 40.813809 ], [ -101.469727, 40.813809 ], [ -101.469727, 49.000042 ], [ -95.160828, 49.000042 ], [ -95.160828, 49.066668 ], [ -94.715881, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 48.777913 ], [ -94.526367, 48.777913 ], [ -94.641724, 48.841221 ], [ -94.669189, 48.922499 ], [ -94.820251, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.160828, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 55.899956 ], [ -89.780273, 55.899956 ], [ -89.780273, 48.777913 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 55.899956 ], [ -89.780273, 48.777913 ], [ -94.526367, 48.777913 ], [ -94.641724, 48.841221 ], [ -94.669189, 48.922499 ], [ -94.820251, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.160828, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 55.899956 ], [ -89.780273, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.669189, 48.922499 ], [ -94.641724, 48.841221 ], [ -94.526367, 48.777913 ], [ -101.469727, 48.777913 ], [ -101.469727, 49.000042 ], [ -95.160828, 49.000042 ], [ -95.158081, 49.385949 ], [ -94.820251, 49.389524 ], [ -94.669189, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.820251, 49.389524 ], [ -94.669189, 48.922499 ], [ -94.641724, 48.841221 ], [ -94.526367, 48.777913 ], [ -101.469727, 48.777913 ], [ -101.469727, 49.000042 ], [ -95.160828, 49.000042 ], [ -95.158081, 49.385949 ], [ -94.820251, 49.389524 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.567810, 61.606396 ], [ -94.243469, 60.899724 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.216248, 58.782438 ], [ -92.765808, 57.846213 ], [ -92.298889, 57.088515 ], [ -90.898132, 57.284981 ], [ -90.000000, 57.078068 ], [ -89.780273, 57.027279 ], [ -89.780273, 55.652798 ], [ -101.469727, 55.652798 ], [ -101.469727, 61.710706 ], [ -93.466187, 61.710706 ], [ -93.567810, 61.606396 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.466187, 61.710706 ], [ -93.567810, 61.606396 ], [ -94.243469, 60.899724 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.216248, 58.782438 ], [ -92.765808, 57.846213 ], [ -92.298889, 57.088515 ], [ -90.898132, 57.284981 ], [ -90.000000, 57.078068 ], [ -89.780273, 57.027279 ], [ -89.780273, 55.652798 ], [ -101.469727, 55.652798 ], [ -101.469727, 61.710706 ], [ -93.466187, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 64.040958 ], [ -89.914856, 64.033744 ], [ -90.000000, 63.989213 ], [ -90.705872, 63.610879 ], [ -90.771790, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.025394 ], [ -93.567810, 61.606396 ], [ -93.669434, 61.501734 ], [ -101.469727, 61.501734 ], [ -101.469727, 66.600676 ], [ -89.780273, 66.600676 ], [ -89.780273, 64.040958 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 66.600676 ], [ -89.780273, 64.040958 ], [ -89.914856, 64.033744 ], [ -90.000000, 63.989213 ], [ -90.705872, 63.610879 ], [ -90.771790, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.025394 ], [ -93.567810, 61.606396 ], [ -93.669434, 61.501734 ], [ -101.469727, 61.501734 ], [ -101.469727, 66.600676 ], [ -89.780273, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.021484, 70.612614 ], [ -91.521606, 70.191619 ], [ -92.408752, 69.700010 ], [ -90.549316, 69.497994 ], [ -90.552063, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.780273, 68.932736 ], [ -89.780273, 66.425537 ], [ -101.469727, 66.425537 ], [ -101.469727, 67.652077 ], [ -101.455994, 67.647899 ], [ -101.250000, 67.669824 ], [ -99.904175, 67.806132 ], [ -98.445740, 67.782258 ], [ -98.561096, 68.404235 ], [ -97.671204, 68.579450 ], [ -96.122131, 68.239878 ], [ -96.127625, 67.294317 ], [ -95.490417, 68.090734 ], [ -94.685669, 68.064072 ], [ -94.235229, 69.069544 ], [ -95.306396, 69.685711 ], [ -96.473694, 70.089918 ], [ -96.437988, 70.612614 ], [ -96.432495, 70.685421 ], [ -92.106628, 70.685421 ], [ -92.021484, 70.612614 ] ] ], [ [ [ -97.157593, 69.860437 ], [ -96.558838, 69.680943 ], [ -96.259460, 69.490297 ], [ -95.649719, 69.107777 ], [ -96.270447, 68.757291 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.951487 ], [ -99.799805, 69.400615 ], [ -98.918152, 69.710489 ], [ -98.220520, 70.144096 ], [ -97.157593, 69.860437 ] ] ], [ [ [ -101.250000, 70.096464 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.585354 ], [ -101.250000, 69.577689 ], [ -101.469727, 69.567144 ], [ -101.469727, 70.154355 ], [ -101.250000, 70.096464 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.106628, 70.685421 ], [ -92.021484, 70.612614 ], [ -91.521606, 70.191619 ], [ -92.408752, 69.700010 ], [ -90.549316, 69.497994 ], [ -90.552063, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.780273, 68.932736 ], [ -89.780273, 66.425537 ], [ -101.469727, 66.425537 ], [ -101.469727, 67.652077 ], [ -101.455994, 67.647899 ], [ -101.250000, 67.669824 ], [ -99.904175, 67.806132 ], [ -98.445740, 67.782258 ], [ -98.561096, 68.404235 ], [ -97.671204, 68.579450 ], [ -96.122131, 68.239878 ], [ -96.127625, 67.294317 ], [ -95.490417, 68.090734 ], [ -94.685669, 68.064072 ], [ -94.235229, 69.069544 ], [ -95.306396, 69.685711 ], [ -96.473694, 70.089918 ], [ -96.437988, 70.612614 ], [ -96.432495, 70.685421 ], [ -92.106628, 70.685421 ] ] ], [ [ [ -98.220520, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.680943 ], [ -96.259460, 69.490297 ], [ -95.649719, 69.107777 ], [ -96.270447, 68.757291 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.951487 ], [ -99.799805, 69.400615 ], [ -98.918152, 69.710489 ], [ -98.220520, 70.144096 ] ] ], [ [ [ -101.469727, 70.154355 ], [ -101.250000, 70.096464 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.585354 ], [ -101.250000, 69.577689 ], [ -101.469727, 69.567144 ], [ -101.469727, 70.154355 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -93.891907, 71.760191 ], [ -92.878418, 71.319276 ], [ -92.021484, 70.612614 ], [ -91.933594, 70.539543 ], [ -96.440735, 70.539543 ], [ -96.437988, 70.612614 ], [ -96.391296, 71.194838 ], [ -95.210266, 71.921119 ], [ -93.891907, 71.760191 ] ] ], [ [ [ -89.780273, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.582267 ], [ -90.205994, 72.235514 ], [ -90.000000, 72.480238 ], [ -89.780273, 72.737188 ], [ -89.780273, 71.223149 ] ] ], [ [ [ -99.165344, 73.633981 ], [ -97.380066, 73.760425 ], [ -97.121887, 73.470673 ], [ -98.055725, 72.991286 ], [ -96.542358, 72.560262 ], [ -96.720886, 71.660206 ], [ -98.360596, 71.273477 ], [ -99.324646, 71.357067 ], [ -100.016785, 71.738687 ], [ -101.250000, 72.126250 ], [ -101.469727, 72.194406 ], [ -101.469727, 72.769761 ], [ -101.250000, 72.755925 ], [ -100.439758, 72.706189 ], [ -101.250000, 73.190200 ], [ -101.469727, 73.319188 ], [ -101.469727, 73.389996 ], [ -101.250000, 73.480828 ], [ -100.357361, 73.843938 ], [ -99.165344, 73.633981 ] ] ], [ [ [ -91.788025, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.270935, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.034241, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.495911, 73.863033 ], [ -94.710388, 74.079925 ], [ -92.263184, 74.079925 ], [ -91.788025, 74.019543 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.210266, 71.921119 ], [ -93.891907, 71.760191 ], [ -92.878418, 71.319276 ], [ -92.021484, 70.612614 ], [ -91.933594, 70.539543 ], [ -96.440735, 70.539543 ], [ -96.437988, 70.612614 ], [ -96.391296, 71.194838 ], [ -95.210266, 71.921119 ] ] ], [ [ [ -89.780273, 72.737188 ], [ -89.780273, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.582267 ], [ -90.205994, 72.235514 ], [ -90.000000, 72.480238 ], [ -89.780273, 72.737188 ] ] ], [ [ [ -100.357361, 73.843938 ], [ -99.165344, 73.633981 ], [ -97.380066, 73.760425 ], [ -97.121887, 73.470673 ], [ -98.055725, 72.991286 ], [ -96.542358, 72.560262 ], [ -96.720886, 71.660206 ], [ -98.360596, 71.273477 ], [ -99.324646, 71.357067 ], [ -100.016785, 71.738687 ], [ -101.250000, 72.126250 ], [ -101.469727, 72.194406 ], [ -101.469727, 72.769761 ], [ -101.250000, 72.755925 ], [ -100.439758, 72.706189 ], [ -101.250000, 73.190200 ], [ -101.469727, 73.319188 ], [ -101.469727, 73.389996 ], [ -101.250000, 73.480828 ], [ -100.357361, 73.843938 ] ] ], [ [ [ -92.263184, 74.079925 ], [ -91.788025, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.270935, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.034241, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.495911, 73.863033 ], [ -94.710388, 74.079925 ], [ -92.263184, 74.079925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.422485, 74.100253 ], [ -91.788025, 74.019543 ], [ -91.312866, 73.958939 ], [ -95.149841, 73.958939 ], [ -94.930115, 74.019543 ], [ -94.504395, 74.135580 ], [ -92.422485, 74.100253 ] ] ], [ [ [ -93.795776, 76.840816 ], [ -93.576050, 76.776886 ], [ -91.606750, 76.778771 ], [ -90.744324, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.883402 ], [ -89.824219, 75.847855 ], [ -89.780273, 75.831729 ], [ -89.780273, 74.518423 ], [ -90.000000, 74.545526 ], [ -92.422485, 74.838465 ], [ -92.768555, 75.387389 ], [ -92.892151, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.962830, 76.441688 ], [ -97.121887, 76.751102 ], [ -97.042236, 76.840816 ], [ -96.995544, 76.890745 ], [ -93.966064, 76.890745 ], [ -93.795776, 76.840816 ] ] ], [ [ [ -93.979797, 75.297038 ], [ -93.614502, 74.980047 ], [ -94.158325, 74.593027 ], [ -95.611267, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.853210, 75.647708 ], [ -93.979797, 75.297038 ] ] ], [ [ [ -97.737122, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.160095, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.884705, 75.057437 ], [ -100.865479, 75.640898 ], [ -101.250000, 75.623177 ], [ -101.469727, 75.612944 ], [ -101.469727, 76.311008 ], [ -101.250000, 76.361614 ], [ -99.983826, 76.646840 ], [ -98.577576, 76.588993 ], [ -98.500671, 76.720223 ], [ -97.737122, 76.256955 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.100253 ], [ -91.788025, 74.019543 ], [ -91.312866, 73.958939 ], [ -95.149841, 73.958939 ], [ -94.930115, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -93.966064, 76.890745 ], [ -93.795776, 76.840816 ], [ -93.576050, 76.776886 ], [ -91.606750, 76.778771 ], [ -90.744324, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.883402 ], [ -89.824219, 75.847855 ], [ -89.780273, 75.831729 ], [ -89.780273, 74.518423 ], [ -90.000000, 74.545526 ], [ -92.422485, 74.838465 ], [ -92.768555, 75.387389 ], [ -92.892151, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.962830, 76.441688 ], [ -97.121887, 76.751102 ], [ -97.042236, 76.840816 ], [ -96.995544, 76.890745 ], [ -93.966064, 76.890745 ] ] ], [ [ [ -94.853210, 75.647708 ], [ -93.979797, 75.297038 ], [ -93.614502, 74.980047 ], [ -94.158325, 74.593027 ], [ -95.611267, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.853210, 75.647708 ] ] ], [ [ [ -98.500671, 76.720223 ], [ -97.737122, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.160095, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.884705, 75.057437 ], [ -100.865479, 75.640898 ], [ -101.250000, 75.623177 ], [ -101.469727, 75.612944 ], [ -101.469727, 76.311008 ], [ -101.250000, 76.361614 ], [ -99.983826, 76.646840 ], [ -98.577576, 76.588993 ], [ -98.500671, 76.720223 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.685669, 77.098423 ], [ -93.795776, 76.840816 ], [ -93.625488, 76.790701 ], [ -97.086182, 76.790701 ], [ -97.042236, 76.840816 ], [ -96.745605, 77.161435 ], [ -94.685669, 77.098423 ] ] ], [ [ [ -94.424744, 77.820426 ], [ -93.721619, 77.634777 ], [ -93.842468, 77.520155 ], [ -94.295654, 77.491633 ], [ -96.171570, 77.555124 ], [ -96.437988, 77.834904 ], [ -94.424744, 77.820426 ] ] ], [ [ [ -97.338867, 78.832342 ], [ -96.756592, 78.766187 ], [ -95.561829, 78.418539 ], [ -95.830994, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082992 ], [ -98.555603, 78.458173 ], [ -98.632507, 78.872169 ], [ -97.338867, 78.832342 ] ] ], [ [ [ -101.250000, 78.858909 ], [ -100.827026, 78.800913 ], [ -100.060730, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.250000, 78.015882 ], [ -101.304932, 78.019304 ], [ -101.469727, 78.052327 ], [ -101.469727, 78.889119 ], [ -101.250000, 78.858909 ] ] ], [ [ [ -89.780273, 78.257538 ], [ -90.000000, 78.248591 ], [ -90.804749, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.952332, 78.751195 ], [ -93.935852, 79.113908 ], [ -93.768311, 79.171335 ], [ -93.647461, 79.212538 ], [ -89.780273, 79.212538 ], [ -89.780273, 78.257538 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -96.745605, 77.161435 ], [ -94.685669, 77.098423 ], [ -93.795776, 76.840816 ], [ -93.625488, 76.790701 ], [ -97.086182, 76.790701 ], [ -97.042236, 76.840816 ], [ -96.745605, 77.161435 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.424744, 77.820426 ], [ -93.721619, 77.634777 ], [ -93.842468, 77.520155 ], [ -94.295654, 77.491633 ], [ -96.171570, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.632507, 78.872169 ], [ -97.338867, 78.832342 ], [ -96.756592, 78.766187 ], [ -95.561829, 78.418539 ], [ -95.830994, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082992 ], [ -98.555603, 78.458173 ], [ -98.632507, 78.872169 ] ] ], [ [ [ -101.469727, 78.889119 ], [ -101.250000, 78.858909 ], [ -100.827026, 78.800913 ], [ -100.060730, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.250000, 78.015882 ], [ -101.304932, 78.019304 ], [ -101.469727, 78.052327 ], [ -101.469727, 78.889119 ] ] ], [ [ [ -89.780273, 79.212538 ], [ -89.780273, 78.257538 ], [ -90.000000, 78.248591 ], [ -90.804749, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.952332, 78.751195 ], [ -93.935852, 79.113908 ], [ -93.768311, 79.171335 ], [ -93.647461, 79.212538 ], [ -89.780273, 79.212538 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.010498, 81.093214 ], [ -91.134338, 80.723498 ], [ -90.000000, 80.580292 ], [ -89.780273, 80.552381 ], [ -89.780273, 79.129976 ], [ -93.889160, 79.129976 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.380362 ], [ -94.974060, 79.372767 ], [ -96.078186, 79.705361 ], [ -96.709900, 80.158078 ], [ -96.017761, 80.602741 ], [ -95.325623, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.520874, 81.093214 ], [ -94.586792, 81.127169 ], [ -92.092896, 81.127169 ], [ -92.010498, 81.093214 ] ] ], [ [ [ -89.780273, 81.058276 ], [ -89.923096, 81.127169 ], [ -89.780273, 81.127169 ], [ -89.780273, 81.058276 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.092896, 81.127169 ], [ -92.010498, 81.093214 ], [ -91.134338, 80.723498 ], [ -90.000000, 80.580292 ], [ -89.780273, 80.552381 ], [ -89.780273, 79.129976 ], [ -93.889160, 79.129976 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.380362 ], [ -94.974060, 79.372767 ], [ -96.078186, 79.705361 ], [ -96.709900, 80.158078 ], [ -96.017761, 80.602741 ], [ -95.325623, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.520874, 81.093214 ], [ -94.586792, 81.127169 ], [ -92.092896, 81.127169 ] ] ], [ [ [ -89.780273, 81.127169 ], [ -89.780273, 81.058276 ], [ -89.923096, 81.127169 ], [ -89.780273, 81.127169 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.010498, 81.093214 ], [ -91.930847, 81.059130 ], [ -94.457703, 81.059130 ], [ -94.520874, 81.093214 ], [ -94.737854, 81.206879 ], [ -92.411499, 81.257537 ], [ -92.010498, 81.093214 ] ] ], [ [ [ -89.780273, 81.059130 ], [ -90.000000, 81.164372 ], [ -90.200500, 81.260042 ], [ -91.370544, 81.553443 ], [ -91.587524, 81.894580 ], [ -90.101624, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.780273, 82.094620 ], [ -89.780273, 81.059130 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -92.411499, 81.257537 ], [ -92.010498, 81.093214 ], [ -91.930847, 81.059130 ], [ -94.457703, 81.059130 ], [ -94.520874, 81.093214 ], [ -94.737854, 81.206879 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.780273, 82.094620 ], [ -89.780273, 81.059130 ], [ -90.000000, 81.164372 ], [ -90.200500, 81.260042 ], [ -91.370544, 81.553443 ], [ -91.587524, 81.894580 ], [ -90.101624, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.780273, 82.094620 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -85.070048 ], [ -90.219727, -85.070048 ], [ -90.219727, -83.956169 ], [ -78.530273, -83.956169 ], [ -78.530273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -83.956169 ], [ -78.530273, -85.070048 ], [ -90.219727, -85.070048 ], [ -90.219727, -83.956169 ], [ -78.530273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -84.002262 ], [ -90.219727, -84.002262 ], [ -90.219727, -82.648222 ], [ -78.530273, -82.648222 ], [ -78.530273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -82.648222 ], [ -78.530273, -84.002262 ], [ -90.219727, -84.002262 ], [ -90.219727, -82.648222 ], [ -78.530273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -82.704241 ], [ -90.219727, -82.704241 ], [ -90.219727, -81.059130 ], [ -78.530273, -81.059130 ], [ -78.530273, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -81.059130 ], [ -78.530273, -82.704241 ], [ -90.219727, -82.704241 ], [ -90.219727, -81.059130 ], [ -78.530273, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -81.127169 ], [ -90.219727, -81.127169 ], [ -90.219727, -79.129976 ], [ -78.530273, -79.129976 ], [ -78.530273, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -79.129976 ], [ -78.530273, -81.127169 ], [ -90.219727, -81.127169 ], [ -90.219727, -79.129976 ], [ -78.530273, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -79.212538 ], [ -90.219727, -79.212538 ], [ -90.219727, -76.790701 ], [ -78.530273, -76.790701 ], [ -78.530273, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -76.790701 ], [ -78.530273, -79.212538 ], [ -90.219727, -79.212538 ], [ -90.219727, -76.790701 ], [ -78.530273, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -76.890745 ], [ -90.219727, -76.890745 ], [ -90.219727, -73.958939 ], [ -78.530273, -73.958939 ], [ -78.530273, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -73.958939 ], [ -78.530273, -76.890745 ], [ -90.219727, -76.890745 ], [ -90.219727, -73.958939 ], [ -78.530273, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.426208, -73.008952 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.087432 ], [ -85.193481, -73.479266 ], [ -83.880615, -73.518273 ], [ -82.666626, -73.636303 ], [ -81.471863, -73.851578 ], [ -80.689087, -73.479266 ], [ -80.296326, -73.126540 ], [ -79.299316, -73.518273 ], [ -78.530273, -73.463638 ], [ -78.530273, -74.079925 ], [ -90.219727, -74.079925 ], [ -90.219727, -73.329434 ], [ -90.090637, -73.322341 ], [ -90.000000, -73.243337 ], [ -89.228210, -72.558615 ], [ -88.426208, -73.008952 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.228210, -72.558615 ], [ -88.426208, -73.008952 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.087432 ], [ -85.193481, -73.479266 ], [ -83.880615, -73.518273 ], [ -82.666626, -73.636303 ], [ -81.471863, -73.851578 ], [ -80.689087, -73.479266 ], [ -80.296326, -73.126540 ], [ -79.299316, -73.518273 ], [ -78.530273, -73.463638 ], [ -78.530273, -74.079925 ], [ -90.219727, -74.079925 ], [ -90.219727, -73.329434 ], [ -90.090637, -73.322341 ], [ -90.000000, -73.243337 ], [ -89.228210, -72.558615 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -4.149201 ], [ -78.640137, -4.546308 ], [ -78.750000, -4.625704 ], [ -79.205933, -4.956879 ], [ -79.626160, -4.453212 ], [ -80.029907, -4.343673 ], [ -80.444641, -4.423090 ], [ -80.469360, -4.058796 ], [ -80.186462, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.654994 ], [ -79.988708, -2.218684 ], [ -80.370483, -2.682430 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.963422 ], [ -80.936279, -1.057374 ], [ -80.584717, -0.906334 ], [ -80.400696, -0.282897 ], [ -80.235901, 0.000000 ], [ -80.106812, 0.219726 ], [ -78.530273, 0.219726 ], [ -78.530273, -4.149201 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 0.219726 ], [ -78.530273, -4.149201 ], [ -78.640137, -4.546308 ], [ -78.750000, -4.625704 ], [ -79.205933, -4.956879 ], [ -79.626160, -4.453212 ], [ -80.029907, -4.343673 ], [ -80.444641, -4.423090 ], [ -80.469360, -4.058796 ], [ -80.186462, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.654994 ], [ -79.988708, -2.218684 ], [ -80.370483, -2.682430 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.963422 ], [ -80.936279, -1.057374 ], [ -80.584717, -0.906334 ], [ -80.400696, -0.282897 ], [ -80.235901, 0.000000 ], [ -80.106812, 0.219726 ], [ -78.530273, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.186462, -3.820408 ], [ -80.469360, -4.058796 ], [ -80.444641, -4.423090 ], [ -80.029907, -4.343673 ], [ -79.626160, -4.453212 ], [ -79.205933, -4.956879 ], [ -78.750000, -4.625704 ], [ -78.640137, -4.546308 ], [ -78.530273, -4.149201 ], [ -78.530273, -9.457190 ], [ -78.750000, -8.993600 ], [ -79.038391, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.538025, -6.539103 ], [ -81.252136, -6.135093 ], [ -80.928040, -5.689783 ], [ -81.411438, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.186462, -3.820408 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.304565, -3.403758 ], [ -80.186462, -3.820408 ], [ -80.469360, -4.058796 ], [ -80.444641, -4.423090 ], [ -80.029907, -4.343673 ], [ -79.626160, -4.453212 ], [ -79.205933, -4.956879 ], [ -78.750000, -4.625704 ], [ -78.640137, -4.546308 ], [ -78.530273, -4.149201 ], [ -78.530273, -9.457190 ], [ -78.750000, -8.993600 ], [ -79.038391, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.538025, -6.539103 ], [ -81.252136, -6.135093 ], [ -80.928040, -5.689783 ], [ -81.411438, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.855896, 11.375031 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.105642 ], [ -83.658142, 10.941192 ], [ -83.897095, 10.728080 ], [ -84.190979, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.674377, 11.084080 ], [ -84.905090, 10.954675 ], [ -85.465393, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.610962, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.047668, 11.393879 ], [ -83.842163, 11.393879 ], [ -83.855896, 11.375031 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.842163, 11.393879 ], [ -83.855896, 11.375031 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.105642 ], [ -83.658142, 10.941192 ], [ -83.897095, 10.728080 ], [ -84.190979, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.674377, 11.084080 ], [ -84.905090, 10.954675 ], [ -85.465393, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.610962, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.047668, 11.393879 ], [ -83.842163, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.465393, 11.178402 ], [ -84.905090, 10.954675 ], [ -84.674377, 11.084080 ], [ -84.358521, 11.000512 ], [ -84.190979, 10.795537 ], [ -83.897095, 10.728080 ], [ -83.658142, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.993196 ], [ -82.548523, 9.568251 ], [ -82.933044, 9.478863 ], [ -82.927551, 9.074976 ], [ -82.721558, 8.925774 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.627188 ], [ -82.913818, 8.426187 ], [ -82.966003, 8.225082 ], [ -83.509827, 8.447922 ], [ -83.713074, 8.657057 ], [ -83.597717, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.910828, 9.291886 ], [ -84.303589, 9.489699 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.976501, 10.087854 ], [ -84.913330, 9.798384 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.836273 ], [ -85.663147, 9.933682 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.441897 ], [ -85.660400, 10.755064 ], [ -85.943298, 10.895345 ], [ -85.610962, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.465393, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.564270, 11.218816 ], [ -85.465393, 11.178402 ], [ -84.905090, 10.954675 ], [ -84.674377, 11.084080 ], [ -84.358521, 11.000512 ], [ -84.190979, 10.795537 ], [ -83.897095, 10.728080 ], [ -83.658142, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.993196 ], [ -82.548523, 9.568251 ], [ -82.933044, 9.478863 ], [ -82.927551, 9.074976 ], [ -82.721558, 8.925774 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.627188 ], [ -82.913818, 8.426187 ], [ -82.966003, 8.225082 ], [ -83.509827, 8.447922 ], [ -83.713074, 8.657057 ], [ -83.597717, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.910828, 9.291886 ], [ -84.303589, 9.489699 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.976501, 10.087854 ], [ -84.913330, 9.798384 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.836273 ], [ -85.663147, 9.933682 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.441897 ], [ -85.660400, 10.755064 ], [ -85.943298, 10.895345 ], [ -85.610962, 11.178402 ], [ -85.564270, 11.218816 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.021912, 9.554709 ], [ -79.060364, 9.457190 ], [ -78.750000, 9.438224 ], [ -78.530273, 9.424677 ], [ -78.530273, 8.553862 ], [ -78.623657, 8.719503 ], [ -78.750000, 8.790083 ], [ -79.120789, 8.996313 ], [ -79.560242, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.164490, 8.333800 ], [ -80.384216, 8.298470 ], [ -80.483093, 8.091862 ], [ -80.005188, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.422668, 7.272568 ], [ -80.886841, 7.220800 ], [ -81.059875, 7.819847 ], [ -81.191711, 7.648387 ], [ -81.521301, 7.708270 ], [ -81.721802, 8.110896 ], [ -82.133789, 8.176149 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.966003, 8.225082 ], [ -82.913818, 8.426187 ], [ -82.831421, 8.627188 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.925774 ], [ -82.927551, 9.074976 ], [ -82.933044, 9.478863 ], [ -82.548523, 9.568251 ], [ -82.188721, 9.207849 ], [ -82.207947, 8.996313 ], [ -81.809692, 8.952906 ], [ -81.716309, 9.034290 ], [ -81.441650, 8.787368 ], [ -80.950012, 8.860648 ], [ -80.524292, 9.112945 ], [ -79.917297, 9.313569 ], [ -79.573975, 9.614290 ], [ -79.021912, 9.554709 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.614290 ], [ -79.021912, 9.554709 ], [ -79.060364, 9.457190 ], [ -78.750000, 9.438224 ], [ -78.530273, 9.424677 ], [ -78.530273, 8.553862 ], [ -78.623657, 8.719503 ], [ -78.750000, 8.790083 ], [ -79.120789, 8.996313 ], [ -79.560242, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.164490, 8.333800 ], [ -80.384216, 8.298470 ], [ -80.483093, 8.091862 ], [ -80.005188, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.422668, 7.272568 ], [ -80.886841, 7.220800 ], [ -81.059875, 7.819847 ], [ -81.191711, 7.648387 ], [ -81.521301, 7.708270 ], [ -81.721802, 8.110896 ], [ -82.133789, 8.176149 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.966003, 8.225082 ], [ -82.913818, 8.426187 ], [ -82.831421, 8.627188 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.925774 ], [ -82.927551, 9.074976 ], [ -82.933044, 9.478863 ], [ -82.548523, 9.568251 ], [ -82.188721, 9.207849 ], [ -82.207947, 8.996313 ], [ -81.809692, 8.952906 ], [ -81.716309, 9.034290 ], [ -81.441650, 8.787368 ], [ -80.950012, 8.860648 ], [ -80.524292, 9.112945 ], [ -79.917297, 9.313569 ], [ -79.573975, 9.614290 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 1.194677 ], [ -78.750000, 1.320989 ], [ -78.857117, 1.381397 ], [ -78.991699, 1.691649 ], [ -78.750000, 1.743810 ], [ -78.618164, 1.768518 ], [ -78.664856, 2.268084 ], [ -78.530273, 2.476645 ], [ -78.530273, 1.194677 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 2.476645 ], [ -78.530273, 1.194677 ], [ -78.750000, 1.320989 ], [ -78.857117, 1.381397 ], [ -78.991699, 1.691649 ], [ -78.750000, 1.743810 ], [ -78.618164, 1.768518 ], [ -78.664856, 2.268084 ], [ -78.530273, 2.476645 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.750000, 1.320989 ], [ -78.530273, 1.194677 ], [ -78.530273, -0.219726 ], [ -80.364990, -0.219726 ], [ -80.235901, 0.000000 ], [ -80.021667, 0.362546 ], [ -80.093079, 0.769020 ], [ -79.543762, 0.983228 ], [ -78.857117, 1.381397 ], [ -78.750000, 1.320989 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.857117, 1.381397 ], [ -78.750000, 1.320989 ], [ -78.530273, 1.194677 ], [ -78.530273, -0.219726 ], [ -80.364990, -0.219726 ], [ -80.235901, 0.000000 ], [ -80.021667, 0.362546 ], [ -80.093079, 0.769020 ], [ -79.543762, 0.983228 ], [ -78.857117, 1.381397 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.813965, 21.332873 ], [ -86.846924, 20.851112 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.437439, 19.474361 ], [ -87.588501, 19.041349 ], [ -87.838440, 18.260653 ], [ -88.091125, 18.518679 ], [ -88.492126, 18.487424 ], [ -88.849182, 17.884659 ], [ -89.030457, 18.002244 ], [ -89.151306, 17.957832 ], [ -89.145813, 17.808841 ], [ -90.000000, 17.821916 ], [ -90.219727, 17.821916 ], [ -90.219727, 21.025546 ], [ -90.000000, 21.110125 ], [ -89.601746, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.460737 ], [ -87.052917, 21.545066 ], [ -86.813965, 21.332873 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.052917, 21.545066 ], [ -86.813965, 21.332873 ], [ -86.846924, 20.851112 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.437439, 19.474361 ], [ -87.588501, 19.041349 ], [ -87.838440, 18.260653 ], [ -88.091125, 18.518679 ], [ -88.492126, 18.487424 ], [ -88.849182, 17.884659 ], [ -89.030457, 18.002244 ], [ -89.151306, 17.957832 ], [ -89.145813, 17.808841 ], [ -90.000000, 17.821916 ], [ -90.219727, 17.821916 ], [ -90.219727, 21.025546 ], [ -90.000000, 21.110125 ], [ -89.601746, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.460737 ], [ -87.052917, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.145813, 17.808841 ], [ -89.151306, 17.017394 ], [ -89.230957, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.156799, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.426700 ], [ -89.588013, 14.362852 ], [ -89.535828, 14.245749 ], [ -89.722595, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.883412 ], [ -90.096130, 13.736717 ], [ -90.219727, 13.779402 ], [ -90.219727, 17.821916 ], [ -90.000000, 17.821916 ], [ -89.145813, 17.808841 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.145813, 17.808841 ], [ -89.151306, 17.017394 ], [ -89.230957, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.156799, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.426700 ], [ -89.588013, 14.362852 ], [ -89.535828, 14.245749 ], [ -89.722595, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.883412 ], [ -90.096130, 13.736717 ], [ -90.219727, 13.779402 ], [ -90.219727, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.646639 ], [ -88.198242, 17.489531 ], [ -88.305359, 17.132916 ], [ -88.242188, 17.038403 ], [ -88.357544, 16.530898 ], [ -88.552551, 16.267414 ], [ -88.733826, 16.235772 ], [ -88.931580, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.151306, 17.017394 ], [ -89.145813, 17.808841 ], [ -89.151306, 17.957832 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.884659 ], [ -88.492126, 18.487424 ], [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.646639 ], [ -88.198242, 17.489531 ], [ -88.305359, 17.132916 ], [ -88.242188, 17.038403 ], [ -88.357544, 16.530898 ], [ -88.552551, 16.267414 ], [ -88.733826, 16.235772 ], [ -88.931580, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.151306, 17.017394 ], [ -89.145813, 17.808841 ], [ -89.151306, 17.957832 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.884659 ], [ -88.492126, 18.487424 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.060669, 14.341565 ], [ -88.843689, 14.141902 ], [ -88.541565, 13.982046 ], [ -88.505859, 13.846080 ], [ -88.066406, 13.966054 ], [ -87.860413, 13.894077 ], [ -87.725830, 13.787404 ], [ -87.794495, 13.386948 ], [ -87.904358, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.843689, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.664669 ], [ -90.096130, 13.736717 ], [ -90.065918, 13.883412 ], [ -90.000000, 13.934067 ], [ -89.722595, 14.136576 ], [ -89.535828, 14.245749 ], [ -89.588013, 14.362852 ], [ -89.354553, 14.426700 ], [ -89.060669, 14.341565 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.354553, 14.426700 ], [ -89.060669, 14.341565 ], [ -88.843689, 14.141902 ], [ -88.541565, 13.982046 ], [ -88.505859, 13.846080 ], [ -88.066406, 13.966054 ], [ -87.860413, 13.894077 ], [ -87.725830, 13.787404 ], [ -87.794495, 13.386948 ], [ -87.904358, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.843689, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.664669 ], [ -90.096130, 13.736717 ], [ -90.065918, 13.883412 ], [ -90.000000, 13.934067 ], [ -89.722595, 14.136576 ], [ -89.535828, 14.245749 ], [ -89.588013, 14.362852 ], [ -89.354553, 14.426700 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.685120, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.911150 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.858316 ], [ -84.369507, 15.837178 ], [ -84.064636, 15.649486 ], [ -83.776245, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.997852 ], [ -83.490601, 15.016422 ], [ -83.630676, 14.881087 ], [ -83.976746, 14.750979 ], [ -84.229431, 14.750979 ], [ -84.451904, 14.623451 ], [ -84.649658, 14.668626 ], [ -84.822693, 14.820026 ], [ -84.927063, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.080637 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.097107, 14.040673 ], [ -86.314087, 13.771399 ], [ -86.522827, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.882629, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.794495, 13.386948 ], [ -87.725830, 13.787404 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.846080 ], [ -88.541565, 13.982046 ], [ -88.843689, 14.141902 ], [ -89.060669, 14.341565 ], [ -89.354553, 14.426700 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.156799, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.904358, 15.866242 ], [ -87.615967, 15.879451 ], [ -87.525330, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.904602, 15.757893 ], [ -86.443176, 15.784325 ], [ -86.121826, 15.895301 ], [ -86.003723, 16.006216 ], [ -85.685120, 15.956048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.003723, 16.006216 ], [ -85.685120, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.911150 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.858316 ], [ -84.369507, 15.837178 ], [ -84.064636, 15.649486 ], [ -83.776245, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.997852 ], [ -83.490601, 15.016422 ], [ -83.630676, 14.881087 ], [ -83.976746, 14.750979 ], [ -84.229431, 14.750979 ], [ -84.451904, 14.623451 ], [ -84.649658, 14.668626 ], [ -84.822693, 14.820026 ], [ -84.927063, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.080637 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.097107, 14.040673 ], [ -86.314087, 13.771399 ], [ -86.522827, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.882629, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.794495, 13.386948 ], [ -87.725830, 13.787404 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.846080 ], [ -88.541565, 13.982046 ], [ -88.843689, 14.141902 ], [ -89.060669, 14.341565 ], [ -89.354553, 14.426700 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.156799, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.904358, 15.866242 ], [ -87.615967, 15.879451 ], [ -87.525330, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.904602, 15.757893 ], [ -86.443176, 15.784325 ], [ -86.121826, 15.895301 ], [ -86.003723, 16.006216 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.147278, 14.997852 ], [ -83.235168, 14.902322 ], [ -83.284607, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.553772, 13.127629 ], [ -83.498840, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.321219 ], [ -83.721313, 11.894228 ], [ -83.652649, 11.630716 ], [ -83.855896, 11.375031 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.105642 ], [ -83.680115, 10.962764 ], [ -84.328308, 10.962764 ], [ -84.358521, 11.000512 ], [ -84.674377, 11.084080 ], [ -84.891357, 10.962764 ], [ -84.927063, 10.962764 ], [ -85.465393, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.610962, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.144061 ], [ -87.168274, 12.460715 ], [ -87.670898, 12.910875 ], [ -87.558289, 13.066101 ], [ -87.393494, 12.916230 ], [ -87.319336, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.882629, 13.255986 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.771399 ], [ -86.097107, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.080637 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.053406, 14.551684 ], [ -84.927063, 14.790817 ], [ -84.822693, 14.820026 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.623451 ], [ -84.229431, 14.750979 ], [ -83.976746, 14.750979 ], [ -83.630676, 14.881087 ], [ -83.490601, 15.016422 ], [ -83.147278, 14.997852 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.997852 ], [ -83.235168, 14.902322 ], [ -83.284607, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.553772, 13.127629 ], [ -83.498840, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.321219 ], [ -83.721313, 11.894228 ], [ -83.652649, 11.630716 ], [ -83.855896, 11.375031 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.105642 ], [ -83.680115, 10.962764 ], [ -84.328308, 10.962764 ], [ -84.358521, 11.000512 ], [ -84.674377, 11.084080 ], [ -84.891357, 10.962764 ], [ -84.927063, 10.962764 ], [ -85.465393, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.610962, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.144061 ], [ -87.168274, 12.460715 ], [ -87.670898, 12.910875 ], [ -87.558289, 13.066101 ], [ -87.393494, 12.916230 ], [ -87.319336, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.882629, 13.255986 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.771399 ], [ -86.097107, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.080637 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.053406, 14.551684 ], [ -84.927063, 14.790817 ], [ -84.822693, 14.820026 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.623451 ], [ -84.229431, 14.750979 ], [ -83.976746, 14.750979 ], [ -83.630676, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 21.143431 ], [ -78.722534, 21.598704 ], [ -78.750000, 21.598704 ], [ -79.285583, 21.560393 ], [ -80.219421, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ] ] ], [ [ [ -84.053650, 21.912471 ], [ -84.548035, 21.802858 ], [ -84.976501, 21.897181 ], [ -84.899597, 21.943046 ], [ -84.550781, 22.146708 ], [ -83.919067, 22.146708 ], [ -84.037170, 21.943046 ], [ -84.053650, 21.912471 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.722534, 21.598704 ], [ -78.750000, 21.598704 ], [ -79.285583, 21.560393 ], [ -80.219421, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.919067, 22.146708 ], [ -84.037170, 21.943046 ], [ -84.053650, 21.912471 ], [ -84.548035, 21.802858 ], [ -84.976501, 21.897181 ], [ -84.899597, 21.943046 ], [ -84.550781, 22.146708 ], [ -83.919067, 22.146708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.674377, 11.084080 ], [ -84.358521, 11.000512 ], [ -84.328308, 10.962764 ], [ -84.891357, 10.962764 ], [ -84.674377, 11.084080 ] ] ], [ [ [ -85.465393, 11.178402 ], [ -84.927063, 10.962764 ], [ -85.863647, 10.962764 ], [ -85.610962, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.465393, 11.178402 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.564270, 11.218816 ], [ -85.465393, 11.178402 ], [ -84.927063, 10.962764 ], [ -85.863647, 10.962764 ], [ -85.610962, 11.178402 ], [ -85.564270, 11.218816 ] ] ], [ [ [ -84.358521, 11.000512 ], [ -84.328308, 10.962764 ], [ -84.891357, 10.962764 ], [ -84.674377, 11.084080 ], [ -84.358521, 11.000512 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.867615, 32.033692 ], [ -80.933533, 31.952162 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.730032 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.538025, 28.473520 ], [ -80.532532, 28.040471 ], [ -80.057373, 26.880431 ], [ -80.090332, 26.207199 ], [ -80.134277, 25.817200 ], [ -80.381470, 25.207426 ], [ -80.680847, 25.080624 ], [ -81.172485, 25.202456 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.871581 ], [ -82.240906, 26.730893 ], [ -82.707825, 27.496090 ], [ -82.856140, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.101777 ], [ -83.710327, 29.938275 ], [ -84.100342, 30.090484 ], [ -85.111084, 29.637933 ], [ -85.289612, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.530823, 30.275672 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.596252, 30.161752 ], [ -89.414978, 29.895425 ], [ -89.431458, 29.489816 ], [ -89.219971, 29.291190 ], [ -89.409485, 29.161756 ], [ -89.780273, 29.307956 ], [ -90.000000, 29.197726 ], [ -90.156555, 29.118574 ], [ -90.219727, 29.123373 ], [ -90.219727, 32.138409 ], [ -80.744019, 32.138409 ], [ -80.867615, 32.033692 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.744019, 32.138409 ], [ -80.867615, 32.033692 ], [ -80.933533, 31.952162 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.730032 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.538025, 28.473520 ], [ -80.532532, 28.040471 ], [ -80.057373, 26.880431 ], [ -80.090332, 26.207199 ], [ -80.134277, 25.817200 ], [ -80.381470, 25.207426 ], [ -80.680847, 25.080624 ], [ -81.172485, 25.202456 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.871581 ], [ -82.240906, 26.730893 ], [ -82.707825, 27.496090 ], [ -82.856140, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.101777 ], [ -83.710327, 29.938275 ], [ -84.100342, 30.090484 ], [ -85.111084, 29.637933 ], [ -85.289612, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.530823, 30.275672 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.596252, 30.161752 ], [ -89.414978, 29.895425 ], [ -89.431458, 29.489816 ], [ -89.219971, 29.291190 ], [ -89.409485, 29.161756 ], [ -89.780273, 29.307956 ], [ -90.000000, 29.197726 ], [ -90.156555, 29.118574 ], [ -90.219727, 29.123373 ], [ -90.219727, 32.138409 ], [ -80.744019, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 26.477949 ], [ -78.750000, 26.445984 ], [ -78.912048, 26.421390 ], [ -78.980713, 26.792203 ], [ -78.750000, 26.831424 ], [ -78.530273, 26.868181 ], [ -78.530273, 26.477949 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 26.868181 ], [ -78.530273, 26.477949 ], [ -78.750000, 26.445984 ], [ -78.912048, 26.421390 ], [ -78.980713, 26.792203 ], [ -78.750000, 26.831424 ], [ -78.530273, 26.868181 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.405945, 23.117628 ], [ -80.620422, 23.107523 ], [ -79.681091, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.750000, 22.466878 ], [ -78.530273, 22.492257 ], [ -78.530273, 21.739091 ], [ -79.909058, 21.739091 ], [ -80.219421, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.823425, 22.192491 ], [ -82.172241, 22.388174 ], [ -81.795959, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.169601 ], [ -83.910828, 22.156883 ], [ -84.037170, 21.943046 ], [ -84.053650, 21.912471 ], [ -84.548035, 21.802858 ], [ -84.976501, 21.897181 ], [ -84.899597, 21.943046 ], [ -84.449158, 22.205206 ], [ -84.232178, 22.565830 ], [ -83.778992, 22.788843 ], [ -83.268127, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.268372, 23.190863 ], [ -81.405945, 23.117628 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.268372, 23.190863 ], [ -81.405945, 23.117628 ], [ -80.620422, 23.107523 ], [ -79.681091, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.750000, 22.466878 ], [ -78.530273, 22.492257 ], [ -78.530273, 21.739091 ], [ -79.909058, 21.739091 ], [ -80.219421, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.823425, 22.192491 ], [ -82.172241, 22.388174 ], [ -81.795959, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.169601 ], [ -83.910828, 22.156883 ], [ -84.037170, 21.943046 ], [ -84.053650, 21.912471 ], [ -84.548035, 21.802858 ], [ -84.976501, 21.897181 ], [ -84.899597, 21.943046 ], [ -84.449158, 22.205206 ], [ -84.232178, 22.565830 ], [ -83.778992, 22.788843 ], [ -83.268127, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.268372, 23.190863 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 33.868135 ], [ -78.554993, 33.863574 ], [ -78.750000, 33.724340 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.301819, 32.509762 ], [ -80.867615, 32.033692 ], [ -80.933533, 31.952162 ], [ -81.081848, 31.765537 ], [ -90.219727, 31.765537 ], [ -90.219727, 41.145570 ], [ -78.530273, 41.145570 ], [ -78.530273, 33.868135 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 41.145570 ], [ -78.530273, 33.868135 ], [ -78.554993, 33.863574 ], [ -78.750000, 33.724340 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.301819, 32.509762 ], [ -80.867615, 32.033692 ], [ -80.933533, 31.952162 ], [ -81.081848, 31.765537 ], [ -90.219727, 31.765537 ], [ -90.219727, 41.145570 ], [ -78.530273, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 43.628123 ], [ -78.722534, 43.626135 ], [ -78.750000, 43.618182 ], [ -79.172974, 43.466874 ], [ -79.010925, 43.271206 ], [ -78.920288, 42.966472 ], [ -78.939514, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.279602, 42.210211 ], [ -82.441406, 41.677015 ], [ -82.691345, 41.677015 ], [ -83.031921, 41.834781 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.900085, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.471375, 45.995054 ], [ -83.616943, 46.117038 ], [ -83.891602, 46.117038 ], [ -84.092102, 46.276733 ], [ -84.144287, 46.513516 ], [ -84.339294, 46.409458 ], [ -84.605713, 46.439750 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.877625, 46.901492 ], [ -86.462402, 47.554287 ], [ -87.440186, 47.940267 ], [ -88.379517, 48.303294 ], [ -89.274902, 48.021161 ], [ -89.601746, 48.010138 ], [ -90.000000, 48.096426 ], [ -90.219727, 48.142265 ], [ -90.219727, 49.066668 ], [ -78.530273, 49.066668 ], [ -78.530273, 43.628123 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 49.066668 ], [ -78.530273, 43.628123 ], [ -78.722534, 43.626135 ], [ -78.750000, 43.618182 ], [ -79.172974, 43.466874 ], [ -79.010925, 43.271206 ], [ -78.920288, 42.966472 ], [ -78.939514, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.279602, 42.210211 ], [ -82.441406, 41.677015 ], [ -82.691345, 41.677015 ], [ -83.031921, 41.834781 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.900085, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.471375, 45.995054 ], [ -83.616943, 46.117038 ], [ -83.891602, 46.117038 ], [ -84.092102, 46.276733 ], [ -84.144287, 46.513516 ], [ -84.339294, 46.409458 ], [ -84.605713, 46.439750 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.877625, 46.901492 ], [ -86.462402, 47.554287 ], [ -87.440186, 47.940267 ], [ -88.379517, 48.303294 ], [ -89.274902, 48.021161 ], [ -89.601746, 48.010138 ], [ -90.000000, 48.096426 ], [ -90.219727, 48.142265 ], [ -90.219727, 49.066668 ], [ -78.530273, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.440186, 47.940267 ], [ -86.462402, 47.554287 ], [ -84.877625, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.439750 ], [ -84.339294, 46.409458 ], [ -84.144287, 46.513516 ], [ -84.092102, 46.276733 ], [ -83.891602, 46.117038 ], [ -83.616943, 46.117038 ], [ -83.471375, 45.995054 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.900085, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.031921, 41.834781 ], [ -82.691345, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.279602, 42.210211 ], [ -80.249634, 42.366662 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.966472 ], [ -79.010925, 43.271206 ], [ -79.172974, 43.466874 ], [ -78.750000, 43.618182 ], [ -78.722534, 43.626135 ], [ -78.530273, 43.628123 ], [ -78.530273, 40.813809 ], [ -90.219727, 40.813809 ], [ -90.219727, 48.142265 ], [ -90.000000, 48.096426 ], [ -89.601746, 48.010138 ], [ -89.274902, 48.021161 ], [ -88.379517, 48.303294 ], [ -87.440186, 47.940267 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.303294 ], [ -87.440186, 47.940267 ], [ -86.462402, 47.554287 ], [ -84.877625, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.439750 ], [ -84.339294, 46.409458 ], [ -84.144287, 46.513516 ], [ -84.092102, 46.276733 ], [ -83.891602, 46.117038 ], [ -83.616943, 46.117038 ], [ -83.471375, 45.995054 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.900085, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.031921, 41.834781 ], [ -82.691345, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.279602, 42.210211 ], [ -80.249634, 42.366662 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.966472 ], [ -79.010925, 43.271206 ], [ -79.172974, 43.466874 ], [ -78.750000, 43.618182 ], [ -78.722534, 43.626135 ], [ -78.530273, 43.628123 ], [ -78.530273, 40.813809 ], [ -90.219727, 40.813809 ], [ -90.219727, 48.142265 ], [ -90.000000, 48.096426 ], [ -89.601746, 48.010138 ], [ -89.274902, 48.021161 ], [ -88.379517, 48.303294 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.311340, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.361511, 55.246249 ], [ -82.273865, 55.149058 ], [ -82.438660, 54.282865 ], [ -82.125549, 53.278353 ], [ -81.403198, 52.158770 ], [ -79.914551, 51.208604 ], [ -79.145508, 51.534377 ], [ -78.750000, 52.290003 ], [ -78.604431, 52.562995 ], [ -78.750000, 53.009826 ], [ -79.126282, 54.141523 ], [ -79.832153, 54.669066 ], [ -78.750000, 54.987070 ], [ -78.530273, 55.050056 ], [ -78.530273, 48.777913 ], [ -90.219727, 48.777913 ], [ -90.219727, 55.899956 ], [ -86.871643, 55.899956 ], [ -86.311340, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.871643, 55.899956 ], [ -86.311340, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.361511, 55.246249 ], [ -82.273865, 55.149058 ], [ -82.438660, 54.282865 ], [ -82.125549, 53.278353 ], [ -81.403198, 52.158770 ], [ -79.914551, 51.208604 ], [ -79.145508, 51.534377 ], [ -78.750000, 52.290003 ], [ -78.604431, 52.562995 ], [ -78.750000, 53.009826 ], [ -79.126282, 54.141523 ], [ -79.832153, 54.669066 ], [ -78.750000, 54.987070 ], [ -78.530273, 55.050056 ], [ -78.530273, 48.777913 ], [ -90.219727, 48.777913 ], [ -90.219727, 55.899956 ], [ -86.871643, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 57.078068 ], [ -89.041443, 56.851976 ], [ -88.041687, 56.473111 ], [ -87.324829, 55.999917 ], [ -86.311340, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.893860, 55.652798 ], [ -90.219727, 55.652798 ], [ -90.219727, 57.128786 ], [ -90.000000, 57.078068 ] ] ], [ [ [ -79.659119, 61.633812 ], [ -80.062866, 61.710706 ], [ -79.604187, 61.710706 ], [ -79.659119, 61.633812 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.219727, 57.128786 ], [ -90.000000, 57.078068 ], [ -89.041443, 56.851976 ], [ -88.041687, 56.473111 ], [ -87.324829, 55.999917 ], [ -86.311340, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.893860, 55.652798 ], [ -90.219727, 55.652798 ], [ -90.219727, 57.128786 ] ] ], [ [ [ -79.604187, 61.710706 ], [ -79.659119, 61.633812 ], [ -80.062866, 61.710706 ], [ -79.604187, 61.710706 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -79.521790, 62.364901 ], [ -79.266357, 62.159089 ], [ -79.659119, 61.633812 ], [ -80.101318, 61.718515 ], [ -80.362244, 62.017662 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.386551 ], [ -79.521790, 62.364901 ] ] ], [ [ [ -81.878357, 62.905227 ], [ -81.900330, 62.711944 ], [ -83.070374, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.251648, 62.915233 ], [ -81.878357, 62.905227 ] ] ], [ [ [ -85.163269, 65.658275 ], [ -84.976501, 65.217591 ], [ -84.465637, 65.372560 ], [ -83.883362, 65.110304 ], [ -82.790222, 64.767101 ], [ -81.642151, 64.456218 ], [ -81.554260, 63.980781 ], [ -80.818176, 64.057785 ], [ -80.104065, 63.726615 ], [ -80.991211, 63.412427 ], [ -82.548523, 63.652355 ], [ -83.108826, 64.102206 ], [ -84.103088, 63.570566 ], [ -85.525818, 63.052470 ], [ -85.869141, 63.637723 ], [ -87.223206, 63.542434 ], [ -86.355286, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ], [ -85.163269, 65.658275 ] ] ], [ [ [ -83.067627, 66.513260 ], [ -83.345032, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.613708, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.800476, 66.513260 ], [ -86.069641, 66.057060 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.099807 ], [ -89.914856, 64.033744 ], [ -90.000000, 63.989213 ], [ -90.219727, 63.872134 ], [ -90.219727, 66.600676 ], [ -82.825928, 66.600676 ], [ -83.067627, 66.513260 ] ] ], [ [ [ -78.530273, 64.562601 ], [ -78.557739, 64.573216 ], [ -78.530273, 64.605038 ], [ -78.530273, 64.562601 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -79.931030, 62.386551 ], [ -79.521790, 62.364901 ], [ -79.266357, 62.159089 ], [ -79.659119, 61.633812 ], [ -80.101318, 61.718515 ], [ -80.362244, 62.017662 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.386551 ] ] ], [ [ [ -83.251648, 62.915233 ], [ -81.878357, 62.905227 ], [ -81.900330, 62.711944 ], [ -83.070374, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.251648, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.163269, 65.658275 ], [ -84.976501, 65.217591 ], [ -84.465637, 65.372560 ], [ -83.883362, 65.110304 ], [ -82.790222, 64.767101 ], [ -81.642151, 64.456218 ], [ -81.554260, 63.980781 ], [ -80.818176, 64.057785 ], [ -80.104065, 63.726615 ], [ -80.991211, 63.412427 ], [ -82.548523, 63.652355 ], [ -83.108826, 64.102206 ], [ -84.103088, 63.570566 ], [ -85.525818, 63.052470 ], [ -85.869141, 63.637723 ], [ -87.223206, 63.542434 ], [ -86.355286, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -82.825928, 66.600676 ], [ -83.067627, 66.513260 ], [ -83.345032, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.613708, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.800476, 66.513260 ], [ -86.069641, 66.057060 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.099807 ], [ -89.914856, 64.033744 ], [ -90.000000, 63.989213 ], [ -90.219727, 63.872134 ], [ -90.219727, 66.600676 ], [ -82.825928, 66.600676 ] ] ], [ [ [ -78.530273, 64.605038 ], [ -78.530273, 64.562601 ], [ -78.557739, 64.573216 ], [ -78.530273, 64.605038 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.103088, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.966248, 68.132715 ], [ -81.260376, 67.597709 ], [ -81.386719, 67.111272 ], [ -83.067627, 66.513260 ], [ -83.309326, 66.425537 ], [ -85.311584, 66.425537 ], [ -85.613708, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.800476, 66.513260 ], [ -85.852661, 66.425537 ], [ -90.219727, 66.425537 ], [ -90.219727, 68.674541 ], [ -90.000000, 68.804014 ], [ -89.217224, 69.259067 ], [ -88.019714, 68.615532 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.922044 ], [ -85.578003, 68.785138 ], [ -85.523071, 69.882176 ], [ -84.103088, 69.805516 ] ] ], [ [ [ -78.530273, 69.983955 ], [ -78.750000, 70.078691 ], [ -78.958740, 70.167405 ], [ -79.494324, 69.872727 ], [ -81.307068, 69.743797 ], [ -84.946289, 69.967026 ], [ -87.061157, 70.260380 ], [ -88.684387, 70.411031 ], [ -89.159546, 70.612614 ], [ -89.332581, 70.685421 ], [ -78.530273, 70.685421 ], [ -78.530273, 69.983955 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.523071, 69.882176 ], [ -84.103088, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.966248, 68.132715 ], [ -81.260376, 67.597709 ], [ -81.386719, 67.111272 ], [ -83.067627, 66.513260 ], [ -83.309326, 66.425537 ], [ -85.311584, 66.425537 ], [ -85.613708, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.800476, 66.513260 ], [ -85.852661, 66.425537 ], [ -90.219727, 66.425537 ], [ -90.219727, 68.674541 ], [ -90.000000, 68.804014 ], [ -89.217224, 69.259067 ], [ -88.019714, 68.615532 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.922044 ], [ -85.578003, 68.785138 ], [ -85.523071, 69.882176 ] ] ], [ [ [ -78.530273, 70.685421 ], [ -78.530273, 69.983955 ], [ -78.750000, 70.078691 ], [ -78.958740, 70.167405 ], [ -79.494324, 69.872727 ], [ -81.307068, 69.743797 ], [ -84.946289, 69.967026 ], [ -87.061157, 70.260380 ], [ -88.684387, 70.411031 ], [ -89.159546, 70.612614 ], [ -89.332581, 70.685421 ], [ -78.530273, 70.685421 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.564026, 73.157604 ], [ -85.775757, 72.534726 ], [ -84.850159, 73.340461 ], [ -82.317810, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -78.750000, 72.362448 ], [ -78.530273, 72.455416 ], [ -78.530273, 70.539543 ], [ -88.986511, 70.539543 ], [ -89.159546, 70.612614 ], [ -89.513855, 70.762491 ], [ -88.470154, 71.218728 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.582267 ], [ -90.205994, 72.235514 ], [ -90.000000, 72.480238 ], [ -89.436951, 73.129728 ], [ -88.409729, 73.538520 ], [ -85.827942, 73.804149 ], [ -86.564026, 73.157604 ] ] ], [ [ [ -78.750000, 73.684982 ], [ -78.530273, 73.674949 ], [ -78.530273, 72.860647 ], [ -78.750000, 72.833917 ], [ -79.488831, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.878601, 73.333373 ], [ -80.834656, 73.693467 ], [ -80.354004, 73.760425 ], [ -78.750000, 73.684982 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.827942, 73.804149 ], [ -86.564026, 73.157604 ], [ -85.775757, 72.534726 ], [ -84.850159, 73.340461 ], [ -82.317810, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -78.750000, 72.362448 ], [ -78.530273, 72.455416 ], [ -78.530273, 70.539543 ], [ -88.986511, 70.539543 ], [ -89.159546, 70.612614 ], [ -89.513855, 70.762491 ], [ -88.470154, 71.218728 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.582267 ], [ -90.205994, 72.235514 ], [ -90.000000, 72.480238 ], [ -89.436951, 73.129728 ], [ -88.409729, 73.538520 ], [ -85.827942, 73.804149 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.750000, 73.684982 ], [ -78.530273, 73.674949 ], [ -78.530273, 72.860647 ], [ -78.750000, 72.833917 ], [ -79.488831, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.878601, 73.333373 ], [ -80.834656, 73.693467 ], [ -80.354004, 73.760425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 75.883402 ], [ -89.824219, 75.847855 ], [ -89.189758, 75.610214 ], [ -87.838440, 75.566465 ], [ -86.380005, 75.482706 ], [ -84.789734, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.060120, 75.337416 ], [ -79.834900, 74.923713 ], [ -80.458374, 74.657836 ], [ -81.949768, 74.442729 ], [ -83.229675, 74.564543 ], [ -86.099854, 74.410284 ], [ -88.151550, 74.392559 ], [ -89.766541, 74.516223 ], [ -90.000000, 74.545526 ], [ -90.219727, 74.572582 ], [ -90.219727, 75.926879 ], [ -90.000000, 75.883402 ] ] ], [ [ [ -78.530273, 76.637321 ], [ -78.750000, 76.588356 ], [ -80.562744, 76.178435 ], [ -83.174744, 76.454560 ], [ -86.113586, 76.299303 ], [ -87.602234, 76.420423 ], [ -89.491882, 76.472561 ], [ -89.590759, 76.840816 ], [ -89.604492, 76.890745 ], [ -78.530273, 76.890745 ], [ -78.530273, 76.637321 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.219727, 75.926879 ], [ -90.000000, 75.883402 ], [ -89.824219, 75.847855 ], [ -89.189758, 75.610214 ], [ -87.838440, 75.566465 ], [ -86.380005, 75.482706 ], [ -84.789734, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.060120, 75.337416 ], [ -79.834900, 74.923713 ], [ -80.458374, 74.657836 ], [ -81.949768, 74.442729 ], [ -83.229675, 74.564543 ], [ -86.099854, 74.410284 ], [ -88.151550, 74.392559 ], [ -89.766541, 74.516223 ], [ -90.000000, 74.545526 ], [ -90.219727, 74.572582 ], [ -90.219727, 75.926879 ] ] ], [ [ [ -78.530273, 76.890745 ], [ -78.530273, 76.637321 ], [ -78.750000, 76.588356 ], [ -80.562744, 76.178435 ], [ -83.174744, 76.454560 ], [ -86.113586, 76.299303 ], [ -87.602234, 76.420423 ], [ -89.491882, 76.472561 ], [ -89.590759, 76.840816 ], [ -89.604492, 76.890745 ], [ -78.530273, 76.890745 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 77.473775 ], [ -78.750000, 77.427226 ], [ -79.760742, 77.210168 ], [ -79.620667, 76.983861 ], [ -78.750000, 77.003642 ], [ -78.530273, 77.008582 ], [ -78.530273, 76.790701 ], [ -89.577026, 76.790701 ], [ -89.590759, 76.840816 ], [ -89.618225, 76.952275 ], [ -87.769775, 77.178513 ], [ -88.261414, 77.900134 ], [ -87.651672, 77.970745 ], [ -84.976501, 77.539133 ], [ -86.341553, 78.180150 ], [ -87.962036, 78.372130 ], [ -87.154541, 78.758693 ], [ -85.380249, 78.997102 ], [ -85.242920, 79.171335 ], [ -85.209961, 79.212538 ], [ -78.530273, 79.212538 ], [ -78.530273, 77.473775 ] ] ], [ [ [ -86.588745, 79.171335 ], [ -87.190247, 79.039482 ], [ -89.035950, 78.287684 ], [ -90.000000, 78.248591 ], [ -90.219727, 78.239637 ], [ -90.219727, 79.212538 ], [ -86.399231, 79.212538 ], [ -86.588745, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 79.212538 ], [ -78.530273, 77.473775 ], [ -78.750000, 77.427226 ], [ -79.760742, 77.210168 ], [ -79.620667, 76.983861 ], [ -78.750000, 77.003642 ], [ -78.530273, 77.008582 ], [ -78.530273, 76.790701 ], [ -89.577026, 76.790701 ], [ -89.590759, 76.840816 ], [ -89.618225, 76.952275 ], [ -87.769775, 77.178513 ], [ -88.261414, 77.900134 ], [ -87.651672, 77.970745 ], [ -84.976501, 77.539133 ], [ -86.341553, 78.180150 ], [ -87.962036, 78.372130 ], [ -87.154541, 78.758693 ], [ -85.380249, 78.997102 ], [ -85.242920, 79.171335 ], [ -85.209961, 79.212538 ], [ -78.530273, 79.212538 ] ] ], [ [ [ -86.399231, 79.212538 ], [ -86.588745, 79.171335 ], [ -87.190247, 79.039482 ], [ -89.035950, 78.287684 ], [ -90.000000, 78.248591 ], [ -90.219727, 78.239637 ], [ -90.219727, 79.212538 ], [ -86.399231, 79.212538 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.000000, 80.580292 ], [ -89.450684, 80.509454 ], [ -87.810974, 80.320120 ], [ -87.022705, 79.660106 ], [ -85.816956, 79.337252 ], [ -86.588745, 79.171335 ], [ -86.778259, 79.129976 ], [ -90.219727, 79.129976 ], [ -90.219727, 80.608569 ], [ -90.000000, 80.580292 ] ] ], [ [ [ -78.530273, 79.129976 ], [ -85.275879, 79.129976 ], [ -85.242920, 79.171335 ], [ -85.097351, 79.345888 ], [ -86.509094, 79.736728 ], [ -86.932068, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.410950, 80.100165 ], [ -81.850891, 80.464515 ], [ -84.100342, 80.580292 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855820 ], [ -89.854431, 81.093214 ], [ -89.923096, 81.127169 ], [ -78.530273, 81.127169 ], [ -78.530273, 79.129976 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.219727, 80.608569 ], [ -90.000000, 80.580292 ], [ -89.450684, 80.509454 ], [ -87.810974, 80.320120 ], [ -87.022705, 79.660106 ], [ -85.816956, 79.337252 ], [ -86.588745, 79.171335 ], [ -86.778259, 79.129976 ], [ -90.219727, 79.129976 ], [ -90.219727, 80.608569 ] ] ], [ [ [ -78.530273, 81.127169 ], [ -78.530273, 79.129976 ], [ -85.275879, 79.129976 ], [ -85.242920, 79.171335 ], [ -85.097351, 79.345888 ], [ -86.509094, 79.736728 ], [ -86.932068, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.410950, 80.100165 ], [ -81.850891, 80.464515 ], [ -84.100342, 80.580292 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855820 ], [ -89.854431, 81.093214 ], [ -89.923096, 81.127169 ], [ -78.530273, 81.127169 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 81.059130 ], [ -89.783020, 81.059130 ], [ -89.854431, 81.093214 ], [ -90.000000, 81.164372 ], [ -90.200500, 81.260042 ], [ -90.219727, 81.265049 ], [ -90.219727, 82.070407 ], [ -90.101624, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.970520, 82.279799 ], [ -85.501099, 82.652438 ], [ -84.262390, 82.600269 ], [ -83.180237, 82.320279 ], [ -82.688599, 82.676285 ], [ -82.650146, 82.704241 ], [ -78.530273, 82.704241 ], [ -78.530273, 81.059130 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 82.704241 ], [ -78.530273, 81.059130 ], [ -89.783020, 81.059130 ], [ -89.854431, 81.093214 ], [ -90.000000, 81.164372 ], [ -90.200500, 81.260042 ], [ -90.219727, 81.265049 ], [ -90.219727, 82.070407 ], [ -90.101624, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.970520, 82.279799 ], [ -85.501099, 82.652438 ], [ -84.262390, 82.600269 ], [ -83.180237, 82.320279 ], [ -82.688599, 82.676285 ], [ -82.650146, 82.704241 ], [ -78.530273, 82.704241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.402222, 82.648222 ], [ -85.520325, 82.648222 ], [ -85.501099, 82.652438 ], [ -85.402222, 82.648222 ] ] ], [ [ [ -82.422180, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.307556, 83.130809 ], [ -78.750000, 83.138360 ], [ -78.530273, 83.141641 ], [ -78.530273, 82.648222 ], [ -82.729797, 82.648222 ], [ -82.688599, 82.676285 ], [ -82.422180, 82.860213 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -85.402222, 82.648222 ], [ -85.520325, 82.648222 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -78.530273, 82.648222 ], [ -82.729797, 82.648222 ], [ -82.688599, 82.676285 ], [ -82.422180, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.307556, 83.130809 ], [ -78.750000, 83.138360 ], [ -78.530273, 83.141641 ], [ -78.530273, 82.648222 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -85.070048 ], [ -78.969727, -85.070048 ], [ -78.969727, -83.956169 ], [ -67.280273, -83.956169 ], [ -67.280273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -83.956169 ], [ -67.280273, -85.070048 ], [ -78.969727, -85.070048 ], [ -78.969727, -83.956169 ], [ -67.280273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -84.002262 ], [ -78.969727, -84.002262 ], [ -78.969727, -82.648222 ], [ -67.280273, -82.648222 ], [ -67.280273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -82.648222 ], [ -67.280273, -84.002262 ], [ -78.969727, -84.002262 ], [ -78.969727, -82.648222 ], [ -67.280273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.505005, -81.093214 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.360875 ], [ -67.280273, -81.374891 ], [ -67.280273, -82.704241 ], [ -78.969727, -82.704241 ], [ -78.969727, -81.059130 ], [ -69.700012, -81.059130 ], [ -69.505005, -81.093214 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.700012, -81.059130 ], [ -69.505005, -81.093214 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.360875 ], [ -67.280273, -81.374891 ], [ -67.280273, -82.704241 ], [ -78.969727, -82.704241 ], [ -78.969727, -81.059130 ], [ -69.700012, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.259434 ], [ -73.245850, -80.416165 ], [ -71.444092, -80.690233 ], [ -70.015869, -81.003896 ], [ -69.505005, -81.093214 ], [ -69.307251, -81.127169 ], [ -78.969727, -81.127169 ], [ -78.969727, -79.129976 ], [ -78.022156, -79.129976 ], [ -78.024902, -79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.022156, -79.129976 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.259434 ], [ -73.245850, -80.416165 ], [ -71.444092, -80.690233 ], [ -70.015869, -81.003896 ], [ -69.505005, -81.093214 ], [ -69.307251, -81.127169 ], [ -78.969727, -81.127169 ], [ -78.969727, -79.129976 ], [ -78.022156, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.143250, -76.840816 ], [ -76.929016, -77.104554 ], [ -75.401917, -77.280509 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789705 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.917786, -79.212538 ], [ -78.969727, -79.212538 ], [ -78.969727, -76.790701 ], [ -77.181702, -76.790701 ], [ -77.143250, -76.840816 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.181702, -76.790701 ], [ -77.143250, -76.840816 ], [ -76.929016, -77.104554 ], [ -75.401917, -77.280509 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789705 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.917786, -79.212538 ], [ -78.969727, -79.212538 ], [ -78.969727, -76.790701 ], [ -77.181702, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.223145, -73.968802 ], [ -76.088562, -73.958939 ], [ -67.280273, -73.958939 ], [ -67.280273, -75.805486 ], [ -67.500000, -75.843825 ], [ -68.447571, -76.006799 ], [ -69.798889, -76.222983 ], [ -70.600891, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.242126, -76.712650 ], [ -77.143250, -76.840816 ], [ -77.102051, -76.890745 ], [ -78.969727, -76.890745 ], [ -78.969727, -73.958939 ], [ -76.245117, -73.958939 ], [ -76.223145, -73.968802 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -73.958939 ], [ -67.280273, -75.805486 ], [ -67.500000, -75.843825 ], [ -68.447571, -76.006799 ], [ -69.798889, -76.222983 ], [ -70.600891, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.242126, -76.712650 ], [ -77.143250, -76.840816 ], [ -77.102051, -76.890745 ], [ -78.969727, -76.890745 ], [ -78.969727, -73.958939 ], [ -76.245117, -73.958939 ], [ -76.223145, -73.968802 ], [ -76.088562, -73.958939 ], [ -67.280273, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.565918, -71.245239 ], [ -67.917480, -70.853683 ], [ -68.112488, -70.612614 ], [ -68.172913, -70.539543 ], [ -67.280273, -70.539543 ], [ -67.280273, -71.603082 ], [ -67.500000, -71.328071 ], [ -67.565918, -71.245239 ] ] ], [ [ [ -68.664551, -70.612614 ], [ -68.453064, -70.955217 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.091656 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.366609 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.661071 ], [ -73.916016, -71.269067 ], [ -73.232117, -71.151407 ], [ -72.075806, -71.190411 ], [ -71.781921, -70.680879 ], [ -71.773682, -70.612614 ], [ -71.759949, -70.539543 ], [ -68.708496, -70.539543 ], [ -68.664551, -70.612614 ] ] ], [ [ [ -67.280273, -74.079925 ], [ -78.969727, -74.079925 ], [ -78.969727, -73.494879 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.636303 ], [ -76.223145, -73.968802 ], [ -74.891052, -73.871428 ], [ -73.852844, -73.655637 ], [ -72.833862, -73.400984 ], [ -71.619873, -73.263913 ], [ -70.210876, -73.146459 ], [ -68.936462, -73.008952 ], [ -67.958679, -72.793339 ], [ -67.500000, -72.548734 ], [ -67.370911, -72.480238 ], [ -67.280273, -72.315785 ], [ -67.280273, -74.079925 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, -72.315785 ], [ -67.280273, -74.079925 ], [ -78.969727, -74.079925 ], [ -78.969727, -73.494879 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.636303 ], [ -76.223145, -73.968802 ], [ -74.891052, -73.871428 ], [ -73.852844, -73.655637 ], [ -72.833862, -73.400984 ], [ -71.619873, -73.263913 ], [ -70.210876, -73.146459 ], [ -68.936462, -73.008952 ], [ -67.958679, -72.793339 ], [ -67.500000, -72.548734 ], [ -67.370911, -72.480238 ], [ -67.280273, -72.315785 ] ] ], [ [ [ -68.708496, -70.539543 ], [ -68.664551, -70.612614 ], [ -68.453064, -70.955217 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.091656 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.366609 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.661071 ], [ -73.916016, -71.269067 ], [ -73.232117, -71.151407 ], [ -72.075806, -71.190411 ], [ -71.781921, -70.680879 ], [ -71.773682, -70.612614 ], [ -71.759949, -70.539543 ], [ -68.708496, -70.539543 ] ] ], [ [ [ -67.280273, -71.603082 ], [ -67.500000, -71.328071 ], [ -67.565918, -71.245239 ], [ -67.917480, -70.853683 ], [ -68.112488, -70.612614 ], [ -68.172913, -70.539543 ], [ -67.280273, -70.539543 ], [ -67.280273, -71.603082 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.724731, -69.250312 ], [ -69.491272, -69.622685 ], [ -69.060059, -70.074011 ], [ -68.727722, -70.504742 ], [ -68.664551, -70.612614 ], [ -68.620605, -70.685421 ], [ -71.784668, -70.685421 ], [ -71.773682, -70.612614 ], [ -71.724243, -70.308561 ], [ -71.743469, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.254822, -68.878368 ], [ -69.724731, -69.250312 ] ] ], [ [ [ -67.280273, -70.685421 ], [ -68.054810, -70.685421 ], [ -68.112488, -70.612614 ], [ -68.233337, -70.461615 ], [ -68.486023, -70.108616 ], [ -68.546448, -69.717155 ], [ -68.447571, -69.325109 ], [ -67.977905, -68.952473 ], [ -67.585144, -68.541301 ], [ -67.500000, -68.328291 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.994196 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.326101 ], [ -67.280273, -66.899906 ], [ -67.280273, -70.685421 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.254822, -68.878368 ], [ -69.724731, -69.250312 ], [ -69.491272, -69.622685 ], [ -69.060059, -70.074011 ], [ -68.727722, -70.504742 ], [ -68.664551, -70.612614 ], [ -68.620605, -70.685421 ], [ -71.784668, -70.685421 ], [ -71.773682, -70.612614 ], [ -71.724243, -70.308561 ], [ -71.743469, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.254822, -68.878368 ] ] ], [ [ [ -67.280273, -66.899906 ], [ -67.280273, -70.685421 ], [ -68.054810, -70.685421 ], [ -68.112488, -70.612614 ], [ -68.233337, -70.461615 ], [ -68.486023, -70.108616 ], [ -68.546448, -69.717155 ], [ -68.447571, -69.325109 ], [ -67.977905, -68.952473 ], [ -67.585144, -68.541301 ], [ -67.500000, -68.328291 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.994196 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.326101 ], [ -67.280273, -66.899906 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.634338, -52.634730 ], [ -68.634338, -54.868705 ], [ -67.563171, -54.868705 ], [ -67.500000, -54.870285 ], [ -67.280273, -54.879767 ], [ -67.280273, -55.286937 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.150940, -55.610935 ], [ -68.642578, -55.579897 ], [ -69.233093, -55.497527 ], [ -69.958191, -55.197683 ], [ -71.007385, -55.053203 ], [ -72.265320, -54.493972 ], [ -73.287048, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.046167 ], [ -72.435608, -53.714590 ], [ -71.109009, -54.073894 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.930430 ], [ -69.345703, -52.517892 ], [ -68.634338, -52.634730 ] ] ], [ [ [ -72.649841, -48.877361 ], [ -72.729492, -48.922499 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.378751 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.675576 ], [ -72.331238, -51.424902 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.141917 ], [ -68.573914, -52.298402 ], [ -69.463806, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.007385, -53.833081 ], [ -71.430359, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.704529, -52.834299 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.978943, -51.043121 ], [ -75.481567, -50.376999 ], [ -75.594177, -48.922499 ], [ -75.605164, -48.777913 ], [ -72.600403, -48.777913 ], [ -72.649841, -48.877361 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.517892 ], [ -68.634338, -52.634730 ], [ -68.634338, -54.868705 ], [ -67.563171, -54.868705 ], [ -67.500000, -54.870285 ], [ -67.280273, -54.879767 ], [ -67.280273, -55.286937 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.150940, -55.610935 ], [ -68.642578, -55.579897 ], [ -69.233093, -55.497527 ], [ -69.958191, -55.197683 ], [ -71.007385, -55.053203 ], [ -72.265320, -54.493972 ], [ -73.287048, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.046167 ], [ -72.435608, -53.714590 ], [ -71.109009, -54.073894 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.930430 ], [ -69.345703, -52.517892 ] ] ], [ [ [ -72.600403, -48.777913 ], [ -72.649841, -48.877361 ], [ -72.729492, -48.922499 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.378751 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.675576 ], [ -72.331238, -51.424902 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.141917 ], [ -68.573914, -52.298402 ], [ -69.463806, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.007385, -53.833081 ], [ -71.430359, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.704529, -52.834299 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.978943, -51.043121 ], [ -75.481567, -50.376999 ], [ -75.594177, -48.922499 ], [ -75.605164, -48.777913 ], [ -72.600403, -48.777913 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.252563, -53.098972 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.280273, -54.067448 ], [ -67.280273, -54.879767 ], [ -67.500000, -54.870285 ], [ -67.563171, -54.868705 ], [ -68.634338, -54.868705 ], [ -68.634338, -52.634730 ], [ -68.252563, -53.098972 ] ] ], [ [ [ -67.280273, -48.900838 ], [ -67.500000, -49.296472 ], [ -67.818604, -49.868087 ], [ -68.730469, -50.263010 ], [ -69.139709, -50.731240 ], [ -68.815613, -51.769540 ], [ -68.150940, -52.348763 ], [ -68.573914, -52.298402 ], [ -69.499512, -52.141917 ], [ -71.916504, -52.008555 ], [ -72.331238, -51.424902 ], [ -72.312012, -50.675576 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.378751 ], [ -73.416138, -49.317961 ], [ -72.729492, -48.922499 ], [ -72.649841, -48.877361 ], [ -72.600403, -48.777913 ], [ -67.280273, -48.777913 ], [ -67.280273, -48.900838 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.634338, -52.634730 ], [ -68.252563, -53.098972 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.280273, -54.067448 ], [ -67.280273, -54.879767 ], [ -67.500000, -54.870285 ], [ -67.563171, -54.868705 ], [ -68.634338, -54.868705 ], [ -68.634338, -52.634730 ] ] ], [ [ [ -67.280273, -48.777913 ], [ -67.280273, -48.900838 ], [ -67.500000, -49.296472 ], [ -67.818604, -49.868087 ], [ -68.730469, -50.263010 ], [ -69.139709, -50.731240 ], [ -68.815613, -51.769540 ], [ -68.150940, -52.348763 ], [ -68.573914, -52.298402 ], [ -69.499512, -52.141917 ], [ -71.916504, -52.008555 ], [ -72.331238, -51.424902 ], [ -72.312012, -50.675576 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.378751 ], [ -73.416138, -49.317961 ], [ -72.729492, -48.922499 ], [ -72.649841, -48.877361 ], [ -72.600403, -48.777913 ], [ -67.280273, -48.777913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.916504, -40.830437 ], [ -71.897278, -40.979898 ], [ -71.748962, -42.051332 ], [ -72.149963, -42.252918 ], [ -71.916504, -43.407043 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.331482, -44.406316 ], [ -71.224365, -44.783785 ], [ -71.661072, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.919250, -46.884600 ], [ -72.449341, -47.737476 ], [ -72.331238, -48.242967 ], [ -72.649841, -48.877361 ], [ -72.729492, -48.922499 ], [ -72.979431, -49.066668 ], [ -75.583191, -49.066668 ], [ -75.594177, -48.922499 ], [ -75.610657, -48.672826 ], [ -75.184937, -47.711610 ], [ -74.127502, -46.939012 ], [ -75.646362, -46.647551 ], [ -74.693298, -45.763691 ], [ -74.352722, -44.101393 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.391418, -42.116561 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.223191 ], [ -74.020386, -41.793840 ], [ -73.872070, -40.979898 ], [ -73.841858, -40.813809 ], [ -71.913757, -40.813809 ], [ -71.916504, -40.830437 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.913757, -40.813809 ], [ -71.916504, -40.830437 ], [ -71.897278, -40.979898 ], [ -71.748962, -42.051332 ], [ -72.149963, -42.252918 ], [ -71.916504, -43.407043 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.331482, -44.406316 ], [ -71.224365, -44.783785 ], [ -71.661072, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.919250, -46.884600 ], [ -72.449341, -47.737476 ], [ -72.331238, -48.242967 ], [ -72.649841, -48.877361 ], [ -72.729492, -48.922499 ], [ -72.979431, -49.066668 ], [ -75.583191, -49.066668 ], [ -75.594177, -48.922499 ], [ -75.610657, -48.672826 ], [ -75.184937, -47.711610 ], [ -74.127502, -46.939012 ], [ -75.646362, -46.647551 ], [ -74.693298, -45.763691 ], [ -74.352722, -44.101393 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.391418, -42.116561 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.223191 ], [ -74.020386, -41.793840 ], [ -73.872070, -40.979898 ], [ -73.841858, -40.813809 ], [ -71.913757, -40.813809 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -45.540984 ], [ -67.294006, -45.550602 ], [ -67.500000, -46.086567 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.280273, -46.524855 ], [ -67.280273, -48.900838 ], [ -67.373657, -49.066668 ], [ -72.979431, -49.066668 ], [ -72.729492, -48.922499 ], [ -72.649841, -48.877361 ], [ -72.331238, -48.242967 ], [ -72.449341, -47.737476 ], [ -71.919250, -46.884600 ], [ -71.553955, -45.560218 ], [ -71.661072, -44.972571 ], [ -71.224365, -44.783785 ], [ -71.331482, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.407043 ], [ -72.149963, -42.252918 ], [ -71.748962, -42.051332 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.913757, -40.813809 ], [ -67.280273, -40.813809 ], [ -67.280273, -45.540984 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -40.813809 ], [ -67.280273, -45.540984 ], [ -67.294006, -45.550602 ], [ -67.500000, -46.086567 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.280273, -46.524855 ], [ -67.280273, -48.900838 ], [ -67.373657, -49.066668 ], [ -72.979431, -49.066668 ], [ -72.729492, -48.922499 ], [ -72.649841, -48.877361 ], [ -72.331238, -48.242967 ], [ -72.449341, -47.737476 ], [ -71.919250, -46.884600 ], [ -71.553955, -45.560218 ], [ -71.661072, -44.972571 ], [ -71.224365, -44.783785 ], [ -71.331482, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.407043 ], [ -72.149963, -42.252918 ], [ -71.748962, -42.051332 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.913757, -40.813809 ], [ -67.280273, -40.813809 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.383911, -31.952162 ], [ -70.076294, -33.089240 ], [ -69.815369, -33.273139 ], [ -69.818115, -34.191358 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.122742, -36.657403 ], [ -71.119995, -37.575059 ], [ -70.815125, -38.552461 ], [ -71.413879, -38.914544 ], [ -71.683044, -39.806426 ], [ -71.916504, -40.830437 ], [ -71.897278, -40.979898 ], [ -71.875305, -41.145570 ], [ -73.902283, -41.145570 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.941331 ], [ -73.218384, -39.257778 ], [ -73.506775, -38.281313 ], [ -73.589172, -37.155939 ], [ -73.168945, -37.123096 ], [ -72.553711, -35.507636 ], [ -71.864319, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.512756, -31.952162 ], [ -71.540222, -31.765537 ], [ -70.433350, -31.765537 ], [ -70.383911, -31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.433350, -31.765537 ], [ -70.383911, -31.952162 ], [ -70.076294, -33.089240 ], [ -69.815369, -33.273139 ], [ -69.818115, -34.191358 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.122742, -36.657403 ], [ -71.119995, -37.575059 ], [ -70.815125, -38.552461 ], [ -71.413879, -38.914544 ], [ -71.683044, -39.806426 ], [ -71.916504, -40.830437 ], [ -71.897278, -40.979898 ], [ -71.875305, -41.145570 ], [ -73.902283, -41.145570 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.941331 ], [ -73.218384, -39.257778 ], [ -73.506775, -38.281313 ], [ -73.589172, -37.155939 ], [ -73.168945, -37.123096 ], [ -72.553711, -35.507636 ], [ -71.864319, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.512756, -31.952162 ], [ -71.540222, -31.765537 ], [ -70.433350, -31.765537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -41.145570 ], [ -71.875305, -41.145570 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.683044, -39.806426 ], [ -71.413879, -38.914544 ], [ -70.815125, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.122742, -36.657403 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.191358 ], [ -69.815369, -33.273139 ], [ -70.076294, -33.089240 ], [ -70.383911, -31.952162 ], [ -70.433350, -31.765537 ], [ -67.280273, -31.765537 ], [ -67.280273, -41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -31.765537 ], [ -67.280273, -41.145570 ], [ -71.875305, -41.145570 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.683044, -39.806426 ], [ -71.413879, -38.914544 ], [ -70.815125, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.122742, -36.657403 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.191358 ], [ -69.815369, -33.273139 ], [ -70.076294, -33.089240 ], [ -70.383911, -31.952162 ], [ -70.433350, -31.765537 ], [ -67.280273, -31.765537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.096008, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.809099 ], [ -67.280273, -22.766051 ], [ -67.280273, -23.873280 ], [ -67.329712, -24.023888 ], [ -67.500000, -24.099126 ], [ -68.420105, -24.517139 ], [ -68.387146, -26.182554 ], [ -68.595886, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.002380, -27.520451 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.919739, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.383911, -31.952162 ], [ -70.331726, -32.138409 ], [ -71.482544, -32.138409 ], [ -71.512756, -31.952162 ], [ -71.669312, -30.918720 ], [ -71.372681, -30.095237 ], [ -71.490784, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.727234, -25.705888 ], [ -70.405884, -23.626911 ], [ -70.172424, -21.943046 ], [ -70.144958, -21.739091 ], [ -68.153687, -21.739091 ], [ -68.096008, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.153687, -21.739091 ], [ -68.096008, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.809099 ], [ -67.280273, -22.766051 ], [ -67.280273, -23.873280 ], [ -67.329712, -24.023888 ], [ -67.500000, -24.099126 ], [ -68.420105, -24.517139 ], [ -68.387146, -26.182554 ], [ -68.595886, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.002380, -27.520451 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.919739, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.383911, -31.952162 ], [ -70.331726, -32.138409 ], [ -71.482544, -32.138409 ], [ -71.512756, -31.952162 ], [ -71.669312, -30.918720 ], [ -71.372681, -30.095237 ], [ -71.490784, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.727234, -25.705888 ], [ -70.405884, -23.626911 ], [ -70.172424, -21.943046 ], [ -70.144958, -21.739091 ], [ -68.153687, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -22.766051 ], [ -67.500000, -22.809099 ], [ -67.829590, -22.872379 ], [ -68.096008, -21.943046 ], [ -68.153687, -21.739091 ], [ -67.280273, -21.739091 ], [ -67.280273, -22.766051 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -21.739091 ], [ -67.280273, -22.766051 ], [ -67.500000, -22.809099 ], [ -67.829590, -22.872379 ], [ -68.096008, -21.943046 ], [ -68.153687, -21.739091 ], [ -67.280273, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -32.138409 ], [ -70.331726, -32.138409 ], [ -70.383911, -31.952162 ], [ -70.537720, -31.363018 ], [ -69.919739, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.002380, -27.520451 ], [ -68.296509, -26.897578 ], [ -68.595886, -26.504989 ], [ -68.387146, -26.182554 ], [ -68.420105, -24.517139 ], [ -67.500000, -24.099126 ], [ -67.329712, -24.023888 ], [ -67.280273, -23.873280 ], [ -67.280273, -32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -23.873280 ], [ -67.280273, -32.138409 ], [ -70.331726, -32.138409 ], [ -70.383911, -31.952162 ], [ -70.537720, -31.363018 ], [ -69.919739, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.002380, -27.520451 ], [ -68.296509, -26.897578 ], [ -68.595886, -26.504989 ], [ -68.387146, -26.182554 ], [ -68.420105, -24.517139 ], [ -67.500000, -24.099126 ], [ -67.329712, -24.023888 ], [ -67.280273, -23.873280 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.548706, -11.008601 ], [ -70.095520, -11.121812 ], [ -69.576416, -10.962764 ], [ -69.524231, -10.962764 ], [ -69.408875, -11.178402 ], [ -68.667297, -12.559925 ], [ -68.881531, -12.897489 ], [ -68.930969, -13.600609 ], [ -68.950195, -14.453299 ], [ -69.340210, -14.952746 ], [ -69.161682, -15.323923 ], [ -69.392395, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.578576 ], [ -69.859314, -18.091033 ], [ -70.372925, -18.346705 ], [ -71.375427, -17.772228 ], [ -71.463318, -17.361125 ], [ -73.446350, -16.357039 ], [ -75.239868, -15.265638 ], [ -76.011658, -14.647368 ], [ -76.423645, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -77.667847, -11.178402 ], [ -77.783203, -10.962764 ], [ -70.548706, -10.962764 ], [ -70.548706, -11.008601 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.524231, -10.962764 ], [ -69.408875, -11.178402 ], [ -68.667297, -12.559925 ], [ -68.881531, -12.897489 ], [ -68.930969, -13.600609 ], [ -68.950195, -14.453299 ], [ -69.340210, -14.952746 ], [ -69.161682, -15.323923 ], [ -69.392395, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.578576 ], [ -69.859314, -18.091033 ], [ -70.372925, -18.346705 ], [ -71.375427, -17.772228 ], [ -71.463318, -17.361125 ], [ -73.446350, -16.357039 ], [ -75.239868, -15.265638 ], [ -76.011658, -14.647368 ], [ -76.423645, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -77.667847, -11.178402 ], [ -77.783203, -10.962764 ], [ -70.548706, -10.962764 ], [ -70.548706, -11.008601 ], [ -70.095520, -11.121812 ], [ -69.576416, -10.962764 ], [ -69.524231, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.101257, -18.258045 ], [ -68.969421, -18.981623 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.222351, -21.493964 ], [ -68.096008, -21.943046 ], [ -68.038330, -22.146708 ], [ -70.199890, -22.146708 ], [ -70.172424, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.166931, -19.756364 ], [ -70.372925, -18.346705 ], [ -69.859314, -18.091033 ], [ -69.592896, -17.578576 ], [ -69.101257, -18.258045 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.578576 ], [ -69.101257, -18.258045 ], [ -68.969421, -18.981623 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.222351, -21.493964 ], [ -68.096008, -21.943046 ], [ -68.038330, -22.146708 ], [ -70.199890, -22.146708 ], [ -70.172424, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.166931, -19.756364 ], [ -70.372925, -18.346705 ], [ -69.859314, -18.091033 ], [ -69.592896, -17.578576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.788147, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.236084, -10.962764 ], [ -67.280273, -10.962764 ], [ -67.280273, -22.146708 ], [ -68.038330, -22.146708 ], [ -68.096008, -21.943046 ], [ -68.222351, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.969421, -18.981623 ], [ -69.101257, -18.258045 ], [ -69.592896, -17.578576 ], [ -68.961182, -16.499299 ], [ -69.392395, -15.660065 ], [ -69.161682, -15.323923 ], [ -69.340210, -14.952746 ], [ -68.950195, -14.453299 ], [ -68.930969, -13.600609 ], [ -68.881531, -12.897489 ], [ -68.667297, -12.559925 ], [ -69.408875, -11.178402 ], [ -69.524231, -10.962764 ], [ -69.414368, -10.962764 ], [ -68.788147, -11.035560 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.962764 ], [ -67.280273, -22.146708 ], [ -68.038330, -22.146708 ], [ -68.096008, -21.943046 ], [ -68.222351, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.969421, -18.981623 ], [ -69.101257, -18.258045 ], [ -69.592896, -17.578576 ], [ -68.961182, -16.499299 ], [ -69.392395, -15.660065 ], [ -69.161682, -15.323923 ], [ -69.340210, -14.952746 ], [ -68.950195, -14.453299 ], [ -68.930969, -13.600609 ], [ -68.881531, -12.897489 ], [ -68.667297, -12.559925 ], [ -69.408875, -11.178402 ], [ -69.524231, -10.962764 ], [ -69.414368, -10.962764 ], [ -68.788147, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.236084, -10.962764 ], [ -67.280273, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.271790, -11.013993 ], [ -68.788147, -11.035560 ], [ -69.414368, -10.962764 ], [ -68.236084, -10.962764 ], [ -68.271790, -11.013993 ] ] ], [ [ [ -70.548706, -11.008601 ], [ -70.548706, -10.962764 ], [ -69.576416, -10.962764 ], [ -70.095520, -11.121812 ], [ -70.548706, -11.008601 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.576416, -10.962764 ], [ -70.095520, -11.121812 ], [ -70.548706, -11.008601 ], [ -70.548706, -10.962764 ], [ -69.576416, -10.962764 ] ] ], [ [ [ -68.236084, -10.962764 ], [ -68.271790, -11.013993 ], [ -68.788147, -11.035560 ], [ -69.414368, -10.962764 ], [ -68.236084, -10.962764 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, -0.184021 ], [ -69.579163, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.694275, -3.740931 ], [ -70.048828, -2.723583 ], [ -70.815125, -2.254362 ], [ -71.413879, -2.342182 ], [ -71.776428, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.072815, -2.306506 ], [ -73.660583, -1.257834 ], [ -74.124756, -1.002451 ], [ -74.443359, -0.530083 ], [ -75.108032, -0.054932 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.802917, 0.085144 ], [ -76.003418, 0.219726 ], [ -70.021362, 0.219726 ], [ -70.021362, -0.184021 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.219726 ], [ -70.021362, -0.184021 ], [ -69.579163, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.694275, -3.740931 ], [ -70.048828, -2.723583 ], [ -70.815125, -2.254362 ], [ -71.413879, -2.342182 ], [ -71.776428, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.072815, -2.306506 ], [ -73.660583, -1.257834 ], [ -74.124756, -1.002451 ], [ -74.443359, -0.530083 ], [ -75.108032, -0.054932 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.802917, 0.085144 ], [ -76.003418, 0.219726 ], [ -70.021362, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.802917, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.234375, -0.909081 ], [ -75.547485, -1.559866 ], [ -76.637878, -2.608352 ], [ -77.838135, -3.000642 ], [ -78.453369, -3.872476 ], [ -78.640137, -4.546308 ], [ -78.969727, -4.784469 ], [ -78.969727, 0.219726 ], [ -76.003418, 0.219726 ], [ -75.802917, 0.085144 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.003418, 0.219726 ], [ -75.802917, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.234375, -0.909081 ], [ -75.547485, -1.559866 ], [ -76.637878, -2.608352 ], [ -77.838135, -3.000642 ], [ -78.453369, -3.872476 ], [ -78.640137, -4.546308 ], [ -78.969727, -4.784469 ], [ -78.969727, 0.219726 ], [ -76.003418, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359, -0.530083 ], [ -74.124756, -1.002451 ], [ -73.660583, -1.257834 ], [ -73.072815, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.776428, -2.169281 ], [ -71.413879, -2.342182 ], [ -70.815125, -2.254362 ], [ -70.048828, -2.723583 ], [ -70.694275, -3.740931 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.250551 ], [ -70.930481, -4.401183 ], [ -71.748962, -4.592852 ], [ -72.894287, -5.274213 ], [ -72.965698, -5.738976 ], [ -73.221130, -6.088667 ], [ -73.122253, -6.629142 ], [ -73.726501, -6.918247 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.523150 ], [ -73.572693, -8.423470 ], [ -73.017883, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.052698 ], [ -71.304016, -10.077037 ], [ -70.482788, -9.489699 ], [ -70.548706, -11.008601 ], [ -70.095520, -11.121812 ], [ -69.529724, -10.949282 ], [ -69.408875, -11.178402 ], [ -69.293518, -11.393879 ], [ -77.552490, -11.393879 ], [ -77.667847, -11.178402 ], [ -78.093567, -10.377064 ], [ -78.750000, -8.993600 ], [ -78.969727, -8.529417 ], [ -78.969727, -4.784469 ], [ -78.640137, -4.546308 ], [ -78.453369, -3.872476 ], [ -77.838135, -3.000642 ], [ -76.637878, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.909081 ], [ -75.374451, -0.151062 ], [ -75.108032, -0.054932 ], [ -74.443359, -0.530083 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.530083 ], [ -74.124756, -1.002451 ], [ -73.660583, -1.257834 ], [ -73.072815, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.776428, -2.169281 ], [ -71.413879, -2.342182 ], [ -70.815125, -2.254362 ], [ -70.048828, -2.723583 ], [ -70.694275, -3.740931 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.250551 ], [ -70.930481, -4.401183 ], [ -71.748962, -4.592852 ], [ -72.894287, -5.274213 ], [ -72.965698, -5.738976 ], [ -73.221130, -6.088667 ], [ -73.122253, -6.629142 ], [ -73.726501, -6.918247 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.523150 ], [ -73.572693, -8.423470 ], [ -73.017883, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.052698 ], [ -71.304016, -10.077037 ], [ -70.482788, -9.489699 ], [ -70.548706, -11.008601 ], [ -70.095520, -11.121812 ], [ -69.529724, -10.949282 ], [ -69.408875, -11.178402 ], [ -69.293518, -11.393879 ], [ -77.552490, -11.393879 ], [ -77.667847, -11.178402 ], [ -78.093567, -10.377064 ], [ -78.750000, -8.993600 ], [ -78.969727, -8.529417 ], [ -78.969727, -4.784469 ], [ -78.640137, -4.546308 ], [ -78.453369, -3.872476 ], [ -77.838135, -3.000642 ], [ -76.637878, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.909081 ], [ -75.374451, -0.151062 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -11.393879 ], [ -69.293518, -11.393879 ], [ -69.408875, -11.178402 ], [ -69.529724, -10.949282 ], [ -68.788147, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.049316, -10.711888 ], [ -67.280273, -10.352748 ], [ -67.280273, -11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.352748 ], [ -67.280273, -11.393879 ], [ -69.293518, -11.393879 ], [ -69.408875, -11.178402 ], [ -69.529724, -10.949282 ], [ -68.788147, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.049316, -10.711888 ], [ -67.280273, -10.352748 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.352748 ], [ -68.049316, -10.711888 ], [ -68.271790, -11.013993 ], [ -68.788147, -11.035560 ], [ -69.529724, -10.949282 ], [ -70.095520, -11.121812 ], [ -70.548706, -11.008601 ], [ -70.482788, -9.489699 ], [ -71.304016, -10.077037 ], [ -72.185669, -10.052698 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.017883, -9.031578 ], [ -73.572693, -8.423470 ], [ -73.987427, -7.523150 ], [ -73.723755, -7.340675 ], [ -73.726501, -6.918247 ], [ -73.122253, -6.629142 ], [ -73.221130, -6.088667 ], [ -72.965698, -5.738976 ], [ -72.894287, -5.274213 ], [ -71.748962, -4.592852 ], [ -70.930481, -4.401183 ], [ -70.795898, -4.250551 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.579163, -0.549308 ], [ -70.021362, -0.184021 ], [ -70.021362, 0.219726 ], [ -67.280273, 0.219726 ], [ -67.280273, -10.352748 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.491272, -1.837148 ], [ -67.280273, -10.352748 ], [ -68.049316, -10.711888 ], [ -68.271790, -11.013993 ], [ -68.788147, -11.035560 ], [ -69.529724, -10.949282 ], [ -70.095520, -11.121812 ], [ -70.548706, -11.008601 ], [ -70.482788, -9.489699 ], [ -71.304016, -10.077037 ], [ -72.185669, -10.052698 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.017883, -9.031578 ], [ -73.572693, -8.423470 ], [ -73.987427, -7.523150 ], [ -73.723755, -7.340675 ], [ -73.726501, -6.918247 ], [ -73.122253, -6.629142 ], [ -73.221130, -6.088667 ], [ -72.965698, -5.738976 ], [ -72.894287, -5.274213 ], [ -71.748962, -4.592852 ], [ -70.930481, -4.401183 ], [ -70.795898, -4.250551 ], [ -69.895020, -4.297113 ], [ -69.491272, -1.837148 ] ] ], [ [ [ -70.021362, 0.219726 ], [ -69.889526, -0.293883 ], [ -70.021362, -0.184021 ], [ -70.021362, 0.219726 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.750000, 9.438224 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.731018, 8.947480 ], [ -77.354736, 8.670633 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.936836 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.512258 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.388148 ], [ -78.623657, 8.719503 ], [ -78.750000, 8.790083 ], [ -78.969727, 8.914920 ], [ -78.969727, 9.451771 ], [ -78.750000, 9.438224 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.969727, 9.451771 ], [ -78.750000, 9.438224 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.731018, 8.947480 ], [ -77.354736, 8.670633 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.936836 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.512258 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.388148 ], [ -78.623657, 8.719503 ], [ -78.750000, 8.790083 ], [ -78.969727, 8.914920 ], [ -78.969727, 9.451771 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.196655, 11.178402 ], [ -72.229614, 11.111032 ], [ -72.616882, 10.822515 ], [ -72.908020, 10.452701 ], [ -73.028870, 9.738835 ], [ -73.306274, 9.153621 ], [ -72.789917, 9.085824 ], [ -72.660828, 8.627188 ], [ -72.441101, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.446594, 7.425113 ], [ -72.199402, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.095520, 6.961870 ], [ -69.389648, 6.102322 ], [ -68.985901, 6.208821 ], [ -68.266296, 6.154209 ], [ -67.697754, 6.268888 ], [ -67.500000, 6.173324 ], [ -67.343445, 6.096860 ], [ -67.500000, 5.626919 ], [ -67.521973, 5.558582 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.623596, 3.839591 ], [ -67.500000, 3.713523 ], [ -67.337952, 3.543576 ], [ -67.304993, 3.318760 ], [ -67.500000, 3.129546 ], [ -67.810364, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.447815, 2.602864 ], [ -67.280273, 2.383346 ], [ -67.280273, 1.743810 ], [ -67.500000, 1.996361 ], [ -67.538452, 2.037534 ], [ -67.870789, 1.694394 ], [ -69.818115, 1.716357 ], [ -69.807129, 1.090327 ], [ -69.219360, 0.985974 ], [ -69.255066, 0.604237 ], [ -69.452820, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.980164, -0.219726 ], [ -74.880066, -0.219726 ], [ -75.108032, -0.054932 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.802917, 0.085144 ], [ -76.294556, 0.417477 ], [ -76.577454, 0.258178 ], [ -77.426147, 0.398251 ], [ -77.670593, 0.826693 ], [ -77.857361, 0.810215 ], [ -78.750000, 1.320989 ], [ -78.857117, 1.381397 ], [ -78.969727, 1.642231 ], [ -78.969727, 1.697139 ], [ -78.750000, 1.743810 ], [ -78.618164, 1.768518 ], [ -78.664856, 2.268084 ], [ -78.428650, 2.630301 ], [ -77.934265, 2.698892 ], [ -77.511292, 3.326986 ], [ -77.129517, 3.850553 ], [ -77.497559, 4.088932 ], [ -77.308044, 4.669505 ], [ -77.533264, 5.583184 ], [ -77.319031, 5.845545 ], [ -77.478333, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.936836 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.670633 ], [ -76.838379, 8.640765 ], [ -76.088562, 9.337962 ], [ -75.676575, 9.443643 ], [ -75.665588, 9.774025 ], [ -75.481567, 10.620118 ], [ -74.907532, 11.084080 ], [ -74.278564, 11.102947 ], [ -74.251099, 11.178402 ], [ -74.198914, 11.313094 ], [ -73.416138, 11.229592 ], [ -73.160706, 11.393879 ], [ -72.086792, 11.393879 ], [ -72.196655, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.086792, 11.393879 ], [ -72.196655, 11.178402 ], [ -72.229614, 11.111032 ], [ -72.616882, 10.822515 ], [ -72.908020, 10.452701 ], [ -73.028870, 9.738835 ], [ -73.306274, 9.153621 ], [ -72.789917, 9.085824 ], [ -72.660828, 8.627188 ], [ -72.441101, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.446594, 7.425113 ], [ -72.199402, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.095520, 6.961870 ], [ -69.389648, 6.102322 ], [ -68.985901, 6.208821 ], [ -68.266296, 6.154209 ], [ -67.697754, 6.268888 ], [ -67.500000, 6.173324 ], [ -67.343445, 6.096860 ], [ -67.500000, 5.626919 ], [ -67.521973, 5.558582 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.623596, 3.839591 ], [ -67.500000, 3.713523 ], [ -67.337952, 3.543576 ], [ -67.304993, 3.318760 ], [ -67.500000, 3.129546 ], [ -67.810364, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.447815, 2.602864 ], [ -67.280273, 2.383346 ], [ -67.280273, 1.743810 ], [ -67.500000, 1.996361 ], [ -67.538452, 2.037534 ], [ -67.870789, 1.694394 ], [ -69.818115, 1.716357 ], [ -69.807129, 1.090327 ], [ -69.219360, 0.985974 ], [ -69.255066, 0.604237 ], [ -69.452820, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.980164, -0.219726 ], [ -74.880066, -0.219726 ], [ -75.108032, -0.054932 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.802917, 0.085144 ], [ -76.294556, 0.417477 ], [ -76.577454, 0.258178 ], [ -77.426147, 0.398251 ], [ -77.670593, 0.826693 ], [ -77.857361, 0.810215 ], [ -78.750000, 1.320989 ], [ -78.857117, 1.381397 ], [ -78.969727, 1.642231 ], [ -78.969727, 1.697139 ], [ -78.750000, 1.743810 ], [ -78.618164, 1.768518 ], [ -78.664856, 2.268084 ], [ -78.428650, 2.630301 ], [ -77.934265, 2.698892 ], [ -77.511292, 3.326986 ], [ -77.129517, 3.850553 ], [ -77.497559, 4.088932 ], [ -77.308044, 4.669505 ], [ -77.533264, 5.583184 ], [ -77.319031, 5.845545 ], [ -77.478333, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.936836 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.670633 ], [ -76.838379, 8.640765 ], [ -76.088562, 9.337962 ], [ -75.676575, 9.443643 ], [ -75.665588, 9.774025 ], [ -75.481567, 10.620118 ], [ -74.907532, 11.084080 ], [ -74.278564, 11.102947 ], [ -74.251099, 11.178402 ], [ -74.198914, 11.313094 ], [ -73.416138, 11.229592 ], [ -73.160706, 11.393879 ], [ -72.086792, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.773682, 11.178402 ], [ -71.622620, 10.970854 ], [ -71.633606, 10.447299 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.072264 ], [ -71.265564, 9.137351 ], [ -71.040344, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.402893, 10.970854 ], [ -70.768433, 11.178402 ], [ -70.155945, 11.377724 ], [ -70.161438, 11.393879 ], [ -68.826599, 11.393879 ], [ -68.573914, 11.178402 ], [ -68.233337, 10.887254 ], [ -68.194885, 10.555322 ], [ -67.500000, 10.549922 ], [ -67.280273, 10.549922 ], [ -67.280273, 2.383346 ], [ -67.447815, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.810364, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.304993, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.713523 ], [ -67.623596, 3.839591 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.558582 ], [ -67.500000, 5.626919 ], [ -67.343445, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.268888 ], [ -68.266296, 6.154209 ], [ -68.985901, 6.208821 ], [ -69.389648, 6.102322 ], [ -70.095520, 6.961870 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.199402, 7.340675 ], [ -72.446594, 7.425113 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.441101, 8.407168 ], [ -72.660828, 8.627188 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.153621 ], [ -73.028870, 9.738835 ], [ -72.908020, 10.452701 ], [ -72.616882, 10.822515 ], [ -72.229614, 11.111032 ], [ -72.196655, 11.178402 ], [ -72.086792, 11.393879 ], [ -71.930237, 11.393879 ], [ -71.773682, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.826599, 11.393879 ], [ -68.573914, 11.178402 ], [ -68.233337, 10.887254 ], [ -68.194885, 10.555322 ], [ -67.500000, 10.549922 ], [ -67.280273, 10.549922 ], [ -67.280273, 2.383346 ], [ -67.447815, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.810364, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.304993, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.713523 ], [ -67.623596, 3.839591 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.558582 ], [ -67.500000, 5.626919 ], [ -67.343445, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.268888 ], [ -68.266296, 6.154209 ], [ -68.985901, 6.208821 ], [ -69.389648, 6.102322 ], [ -70.095520, 6.961870 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.199402, 7.340675 ], [ -72.446594, 7.425113 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.441101, 8.407168 ], [ -72.660828, 8.627188 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.153621 ], [ -73.028870, 9.738835 ], [ -72.908020, 10.452701 ], [ -72.616882, 10.822515 ], [ -72.229614, 11.111032 ], [ -72.196655, 11.178402 ], [ -72.086792, 11.393879 ], [ -71.930237, 11.393879 ], [ -71.773682, 11.178402 ], [ -71.622620, 10.970854 ], [ -71.633606, 10.447299 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.072264 ], [ -71.265564, 9.137351 ], [ -71.040344, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.402893, 10.970854 ], [ -70.768433, 11.178402 ], [ -70.155945, 11.377724 ], [ -70.161438, 11.393879 ], [ -68.826599, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.750000, 1.320989 ], [ -77.857361, 0.810215 ], [ -77.670593, 0.826693 ], [ -77.426147, 0.398251 ], [ -76.577454, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.802917, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.363464, -0.219726 ], [ -78.969727, -0.219726 ], [ -78.969727, 1.318243 ], [ -78.857117, 1.381397 ], [ -78.750000, 1.320989 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.857117, 1.381397 ], [ -78.750000, 1.320989 ], [ -77.857361, 0.810215 ], [ -77.670593, 0.826693 ], [ -77.426147, 0.398251 ], [ -76.577454, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.802917, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.363464, -0.219726 ], [ -78.969727, -0.219726 ], [ -78.969727, 1.318243 ], [ -78.857117, 1.381397 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.880066, -0.219726 ], [ -75.363464, -0.219726 ], [ -75.374451, -0.151062 ], [ -75.108032, -0.054932 ], [ -74.880066, -0.219726 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.880066, -0.219726 ], [ -75.363464, -0.219726 ], [ -75.374451, -0.151062 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 1.996361 ], [ -67.280273, 1.743810 ], [ -67.280273, -0.219726 ], [ -69.980164, -0.219726 ], [ -70.021362, -0.184021 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.452820, 0.708600 ], [ -69.255066, 0.604237 ], [ -69.219360, 0.985974 ], [ -69.807129, 1.090327 ], [ -69.818115, 1.716357 ], [ -67.870789, 1.694394 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.996361 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.996361 ], [ -67.280273, 1.743810 ], [ -67.280273, -0.219726 ], [ -69.980164, -0.219726 ], [ -70.021362, -0.184021 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.452820, 0.708600 ], [ -69.255066, 0.604237 ], [ -69.219360, 0.985974 ], [ -69.807129, 1.090327 ], [ -69.818115, 1.716357 ], [ -67.870789, 1.694394 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.599670, 21.017855 ], [ -75.671082, 20.735566 ], [ -74.934998, 20.694462 ], [ -74.179688, 20.285385 ], [ -74.297791, 20.050771 ], [ -74.962463, 19.924295 ], [ -75.635376, 19.875226 ], [ -76.324768, 19.955278 ], [ -77.755737, 19.857144 ], [ -77.085571, 20.414143 ], [ -77.494812, 20.673905 ], [ -78.137512, 20.740703 ], [ -78.483582, 21.030674 ], [ -78.722534, 21.598704 ], [ -78.750000, 21.598704 ], [ -78.969727, 21.583381 ], [ -78.969727, 22.146708 ], [ -77.816162, 22.146708 ], [ -77.536011, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.816162, 22.146708 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.599670, 21.017855 ], [ -75.671082, 20.735566 ], [ -74.934998, 20.694462 ], [ -74.179688, 20.285385 ], [ -74.297791, 20.050771 ], [ -74.962463, 19.924295 ], [ -75.635376, 19.875226 ], [ -76.324768, 19.955278 ], [ -77.755737, 19.857144 ], [ -77.085571, 20.414143 ], [ -77.494812, 20.673905 ], [ -78.137512, 20.740703 ], [ -78.483582, 21.030674 ], [ -78.722534, 21.598704 ], [ -78.750000, 21.598704 ], [ -78.969727, 21.583381 ], [ -78.969727, 22.146708 ], [ -77.816162, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.571716, 18.492633 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.887273 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.226743 ], [ -78.219910, 18.456163 ], [ -77.799683, 18.526492 ], [ -77.571716, 18.492633 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -77.571716, 18.492633 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.887273 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.226743 ], [ -78.219910, 18.456163 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.581177, 19.872643 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.946716, 18.617616 ], [ -71.688538, 18.318026 ], [ -71.710510, 18.046644 ], [ -72.375183, 18.216307 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.924255, 18.033586 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.451843, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.336731, 18.669665 ], [ -72.792664, 19.103648 ], [ -72.784424, 19.484718 ], [ -73.416138, 19.640001 ], [ -73.190918, 19.916548 ], [ -72.581177, 19.872643 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.872643 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.946716, 18.617616 ], [ -71.688538, 18.318026 ], [ -71.710510, 18.046644 ], [ -72.375183, 18.216307 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.924255, 18.033586 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.451843, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.336731, 18.669665 ], [ -72.792664, 19.103648 ], [ -72.784424, 19.484718 ], [ -73.416138, 19.640001 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.216370, 19.624479 ], [ -69.952698, 19.650348 ], [ -69.771423, 19.295590 ], [ -69.224854, 19.313735 ], [ -69.255066, 19.015384 ], [ -68.810120, 18.981623 ], [ -68.318481, 18.612410 ], [ -68.692017, 18.205871 ], [ -69.167175, 18.424896 ], [ -69.625854, 18.383199 ], [ -69.955444, 18.430108 ], [ -70.133972, 18.247612 ], [ -70.518494, 18.184997 ], [ -70.669556, 18.427502 ], [ -71.001892, 18.284126 ], [ -71.402893, 17.599521 ], [ -71.658325, 17.759150 ], [ -71.710510, 18.046644 ], [ -71.688538, 18.318026 ], [ -71.946716, 18.617616 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.589661, 19.885557 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.589661, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.216370, 19.624479 ], [ -69.952698, 19.650348 ], [ -69.771423, 19.295590 ], [ -69.224854, 19.313735 ], [ -69.255066, 19.015384 ], [ -68.810120, 18.981623 ], [ -68.318481, 18.612410 ], [ -68.692017, 18.205871 ], [ -69.167175, 18.424896 ], [ -69.625854, 18.383199 ], [ -69.955444, 18.430108 ], [ -70.133972, 18.247612 ], [ -70.518494, 18.184997 ], [ -70.669556, 18.427502 ], [ -71.001892, 18.284126 ], [ -71.402893, 17.599521 ], [ -71.658325, 17.759150 ], [ -71.710510, 18.046644 ], [ -71.688538, 18.318026 ], [ -71.946716, 18.617616 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.589661, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.400146, 12.377563 ], [ -71.139221, 12.114523 ], [ -71.334229, 11.778637 ], [ -71.974182, 11.609193 ], [ -72.196655, 11.178402 ], [ -72.229614, 11.111032 ], [ -72.430115, 10.962764 ], [ -75.058594, 10.962764 ], [ -74.907532, 11.084080 ], [ -74.278564, 11.102947 ], [ -74.251099, 11.178402 ], [ -74.198914, 11.313094 ], [ -73.416138, 11.229592 ], [ -72.627869, 11.732924 ], [ -72.240601, 11.956036 ], [ -71.754456, 12.439259 ], [ -71.400146, 12.377563 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.754456, 12.439259 ], [ -71.400146, 12.377563 ], [ -71.139221, 12.114523 ], [ -71.334229, 11.778637 ], [ -71.974182, 11.609193 ], [ -72.196655, 11.178402 ], [ -72.229614, 11.111032 ], [ -72.430115, 10.962764 ], [ -75.058594, 10.962764 ], [ -74.907532, 11.084080 ], [ -74.278564, 11.102947 ], [ -74.251099, 11.178402 ], [ -74.198914, 11.313094 ], [ -73.416138, 11.229592 ], [ -72.627869, 11.732924 ], [ -72.240601, 11.956036 ], [ -71.754456, 12.439259 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.402893, 10.970854 ], [ -70.768433, 11.178402 ], [ -70.155945, 11.377724 ], [ -70.296021, 11.848535 ], [ -69.944458, 12.162856 ], [ -69.584656, 11.461183 ], [ -68.884277, 11.445031 ], [ -68.573914, 11.178402 ], [ -68.323975, 10.962764 ], [ -71.402893, 10.962764 ], [ -71.402893, 10.970854 ] ] ], [ [ [ -71.361694, 11.541925 ], [ -71.949463, 11.423495 ], [ -71.773682, 11.178402 ], [ -71.622620, 10.970854 ], [ -71.625366, 10.962764 ], [ -72.430115, 10.962764 ], [ -72.229614, 11.111032 ], [ -72.196655, 11.178402 ], [ -71.974182, 11.609193 ], [ -71.334229, 11.778637 ], [ -71.361694, 11.541925 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.334229, 11.778637 ], [ -71.361694, 11.541925 ], [ -71.949463, 11.423495 ], [ -71.773682, 11.178402 ], [ -71.622620, 10.970854 ], [ -71.625366, 10.962764 ], [ -72.430115, 10.962764 ], [ -72.229614, 11.111032 ], [ -72.196655, 11.178402 ], [ -71.974182, 11.609193 ], [ -71.334229, 11.778637 ] ] ], [ [ [ -69.584656, 11.461183 ], [ -68.884277, 11.445031 ], [ -68.573914, 11.178402 ], [ -68.323975, 10.962764 ], [ -71.402893, 10.962764 ], [ -71.402893, 10.970854 ], [ -70.768433, 11.178402 ], [ -70.155945, 11.377724 ], [ -70.296021, 11.848535 ], [ -69.944458, 12.162856 ], [ -69.584656, 11.461183 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.890320, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.780457, 23.712439 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.192444, 25.212396 ], [ -77.890320, 25.170145 ] ] ], [ [ [ -77.000427, 26.590983 ], [ -77.173462, 25.881466 ], [ -77.357483, 26.007424 ], [ -77.341003, 26.532023 ], [ -77.788696, 26.926968 ], [ -77.791443, 27.042003 ], [ -77.000427, 26.590983 ] ] ], [ [ [ -77.851868, 26.841227 ], [ -77.821655, 26.581159 ], [ -78.750000, 26.445984 ], [ -78.912048, 26.421390 ], [ -78.969727, 26.733346 ], [ -78.969727, 26.794654 ], [ -78.750000, 26.831424 ], [ -78.511047, 26.870631 ], [ -77.851868, 26.841227 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.192444, 25.212396 ], [ -77.890320, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.780457, 23.712439 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.192444, 25.212396 ] ] ], [ [ [ -77.791443, 27.042003 ], [ -77.000427, 26.590983 ], [ -77.173462, 25.881466 ], [ -77.357483, 26.007424 ], [ -77.341003, 26.532023 ], [ -77.788696, 26.926968 ], [ -77.791443, 27.042003 ] ] ], [ [ [ -78.511047, 26.870631 ], [ -77.851868, 26.841227 ], [ -77.821655, 26.581159 ], [ -78.750000, 26.445984 ], [ -78.912048, 26.421390 ], [ -78.969727, 26.733346 ], [ -78.969727, 26.794654 ], [ -78.750000, 26.831424 ], [ -78.511047, 26.870631 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.994690, 22.278931 ], [ -77.536011, 21.943046 ], [ -77.258606, 21.739091 ], [ -78.969727, 21.739091 ], [ -78.969727, 22.438956 ], [ -78.750000, 22.466878 ], [ -78.348999, 22.512557 ], [ -77.994690, 22.278931 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.348999, 22.512557 ], [ -77.994690, 22.278931 ], [ -77.536011, 21.943046 ], [ -77.258606, 21.739091 ], [ -78.969727, 21.739091 ], [ -78.969727, 22.438956 ], [ -78.750000, 22.466878 ], [ -78.348999, 22.512557 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.575439, 40.979898 ], [ -73.710022, 40.932190 ], [ -73.341980, 40.979898 ], [ -72.243347, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.946716, 40.930115 ], [ -73.347473, 40.630630 ], [ -73.984680, 40.628546 ], [ -73.954468, 40.751418 ], [ -74.259338, 40.474114 ], [ -73.962708, 40.428133 ], [ -74.179688, 39.709300 ], [ -74.907532, 38.940185 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.528259, 39.499802 ], [ -75.322266, 38.961544 ], [ -75.072327, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.379944, 38.015640 ], [ -75.940247, 37.217206 ], [ -76.033630, 37.258752 ], [ -75.723267, 37.937699 ], [ -76.234131, 38.320111 ], [ -76.352234, 39.151363 ], [ -76.544495, 38.717662 ], [ -76.330261, 38.084851 ], [ -76.992188, 38.240337 ], [ -76.302795, 37.918201 ], [ -76.258850, 36.967449 ], [ -75.973206, 36.899391 ], [ -75.868835, 36.551569 ], [ -75.728760, 35.552340 ], [ -76.363220, 34.809293 ], [ -77.398682, 34.513346 ], [ -78.055115, 33.927409 ], [ -78.554993, 33.863574 ], [ -78.750000, 33.724340 ], [ -78.969727, 33.564284 ], [ -78.969727, 41.145570 ], [ -73.100281, 41.145570 ], [ -73.575439, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.100281, 41.145570 ], [ -73.575439, 40.979898 ], [ -73.710022, 40.932190 ], [ -73.341980, 40.979898 ], [ -72.243347, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.946716, 40.930115 ], [ -73.347473, 40.630630 ], [ -73.984680, 40.628546 ], [ -73.954468, 40.751418 ], [ -74.259338, 40.474114 ], [ -73.962708, 40.428133 ], [ -74.179688, 39.709300 ], [ -74.907532, 38.940185 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.528259, 39.499802 ], [ -75.322266, 38.961544 ], [ -75.072327, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.379944, 38.015640 ], [ -75.940247, 37.217206 ], [ -76.033630, 37.258752 ], [ -75.723267, 37.937699 ], [ -76.234131, 38.320111 ], [ -76.352234, 39.151363 ], [ -76.544495, 38.717662 ], [ -76.330261, 38.084851 ], [ -76.992188, 38.240337 ], [ -76.302795, 37.918201 ], [ -76.258850, 36.967449 ], [ -75.973206, 36.899391 ], [ -75.868835, 36.551569 ], [ -75.728760, 35.552340 ], [ -76.363220, 34.809293 ], [ -77.398682, 34.513346 ], [ -78.055115, 33.927409 ], [ -78.554993, 33.863574 ], [ -78.750000, 33.724340 ], [ -78.969727, 33.564284 ], [ -78.969727, 41.145570 ], [ -73.100281, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.516235, 49.066668 ], [ -68.675537, 48.922499 ], [ -69.955444, 47.746711 ], [ -71.106262, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.650818, 48.301467 ], [ -67.500000, 48.761621 ], [ -67.280273, 48.848451 ], [ -67.280273, 45.263289 ], [ -67.500000, 45.452424 ], [ -67.793884, 45.704261 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.355571 ], [ -68.906250, 47.185979 ], [ -69.238586, 47.448522 ], [ -70.002136, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.661316, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.507263, 45.009477 ], [ -73.350220, 45.007535 ], [ -74.869080, 45.001709 ], [ -75.319519, 44.816916 ], [ -76.376953, 44.097448 ], [ -76.500549, 44.018496 ], [ -76.821899, 43.630111 ], [ -78.722534, 43.626135 ], [ -78.750000, 43.618182 ], [ -78.969727, 43.540585 ], [ -78.969727, 49.066668 ], [ -68.516235, 49.066668 ] ] ], [ [ [ -78.920288, 42.966472 ], [ -78.939514, 42.863886 ], [ -78.969727, 42.853820 ], [ -78.969727, 43.133061 ], [ -78.920288, 42.966472 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.969727, 43.540585 ], [ -78.969727, 49.066668 ], [ -68.516235, 49.066668 ], [ -68.675537, 48.922499 ], [ -69.955444, 47.746711 ], [ -71.106262, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.650818, 48.301467 ], [ -67.500000, 48.761621 ], [ -67.280273, 48.848451 ], [ -67.280273, 45.263289 ], [ -67.500000, 45.452424 ], [ -67.793884, 45.704261 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.355571 ], [ -68.906250, 47.185979 ], [ -69.238586, 47.448522 ], [ -70.002136, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.661316, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.507263, 45.009477 ], [ -73.350220, 45.007535 ], [ -74.869080, 45.001709 ], [ -75.319519, 44.816916 ], [ -76.376953, 44.097448 ], [ -76.500549, 44.018496 ], [ -76.821899, 43.630111 ], [ -78.722534, 43.626135 ], [ -78.750000, 43.618182 ], [ -78.969727, 43.540585 ] ] ], [ [ [ -78.969727, 43.133061 ], [ -78.920288, 42.966472 ], [ -78.939514, 42.863886 ], [ -78.969727, 42.853820 ], [ -78.969727, 43.133061 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 47.185979 ], [ -68.236084, 47.355571 ], [ -67.791138, 47.066380 ], [ -67.793884, 45.704261 ], [ -67.500000, 45.452424 ], [ -67.280273, 45.263289 ], [ -67.280273, 44.670606 ], [ -67.500000, 44.570904 ], [ -68.032837, 44.325813 ], [ -69.060059, 43.980958 ], [ -70.117493, 43.685750 ], [ -70.647583, 43.090955 ], [ -70.815125, 42.865899 ], [ -70.826111, 42.336215 ], [ -70.496521, 41.806125 ], [ -70.081787, 41.781553 ], [ -70.186157, 42.145078 ], [ -69.886780, 41.924760 ], [ -69.966431, 41.638026 ], [ -70.642090, 41.475660 ], [ -71.122742, 41.496235 ], [ -71.861572, 41.321138 ], [ -72.295532, 41.271614 ], [ -72.877808, 41.222052 ], [ -73.575439, 40.979898 ], [ -73.710022, 40.932190 ], [ -73.341980, 40.979898 ], [ -72.243347, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.946716, 40.930115 ], [ -72.493286, 40.813809 ], [ -78.969727, 40.813809 ], [ -78.969727, 42.853820 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.966472 ], [ -78.969727, 43.133061 ], [ -78.969727, 43.540585 ], [ -78.750000, 43.618182 ], [ -78.722534, 43.626135 ], [ -76.821899, 43.630111 ], [ -76.500549, 44.018496 ], [ -76.376953, 44.097448 ], [ -75.319519, 44.816916 ], [ -74.869080, 45.001709 ], [ -73.350220, 45.007535 ], [ -71.507263, 45.009477 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.661316, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.002136, 46.694667 ], [ -69.238586, 47.448522 ], [ -68.906250, 47.185979 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.238586, 47.448522 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.355571 ], [ -67.791138, 47.066380 ], [ -67.793884, 45.704261 ], [ -67.500000, 45.452424 ], [ -67.280273, 45.263289 ], [ -67.280273, 44.670606 ], [ -67.500000, 44.570904 ], [ -68.032837, 44.325813 ], [ -69.060059, 43.980958 ], [ -70.117493, 43.685750 ], [ -70.647583, 43.090955 ], [ -70.815125, 42.865899 ], [ -70.826111, 42.336215 ], [ -70.496521, 41.806125 ], [ -70.081787, 41.781553 ], [ -70.186157, 42.145078 ], [ -69.886780, 41.924760 ], [ -69.966431, 41.638026 ], [ -70.642090, 41.475660 ], [ -71.122742, 41.496235 ], [ -71.861572, 41.321138 ], [ -72.295532, 41.271614 ], [ -72.877808, 41.222052 ], [ -73.575439, 40.979898 ], [ -73.710022, 40.932190 ], [ -73.341980, 40.979898 ], [ -72.243347, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.946716, 40.930115 ], [ -72.493286, 40.813809 ], [ -78.969727, 40.813809 ], [ -78.969727, 42.853820 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.966472 ], [ -78.969727, 43.133061 ], [ -78.969727, 43.540585 ], [ -78.750000, 43.618182 ], [ -78.722534, 43.626135 ], [ -76.821899, 43.630111 ], [ -76.500549, 44.018496 ], [ -76.376953, 44.097448 ], [ -75.319519, 44.816916 ], [ -74.869080, 45.001709 ], [ -73.350220, 45.007535 ], [ -71.507263, 45.009477 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.661316, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.002136, 46.694667 ], [ -69.238586, 47.448522 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 48.848451 ], [ -67.280273, 48.777913 ], [ -67.458801, 48.777913 ], [ -67.280273, 48.848451 ] ] ], [ [ [ -67.280273, 49.498458 ], [ -67.500000, 49.421694 ], [ -68.513489, 49.068468 ], [ -68.675537, 48.922499 ], [ -68.834839, 48.777913 ], [ -78.969727, 48.777913 ], [ -78.969727, 51.871404 ], [ -78.750000, 52.290003 ], [ -78.604431, 52.562995 ], [ -78.750000, 53.009826 ], [ -78.969727, 53.675561 ], [ -78.969727, 54.922407 ], [ -78.750000, 54.987070 ], [ -78.230896, 55.136500 ], [ -77.198181, 55.776573 ], [ -77.096558, 55.838314 ], [ -77.049866, 55.899956 ], [ -67.280273, 55.899956 ], [ -67.280273, 49.498458 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 55.899956 ], [ -67.280273, 49.498458 ], [ -67.500000, 49.421694 ], [ -68.513489, 49.068468 ], [ -68.675537, 48.922499 ], [ -68.834839, 48.777913 ], [ -78.969727, 48.777913 ], [ -78.969727, 51.871404 ], [ -78.750000, 52.290003 ], [ -78.604431, 52.562995 ], [ -78.750000, 53.009826 ], [ -78.969727, 53.675561 ], [ -78.969727, 54.922407 ], [ -78.750000, 54.987070 ], [ -78.230896, 55.136500 ], [ -77.198181, 55.776573 ], [ -77.096558, 55.838314 ], [ -77.049866, 55.899956 ], [ -67.280273, 55.899956 ] ] ], [ [ [ -67.280273, 48.777913 ], [ -67.458801, 48.777913 ], [ -67.280273, 48.848451 ], [ -67.280273, 48.777913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.847839, 61.606396 ], [ -71.677551, 61.526623 ], [ -71.375427, 61.137933 ], [ -69.592896, 61.062272 ], [ -69.620361, 60.222083 ], [ -69.288025, 58.958507 ], [ -68.376160, 58.802362 ], [ -67.651062, 58.212685 ], [ -67.500000, 58.271954 ], [ -67.280273, 58.357071 ], [ -67.280273, 55.652798 ], [ -77.401428, 55.652798 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.203247 ], [ -77.302551, 58.053179 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.774963, 60.759160 ], [ -77.953491, 61.606396 ], [ -77.978210, 61.710706 ], [ -72.067566, 61.710706 ], [ -71.847839, 61.606396 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.067566, 61.710706 ], [ -71.847839, 61.606396 ], [ -71.677551, 61.526623 ], [ -71.375427, 61.137933 ], [ -69.592896, 61.062272 ], [ -69.620361, 60.222083 ], [ -69.288025, 58.958507 ], [ -68.376160, 58.802362 ], [ -67.651062, 58.212685 ], [ -67.500000, 58.271954 ], [ -67.280273, 58.357071 ], [ -67.280273, 55.652798 ], [ -77.401428, 55.652798 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.203247 ], [ -77.302551, 58.053179 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.774963, 60.759160 ], [ -77.953491, 61.606396 ], [ -77.978210, 61.710706 ], [ -72.067566, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.698547, 62.279423 ], [ -74.668579, 62.182169 ], [ -73.841858, 62.445054 ], [ -72.910767, 62.105168 ], [ -71.847839, 61.606396 ], [ -71.677551, 61.526623 ], [ -71.658325, 61.501734 ], [ -77.931519, 61.501734 ], [ -77.953491, 61.606396 ], [ -78.107300, 62.320279 ], [ -77.412415, 62.551591 ], [ -75.698547, 62.279423 ] ] ], [ [ [ -67.280273, 66.335300 ], [ -67.500000, 66.314345 ], [ -68.016357, 66.263540 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.280273, 65.215289 ], [ -67.280273, 63.268241 ], [ -67.500000, 63.338576 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.370911, 62.885205 ], [ -67.280273, 62.833835 ], [ -67.280273, 62.097457 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.330484 ], [ -71.023865, 62.911481 ], [ -72.237854, 63.398902 ], [ -71.886292, 63.680377 ], [ -73.380432, 64.194423 ], [ -74.836121, 64.679143 ], [ -74.819641, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.573216 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.454838 ], [ -74.295044, 65.811781 ], [ -73.946228, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.569946, 66.600676 ], [ -67.280273, 66.600676 ], [ -67.280273, 66.335300 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.412415, 62.551591 ], [ -75.698547, 62.279423 ], [ -74.668579, 62.182169 ], [ -73.841858, 62.445054 ], [ -72.910767, 62.105168 ], [ -71.847839, 61.606396 ], [ -71.677551, 61.526623 ], [ -71.658325, 61.501734 ], [ -77.931519, 61.501734 ], [ -77.953491, 61.606396 ], [ -78.107300, 62.320279 ], [ -77.412415, 62.551591 ] ] ], [ [ [ -67.280273, 66.600676 ], [ -67.280273, 66.335300 ], [ -67.500000, 66.314345 ], [ -68.016357, 66.263540 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.280273, 65.215289 ], [ -67.280273, 63.268241 ], [ -67.500000, 63.338576 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.370911, 62.885205 ], [ -67.280273, 62.833835 ], [ -67.280273, 62.097457 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.330484 ], [ -71.023865, 62.911481 ], [ -72.237854, 63.398902 ], [ -71.886292, 63.680377 ], [ -73.380432, 64.194423 ], [ -74.836121, 64.679143 ], [ -74.819641, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.573216 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.454838 ], [ -74.295044, 65.811781 ], [ -73.946228, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.569946, 66.600676 ], [ -67.280273, 66.600676 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.315491, 70.612614 ], [ -68.788147, 70.525813 ], [ -67.917480, 70.122629 ], [ -67.500000, 69.716202 ], [ -67.280273, 69.498956 ], [ -67.280273, 69.109736 ], [ -67.500000, 69.053840 ], [ -68.807373, 68.720441 ], [ -67.280273, 68.300889 ], [ -67.280273, 66.425537 ], [ -73.800659, 66.425537 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.727149 ], [ -73.311768, 68.070228 ], [ -74.844360, 68.555363 ], [ -76.871338, 68.895187 ], [ -76.231384, 69.147898 ], [ -77.288818, 69.770406 ], [ -78.170471, 69.827312 ], [ -78.750000, 70.078691 ], [ -78.958740, 70.167405 ], [ -78.969727, 70.161814 ], [ -78.969727, 70.685421 ], [ -69.760437, 70.685421 ], [ -69.315491, 70.612614 ] ] ], [ [ [ -75.116272, 68.010656 ], [ -75.105286, 67.583050 ], [ -75.217896, 67.444390 ], [ -75.866089, 67.149699 ], [ -76.989441, 67.099518 ], [ -77.236633, 67.588287 ], [ -76.813660, 68.149077 ], [ -75.896301, 68.287684 ], [ -75.116272, 68.010656 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.760437, 70.685421 ], [ -69.315491, 70.612614 ], [ -68.788147, 70.525813 ], [ -67.917480, 70.122629 ], [ -67.500000, 69.716202 ], [ -67.280273, 69.498956 ], [ -67.280273, 69.109736 ], [ -67.500000, 69.053840 ], [ -68.807373, 68.720441 ], [ -67.280273, 68.300889 ], [ -67.280273, 66.425537 ], [ -73.800659, 66.425537 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.727149 ], [ -73.311768, 68.070228 ], [ -74.844360, 68.555363 ], [ -76.871338, 68.895187 ], [ -76.231384, 69.147898 ], [ -77.288818, 69.770406 ], [ -78.170471, 69.827312 ], [ -78.750000, 70.078691 ], [ -78.958740, 70.167405 ], [ -78.969727, 70.161814 ], [ -78.969727, 70.685421 ], [ -69.760437, 70.685421 ] ] ], [ [ [ -75.896301, 68.287684 ], [ -75.116272, 68.010656 ], [ -75.105286, 67.583050 ], [ -75.217896, 67.444390 ], [ -75.866089, 67.149699 ], [ -76.989441, 67.099518 ], [ -77.236633, 67.588287 ], [ -76.813660, 68.149077 ], [ -75.896301, 68.287684 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.607910, 72.243892 ], [ -74.229126, 71.767927 ], [ -74.100037, 71.331588 ], [ -72.243347, 71.557086 ], [ -71.202393, 70.920233 ], [ -69.315491, 70.612614 ], [ -68.873291, 70.539543 ], [ -78.969727, 70.539543 ], [ -78.969727, 72.324127 ], [ -78.771973, 72.352459 ], [ -78.750000, 72.362448 ], [ -77.827148, 72.750224 ], [ -75.607910, 72.243892 ] ] ], [ [ [ -78.750000, 73.684982 ], [ -78.066101, 73.652545 ], [ -76.341248, 73.103405 ], [ -76.253357, 72.826619 ], [ -77.316284, 72.855790 ], [ -78.392944, 72.876828 ], [ -78.750000, 72.833917 ], [ -78.969727, 72.807146 ], [ -78.969727, 73.695780 ], [ -78.750000, 73.684982 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.827148, 72.750224 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767927 ], [ -74.100037, 71.331588 ], [ -72.243347, 71.557086 ], [ -71.202393, 70.920233 ], [ -69.315491, 70.612614 ], [ -68.873291, 70.539543 ], [ -78.969727, 70.539543 ], [ -78.969727, 72.324127 ], [ -78.771973, 72.352459 ], [ -78.750000, 72.362448 ], [ -77.827148, 72.750224 ] ] ], [ [ [ -78.969727, 73.695780 ], [ -78.750000, 73.684982 ], [ -78.066101, 73.652545 ], [ -76.341248, 73.103405 ], [ -76.253357, 72.826619 ], [ -77.316284, 72.855790 ], [ -78.392944, 72.876828 ], [ -78.750000, 72.833917 ], [ -78.969727, 72.807146 ], [ -78.969727, 73.695780 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.898560, 76.840816 ], [ -77.890320, 76.778142 ], [ -78.750000, 76.588356 ], [ -78.969727, 76.539214 ], [ -78.969727, 76.890745 ], [ -77.901306, 76.890745 ], [ -77.898560, 76.840816 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.901306, 76.890745 ], [ -77.898560, 76.840816 ], [ -77.890320, 76.778142 ], [ -78.750000, 76.588356 ], [ -78.969727, 76.539214 ], [ -78.969727, 76.890745 ], [ -77.901306, 76.890745 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 76.098817 ], [ -67.500000, 76.092216 ], [ -68.505249, 76.061816 ], [ -69.667053, 76.380383 ], [ -70.933228, 76.840816 ], [ -71.073303, 76.890745 ], [ -67.280273, 76.890745 ], [ -67.280273, 76.098817 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098817 ], [ -67.500000, 76.092216 ], [ -68.505249, 76.061816 ], [ -69.667053, 76.380383 ], [ -70.933228, 76.840816 ], [ -71.073303, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.690308, 79.212538 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -76.223145, 79.019097 ], [ -75.393677, 78.526119 ], [ -76.343994, 78.182963 ], [ -77.890320, 77.900134 ], [ -78.362732, 77.508873 ], [ -78.750000, 77.427226 ], [ -78.969727, 77.380506 ], [ -78.969727, 79.212538 ], [ -75.690308, 79.212538 ] ] ], [ [ [ -77.912292, 77.022159 ], [ -77.898560, 76.840816 ], [ -77.893066, 76.790701 ], [ -78.969727, 76.790701 ], [ -78.969727, 76.998699 ], [ -78.750000, 77.003642 ], [ -77.912292, 77.022159 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.969727, 77.380506 ], [ -78.969727, 79.212538 ], [ -75.690308, 79.212538 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -76.223145, 79.019097 ], [ -75.393677, 78.526119 ], [ -76.343994, 78.182963 ], [ -77.890320, 77.900134 ], [ -78.362732, 77.508873 ], [ -78.750000, 77.427226 ], [ -78.969727, 77.380506 ] ] ], [ [ [ -78.969727, 76.998699 ], [ -78.750000, 77.003642 ], [ -77.912292, 77.022159 ], [ -77.898560, 76.840816 ], [ -77.893066, 76.790701 ], [ -78.969727, 76.790701 ], [ -78.969727, 76.998699 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.375916, 78.913968 ], [ -67.500000, 79.163075 ], [ -67.280273, 79.191956 ], [ -67.280273, 77.408678 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.635954 ] ] ], [ [ [ -67.280273, 76.790701 ], [ -70.793152, 76.790701 ], [ -70.933228, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.357684 ], [ -67.280273, 77.363694 ], [ -67.280273, 76.790701 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.408678 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.375916, 78.913968 ], [ -67.500000, 79.163075 ], [ -67.280273, 79.191956 ], [ -67.280273, 77.408678 ] ] ], [ [ [ -67.280273, 77.363694 ], [ -67.280273, 76.790701 ], [ -70.793152, 76.790701 ], [ -70.933228, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.357684 ], [ -67.280273, 77.363694 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 81.048452 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.900234 ], [ -69.472046, 80.617081 ], [ -71.180420, 79.800150 ], [ -73.243103, 79.634439 ], [ -73.880310, 79.430356 ], [ -76.909790, 79.323522 ], [ -75.531006, 79.198134 ], [ -75.638123, 79.171335 ], [ -75.797424, 79.129976 ], [ -78.969727, 79.129976 ], [ -78.969727, 81.127169 ], [ -67.280273, 81.127169 ], [ -67.280273, 81.048452 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 81.127169 ], [ -67.280273, 81.048452 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.900234 ], [ -69.472046, 80.617081 ], [ -71.180420, 79.800150 ], [ -73.243103, 79.634439 ], [ -73.880310, 79.430356 ], [ -76.909790, 79.323522 ], [ -75.531006, 79.198134 ], [ -75.638123, 79.171335 ], [ -75.797424, 79.129976 ], [ -78.969727, 79.129976 ], [ -78.969727, 81.127169 ], [ -67.280273, 81.127169 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.024597, 80.117621 ], [ -67.500000, 80.359755 ], [ -67.280273, 80.459509 ], [ -67.280273, 80.020042 ], [ -67.500000, 80.049036 ], [ -68.024597, 80.117621 ] ] ], [ [ [ -67.280273, 79.129976 ], [ -67.752686, 79.129976 ], [ -67.280273, 79.191956 ], [ -67.280273, 79.129976 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 80.020042 ], [ -67.500000, 80.049036 ], [ -68.024597, 80.117621 ], [ -67.500000, 80.359755 ], [ -67.280273, 80.459509 ], [ -67.280273, 80.020042 ] ] ], [ [ [ -67.280273, 79.191956 ], [ -67.280273, 79.129976 ], [ -67.752686, 79.129976 ], [ -67.280273, 79.191956 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 81.596502 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.501646 ], [ -67.500000, 81.502458 ], [ -67.280273, 81.502864 ], [ -67.280273, 81.059130 ], [ -78.969727, 81.059130 ], [ -78.969727, 82.704241 ], [ -67.280273, 82.704241 ], [ -67.280273, 81.596502 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 82.704241 ], [ -67.280273, 81.596502 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.501646 ], [ -67.500000, 81.502458 ], [ -67.280273, 81.502864 ], [ -67.280273, 81.059130 ], [ -78.969727, 81.059130 ], [ -78.969727, 82.704241 ], [ -67.280273, 82.704241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.666809, 83.169790 ], [ -68.502502, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.280273, 83.071094 ], [ -67.280273, 82.648222 ], [ -78.969727, 82.648222 ], [ -78.969727, 83.135407 ], [ -78.750000, 83.138360 ], [ -76.250610, 83.172076 ], [ -75.720520, 83.064132 ], [ -72.833862, 83.233515 ], [ -70.666809, 83.169790 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.833862, 83.233515 ], [ -70.666809, 83.169790 ], [ -68.502502, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.280273, 83.071094 ], [ -67.280273, 82.648222 ], [ -78.969727, 82.648222 ], [ -78.969727, 83.135407 ], [ -78.750000, 83.138360 ], [ -76.250610, 83.172076 ], [ -75.720520, 83.064132 ], [ -72.833862, 83.233515 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -85.070048 ], [ -67.719727, -85.070048 ], [ -67.719727, -83.956169 ], [ -56.030273, -83.956169 ], [ -56.030273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -83.956169 ], [ -56.030273, -85.070048 ], [ -67.719727, -85.070048 ], [ -67.719727, -83.956169 ], [ -56.030273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.076233, -82.676285 ], [ -58.713684, -82.845861 ], [ -58.224792, -83.218288 ], [ -57.010803, -82.865673 ], [ -56.250000, -82.730702 ], [ -56.030273, -82.691325 ], [ -56.030273, -84.002262 ], [ -67.719727, -84.002262 ], [ -67.719727, -82.648222 ], [ -59.133911, -82.648222 ], [ -59.076233, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.133911, -82.648222 ], [ -59.076233, -82.676285 ], [ -58.713684, -82.845861 ], [ -58.224792, -83.218288 ], [ -57.010803, -82.865673 ], [ -56.250000, -82.730702 ], [ -56.030273, -82.691325 ], [ -56.030273, -84.002262 ], [ -67.719727, -84.002262 ], [ -67.719727, -82.648222 ], [ -59.133911, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.030273, -82.691674 ], [ -56.030273, -82.704241 ], [ -56.101685, -82.704241 ], [ -56.030273, -82.691674 ] ] ], [ [ [ -67.500000, -81.360875 ], [ -65.706482, -81.474408 ], [ -63.256531, -81.748454 ], [ -61.553650, -82.042319 ], [ -59.691467, -82.375504 ], [ -59.076233, -82.676285 ], [ -59.018555, -82.704241 ], [ -67.719727, -82.704241 ], [ -67.719727, -81.346836 ], [ -67.500000, -81.360875 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, -81.346836 ], [ -67.500000, -81.360875 ], [ -65.706482, -81.474408 ], [ -63.256531, -81.748454 ], [ -61.553650, -82.042319 ], [ -59.691467, -82.375504 ], [ -59.076233, -82.676285 ], [ -59.018555, -82.704241 ], [ -67.719727, -82.704241 ], [ -67.719727, -81.346836 ] ] ], [ [ [ -56.030273, -82.704241 ], [ -56.101685, -82.704241 ], [ -56.030273, -82.691674 ], [ -56.030273, -82.704241 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.573364, -80.040014 ], [ -59.867249, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.256775, -80.862801 ], [ -64.489746, -80.921928 ], [ -65.742188, -80.588380 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255715 ], [ -64.039307, -80.294687 ], [ -61.885986, -80.392815 ], [ -61.141663, -79.980935 ], [ -60.611572, -79.628507 ], [ -59.573364, -80.040014 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.611572, -79.628507 ], [ -59.573364, -80.040014 ], [ -59.867249, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.256775, -80.862801 ], [ -64.489746, -80.921928 ], [ -65.742188, -80.588380 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255715 ], [ -64.039307, -80.294687 ], [ -61.885986, -80.392815 ], [ -61.141663, -79.980935 ], [ -60.611572, -79.628507 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.262512, -74.019543 ], [ -61.377869, -74.106272 ], [ -61.965637, -74.439782 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.355164, -75.262841 ], [ -65.863037, -75.634766 ], [ -67.195129, -75.791336 ], [ -67.500000, -75.843825 ], [ -67.719727, -75.881393 ], [ -67.719727, -73.958939 ], [ -61.182861, -73.958939 ], [ -61.262512, -74.019543 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.182861, -73.958939 ], [ -61.262512, -74.019543 ], [ -61.377869, -74.106272 ], [ -61.965637, -74.439782 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.355164, -75.262841 ], [ -65.863037, -75.634766 ], [ -67.195129, -75.791336 ], [ -67.500000, -75.843825 ], [ -67.719727, -75.881393 ], [ -67.719727, -73.958939 ], [ -61.182861, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.957397, -70.612614 ], [ -61.809082, -70.716285 ], [ -61.515198, -71.088305 ], [ -61.377869, -72.009552 ], [ -61.083984, -72.381579 ], [ -61.004333, -72.773828 ], [ -60.691223, -73.165560 ], [ -60.828552, -73.695009 ], [ -61.262512, -74.019543 ], [ -61.344910, -74.079925 ], [ -67.719727, -74.079925 ], [ -67.719727, -72.666136 ], [ -67.500000, -72.548734 ], [ -67.370911, -72.480238 ], [ -67.134705, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.328071 ], [ -67.565918, -71.245239 ], [ -67.719727, -71.074056 ], [ -67.719727, -70.539543 ], [ -62.061768, -70.539543 ], [ -61.957397, -70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.061768, -70.539543 ], [ -61.957397, -70.612614 ], [ -61.809082, -70.716285 ], [ -61.515198, -71.088305 ], [ -61.377869, -72.009552 ], [ -61.083984, -72.381579 ], [ -61.004333, -72.773828 ], [ -60.691223, -73.165560 ], [ -60.828552, -73.695009 ], [ -61.262512, -74.019543 ], [ -61.344910, -74.079925 ], [ -67.719727, -74.079925 ], [ -67.719727, -72.666136 ], [ -67.500000, -72.548734 ], [ -67.370911, -72.480238 ], [ -67.134705, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.328071 ], [ -67.565918, -71.245239 ], [ -67.719727, -71.074056 ], [ -67.719727, -70.539543 ], [ -62.061768, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.748169, -66.503407 ], [ -63.764648, -66.513260 ], [ -64.294739, -66.836246 ], [ -64.882507, -67.149699 ], [ -65.508728, -67.580955 ], [ -65.665283, -67.952994 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.913969 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.991475 ], [ -62.278748, -70.383387 ], [ -61.957397, -70.612614 ], [ -61.853027, -70.685421 ], [ -67.719727, -70.685421 ], [ -67.719727, -68.682531 ], [ -67.585144, -68.541301 ], [ -67.500000, -68.328291 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.994196 ], [ -67.626343, -67.717778 ], [ -67.719727, -67.401155 ], [ -67.719727, -67.305976 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.875109 ], [ -66.703491, -66.582126 ], [ -66.585388, -66.513260 ], [ -66.434326, -66.425537 ], [ -62.819824, -66.425537 ], [ -63.748169, -66.503407 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.819824, -66.425537 ], [ -63.748169, -66.503407 ], [ -63.764648, -66.513260 ], [ -64.294739, -66.836246 ], [ -64.882507, -67.149699 ], [ -65.508728, -67.580955 ], [ -65.665283, -67.952994 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.913969 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.991475 ], [ -62.278748, -70.383387 ], [ -61.957397, -70.612614 ], [ -61.853027, -70.685421 ], [ -67.719727, -70.685421 ], [ -67.719727, -68.682531 ], [ -67.585144, -68.541301 ], [ -67.500000, -68.328291 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.994196 ], [ -67.626343, -67.717778 ], [ -67.719727, -67.401155 ], [ -67.719727, -67.305976 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.875109 ], [ -66.703491, -66.582126 ], [ -66.585388, -66.513260 ], [ -66.434326, -66.425537 ], [ -62.819824, -66.425537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.225037, -63.525297 ], [ -57.595825, -63.857616 ], [ -58.614807, -64.151347 ], [ -59.046021, -64.367249 ], [ -59.790344, -64.211157 ], [ -60.614319, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.798696 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.484486 ], [ -62.591858, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.806091, -66.424439 ], [ -63.748169, -66.503407 ], [ -63.764648, -66.513260 ], [ -63.907471, -66.600676 ], [ -66.739197, -66.600676 ], [ -66.585388, -66.513260 ], [ -66.058044, -66.209308 ], [ -65.371399, -65.896046 ], [ -64.569397, -65.601609 ], [ -64.176636, -65.170346 ], [ -63.630066, -64.896755 ], [ -63.003845, -64.641528 ], [ -62.042542, -64.582648 ], [ -61.416321, -64.269646 ], [ -60.710449, -64.073400 ], [ -59.889221, -63.955467 ], [ -59.164124, -63.701072 ], [ -58.595581, -63.387831 ], [ -57.812805, -63.269476 ], [ -57.225037, -63.525297 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.812805, -63.269476 ], [ -57.225037, -63.525297 ], [ -57.595825, -63.857616 ], [ -58.614807, -64.151347 ], [ -59.046021, -64.367249 ], [ -59.790344, -64.211157 ], [ -60.614319, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.798696 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.484486 ], [ -62.591858, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.806091, -66.424439 ], [ -63.748169, -66.503407 ], [ -63.764648, -66.513260 ], [ -63.907471, -66.600676 ], [ -66.739197, -66.600676 ], [ -66.585388, -66.513260 ], [ -66.058044, -66.209308 ], [ -65.371399, -65.896046 ], [ -64.569397, -65.601609 ], [ -64.176636, -65.170346 ], [ -63.630066, -64.896755 ], [ -63.003845, -64.641528 ], [ -62.042542, -64.582648 ], [ -61.416321, -64.269646 ], [ -60.710449, -64.073400 ], [ -59.889221, -63.955467 ], [ -59.164124, -63.701072 ], [ -58.595581, -63.387831 ], [ -57.812805, -63.269476 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.719727, -55.455499 ], [ -67.719727, -54.868705 ], [ -67.563171, -54.868705 ], [ -67.500000, -54.870285 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.563171, -54.868705 ], [ -67.500000, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.719727, -55.455499 ], [ -67.719727, -54.868705 ], [ -67.563171, -54.868705 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, -53.965781 ], [ -66.450806, -54.449283 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.199251 ], [ -66.450806, -55.249381 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.870285 ], [ -67.563171, -54.868705 ], [ -67.719727, -54.868705 ], [ -67.719727, -53.863866 ], [ -67.500000, -53.965781 ] ] ], [ [ [ -67.294006, -48.922499 ], [ -67.500000, -49.296472 ], [ -67.719727, -49.690732 ], [ -67.719727, -48.777913 ], [ -67.214355, -48.777913 ], [ -67.294006, -48.922499 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, -53.863866 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.449283 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.199251 ], [ -66.450806, -55.249381 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.870285 ], [ -67.563171, -54.868705 ], [ -67.719727, -54.868705 ], [ -67.719727, -53.863866 ] ] ], [ [ [ -67.214355, -48.777913 ], [ -67.294006, -48.922499 ], [ -67.500000, -49.296472 ], [ -67.719727, -49.690732 ], [ -67.719727, -48.777913 ], [ -67.214355, -48.777913 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.752380, -51.549751 ], [ -58.051758, -51.898529 ], [ -59.400330, -52.199190 ], [ -59.850769, -51.849353 ], [ -60.702209, -52.298402 ], [ -61.202087, -51.849353 ], [ -60.001831, -51.249882 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.098348 ], [ -57.752380, -51.549751 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.098348 ], [ -57.752380, -51.549751 ], [ -58.051758, -51.898529 ], [ -59.400330, -52.199190 ], [ -59.850769, -51.849353 ], [ -60.702209, -52.298402 ], [ -61.202087, -51.849353 ], [ -60.001831, -51.249882 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.098348 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.118713, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.305725, -42.358544 ], [ -63.756409, -42.043174 ], [ -63.459778, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.494775 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.036656 ], [ -66.511230, -45.038597 ], [ -67.294006, -45.550602 ], [ -67.500000, -46.086567 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.986633, -48.133101 ], [ -67.167664, -48.696399 ], [ -67.294006, -48.922499 ], [ -67.373657, -49.066668 ], [ -67.719727, -49.066668 ], [ -67.719727, -40.813809 ], [ -64.753418, -40.813809 ], [ -64.997864, -40.979898 ], [ -65.118713, -41.062786 ] ] ], [ [ [ -62.668762, -40.979898 ], [ -62.748413, -41.027571 ], [ -63.772888, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.703979, -40.813809 ], [ -62.383118, -40.813809 ], [ -62.668762, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.753418, -40.813809 ], [ -64.997864, -40.979898 ], [ -65.118713, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.305725, -42.358544 ], [ -63.756409, -42.043174 ], [ -63.459778, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.494775 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.036656 ], [ -66.511230, -45.038597 ], [ -67.294006, -45.550602 ], [ -67.500000, -46.086567 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.986633, -48.133101 ], [ -67.167664, -48.696399 ], [ -67.294006, -48.922499 ], [ -67.373657, -49.066668 ], [ -67.719727, -49.066668 ], [ -67.719727, -40.813809 ], [ -64.753418, -40.813809 ] ] ], [ [ [ -62.383118, -40.813809 ], [ -62.668762, -40.979898 ], [ -62.748413, -41.027571 ], [ -63.772888, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.703979, -40.813809 ], [ -62.383118, -40.813809 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.123169, -31.952162 ], [ -58.145142, -32.043005 ], [ -58.134155, -33.038601 ], [ -58.351135, -33.261657 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.362366, -35.975783 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.899391 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.668762, -40.979898 ], [ -62.748413, -41.027571 ], [ -63.621826, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.734192, -40.801336 ], [ -64.997864, -40.979898 ], [ -65.118713, -41.062786 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.073730, -31.765537 ], [ -58.123169, -31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.073730, -31.765537 ], [ -58.123169, -31.952162 ], [ -58.145142, -32.043005 ], [ -58.134155, -33.038601 ], [ -58.351135, -33.261657 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.362366, -35.975783 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.899391 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.668762, -40.979898 ], [ -62.748413, -41.027571 ], [ -63.621826, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.734192, -40.801336 ], [ -64.997864, -40.979898 ], [ -65.118713, -41.062786 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.073730, -31.765537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -34.820568 ], [ -56.217041, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.461277 ], [ -58.428040, -33.909175 ], [ -58.351135, -33.261657 ], [ -58.134155, -33.038601 ], [ -58.145142, -32.043005 ], [ -58.123169, -31.952162 ], [ -58.073730, -31.765537 ], [ -56.030273, -31.765537 ], [ -56.030273, -34.820568 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -31.765537 ], [ -56.030273, -34.820568 ], [ -56.217041, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.461277 ], [ -58.428040, -33.909175 ], [ -58.351135, -33.261657 ], [ -58.134155, -33.038601 ], [ -58.145142, -32.043005 ], [ -58.123169, -31.952162 ], [ -58.073730, -31.765537 ], [ -56.030273, -31.765537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.986389, -22.986210 ], [ -67.329712, -24.023888 ], [ -67.500000, -24.099126 ], [ -67.719727, -24.199374 ], [ -67.719727, -22.849602 ], [ -67.500000, -22.809099 ], [ -67.107239, -22.735657 ], [ -66.986389, -22.986210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.023888 ], [ -67.500000, -24.099126 ], [ -67.719727, -24.199374 ], [ -67.719727, -22.849602 ], [ -67.500000, -22.809099 ], [ -67.107239, -22.735657 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.991442 ], [ -64.377136, -22.796439 ], [ -64.964905, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.809099 ], [ -67.719727, -22.849602 ], [ -67.719727, -21.739091 ], [ -62.520447, -21.739091 ], [ -62.685242, -22.248429 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.520447, -21.739091 ], [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.991442 ], [ -64.377136, -22.796439 ], [ -64.964905, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.809099 ], [ -67.719727, -22.849602 ], [ -67.719727, -21.739091 ], [ -62.520447, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.475220, -22.085640 ], [ -56.881714, -22.281472 ], [ -57.939148, -22.088185 ], [ -57.933655, -21.943046 ], [ -57.925415, -21.739091 ], [ -56.030273, -21.739091 ], [ -56.030273, -22.261139 ], [ -56.250000, -22.174688 ], [ -56.475220, -22.085640 ] ] ], [ [ [ -56.030273, -30.838573 ], [ -56.250000, -30.668628 ], [ -56.977844, -30.109494 ], [ -57.626038, -30.213982 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -56.030273, -28.627925 ], [ -56.030273, -30.838573 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.030273, -28.627925 ], [ -56.030273, -30.838573 ], [ -56.250000, -30.668628 ], [ -56.977844, -30.109494 ], [ -57.626038, -30.213982 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -56.030273, -28.627925 ] ] ], [ [ [ -56.030273, -22.261139 ], [ -56.250000, -22.174688 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.281472 ], [ -57.939148, -22.088185 ], [ -57.933655, -21.943046 ], [ -57.925415, -21.739091 ], [ -56.030273, -21.739091 ], [ -56.030273, -22.261139 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.933655, -21.943046 ], [ -57.939148, -22.088185 ], [ -56.881714, -22.281472 ], [ -56.475220, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.261139 ], [ -56.030273, -27.452228 ], [ -56.250000, -27.498527 ], [ -56.488953, -27.547242 ], [ -57.612305, -27.393717 ], [ -58.620300, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.779846, -25.160201 ], [ -58.809814, -24.769278 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.878303 ], [ -62.685242, -22.248429 ], [ -62.520447, -21.739091 ], [ -57.925415, -21.739091 ], [ -57.933655, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.925415, -21.739091 ], [ -57.933655, -21.943046 ], [ -57.939148, -22.088185 ], [ -56.881714, -22.281472 ], [ -56.475220, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.261139 ], [ -56.030273, -27.452228 ], [ -56.250000, -27.498527 ], [ -56.488953, -27.547242 ], [ -57.612305, -27.393717 ], [ -58.620300, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.779846, -25.160201 ], [ -58.809814, -24.769278 ], [ -60.029297, -24.031414 ], [ -62.685242, -22.248429 ], [ -62.520447, -21.739091 ], [ -57.925415, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.676270, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.796439 ], [ -63.987122, -21.991442 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.878303 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.769278 ], [ -57.779846, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.620300, -27.122702 ], [ -57.612305, -27.393717 ], [ -56.488953, -27.547242 ], [ -56.250000, -27.498527 ], [ -56.030273, -27.452228 ], [ -56.030273, -28.627925 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.213982 ], [ -57.875977, -31.015279 ], [ -58.123169, -31.952162 ], [ -58.145142, -32.043005 ], [ -58.145142, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.199374 ], [ -67.500000, -24.099126 ], [ -67.329712, -24.023888 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.796439 ], [ -63.987122, -21.991442 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.878303 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.769278 ], [ -57.779846, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.620300, -27.122702 ], [ -57.612305, -27.393717 ], [ -56.488953, -27.547242 ], [ -56.250000, -27.498527 ], [ -56.030273, -27.452228 ], [ -56.030273, -28.627925 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.213982 ], [ -57.875977, -31.015279 ], [ -58.123169, -31.952162 ], [ -58.145142, -32.043005 ], [ -58.145142, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.199374 ], [ -67.500000, -24.099126 ], [ -67.329712, -24.023888 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, -30.668628 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.145142, -32.138409 ], [ -58.145142, -32.043005 ], [ -58.123169, -31.952162 ], [ -57.875977, -31.015279 ], [ -57.626038, -30.213982 ], [ -56.977844, -30.109494 ], [ -56.250000, -30.668628 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.977844, -30.109494 ], [ -56.250000, -30.668628 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.145142, -32.138409 ], [ -58.145142, -32.043005 ], [ -58.123169, -31.952162 ], [ -57.875977, -31.015279 ], [ -57.626038, -30.213982 ], [ -56.977844, -30.109494 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.357666, -11.178402 ], [ -65.404358, -11.566144 ], [ -64.316711, -12.460715 ], [ -63.198853, -12.626938 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.488460 ], [ -61.086731, -13.477777 ], [ -60.504456, -13.774066 ], [ -60.460510, -14.352209 ], [ -60.265503, -14.644711 ], [ -60.251770, -15.074776 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.241272, -16.299051 ], [ -58.389587, -16.875519 ], [ -58.282471, -17.269351 ], [ -57.735901, -17.552391 ], [ -57.499695, -18.171950 ], [ -57.678223, -18.960844 ], [ -57.950134, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.867477 ], [ -59.117432, -19.355202 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.267761, -20.511927 ], [ -62.292480, -21.051181 ], [ -62.586365, -21.943046 ], [ -62.652283, -22.146708 ], [ -62.764893, -22.146708 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.991442 ], [ -64.064026, -22.146708 ], [ -64.907227, -22.146708 ], [ -64.964905, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.566162, -22.146708 ], [ -67.719727, -22.146708 ], [ -67.719727, -10.962764 ], [ -65.332947, -10.962764 ], [ -65.357666, -11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.332947, -10.962764 ], [ -65.357666, -11.178402 ], [ -65.404358, -11.566144 ], [ -64.316711, -12.460715 ], [ -63.198853, -12.626938 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.488460 ], [ -61.086731, -13.477777 ], [ -60.504456, -13.774066 ], [ -60.460510, -14.352209 ], [ -60.265503, -14.644711 ], [ -60.251770, -15.074776 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.241272, -16.299051 ], [ -58.389587, -16.875519 ], [ -58.282471, -17.269351 ], [ -57.735901, -17.552391 ], [ -57.499695, -18.171950 ], [ -57.678223, -18.960844 ], [ -57.950134, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.867477 ], [ -59.117432, -19.355202 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.267761, -20.511927 ], [ -62.292480, -21.051181 ], [ -62.586365, -21.943046 ], [ -62.652283, -22.146708 ], [ -62.764893, -22.146708 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.991442 ], [ -64.064026, -22.146708 ], [ -64.907227, -22.146708 ], [ -64.964905, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.566162, -22.146708 ], [ -67.719727, -22.146708 ], [ -67.719727, -10.962764 ], [ -65.332947, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -22.146708 ], [ -56.324158, -22.146708 ], [ -56.475220, -22.085640 ], [ -56.604309, -22.146708 ], [ -57.620544, -22.146708 ], [ -57.939148, -22.088185 ], [ -57.933655, -21.943046 ], [ -57.873230, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.950134, -19.399249 ], [ -57.678223, -18.960844 ], [ -57.499695, -18.171950 ], [ -57.735901, -17.552391 ], [ -58.282471, -17.269351 ], [ -58.389587, -16.875519 ], [ -58.241272, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.251770, -15.074776 ], [ -60.265503, -14.644711 ], [ -60.460510, -14.352209 ], [ -60.504456, -13.774066 ], [ -61.086731, -13.477777 ], [ -61.715698, -13.488460 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.626938 ], [ -64.316711, -12.460715 ], [ -65.404358, -11.566144 ], [ -65.357666, -11.178402 ], [ -65.332947, -10.962764 ], [ -56.030273, -10.962764 ], [ -56.030273, -22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -10.962764 ], [ -56.030273, -22.146708 ], [ -56.324158, -22.146708 ], [ -56.475220, -22.085640 ], [ -56.604309, -22.146708 ], [ -57.620544, -22.146708 ], [ -57.939148, -22.088185 ], [ -57.933655, -21.943046 ], [ -57.873230, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.950134, -19.399249 ], [ -57.678223, -18.960844 ], [ -57.499695, -18.171950 ], [ -57.735901, -17.552391 ], [ -58.282471, -17.269351 ], [ -58.389587, -16.875519 ], [ -58.241272, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.251770, -15.074776 ], [ -60.265503, -14.644711 ], [ -60.460510, -14.352209 ], [ -60.504456, -13.774066 ], [ -61.086731, -13.477777 ], [ -61.715698, -13.488460 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.626938 ], [ -64.316711, -12.460715 ], [ -65.404358, -11.566144 ], [ -65.357666, -11.178402 ], [ -65.332947, -10.962764 ], [ -56.030273, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.475220, -22.085640 ], [ -56.324158, -22.146708 ], [ -56.604309, -22.146708 ], [ -56.475220, -22.085640 ] ] ], [ [ [ -59.117432, -19.355202 ], [ -58.183594, -19.867477 ], [ -58.167114, -20.174567 ], [ -57.873230, -20.730428 ], [ -57.933655, -21.943046 ], [ -57.939148, -22.088185 ], [ -57.620544, -22.146708 ], [ -62.652283, -22.146708 ], [ -62.586365, -21.943046 ], [ -62.292480, -21.051181 ], [ -62.267761, -20.511927 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ], [ -59.117432, -19.355202 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.355202 ], [ -58.183594, -19.867477 ], [ -58.167114, -20.174567 ], [ -57.873230, -20.730428 ], [ -57.933655, -21.943046 ], [ -57.939148, -22.088185 ], [ -57.620544, -22.146708 ], [ -62.652283, -22.146708 ], [ -62.586365, -21.943046 ], [ -62.292480, -21.051181 ], [ -62.267761, -20.511927 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ], [ [ [ -56.324158, -22.146708 ], [ -56.604309, -22.146708 ], [ -56.475220, -22.085640 ], [ -56.324158, -22.146708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.987122, -21.991442 ], [ -62.847290, -22.034730 ], [ -62.764893, -22.146708 ], [ -64.064026, -22.146708 ], [ -63.987122, -21.991442 ] ] ], [ [ [ -65.676270, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.907227, -22.146708 ], [ -66.566162, -22.146708 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.907227, -22.146708 ], [ -66.566162, -22.146708 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.764893, -22.146708 ], [ -64.064026, -22.146708 ], [ -63.987122, -21.991442 ], [ -62.847290, -22.034730 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.445557, -10.509417 ], [ -65.321960, -10.895345 ], [ -65.357666, -11.178402 ], [ -65.385132, -11.393879 ], [ -67.719727, -11.393879 ], [ -67.719727, -10.558022 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.338440, -9.760491 ], [ -65.445557, -10.509417 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.338440, -9.760491 ], [ -65.445557, -10.509417 ], [ -65.321960, -10.895345 ], [ -65.357666, -11.178402 ], [ -65.385132, -11.393879 ], [ -67.719727, -11.393879 ], [ -67.719727, -10.558022 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.338440, -9.760491 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -11.393879 ], [ -65.385132, -11.393879 ], [ -65.357666, -11.178402 ], [ -65.321960, -10.895345 ], [ -65.445557, -10.509417 ], [ -65.338440, -9.760491 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.719727, -10.558022 ], [ -67.719727, 0.219726 ], [ -56.030273, 0.219726 ], [ -56.030273, -11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 0.219726 ], [ -56.030273, -11.393879 ], [ -65.385132, -11.393879 ], [ -65.357666, -11.178402 ], [ -65.321960, -10.895345 ], [ -65.445557, -10.509417 ], [ -65.338440, -9.760491 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.719727, -10.558022 ], [ -67.719727, 0.219726 ], [ -56.030273, 0.219726 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.697754, 6.268888 ], [ -67.500000, 6.173324 ], [ -67.343445, 6.096860 ], [ -67.500000, 5.626919 ], [ -67.521973, 5.558582 ], [ -67.719727, 5.263273 ], [ -67.719727, 6.266158 ], [ -67.697754, 6.268888 ] ] ], [ [ [ -67.500000, 2.635789 ], [ -67.447815, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.876526, 1.255088 ], [ -67.066040, 1.131518 ], [ -67.261047, 1.721848 ], [ -67.500000, 1.996361 ], [ -67.538452, 2.037534 ], [ -67.719727, 1.850874 ], [ -67.719727, 2.767478 ], [ -67.500000, 2.635789 ] ] ], [ [ [ -67.623596, 3.839591 ], [ -67.500000, 3.713523 ], [ -67.337952, 3.543576 ], [ -67.304993, 3.318760 ], [ -67.500000, 3.129546 ], [ -67.719727, 2.912868 ], [ -67.719727, 4.160158 ], [ -67.623596, 3.839591 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, 2.767478 ], [ -67.500000, 2.635789 ], [ -67.447815, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.876526, 1.255088 ], [ -67.066040, 1.131518 ], [ -67.261047, 1.721848 ], [ -67.500000, 1.996361 ], [ -67.538452, 2.037534 ], [ -67.719727, 1.850874 ], [ -67.719727, 2.767478 ] ] ], [ [ [ -67.719727, 4.160158 ], [ -67.623596, 3.839591 ], [ -67.500000, 3.713523 ], [ -67.337952, 3.543576 ], [ -67.304993, 3.318760 ], [ -67.500000, 3.129546 ], [ -67.719727, 2.912868 ], [ -67.719727, 4.160158 ] ] ], [ [ [ -67.719727, 5.263273 ], [ -67.719727, 6.266158 ], [ -67.697754, 6.268888 ], [ -67.500000, 6.173324 ], [ -67.343445, 6.096860 ], [ -67.500000, 5.626919 ], [ -67.521973, 5.558582 ], [ -67.719727, 5.263273 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.731934, 10.420287 ], [ -62.388611, 9.949914 ], [ -61.589355, 9.874158 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.605463 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.295715, 7.046379 ], [ -60.545654, 6.858259 ], [ -61.160889, 6.697343 ], [ -61.141663, 6.236125 ], [ -61.410828, 5.960290 ], [ -60.735168, 5.200365 ], [ -60.603333, 4.918569 ], [ -60.968628, 4.538094 ], [ -62.086487, 4.162897 ], [ -62.806091, 4.009480 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.629822, 4.149201 ], [ -64.816589, 4.058796 ], [ -64.368896, 3.798484 ], [ -64.410095, 3.126804 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.413532 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.201355, 1.493971 ], [ -64.613342, 1.329226 ], [ -65.354919, 1.095819 ], [ -65.549927, 0.790990 ], [ -66.327209, 0.725078 ], [ -66.876526, 1.255088 ], [ -67.181396, 2.251617 ], [ -67.447815, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.719727, 2.767478 ], [ -67.719727, 2.912868 ], [ -67.500000, 3.129546 ], [ -67.304993, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.713523 ], [ -67.623596, 3.839591 ], [ -67.719727, 4.160158 ], [ -67.719727, 5.263273 ], [ -67.521973, 5.558582 ], [ -67.500000, 5.626919 ], [ -67.343445, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.268888 ], [ -67.719727, 6.266158 ], [ -67.719727, 10.552622 ], [ -67.500000, 10.549922 ], [ -67.296753, 10.547221 ], [ -66.228333, 10.649811 ], [ -65.657043, 10.201407 ], [ -64.890747, 10.079741 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.641713 ], [ -63.080750, 10.703792 ], [ -61.883240, 10.717285 ], [ -62.731934, 10.420287 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.883240, 10.717285 ], [ -62.731934, 10.420287 ], [ -62.388611, 9.949914 ], [ -61.589355, 9.874158 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.605463 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.295715, 7.046379 ], [ -60.545654, 6.858259 ], [ -61.160889, 6.697343 ], [ -61.141663, 6.236125 ], [ -61.410828, 5.960290 ], [ -60.735168, 5.200365 ], [ -60.603333, 4.918569 ], [ -60.968628, 4.538094 ], [ -62.086487, 4.162897 ], [ -62.806091, 4.009480 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.629822, 4.149201 ], [ -64.816589, 4.058796 ], [ -64.368896, 3.798484 ], [ -64.410095, 3.126804 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.413532 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.201355, 1.493971 ], [ -64.613342, 1.329226 ], [ -65.354919, 1.095819 ], [ -65.549927, 0.790990 ], [ -66.327209, 0.725078 ], [ -66.876526, 1.255088 ], [ -67.181396, 2.251617 ], [ -67.447815, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.719727, 2.767478 ], [ -67.719727, 2.912868 ], [ -67.500000, 3.129546 ], [ -67.304993, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.713523 ], [ -67.623596, 3.839591 ], [ -67.719727, 4.160158 ], [ -67.719727, 5.263273 ], [ -67.521973, 5.558582 ], [ -67.500000, 5.626919 ], [ -67.343445, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.268888 ], [ -67.719727, 6.266158 ], [ -67.719727, 10.552622 ], [ -67.500000, 10.549922 ], [ -67.296753, 10.547221 ], [ -66.228333, 10.649811 ], [ -65.657043, 10.201407 ], [ -64.890747, 10.079741 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.641713 ], [ -63.080750, 10.703792 ], [ -61.883240, 10.717285 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.897217, 10.857584 ], [ -60.935669, 10.112190 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.090558 ], [ -61.660767, 10.366257 ], [ -61.682739, 10.760461 ], [ -61.105957, 10.892648 ], [ -60.897217, 10.857584 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.857584 ], [ -60.935669, 10.112190 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.090558 ], [ -61.660767, 10.366257 ], [ -61.682739, 10.760461 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.103699, 7.999397 ], [ -58.482971, 7.348847 ], [ -58.455505, 6.833716 ], [ -58.079224, 6.809171 ], [ -57.543640, 6.323488 ], [ -57.148132, 5.973949 ], [ -57.307434, 5.074529 ], [ -57.914429, 4.814575 ], [ -57.862244, 4.579163 ], [ -58.046265, 4.061536 ], [ -57.604065, 3.335212 ], [ -57.282715, 3.335212 ], [ -57.150879, 2.770221 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.864600 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.683413 ], [ -58.114929, 1.507700 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.032288, 1.318243 ], [ -59.647522, 1.787735 ], [ -59.718933, 2.251617 ], [ -59.977112, 2.756504 ], [ -59.817810, 3.606625 ], [ -59.540405, 3.960161 ], [ -59.768372, 4.425829 ], [ -60.111694, 4.576425 ], [ -59.982605, 5.014339 ], [ -60.216064, 5.246863 ], [ -60.735168, 5.200365 ], [ -61.410828, 5.960290 ], [ -61.141663, 6.236125 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.858259 ], [ -60.295715, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ], [ -59.103699, 7.999397 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.103699, 7.999397 ], [ -58.482971, 7.348847 ], [ -58.455505, 6.833716 ], [ -58.079224, 6.809171 ], [ -57.543640, 6.323488 ], [ -57.148132, 5.973949 ], [ -57.307434, 5.074529 ], [ -57.914429, 4.814575 ], [ -57.862244, 4.579163 ], [ -58.046265, 4.061536 ], [ -57.604065, 3.335212 ], [ -57.282715, 3.335212 ], [ -57.150879, 2.770221 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.864600 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.683413 ], [ -58.114929, 1.507700 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.032288, 1.318243 ], [ -59.647522, 1.787735 ], [ -59.718933, 2.251617 ], [ -59.977112, 2.756504 ], [ -59.817810, 3.606625 ], [ -59.540405, 3.960161 ], [ -59.768372, 4.425829 ], [ -60.111694, 4.576425 ], [ -59.982605, 5.014339 ], [ -60.216064, 5.246863 ], [ -60.735168, 5.200365 ], [ -61.410828, 5.960290 ], [ -61.141663, 6.236125 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.858259 ], [ -60.295715, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, 5.826419 ], [ -56.030273, 5.788164 ], [ -56.030273, 2.353159 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.172026 ], [ -56.030273, 1.823423 ], [ -56.250000, 1.856365 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.770221 ], [ -57.282715, 3.335212 ], [ -57.604065, 3.335212 ], [ -58.046265, 4.061536 ], [ -57.862244, 4.579163 ], [ -57.914429, 4.814575 ], [ -57.307434, 5.074529 ], [ -57.148132, 5.973949 ], [ -56.250000, 5.826419 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.148132, 5.973949 ], [ -56.250000, 5.826419 ], [ -56.030273, 5.788164 ], [ -56.030273, 2.353159 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.172026 ], [ -56.030273, 1.823423 ], [ -56.250000, 1.856365 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.770221 ], [ -57.282715, 3.335212 ], [ -57.604065, 3.335212 ], [ -58.046265, 4.061536 ], [ -57.862244, 4.579163 ], [ -57.914429, 4.814575 ], [ -57.307434, 5.074529 ], [ -57.148132, 5.973949 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.030273, -0.219726 ], [ -67.719727, -0.219726 ], [ -67.719727, 1.850874 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.996361 ], [ -67.261047, 1.721848 ], [ -67.066040, 1.131518 ], [ -66.876526, 1.255088 ], [ -66.327209, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.354919, 1.095819 ], [ -64.613342, 1.329226 ], [ -64.201355, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.413532 ], [ -64.270020, 2.498597 ], [ -64.410095, 3.126804 ], [ -64.368896, 3.798484 ], [ -64.816589, 4.058796 ], [ -64.629822, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.806091, 4.009480 ], [ -62.086487, 4.162897 ], [ -60.968628, 4.538094 ], [ -60.603333, 4.918569 ], [ -60.735168, 5.200365 ], [ -60.216064, 5.246863 ], [ -59.982605, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.768372, 4.425829 ], [ -59.540405, 3.960161 ], [ -59.817810, 3.606625 ], [ -59.977112, 2.756504 ], [ -59.718933, 2.251617 ], [ -59.647522, 1.787735 ], [ -59.032288, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.114929, 1.507700 ], [ -57.661743, 1.683413 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.864600 ], [ -56.541138, 1.900286 ], [ -56.250000, 1.856365 ], [ -56.030273, 1.823423 ], [ -56.030273, -0.219726 ] ] ], [ [ [ -56.030273, 2.353159 ], [ -56.030273, 2.172026 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.353159 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.246863 ], [ -59.982605, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.768372, 4.425829 ], [ -59.540405, 3.960161 ], [ -59.817810, 3.606625 ], [ -59.977112, 2.756504 ], [ -59.718933, 2.251617 ], [ -59.647522, 1.787735 ], [ -59.032288, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.114929, 1.507700 ], [ -57.661743, 1.683413 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.864600 ], [ -56.541138, 1.900286 ], [ -56.250000, 1.856365 ], [ -56.030273, 1.823423 ], [ -56.030273, -0.219726 ], [ -67.719727, -0.219726 ], [ -67.719727, 1.850874 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.996361 ], [ -67.261047, 1.721848 ], [ -67.066040, 1.131518 ], [ -66.876526, 1.255088 ], [ -66.327209, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.354919, 1.095819 ], [ -64.613342, 1.329226 ], [ -64.201355, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.413532 ], [ -64.270020, 2.498597 ], [ -64.410095, 3.126804 ], [ -64.368896, 3.798484 ], [ -64.816589, 4.058796 ], [ -64.629822, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.806091, 4.009480 ], [ -62.086487, 4.162897 ], [ -60.968628, 4.538094 ], [ -60.603333, 4.918569 ], [ -60.735168, 5.200365 ], [ -60.216064, 5.246863 ] ] ], [ [ [ -56.030273, 2.353159 ], [ -56.030273, 2.172026 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.353159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.283264, 18.516075 ], [ -65.772400, 18.427502 ], [ -65.591125, 18.229351 ], [ -65.849304, 17.976121 ], [ -66.601868, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.244568, 18.375379 ], [ -67.101746, 18.521283 ], [ -66.283264, 18.516075 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.101746, 18.521283 ], [ -66.283264, 18.516075 ], [ -65.772400, 18.427502 ], [ -65.591125, 18.229351 ], [ -65.849304, 17.976121 ], [ -66.601868, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.244568, 18.375379 ], [ -67.101746, 18.521283 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.495239, 48.922499 ], [ -64.171143, 48.743512 ], [ -65.115967, 48.072574 ], [ -64.800110, 46.993368 ], [ -64.473267, 46.238752 ], [ -63.174133, 45.740693 ], [ -61.523438, 45.884273 ], [ -60.518188, 47.008353 ], [ -60.449524, 46.284326 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.256531, 44.670606 ], [ -64.248047, 44.266838 ], [ -65.365906, 43.546557 ], [ -66.123962, 43.620171 ], [ -66.162415, 44.465151 ], [ -64.426575, 45.292279 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.719727, 45.640928 ], [ -67.719727, 48.674640 ], [ -67.500000, 48.761621 ], [ -67.090759, 48.922499 ], [ -66.725464, 49.066668 ], [ -64.756165, 49.066668 ], [ -64.495239, 48.922499 ] ] ], [ [ [ -63.665771, 46.551305 ], [ -62.940674, 46.417032 ], [ -62.012329, 46.443535 ], [ -62.503967, 46.035109 ], [ -62.874756, 45.968334 ], [ -64.143677, 46.394306 ], [ -64.393616, 46.728566 ], [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ] ] ], [ [ [ -56.030273, 47.578379 ], [ -56.250000, 47.633933 ], [ -57.326660, 47.572820 ], [ -59.268494, 47.604311 ], [ -59.419556, 47.899772 ], [ -58.798828, 48.252112 ], [ -59.232788, 48.523881 ], [ -58.677979, 48.922499 ], [ -58.477478, 49.066668 ], [ -56.030273, 49.066668 ], [ -56.030273, 47.578379 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.756165, 49.066668 ], [ -64.495239, 48.922499 ], [ -64.171143, 48.743512 ], [ -65.115967, 48.072574 ], [ -64.800110, 46.993368 ], [ -64.473267, 46.238752 ], [ -63.174133, 45.740693 ], [ -61.523438, 45.884273 ], [ -60.518188, 47.008353 ], [ -60.449524, 46.284326 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.256531, 44.670606 ], [ -64.248047, 44.266838 ], [ -65.365906, 43.546557 ], [ -66.123962, 43.620171 ], [ -66.162415, 44.465151 ], [ -64.426575, 45.292279 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.719727, 45.640928 ], [ -67.719727, 48.674640 ], [ -67.500000, 48.761621 ], [ -67.090759, 48.922499 ], [ -66.725464, 49.066668 ], [ -64.756165, 49.066668 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.417032 ], [ -62.012329, 46.443535 ], [ -62.503967, 46.035109 ], [ -62.874756, 45.968334 ], [ -64.143677, 46.394306 ], [ -64.393616, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -56.030273, 49.066668 ], [ -56.030273, 47.578379 ], [ -56.250000, 47.633933 ], [ -57.326660, 47.572820 ], [ -59.268494, 47.604311 ], [ -59.419556, 47.899772 ], [ -58.798828, 48.252112 ], [ -59.232788, 48.523881 ], [ -58.677979, 48.922499 ], [ -58.477478, 49.066668 ], [ -56.030273, 49.066668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.811070 ], [ -67.500000, 44.570904 ], [ -67.719727, 44.471031 ], [ -67.719727, 45.640928 ], [ -67.500000, 45.452424 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.719727, 45.640928 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.811070 ], [ -67.500000, 44.570904 ], [ -67.719727, 44.471031 ], [ -67.719727, 45.640928 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.030273, 50.812877 ], [ -56.134644, 50.687758 ], [ -56.250000, 50.537872 ], [ -56.796570, 49.813176 ], [ -56.250000, 50.097679 ], [ -56.145630, 50.150506 ], [ -56.030273, 50.115295 ], [ -56.030273, 48.777913 ], [ -58.881226, 48.777913 ], [ -58.677979, 48.922499 ], [ -58.392334, 49.126017 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.287688 ], [ -56.250000, 51.484804 ], [ -56.030273, 51.571949 ], [ -56.030273, 50.812877 ] ] ], [ [ [ -60.759888, 55.899956 ], [ -60.468750, 55.776573 ], [ -59.570618, 55.205521 ], [ -57.977600, 54.946076 ], [ -57.334900, 54.627748 ], [ -56.939392, 53.781181 ], [ -56.250000, 53.664171 ], [ -56.159363, 53.647894 ], [ -56.030273, 53.527248 ], [ -56.030273, 51.969654 ], [ -56.250000, 51.854442 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.723938, 50.081820 ], [ -63.863525, 50.291094 ], [ -65.365906, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.512727 ], [ -67.500000, 49.421694 ], [ -67.719727, 49.346599 ], [ -67.719727, 55.899956 ], [ -60.759888, 55.899956 ] ] ], [ [ [ -62.861023, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.806335, 49.106242 ], [ -62.295227, 49.088258 ], [ -63.591614, 49.402037 ], [ -64.519958, 49.873398 ], [ -64.173889, 49.958288 ], [ -62.861023, 49.706720 ] ] ], [ [ [ -67.090759, 48.922499 ], [ -66.555176, 49.133206 ], [ -65.058289, 49.233741 ], [ -64.495239, 48.922499 ], [ -64.234314, 48.777913 ], [ -67.456055, 48.777913 ], [ -67.090759, 48.922499 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.030273, 51.571949 ], [ -56.030273, 50.812877 ], [ -56.134644, 50.687758 ], [ -56.250000, 50.537872 ], [ -56.796570, 49.813176 ], [ -56.250000, 50.097679 ], [ -56.145630, 50.150506 ], [ -56.030273, 50.115295 ], [ -56.030273, 48.777913 ], [ -58.881226, 48.777913 ], [ -58.677979, 48.922499 ], [ -58.392334, 49.126017 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.287688 ], [ -56.250000, 51.484804 ], [ -56.030273, 51.571949 ] ] ], [ [ [ -64.495239, 48.922499 ], [ -64.234314, 48.777913 ], [ -67.456055, 48.777913 ], [ -67.090759, 48.922499 ], [ -66.555176, 49.133206 ], [ -65.058289, 49.233741 ], [ -64.495239, 48.922499 ] ] ], [ [ [ -64.173889, 49.958288 ], [ -62.861023, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.806335, 49.106242 ], [ -62.295227, 49.088258 ], [ -63.591614, 49.402037 ], [ -64.519958, 49.873398 ], [ -64.173889, 49.958288 ] ] ], [ [ [ -60.759888, 55.899956 ], [ -60.468750, 55.776573 ], [ -59.570618, 55.205521 ], [ -57.977600, 54.946076 ], [ -57.334900, 54.627748 ], [ -56.939392, 53.781181 ], [ -56.250000, 53.664171 ], [ -56.159363, 53.647894 ], [ -56.030273, 53.527248 ], [ -56.030273, 51.969654 ], [ -56.250000, 51.854442 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.723938, 50.081820 ], [ -63.863525, 50.291094 ], [ -65.365906, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.512727 ], [ -67.500000, 49.421694 ], [ -67.719727, 49.346599 ], [ -67.719727, 55.899956 ], [ -60.759888, 55.899956 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.805847, 59.443679 ], [ -62.503967, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.800842, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.273743, 55.652798 ], [ -67.719727, 55.652798 ], [ -67.719727, 58.270510 ], [ -67.651062, 58.212685 ], [ -67.500000, 58.271954 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.871019 ], [ -64.585876, 60.336464 ], [ -63.805847, 59.443679 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.585876, 60.336464 ], [ -63.805847, 59.443679 ], [ -62.503967, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.800842, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.273743, 55.652798 ], [ -67.719727, 55.652798 ], [ -67.719727, 58.270510 ], [ -67.651062, 58.212685 ], [ -67.500000, 58.271954 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.871019 ], [ -64.585876, 60.336464 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 65.337055 ], [ -67.090759, 65.109148 ], [ -65.733948, 64.648584 ], [ -65.321960, 64.383879 ], [ -64.671021, 63.393982 ], [ -65.014343, 62.675404 ], [ -66.277771, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.719727, 63.409968 ], [ -67.719727, 65.458261 ], [ -67.500000, 65.337055 ] ] ], [ [ [ -67.500000, 62.965212 ], [ -67.370911, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.167908, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.719727, 62.161654 ], [ -67.719727, 63.100972 ], [ -67.500000, 62.965212 ] ] ], [ [ [ -61.971130, 66.600676 ], [ -62.163391, 66.160511 ], [ -63.918457, 64.999100 ], [ -65.148926, 65.426299 ], [ -66.722717, 66.388161 ], [ -67.500000, 66.314345 ], [ -67.719727, 66.293373 ], [ -67.719727, 66.600676 ], [ -61.971130, 66.600676 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, 66.293373 ], [ -67.719727, 66.600676 ], [ -61.971130, 66.600676 ], [ -62.163391, 66.160511 ], [ -63.918457, 64.999100 ], [ -65.148926, 65.426299 ], [ -66.722717, 66.388161 ], [ -67.500000, 66.314345 ], [ -67.719727, 66.293373 ] ] ], [ [ [ -67.719727, 63.100972 ], [ -67.500000, 62.965212 ], [ -67.370911, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.167908, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.719727, 62.161654 ], [ -67.719727, 63.100972 ] ] ], [ [ [ -67.719727, 65.458261 ], [ -67.500000, 65.337055 ], [ -67.090759, 65.109148 ], [ -65.733948, 64.648584 ], [ -65.321960, 64.383879 ], [ -64.671021, 63.393982 ], [ -65.014343, 62.675404 ], [ -66.277771, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.719727, 63.409968 ], [ -67.719727, 65.458261 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 68.361738 ], [ -66.450806, 68.068176 ], [ -64.863281, 67.847595 ], [ -63.426819, 66.928984 ], [ -61.853027, 66.862162 ], [ -62.009583, 66.513260 ], [ -62.048035, 66.425537 ], [ -67.719727, 66.425537 ], [ -67.719727, 68.422424 ], [ -67.500000, 68.361738 ] ] ], [ [ [ -67.500000, 69.716202 ], [ -66.969910, 69.186969 ], [ -67.500000, 69.053840 ], [ -67.719727, 68.998786 ], [ -67.719727, 69.931243 ], [ -67.500000, 69.716202 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, 68.422424 ], [ -67.500000, 68.361738 ], [ -66.450806, 68.068176 ], [ -64.863281, 67.847595 ], [ -63.426819, 66.928984 ], [ -61.853027, 66.862162 ], [ -62.009583, 66.513260 ], [ -62.048035, 66.425537 ], [ -67.719727, 66.425537 ], [ -67.719727, 68.422424 ] ] ], [ [ [ -67.719727, 68.998786 ], [ -67.719727, 69.931243 ], [ -67.500000, 69.716202 ], [ -66.969910, 69.186969 ], [ -67.500000, 69.053840 ], [ -67.719727, 68.998786 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 73.572731 ], [ -56.120911, 73.650226 ], [ -56.250000, 73.767336 ], [ -56.532898, 74.019543 ], [ -56.601562, 74.079925 ], [ -56.030273, 74.079925 ], [ -56.030273, 73.572731 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 74.079925 ], [ -56.030273, 73.572731 ], [ -56.120911, 73.650226 ], [ -56.250000, 73.767336 ], [ -56.532898, 74.019543 ], [ -56.601562, 74.079925 ], [ -56.030273, 74.079925 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 73.958939 ], [ -56.464233, 73.958939 ], [ -56.532898, 74.019543 ], [ -57.323914, 74.710796 ], [ -58.598328, 75.099165 ], [ -58.587341, 75.517778 ], [ -61.270752, 76.102775 ], [ -63.393860, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092216 ], [ -67.719727, 76.085613 ], [ -67.719727, 76.890745 ], [ -56.030273, 76.890745 ], [ -56.030273, 73.958939 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 76.890745 ], [ -56.030273, 73.958939 ], [ -56.464233, 73.958939 ], [ -56.532898, 74.019543 ], [ -57.323914, 74.710796 ], [ -58.598328, 75.099165 ], [ -58.587341, 75.517778 ], [ -61.270752, 76.102775 ], [ -63.393860, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092216 ], [ -67.719727, 76.085613 ], [ -67.719727, 76.890745 ], [ -56.030273, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 76.790701 ], [ -67.719727, 76.790701 ], [ -67.719727, 77.351671 ], [ -67.500000, 77.357684 ], [ -66.766663, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.719727, 77.434996 ], [ -67.719727, 79.134119 ], [ -67.500000, 79.163075 ], [ -67.120972, 79.212538 ], [ -56.030273, 79.212538 ], [ -56.030273, 76.790701 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 79.212538 ], [ -56.030273, 76.790701 ], [ -67.719727, 76.790701 ], [ -67.719727, 77.351671 ], [ -67.500000, 77.357684 ], [ -66.766663, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.719727, 77.434996 ], [ -67.719727, 79.134119 ], [ -67.500000, 79.163075 ], [ -67.120972, 79.212538 ], [ -56.030273, 79.212538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.109985, 81.093214 ], [ -67.500000, 80.990573 ], [ -67.719727, 80.932755 ], [ -67.719727, 81.127169 ], [ -66.978149, 81.127169 ], [ -67.109985, 81.093214 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.978149, 81.127169 ], [ -67.109985, 81.093214 ], [ -67.500000, 80.990573 ], [ -67.719727, 80.932755 ], [ -67.719727, 81.127169 ], [ -66.978149, 81.127169 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.134119 ], [ -67.436829, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.049036 ], [ -67.719727, 80.077946 ], [ -67.719727, 80.259434 ], [ -67.500000, 80.360215 ], [ -67.153931, 80.516245 ], [ -64.311218, 81.093214 ], [ -64.138184, 81.127169 ], [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.134119 ], [ -67.436829, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.049036 ], [ -67.719727, 80.077946 ], [ -67.719727, 80.259434 ], [ -67.500000, 80.360215 ], [ -67.153931, 80.516245 ], [ -64.311218, 81.093214 ], [ -64.138184, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.166138, 82.676285 ], [ -61.850281, 82.628867 ], [ -61.894226, 82.362009 ], [ -64.335938, 81.927816 ], [ -66.755676, 81.725560 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.501646 ], [ -67.500000, 81.502052 ], [ -65.481262, 81.506921 ], [ -67.109985, 81.093214 ], [ -67.239075, 81.059130 ], [ -67.719727, 81.059130 ], [ -67.719727, 82.704241 ], [ -62.352905, 82.704241 ], [ -62.166138, 82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.352905, 82.704241 ], [ -62.166138, 82.676285 ], [ -61.850281, 82.628867 ], [ -61.894226, 82.362009 ], [ -64.335938, 81.927816 ], [ -66.755676, 81.725560 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.501646 ], [ -67.500000, 81.502052 ], [ -65.481262, 81.506921 ], [ -67.109985, 81.093214 ], [ -67.239075, 81.059130 ], [ -67.719727, 81.059130 ], [ -67.719727, 82.704241 ], [ -62.352905, 82.704241 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 81.059130 ], [ -64.484253, 81.059130 ], [ -64.311218, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.284729, 82.033949 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193726 ], [ -56.030273, 82.194472 ], [ -56.030273, 81.059130 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 82.194472 ], [ -56.030273, 81.059130 ], [ -64.484253, 81.059130 ], [ -64.311218, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.284729, 82.033949 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193726 ], [ -56.030273, 82.194472 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 83.077718 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900043 ], [ -62.166138, 82.676285 ], [ -61.979370, 82.648222 ], [ -67.719727, 82.648222 ], [ -67.719727, 83.084004 ], [ -67.500000, 83.077718 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.719727, 83.084004 ], [ -67.500000, 83.077718 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900043 ], [ -62.166138, 82.676285 ], [ -61.979370, 82.648222 ], [ -67.719727, 82.648222 ], [ -67.719727, 83.084004 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -85.070048 ], [ -56.469727, -85.070048 ], [ -56.469727, -83.956169 ], [ -44.780273, -83.956169 ], [ -44.780273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -83.956169 ], [ -44.780273, -85.070048 ], [ -56.469727, -85.070048 ], [ -56.469727, -83.956169 ], [ -44.780273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -84.002262 ], [ -56.469727, -84.002262 ], [ -56.469727, -82.769868 ], [ -56.250000, -82.730702 ], [ -55.947876, -82.676285 ], [ -55.791321, -82.648222 ], [ -44.780273, -82.648222 ], [ -44.780273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -82.648222 ], [ -44.780273, -84.002262 ], [ -56.469727, -84.002262 ], [ -56.469727, -82.769868 ], [ -56.250000, -82.730702 ], [ -55.947876, -82.676285 ], [ -55.791321, -82.648222 ], [ -44.780273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -81.836674 ], [ -44.826965, -81.846419 ], [ -44.780273, -81.851870 ], [ -44.780273, -82.704241 ], [ -56.101685, -82.704241 ], [ -55.945129, -82.676285 ], [ -55.365601, -82.571561 ], [ -53.621521, -82.258000 ], [ -51.545105, -82.003440 ], [ -49.762573, -81.729116 ], [ -47.274170, -81.709338 ], [ -45.000000, -81.836674 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.274170, -81.709338 ], [ -45.000000, -81.836674 ], [ -44.826965, -81.846419 ], [ -44.780273, -81.851870 ], [ -44.780273, -82.704241 ], [ -56.101685, -82.704241 ], [ -55.945129, -82.676285 ], [ -55.365601, -82.571561 ], [ -53.621521, -82.258000 ], [ -51.545105, -82.003440 ], [ -49.762573, -81.729116 ], [ -47.274170, -81.709338 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -80.318734 ], [ -44.881897, -80.339497 ], [ -45.000000, -80.357916 ], [ -46.507874, -80.594217 ], [ -48.386536, -80.829156 ], [ -50.482178, -81.025345 ], [ -52.852478, -80.966455 ], [ -54.165344, -80.633187 ], [ -53.989563, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.353088, -79.171335 ], [ -50.303650, -79.129976 ], [ -44.780273, -79.129976 ], [ -44.780273, -80.318734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -79.129976 ], [ -44.780273, -80.318734 ], [ -44.881897, -80.339497 ], [ -45.000000, -80.357916 ], [ -46.507874, -80.594217 ], [ -48.386536, -80.829156 ], [ -50.482178, -81.025345 ], [ -52.852478, -80.966455 ], [ -54.165344, -80.633187 ], [ -53.989563, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.353088, -79.171335 ], [ -50.303650, -79.129976 ], [ -44.780273, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.156555, -78.046640 ], [ -45.000000, -78.101694 ], [ -44.780273, -78.179025 ], [ -44.780273, -79.212538 ], [ -50.410767, -79.212538 ], [ -50.353088, -79.171335 ], [ -49.916382, -78.811044 ], [ -49.309387, -78.458173 ], [ -48.661194, -78.046640 ], [ -48.153076, -78.046640 ], [ -46.664429, -77.831431 ], [ -45.156555, -78.046640 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.664429, -77.831431 ], [ -45.156555, -78.046640 ], [ -45.000000, -78.101694 ], [ -44.780273, -78.179025 ], [ -44.780273, -79.212538 ], [ -50.410767, -79.212538 ], [ -50.353088, -79.171335 ], [ -49.916382, -78.811044 ], [ -49.309387, -78.458173 ], [ -48.661194, -78.046640 ], [ -48.153076, -78.046640 ], [ -46.664429, -77.831431 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.833496, -31.952162 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.195029 ], [ -53.374329, -33.767732 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.190063, -31.765537 ], [ -51.567078, -31.765537 ], [ -51.833496, -31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.567078, -31.765537 ], [ -51.833496, -31.952162 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.195029 ], [ -53.374329, -33.767732 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.190063, -31.765537 ], [ -51.567078, -31.765537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.923645, -31.952162 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.374329, -33.767732 ], [ -53.808289, -34.395579 ], [ -54.937134, -34.951242 ], [ -55.675964, -34.750640 ], [ -56.217041, -34.858890 ], [ -56.250000, -34.843113 ], [ -56.469727, -34.739356 ], [ -56.469727, -31.765537 ], [ -54.190063, -31.765537 ], [ -53.923645, -31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.190063, -31.765537 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.374329, -33.767732 ], [ -53.808289, -34.395579 ], [ -54.937134, -34.951242 ], [ -55.675964, -34.750640 ], [ -56.217041, -34.858890 ], [ -56.250000, -34.843113 ], [ -56.469727, -34.739356 ], [ -56.469727, -31.765537 ], [ -54.190063, -31.765537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -23.433009 ], [ -45.000000, -23.571540 ], [ -45.354309, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.650452, -24.883945 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.174026 ], [ -48.663940, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.589539, -29.224096 ], [ -50.699158, -30.982319 ], [ -51.578064, -31.777213 ], [ -51.833496, -31.952162 ], [ -52.102661, -32.138409 ], [ -53.712158, -32.138409 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.975342, -30.881012 ], [ -56.250000, -30.668628 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.034559 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -55.162354, -27.880356 ], [ -54.492188, -27.474161 ], [ -53.648987, -26.922070 ], [ -53.629761, -26.123384 ], [ -54.132385, -25.547398 ], [ -54.626770, -25.738055 ], [ -54.429016, -25.160201 ], [ -54.294434, -24.569606 ], [ -54.294434, -24.018871 ], [ -54.654236, -23.838113 ], [ -55.030518, -23.998799 ], [ -55.401306, -23.956136 ], [ -55.519409, -23.571540 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.085640 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ], [ -44.780273, -23.433009 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -21.739091 ], [ -44.780273, -23.433009 ], [ -45.000000, -23.571540 ], [ -45.354309, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.650452, -24.883945 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.174026 ], [ -48.663940, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.589539, -29.224096 ], [ -50.699158, -30.982319 ], [ -51.578064, -31.777213 ], [ -51.833496, -31.952162 ], [ -52.102661, -32.138409 ], [ -53.712158, -32.138409 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.975342, -30.881012 ], [ -56.250000, -30.668628 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.034559 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -55.162354, -27.880356 ], [ -54.492188, -27.474161 ], [ -53.648987, -26.922070 ], [ -53.629761, -26.123384 ], [ -54.132385, -25.547398 ], [ -54.626770, -25.738055 ], [ -54.429016, -25.160201 ], [ -54.294434, -24.569606 ], [ -54.294434, -24.018871 ], [ -54.654236, -23.838113 ], [ -55.030518, -23.998799 ], [ -55.401306, -23.956136 ], [ -55.519409, -23.571540 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.085640 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, -22.174688 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.030518, -23.998799 ], [ -54.654236, -23.838113 ], [ -54.294434, -24.018871 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.160201 ], [ -54.626770, -25.738055 ], [ -54.788818, -26.620452 ], [ -55.697937, -27.386401 ], [ -56.250000, -27.498527 ], [ -56.469727, -27.542371 ], [ -56.469727, -22.085640 ], [ -56.250000, -22.174688 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.085640 ], [ -56.250000, -22.174688 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.030518, -23.998799 ], [ -54.654236, -23.838113 ], [ -54.294434, -24.018871 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.160201 ], [ -54.626770, -25.738055 ], [ -54.788818, -26.620452 ], [ -55.697937, -27.386401 ], [ -56.250000, -27.498527 ], [ -56.469727, -27.542371 ], [ -56.469727, -22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.629761, -26.123384 ], [ -53.648987, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.880356 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.034559 ], [ -56.469727, -27.542371 ], [ -56.250000, -27.498527 ], [ -55.697937, -27.386401 ], [ -54.788818, -26.620452 ], [ -54.626770, -25.738055 ], [ -54.132385, -25.547398 ], [ -53.629761, -26.123384 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.132385, -25.547398 ], [ -53.629761, -26.123384 ], [ -53.648987, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.880356 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.034559 ], [ -56.469727, -27.542371 ], [ -56.250000, -27.498527 ], [ -55.697937, -27.386401 ], [ -54.788818, -26.620452 ], [ -54.626770, -25.738055 ], [ -54.132385, -25.547398 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, -30.668628 ], [ -55.975342, -30.881012 ], [ -55.601807, -30.852721 ], [ -54.574585, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.045333 ], [ -53.712158, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ], [ -56.250000, -30.668628 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.668628 ], [ -55.975342, -30.881012 ], [ -55.601807, -30.852721 ], [ -54.574585, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.045333 ], [ -53.712158, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -22.146708 ], [ -56.324158, -22.146708 ], [ -56.469727, -22.085640 ], [ -56.469727, -10.962764 ], [ -44.780273, -10.962764 ], [ -44.780273, -22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -10.962764 ], [ -44.780273, -22.146708 ], [ -56.324158, -22.146708 ], [ -56.469727, -22.085640 ], [ -56.469727, -10.962764 ], [ -44.780273, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.324158, -22.146708 ], [ -56.469727, -22.146708 ], [ -56.469727, -22.085640 ], [ -56.324158, -22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.085640 ], [ -56.324158, -22.146708 ], [ -56.469727, -22.146708 ], [ -56.469727, -22.085640 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.622742, -0.233459 ], [ -48.587036, -1.235866 ], [ -47.826233, -0.579519 ], [ -46.568298, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.551629 ], [ -44.780273, -1.699885 ], [ -44.780273, -11.393879 ], [ -56.469727, -11.393879 ], [ -56.469727, 0.219726 ], [ -50.696411, 0.219726 ], [ -50.471191, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.696411, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.622742, -0.233459 ], [ -48.587036, -1.235866 ], [ -47.826233, -0.579519 ], [ -46.568298, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.551629 ], [ -44.780273, -1.699885 ], [ -44.780273, -11.393879 ], [ -56.469727, -11.393879 ], [ -56.469727, 0.219726 ], [ -50.696411, 0.219726 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.401550, 4.214943 ], [ -54.008789, 3.620330 ], [ -54.181824, 3.189879 ], [ -54.269714, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.099182, 2.526037 ], [ -55.571594, 2.421764 ], [ -55.975342, 2.512317 ], [ -56.074219, 2.221428 ], [ -55.906677, 2.023810 ], [ -55.997314, 1.817932 ], [ -56.250000, 1.856365 ], [ -56.469727, 1.892051 ], [ -56.469727, 5.861939 ], [ -56.250000, 5.826419 ], [ -55.950623, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.033264, 6.025848 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.033264, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.401550, 4.214943 ], [ -54.008789, 3.620330 ], [ -54.181824, 3.189879 ], [ -54.269714, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.099182, 2.526037 ], [ -55.571594, 2.421764 ], [ -55.975342, 2.512317 ], [ -56.074219, 2.221428 ], [ -55.906677, 2.023810 ], [ -55.997314, 1.817932 ], [ -56.250000, 1.856365 ], [ -56.469727, 1.892051 ], [ -56.469727, 5.861939 ], [ -56.250000, 5.826419 ], [ -55.950623, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.033264, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.882690, 5.410945 ], [ -51.825256, 4.568211 ], [ -51.660461, 4.157419 ], [ -52.250977, 3.241982 ], [ -52.558594, 2.506829 ], [ -52.940369, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.555603, 2.336693 ], [ -53.780823, 2.377857 ], [ -54.088440, 2.106154 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.011536, 3.623071 ], [ -54.401550, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ], [ -52.882690, 5.410945 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.410945 ], [ -51.825256, 4.568211 ], [ -51.660461, 4.157419 ], [ -52.250977, 3.241982 ], [ -52.558594, 2.506829 ], [ -52.940369, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.555603, 2.336693 ], [ -53.780823, 2.377857 ], [ -54.088440, 2.106154 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.011536, 3.623071 ], [ -54.401550, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.069946, 3.650482 ], [ -50.509644, 1.903031 ], [ -49.976807, 1.738320 ], [ -49.949341, 1.046390 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.779297, -0.219726 ], [ -56.469727, -0.219726 ], [ -56.469727, 1.892051 ], [ -56.250000, 1.856365 ], [ -55.997314, 1.817932 ], [ -55.906677, 2.023810 ], [ -56.074219, 2.221428 ], [ -55.975342, 2.512317 ], [ -55.571594, 2.421764 ], [ -55.099182, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.088440, 2.106154 ], [ -53.780823, 2.377857 ], [ -53.555603, 2.336693 ], [ -53.421021, 2.054003 ], [ -52.940369, 2.125367 ], [ -52.558594, 2.506829 ], [ -52.250977, 3.241982 ], [ -51.660461, 4.157419 ], [ -51.319885, 4.203986 ], [ -51.069946, 3.650482 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.319885, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.903031 ], [ -49.976807, 1.738320 ], [ -49.949341, 1.046390 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.779297, -0.219726 ], [ -56.469727, -0.219726 ], [ -56.469727, 1.892051 ], [ -56.250000, 1.856365 ], [ -55.997314, 1.817932 ], [ -55.906677, 2.023810 ], [ -56.074219, 2.221428 ], [ -55.975342, 2.512317 ], [ -55.571594, 2.421764 ], [ -55.099182, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.088440, 2.106154 ], [ -53.780823, 2.377857 ], [ -53.555603, 2.336693 ], [ -53.421021, 2.054003 ], [ -52.940369, 2.125367 ], [ -52.558594, 2.506829 ], [ -52.250977, 3.241982 ], [ -51.660461, 4.157419 ], [ -51.319885, 4.203986 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.618774, 48.922499 ], [ -53.786316, 48.518424 ], [ -53.088684, 48.689147 ], [ -52.959595, 48.158757 ], [ -52.649231, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.522644, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.962097, 47.626529 ], [ -54.242249, 47.754098 ], [ -55.401306, 46.886477 ], [ -56.000061, 46.920255 ], [ -55.291443, 47.390912 ], [ -56.250000, 47.633933 ], [ -56.252747, 47.633933 ], [ -56.469727, 47.622827 ], [ -56.469727, 49.066668 ], [ -53.558350, 49.066668 ], [ -53.618774, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.558350, 49.066668 ], [ -53.618774, 48.922499 ], [ -53.786316, 48.518424 ], [ -53.088684, 48.689147 ], [ -52.959595, 48.158757 ], [ -52.649231, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.522644, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.962097, 47.626529 ], [ -54.242249, 47.754098 ], [ -55.401306, 46.886477 ], [ -56.000061, 46.920255 ], [ -55.291443, 47.390912 ], [ -56.250000, 47.633933 ], [ -56.252747, 47.633933 ], [ -56.469727, 47.622827 ], [ -56.469727, 49.066668 ], [ -53.558350, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.250000, 51.484804 ], [ -55.873718, 51.633362 ], [ -55.409546, 51.589016 ], [ -55.601807, 51.318597 ], [ -56.134644, 50.687758 ], [ -56.250000, 50.537872 ], [ -56.469727, 50.247205 ], [ -56.469727, 51.395778 ], [ -56.250000, 51.484804 ] ] ], [ [ [ -56.250000, 53.664171 ], [ -56.159363, 53.647894 ], [ -55.758362, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.250000, 51.854442 ], [ -56.409302, 51.771239 ], [ -56.469727, 51.742337 ], [ -56.469727, 53.701585 ], [ -56.250000, 53.664171 ] ] ], [ [ [ -56.145630, 50.150506 ], [ -55.472717, 49.937080 ], [ -55.824280, 49.587568 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.478699, 49.249879 ], [ -53.618774, 48.922499 ], [ -53.679199, 48.777913 ], [ -56.469727, 48.777913 ], [ -56.469727, 49.983020 ], [ -56.250000, 50.097679 ], [ -56.145630, 50.150506 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.469727, 49.983020 ], [ -56.250000, 50.097679 ], [ -56.145630, 50.150506 ], [ -55.472717, 49.937080 ], [ -55.824280, 49.587568 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.478699, 49.249879 ], [ -53.618774, 48.922499 ], [ -53.679199, 48.777913 ], [ -56.469727, 48.777913 ], [ -56.469727, 49.983020 ] ] ], [ [ [ -56.469727, 53.701585 ], [ -56.250000, 53.664171 ], [ -56.159363, 53.647894 ], [ -55.758362, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.250000, 51.854442 ], [ -56.409302, 51.771239 ], [ -56.469727, 51.742337 ], [ -56.469727, 53.701585 ] ] ], [ [ [ -56.469727, 50.247205 ], [ -56.469727, 51.395778 ], [ -56.250000, 51.484804 ], [ -55.873718, 51.633362 ], [ -55.409546, 51.589016 ], [ -55.601807, 51.318597 ], [ -56.134644, 50.687758 ], [ -56.250000, 50.537872 ], [ -56.469727, 50.247205 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 60.038789 ], [ -44.788513, 60.037417 ], [ -45.000000, 60.156543 ], [ -46.266174, 60.854276 ], [ -48.265686, 60.859626 ], [ -49.235229, 61.407236 ], [ -49.369812, 61.606396 ], [ -49.441223, 61.710706 ], [ -44.780273, 61.710706 ], [ -44.780273, 60.038789 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 61.710706 ], [ -44.780273, 60.038789 ], [ -44.788513, 60.037417 ], [ -45.000000, 60.156543 ], [ -46.266174, 60.854276 ], [ -48.265686, 60.859626 ], [ -49.235229, 61.407236 ], [ -49.369812, 61.606396 ], [ -49.441223, 61.710706 ], [ -44.780273, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 61.501734 ], [ -49.301147, 61.501734 ], [ -49.369812, 61.606396 ], [ -49.902649, 62.384004 ], [ -51.635742, 63.627965 ], [ -52.141113, 64.279184 ], [ -52.278442, 65.177265 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.421021, 66.600676 ], [ -44.780273, 66.600676 ], [ -44.780273, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 66.600676 ], [ -44.780273, 61.501734 ], [ -49.301147, 61.501734 ], [ -49.369812, 61.606396 ], [ -49.902649, 62.384004 ], [ -51.635742, 63.627965 ], [ -52.141113, 64.279184 ], [ -52.278442, 65.177265 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.421021, 66.600676 ], [ -44.780273, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.712646, 70.612614 ], [ -51.391296, 70.570631 ], [ -51.503906, 70.612614 ], [ -51.698914, 70.685421 ], [ -44.780273, 70.685421 ], [ -44.780273, 66.425537 ], [ -53.508911, 66.425537 ], [ -53.464966, 66.513260 ], [ -53.302917, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.357686 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.147898 ], [ -50.872192, 69.929358 ], [ -52.014771, 69.575772 ], [ -52.558594, 69.426691 ], [ -53.456726, 69.284342 ], [ -54.684448, 69.610249 ], [ -54.750366, 70.290043 ], [ -54.516907, 70.612614 ], [ -54.461975, 70.685421 ], [ -52.270203, 70.685421 ], [ -51.712646, 70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 70.685421 ], [ -44.780273, 66.425537 ], [ -53.508911, 66.425537 ], [ -53.464966, 66.513260 ], [ -53.302917, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.357686 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.147898 ], [ -50.872192, 69.929358 ], [ -52.014771, 69.575772 ], [ -52.558594, 69.426691 ], [ -53.456726, 69.284342 ], [ -54.684448, 69.610249 ], [ -54.750366, 70.290043 ], [ -54.516907, 70.612614 ], [ -54.461975, 70.685421 ], [ -52.270203, 70.685421 ], [ -51.712646, 70.612614 ], [ -51.391296, 70.570631 ], [ -51.503906, 70.612614 ], [ -51.698914, 70.685421 ], [ -44.780273, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 70.539543 ], [ -54.569092, 70.539543 ], [ -54.516907, 70.612614 ], [ -54.360352, 70.822129 ], [ -53.432007, 70.836560 ], [ -51.712646, 70.612614 ], [ -51.391296, 70.570631 ], [ -51.503906, 70.612614 ], [ -53.110657, 71.205460 ], [ -54.006042, 71.547525 ], [ -55.000305, 71.407048 ], [ -55.835266, 71.655020 ], [ -54.720154, 72.586583 ], [ -55.327148, 72.959120 ], [ -56.120911, 73.650226 ], [ -56.250000, 73.767336 ], [ -56.469727, 73.965009 ], [ -56.469727, 74.079925 ], [ -44.780273, 74.079925 ], [ -44.780273, 70.539543 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 74.079925 ], [ -44.780273, 70.539543 ], [ -54.569092, 70.539543 ], [ -54.516907, 70.612614 ], [ -54.360352, 70.822129 ], [ -53.432007, 70.836560 ], [ -51.712646, 70.612614 ], [ -51.391296, 70.570631 ], [ -51.503906, 70.612614 ], [ -53.110657, 71.205460 ], [ -54.006042, 71.547525 ], [ -55.000305, 71.407048 ], [ -55.835266, 71.655020 ], [ -54.720154, 72.586583 ], [ -55.327148, 72.959120 ], [ -56.120911, 73.650226 ], [ -56.250000, 73.767336 ], [ -56.469727, 73.965009 ], [ -56.469727, 74.079925 ], [ -44.780273, 74.079925 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 73.958939 ], [ -56.464233, 73.958939 ], [ -56.469727, 73.965009 ], [ -56.469727, 76.890745 ], [ -44.780273, 76.890745 ], [ -44.780273, 73.958939 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 76.890745 ], [ -44.780273, 73.958939 ], [ -56.464233, 73.958939 ], [ -56.469727, 73.965009 ], [ -56.469727, 76.890745 ], [ -44.780273, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 76.790701 ], [ -56.469727, 76.790701 ], [ -56.469727, 79.212538 ], [ -44.780273, 79.212538 ], [ -44.780273, 76.790701 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 79.212538 ], [ -44.780273, 76.790701 ], [ -56.469727, 76.790701 ], [ -56.469727, 79.212538 ], [ -44.780273, 79.212538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 79.129976 ], [ -56.469727, 79.129976 ], [ -56.469727, 81.127169 ], [ -44.780273, 81.127169 ], [ -44.780273, 79.129976 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 81.127169 ], [ -44.780273, 79.129976 ], [ -56.469727, 79.129976 ], [ -56.469727, 81.127169 ], [ -44.780273, 81.127169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.780273, 81.059130 ], [ -56.469727, 81.059130 ], [ -56.469727, 82.192980 ], [ -56.250000, 82.193726 ], [ -54.135132, 82.199693 ], [ -53.044739, 81.888381 ], [ -50.391541, 82.439013 ], [ -48.004761, 82.065101 ], [ -46.601257, 81.986228 ], [ -45.000000, 81.737015 ], [ -44.780273, 81.702206 ], [ -44.780273, 81.059130 ] ] ], [ [ [ -46.903381, 82.200065 ], [ -46.766052, 82.628162 ], [ -46.507874, 82.676285 ], [ -46.356812, 82.704241 ], [ -44.780273, 82.704241 ], [ -44.780273, 81.721210 ], [ -45.000000, 81.772072 ], [ -46.903381, 82.200065 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.391541, 82.439013 ], [ -48.004761, 82.065101 ], [ -46.601257, 81.986228 ], [ -45.000000, 81.737015 ], [ -44.780273, 81.702206 ], [ -44.780273, 81.059130 ], [ -56.469727, 81.059130 ], [ -56.469727, 82.192980 ], [ -56.250000, 82.193726 ], [ -54.135132, 82.199693 ], [ -53.044739, 81.888381 ], [ -50.391541, 82.439013 ] ] ], [ [ [ -44.780273, 82.704241 ], [ -44.780273, 81.721210 ], [ -45.000000, 81.772072 ], [ -46.903381, 82.200065 ], [ -46.766052, 82.628162 ], [ -46.507874, 82.676285 ], [ -46.356812, 82.704241 ], [ -44.780273, 82.704241 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 82.648222 ], [ -46.658936, 82.648222 ], [ -46.507874, 82.676285 ], [ -45.000000, 82.948761 ], [ -44.780273, 82.987764 ], [ -44.780273, 82.648222 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 82.987764 ], [ -44.780273, 82.648222 ], [ -46.658936, 82.648222 ], [ -46.507874, 82.676285 ], [ -45.000000, 82.948761 ], [ -44.780273, 82.987764 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, -85.070048 ], [ -45.219727, -85.070048 ], [ -45.219727, -83.956169 ], [ -33.530273, -83.956169 ], [ -33.530273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, -83.956169 ], [ -33.530273, -85.070048 ], [ -45.219727, -85.070048 ], [ -45.219727, -83.956169 ], [ -33.530273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, -84.002262 ], [ -45.219727, -84.002262 ], [ -45.219727, -82.648222 ], [ -33.530273, -82.648222 ], [ -33.530273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, -82.648222 ], [ -33.530273, -84.002262 ], [ -45.219727, -84.002262 ], [ -45.219727, -82.648222 ], [ -33.530273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, -82.704241 ], [ -45.219727, -82.704241 ], [ -45.219727, -81.824185 ], [ -45.000000, -81.836674 ], [ -44.826965, -81.846419 ], [ -42.810974, -82.081766 ], [ -42.162781, -81.650517 ], [ -40.773010, -81.356748 ], [ -38.246155, -81.336913 ], [ -36.268616, -81.121660 ], [ -36.018677, -81.093214 ], [ -35.719299, -81.059130 ], [ -33.530273, -81.059130 ], [ -33.530273, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, -81.059130 ], [ -33.530273, -82.704241 ], [ -45.219727, -82.704241 ], [ -45.219727, -81.824185 ], [ -45.000000, -81.836674 ], [ -44.826965, -81.846419 ], [ -42.810974, -82.081766 ], [ -42.162781, -81.650517 ], [ -40.773010, -81.356748 ], [ -38.246155, -81.336913 ], [ -36.268616, -81.121660 ], [ -36.018677, -81.093214 ], [ -35.719299, -81.059130 ], [ -33.530273, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -35.642395, -79.456019 ], [ -35.853882, -79.171335 ], [ -35.884094, -79.129976 ], [ -33.530273, -79.129976 ], [ -33.530273, -79.444453 ], [ -33.681335, -79.456019 ], [ -35.642395, -79.456019 ] ] ], [ [ [ -43.470154, -79.171335 ], [ -43.374023, -79.516161 ], [ -43.335571, -80.025752 ], [ -44.881897, -80.339497 ], [ -45.000000, -80.357916 ], [ -45.219727, -80.392357 ], [ -45.219727, -79.129976 ], [ -43.481140, -79.129976 ], [ -43.470154, -79.171335 ] ] ], [ [ [ -33.530273, -81.127169 ], [ -36.320801, -81.127169 ], [ -36.018677, -81.093214 ], [ -34.387207, -80.905879 ], [ -33.750000, -80.863673 ], [ -33.530273, -80.849270 ], [ -33.530273, -81.127169 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -33.530273, -79.444453 ], [ -33.681335, -79.456019 ], [ -35.642395, -79.456019 ], [ -35.853882, -79.171335 ], [ -35.884094, -79.129976 ], [ -33.530273, -79.129976 ], [ -33.530273, -79.444453 ] ] ], [ [ [ -43.481140, -79.129976 ], [ -43.470154, -79.171335 ], [ -43.374023, -79.516161 ], [ -43.335571, -80.025752 ], [ -44.881897, -80.339497 ], [ -45.000000, -80.357916 ], [ -45.219727, -80.392357 ], [ -45.219727, -79.129976 ], [ -43.481140, -79.129976 ] ] ], [ [ [ -33.530273, -80.849270 ], [ -33.530273, -81.127169 ], [ -36.320801, -81.127169 ], [ -36.018677, -81.093214 ], [ -34.387207, -80.905879 ], [ -33.750000, -80.863673 ], [ -33.530273, -80.849270 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.156555, -78.046640 ], [ -45.000000, -78.102260 ], [ -43.923340, -78.477940 ], [ -43.492126, -79.085342 ], [ -43.470154, -79.171335 ], [ -43.459167, -79.212538 ], [ -45.219727, -79.212538 ], [ -45.219727, -78.037535 ], [ -45.156555, -78.046640 ] ] ], [ [ [ -33.530273, -79.212538 ], [ -35.823669, -79.212538 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083781 ], [ -35.779724, -78.338868 ], [ -35.329285, -78.123193 ], [ -33.898315, -77.888038 ], [ -33.750000, -77.867274 ], [ -33.530273, -77.836641 ], [ -33.530273, -79.212538 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.219727, -78.037535 ], [ -45.156555, -78.046640 ], [ -45.000000, -78.102260 ], [ -43.923340, -78.477940 ], [ -43.492126, -79.085342 ], [ -43.470154, -79.171335 ], [ -43.459167, -79.212538 ], [ -45.219727, -79.212538 ], [ -45.219727, -78.037535 ] ] ], [ [ [ -33.530273, -77.836641 ], [ -33.530273, -79.212538 ], [ -35.823669, -79.212538 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083781 ], [ -35.779724, -78.338868 ], [ -35.329285, -78.123193 ], [ -33.898315, -77.888038 ], [ -33.750000, -77.867274 ], [ -33.530273, -77.836641 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.946045, -21.935403 ], [ -40.962524, -21.943046 ], [ -41.756287, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.965980 ], [ -44.648438, -23.349821 ], [ -45.219727, -23.709924 ], [ -45.219727, -21.739091 ], [ -40.915833, -21.739091 ], [ -40.946045, -21.935403 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.915833, -21.739091 ], [ -40.946045, -21.935403 ], [ -40.962524, -21.943046 ], [ -41.756287, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.965980 ], [ -44.648438, -23.349821 ], [ -45.219727, -23.709924 ], [ -45.219727, -21.739091 ], [ -40.915833, -21.739091 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -37.048645, -11.038255 ], [ -37.128296, -11.178402 ], [ -37.685852, -12.170911 ], [ -38.424683, -13.036669 ], [ -38.674622, -13.055399 ], [ -38.954773, -13.792739 ], [ -38.883362, -15.665354 ], [ -39.163513, -17.206394 ], [ -39.267883, -17.866361 ], [ -39.583740, -18.260653 ], [ -39.762268, -19.598607 ], [ -40.775757, -20.902437 ], [ -40.946045, -21.935403 ], [ -40.962524, -21.943046 ], [ -41.341553, -22.146708 ], [ -45.219727, -22.146708 ], [ -45.219727, -10.962764 ], [ -36.974487, -10.962764 ], [ -37.048645, -11.038255 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -36.974487, -10.962764 ], [ -37.048645, -11.038255 ], [ -37.128296, -11.178402 ], [ -37.685852, -12.170911 ], [ -38.424683, -13.036669 ], [ -38.674622, -13.055399 ], [ -38.954773, -13.792739 ], [ -38.883362, -15.665354 ], [ -39.163513, -17.206394 ], [ -39.267883, -17.866361 ], [ -39.583740, -18.260653 ], [ -39.762268, -19.598607 ], [ -40.775757, -20.902437 ], [ -40.946045, -21.935403 ], [ -40.962524, -21.943046 ], [ -41.341553, -22.146708 ], [ -45.219727, -22.146708 ], [ -45.219727, -10.962764 ], [ -36.974487, -10.962764 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, -1.515936 ], [ -44.906616, -1.551629 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.420715, -2.380601 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.224426, -4.820049 ], [ -36.455383, -5.107358 ], [ -35.598450, -5.148392 ], [ -35.235901, -5.462896 ], [ -34.898071, -6.735531 ], [ -34.730530, -7.340675 ], [ -35.128784, -8.996313 ], [ -35.639648, -9.646785 ], [ -37.048645, -11.038255 ], [ -37.128296, -11.178402 ], [ -37.249146, -11.393879 ], [ -45.219727, -11.393879 ], [ -45.219727, -1.433566 ], [ -45.000000, -1.515936 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.219727, -1.433566 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.551629 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.420715, -2.380601 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.224426, -4.820049 ], [ -36.455383, -5.107358 ], [ -35.598450, -5.148392 ], [ -35.235901, -5.462896 ], [ -34.898071, -6.735531 ], [ -34.730530, -7.340675 ], [ -35.128784, -8.996313 ], [ -35.639648, -9.646785 ], [ -37.048645, -11.038255 ], [ -37.128296, -11.178402 ], [ -37.249146, -11.393879 ], [ -45.219727, -11.393879 ], [ -45.219727, -1.433566 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -42.580261, 61.606396 ], [ -43.379517, 60.099088 ], [ -44.788513, 60.037417 ], [ -45.000000, 60.156543 ], [ -45.219727, 60.279324 ], [ -45.219727, 61.710706 ], [ -42.525330, 61.710706 ], [ -42.580261, 61.606396 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -42.525330, 61.710706 ], [ -42.580261, 61.606396 ], [ -43.379517, 60.099088 ], [ -44.788513, 60.037417 ], [ -45.000000, 60.156543 ], [ -45.219727, 60.279324 ], [ -45.219727, 61.710706 ], [ -42.525330, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.722290, 66.513260 ], [ -36.353760, 65.978916 ], [ -37.045898, 65.938634 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.459402 ], [ -40.671387, 64.840765 ], [ -40.685120, 64.139369 ], [ -41.190491, 63.483636 ], [ -42.821960, 62.682968 ], [ -42.418213, 61.901459 ], [ -42.580261, 61.606396 ], [ -42.637939, 61.501734 ], [ -45.219727, 61.501734 ], [ -45.219727, 66.600676 ], [ -34.450378, 66.600676 ], [ -34.722290, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.450378, 66.600676 ], [ -34.722290, 66.513260 ], [ -36.353760, 65.978916 ], [ -37.045898, 65.938634 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.459402 ], [ -40.671387, 64.840765 ], [ -40.685120, 64.139369 ], [ -41.190491, 63.483636 ], [ -42.821960, 62.682968 ], [ -42.418213, 61.901459 ], [ -42.580261, 61.606396 ], [ -42.637939, 61.501734 ], [ -45.219727, 61.501734 ], [ -45.219727, 66.600676 ], [ -34.450378, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 67.197647 ], [ -33.750000, 67.029947 ], [ -34.203186, 66.680174 ], [ -34.722290, 66.513260 ], [ -34.994202, 66.425537 ], [ -45.219727, 66.425537 ], [ -45.219727, 70.685421 ], [ -33.530273, 70.685421 ], [ -33.530273, 67.197647 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 70.685421 ], [ -33.530273, 67.197647 ], [ -33.750000, 67.029947 ], [ -34.203186, 66.680174 ], [ -34.722290, 66.513260 ], [ -34.994202, 66.425537 ], [ -45.219727, 66.425537 ], [ -45.219727, 70.685421 ], [ -33.530273, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 70.539543 ], [ -45.219727, 70.539543 ], [ -45.219727, 74.079925 ], [ -33.530273, 74.079925 ], [ -33.530273, 70.539543 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 74.079925 ], [ -33.530273, 70.539543 ], [ -45.219727, 70.539543 ], [ -45.219727, 74.079925 ], [ -33.530273, 74.079925 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 73.958939 ], [ -45.219727, 73.958939 ], [ -45.219727, 76.890745 ], [ -33.530273, 76.890745 ], [ -33.530273, 73.958939 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 76.890745 ], [ -33.530273, 73.958939 ], [ -45.219727, 73.958939 ], [ -45.219727, 76.890745 ], [ -33.530273, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 76.790701 ], [ -45.219727, 76.790701 ], [ -45.219727, 79.212538 ], [ -33.530273, 79.212538 ], [ -33.530273, 76.790701 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 79.212538 ], [ -33.530273, 76.790701 ], [ -45.219727, 76.790701 ], [ -45.219727, 79.212538 ], [ -33.530273, 79.212538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 79.129976 ], [ -45.219727, 79.129976 ], [ -45.219727, 81.127169 ], [ -33.530273, 81.127169 ], [ -33.530273, 79.129976 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 81.127169 ], [ -33.530273, 79.129976 ], [ -45.219727, 79.129976 ], [ -45.219727, 81.127169 ], [ -33.530273, 81.127169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 81.059130 ], [ -45.219727, 81.059130 ], [ -45.219727, 81.771679 ], [ -45.000000, 81.737015 ], [ -44.524841, 81.660880 ], [ -45.000000, 81.772072 ], [ -45.219727, 81.822622 ], [ -45.219727, 82.704241 ], [ -33.530273, 82.704241 ], [ -33.530273, 81.059130 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 82.704241 ], [ -33.530273, 81.059130 ], [ -45.219727, 81.059130 ], [ -45.219727, 81.771679 ], [ -45.000000, 81.737015 ], [ -44.524841, 81.660880 ], [ -45.000000, 81.772072 ], [ -45.219727, 81.822622 ], [ -45.219727, 82.704241 ], [ -33.530273, 82.704241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.750000, 83.624701 ], [ -33.530273, 83.621345 ], [ -33.530273, 82.648222 ], [ -45.219727, 82.648222 ], [ -45.219727, 82.909881 ], [ -45.000000, 82.948761 ], [ -43.406982, 83.225420 ], [ -39.899597, 83.180235 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ], [ -33.750000, 83.624701 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -33.750000, 83.624701 ], [ -33.530273, 83.621345 ], [ -33.530273, 82.648222 ], [ -45.219727, 82.648222 ], [ -45.219727, 82.909881 ], [ -45.000000, 82.948761 ], [ -43.406982, 83.225420 ], [ -39.899597, 83.180235 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -85.070048 ], [ -33.969727, -85.070048 ], [ -33.969727, -83.956169 ], [ -22.280273, -83.956169 ], [ -22.280273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -83.956169 ], [ -22.280273, -85.070048 ], [ -33.969727, -85.070048 ], [ -33.969727, -83.956169 ], [ -22.280273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -84.002262 ], [ -33.969727, -84.002262 ], [ -33.969727, -82.648222 ], [ -22.280273, -82.648222 ], [ -22.280273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -82.648222 ], [ -22.280273, -84.002262 ], [ -33.969727, -84.002262 ], [ -33.969727, -82.648222 ], [ -22.280273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -82.704241 ], [ -33.969727, -82.704241 ], [ -33.969727, -81.059130 ], [ -22.280273, -81.059130 ], [ -22.280273, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -81.059130 ], [ -22.280273, -82.704241 ], [ -33.969727, -82.704241 ], [ -33.969727, -81.059130 ], [ -22.280273, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -81.127169 ], [ -33.969727, -81.127169 ], [ -33.969727, -80.878489 ], [ -33.750000, -80.863673 ], [ -32.310791, -80.768990 ], [ -30.099792, -80.592421 ], [ -28.550720, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.687805, -79.632462 ], [ -29.687805, -79.259730 ], [ -31.626892, -79.299070 ], [ -33.681335, -79.456019 ], [ -33.969727, -79.456019 ], [ -33.969727, -79.129976 ], [ -22.280273, -79.129976 ], [ -22.280273, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -79.129976 ], [ -22.280273, -81.127169 ], [ -33.969727, -81.127169 ], [ -33.969727, -80.878489 ], [ -33.750000, -80.863673 ], [ -32.310791, -80.768990 ], [ -30.099792, -80.592421 ], [ -28.550720, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.687805, -79.632462 ], [ -29.687805, -79.259730 ], [ -31.626892, -79.299070 ], [ -33.681335, -79.456019 ], [ -33.969727, -79.456019 ], [ -33.969727, -79.129976 ], [ -22.280273, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -79.212538 ], [ -33.969727, -79.212538 ], [ -33.969727, -77.899558 ], [ -33.898315, -77.888038 ], [ -33.750000, -77.867274 ], [ -32.214661, -77.652997 ], [ -31.000671, -77.359487 ], [ -29.783936, -77.065265 ], [ -29.264832, -76.840816 ], [ -29.152222, -76.790701 ], [ -22.280273, -76.790701 ], [ -22.280273, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -76.790701 ], [ -22.280273, -79.212538 ], [ -33.969727, -79.212538 ], [ -33.969727, -77.899558 ], [ -33.898315, -77.888038 ], [ -33.750000, -77.867274 ], [ -32.214661, -77.652997 ], [ -31.000671, -77.359487 ], [ -29.783936, -77.065265 ], [ -29.264832, -76.840816 ], [ -29.152222, -76.790701 ], [ -22.280273, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -76.890745 ], [ -29.380188, -76.890745 ], [ -29.264832, -76.840816 ], [ -28.883057, -76.673455 ], [ -27.512512, -76.496952 ], [ -26.161194, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241939 ], [ -22.500000, -76.108711 ], [ -22.458801, -76.105414 ], [ -22.280273, -76.076364 ], [ -22.280273, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -76.076364 ], [ -22.280273, -76.890745 ], [ -29.380188, -76.890745 ], [ -29.264832, -76.840816 ], [ -28.883057, -76.673455 ], [ -27.512512, -76.496952 ], [ -26.161194, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241939 ], [ -22.500000, -76.108711 ], [ -22.458801, -76.105414 ], [ -22.280273, -76.076364 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -24.326477, 65.611818 ], [ -23.650818, 66.263540 ], [ -22.500000, 66.376057 ], [ -22.280273, 66.398060 ], [ -22.280273, 65.386291 ], [ -22.500000, 65.410303 ], [ -24.326477, 65.611818 ] ] ], [ [ [ -22.280273, 63.907188 ], [ -22.763672, 63.960291 ], [ -22.500000, 64.080605 ], [ -22.280273, 64.180072 ], [ -22.280273, 63.907188 ] ] ], [ [ [ -23.955688, 64.892093 ], [ -22.500000, 65.052443 ], [ -22.280273, 65.076760 ], [ -22.280273, 64.516552 ], [ -22.500000, 64.566139 ], [ -23.955688, 64.892093 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.302246, 64.170500 ], [ -22.280273, 63.907188 ], [ -22.763672, 63.960291 ], [ -22.302246, 64.170500 ] ] ], [ [ [ -22.381897, 65.065183 ], [ -22.332458, 64.528367 ], [ -22.500000, 64.566139 ], [ -23.955688, 64.892093 ], [ -22.500000, 65.052443 ], [ -22.381897, 65.065183 ] ] ], [ [ [ -22.500000, 66.376057 ], [ -22.409363, 65.400015 ], [ -22.500000, 65.410303 ], [ -24.326477, 65.611818 ], [ -23.650818, 66.263540 ], [ -22.500000, 66.376057 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -26.364441, 70.226957 ], [ -23.727722, 70.184172 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.130098 ], [ -22.500000, 70.083369 ], [ -25.029602, 69.259067 ], [ -27.748718, 68.470856 ], [ -30.673828, 68.125553 ], [ -31.777954, 68.121459 ], [ -32.813416, 67.735476 ], [ -33.750000, 67.029947 ], [ -33.969727, 66.861082 ], [ -33.969727, 70.685421 ], [ -25.353699, 70.685421 ], [ -25.515747, 70.612614 ], [ -26.364441, 70.226957 ] ] ], [ [ [ -22.280273, 70.608055 ], [ -22.500000, 70.584331 ], [ -23.538208, 70.471717 ], [ -23.818359, 70.612614 ], [ -23.963928, 70.685421 ], [ -22.280273, 70.685421 ], [ -22.280273, 70.608055 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -25.353699, 70.685421 ], [ -25.515747, 70.612614 ], [ -26.364441, 70.226957 ], [ -23.727722, 70.184172 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.130098 ], [ -22.500000, 70.083369 ], [ -25.029602, 69.259067 ], [ -27.748718, 68.470856 ], [ -30.673828, 68.125553 ], [ -31.777954, 68.121459 ], [ -32.813416, 67.735476 ], [ -33.750000, 67.029947 ], [ -33.969727, 66.861082 ], [ -33.969727, 70.685421 ], [ -25.353699, 70.685421 ] ] ], [ [ [ -22.280273, 70.685421 ], [ -22.280273, 70.608055 ], [ -22.500000, 70.584331 ], [ -23.538208, 70.471717 ], [ -23.818359, 70.612614 ], [ -23.963928, 70.685421 ], [ -22.280273, 70.685421 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 73.309725 ], [ -22.500000, 73.309725 ], [ -23.568420, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.184325 ], [ -22.500000, 72.226293 ], [ -24.279785, 72.598087 ], [ -24.793396, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642049 ], [ -22.280273, 71.538830 ], [ -22.280273, 70.608055 ], [ -22.914734, 70.539543 ], [ -23.672791, 70.539543 ], [ -23.818359, 70.612614 ], [ -24.307251, 70.857286 ], [ -25.545959, 71.431552 ], [ -25.202637, 70.752534 ], [ -25.515747, 70.612614 ], [ -25.677795, 70.539543 ], [ -33.969727, 70.539543 ], [ -33.969727, 74.079925 ], [ -22.280273, 74.079925 ], [ -22.280273, 73.309725 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 74.079925 ], [ -22.280273, 73.309725 ], [ -22.500000, 73.309725 ], [ -23.568420, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.184325 ], [ -22.500000, 72.226293 ], [ -24.279785, 72.598087 ], [ -24.793396, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642049 ], [ -22.280273, 71.538830 ], [ -22.280273, 70.608055 ], [ -22.914734, 70.539543 ], [ -23.672791, 70.539543 ], [ -23.818359, 70.612614 ], [ -24.307251, 70.857286 ], [ -25.545959, 71.431552 ], [ -25.202637, 70.752534 ], [ -25.515747, 70.612614 ], [ -25.677795, 70.539543 ], [ -33.969727, 70.539543 ], [ -33.969727, 74.079925 ], [ -22.280273, 74.079925 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 73.958939 ], [ -33.969727, 73.958939 ], [ -33.969727, 76.890745 ], [ -22.280273, 76.890745 ], [ -22.280273, 73.958939 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 76.890745 ], [ -22.280273, 73.958939 ], [ -33.969727, 73.958939 ], [ -33.969727, 76.890745 ], [ -22.280273, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 76.790701 ], [ -33.969727, 76.790701 ], [ -33.969727, 79.212538 ], [ -22.280273, 79.212538 ], [ -22.280273, 76.790701 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 79.212538 ], [ -22.280273, 76.790701 ], [ -33.969727, 76.790701 ], [ -33.969727, 79.212538 ], [ -22.280273, 79.212538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 79.129976 ], [ -33.969727, 79.129976 ], [ -33.969727, 81.127169 ], [ -22.280273, 81.127169 ], [ -22.280273, 79.129976 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 81.127169 ], [ -22.280273, 79.129976 ], [ -33.969727, 79.129976 ], [ -33.969727, 81.127169 ], [ -22.280273, 81.127169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 82.429972 ], [ -22.500000, 82.383153 ], [ -22.692261, 82.341904 ], [ -26.518250, 82.297857 ], [ -31.901550, 82.200065 ], [ -31.398926, 82.021759 ], [ -27.858582, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.903748, 82.093487 ], [ -22.500000, 81.920871 ], [ -22.280273, 81.825357 ], [ -22.280273, 81.628553 ], [ -22.500000, 81.513409 ], [ -23.170166, 81.152974 ], [ -22.500000, 81.252526 ], [ -22.280273, 81.285047 ], [ -22.280273, 81.059130 ], [ -33.969727, 81.059130 ], [ -33.969727, 82.704241 ], [ -22.280273, 82.704241 ], [ -22.280273, 82.429972 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 82.704241 ], [ -22.280273, 82.429972 ], [ -22.500000, 82.383153 ], [ -22.692261, 82.341904 ], [ -26.518250, 82.297857 ], [ -31.901550, 82.200065 ], [ -31.398926, 82.021759 ], [ -27.858582, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.903748, 82.093487 ], [ -22.500000, 81.920871 ], [ -22.280273, 81.825357 ], [ -22.280273, 81.628553 ], [ -22.500000, 81.513409 ], [ -23.170166, 81.152974 ], [ -22.500000, 81.252526 ], [ -22.280273, 81.285047 ], [ -22.280273, 81.059130 ], [ -33.969727, 81.059130 ], [ -33.969727, 82.704241 ], [ -22.280273, 82.704241 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.750000, 83.624701 ], [ -27.100525, 83.519852 ], [ -22.500000, 82.945726 ], [ -22.280273, 82.916997 ], [ -22.280273, 82.648222 ], [ -33.969727, 82.648222 ], [ -33.969727, 83.628054 ], [ -33.750000, 83.624701 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.969727, 83.628054 ], [ -33.750000, 83.624701 ], [ -27.100525, 83.519852 ], [ -22.500000, 82.945726 ], [ -22.280273, 82.916997 ], [ -22.280273, 82.648222 ], [ -33.969727, 82.648222 ], [ -33.969727, 83.628054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -85.070048 ], [ -22.719727, -85.070048 ], [ -22.719727, -83.956169 ], [ -11.030273, -83.956169 ], [ -11.030273, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -83.956169 ], [ -11.030273, -85.070048 ], [ -22.719727, -85.070048 ], [ -22.719727, -83.956169 ], [ -11.030273, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -84.002262 ], [ -22.719727, -84.002262 ], [ -22.719727, -82.648222 ], [ -11.030273, -82.648222 ], [ -11.030273, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -82.648222 ], [ -11.030273, -84.002262 ], [ -22.719727, -84.002262 ], [ -22.719727, -82.648222 ], [ -11.030273, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -82.704241 ], [ -22.719727, -82.704241 ], [ -22.719727, -81.059130 ], [ -11.030273, -81.059130 ], [ -11.030273, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -81.059130 ], [ -11.030273, -82.704241 ], [ -22.719727, -82.704241 ], [ -22.719727, -81.059130 ], [ -11.030273, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -81.127169 ], [ -22.719727, -81.127169 ], [ -22.719727, -79.129976 ], [ -11.030273, -79.129976 ], [ -11.030273, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -79.129976 ], [ -11.030273, -81.127169 ], [ -22.719727, -81.127169 ], [ -22.719727, -79.129976 ], [ -11.030273, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -79.212538 ], [ -22.719727, -79.212538 ], [ -22.719727, -76.790701 ], [ -11.030273, -76.790701 ], [ -11.030273, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -76.790701 ], [ -11.030273, -79.212538 ], [ -22.719727, -79.212538 ], [ -22.719727, -76.790701 ], [ -11.030273, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -76.890745 ], [ -22.719727, -76.890745 ], [ -22.719727, -76.129138 ], [ -22.500000, -76.108711 ], [ -22.458801, -76.105414 ], [ -21.225586, -75.908835 ], [ -20.011597, -75.674236 ], [ -18.915710, -75.438577 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.792423 ], [ -15.702209, -74.497881 ], [ -15.408325, -74.106272 ], [ -15.803833, -74.019543 ], [ -16.075745, -73.958939 ], [ -11.030273, -73.958939 ], [ -11.030273, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -73.958939 ], [ -11.030273, -76.890745 ], [ -22.719727, -76.890745 ], [ -22.719727, -76.129138 ], [ -22.500000, -76.108711 ], [ -22.458801, -76.105414 ], [ -21.225586, -75.908835 ], [ -20.011597, -75.674236 ], [ -18.915710, -75.438577 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.792423 ], [ -15.702209, -74.497881 ], [ -15.408325, -74.106272 ], [ -15.803833, -74.019543 ], [ -16.075745, -73.958939 ], [ -11.030273, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -74.079925 ], [ -15.529175, -74.079925 ], [ -15.801086, -74.019543 ], [ -16.465759, -73.871428 ], [ -16.114197, -73.459729 ], [ -15.449524, -73.146459 ], [ -14.411316, -72.950264 ], [ -13.312683, -72.715168 ], [ -12.293701, -72.401520 ], [ -11.510925, -72.009552 ], [ -11.250000, -71.760191 ], [ -11.030273, -71.547525 ], [ -11.030273, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -71.547525 ], [ -11.030273, -74.079925 ], [ -15.529175, -74.079925 ], [ -15.801086, -74.019543 ], [ -16.465759, -73.871428 ], [ -16.114197, -73.459729 ], [ -15.449524, -73.146459 ], [ -14.411316, -72.950264 ], [ -13.312683, -72.715168 ], [ -12.293701, -72.401520 ], [ -11.510925, -72.009552 ], [ -11.250000, -71.760191 ], [ -11.030273, -71.547525 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.007324, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.309448, 11.178402 ], [ -15.584106, 11.393879 ], [ -14.809570, 11.393879 ], [ -15.007324, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.809570, 11.393879 ], [ -15.007324, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.309448, 11.178402 ], [ -15.584106, 11.393879 ], [ -14.809570, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 9.936388 ], [ -11.118164, 10.047289 ], [ -11.917419, 10.047289 ], [ -12.150879, 9.860628 ], [ -12.428284, 9.836273 ], [ -12.598572, 9.622414 ], [ -12.713928, 9.343382 ], [ -13.246765, 8.904067 ], [ -13.686218, 9.495117 ], [ -14.076233, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.581604, 10.214922 ], [ -14.694214, 10.657909 ], [ -14.839783, 10.879162 ], [ -15.130920, 11.040951 ], [ -15.007324, 11.178402 ], [ -14.809570, 11.393879 ], [ -11.030273, 11.393879 ], [ -11.030273, 9.936388 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 11.393879 ], [ -11.030273, 9.936388 ], [ -11.118164, 10.047289 ], [ -11.917419, 10.047289 ], [ -12.150879, 9.860628 ], [ -12.428284, 9.836273 ], [ -12.598572, 9.622414 ], [ -12.713928, 9.343382 ], [ -13.246765, 8.904067 ], [ -13.686218, 9.495117 ], [ -14.076233, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.581604, 10.214922 ], [ -14.694214, 10.657909 ], [ -14.839783, 10.879162 ], [ -15.130920, 11.040951 ], [ -15.007324, 11.178402 ], [ -14.809570, 11.393879 ], [ -11.030273, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 9.936388 ], [ -11.030273, 7.542210 ], [ -11.148376, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.787353 ], [ -11.708679, 6.860985 ], [ -12.428284, 7.264394 ], [ -12.950134, 7.800800 ], [ -13.125916, 8.165274 ], [ -13.246765, 8.904067 ], [ -12.713928, 9.343382 ], [ -12.598572, 9.622414 ], [ -12.428284, 9.836273 ], [ -12.150879, 9.860628 ], [ -11.917419, 10.047289 ], [ -11.118164, 10.047289 ], [ -11.030273, 9.936388 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.047289 ], [ -11.030273, 9.936388 ], [ -11.030273, 7.542210 ], [ -11.148376, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.787353 ], [ -11.708679, 6.860985 ], [ -12.428284, 7.264394 ], [ -12.950134, 7.800800 ], [ -13.125916, 8.165274 ], [ -13.246765, 8.904067 ], [ -12.713928, 9.343382 ], [ -12.598572, 9.622414 ], [ -12.428284, 9.836273 ], [ -12.150879, 9.860628 ], [ -11.917419, 10.047289 ], [ -11.118164, 10.047289 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 6.397189 ], [ -11.250000, 6.607316 ], [ -11.439514, 6.787353 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.148376, 7.397877 ], [ -11.030273, 7.542210 ], [ -11.030273, 6.397189 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 7.542210 ], [ -11.030273, 6.397189 ], [ -11.250000, 6.607316 ], [ -11.439514, 6.787353 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.148376, 7.397877 ], [ -11.030273, 7.542210 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.013306, 21.943046 ], [ -12.930908, 21.327757 ], [ -16.847534, 21.335432 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.559631, 21.943046 ], [ -14.372864, 22.146708 ], [ -13.040771, 22.146708 ], [ -13.013306, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.040771, 22.146708 ], [ -13.013306, 21.943046 ], [ -12.930908, 21.327757 ], [ -16.847534, 21.335432 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.559631, 21.943046 ], [ -14.372864, 22.146708 ], [ -13.040771, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.559631, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.608582, 22.146708 ], [ -14.372864, 22.146708 ], [ -14.559631, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.372864, 22.146708 ], [ -14.559631, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.608582, 22.146708 ], [ -14.372864, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.424352 ], [ -11.554871, 13.143678 ], [ -11.469727, 12.755553 ], [ -11.516418, 12.444623 ], [ -11.659241, 12.388294 ], [ -12.205811, 12.466078 ], [ -12.279968, 12.356100 ], [ -12.499695, 12.334636 ], [ -13.219299, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.817566, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.679993, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.932922, 13.130304 ], [ -15.691223, 13.272026 ], [ -15.512695, 13.280046 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.279480, 13.282719 ], [ -13.845520, 13.507155 ], [ -14.048767, 13.795406 ], [ -14.378357, 13.627303 ], [ -14.688721, 13.632641 ], [ -15.084229, 13.878079 ], [ -15.400085, 13.862080 ], [ -15.625305, 13.624633 ], [ -16.715698, 13.595269 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.729730 ], [ -17.185364, 14.920900 ], [ -16.701965, 15.623037 ], [ -16.465759, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.625305, 16.370215 ], [ -15.136414, 16.588817 ], [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.424352 ], [ -11.554871, 13.143678 ], [ -11.469727, 12.755553 ], [ -11.516418, 12.444623 ], [ -11.659241, 12.388294 ], [ -12.205811, 12.466078 ], [ -12.279968, 12.356100 ], [ -12.499695, 12.334636 ], [ -13.219299, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.817566, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.679993, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.932922, 13.130304 ], [ -15.691223, 13.272026 ], [ -15.512695, 13.280046 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.279480, 13.282719 ], [ -13.845520, 13.507155 ], [ -14.048767, 13.795406 ], [ -14.378357, 13.627303 ], [ -14.688721, 13.632641 ], [ -15.084229, 13.878079 ], [ -15.400085, 13.862080 ], [ -15.625305, 13.624633 ], [ -16.715698, 13.595269 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.729730 ], [ -17.185364, 14.920900 ], [ -16.701965, 15.623037 ], [ -16.465759, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.625305, 16.370215 ], [ -15.136414, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.688721, 13.632641 ], [ -14.378357, 13.627303 ], [ -14.048767, 13.795406 ], [ -13.845520, 13.507155 ], [ -14.279480, 13.282719 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.280046 ], [ -15.691223, 13.272026 ], [ -15.932922, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.715698, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.862080 ], [ -15.084229, 13.878079 ], [ -14.688721, 13.632641 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.878079 ], [ -14.688721, 13.632641 ], [ -14.378357, 13.627303 ], [ -14.048767, 13.795406 ], [ -13.845520, 13.507155 ], [ -14.279480, 13.282719 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.280046 ], [ -15.691223, 13.272026 ], [ -15.932922, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.715698, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.862080 ], [ -15.084229, 13.878079 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.702698, 12.586732 ], [ -13.719177, 12.248760 ], [ -13.829041, 12.144061 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.383850, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.007324, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.309448, 11.178402 ], [ -15.666504, 11.458491 ], [ -16.086731, 11.525779 ], [ -16.317444, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.173595 ], [ -16.679993, 12.385611 ], [ -16.149902, 12.549202 ], [ -15.817566, 12.517028 ], [ -15.551147, 12.629618 ], [ -13.702698, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.702698, 12.586732 ], [ -13.719177, 12.248760 ], [ -13.829041, 12.144061 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.383850, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.007324, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.309448, 11.178402 ], [ -15.666504, 11.458491 ], [ -16.086731, 11.525779 ], [ -16.317444, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.173595 ], [ -16.679993, 12.385611 ], [ -16.149902, 12.549202 ], [ -15.817566, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.219299, 12.576010 ], [ -12.499695, 12.334636 ], [ -12.279968, 12.356100 ], [ -12.205811, 12.466078 ], [ -11.659241, 12.388294 ], [ -11.516418, 12.444623 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.079610 ], [ -11.250000, 12.106466 ], [ -11.038513, 12.213865 ], [ -11.030273, 12.213865 ], [ -11.030273, 10.962764 ], [ -14.990845, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.007324, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.383850, 11.509631 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.829041, 12.144061 ], [ -13.719177, 12.248760 ], [ -13.702698, 12.586732 ], [ -13.219299, 12.576010 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.702698, 12.586732 ], [ -13.219299, 12.576010 ], [ -12.499695, 12.334636 ], [ -12.279968, 12.356100 ], [ -12.205811, 12.466078 ], [ -11.659241, 12.388294 ], [ -11.516418, 12.444623 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.079610 ], [ -11.250000, 12.106466 ], [ -11.038513, 12.213865 ], [ -11.030273, 12.213865 ], [ -11.030273, 10.962764 ], [ -14.990845, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.007324, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.383850, 11.509631 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.829041, 12.144061 ], [ -13.719177, 12.248760 ], [ -13.702698, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.351624, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.835022, 14.801439 ], [ -12.172852, 14.618136 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.136414, 16.588817 ], [ -15.625305, 16.370215 ], [ -16.122437, 16.457159 ], [ -16.465759, 16.135539 ], [ -16.550903, 16.675662 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.098458 ], [ -16.377869, 19.596019 ], [ -16.278992, 20.094627 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.327757 ], [ -13.013306, 21.943046 ], [ -13.040771, 22.146708 ], [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.351624, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.835022, 14.801439 ], [ -12.172852, 14.618136 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.136414, 16.588817 ], [ -15.625305, 16.370215 ], [ -16.122437, 16.457159 ], [ -16.465759, 16.135539 ], [ -16.550903, 16.675662 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.098458 ], [ -16.377869, 19.596019 ], [ -16.278992, 20.094627 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.327757 ], [ -13.013306, 21.943046 ], [ -13.040771, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.213865 ], [ -11.038513, 12.213865 ], [ -11.250000, 12.106466 ], [ -11.299438, 12.079610 ], [ -11.458740, 12.076924 ], [ -11.516418, 12.444623 ], [ -11.469727, 12.755553 ], [ -11.554871, 13.143678 ], [ -11.928406, 13.424352 ], [ -12.126160, 13.995372 ], [ -12.172852, 14.618136 ], [ -11.835022, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.351624, 15.411319 ], [ -11.250000, 15.371598 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.351624, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.213865 ], [ -11.038513, 12.213865 ], [ -11.250000, 12.106466 ], [ -11.299438, 12.079610 ], [ -11.458740, 12.076924 ], [ -11.516418, 12.444623 ], [ -11.469727, 12.755553 ], [ -11.554871, 13.143678 ], [ -11.928406, 13.424352 ], [ -12.126160, 13.995372 ], [ -12.172852, 14.618136 ], [ -11.835022, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.351624, 15.411319 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 25.920996 ], [ -11.250000, 25.925937 ], [ -11.969604, 25.935817 ], [ -11.939392, 23.375035 ], [ -12.875977, 23.286765 ], [ -13.120422, 22.773649 ], [ -13.013306, 21.943046 ], [ -12.985840, 21.739091 ], [ -14.672241, 21.739091 ], [ -14.631042, 21.861499 ], [ -14.559631, 21.943046 ], [ -14.221802, 22.311967 ], [ -13.892212, 23.692320 ], [ -12.502441, 24.771772 ], [ -12.032776, 26.032106 ], [ -11.719666, 26.106121 ], [ -11.392822, 26.885330 ], [ -11.250000, 26.904926 ], [ -11.030273, 26.931865 ], [ -11.030273, 25.920996 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 26.931865 ], [ -11.030273, 25.920996 ], [ -11.250000, 25.925937 ], [ -11.969604, 25.935817 ], [ -11.939392, 23.375035 ], [ -12.875977, 23.286765 ], [ -13.120422, 22.773649 ], [ -13.013306, 21.943046 ], [ -12.985840, 21.739091 ], [ -14.672241, 21.739091 ], [ -14.631042, 21.861499 ], [ -14.559631, 21.943046 ], [ -14.221802, 22.311967 ], [ -13.892212, 23.692320 ], [ -12.502441, 24.771772 ], [ -12.032776, 26.032106 ], [ -11.719666, 26.106121 ], [ -11.392822, 26.885330 ], [ -11.250000, 26.904926 ], [ -11.030273, 26.931865 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 26.931865 ], [ -11.250000, 26.904926 ], [ -11.392822, 26.885330 ], [ -11.719666, 26.106121 ], [ -12.032776, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.692320 ], [ -14.221802, 22.311967 ], [ -14.559631, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.990356, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.328430, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.427551, 24.359608 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.801331, 25.636574 ], [ -14.441528, 26.256473 ], [ -13.774109, 26.620452 ], [ -13.142395, 27.642173 ], [ -12.620544, 28.040471 ], [ -11.689453, 28.149503 ], [ -11.030273, 28.721905 ], [ -11.030273, 26.931865 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.721905 ], [ -11.030273, 26.931865 ], [ -11.250000, 26.904926 ], [ -11.392822, 26.885330 ], [ -11.719666, 26.106121 ], [ -12.032776, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.692320 ], [ -14.221802, 22.311967 ], [ -14.559631, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.990356, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.328430, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.427551, 24.359608 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.801331, 25.636574 ], [ -14.441528, 26.256473 ], [ -13.774109, 26.620452 ], [ -13.142395, 27.642173 ], [ -12.620544, 28.040471 ], [ -11.689453, 28.149503 ], [ -11.030273, 28.721905 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 25.925937 ], [ -11.030273, 25.920996 ], [ -11.030273, 21.739091 ], [ -12.985840, 21.739091 ], [ -13.013306, 21.943046 ], [ -13.120422, 22.773649 ], [ -12.875977, 23.286765 ], [ -11.939392, 23.375035 ], [ -11.969604, 25.935817 ], [ -11.250000, 25.925937 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.969604, 25.935817 ], [ -11.250000, 25.925937 ], [ -11.030273, 25.920996 ], [ -11.030273, 21.739091 ], [ -12.985840, 21.739091 ], [ -13.013306, 21.943046 ], [ -13.120422, 22.773649 ], [ -12.875977, 23.286765 ], [ -11.939392, 23.375035 ], [ -11.969604, 25.935817 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.839539, 66.513260 ], [ -14.510193, 66.456275 ], [ -14.740906, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.911194, 64.364873 ], [ -17.795105, 63.679160 ], [ -18.657532, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.931338 ], [ -22.719727, 63.955467 ], [ -22.719727, 63.980781 ], [ -22.500000, 64.080605 ], [ -21.780396, 64.402872 ], [ -22.500000, 64.566139 ], [ -22.719727, 64.615636 ], [ -22.719727, 65.028104 ], [ -22.500000, 65.052443 ], [ -22.186890, 65.086018 ], [ -22.228088, 65.379427 ], [ -22.500000, 65.410303 ], [ -22.719727, 65.435435 ], [ -22.719727, 66.355136 ], [ -22.500000, 66.376057 ], [ -22.137451, 66.411253 ], [ -20.577393, 65.732884 ], [ -19.058533, 66.276803 ], [ -17.800598, 65.994564 ], [ -16.215820, 66.513260 ], [ -16.169128, 66.527486 ], [ -15.839539, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.169128, 66.527486 ], [ -15.839539, 66.513260 ], [ -14.510193, 66.456275 ], [ -14.740906, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.911194, 64.364873 ], [ -17.795105, 63.679160 ], [ -18.657532, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.931338 ], [ -22.719727, 63.955467 ], [ -22.719727, 63.980781 ], [ -22.500000, 64.080605 ], [ -21.780396, 64.402872 ], [ -22.500000, 64.566139 ], [ -22.719727, 64.615636 ], [ -22.719727, 65.028104 ], [ -22.500000, 65.052443 ], [ -22.186890, 65.086018 ], [ -22.228088, 65.379427 ], [ -22.500000, 65.410303 ], [ -22.719727, 65.435435 ], [ -22.719727, 66.355136 ], [ -22.500000, 66.376057 ], [ -22.137451, 66.411253 ], [ -20.577393, 65.732884 ], [ -19.058533, 66.276803 ], [ -17.800598, 65.994564 ], [ -16.215820, 66.513260 ], [ -16.169128, 66.527486 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.766663, 70.685421 ], [ -21.755676, 70.664516 ], [ -22.239075, 70.612614 ], [ -22.500000, 70.584331 ], [ -22.719727, 70.560578 ], [ -22.719727, 70.685421 ], [ -21.766663, 70.685421 ] ] ], [ [ [ -22.500000, 70.136632 ], [ -22.351685, 70.130098 ], [ -22.500000, 70.083369 ], [ -22.719727, 70.013078 ], [ -22.719727, 70.145029 ], [ -22.500000, 70.136632 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 70.560578 ], [ -22.719727, 70.685421 ], [ -21.766663, 70.685421 ], [ -21.755676, 70.664516 ], [ -22.239075, 70.612614 ], [ -22.500000, 70.584331 ], [ -22.719727, 70.560578 ] ] ], [ [ [ -22.719727, 70.145029 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.130098 ], [ -22.500000, 70.083369 ], [ -22.719727, 70.013078 ], [ -22.719727, 70.145029 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.839539, 66.513260 ], [ -14.510193, 66.456275 ], [ -14.523926, 66.425537 ], [ -16.487732, 66.425537 ], [ -16.215820, 66.513260 ], [ -16.169128, 66.527486 ], [ -15.839539, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.169128, 66.527486 ], [ -15.839539, 66.513260 ], [ -14.510193, 66.456275 ], [ -14.523926, 66.425537 ], [ -16.487732, 66.425537 ], [ -16.215820, 66.513260 ], [ -16.169128, 66.527486 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -21.184387, 74.079925 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.173157, 73.309725 ], [ -22.719727, 73.309725 ], [ -22.719727, 74.079925 ], [ -21.184387, 74.079925 ] ] ], [ [ [ -22.500000, 71.642049 ], [ -22.134705, 71.469124 ], [ -21.755676, 70.664516 ], [ -22.239075, 70.612614 ], [ -22.719727, 70.560578 ], [ -22.719727, 71.745571 ], [ -22.500000, 71.642049 ] ] ], [ [ [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.184325 ], [ -22.500000, 72.226293 ], [ -22.719727, 72.273185 ], [ -22.719727, 72.853361 ], [ -22.500000, 72.733112 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 73.309725 ], [ -22.719727, 74.079925 ], [ -21.184387, 74.079925 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.173157, 73.309725 ], [ -22.719727, 73.309725 ] ] ], [ [ [ -22.719727, 71.745571 ], [ -22.500000, 71.642049 ], [ -22.134705, 71.469124 ], [ -21.755676, 70.664516 ], [ -22.239075, 70.612614 ], [ -22.719727, 70.560578 ], [ -22.719727, 71.745571 ] ] ], [ [ [ -22.719727, 72.853361 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.184325 ], [ -22.500000, 72.226293 ], [ -22.719727, 72.273185 ], [ -22.719727, 72.853361 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.582886, 76.840816 ], [ -21.681519, 76.628432 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296206 ], [ -21.596375, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.838318, 73.958939 ], [ -22.719727, 73.958939 ], [ -22.719727, 76.890745 ], [ -20.321960, 76.890745 ], [ -20.582886, 76.840816 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.321960, 76.890745 ], [ -20.582886, 76.840816 ], [ -21.681519, 76.628432 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296206 ], [ -21.596375, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.838318, 73.958939 ], [ -22.719727, 73.958939 ], [ -22.719727, 76.890745 ], [ -20.321960, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.195862, 79.171335 ], [ -19.706726, 78.751731 ], [ -19.673767, 77.638894 ], [ -18.473511, 76.985717 ], [ -20.036316, 76.944832 ], [ -20.582886, 76.840816 ], [ -20.843811, 76.790701 ], [ -22.719727, 76.790701 ], [ -22.719727, 79.212538 ], [ -19.143677, 79.212538 ], [ -19.195862, 79.171335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.143677, 79.212538 ], [ -19.195862, 79.171335 ], [ -19.706726, 78.751731 ], [ -19.673767, 77.638894 ], [ -18.473511, 76.985717 ], [ -20.036316, 76.944832 ], [ -20.582886, 76.840816 ], [ -20.843811, 76.790701 ], [ -22.719727, 76.790701 ], [ -22.719727, 79.212538 ], [ -19.143677, 79.212538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.381348, 81.093214 ], [ -16.287231, 80.580292 ], [ -16.850281, 80.350092 ], [ -20.047302, 80.177308 ], [ -17.731934, 80.129399 ], [ -18.901978, 79.400085 ], [ -19.195862, 79.171335 ], [ -19.248047, 79.129976 ], [ -22.719727, 79.129976 ], [ -22.719727, 81.127169 ], [ -13.180847, 81.127169 ], [ -13.381348, 81.093214 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.180847, 81.127169 ], [ -13.381348, 81.093214 ], [ -16.287231, 80.580292 ], [ -16.850281, 80.350092 ], [ -20.047302, 80.177308 ], [ -17.731934, 80.129399 ], [ -18.901978, 79.400085 ], [ -19.195862, 79.171335 ], [ -19.248047, 79.129976 ], [ -22.719727, 79.129976 ], [ -22.719727, 81.127169 ], [ -13.180847, 81.127169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -20.959167, 82.704241 ], [ -21.096497, 82.676285 ], [ -22.500000, 82.383153 ], [ -22.692261, 82.341904 ], [ -22.719727, 82.341904 ], [ -22.719727, 82.704241 ], [ -20.959167, 82.704241 ] ] ], [ [ [ -20.624084, 81.524751 ], [ -15.770874, 81.912760 ], [ -12.771606, 81.719233 ], [ -12.208557, 81.291703 ], [ -13.381348, 81.093214 ], [ -13.579102, 81.059130 ], [ -22.719727, 81.059130 ], [ -22.719727, 81.220305 ], [ -22.500000, 81.252944 ], [ -20.624084, 81.524751 ] ] ], [ [ [ -22.500000, 81.920871 ], [ -22.074280, 81.734646 ], [ -22.500000, 81.513409 ], [ -22.719727, 81.397105 ], [ -22.719727, 82.015276 ], [ -22.500000, 81.920871 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 81.220305 ], [ -22.500000, 81.252944 ], [ -20.624084, 81.524751 ], [ -15.770874, 81.912760 ], [ -12.771606, 81.719233 ], [ -12.208557, 81.291703 ], [ -13.381348, 81.093214 ], [ -13.579102, 81.059130 ], [ -22.719727, 81.059130 ], [ -22.719727, 81.220305 ] ] ], [ [ [ -22.719727, 82.341904 ], [ -22.719727, 82.704241 ], [ -20.959167, 82.704241 ], [ -21.096497, 82.676285 ], [ -22.500000, 82.383153 ], [ -22.692261, 82.341904 ], [ -22.719727, 82.341904 ] ] ], [ [ [ -22.719727, 82.015276 ], [ -22.500000, 81.920871 ], [ -22.074280, 81.734646 ], [ -22.500000, 81.513409 ], [ -22.719727, 81.397105 ], [ -22.719727, 82.015276 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 82.945726 ], [ -20.846558, 82.726878 ], [ -21.096497, 82.676285 ], [ -21.233826, 82.648222 ], [ -22.719727, 82.648222 ], [ -22.719727, 82.974339 ], [ -22.500000, 82.945726 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.719727, 82.974339 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.726878 ], [ -21.096497, 82.676285 ], [ -21.233826, 82.648222 ], [ -22.719727, 82.648222 ], [ -22.719727, 82.974339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -85.070048 ], [ -11.469727, -85.070048 ], [ -11.469727, -83.956169 ], [ 0.219727, -83.956169 ], [ 0.219727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -83.956169 ], [ 0.219727, -85.070048 ], [ -11.469727, -85.070048 ], [ -11.469727, -83.956169 ], [ 0.219727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -84.002262 ], [ -11.469727, -84.002262 ], [ -11.469727, -82.648222 ], [ 0.219727, -82.648222 ], [ 0.219727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -82.648222 ], [ 0.219727, -84.002262 ], [ -11.469727, -84.002262 ], [ -11.469727, -82.648222 ], [ 0.219727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -82.704241 ], [ -11.469727, -82.704241 ], [ -11.469727, -81.059130 ], [ 0.219727, -81.059130 ], [ 0.219727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -81.059130 ], [ 0.219727, -82.704241 ], [ -11.469727, -82.704241 ], [ -11.469727, -81.059130 ], [ 0.219727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -81.127169 ], [ -11.469727, -81.127169 ], [ -11.469727, -79.129976 ], [ 0.219727, -79.129976 ], [ 0.219727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -79.129976 ], [ 0.219727, -81.127169 ], [ -11.469727, -81.127169 ], [ -11.469727, -79.129976 ], [ 0.219727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -79.212538 ], [ -11.469727, -79.212538 ], [ -11.469727, -76.790701 ], [ 0.219727, -76.790701 ], [ 0.219727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -76.790701 ], [ 0.219727, -79.212538 ], [ -11.469727, -79.212538 ], [ -11.469727, -76.790701 ], [ 0.219727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -76.890745 ], [ -11.469727, -76.890745 ], [ -11.469727, -73.958939 ], [ 0.219727, -73.958939 ], [ 0.219727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -73.958939 ], [ 0.219727, -76.890745 ], [ -11.469727, -76.890745 ], [ -11.469727, -73.958939 ], [ 0.219727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.792542, -71.029464 ], [ -5.537109, -71.401793 ], [ -4.342346, -71.461266 ], [ -3.051453, -71.284936 ], [ -1.796265, -71.167373 ], [ -0.661926, -71.225801 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.567510 ], [ 0.219727, -71.500523 ], [ 0.219727, -74.079925 ], [ -11.469727, -74.079925 ], [ -11.469727, -71.969639 ], [ -11.250000, -71.760191 ], [ -11.022034, -71.539700 ], [ -10.296936, -71.264657 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.418518, -71.696469 ], [ -7.380066, -71.323674 ], [ -6.869202, -70.931901 ], [ -5.792542, -71.029464 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.869202, -70.931901 ], [ -5.792542, -71.029464 ], [ -5.537109, -71.401793 ], [ -4.342346, -71.461266 ], [ -3.051453, -71.284936 ], [ -1.796265, -71.167373 ], [ -0.661926, -71.225801 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.567510 ], [ 0.219727, -71.500523 ], [ 0.219727, -74.079925 ], [ -11.469727, -74.079925 ], [ -11.469727, -71.969639 ], [ -11.250000, -71.760191 ], [ -11.022034, -71.539700 ], [ -10.296936, -71.264657 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.418518, -71.696469 ], [ -7.380066, -71.323674 ], [ -6.869202, -70.931901 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.552856, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.621521, 10.811724 ], [ -8.410034, 10.911527 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.231506, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.578305 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.223267, 8.124491 ], [ -8.280945, 7.689217 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.713713 ], [ -8.926392, 7.310709 ], [ -9.209290, 7.316158 ], [ -9.404297, 7.528596 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.840759, 9.690106 ], [ -11.118164, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ], [ -8.552856, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.377075, 11.393879 ], [ -8.552856, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.621521, 10.811724 ], [ -8.410034, 10.911527 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.231506, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.578305 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.223267, 8.124491 ], [ -8.280945, 7.689217 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.713713 ], [ -8.926392, 7.310709 ], [ -9.209290, 7.316158 ], [ -9.404297, 7.528596 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.840759, 9.690106 ], [ -11.118164, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.840759, 9.690106 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.697937, 7.939556 ], [ -11.148376, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.787353 ], [ -11.469727, 6.798262 ], [ -11.469727, 10.047289 ], [ -11.118164, 10.047289 ], [ -10.840759, 9.690106 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.047289 ], [ -10.840759, 9.690106 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.697937, 7.939556 ], [ -11.148376, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.787353 ], [ -11.469727, 6.798262 ], [ -11.469727, 10.047289 ], [ -11.118164, 10.047289 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.199280, 11.377724 ], [ -5.328369, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.495667, 10.412183 ], [ -6.668701, 10.431092 ], [ -6.852722, 10.139228 ], [ -7.624512, 10.147339 ], [ -7.901917, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.410034, 10.911527 ], [ -8.621521, 10.811724 ], [ -8.583069, 11.137982 ], [ -8.552856, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.202026, 11.393879 ], [ -5.199280, 11.377724 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.202026, 11.393879 ], [ -5.199280, 11.377724 ], [ -5.328369, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.495667, 10.412183 ], [ -6.668701, 10.431092 ], [ -6.852722, 10.139228 ], [ -7.624512, 10.147339 ], [ -7.901917, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.410034, 10.911527 ], [ -8.621521, 10.811724 ], [ -8.583069, 11.137982 ], [ -8.552856, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.202026, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.016689 ], [ 0.021973, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.439453, 11.100252 ], [ -0.763550, 10.938495 ], [ -1.205750, 11.011297 ], [ -2.941589, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.512878, 9.901216 ], [ -3.982544, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.781799, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.328369, 11.178402 ], [ -5.199280, 11.377724 ], [ -5.202026, 11.393879 ], [ 0.219727, 11.393879 ], [ 0.219727, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.393879 ], [ 0.219727, 11.016689 ], [ 0.021973, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.439453, 11.100252 ], [ -0.763550, 10.938495 ], [ -1.205750, 11.011297 ], [ -2.941589, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.512878, 9.901216 ], [ -3.982544, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.781799, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.328369, 11.178402 ], [ -5.199280, 11.377724 ], [ -5.202026, 11.393879 ], [ 0.219727, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.338379, 7.928675 ], [ -9.404297, 7.528596 ], [ -9.209290, 7.316158 ], [ -8.926392, 7.310709 ], [ -8.723145, 7.713713 ], [ -8.440247, 7.686495 ], [ -8.486938, 7.397877 ], [ -8.388062, 6.912794 ], [ -8.605042, 6.468151 ], [ -8.313904, 6.195168 ], [ -7.995300, 6.126900 ], [ -7.572327, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.976074, 4.357366 ], [ -9.006042, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.143286 ], [ -11.250000, 6.607316 ], [ -11.439514, 6.787353 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.148376, 7.397877 ], [ -10.697937, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.528596 ], [ -9.209290, 7.316158 ], [ -8.926392, 7.310709 ], [ -8.723145, 7.713713 ], [ -8.440247, 7.686495 ], [ -8.486938, 7.397877 ], [ -8.388062, 6.912794 ], [ -8.605042, 6.468151 ], [ -8.313904, 6.195168 ], [ -7.995300, 6.126900 ], [ -7.572327, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.976074, 4.357366 ], [ -9.006042, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.143286 ], [ -11.250000, 6.607316 ], [ -11.439514, 6.787353 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.148376, 7.397877 ], [ -10.697937, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.050720, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.781799, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.982544, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.828979, 9.644077 ], [ -2.562561, 8.219646 ], [ -2.985535, 7.381534 ], [ -3.246460, 6.252507 ], [ -2.812500, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.181217 ], [ -4.649963, 5.170276 ], [ -5.836487, 4.995186 ], [ -6.531372, 4.705091 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.572327, 5.708914 ], [ -7.995300, 6.126900 ], [ -8.313904, 6.195168 ], [ -8.605042, 6.468151 ], [ -8.388062, 6.912794 ], [ -8.486938, 7.397877 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.578305 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.231506, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.901917, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.852722, 10.139228 ], [ -6.668701, 10.431092 ], [ -6.495667, 10.412183 ], [ -6.207275, 10.525619 ], [ -6.050720, 10.098670 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.050720, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.781799, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.982544, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.828979, 9.644077 ], [ -2.562561, 8.219646 ], [ -2.985535, 7.381534 ], [ -3.246460, 6.252507 ], [ -2.812500, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.181217 ], [ -4.649963, 5.170276 ], [ -5.836487, 4.995186 ], [ -6.531372, 4.705091 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.572327, 5.708914 ], [ -7.995300, 6.126900 ], [ -8.313904, 6.195168 ], [ -8.605042, 6.468151 ], [ -8.388062, 6.912794 ], [ -8.486938, 7.397877 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.578305 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.231506, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.901917, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.852722, 10.139228 ], [ -6.668701, 10.431092 ], [ -6.495667, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.024776 ], [ 0.021973, 11.019384 ], [ 0.000000, 10.927708 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.647112 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.618719 ], [ 0.000000, 5.536712 ], [ -0.508118, 5.345317 ], [ -1.065674, 5.000658 ], [ -1.966553, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.812500, 5.389070 ], [ -3.246460, 6.252507 ], [ -2.985535, 7.381534 ], [ -2.562561, 8.219646 ], [ -2.966309, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.205750, 11.011297 ], [ -0.763550, 10.938495 ], [ -0.439453, 11.100252 ], [ 0.000000, 11.024776 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.100252 ], [ 0.000000, 11.024776 ], [ 0.021973, 11.019384 ], [ 0.000000, 10.927708 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.647112 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.618719 ], [ 0.000000, 5.536712 ], [ -0.508118, 5.345317 ], [ -1.065674, 5.000658 ], [ -1.966553, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.812500, 5.389070 ], [ -3.246460, 6.252507 ], [ -2.985535, 7.381534 ], [ -2.562561, 8.219646 ], [ -2.966309, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.205750, 11.011297 ], [ -0.763550, 10.938495 ], [ -0.439453, 11.100252 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.016689 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.647112 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.927708 ], [ 0.021973, 11.019384 ], [ 0.219727, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.219727, 11.016689 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.647112 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.927708 ], [ 0.021973, 11.019384 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.129639, 12.310486 ], [ -8.907166, 12.090353 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.552856, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.605042, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.149431 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.079610 ], [ -11.250000, 12.106466 ], [ -11.038513, 12.213865 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.330139, 12.334636 ], [ -9.129639, 12.310486 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.330139, 12.334636 ], [ -9.129639, 12.310486 ], [ -8.907166, 12.090353 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.552856, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.605042, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.149431 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.079610 ], [ -11.250000, 12.106466 ], [ -11.038513, 12.213865 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.330139, 12.334636 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.119385, 21.943046 ], [ -5.973816, 20.643066 ], [ -5.490417, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.539856, 15.503972 ], [ -9.552612, 15.488092 ], [ -9.700928, 15.265638 ], [ -10.088196, 15.331870 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.351624, 15.411319 ], [ -11.469727, 15.406024 ], [ -11.469727, 22.146708 ], [ -6.141357, 22.146708 ], [ -6.119385, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.141357, 22.146708 ], [ -6.119385, 21.943046 ], [ -5.973816, 20.643066 ], [ -5.490417, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.539856, 15.503972 ], [ -9.552612, 15.488092 ], [ -9.700928, 15.265638 ], [ -10.088196, 15.331870 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.351624, 15.411319 ], [ -11.469727, 15.406024 ], [ -11.469727, 22.146708 ], [ -6.141357, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.227966, 21.943046 ], [ 0.000000, 21.797758 ], [ 0.219727, 21.657428 ], [ 0.219727, 14.931516 ], [ 0.000000, 14.928862 ], [ -0.266418, 14.926208 ], [ -0.516357, 15.117204 ], [ -1.068420, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.194519, 14.248411 ], [ -2.969055, 13.800741 ], [ -3.106384, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.475106 ], [ -4.281921, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.199280, 11.377724 ], [ -5.328369, 11.178402 ], [ -5.465698, 10.962764 ], [ -8.605042, 10.962764 ], [ -8.583069, 11.137982 ], [ -8.552856, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.907166, 12.090353 ], [ -9.129639, 12.310486 ], [ -9.330139, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.593567, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.038513, 12.213865 ], [ -11.250000, 12.106466 ], [ -11.299438, 12.079610 ], [ -11.458740, 12.076924 ], [ -11.469727, 12.149431 ], [ -11.469727, 15.406024 ], [ -11.351624, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.331870 ], [ -9.700928, 15.265638 ], [ -9.552612, 15.488092 ], [ -5.539856, 15.503972 ], [ -5.317383, 16.204125 ], [ -5.490417, 16.325411 ], [ -5.973816, 20.643066 ], [ -6.119385, 21.943046 ], [ -6.141357, 22.146708 ], [ -0.546570, 22.146708 ], [ -0.227966, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.227966, 21.943046 ], [ 0.000000, 21.797758 ], [ 0.219727, 21.657428 ], [ 0.219727, 14.931516 ], [ 0.000000, 14.928862 ], [ -0.266418, 14.926208 ], [ -0.516357, 15.117204 ], [ -1.068420, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.194519, 14.248411 ], [ -2.969055, 13.800741 ], [ -3.106384, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.475106 ], [ -4.281921, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.199280, 11.377724 ], [ -5.328369, 11.178402 ], [ -5.465698, 10.962764 ], [ -8.605042, 10.962764 ], [ -8.583069, 11.137982 ], [ -8.552856, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.907166, 12.090353 ], [ -9.129639, 12.310486 ], [ -9.330139, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.593567, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.038513, 12.213865 ], [ -11.250000, 12.106466 ], [ -11.299438, 12.079610 ], [ -11.458740, 12.076924 ], [ -11.469727, 12.149431 ], [ -11.469727, 15.406024 ], [ -11.351624, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.331870 ], [ -9.700928, 15.265638 ], [ -9.552612, 15.488092 ], [ -5.539856, 15.503972 ], [ -5.317383, 16.204125 ], [ -5.490417, 16.325411 ], [ -5.973816, 20.643066 ], [ -6.119385, 21.943046 ], [ -6.141357, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.266418, 14.926208 ], [ 0.000000, 14.928862 ], [ 0.219727, 14.931516 ], [ 0.219727, 11.016689 ], [ 0.021973, 11.019384 ], [ -0.439453, 11.100252 ], [ -0.716858, 10.962764 ], [ -0.911865, 10.962764 ], [ -1.205750, 11.011297 ], [ -2.941589, 10.962764 ], [ -5.465698, 10.962764 ], [ -5.328369, 11.178402 ], [ -5.199280, 11.377724 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.281921, 13.229251 ], [ -4.007263, 13.475106 ], [ -3.523865, 13.338848 ], [ -3.106384, 13.541871 ], [ -2.969055, 13.800741 ], [ -2.194519, 14.248411 ], [ -2.002258, 14.559659 ], [ -1.068420, 14.973973 ], [ -0.516357, 15.117204 ], [ -0.266418, 14.926208 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.926208 ], [ 0.000000, 14.928862 ], [ 0.219727, 14.931516 ], [ 0.219727, 11.016689 ], [ 0.021973, 11.019384 ], [ -0.439453, 11.100252 ], [ -0.716858, 10.962764 ], [ -0.911865, 10.962764 ], [ -1.205750, 11.011297 ], [ -2.941589, 10.962764 ], [ -5.465698, 10.962764 ], [ -5.328369, 11.178402 ], [ -5.199280, 11.377724 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.281921, 13.229251 ], [ -4.007263, 13.475106 ], [ -3.523865, 13.338848 ], [ -3.106384, 13.541871 ], [ -2.969055, 13.800741 ], [ -2.194519, 14.248411 ], [ -2.002258, 14.559659 ], [ -1.068420, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.439453, 11.100252 ], [ 0.021973, 11.019384 ], [ 0.008240, 10.962764 ], [ -0.716858, 10.962764 ], [ -0.439453, 11.100252 ] ] ], [ [ [ -0.911865, 10.962764 ], [ -2.941589, 10.962764 ], [ -1.205750, 11.011297 ], [ -0.911865, 10.962764 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.205750, 11.011297 ], [ -0.911865, 10.962764 ], [ -2.941589, 10.962764 ], [ -1.205750, 11.011297 ] ] ], [ [ [ 0.021973, 11.019384 ], [ 0.008240, 10.962764 ], [ -0.716858, 10.962764 ], [ -0.439453, 11.100252 ], [ 0.021973, 11.019384 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 21.657428 ], [ 0.000000, 21.797758 ], [ -0.227966, 21.943046 ], [ -0.546570, 22.146708 ], [ 0.219727, 22.146708 ], [ 0.219727, 21.657428 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 22.146708 ], [ 0.219727, 21.657428 ], [ 0.000000, 21.797758 ], [ -0.227966, 21.943046 ], [ -0.546570, 22.146708 ], [ 0.219727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.016689 ], [ 0.219727, 10.962764 ], [ 0.008240, 10.962764 ], [ 0.021973, 11.019384 ], [ 0.219727, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.219727, 11.016689 ], [ 0.219727, 10.962764 ], [ 0.008240, 10.962764 ], [ 0.021973, 11.019384 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.665466, 27.591066 ], [ -8.684692, 27.396155 ], [ -8.687439, 25.881466 ], [ -11.250000, 25.925937 ], [ -11.469727, 25.928407 ], [ -11.469727, 26.703906 ], [ -11.392822, 26.885330 ], [ -11.250000, 26.904926 ], [ -10.552368, 26.993066 ], [ -10.189819, 26.863281 ], [ -9.736633, 26.863281 ], [ -9.415283, 27.090918 ], [ -8.797302, 27.122702 ], [ -8.819275, 27.656771 ], [ -8.668213, 27.656771 ], [ -8.665466, 27.591066 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.656771 ], [ -8.665466, 27.591066 ], [ -8.684692, 27.396155 ], [ -8.687439, 25.881466 ], [ -11.250000, 25.925937 ], [ -11.469727, 25.928407 ], [ -11.469727, 26.703906 ], [ -11.392822, 26.885330 ], [ -11.250000, 26.904926 ], [ -10.552368, 26.993066 ], [ -10.189819, 26.863281 ], [ -9.736633, 26.863281 ], [ -9.415283, 27.090918 ], [ -8.797302, 27.122702 ], [ -8.819275, 27.656771 ], [ -8.668213, 27.656771 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.617493, 32.096536 ], [ -2.796021, 31.952162 ], [ -3.070679, 31.725831 ], [ -3.650208, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.503117 ], [ -5.243225, 30.002517 ], [ -6.061707, 29.733377 ], [ -7.061462, 29.580623 ], [ -8.676453, 28.842268 ], [ -8.668213, 27.656771 ], [ -8.819275, 27.656771 ], [ -8.797302, 27.122702 ], [ -9.415283, 27.090918 ], [ -9.736633, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.993066 ], [ -11.250000, 26.904926 ], [ -11.392822, 26.885330 ], [ -11.469727, 26.703906 ], [ -11.469727, 28.340648 ], [ -11.250000, 28.531449 ], [ -10.901184, 28.832644 ], [ -10.401306, 29.099377 ], [ -9.566345, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.475708, 31.952162 ], [ -9.437256, 32.038348 ], [ -9.412537, 32.138409 ], [ -2.290649, 32.138409 ], [ -2.617493, 32.096536 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.290649, 32.138409 ], [ -2.617493, 32.096536 ], [ -2.796021, 31.952162 ], [ -3.070679, 31.725831 ], [ -3.650208, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.503117 ], [ -5.243225, 30.002517 ], [ -6.061707, 29.733377 ], [ -7.061462, 29.580623 ], [ -8.676453, 28.842268 ], [ -8.668213, 27.656771 ], [ -8.819275, 27.656771 ], [ -8.797302, 27.122702 ], [ -9.415283, 27.090918 ], [ -9.736633, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.993066 ], [ -11.250000, 26.904926 ], [ -11.392822, 26.885330 ], [ -11.469727, 26.703906 ], [ -11.469727, 28.340648 ], [ -11.250000, 28.531449 ], [ -10.901184, 28.832644 ], [ -10.401306, 29.099377 ], [ -9.566345, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.475708, 31.952162 ], [ -9.437256, 32.038348 ], [ -9.412537, 32.138409 ], [ -2.290649, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.976099 ], [ -6.454468, 24.958670 ], [ -6.119385, 21.943046 ], [ -6.097412, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.928407 ], [ -11.250000, 25.925937 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ], [ -4.924622, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.976099 ], [ -6.454468, 24.958670 ], [ -6.119385, 21.943046 ], [ -6.097412, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.928407 ], [ -11.250000, 25.925937 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.551819, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.097412, 21.739091 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.958670 ], [ -4.924622, 24.976099 ], [ -1.551819, 22.793907 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.976099 ], [ -1.551819, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.097412, 21.739091 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.958670 ], [ -4.924622, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.230713, 21.943046 ], [ -1.551819, 22.793907 ], [ -4.924622, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.665466, 27.591066 ], [ -8.676453, 28.842268 ], [ -7.061462, 29.580623 ], [ -6.061707, 29.733377 ], [ -5.243225, 30.002517 ], [ -4.861450, 30.503117 ], [ -3.691406, 30.897511 ], [ -3.650208, 31.639352 ], [ -3.070679, 31.725831 ], [ -2.796021, 31.952162 ], [ -2.617493, 32.096536 ], [ -2.290649, 32.138409 ], [ 0.219727, 32.138409 ], [ 0.219727, 21.739091 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 32.138409 ], [ 0.219727, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.230713, 21.943046 ], [ -1.551819, 22.793907 ], [ -4.924622, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.665466, 27.591066 ], [ -8.676453, 28.842268 ], [ -7.061462, 29.580623 ], [ -6.061707, 29.733377 ], [ -5.243225, 30.002517 ], [ -4.861450, 30.503117 ], [ -3.691406, 30.897511 ], [ -3.650208, 31.639352 ], [ -3.070679, 31.725831 ], [ -2.796021, 31.952162 ], [ -2.617493, 32.096536 ], [ -2.290649, 32.138409 ], [ 0.219727, 32.138409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.852722, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.331890 ], [ -7.028503, 40.185168 ], [ -7.066956, 39.713525 ], [ -7.500916, 39.631077 ], [ -7.099915, 39.031986 ], [ -7.374573, 38.373962 ], [ -7.031250, 38.076204 ], [ -7.168579, 37.805444 ], [ -7.539368, 37.429069 ], [ -7.454224, 37.099003 ], [ -7.857971, 36.840065 ], [ -8.385315, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.747864, 37.653383 ], [ -8.841248, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.527893, 38.739088 ], [ -9.448242, 39.393755 ], [ -9.049988, 39.755769 ], [ -8.978577, 40.159984 ], [ -8.769836, 40.761821 ], [ -8.783569, 40.979898 ], [ -8.791809, 41.145570 ], [ -6.797791, 41.145570 ], [ -6.852722, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.797791, 41.145570 ], [ -6.852722, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.331890 ], [ -7.028503, 40.185168 ], [ -7.066956, 39.713525 ], [ -7.500916, 39.631077 ], [ -7.099915, 39.031986 ], [ -7.374573, 38.373962 ], [ -7.031250, 38.076204 ], [ -7.168579, 37.805444 ], [ -7.539368, 37.429069 ], [ -7.454224, 37.099003 ], [ -7.857971, 36.840065 ], [ -8.385315, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.747864, 37.653383 ], [ -8.841248, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.527893, 38.739088 ], [ -9.448242, 39.393755 ], [ -9.049988, 39.755769 ], [ -8.978577, 40.159984 ], [ -8.769836, 40.761821 ], [ -8.783569, 40.979898 ], [ -8.791809, 41.145570 ], [ -6.797791, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 40.229218 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.310925 ], [ 0.000000, 38.901721 ], [ 0.109863, 38.739088 ], [ 0.000000, 38.655488 ], [ -0.469666, 38.294248 ], [ -0.683899, 37.642510 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.675028 ], [ -3.416748, 36.659606 ], [ -4.369812, 36.679433 ], [ -4.996033, 36.326190 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.237488, 36.368222 ], [ -6.520386, 36.943307 ], [ -7.454224, 37.099003 ], [ -7.539368, 37.429069 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.076204 ], [ -7.374573, 38.373962 ], [ -7.099915, 39.031986 ], [ -7.500916, 39.631077 ], [ -7.066956, 39.713525 ], [ -7.028503, 40.185168 ], [ -6.866455, 40.331890 ], [ -6.855469, 40.979898 ], [ -6.852722, 41.112469 ], [ -6.797791, 41.145570 ], [ 0.219727, 41.145570 ], [ 0.219727, 40.229218 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 41.145570 ], [ 0.219727, 40.229218 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.310925 ], [ 0.000000, 38.901721 ], [ 0.109863, 38.739088 ], [ 0.000000, 38.655488 ], [ -0.469666, 38.294248 ], [ -0.683899, 37.642510 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.675028 ], [ -3.416748, 36.659606 ], [ -4.369812, 36.679433 ], [ -4.996033, 36.326190 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.237488, 36.368222 ], [ -6.520386, 36.943307 ], [ -7.454224, 37.099003 ], [ -7.539368, 37.429069 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.076204 ], [ -7.374573, 38.373962 ], [ -7.099915, 39.031986 ], [ -7.500916, 39.631077 ], [ -7.066956, 39.713525 ], [ -7.028503, 40.185168 ], [ -6.866455, 40.331890 ], [ -6.855469, 40.979898 ], [ -6.852722, 41.112469 ], [ -6.797791, 41.145570 ], [ 0.219727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.400245 ], [ -2.606506, 35.180543 ], [ -2.172546, 35.169318 ], [ -1.793518, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.310120, 32.263911 ], [ -2.617493, 32.096536 ], [ -2.796021, 31.952162 ], [ -3.023987, 31.765537 ], [ -9.558105, 31.765537 ], [ -9.475708, 31.952162 ], [ -9.437256, 32.038348 ], [ -9.302673, 32.565333 ], [ -8.659973, 33.240985 ], [ -7.654724, 33.699208 ], [ -6.913147, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.762115 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.762115 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.400245 ], [ -2.606506, 35.180543 ], [ -2.172546, 35.169318 ], [ -1.793518, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.310120, 32.263911 ], [ -2.617493, 32.096536 ], [ -2.796021, 31.952162 ], [ -3.023987, 31.765537 ], [ -9.558105, 31.765537 ], [ -9.475708, 31.952162 ], [ -9.437256, 32.038348 ], [ -9.302673, 32.565333 ], [ -8.659973, 33.240985 ], [ -7.654724, 33.699208 ], [ -6.913147, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.762115 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 31.765537 ], [ -3.023987, 31.765537 ], [ -2.796021, 31.952162 ], [ -2.617493, 32.096536 ], [ -1.310120, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.793518, 34.529187 ], [ -2.172546, 35.169318 ], [ -1.211243, 35.715298 ], [ -0.129089, 35.889050 ], [ 0.000000, 35.975783 ], [ 0.219727, 36.120128 ], [ 0.219727, 31.765537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 36.120128 ], [ 0.219727, 31.765537 ], [ -3.023987, 31.765537 ], [ -2.796021, 31.952162 ], [ -2.617493, 32.096536 ], [ -1.310120, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.793518, 34.529187 ], [ -2.172546, 35.169318 ], [ -1.211243, 35.715298 ], [ -0.129089, 35.889050 ], [ 0.000000, 35.975783 ], [ 0.219727, 36.120128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 42.611728 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.034768 ], [ -1.903381, 43.423004 ], [ -1.384277, 44.024422 ], [ -1.194763, 46.016039 ], [ -2.227478, 47.064509 ], [ -2.963562, 47.570967 ], [ -4.493408, 47.954984 ], [ -4.595032, 48.685521 ], [ -3.295898, 48.902643 ], [ -1.617737, 48.645613 ], [ -1.694641, 48.922499 ], [ -1.735840, 49.066668 ], [ 0.219727, 49.066668 ], [ 0.219727, 42.611728 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 49.066668 ], [ 0.219727, 42.611728 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.034768 ], [ -1.903381, 43.423004 ], [ -1.384277, 44.024422 ], [ -1.194763, 46.016039 ], [ -2.227478, 47.064509 ], [ -2.963562, 47.570967 ], [ -4.493408, 47.954984 ], [ -4.595032, 48.685521 ], [ -3.295898, 48.902643 ], [ -1.617737, 48.645613 ], [ -1.694641, 48.922499 ], [ -1.735840, 49.066668 ], [ 0.219727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.014526, 41.791793 ], [ -7.424011, 41.793840 ], [ -7.253723, 41.918629 ], [ -6.668701, 41.883876 ], [ -6.391296, 41.382991 ], [ -6.852722, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.858215, 40.813809 ], [ -8.772583, 40.813809 ], [ -8.783569, 40.979898 ], [ -8.791809, 41.184855 ], [ -8.992310, 41.543533 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.264465, 42.281373 ], [ -8.014526, 41.791793 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.264465, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.424011, 41.793840 ], [ -7.253723, 41.918629 ], [ -6.668701, 41.883876 ], [ -6.391296, 41.382991 ], [ -6.852722, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.858215, 40.813809 ], [ -8.772583, 40.813809 ], [ -8.783569, 40.979898 ], [ -8.791809, 41.184855 ], [ -8.992310, 41.543533 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.264465, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.756592, 43.568452 ], [ -5.413513, 43.574422 ], [ -4.350586, 43.405047 ], [ -3.518372, 43.456906 ], [ -1.903381, 43.423004 ], [ -1.505127, 43.034768 ], [ 0.000000, 42.666281 ], [ 0.219727, 42.611728 ], [ 0.219727, 40.813809 ], [ -6.858215, 40.813809 ], [ -6.855469, 40.979898 ], [ -6.852722, 41.112469 ], [ -6.391296, 41.382991 ], [ -6.668701, 41.883876 ], [ -7.253723, 41.918629 ], [ -7.424011, 41.793840 ], [ -8.014526, 41.791793 ], [ -8.264465, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.026737 ], [ -7.978821, 43.749273 ], [ -6.756592, 43.568452 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.978821, 43.749273 ], [ -6.756592, 43.568452 ], [ -5.413513, 43.574422 ], [ -4.350586, 43.405047 ], [ -3.518372, 43.456906 ], [ -1.903381, 43.423004 ], [ -1.505127, 43.034768 ], [ 0.000000, 42.666281 ], [ 0.219727, 42.611728 ], [ 0.219727, 40.813809 ], [ -6.858215, 40.813809 ], [ -6.855469, 40.979898 ], [ -6.852722, 41.112469 ], [ -6.391296, 41.382991 ], [ -6.668701, 41.883876 ], [ -7.253723, 41.918629 ], [ -7.424011, 41.793840 ], [ -8.014526, 41.791793 ], [ -8.264465, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.026737 ], [ -7.978821, 43.749273 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.366333, 54.595937 ], [ -7.572327, 54.061000 ], [ -6.954346, 54.073894 ], [ -6.199036, 53.868725 ], [ -6.034241, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.670852 ], [ -9.978333, 51.820500 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.330383, 54.665889 ], [ -7.572327, 55.131790 ], [ -7.366333, 54.595937 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.572327, 55.131790 ], [ -7.366333, 54.595937 ], [ -7.572327, 54.061000 ], [ -6.954346, 54.073894 ], [ -6.199036, 53.868725 ], [ -6.034241, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.670852 ], [ -9.978333, 51.820500 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.330383, 54.665889 ], [ -7.572327, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.985779, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.431213, 54.465249 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.325952 ], [ 0.219727, 53.278353 ], [ 0.219727, 50.769471 ], [ 0.000000, 50.771208 ], [ -0.788269, 50.776419 ], [ -2.491150, 50.501199 ], [ -2.958069, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.778809, 50.161065 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.770813, 52.840936 ], [ -4.581299, 53.496216 ], [ -3.092651, 53.404620 ], [ -2.947083, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.083923, 55.062641 ], [ -4.721375, 55.509971 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.311954 ], [ -5.619507, 55.776573 ], [ -5.627747, 55.899956 ], [ -2.081909, 55.899956 ], [ -1.985779, 55.776573 ] ] ], [ [ [ -5.663452, 54.556137 ], [ -6.199036, 53.868725 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.061000 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.174162 ], [ -5.663452, 54.556137 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.081909, 55.899956 ], [ -1.985779, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.431213, 54.465249 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.325952 ], [ 0.219727, 53.278353 ], [ 0.219727, 50.769471 ], [ 0.000000, 50.771208 ], [ -0.788269, 50.776419 ], [ -2.491150, 50.501199 ], [ -2.958069, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.778809, 50.161065 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.770813, 52.840936 ], [ -4.581299, 53.496216 ], [ -3.092651, 53.404620 ], [ -2.947083, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.083923, 55.062641 ], [ -4.721375, 55.509971 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.311954 ], [ -5.619507, 55.776573 ], [ -5.627747, 55.899956 ], [ -2.081909, 55.899956 ] ] ], [ [ [ -6.734619, 55.174162 ], [ -5.663452, 54.556137 ], [ -6.199036, 53.868725 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.061000 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.174162 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.482910, 48.777913 ], [ -4.042969, 48.777913 ], [ -3.295898, 48.902643 ], [ -2.482910, 48.777913 ] ] ], [ [ [ -1.933594, 49.777717 ], [ -0.991516, 49.348388 ], [ 0.000000, 49.683624 ], [ 0.219727, 49.758203 ], [ 0.219727, 48.777913 ], [ -1.656189, 48.777913 ], [ -1.694641, 48.922499 ], [ -1.933594, 49.777717 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.295898, 48.902643 ], [ -2.482910, 48.777913 ], [ -4.042969, 48.777913 ], [ -3.295898, 48.902643 ] ] ], [ [ [ -0.991516, 49.348388 ], [ 0.000000, 49.683624 ], [ 0.219727, 49.758203 ], [ 0.219727, 48.777913 ], [ -1.656189, 48.777913 ], [ -1.694641, 48.922499 ], [ -1.933594, 49.777717 ], [ -0.991516, 49.348388 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.075928, 57.554155 ], [ -3.056946, 57.690938 ], [ -1.961060, 57.685065 ], [ -2.221985, 56.871495 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.910734 ], [ -1.985779, 55.776573 ], [ -1.892395, 55.652798 ], [ -4.894409, 55.652798 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.059204, 55.776573 ], [ -5.202026, 55.652798 ], [ -5.608521, 55.652798 ], [ -5.616760, 55.776573 ], [ -5.646973, 56.275386 ], [ -6.152344, 56.785836 ], [ -5.787048, 57.819892 ], [ -5.012512, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.007507, 58.635506 ], [ -4.075928, 57.554155 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.007507, 58.635506 ], [ -4.075928, 57.554155 ], [ -3.056946, 57.690938 ], [ -1.961060, 57.685065 ], [ -2.221985, 56.871495 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.910734 ], [ -1.985779, 55.776573 ], [ -1.892395, 55.652798 ], [ -4.894409, 55.652798 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.059204, 55.776573 ], [ -5.202026, 55.652798 ], [ -5.608521, 55.652798 ], [ -5.616760, 55.776573 ], [ -5.646973, 56.275386 ], [ -6.152344, 56.785836 ], [ -5.787048, 57.819892 ], [ -5.012512, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.007507, 58.635506 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -85.070048 ], [ -0.219727, -85.070048 ], [ -0.219727, -83.956169 ], [ 11.469727, -83.956169 ], [ 11.469727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -83.956169 ], [ 11.469727, -85.070048 ], [ -0.219727, -85.070048 ], [ -0.219727, -83.956169 ], [ 11.469727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -84.002262 ], [ -0.219727, -84.002262 ], [ -0.219727, -82.648222 ], [ 11.469727, -82.648222 ], [ 11.469727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -82.648222 ], [ 11.469727, -84.002262 ], [ -0.219727, -84.002262 ], [ -0.219727, -82.648222 ], [ 11.469727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -82.704241 ], [ -0.219727, -82.704241 ], [ -0.219727, -81.059130 ], [ 11.469727, -81.059130 ], [ 11.469727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -81.059130 ], [ 11.469727, -82.704241 ], [ -0.219727, -82.704241 ], [ -0.219727, -81.059130 ], [ 11.469727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -81.127169 ], [ -0.219727, -81.127169 ], [ -0.219727, -79.129976 ], [ 11.469727, -79.129976 ], [ 11.469727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -79.129976 ], [ 11.469727, -81.127169 ], [ -0.219727, -81.127169 ], [ -0.219727, -79.129976 ], [ 11.469727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -79.212538 ], [ -0.219727, -79.212538 ], [ -0.219727, -76.790701 ], [ 11.469727, -76.790701 ], [ 11.469727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -76.790701 ], [ 11.469727, -79.212538 ], [ -0.219727, -79.212538 ], [ -0.219727, -76.790701 ], [ 11.469727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -76.890745 ], [ -0.219727, -76.890745 ], [ -0.219727, -73.958939 ], [ 11.469727, -73.958939 ], [ 11.469727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -73.958939 ], [ 11.469727, -76.890745 ], [ -0.219727, -76.890745 ], [ -0.219727, -73.958939 ], [ 11.469727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.456238, -70.612614 ], [ 10.816040, -70.833855 ], [ 11.250000, -70.758871 ], [ 11.469727, -70.720820 ], [ 11.469727, -74.079925 ], [ -0.219727, -74.079925 ], [ -0.219727, -71.634262 ], [ 0.000000, -71.567510 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 3.021240, -70.991033 ], [ 4.136353, -70.853683 ], [ 5.155334, -70.618084 ], [ 5.193787, -70.612614 ], [ 5.715637, -70.539543 ], [ 10.340881, -70.539543 ], [ 10.456238, -70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.340881, -70.539543 ], [ 10.456238, -70.612614 ], [ 10.816040, -70.833855 ], [ 11.250000, -70.758871 ], [ 11.469727, -70.720820 ], [ 11.469727, -74.079925 ], [ -0.219727, -74.079925 ], [ -0.219727, -71.634262 ], [ 0.000000, -71.567510 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 3.021240, -70.991033 ], [ 4.136353, -70.853683 ], [ 5.155334, -70.618084 ], [ 5.193787, -70.612614 ], [ 5.715637, -70.539543 ], [ 10.340881, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.486938, -70.147827 ], [ 9.522400, -70.011201 ], [ 10.247498, -70.480896 ], [ 10.456238, -70.612614 ], [ 10.574341, -70.685421 ], [ 4.864197, -70.685421 ], [ 5.155334, -70.618084 ], [ 5.193787, -70.612614 ], [ 6.273193, -70.461615 ], [ 7.135620, -70.246460 ], [ 7.742615, -69.893509 ], [ 8.486938, -70.147827 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.742615, -69.893509 ], [ 8.486938, -70.147827 ], [ 9.522400, -70.011201 ], [ 10.247498, -70.480896 ], [ 10.456238, -70.612614 ], [ 10.574341, -70.685421 ], [ 4.864197, -70.685421 ], [ 5.155334, -70.618084 ], [ 5.193787, -70.612614 ], [ 6.273193, -70.461615 ], [ 7.135620, -70.246460 ], [ 7.742615, -69.893509 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.702559 ], [ 11.250000, -3.861514 ], [ 11.093445, -3.976601 ], [ 10.063477, -2.967727 ], [ 9.404297, -2.141835 ], [ 8.797302, -1.109550 ], [ 8.827515, -0.777259 ], [ 9.047241, -0.458674 ], [ 9.198303, 0.000000 ], [ 9.272461, 0.219726 ], [ 11.469727, 0.219726 ], [ 11.469727, -3.702559 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 0.219726 ], [ 11.469727, -3.702559 ], [ 11.250000, -3.861514 ], [ 11.093445, -3.976601 ], [ 10.063477, -2.967727 ], [ 9.404297, -2.141835 ], [ 8.797302, -1.109550 ], [ 8.827515, -0.777259 ], [ 9.047241, -0.458674 ], [ 9.198303, 0.000000 ], [ 9.272461, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -4.461427 ], [ 11.250000, -4.176594 ], [ 11.093445, -3.976601 ], [ 11.250000, -3.861514 ], [ 11.469727, -3.702559 ], [ 11.469727, -4.461427 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.702559 ], [ 11.469727, -4.461427 ], [ 11.250000, -4.176594 ], [ 11.093445, -3.976601 ], [ 11.250000, -3.861514 ], [ 11.469727, -3.702559 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.271667, 11.178402 ], [ 1.241455, 11.111032 ], [ 0.898132, 10.997816 ], [ 0.021973, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.219727, 11.062516 ], [ -0.219727, 11.393879 ], [ 1.370544, 11.393879 ], [ 1.271667, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.370544, 11.393879 ], [ 1.271667, 11.178402 ], [ 1.241455, 11.111032 ], [ 0.898132, 10.997816 ], [ 0.021973, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.219727, 11.062516 ], [ -0.219727, 11.393879 ], [ 1.370544, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.024776 ], [ 0.021973, 11.019384 ], [ 0.000000, 10.927708 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.647112 ], [ 0.365295, 10.193297 ], [ 0.365295, 9.465317 ], [ 0.458679, 8.678779 ], [ 0.711365, 8.314777 ], [ 0.488892, 7.414219 ], [ 0.568542, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.057434, 5.930240 ], [ 0.000000, 5.536712 ], [ -0.219727, 5.454693 ], [ -0.219727, 11.062516 ], [ 0.000000, 11.024776 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.062516 ], [ 0.000000, 11.024776 ], [ 0.021973, 11.019384 ], [ 0.000000, 10.927708 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.647112 ], [ 0.365295, 10.193297 ], [ 0.365295, 9.465317 ], [ 0.458679, 8.678779 ], [ 0.711365, 8.314777 ], [ 0.488892, 7.414219 ], [ 0.568542, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.057434, 5.930240 ], [ 0.000000, 5.536712 ], [ -0.219727, 5.454693 ], [ -0.219727, 11.062516 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.898132, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.177077 ], [ 1.422729, 9.825448 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.833716 ], [ 1.864929, 6.143286 ], [ 1.057434, 5.930240 ], [ 0.834961, 6.282539 ], [ 0.568542, 6.915521 ], [ 0.488892, 7.414219 ], [ 0.711365, 8.314777 ], [ 0.458679, 8.678779 ], [ 0.365295, 9.465317 ], [ 0.365295, 10.193297 ], [ 0.000000, 10.647112 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.927708 ], [ 0.021973, 11.019384 ], [ 0.898132, 10.997816 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.898132, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.177077 ], [ 1.422729, 9.825448 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.833716 ], [ 1.864929, 6.143286 ], [ 1.057434, 5.930240 ], [ 0.834961, 6.282539 ], [ 0.568542, 6.915521 ], [ 0.488892, 7.414219 ], [ 0.711365, 8.314777 ], [ 0.458679, 8.678779 ], [ 0.365295, 9.465317 ], [ 0.365295, 10.193297 ], [ 0.000000, 10.647112 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.927708 ], [ 0.021973, 11.019384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.570557, 11.329253 ], [ 3.625488, 11.178402 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.333834 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.446352 ], [ 2.911377, 9.140063 ], [ 2.721863, 8.507687 ], [ 2.746582, 7.871544 ], [ 2.691650, 6.260697 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.825448 ], [ 1.076660, 10.177077 ], [ 0.771790, 10.471607 ], [ 0.898132, 10.997816 ], [ 1.241455, 11.111032 ], [ 1.271667, 11.178402 ], [ 1.370544, 11.393879 ], [ 3.576050, 11.393879 ], [ 3.570557, 11.329253 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.576050, 11.393879 ], [ 3.570557, 11.329253 ], [ 3.625488, 11.178402 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.333834 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.446352 ], [ 2.911377, 9.140063 ], [ 2.721863, 8.507687 ], [ 2.746582, 7.871544 ], [ 2.691650, 6.260697 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.825448 ], [ 1.076660, 10.177077 ], [ 0.771790, 10.471607 ], [ 0.898132, 10.997816 ], [ 1.241455, 11.111032 ], [ 1.271667, 11.178402 ], [ 1.370544, 11.393879 ], [ 3.576050, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 6.850078 ], [ 11.057739, 6.645511 ], [ 10.494690, 7.057282 ], [ 10.115662, 7.040927 ], [ 9.522400, 6.454505 ], [ 9.231262, 6.446318 ], [ 8.756104, 5.482034 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.896912, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.613252 ], [ 4.323120, 6.271618 ], [ 3.573303, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.871544 ], [ 2.721863, 8.507687 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.446352 ], [ 3.705139, 10.063516 ], [ 3.598022, 10.333834 ], [ 3.795776, 10.736175 ], [ 3.625488, 11.178402 ], [ 3.570557, 11.329253 ], [ 3.576050, 11.393879 ], [ 11.469727, 11.393879 ], [ 11.469727, 6.850078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.850078 ], [ 11.057739, 6.645511 ], [ 10.494690, 7.057282 ], [ 10.115662, 7.040927 ], [ 9.522400, 6.454505 ], [ 9.231262, 6.446318 ], [ 8.756104, 5.482034 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.896912, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.613252 ], [ 4.323120, 6.271618 ], [ 3.573303, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.871544 ], [ 2.721863, 8.507687 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.446352 ], [ 3.705139, 10.063516 ], [ 3.598022, 10.333834 ], [ 3.795776, 10.736175 ], [ 3.625488, 11.178402 ], [ 3.570557, 11.329253 ], [ 3.576050, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.265340 ], [ 11.274719, 2.262595 ], [ 11.282959, 1.060120 ], [ 11.250000, 1.062866 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ], [ 11.250000, 2.265340 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.265340 ], [ 11.274719, 2.262595 ], [ 11.282959, 1.060120 ], [ 11.250000, 1.062866 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.057739, 6.645511 ], [ 11.469727, 6.850078 ], [ 11.469727, 2.290039 ], [ 11.274719, 2.262595 ], [ 11.250000, 2.265340 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.945618, 3.905359 ], [ 8.742371, 4.354627 ], [ 8.486938, 4.497024 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.482034 ], [ 9.231262, 6.446318 ], [ 9.522400, 6.454505 ], [ 10.115662, 7.040927 ], [ 10.494690, 7.057282 ], [ 11.057739, 6.645511 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.494690, 7.057282 ], [ 11.057739, 6.645511 ], [ 11.469727, 6.850078 ], [ 11.469727, 2.290039 ], [ 11.274719, 2.262595 ], [ 11.250000, 2.265340 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.945618, 3.905359 ], [ 8.742371, 4.354627 ], [ 8.486938, 4.497024 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.482034 ], [ 9.231262, 6.446318 ], [ 9.522400, 6.454505 ], [ 10.115662, 7.040927 ], [ 10.494690, 7.057282 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -0.219726 ], [ 9.124146, -0.219726 ], [ 9.198303, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.062866 ], [ 11.282959, 1.060120 ], [ 11.274719, 2.262595 ], [ 11.469727, 2.290039 ], [ 11.469727, -0.219726 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 2.290039 ], [ 11.469727, -0.219726 ], [ 9.124146, -0.219726 ], [ 9.198303, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.062866 ], [ 11.282959, 1.060120 ], [ 11.274719, 2.262595 ], [ 11.469727, 2.290039 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 21.797758 ], [ 1.820984, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.683411, 19.857144 ], [ 3.144836, 19.694314 ], [ 3.155823, 19.059522 ], [ 4.265442, 19.155547 ], [ 4.268188, 16.854491 ], [ 3.721619, 16.185662 ], [ 3.636475, 15.570128 ], [ 2.749329, 15.411319 ], [ 1.384277, 15.323923 ], [ 1.013489, 14.968667 ], [ 0.373535, 14.931516 ], [ 0.000000, 14.928862 ], [ -0.219727, 14.928862 ], [ -0.219727, 21.940498 ], [ 0.000000, 21.797758 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 21.940498 ], [ 0.000000, 21.797758 ], [ 1.820984, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.683411, 19.857144 ], [ 3.144836, 19.694314 ], [ 3.155823, 19.059522 ], [ 4.265442, 19.155547 ], [ 4.268188, 16.854491 ], [ 3.721619, 16.185662 ], [ 3.636475, 15.570128 ], [ 2.749329, 15.411319 ], [ 1.384277, 15.323923 ], [ 1.013489, 14.968667 ], [ 0.373535, 14.931516 ], [ 0.000000, 14.928862 ], [ -0.219727, 14.928862 ], [ -0.219727, 21.940498 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.293884, 14.445319 ], [ 0.428467, 13.990041 ], [ 0.991516, 13.336175 ], [ 1.021729, 12.851971 ], [ 2.175293, 12.626938 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.271667, 11.178402 ], [ 1.241455, 11.111032 ], [ 0.898132, 10.997816 ], [ 0.021973, 11.019384 ], [ -0.219727, 11.062516 ], [ -0.219727, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.931516 ], [ 0.293884, 14.445319 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.931516 ], [ 0.293884, 14.445319 ], [ 0.428467, 13.990041 ], [ 0.991516, 13.336175 ], [ 1.021729, 12.851971 ], [ 2.175293, 12.626938 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.271667, 11.178402 ], [ 1.241455, 11.111032 ], [ 0.898132, 10.997816 ], [ 0.021973, 11.019384 ], [ -0.219727, 11.062516 ], [ -0.219727, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.931516 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.008240, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.062516 ], [ 0.021973, 11.019384 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.062516 ], [ 0.021973, 11.019384 ], [ 0.008240, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.062516 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239502, 21.943046 ], [ 8.572083, 21.568056 ], [ 5.677185, 19.603782 ], [ 4.265442, 19.155547 ], [ 3.155823, 19.059522 ], [ 3.144836, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.143628 ], [ 1.820984, 20.612220 ], [ 0.000000, 21.797758 ], [ -0.219727, 21.940498 ], [ -0.219727, 22.146708 ], [ 9.604797, 22.146708 ], [ 9.239502, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.604797, 22.146708 ], [ 9.239502, 21.943046 ], [ 8.572083, 21.568056 ], [ 5.677185, 19.603782 ], [ 4.265442, 19.155547 ], [ 3.155823, 19.059522 ], [ 3.144836, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.143628 ], [ 1.820984, 20.612220 ], [ 0.000000, 21.797758 ], [ -0.219727, 21.940498 ], [ -0.219727, 22.146708 ], [ 9.604797, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 13.338848 ], [ 11.250000, 13.362899 ], [ 10.989075, 13.389620 ], [ 10.700684, 13.247966 ], [ 10.112915, 13.277373 ], [ 9.522400, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.803040, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.116930 ], [ 6.443481, 13.493802 ], [ 5.440979, 13.867414 ], [ 4.367065, 13.750057 ], [ 4.106140, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.660306 ], [ 2.848206, 12.238023 ], [ 2.488403, 12.235339 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.626938 ], [ 1.021729, 12.851971 ], [ 0.991516, 13.336175 ], [ 0.428467, 13.990041 ], [ 0.293884, 14.445319 ], [ 0.373535, 14.931516 ], [ 1.013489, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.721619, 16.185662 ], [ 4.268188, 16.854491 ], [ 4.265442, 19.155547 ], [ 5.677185, 19.603782 ], [ 8.572083, 21.568056 ], [ 9.239502, 21.943046 ], [ 9.604797, 22.146708 ], [ 11.469727, 22.146708 ], [ 11.469727, 13.338848 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 22.146708 ], [ 11.469727, 13.338848 ], [ 11.250000, 13.362899 ], [ 10.989075, 13.389620 ], [ 10.700684, 13.247966 ], [ 10.112915, 13.277373 ], [ 9.522400, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.803040, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.116930 ], [ 6.443481, 13.493802 ], [ 5.440979, 13.867414 ], [ 4.367065, 13.750057 ], [ 4.106140, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.660306 ], [ 2.848206, 12.238023 ], [ 2.488403, 12.235339 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.626938 ], [ 1.021729, 12.851971 ], [ 0.991516, 13.336175 ], [ 0.428467, 13.990041 ], [ 0.293884, 14.445319 ], [ 0.373535, 14.931516 ], [ 1.013489, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.721619, 16.185662 ], [ 4.268188, 16.854491 ], [ 4.265442, 19.155547 ], [ 5.677185, 19.603782 ], [ 8.572083, 21.568056 ], [ 9.239502, 21.943046 ], [ 9.604797, 22.146708 ], [ 11.469727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.898132, 10.997816 ], [ 0.887146, 10.962764 ], [ 0.008240, 10.962764 ], [ 0.021973, 11.019384 ], [ 0.898132, 10.997816 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.898132, 10.997816 ], [ 0.887146, 10.962764 ], [ 0.008240, 10.962764 ], [ 0.021973, 11.019384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.609009, 11.660306 ], [ 3.570557, 11.329253 ], [ 3.625488, 11.178402 ], [ 3.707886, 10.962764 ], [ 0.887146, 10.962764 ], [ 0.898132, 10.997816 ], [ 1.241455, 11.111032 ], [ 1.271667, 11.178402 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.235339 ], [ 2.848206, 12.238023 ], [ 3.609009, 11.660306 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.238023 ], [ 3.609009, 11.660306 ], [ 3.570557, 11.329253 ], [ 3.625488, 11.178402 ], [ 3.707886, 10.962764 ], [ 0.887146, 10.962764 ], [ 0.898132, 10.997816 ], [ 1.241455, 11.111032 ], [ 1.271667, 11.178402 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.235339 ], [ 2.848206, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443481, 13.493802 ], [ 6.819763, 13.116930 ], [ 7.330627, 13.098205 ], [ 7.803040, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.522400, 12.851971 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.389620 ], [ 11.250000, 13.362899 ], [ 11.469727, 13.338848 ], [ 11.469727, 10.962764 ], [ 3.707886, 10.962764 ], [ 3.625488, 11.178402 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.660306 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.106140, 13.533860 ], [ 4.367065, 13.750057 ], [ 5.440979, 13.867414 ], [ 6.443481, 13.493802 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.440979, 13.867414 ], [ 6.443481, 13.493802 ], [ 6.819763, 13.116930 ], [ 7.330627, 13.098205 ], [ 7.803040, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.522400, 12.851971 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.389620 ], [ 11.250000, 13.362899 ], [ 11.469727, 13.338848 ], [ 11.469727, 10.962764 ], [ 3.707886, 10.962764 ], [ 3.625488, 11.178402 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.660306 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.106140, 13.533860 ], [ 4.367065, 13.750057 ], [ 5.440979, 13.867414 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.085144, 21.739091 ], [ -0.219727, 21.739091 ], [ -0.219727, 21.940498 ], [ 0.085144, 21.739091 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 21.940498 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.739091 ], [ -0.219727, 21.940498 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.942383, 32.082575 ], [ 10.816040, 31.952162 ], [ 10.634766, 31.763202 ], [ 9.948120, 31.377089 ], [ 10.055237, 30.963479 ], [ 9.967346, 30.540973 ], [ 9.481201, 30.308874 ], [ 9.091187, 31.952162 ], [ 9.055481, 32.103516 ], [ 9.000549, 32.138409 ], [ 11.035767, 32.138409 ], [ 10.942383, 32.082575 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.035767, 32.138409 ], [ 10.942383, 32.082575 ], [ 10.816040, 31.952162 ], [ 10.634766, 31.763202 ], [ 9.948120, 31.377089 ], [ 10.055237, 30.963479 ], [ 9.967346, 30.540973 ], [ 9.481201, 30.308874 ], [ 9.091187, 31.952162 ], [ 9.055481, 32.103516 ], [ 9.000549, 32.138409 ], [ 11.035767, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.055481, 32.103516 ], [ 9.091187, 31.952162 ], [ 9.481201, 30.308874 ], [ 9.805298, 29.425245 ], [ 9.857483, 28.960089 ], [ 9.681702, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.626770, 27.142257 ], [ 9.714661, 26.512362 ], [ 9.319153, 26.096255 ], [ 9.909668, 25.366364 ], [ 9.948120, 24.938748 ], [ 10.302429, 24.379623 ], [ 10.769348, 24.564610 ], [ 11.250000, 24.282020 ], [ 11.469727, 24.154272 ], [ 11.469727, 23.183288 ], [ 11.250000, 23.062043 ], [ 9.242249, 21.943046 ], [ 8.876953, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.940498 ], [ -0.219727, 32.138409 ], [ 9.000549, 32.138409 ], [ 9.055481, 32.103516 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.000549, 32.138409 ], [ 9.055481, 32.103516 ], [ 9.091187, 31.952162 ], [ 9.481201, 30.308874 ], [ 9.805298, 29.425245 ], [ 9.857483, 28.960089 ], [ 9.681702, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.626770, 27.142257 ], [ 9.714661, 26.512362 ], [ 9.319153, 26.096255 ], [ 9.909668, 25.366364 ], [ 9.948120, 24.938748 ], [ 10.302429, 24.379623 ], [ 10.769348, 24.564610 ], [ 11.250000, 24.282020 ], [ 11.469727, 24.154272 ], [ 11.469727, 23.183288 ], [ 11.250000, 23.062043 ], [ 9.242249, 21.943046 ], [ 8.876953, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.940498 ], [ -0.219727, 32.138409 ], [ 9.000549, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 24.154272 ], [ 11.250000, 24.282020 ], [ 10.769348, 24.564610 ], [ 10.302429, 24.379623 ], [ 9.948120, 24.938748 ], [ 9.909668, 25.366364 ], [ 9.319153, 26.096255 ], [ 9.714661, 26.512362 ], [ 9.626770, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.681702, 28.144660 ], [ 9.857483, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.308874 ], [ 9.967346, 30.540973 ], [ 10.055237, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.763202 ], [ 10.816040, 31.952162 ], [ 10.942383, 32.082575 ], [ 11.035767, 32.138409 ], [ 11.469727, 32.138409 ], [ 11.469727, 24.154272 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.138409 ], [ 11.469727, 24.154272 ], [ 11.250000, 24.282020 ], [ 10.769348, 24.564610 ], [ 10.302429, 24.379623 ], [ 9.948120, 24.938748 ], [ 9.909668, 25.366364 ], [ 9.319153, 26.096255 ], [ 9.714661, 26.512362 ], [ 9.626770, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.681702, 28.144660 ], [ 9.857483, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.308874 ], [ 9.967346, 30.540973 ], [ 10.055237, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.763202 ], [ 10.816040, 31.952162 ], [ 10.942383, 32.082575 ], [ 11.035767, 32.138409 ], [ 11.469727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 21.739091 ], [ 8.876953, 21.739091 ], [ 9.242249, 21.943046 ], [ 11.250000, 23.062043 ], [ 11.469727, 23.183288 ], [ 11.469727, 21.739091 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 23.183288 ], [ 11.469727, 21.739091 ], [ 8.876953, 21.739091 ], [ 9.242249, 21.943046 ], [ 11.250000, 23.062043 ], [ 11.469727, 23.183288 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.598511, 41.145570 ], [ 0.810242, 41.015138 ], [ 0.799255, 40.979898 ], [ 0.719604, 40.678555 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.219727, 39.440435 ], [ -0.219727, 41.145570 ], [ 1.598511, 41.145570 ] ] ], [ [ [ 0.000000, 38.901721 ], [ 0.109863, 38.739088 ], [ -0.219727, 38.487995 ], [ -0.219727, 39.223743 ], [ 0.000000, 38.901721 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.219727, 39.440435 ], [ -0.219727, 41.145570 ], [ 1.598511, 41.145570 ], [ 0.810242, 41.015138 ], [ 0.799255, 40.979898 ], [ 0.719604, 40.678555 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.219727, 39.440435 ] ] ], [ [ [ -0.219727, 39.223743 ], [ 0.000000, 38.901721 ], [ 0.109863, 38.739088 ], [ -0.219727, 38.487995 ], [ -0.219727, 39.223743 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.404297, 40.979898 ], [ 9.808044, 40.501269 ], [ 9.667969, 39.179046 ], [ 9.214783, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.709412, 40.901058 ], [ 8.835754, 40.979898 ], [ 9.102173, 41.145570 ], [ 9.264221, 41.145570 ], [ 9.404297, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.264221, 41.145570 ], [ 9.404297, 40.979898 ], [ 9.808044, 40.501269 ], [ 9.667969, 39.179046 ], [ 9.214783, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.709412, 40.901058 ], [ 8.835754, 40.979898 ], [ 9.102173, 41.145570 ], [ 9.264221, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.209045, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.027527, 37.092431 ], [ 11.098938, 36.901587 ], [ 10.599060, 36.410231 ], [ 10.590820, 35.949106 ], [ 10.936890, 35.699686 ], [ 10.807800, 34.834096 ], [ 10.148621, 34.332096 ], [ 10.338135, 33.785996 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.469727, 33.144451 ], [ 11.469727, 32.909568 ], [ 11.431274, 32.370683 ], [ 11.250000, 32.266233 ], [ 10.942383, 32.082575 ], [ 10.816040, 31.952162 ], [ 10.634766, 31.765537 ], [ 9.135132, 31.765537 ], [ 9.055481, 32.103516 ], [ 8.437500, 32.507446 ], [ 8.429260, 32.750323 ], [ 7.610779, 33.344296 ], [ 7.522888, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.374329, 35.480802 ], [ 8.217773, 36.434542 ], [ 8.418274, 36.947697 ], [ 9.508667, 37.350509 ], [ 10.209045, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.350509 ], [ 10.209045, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.027527, 37.092431 ], [ 11.098938, 36.901587 ], [ 10.599060, 36.410231 ], [ 10.590820, 35.949106 ], [ 10.936890, 35.699686 ], [ 10.807800, 34.834096 ], [ 10.148621, 34.332096 ], [ 10.338135, 33.785996 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.469727, 33.144451 ], [ 11.469727, 32.909568 ], [ 11.431274, 32.370683 ], [ 11.250000, 32.266233 ], [ 10.942383, 32.082575 ], [ 10.816040, 31.952162 ], [ 9.135132, 31.765537 ], [ 9.055481, 32.103516 ], [ 8.437500, 32.507446 ], [ 8.429260, 32.750323 ], [ 7.610779, 33.344296 ], [ 7.522888, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.374329, 35.480802 ], [ 8.217773, 36.434542 ], [ 8.418274, 36.947697 ], [ 9.508667, 37.350509 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 36.886211 ], [ 8.418274, 36.947697 ], [ 8.217773, 36.434542 ], [ 8.374329, 35.480802 ], [ 8.140869, 34.655804 ], [ 7.522888, 34.098159 ], [ 7.610779, 33.344296 ], [ 8.429260, 32.750323 ], [ 8.437500, 32.507446 ], [ 9.055481, 32.103516 ], [ 9.135132, 31.765537 ], [ -0.219727, 31.765537 ], [ -0.219727, 35.875698 ], [ -0.129089, 35.889050 ], [ 0.000000, 35.975783 ], [ 0.502625, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.161316, 36.785092 ], [ 4.814758, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.259460, 37.112146 ], [ 7.327881, 37.118716 ], [ 7.734375, 36.886211 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.118716 ], [ 7.734375, 36.886211 ], [ 8.418274, 36.947697 ], [ 8.217773, 36.434542 ], [ 8.374329, 35.480802 ], [ 8.140869, 34.655804 ], [ 7.522888, 34.098159 ], [ 7.610779, 33.344296 ], [ 8.429260, 32.750323 ], [ 8.437500, 32.507446 ], [ 9.055481, 32.103516 ], [ 9.135132, 31.765537 ], [ -0.219727, 31.765537 ], [ -0.219727, 35.875698 ], [ -0.129089, 35.889050 ], [ 0.000000, 35.975783 ], [ 0.502625, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.161316, 36.785092 ], [ 4.814758, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.259460, 37.112146 ], [ 7.327881, 37.118716 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 31.765537 ], [ 10.634766, 31.765537 ], [ 10.816040, 31.952162 ], [ 10.942383, 32.082575 ], [ 11.250000, 32.266233 ], [ 11.431274, 32.370683 ], [ 11.469727, 32.909568 ], [ 11.469727, 31.765537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.909568 ], [ 11.469727, 31.765537 ], [ 10.634766, 31.765537 ], [ 10.816040, 31.952162 ], [ 10.942383, 32.082575 ], [ 11.250000, 32.266233 ], [ 11.431274, 32.370683 ], [ 11.469727, 32.909568 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.558105, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.010673 ], [ 9.558105, 42.153223 ] ] ], [ [ [ 8.096924, 49.018058 ], [ 8.025513, 48.922499 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.841736, 45.991237 ], [ 6.800537, 45.710015 ], [ 7.094421, 45.334771 ], [ 6.748352, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.547607, 44.128999 ], [ 7.434998, 43.695680 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.985535, 42.474123 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.797416 ], [ 0.337830, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.219727, 42.720786 ], [ -0.219727, 49.066668 ], [ 7.717896, 49.066668 ], [ 8.096924, 49.018058 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.010673 ], [ 9.558105, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.010673 ] ] ], [ [ [ 7.717896, 49.066668 ], [ 8.096924, 49.018058 ], [ 8.025513, 48.922499 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.841736, 45.991237 ], [ 6.800537, 45.710015 ], [ 7.094421, 45.334771 ], [ 6.748352, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.547607, 44.128999 ], [ 7.434998, 43.695680 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.985535, 42.474123 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.797416 ], [ 0.337830, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.219727, 42.720786 ], [ -0.219727, 49.066668 ], [ 7.717896, 49.066668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.826477, 42.344335 ], [ 2.985535, 42.474123 ], [ 3.037720, 41.894100 ], [ 2.090149, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.799255, 40.979898 ], [ 0.755310, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.720786 ], [ 0.000000, 42.666281 ], [ 0.337830, 42.581400 ], [ 0.700378, 42.797416 ], [ 1.826477, 42.344335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.797416 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.474123 ], [ 3.037720, 41.894100 ], [ 2.090149, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.799255, 40.979898 ], [ 0.755310, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.720786 ], [ 0.000000, 42.666281 ], [ 0.337830, 42.581400 ], [ 0.700378, 42.797416 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 47.535747 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.303447 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.526475 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.615421 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.025513, 48.922499 ], [ 8.096924, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ], [ 11.469727, 47.535747 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.535747 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.303447 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.526475 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.615421 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.025513, 48.922499 ], [ 8.096924, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.593811, 47.526475 ], [ 9.632263, 47.348128 ], [ 9.478455, 47.103784 ], [ 9.931641, 46.922131 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.485156 ], [ 9.920654, 46.316584 ], [ 9.181824, 46.441642 ], [ 8.964844, 46.037016 ], [ 8.489685, 46.006501 ], [ 8.313904, 46.164614 ], [ 7.753601, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.841736, 45.991237 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.615421 ], [ 8.519897, 47.831596 ], [ 9.593811, 47.526475 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.593811, 47.526475 ], [ 9.632263, 47.348128 ], [ 9.478455, 47.103784 ], [ 9.931641, 46.922131 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.485156 ], [ 9.920654, 46.316584 ], [ 9.181824, 46.441642 ], [ 8.964844, 46.037016 ], [ 8.489685, 46.006501 ], [ 8.313904, 46.164614 ], [ 7.753601, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.841736, 45.991237 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.615421 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.401306, 47.303447 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.535747 ], [ 11.469727, 46.997114 ], [ 11.250000, 46.959636 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.753035 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.922131 ], [ 9.478455, 47.103784 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.526475 ], [ 9.895935, 47.580231 ], [ 10.401306, 47.303447 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.895935, 47.580231 ], [ 10.401306, 47.303447 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.535747 ], [ 11.469727, 46.997114 ], [ 11.250000, 46.959636 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.753035 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.922131 ], [ 9.478455, 47.103784 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.526475 ], [ 9.895935, 47.580231 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.404297, 40.979898 ], [ 9.544373, 40.813809 ], [ 8.209534, 40.813809 ], [ 8.157349, 40.950863 ], [ 8.709412, 40.901058 ], [ 8.835754, 40.979898 ], [ 9.209290, 41.211722 ], [ 9.404297, 40.979898 ] ] ], [ [ [ 11.469727, 42.159332 ], [ 11.250000, 42.313878 ], [ 11.189575, 42.356514 ], [ 10.511169, 42.932296 ], [ 10.198059, 43.921637 ], [ 9.700928, 44.038244 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.231425 ], [ 7.849731, 43.769110 ], [ 7.434998, 43.695680 ], [ 7.547607, 44.128999 ], [ 7.006531, 44.255036 ], [ 6.748352, 45.028892 ], [ 7.094421, 45.334771 ], [ 6.800537, 45.710015 ], [ 6.841736, 45.991237 ], [ 7.272949, 45.777102 ], [ 7.753601, 45.824971 ], [ 8.313904, 46.164614 ], [ 8.489685, 46.006501 ], [ 8.964844, 46.037016 ], [ 9.181824, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.362854, 46.485156 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.753035 ], [ 11.162109, 46.942762 ], [ 11.250000, 46.959636 ], [ 11.469727, 46.997114 ], [ 11.469727, 42.159332 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209290, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.544373, 40.813809 ], [ 8.209534, 40.813809 ], [ 8.157349, 40.950863 ], [ 8.709412, 40.901058 ], [ 8.835754, 40.979898 ], [ 9.209290, 41.211722 ] ] ], [ [ [ 11.469727, 46.997114 ], [ 11.469727, 42.159332 ], [ 11.250000, 42.313878 ], [ 11.189575, 42.356514 ], [ 10.511169, 42.932296 ], [ 10.198059, 43.921637 ], [ 9.700928, 44.038244 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.231425 ], [ 7.849731, 43.769110 ], [ 7.434998, 43.695680 ], [ 7.547607, 44.128999 ], [ 7.006531, 44.255036 ], [ 6.748352, 45.028892 ], [ 7.094421, 45.334771 ], [ 6.800537, 45.710015 ], [ 6.841736, 45.991237 ], [ 7.272949, 45.777102 ], [ 7.753601, 45.824971 ], [ 8.313904, 46.164614 ], [ 8.489685, 46.006501 ], [ 8.964844, 46.037016 ], [ 9.181824, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.362854, 46.485156 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.753035 ], [ 11.162109, 46.942762 ], [ 11.250000, 46.959636 ], [ 11.469727, 46.997114 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 53.670680 ], [ 0.184021, 53.325952 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.557312, 52.101444 ], [ 1.049194, 51.806917 ], [ 1.447449, 51.291124 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.771208 ], [ -0.219727, 50.772945 ], [ -0.219727, 54.077117 ], [ 0.000000, 53.670680 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 54.077117 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.325952 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.557312, 52.101444 ], [ 1.049194, 51.806917 ], [ 1.447449, 51.291124 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.771208 ], [ -0.219727, 50.772945 ], [ -0.219727, 54.077117 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.655945, 50.797255 ], [ 3.122864, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.798279, 49.986552 ], [ 5.671692, 49.530557 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.018058 ], [ 8.025513, 48.922499 ], [ 7.918396, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.610710 ], [ 0.000000, 49.683624 ], [ 1.337585, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.513123, 51.150063 ], [ 2.655945, 50.797255 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.150063 ], [ 2.655945, 50.797255 ], [ 3.122864, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.798279, 49.986552 ], [ 5.671692, 49.530557 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.018058 ], [ 8.025513, 48.922499 ], [ 7.918396, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.610710 ], [ 0.000000, 49.683624 ], [ 1.337585, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.513123, 51.150063 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.950867, 55.776573 ], [ 9.648743, 55.471070 ], [ 9.920654, 54.983918 ], [ 9.280701, 54.832336 ], [ 8.525391, 54.963425 ], [ 8.118896, 55.517747 ], [ 8.107910, 55.776573 ], [ 8.105164, 55.899956 ], [ 10.074463, 55.899956 ], [ 9.950867, 55.776573 ] ] ], [ [ [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.041260, 55.365064 ], [ 10.901184, 55.776573 ], [ 10.901184, 55.781207 ], [ 11.425781, 55.899956 ], [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.074463, 55.899956 ], [ 9.950867, 55.776573 ], [ 9.648743, 55.471070 ], [ 9.920654, 54.983918 ], [ 9.280701, 54.832336 ], [ 8.525391, 54.963425 ], [ 8.118896, 55.517747 ], [ 8.107910, 55.776573 ], [ 8.105164, 55.899956 ], [ 10.074463, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.041260, 55.365064 ], [ 10.901184, 55.776573 ], [ 10.901184, 55.781207 ], [ 11.425781, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.904907, 53.483143 ], [ 7.091675, 53.145123 ], [ 6.841736, 52.229482 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.155090, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.971313, 51.476251 ], [ 4.045715, 51.268789 ], [ 3.312378, 51.346054 ], [ 3.828735, 51.621427 ], [ 4.704895, 53.092375 ], [ 6.072693, 53.510918 ], [ 6.904907, 53.483143 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.072693, 53.510918 ], [ 6.904907, 53.483143 ], [ 7.091675, 53.145123 ], [ 6.841736, 52.229482 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.155090, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.971313, 51.476251 ], [ 4.045715, 51.268789 ], [ 3.312378, 51.346054 ], [ 3.828735, 51.621427 ], [ 4.704895, 53.092375 ], [ 6.072693, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.605774, 51.037940 ], [ 6.155090, 50.804199 ], [ 6.042480, 50.129382 ], [ 5.781555, 50.090631 ], [ 5.671692, 49.530557 ], [ 4.798279, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.122864, 50.781629 ], [ 2.655945, 50.797255 ], [ 2.513123, 51.150063 ], [ 3.312378, 51.346054 ], [ 4.045715, 51.268789 ], [ 4.971313, 51.476251 ], [ 5.605774, 51.037940 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.476251 ], [ 5.605774, 51.037940 ], [ 6.155090, 50.804199 ], [ 6.042480, 50.129382 ], [ 5.781555, 50.090631 ], [ 5.671692, 49.530557 ], [ 4.798279, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.122864, 50.781629 ], [ 2.655945, 50.797255 ], [ 2.513123, 51.150063 ], [ 3.312378, 51.346054 ], [ 4.045715, 51.268789 ], [ 4.971313, 51.476251 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.240234, 49.903480 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.671692, 49.530557 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.129382 ], [ 6.240234, 49.903480 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.129382 ], [ 6.240234, 49.903480 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.671692, 49.530557 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.129382 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.009383 ], [ 11.250000, 54.067448 ], [ 11.469727, 54.109333 ], [ 11.469727, 48.777913 ], [ 7.918396, 48.777913 ], [ 8.025513, 48.922499 ], [ 8.096924, 49.018058 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.903480 ], [ 6.042480, 50.129382 ], [ 6.155090, 50.804199 ], [ 5.987549, 51.852746 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.229482 ], [ 7.091675, 53.145123 ], [ 6.904907, 53.483143 ], [ 7.099915, 53.695080 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.528881 ], [ 8.800049, 54.022293 ], [ 8.572083, 54.396550 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.832336 ], [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.009383 ], [ 11.250000, 54.067448 ], [ 11.469727, 54.109333 ], [ 11.469727, 48.777913 ], [ 7.918396, 48.777913 ], [ 8.025513, 48.922499 ], [ 8.096924, 49.018058 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.903480 ], [ 6.042480, 50.129382 ], [ 6.155090, 50.804199 ], [ 5.987549, 51.852746 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.229482 ], [ 7.091675, 53.145123 ], [ 6.904907, 53.483143 ], [ 7.099915, 53.695080 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.528881 ], [ 8.800049, 54.022293 ], [ 8.572083, 54.396550 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 59.435300 ], [ 11.250000, 59.151995 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.379822, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.663579 ], [ 5.039978, 61.606396 ], [ 5.026245, 61.710706 ], [ 11.469727, 61.710706 ], [ 11.469727, 59.435300 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 61.710706 ], [ 11.469727, 59.435300 ], [ 11.250000, 59.151995 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.379822, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.663579 ], [ 5.039978, 61.606396 ], [ 5.026245, 61.710706 ], [ 11.469727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.652798 ], [ 10.942383, 55.652798 ], [ 10.901184, 55.776573 ], [ 10.901184, 55.781207 ], [ 11.250000, 55.861441 ], [ 11.469727, 55.910734 ], [ 11.469727, 55.652798 ] ] ], [ [ [ 10.544128, 57.216634 ], [ 10.247498, 56.891003 ], [ 10.368347, 56.610909 ], [ 10.912170, 56.459455 ], [ 10.667725, 56.082765 ], [ 10.368347, 56.191424 ], [ 9.950867, 55.776573 ], [ 9.827271, 55.652798 ], [ 8.110657, 55.652798 ], [ 8.107910, 55.776573 ], [ 8.088684, 56.541315 ], [ 8.256226, 56.811404 ], [ 8.541870, 57.110894 ], [ 9.423523, 57.173481 ], [ 9.775085, 57.449383 ], [ 10.579834, 57.730552 ], [ 10.544128, 57.216634 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.910734 ], [ 11.469727, 55.652798 ], [ 10.942383, 55.652798 ], [ 10.901184, 55.776573 ], [ 10.901184, 55.781207 ], [ 11.250000, 55.861441 ], [ 11.469727, 55.910734 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.544128, 57.216634 ], [ 10.247498, 56.891003 ], [ 10.368347, 56.610909 ], [ 10.912170, 56.459455 ], [ 10.667725, 56.082765 ], [ 10.368347, 56.191424 ], [ 9.950867, 55.776573 ], [ 9.827271, 55.652798 ], [ 8.110657, 55.652798 ], [ 8.107910, 55.776573 ], [ 8.088684, 56.541315 ], [ 8.256226, 56.811404 ], [ 8.541870, 57.110894 ], [ 9.423523, 57.173481 ], [ 9.775085, 57.449383 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 58.037189 ], [ 11.250000, 58.444858 ], [ 11.024780, 58.856383 ], [ 11.250000, 59.151995 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.435300 ], [ 11.469727, 58.037189 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 59.435300 ], [ 11.469727, 58.037189 ], [ 11.250000, 58.444858 ], [ 11.024780, 58.856383 ], [ 11.250000, 59.151995 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.435300 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 61.501734 ], [ 5.056458, 61.501734 ], [ 5.039978, 61.606396 ], [ 4.990540, 61.971234 ], [ 5.910645, 62.614825 ], [ 8.552856, 63.454192 ], [ 10.527649, 64.486993 ], [ 11.250000, 65.046650 ], [ 11.469727, 65.214137 ], [ 11.469727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 65.214137 ], [ 11.469727, 61.501734 ], [ 5.056458, 61.501734 ], [ 5.039978, 61.606396 ], [ 4.990540, 61.971234 ], [ 5.910645, 62.614825 ], [ 8.552856, 63.454192 ], [ 10.527649, 64.486993 ], [ 11.250000, 65.046650 ], [ 11.469727, 65.214137 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 78.765116 ], [ 11.250000, 78.857317 ], [ 11.219788, 78.869518 ], [ 10.923157, 79.171335 ], [ 10.881958, 79.212538 ], [ 11.469727, 79.212538 ], [ 11.469727, 78.765116 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 79.212538 ], [ 11.469727, 78.765116 ], [ 11.250000, 78.857317 ], [ 11.219788, 78.869518 ], [ 10.923157, 79.171335 ], [ 10.881958, 79.212538 ], [ 11.469727, 79.212538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 79.129976 ], [ 10.964355, 79.129976 ], [ 10.923157, 79.171335 ], [ 10.442505, 79.652708 ], [ 11.250000, 79.760191 ], [ 11.469727, 79.788958 ], [ 11.469727, 79.129976 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 79.788958 ], [ 11.469727, 79.129976 ], [ 10.964355, 79.129976 ], [ 10.923157, 79.171335 ], [ 10.442505, 79.652708 ], [ 11.250000, 79.760191 ], [ 11.469727, 79.788958 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -85.070048 ], [ 11.030273, -85.070048 ], [ 11.030273, -83.956169 ], [ 22.719727, -83.956169 ], [ 22.719727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -83.956169 ], [ 22.719727, -85.070048 ], [ 11.030273, -85.070048 ], [ 11.030273, -83.956169 ], [ 22.719727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -84.002262 ], [ 11.030273, -84.002262 ], [ 11.030273, -82.648222 ], [ 22.719727, -82.648222 ], [ 22.719727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -82.648222 ], [ 22.719727, -84.002262 ], [ 11.030273, -84.002262 ], [ 11.030273, -82.648222 ], [ 22.719727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -82.704241 ], [ 11.030273, -82.704241 ], [ 11.030273, -81.059130 ], [ 22.719727, -81.059130 ], [ 22.719727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -81.059130 ], [ 22.719727, -82.704241 ], [ 11.030273, -82.704241 ], [ 11.030273, -81.059130 ], [ 22.719727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -81.127169 ], [ 11.030273, -81.127169 ], [ 11.030273, -79.129976 ], [ 22.719727, -79.129976 ], [ 22.719727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -79.129976 ], [ 22.719727, -81.127169 ], [ 11.030273, -81.127169 ], [ 11.030273, -79.129976 ], [ 22.719727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -79.212538 ], [ 11.030273, -79.212538 ], [ 11.030273, -76.790701 ], [ 22.719727, -76.790701 ], [ 22.719727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -76.790701 ], [ 22.719727, -79.212538 ], [ 11.030273, -79.212538 ], [ 11.030273, -76.790701 ], [ 22.719727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -76.890745 ], [ 11.030273, -76.890745 ], [ 11.030273, -73.958939 ], [ 22.719727, -73.958939 ], [ 22.719727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -73.958939 ], [ 22.719727, -76.890745 ], [ 11.030273, -76.890745 ], [ 11.030273, -73.958939 ], [ 22.719727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, -70.612614 ], [ 22.500000, -70.664516 ], [ 22.568665, -70.696320 ], [ 22.719727, -70.671790 ], [ 22.719727, -74.079925 ], [ 11.030273, -74.079925 ], [ 11.030273, -70.796850 ], [ 11.250000, -70.758871 ], [ 11.953125, -70.638127 ], [ 11.980591, -70.612614 ], [ 12.065735, -70.539543 ], [ 22.219849, -70.539543 ], [ 22.381897, -70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.219849, -70.539543 ], [ 22.381897, -70.612614 ], [ 22.500000, -70.664516 ], [ 22.568665, -70.696320 ], [ 22.719727, -70.671790 ], [ 22.719727, -74.079925 ], [ 11.030273, -74.079925 ], [ 11.030273, -70.796850 ], [ 11.250000, -70.758871 ], [ 11.953125, -70.638127 ], [ 11.980591, -70.612614 ], [ 12.065735, -70.539543 ], [ 22.219849, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, -70.671790 ], [ 22.719727, -70.685421 ], [ 22.634583, -70.685421 ], [ 22.719727, -70.671790 ] ] ], [ [ [ 19.259033, -69.893509 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.920471, -70.402742 ], [ 22.381897, -70.612614 ], [ 22.543945, -70.685421 ], [ 11.678467, -70.685421 ], [ 11.953125, -70.638127 ], [ 11.980591, -70.612614 ], [ 12.403564, -70.246460 ], [ 13.422546, -69.971730 ], [ 14.732666, -70.030908 ], [ 15.125427, -70.402742 ], [ 15.946655, -70.030908 ], [ 17.026062, -69.913328 ], [ 18.201599, -69.873672 ], [ 19.259033, -69.893509 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.201599, -69.873672 ], [ 19.259033, -69.893509 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.920471, -70.402742 ], [ 22.381897, -70.612614 ], [ 22.543945, -70.685421 ], [ 11.678467, -70.685421 ], [ 11.953125, -70.638127 ], [ 11.980591, -70.612614 ], [ 12.403564, -70.246460 ], [ 13.422546, -69.971730 ], [ 14.732666, -70.030908 ], [ 15.125427, -70.402742 ], [ 15.946655, -70.030908 ], [ 17.026062, -69.913328 ], [ 18.201599, -69.873672 ] ] ], [ [ [ 22.719727, -70.685421 ], [ 22.634583, -70.685421 ], [ 22.719727, -70.671790 ], [ 22.719727, -70.685421 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -33.881817 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.888658 ], [ 21.541443, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.069275, -34.793506 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.855286, -34.443159 ], [ 18.424072, -33.995750 ], [ 18.377380, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.609303 ], [ 18.245544, -32.428658 ], [ 18.229065, -31.952162 ], [ 18.223572, -31.765537 ], [ 22.719727, -31.765537 ], [ 22.719727, -33.881817 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -31.765537 ], [ 22.719727, -33.881817 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.888658 ], [ 21.541443, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.069275, -34.793506 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.855286, -34.443159 ], [ 18.424072, -33.995750 ], [ 18.377380, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.609303 ], [ 18.245544, -32.428658 ], [ 18.229065, -31.952162 ], [ 18.223572, -31.765537 ], [ 22.719727, -31.765537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.813058 ], [ 19.893494, -21.848753 ], [ 19.893494, -28.459033 ], [ 19.000854, -28.972104 ], [ 18.462524, -29.044164 ], [ 17.833557, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.218323, -28.355151 ], [ 16.822815, -28.081674 ], [ 16.344910, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.207825, -27.090918 ], [ 14.988098, -26.115986 ], [ 14.740906, -25.391179 ], [ 14.405823, -23.850674 ], [ 14.383850, -22.654572 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.905945, -21.739091 ], [ 20.879517, -21.739091 ], [ 20.879517, -21.813058 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.739091 ], [ 20.879517, -21.813058 ], [ 19.893494, -21.848753 ], [ 19.893494, -28.459033 ], [ 19.000854, -28.972104 ], [ 18.462524, -29.044164 ], [ 17.833557, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.218323, -28.355151 ], [ 16.822815, -28.081674 ], [ 16.344910, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.207825, -27.090918 ], [ 14.988098, -26.115986 ], [ 14.740906, -25.391179 ], [ 14.405823, -23.850674 ], [ 14.383850, -22.654572 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.905945, -21.739091 ], [ 20.879517, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -25.700938 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.024702 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.887756, -26.826522 ], [ 20.665283, -26.475490 ], [ 20.755920, -25.866638 ], [ 20.165405, -24.916331 ], [ 19.893494, -24.766785 ], [ 19.893494, -21.848753 ], [ 20.879517, -21.813058 ], [ 20.879517, -21.739091 ], [ 22.719727, -21.739091 ], [ 22.719727, -25.700938 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -21.739091 ], [ 22.719727, -25.700938 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.024702 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.887756, -26.826522 ], [ 20.665283, -26.475490 ], [ 20.755920, -25.866638 ], [ 20.165405, -24.916331 ], [ 19.893494, -24.766785 ], [ 19.893494, -21.848753 ], [ 20.879517, -21.813058 ], [ 20.879517, -21.739091 ], [ 22.719727, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.165405, -24.916331 ], [ 20.755920, -25.866638 ], [ 20.665283, -26.475490 ], [ 20.887756, -26.826522 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.024702 ], [ 22.576904, -25.977799 ], [ 22.719727, -25.700938 ], [ 22.719727, -32.138409 ], [ 18.234558, -32.138409 ], [ 18.229065, -31.952162 ], [ 18.220825, -31.660395 ], [ 17.564392, -30.725310 ], [ 17.061768, -29.876374 ], [ 16.344910, -28.574874 ], [ 16.822815, -28.081674 ], [ 17.218323, -28.355151 ], [ 17.385864, -28.782104 ], [ 17.833557, -28.854296 ], [ 18.462524, -29.044164 ], [ 19.000854, -28.972104 ], [ 19.893494, -28.459033 ], [ 19.893494, -24.766785 ], [ 20.165405, -24.916331 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.893494, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.755920, -25.866638 ], [ 20.665283, -26.475490 ], [ 20.887756, -26.826522 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.024702 ], [ 22.576904, -25.977799 ], [ 22.719727, -25.700938 ], [ 22.719727, -32.138409 ], [ 18.234558, -32.138409 ], [ 18.229065, -31.952162 ], [ 18.220825, -31.660395 ], [ 17.564392, -30.725310 ], [ 17.061768, -29.876374 ], [ 16.344910, -28.574874 ], [ 16.822815, -28.081674 ], [ 17.218323, -28.355151 ], [ 17.385864, -28.782104 ], [ 17.833557, -28.854296 ], [ 18.462524, -29.044164 ], [ 19.000854, -28.972104 ], [ 19.893494, -28.459033 ], [ 19.893494, -24.766785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -11.008601 ], [ 22.401123, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.156677, -10.962764 ], [ 22.719727, -10.962764 ], [ 22.719727, -11.008601 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.008601 ], [ 22.401123, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.156677, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.153931, -11.084080 ], [ 22.401123, -10.992424 ], [ 22.719727, -11.008601 ], [ 22.719727, -12.900166 ], [ 22.500000, -12.900166 ], [ 21.931458, -12.897489 ], [ 21.887512, -16.080125 ], [ 22.500000, -16.822945 ], [ 22.560425, -16.896544 ], [ 22.719727, -17.048907 ], [ 22.719727, -17.628317 ], [ 22.500000, -17.678045 ], [ 21.376648, -17.929089 ], [ 18.954163, -17.787920 ], [ 18.262024, -17.308688 ], [ 14.208069, -17.350638 ], [ 14.057007, -17.421408 ], [ 13.460999, -16.970114 ], [ 12.812805, -16.941215 ], [ 12.214050, -17.109293 ], [ 11.733398, -17.300821 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.175598, -14.447979 ], [ 12.499695, -13.547211 ], [ 12.735901, -13.135654 ], [ 13.312683, -12.482169 ], [ 13.631287, -12.036634 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.705444, -10.962764 ], [ 22.156677, -10.962764 ], [ 22.153931, -11.084080 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.156677, -10.962764 ], [ 22.153931, -11.084080 ], [ 22.401123, -10.992424 ], [ 22.719727, -11.008601 ], [ 22.719727, -12.900166 ], [ 22.500000, -12.900166 ], [ 21.931458, -12.897489 ], [ 21.887512, -16.080125 ], [ 22.500000, -16.822945 ], [ 22.560425, -16.896544 ], [ 22.719727, -17.048907 ], [ 22.719727, -17.628317 ], [ 22.500000, -17.678045 ], [ 21.376648, -17.929089 ], [ 18.954163, -17.787920 ], [ 18.262024, -17.308688 ], [ 14.208069, -17.350638 ], [ 14.057007, -17.421408 ], [ 13.460999, -16.970114 ], [ 12.812805, -16.941215 ], [ 12.214050, -17.109293 ], [ 11.733398, -17.300821 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.175598, -14.447979 ], [ 12.499695, -13.547211 ], [ 12.735901, -13.135654 ], [ 13.312683, -12.482169 ], [ 13.631287, -12.036634 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.705444, -10.962764 ], [ 22.156677, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.460999, -16.970114 ], [ 14.057007, -17.421408 ], [ 14.208069, -17.350638 ], [ 18.262024, -17.308688 ], [ 18.954163, -17.787920 ], [ 21.376648, -17.929089 ], [ 22.500000, -17.678045 ], [ 22.719727, -17.628317 ], [ 22.719727, -17.976121 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.909729, -18.250220 ], [ 20.879517, -21.813058 ], [ 19.893494, -21.848753 ], [ 19.893494, -22.146708 ], [ 14.263000, -22.146708 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.867493, -21.698265 ], [ 13.351135, -20.871644 ], [ 12.826538, -19.671039 ], [ 12.606812, -19.043945 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.300821 ], [ 12.214050, -17.109293 ], [ 12.812805, -16.941215 ], [ 13.460999, -16.970114 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.812805, -16.941215 ], [ 13.460999, -16.970114 ], [ 14.057007, -17.421408 ], [ 14.208069, -17.350638 ], [ 18.262024, -17.308688 ], [ 18.954163, -17.787920 ], [ 21.376648, -17.929089 ], [ 22.500000, -17.678045 ], [ 22.719727, -17.628317 ], [ 22.719727, -17.976121 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.909729, -18.250220 ], [ 20.879517, -21.813058 ], [ 19.893494, -21.848753 ], [ 19.893494, -22.146708 ], [ 14.263000, -22.146708 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.867493, -21.698265 ], [ 13.351135, -20.871644 ], [ 12.826538, -19.671039 ], [ 12.606812, -19.043945 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.300821 ], [ 12.214050, -17.109293 ], [ 12.812805, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, -12.900166 ], [ 22.719727, -12.900166 ], [ 22.719727, -17.048907 ], [ 22.560425, -16.896544 ], [ 22.500000, -16.822945 ], [ 21.887512, -16.080125 ], [ 21.931458, -12.897489 ], [ 22.500000, -12.900166 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.931458, -12.897489 ], [ 22.500000, -12.900166 ], [ 22.719727, -12.900166 ], [ 22.719727, -17.048907 ], [ 22.560425, -16.896544 ], [ 22.500000, -16.822945 ], [ 21.887512, -16.080125 ], [ 21.931458, -12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -22.146708 ], [ 19.893494, -22.146708 ], [ 19.893494, -21.848753 ], [ 20.879517, -21.813058 ], [ 20.909729, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.719727, -17.976121 ], [ 22.719727, -22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -17.976121 ], [ 22.719727, -22.146708 ], [ 19.893494, -22.146708 ], [ 19.893494, -21.848753 ], [ 20.879517, -21.813058 ], [ 20.909729, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.719727, -17.976121 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.842773, 0.041199 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.331972 ], [ 14.298706, -1.996361 ], [ 13.991089, -2.468413 ], [ 13.109436, -2.427252 ], [ 12.573853, -1.946952 ], [ 12.494202, -2.391578 ], [ 11.818542, -2.512317 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.861514 ], [ 11.093445, -3.976601 ], [ 11.030273, -3.913579 ], [ 11.030273, 0.219726 ], [ 13.905945, 0.219726 ], [ 13.842773, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.905945, 0.219726 ], [ 13.842773, 0.041199 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.331972 ], [ 14.298706, -1.996361 ], [ 13.991089, -2.468413 ], [ 13.109436, -2.427252 ], [ 12.573853, -1.946952 ], [ 12.494202, -2.391578 ], [ 11.818542, -2.512317 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.861514 ], [ 11.093445, -3.976601 ], [ 11.030273, -3.913579 ], [ 11.030273, 0.219726 ], [ 13.905945, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.687988, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.405334, -1.738320 ], [ 15.971375, -2.709866 ], [ 16.004333, -3.532611 ], [ 15.751648, -3.853293 ], [ 15.169373, -4.340934 ], [ 14.581604, -4.967824 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.507976 ], [ 13.598328, -4.499762 ], [ 13.257751, -4.880258 ], [ 12.994080, -4.778995 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.250000, -4.176594 ], [ 11.093445, -3.976601 ], [ 11.250000, -3.861514 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.818542, -2.512317 ], [ 12.494202, -2.391578 ], [ 12.573853, -1.946952 ], [ 13.109436, -2.427252 ], [ 13.991089, -2.468413 ], [ 14.298706, -1.996361 ], [ 14.425049, -1.331972 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.041199 ], [ 13.905945, 0.219726 ], [ 17.789612, 0.219726 ], [ 17.687988, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.789612, 0.219726 ], [ 17.687988, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.405334, -1.738320 ], [ 15.971375, -2.709866 ], [ 16.004333, -3.532611 ], [ 15.751648, -3.853293 ], [ 15.169373, -4.340934 ], [ 14.581604, -4.967824 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.507976 ], [ 13.598328, -4.499762 ], [ 13.257751, -4.880258 ], [ 12.994080, -4.778995 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.250000, -4.176594 ], [ 11.093445, -3.976601 ], [ 11.250000, -3.861514 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.818542, -2.512317 ], [ 12.494202, -2.391578 ], [ 12.573853, -1.946952 ], [ 13.109436, -2.427252 ], [ 13.991089, -2.468413 ], [ 14.298706, -1.996361 ], [ 14.425049, -1.331972 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.041199 ], [ 13.905945, 0.219726 ], [ 17.789612, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -11.008601 ], [ 22.500000, -10.997816 ], [ 22.401123, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.206116, -9.893099 ], [ 21.873779, -9.522206 ], [ 21.799622, -8.906780 ], [ 21.947937, -8.303906 ], [ 21.744690, -7.917793 ], [ 21.725464, -7.288914 ], [ 20.514221, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.091248, -6.942786 ], [ 20.036316, -7.114520 ], [ 19.415588, -7.155400 ], [ 19.165649, -7.735487 ], [ 19.014587, -7.985798 ], [ 18.462524, -7.844336 ], [ 18.132935, -7.985798 ], [ 17.471008, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.875600 ], [ 13.373108, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.963022 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.788164 ], [ 12.436523, -5.681584 ], [ 12.466736, -5.246863 ], [ 12.631531, -4.989714 ], [ 12.994080, -4.778995 ], [ 13.257751, -4.880258 ], [ 13.598328, -4.499762 ], [ 14.144897, -4.507976 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.967824 ], [ 15.169373, -4.340934 ], [ 15.751648, -3.853293 ], [ 16.004333, -3.532611 ], [ 15.971375, -2.709866 ], [ 16.405334, -1.738320 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.663269, -0.057678 ], [ 17.687988, 0.000000 ], [ 17.789612, 0.219726 ], [ 22.719727, 0.219726 ], [ 22.719727, -11.008601 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.008601 ], [ 22.500000, -10.997816 ], [ 22.401123, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.206116, -9.893099 ], [ 21.873779, -9.522206 ], [ 21.799622, -8.906780 ], [ 21.947937, -8.303906 ], [ 21.744690, -7.917793 ], [ 21.725464, -7.288914 ], [ 20.514221, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.091248, -6.942786 ], [ 20.036316, -7.114520 ], [ 19.415588, -7.155400 ], [ 19.165649, -7.735487 ], [ 19.014587, -7.985798 ], [ 18.462524, -7.844336 ], [ 18.132935, -7.985798 ], [ 17.471008, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.875600 ], [ 13.373108, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.963022 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.788164 ], [ 12.436523, -5.681584 ], [ 12.466736, -5.246863 ], [ 12.631531, -4.989714 ], [ 12.994080, -4.778995 ], [ 13.257751, -4.880258 ], [ 13.598328, -4.499762 ], [ 14.144897, -4.507976 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.967824 ], [ 15.169373, -4.340934 ], [ 15.751648, -3.853293 ], [ 16.004333, -3.532611 ], [ 15.971375, -2.709866 ], [ 16.405334, -1.738320 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.663269, -0.057678 ], [ 17.687988, 0.000000 ], [ 17.789612, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.875600 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.089233, -7.544933 ], [ 17.471008, -8.067388 ], [ 18.132935, -7.985798 ], [ 18.462524, -7.844336 ], [ 19.014587, -7.985798 ], [ 19.165649, -7.735487 ], [ 19.415588, -7.155400 ], [ 20.036316, -7.114520 ], [ 20.091248, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.514221, -7.297088 ], [ 21.725464, -7.288914 ], [ 21.744690, -7.917793 ], [ 21.947937, -8.303906 ], [ 21.799622, -8.906780 ], [ 21.873779, -9.522206 ], [ 22.206116, -9.893099 ], [ 22.153931, -11.084080 ], [ 22.401123, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.008601 ], [ 22.719727, -11.393879 ], [ 13.721924, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.371660 ], [ 13.120422, -9.765904 ], [ 12.873230, -9.164467 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.930908, -7.593940 ], [ 12.727661, -6.926427 ], [ 12.225037, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.733154, -5.963022 ], [ 13.024292, -5.982144 ], [ 13.373108, -5.861939 ], [ 16.325684, -5.875600 ] ] ], [ [ [ 12.994080, -4.778995 ], [ 12.631531, -4.989714 ], [ 12.466736, -5.246863 ], [ 12.436523, -5.681584 ], [ 12.181091, -5.788164 ], [ 11.914673, -5.036227 ], [ 12.318420, -4.603803 ], [ 12.620544, -4.436782 ], [ 12.994080, -4.778995 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.373108, -5.861939 ], [ 16.325684, -5.875600 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.089233, -7.544933 ], [ 17.471008, -8.067388 ], [ 18.132935, -7.985798 ], [ 18.462524, -7.844336 ], [ 19.014587, -7.985798 ], [ 19.165649, -7.735487 ], [ 19.415588, -7.155400 ], [ 20.036316, -7.114520 ], [ 20.091248, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.514221, -7.297088 ], [ 21.725464, -7.288914 ], [ 21.744690, -7.917793 ], [ 21.947937, -8.303906 ], [ 21.799622, -8.906780 ], [ 21.873779, -9.522206 ], [ 22.206116, -9.893099 ], [ 22.153931, -11.084080 ], [ 22.401123, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.008601 ], [ 22.719727, -11.393879 ], [ 13.721924, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.371660 ], [ 13.120422, -9.765904 ], [ 12.873230, -9.164467 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.930908, -7.593940 ], [ 12.727661, -6.926427 ], [ 12.225037, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.733154, -5.963022 ], [ 13.024292, -5.982144 ], [ 13.373108, -5.861939 ] ] ], [ [ [ 12.620544, -4.436782 ], [ 12.994080, -4.778995 ], [ 12.631531, -4.989714 ], [ 12.466736, -5.246863 ], [ 12.436523, -5.681584 ], [ 12.181091, -5.788164 ], [ 11.914673, -5.036227 ], [ 12.318420, -4.603803 ], [ 12.620544, -4.436782 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.980103, 11.178402 ], [ 13.570862, 10.800933 ], [ 13.307190, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.952881, 9.419258 ], [ 12.752380, 8.719503 ], [ 12.216797, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.837769, 7.397877 ], [ 11.744385, 6.983681 ], [ 11.250000, 6.740986 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.667336 ], [ 11.030273, 11.393879 ], [ 14.216309, 11.393879 ], [ 13.980103, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.216309, 11.393879 ], [ 13.980103, 11.178402 ], [ 13.570862, 10.800933 ], [ 13.307190, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.952881, 9.419258 ], [ 12.752380, 8.719503 ], [ 12.216797, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.837769, 7.397877 ], [ 11.744385, 6.983681 ], [ 11.250000, 6.740986 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.667336 ], [ 11.030273, 11.393879 ], [ 14.216309, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.265340 ], [ 11.274719, 2.262595 ], [ 11.282959, 1.060120 ], [ 11.250000, 1.062866 ], [ 11.030273, 1.062866 ], [ 11.030273, 2.268084 ], [ 11.250000, 2.265340 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 2.268084 ], [ 11.250000, 2.265340 ], [ 11.274719, 2.262595 ], [ 11.282959, 1.060120 ], [ 11.250000, 1.062866 ], [ 11.030273, 1.062866 ], [ 11.030273, 2.268084 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.105642 ], [ 22.500000, 11.046343 ], [ 22.230835, 10.973550 ], [ 21.722717, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.058289, 9.015302 ], [ 19.091492, 9.074976 ], [ 18.811340, 8.985462 ], [ 18.910217, 8.632619 ], [ 18.388367, 8.282163 ], [ 17.962646, 7.893309 ], [ 16.704712, 7.509535 ], [ 16.454773, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.798225 ], [ 14.543152, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.169617, 10.022948 ], [ 14.625549, 9.922860 ], [ 14.908447, 9.993196 ], [ 15.466003, 9.982376 ], [ 14.922180, 10.892648 ], [ 14.935913, 11.178402 ], [ 14.946899, 11.393879 ], [ 22.719727, 11.393879 ], [ 22.719727, 11.105642 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.105642 ], [ 22.500000, 11.046343 ], [ 22.230835, 10.973550 ], [ 21.722717, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.058289, 9.015302 ], [ 19.091492, 9.074976 ], [ 18.811340, 8.985462 ], [ 18.910217, 8.632619 ], [ 18.388367, 8.282163 ], [ 17.962646, 7.893309 ], [ 16.704712, 7.509535 ], [ 16.454773, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.798225 ], [ 14.543152, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.169617, 10.022948 ], [ 14.625549, 9.922860 ], [ 14.908447, 9.993196 ], [ 15.466003, 9.982376 ], [ 14.922180, 10.892648 ], [ 14.935913, 11.178402 ], [ 14.946899, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.935913, 11.178402 ], [ 14.922180, 10.892648 ], [ 15.466003, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.625549, 9.922860 ], [ 14.169617, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.694661 ], [ 15.279236, 7.422389 ], [ 14.773865, 6.410837 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.477234, 4.735201 ], [ 14.949646, 4.212204 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.861511, 3.014356 ], [ 15.905457, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.938416, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.356873, 2.193983 ], [ 11.749878, 2.328460 ], [ 11.274719, 2.262595 ], [ 11.250000, 2.265340 ], [ 11.030273, 2.268084 ], [ 11.030273, 6.667336 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.740986 ], [ 11.744385, 6.983681 ], [ 11.837769, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.216797, 8.306624 ], [ 12.752380, 8.719503 ], [ 12.952881, 9.419258 ], [ 13.167114, 9.641369 ], [ 13.307190, 10.160857 ], [ 13.570862, 10.800933 ], [ 13.980103, 11.178402 ], [ 14.216309, 11.393879 ], [ 14.946899, 11.393879 ], [ 14.935913, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.946899, 11.393879 ], [ 14.935913, 11.178402 ], [ 14.922180, 10.892648 ], [ 15.466003, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.625549, 9.922860 ], [ 14.169617, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.694661 ], [ 15.279236, 7.422389 ], [ 14.773865, 6.410837 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.477234, 4.735201 ], [ 14.949646, 4.212204 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.861511, 3.014356 ], [ 15.905457, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.938416, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.356873, 2.193983 ], [ 11.749878, 2.328460 ], [ 11.274719, 2.262595 ], [ 11.250000, 2.265340 ], [ 11.030273, 2.268084 ], [ 11.030273, 6.667336 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.740986 ], [ 11.744385, 6.983681 ], [ 11.837769, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.216797, 8.306624 ], [ 12.752380, 8.719503 ], [ 12.952881, 9.419258 ], [ 13.167114, 9.641369 ], [ 13.307190, 10.160857 ], [ 13.570862, 10.800933 ], [ 13.980103, 11.178402 ], [ 14.216309, 11.393879 ], [ 14.946899, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 4.644867 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.225900 ], [ 22.403870, 4.031399 ], [ 21.656799, 4.225900 ], [ 20.926208, 4.324501 ], [ 20.289001, 4.694142 ], [ 19.467773, 5.033491 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.203986 ], [ 18.451538, 3.505197 ], [ 17.808838, 3.562765 ], [ 17.130432, 3.729968 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.905457, 2.558963 ], [ 15.861511, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.949646, 4.212204 ], [ 14.477234, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.773865, 6.410837 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.289978, 7.754537 ], [ 16.454773, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.893309 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.632619 ], [ 18.811340, 8.985462 ], [ 19.091492, 9.074976 ], [ 20.058289, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.046343 ], [ 22.719727, 11.105642 ], [ 22.719727, 4.644867 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.105642 ], [ 22.719727, 4.644867 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.225900 ], [ 22.403870, 4.031399 ], [ 21.656799, 4.225900 ], [ 20.926208, 4.324501 ], [ 20.289001, 4.694142 ], [ 19.467773, 5.033491 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.203986 ], [ 18.451538, 3.505197 ], [ 17.808838, 3.562765 ], [ 17.130432, 3.729968 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.905457, 2.558963 ], [ 15.861511, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.949646, 4.212204 ], [ 14.477234, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.773865, 6.410837 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.289978, 7.754537 ], [ 16.454773, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.893309 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.632619 ], [ 18.811340, 8.985462 ], [ 19.091492, 9.074976 ], [ 20.058289, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.046343 ], [ 22.719727, 11.105642 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.356873, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.024048, 1.397872 ], [ 14.273987, 1.197423 ], [ 13.842773, 0.041199 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.062866 ], [ 11.250000, 1.062866 ], [ 11.282959, 1.060120 ], [ 11.274719, 2.262595 ], [ 11.749878, 2.328460 ], [ 12.356873, 2.193983 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.356873, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.024048, 1.397872 ], [ 14.273987, 1.197423 ], [ 13.842773, 0.041199 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.062866 ], [ 11.250000, 1.062866 ], [ 11.282959, 1.060120 ], [ 11.274719, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 3.562765 ], [ 18.451538, 3.505197 ], [ 18.391113, 2.901896 ], [ 18.091736, 2.366880 ], [ 17.896729, 1.743810 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.041199 ], [ 14.273987, 1.197423 ], [ 14.024048, 1.397872 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.938416, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.130432, 3.729968 ], [ 17.808838, 3.562765 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.130432, 3.729968 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.505197 ], [ 18.391113, 2.901896 ], [ 18.091736, 2.366880 ], [ 17.896729, 1.743810 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.041199 ], [ 14.273987, 1.197423 ], [ 14.024048, 1.397872 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.938416, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.130432, 3.729968 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.289001, 4.694142 ], [ 20.926208, 4.324501 ], [ 21.656799, 4.225900 ], [ 22.403870, 4.031399 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.644867 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.773132, 0.856902 ], [ 17.896729, 1.743810 ], [ 18.091736, 2.366880 ], [ 18.391113, 2.901896 ], [ 18.451538, 3.505197 ], [ 18.542175, 4.203986 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.033491 ], [ 20.289001, 4.694142 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.033491 ], [ 20.289001, 4.694142 ], [ 20.926208, 4.324501 ], [ 21.656799, 4.225900 ], [ 22.403870, 4.031399 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.644867 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.773132, 0.856902 ], [ 17.896729, 1.743810 ], [ 18.091736, 2.366880 ], [ 18.391113, 2.901896 ], [ 18.451538, 3.505197 ], [ 18.542175, 4.203986 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.033491 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 20.120419 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.496519 ], [ 18.918457, 21.943046 ], [ 18.495483, 22.146708 ], [ 22.719727, 22.146708 ], [ 22.719727, 20.120419 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 22.146708 ], [ 22.719727, 20.120419 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.496519 ], [ 18.918457, 21.943046 ], [ 18.495483, 22.146708 ], [ 22.719727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.993591, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.388400 ], [ 15.685730, 19.957860 ], [ 15.298462, 17.929089 ], [ 15.246277, 16.628297 ], [ 13.971863, 15.686510 ], [ 13.537903, 14.368173 ], [ 13.955383, 13.998037 ], [ 13.952637, 13.354882 ], [ 14.595337, 13.330830 ], [ 14.493713, 12.860004 ], [ 14.210815, 12.803767 ], [ 14.180603, 12.484850 ], [ 13.993835, 12.463396 ], [ 13.318176, 13.557892 ], [ 13.081970, 13.597939 ], [ 12.301941, 13.039345 ], [ 11.527405, 13.330830 ], [ 11.250000, 13.362899 ], [ 11.030273, 13.386948 ], [ 11.030273, 22.146708 ], [ 14.960632, 22.146708 ], [ 14.993591, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.960632, 22.146708 ], [ 14.993591, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.388400 ], [ 15.685730, 19.957860 ], [ 15.298462, 17.929089 ], [ 15.246277, 16.628297 ], [ 13.971863, 15.686510 ], [ 13.537903, 14.368173 ], [ 13.955383, 13.998037 ], [ 13.952637, 13.354882 ], [ 14.595337, 13.330830 ], [ 14.493713, 12.860004 ], [ 14.210815, 12.803767 ], [ 14.180603, 12.484850 ], [ 13.993835, 12.463396 ], [ 13.318176, 13.557892 ], [ 13.081970, 13.597939 ], [ 12.301941, 13.039345 ], [ 11.527405, 13.330830 ], [ 11.250000, 13.362899 ], [ 11.030273, 13.386948 ], [ 11.030273, 22.146708 ], [ 14.960632, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.318176, 13.557892 ], [ 13.993835, 12.463396 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.087667 ], [ 14.466248, 11.904979 ], [ 14.414062, 11.574216 ], [ 13.980103, 11.178402 ], [ 13.746643, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.386948 ], [ 11.250000, 13.362899 ], [ 11.527405, 13.330830 ], [ 12.301941, 13.039345 ], [ 13.081970, 13.597939 ], [ 13.318176, 13.557892 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.081970, 13.597939 ], [ 13.318176, 13.557892 ], [ 13.993835, 12.463396 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.087667 ], [ 14.466248, 11.904979 ], [ 14.414062, 11.574216 ], [ 13.980103, 11.178402 ], [ 13.746643, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.386948 ], [ 11.250000, 13.362899 ], [ 11.527405, 13.330830 ], [ 12.301941, 13.039345 ], [ 13.081970, 13.597939 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.918457, 21.943046 ], [ 19.846802, 21.496519 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.194085 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.085965 ], [ 22.181396, 13.787404 ], [ 22.294006, 13.373588 ], [ 22.035828, 12.956383 ], [ 21.934204, 12.589413 ], [ 22.285767, 12.648378 ], [ 22.497253, 12.262180 ], [ 22.508240, 11.681825 ], [ 22.719727, 11.512322 ], [ 22.719727, 11.105642 ], [ 22.230835, 10.973550 ], [ 22.217102, 10.962764 ], [ 14.924927, 10.962764 ], [ 14.935913, 11.178402 ], [ 14.957886, 11.558071 ], [ 14.891968, 12.219233 ], [ 14.493713, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.354882 ], [ 13.955383, 13.998037 ], [ 13.537903, 14.368173 ], [ 13.971863, 15.686510 ], [ 15.246277, 16.628297 ], [ 15.298462, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.993591, 21.943046 ], [ 14.960632, 22.146708 ], [ 18.495483, 22.146708 ], [ 18.918457, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.495483, 22.146708 ], [ 18.918457, 21.943046 ], [ 19.846802, 21.496519 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.194085 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.085965 ], [ 22.181396, 13.787404 ], [ 22.294006, 13.373588 ], [ 22.035828, 12.956383 ], [ 21.934204, 12.589413 ], [ 22.285767, 12.648378 ], [ 22.497253, 12.262180 ], [ 22.508240, 11.681825 ], [ 22.719727, 11.512322 ], [ 22.719727, 11.105642 ], [ 22.230835, 10.973550 ], [ 22.217102, 10.962764 ], [ 14.924927, 10.962764 ], [ 14.935913, 11.178402 ], [ 14.957886, 11.558071 ], [ 14.891968, 12.219233 ], [ 14.493713, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.354882 ], [ 13.955383, 13.998037 ], [ 13.537903, 14.368173 ], [ 13.971863, 15.686510 ], [ 15.246277, 16.628297 ], [ 15.298462, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.993591, 21.943046 ], [ 14.960632, 22.146708 ], [ 18.495483, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.891968, 12.219233 ], [ 14.957886, 11.558071 ], [ 14.935913, 11.178402 ], [ 14.924927, 10.962764 ], [ 13.746643, 10.962764 ], [ 13.980103, 11.178402 ], [ 14.414062, 11.574216 ], [ 14.466248, 11.904979 ], [ 14.576111, 12.087667 ], [ 14.180603, 12.484850 ], [ 14.210815, 12.803767 ], [ 14.493713, 12.860004 ], [ 14.891968, 12.219233 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.493713, 12.860004 ], [ 14.891968, 12.219233 ], [ 14.957886, 11.558071 ], [ 14.935913, 11.178402 ], [ 14.924927, 10.962764 ], [ 13.746643, 10.962764 ], [ 13.980103, 11.178402 ], [ 14.414062, 11.574216 ], [ 14.466248, 11.904979 ], [ 14.576111, 12.087667 ], [ 14.180603, 12.484850 ], [ 14.210815, 12.803767 ], [ 14.493713, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 10.962764 ], [ 22.217102, 10.962764 ], [ 22.230835, 10.973550 ], [ 22.719727, 11.105642 ], [ 22.719727, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.105642 ], [ 22.719727, 10.962764 ], [ 22.217102, 10.962764 ], [ 22.230835, 10.973550 ], [ 22.719727, 11.105642 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.512322 ], [ 22.508240, 11.681825 ], [ 22.497253, 12.262180 ], [ 22.285767, 12.648378 ], [ 21.934204, 12.589413 ], [ 22.035828, 12.956383 ], [ 22.294006, 13.373588 ], [ 22.181396, 13.787404 ], [ 22.500000, 14.085965 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.719727, 15.194085 ], [ 22.719727, 11.512322 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 15.194085 ], [ 22.719727, 11.512322 ], [ 22.508240, 11.681825 ], [ 22.497253, 12.262180 ], [ 22.285767, 12.648378 ], [ 21.934204, 12.589413 ], [ 22.035828, 12.956383 ], [ 22.294006, 13.373588 ], [ 22.181396, 13.787404 ], [ 22.500000, 14.085965 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.719727, 15.194085 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 24.282020 ], [ 11.560364, 24.099126 ], [ 11.997070, 23.473324 ], [ 11.250000, 23.062043 ], [ 11.030273, 22.940689 ], [ 11.030273, 24.412140 ], [ 11.250000, 24.282020 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 24.412140 ], [ 11.250000, 24.282020 ], [ 11.560364, 24.099126 ], [ 11.997070, 23.473324 ], [ 11.250000, 23.062043 ], [ 11.030273, 22.940689 ], [ 11.030273, 24.412140 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.408325, 31.952162 ], [ 15.713196, 31.377089 ], [ 16.611328, 31.182259 ], [ 18.020325, 30.765439 ], [ 19.085999, 30.268556 ], [ 19.572144, 30.526779 ], [ 20.052795, 30.987028 ], [ 19.819336, 31.753861 ], [ 19.945679, 31.952162 ], [ 20.066528, 32.138409 ], [ 22.719727, 32.138409 ], [ 22.719727, 21.739091 ], [ 19.341431, 21.739091 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.410327 ], [ 14.850769, 22.864787 ], [ 14.142151, 22.492257 ], [ 13.579102, 23.041825 ], [ 11.997070, 23.473324 ], [ 11.560364, 24.099126 ], [ 11.250000, 24.282020 ], [ 11.030273, 24.412140 ], [ 11.030273, 32.136083 ], [ 11.035767, 32.138409 ], [ 15.309448, 32.138409 ], [ 15.408325, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 32.138409 ], [ 22.719727, 21.739091 ], [ 19.341431, 21.739091 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.410327 ], [ 14.850769, 22.864787 ], [ 14.142151, 22.492257 ], [ 13.579102, 23.041825 ], [ 11.997070, 23.473324 ], [ 11.560364, 24.099126 ], [ 11.250000, 24.282020 ], [ 11.030273, 24.412140 ], [ 11.030273, 32.136083 ], [ 11.035767, 32.138409 ], [ 15.309448, 32.138409 ], [ 15.408325, 31.952162 ], [ 15.713196, 31.377089 ], [ 16.611328, 31.182259 ], [ 18.020325, 30.765439 ], [ 19.085999, 30.268556 ], [ 19.572144, 30.526779 ], [ 20.052795, 30.987028 ], [ 19.819336, 31.753861 ], [ 19.945679, 31.952162 ], [ 20.066528, 32.138409 ], [ 22.719727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.579102, 23.041825 ], [ 14.142151, 22.492257 ], [ 14.850769, 22.864787 ], [ 14.993591, 21.943046 ], [ 15.026550, 21.739091 ], [ 11.030273, 21.739091 ], [ 11.030273, 22.940689 ], [ 11.250000, 23.062043 ], [ 11.997070, 23.473324 ], [ 13.579102, 23.041825 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.041825 ], [ 14.142151, 22.492257 ], [ 14.850769, 22.864787 ], [ 14.993591, 21.943046 ], [ 15.026550, 21.739091 ], [ 11.030273, 21.739091 ], [ 11.030273, 22.940689 ], [ 11.250000, 23.062043 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.918457, 21.943046 ], [ 19.341431, 21.739091 ], [ 15.026550, 21.739091 ], [ 14.993591, 21.943046 ], [ 14.850769, 22.864787 ], [ 15.858765, 23.410327 ], [ 18.918457, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.410327 ], [ 18.918457, 21.943046 ], [ 19.341431, 21.739091 ], [ 15.026550, 21.739091 ], [ 14.993591, 21.943046 ], [ 14.850769, 22.864787 ], [ 15.858765, 23.410327 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.158386, 37.444335 ], [ 15.309448, 37.136235 ], [ 15.097961, 36.622141 ], [ 14.334412, 36.998166 ], [ 13.826294, 37.105575 ], [ 12.428284, 37.614231 ], [ 12.568359, 38.128075 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.145358 ], [ 15.518188, 38.231708 ], [ 15.158386, 37.444335 ] ] ], [ [ [ 17.270508, 40.979898 ], [ 17.517700, 40.878218 ], [ 18.374634, 40.357010 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.168884, 39.425586 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.685730, 38.216604 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.965816 ], [ 15.718689, 39.544294 ], [ 15.411072, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.702454, 40.605612 ], [ 14.059753, 40.786780 ], [ 13.851013, 40.979898 ], [ 13.672485, 41.145570 ], [ 16.869507, 41.145570 ], [ 17.270508, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.231708 ], [ 15.158386, 37.444335 ], [ 15.309448, 37.136235 ], [ 15.097961, 36.622141 ], [ 14.334412, 36.998166 ], [ 13.826294, 37.105575 ], [ 12.428284, 37.614231 ], [ 12.568359, 38.128075 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.145358 ], [ 15.518188, 38.231708 ] ] ], [ [ [ 16.869507, 41.145570 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.878218 ], [ 18.374634, 40.357010 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.168884, 39.425586 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.685730, 38.216604 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.965816 ], [ 15.718689, 39.544294 ], [ 15.411072, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.702454, 40.605612 ], [ 14.059753, 40.786780 ], [ 13.851013, 40.979898 ], [ 13.672485, 41.145570 ], [ 16.869507, 41.145570 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 20.997620, 40.580585 ], [ 20.673523, 40.436495 ], [ 20.613098, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.696621 ], [ 19.959412, 39.916056 ], [ 19.404602, 40.252280 ], [ 19.316711, 40.728527 ], [ 19.346924, 40.979898 ], [ 19.366150, 41.145570 ], [ 20.585632, 41.145570 ], [ 20.604858, 41.087632 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.585632, 41.145570 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 20.997620, 40.580585 ], [ 20.673523, 40.436495 ], [ 20.613098, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.696621 ], [ 19.959412, 39.916056 ], [ 19.404602, 40.252280 ], [ 19.316711, 40.728527 ], [ 19.346924, 40.979898 ], [ 19.366150, 41.145570 ], [ 20.585632, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.585632, 41.145570 ], [ 22.044067, 41.145570 ], [ 21.755676, 40.979898 ], [ 21.673279, 40.932190 ] ] ], [ [ [ 22.596130, 41.131090 ], [ 22.217102, 41.145570 ], [ 22.607117, 41.145570 ], [ 22.596130, 41.131090 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.044067, 41.145570 ], [ 21.755676, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.585632, 41.145570 ], [ 22.044067, 41.145570 ] ] ], [ [ [ 22.607117, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.217102, 41.145570 ], [ 22.607117, 41.145570 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 11.250000, 32.266233 ], [ 11.030273, 32.136083 ], [ 11.030273, 33.440609 ], [ 11.107178, 33.293804 ] ] ], [ [ [ 11.098938, 36.901587 ], [ 11.030273, 36.835668 ], [ 11.030273, 37.085858 ], [ 11.098938, 36.901587 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.030273, 33.440609 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 11.250000, 32.266233 ], [ 11.030273, 32.136083 ], [ 11.030273, 33.440609 ] ] ], [ [ [ 11.030273, 36.835668 ], [ 11.030273, 37.085858 ], [ 11.098938, 36.901587 ], [ 11.030273, 36.835668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.945679, 31.952162 ], [ 20.132446, 32.238359 ], [ 20.852051, 32.708733 ], [ 21.541443, 32.844981 ], [ 22.500000, 32.699489 ], [ 22.719727, 32.667125 ], [ 22.719727, 31.765537 ], [ 19.824829, 31.765537 ], [ 19.945679, 31.952162 ] ] ], [ [ [ 12.661743, 32.794201 ], [ 13.081970, 32.879587 ], [ 13.916931, 32.713355 ], [ 15.243530, 32.266233 ], [ 15.408325, 31.952162 ], [ 15.507202, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.136083 ], [ 11.250000, 32.266233 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ], [ 12.661743, 32.794201 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.794201 ], [ 13.081970, 32.879587 ], [ 13.916931, 32.713355 ], [ 15.243530, 32.266233 ], [ 15.408325, 31.952162 ], [ 15.507202, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.136083 ], [ 11.250000, 32.266233 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ], [ [ [ 22.500000, 32.699489 ], [ 22.719727, 32.667125 ], [ 22.719727, 31.765537 ], [ 19.824829, 31.765537 ], [ 19.945679, 31.952162 ], [ 20.132446, 32.238359 ], [ 20.852051, 32.708733 ], [ 21.541443, 32.844981 ], [ 22.500000, 32.699489 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.596130, 41.131090 ], [ 22.607117, 41.145570 ], [ 22.719727, 41.145570 ], [ 22.719727, 40.369566 ], [ 22.623596, 40.258569 ], [ 22.719727, 40.004476 ], [ 22.719727, 36.416862 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.410231 ], [ 21.667786, 36.846659 ], [ 21.294250, 37.646859 ], [ 21.118469, 38.311491 ], [ 20.728455, 38.771216 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.626846 ], [ 20.613098, 40.111689 ], [ 20.673523, 40.436495 ], [ 20.997620, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.755676, 40.979898 ], [ 22.044067, 41.145570 ], [ 22.217102, 41.145570 ], [ 22.596130, 41.131090 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.369566 ], [ 22.623596, 40.258569 ], [ 22.719727, 40.004476 ], [ 22.719727, 36.416862 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.410231 ], [ 21.667786, 36.846659 ], [ 21.294250, 37.646859 ], [ 21.118469, 38.311491 ], [ 20.728455, 38.771216 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.626846 ], [ 20.613098, 40.111689 ], [ 20.673523, 40.436495 ], [ 20.997620, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.755676, 40.979898 ], [ 22.044067, 41.145570 ], [ 22.217102, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.607117, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.535156, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.241272, 48.416442 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.637634 ], [ 12.930908, 47.468950 ], [ 12.620544, 47.672786 ], [ 12.139893, 47.704217 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 11.030273, 47.545018 ], [ 11.030273, 49.066668 ], [ 13.345642, 49.066668 ], [ 13.535156, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.345642, 49.066668 ], [ 13.535156, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.241272, 48.416442 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.637634 ], [ 12.930908, 47.468950 ], [ 12.620544, 47.672786 ], [ 12.139893, 47.704217 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 11.030273, 47.545018 ], [ 11.030273, 49.066668 ], [ 13.345642, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.102722, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.888489, 48.922499 ], [ 17.885742, 48.904449 ], [ 17.542419, 48.801436 ], [ 17.100220, 48.817716 ], [ 16.960144, 48.598409 ], [ 16.498718, 48.786962 ], [ 16.029053, 48.734455 ], [ 15.548401, 48.922499 ], [ 15.251770, 49.039668 ], [ 14.900208, 48.965794 ], [ 14.839783, 48.922499 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.877361 ], [ 13.535156, 48.922499 ], [ 13.345642, 49.066668 ], [ 18.108215, 49.066668 ], [ 18.102722, 49.045070 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.108215, 49.066668 ], [ 18.102722, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.888489, 48.922499 ], [ 17.885742, 48.904449 ], [ 17.542419, 48.801436 ], [ 17.100220, 48.817716 ], [ 16.960144, 48.598409 ], [ 16.498718, 48.786962 ], [ 16.029053, 48.734455 ], [ 15.548401, 48.922499 ], [ 15.251770, 49.039668 ], [ 14.900208, 48.965794 ], [ 14.839783, 48.922499 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.877361 ], [ 13.535156, 48.922499 ], [ 13.345642, 49.066668 ], [ 18.108215, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.045070 ], [ 22.631836, 49.066668 ], [ 22.719727, 49.066668 ], [ 22.719727, 49.045070 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.045070 ], [ 22.631836, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.548401, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.786962 ], [ 16.960144, 48.598409 ], [ 16.877747, 48.471100 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.531677, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.009827, 46.685247 ], [ 15.136414, 46.658862 ], [ 14.631042, 46.432178 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.150879, 47.116869 ], [ 11.250000, 46.959636 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.753035 ], [ 11.030273, 46.758680 ], [ 11.030273, 47.545018 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.704217 ], [ 12.620544, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.637634 ], [ 12.881470, 48.290503 ], [ 13.241272, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.337158, 48.556614 ], [ 14.839783, 48.922499 ], [ 14.900208, 48.965794 ], [ 15.251770, 49.039668 ], [ 15.548401, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.251770, 49.039668 ], [ 15.548401, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.786962 ], [ 16.960144, 48.598409 ], [ 16.877747, 48.471100 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.531677, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.009827, 46.685247 ], [ 15.136414, 46.658862 ], [ 14.631042, 46.432178 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.150879, 47.116869 ], [ 11.250000, 46.959636 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.753035 ], [ 11.030273, 46.758680 ], [ 11.030273, 47.545018 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.704217 ], [ 12.620544, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.637634 ], [ 12.881470, 48.290503 ], [ 13.241272, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.337158, 48.556614 ], [ 14.839783, 48.922499 ], [ 14.900208, 48.965794 ], [ 15.251770, 49.039668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.669250, 45.834540 ], [ 15.323181, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.933167, 45.473614 ], [ 14.592590, 45.635167 ], [ 14.411316, 45.467836 ], [ 13.713684, 45.500572 ], [ 13.936157, 45.592900 ], [ 13.697205, 46.017946 ], [ 13.804321, 46.509735 ], [ 14.631042, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.009827, 46.685247 ], [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.669250, 45.834540 ], [ 15.323181, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.933167, 45.473614 ], [ 14.592590, 45.635167 ], [ 14.411316, 45.467836 ], [ 13.713684, 45.500572 ], [ 13.936157, 45.592900 ], [ 13.697205, 46.017946 ], [ 13.804321, 46.509735 ], [ 14.631042, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.009827, 46.685247 ], [ 16.202087, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.376099, 46.768087 ], [ 13.804321, 46.509735 ], [ 13.697205, 46.017946 ], [ 13.936157, 45.592900 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.587585, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.924683, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 16.784363, 41.180721 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.878218 ], [ 17.622070, 40.813809 ], [ 14.029541, 40.813809 ], [ 13.851013, 40.979898 ], [ 13.625793, 41.188989 ], [ 12.886963, 41.255097 ], [ 12.104187, 41.705729 ], [ 11.250000, 42.313878 ], [ 11.189575, 42.356514 ], [ 11.030273, 42.492353 ], [ 11.030273, 46.758680 ], [ 11.046753, 46.753035 ], [ 11.162109, 46.942762 ], [ 11.250000, 46.959636 ], [ 12.150879, 47.116869 ], [ 12.376099, 46.768087 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.150879, 47.116869 ], [ 12.376099, 46.768087 ], [ 13.804321, 46.509735 ], [ 13.697205, 46.017946 ], [ 13.936157, 45.592900 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.587585, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.924683, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 16.784363, 41.180721 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.878218 ], [ 17.622070, 40.813809 ], [ 14.029541, 40.813809 ], [ 13.851013, 40.979898 ], [ 13.625793, 41.188989 ], [ 12.886963, 41.255097 ], [ 12.104187, 41.705729 ], [ 11.250000, 42.313878 ], [ 11.189575, 42.356514 ], [ 11.030273, 42.492353 ], [ 11.030273, 46.758680 ], [ 11.046753, 46.753035 ], [ 11.162109, 46.942762 ], [ 11.250000, 46.959636 ], [ 12.150879, 47.116869 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.880493, 46.381044 ], [ 17.627563, 45.953059 ], [ 18.454285, 45.759859 ], [ 18.827820, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.388123, 45.238152 ], [ 19.003601, 44.861710 ], [ 18.553162, 45.083218 ], [ 17.861023, 45.069641 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.213004 ], [ 16.317444, 45.005593 ], [ 15.957642, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.237793, 44.351350 ], [ 16.454773, 44.042193 ], [ 16.913452, 43.667872 ], [ 17.295227, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.851806 ], [ 16.929932, 43.211182 ], [ 16.015320, 43.508721 ], [ 15.172119, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.900208, 45.077400 ], [ 14.257507, 45.234283 ], [ 13.949890, 44.803276 ], [ 13.656006, 45.137493 ], [ 13.677979, 45.485169 ], [ 13.713684, 45.500572 ], [ 14.411316, 45.467836 ], [ 14.592590, 45.635167 ], [ 14.933167, 45.473614 ], [ 15.325928, 45.452424 ], [ 15.323181, 45.733025 ], [ 15.669250, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ], [ 16.880493, 46.381044 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.953059 ], [ 18.454285, 45.759859 ], [ 18.827820, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.388123, 45.238152 ], [ 19.003601, 44.861710 ], [ 18.553162, 45.083218 ], [ 17.861023, 45.069641 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.213004 ], [ 16.317444, 45.005593 ], [ 15.957642, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.237793, 44.351350 ], [ 16.454773, 44.042193 ], [ 16.913452, 43.667872 ], [ 17.295227, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.851806 ], [ 16.929932, 43.211182 ], [ 16.015320, 43.508721 ], [ 15.172119, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.900208, 45.077400 ], [ 14.257507, 45.234283 ], [ 13.949890, 44.803276 ], [ 13.656006, 45.137493 ], [ 13.677979, 45.485169 ], [ 13.713684, 45.500572 ], [ 14.411316, 45.467836 ], [ 14.592590, 45.635167 ], [ 14.933167, 45.473614 ], [ 15.325928, 45.452424 ], [ 15.323181, 45.733025 ], [ 15.669250, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.871033, 48.321560 ], [ 22.085266, 48.423733 ], [ 22.500000, 48.221013 ], [ 22.640076, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.811310 ], [ 22.098999, 47.672786 ], [ 21.623840, 46.995241 ], [ 21.019592, 46.316584 ], [ 20.217590, 46.128460 ], [ 19.594116, 46.172223 ], [ 18.827820, 45.909122 ], [ 18.454285, 45.759859 ], [ 17.627563, 45.953059 ], [ 16.880493, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.531677, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.868459 ], [ 17.855530, 47.759637 ], [ 18.695984, 47.881355 ], [ 18.775635, 48.083584 ], [ 19.173889, 48.112933 ], [ 19.660034, 48.266741 ], [ 19.767151, 48.202710 ], [ 20.236816, 48.328865 ], [ 20.473022, 48.563885 ], [ 20.799866, 48.625647 ], [ 21.871033, 48.321560 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.799866, 48.625647 ], [ 21.871033, 48.321560 ], [ 22.085266, 48.423733 ], [ 22.500000, 48.221013 ], [ 22.640076, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.811310 ], [ 22.098999, 47.672786 ], [ 21.623840, 46.995241 ], [ 21.019592, 46.316584 ], [ 20.217590, 46.128460 ], [ 19.594116, 46.172223 ], [ 18.827820, 45.909122 ], [ 18.454285, 45.759859 ], [ 17.627563, 45.953059 ], [ 16.880493, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.531677, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.868459 ], [ 17.855530, 47.759637 ], [ 18.695984, 47.881355 ], [ 18.775635, 48.083584 ], [ 19.173889, 48.112933 ], [ 19.660034, 48.266741 ], [ 19.767151, 48.202710 ], [ 20.236816, 48.328865 ], [ 20.473022, 48.563885 ], [ 20.799866, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 48.922499 ], [ 22.280273, 48.826757 ], [ 22.085266, 48.423733 ], [ 21.871033, 48.321560 ], [ 20.799866, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.328865 ], [ 19.767151, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.112933 ], [ 18.775635, 48.083584 ], [ 18.695984, 47.881355 ], [ 17.855530, 47.759637 ], [ 17.487488, 47.868459 ], [ 16.979370, 48.123934 ], [ 16.877747, 48.471100 ], [ 17.100220, 48.817716 ], [ 17.542419, 48.801436 ], [ 17.885742, 48.904449 ], [ 17.888489, 48.922499 ], [ 17.913208, 48.998240 ], [ 18.102722, 49.045070 ], [ 18.108215, 49.066668 ], [ 22.535706, 49.066668 ], [ 22.381897, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.535706, 49.066668 ], [ 22.381897, 48.922499 ], [ 22.280273, 48.826757 ], [ 22.085266, 48.423733 ], [ 21.871033, 48.321560 ], [ 20.799866, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.328865 ], [ 19.767151, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.112933 ], [ 18.775635, 48.083584 ], [ 18.695984, 47.881355 ], [ 17.855530, 47.759637 ], [ 17.487488, 47.868459 ], [ 16.979370, 48.123934 ], [ 16.877747, 48.471100 ], [ 17.100220, 48.817716 ], [ 17.542419, 48.801436 ], [ 17.885742, 48.904449 ], [ 17.888489, 48.922499 ], [ 17.913208, 48.998240 ], [ 18.102722, 49.045070 ], [ 18.108215, 49.066668 ], [ 22.535706, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.861023, 45.069641 ], [ 18.553162, 45.083218 ], [ 19.003601, 44.861710 ], [ 19.366150, 44.863656 ], [ 19.116211, 44.423973 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.295227, 43.446937 ], [ 16.913452, 43.667872 ], [ 16.454773, 44.042193 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.957642, 45.234283 ], [ 16.317444, 45.005593 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.234283 ], [ 17.861023, 45.069641 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.069641 ], [ 18.553162, 45.083218 ], [ 19.003601, 44.861710 ], [ 19.366150, 44.863656 ], [ 19.116211, 44.423973 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.295227, 43.446937 ], [ 16.913452, 43.667872 ], [ 16.454773, 44.042193 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.957642, 45.234283 ], [ 16.317444, 45.005593 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.234283 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.481506, 43.353144 ], [ 19.629822, 43.215185 ], [ 19.956665, 43.106999 ], [ 20.338440, 42.900113 ], [ 20.256042, 42.813537 ], [ 20.069275, 42.589489 ], [ 19.800110, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.302979, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.283405 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ], [ 19.481506, 43.353144 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.217834, 43.524655 ], [ 19.481506, 43.353144 ], [ 19.629822, 43.215185 ], [ 19.956665, 43.106999 ], [ 20.338440, 42.900113 ], [ 20.256042, 42.813537 ], [ 20.069275, 42.589489 ], [ 19.800110, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.302979, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.283405 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.217590, 46.128460 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.417732 ], [ 21.481018, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.478871 ], [ 22.458801, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.431819 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.384729 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.093503 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.996612 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.425484 ], [ 22.379150, 42.322001 ], [ 21.914978, 42.303722 ], [ 21.574402, 42.246819 ], [ 21.541443, 42.322001 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.684454 ], [ 21.632080, 42.678397 ], [ 21.437073, 42.863886 ], [ 21.272278, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.273206 ], [ 20.635071, 43.217187 ], [ 20.494995, 42.886027 ], [ 20.256042, 42.813537 ], [ 20.338440, 42.900113 ], [ 19.956665, 43.106999 ], [ 19.629822, 43.215185 ], [ 19.481506, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.423973 ], [ 19.366150, 44.863656 ], [ 19.003601, 44.861710 ], [ 19.388123, 45.238152 ], [ 19.072266, 45.521744 ], [ 18.827820, 45.909122 ], [ 19.594116, 46.172223 ], [ 20.217590, 46.128460 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.217590, 46.128460 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.417732 ], [ 21.481018, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.478871 ], [ 22.458801, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.431819 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.384729 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.093503 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.996612 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.425484 ], [ 22.379150, 42.322001 ], [ 21.914978, 42.303722 ], [ 21.574402, 42.246819 ], [ 21.541443, 42.322001 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.684454 ], [ 21.632080, 42.678397 ], [ 21.437073, 42.863886 ], [ 21.272278, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.273206 ], [ 20.635071, 43.217187 ], [ 20.494995, 42.886027 ], [ 20.256042, 42.813537 ], [ 20.338440, 42.900113 ], [ 19.956665, 43.106999 ], [ 19.629822, 43.215185 ], [ 19.481506, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.423973 ], [ 19.366150, 44.863656 ], [ 19.003601, 44.861710 ], [ 19.388123, 45.238152 ], [ 19.072266, 45.521744 ], [ 18.827820, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.272278, 42.910172 ], [ 21.437073, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.684454 ], [ 21.662292, 42.439674 ], [ 21.541443, 42.322001 ], [ 21.574402, 42.246819 ], [ 21.351929, 42.208176 ], [ 20.761414, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.322001 ], [ 20.069275, 42.589489 ], [ 20.256042, 42.813537 ], [ 20.494995, 42.886027 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.273206 ], [ 20.956421, 43.131057 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.272278, 42.910172 ], [ 21.437073, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.684454 ], [ 21.662292, 42.439674 ], [ 21.541443, 42.322001 ], [ 21.574402, 42.246819 ], [ 21.351929, 42.208176 ], [ 20.761414, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.322001 ], [ 20.069275, 42.589489 ], [ 20.256042, 42.813537 ], [ 20.494995, 42.886027 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.800110, 42.500453 ], [ 20.069275, 42.589489 ], [ 20.283508, 42.322001 ], [ 20.522461, 42.218348 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.324951, 40.813809 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.688492 ], [ 19.800110, 42.500453 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.800110, 42.500453 ], [ 20.069275, 42.589489 ], [ 20.283508, 42.322001 ], [ 20.522461, 42.218348 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.324951, 40.813809 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.719727, 42.104336 ], [ 22.719727, 41.263356 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.055054, 41.151774 ], [ 21.755676, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.761414, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.914978, 42.303722 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.104336 ], [ 22.719727, 41.263356 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.055054, 41.151774 ], [ 21.755676, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.761414, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.914978, 42.303722 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.384729 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.431819 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.458801, 44.703802 ], [ 22.142944, 44.478871 ], [ 21.560669, 44.770137 ], [ 21.481018, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.761414, 45.734943 ], [ 20.217590, 46.128460 ], [ 21.019592, 46.316584 ], [ 21.623840, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.811310 ], [ 22.708740, 47.883197 ], [ 22.719727, 47.888723 ], [ 22.719727, 44.144769 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.888723 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.384729 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.431819 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.458801, 44.703802 ], [ 22.142944, 44.478871 ], [ 21.560669, 44.770137 ], [ 21.481018, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.761414, 45.734943 ], [ 20.217590, 46.128460 ], [ 21.019592, 46.316584 ], [ 21.623840, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.811310 ], [ 22.708740, 47.883197 ], [ 22.719727, 47.888723 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.104336 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.425484 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.719727, 42.996612 ], [ 22.719727, 42.104336 ] ] ], [ [ [ 22.409363, 44.008620 ], [ 22.500000, 44.093503 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.144769 ], [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.996612 ], [ 22.719727, 42.104336 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.425484 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.719727, 42.996612 ] ] ], [ [ [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.093503 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.144769 ], [ 22.719727, 43.448931 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.045070 ], [ 22.719727, 47.888723 ], [ 22.708740, 47.883197 ], [ 22.640076, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.085266, 48.423733 ], [ 22.280273, 48.826757 ], [ 22.381897, 48.922499 ], [ 22.535706, 49.066668 ], [ 22.631836, 49.066668 ], [ 22.719727, 49.045070 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.631836, 49.066668 ], [ 22.719727, 49.045070 ], [ 22.719727, 47.888723 ], [ 22.708740, 47.883197 ], [ 22.640076, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.085266, 48.423733 ], [ 22.280273, 48.826757 ], [ 22.381897, 48.922499 ], [ 22.535706, 49.066668 ], [ 22.631836, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.755676, 40.979898 ], [ 22.055054, 41.151774 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.263356 ], [ 22.719727, 40.813809 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.263356 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.755676, 40.979898 ], [ 22.055054, 41.151774 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.263356 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.719727, 54.871866 ], [ 22.719727, 54.767424 ], [ 22.648315, 54.583205 ], [ 22.719727, 54.362958 ], [ 22.719727, 54.327736 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.426920 ], [ 19.888000, 54.867124 ], [ 21.266785, 55.191412 ], [ 22.313232, 55.015426 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.266785, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.719727, 54.871866 ], [ 22.719727, 54.767424 ], [ 22.648315, 54.583205 ], [ 22.719727, 54.362958 ], [ 22.719727, 54.327736 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.426920 ], [ 19.888000, 54.867124 ], [ 21.266785, 55.191412 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.582092, 55.776573 ], [ 12.689209, 55.610935 ], [ 12.087708, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.041260, 55.365064 ], [ 11.030273, 55.399391 ], [ 11.030273, 55.810542 ], [ 11.425781, 55.899956 ], [ 12.502441, 55.899956 ], [ 12.582092, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.502441, 55.899956 ], [ 12.582092, 55.776573 ], [ 12.689209, 55.610935 ], [ 12.087708, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.041260, 55.365064 ], [ 11.030273, 55.399391 ], [ 11.030273, 55.810542 ], [ 11.425781, 55.899956 ], [ 12.502441, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.356384, 55.776573 ], [ 14.098206, 55.408748 ], [ 12.941895, 55.361942 ], [ 12.801819, 55.776573 ], [ 12.760620, 55.899956 ], [ 14.444275, 55.899956 ], [ 14.356384, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.444275, 55.899956 ], [ 14.356384, 55.776573 ], [ 14.098206, 55.408748 ], [ 12.941895, 55.361942 ], [ 12.801819, 55.776573 ], [ 12.760620, 55.899956 ], [ 14.444275, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.645020, 54.077117 ], [ 14.117432, 53.758454 ], [ 14.350891, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.091320 ], [ 14.606323, 51.745738 ], [ 15.015564, 51.106971 ], [ 14.570618, 51.003386 ], [ 14.306946, 51.117317 ], [ 14.054260, 50.927276 ], [ 13.337402, 50.734717 ], [ 12.966614, 50.485474 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.970656 ], [ 12.518921, 49.548380 ], [ 13.029785, 49.307217 ], [ 13.535156, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.027133 ], [ 11.250000, 54.067448 ], [ 11.955872, 54.197797 ], [ 12.516174, 54.471634 ], [ 13.645020, 54.077117 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.516174, 54.471634 ], [ 13.645020, 54.077117 ], [ 14.117432, 53.758454 ], [ 14.350891, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.091320 ], [ 14.606323, 51.745738 ], [ 15.015564, 51.106971 ], [ 14.570618, 51.003386 ], [ 14.306946, 51.117317 ], [ 14.054260, 50.927276 ], [ 13.337402, 50.734717 ], [ 12.966614, 50.485474 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.970656 ], [ 12.518921, 49.548380 ], [ 13.029785, 49.307217 ], [ 13.535156, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.027133 ], [ 11.250000, 54.067448 ], [ 11.955872, 54.197797 ], [ 12.516174, 54.471634 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.570618, 51.003386 ], [ 15.015564, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.174622, 50.424269 ], [ 16.718445, 50.217337 ], [ 16.866760, 50.474987 ], [ 17.553406, 50.362985 ], [ 17.646790, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.553162, 49.496675 ], [ 18.399353, 49.316171 ], [ 18.168640, 49.273181 ], [ 18.102722, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.888489, 48.922499 ], [ 17.885742, 48.904449 ], [ 17.542419, 48.801436 ], [ 17.100220, 48.817716 ], [ 17.072754, 48.777913 ], [ 16.520691, 48.777913 ], [ 16.498718, 48.786962 ], [ 16.416321, 48.777913 ], [ 15.916443, 48.777913 ], [ 15.548401, 48.922499 ], [ 15.251770, 49.039668 ], [ 14.900208, 48.965794 ], [ 14.839783, 48.922499 ], [ 14.639282, 48.777913 ], [ 13.823547, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.535156, 48.922499 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.548380 ], [ 12.414551, 49.970656 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.485474 ], [ 13.337402, 50.734717 ], [ 14.054260, 50.927276 ], [ 14.306946, 51.117317 ], [ 14.570618, 51.003386 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.003386 ], [ 15.015564, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.174622, 50.424269 ], [ 16.718445, 50.217337 ], [ 16.866760, 50.474987 ], [ 17.553406, 50.362985 ], [ 17.646790, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.553162, 49.496675 ], [ 18.399353, 49.316171 ], [ 18.168640, 49.273181 ], [ 18.102722, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.888489, 48.922499 ], [ 17.885742, 48.904449 ], [ 17.542419, 48.801436 ], [ 17.100220, 48.817716 ], [ 17.072754, 48.777913 ], [ 16.520691, 48.777913 ], [ 16.498718, 48.786962 ], [ 16.416321, 48.777913 ], [ 15.916443, 48.777913 ], [ 15.548401, 48.922499 ], [ 15.251770, 49.039668 ], [ 14.900208, 48.965794 ], [ 14.839783, 48.922499 ], [ 14.639282, 48.777913 ], [ 13.823547, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.535156, 48.922499 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.548380 ], [ 12.414551, 49.970656 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.485474 ], [ 13.337402, 50.734717 ], [ 14.054260, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.619080, 54.683359 ], [ 18.695984, 54.439700 ], [ 19.660034, 54.426920 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.665850 ], [ 22.516479, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.045070 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.111636 ], [ 21.607361, 49.471694 ], [ 20.887756, 49.330492 ], [ 20.415344, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.573321 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.646790, 50.050085 ], [ 17.553406, 50.362985 ], [ 16.866760, 50.474987 ], [ 16.718445, 50.217337 ], [ 16.174622, 50.424269 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.015564, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.683228, 52.091320 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.350891, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.801331, 54.051327 ], [ 16.361389, 54.514704 ], [ 17.622070, 54.852896 ], [ 18.619080, 54.683359 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.852896 ], [ 18.619080, 54.683359 ], [ 18.695984, 54.439700 ], [ 19.660034, 54.426920 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.665850 ], [ 22.516479, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.045070 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.111636 ], [ 21.607361, 49.471694 ], [ 20.887756, 49.330492 ], [ 20.415344, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.573321 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.646790, 50.050085 ], [ 17.553406, 50.362985 ], [ 16.866760, 50.474987 ], [ 16.718445, 50.217337 ], [ 16.174622, 50.424269 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.015564, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.683228, 52.091320 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.350891, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.801331, 54.051327 ], [ 16.361389, 54.514704 ], [ 17.622070, 54.852896 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.839783, 48.922499 ], [ 14.900208, 48.965794 ], [ 15.251770, 49.039668 ], [ 15.548401, 48.922499 ], [ 15.916443, 48.777913 ], [ 14.639282, 48.777913 ], [ 14.839783, 48.922499 ] ] ], [ [ [ 16.498718, 48.786962 ], [ 16.520691, 48.777913 ], [ 16.416321, 48.777913 ], [ 16.498718, 48.786962 ] ] ], [ [ [ 13.823547, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.823547, 48.777913 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.595581, 48.877361 ], [ 13.823547, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ] ] ], [ [ [ 15.548401, 48.922499 ], [ 15.916443, 48.777913 ], [ 14.639282, 48.777913 ], [ 14.839783, 48.922499 ], [ 14.900208, 48.965794 ], [ 15.251770, 49.039668 ], [ 15.548401, 48.922499 ] ] ], [ [ [ 16.520691, 48.777913 ], [ 16.416321, 48.777913 ], [ 16.498718, 48.786962 ], [ 16.520691, 48.777913 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.824829, 49.217597 ], [ 20.415344, 49.432413 ], [ 20.887756, 49.330492 ], [ 21.607361, 49.471694 ], [ 22.500000, 49.111636 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.034267 ], [ 22.381897, 48.922499 ], [ 22.280273, 48.826757 ], [ 22.255554, 48.777913 ], [ 17.072754, 48.777913 ], [ 17.100220, 48.817716 ], [ 17.542419, 48.801436 ], [ 17.885742, 48.904449 ], [ 17.888489, 48.922499 ], [ 17.913208, 48.998240 ], [ 18.102722, 49.045070 ], [ 18.168640, 49.273181 ], [ 18.399353, 49.316171 ], [ 18.553162, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.573321 ], [ 19.824829, 49.217597 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.573321 ], [ 19.824829, 49.217597 ], [ 20.415344, 49.432413 ], [ 20.887756, 49.330492 ], [ 21.607361, 49.471694 ], [ 22.500000, 49.111636 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.034267 ], [ 22.381897, 48.922499 ], [ 22.280273, 48.826757 ], [ 22.255554, 48.777913 ], [ 17.072754, 48.777913 ], [ 17.100220, 48.817716 ], [ 17.542419, 48.801436 ], [ 17.885742, 48.904449 ], [ 17.888489, 48.922499 ], [ 17.913208, 48.998240 ], [ 18.102722, 49.045070 ], [ 18.168640, 49.273181 ], [ 18.399353, 49.316171 ], [ 18.553162, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.573321 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.313232, 55.015426 ], [ 21.266785, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.085510, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.871866 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ] ] ], [ [ [ 22.719727, 54.362958 ], [ 22.648315, 54.583205 ], [ 22.719727, 54.767424 ], [ 22.719727, 54.362958 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 54.871866 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.266785, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.085510, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.871866 ] ] ], [ [ [ 22.719727, 54.767424 ], [ 22.719727, 54.362958 ], [ 22.648315, 54.583205 ], [ 22.719727, 54.767424 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 49.665850 ], [ 22.719727, 49.126017 ], [ 22.516479, 49.477048 ], [ 22.719727, 49.665850 ] ] ], [ [ [ 22.719727, 48.777913 ], [ 22.255554, 48.777913 ], [ 22.280273, 48.826757 ], [ 22.381897, 48.922499 ], [ 22.500000, 49.034267 ], [ 22.557678, 49.086459 ], [ 22.719727, 49.045070 ], [ 22.719727, 48.777913 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.557678, 49.086459 ], [ 22.719727, 49.045070 ], [ 22.719727, 48.777913 ], [ 22.255554, 48.777913 ], [ 22.280273, 48.826757 ], [ 22.381897, 48.922499 ], [ 22.500000, 49.034267 ], [ 22.557678, 49.086459 ] ] ], [ [ [ 22.719727, 49.665850 ], [ 22.719727, 49.126017 ], [ 22.516479, 49.477048 ], [ 22.719727, 49.665850 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.236023, 61.606396 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.118251 ], [ 11.466980, 59.432506 ], [ 11.250000, 59.151995 ], [ 11.030273, 58.864905 ], [ 11.030273, 61.710706 ], [ 12.104187, 61.710706 ], [ 12.236023, 61.606396 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.104187, 61.710706 ], [ 12.236023, 61.606396 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.118251 ], [ 11.466980, 59.432506 ], [ 11.250000, 59.151995 ], [ 11.030273, 58.864905 ], [ 11.030273, 61.710706 ], [ 12.104187, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.582092, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.810542 ], [ 11.250000, 55.861441 ], [ 12.370605, 56.111873 ], [ 12.582092, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.582092, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.810542 ], [ 11.250000, 55.861441 ], [ 12.370605, 56.111873 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.251282, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.082653 ], [ 17.866516, 58.954258 ], [ 16.828308, 58.721173 ], [ 16.446533, 57.042224 ], [ 15.877991, 56.105747 ], [ 14.664001, 56.202121 ], [ 14.356384, 55.776573 ], [ 14.268494, 55.652798 ], [ 12.840271, 55.652798 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.785583, 57.441993 ], [ 11.250000, 58.444858 ], [ 11.030273, 58.846438 ], [ 11.030273, 58.864905 ], [ 11.250000, 59.151995 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.628784, 61.293988 ], [ 12.236023, 61.606396 ], [ 12.104187, 61.710706 ], [ 17.306213, 61.710706 ], [ 17.251282, 61.606396 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.251282, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.082653 ], [ 17.866516, 58.954258 ], [ 16.828308, 58.721173 ], [ 16.446533, 57.042224 ], [ 15.877991, 56.105747 ], [ 14.664001, 56.202121 ], [ 14.356384, 55.776573 ], [ 14.268494, 55.652798 ], [ 12.840271, 55.652798 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.785583, 57.441993 ], [ 11.250000, 58.444858 ], [ 11.030273, 58.846438 ], [ 11.030273, 58.864905 ], [ 11.250000, 59.151995 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.628784, 61.293988 ], [ 12.236023, 61.606396 ], [ 12.104187, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 59.987998 ], [ 22.500000, 60.194791 ], [ 22.288513, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.519470, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.538696, 61.710706 ], [ 22.719727, 61.710706 ], [ 22.719727, 59.987998 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.987998 ], [ 22.500000, 60.194791 ], [ 22.288513, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.519470, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.538696, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 57.570361 ], [ 22.719727, 56.319583 ], [ 22.500000, 56.327198 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.784332 ], [ 21.579895, 57.412420 ], [ 22.500000, 57.746679 ], [ 22.521973, 57.754007 ], [ 22.719727, 57.570361 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.719727, 57.570361 ], [ 22.719727, 56.319583 ], [ 22.500000, 56.327198 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.784332 ], [ 21.579895, 57.412420 ], [ 22.500000, 57.746679 ], [ 22.521973, 57.754007 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 56.327198 ], [ 22.719727, 56.319583 ], [ 22.719727, 55.652798 ], [ 21.148682, 55.652798 ], [ 21.118469, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.200623, 56.337856 ], [ 22.500000, 56.327198 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.200623, 56.337856 ], [ 22.500000, 56.327198 ], [ 22.719727, 56.319583 ], [ 22.719727, 55.652798 ], [ 21.148682, 55.652798 ], [ 21.118469, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.200623, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.386353, 66.513260 ], [ 15.106201, 66.194900 ], [ 13.554382, 64.788168 ], [ 13.919678, 64.445557 ], [ 13.570862, 64.049373 ], [ 12.579346, 64.067396 ], [ 11.928406, 63.129538 ], [ 11.991577, 61.800390 ], [ 12.236023, 61.606396 ], [ 12.367859, 61.501734 ], [ 11.030273, 61.501734 ], [ 11.030273, 64.878104 ], [ 11.250000, 65.046650 ], [ 12.356873, 65.880337 ], [ 13.120422, 66.513260 ], [ 13.227539, 66.600676 ], [ 15.463257, 66.600676 ], [ 15.386353, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.463257, 66.600676 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.194900 ], [ 13.554382, 64.788168 ], [ 13.919678, 64.445557 ], [ 13.570862, 64.049373 ], [ 12.579346, 64.067396 ], [ 11.928406, 63.129538 ], [ 11.991577, 61.800390 ], [ 12.236023, 61.606396 ], [ 12.367859, 61.501734 ], [ 11.030273, 61.501734 ], [ 11.030273, 64.878104 ], [ 11.250000, 65.046650 ], [ 12.356873, 65.880337 ], [ 13.120422, 66.513260 ], [ 13.227539, 66.600676 ], [ 15.463257, 66.600676 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 65.814032 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.211853, 65.026945 ], [ 21.368408, 64.414735 ], [ 19.778137, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.251282, 61.606396 ], [ 17.199097, 61.501734 ], [ 12.367859, 61.501734 ], [ 12.236023, 61.606396 ], [ 11.991577, 61.800390 ], [ 11.928406, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.570862, 64.049373 ], [ 13.919678, 64.445557 ], [ 13.554382, 64.788168 ], [ 15.106201, 66.194900 ], [ 15.386353, 66.513260 ], [ 15.463257, 66.600676 ], [ 22.719727, 66.600676 ], [ 22.719727, 65.814032 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 66.600676 ], [ 22.719727, 65.814032 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.211853, 65.026945 ], [ 21.368408, 64.414735 ], [ 19.778137, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.251282, 61.606396 ], [ 17.199097, 61.501734 ], [ 12.367859, 61.501734 ], [ 12.236023, 61.606396 ], [ 11.991577, 61.800390 ], [ 11.928406, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.570862, 64.049373 ], [ 13.919678, 64.445557 ], [ 13.554382, 64.788168 ], [ 15.106201, 66.194900 ], [ 15.386353, 66.513260 ], [ 15.463257, 66.600676 ], [ 22.719727, 66.600676 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.501734 ], [ 21.497498, 61.501734 ], [ 21.519470, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.058044, 62.608508 ], [ 21.535950, 63.190302 ], [ 22.442322, 63.818864 ], [ 22.500000, 63.847933 ], [ 22.719727, 63.954261 ], [ 22.719727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 63.954261 ], [ 22.719727, 61.501734 ], [ 21.497498, 61.501734 ], [ 21.519470, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.058044, 62.608508 ], [ 21.535950, 63.190302 ], [ 22.442322, 63.818864 ], [ 22.500000, 63.847933 ], [ 22.719727, 63.954261 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 70.220452 ], [ 22.719727, 70.213015 ], [ 22.719727, 68.857574 ], [ 22.500000, 68.848656 ], [ 22.354431, 68.842709 ], [ 21.244812, 69.370638 ], [ 20.643311, 69.106797 ], [ 20.022583, 69.065619 ], [ 19.877014, 68.407268 ], [ 17.992859, 68.567410 ], [ 17.726440, 68.010656 ], [ 16.767883, 68.014770 ], [ 16.108704, 67.302797 ], [ 15.389099, 66.513260 ], [ 15.309448, 66.425537 ], [ 13.013306, 66.425537 ], [ 13.120422, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.563395 ], [ 19.182129, 69.817839 ], [ 21.376648, 70.255741 ], [ 22.500000, 70.220452 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.376648, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.719727, 70.213015 ], [ 22.719727, 68.857574 ], [ 22.500000, 68.848656 ], [ 22.354431, 68.842709 ], [ 21.244812, 69.370638 ], [ 20.643311, 69.106797 ], [ 20.022583, 69.065619 ], [ 19.877014, 68.407268 ], [ 17.992859, 68.567410 ], [ 17.726440, 68.010656 ], [ 16.767883, 68.014770 ], [ 16.108704, 67.302797 ], [ 15.389099, 66.513260 ], [ 15.309448, 66.425537 ], [ 13.013306, 66.425537 ], [ 13.120422, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.563395 ], [ 19.182129, 69.817839 ], [ 21.376648, 70.255741 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.978149, 68.617535 ], [ 22.500000, 68.393113 ], [ 22.719727, 68.297842 ], [ 22.719727, 66.425537 ], [ 15.309448, 66.425537 ], [ 15.389099, 66.513260 ], [ 16.108704, 67.302797 ], [ 16.767883, 68.014770 ], [ 17.726440, 68.010656 ], [ 17.992859, 68.567410 ], [ 19.877014, 68.407268 ], [ 20.022583, 69.065619 ], [ 20.643311, 69.106797 ], [ 21.978149, 68.617535 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.106797 ], [ 21.978149, 68.617535 ], [ 22.500000, 68.393113 ], [ 22.719727, 68.297842 ], [ 22.719727, 66.425537 ], [ 15.309448, 66.425537 ], [ 15.389099, 66.513260 ], [ 16.108704, 67.302797 ], [ 16.767883, 68.014770 ], [ 17.726440, 68.010656 ], [ 17.992859, 68.567410 ], [ 19.877014, 68.407268 ], [ 20.022583, 69.065619 ], [ 20.643311, 69.106797 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.354431, 68.842709 ], [ 22.500000, 68.848656 ], [ 22.719727, 68.857574 ], [ 22.719727, 68.297842 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.617535 ], [ 20.643311, 69.106797 ], [ 21.244812, 69.370638 ], [ 22.354431, 68.842709 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.244812, 69.370638 ], [ 22.354431, 68.842709 ], [ 22.500000, 68.848656 ], [ 22.719727, 68.857574 ], [ 22.719727, 68.297842 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.617535 ], [ 20.643311, 69.106797 ], [ 21.244812, 69.370638 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 76.840816 ], [ 17.116699, 76.809516 ], [ 15.910950, 76.770602 ], [ 15.666504, 76.840816 ], [ 15.493469, 76.890745 ], [ 17.160645, 76.890745 ], [ 17.133179, 76.840816 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.160645, 76.890745 ], [ 17.133179, 76.840816 ], [ 17.116699, 76.809516 ], [ 15.910950, 76.770602 ], [ 15.666504, 76.840816 ], [ 15.493469, 76.890745 ], [ 17.160645, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.610352, 79.171335 ], [ 21.541443, 78.956138 ], [ 19.025574, 78.562667 ], [ 18.470764, 77.826799 ], [ 17.591858, 77.638306 ], [ 17.133179, 76.840816 ], [ 17.116699, 76.809516 ], [ 16.531677, 76.790701 ], [ 15.839539, 76.790701 ], [ 15.666504, 76.840816 ], [ 13.760376, 77.380506 ], [ 14.669495, 77.736118 ], [ 13.169861, 78.025004 ], [ 11.250000, 78.857317 ], [ 11.219788, 78.869518 ], [ 11.030273, 79.065041 ], [ 11.030273, 79.212538 ], [ 20.431824, 79.212538 ], [ 20.610352, 79.171335 ] ] ], [ [ [ 22.719727, 77.488659 ], [ 22.500000, 77.447537 ], [ 22.489014, 77.445149 ], [ 20.725708, 77.677053 ], [ 21.415100, 77.935203 ], [ 20.810852, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.719727, 78.440024 ], [ 22.719727, 77.488659 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.431824, 79.212538 ], [ 20.610352, 79.171335 ], [ 21.541443, 78.956138 ], [ 19.025574, 78.562667 ], [ 18.470764, 77.826799 ], [ 17.591858, 77.638306 ], [ 17.133179, 76.840816 ], [ 17.116699, 76.809516 ], [ 16.531677, 76.790701 ], [ 15.839539, 76.790701 ], [ 15.666504, 76.840816 ], [ 13.760376, 77.380506 ], [ 14.669495, 77.736118 ], [ 13.169861, 78.025004 ], [ 11.250000, 78.857317 ], [ 11.219788, 78.869518 ], [ 11.030273, 79.065041 ], [ 11.030273, 79.212538 ], [ 20.431824, 79.212538 ] ] ], [ [ [ 22.719727, 78.440024 ], [ 22.719727, 77.488659 ], [ 22.500000, 77.447537 ], [ 22.489014, 77.445149 ], [ 20.725708, 77.677053 ], [ 21.415100, 77.935203 ], [ 20.810852, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.719727, 78.440024 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.251038, 79.701925 ], [ 20.613098, 79.171335 ], [ 20.791626, 79.129976 ], [ 11.030273, 79.129976 ], [ 11.030273, 79.731343 ], [ 11.250000, 79.760191 ], [ 13.169861, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.141907, 79.674392 ], [ 15.520935, 80.016233 ], [ 16.990356, 80.050934 ], [ 18.251038, 79.701925 ] ] ], [ [ [ 22.719727, 79.417753 ], [ 22.500000, 79.430356 ], [ 20.074768, 79.567014 ], [ 19.896240, 79.842378 ], [ 18.459778, 79.860284 ], [ 17.366638, 80.319196 ], [ 20.453796, 80.598255 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534782 ], [ 22.719727, 80.599601 ], [ 22.719727, 79.417753 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.050934 ], [ 18.251038, 79.701925 ], [ 20.613098, 79.171335 ], [ 20.791626, 79.129976 ], [ 11.030273, 79.129976 ], [ 11.030273, 79.731343 ], [ 11.250000, 79.760191 ], [ 13.169861, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.141907, 79.674392 ], [ 15.520935, 80.016233 ], [ 16.990356, 80.050934 ] ] ], [ [ [ 22.719727, 80.599601 ], [ 22.719727, 79.417753 ], [ 22.500000, 79.430356 ], [ 20.074768, 79.567014 ], [ 19.896240, 79.842378 ], [ 18.459778, 79.860284 ], [ 17.366638, 80.319196 ], [ 20.453796, 80.598255 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534782 ], [ 22.719727, 80.599601 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -85.070048 ], [ 22.280273, -85.070048 ], [ 22.280273, -83.956169 ], [ 33.969727, -83.956169 ], [ 33.969727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -83.956169 ], [ 33.969727, -85.070048 ], [ 22.280273, -85.070048 ], [ 22.280273, -83.956169 ], [ 33.969727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -84.002262 ], [ 22.280273, -84.002262 ], [ 22.280273, -82.648222 ], [ 33.969727, -82.648222 ], [ 33.969727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -82.648222 ], [ 33.969727, -84.002262 ], [ 22.280273, -84.002262 ], [ 22.280273, -82.648222 ], [ 33.969727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -82.704241 ], [ 22.280273, -82.704241 ], [ 22.280273, -81.059130 ], [ 33.969727, -81.059130 ], [ 33.969727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -81.059130 ], [ 33.969727, -82.704241 ], [ 22.280273, -82.704241 ], [ 22.280273, -81.059130 ], [ 33.969727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -81.127169 ], [ 22.280273, -81.127169 ], [ 22.280273, -79.129976 ], [ 33.969727, -79.129976 ], [ 33.969727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -79.129976 ], [ 33.969727, -81.127169 ], [ 22.280273, -81.127169 ], [ 22.280273, -79.129976 ], [ 33.969727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -79.212538 ], [ 22.280273, -79.212538 ], [ 22.280273, -76.790701 ], [ 33.969727, -76.790701 ], [ 33.969727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -76.790701 ], [ 33.969727, -79.212538 ], [ 22.280273, -79.212538 ], [ 22.280273, -76.790701 ], [ 33.969727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -76.890745 ], [ 22.280273, -76.890745 ], [ 22.280273, -73.958939 ], [ 33.969727, -73.958939 ], [ 33.969727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -73.958939 ], [ 33.969727, -76.890745 ], [ 22.280273, -76.890745 ], [ 22.280273, -73.958939 ], [ 33.969727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -74.079925 ], [ 22.280273, -74.079925 ], [ 22.280273, -70.565148 ], [ 22.500000, -70.664516 ], [ 22.568665, -70.696320 ], [ 23.090515, -70.612614 ], [ 23.543701, -70.539543 ], [ 33.969727, -70.539543 ], [ 33.969727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -70.539543 ], [ 33.969727, -74.079925 ], [ 22.280273, -74.079925 ], [ 22.280273, -70.565148 ], [ 22.500000, -70.664516 ], [ 22.568665, -70.696320 ], [ 23.090515, -70.612614 ], [ 23.543701, -70.539543 ], [ 33.969727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.090515, -70.612614 ], [ 23.664551, -70.520318 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.461615 ], [ 28.092041, -70.324288 ], [ 29.149475, -70.206506 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.989441, -69.658041 ], [ 32.752991, -69.384181 ], [ 33.302307, -68.834777 ], [ 33.750000, -68.571424 ], [ 33.868103, -68.502080 ], [ 33.969727, -68.517173 ], [ 33.969727, -70.685421 ], [ 22.634583, -70.685421 ], [ 23.090515, -70.612614 ] ] ], [ [ [ 22.543945, -70.685421 ], [ 22.280273, -70.685421 ], [ 22.280273, -70.565148 ], [ 22.543945, -70.685421 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -70.565148 ], [ 22.543945, -70.685421 ], [ 22.280273, -70.685421 ], [ 22.280273, -70.565148 ] ] ], [ [ [ 33.969727, -68.517173 ], [ 33.969727, -70.685421 ], [ 22.634583, -70.685421 ], [ 23.090515, -70.612614 ], [ 23.664551, -70.520318 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.461615 ], [ 28.092041, -70.324288 ], [ 29.149475, -70.206506 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.989441, -69.658041 ], [ 32.752991, -69.384181 ], [ 33.302307, -68.834777 ], [ 33.750000, -68.571424 ], [ 33.868103, -68.502080 ], [ 33.969727, -68.517173 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.163208, -31.952162 ], [ 28.924255, -32.170963 ], [ 28.218384, -32.771110 ], [ 27.463074, -33.224903 ], [ 26.419373, -33.614619 ], [ 25.908508, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.172424, -33.795126 ], [ 24.675293, -33.986641 ], [ 23.593140, -33.792844 ], [ 22.986145, -33.916013 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.888658 ], [ 22.280273, -33.972976 ], [ 22.280273, -31.765537 ], [ 29.369202, -31.765537 ], [ 29.163208, -31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.369202, -31.765537 ], [ 29.163208, -31.952162 ], [ 28.924255, -32.170963 ], [ 28.218384, -32.771110 ], [ 27.463074, -33.224903 ], [ 26.419373, -33.614619 ], [ 25.908508, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.172424, -33.795126 ], [ 24.675293, -33.986641 ], [ 23.593140, -33.792844 ], [ 22.986145, -33.916013 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.888658 ], [ 22.280273, -33.972976 ], [ 22.280273, -31.765537 ], [ 29.369202, -31.765537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.475830, -21.943046 ], [ 31.190186, -22.250971 ], [ 30.657349, -22.149252 ], [ 30.322266, -22.271306 ], [ 29.838867, -22.100909 ], [ 29.429626, -22.090730 ], [ 29.220886, -21.943046 ], [ 28.935242, -21.739091 ], [ 31.665344, -21.739091 ], [ 31.475830, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.665344, -21.739091 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.250971 ], [ 30.657349, -22.149252 ], [ 30.322266, -22.271306 ], [ 29.838867, -22.100909 ], [ 29.429626, -22.090730 ], [ 29.220886, -21.943046 ], [ 28.935242, -21.739091 ], [ 31.665344, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -24.923804 ], [ 33.750000, -25.023395 ], [ 33.011169, -25.356437 ], [ 32.574463, -25.725684 ], [ 32.659607, -26.148042 ], [ 32.915039, -26.214591 ], [ 32.829895, -26.740705 ], [ 32.069092, -26.733346 ], [ 31.983948, -26.290953 ], [ 31.835632, -25.841921 ], [ 31.750488, -25.482951 ], [ 31.929016, -24.367114 ], [ 31.668091, -23.657104 ], [ 31.190186, -22.250971 ], [ 31.475830, -21.943046 ], [ 31.665344, -21.739091 ], [ 33.969727, -21.739091 ], [ 33.969727, -24.923804 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -21.739091 ], [ 33.969727, -24.923804 ], [ 33.750000, -25.023395 ], [ 33.011169, -25.356437 ], [ 32.574463, -25.725684 ], [ 32.659607, -26.148042 ], [ 32.915039, -26.214591 ], [ 32.829895, -26.740705 ], [ 32.069092, -26.733346 ], [ 31.983948, -26.290953 ], [ 31.835632, -25.841921 ], [ 31.750488, -25.482951 ], [ 31.929016, -24.367114 ], [ 31.668091, -23.657104 ], [ 31.190186, -22.250971 ], [ 31.475830, -21.943046 ], [ 31.665344, -21.739091 ], [ 33.969727, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.220886, -21.943046 ], [ 29.429626, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.117004, -23.574057 ], [ 26.784668, -24.239451 ], [ 26.485291, -24.614560 ], [ 25.941467, -24.694439 ], [ 25.765686, -25.172631 ], [ 25.664062, -25.485431 ], [ 25.024109, -25.718261 ], [ 24.211121, -25.668760 ], [ 23.733215, -25.388698 ], [ 23.310242, -25.267052 ], [ 22.824097, -25.500306 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.024702 ], [ 22.280273, -26.165299 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ], [ 29.220886, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.220886, -21.943046 ], [ 29.429626, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.117004, -23.574057 ], [ 26.784668, -24.239451 ], [ 26.485291, -24.614560 ], [ 25.941467, -24.694439 ], [ 25.765686, -25.172631 ], [ 25.664062, -25.485431 ], [ 25.024109, -25.718261 ], [ 24.211121, -25.668760 ], [ 23.733215, -25.388698 ], [ 23.310242, -25.267052 ], [ 22.824097, -25.500306 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.024702 ], [ 22.280273, -26.165299 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 30.322266, -22.271306 ], [ 30.657349, -22.149252 ], [ 31.190186, -22.250971 ], [ 31.668091, -23.657104 ], [ 31.929016, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.835632, -25.841921 ], [ 31.333008, -25.658858 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.396790 ], [ 30.684814, -26.743158 ], [ 31.280823, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.733346 ], [ 32.829895, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.299544 ], [ 32.200928, -28.750805 ], [ 31.519775, -29.255252 ], [ 31.324768, -29.401320 ], [ 30.899048, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.053101, -31.139954 ], [ 29.163208, -31.952162 ], [ 28.959961, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.165299 ], [ 22.500000, -26.024702 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.500306 ], [ 23.310242, -25.267052 ], [ 23.733215, -25.388698 ], [ 24.211121, -25.668760 ], [ 25.024109, -25.718261 ], [ 25.664062, -25.485431 ], [ 25.765686, -25.172631 ], [ 25.941467, -24.694439 ], [ 26.485291, -24.614560 ], [ 26.784668, -24.239451 ], [ 27.117004, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.429626, -22.090730 ], [ 29.838867, -22.100909 ] ], [ [ 28.072815, -28.849485 ], [ 27.531738, -29.240874 ], [ 26.998901, -29.873992 ], [ 27.748718, -30.645001 ], [ 28.105774, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.322510, -29.255252 ], [ 28.976440, -28.955282 ], [ 28.539734, -28.647210 ], [ 28.072815, -28.849485 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.429626, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.271306 ], [ 30.657349, -22.149252 ], [ 31.190186, -22.250971 ], [ 31.668091, -23.657104 ], [ 31.929016, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.835632, -25.841921 ], [ 31.333008, -25.658858 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.396790 ], [ 30.684814, -26.743158 ], [ 31.280823, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.733346 ], [ 32.829895, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.299544 ], [ 32.200928, -28.750805 ], [ 31.519775, -29.255252 ], [ 31.324768, -29.401320 ], [ 30.899048, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.053101, -31.139954 ], [ 29.163208, -31.952162 ], [ 28.959961, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.165299 ], [ 22.500000, -26.024702 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.500306 ], [ 23.310242, -25.267052 ], [ 23.733215, -25.388698 ], [ 24.211121, -25.668760 ], [ 25.024109, -25.718261 ], [ 25.664062, -25.485431 ], [ 25.765686, -25.172631 ], [ 25.941467, -24.694439 ], [ 26.485291, -24.614560 ], [ 26.784668, -24.239451 ], [ 27.117004, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.429626, -22.090730 ] ], [ [ 28.539734, -28.647210 ], [ 28.072815, -28.849485 ], [ 27.531738, -29.240874 ], [ 26.998901, -29.873992 ], [ 27.748718, -30.645001 ], [ 28.105774, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.322510, -29.255252 ], [ 28.976440, -28.955282 ], [ 28.539734, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.835632, -25.841921 ], [ 31.983948, -26.290953 ], [ 32.069092, -26.733346 ], [ 31.865845, -27.176469 ], [ 31.280823, -27.283926 ], [ 30.684814, -26.743158 ], [ 30.676575, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.658858 ], [ 31.835632, -25.841921 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.658858 ], [ 31.835632, -25.841921 ], [ 31.983948, -26.290953 ], [ 32.069092, -26.733346 ], [ 31.865845, -27.176469 ], [ 31.280823, -27.283926 ], [ 30.684814, -26.743158 ], [ 30.676575, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.658858 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.976440, -28.955282 ], [ 29.322510, -29.255252 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.105774, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.240874 ], [ 28.072815, -28.849485 ], [ 28.539734, -28.647210 ], [ 28.976440, -28.955282 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.539734, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.255252 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.105774, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.240874 ], [ 28.072815, -28.849485 ], [ 28.539734, -28.647210 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.446350, -11.178402 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.358783 ], [ 29.613647, -12.176280 ], [ 29.698792, -13.255986 ], [ 28.932495, -13.247966 ], [ 28.523254, -12.696612 ], [ 28.152466, -12.270231 ], [ 27.386169, -12.130635 ], [ 27.163696, -11.606503 ], [ 26.551208, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.329253 ], [ 24.782410, -11.237674 ], [ 24.312744, -11.261919 ], [ 24.296265, -11.178402 ], [ 24.255066, -10.962764 ], [ 28.473816, -10.962764 ], [ 28.446350, -11.178402 ] ] ], [ [ [ 22.401123, -10.992424 ], [ 22.280273, -11.035560 ], [ 22.280273, -10.962764 ], [ 23.054810, -10.962764 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.992424 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.446350, -11.178402 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.358783 ], [ 29.613647, -12.176280 ], [ 29.698792, -13.255986 ], [ 28.932495, -13.247966 ], [ 28.523254, -12.696612 ], [ 28.152466, -12.270231 ], [ 27.386169, -12.130635 ], [ 27.163696, -11.606503 ], [ 26.551208, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.329253 ], [ 24.782410, -11.237674 ], [ 24.312744, -11.261919 ], [ 24.296265, -11.178402 ], [ 24.255066, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.054810, -10.962764 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.992424 ], [ 22.280273, -11.035560 ], [ 22.280273, -10.962764 ], [ 23.054810, -10.962764 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.401123, -10.992424 ], [ 22.835083, -11.016689 ], [ 23.054810, -10.962764 ], [ 23.922729, -10.962764 ], [ 23.996887, -11.178402 ], [ 24.016113, -11.234980 ], [ 23.903503, -11.722167 ], [ 24.079285, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.910875 ], [ 22.500000, -12.900166 ], [ 22.280273, -12.897489 ], [ 22.280273, -11.035560 ], [ 22.401123, -10.992424 ] ] ], [ [ [ 22.500000, -16.822945 ], [ 22.560425, -16.896544 ], [ 23.214111, -17.520963 ], [ 22.500000, -17.678045 ], [ 22.280273, -17.725142 ], [ 22.280273, -16.554594 ], [ 22.500000, -16.822945 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -12.897489 ], [ 22.280273, -11.035560 ], [ 22.401123, -10.992424 ], [ 22.835083, -11.016689 ], [ 23.054810, -10.962764 ], [ 23.922729, -10.962764 ], [ 23.996887, -11.178402 ], [ 24.016113, -11.234980 ], [ 23.903503, -11.722167 ], [ 24.079285, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.910875 ], [ 22.500000, -12.900166 ], [ 22.280273, -12.897489 ] ] ], [ [ [ 22.280273, -16.554594 ], [ 22.500000, -16.822945 ], [ 22.560425, -16.896544 ], [ 23.214111, -17.520963 ], [ 22.500000, -17.678045 ], [ 22.280273, -17.725142 ], [ 22.280273, -16.554594 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.680786, -17.353260 ], [ 25.076294, -17.578576 ], [ 25.081787, -17.659726 ], [ 24.518738, -17.884659 ], [ 24.216614, -17.887273 ], [ 23.576660, -18.278910 ], [ 23.194885, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.280273, -18.075368 ], [ 22.280273, -17.725142 ], [ 22.500000, -17.678045 ], [ 23.214111, -17.520963 ], [ 24.032593, -17.295576 ], [ 24.680786, -17.353260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.295576 ], [ 24.680786, -17.353260 ], [ 25.076294, -17.578576 ], [ 25.081787, -17.659726 ], [ 24.518738, -17.884659 ], [ 24.216614, -17.887273 ], [ 23.576660, -18.278910 ], [ 23.194885, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.280273, -18.075368 ], [ 22.280273, -17.725142 ], [ 22.500000, -17.678045 ], [ 23.214111, -17.520963 ], [ 24.032593, -17.295576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.296265, -11.178402 ], [ 24.312744, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.784014 ], [ 26.551208, -11.923790 ], [ 27.163696, -11.606503 ], [ 27.386169, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.523254, -12.696612 ], [ 28.932495, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.613647, -12.176280 ], [ 29.338989, -12.358783 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.446350, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.269348, -10.962764 ], [ 33.217163, -11.178402 ], [ 33.112793, -11.606503 ], [ 33.305054, -12.433894 ], [ 32.989197, -12.782339 ], [ 32.687073, -13.712704 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.793472 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.946228, -16.040534 ], [ 28.825378, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.042847, -17.936929 ], [ 26.705017, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.578576 ], [ 24.680786, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.520963 ], [ 22.560425, -16.896544 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.554594 ], [ 22.280273, -12.897489 ], [ 22.500000, -12.900166 ], [ 24.016113, -12.910875 ], [ 23.928223, -12.565287 ], [ 24.079285, -12.189704 ], [ 23.903503, -11.722167 ], [ 24.016113, -11.234980 ], [ 23.996887, -11.178402 ], [ 23.922729, -10.962764 ], [ 24.255066, -10.962764 ], [ 24.296265, -11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.269348, -10.962764 ], [ 33.217163, -11.178402 ], [ 33.112793, -11.606503 ], [ 33.305054, -12.433894 ], [ 32.989197, -12.782339 ], [ 32.687073, -13.712704 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.793472 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.946228, -16.040534 ], [ 28.825378, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.042847, -17.936929 ], [ 26.705017, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.578576 ], [ 24.680786, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.520963 ], [ 22.560425, -16.896544 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.554594 ], [ 22.280273, -12.897489 ], [ 22.500000, -12.900166 ], [ 24.016113, -12.910875 ], [ 23.928223, -12.565287 ], [ 24.079285, -12.189704 ], [ 23.903503, -11.722167 ], [ 24.016113, -11.234980 ], [ 23.996887, -11.178402 ], [ 23.922729, -10.962764 ], [ 24.255066, -10.962764 ], [ 24.296265, -11.178402 ], [ 24.312744, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.784014 ], [ 26.551208, -11.923790 ], [ 27.163696, -11.606503 ], [ 27.386169, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.523254, -12.696612 ], [ 28.932495, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.613647, -12.176280 ], [ 29.338989, -12.358783 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.446350, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.269348, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.338745, -15.879451 ], [ 31.170959, -15.858316 ], [ 31.635132, -16.069568 ], [ 31.849365, -16.317504 ], [ 32.327271, -16.391296 ], [ 32.846375, -16.712494 ], [ 32.849121, -17.978733 ], [ 32.654114, -18.669665 ], [ 32.610168, -19.417383 ], [ 32.772217, -19.715000 ], [ 32.659607, -20.303418 ], [ 32.508545, -20.393549 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.286316, -22.146708 ], [ 29.967957, -22.146708 ], [ 29.838867, -22.100909 ], [ 29.429626, -22.090730 ], [ 29.220886, -21.943046 ], [ 28.792419, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.726746, -20.851112 ], [ 27.723999, -20.496492 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.292998 ], [ 25.848083, -18.713894 ], [ 25.647583, -18.534304 ], [ 25.263062, -17.735607 ], [ 26.380920, -17.845447 ], [ 26.705017, -17.960445 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.290332 ], [ 28.465576, -16.467695 ], [ 28.825378, -16.388661 ], [ 28.946228, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ], [ 30.338745, -15.879451 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.879451 ], [ 31.170959, -15.858316 ], [ 31.635132, -16.069568 ], [ 31.849365, -16.317504 ], [ 32.327271, -16.391296 ], [ 32.846375, -16.712494 ], [ 32.849121, -17.978733 ], [ 32.654114, -18.669665 ], [ 32.610168, -19.417383 ], [ 32.772217, -19.715000 ], [ 32.659607, -20.303418 ], [ 32.508545, -20.393549 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.286316, -22.146708 ], [ 29.967957, -22.146708 ], [ 29.838867, -22.100909 ], [ 29.429626, -22.090730 ], [ 29.220886, -21.943046 ], [ 28.792419, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.726746, -20.851112 ], [ 27.723999, -20.496492 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.292998 ], [ 25.848083, -18.713894 ], [ 25.647583, -18.534304 ], [ 25.263062, -17.735607 ], [ 26.380920, -17.845447 ], [ 26.705017, -17.960445 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.290332 ], [ 28.465576, -16.467695 ], [ 28.825378, -16.388661 ], [ 28.946228, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -14.386797 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.989197, -12.782339 ], [ 33.305054, -12.433894 ], [ 33.112793, -11.606503 ], [ 33.217163, -11.178402 ], [ 33.269348, -10.962764 ], [ 33.969727, -10.962764 ], [ 33.969727, -14.386797 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.386797 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.989197, -12.782339 ], [ 33.305054, -12.433894 ], [ 33.112793, -11.606503 ], [ 33.217163, -11.178402 ], [ 33.269348, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.788452, -14.450639 ], [ 33.969727, -14.386797 ], [ 33.969727, -22.146708 ], [ 31.286316, -22.146708 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.393549 ], [ 32.659607, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.610168, -19.417383 ], [ 32.654114, -18.669665 ], [ 32.849121, -17.978733 ], [ 32.846375, -16.712494 ], [ 32.327271, -16.391296 ], [ 31.849365, -16.317504 ], [ 31.635132, -16.069568 ], [ 31.170959, -15.858316 ], [ 30.338745, -15.879451 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.793472 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 33.969727, -14.386797 ], [ 33.969727, -22.146708 ], [ 31.286316, -22.146708 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.393549 ], [ 32.659607, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.610168, -19.417383 ], [ 32.654114, -18.669665 ], [ 32.849121, -17.978733 ], [ 32.846375, -16.712494 ], [ 32.327271, -16.391296 ], [ 31.849365, -16.317504 ], [ 31.635132, -16.069568 ], [ 31.170959, -15.858316 ], [ 30.338745, -15.879451 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.793472 ], [ 33.211670, -13.971385 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.263062, -17.735607 ], [ 25.647583, -18.534304 ], [ 25.848083, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.496492 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.483741 ], [ 28.792419, -21.637005 ], [ 29.220886, -21.943046 ], [ 29.429626, -22.090730 ], [ 29.319763, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.075368 ], [ 22.500000, -18.025751 ], [ 23.194885, -17.868975 ], [ 23.576660, -18.278910 ], [ 24.216614, -17.887273 ], [ 24.518738, -17.884659 ], [ 25.081787, -17.659726 ], [ 25.263062, -17.735607 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.735607 ], [ 25.647583, -18.534304 ], [ 25.848083, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.496492 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.483741 ], [ 28.792419, -21.637005 ], [ 29.220886, -21.943046 ], [ 29.429626, -22.090730 ], [ 29.319763, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.075368 ], [ 22.500000, -18.025751 ], [ 23.194885, -17.868975 ], [ 23.576660, -18.278910 ], [ 24.216614, -17.887273 ], [ 24.518738, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.100909 ], [ 29.967957, -22.146708 ], [ 29.319763, -22.146708 ], [ 29.429626, -22.090730 ], [ 29.838867, -22.100909 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.429626, -22.090730 ], [ 29.838867, -22.100909 ], [ 29.967957, -22.146708 ], [ 29.319763, -22.146708 ], [ 29.429626, -22.090730 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.901062, -0.947528 ], [ 33.750000, -0.953020 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.013436 ], [ 30.418396, -1.134264 ], [ 29.819641, -1.441803 ], [ 29.577942, -1.340210 ], [ 29.586182, -0.585012 ], [ 29.816895, -0.203247 ], [ 29.830627, 0.000000 ], [ 29.844360, 0.219726 ], [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.901062, -0.947528 ], [ 33.750000, -0.953020 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.013436 ], [ 30.418396, -1.134264 ], [ 29.819641, -1.441803 ], [ 29.577942, -1.340210 ], [ 29.586182, -0.585012 ], [ 29.816895, -0.203247 ], [ 29.830627, 0.000000 ], [ 29.844360, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -0.991467 ], [ 33.901062, -0.947528 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ], [ 33.969727, -0.991467 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.969727, -0.991467 ], [ 33.901062, -0.947528 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.830627, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.585012 ], [ 29.577942, -1.340210 ], [ 29.289551, -1.617522 ], [ 29.253845, -2.213195 ], [ 29.116516, -2.290039 ], [ 29.023132, -2.838804 ], [ 29.275818, -3.291340 ], [ 29.338989, -4.499762 ], [ 29.517517, -5.419148 ], [ 29.418640, -5.938436 ], [ 29.619141, -6.520001 ], [ 30.198669, -7.079088 ], [ 30.739746, -8.339236 ], [ 30.344238, -8.235955 ], [ 29.001160, -8.404451 ], [ 28.734741, -8.523984 ], [ 28.449097, -9.164467 ], [ 28.671570, -9.603458 ], [ 28.495789, -10.787443 ], [ 28.446350, -11.178402 ], [ 28.418884, -11.393879 ], [ 25.463562, -11.393879 ], [ 25.416870, -11.329253 ], [ 24.782410, -11.237674 ], [ 24.312744, -11.261919 ], [ 24.296265, -11.178402 ], [ 24.255066, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.997816 ], [ 22.401123, -10.992424 ], [ 22.280273, -11.035560 ], [ 22.280273, 0.219726 ], [ 29.844360, 0.219726 ], [ 29.830627, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.844360, 0.219726 ], [ 29.830627, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.585012 ], [ 29.577942, -1.340210 ], [ 29.289551, -1.617522 ], [ 29.253845, -2.213195 ], [ 29.116516, -2.290039 ], [ 29.023132, -2.838804 ], [ 29.275818, -3.291340 ], [ 29.338989, -4.499762 ], [ 29.517517, -5.419148 ], [ 29.418640, -5.938436 ], [ 29.619141, -6.520001 ], [ 30.198669, -7.079088 ], [ 30.739746, -8.339236 ], [ 30.344238, -8.235955 ], [ 29.001160, -8.404451 ], [ 28.734741, -8.523984 ], [ 28.449097, -9.164467 ], [ 28.671570, -9.603458 ], [ 28.495789, -10.787443 ], [ 28.446350, -11.178402 ], [ 28.418884, -11.393879 ], [ 25.463562, -11.393879 ], [ 25.416870, -11.329253 ], [ 24.782410, -11.237674 ], [ 24.312744, -11.261919 ], [ 24.296265, -11.178402 ], [ 24.255066, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.997816 ], [ 22.401123, -10.992424 ], [ 22.280273, -11.035560 ], [ 22.280273, 0.219726 ], [ 29.844360, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.911743, -10.925011 ], [ 23.996887, -11.178402 ], [ 24.016113, -11.234980 ], [ 23.977661, -11.393879 ], [ 22.280273, -11.393879 ], [ 22.280273, -11.035560 ], [ 22.401123, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 23.996887, -11.178402 ], [ 24.016113, -11.234980 ], [ 23.977661, -11.393879 ], [ 22.280273, -11.393879 ], [ 22.280273, -11.035560 ], [ 22.401123, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.813904, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.467834, -2.413532 ], [ 29.937744, -2.347670 ], [ 29.630127, -2.915611 ], [ 29.023132, -2.838804 ], [ 29.116516, -2.290039 ], [ 29.253845, -2.213195 ], [ 29.289551, -1.617522 ], [ 29.577942, -1.340210 ], [ 29.819641, -1.441803 ], [ 30.418396, -1.134264 ], [ 30.813904, -1.697139 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.418396, -1.134264 ], [ 30.813904, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.467834, -2.413532 ], [ 29.937744, -2.347670 ], [ 29.630127, -2.915611 ], [ 29.023132, -2.838804 ], [ 29.116516, -2.290039 ], [ 29.253845, -2.213195 ], [ 29.289551, -1.617522 ], [ 29.577942, -1.340210 ], [ 29.819641, -1.441803 ], [ 30.418396, -1.134264 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.467834, -2.413532 ], [ 30.525513, -2.805885 ], [ 30.742493, -3.033555 ], [ 30.750732, -3.357147 ], [ 30.503540, -3.568248 ], [ 30.116272, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.275818, -3.291340 ], [ 29.023132, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.347670 ], [ 30.467834, -2.413532 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.347670 ], [ 30.467834, -2.413532 ], [ 30.525513, -2.805885 ], [ 30.742493, -3.033555 ], [ 30.750732, -3.357147 ], [ 30.503540, -3.568248 ], [ 30.116272, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.275818, -3.291340 ], [ 29.023132, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.347670 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.255066, -10.951978 ], [ 24.296265, -11.178402 ], [ 24.312744, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.463562, -11.393879 ], [ 23.977661, -11.393879 ], [ 24.016113, -11.234980 ], [ 23.996887, -11.178402 ], [ 23.911743, -10.925011 ], [ 24.255066, -10.951978 ] ] ], [ [ [ 28.495789, -10.787443 ], [ 28.671570, -9.603458 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.523984 ], [ 29.001160, -8.404451 ], [ 30.344238, -8.235955 ], [ 30.739746, -8.339236 ], [ 31.157227, -8.591884 ], [ 31.555481, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.483582, -10.522919 ], [ 33.313293, -10.795537 ], [ 33.217163, -11.178402 ], [ 33.164978, -11.393879 ], [ 28.418884, -11.393879 ], [ 28.446350, -11.178402 ], [ 28.495789, -10.787443 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.911743, -10.925011 ], [ 24.255066, -10.951978 ], [ 24.296265, -11.178402 ], [ 24.312744, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.463562, -11.393879 ], [ 23.977661, -11.393879 ], [ 24.016113, -11.234980 ], [ 23.996887, -11.178402 ], [ 23.911743, -10.925011 ] ] ], [ [ [ 30.739746, -8.339236 ], [ 31.157227, -8.591884 ], [ 31.555481, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.483582, -10.522919 ], [ 33.313293, -10.795537 ], [ 33.217163, -11.178402 ], [ 33.164978, -11.393879 ], [ 28.418884, -11.393879 ], [ 28.446350, -11.178402 ], [ 28.495789, -10.787443 ], [ 28.671570, -9.603458 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.523984 ], [ 29.001160, -8.404451 ], [ 30.344238, -8.235955 ], [ 30.739746, -8.339236 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -0.991467 ], [ 33.969727, -9.733421 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 32.758484, -9.229538 ], [ 32.189941, -8.928487 ], [ 31.555481, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.339236 ], [ 30.198669, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.418640, -5.938436 ], [ 29.517517, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.116272, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.357147 ], [ 30.742493, -3.033555 ], [ 30.525513, -2.805885 ], [ 30.467834, -2.413532 ], [ 30.756226, -2.284551 ], [ 30.813904, -1.697139 ], [ 30.418396, -1.134264 ], [ 30.767212, -1.013436 ], [ 31.865845, -1.027167 ], [ 33.750000, -0.953020 ], [ 33.901062, -0.947528 ], [ 33.969727, -0.991467 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.901062, -0.947528 ], [ 33.969727, -0.991467 ], [ 33.969727, -9.733421 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 32.758484, -9.229538 ], [ 32.189941, -8.928487 ], [ 31.555481, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.339236 ], [ 30.198669, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.418640, -5.938436 ], [ 29.517517, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.116272, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.357147 ], [ 30.742493, -3.033555 ], [ 30.525513, -2.805885 ], [ 30.467834, -2.413532 ], [ 30.756226, -2.284551 ], [ 30.813904, -1.697139 ], [ 30.418396, -1.134264 ], [ 30.767212, -1.013436 ], [ 31.865845, -1.027167 ], [ 33.750000, -0.953020 ], [ 33.901062, -0.947528 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.733421 ], [ 33.969727, -11.393879 ], [ 33.164978, -11.393879 ], [ 33.217163, -11.178402 ], [ 33.313293, -10.795537 ], [ 33.483582, -10.522919 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.733421 ], [ 33.969727, -11.393879 ], [ 33.164978, -11.393879 ], [ 33.217163, -11.178402 ], [ 33.313293, -10.795537 ], [ 33.483582, -10.522919 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 11.385802 ], [ 22.862549, 11.178402 ], [ 22.862549, 11.143372 ], [ 22.500000, 11.046343 ], [ 22.280273, 10.987031 ], [ 22.280273, 11.393879 ], [ 22.862549, 11.393879 ], [ 22.873535, 11.385802 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.393879 ], [ 22.873535, 11.385802 ], [ 22.862549, 11.178402 ], [ 22.862549, 11.143372 ], [ 22.500000, 11.046343 ], [ 22.280273, 10.987031 ], [ 22.280273, 11.393879 ], [ 22.862549, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.975159, 10.714587 ], [ 23.551941, 10.090558 ], [ 23.554688, 9.681984 ], [ 23.392639, 9.267490 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.667918 ], [ 24.565430, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.547289 ], [ 26.463318, 5.949363 ], [ 27.213135, 5.553114 ], [ 27.372437, 5.235922 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.650330, 5.257803 ], [ 25.276794, 5.173011 ], [ 25.128479, 4.929515 ], [ 24.804382, 4.899414 ], [ 24.408875, 5.110094 ], [ 23.296509, 4.612016 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.225900 ], [ 22.403870, 4.031399 ], [ 22.280273, 4.064275 ], [ 22.280273, 10.987031 ], [ 22.500000, 11.046343 ], [ 22.862549, 11.143372 ], [ 22.975159, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.143372 ], [ 22.975159, 10.714587 ], [ 23.551941, 10.090558 ], [ 23.554688, 9.681984 ], [ 23.392639, 9.267490 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.667918 ], [ 24.565430, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.547289 ], [ 26.463318, 5.949363 ], [ 27.213135, 5.553114 ], [ 27.372437, 5.235922 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.650330, 5.257803 ], [ 25.276794, 5.173011 ], [ 25.128479, 4.929515 ], [ 24.804382, 4.899414 ], [ 24.408875, 5.110094 ], [ 23.296509, 4.612016 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.225900 ], [ 22.403870, 4.031399 ], [ 22.280273, 4.064275 ], [ 22.280273, 10.987031 ], [ 22.500000, 11.046343 ], [ 22.862549, 11.143372 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.398682, 11.081385 ], [ 31.849365, 10.533720 ], [ 31.352234, 9.811916 ], [ 30.835876, 9.709057 ], [ 29.995422, 10.293301 ], [ 29.616394, 10.085150 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.968445, 9.400291 ], [ 27.831116, 9.606166 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.554709 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.068054, 10.274384 ], [ 24.793396, 9.811916 ], [ 24.535217, 8.917634 ], [ 24.191895, 8.730363 ], [ 23.884277, 8.621757 ], [ 23.804626, 8.667918 ], [ 23.458557, 8.955619 ], [ 23.392639, 9.267490 ], [ 23.554688, 9.681984 ], [ 23.551941, 10.090558 ], [ 22.975159, 10.714587 ], [ 22.862549, 11.143372 ], [ 22.862549, 11.178402 ], [ 22.873535, 11.385802 ], [ 22.862549, 11.393879 ], [ 32.351990, 11.393879 ], [ 32.382202, 11.178402 ], [ 32.398682, 11.081385 ] ] ], [ [ [ 33.969727, 9.614290 ], [ 33.961487, 9.584501 ], [ 33.961487, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.840637, 9.982376 ], [ 33.750000, 10.241952 ], [ 33.719788, 10.325728 ], [ 33.206177, 10.722683 ], [ 33.129272, 11.178402 ], [ 33.090820, 11.393879 ], [ 33.969727, 11.393879 ], [ 33.969727, 9.614290 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.351990, 11.393879 ], [ 32.382202, 11.178402 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.533720 ], [ 31.352234, 9.811916 ], [ 30.835876, 9.709057 ], [ 29.995422, 10.293301 ], [ 29.616394, 10.085150 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.968445, 9.400291 ], [ 27.831116, 9.606166 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.554709 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.068054, 10.274384 ], [ 24.793396, 9.811916 ], [ 24.535217, 8.917634 ], [ 24.191895, 8.730363 ], [ 23.884277, 8.621757 ], [ 23.804626, 8.667918 ], [ 23.458557, 8.955619 ], [ 23.392639, 9.267490 ], [ 23.554688, 9.681984 ], [ 23.551941, 10.090558 ], [ 22.975159, 10.714587 ], [ 22.862549, 11.143372 ], [ 22.862549, 11.178402 ], [ 22.873535, 11.385802 ], [ 22.862549, 11.393879 ], [ 32.351990, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.614290 ], [ 33.961487, 9.584501 ], [ 33.961487, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.840637, 9.982376 ], [ 33.750000, 10.241952 ], [ 33.719788, 10.325728 ], [ 33.206177, 10.722683 ], [ 33.129272, 11.178402 ], [ 33.090820, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.129272, 11.178402 ], [ 33.206177, 10.722683 ], [ 33.719788, 10.325728 ], [ 33.750000, 10.241952 ], [ 33.840637, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.961487, 9.465317 ], [ 33.969727, 8.681494 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.787194 ], [ 33.565979, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.327054 ], [ 33.969727, 4.225900 ], [ 33.387451, 3.790262 ], [ 32.684326, 3.793003 ], [ 31.879578, 3.560024 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.510680 ], [ 29.951477, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.288897 ], [ 27.979431, 4.409398 ], [ 27.372437, 5.235922 ], [ 27.213135, 5.553114 ], [ 26.463318, 5.949363 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.980954 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.230519 ], [ 23.884277, 8.621757 ], [ 24.191895, 8.730363 ], [ 24.535217, 8.917634 ], [ 24.793396, 9.811916 ], [ 25.068054, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.554709 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.831116, 9.606166 ], [ 27.968445, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.616394, 10.085150 ], [ 29.995422, 10.293301 ], [ 30.835876, 9.709057 ], [ 31.352234, 9.811916 ], [ 31.849365, 10.533720 ], [ 32.398682, 11.081385 ], [ 32.382202, 11.178402 ], [ 32.351990, 11.393879 ], [ 33.090820, 11.393879 ], [ 33.129272, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.090820, 11.393879 ], [ 33.129272, 11.178402 ], [ 33.206177, 10.722683 ], [ 33.719788, 10.325728 ], [ 33.750000, 10.241952 ], [ 33.840637, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.961487, 9.465317 ], [ 33.969727, 8.681494 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.787194 ], [ 33.565979, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.327054 ], [ 33.969727, 4.225900 ], [ 33.387451, 3.790262 ], [ 32.684326, 3.793003 ], [ 31.879578, 3.560024 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.510680 ], [ 29.951477, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.288897 ], [ 27.979431, 4.409398 ], [ 27.372437, 5.235922 ], [ 27.213135, 5.553114 ], [ 26.463318, 5.949363 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.980954 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.230519 ], [ 23.884277, 8.621757 ], [ 24.191895, 8.730363 ], [ 24.535217, 8.917634 ], [ 24.793396, 9.811916 ], [ 25.068054, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.554709 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.831116, 9.606166 ], [ 27.968445, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.616394, 10.085150 ], [ 29.995422, 10.293301 ], [ 30.835876, 9.709057 ], [ 31.352234, 9.811916 ], [ 31.849365, 10.533720 ], [ 32.398682, 11.081385 ], [ 32.382202, 11.178402 ], [ 32.351990, 11.393879 ], [ 33.090820, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.219726 ], [ 29.805908, -0.219726 ], [ 29.816895, -0.203247 ], [ 29.830627, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.850874 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.342182 ], [ 30.833130, 3.510680 ], [ 31.245117, 3.782041 ], [ 31.879578, 3.560024 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.790262 ], [ 33.969727, 4.225900 ], [ 33.969727, 0.219726 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.225900 ], [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.219726 ], [ 29.805908, -0.219726 ], [ 29.816895, -0.203247 ], [ 29.830627, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.850874 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.342182 ], [ 30.833130, 3.510680 ], [ 31.245117, 3.782041 ], [ 31.879578, 3.560024 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.790262 ], [ 33.969727, 4.225900 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -0.219726 ], [ 33.892822, -0.219726 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ], [ 33.969727, -0.219726 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.969727, -0.219726 ], [ 33.892822, -0.219726 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.565979, 7.713713 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.681494 ], [ 33.969727, 7.327054 ] ] ], [ [ [ 33.969727, 9.614290 ], [ 33.969727, 8.681494 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.614290 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.681494 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.565979, 7.713713 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.681494 ] ] ], [ [ [ 33.969727, 8.681494 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.614290 ], [ 33.969727, 8.681494 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.235922 ], [ 27.979431, 4.409398 ], [ 28.427124, 4.288897 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.951477, 4.173855 ], [ 30.833130, 3.510680 ], [ 30.772705, 2.342182 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.850874 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.830627, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.805908, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.064275 ], [ 22.403870, 4.031399 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.612016 ], [ 24.408875, 5.110094 ], [ 24.804382, 4.899414 ], [ 25.128479, 4.929515 ], [ 25.276794, 5.173011 ], [ 25.650330, 5.257803 ], [ 26.400146, 5.151128 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.650330, 5.257803 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.235922 ], [ 27.979431, 4.409398 ], [ 28.427124, 4.288897 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.951477, 4.173855 ], [ 30.833130, 3.510680 ], [ 30.772705, 2.342182 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.850874 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.830627, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.805908, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.064275 ], [ 22.403870, 4.031399 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.612016 ], [ 24.408875, 5.110094 ], [ 24.804382, 4.899414 ], [ 25.128479, 4.929515 ], [ 25.276794, 5.173011 ], [ 25.650330, 5.257803 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 20.004322 ], [ 23.848572, 20.001741 ], [ 23.837585, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.280273, 20.331750 ], [ 22.280273, 22.146708 ], [ 24.999390, 22.146708 ], [ 24.999390, 20.004322 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.146708 ], [ 24.999390, 20.004322 ], [ 23.848572, 20.001741 ], [ 23.837585, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.280273, 20.331750 ], [ 22.280273, 22.146708 ], [ 24.999390, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.085965 ], [ 22.280273, 13.880746 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ] ] ], [ [ [ 22.285767, 12.648378 ], [ 22.497253, 12.262180 ], [ 22.508240, 11.681825 ], [ 22.873535, 11.385802 ], [ 22.862549, 11.178402 ], [ 22.862549, 11.143372 ], [ 22.280273, 10.987031 ], [ 22.280273, 12.648378 ], [ 22.285767, 12.648378 ] ] ], [ [ [ 22.294006, 13.373588 ], [ 22.280273, 13.352210 ], [ 22.280273, 13.424352 ], [ 22.294006, 13.373588 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.648378 ], [ 22.285767, 12.648378 ], [ 22.497253, 12.262180 ], [ 22.508240, 11.681825 ], [ 22.873535, 11.385802 ], [ 22.862549, 11.178402 ], [ 22.862549, 11.143372 ], [ 22.280273, 10.987031 ], [ 22.280273, 12.648378 ] ] ], [ [ [ 22.280273, 13.880746 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.085965 ], [ 22.280273, 13.880746 ] ] ], [ [ [ 22.280273, 13.424352 ], [ 22.294006, 13.373588 ], [ 22.280273, 13.352210 ], [ 22.280273, 13.424352 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.909241, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.987031 ], [ 22.862549, 11.143372 ], [ 22.909241, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.143372 ], [ 22.909241, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.987031 ], [ 22.862549, 11.143372 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.001628 ], [ 24.999390, 22.001628 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ], [ 33.969727, 22.001628 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 22.001628 ], [ 24.999390, 22.001628 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 10.962764 ], [ 33.164978, 10.962764 ], [ 33.129272, 11.178402 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.181650 ], [ 32.742004, 12.248760 ], [ 32.673340, 12.025889 ], [ 32.071838, 11.974845 ], [ 32.313538, 11.681825 ], [ 32.382202, 11.178402 ], [ 32.398682, 11.081385 ], [ 32.277832, 10.962764 ], [ 22.909241, 10.962764 ], [ 22.862549, 11.143372 ], [ 22.862549, 11.178402 ], [ 22.873535, 11.385802 ], [ 22.508240, 11.681825 ], [ 22.497253, 12.262180 ], [ 22.285767, 12.648378 ], [ 22.280273, 12.648378 ], [ 22.280273, 13.352210 ], [ 22.294006, 13.373588 ], [ 22.280273, 13.424352 ], [ 22.280273, 13.880746 ], [ 22.500000, 14.085965 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.837585, 19.580493 ], [ 23.848572, 20.001741 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.001628 ], [ 33.969727, 22.001628 ], [ 33.969727, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.001628 ], [ 33.969727, 10.962764 ], [ 33.164978, 10.962764 ], [ 33.129272, 11.178402 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.181650 ], [ 32.742004, 12.248760 ], [ 32.673340, 12.025889 ], [ 32.071838, 11.974845 ], [ 32.313538, 11.681825 ], [ 32.382202, 11.178402 ], [ 32.398682, 11.081385 ], [ 32.277832, 10.962764 ], [ 22.909241, 10.962764 ], [ 22.862549, 11.143372 ], [ 22.862549, 11.178402 ], [ 22.873535, 11.385802 ], [ 22.508240, 11.681825 ], [ 22.497253, 12.262180 ], [ 22.285767, 12.648378 ], [ 22.280273, 12.648378 ], [ 22.280273, 13.352210 ], [ 22.294006, 13.373588 ], [ 22.280273, 13.424352 ], [ 22.280273, 13.880746 ], [ 22.500000, 14.085965 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.837585, 19.580493 ], [ 23.848572, 20.001741 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.001628 ], [ 33.969727, 22.001628 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.206177, 12.181650 ], [ 33.085327, 11.442339 ], [ 33.129272, 11.178402 ], [ 33.164978, 10.962764 ], [ 32.277832, 10.962764 ], [ 32.398682, 11.081385 ], [ 32.382202, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.071838, 11.974845 ], [ 32.673340, 12.025889 ], [ 32.742004, 12.248760 ], [ 33.206177, 12.181650 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.742004, 12.248760 ], [ 33.206177, 12.181650 ], [ 33.085327, 11.442339 ], [ 33.129272, 11.178402 ], [ 33.164978, 10.962764 ], [ 32.277832, 10.962764 ], [ 32.398682, 11.081385 ], [ 32.382202, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.071838, 11.974845 ], [ 32.673340, 12.025889 ], [ 32.742004, 12.248760 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.925476, 32.017392 ], [ 24.480286, 31.952162 ], [ 24.919739, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.663903 ], [ 24.700012, 30.045322 ], [ 24.999390, 29.240874 ], [ 24.999390, 21.739091 ], [ 22.280273, 21.739091 ], [ 22.280273, 32.138409 ], [ 23.700256, 32.138409 ], [ 23.925476, 32.017392 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.700256, 32.138409 ], [ 23.925476, 32.017392 ], [ 24.480286, 31.952162 ], [ 24.919739, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.663903 ], [ 24.700012, 30.045322 ], [ 24.999390, 29.240874 ], [ 24.999390, 21.739091 ], [ 22.280273, 21.739091 ], [ 22.280273, 32.138409 ], [ 23.700256, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.457581, 31.323140 ], [ 28.449097, 31.027048 ], [ 28.913269, 30.871583 ], [ 29.682312, 31.186959 ], [ 30.094299, 31.475524 ], [ 30.975952, 31.557474 ], [ 31.687317, 31.431007 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.262118 ], [ 32.991943, 31.024694 ], [ 33.750000, 30.970544 ], [ 33.771973, 30.968189 ], [ 33.969727, 31.071756 ], [ 33.969727, 27.688392 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.817216 ], [ 33.134766, 28.417975 ], [ 32.420654, 29.852555 ], [ 32.319031, 29.761993 ], [ 32.733765, 28.707452 ], [ 33.346252, 27.700552 ], [ 33.750000, 26.875531 ], [ 33.969727, 26.421390 ], [ 33.969727, 22.001628 ], [ 24.999390, 22.001628 ], [ 24.999390, 29.240874 ], [ 24.700012, 30.045322 ], [ 24.955444, 30.663903 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ], [ 27.457581, 31.323140 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.457581, 31.323140 ], [ 28.449097, 31.027048 ], [ 28.913269, 30.871583 ], [ 29.682312, 31.186959 ], [ 30.094299, 31.475524 ], [ 30.975952, 31.557474 ], [ 31.687317, 31.431007 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.262118 ], [ 32.991943, 31.024694 ], [ 33.750000, 30.970544 ], [ 33.771973, 30.968189 ], [ 33.969727, 31.071756 ], [ 33.969727, 27.688392 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.817216 ], [ 33.134766, 28.417975 ], [ 32.420654, 29.852555 ], [ 32.319031, 29.761993 ], [ 32.733765, 28.707452 ], [ 33.346252, 27.700552 ], [ 33.750000, 26.875531 ], [ 33.969727, 26.421390 ], [ 33.969727, 22.001628 ], [ 24.999390, 22.001628 ], [ 24.999390, 29.240874 ], [ 24.700012, 30.045322 ], [ 24.955444, 30.663903 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 21.739091 ], [ 24.999390, 21.739091 ], [ 24.999390, 22.001628 ], [ 33.969727, 22.001628 ], [ 33.969727, 21.739091 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.001628 ], [ 24.999390, 21.739091 ], [ 24.999390, 22.001628 ], [ 33.969727, 22.001628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.596130, 41.131090 ], [ 22.280273, 41.143501 ], [ 22.280273, 41.145570 ], [ 22.607117, 41.145570 ], [ 22.596130, 41.131090 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.607117, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.280273, 41.143501 ], [ 22.280273, 41.145570 ], [ 22.607117, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 32.701800 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.191884 ], [ 23.606873, 32.189560 ], [ 23.925476, 32.017392 ], [ 24.480286, 31.952162 ], [ 24.919739, 31.900878 ], [ 25.018616, 31.765537 ], [ 22.280273, 31.765537 ], [ 22.280273, 32.734151 ], [ 22.500000, 32.701800 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 32.734151 ], [ 22.500000, 32.701800 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.191884 ], [ 23.606873, 32.189560 ], [ 23.925476, 32.017392 ], [ 24.480286, 31.952162 ], [ 24.919739, 31.900878 ], [ 25.018616, 31.765537 ], [ 22.280273, 31.765537 ], [ 22.280273, 32.734151 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.244080, 35.368895 ], [ 25.024109, 35.427106 ], [ 25.768433, 35.355456 ], [ 25.743713, 35.180543 ], [ 26.287537, 35.301677 ], [ 26.163940, 35.005253 ], [ 24.724731, 34.921971 ], [ 24.732971, 35.086203 ], [ 23.513489, 35.281501 ], [ 23.697510, 35.706377 ], [ 24.244080, 35.368895 ] ] ], [ [ [ 26.312256, 40.979898 ], [ 26.293030, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.948788 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.126391 ], [ 23.898010, 39.962386 ], [ 23.340454, 39.962386 ], [ 22.813110, 40.476203 ], [ 22.623596, 40.258569 ], [ 22.848816, 39.660685 ], [ 23.348694, 39.191820 ], [ 22.972412, 38.972222 ], [ 23.529968, 38.511639 ], [ 24.024353, 38.220920 ], [ 24.038086, 37.655558 ], [ 23.112488, 37.920368 ], [ 23.409119, 37.411619 ], [ 22.774658, 37.306829 ], [ 23.153687, 36.423493 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.410231 ], [ 22.280273, 36.522881 ], [ 22.280273, 41.143501 ], [ 22.596130, 41.131090 ], [ 22.607117, 41.145570 ], [ 26.394653, 41.145570 ], [ 26.312256, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.244080, 35.368895 ], [ 25.024109, 35.427106 ], [ 25.768433, 35.355456 ], [ 25.743713, 35.180543 ], [ 26.287537, 35.301677 ], [ 26.163940, 35.005253 ], [ 24.724731, 34.921971 ], [ 24.732971, 35.086203 ], [ 23.513489, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.394653, 41.145570 ], [ 26.312256, 40.979898 ], [ 26.293030, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.948788 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.126391 ], [ 23.898010, 39.962386 ], [ 23.340454, 39.962386 ], [ 22.813110, 40.476203 ], [ 22.623596, 40.258569 ], [ 22.848816, 39.660685 ], [ 23.348694, 39.191820 ], [ 22.972412, 38.972222 ], [ 23.529968, 38.511639 ], [ 24.024353, 38.220920 ], [ 24.038086, 37.655558 ], [ 23.112488, 37.920368 ], [ 23.409119, 37.411619 ], [ 22.774658, 37.306829 ], [ 23.153687, 36.423493 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.410231 ], [ 22.280273, 36.522881 ], [ 22.280273, 41.143501 ], [ 22.596130, 41.131090 ], [ 22.607117, 41.145570 ], [ 26.394653, 41.145570 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 35.294952 ], [ 33.898315, 35.247862 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.095193 ], [ 33.750000, 35.050235 ], [ 33.673096, 35.018750 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.000754 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.917786, 35.088451 ], [ 32.731018, 35.140125 ], [ 32.802429, 35.146863 ], [ 32.945251, 35.386811 ], [ 33.664856, 35.373375 ], [ 33.750000, 35.402484 ], [ 33.969727, 35.474092 ], [ 33.969727, 35.294952 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 35.474092 ], [ 33.969727, 35.294952 ], [ 33.898315, 35.247862 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.095193 ], [ 33.750000, 35.050235 ], [ 33.673096, 35.018750 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.000754 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.917786, 35.088451 ], [ 32.731018, 35.140125 ], [ 32.802429, 35.146863 ], [ 32.945251, 35.386811 ], [ 33.664856, 35.373375 ], [ 33.750000, 35.402484 ], [ 33.969727, 35.474092 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.000754 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.018750 ], [ 33.750000, 35.050235 ], [ 33.865356, 35.095193 ], [ 33.969727, 35.061477 ], [ 33.969727, 34.966999 ], [ 33.750000, 34.879172 ], [ 32.978210, 34.572168 ], [ 32.489319, 34.703235 ], [ 32.255859, 35.104181 ], [ 32.731018, 35.140125 ], [ 32.917786, 35.088451 ], [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.000754 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.018750 ], [ 33.750000, 35.050235 ], [ 33.865356, 35.095193 ], [ 33.969727, 35.061477 ], [ 33.969727, 34.966999 ], [ 33.750000, 34.879172 ], [ 32.978210, 34.572168 ], [ 32.489319, 34.703235 ], [ 32.255859, 35.104181 ], [ 32.731018, 35.140125 ], [ 32.917786, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.143494, 41.087632 ], [ 31.247864, 41.145570 ], [ 33.969727, 41.145570 ], [ 33.969727, 36.219903 ], [ 33.750000, 36.202174 ], [ 32.508545, 36.109034 ], [ 31.698303, 36.646385 ], [ 30.618896, 36.679433 ], [ 30.390930, 36.264207 ], [ 29.698792, 36.144529 ], [ 28.731995, 36.677231 ], [ 27.638855, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.210130 ], [ 26.803894, 38.987168 ], [ 26.169434, 39.463764 ], [ 27.279053, 40.421860 ], [ 28.819885, 40.461577 ], [ 29.102783, 40.979898 ], [ 29.193420, 41.145570 ], [ 30.322266, 41.145570 ], [ 31.143494, 41.087632 ] ] ], [ [ [ 28.806152, 41.056573 ], [ 27.616882, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.691052 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.056824, 40.824202 ], [ 26.293030, 40.936340 ], [ 26.312256, 40.979898 ], [ 26.394653, 41.145570 ], [ 28.872070, 41.145570 ], [ 28.806152, 41.056573 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 41.145570 ], [ 33.969727, 36.219903 ], [ 33.750000, 36.202174 ], [ 32.508545, 36.109034 ], [ 31.698303, 36.646385 ], [ 30.618896, 36.679433 ], [ 30.390930, 36.264207 ], [ 29.698792, 36.144529 ], [ 28.731995, 36.677231 ], [ 27.638855, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.210130 ], [ 26.803894, 38.987168 ], [ 26.169434, 39.463764 ], [ 27.279053, 40.421860 ], [ 28.819885, 40.461577 ], [ 29.102783, 40.979898 ], [ 29.193420, 41.145570 ], [ 30.322266, 41.145570 ], [ 31.143494, 41.087632 ], [ 31.247864, 41.145570 ], [ 33.969727, 41.145570 ] ] ], [ [ [ 28.872070, 41.145570 ], [ 28.806152, 41.056573 ], [ 27.616882, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.691052 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.056824, 40.824202 ], [ 26.293030, 40.936340 ], [ 26.312256, 40.979898 ], [ 26.394653, 41.145570 ], [ 28.872070, 41.145570 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.774658, 49.028864 ], [ 22.631836, 49.066668 ], [ 22.752686, 49.066668 ], [ 22.774658, 49.028864 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.752686, 49.066668 ], [ 22.774658, 49.028864 ], [ 22.631836, 49.066668 ], [ 22.752686, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.221013 ], [ 22.640076, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.811310 ], [ 22.280273, 47.735629 ], [ 22.280273, 48.328865 ], [ 22.500000, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 48.328865 ], [ 22.500000, 48.221013 ], [ 22.640076, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.811310 ], [ 22.280273, 47.735629 ], [ 22.280273, 48.328865 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 48.826757 ], [ 22.280273, 49.066668 ], [ 22.535706, 49.066668 ], [ 22.280273, 48.826757 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.535706, 49.066668 ], [ 22.280273, 48.826757 ], [ 22.280273, 49.066668 ], [ 22.535706, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.431819 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.384729 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.093503 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.211182 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.425484 ], [ 22.379150, 42.322001 ], [ 22.280273, 42.319970 ], [ 22.280273, 44.576774 ], [ 22.458801, 44.703802 ], [ 22.500000, 44.684277 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.431819 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.384729 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.093503 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.211182 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.425484 ], [ 22.379150, 42.322001 ], [ 22.280273, 42.319970 ], [ 22.280273, 44.576774 ], [ 22.458801, 44.703802 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.760925, 41.306698 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.280273, 41.143501 ], [ 22.280273, 42.319970 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.760925, 41.306698 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.280273, 41.143501 ], [ 22.280273, 42.319970 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.921997, 48.123934 ], [ 27.232361, 47.827908 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.157959, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.232117, 45.489020 ], [ 28.677063, 45.305803 ], [ 29.149475, 45.465910 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.036656 ], [ 29.141235, 44.820812 ], [ 28.836365, 44.914249 ], [ 28.556213, 43.707594 ], [ 27.968445, 43.812729 ], [ 27.240601, 44.176295 ], [ 26.065063, 43.945372 ], [ 25.567932, 43.689722 ], [ 24.098511, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.942200, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.384729 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.431819 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.458801, 44.703802 ], [ 22.280273, 44.576774 ], [ 22.280273, 47.735629 ], [ 22.500000, 47.811310 ], [ 22.708740, 47.883197 ], [ 23.139954, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.864807, 47.739323 ], [ 25.205383, 47.892406 ], [ 25.944214, 47.988083 ], [ 26.196899, 48.221013 ], [ 26.617126, 48.221013 ], [ 26.921997, 48.123934 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.617126, 48.221013 ], [ 26.921997, 48.123934 ], [ 27.232361, 47.827908 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.157959, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.232117, 45.489020 ], [ 28.677063, 45.305803 ], [ 29.149475, 45.465910 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.036656 ], [ 29.141235, 44.820812 ], [ 28.836365, 44.914249 ], [ 28.556213, 43.707594 ], [ 27.968445, 43.812729 ], [ 27.240601, 44.176295 ], [ 26.065063, 43.945372 ], [ 25.567932, 43.689722 ], [ 24.098511, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.942200, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.384729 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.431819 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.458801, 44.703802 ], [ 22.280273, 44.576774 ], [ 22.280273, 47.735629 ], [ 22.500000, 47.811310 ], [ 22.708740, 47.883197 ], [ 23.139954, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.864807, 47.739323 ], [ 25.205383, 47.892406 ], [ 25.944214, 47.988083 ], [ 26.196899, 48.221013 ], [ 26.617126, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.942200, 43.824620 ], [ 23.332214, 43.897892 ], [ 24.098511, 43.741336 ], [ 25.567932, 43.689722 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.176295 ], [ 27.968445, 43.812729 ], [ 28.556213, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.671814, 42.579377 ], [ 27.995911, 42.008489 ], [ 27.133484, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.329389 ], [ 25.197144, 41.236511 ], [ 24.491272, 41.584634 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.425484 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.211182 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.093503 ], [ 22.656555, 44.235360 ], [ 22.942200, 43.824620 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.656555, 44.235360 ], [ 22.942200, 43.824620 ], [ 23.332214, 43.897892 ], [ 24.098511, 43.741336 ], [ 25.567932, 43.689722 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.176295 ], [ 27.968445, 43.812729 ], [ 28.556213, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.671814, 42.579377 ], [ 27.995911, 42.008489 ], [ 27.133484, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.329389 ], [ 25.197144, 41.236511 ], [ 24.491272, 41.584634 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.425484 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.211182 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.093503 ], [ 22.656555, 44.235360 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.256836, 48.156925 ], [ 28.668823, 48.118434 ], [ 29.122009, 47.850031 ], [ 29.050598, 47.511636 ], [ 29.413147, 47.348128 ], [ 29.558716, 46.929634 ], [ 29.907532, 46.675826 ], [ 29.836121, 46.526745 ], [ 30.022888, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.519186 ], [ 28.861084, 46.439750 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.941601 ], [ 28.484802, 45.598666 ], [ 28.232117, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.157959, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.232361, 47.827908 ], [ 26.921997, 48.123934 ], [ 26.617126, 48.221013 ], [ 26.856079, 48.369023 ], [ 27.520752, 48.467458 ], [ 28.256836, 48.156925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.467458 ], [ 28.256836, 48.156925 ], [ 28.668823, 48.118434 ], [ 29.122009, 47.850031 ], [ 29.050598, 47.511636 ], [ 29.413147, 47.348128 ], [ 29.558716, 46.929634 ], [ 29.907532, 46.675826 ], [ 29.836121, 46.526745 ], [ 30.022888, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.519186 ], [ 28.861084, 46.439750 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.941601 ], [ 28.484802, 45.598666 ], [ 28.232117, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.157959, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.232361, 47.827908 ], [ 26.921997, 48.123934 ], [ 26.617126, 48.221013 ], [ 26.856079, 48.369023 ], [ 27.520752, 48.467458 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.774658, 49.028864 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ], [ 33.969727, 44.402392 ], [ 33.881836, 44.363133 ], [ 33.750000, 44.412202 ], [ 33.324280, 44.565034 ], [ 33.546753, 45.036656 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.296814, 46.080852 ], [ 31.742249, 46.333654 ], [ 31.673584, 46.707853 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.465910 ], [ 28.677063, 45.305803 ], [ 28.232117, 45.489020 ], [ 28.484802, 45.598666 ], [ 28.657837, 45.941601 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.439750 ], [ 29.069824, 46.519186 ], [ 29.168701, 46.381044 ], [ 29.759216, 46.350719 ], [ 30.022888, 46.424606 ], [ 29.836121, 46.526745 ], [ 29.907532, 46.675826 ], [ 29.558716, 46.929634 ], [ 29.413147, 47.348128 ], [ 29.050598, 47.511636 ], [ 29.122009, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.156925 ], [ 27.520752, 48.467458 ], [ 26.856079, 48.369023 ], [ 26.617126, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.988083 ], [ 25.205383, 47.892406 ], [ 24.864807, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.139954, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.640076, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.280273, 48.328865 ], [ 22.280273, 48.826757 ], [ 22.535706, 49.066668 ], [ 22.631836, 49.066668 ], [ 22.774658, 49.028864 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.402392 ], [ 33.881836, 44.363133 ], [ 33.750000, 44.412202 ], [ 33.324280, 44.565034 ], [ 33.546753, 45.036656 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.296814, 46.080852 ], [ 31.742249, 46.333654 ], [ 31.673584, 46.707853 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.465910 ], [ 28.677063, 45.305803 ], [ 28.232117, 45.489020 ], [ 28.484802, 45.598666 ], [ 28.657837, 45.941601 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.439750 ], [ 29.069824, 46.519186 ], [ 29.168701, 46.381044 ], [ 29.759216, 46.350719 ], [ 30.022888, 46.424606 ], [ 29.836121, 46.526745 ], [ 29.907532, 46.675826 ], [ 29.558716, 46.929634 ], [ 29.413147, 47.348128 ], [ 29.050598, 47.511636 ], [ 29.122009, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.156925 ], [ 27.520752, 48.467458 ], [ 26.856079, 48.369023 ], [ 26.617126, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.988083 ], [ 25.205383, 47.892406 ], [ 24.864807, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.139954, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.640076, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.280273, 48.328865 ], [ 22.280273, 48.826757 ], [ 22.535706, 49.066668 ], [ 22.631836, 49.066668 ], [ 22.774658, 49.028864 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.603394, 41.564087 ], [ 26.312256, 40.979898 ], [ 26.293030, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.948788 ], [ 24.293518, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.143501 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.329389 ], [ 26.114502, 41.828642 ], [ 26.603394, 41.564087 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.564087 ], [ 26.312256, 40.979898 ], [ 26.293030, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.948788 ], [ 24.293518, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.143501 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.329389 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 40.813809 ], [ 29.009399, 40.813809 ], [ 29.102783, 40.979898 ], [ 29.237366, 41.222052 ], [ 31.143494, 41.087632 ], [ 32.346497, 41.736479 ], [ 33.511047, 42.020733 ], [ 33.750000, 42.024814 ], [ 33.969727, 42.026854 ], [ 33.969727, 40.813809 ] ] ], [ [ [ 27.995911, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.056573 ], [ 27.616882, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.358704, 40.813809 ], [ 26.054077, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.293030, 40.936340 ], [ 26.312256, 40.979898 ], [ 26.603394, 41.564087 ], [ 26.114502, 41.828642 ], [ 27.133484, 42.143042 ], [ 27.995911, 42.008489 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 42.026854 ], [ 33.969727, 40.813809 ], [ 29.009399, 40.813809 ], [ 29.102783, 40.979898 ], [ 29.237366, 41.222052 ], [ 31.143494, 41.087632 ], [ 32.346497, 41.736479 ], [ 33.511047, 42.020733 ], [ 33.750000, 42.024814 ], [ 33.969727, 42.026854 ] ] ], [ [ [ 27.133484, 42.143042 ], [ 27.995911, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.056573 ], [ 27.616882, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.358704, 40.813809 ], [ 26.054077, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.293030, 40.936340 ], [ 26.312256, 40.979898 ], [ 26.603394, 41.564087 ], [ 26.114502, 41.828642 ], [ 27.133484, 42.143042 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 52.141917 ], [ 33.750000, 52.335339 ], [ 32.714539, 52.239574 ], [ 32.409668, 52.290003 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.539001, 52.742943 ], [ 31.302795, 53.074228 ], [ 31.495056, 53.168180 ], [ 32.302551, 53.133590 ], [ 32.692566, 53.352191 ], [ 32.404175, 53.618579 ], [ 31.731262, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.157609 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.083084 ], [ 30.871582, 55.551942 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.830627, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.308777, 55.776573 ], [ 29.237366, 55.899956 ], [ 33.969727, 55.899956 ], [ 33.969727, 52.141917 ] ] ], [ [ [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.755432, 54.857640 ], [ 22.648315, 54.583205 ], [ 22.730713, 54.327736 ], [ 22.500000, 54.326135 ], [ 22.280273, 54.324533 ], [ 22.280273, 55.021725 ], [ 22.313232, 55.015426 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 55.899956 ], [ 33.969727, 52.141917 ], [ 33.750000, 52.335339 ], [ 32.714539, 52.239574 ], [ 32.409668, 52.290003 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.539001, 52.742943 ], [ 31.302795, 53.074228 ], [ 31.495056, 53.168180 ], [ 32.302551, 53.133590 ], [ 32.692566, 53.352191 ], [ 32.404175, 53.618579 ], [ 31.731262, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.157609 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.083084 ], [ 30.871582, 55.551942 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.830627, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.308777, 55.776573 ], [ 29.237366, 55.899956 ], [ 33.969727, 55.899956 ] ] ], [ [ [ 22.280273, 55.021725 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.755432, 54.857640 ], [ 22.648315, 54.583205 ], [ 22.730713, 54.327736 ], [ 22.500000, 54.326135 ], [ 22.280273, 54.324533 ], [ 22.280273, 55.021725 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.241577, 54.221891 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.804626, 53.090725 ], [ 23.799133, 52.691367 ], [ 23.197632, 52.487798 ], [ 23.507996, 52.023769 ], [ 23.524475, 51.578776 ], [ 24.029846, 50.706895 ], [ 23.922729, 50.426019 ], [ 23.425598, 50.308638 ], [ 22.516479, 49.477048 ], [ 22.774658, 49.028864 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.111636 ], [ 22.280273, 49.201448 ], [ 22.280273, 54.324533 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.327736 ], [ 23.241577, 54.221891 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.327736 ], [ 23.241577, 54.221891 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.804626, 53.090725 ], [ 23.799133, 52.691367 ], [ 23.197632, 52.487798 ], [ 23.507996, 52.023769 ], [ 23.524475, 51.578776 ], [ 24.029846, 50.706895 ], [ 23.922729, 50.426019 ], [ 23.425598, 50.308638 ], [ 22.516479, 49.477048 ], [ 22.774658, 49.028864 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.111636 ], [ 22.280273, 49.201448 ], [ 22.280273, 54.324533 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.327736 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 49.111636 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.034267 ], [ 22.280273, 48.826757 ], [ 22.280273, 49.201448 ], [ 22.500000, 49.111636 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 49.201448 ], [ 22.500000, 49.111636 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.034267 ], [ 22.280273, 48.826757 ], [ 22.280273, 49.201448 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.100525, 55.784296 ], [ 27.070312, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.930481, 55.899956 ], [ 27.419128, 55.899956 ], [ 27.100525, 55.784296 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.419128, 55.899956 ], [ 27.100525, 55.784296 ], [ 27.070312, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.930481, 55.899956 ], [ 27.419128, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.167888 ], [ 25.768433, 54.848153 ], [ 25.534973, 54.282865 ], [ 24.450073, 53.905956 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.221891 ], [ 22.730713, 54.327736 ], [ 22.648315, 54.583205 ], [ 22.755432, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.280273, 55.021725 ], [ 22.280273, 55.899956 ], [ 25.930481, 55.899956 ], [ 26.174927, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.930481, 55.899956 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.167888 ], [ 25.768433, 54.848153 ], [ 25.534973, 54.282865 ], [ 24.450073, 53.905956 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.221891 ], [ 22.730713, 54.327736 ], [ 22.648315, 54.583205 ], [ 22.755432, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.280273, 55.021725 ], [ 22.280273, 55.899956 ], [ 25.930481, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.308777, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.830627, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.551942 ], [ 30.970459, 55.083084 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.157609 ], [ 31.788940, 53.975474 ], [ 31.731262, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.692566, 53.352191 ], [ 32.302551, 53.133590 ], [ 31.495056, 53.168180 ], [ 31.302795, 53.074228 ], [ 31.539001, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.823896 ], [ 30.552979, 51.320314 ], [ 30.154724, 51.416338 ], [ 29.253845, 51.368351 ], [ 28.990173, 51.602666 ], [ 28.616638, 51.428327 ], [ 28.240356, 51.573656 ], [ 27.452087, 51.592429 ], [ 26.336975, 51.832383 ], [ 25.326233, 51.912085 ], [ 24.551697, 51.890054 ], [ 24.002380, 51.618017 ], [ 23.524475, 51.578776 ], [ 23.507996, 52.023769 ], [ 23.197632, 52.487798 ], [ 23.799133, 52.691367 ], [ 23.804626, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.905956 ], [ 25.534973, 54.282865 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.167888 ], [ 26.493530, 55.615589 ], [ 27.070312, 55.776573 ], [ 27.100525, 55.784296 ], [ 27.419128, 55.899956 ], [ 29.237366, 55.899956 ], [ 29.308777, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.237366, 55.899956 ], [ 29.308777, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.830627, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.551942 ], [ 30.970459, 55.083084 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.157609 ], [ 31.788940, 53.975474 ], [ 31.731262, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.692566, 53.352191 ], [ 32.302551, 53.133590 ], [ 31.495056, 53.168180 ], [ 31.302795, 53.074228 ], [ 31.539001, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.823896 ], [ 30.552979, 51.320314 ], [ 30.154724, 51.416338 ], [ 29.253845, 51.368351 ], [ 28.990173, 51.602666 ], [ 28.616638, 51.428327 ], [ 28.240356, 51.573656 ], [ 27.452087, 51.592429 ], [ 26.336975, 51.832383 ], [ 25.326233, 51.912085 ], [ 24.551697, 51.890054 ], [ 24.002380, 51.618017 ], [ 23.524475, 51.578776 ], [ 23.507996, 52.023769 ], [ 23.197632, 52.487798 ], [ 23.799133, 52.691367 ], [ 23.804626, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.905956 ], [ 25.534973, 54.282865 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.167888 ], [ 26.493530, 55.615589 ], [ 27.070312, 55.776573 ], [ 27.100525, 55.784296 ], [ 27.419128, 55.899956 ], [ 29.237366, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 52.141917 ], [ 33.969727, 48.777913 ], [ 22.280273, 48.777913 ], [ 22.280273, 48.826757 ], [ 22.500000, 49.034267 ], [ 22.557678, 49.086459 ], [ 22.774658, 49.028864 ], [ 22.516479, 49.477048 ], [ 23.425598, 50.308638 ], [ 23.922729, 50.426019 ], [ 24.029846, 50.706895 ], [ 23.524475, 51.578776 ], [ 24.002380, 51.618017 ], [ 24.551697, 51.890054 ], [ 25.326233, 51.912085 ], [ 26.336975, 51.832383 ], [ 27.452087, 51.592429 ], [ 28.240356, 51.573656 ], [ 28.616638, 51.428327 ], [ 28.990173, 51.602666 ], [ 29.253845, 51.368351 ], [ 30.154724, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.823896 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.290003 ], [ 32.714539, 52.239574 ], [ 33.750000, 52.335339 ], [ 33.969727, 52.141917 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 33.969727, 52.141917 ], [ 33.969727, 48.777913 ], [ 22.280273, 48.777913 ], [ 22.280273, 48.826757 ], [ 22.500000, 49.034267 ], [ 22.557678, 49.086459 ], [ 22.774658, 49.028864 ], [ 22.516479, 49.477048 ], [ 23.425598, 50.308638 ], [ 23.922729, 50.426019 ], [ 24.029846, 50.706895 ], [ 23.524475, 51.578776 ], [ 24.002380, 51.618017 ], [ 24.551697, 51.890054 ], [ 25.326233, 51.912085 ], [ 26.336975, 51.832383 ], [ 27.452087, 51.592429 ], [ 28.240356, 51.573656 ], [ 28.616638, 51.428327 ], [ 28.990173, 51.602666 ], [ 29.253845, 51.368351 ], [ 30.154724, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.823896 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.290003 ], [ 32.714539, 52.239574 ], [ 33.750000, 52.335339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 55.652798 ], [ 30.456848, 55.652798 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.830627, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.308777, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.853088, 56.760251 ], [ 27.767944, 57.244880 ], [ 27.287292, 57.475973 ], [ 27.715759, 57.792089 ], [ 27.419128, 58.725451 ], [ 28.130493, 59.300954 ], [ 27.979431, 59.475779 ], [ 29.116516, 60.029186 ], [ 28.067322, 60.504583 ], [ 29.910278, 61.606396 ], [ 30.088806, 61.710706 ], [ 33.969727, 61.710706 ], [ 33.969727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 61.710706 ], [ 33.969727, 55.652798 ], [ 30.456848, 55.652798 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.830627, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.308777, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.853088, 56.760251 ], [ 27.767944, 57.244880 ], [ 27.287292, 57.475973 ], [ 27.715759, 57.792089 ], [ 27.419128, 58.725451 ], [ 28.130493, 59.300954 ], [ 27.979431, 59.475779 ], [ 29.116516, 60.029186 ], [ 28.067322, 60.504583 ], [ 29.910278, 61.606396 ], [ 30.088806, 61.710706 ], [ 33.969727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.910278, 61.606396 ], [ 28.067322, 60.504583 ], [ 26.254578, 60.424699 ], [ 24.494019, 60.057987 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.194791 ], [ 22.288513, 60.392148 ], [ 22.280273, 60.396219 ], [ 22.280273, 61.710706 ], [ 30.088806, 61.710706 ], [ 29.910278, 61.606396 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.088806, 61.710706 ], [ 29.910278, 61.606396 ], [ 28.067322, 60.504583 ], [ 26.254578, 60.424699 ], [ 24.494019, 60.057987 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.194791 ], [ 22.288513, 60.392148 ], [ 22.280273, 60.396219 ], [ 22.280273, 61.710706 ], [ 30.088806, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.600891, 57.847674 ], [ 26.463318, 57.477450 ], [ 27.287292, 57.475973 ], [ 27.767944, 57.244880 ], [ 27.853088, 56.760251 ], [ 28.174438, 56.170023 ], [ 27.100525, 55.784296 ], [ 27.070312, 55.776573 ], [ 26.625366, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.101152 ], [ 24.999390, 56.165435 ], [ 24.859314, 56.372856 ], [ 23.876038, 56.273861 ], [ 22.500000, 56.327198 ], [ 22.280273, 56.336334 ], [ 22.280273, 57.667442 ], [ 22.500000, 57.746679 ], [ 22.521973, 57.754007 ], [ 23.315735, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ], [ 25.600891, 57.847674 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.600891, 57.847674 ], [ 26.463318, 57.477450 ], [ 27.287292, 57.475973 ], [ 27.767944, 57.244880 ], [ 27.853088, 56.760251 ], [ 28.174438, 56.170023 ], [ 27.100525, 55.784296 ], [ 27.070312, 55.776573 ], [ 26.625366, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.101152 ], [ 24.999390, 56.165435 ], [ 24.859314, 56.372856 ], [ 23.876038, 56.273861 ], [ 22.500000, 56.327198 ], [ 22.280273, 56.336334 ], [ 22.280273, 57.667442 ], [ 22.500000, 57.746679 ], [ 22.521973, 57.754007 ], [ 23.315735, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.946716, 59.446471 ], [ 27.979431, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.725451 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.475973 ], [ 26.463318, 57.477450 ], [ 25.600891, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.614056 ], [ 23.337708, 59.188592 ], [ 24.603882, 59.466013 ], [ 25.861816, 59.612212 ], [ 26.946716, 59.446471 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.946716, 59.446471 ], [ 27.979431, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.725451 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.475973 ], [ 26.463318, 57.477450 ], [ 25.600891, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.614056 ], [ 23.337708, 59.188592 ], [ 24.603882, 59.466013 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 56.165435 ], [ 25.532227, 56.101152 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.336334 ], [ 22.500000, 56.327198 ], [ 23.876038, 56.273861 ], [ 24.859314, 56.372856 ], [ 24.999390, 56.165435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.859314, 56.372856 ], [ 24.999390, 56.165435 ], [ 25.532227, 56.101152 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.336334 ], [ 22.500000, 56.327198 ], [ 23.876038, 56.273861 ], [ 24.859314, 56.372856 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.229126, 55.918430 ], [ 29.308777, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.830627, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.948730, 55.776573 ], [ 30.456848, 55.652798 ], [ 26.625366, 55.652798 ], [ 27.070312, 55.776573 ], [ 27.100525, 55.784296 ], [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.308777, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.830627, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.948730, 55.776573 ], [ 30.456848, 55.652798 ], [ 26.625366, 55.652798 ], [ 27.070312, 55.776573 ], [ 27.100525, 55.784296 ], [ 28.174438, 56.170023 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 66.381560 ], [ 33.969727, 66.283432 ], [ 33.969727, 61.501734 ], [ 29.731750, 61.501734 ], [ 29.910278, 61.606396 ], [ 30.209656, 61.780916 ], [ 31.138000, 62.358530 ], [ 31.514282, 62.868926 ], [ 30.033875, 63.553446 ], [ 30.443115, 64.205182 ], [ 29.542236, 64.949139 ], [ 30.215149, 65.806153 ], [ 29.495544, 66.513260 ], [ 29.404907, 66.600676 ], [ 33.255615, 66.600676 ], [ 33.750000, 66.381560 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.255615, 66.600676 ], [ 33.750000, 66.381560 ], [ 33.969727, 66.283432 ], [ 33.969727, 61.501734 ], [ 29.731750, 61.501734 ], [ 29.910278, 61.606396 ], [ 30.209656, 61.780916 ], [ 31.138000, 62.358530 ], [ 31.514282, 62.868926 ], [ 30.033875, 63.553446 ], [ 30.443115, 64.205182 ], [ 29.542236, 64.949139 ], [ 30.215149, 65.806153 ], [ 29.495544, 66.513260 ], [ 29.404907, 66.600676 ], [ 33.255615, 66.600676 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.007969 ], [ 22.500000, 65.776871 ], [ 22.280273, 65.740785 ], [ 22.280273, 66.600676 ], [ 23.557434, 66.600676 ], [ 23.560181, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.557434, 66.600676 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.007969 ], [ 22.500000, 65.776871 ], [ 22.280273, 65.740785 ], [ 22.280273, 66.600676 ], [ 23.557434, 66.600676 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.495544, 66.513260 ], [ 30.215149, 65.806153 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.205182 ], [ 30.033875, 63.553446 ], [ 31.514282, 62.868926 ], [ 31.138000, 62.358530 ], [ 30.209656, 61.780916 ], [ 29.910278, 61.606396 ], [ 29.731750, 61.501734 ], [ 22.280273, 61.501734 ], [ 22.280273, 63.708372 ], [ 22.442322, 63.818864 ], [ 22.500000, 63.846722 ], [ 24.730225, 64.902580 ], [ 25.397644, 65.111460 ], [ 25.293274, 65.534584 ], [ 23.900757, 66.007969 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.557434, 66.600676 ], [ 29.404907, 66.600676 ], [ 29.495544, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.404907, 66.600676 ], [ 29.495544, 66.513260 ], [ 30.215149, 65.806153 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.205182 ], [ 30.033875, 63.553446 ], [ 31.514282, 62.868926 ], [ 31.138000, 62.358530 ], [ 30.209656, 61.780916 ], [ 29.910278, 61.606396 ], [ 29.731750, 61.501734 ], [ 22.280273, 61.501734 ], [ 22.280273, 63.708372 ], [ 22.442322, 63.818864 ], [ 22.500000, 63.846722 ], [ 24.730225, 64.902580 ], [ 25.397644, 65.111460 ], [ 25.293274, 65.534584 ], [ 23.900757, 66.007969 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.557434, 66.600676 ], [ 29.404907, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 69.311529 ], [ 33.774719, 69.301823 ], [ 33.969727, 69.285314 ], [ 33.969727, 66.751830 ], [ 33.917542, 66.760501 ], [ 33.750000, 66.732308 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.648376, 66.425537 ], [ 29.586182, 66.425537 ], [ 29.495544, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.065619 ], [ 29.399414, 69.157672 ], [ 31.099548, 69.558512 ], [ 32.132263, 69.906724 ], [ 33.750000, 69.311529 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.132263, 69.906724 ], [ 33.750000, 69.311529 ], [ 33.774719, 69.301823 ], [ 33.969727, 69.285314 ], [ 33.969727, 66.751830 ], [ 33.917542, 66.760501 ], [ 33.750000, 66.732308 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.648376, 66.425537 ], [ 29.586182, 66.425537 ], [ 29.495544, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.065619 ], [ 29.399414, 69.157672 ], [ 31.099548, 69.558512 ], [ 32.132263, 69.906724 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.624390, 70.612614 ], [ 31.291809, 70.454265 ], [ 30.003662, 70.186965 ], [ 31.099548, 69.558512 ], [ 29.399414, 69.157672 ], [ 28.591919, 69.065619 ], [ 29.014893, 69.766607 ], [ 27.732239, 70.164610 ], [ 26.177673, 69.825418 ], [ 25.688782, 69.093080 ], [ 24.732971, 68.650556 ], [ 23.661804, 68.892220 ], [ 22.500000, 68.848656 ], [ 22.354431, 68.842709 ], [ 22.280273, 68.879358 ], [ 22.280273, 70.227886 ], [ 23.021851, 70.202785 ], [ 23.766174, 70.612614 ], [ 23.900757, 70.685421 ], [ 30.314026, 70.685421 ], [ 30.624390, 70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.314026, 70.685421 ], [ 30.624390, 70.612614 ], [ 31.291809, 70.454265 ], [ 30.003662, 70.186965 ], [ 31.099548, 69.558512 ], [ 29.399414, 69.157672 ], [ 28.591919, 69.065619 ], [ 29.014893, 69.766607 ], [ 27.732239, 70.164610 ], [ 26.177673, 69.825418 ], [ 25.688782, 69.093080 ], [ 24.732971, 68.650556 ], [ 23.661804, 68.892220 ], [ 22.500000, 68.848656 ], [ 22.354431, 68.842709 ], [ 22.280273, 68.879358 ], [ 22.280273, 70.227886 ], [ 23.021851, 70.202785 ], [ 23.766174, 70.612614 ], [ 23.900757, 70.685421 ], [ 30.314026, 70.685421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 68.393113 ], [ 23.538208, 67.936492 ], [ 23.562927, 66.513260 ], [ 23.562927, 66.425537 ], [ 22.280273, 66.425537 ], [ 22.280273, 68.487984 ], [ 22.500000, 68.393113 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 68.487984 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.936492 ], [ 23.562927, 66.513260 ], [ 23.562927, 66.425537 ], [ 22.280273, 66.425537 ], [ 22.280273, 68.487984 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.014893, 69.766607 ], [ 28.591919, 69.065619 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.495544, 66.513260 ], [ 29.586182, 66.425537 ], [ 23.562927, 66.425537 ], [ 23.562927, 66.513260 ], [ 23.538208, 67.936492 ], [ 22.500000, 68.393113 ], [ 22.280273, 68.487984 ], [ 22.280273, 68.879358 ], [ 22.354431, 68.842709 ], [ 22.500000, 68.848656 ], [ 23.661804, 68.892220 ], [ 24.732971, 68.650556 ], [ 25.688782, 69.093080 ], [ 26.177673, 69.825418 ], [ 27.732239, 70.164610 ], [ 29.014893, 69.766607 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.732239, 70.164610 ], [ 29.014893, 69.766607 ], [ 28.591919, 69.065619 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.495544, 66.513260 ], [ 29.586182, 66.425537 ], [ 23.562927, 66.425537 ], [ 23.562927, 66.513260 ], [ 23.538208, 67.936492 ], [ 22.500000, 68.393113 ], [ 22.280273, 68.487984 ], [ 22.280273, 68.879358 ], [ 22.354431, 68.842709 ], [ 22.500000, 68.848656 ], [ 23.661804, 68.892220 ], [ 24.732971, 68.650556 ], [ 25.688782, 69.093080 ], [ 26.177673, 69.825418 ], [ 27.732239, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.624390, 70.612614 ], [ 30.932007, 70.539543 ], [ 23.631592, 70.539543 ], [ 23.766174, 70.612614 ], [ 24.546204, 71.031249 ], [ 26.369934, 70.986560 ], [ 28.163452, 71.185982 ], [ 30.624390, 70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 30.624390, 70.612614 ], [ 30.932007, 70.539543 ], [ 23.631592, 70.539543 ], [ 23.766174, 70.612614 ], [ 24.546204, 71.031249 ], [ 26.369934, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.280029, 78.079589 ], [ 24.721985, 77.853989 ], [ 22.500000, 77.447537 ], [ 22.489014, 77.445149 ], [ 22.280273, 77.473179 ], [ 22.280273, 78.398119 ], [ 22.500000, 78.419091 ], [ 22.881775, 78.455425 ], [ 23.280029, 78.079589 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.881775, 78.455425 ], [ 23.280029, 78.079589 ], [ 24.721985, 77.853989 ], [ 22.500000, 77.447537 ], [ 22.489014, 77.445149 ], [ 22.280273, 77.473179 ], [ 22.280273, 78.398119 ], [ 22.500000, 78.419091 ], [ 22.881775, 78.455425 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.447083, 80.407473 ], [ 27.405396, 80.056627 ], [ 25.922241, 79.518159 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.280273, 79.442943 ], [ 22.280273, 80.469974 ], [ 22.500000, 80.535233 ], [ 22.917480, 80.657296 ], [ 25.447083, 80.407473 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.657296 ], [ 25.447083, 80.407473 ], [ 27.405396, 80.056627 ], [ 25.922241, 79.518159 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.280273, 79.442943 ], [ 22.280273, 80.469974 ], [ 22.500000, 80.535233 ], [ 22.917480, 80.657296 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -85.070048 ], [ 33.530273, -85.070048 ], [ 33.530273, -83.956169 ], [ 45.219727, -83.956169 ], [ 45.219727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -83.956169 ], [ 45.219727, -85.070048 ], [ 33.530273, -85.070048 ], [ 33.530273, -83.956169 ], [ 45.219727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -84.002262 ], [ 33.530273, -84.002262 ], [ 33.530273, -82.648222 ], [ 45.219727, -82.648222 ], [ 45.219727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -82.648222 ], [ 45.219727, -84.002262 ], [ 33.530273, -84.002262 ], [ 33.530273, -82.648222 ], [ 45.219727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -82.704241 ], [ 33.530273, -82.704241 ], [ 33.530273, -81.059130 ], [ 45.219727, -81.059130 ], [ 45.219727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -81.059130 ], [ 45.219727, -82.704241 ], [ 33.530273, -82.704241 ], [ 33.530273, -81.059130 ], [ 45.219727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -81.127169 ], [ 33.530273, -81.127169 ], [ 33.530273, -79.129976 ], [ 45.219727, -79.129976 ], [ 45.219727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -79.129976 ], [ 45.219727, -81.127169 ], [ 33.530273, -81.127169 ], [ 33.530273, -79.129976 ], [ 45.219727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -79.212538 ], [ 33.530273, -79.212538 ], [ 33.530273, -76.790701 ], [ 45.219727, -76.790701 ], [ 45.219727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -76.790701 ], [ 45.219727, -79.212538 ], [ 33.530273, -79.212538 ], [ 33.530273, -76.790701 ], [ 45.219727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -76.890745 ], [ 33.530273, -76.890745 ], [ 33.530273, -73.958939 ], [ 45.219727, -73.958939 ], [ 45.219727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -73.958939 ], [ 45.219727, -76.890745 ], [ 33.530273, -76.890745 ], [ 33.530273, -73.958939 ], [ 45.219727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -74.079925 ], [ 33.530273, -74.079925 ], [ 33.530273, -70.539543 ], [ 45.219727, -70.539543 ], [ 45.219727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -70.539543 ], [ 45.219727, -74.079925 ], [ 33.530273, -74.079925 ], [ 33.530273, -70.539543 ], [ 45.219727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -70.685421 ], [ 33.530273, -70.685421 ], [ 33.530273, -68.700496 ], [ 33.750000, -68.571424 ], [ 33.868103, -68.502080 ], [ 34.906311, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.647156, -69.776104 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.921326, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.937317, -68.462791 ], [ 44.112854, -68.267353 ], [ 45.000000, -68.021966 ], [ 45.219727, -67.959179 ], [ 45.219727, -70.685421 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -67.959179 ], [ 45.219727, -70.685421 ], [ 33.530273, -70.685421 ], [ 33.530273, -68.700496 ], [ 33.750000, -68.571424 ], [ 33.868103, -68.502080 ], [ 34.906311, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.647156, -69.776104 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.921326, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.937317, -68.462791 ], [ 44.112854, -68.267353 ], [ 45.000000, -68.021966 ], [ 45.219727, -67.959179 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.532532, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.038147, -24.477150 ], [ 34.214172, -24.814161 ], [ 33.750000, -25.023395 ], [ 33.530273, -25.120419 ], [ 33.530273, -21.739091 ], [ 35.337524, -21.739091 ], [ 35.373230, -21.838555 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.337524, -21.739091 ], [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.532532, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.038147, -24.477150 ], [ 34.214172, -24.814161 ], [ 33.750000, -25.023395 ], [ 33.530273, -25.120419 ], [ 33.530273, -21.739091 ], [ 35.337524, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -25.515179 ], [ 45.000000, -25.415989 ], [ 44.038696, -24.986058 ], [ 43.761292, -24.459651 ], [ 43.695374, -23.574057 ], [ 43.343811, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.330078, -21.739091 ], [ 45.219727, -21.739091 ], [ 45.219727, -25.515179 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -21.739091 ], [ 45.219727, -25.515179 ], [ 45.000000, -25.415989 ], [ 44.038696, -24.986058 ], [ 43.761292, -24.459651 ], [ 43.695374, -23.574057 ], [ 43.343811, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.330078, -21.739091 ], [ 45.219727, -21.739091 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.721313, -11.178402 ], [ 38.427429, -11.283467 ], [ 37.825928, -11.267306 ], [ 37.468872, -11.566144 ], [ 36.773987, -11.593051 ], [ 36.513062, -11.719478 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.486084, -11.178402 ], [ 34.442139, -10.962764 ], [ 39.328308, -10.962764 ], [ 38.721313, -11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.328308, -10.962764 ], [ 38.721313, -11.178402 ], [ 38.427429, -11.283467 ], [ 37.825928, -11.267306 ], [ 37.468872, -11.566144 ], [ 36.773987, -11.593051 ], [ 36.513062, -11.719478 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.486084, -11.178402 ], [ 34.442139, -10.962764 ], [ 39.328308, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.486084, -11.178402 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.278283 ], [ 34.557495, -13.579251 ], [ 34.906311, -13.563232 ], [ 35.266113, -13.886079 ], [ 35.686340, -14.610163 ], [ 35.771484, -15.895301 ], [ 35.337524, -16.106514 ], [ 35.032654, -16.799282 ], [ 34.378967, -16.183024 ], [ 34.304810, -15.477504 ], [ 34.516296, -15.011117 ], [ 34.458618, -14.612821 ], [ 34.063110, -14.357530 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.416060 ], [ 33.530273, -14.235100 ], [ 33.530273, -10.962764 ], [ 34.442139, -10.962764 ], [ 34.486084, -11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.442139, -10.962764 ], [ 34.486084, -11.178402 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.278283 ], [ 34.557495, -13.579251 ], [ 34.906311, -13.563232 ], [ 35.266113, -13.886079 ], [ 35.686340, -14.610163 ], [ 35.771484, -15.895301 ], [ 35.337524, -16.106514 ], [ 35.032654, -16.799282 ], [ 34.378967, -16.183024 ], [ 34.304810, -15.477504 ], [ 34.516296, -15.011117 ], [ 34.458618, -14.612821 ], [ 34.063110, -14.357530 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.416060 ], [ 33.530273, -14.235100 ], [ 33.530273, -10.962764 ], [ 34.442139, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.457153, -11.178402 ], [ 40.435181, -11.759815 ], [ 40.558777, -12.637658 ], [ 40.597229, -14.200488 ], [ 40.773010, -14.689881 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.098792 ], [ 37.408447, -17.583812 ], [ 36.279602, -18.659257 ], [ 35.895081, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.782211 ], [ 34.700317, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.557251, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.416060 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.357530 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.011117 ], [ 34.304810, -15.477504 ], [ 34.378967, -16.183024 ], [ 35.032654, -16.799282 ], [ 35.337524, -16.106514 ], [ 35.771484, -15.895301 ], [ 35.686340, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.906311, -13.563232 ], [ 34.557495, -13.579251 ], [ 34.277344, -12.278283 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.719478 ], [ 36.773987, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.267306 ], [ 38.427429, -11.283467 ], [ 38.721313, -11.178402 ], [ 39.328308, -10.962764 ], [ 40.468140, -10.962764 ], [ 40.457153, -11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.468140, -10.962764 ], [ 40.457153, -11.178402 ], [ 40.435181, -11.759815 ], [ 40.558777, -12.637658 ], [ 40.597229, -14.200488 ], [ 40.773010, -14.689881 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.098792 ], [ 37.408447, -17.583812 ], [ 36.279602, -18.659257 ], [ 35.895081, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.782211 ], [ 34.700317, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.557251, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.416060 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.357530 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.011117 ], [ 34.304810, -15.477504 ], [ 34.378967, -16.183024 ], [ 35.032654, -16.799282 ], [ 35.337524, -16.106514 ], [ 35.771484, -15.895301 ], [ 35.686340, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.906311, -13.563232 ], [ 34.557495, -13.579251 ], [ 34.277344, -12.278283 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.719478 ], [ 36.773987, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.267306 ], [ 38.427429, -11.283467 ], [ 38.721313, -11.178402 ], [ 39.328308, -10.962764 ], [ 40.468140, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -22.146708 ], [ 43.264160, -22.146708 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.431702, -21.335432 ], [ 43.893127, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.432924 ], [ 44.230957, -18.960844 ], [ 44.041443, -18.331062 ], [ 43.961792, -17.408305 ], [ 44.310608, -16.849234 ], [ 44.445190, -16.214675 ], [ 44.942322, -16.177749 ], [ 45.000000, -16.154007 ], [ 45.219727, -16.072207 ], [ 45.219727, -22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -16.072207 ], [ 45.219727, -22.146708 ], [ 43.264160, -22.146708 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.431702, -21.335432 ], [ 43.893127, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.432924 ], [ 44.230957, -18.960844 ], [ 44.041443, -18.331062 ], [ 43.961792, -17.408305 ], [ 44.310608, -16.849234 ], [ 44.445190, -16.214675 ], [ 44.942322, -16.177749 ], [ 45.000000, -16.154007 ], [ 45.219727, -16.072207 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.901062, -0.947528 ], [ 33.750000, -0.953020 ], [ 33.530273, -0.961259 ], [ 33.530273, 0.219726 ], [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.901062, -0.947528 ], [ 33.750000, -0.953020 ], [ 33.530273, -0.961259 ], [ 33.530273, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.987244, 0.000000 ], [ 40.992737, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.882874, -2.081451 ], [ 40.635681, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.119324, -3.277630 ], [ 39.797974, -3.680632 ], [ 39.602966, -4.346411 ], [ 39.201965, -4.674980 ], [ 37.765503, -3.675151 ], [ 37.696838, -3.096636 ], [ 34.071350, -1.057374 ], [ 33.901062, -0.947528 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ], [ 40.984497, 0.219726 ], [ 40.987244, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.219726 ], [ 40.987244, 0.000000 ], [ 40.992737, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.882874, -2.081451 ], [ 40.635681, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.119324, -3.277630 ], [ 39.797974, -3.680632 ], [ 39.602966, -4.346411 ], [ 39.201965, -4.674980 ], [ 37.765503, -3.675151 ], [ 37.696838, -3.096636 ], [ 34.071350, -1.057374 ], [ 33.901062, -0.947528 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ], [ 40.984497, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.868652, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.992737, -0.856902 ], [ 40.987244, 0.000000 ], [ 40.984497, 0.219726 ], [ 43.066406, 0.219726 ], [ 42.868652, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 0.219726 ], [ 42.868652, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.992737, -0.856902 ], [ 40.987244, 0.000000 ], [ 40.984497, 0.219726 ], [ 43.066406, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.071350, -1.057374 ], [ 37.696838, -3.096636 ], [ 37.765503, -3.675151 ], [ 39.201965, -4.674980 ], [ 38.740540, -5.908385 ], [ 38.798218, -6.473609 ], [ 39.438171, -6.839170 ], [ 39.468384, -7.098167 ], [ 39.193726, -7.702826 ], [ 39.251404, -8.007557 ], [ 39.185486, -8.483239 ], [ 39.534302, -9.110233 ], [ 39.949036, -10.095966 ], [ 40.314331, -10.314919 ], [ 39.520569, -10.895345 ], [ 38.721313, -11.178402 ], [ 38.427429, -11.283467 ], [ 37.825928, -11.267306 ], [ 37.672119, -11.393879 ], [ 34.530029, -11.393879 ], [ 34.486084, -11.178402 ], [ 34.277344, -10.158153 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 33.530273, -9.375903 ], [ 33.530273, -0.961259 ], [ 33.750000, -0.953020 ], [ 33.901062, -0.947528 ], [ 34.071350, -1.057374 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.901062, -0.947528 ], [ 34.071350, -1.057374 ], [ 37.696838, -3.096636 ], [ 37.765503, -3.675151 ], [ 39.201965, -4.674980 ], [ 38.740540, -5.908385 ], [ 38.798218, -6.473609 ], [ 39.438171, -6.839170 ], [ 39.468384, -7.098167 ], [ 39.193726, -7.702826 ], [ 39.251404, -8.007557 ], [ 39.185486, -8.483239 ], [ 39.534302, -9.110233 ], [ 39.949036, -10.095966 ], [ 40.314331, -10.314919 ], [ 39.520569, -10.895345 ], [ 38.721313, -11.178402 ], [ 38.427429, -11.283467 ], [ 37.825928, -11.267306 ], [ 37.672119, -11.393879 ], [ 34.530029, -11.393879 ], [ 34.486084, -11.178402 ], [ 34.277344, -10.158153 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 33.530273, -9.375903 ], [ 33.530273, -0.961259 ], [ 33.750000, -0.953020 ], [ 33.901062, -0.947528 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.277344, -10.158153 ], [ 34.486084, -11.178402 ], [ 34.530029, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.375903 ], [ 33.739014, -9.416548 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.375903 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.277344, -10.158153 ], [ 34.486084, -11.178402 ], [ 34.530029, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.375903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.476379, -10.763159 ], [ 40.457153, -11.178402 ], [ 40.448914, -11.393879 ], [ 37.672119, -11.393879 ], [ 37.825928, -11.267306 ], [ 38.427429, -11.283467 ], [ 38.721313, -11.178402 ], [ 39.520569, -10.895345 ], [ 40.314331, -10.314919 ], [ 40.476379, -10.763159 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.476379, -10.763159 ], [ 40.457153, -11.178402 ], [ 40.448914, -11.393879 ], [ 37.672119, -11.393879 ], [ 37.825928, -11.267306 ], [ 38.427429, -11.283467 ], [ 38.721313, -11.178402 ], [ 39.520569, -10.895345 ], [ 40.314331, -10.314919 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.829407, 11.321174 ], [ 34.793701, 11.178402 ], [ 34.730530, 10.911527 ], [ 34.255371, 10.630916 ], [ 33.961487, 9.584501 ], [ 33.961487, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.840637, 9.982376 ], [ 33.750000, 10.241952 ], [ 33.719788, 10.325728 ], [ 33.530273, 10.474308 ], [ 33.530273, 11.393879 ], [ 34.867859, 11.393879 ], [ 34.829407, 11.321174 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.867859, 11.393879 ], [ 34.829407, 11.321174 ], [ 34.793701, 11.178402 ], [ 34.730530, 10.911527 ], [ 34.255371, 10.630916 ], [ 33.961487, 9.584501 ], [ 33.961487, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.840637, 9.982376 ], [ 33.750000, 10.241952 ], [ 33.719788, 10.325728 ], [ 33.530273, 10.474308 ], [ 33.530273, 11.393879 ], [ 34.867859, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.719788, 10.325728 ], [ 33.750000, 10.241952 ], [ 33.840637, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.961487, 9.465317 ], [ 33.972473, 8.686924 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.530273, 8.369127 ], [ 33.530273, 10.474308 ], [ 33.719788, 10.325728 ] ] ], [ [ [ 33.565979, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.596402 ], [ 35.296326, 5.506640 ], [ 34.002686, 4.250551 ], [ 33.530273, 3.897138 ], [ 33.530273, 7.719157 ], [ 33.565979, 7.713713 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 7.719157 ], [ 33.565979, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.596402 ], [ 35.296326, 5.506640 ], [ 34.002686, 4.250551 ], [ 33.530273, 3.897138 ], [ 33.530273, 7.719157 ] ] ], [ [ [ 33.530273, 8.369127 ], [ 33.530273, 10.474308 ], [ 33.719788, 10.325728 ], [ 33.750000, 10.241952 ], [ 33.840637, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.961487, 9.465317 ], [ 33.972473, 8.686924 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.530273, 8.369127 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.477844, 3.557283 ], [ 34.595947, 3.055497 ], [ 35.035400, 1.908521 ], [ 34.670105, 1.178201 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.897138 ], [ 34.002686, 4.250551 ], [ 34.477844, 3.557283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.250551 ], [ 34.477844, 3.557283 ], [ 34.595947, 3.055497 ], [ 35.035400, 1.908521 ], [ 34.670105, 1.178201 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.897138 ], [ 34.002686, 4.250551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.945557, 11.178402 ], [ 42.775269, 10.927708 ], [ 42.552795, 11.105642 ], [ 42.313843, 11.035560 ], [ 41.753540, 11.051734 ], [ 41.745300, 11.178402 ], [ 41.737061, 11.356182 ], [ 41.726074, 11.393879 ], [ 43.093872, 11.393879 ], [ 42.945557, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.093872, 11.393879 ], [ 42.945557, 11.178402 ], [ 42.775269, 10.927708 ], [ 42.552795, 11.105642 ], [ 42.313843, 11.035560 ], [ 41.753540, 11.051734 ], [ 41.745300, 11.178402 ], [ 41.737061, 11.356182 ], [ 41.726074, 11.393879 ], [ 43.093872, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 5.339848 ], [ 35.815430, 4.778995 ], [ 36.158752, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.119812, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.669128, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.559021, 3.422950 ], [ 39.852905, 3.839591 ], [ 40.767517, 4.258768 ], [ 41.171265, 3.921800 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.786681 ], [ 40.987244, 0.000000 ], [ 40.987244, -0.219726 ], [ 33.892822, -0.219726 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.670105, 1.178201 ], [ 35.035400, 1.908521 ], [ 34.595947, 3.055497 ], [ 34.477844, 3.557283 ], [ 34.002686, 4.250551 ], [ 35.296326, 5.506640 ], [ 35.815430, 5.339848 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.296326, 5.506640 ], [ 35.815430, 5.339848 ], [ 35.815430, 4.778995 ], [ 36.158752, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.119812, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.669128, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.559021, 3.422950 ], [ 39.852905, 3.839591 ], [ 40.767517, 4.258768 ], [ 41.171265, 3.921800 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.786681 ], [ 40.987244, 0.000000 ], [ 33.892822, -0.219726 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.670105, 1.178201 ], [ 35.035400, 1.908521 ], [ 34.595947, 3.055497 ], [ 34.477844, 3.557283 ], [ 34.002686, 4.250551 ], [ 35.296326, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.737061, 11.356182 ], [ 41.745300, 11.178402 ], [ 41.753540, 11.051734 ], [ 42.313843, 11.035560 ], [ 42.552795, 11.105642 ], [ 42.775269, 10.927708 ], [ 42.558289, 10.574222 ], [ 42.926331, 10.022948 ], [ 43.294373, 9.541166 ], [ 43.676147, 9.186159 ], [ 45.000000, 8.708644 ], [ 45.219727, 8.629903 ], [ 45.219727, 5.282418 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.767029, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.921800 ], [ 40.767517, 4.258768 ], [ 39.852905, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.502455 ], [ 38.669128, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.119812, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.158752, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.339848 ], [ 35.296326, 5.506640 ], [ 34.705811, 6.596402 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.565979, 7.713713 ], [ 33.530273, 7.719157 ], [ 33.530273, 8.369127 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.972473, 8.686924 ], [ 33.961487, 9.584501 ], [ 34.255371, 10.630916 ], [ 34.730530, 10.911527 ], [ 34.793701, 11.178402 ], [ 34.829407, 11.321174 ], [ 34.867859, 11.393879 ], [ 41.726074, 11.393879 ], [ 41.737061, 11.356182 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.726074, 11.393879 ], [ 41.737061, 11.356182 ], [ 41.745300, 11.178402 ], [ 41.753540, 11.051734 ], [ 42.313843, 11.035560 ], [ 42.552795, 11.105642 ], [ 42.775269, 10.927708 ], [ 42.558289, 10.574222 ], [ 42.926331, 10.022948 ], [ 43.294373, 9.541166 ], [ 43.676147, 9.186159 ], [ 45.000000, 8.708644 ], [ 45.219727, 8.629903 ], [ 45.219727, 5.282418 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.767029, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.921800 ], [ 40.767517, 4.258768 ], [ 39.852905, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.502455 ], [ 38.669128, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.119812, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.158752, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.339848 ], [ 35.296326, 5.506640 ], [ 34.705811, 6.596402 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.565979, 7.713713 ], [ 33.530273, 7.719157 ], [ 33.530273, 8.369127 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.972473, 8.686924 ], [ 33.961487, 9.584501 ], [ 34.255371, 10.630916 ], [ 34.730530, 10.911527 ], [ 34.793701, 11.178402 ], [ 34.829407, 11.321174 ], [ 34.867859, 11.393879 ], [ 41.726074, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.447299 ], [ 44.612732, 10.444598 ], [ 45.000000, 10.549922 ], [ 45.219727, 10.609319 ], [ 45.219727, 8.629903 ], [ 45.000000, 8.708644 ], [ 43.676147, 9.186159 ], [ 43.294373, 9.541166 ], [ 42.926331, 10.022948 ], [ 42.558289, 10.574222 ], [ 42.775269, 10.927708 ], [ 42.945557, 11.178402 ], [ 43.093872, 11.393879 ], [ 43.264160, 11.393879 ], [ 43.470154, 11.278080 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.264160, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.447299 ], [ 44.612732, 10.444598 ], [ 45.000000, 10.549922 ], [ 45.219727, 10.609319 ], [ 45.219727, 8.629903 ], [ 45.000000, 8.708644 ], [ 43.676147, 9.186159 ], [ 43.294373, 9.541166 ], [ 42.926331, 10.022948 ], [ 42.558289, 10.574222 ], [ 42.775269, 10.927708 ], [ 42.945557, 11.178402 ], [ 43.093872, 11.393879 ], [ 43.264160, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 1.820677 ], [ 45.000000, 1.675176 ], [ 44.066162, 1.054628 ], [ 43.135071, 0.293883 ], [ 42.868652, 0.000000 ], [ 42.668152, -0.219726 ], [ 40.987244, -0.219726 ], [ 40.987244, 0.000000 ], [ 40.979004, 2.786681 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.767029, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.219727, 5.282418 ], [ 45.219727, 1.820677 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.282418 ], [ 45.219727, 1.820677 ], [ 45.000000, 1.675176 ], [ 44.066162, 1.054628 ], [ 43.135071, 0.293883 ], [ 42.868652, 0.000000 ], [ 42.668152, -0.219726 ], [ 40.987244, -0.219726 ], [ 40.987244, 0.000000 ], [ 40.979004, 2.786681 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.767029, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.219727, 5.282418 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.001628 ], [ 33.530273, 22.001628 ], [ 33.530273, 22.146708 ], [ 36.738281, 22.146708 ], [ 36.864624, 22.001628 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.738281, 22.146708 ], [ 36.864624, 22.001628 ], [ 33.530273, 22.001628 ], [ 33.530273, 22.146708 ], [ 36.738281, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.883850, 21.943046 ], [ 37.185974, 21.020419 ], [ 36.968994, 20.838278 ], [ 37.114563, 19.808054 ], [ 37.479858, 18.615013 ], [ 37.861633, 18.370166 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.264105 ], [ 36.850891, 16.956979 ], [ 36.752014, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.427917, 14.424040 ], [ 36.268616, 13.565902 ], [ 35.862122, 12.578691 ], [ 35.257874, 12.084982 ], [ 34.829407, 11.321174 ], [ 34.793701, 11.178402 ], [ 34.741516, 10.962764 ], [ 33.530273, 10.962764 ], [ 33.530273, 22.001628 ], [ 36.864624, 22.001628 ], [ 36.883850, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.001628 ], [ 36.883850, 21.943046 ], [ 37.185974, 21.020419 ], [ 36.968994, 20.838278 ], [ 37.114563, 19.808054 ], [ 37.479858, 18.615013 ], [ 37.861633, 18.370166 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.264105 ], [ 36.850891, 16.956979 ], [ 36.752014, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.427917, 14.424040 ], [ 36.268616, 13.565902 ], [ 35.862122, 12.578691 ], [ 35.257874, 12.084982 ], [ 34.829407, 11.321174 ], [ 34.793701, 11.178402 ], [ 34.741516, 10.962764 ], [ 33.530273, 10.962764 ], [ 33.530273, 22.001628 ], [ 36.864624, 22.001628 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.811707, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.734314, 13.923404 ], [ 42.275391, 13.344193 ], [ 42.588501, 13.001882 ], [ 43.080139, 12.701971 ], [ 42.778015, 12.458033 ], [ 42.349548, 12.543840 ], [ 42.008972, 12.868037 ], [ 41.596985, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.893860, 14.120595 ], [ 40.025940, 14.519780 ], [ 39.339294, 14.533074 ], [ 39.097595, 14.743011 ], [ 38.512573, 14.506485 ], [ 37.905579, 14.960706 ], [ 37.592468, 14.213801 ], [ 36.427917, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.752014, 16.293779 ], [ 36.850891, 16.956979 ], [ 37.166748, 17.264105 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.811707, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.734314, 13.923404 ], [ 42.275391, 13.344193 ], [ 42.588501, 13.001882 ], [ 43.080139, 12.701971 ], [ 42.778015, 12.458033 ], [ 42.349548, 12.543840 ], [ 42.008972, 12.868037 ], [ 41.596985, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.893860, 14.120595 ], [ 40.025940, 14.519780 ], [ 39.339294, 14.533074 ], [ 39.097595, 14.743011 ], [ 38.512573, 14.506485 ], [ 37.905579, 14.960706 ], [ 37.592468, 14.213801 ], [ 36.427917, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.752014, 16.293779 ], [ 36.850891, 16.956979 ], [ 37.166748, 17.264105 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.316345, 12.390976 ], [ 43.286133, 11.977532 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.945557, 11.178402 ], [ 42.797241, 10.962764 ], [ 42.731323, 10.962764 ], [ 42.552795, 11.105642 ], [ 42.313843, 11.035560 ], [ 41.753540, 11.051734 ], [ 41.745300, 11.178402 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.633406 ], [ 41.997986, 12.101095 ], [ 42.349548, 12.543840 ], [ 42.778015, 12.458033 ], [ 43.080139, 12.701971 ], [ 43.316345, 12.390976 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.080139, 12.701971 ], [ 43.316345, 12.390976 ], [ 43.286133, 11.977532 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.945557, 11.178402 ], [ 42.797241, 10.962764 ], [ 42.731323, 10.962764 ], [ 42.552795, 11.105642 ], [ 42.313843, 11.035560 ], [ 41.753540, 11.051734 ], [ 41.745300, 11.178402 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.633406 ], [ 41.997986, 12.101095 ], [ 42.349548, 12.543840 ], [ 42.778015, 12.458033 ], [ 43.080139, 12.701971 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.512573, 14.506485 ], [ 39.097595, 14.743011 ], [ 39.339294, 14.533074 ], [ 40.025940, 14.519780 ], [ 40.893860, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.596985, 13.453737 ], [ 42.008972, 12.868037 ], [ 42.349548, 12.543840 ], [ 41.997986, 12.101095 ], [ 41.660156, 11.633406 ], [ 41.737061, 11.356182 ], [ 41.745300, 11.178402 ], [ 41.753540, 11.051734 ], [ 42.313843, 11.035560 ], [ 42.552795, 11.105642 ], [ 42.731323, 10.962764 ], [ 34.741516, 10.962764 ], [ 34.793701, 11.178402 ], [ 34.829407, 11.321174 ], [ 35.257874, 12.084982 ], [ 35.862122, 12.578691 ], [ 36.268616, 13.565902 ], [ 36.427917, 14.424040 ], [ 37.592468, 14.213801 ], [ 37.905579, 14.960706 ], [ 38.512573, 14.506485 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.905579, 14.960706 ], [ 38.512573, 14.506485 ], [ 39.097595, 14.743011 ], [ 39.339294, 14.533074 ], [ 40.025940, 14.519780 ], [ 40.893860, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.596985, 13.453737 ], [ 42.008972, 12.868037 ], [ 42.349548, 12.543840 ], [ 41.997986, 12.101095 ], [ 41.660156, 11.633406 ], [ 41.737061, 11.356182 ], [ 41.745300, 11.178402 ], [ 41.753540, 11.051734 ], [ 42.313843, 11.035560 ], [ 42.552795, 11.105642 ], [ 42.731323, 10.962764 ], [ 34.741516, 10.962764 ], [ 34.793701, 11.178402 ], [ 34.829407, 11.321174 ], [ 35.257874, 12.084982 ], [ 35.862122, 12.578691 ], [ 36.268616, 13.565902 ], [ 36.427917, 14.424040 ], [ 37.592468, 14.213801 ], [ 37.905579, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 17.431890 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.431890 ], [ 44.060669, 17.410925 ], [ 43.791504, 17.321798 ], [ 43.379517, 17.581194 ], [ 43.113098, 17.090917 ], [ 43.217468, 16.667769 ], [ 42.778015, 16.349132 ], [ 42.648926, 16.775617 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.834989 ], [ 41.220703, 18.672267 ], [ 40.937805, 19.487308 ], [ 40.245667, 20.177145 ], [ 39.800720, 20.339476 ], [ 39.138794, 21.291933 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.031677, 22.146708 ], [ 45.219727, 22.146708 ], [ 45.219727, 17.431890 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 22.146708 ], [ 45.219727, 17.431890 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.431890 ], [ 44.060669, 17.410925 ], [ 43.791504, 17.321798 ], [ 43.379517, 17.581194 ], [ 43.113098, 17.090917 ], [ 43.217468, 16.667769 ], [ 42.778015, 16.349132 ], [ 42.648926, 16.775617 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.834989 ], [ 41.220703, 18.672267 ], [ 40.937805, 19.487308 ], [ 40.245667, 20.177145 ], [ 39.800720, 20.339476 ], [ 39.138794, 21.291933 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.031677, 22.146708 ], [ 45.219727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.791504, 17.321798 ], [ 44.060669, 17.410925 ], [ 45.000000, 17.431890 ], [ 45.214233, 17.434511 ], [ 45.219727, 17.431890 ], [ 45.219727, 12.977795 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.701971 ], [ 44.491882, 12.723405 ], [ 44.173279, 12.586732 ], [ 43.481140, 12.637658 ], [ 43.220215, 13.221230 ], [ 43.250427, 13.768731 ], [ 43.085632, 14.064652 ], [ 42.890625, 14.804094 ], [ 42.602234, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.701111, 15.720882 ], [ 42.821960, 15.913791 ], [ 42.778015, 16.349132 ], [ 43.217468, 16.667769 ], [ 43.113098, 17.090917 ], [ 43.379517, 17.581194 ], [ 43.791504, 17.321798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.321798 ], [ 44.060669, 17.410925 ], [ 45.000000, 17.431890 ], [ 45.214233, 17.434511 ], [ 45.219727, 17.431890 ], [ 45.219727, 12.977795 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.701971 ], [ 44.491882, 12.723405 ], [ 44.173279, 12.586732 ], [ 43.481140, 12.637658 ], [ 43.220215, 13.221230 ], [ 43.250427, 13.768731 ], [ 43.085632, 14.064652 ], [ 42.890625, 14.804094 ], [ 42.602234, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.701111, 15.720882 ], [ 42.821960, 15.913791 ], [ 42.778015, 16.349132 ], [ 43.217468, 16.667769 ], [ 43.113098, 17.090917 ], [ 43.379517, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.618469, 10.962764 ], [ 42.797241, 10.962764 ], [ 42.945557, 11.178402 ], [ 43.143311, 11.463874 ], [ 43.470154, 11.278080 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.618469, 10.962764 ], [ 42.797241, 10.962764 ], [ 42.945557, 11.178402 ], [ 43.143311, 11.463874 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, 30.970544 ], [ 33.771973, 30.968189 ], [ 34.263611, 31.219848 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.101777 ], [ 34.425659, 28.345482 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.817216 ], [ 33.530273, 28.030773 ], [ 33.530273, 30.987028 ], [ 33.750000, 30.970544 ] ] ], [ [ [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.472351, 25.599425 ], [ 34.793701, 25.035839 ], [ 35.691833, 23.928524 ], [ 35.491333, 23.752668 ], [ 35.524292, 23.102471 ], [ 36.688843, 22.205206 ], [ 36.864624, 22.001628 ], [ 33.530273, 22.001628 ], [ 33.530273, 27.325415 ], [ 33.750000, 26.875531 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 27.325415 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.472351, 25.599425 ], [ 34.793701, 25.035839 ], [ 35.691833, 23.928524 ], [ 35.491333, 23.752668 ], [ 35.524292, 23.102471 ], [ 36.688843, 22.205206 ], [ 36.864624, 22.001628 ], [ 33.530273, 22.001628 ], [ 33.530273, 27.325415 ] ] ], [ [ [ 33.530273, 28.030773 ], [ 33.530273, 30.987028 ], [ 33.750000, 30.970544 ], [ 33.771973, 30.968189 ], [ 34.263611, 31.219848 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.101777 ], [ 34.425659, 28.345482 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.817216 ], [ 33.530273, 28.030773 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 29.159357 ], [ 45.000000, 29.168951 ], [ 44.708862, 29.180941 ], [ 41.888123, 31.191658 ], [ 40.399475, 31.891551 ], [ 40.127563, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ], [ 45.219727, 29.159357 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.159357 ], [ 45.000000, 29.168951 ], [ 44.708862, 29.180941 ], [ 41.888123, 31.191658 ], [ 40.399475, 31.891551 ], [ 40.127563, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.996948, 31.952162 ], [ 34.972229, 31.868228 ], [ 35.224915, 31.756196 ], [ 34.969482, 31.618305 ], [ 34.925537, 31.353637 ], [ 35.395203, 31.489578 ], [ 35.419922, 31.102334 ], [ 34.920044, 29.501769 ], [ 34.263611, 31.219848 ], [ 34.554749, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.681091, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.057373, 32.138409 ], [ 34.996948, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.057373, 32.138409 ], [ 34.996948, 31.952162 ], [ 34.972229, 31.868228 ], [ 35.224915, 31.756196 ], [ 34.969482, 31.618305 ], [ 34.925537, 31.353637 ], [ 35.395203, 31.489578 ], [ 35.419922, 31.102334 ], [ 34.920044, 29.501769 ], [ 34.263611, 31.219848 ], [ 34.554749, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.681091, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.057373, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.543518, 31.784217 ], [ 35.395203, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.618305 ], [ 35.224915, 31.756196 ], [ 34.972229, 31.868228 ], [ 34.996948, 31.952162 ], [ 35.057373, 32.138409 ], [ 35.543518, 32.138409 ], [ 35.543518, 31.784217 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.543518, 32.138409 ], [ 35.543518, 31.784217 ], [ 35.395203, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.618305 ], [ 35.224915, 31.756196 ], [ 34.972229, 31.868228 ], [ 34.996948, 31.952162 ], [ 35.543518, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.004211, 32.010405 ], [ 38.768005, 31.952162 ], [ 37.001953, 31.510654 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.004895 ], [ 36.738281, 29.866847 ], [ 36.499329, 29.506549 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.102334 ], [ 35.395203, 31.489578 ], [ 35.543518, 31.784217 ], [ 35.543518, 32.138409 ], [ 39.163513, 32.138409 ], [ 39.004211, 32.010405 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.163513, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.768005, 31.952162 ], [ 37.001953, 31.510654 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.004895 ], [ 36.738281, 29.866847 ], [ 36.499329, 29.506549 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.102334 ], [ 35.395203, 31.489578 ], [ 35.543518, 31.784217 ], [ 35.543518, 32.138409 ], [ 39.163513, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.881104, 21.943046 ], [ 36.947021, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 22.001628 ], [ 36.864624, 22.001628 ], [ 36.881104, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.001628 ], [ 36.881104, 21.943046 ], [ 36.947021, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 22.001628 ], [ 36.864624, 22.001628 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.127563, 31.952162 ], [ 40.399475, 31.891551 ], [ 41.888123, 31.191658 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.168951 ], [ 45.219727, 29.159357 ], [ 45.219727, 21.739091 ], [ 39.061890, 21.739091 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.064636, 22.581047 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.287027 ], [ 37.153015, 24.859026 ], [ 37.207947, 25.085599 ], [ 36.930542, 25.604379 ], [ 36.639404, 25.827089 ], [ 36.246643, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.064710 ], [ 34.631653, 28.059862 ], [ 34.785461, 28.608637 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.358239 ], [ 36.068115, 29.197726 ], [ 36.499329, 29.506549 ], [ 36.738281, 29.866847 ], [ 37.501831, 30.004895 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.510654 ], [ 38.768005, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.163513, 32.138409 ], [ 39.295349, 32.138409 ], [ 40.127563, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.295349, 32.138409 ], [ 40.127563, 31.952162 ], [ 40.399475, 31.891551 ], [ 41.888123, 31.191658 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.168951 ], [ 45.219727, 29.159357 ], [ 45.219727, 21.739091 ], [ 39.061890, 21.739091 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.064636, 22.581047 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.287027 ], [ 37.153015, 24.859026 ], [ 37.207947, 25.085599 ], [ 36.930542, 25.604379 ], [ 36.639404, 25.827089 ], [ 36.246643, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.064710 ], [ 34.631653, 28.059862 ], [ 34.785461, 28.608637 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.358239 ], [ 36.068115, 29.197726 ], [ 36.499329, 29.506549 ], [ 36.738281, 29.866847 ], [ 37.501831, 30.004895 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.510654 ], [ 38.768005, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.163513, 32.138409 ], [ 39.295349, 32.138409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.580017, 41.093842 ], [ 43.478394, 41.145570 ], [ 44.041443, 41.145570 ], [ 43.580017, 41.093842 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.041443, 41.145570 ], [ 43.580017, 41.093842 ], [ 43.478394, 41.145570 ], [ 44.041443, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, 35.247862 ], [ 33.972473, 35.059229 ], [ 33.865356, 35.095193 ], [ 33.750000, 35.050235 ], [ 33.673096, 35.018750 ], [ 33.530273, 35.038992 ], [ 33.530273, 35.377854 ], [ 33.664856, 35.373375 ], [ 33.750000, 35.402484 ], [ 34.573975, 35.672916 ], [ 33.898315, 35.247862 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.672916 ], [ 33.898315, 35.247862 ], [ 33.972473, 35.059229 ], [ 33.865356, 35.095193 ], [ 33.750000, 35.050235 ], [ 33.673096, 35.018750 ], [ 33.530273, 35.038992 ], [ 33.530273, 35.377854 ], [ 33.664856, 35.373375 ], [ 33.750000, 35.402484 ], [ 34.573975, 35.672916 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.972473, 35.059229 ], [ 34.002686, 34.978252 ], [ 33.750000, 34.879172 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.018750 ], [ 33.750000, 35.050235 ], [ 33.865356, 35.095193 ], [ 33.972473, 35.059229 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.865356, 35.095193 ], [ 33.972473, 35.059229 ], [ 34.002686, 34.978252 ], [ 33.750000, 34.879172 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.018750 ], [ 33.750000, 35.050235 ], [ 33.865356, 35.095193 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.345032, 40.948788 ], [ 39.512329, 41.104191 ], [ 40.372009, 41.015138 ], [ 40.665894, 41.145570 ], [ 43.478394, 41.145570 ], [ 43.580017, 41.093842 ], [ 43.634949, 40.979898 ], [ 43.750305, 40.741014 ], [ 43.654175, 40.254377 ], [ 44.398499, 40.006580 ], [ 44.791260, 39.713525 ], [ 44.107361, 39.429829 ], [ 44.420471, 38.281313 ], [ 44.225464, 37.972350 ], [ 44.772034, 37.171260 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.778015, 37.385435 ], [ 42.349548, 37.230328 ], [ 41.209717, 37.074902 ], [ 40.671387, 37.092431 ], [ 39.520569, 36.716871 ], [ 38.699341, 36.714669 ], [ 38.166504, 36.901587 ], [ 37.065125, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.259778 ], [ 36.147766, 35.822267 ], [ 35.779724, 36.275279 ], [ 36.158752, 36.650793 ], [ 35.549011, 36.567012 ], [ 34.714050, 36.796090 ], [ 34.024658, 36.222119 ], [ 33.750000, 36.202174 ], [ 33.530273, 36.186659 ], [ 33.530273, 41.145570 ], [ 37.614441, 41.145570 ], [ 38.345032, 40.948788 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.478394, 41.145570 ], [ 43.580017, 41.093842 ], [ 43.634949, 40.979898 ], [ 43.750305, 40.741014 ], [ 43.654175, 40.254377 ], [ 44.398499, 40.006580 ], [ 44.791260, 39.713525 ], [ 44.107361, 39.429829 ], [ 44.420471, 38.281313 ], [ 44.225464, 37.972350 ], [ 44.772034, 37.171260 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.778015, 37.385435 ], [ 42.349548, 37.230328 ], [ 41.209717, 37.074902 ], [ 40.671387, 37.092431 ], [ 39.520569, 36.716871 ], [ 38.699341, 36.714669 ], [ 38.166504, 36.901587 ], [ 37.065125, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.259778 ], [ 36.147766, 35.822267 ], [ 35.779724, 36.275279 ], [ 36.158752, 36.650793 ], [ 35.549011, 36.567012 ], [ 34.714050, 36.796090 ], [ 34.024658, 36.222119 ], [ 33.750000, 36.202174 ], [ 33.530273, 36.186659 ], [ 33.530273, 41.145570 ], [ 37.614441, 41.145570 ], [ 38.345032, 40.948788 ], [ 39.512329, 41.104191 ], [ 40.372009, 41.015138 ], [ 40.665894, 41.145570 ], [ 43.478394, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.447144, 34.594781 ], [ 36.609192, 34.202716 ], [ 36.065369, 33.827075 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.977478, 34.610606 ], [ 35.996704, 34.646766 ], [ 36.447144, 34.594781 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.594781 ], [ 36.609192, 34.202716 ], [ 36.065369, 33.827075 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.977478, 34.610606 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.630512 ], [ 41.003723, 34.420505 ], [ 38.789978, 33.378706 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.834656, 32.870360 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.827075 ], [ 36.609192, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.147766, 35.822267 ], [ 36.683350, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.065125, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.714669 ], [ 39.520569, 36.716871 ], [ 40.671387, 37.092431 ], [ 41.209717, 37.074902 ], [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.630512 ], [ 41.003723, 34.420505 ], [ 38.789978, 33.378706 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.834656, 32.870360 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.827075 ], [ 36.609192, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.147766, 35.822267 ], [ 36.683350, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.065125, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.714669 ], [ 39.520569, 36.716871 ], [ 40.671387, 37.092431 ], [ 41.209717, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.350527 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.891551 ], [ 40.127563, 31.952162 ], [ 39.193726, 32.161663 ], [ 38.789978, 33.378706 ], [ 41.003723, 34.420505 ], [ 41.382751, 35.630512 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ], [ 43.939819, 37.256566 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.778015, 37.385435 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.350527 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.891551 ], [ 40.127563, 31.952162 ], [ 39.193726, 32.161663 ], [ 38.789978, 33.378706 ], [ 41.003723, 34.420505 ], [ 41.382751, 35.630512 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.834656, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.719299, 32.711044 ], [ 35.543518, 32.396197 ], [ 35.183716, 32.532921 ], [ 34.996948, 31.952162 ], [ 34.972229, 31.868228 ], [ 35.202942, 31.765537 ], [ 34.573975, 31.765537 ], [ 34.681091, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.126038, 33.091542 ], [ 35.458374, 33.089240 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.277732 ], [ 35.834656, 32.870360 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.834656, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.719299, 32.711044 ], [ 35.543518, 32.396197 ], [ 35.183716, 32.532921 ], [ 34.996948, 31.952162 ], [ 34.972229, 31.868228 ], [ 35.202942, 31.765537 ], [ 34.573975, 31.765537 ], [ 34.681091, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.126038, 33.091542 ], [ 35.458374, 33.089240 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.277732 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.543518, 32.396197 ], [ 35.543518, 31.784217 ], [ 35.532532, 31.765537 ], [ 35.202942, 31.765537 ], [ 34.972229, 31.868228 ], [ 34.996948, 31.952162 ], [ 35.183716, 32.532921 ], [ 35.543518, 32.396197 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.543518, 32.396197 ], [ 35.543518, 31.784217 ], [ 35.532532, 31.765537 ], [ 35.202942, 31.765537 ], [ 34.972229, 31.868228 ], [ 34.996948, 31.952162 ], [ 35.543518, 32.396197 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.768005, 31.952162 ], [ 38.020935, 31.765537 ], [ 35.532532, 31.765537 ], [ 35.543518, 31.784217 ], [ 35.543518, 32.396197 ], [ 35.719299, 32.711044 ], [ 36.831665, 32.314991 ], [ 38.789978, 33.378706 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.789978, 33.378706 ], [ 39.193726, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.768005, 31.952162 ], [ 38.020935, 31.765537 ], [ 35.532532, 31.765537 ], [ 35.543518, 31.784217 ], [ 35.543518, 32.396197 ], [ 35.719299, 32.711044 ], [ 36.831665, 32.314991 ], [ 38.789978, 33.378706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.178528, 40.986118 ], [ 45.219727, 40.969530 ], [ 45.219727, 39.542176 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.713525 ], [ 44.398499, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.750305, 40.741014 ], [ 43.634949, 40.979898 ], [ 43.580017, 41.093842 ], [ 44.041443, 41.145570 ], [ 45.049438, 41.145570 ], [ 45.178528, 40.986118 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.049438, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.969530 ], [ 45.219727, 39.542176 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.713525 ], [ 44.398499, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.750305, 40.741014 ], [ 43.634949, 40.979898 ], [ 43.580017, 41.093842 ], [ 44.041443, 41.145570 ], [ 45.049438, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.219727, 39.542176 ], [ 45.219727, 39.093831 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.336422 ], [ 44.791260, 39.713525 ], [ 45.000000, 39.740986 ], [ 45.219727, 39.542176 ] ] ], [ [ [ 45.219727, 40.969530 ], [ 45.178528, 40.986118 ], [ 45.049438, 41.145570 ], [ 45.219727, 41.145570 ], [ 45.219727, 40.969530 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.219727, 39.542176 ], [ 45.219727, 39.093831 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.336422 ], [ 44.791260, 39.713525 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.969530 ], [ 45.178528, 40.986118 ], [ 45.049438, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.219727, 39.093831 ], [ 45.219727, 36.350527 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.107361, 39.429829 ], [ 44.791260, 39.713525 ], [ 44.950562, 39.336422 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.713525 ], [ 44.950562, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.219727, 39.093831 ], [ 45.219727, 36.350527 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.107361, 39.429829 ], [ 44.791260, 39.713525 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.127563, 31.952162 ], [ 40.399475, 31.891551 ], [ 40.665894, 31.765537 ], [ 38.020935, 31.765537 ], [ 38.768005, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.193726, 32.161663 ], [ 40.127563, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.127563, 31.952162 ], [ 40.399475, 31.891551 ], [ 40.665894, 31.765537 ], [ 38.020935, 31.765537 ], [ 38.768005, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.193726, 32.161663 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 42.563196 ], [ 45.000000, 42.611728 ], [ 44.535828, 42.712714 ], [ 43.928833, 42.555104 ], [ 43.755798, 42.740961 ], [ 42.393494, 43.221190 ], [ 40.921326, 43.383094 ], [ 40.075378, 43.554520 ], [ 39.954529, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.537537, 44.658885 ], [ 36.675110, 45.245887 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.242552 ], [ 37.672119, 46.638122 ], [ 39.147034, 47.045797 ], [ 39.119568, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.768005, 47.826064 ], [ 39.737549, 47.899772 ], [ 39.894104, 48.233821 ], [ 39.674377, 48.785152 ], [ 39.888611, 49.066668 ], [ 45.219727, 49.066668 ], [ 45.219727, 42.563196 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 49.066668 ], [ 45.219727, 42.563196 ], [ 45.000000, 42.611728 ], [ 44.535828, 42.712714 ], [ 43.928833, 42.555104 ], [ 43.755798, 42.740961 ], [ 42.393494, 43.221190 ], [ 40.921326, 43.383094 ], [ 40.075378, 43.554520 ], [ 39.954529, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.537537, 44.658885 ], [ 36.675110, 45.245887 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.242552 ], [ 37.672119, 46.638122 ], [ 39.147034, 47.045797 ], [ 39.119568, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.768005, 47.826064 ], [ 39.737549, 47.899772 ], [ 39.894104, 48.233821 ], [ 39.674377, 48.785152 ], [ 39.888611, 49.066668 ], [ 45.219727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.674377, 48.785152 ], [ 39.894104, 48.233821 ], [ 39.737549, 47.899772 ], [ 38.768005, 47.826064 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.023334 ], [ 36.757507, 46.700319 ], [ 35.823669, 46.647551 ], [ 34.961243, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.334534, 45.114238 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.750000, 44.412202 ], [ 33.530273, 44.490628 ], [ 33.530273, 45.003651 ], [ 33.546753, 45.036656 ], [ 33.530273, 45.042478 ], [ 33.530273, 45.832627 ], [ 33.587952, 45.851760 ], [ 33.530273, 45.897655 ], [ 33.530273, 49.066668 ], [ 39.888611, 49.066668 ], [ 39.674377, 48.785152 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.888611, 49.066668 ], [ 39.674377, 48.785152 ], [ 39.894104, 48.233821 ], [ 39.737549, 47.899772 ], [ 38.768005, 47.826064 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.023334 ], [ 36.757507, 46.700319 ], [ 35.823669, 46.647551 ], [ 34.961243, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.334534, 45.114238 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.750000, 44.412202 ], [ 33.530273, 44.490628 ], [ 33.530273, 45.003651 ], [ 33.546753, 45.036656 ], [ 33.530273, 45.042478 ], [ 33.530273, 45.832627 ], [ 33.587952, 45.851760 ], [ 33.530273, 45.897655 ], [ 33.530273, 49.066668 ], [ 39.888611, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.921326, 43.383094 ], [ 42.393494, 43.221190 ], [ 43.755798, 42.740961 ], [ 43.928833, 42.555104 ], [ 44.535828, 42.712714 ], [ 45.000000, 42.611728 ], [ 45.219727, 42.563196 ], [ 45.219727, 41.411836 ], [ 45.216980, 41.411836 ], [ 45.000000, 41.269550 ], [ 44.969788, 41.248903 ], [ 43.580017, 41.093842 ], [ 42.618713, 41.584634 ], [ 41.553040, 41.537366 ], [ 41.701355, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.014689 ], [ 40.319824, 43.129052 ], [ 39.954529, 43.436966 ], [ 40.075378, 43.554520 ], [ 40.921326, 43.383094 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.075378, 43.554520 ], [ 40.921326, 43.383094 ], [ 42.393494, 43.221190 ], [ 43.755798, 42.740961 ], [ 43.928833, 42.555104 ], [ 44.535828, 42.712714 ], [ 45.000000, 42.611728 ], [ 45.219727, 42.563196 ], [ 45.219727, 41.411836 ], [ 45.216980, 41.411836 ], [ 45.000000, 41.269550 ], [ 44.969788, 41.248903 ], [ 43.580017, 41.093842 ], [ 42.618713, 41.584634 ], [ 41.553040, 41.537366 ], [ 41.701355, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.014689 ], [ 40.319824, 43.129052 ], [ 39.954529, 43.436966 ], [ 40.075378, 43.554520 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.911316, 41.335576 ], [ 38.229675, 40.979898 ], [ 38.345032, 40.948788 ], [ 39.512329, 41.104191 ], [ 40.372009, 41.015138 ], [ 41.553040, 41.537366 ], [ 42.618713, 41.584634 ], [ 43.580017, 41.093842 ], [ 43.634949, 40.979898 ], [ 43.714600, 40.813809 ], [ 33.530273, 40.813809 ], [ 33.530273, 42.022773 ], [ 33.750000, 42.024814 ], [ 35.167236, 42.041134 ], [ 36.911316, 41.335576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.167236, 42.041134 ], [ 36.911316, 41.335576 ], [ 38.229675, 40.979898 ], [ 38.345032, 40.948788 ], [ 39.512329, 41.104191 ], [ 40.372009, 41.015138 ], [ 41.553040, 41.537366 ], [ 42.618713, 41.584634 ], [ 43.580017, 41.093842 ], [ 43.634949, 40.979898 ], [ 43.714600, 40.813809 ], [ 33.530273, 40.813809 ], [ 33.530273, 42.022773 ], [ 33.750000, 42.024814 ], [ 35.167236, 42.041134 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.969530 ], [ 45.219727, 40.813809 ], [ 43.714600, 40.813809 ], [ 43.634949, 40.979898 ], [ 43.580017, 41.093842 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.969788, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.969530 ], [ 45.219727, 40.813809 ], [ 43.714600, 40.813809 ], [ 43.634949, 40.979898 ], [ 43.580017, 41.093842 ], [ 44.969788, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 40.969530 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.211722 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.216980, 41.411836 ], [ 45.219727, 41.411836 ], [ 45.219727, 40.969530 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.411836 ], [ 45.219727, 40.969530 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.211722 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.216980, 41.411836 ], [ 45.219727, 41.411836 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 48.777913 ], [ 39.677124, 48.777913 ], [ 39.674377, 48.785152 ], [ 39.778748, 48.922499 ], [ 40.078125, 49.309008 ], [ 40.067139, 49.601811 ], [ 38.594971, 49.926472 ], [ 38.009949, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.625671, 50.226124 ], [ 35.354004, 50.578004 ], [ 35.375977, 50.774682 ], [ 35.021667, 51.208604 ], [ 34.222412, 51.256758 ], [ 34.140015, 51.566827 ], [ 34.389954, 51.769540 ], [ 33.750000, 52.335339 ], [ 33.530273, 52.315195 ], [ 33.530273, 55.899956 ], [ 45.219727, 55.899956 ], [ 45.219727, 48.777913 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 55.899956 ], [ 45.219727, 48.777913 ], [ 39.677124, 48.777913 ], [ 39.674377, 48.785152 ], [ 39.778748, 48.922499 ], [ 40.078125, 49.309008 ], [ 40.067139, 49.601811 ], [ 38.594971, 49.926472 ], [ 38.009949, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.625671, 50.226124 ], [ 35.354004, 50.578004 ], [ 35.375977, 50.774682 ], [ 35.021667, 51.208604 ], [ 34.222412, 51.256758 ], [ 34.140015, 51.566827 ], [ 34.389954, 51.769540 ], [ 33.750000, 52.335339 ], [ 33.530273, 52.315195 ], [ 33.530273, 55.899956 ], [ 45.219727, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.389954, 51.769540 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.256758 ], [ 35.021667, 51.208604 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.578004 ], [ 36.625671, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.009949, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.601811 ], [ 40.078125, 49.309008 ], [ 39.778748, 48.922499 ], [ 39.674377, 48.785152 ], [ 39.677124, 48.777913 ], [ 33.530273, 48.777913 ], [ 33.530273, 52.315195 ], [ 33.750000, 52.335339 ], [ 34.389954, 51.769540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.389954, 51.769540 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.256758 ], [ 35.021667, 51.208604 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.578004 ], [ 36.625671, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.009949, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.601811 ], [ 40.078125, 49.309008 ], [ 39.778748, 48.922499 ], [ 39.674377, 48.785152 ], [ 39.677124, 48.777913 ], [ 33.530273, 48.777913 ], [ 33.530273, 52.315195 ], [ 33.750000, 52.335339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 55.652798 ], [ 33.530273, 55.652798 ], [ 33.530273, 61.710706 ], [ 45.219727, 61.710706 ], [ 45.219727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 61.710706 ], [ 45.219727, 55.652798 ], [ 33.530273, 55.652798 ], [ 33.530273, 61.710706 ], [ 45.219727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, 66.381560 ], [ 34.812927, 65.900532 ], [ 34.876099, 65.436577 ], [ 34.942017, 64.414735 ], [ 36.230164, 64.110602 ], [ 37.010193, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.537781, 64.764759 ], [ 37.174988, 65.143806 ], [ 39.591980, 64.521279 ], [ 40.435181, 64.764759 ], [ 39.762268, 65.497020 ], [ 42.091370, 66.477112 ], [ 43.014221, 66.418945 ], [ 43.948059, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.393005, 66.600676 ], [ 45.219727, 66.600676 ], [ 45.219727, 61.501734 ], [ 33.530273, 61.501734 ], [ 33.530273, 66.480400 ], [ 33.750000, 66.381560 ] ] ], [ [ [ 40.531311, 66.513260 ], [ 40.014954, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.865112, 66.600676 ], [ 40.715332, 66.600676 ], [ 40.531311, 66.513260 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.219727, 66.600676 ], [ 45.219727, 61.501734 ], [ 33.530273, 61.501734 ], [ 33.530273, 66.480400 ], [ 33.750000, 66.381560 ], [ 34.812927, 65.900532 ], [ 34.876099, 65.436577 ], [ 34.942017, 64.414735 ], [ 36.230164, 64.110602 ], [ 37.010193, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.537781, 64.764759 ], [ 37.174988, 65.143806 ], [ 39.591980, 64.521279 ], [ 40.435181, 64.764759 ], [ 39.762268, 65.497020 ], [ 42.091370, 66.477112 ], [ 43.014221, 66.418945 ], [ 43.948059, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.393005, 66.600676 ], [ 45.219727, 66.600676 ] ] ], [ [ [ 40.715332, 66.600676 ], [ 40.531311, 66.513260 ], [ 40.014954, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.865112, 66.600676 ], [ 40.715332, 66.600676 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.917542, 66.760501 ], [ 33.750000, 66.732308 ], [ 33.530273, 66.694305 ], [ 33.530273, 69.393850 ], [ 33.750000, 69.311529 ], [ 33.774719, 69.301823 ], [ 36.513062, 69.063657 ], [ 40.289612, 67.933397 ], [ 41.058655, 67.458082 ], [ 41.124573, 66.791909 ], [ 40.531311, 66.513260 ], [ 40.344543, 66.425537 ], [ 35.897827, 66.425537 ], [ 35.381470, 66.513260 ], [ 33.917542, 66.760501 ] ] ], [ [ [ 42.907104, 66.425537 ], [ 41.965027, 66.425537 ], [ 42.091370, 66.477112 ], [ 42.907104, 66.425537 ] ] ], [ [ [ 44.530334, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.950932 ], [ 43.450928, 68.571424 ], [ 45.000000, 68.395135 ], [ 45.219727, 68.369839 ], [ 45.219727, 66.425537 ], [ 44.244690, 66.425537 ], [ 44.318848, 66.513260 ], [ 44.530334, 66.757250 ] ] ], [ [ [ 33.648376, 66.425537 ], [ 33.530273, 66.425537 ], [ 33.530273, 66.479304 ], [ 33.648376, 66.425537 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 66.694305 ], [ 33.530273, 69.393850 ], [ 33.750000, 69.311529 ], [ 33.774719, 69.301823 ], [ 36.513062, 69.063657 ], [ 40.289612, 67.933397 ], [ 41.058655, 67.458082 ], [ 41.124573, 66.791909 ], [ 40.531311, 66.513260 ], [ 40.344543, 66.425537 ], [ 35.897827, 66.425537 ], [ 35.381470, 66.513260 ], [ 33.917542, 66.760501 ], [ 33.750000, 66.732308 ], [ 33.530273, 66.694305 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.219727, 68.369839 ], [ 45.219727, 66.425537 ], [ 44.244690, 66.425537 ], [ 44.318848, 66.513260 ], [ 44.530334, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.950932 ], [ 43.450928, 68.571424 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.965027, 66.425537 ], [ 42.091370, 66.477112 ], [ 42.907104, 66.425537 ], [ 41.965027, 66.425537 ] ] ], [ [ [ 33.530273, 66.479304 ], [ 33.648376, 66.425537 ], [ 33.530273, 66.425537 ], [ 33.530273, 66.479304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 80.585684 ], [ 45.000000, 80.588380 ], [ 44.846191, 80.590176 ], [ 45.000000, 80.604983 ], [ 45.219727, 80.625585 ], [ 45.219727, 80.585684 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 80.625585 ], [ 45.219727, 80.585684 ], [ 45.000000, 80.588380 ], [ 44.846191, 80.590176 ], [ 45.000000, 80.604983 ], [ 45.219727, 80.625585 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -85.070048 ], [ 44.780273, -85.070048 ], [ 44.780273, -83.956169 ], [ 56.469727, -83.956169 ], [ 56.469727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -83.956169 ], [ 56.469727, -85.070048 ], [ 44.780273, -85.070048 ], [ 44.780273, -83.956169 ], [ 56.469727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -84.002262 ], [ 44.780273, -84.002262 ], [ 44.780273, -82.648222 ], [ 56.469727, -82.648222 ], [ 56.469727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -82.648222 ], [ 56.469727, -84.002262 ], [ 44.780273, -84.002262 ], [ 44.780273, -82.648222 ], [ 56.469727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -82.704241 ], [ 44.780273, -82.704241 ], [ 44.780273, -81.059130 ], [ 56.469727, -81.059130 ], [ 56.469727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -81.059130 ], [ 56.469727, -82.704241 ], [ 44.780273, -82.704241 ], [ 44.780273, -81.059130 ], [ 56.469727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -81.127169 ], [ 44.780273, -81.127169 ], [ 44.780273, -79.129976 ], [ 56.469727, -79.129976 ], [ 56.469727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -79.129976 ], [ 56.469727, -81.127169 ], [ 44.780273, -81.127169 ], [ 44.780273, -79.129976 ], [ 56.469727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -79.212538 ], [ 44.780273, -79.212538 ], [ 44.780273, -76.790701 ], [ 56.469727, -76.790701 ], [ 56.469727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -76.790701 ], [ 56.469727, -79.212538 ], [ 44.780273, -79.212538 ], [ 44.780273, -76.790701 ], [ 56.469727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -76.890745 ], [ 44.780273, -76.890745 ], [ 44.780273, -73.958939 ], [ 56.469727, -73.958939 ], [ 56.469727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -73.958939 ], [ 56.469727, -76.890745 ], [ 44.780273, -76.890745 ], [ 44.780273, -73.958939 ], [ 56.469727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -74.079925 ], [ 44.780273, -74.079925 ], [ 44.780273, -70.539543 ], [ 56.469727, -70.539543 ], [ 56.469727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -70.539543 ], [ 56.469727, -74.079925 ], [ 44.780273, -74.079925 ], [ 44.780273, -70.539543 ], [ 56.469727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -70.685421 ], [ 44.780273, -70.685421 ], [ 44.780273, -68.082534 ], [ 45.000000, -68.021966 ], [ 45.719604, -67.816505 ], [ 46.502380, -67.600849 ], [ 47.441711, -67.717778 ], [ 48.342590, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.930115, -67.111272 ], [ 50.751343, -66.875109 ], [ 50.949097, -66.523110 ], [ 50.976562, -66.513260 ], [ 51.245728, -66.425537 ], [ 56.469727, -66.425537 ], [ 56.469727, -70.685421 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -66.425537 ], [ 56.469727, -70.685421 ], [ 44.780273, -70.685421 ], [ 44.780273, -68.082534 ], [ 45.000000, -68.021966 ], [ 45.719604, -67.816505 ], [ 46.502380, -67.600849 ], [ 47.441711, -67.717778 ], [ 48.342590, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.930115, -67.111272 ], [ 50.751343, -66.875109 ], [ 50.949097, -66.523110 ], [ 50.976562, -66.513260 ], [ 51.245728, -66.425537 ], [ 56.469727, -66.425537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.412292, -65.875847 ], [ 56.250000, -65.963258 ], [ 56.354370, -65.974443 ], [ 56.469727, -66.013552 ], [ 56.469727, -66.600676 ], [ 50.905151, -66.600676 ], [ 50.949097, -66.523110 ], [ 50.979309, -66.513260 ], [ 51.789551, -66.248057 ], [ 52.613525, -66.052601 ], [ 53.610535, -65.896046 ], [ 54.533386, -65.817407 ], [ 55.412292, -65.875847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.533386, -65.817407 ], [ 55.412292, -65.875847 ], [ 56.250000, -65.963258 ], [ 56.354370, -65.974443 ], [ 56.469727, -66.013552 ], [ 56.469727, -66.600676 ], [ 50.905151, -66.600676 ], [ 50.949097, -66.523110 ], [ 50.979309, -66.513260 ], [ 51.789551, -66.248057 ], [ 52.613525, -66.052601 ], [ 53.610535, -65.896046 ], [ 54.533386, -65.817407 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.073425, -21.943046 ], [ 47.930603, -22.390714 ], [ 47.546082, -23.780318 ], [ 47.095642, -24.941238 ], [ 46.279907, -25.177602 ], [ 45.409241, -25.599425 ], [ 45.000000, -25.415989 ], [ 44.832458, -25.344026 ], [ 44.780273, -25.319201 ], [ 44.780273, -21.739091 ], [ 48.139343, -21.739091 ], [ 48.073425, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.139343, -21.739091 ], [ 48.073425, -21.943046 ], [ 47.930603, -22.390714 ], [ 47.546082, -23.780318 ], [ 47.095642, -24.941238 ], [ 46.279907, -25.177602 ], [ 45.409241, -25.599425 ], [ 45.000000, -25.415989 ], [ 44.832458, -25.344026 ], [ 44.780273, -25.319201 ], [ 44.780273, -21.739091 ], [ 48.139343, -21.739091 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.542847, -12.468760 ], [ 49.806519, -12.894812 ], [ 50.056458, -13.555222 ], [ 50.215759, -14.756291 ], [ 50.473938, -15.225889 ], [ 50.375061, -15.705019 ], [ 50.199280, -15.998295 ], [ 49.858704, -15.413967 ], [ 49.671936, -15.707663 ], [ 49.861450, -16.449256 ], [ 49.773560, -16.872890 ], [ 49.496155, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.040222, -19.116624 ], [ 48.545837, -20.496492 ], [ 48.073425, -21.943046 ], [ 48.007507, -22.146708 ], [ 44.780273, -22.146708 ], [ 44.780273, -16.188300 ], [ 44.942322, -16.177749 ], [ 45.000000, -16.154007 ], [ 45.502625, -15.971892 ], [ 45.870667, -15.792254 ], [ 46.310120, -15.779039 ], [ 46.881409, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.293152, -13.782069 ], [ 48.842468, -13.087504 ], [ 48.861694, -12.487532 ], [ 49.194031, -12.039321 ], [ 49.542847, -12.468760 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.194031, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.894812 ], [ 50.056458, -13.555222 ], [ 50.215759, -14.756291 ], [ 50.473938, -15.225889 ], [ 50.375061, -15.705019 ], [ 50.199280, -15.998295 ], [ 49.858704, -15.413967 ], [ 49.671936, -15.707663 ], [ 49.861450, -16.449256 ], [ 49.773560, -16.872890 ], [ 49.496155, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.040222, -19.116624 ], [ 48.545837, -20.496492 ], [ 48.073425, -21.943046 ], [ 48.007507, -22.146708 ], [ 44.780273, -22.146708 ], [ 44.780273, -16.188300 ], [ 44.942322, -16.177749 ], [ 45.000000, -16.154007 ], [ 45.502625, -15.971892 ], [ 45.870667, -15.792254 ], [ 46.310120, -15.779039 ], [ 46.881409, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.293152, -13.782069 ], [ 48.842468, -13.087504 ], [ 48.861694, -12.487532 ], [ 49.194031, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 8.711359 ], [ 46.947327, 7.999397 ], [ 47.787781, 8.004837 ], [ 45.000000, 5.044435 ], [ 44.961548, 5.003394 ], [ 44.780273, 5.000658 ], [ 44.780273, 8.790083 ], [ 45.000000, 8.711359 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 8.790083 ], [ 45.000000, 8.711359 ], [ 46.947327, 7.999397 ], [ 47.787781, 8.004837 ], [ 45.000000, 5.044435 ], [ 44.961548, 5.003394 ], [ 44.780273, 5.000658 ], [ 44.780273, 8.790083 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.935852, 11.178402 ], [ 48.935852, 9.451771 ], [ 48.485413, 8.838937 ], [ 47.787781, 8.004837 ], [ 46.947327, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.780273, 8.790083 ], [ 44.780273, 10.490513 ], [ 45.000000, 10.549922 ], [ 45.554810, 10.698394 ], [ 46.645203, 10.817120 ], [ 47.524109, 11.129897 ], [ 47.894897, 11.178402 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.639221, 11.393879 ], [ 48.938599, 11.393879 ], [ 48.935852, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.938599, 11.393879 ], [ 48.935852, 11.178402 ], [ 48.935852, 9.451771 ], [ 48.485413, 8.838937 ], [ 47.787781, 8.004837 ], [ 46.947327, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.780273, 8.790083 ], [ 44.780273, 10.490513 ], [ 45.000000, 10.549922 ], [ 45.554810, 10.698394 ], [ 46.645203, 10.817120 ], [ 47.524109, 11.129897 ], [ 47.894897, 11.178402 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.639221, 11.393879 ], [ 48.938599, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.039734, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.550842, 9.199715 ], [ 50.070190, 8.083704 ], [ 49.452209, 6.806444 ], [ 48.592529, 5.339848 ], [ 47.738342, 4.220421 ], [ 46.562805, 2.858006 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.675176 ], [ 44.780273, 1.529664 ], [ 44.780273, 5.000658 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.044435 ], [ 47.787781, 8.004837 ], [ 48.485413, 8.838937 ], [ 48.935852, 9.451771 ], [ 48.935852, 11.178402 ], [ 48.938599, 11.393879 ], [ 51.075439, 11.393879 ], [ 51.039734, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.075439, 11.393879 ], [ 51.039734, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.550842, 9.199715 ], [ 50.070190, 8.083704 ], [ 49.452209, 6.806444 ], [ 48.592529, 5.339848 ], [ 47.738342, 4.220421 ], [ 46.562805, 2.858006 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.675176 ], [ 44.780273, 1.529664 ], [ 44.780273, 5.000658 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.044435 ], [ 47.787781, 8.004837 ], [ 48.485413, 8.838937 ], [ 48.935852, 9.451771 ], [ 48.935852, 11.178402 ], [ 48.938599, 11.393879 ], [ 51.075439, 11.393879 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.664978, 22.001628 ], [ 55.643005, 21.943046 ], [ 54.997559, 20.001741 ], [ 51.998291, 19.002400 ], [ 49.114380, 18.617616 ], [ 48.183289, 18.166730 ], [ 47.466431, 17.117168 ], [ 46.999512, 16.951724 ], [ 46.749573, 17.285087 ], [ 46.365051, 17.235252 ], [ 45.398254, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.431890 ], [ 44.780273, 17.429270 ], [ 44.780273, 22.146708 ], [ 55.568848, 22.146708 ], [ 55.664978, 22.001628 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.568848, 22.146708 ], [ 55.664978, 22.001628 ], [ 55.643005, 21.943046 ], [ 54.997559, 20.001741 ], [ 51.998291, 19.002400 ], [ 49.114380, 18.617616 ], [ 48.183289, 18.166730 ], [ 47.466431, 17.117168 ], [ 46.999512, 16.951724 ], [ 46.749573, 17.285087 ], [ 46.365051, 17.235252 ], [ 45.398254, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.431890 ], [ 44.780273, 17.429270 ], [ 44.780273, 22.146708 ], [ 55.568848, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.781067, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.165833, 15.599229 ], [ 51.171570, 15.175530 ], [ 49.573059, 14.711135 ], [ 48.677673, 14.003367 ], [ 48.238220, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.353821, 13.592600 ], [ 46.716614, 13.400307 ], [ 45.876160, 13.349537 ], [ 45.623474, 13.293411 ], [ 45.403748, 13.028642 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.701971 ], [ 44.780273, 12.712688 ], [ 44.780273, 17.429270 ], [ 45.000000, 17.431890 ], [ 45.214233, 17.434511 ], [ 45.398254, 17.334908 ], [ 46.365051, 17.235252 ], [ 46.749573, 17.285087 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.117168 ], [ 48.183289, 18.166730 ], [ 49.114380, 18.617616 ], [ 51.998291, 19.002400 ], [ 52.781067, 17.350638 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.002400 ], [ 52.781067, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.165833, 15.599229 ], [ 51.171570, 15.175530 ], [ 49.573059, 14.711135 ], [ 48.677673, 14.003367 ], [ 48.238220, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.353821, 13.592600 ], [ 46.716614, 13.400307 ], [ 45.876160, 13.349537 ], [ 45.623474, 13.293411 ], [ 45.403748, 13.028642 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.701971 ], [ 44.780273, 12.712688 ], [ 44.780273, 17.429270 ], [ 45.000000, 17.431890 ], [ 45.214233, 17.434511 ], [ 45.398254, 17.334908 ], [ 46.365051, 17.235252 ], [ 46.749573, 17.285087 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.117168 ], [ 48.183289, 18.166730 ], [ 49.114380, 18.617616 ], [ 51.998291, 19.002400 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 18.051867 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.879431 ], [ 55.659485, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.236755, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.002400 ], [ 54.997559, 20.001741 ], [ 55.643005, 21.943046 ], [ 55.664978, 22.001628 ], [ 55.568848, 22.146708 ], [ 56.469727, 22.146708 ], [ 56.469727, 18.051867 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.051867 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.879431 ], [ 55.659485, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.236755, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.002400 ], [ 54.997559, 20.001741 ], [ 55.643005, 21.943046 ], [ 55.664978, 22.001628 ], [ 55.568848, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.941345, 11.396572 ], [ 48.935852, 11.178402 ], [ 48.935852, 10.962764 ], [ 47.051697, 10.962764 ], [ 47.524109, 11.129897 ], [ 47.894897, 11.178402 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.946838, 11.412726 ], [ 48.941345, 11.396572 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.946838, 11.412726 ], [ 48.941345, 11.396572 ], [ 48.935852, 11.178402 ], [ 48.935852, 10.962764 ], [ 47.051697, 10.962764 ], [ 47.524109, 11.129897 ], [ 47.894897, 11.178402 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.946838, 11.412726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.133118, 11.749059 ], [ 51.039734, 11.178402 ], [ 51.039734, 10.962764 ], [ 48.935852, 10.962764 ], [ 48.935852, 11.178402 ], [ 48.941345, 11.396572 ], [ 48.946838, 11.412726 ], [ 49.265442, 11.431571 ], [ 49.726868, 11.579597 ], [ 50.256958, 11.681825 ], [ 50.729370, 12.023203 ], [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.039734, 11.178402 ], [ 51.039734, 10.962764 ], [ 48.935852, 10.962764 ], [ 48.935852, 11.178402 ], [ 48.941345, 11.396572 ], [ 48.946838, 11.412726 ], [ 49.265442, 11.431571 ], [ 49.726868, 11.579597 ], [ 50.256958, 11.681825 ], [ 50.729370, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.683411, 31.952162 ], [ 47.848206, 31.709476 ], [ 47.683411, 30.987028 ], [ 48.002014, 30.987028 ], [ 48.013000, 30.453409 ], [ 48.567810, 29.928755 ], [ 47.971802, 29.976349 ], [ 47.301636, 30.059586 ], [ 46.568298, 29.099377 ], [ 45.000000, 29.168951 ], [ 44.780273, 29.178543 ], [ 44.780273, 32.138409 ], [ 47.557068, 32.138409 ], [ 47.683411, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.557068, 32.138409 ], [ 47.683411, 31.952162 ], [ 47.848206, 31.709476 ], [ 47.683411, 30.987028 ], [ 48.002014, 30.987028 ], [ 48.013000, 30.453409 ], [ 48.567810, 29.928755 ], [ 47.971802, 29.976349 ], [ 47.301636, 30.059586 ], [ 46.568298, 29.099377 ], [ 45.000000, 29.168951 ], [ 44.780273, 29.178543 ], [ 44.780273, 32.138409 ], [ 47.557068, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 27.139813 ], [ 56.250000, 27.090918 ], [ 55.722656, 26.966142 ], [ 54.714661, 26.482866 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.985866 ], [ 48.938599, 30.318359 ], [ 48.567810, 29.928755 ], [ 48.013000, 30.453409 ], [ 48.002014, 30.987028 ], [ 47.683411, 30.987028 ], [ 47.848206, 31.709476 ], [ 47.683411, 31.952162 ], [ 47.557068, 32.138409 ], [ 56.469727, 32.138409 ], [ 56.469727, 27.139813 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.139813 ], [ 56.250000, 27.090918 ], [ 55.722656, 26.966142 ], [ 54.714661, 26.482866 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.985866 ], [ 48.938599, 30.318359 ], [ 48.567810, 29.928755 ], [ 48.013000, 30.453409 ], [ 48.002014, 30.987028 ], [ 47.683411, 30.987028 ], [ 47.848206, 31.709476 ], [ 47.683411, 31.952162 ], [ 47.557068, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.971802, 29.976349 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.307956 ], [ 48.414001, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.458191, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ], [ 47.971802, 29.976349 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.976349 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.307956 ], [ 48.414001, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.458191, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 29.168951 ], [ 46.568298, 29.099377 ], [ 47.458191, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.414001, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.468689, 27.110479 ], [ 50.149841, 26.691637 ], [ 50.210266, 26.278640 ], [ 50.111389, 25.945697 ], [ 50.237732, 25.609333 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.809021, 24.756808 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.629541 ], [ 51.578064, 24.246965 ], [ 51.616516, 24.016362 ], [ 51.998291, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.664978, 22.001628 ], [ 55.643005, 21.943046 ], [ 55.574341, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.178543 ], [ 45.000000, 29.168951 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 29.178543 ], [ 45.000000, 29.168951 ], [ 46.568298, 29.099377 ], [ 47.458191, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.414001, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.468689, 27.110479 ], [ 50.149841, 26.691637 ], [ 50.210266, 26.278640 ], [ 50.111389, 25.945697 ], [ 50.237732, 25.609333 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.809021, 24.756808 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.629541 ], [ 51.578064, 24.246965 ], [ 51.616516, 24.016362 ], [ 51.998291, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.664978, 22.001628 ], [ 55.643005, 21.943046 ], [ 55.574341, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.178543 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.589050, 25.802364 ], [ 51.605530, 25.217366 ], [ 51.388550, 24.629541 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.756808 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.284180, 26.115986 ], [ 51.589050, 25.802364 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.589050, 25.802364 ], [ 51.605530, 25.217366 ], [ 51.388550, 24.629541 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.756808 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.926295 ], [ 56.250000, 24.926295 ], [ 55.884705, 24.921313 ], [ 55.802307, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.936055 ], [ 55.524902, 23.526218 ], [ 55.233765, 23.112575 ], [ 55.206299, 22.710323 ], [ 55.005798, 22.497332 ], [ 51.998291, 23.001380 ], [ 51.616516, 24.016362 ], [ 51.578064, 24.246965 ], [ 51.756592, 24.294537 ], [ 51.792297, 24.021379 ], [ 52.575073, 24.179331 ], [ 53.401794, 24.151766 ], [ 54.006042, 24.124195 ], [ 54.692688, 24.799202 ], [ 55.437012, 25.440794 ], [ 56.068726, 26.056783 ], [ 56.250000, 25.735581 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.926295 ], [ 56.250000, 24.926295 ], [ 55.884705, 24.921313 ], [ 55.802307, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.936055 ], [ 55.524902, 23.526218 ], [ 55.233765, 23.112575 ], [ 55.206299, 22.710323 ], [ 55.005798, 22.497332 ], [ 51.998291, 23.001380 ], [ 51.616516, 24.016362 ], [ 51.578064, 24.246965 ], [ 51.756592, 24.294537 ], [ 51.792297, 24.021379 ], [ 52.575073, 24.179331 ], [ 53.401794, 24.151766 ], [ 54.006042, 24.124195 ], [ 54.692688, 24.799202 ], [ 55.437012, 25.440794 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 24.814161 ], [ 56.469727, 21.739091 ], [ 55.574341, 21.739091 ], [ 55.643005, 21.943046 ], [ 55.664978, 22.001628 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.112575 ], [ 55.524902, 23.526218 ], [ 55.527649, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.802307, 24.272005 ], [ 55.884705, 24.921313 ], [ 56.250000, 24.926295 ], [ 56.395569, 24.926295 ], [ 56.469727, 24.814161 ] ] ], [ [ [ 56.469727, 26.320498 ], [ 56.469727, 26.251546 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.068726, 26.056783 ], [ 56.250000, 26.268788 ], [ 56.359863, 26.396790 ], [ 56.469727, 26.320498 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.926295 ], [ 56.469727, 24.814161 ], [ 56.469727, 21.739091 ], [ 55.574341, 21.739091 ], [ 55.643005, 21.943046 ], [ 55.664978, 22.001628 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.112575 ], [ 55.524902, 23.526218 ], [ 55.527649, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.802307, 24.272005 ], [ 55.884705, 24.921313 ], [ 56.250000, 24.926295 ], [ 56.395569, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.469727, 26.320498 ], [ 56.469727, 26.251546 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.068726, 26.056783 ], [ 56.250000, 26.268788 ], [ 56.359863, 26.396790 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.499634, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.906372, 41.145570 ], [ 46.593018, 41.145570 ], [ 46.499634, 41.064857 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.593018, 41.145570 ], [ 46.499634, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.906372, 41.145570 ], [ 46.593018, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.713525 ], [ 44.780273, 39.709300 ], [ 44.780273, 39.721976 ], [ 44.791260, 39.713525 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.721976 ], [ 44.791260, 39.713525 ], [ 44.780273, 39.709300 ], [ 44.780273, 39.721976 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.073914, 35.679610 ], [ 46.150818, 35.095193 ], [ 45.648193, 34.748383 ], [ 45.414734, 33.968420 ], [ 46.106873, 33.017876 ], [ 47.334595, 32.470378 ], [ 47.683411, 31.952162 ], [ 47.809753, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.158128 ], [ 45.000000, 36.754290 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 37.158128 ], [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.073914, 35.679610 ], [ 46.150818, 35.095193 ], [ 45.648193, 34.748383 ], [ 45.414734, 33.968420 ], [ 46.106873, 33.017876 ], [ 47.334595, 32.470378 ], [ 47.683411, 31.952162 ], [ 47.809753, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.158128 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.561808 ], [ 45.889893, 40.218733 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.628961 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.733337, 39.321550 ], [ 45.738831, 39.474365 ], [ 45.296631, 39.472245 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.713525 ], [ 44.780273, 39.721976 ], [ 44.780273, 41.145570 ], [ 45.049438, 41.145570 ], [ 45.178528, 40.986118 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.049438, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.561808 ], [ 45.889893, 40.218733 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.628961 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.733337, 39.321550 ], [ 45.738831, 39.474365 ], [ 45.296631, 39.472245 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.713525 ], [ 44.780273, 39.721976 ], [ 44.780273, 41.145570 ], [ 45.049438, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.961304, 41.124884 ], [ 46.499634, 41.064857 ], [ 46.593018, 41.145570 ], [ 49.207764, 41.145570 ], [ 49.325867, 40.979898 ], [ 49.617004, 40.574326 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.258569 ], [ 49.567566, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.221497, 39.051185 ], [ 48.856201, 38.816171 ], [ 48.880920, 38.322266 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.353577, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.683411, 39.510398 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.628961 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.218733 ], [ 45.357056, 40.561808 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.049438, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ] ] ], [ [ [ 45.296631, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.733337, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.876067 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.336422 ], [ 44.791260, 39.713525 ], [ 45.000000, 39.740986 ], [ 45.296631, 39.472245 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.325867, 40.979898 ], [ 49.617004, 40.574326 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.258569 ], [ 49.567566, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.221497, 39.051185 ], [ 48.856201, 38.816171 ], [ 48.880920, 38.322266 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.353577, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.683411, 39.510398 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.628961 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.218733 ], [ 45.357056, 40.561808 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.049438, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.064857 ], [ 46.593018, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.733337, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.876067 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.336422 ], [ 44.791260, 39.713525 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.950562, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.876067 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.683411, 39.510398 ], [ 48.059692, 39.582407 ], [ 48.353577, 39.289671 ], [ 48.010254, 38.794768 ], [ 48.633728, 38.270532 ], [ 48.880920, 38.322266 ], [ 49.199524, 37.583766 ], [ 50.147095, 37.376705 ], [ 50.841980, 36.873029 ], [ 52.261963, 36.701458 ], [ 53.824768, 36.965255 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.394164 ], [ 55.511169, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.469727, 38.058905 ], [ 56.469727, 31.765537 ], [ 47.809753, 31.765537 ], [ 47.683411, 31.952162 ], [ 47.334595, 32.470378 ], [ 46.106873, 33.017876 ], [ 45.414734, 33.968420 ], [ 45.648193, 34.748383 ], [ 46.150818, 35.095193 ], [ 46.073914, 35.679610 ], [ 45.420227, 35.978006 ], [ 45.000000, 36.754290 ], [ 44.780273, 37.158128 ], [ 44.780273, 39.709300 ], [ 44.791260, 39.713525 ], [ 44.950562, 39.336422 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.713525 ], [ 44.950562, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.876067 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.683411, 39.510398 ], [ 48.059692, 39.582407 ], [ 48.353577, 39.289671 ], [ 48.010254, 38.794768 ], [ 48.633728, 38.270532 ], [ 48.880920, 38.322266 ], [ 49.199524, 37.583766 ], [ 50.147095, 37.376705 ], [ 50.841980, 36.873029 ], [ 52.261963, 36.701458 ], [ 53.824768, 36.965255 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.394164 ], [ 55.511169, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.469727, 38.058905 ], [ 56.469727, 31.765537 ], [ 47.809753, 31.765537 ], [ 47.683411, 31.952162 ], [ 47.334595, 32.470378 ], [ 46.106873, 33.017876 ], [ 45.414734, 33.968420 ], [ 45.648193, 34.748383 ], [ 46.150818, 35.095193 ], [ 46.073914, 35.679610 ], [ 45.420227, 35.978006 ], [ 45.000000, 36.754290 ], [ 44.780273, 37.158128 ], [ 44.780273, 39.709300 ], [ 44.791260, 39.713525 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 38.058905 ], [ 56.250000, 37.965854 ], [ 56.178589, 37.935533 ], [ 55.511169, 37.965854 ], [ 54.799805, 37.394164 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.907367 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.693176, 40.033924 ], [ 52.912903, 40.878218 ], [ 53.857727, 40.632714 ], [ 54.736633, 40.952937 ], [ 54.703674, 40.979898 ], [ 54.500427, 41.145570 ], [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ] ] ], [ [ [ 52.808533, 41.145570 ], [ 52.814026, 41.145570 ], [ 52.814026, 41.137296 ], [ 52.808533, 41.145570 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ], [ 56.250000, 37.965854 ], [ 56.178589, 37.935533 ], [ 55.511169, 37.965854 ], [ 54.799805, 37.394164 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.907367 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.693176, 40.033924 ], [ 52.912903, 40.878218 ], [ 53.857727, 40.632714 ], [ 54.736633, 40.952937 ], [ 54.703674, 40.979898 ], [ 54.500427, 41.145570 ], [ 56.469727, 41.145570 ] ] ], [ [ [ 52.814026, 41.145570 ], [ 52.814026, 41.137296 ], [ 52.808533, 41.145570 ], [ 52.814026, 41.145570 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.864929, 48.922499 ], [ 46.463928, 48.394562 ], [ 47.312622, 47.717154 ], [ 48.056946, 47.744864 ], [ 48.694153, 47.075734 ], [ 48.592529, 46.562637 ], [ 49.100647, 46.399988 ], [ 48.644714, 45.807743 ], [ 47.675171, 45.642848 ], [ 46.680908, 44.610023 ], [ 47.590027, 43.661911 ], [ 47.491150, 42.988576 ], [ 48.584290, 41.810220 ], [ 47.985535, 41.407716 ], [ 47.815247, 41.151774 ], [ 47.373047, 41.219986 ], [ 46.683655, 41.828642 ], [ 46.403503, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.469666, 42.504503 ], [ 45.000000, 42.611728 ], [ 44.780273, 42.660222 ], [ 44.780273, 49.066668 ], [ 46.974792, 49.066668 ], [ 46.864929, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.974792, 49.066668 ], [ 46.864929, 48.922499 ], [ 46.463928, 48.394562 ], [ 47.312622, 47.717154 ], [ 48.056946, 47.744864 ], [ 48.694153, 47.075734 ], [ 48.592529, 46.562637 ], [ 49.100647, 46.399988 ], [ 48.644714, 45.807743 ], [ 47.675171, 45.642848 ], [ 46.680908, 44.610023 ], [ 47.590027, 43.661911 ], [ 47.491150, 42.988576 ], [ 48.584290, 41.810220 ], [ 47.985535, 41.407716 ], [ 47.815247, 41.151774 ], [ 47.373047, 41.219986 ], [ 46.683655, 41.828642 ], [ 46.403503, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.469666, 42.504503 ], [ 45.000000, 42.611728 ], [ 44.780273, 42.660222 ], [ 44.780273, 49.066668 ], [ 46.974792, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 42.611728 ], [ 45.469666, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.403503, 41.861379 ], [ 46.145325, 41.724181 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.216980, 41.411836 ], [ 45.000000, 41.269550 ], [ 44.969788, 41.248903 ], [ 44.780273, 41.230315 ], [ 44.780273, 42.660222 ], [ 45.000000, 42.611728 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 42.660222 ], [ 45.000000, 42.611728 ], [ 45.469666, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.403503, 41.861379 ], [ 46.145325, 41.724181 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.216980, 41.411836 ], [ 45.000000, 41.269550 ], [ 44.969788, 41.248903 ], [ 44.780273, 41.230315 ], [ 44.780273, 42.660222 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.121991 ], [ 56.250000, 45.071581 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.453491, 41.261291 ], [ 54.753113, 42.045213 ], [ 54.077454, 42.326062 ], [ 52.943115, 42.116561 ], [ 52.500916, 41.783601 ], [ 52.445984, 42.028894 ], [ 52.690430, 42.445755 ], [ 52.500916, 42.793385 ], [ 51.341858, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.336609, 44.284537 ], [ 50.303650, 44.610023 ], [ 51.275940, 44.516093 ], [ 51.314392, 45.247821 ], [ 52.165833, 45.410020 ], [ 53.039246, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.854557 ], [ 52.039490, 46.805700 ], [ 51.190796, 47.049540 ], [ 50.031738, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.744864 ], [ 47.312622, 47.717154 ], [ 46.463928, 48.394562 ], [ 46.864929, 48.922499 ], [ 46.974792, 49.066668 ], [ 56.469727, 49.066668 ], [ 56.469727, 45.121991 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 49.066668 ], [ 56.469727, 45.121991 ], [ 56.250000, 45.071581 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.453491, 41.261291 ], [ 54.753113, 42.045213 ], [ 54.077454, 42.326062 ], [ 52.943115, 42.116561 ], [ 52.500916, 41.783601 ], [ 52.445984, 42.028894 ], [ 52.690430, 42.445755 ], [ 52.500916, 42.793385 ], [ 51.341858, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.336609, 44.284537 ], [ 50.303650, 44.610023 ], [ 51.275940, 44.516093 ], [ 51.314392, 45.247821 ], [ 52.165833, 45.410020 ], [ 53.039246, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.854557 ], [ 52.039490, 46.805700 ], [ 51.190796, 47.049540 ], [ 50.031738, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.744864 ], [ 47.312622, 47.717154 ], [ 46.463928, 48.394562 ], [ 46.864929, 48.922499 ], [ 46.974792, 49.066668 ], [ 56.469727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 41.317013 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.071581 ], [ 56.469727, 45.121991 ], [ 56.469727, 41.317013 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.121991 ], [ 56.469727, 41.317013 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.071581 ], [ 56.469727, 45.121991 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.211722 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 44.780273, 40.813809 ], [ 44.780273, 41.230315 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.211722 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.969788, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 44.780273, 40.813809 ], [ 44.780273, 41.230315 ], [ 44.969788, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.683655, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.985535, 41.407716 ], [ 48.584290, 41.810220 ], [ 49.108887, 41.283999 ], [ 49.325867, 40.979898 ], [ 49.443970, 40.813809 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.211722 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.064857 ], [ 46.636963, 41.182788 ], [ 46.145325, 41.724181 ], [ 46.403503, 41.861379 ], [ 46.683655, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.403503, 41.861379 ], [ 46.683655, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.985535, 41.407716 ], [ 48.584290, 41.810220 ], [ 49.108887, 41.283999 ], [ 49.325867, 40.979898 ], [ 49.443970, 40.813809 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.211722 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.064857 ], [ 46.636963, 41.182788 ], [ 46.145325, 41.724181 ], [ 46.403503, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.736633, 40.952937 ], [ 54.703674, 40.979898 ], [ 54.006042, 41.551756 ], [ 53.720398, 42.124710 ], [ 52.915649, 41.869561 ], [ 52.814026, 41.137296 ], [ 52.500916, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.077454, 42.326062 ], [ 54.753113, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.317013 ], [ 56.469727, 40.813809 ], [ 54.352112, 40.813809 ], [ 54.736633, 40.952937 ] ] ], [ [ [ 53.160095, 40.813809 ], [ 52.893677, 40.813809 ], [ 52.912903, 40.878218 ], [ 53.160095, 40.813809 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.912903, 40.878218 ], [ 53.160095, 40.813809 ], [ 52.893677, 40.813809 ], [ 52.912903, 40.878218 ] ] ], [ [ [ 54.753113, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.317013 ], [ 56.469727, 40.813809 ], [ 54.352112, 40.813809 ], [ 54.736633, 40.952937 ], [ 54.703674, 40.979898 ], [ 54.006042, 41.551756 ], [ 53.720398, 42.124710 ], [ 52.915649, 41.869561 ], [ 52.814026, 41.137296 ], [ 52.500916, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.077454, 42.326062 ], [ 54.753113, 42.045213 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 50.923813 ], [ 56.250000, 50.837167 ], [ 55.714417, 50.623331 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.765076, 51.692990 ], [ 48.699646, 50.605903 ], [ 48.576050, 49.875168 ], [ 47.548828, 50.455755 ], [ 46.749573, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.864929, 48.922499 ], [ 46.755066, 48.777913 ], [ 44.780273, 48.777913 ], [ 44.780273, 55.899956 ], [ 56.469727, 55.899956 ], [ 56.469727, 50.923813 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 55.899956 ], [ 56.469727, 50.923813 ], [ 56.250000, 50.837167 ], [ 55.714417, 50.623331 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.765076, 51.692990 ], [ 48.699646, 50.605903 ], [ 48.576050, 49.875168 ], [ 47.548828, 50.455755 ], [ 46.749573, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.864929, 48.922499 ], [ 46.755066, 48.777913 ], [ 44.780273, 48.777913 ], [ 44.780273, 55.899956 ], [ 56.469727, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.530640, 51.027576 ], [ 55.714417, 50.623331 ], [ 56.250000, 50.837167 ], [ 56.469727, 50.923813 ], [ 56.469727, 48.777913 ], [ 46.755066, 48.777913 ], [ 46.864929, 48.922499 ], [ 47.043457, 49.152970 ], [ 46.749573, 49.357334 ], [ 47.548828, 50.455755 ], [ 48.576050, 49.875168 ], [ 48.699646, 50.605903 ], [ 50.765076, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.714417, 50.623331 ], [ 56.250000, 50.837167 ], [ 56.469727, 50.923813 ], [ 56.469727, 48.777913 ], [ 46.755066, 48.777913 ], [ 46.864929, 48.922499 ], [ 47.043457, 49.152970 ], [ 46.749573, 49.357334 ], [ 47.548828, 50.455755 ], [ 48.576050, 49.875168 ], [ 48.699646, 50.605903 ], [ 50.765076, 51.692990 ], [ 52.327881, 51.720223 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 55.652798 ], [ 44.780273, 55.652798 ], [ 44.780273, 61.710706 ], [ 56.469727, 61.710706 ], [ 56.469727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 61.710706 ], [ 56.469727, 55.652798 ], [ 44.780273, 55.652798 ], [ 44.780273, 61.710706 ], [ 56.469727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 61.501734 ], [ 44.780273, 61.501734 ], [ 44.780273, 66.600676 ], [ 56.469727, 66.600676 ], [ 56.469727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 66.600676 ], [ 56.469727, 61.501734 ], [ 44.780273, 61.501734 ], [ 44.780273, 66.600676 ], [ 56.469727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.470215, 68.808978 ], [ 53.484192, 68.202172 ], [ 54.725647, 68.097907 ], [ 55.442505, 68.439589 ], [ 56.250000, 68.451697 ], [ 56.469727, 68.454724 ], [ 56.469727, 66.425537 ], [ 44.780273, 66.425537 ], [ 44.780273, 68.420404 ], [ 45.000000, 68.395135 ], [ 46.249695, 68.250057 ], [ 46.820984, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.010646 ], [ 46.348572, 66.668211 ], [ 47.892151, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.226746, 67.999341 ], [ 53.714905, 68.857574 ], [ 54.470215, 68.808978 ] ] ], [ [ [ 56.469727, 70.652691 ], [ 55.640259, 70.685421 ], [ 56.469727, 70.685421 ], [ 56.469727, 70.652691 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 53.714905, 68.857574 ], [ 54.470215, 68.808978 ], [ 53.484192, 68.202172 ], [ 54.725647, 68.097907 ], [ 55.442505, 68.439589 ], [ 56.250000, 68.451697 ], [ 56.469727, 68.454724 ], [ 56.469727, 66.425537 ], [ 44.780273, 66.425537 ], [ 44.780273, 68.420404 ], [ 45.000000, 68.395135 ], [ 46.249695, 68.250057 ], [ 46.820984, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.010646 ], [ 46.348572, 66.668211 ], [ 47.892151, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.226746, 67.999341 ], [ 53.714905, 68.857574 ] ] ], [ [ [ 56.469727, 70.685421 ], [ 56.469727, 70.652691 ], [ 55.640259, 70.685421 ], [ 56.469727, 70.685421 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 73.022592 ], [ 56.250000, 72.888954 ], [ 55.417786, 72.371600 ], [ 55.621033, 71.541439 ], [ 56.250000, 71.276122 ], [ 56.469727, 71.182439 ], [ 56.469727, 70.652691 ], [ 56.250000, 70.661788 ], [ 53.676453, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.600037, 71.475234 ], [ 51.454468, 72.015489 ], [ 52.476196, 72.229647 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.506165, 73.750437 ], [ 54.225769, 74.019543 ], [ 54.387817, 74.079925 ], [ 56.469727, 74.079925 ], [ 56.469727, 73.022592 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 74.079925 ], [ 56.469727, 73.022592 ], [ 56.250000, 72.888954 ], [ 55.417786, 72.371600 ], [ 55.621033, 71.541439 ], [ 56.250000, 71.276122 ], [ 56.469727, 71.182439 ], [ 56.469727, 70.652691 ], [ 56.250000, 70.661788 ], [ 53.676453, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.600037, 71.475234 ], [ 51.454468, 72.015489 ], [ 52.476196, 72.229647 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.506165, 73.750437 ], [ 54.225769, 74.019543 ], [ 54.387817, 74.079925 ], [ 56.469727, 74.079925 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 73.958939 ], [ 54.060974, 73.958939 ], [ 54.225769, 74.019543 ], [ 55.901184, 74.628014 ], [ 55.629272, 75.081497 ], [ 56.250000, 75.229967 ], [ 56.469727, 75.282392 ], [ 56.469727, 73.958939 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 75.282392 ], [ 56.469727, 73.958939 ], [ 54.060974, 73.958939 ], [ 54.225769, 74.019543 ], [ 55.901184, 74.628014 ], [ 55.629272, 75.081497 ], [ 56.250000, 75.229967 ], [ 56.469727, 75.282392 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.520386, 80.700003 ], [ 51.135864, 80.547420 ], [ 49.792786, 80.415707 ], [ 48.891907, 80.339958 ], [ 48.754578, 80.175902 ], [ 47.584534, 80.010518 ], [ 46.502380, 80.247344 ], [ 47.070923, 80.559591 ], [ 45.000000, 80.588380 ], [ 44.846191, 80.590176 ], [ 45.000000, 80.604983 ], [ 46.799011, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.095154, 80.753998 ], [ 50.037231, 80.918894 ], [ 51.520386, 80.700003 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700003 ], [ 51.135864, 80.547420 ], [ 49.792786, 80.415707 ], [ 48.891907, 80.339958 ], [ 48.754578, 80.175902 ], [ 47.584534, 80.010518 ], [ 46.502380, 80.247344 ], [ 47.070923, 80.559591 ], [ 45.000000, 80.588380 ], [ 44.846191, 80.590176 ], [ 45.000000, 80.604983 ], [ 46.799011, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.095154, 80.753998 ], [ 50.037231, 80.918894 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -85.070048 ], [ 56.030273, -85.070048 ], [ 56.030273, -83.956169 ], [ 67.719727, -83.956169 ], [ 67.719727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -83.956169 ], [ 67.719727, -85.070048 ], [ 56.030273, -85.070048 ], [ 56.030273, -83.956169 ], [ 67.719727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -84.002262 ], [ 56.030273, -84.002262 ], [ 56.030273, -82.648222 ], [ 67.719727, -82.648222 ], [ 67.719727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -82.648222 ], [ 67.719727, -84.002262 ], [ 56.030273, -84.002262 ], [ 56.030273, -82.648222 ], [ 67.719727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -82.704241 ], [ 56.030273, -82.704241 ], [ 56.030273, -81.059130 ], [ 67.719727, -81.059130 ], [ 67.719727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -81.059130 ], [ 67.719727, -82.704241 ], [ 56.030273, -82.704241 ], [ 56.030273, -81.059130 ], [ 67.719727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -81.127169 ], [ 56.030273, -81.127169 ], [ 56.030273, -79.129976 ], [ 67.719727, -79.129976 ], [ 67.719727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -79.129976 ], [ 67.719727, -81.127169 ], [ 56.030273, -81.127169 ], [ 56.030273, -79.129976 ], [ 67.719727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -79.212538 ], [ 56.030273, -79.212538 ], [ 56.030273, -76.790701 ], [ 67.719727, -76.790701 ], [ 67.719727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -76.790701 ], [ 67.719727, -79.212538 ], [ 56.030273, -79.212538 ], [ 56.030273, -76.790701 ], [ 67.719727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -76.890745 ], [ 56.030273, -76.890745 ], [ 56.030273, -73.958939 ], [ 67.719727, -73.958939 ], [ 67.719727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -73.958939 ], [ 67.719727, -76.890745 ], [ 56.030273, -76.890745 ], [ 56.030273, -73.958939 ], [ 67.719727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -74.079925 ], [ 56.030273, -74.079925 ], [ 56.030273, -70.539543 ], [ 67.719727, -70.539543 ], [ 67.719727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -70.539543 ], [ 67.719727, -74.079925 ], [ 56.030273, -74.079925 ], [ 56.030273, -70.539543 ], [ 67.719727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.214050, -66.513260 ], [ 57.255249, -66.680174 ], [ 58.136902, -67.012792 ], [ 58.743896, -67.286894 ], [ 59.938660, -67.404322 ], [ 60.603333, -67.679214 ], [ 61.427307, -67.952994 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.816505 ], [ 64.050293, -67.404322 ], [ 64.992371, -67.620726 ], [ 65.970154, -67.737557 ], [ 66.909485, -67.855879 ], [ 67.500000, -67.902421 ], [ 67.719727, -67.918946 ], [ 67.719727, -70.685421 ], [ 56.030273, -70.685421 ], [ 56.030273, -66.425537 ], [ 57.194824, -66.425537 ], [ 57.214050, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.194824, -66.425537 ], [ 57.214050, -66.513260 ], [ 57.255249, -66.680174 ], [ 58.136902, -67.012792 ], [ 58.743896, -67.286894 ], [ 59.938660, -67.404322 ], [ 60.603333, -67.679214 ], [ 61.427307, -67.952994 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.816505 ], [ 64.050293, -67.404322 ], [ 64.992371, -67.620726 ], [ 65.970154, -67.737557 ], [ 66.909485, -67.855879 ], [ 67.500000, -67.902421 ], [ 67.719727, -67.918946 ], [ 67.719727, -70.685421 ], [ 56.030273, -70.685421 ], [ 56.030273, -66.425537 ], [ 57.194824, -66.425537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, -65.963258 ], [ 56.354370, -65.974443 ], [ 57.156372, -66.248057 ], [ 57.216797, -66.513260 ], [ 57.236023, -66.600676 ], [ 56.030273, -66.600676 ], [ 56.030273, -65.939754 ], [ 56.250000, -65.963258 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.030273, -65.939754 ], [ 56.250000, -65.963258 ], [ 56.354370, -65.974443 ], [ 57.156372, -66.248057 ], [ 57.216797, -66.513260 ], [ 57.236023, -66.600676 ], [ 56.030273, -66.600676 ], [ 56.030273, -65.939754 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.578857, 21.943046 ], [ 59.441528, 21.716128 ], [ 59.282227, 21.435173 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.429587 ], [ 58.032532, 20.483628 ], [ 57.823792, 20.244160 ], [ 57.664490, 19.738269 ], [ 57.788086, 19.069906 ], [ 57.691956, 18.945258 ], [ 57.233276, 18.950454 ], [ 56.607056, 18.575965 ], [ 56.510925, 18.088423 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.879431 ], [ 56.030273, 17.882045 ], [ 56.030273, 22.146708 ], [ 59.702454, 22.146708 ], [ 59.578857, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.702454, 22.146708 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.716128 ], [ 59.282227, 21.435173 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.429587 ], [ 58.032532, 20.483628 ], [ 57.823792, 20.244160 ], [ 57.664490, 19.738269 ], [ 57.788086, 19.069906 ], [ 57.691956, 18.945258 ], [ 57.233276, 18.950454 ], [ 56.607056, 18.575965 ], [ 56.510925, 18.088423 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.879431 ], [ 56.030273, 17.882045 ], [ 56.030273, 22.146708 ], [ 59.702454, 22.146708 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.888977, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.381779 ], [ 61.778870, 30.737114 ], [ 60.872498, 29.831114 ], [ 61.366882, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.379084 ], [ 63.231812, 27.217999 ], [ 63.314209, 26.757873 ], [ 61.872253, 26.241693 ], [ 61.495972, 25.080624 ], [ 59.614563, 25.381254 ], [ 58.524170, 25.611810 ], [ 57.395325, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.144701 ], [ 56.250000, 27.090918 ], [ 56.030273, 27.039557 ], [ 56.030273, 32.138409 ], [ 60.867004, 32.138409 ], [ 60.888977, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.867004, 32.138409 ], [ 60.888977, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.381779 ], [ 61.778870, 30.737114 ], [ 60.872498, 29.831114 ], [ 61.366882, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.379084 ], [ 63.231812, 27.217999 ], [ 63.314209, 26.757873 ], [ 61.872253, 26.241693 ], [ 61.495972, 25.080624 ], [ 59.614563, 25.381254 ], [ 58.524170, 25.611810 ], [ 57.395325, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.144701 ], [ 56.250000, 27.090918 ], [ 56.030273, 27.039557 ], [ 56.030273, 32.138409 ], [ 60.867004, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.926295 ], [ 56.250000, 24.926295 ], [ 56.030273, 24.923804 ], [ 56.030273, 26.019766 ], [ 56.068726, 26.056783 ], [ 56.250000, 25.735581 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.926295 ], [ 56.250000, 24.926295 ], [ 56.030273, 24.923804 ], [ 56.030273, 26.019766 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.843262, 24.241956 ], [ 57.400818, 23.880815 ], [ 58.136902, 23.750154 ], [ 58.727417, 23.566505 ], [ 59.177856, 22.993795 ], [ 59.449768, 22.662175 ], [ 59.806824, 22.535391 ], [ 59.804077, 22.311967 ], [ 59.578857, 21.943046 ], [ 59.455261, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.923804 ], [ 56.250000, 24.926295 ], [ 56.395569, 24.926295 ], [ 56.843262, 24.241956 ] ] ], [ [ [ 56.483459, 26.310651 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.068726, 26.056783 ], [ 56.250000, 26.268788 ], [ 56.359863, 26.396790 ], [ 56.483459, 26.310651 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.400818, 23.880815 ], [ 58.136902, 23.750154 ], [ 58.727417, 23.566505 ], [ 59.177856, 22.993795 ], [ 59.449768, 22.662175 ], [ 59.806824, 22.535391 ], [ 59.804077, 22.311967 ], [ 59.578857, 21.943046 ], [ 59.455261, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.923804 ], [ 56.250000, 24.926295 ], [ 56.395569, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.483459, 26.310651 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.068726, 26.056783 ], [ 56.250000, 26.268788 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.402880 ], [ 67.681274, 31.304368 ], [ 67.500000, 31.306715 ], [ 66.936951, 31.306715 ], [ 66.379395, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.349670, 29.561513 ], [ 64.146423, 29.341481 ], [ 63.547668, 29.470688 ], [ 62.547913, 29.319931 ], [ 60.872498, 29.831114 ], [ 61.778870, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.548112 ], [ 60.888977, 31.952162 ], [ 60.867004, 32.138409 ], [ 67.719727, 32.138409 ], [ 67.719727, 31.402880 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.402880 ], [ 67.681274, 31.304368 ], [ 67.500000, 31.306715 ], [ 66.936951, 31.306715 ], [ 66.379395, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.349670, 29.561513 ], [ 64.146423, 29.341481 ], [ 63.547668, 29.470688 ], [ 62.547913, 29.319931 ], [ 60.872498, 29.831114 ], [ 61.778870, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.548112 ], [ 60.888977, 31.952162 ], [ 60.867004, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 23.853186 ], [ 67.500000, 23.928524 ], [ 67.442322, 23.946096 ], [ 67.142944, 24.664490 ], [ 66.371155, 25.425912 ], [ 64.528198, 25.237243 ], [ 62.904968, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.872253, 26.241693 ], [ 63.314209, 26.757873 ], [ 63.231812, 27.217999 ], [ 62.753906, 27.379084 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.366882, 29.305561 ], [ 60.872498, 29.831114 ], [ 62.547913, 29.319931 ], [ 63.547668, 29.470688 ], [ 64.146423, 29.341481 ], [ 64.349670, 29.561513 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.739475 ], [ 66.936951, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.681274, 31.304368 ], [ 67.719727, 31.402880 ], [ 67.719727, 23.853186 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.402880 ], [ 67.719727, 23.853186 ], [ 67.500000, 23.928524 ], [ 67.442322, 23.946096 ], [ 67.142944, 24.664490 ], [ 66.371155, 25.425912 ], [ 64.528198, 25.237243 ], [ 62.904968, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.872253, 26.241693 ], [ 63.314209, 26.757873 ], [ 63.231812, 27.217999 ], [ 62.753906, 27.379084 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.366882, 29.305561 ], [ 60.872498, 29.831114 ], [ 62.547913, 29.319931 ], [ 63.547668, 29.470688 ], [ 64.146423, 29.341481 ], [ 64.349670, 29.561513 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.739475 ], [ 66.936951, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.681274, 31.304368 ], [ 67.719727, 31.402880 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 39.582407 ], [ 67.700500, 39.582407 ], [ 67.500000, 39.245017 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.051185 ], [ 67.719727, 37.177826 ], [ 67.500000, 37.239075 ], [ 67.074280, 37.357059 ], [ 66.516724, 37.363609 ], [ 66.544189, 37.976680 ], [ 65.214844, 38.404101 ], [ 64.168396, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.372131, 40.054950 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.085562 ], [ 61.767883, 41.145570 ], [ 67.719727, 41.145570 ], [ 67.719727, 39.582407 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.719727, 39.582407 ], [ 67.700500, 39.582407 ], [ 67.500000, 39.245017 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.051185 ], [ 67.719727, 37.177826 ], [ 67.500000, 37.239075 ], [ 67.074280, 37.357059 ], [ 66.516724, 37.363609 ], [ 66.544189, 37.976680 ], [ 65.214844, 38.404101 ], [ 64.168396, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.372131, 40.054950 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.085562 ], [ 61.767883, 41.145570 ], [ 67.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.329407, 38.030786 ], [ 58.433533, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.529502 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.801086, 34.404644 ], [ 60.526428, 33.678640 ], [ 60.963135, 33.529948 ], [ 60.534668, 32.983324 ], [ 60.861511, 32.184911 ], [ 60.888977, 31.952162 ], [ 60.913696, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.944198 ], [ 56.178589, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.618042, 38.121593 ], [ 57.329407, 38.030786 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.030786 ], [ 58.433533, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.529502 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.801086, 34.404644 ], [ 60.526428, 33.678640 ], [ 60.963135, 33.529948 ], [ 60.534668, 32.983324 ], [ 60.861511, 32.184911 ], [ 60.888977, 31.952162 ], [ 60.913696, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.944198 ], [ 56.178589, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.618042, 38.121593 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.880493, 41.085562 ], [ 61.929932, 40.979898 ], [ 62.372131, 40.054950 ], [ 63.517456, 39.364032 ], [ 64.168396, 38.893171 ], [ 65.214844, 38.404101 ], [ 66.544189, 37.976680 ], [ 66.516724, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.306829 ], [ 64.745178, 37.112146 ], [ 64.544678, 36.312912 ], [ 63.981628, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.272532 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.529502 ], [ 59.232788, 37.413800 ], [ 58.433533, 37.522797 ], [ 57.329407, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.030273, 37.944198 ], [ 56.030273, 41.145570 ], [ 61.767883, 41.145570 ], [ 61.880493, 41.085562 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.767883, 41.145570 ], [ 61.880493, 41.085562 ], [ 61.929932, 40.979898 ], [ 62.372131, 40.054950 ], [ 63.517456, 39.364032 ], [ 64.168396, 38.893171 ], [ 65.214844, 38.404101 ], [ 66.544189, 37.976680 ], [ 66.516724, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.306829 ], [ 64.745178, 37.112146 ], [ 64.544678, 36.312912 ], [ 63.981628, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.272532 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.529502 ], [ 59.232788, 37.413800 ], [ 58.433533, 37.522797 ], [ 57.329407, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.030273, 37.944198 ], [ 56.030273, 41.145570 ], [ 61.767883, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 39.051185 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.245017 ], [ 67.700500, 39.582407 ], [ 67.719727, 39.582407 ], [ 67.719727, 39.051185 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 39.582407 ], [ 67.719727, 39.051185 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.245017 ], [ 67.700500, 39.582407 ], [ 67.719727, 39.582407 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.217346, 37.394164 ], [ 66.516724, 37.363609 ], [ 67.074280, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.719727, 37.177826 ], [ 67.719727, 31.765537 ], [ 60.913696, 31.765537 ], [ 60.888977, 31.952162 ], [ 60.861511, 32.184911 ], [ 60.534668, 32.983324 ], [ 60.963135, 33.529948 ], [ 60.526428, 33.678640 ], [ 60.801086, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.272532 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.009117 ], [ 64.544678, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.306829 ], [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.516724, 37.363609 ], [ 67.074280, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.719727, 37.177826 ], [ 67.719727, 31.765537 ], [ 60.913696, 31.765537 ], [ 60.888977, 31.952162 ], [ 60.861511, 32.184911 ], [ 60.534668, 32.983324 ], [ 60.963135, 33.529948 ], [ 60.526428, 33.678640 ], [ 60.801086, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.272532 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.009117 ], [ 64.544678, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.306829 ], [ 65.744934, 37.662081 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.500000, 41.151774 ], [ 66.711731, 41.170384 ], [ 66.508484, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.096497, 42.998621 ], [ 64.898987, 43.729429 ], [ 63.185120, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.071581 ], [ 56.030273, 45.021127 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ], [ 67.719727, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 49.066668 ], [ 67.719727, 41.145570 ], [ 67.500000, 41.151774 ], [ 66.711731, 41.170384 ], [ 66.508484, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.096497, 42.998621 ], [ 64.898987, 43.729429 ], [ 63.185120, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.071581 ], [ 56.030273, 45.021127 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.651975 ], [ 64.898987, 43.729429 ], [ 66.096497, 42.998621 ], [ 66.022339, 41.996243 ], [ 66.508484, 41.988077 ], [ 66.711731, 41.170384 ], [ 67.500000, 41.151774 ], [ 67.719727, 41.145570 ], [ 67.719727, 40.813809 ], [ 62.009583, 40.813809 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.085562 ], [ 61.545410, 41.267485 ], [ 60.463257, 41.222052 ], [ 60.081482, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.753063 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.310824 ], [ 56.030273, 45.021127 ], [ 56.250000, 45.071581 ], [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.651975 ], [ 64.898987, 43.729429 ], [ 66.096497, 42.998621 ], [ 66.022339, 41.996243 ], [ 66.508484, 41.988077 ], [ 66.711731, 41.170384 ], [ 67.500000, 41.151774 ], [ 67.719727, 41.145570 ], [ 67.719727, 40.813809 ], [ 62.009583, 40.813809 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.085562 ], [ 61.545410, 41.267485 ], [ 60.463257, 41.222052 ], [ 60.081482, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.753063 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.310824 ], [ 56.030273, 45.021127 ], [ 56.250000, 45.071581 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.974365, 42.224450 ], [ 60.081482, 41.426253 ], [ 60.463257, 41.222052 ], [ 61.545410, 41.267485 ], [ 61.880493, 41.085562 ], [ 61.929932, 40.979898 ], [ 62.009583, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.310824 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.753063 ], [ 59.974365, 42.224450 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.753063 ], [ 59.974365, 42.224450 ], [ 60.081482, 41.426253 ], [ 60.463257, 41.222052 ], [ 61.545410, 41.267485 ], [ 61.880493, 41.085562 ], [ 61.929932, 40.979898 ], [ 62.009583, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.310824 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.753063 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 54.906620 ], [ 67.500000, 54.875026 ], [ 65.665283, 54.602301 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.976868, 53.665798 ], [ 61.699219, 52.980070 ], [ 60.737915, 52.721322 ], [ 60.924683, 52.447640 ], [ 59.966125, 51.961192 ], [ 61.586609, 51.273944 ], [ 61.336670, 50.800727 ], [ 59.930420, 50.842370 ], [ 59.642029, 50.546599 ], [ 58.362122, 51.063839 ], [ 56.777344, 51.044848 ], [ 56.030273, 50.750359 ], [ 56.030273, 55.899956 ], [ 67.719727, 55.899956 ], [ 67.719727, 54.906620 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 55.899956 ], [ 67.719727, 54.906620 ], [ 67.500000, 54.875026 ], [ 65.665283, 54.602301 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.976868, 53.665798 ], [ 61.699219, 52.980070 ], [ 60.737915, 52.721322 ], [ 60.924683, 52.447640 ], [ 59.966125, 51.961192 ], [ 61.586609, 51.273944 ], [ 61.336670, 50.800727 ], [ 59.930420, 50.842370 ], [ 59.642029, 50.546599 ], [ 58.362122, 51.063839 ], [ 56.777344, 51.044848 ], [ 56.030273, 50.750359 ], [ 56.030273, 55.899956 ], [ 67.719727, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 48.777913 ], [ 56.030273, 48.777913 ], [ 56.030273, 50.750359 ], [ 56.777344, 51.044848 ], [ 58.362122, 51.063839 ], [ 59.642029, 50.546599 ], [ 59.930420, 50.842370 ], [ 61.336670, 50.800727 ], [ 61.586609, 51.273944 ], [ 59.966125, 51.961192 ], [ 60.924683, 52.447640 ], [ 60.737915, 52.721322 ], [ 61.699219, 52.980070 ], [ 60.976868, 53.665798 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.602301 ], [ 67.500000, 54.875026 ], [ 67.719727, 54.906620 ], [ 67.719727, 48.777913 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 54.906620 ], [ 67.719727, 48.777913 ], [ 56.030273, 48.777913 ], [ 56.030273, 50.750359 ], [ 56.777344, 51.044848 ], [ 58.362122, 51.063839 ], [ 59.642029, 50.546599 ], [ 59.930420, 50.842370 ], [ 61.336670, 50.800727 ], [ 61.586609, 51.273944 ], [ 59.966125, 51.961192 ], [ 60.924683, 52.447640 ], [ 60.737915, 52.721322 ], [ 61.699219, 52.980070 ], [ 60.976868, 53.665798 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.602301 ], [ 67.500000, 54.875026 ], [ 67.719727, 54.906620 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 55.652798 ], [ 56.030273, 55.652798 ], [ 56.030273, 61.710706 ], [ 67.719727, 61.710706 ], [ 67.719727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 61.710706 ], [ 67.719727, 55.652798 ], [ 56.030273, 55.652798 ], [ 56.030273, 61.710706 ], [ 67.719727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 61.501734 ], [ 56.030273, 61.501734 ], [ 56.030273, 66.600676 ], [ 67.719727, 66.600676 ], [ 67.719727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 66.600676 ], [ 67.719727, 61.501734 ], [ 56.030273, 61.501734 ], [ 56.030273, 66.600676 ], [ 67.719727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 66.928711, 69.454662 ], [ 67.258301, 69.929358 ], [ 66.788635, 70.612614 ], [ 66.739197, 70.685421 ], [ 67.719727, 70.685421 ], [ 67.719727, 69.391917 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.454662 ] ] ], [ [ [ 56.944885, 70.633573 ], [ 56.030273, 70.670881 ], [ 56.030273, 70.685421 ], [ 57.293701, 70.685421 ], [ 56.944885, 70.633573 ] ] ], [ [ [ 67.719727, 66.425537 ], [ 56.030273, 66.425537 ], [ 56.030273, 68.448671 ], [ 56.250000, 68.451697 ], [ 57.315674, 68.466824 ], [ 58.801575, 68.881337 ], [ 59.941406, 68.278537 ], [ 61.075745, 68.941620 ], [ 60.029297, 69.520108 ], [ 60.548401, 69.850032 ], [ 63.503723, 69.547958 ], [ 64.888000, 69.235711 ], [ 67.500000, 68.418383 ], [ 67.719727, 68.348568 ], [ 67.719727, 66.425537 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.548401, 69.850032 ], [ 63.503723, 69.547958 ], [ 64.888000, 69.235711 ], [ 67.500000, 68.418383 ], [ 67.719727, 68.348568 ], [ 67.719727, 66.425537 ], [ 56.030273, 66.425537 ], [ 56.030273, 68.448671 ], [ 56.250000, 68.451697 ], [ 57.315674, 68.466824 ], [ 58.801575, 68.881337 ], [ 59.941406, 68.278537 ], [ 61.075745, 68.941620 ], [ 60.029297, 69.520108 ], [ 60.548401, 69.850032 ] ] ], [ [ [ 67.719727, 70.685421 ], [ 67.719727, 69.391917 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.454662 ], [ 67.258301, 69.929358 ], [ 66.788635, 70.612614 ], [ 66.739197, 70.685421 ], [ 67.719727, 70.685421 ] ] ], [ [ [ 57.293701, 70.685421 ], [ 56.944885, 70.633573 ], [ 56.030273, 70.670881 ], [ 56.030273, 70.685421 ], [ 57.293701, 70.685421 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.719727, 70.539543 ], [ 66.840820, 70.539543 ], [ 66.788635, 70.612614 ], [ 66.722717, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.431552 ], [ 67.719727, 71.539700 ], [ 67.719727, 70.539543 ] ] ], [ [ [ 58.114929, 74.079925 ], [ 58.021545, 74.019543 ], [ 56.986084, 73.333373 ], [ 56.250000, 72.888954 ], [ 56.030273, 72.753482 ], [ 56.030273, 74.079925 ], [ 58.114929, 74.079925 ] ] ], [ [ [ 56.250000, 71.276122 ], [ 57.535400, 70.720820 ], [ 56.944885, 70.633573 ], [ 56.250000, 70.661788 ], [ 56.030273, 70.670881 ], [ 56.030273, 71.369355 ], [ 56.250000, 71.276122 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.719727, 71.539700 ], [ 67.719727, 70.539543 ], [ 66.840820, 70.539543 ], [ 66.788635, 70.612614 ], [ 66.722717, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.431552 ], [ 67.719727, 71.539700 ] ] ], [ [ [ 56.030273, 72.753482 ], [ 56.030273, 74.079925 ], [ 58.114929, 74.079925 ], [ 58.021545, 74.019543 ], [ 56.986084, 73.333373 ], [ 56.250000, 72.888954 ], [ 56.030273, 72.753482 ] ] ], [ [ [ 56.030273, 71.369355 ], [ 56.250000, 71.276122 ], [ 57.535400, 70.720820 ], [ 56.944885, 70.633573 ], [ 56.250000, 70.661788 ], [ 56.030273, 70.670881 ], [ 56.030273, 71.369355 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 76.171216 ], [ 67.500000, 76.140985 ], [ 64.635315, 75.737979 ], [ 61.581116, 75.261444 ], [ 58.474731, 74.309582 ], [ 58.021545, 74.019543 ], [ 57.928162, 73.958939 ], [ 56.030273, 73.958939 ], [ 56.030273, 75.178062 ], [ 56.250000, 75.229967 ], [ 57.867737, 75.609532 ], [ 61.169128, 76.252386 ], [ 64.497986, 76.439112 ], [ 66.209106, 76.810143 ], [ 66.665039, 76.840816 ], [ 67.414856, 76.890745 ], [ 67.719727, 76.890745 ], [ 67.719727, 76.171216 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 76.890745 ], [ 67.719727, 76.171216 ], [ 67.500000, 76.140985 ], [ 64.635315, 75.737979 ], [ 61.581116, 75.261444 ], [ 58.474731, 74.309582 ], [ 58.021545, 74.019543 ], [ 57.928162, 73.958939 ], [ 56.030273, 73.958939 ], [ 56.030273, 75.178062 ], [ 56.250000, 75.229967 ], [ 57.867737, 75.609532 ], [ 61.169128, 76.252386 ], [ 64.497986, 76.439112 ], [ 66.209106, 76.810143 ], [ 66.665039, 76.840816 ], [ 67.414856, 76.890745 ], [ 67.719727, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 76.790701 ], [ 66.115723, 76.790701 ], [ 66.209106, 76.810143 ], [ 66.665039, 76.840816 ], [ 67.500000, 76.896974 ], [ 67.719727, 76.911287 ], [ 67.719727, 76.790701 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 76.911287 ], [ 67.719727, 76.790701 ], [ 66.115723, 76.790701 ], [ 66.209106, 76.810143 ], [ 66.665039, 76.840816 ], [ 67.500000, 76.896974 ], [ 67.719727, 76.911287 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -85.070048 ], [ 67.280273, -85.070048 ], [ 67.280273, -83.956169 ], [ 78.969727, -83.956169 ], [ 78.969727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -83.956169 ], [ 78.969727, -85.070048 ], [ 67.280273, -85.070048 ], [ 67.280273, -83.956169 ], [ 78.969727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -84.002262 ], [ 67.280273, -84.002262 ], [ 67.280273, -82.648222 ], [ 78.969727, -82.648222 ], [ 78.969727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -82.648222 ], [ 78.969727, -84.002262 ], [ 67.280273, -84.002262 ], [ 67.280273, -82.648222 ], [ 78.969727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -82.704241 ], [ 67.280273, -82.704241 ], [ 67.280273, -81.059130 ], [ 78.969727, -81.059130 ], [ 78.969727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -81.059130 ], [ 78.969727, -82.704241 ], [ 67.280273, -82.704241 ], [ 67.280273, -81.059130 ], [ 78.969727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -81.127169 ], [ 67.280273, -81.127169 ], [ 67.280273, -79.129976 ], [ 78.969727, -79.129976 ], [ 78.969727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -79.129976 ], [ 78.969727, -81.127169 ], [ 67.280273, -81.127169 ], [ 67.280273, -79.129976 ], [ 78.969727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -79.212538 ], [ 67.280273, -79.212538 ], [ 67.280273, -76.790701 ], [ 78.969727, -76.790701 ], [ 78.969727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -76.790701 ], [ 78.969727, -79.212538 ], [ 67.280273, -79.212538 ], [ 67.280273, -76.790701 ], [ 78.969727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -76.890745 ], [ 67.280273, -76.890745 ], [ 67.280273, -73.958939 ], [ 78.969727, -73.958939 ], [ 78.969727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -73.958939 ], [ 78.969727, -76.890745 ], [ 67.280273, -76.890745 ], [ 67.280273, -73.958939 ], [ 78.969727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.917480, -70.612614 ], [ 67.947693, -70.696320 ], [ 69.065552, -70.677244 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.947693, -71.852807 ], [ 68.711243, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.023865, -72.088277 ], [ 71.573181, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.452087, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.155212, -70.612614 ], [ 73.207397, -70.539543 ], [ 78.969727, -70.539543 ], [ 78.969727, -74.079925 ], [ 67.280273, -74.079925 ], [ 67.280273, -70.539543 ], [ 67.890015, -70.539543 ], [ 67.917480, -70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -70.539543 ], [ 78.969727, -74.079925 ], [ 67.280273, -74.079925 ], [ 67.280273, -70.539543 ], [ 67.890015, -70.539543 ], [ 67.917480, -70.612614 ], [ 67.947693, -70.696320 ], [ 69.065552, -70.677244 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.947693, -71.852807 ], [ 68.711243, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.023865, -72.088277 ], [ 71.573181, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.452087, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.155212, -70.612614 ], [ 73.207397, -70.539543 ], [ 78.969727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.065552, -70.677244 ], [ 69.060059, -70.685421 ], [ 68.584900, -70.685421 ], [ 69.065552, -70.677244 ] ] ], [ [ [ 73.155212, -70.612614 ], [ 73.333740, -70.364014 ], [ 73.863831, -69.873672 ], [ 74.490051, -69.776104 ], [ 75.627136, -69.736188 ], [ 76.624146, -69.618859 ], [ 77.643127, -69.462372 ], [ 78.132019, -69.070526 ], [ 78.425903, -68.697503 ], [ 78.750000, -68.522202 ], [ 78.969727, -68.402213 ], [ 78.969727, -70.685421 ], [ 73.103027, -70.685421 ], [ 73.155212, -70.612614 ] ] ], [ [ [ 67.500000, -67.901387 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.710999, -68.972193 ], [ 69.672546, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.595886, -69.932185 ], [ 67.810364, -70.304859 ], [ 67.917480, -70.612614 ], [ 67.942200, -70.685421 ], [ 67.280273, -70.685421 ], [ 67.280273, -67.883815 ], [ 67.500000, -67.901387 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, -67.883815 ], [ 67.500000, -67.901387 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.710999, -68.972193 ], [ 69.672546, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.595886, -69.932185 ], [ 67.810364, -70.304859 ], [ 67.917480, -70.612614 ], [ 67.942200, -70.685421 ], [ 67.280273, -70.685421 ], [ 67.280273, -67.883815 ] ] ], [ [ [ 69.060059, -70.685421 ], [ 68.584900, -70.685421 ], [ 69.065552, -70.677244 ], [ 69.060059, -70.685421 ] ] ], [ [ [ 78.969727, -70.685421 ], [ 73.103027, -70.685421 ], [ 73.155212, -70.612614 ], [ 73.333740, -70.364014 ], [ 73.863831, -69.873672 ], [ 74.490051, -69.776104 ], [ 75.627136, -69.736188 ], [ 76.624146, -69.618859 ], [ 77.643127, -69.462372 ], [ 78.132019, -69.070526 ], [ 78.425903, -68.697503 ], [ 78.750000, -68.522202 ], [ 78.969727, -68.402213 ], [ 78.969727, -70.685421 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.064869 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.708496 ], [ 68.744202, -49.774170 ], [ 68.719482, -49.240914 ], [ 68.829346, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.881531, -48.777913 ], [ 69.246826, -48.777913 ], [ 69.543457, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.246826, -48.777913 ], [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.064869 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.708496 ], [ 68.744202, -49.774170 ], [ 68.719482, -49.240914 ], [ 68.829346, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.881531, -48.777913 ], [ 69.246826, -48.777913 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.066668 ], [ 68.779907, -49.066668 ], [ 68.829346, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.933716, -48.623832 ], [ 69.543457, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.623832 ], [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.066668 ], [ 68.779907, -49.066668 ], [ 68.829346, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.933716, -48.623832 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 9.690106 ], [ 78.884583, 9.546583 ], [ 78.969727, 9.457190 ], [ 78.969727, 9.150909 ], [ 78.750000, 9.083112 ], [ 78.277588, 8.933914 ], [ 77.939758, 8.254983 ], [ 77.538757, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.301408 ], [ 75.794678, 11.178402 ], [ 75.745239, 11.310401 ], [ 75.682068, 11.393879 ], [ 78.969727, 11.393879 ], [ 78.969727, 9.690106 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 11.393879 ], [ 78.969727, 9.690106 ], [ 78.884583, 9.546583 ], [ 78.969727, 9.457190 ], [ 78.969727, 9.150909 ], [ 78.750000, 9.083112 ], [ 78.277588, 8.933914 ], [ 77.939758, 8.254983 ], [ 77.538757, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.301408 ], [ 75.794678, 11.178402 ], [ 75.745239, 11.310401 ], [ 75.682068, 11.393879 ], [ 78.969727, 11.393879 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 10.962764 ], [ 75.877075, 10.962764 ], [ 75.794678, 11.178402 ], [ 75.745239, 11.310401 ], [ 75.393677, 11.781325 ], [ 74.863586, 12.742158 ], [ 74.616394, 13.992706 ], [ 74.443359, 14.618136 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.929089 ], [ 72.820129, 19.210022 ], [ 72.822876, 20.421865 ], [ 72.627869, 21.358455 ], [ 71.174927, 20.758682 ], [ 70.469055, 20.879343 ], [ 69.320984, 21.943046 ], [ 69.161682, 22.090730 ], [ 69.233093, 22.146708 ], [ 78.969727, 22.146708 ], [ 78.969727, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 22.146708 ], [ 78.969727, 10.962764 ], [ 75.877075, 10.962764 ], [ 75.794678, 11.178402 ], [ 75.745239, 11.310401 ], [ 75.393677, 11.781325 ], [ 74.863586, 12.742158 ], [ 74.616394, 13.992706 ], [ 74.443359, 14.618136 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.929089 ], [ 72.820129, 19.210022 ], [ 72.822876, 20.421865 ], [ 72.627869, 21.358455 ], [ 71.174927, 20.758682 ], [ 70.469055, 20.879343 ], [ 69.320984, 21.943046 ], [ 69.161682, 22.090730 ], [ 69.233093, 22.146708 ], [ 78.969727, 22.146708 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.309998, 31.952162 ], [ 69.315491, 31.903210 ], [ 68.925476, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.304368 ], [ 67.500000, 31.306715 ], [ 67.280273, 31.306715 ], [ 67.280273, 32.138409 ], [ 69.293518, 32.138409 ], [ 69.309998, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.293518, 32.138409 ], [ 69.309998, 31.952162 ], [ 69.315491, 31.903210 ], [ 68.925476, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.304368 ], [ 67.500000, 31.306715 ], [ 67.280273, 31.306715 ], [ 67.280273, 32.138409 ], [ 69.293518, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.783936, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.418640, 30.979964 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.614624, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.166931, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.842590, 25.217366 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.928524 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.337087 ], [ 67.280273, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.681274, 31.304368 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.315491, 31.903210 ], [ 69.309998, 31.952162 ], [ 69.293518, 32.138409 ], [ 75.055847, 32.138409 ], [ 74.783936, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.055847, 32.138409 ], [ 74.783936, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.418640, 30.979964 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.614624, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.166931, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.842590, 25.217366 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.928524 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.337087 ], [ 67.280273, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.681274, 31.304368 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.315491, 31.903210 ], [ 69.309998, 31.952162 ], [ 69.293518, 32.138409 ], [ 75.055847, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.623657, 31.952162 ], [ 78.736267, 31.517679 ], [ 78.750000, 31.510654 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.540710, 21.739091 ], [ 69.161682, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.348450, 22.844540 ], [ 68.175659, 23.692320 ], [ 68.840332, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.842590, 25.217366 ], [ 70.282288, 25.723210 ], [ 70.166931, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.449097, 29.978729 ], [ 74.418640, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.783936, 31.952162 ], [ 75.055847, 32.138409 ], [ 78.576965, 32.138409 ], [ 78.623657, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.576965, 32.138409 ], [ 78.623657, 31.952162 ], [ 78.736267, 31.517679 ], [ 78.750000, 31.510654 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.540710, 21.739091 ], [ 69.161682, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.348450, 22.844540 ], [ 68.175659, 23.692320 ], [ 68.840332, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.842590, 25.217366 ], [ 70.282288, 25.723210 ], [ 70.166931, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.449097, 29.978729 ], [ 74.418640, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.783936, 31.952162 ], [ 75.055847, 32.138409 ], [ 78.576965, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 31.367709 ], [ 78.750000, 31.510654 ], [ 78.736267, 31.517679 ], [ 78.623657, 31.952162 ], [ 78.576965, 32.138409 ], [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.750000, 31.510654 ], [ 78.736267, 31.517679 ], [ 78.623657, 31.952162 ], [ 78.576965, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.818359, 40.979898 ], [ 68.631592, 40.670223 ], [ 68.258057, 40.663973 ], [ 68.074036, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.675781, 41.145570 ], [ 68.919983, 41.145570 ], [ 68.818359, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.919983, 41.145570 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.670223 ], [ 68.258057, 40.663973 ], [ 68.074036, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.675781, 41.145570 ], [ 68.919983, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.983398, 41.137296 ], [ 68.074036, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.670223 ], [ 68.818359, 40.979898 ], [ 68.919983, 41.145570 ], [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.147389 ], [ 71.012878, 40.245992 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.664062, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.582407 ], [ 67.500000, 39.245017 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.389893, 38.158317 ], [ 67.829590, 37.147182 ], [ 67.280273, 37.300275 ], [ 67.280273, 41.145570 ], [ 67.675781, 41.145570 ], [ 67.983398, 41.137296 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.147389 ], [ 71.012878, 40.245992 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.664062, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.582407 ], [ 67.500000, 39.245017 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.389893, 38.158317 ], [ 67.829590, 37.147182 ], [ 67.280273, 37.300275 ], [ 67.280273, 41.145570 ], [ 67.675781, 41.145570 ], [ 67.983398, 41.137296 ], [ 68.074036, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.670223 ], [ 68.818359, 40.979898 ], [ 68.919983, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.465088, 40.563895 ], [ 74.775696, 40.367474 ], [ 73.819885, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.281168 ], [ 70.548706, 39.605688 ], [ 69.463806, 39.527348 ], [ 69.557190, 40.103286 ], [ 70.647583, 39.937119 ], [ 71.012878, 40.245992 ], [ 71.773682, 40.147389 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.742004, 41.145570 ], [ 76.904297, 41.066928 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.742004, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.465088, 40.563895 ], [ 74.775696, 40.367474 ], [ 73.819885, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.281168 ], [ 70.548706, 39.605688 ], [ 69.463806, 39.527348 ], [ 69.557190, 40.103286 ], [ 70.647583, 39.937119 ], [ 71.012878, 40.245992 ], [ 71.773682, 40.147389 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.742004, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.245992 ], [ 70.647583, 39.937119 ], [ 69.557190, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.281168 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.507341 ], [ 74.256592, 38.608286 ], [ 74.863586, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.978943, 37.420345 ], [ 73.946228, 37.422526 ], [ 73.259583, 37.496652 ], [ 72.636108, 37.048601 ], [ 72.191162, 36.949892 ], [ 71.842346, 36.738884 ], [ 71.446838, 37.066136 ], [ 71.540222, 37.907367 ], [ 71.238098, 37.955027 ], [ 71.347961, 38.259750 ], [ 70.804138, 38.487995 ], [ 70.375671, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.590295 ], [ 69.518738, 37.609880 ], [ 69.194641, 37.151561 ], [ 68.856812, 37.346143 ], [ 68.134460, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.158317 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.245017 ], [ 67.700500, 39.582407 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.664062, 40.961234 ], [ 70.458069, 40.497092 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.245992 ], [ 70.647583, 39.937119 ], [ 69.557190, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.281168 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.507341 ], [ 74.256592, 38.608286 ], [ 74.863586, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.978943, 37.420345 ], [ 73.946228, 37.422526 ], [ 73.259583, 37.496652 ], [ 72.636108, 37.048601 ], [ 72.191162, 36.949892 ], [ 71.842346, 36.738884 ], [ 71.446838, 37.066136 ], [ 71.540222, 37.907367 ], [ 71.238098, 37.955027 ], [ 71.347961, 38.259750 ], [ 70.804138, 38.487995 ], [ 70.375671, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.590295 ], [ 69.518738, 37.609880 ], [ 69.194641, 37.151561 ], [ 68.856812, 37.346143 ], [ 68.134460, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.158317 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.245017 ], [ 67.700500, 39.582407 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.664062, 40.961234 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.347961, 38.259750 ], [ 71.238098, 37.955027 ], [ 71.540222, 37.907367 ], [ 71.446838, 37.066136 ], [ 71.842346, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.496652 ], [ 73.946228, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.022291 ], [ 74.067078, 36.837866 ], [ 72.919006, 36.721274 ], [ 71.845093, 36.511844 ], [ 71.260071, 36.075742 ], [ 71.496277, 35.650601 ], [ 71.611633, 35.153600 ], [ 71.114502, 34.734841 ], [ 71.155701, 34.350239 ], [ 70.881042, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.360356 ], [ 69.686279, 33.107648 ], [ 69.260559, 32.502813 ], [ 69.309998, 31.952162 ], [ 69.315491, 31.903210 ], [ 69.123230, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.300275 ], [ 67.829590, 37.147182 ], [ 68.134460, 37.024484 ], [ 68.856812, 37.346143 ], [ 69.194641, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.114746, 37.590295 ], [ 70.268555, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.804138, 38.487995 ], [ 71.347961, 38.259750 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.804138, 38.487995 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.955027 ], [ 71.540222, 37.907367 ], [ 71.446838, 37.066136 ], [ 71.842346, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.496652 ], [ 73.946228, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.022291 ], [ 74.067078, 36.837866 ], [ 72.919006, 36.721274 ], [ 71.845093, 36.511844 ], [ 71.260071, 36.075742 ], [ 71.496277, 35.650601 ], [ 71.611633, 35.153600 ], [ 71.114502, 34.734841 ], [ 71.155701, 34.350239 ], [ 70.881042, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.360356 ], [ 69.686279, 33.107648 ], [ 69.260559, 32.502813 ], [ 69.309998, 31.952162 ], [ 69.315491, 31.903210 ], [ 69.123230, 31.765537 ], [ 67.280273, 37.300275 ], [ 67.829590, 37.147182 ], [ 68.134460, 37.024484 ], [ 68.856812, 37.346143 ], [ 69.194641, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.114746, 37.590295 ], [ 70.268555, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.804138, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.896301, 36.668419 ], [ 76.190186, 35.900175 ], [ 77.835388, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.748474, 34.318487 ], [ 74.102783, 33.442901 ], [ 74.448853, 32.766491 ], [ 75.256348, 32.273200 ], [ 74.783936, 31.952162 ], [ 74.509277, 31.765537 ], [ 69.123230, 31.765537 ], [ 69.315491, 31.903210 ], [ 69.309998, 31.952162 ], [ 69.260559, 32.502813 ], [ 69.686279, 33.107648 ], [ 70.323486, 33.360356 ], [ 69.927979, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.350239 ], [ 71.114502, 34.734841 ], [ 71.611633, 35.153600 ], [ 71.496277, 35.650601 ], [ 71.260071, 36.075742 ], [ 71.845093, 36.511844 ], [ 72.919006, 36.721274 ], [ 74.067078, 36.837866 ], [ 74.575195, 37.022291 ], [ 75.157471, 37.134045 ], [ 75.896301, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.668419 ], [ 76.190186, 35.900175 ], [ 77.835388, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.748474, 34.318487 ], [ 74.102783, 33.442901 ], [ 74.448853, 32.766491 ], [ 75.256348, 32.273200 ], [ 74.783936, 31.952162 ], [ 74.509277, 31.765537 ], [ 69.123230, 31.765537 ], [ 69.315491, 31.903210 ], [ 69.309998, 31.952162 ], [ 69.260559, 32.502813 ], [ 69.686279, 33.107648 ], [ 70.323486, 33.360356 ], [ 69.927979, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.350239 ], [ 71.114502, 34.734841 ], [ 71.611633, 35.153600 ], [ 71.496277, 35.650601 ], [ 71.260071, 36.075742 ], [ 71.845093, 36.511844 ], [ 72.919006, 36.721274 ], [ 74.067078, 36.837866 ], [ 74.575195, 37.022291 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 34.502030 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.523658 ], [ 78.750000, 32.565333 ], [ 78.456116, 32.618557 ], [ 78.623657, 31.952162 ], [ 78.673096, 31.765537 ], [ 74.509277, 31.765537 ], [ 74.783936, 31.952162 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.766491 ], [ 74.102783, 33.442901 ], [ 73.748474, 34.318487 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.653545 ], [ 77.835388, 35.494220 ], [ 78.750000, 34.502030 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.835388, 35.494220 ], [ 78.750000, 34.502030 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.523658 ], [ 78.750000, 32.565333 ], [ 78.456116, 32.618557 ], [ 78.623657, 31.952162 ], [ 78.673096, 31.765537 ], [ 74.509277, 31.765537 ], [ 74.783936, 31.952162 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.766491 ], [ 74.102783, 33.442901 ], [ 73.748474, 34.318487 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.653545 ], [ 77.835388, 35.494220 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.912048, 34.323024 ], [ 78.750000, 34.502030 ], [ 77.835388, 35.494220 ], [ 76.190186, 35.900175 ], [ 75.896301, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.827881, 37.991834 ], [ 74.863586, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.507341 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.819885, 39.894987 ], [ 74.775696, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.742004, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ] ] ], [ [ [ 78.969727, 31.765537 ], [ 78.673096, 31.765537 ], [ 78.623657, 31.952162 ], [ 78.456116, 32.618557 ], [ 78.750000, 32.565333 ], [ 78.969727, 32.523658 ], [ 78.969727, 31.765537 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.456116, 32.618557 ], [ 78.750000, 32.565333 ], [ 78.969727, 32.523658 ], [ 78.969727, 31.765537 ], [ 78.673096, 31.765537 ], [ 78.623657, 31.952162 ], [ 78.456116, 32.618557 ] ] ], [ [ [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.502030 ], [ 77.835388, 35.494220 ], [ 76.190186, 35.900175 ], [ 75.896301, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.827881, 37.991834 ], [ 74.863586, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.507341 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.819885, 39.894987 ], [ 74.775696, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.742004, 41.145570 ], [ 78.969727, 41.145570 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 42.869925 ], [ 78.750000, 42.886027 ], [ 77.656860, 42.962453 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.092961 ], [ 73.487549, 42.502478 ], [ 71.842346, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.960693, 42.267147 ], [ 70.386658, 42.081917 ], [ 69.068298, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.716736, 40.813809 ], [ 68.170166, 40.813809 ], [ 68.074036, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.151774 ], [ 67.280273, 41.157978 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ], [ 78.969727, 42.869925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 49.066668 ], [ 78.969727, 42.869925 ], [ 78.750000, 42.886027 ], [ 77.656860, 42.962453 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.092961 ], [ 73.487549, 42.502478 ], [ 71.842346, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.960693, 42.267147 ], [ 70.386658, 42.081917 ], [ 69.068298, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.716736, 40.813809 ], [ 68.170166, 40.813809 ], [ 68.074036, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.151774 ], [ 67.280273, 41.157978 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.818359, 40.979898 ], [ 69.068298, 41.385052 ], [ 70.386658, 42.081917 ], [ 70.960693, 42.267147 ], [ 71.257324, 42.169511 ], [ 70.419617, 41.520917 ], [ 71.155701, 41.145570 ], [ 71.869812, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.954712, 40.813809 ], [ 70.598145, 40.813809 ], [ 70.664062, 40.961234 ], [ 69.815369, 40.813809 ], [ 68.716736, 40.813809 ], [ 68.818359, 40.979898 ] ] ], [ [ [ 67.500000, 41.151774 ], [ 67.983398, 41.137296 ], [ 68.074036, 40.979898 ], [ 68.170166, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.157978 ], [ 67.500000, 41.151774 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, 41.157978 ], [ 67.500000, 41.151774 ], [ 67.983398, 41.137296 ], [ 68.074036, 40.979898 ], [ 68.170166, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.157978 ] ] ], [ [ [ 71.257324, 42.169511 ], [ 70.419617, 41.520917 ], [ 71.155701, 41.145570 ], [ 71.869812, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.954712, 40.813809 ], [ 70.598145, 40.813809 ], [ 70.664062, 40.961234 ], [ 69.815369, 40.813809 ], [ 68.716736, 40.813809 ], [ 68.818359, 40.979898 ], [ 69.068298, 41.385052 ], [ 70.386658, 42.081917 ], [ 70.960693, 42.267147 ], [ 71.257324, 42.169511 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.635376, 42.877977 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.962453 ], [ 78.750000, 42.886027 ], [ 78.969727, 42.869925 ], [ 78.969727, 41.732380 ], [ 78.750000, 41.656497 ], [ 78.541260, 41.582580 ], [ 78.186951, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.954712, 40.813809 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.155701, 41.145570 ], [ 70.419617, 41.520917 ], [ 71.257324, 42.169511 ], [ 70.960693, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.842346, 42.845765 ], [ 73.487549, 42.502478 ], [ 73.644104, 43.092961 ], [ 74.212646, 43.299197 ], [ 75.635376, 42.877977 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.635376, 42.877977 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.962453 ], [ 78.750000, 42.886027 ], [ 78.969727, 42.869925 ], [ 78.969727, 41.732380 ], [ 78.750000, 41.656497 ], [ 78.541260, 41.582580 ], [ 78.186951, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.954712, 40.813809 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.155701, 41.145570 ], [ 70.419617, 41.520917 ], [ 71.257324, 42.169511 ], [ 70.960693, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.842346, 42.845765 ], [ 73.487549, 42.502478 ], [ 73.644104, 43.092961 ], [ 74.212646, 43.299197 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.598145, 40.813809 ], [ 69.815369, 40.813809 ], [ 70.664062, 40.961234 ], [ 70.598145, 40.813809 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.961234 ], [ 70.598145, 40.813809 ], [ 69.815369, 40.813809 ], [ 70.664062, 40.961234 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.750000, 41.656497 ], [ 78.969727, 41.732380 ], [ 78.969727, 40.813809 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 41.732380 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.750000, 41.656497 ], [ 78.969727, 41.732380 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 52.094695 ], [ 78.750000, 52.343730 ], [ 77.799683, 53.404620 ], [ 76.522522, 54.178512 ], [ 76.890564, 54.490782 ], [ 74.382935, 53.548467 ], [ 73.424377, 53.491314 ], [ 73.506775, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.177673, 54.133478 ], [ 70.864563, 55.171025 ], [ 69.065552, 55.385352 ], [ 68.167419, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.280273, 54.841827 ], [ 67.280273, 55.899956 ], [ 78.969727, 55.899956 ], [ 78.969727, 52.094695 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 55.899956 ], [ 78.969727, 52.094695 ], [ 78.750000, 52.343730 ], [ 77.799683, 53.404620 ], [ 76.522522, 54.178512 ], [ 76.890564, 54.490782 ], [ 74.382935, 53.548467 ], [ 73.424377, 53.491314 ], [ 73.506775, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.177673, 54.133478 ], [ 70.864563, 55.171025 ], [ 69.065552, 55.385352 ], [ 68.167419, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.280273, 54.841827 ], [ 67.280273, 55.899956 ], [ 78.969727, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.864563, 55.171025 ], [ 71.177673, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.506775, 54.036812 ], [ 73.424377, 53.491314 ], [ 74.382935, 53.548467 ], [ 76.890564, 54.490782 ], [ 76.522522, 54.178512 ], [ 77.799683, 53.404620 ], [ 78.750000, 52.343730 ], [ 78.969727, 52.094695 ], [ 78.969727, 48.777913 ], [ 67.280273, 48.777913 ], [ 67.280273, 54.841827 ], [ 67.500000, 54.873446 ], [ 68.167419, 54.971308 ], [ 69.065552, 55.385352 ], [ 70.864563, 55.171025 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.864563, 55.171025 ], [ 71.177673, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.506775, 54.036812 ], [ 73.424377, 53.491314 ], [ 74.382935, 53.548467 ], [ 76.890564, 54.490782 ], [ 76.522522, 54.178512 ], [ 77.799683, 53.404620 ], [ 78.750000, 52.343730 ], [ 78.969727, 52.094695 ], [ 78.969727, 48.777913 ], [ 67.280273, 48.777913 ], [ 67.280273, 54.841827 ], [ 67.500000, 54.873446 ], [ 68.167419, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 55.652798 ], [ 67.280273, 55.652798 ], [ 67.280273, 61.710706 ], [ 78.969727, 61.710706 ], [ 78.969727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 61.710706 ], [ 78.969727, 55.652798 ], [ 67.280273, 55.652798 ], [ 67.280273, 61.710706 ], [ 78.969727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.537476, 66.513260 ], [ 71.279297, 66.320965 ], [ 72.421875, 66.172719 ], [ 72.798157, 66.513260 ], [ 72.820129, 66.532956 ], [ 73.105774, 66.600676 ], [ 78.969727, 66.600676 ], [ 78.969727, 61.501734 ], [ 67.280273, 61.501734 ], [ 67.280273, 66.600676 ], [ 71.655579, 66.600676 ], [ 71.537476, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 66.600676 ], [ 78.969727, 61.501734 ], [ 67.280273, 61.501734 ], [ 67.280273, 66.600676 ], [ 71.655579, 66.600676 ], [ 71.537476, 66.513260 ], [ 71.279297, 66.320965 ], [ 72.421875, 66.172719 ], [ 72.798157, 66.513260 ], [ 72.820129, 66.532956 ], [ 73.105774, 66.600676 ], [ 78.969727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.688293, 70.612614 ], [ 72.789917, 70.391684 ], [ 72.564697, 69.021414 ], [ 73.666077, 68.408278 ], [ 73.237610, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.419373, 66.425537 ], [ 67.280273, 66.425537 ], [ 67.280273, 68.487984 ], [ 67.500000, 68.418383 ], [ 68.510742, 68.092783 ], [ 69.178162, 68.616534 ], [ 68.161926, 69.144965 ], [ 68.134460, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.280273, 69.426691 ], [ 67.280273, 70.685421 ], [ 72.655334, 70.685421 ], [ 72.688293, 70.612614 ] ] ], [ [ [ 72.820129, 66.532956 ], [ 73.918762, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.050354, 67.761477 ], [ 74.468079, 68.329305 ], [ 74.934998, 68.989925 ], [ 73.841858, 69.071507 ], [ 73.600159, 69.628422 ], [ 74.382935, 70.612614 ], [ 74.399414, 70.631752 ], [ 74.314270, 70.685421 ], [ 78.969727, 70.685421 ], [ 78.969727, 66.425537 ], [ 72.699280, 66.425537 ], [ 72.798157, 66.513260 ], [ 72.820129, 66.532956 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.655334, 70.685421 ], [ 72.688293, 70.612614 ], [ 72.789917, 70.391684 ], [ 72.564697, 69.021414 ], [ 73.666077, 68.408278 ], [ 73.237610, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.419373, 66.425537 ], [ 67.280273, 66.425537 ], [ 67.280273, 68.487984 ], [ 67.500000, 68.418383 ], [ 68.510742, 68.092783 ], [ 69.178162, 68.616534 ], [ 68.161926, 69.144965 ], [ 68.134460, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.280273, 69.426691 ], [ 67.280273, 70.685421 ], [ 72.655334, 70.685421 ] ] ], [ [ [ 78.969727, 66.425537 ], [ 72.699280, 66.425537 ], [ 72.798157, 66.513260 ], [ 72.820129, 66.532956 ], [ 73.918762, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.050354, 67.761477 ], [ 74.468079, 68.329305 ], [ 74.934998, 68.989925 ], [ 73.841858, 69.071507 ], [ 73.600159, 69.628422 ], [ 74.382935, 70.612614 ], [ 74.399414, 70.631752 ], [ 74.314270, 70.685421 ], [ 78.969727, 70.685421 ], [ 78.969727, 66.425537 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.847839, 71.409675 ], [ 72.468567, 71.090975 ], [ 72.688293, 70.612614 ], [ 72.721252, 70.539543 ], [ 67.280273, 70.539543 ], [ 67.280273, 71.322794 ], [ 67.500000, 71.431552 ], [ 68.538208, 71.934751 ], [ 69.194641, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ] ] ], [ [ [ 74.399414, 70.631752 ], [ 73.100281, 71.447289 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.682068, 72.300761 ], [ 75.286560, 71.335983 ], [ 76.357727, 71.153182 ], [ 75.901794, 71.874181 ], [ 77.574463, 72.267330 ], [ 78.750000, 72.298256 ], [ 78.969727, 72.304101 ], [ 78.969727, 70.539543 ], [ 74.322510, 70.539543 ], [ 74.382935, 70.612614 ], [ 74.399414, 70.631752 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.847839, 71.409675 ], [ 72.468567, 71.090975 ], [ 72.688293, 70.612614 ], [ 72.721252, 70.539543 ], [ 67.280273, 70.539543 ], [ 67.280273, 71.322794 ], [ 67.500000, 71.431552 ], [ 68.538208, 71.934751 ], [ 69.194641, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 75.682068, 72.300761 ], [ 75.286560, 71.335983 ], [ 76.357727, 71.153182 ], [ 75.901794, 71.874181 ], [ 77.574463, 72.267330 ], [ 78.750000, 72.298256 ], [ 78.969727, 72.304101 ], [ 78.969727, 70.539543 ], [ 74.322510, 70.539543 ], [ 74.382935, 70.612614 ], [ 74.399414, 70.631752 ], [ 73.100281, 71.447289 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.682068, 72.300761 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.332214, 76.840816 ], [ 68.851318, 76.544967 ], [ 68.178406, 76.234098 ], [ 67.500000, 76.140985 ], [ 67.280273, 76.110689 ], [ 67.280273, 76.882021 ], [ 67.414856, 76.890745 ], [ 68.241577, 76.890745 ], [ 68.332214, 76.840816 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.241577, 76.890745 ], [ 68.332214, 76.840816 ], [ 68.851318, 76.544967 ], [ 68.178406, 76.234098 ], [ 67.500000, 76.140985 ], [ 67.280273, 76.110689 ], [ 67.280273, 76.882021 ], [ 67.414856, 76.890745 ], [ 68.241577, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.332214, 76.840816 ], [ 68.420105, 76.790701 ], [ 67.280273, 76.790701 ], [ 67.280273, 76.882021 ], [ 67.500000, 76.896351 ], [ 68.156433, 76.939868 ], [ 68.332214, 76.840816 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.156433, 76.939868 ], [ 68.332214, 76.840816 ], [ 68.420105, 76.790701 ], [ 67.280273, 76.790701 ], [ 67.280273, 76.882021 ], [ 67.500000, 76.896351 ], [ 68.156433, 76.939868 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -85.070048 ], [ 78.530273, -85.070048 ], [ 78.530273, -83.956169 ], [ 90.219727, -83.956169 ], [ 90.219727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -83.956169 ], [ 90.219727, -85.070048 ], [ 78.530273, -85.070048 ], [ 78.530273, -83.956169 ], [ 90.219727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -84.002262 ], [ 78.530273, -84.002262 ], [ 78.530273, -82.648222 ], [ 90.219727, -82.648222 ], [ 90.219727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -82.648222 ], [ 90.219727, -84.002262 ], [ 78.530273, -84.002262 ], [ 78.530273, -82.648222 ], [ 90.219727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -82.704241 ], [ 78.530273, -82.704241 ], [ 78.530273, -81.059130 ], [ 90.219727, -81.059130 ], [ 90.219727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -81.059130 ], [ 90.219727, -82.704241 ], [ 78.530273, -82.704241 ], [ 78.530273, -81.059130 ], [ 90.219727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -81.127169 ], [ 78.530273, -81.127169 ], [ 78.530273, -79.129976 ], [ 90.219727, -79.129976 ], [ 90.219727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -79.129976 ], [ 90.219727, -81.127169 ], [ 78.530273, -81.127169 ], [ 78.530273, -79.129976 ], [ 90.219727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -79.212538 ], [ 78.530273, -79.212538 ], [ 78.530273, -76.790701 ], [ 90.219727, -76.790701 ], [ 90.219727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -76.790701 ], [ 90.219727, -79.212538 ], [ 78.530273, -79.212538 ], [ 78.530273, -76.790701 ], [ 90.219727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -76.890745 ], [ 78.530273, -76.890745 ], [ 78.530273, -73.958939 ], [ 90.219727, -73.958939 ], [ 90.219727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -73.958939 ], [ 90.219727, -76.890745 ], [ 78.530273, -76.890745 ], [ 78.530273, -73.958939 ], [ 90.219727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -74.079925 ], [ 78.530273, -74.079925 ], [ 78.530273, -70.539543 ], [ 90.219727, -70.539543 ], [ 90.219727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -70.539543 ], [ 90.219727, -74.079925 ], [ 78.530273, -74.079925 ], [ 78.530273, -70.539543 ], [ 90.219727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.483688 ], [ 88.385010, -66.513260 ], [ 88.827209, -66.953727 ], [ 89.670410, -67.149699 ], [ 90.000000, -67.176348 ], [ 90.219727, -67.194453 ], [ 90.219727, -70.685421 ], [ 78.530273, -70.685421 ], [ 78.530273, -68.640555 ], [ 78.750000, -68.522202 ], [ 79.112549, -68.325248 ], [ 80.093079, -68.071253 ], [ 80.933533, -67.875541 ], [ 81.482849, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.773743, -67.208289 ], [ 83.773499, -67.307035 ], [ 84.674377, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.750793, -67.149699 ], [ 87.475891, -66.875109 ], [ 87.750549, -66.513260 ], [ 87.816467, -66.425537 ], [ 88.275146, -66.425537 ], [ 88.357544, -66.483688 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.275146, -66.425537 ], [ 88.357544, -66.483688 ], [ 88.385010, -66.513260 ], [ 88.827209, -66.953727 ], [ 89.670410, -67.149699 ], [ 90.000000, -67.176348 ], [ 90.219727, -67.194453 ], [ 90.219727, -70.685421 ], [ 78.530273, -70.685421 ], [ 78.530273, -68.640555 ], [ 78.750000, -68.522202 ], [ 79.112549, -68.325248 ], [ 80.093079, -68.071253 ], [ 80.933533, -67.875541 ], [ 81.482849, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.773743, -67.208289 ], [ 83.773499, -67.307035 ], [ 84.674377, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.750793, -67.149699 ], [ 87.475891, -66.875109 ], [ 87.750549, -66.513260 ], [ 87.816467, -66.425537 ], [ 88.275146, -66.425537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.357544, -66.483688 ], [ 88.385010, -66.513260 ], [ 88.470154, -66.600676 ], [ 87.681885, -66.600676 ], [ 87.750549, -66.513260 ], [ 87.984009, -66.209308 ], [ 88.357544, -66.483688 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.483688 ], [ 88.385010, -66.513260 ], [ 88.470154, -66.600676 ], [ 87.681885, -66.600676 ], [ 87.750549, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.856873, 11.178402 ], [ 79.856873, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.884583, 9.546583 ], [ 79.189453, 9.218694 ], [ 78.530273, 9.015302 ], [ 78.530273, 11.393879 ], [ 79.859619, 11.393879 ], [ 79.856873, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.859619, 11.393879 ], [ 79.856873, 11.178402 ], [ 79.856873, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.884583, 9.546583 ], [ 79.189453, 9.218694 ], [ 78.530273, 9.015302 ], [ 78.530273, 11.393879 ], [ 79.859619, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.837402, 9.270201 ], [ 81.301575, 8.564726 ], [ 81.787720, 7.523150 ], [ 81.636658, 6.481796 ], [ 81.216431, 6.197899 ], [ 80.345764, 5.968485 ], [ 79.870605, 6.765534 ], [ 79.694824, 8.203335 ], [ 80.145264, 9.825448 ], [ 80.837402, 9.270201 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.825448 ], [ 80.837402, 9.270201 ], [ 81.301575, 8.564726 ], [ 81.787720, 7.523150 ], [ 81.636658, 6.481796 ], [ 81.216431, 6.197899 ], [ 80.345764, 5.968485 ], [ 79.870605, 6.765534 ], [ 79.694824, 8.203335 ], [ 80.145264, 9.825448 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.030457, 22.057642 ], [ 88.983765, 21.943046 ], [ 88.887634, 21.690609 ], [ 88.206482, 21.703369 ], [ 86.973267, 21.496519 ], [ 87.030945, 20.745840 ], [ 86.498108, 20.153942 ], [ 85.058899, 19.479540 ], [ 83.938293, 18.302381 ], [ 83.188477, 17.672811 ], [ 82.191467, 17.017394 ], [ 82.188721, 16.557227 ], [ 81.691589, 16.312232 ], [ 80.790710, 15.953407 ], [ 80.323792, 15.900584 ], [ 80.024414, 15.138416 ], [ 80.233154, 13.838080 ], [ 80.285339, 13.007234 ], [ 79.862366, 12.058123 ], [ 79.856873, 11.178402 ], [ 79.856873, 10.962764 ], [ 78.530273, 10.962764 ], [ 78.530273, 22.146708 ], [ 89.011230, 22.146708 ], [ 89.030457, 22.057642 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.011230, 22.146708 ], [ 89.030457, 22.057642 ], [ 88.983765, 21.943046 ], [ 88.887634, 21.690609 ], [ 88.206482, 21.703369 ], [ 86.973267, 21.496519 ], [ 87.030945, 20.745840 ], [ 86.498108, 20.153942 ], [ 85.058899, 19.479540 ], [ 83.938293, 18.302381 ], [ 83.188477, 17.672811 ], [ 82.191467, 17.017394 ], [ 82.188721, 16.557227 ], [ 81.691589, 16.312232 ], [ 80.790710, 15.953407 ], [ 80.323792, 15.900584 ], [ 80.024414, 15.138416 ], [ 80.233154, 13.838080 ], [ 80.285339, 13.007234 ], [ 79.862366, 12.058123 ], [ 79.856873, 11.178402 ], [ 79.856873, 10.962764 ], [ 78.530273, 10.962764 ], [ 78.530273, 22.146708 ], [ 89.011230, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 21.864048 ], [ 89.846191, 22.039822 ], [ 89.766541, 21.943046 ], [ 89.700623, 21.858950 ], [ 89.480896, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.030457, 22.057642 ], [ 89.011230, 22.146708 ], [ 90.219727, 22.146708 ], [ 90.219727, 21.864048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 22.146708 ], [ 90.219727, 21.864048 ], [ 89.846191, 22.039822 ], [ 89.766541, 21.943046 ], [ 89.700623, 21.858950 ], [ 89.480896, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.030457, 22.057642 ], [ 89.011230, 22.146708 ], [ 90.219727, 22.146708 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.326050, 30.116622 ], [ 83.336792, 29.465905 ], [ 83.897095, 29.322326 ], [ 84.232178, 28.842268 ], [ 85.009460, 28.644800 ], [ 85.822449, 28.205188 ], [ 86.954041, 27.974998 ], [ 88.118591, 27.877928 ], [ 88.041687, 27.447353 ], [ 88.173523, 26.811815 ], [ 88.058167, 26.416470 ], [ 87.225952, 26.399250 ], [ 86.022949, 26.632729 ], [ 85.251160, 26.728440 ], [ 84.674377, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.999207, 27.926474 ], [ 81.057129, 28.417975 ], [ 80.087585, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.109314, 30.185496 ], [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.465905 ], [ 83.897095, 29.322326 ], [ 84.232178, 28.842268 ], [ 85.009460, 28.644800 ], [ 85.822449, 28.205188 ], [ 86.954041, 27.974998 ], [ 88.118591, 27.877928 ], [ 88.041687, 27.447353 ], [ 88.173523, 26.811815 ], [ 88.058167, 26.416470 ], [ 87.225952, 26.399250 ], [ 86.022949, 26.632729 ], [ 85.251160, 26.728440 ], [ 84.674377, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.999207, 27.926474 ], [ 81.057129, 28.417975 ], [ 80.087585, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.109314, 30.185496 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.736267, 31.517679 ], [ 78.750000, 31.510654 ], [ 79.719543, 30.883369 ], [ 81.109314, 30.185496 ], [ 80.474854, 29.730992 ], [ 80.087585, 28.796546 ], [ 81.057129, 28.417975 ], [ 81.999207, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.674377, 27.235095 ], [ 85.251160, 26.728440 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.399250 ], [ 88.058167, 26.416470 ], [ 88.173523, 26.811815 ], [ 88.041687, 27.447353 ], [ 88.118591, 27.877928 ], [ 88.728333, 28.088943 ], [ 88.835449, 27.100699 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.787299 ], [ 90.219727, 26.841227 ], [ 90.219727, 25.229789 ], [ 90.000000, 25.262085 ], [ 89.920349, 25.272020 ], [ 89.832458, 25.965453 ], [ 89.354553, 26.014829 ], [ 88.560791, 26.448443 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.305359, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.234442 ], [ 88.527832, 23.631944 ], [ 88.873901, 22.879971 ], [ 89.030457, 22.057642 ], [ 88.983765, 21.943046 ], [ 88.904114, 21.739091 ], [ 78.530273, 21.739091 ], [ 78.530273, 32.138409 ], [ 78.576965, 32.138409 ], [ 78.736267, 31.517679 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.576965, 32.138409 ], [ 78.736267, 31.517679 ], [ 78.750000, 31.510654 ], [ 79.719543, 30.883369 ], [ 81.109314, 30.185496 ], [ 80.474854, 29.730992 ], [ 80.087585, 28.796546 ], [ 81.057129, 28.417975 ], [ 81.999207, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.674377, 27.235095 ], [ 85.251160, 26.728440 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.399250 ], [ 88.058167, 26.416470 ], [ 88.173523, 26.811815 ], [ 88.041687, 27.447353 ], [ 88.118591, 27.877928 ], [ 88.728333, 28.088943 ], [ 88.835449, 27.100699 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.787299 ], [ 90.219727, 26.841227 ], [ 90.219727, 25.229789 ], [ 90.000000, 25.262085 ], [ 89.920349, 25.272020 ], [ 89.832458, 25.965453 ], [ 89.354553, 26.014829 ], [ 88.560791, 26.448443 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.305359, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.234442 ], [ 88.527832, 23.631944 ], [ 88.873901, 22.879971 ], [ 89.030457, 22.057642 ], [ 88.983765, 21.943046 ], [ 88.904114, 21.739091 ], [ 78.530273, 21.739091 ], [ 78.530273, 32.138409 ], [ 78.576965, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 28.231810 ], [ 90.219727, 26.841227 ], [ 90.000000, 26.787299 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.100699 ], [ 88.813477, 27.301011 ], [ 89.475403, 28.042895 ], [ 90.000000, 28.292289 ], [ 90.013733, 28.297126 ], [ 90.219727, 28.231810 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.013733, 28.297126 ], [ 90.219727, 28.231810 ], [ 90.219727, 26.841227 ], [ 90.000000, 26.787299 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.100699 ], [ 88.813477, 27.301011 ], [ 89.475403, 28.042895 ], [ 90.000000, 28.292289 ], [ 90.013733, 28.297126 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.354553, 26.014829 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.272020 ], [ 90.000000, 25.262085 ], [ 90.219727, 25.229789 ], [ 90.219727, 21.864048 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.766541, 21.943046 ], [ 89.700623, 21.858950 ], [ 89.480896, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.030457, 22.057642 ], [ 88.873901, 22.879971 ], [ 88.527832, 23.631944 ], [ 88.698120, 24.234442 ], [ 88.082886, 24.502145 ], [ 88.305359, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.448443 ], [ 89.354553, 26.014829 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.448443 ], [ 89.354553, 26.014829 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.272020 ], [ 90.000000, 25.262085 ], [ 90.219727, 25.229789 ], [ 90.219727, 21.864048 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.766541, 21.943046 ], [ 89.700623, 21.858950 ], [ 89.480896, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.030457, 22.057642 ], [ 88.873901, 22.879971 ], [ 88.527832, 23.631944 ], [ 88.698120, 24.234442 ], [ 88.082886, 24.502145 ], [ 88.305359, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.448443 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 28.231810 ], [ 90.013733, 28.297126 ], [ 90.000000, 28.292289 ], [ 89.475403, 28.042895 ], [ 88.813477, 27.301011 ], [ 88.728333, 28.088943 ], [ 88.118591, 27.877928 ], [ 86.954041, 27.974998 ], [ 85.822449, 28.205188 ], [ 85.009460, 28.644800 ], [ 84.232178, 28.842268 ], [ 83.897095, 29.322326 ], [ 83.336792, 29.465905 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.109314, 30.185496 ], [ 79.719543, 30.883369 ], [ 78.750000, 31.510654 ], [ 78.736267, 31.517679 ], [ 78.576965, 32.138409 ], [ 90.219727, 32.138409 ], [ 90.219727, 28.231810 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 32.138409 ], [ 90.219727, 28.231810 ], [ 90.013733, 28.297126 ], [ 90.000000, 28.292289 ], [ 89.475403, 28.042895 ], [ 88.813477, 27.301011 ], [ 88.728333, 28.088943 ], [ 88.118591, 27.877928 ], [ 86.954041, 27.974998 ], [ 85.822449, 28.205188 ], [ 85.009460, 28.644800 ], [ 84.232178, 28.842268 ], [ 83.897095, 29.322326 ], [ 83.336792, 29.465905 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.109314, 30.185496 ], [ 79.719543, 30.883369 ], [ 78.750000, 31.510654 ], [ 78.736267, 31.517679 ], [ 78.576965, 32.138409 ], [ 90.219727, 32.138409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.750000, 34.502030 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 79.208679, 32.994843 ], [ 79.175720, 32.484280 ], [ 78.750000, 32.565333 ], [ 78.530273, 32.606989 ], [ 78.530273, 34.741612 ], [ 78.750000, 34.502030 ] ] ], [ [ [ 78.673096, 31.765537 ], [ 78.530273, 31.765537 ], [ 78.530273, 32.328917 ], [ 78.673096, 31.765537 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.530273, 32.606989 ], [ 78.530273, 34.741612 ], [ 78.750000, 34.502030 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 79.208679, 32.994843 ], [ 79.175720, 32.484280 ], [ 78.750000, 32.565333 ], [ 78.530273, 32.606989 ] ] ], [ [ [ 78.530273, 32.328917 ], [ 78.673096, 31.765537 ], [ 78.530273, 31.765537 ], [ 78.530273, 32.328917 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 31.765537 ], [ 78.673096, 31.765537 ], [ 78.530273, 32.328917 ], [ 78.530273, 32.606989 ], [ 78.750000, 32.565333 ], [ 79.175720, 32.484280 ], [ 79.208679, 32.994843 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.502030 ], [ 78.530273, 34.741612 ], [ 78.530273, 41.145570 ], [ 90.219727, 41.145570 ], [ 90.219727, 31.765537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 41.145570 ], [ 90.219727, 31.765537 ], [ 78.673096, 31.765537 ], [ 78.530273, 32.328917 ], [ 78.530273, 32.606989 ], [ 78.750000, 32.565333 ], [ 79.175720, 32.484280 ], [ 79.208679, 32.994843 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.502030 ], [ 78.530273, 34.741612 ], [ 78.530273, 41.145570 ], [ 90.219727, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.019958, 48.922499 ], [ 86.596985, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.718079, 47.454094 ], [ 85.163269, 47.002734 ], [ 83.180237, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.257874, 42.350425 ], [ 79.642639, 42.498428 ], [ 79.140015, 42.857846 ], [ 78.750000, 42.886027 ], [ 78.530273, 42.902125 ], [ 78.530273, 49.066668 ], [ 87.184753, 49.066668 ], [ 87.019958, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.184753, 49.066668 ], [ 87.019958, 48.922499 ], [ 86.596985, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.718079, 47.454094 ], [ 85.163269, 47.002734 ], [ 83.180237, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.257874, 42.350425 ], [ 79.642639, 42.498428 ], [ 79.140015, 42.857846 ], [ 78.750000, 42.886027 ], [ 78.530273, 42.902125 ], [ 78.530273, 49.066668 ], [ 87.184753, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 42.886027 ], [ 79.140015, 42.857846 ], [ 79.642639, 42.498428 ], [ 80.257874, 42.350425 ], [ 80.117798, 42.124710 ], [ 78.750000, 41.656497 ], [ 78.541260, 41.582580 ], [ 78.530273, 41.572307 ], [ 78.530273, 42.902125 ], [ 78.750000, 42.886027 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 42.902125 ], [ 78.750000, 42.886027 ], [ 79.140015, 42.857846 ], [ 79.642639, 42.498428 ], [ 80.257874, 42.350425 ], [ 80.117798, 42.124710 ], [ 78.750000, 41.656497 ], [ 78.541260, 41.582580 ], [ 78.530273, 41.572307 ], [ 78.530273, 42.902125 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 47.711610 ], [ 90.000000, 47.770714 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.890625, 48.922499 ], [ 87.835693, 49.066668 ], [ 90.219727, 49.066668 ], [ 90.219727, 47.711610 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 49.066668 ], [ 90.219727, 47.711610 ], [ 90.000000, 47.770714 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.890625, 48.922499 ], [ 87.835693, 49.066668 ], [ 90.219727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.890625, 48.922499 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.770714 ], [ 90.219727, 47.711610 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.572307 ], [ 78.541260, 41.582580 ], [ 78.750000, 41.656497 ], [ 80.117798, 42.124710 ], [ 80.257874, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.180237, 47.331377 ], [ 85.163269, 47.002734 ], [ 85.718079, 47.454094 ], [ 85.767517, 48.456530 ], [ 86.596985, 48.549342 ], [ 87.019958, 48.922499 ], [ 87.184753, 49.066668 ], [ 87.835693, 49.066668 ], [ 87.890625, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.835693, 49.066668 ], [ 87.890625, 48.922499 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.770714 ], [ 90.219727, 47.711610 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.572307 ], [ 78.541260, 41.582580 ], [ 78.750000, 41.656497 ], [ 80.117798, 42.124710 ], [ 80.257874, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.180237, 47.331377 ], [ 85.163269, 47.002734 ], [ 85.718079, 47.454094 ], [ 85.767517, 48.456530 ], [ 86.596985, 48.549342 ], [ 87.019958, 48.922499 ], [ 87.184753, 49.066668 ], [ 87.835693, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 50.113533 ], [ 90.000000, 50.014799 ], [ 88.805237, 49.471694 ], [ 87.750549, 49.298263 ], [ 87.357788, 49.215803 ], [ 86.827698, 49.827353 ], [ 85.539551, 49.694285 ], [ 85.113831, 50.118817 ], [ 84.416199, 50.312146 ], [ 83.932800, 50.890907 ], [ 83.380737, 51.070743 ], [ 81.944275, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 78.750000, 52.343730 ], [ 78.530273, 52.591369 ], [ 78.530273, 55.899956 ], [ 90.219727, 55.899956 ], [ 90.219727, 50.113533 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 55.899956 ], [ 90.219727, 50.113533 ], [ 90.000000, 50.014799 ], [ 88.805237, 49.471694 ], [ 87.750549, 49.298263 ], [ 87.357788, 49.215803 ], [ 86.827698, 49.827353 ], [ 85.539551, 49.694285 ], [ 85.113831, 50.118817 ], [ 84.416199, 50.312146 ], [ 83.932800, 50.890907 ], [ 83.380737, 51.070743 ], [ 81.944275, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 78.750000, 52.343730 ], [ 78.530273, 52.591369 ], [ 78.530273, 55.899956 ], [ 90.219727, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 52.343730 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.944275, 50.812877 ], [ 83.380737, 51.070743 ], [ 83.932800, 50.890907 ], [ 84.416199, 50.312146 ], [ 85.113831, 50.118817 ], [ 85.539551, 49.694285 ], [ 86.827698, 49.827353 ], [ 87.357788, 49.215803 ], [ 87.019958, 48.922499 ], [ 86.855164, 48.777913 ], [ 78.530273, 48.777913 ], [ 78.530273, 52.591369 ], [ 78.750000, 52.343730 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 52.591369 ], [ 78.750000, 52.343730 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.944275, 50.812877 ], [ 83.380737, 51.070743 ], [ 83.932800, 50.890907 ], [ 84.416199, 50.312146 ], [ 85.113831, 50.118817 ], [ 85.539551, 49.694285 ], [ 86.827698, 49.827353 ], [ 87.357788, 49.215803 ], [ 87.019958, 48.922499 ], [ 86.855164, 48.777913 ], [ 78.530273, 48.777913 ], [ 78.530273, 52.591369 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 48.777913 ], [ 87.942810, 48.777913 ], [ 87.890625, 48.922499 ], [ 87.750549, 49.298263 ], [ 88.805237, 49.471694 ], [ 90.000000, 50.014799 ], [ 90.219727, 50.113533 ], [ 90.219727, 48.777913 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 50.113533 ], [ 90.219727, 48.777913 ], [ 87.942810, 48.777913 ], [ 87.890625, 48.922499 ], [ 87.750549, 49.298263 ], [ 88.805237, 49.471694 ], [ 90.000000, 50.014799 ], [ 90.219727, 50.113533 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.890625, 48.922499 ], [ 87.942810, 48.777913 ], [ 86.855164, 48.777913 ], [ 87.019958, 48.922499 ], [ 87.357788, 49.215803 ], [ 87.750549, 49.298263 ], [ 87.890625, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.750549, 49.298263 ], [ 87.890625, 48.922499 ], [ 87.942810, 48.777913 ], [ 86.855164, 48.777913 ], [ 87.019958, 48.922499 ], [ 87.357788, 49.215803 ], [ 87.750549, 49.298263 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 55.652798 ], [ 78.530273, 55.652798 ], [ 78.530273, 61.710706 ], [ 90.219727, 61.710706 ], [ 90.219727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 61.710706 ], [ 90.219727, 55.652798 ], [ 78.530273, 55.652798 ], [ 78.530273, 61.710706 ], [ 90.219727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 61.501734 ], [ 78.530273, 61.501734 ], [ 78.530273, 66.600676 ], [ 90.219727, 66.600676 ], [ 90.219727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 66.600676 ], [ 90.219727, 61.501734 ], [ 78.530273, 61.501734 ], [ 78.530273, 66.600676 ], [ 90.219727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 66.425537 ], [ 78.530273, 66.425537 ], [ 78.530273, 70.685421 ], [ 90.219727, 70.685421 ], [ 90.219727, 66.425537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 70.685421 ], [ 90.219727, 66.425537 ], [ 78.530273, 66.425537 ], [ 78.530273, 70.685421 ], [ 90.219727, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 70.539543 ], [ 78.530273, 70.539543 ], [ 78.530273, 72.292409 ], [ 78.750000, 72.298256 ], [ 79.650879, 72.320791 ], [ 81.499329, 71.750733 ], [ 80.609436, 72.583295 ], [ 80.510559, 73.648679 ], [ 82.249146, 73.850050 ], [ 84.655151, 73.806447 ], [ 86.822205, 73.936915 ], [ 86.693115, 74.019543 ], [ 86.599731, 74.079925 ], [ 90.219727, 74.079925 ], [ 90.219727, 70.539543 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 74.079925 ], [ 90.219727, 70.539543 ], [ 78.530273, 70.539543 ], [ 78.530273, 72.292409 ], [ 78.750000, 72.298256 ], [ 79.650879, 72.320791 ], [ 81.499329, 71.750733 ], [ 80.609436, 72.583295 ], [ 80.510559, 73.648679 ], [ 82.249146, 73.850050 ], [ 84.655151, 73.806447 ], [ 86.822205, 73.936915 ], [ 86.693115, 74.019543 ], [ 86.599731, 74.079925 ], [ 90.219727, 74.079925 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 73.958939 ], [ 86.786499, 73.958939 ], [ 86.693115, 74.019543 ], [ 86.009216, 74.460399 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.144299 ], [ 90.000000, 75.575362 ], [ 90.219727, 75.630677 ], [ 90.219727, 73.958939 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 75.630677 ], [ 90.219727, 73.958939 ], [ 86.786499, 73.958939 ], [ 86.693115, 74.019543 ], [ 86.009216, 74.460399 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.144299 ], [ 90.000000, 75.575362 ], [ 90.219727, 75.630677 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -85.070048 ], [ 89.780273, -85.070048 ], [ 89.780273, -83.956169 ], [ 101.469727, -83.956169 ], [ 101.469727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -83.956169 ], [ 101.469727, -85.070048 ], [ 89.780273, -85.070048 ], [ 89.780273, -83.956169 ], [ 101.469727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -84.002262 ], [ 89.780273, -84.002262 ], [ 89.780273, -82.648222 ], [ 101.469727, -82.648222 ], [ 101.469727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -82.648222 ], [ 101.469727, -84.002262 ], [ 89.780273, -84.002262 ], [ 89.780273, -82.648222 ], [ 101.469727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -82.704241 ], [ 89.780273, -82.704241 ], [ 89.780273, -81.059130 ], [ 101.469727, -81.059130 ], [ 101.469727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -81.059130 ], [ 101.469727, -82.704241 ], [ 89.780273, -82.704241 ], [ 89.780273, -81.059130 ], [ 101.469727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -81.127169 ], [ 89.780273, -81.127169 ], [ 89.780273, -79.129976 ], [ 101.469727, -79.129976 ], [ 101.469727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -79.129976 ], [ 101.469727, -81.127169 ], [ 89.780273, -81.127169 ], [ 89.780273, -79.129976 ], [ 101.469727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -79.212538 ], [ 89.780273, -79.212538 ], [ 89.780273, -76.790701 ], [ 101.469727, -76.790701 ], [ 101.469727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -76.790701 ], [ 101.469727, -79.212538 ], [ 89.780273, -79.212538 ], [ 89.780273, -76.790701 ], [ 101.469727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -76.890745 ], [ 89.780273, -76.890745 ], [ 89.780273, -73.958939 ], [ 101.469727, -73.958939 ], [ 101.469727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -73.958939 ], [ 101.469727, -76.890745 ], [ 89.780273, -76.890745 ], [ 89.780273, -73.958939 ], [ 101.469727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -74.079925 ], [ 89.780273, -74.079925 ], [ 89.780273, -70.539543 ], [ 101.469727, -70.539543 ], [ 101.469727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -70.539543 ], [ 101.469727, -74.079925 ], [ 89.780273, -74.079925 ], [ 89.780273, -70.539543 ], [ 101.469727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -70.685421 ], [ 89.780273, -70.685421 ], [ 89.780273, -67.158230 ], [ 90.000000, -67.176348 ], [ 90.628967, -67.228496 ], [ 91.587524, -67.111272 ], [ 92.606506, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.111272 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.385318 ], [ 96.679688, -67.247624 ], [ 97.759094, -67.247624 ], [ 98.679199, -67.111272 ], [ 99.717407, -67.247624 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.582126 ], [ 101.063232, -66.513260 ], [ 101.282959, -66.425537 ], [ 101.469727, -66.425537 ], [ 101.469727, -70.685421 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -66.425537 ], [ 101.469727, -70.685421 ], [ 89.780273, -70.685421 ], [ 89.780273, -67.158230 ], [ 90.000000, -67.176348 ], [ 90.628967, -67.228496 ], [ 91.587524, -67.111272 ], [ 92.606506, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.111272 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.385318 ], [ 96.679688, -67.247624 ], [ 97.759094, -67.247624 ], [ 98.679199, -67.111272 ], [ 99.717407, -67.247624 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.582126 ], [ 101.063232, -66.513260 ], [ 101.282959, -66.425537 ], [ 101.469727, -66.425537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -66.600676 ], [ 100.862732, -66.600676 ], [ 100.892944, -66.582126 ], [ 101.063232, -66.513260 ], [ 101.469727, -66.350730 ], [ 101.469727, -66.600676 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -66.350730 ], [ 101.469727, -66.600676 ], [ 100.862732, -66.600676 ], [ 100.892944, -66.582126 ], [ 101.063232, -66.513260 ], [ 101.469727, -66.350730 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -2.874465 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 100.901184, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.184021 ], [ 99.247742, 0.219726 ], [ 101.469727, 0.219726 ], [ 101.469727, -2.874465 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 0.219726 ], [ 101.469727, -2.874465 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 100.901184, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.184021 ], [ 99.247742, 0.219726 ], [ 101.469727, 0.219726 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.036255, 10.962764 ], [ 98.552856, 9.933682 ], [ 98.456726, 10.676803 ], [ 98.657227, 11.178402 ], [ 98.742371, 11.393879 ], [ 99.288940, 11.393879 ], [ 99.036255, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.288940, 11.393879 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.933682 ], [ 98.456726, 10.676803 ], [ 98.657227, 11.178402 ], [ 99.288940, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.599304, 11.178402 ], [ 99.151611, 9.963440 ], [ 99.220276, 9.240382 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.295752 ], [ 100.458984, 7.430560 ], [ 101.016541, 6.858259 ], [ 101.250000, 6.814626 ], [ 101.469727, 6.770989 ], [ 101.469727, 5.752640 ], [ 101.250000, 5.711647 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.258484, 6.645511 ], [ 100.085449, 6.465422 ], [ 99.689941, 6.850078 ], [ 99.516907, 7.346123 ], [ 98.986816, 7.909632 ], [ 98.503418, 8.382714 ], [ 98.338623, 7.795357 ], [ 98.149109, 8.350106 ], [ 98.258972, 8.974610 ], [ 98.552856, 9.933682 ], [ 99.036255, 10.962764 ], [ 99.288940, 11.393879 ], [ 99.678955, 11.393879 ], [ 99.599304, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.678955, 11.393879 ], [ 99.599304, 11.178402 ], [ 99.151611, 9.963440 ], [ 99.220276, 9.240382 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.295752 ], [ 100.458984, 7.430560 ], [ 101.016541, 6.858259 ], [ 101.250000, 6.814626 ], [ 101.469727, 6.770989 ], [ 101.469727, 5.752640 ], [ 101.250000, 5.711647 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.258484, 6.645511 ], [ 100.085449, 6.465422 ], [ 99.689941, 6.850078 ], [ 99.516907, 7.346123 ], [ 98.986816, 7.909632 ], [ 98.503418, 8.382714 ], [ 98.338623, 7.795357 ], [ 98.149109, 8.350106 ], [ 98.258972, 8.974610 ], [ 98.552856, 9.933682 ], [ 99.036255, 10.962764 ], [ 99.288940, 11.393879 ], [ 99.678955, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.711647 ], [ 101.469727, 5.752640 ], [ 101.469727, 2.709866 ], [ 101.390076, 2.761991 ], [ 101.271973, 3.272146 ], [ 101.250000, 3.299566 ], [ 100.695190, 3.940981 ], [ 100.555115, 4.768047 ], [ 100.195312, 5.312501 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.465422 ], [ 100.258484, 6.645511 ], [ 101.074219, 6.206090 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.258484, 6.645511 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.711647 ], [ 101.469727, 5.752640 ], [ 101.469727, 2.709866 ], [ 101.390076, 2.761991 ], [ 101.271973, 3.272146 ], [ 101.250000, 3.299566 ], [ 100.695190, 3.940981 ], [ 100.555115, 4.768047 ], [ 100.195312, 5.312501 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.465422 ], [ 100.258484, 6.645511 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.935364, 5.441022 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.140625, 3.592919 ], [ 99.692688, 3.176167 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.092430 ], [ 101.469727, 2.089685 ], [ 101.469727, -0.219726 ], [ 99.684448, -0.219726 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.184021 ], [ 98.967590, 1.043643 ], [ 98.599548, 1.826168 ], [ 97.698669, 2.454693 ], [ 97.176819, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.380554, 4.973296 ], [ 95.292664, 5.482034 ], [ 95.935364, 5.441022 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.292664, 5.482034 ], [ 95.935364, 5.441022 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.140625, 3.592919 ], [ 99.692688, 3.176167 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.092430 ], [ 101.469727, 2.089685 ], [ 101.469727, -0.219726 ], [ 99.684448, -0.219726 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.184021 ], [ 98.967590, 1.043643 ], [ 98.599548, 1.826168 ], [ 97.698669, 2.454693 ], [ 97.176819, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.380554, 4.973296 ], [ 95.292664, 5.482034 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.672424, 22.042367 ], [ 92.636719, 22.146708 ], [ 92.886658, 22.146708 ], [ 92.672424, 22.042367 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.886658, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.636719, 22.146708 ], [ 92.886658, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.672424, 22.042367 ], [ 92.666931, 21.943046 ], [ 92.650452, 21.325198 ], [ 92.301636, 21.476073 ], [ 92.367554, 20.671336 ], [ 92.081909, 21.194655 ], [ 92.024231, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.848450, 22.146708 ], [ 92.636719, 22.146708 ], [ 92.672424, 22.042367 ] ] ], [ [ [ 90.271912, 21.838555 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.958330 ], [ 89.780273, 22.146708 ], [ 90.444946, 22.146708 ], [ 90.329590, 21.943046 ], [ 90.271912, 21.838555 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.636719, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.666931, 21.943046 ], [ 92.650452, 21.325198 ], [ 92.301636, 21.476073 ], [ 92.367554, 20.671336 ], [ 92.081909, 21.194655 ], [ 92.024231, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.848450, 22.146708 ], [ 92.636719, 22.146708 ] ] ], [ [ [ 90.444946, 22.146708 ], [ 90.329590, 21.943046 ], [ 90.271912, 21.838555 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.958330 ], [ 89.780273, 22.146708 ], [ 90.444946, 22.146708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 21.194655 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.253542 ], [ 101.178589, 21.437730 ], [ 101.148376, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.118722 ], [ 99.247742, 22.146708 ], [ 101.469727, 22.146708 ], [ 101.469727, 21.194655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 22.146708 ], [ 101.469727, 21.194655 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.253542 ], [ 101.178589, 21.437730 ], [ 101.148376, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.118722 ], [ 99.247742, 22.146708 ], [ 101.469727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.239502, 22.118722 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.148376, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.115662, 20.419291 ], [ 99.541626, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.709829 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.901672, 16.180386 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.429260, 14.623451 ], [ 99.096680, 13.830079 ], [ 99.209290, 13.269353 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.162598, 11.178402 ], [ 99.036255, 10.962764 ], [ 98.569336, 10.962764 ], [ 98.657227, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.124955 ], [ 98.102417, 13.640649 ], [ 97.775574, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.428182 ], [ 95.366821, 15.715595 ], [ 94.806519, 15.805468 ], [ 94.188538, 16.040534 ], [ 94.531860, 17.279841 ], [ 94.323120, 18.213698 ], [ 93.540344, 19.368159 ], [ 93.661194, 19.727928 ], [ 93.076172, 19.857144 ], [ 92.367554, 20.671336 ], [ 92.301636, 21.476073 ], [ 92.650452, 21.325198 ], [ 92.666931, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.886658, 22.146708 ], [ 99.247742, 22.146708 ], [ 99.239502, 22.118722 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.247742, 22.146708 ], [ 99.239502, 22.118722 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.148376, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.115662, 20.419291 ], [ 99.541626, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.709829 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.901672, 16.180386 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.429260, 14.623451 ], [ 99.096680, 13.830079 ], [ 99.209290, 13.269353 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.162598, 11.178402 ], [ 99.036255, 10.962764 ], [ 98.569336, 10.962764 ], [ 98.657227, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.124955 ], [ 98.102417, 13.640649 ], [ 97.775574, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.428182 ], [ 95.366821, 15.715595 ], [ 94.806519, 15.805468 ], [ 94.188538, 16.040534 ], [ 94.531860, 17.279841 ], [ 94.323120, 18.213698 ], [ 93.540344, 19.368159 ], [ 93.661194, 19.727928 ], [ 93.076172, 19.857144 ], [ 92.367554, 20.671336 ], [ 92.301636, 21.476073 ], [ 92.650452, 21.325198 ], [ 92.666931, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.886658, 22.146708 ], [ 99.247742, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.194655 ], [ 101.469727, 17.748687 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.334470 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.466592 ], [ 100.604553, 19.510609 ], [ 100.546875, 20.110102 ], [ 100.115662, 20.419291 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.250000, 21.253542 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.178589, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.469727, 17.748687 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.334470 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.466592 ], [ 100.604553, 19.510609 ], [ 100.546875, 20.110102 ], [ 100.115662, 20.419291 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 20.110102 ], [ 100.604553, 19.510609 ], [ 101.250000, 19.466592 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.334470 ], [ 101.035767, 18.409261 ], [ 101.057739, 17.513106 ], [ 101.469727, 17.748687 ], [ 101.469727, 12.645698 ], [ 101.250000, 12.640338 ], [ 100.829773, 12.629618 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.408322 ], [ 100.016785, 12.307802 ], [ 99.599304, 11.178402 ], [ 99.519653, 10.962764 ], [ 99.036255, 10.962764 ], [ 99.162598, 11.178402 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.209290, 13.269353 ], [ 99.096680, 13.830079 ], [ 98.429260, 14.623451 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.901672, 16.180386 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.709829 ], [ 98.959351, 19.753779 ], [ 99.541626, 20.187457 ], [ 100.115662, 20.419291 ], [ 100.546875, 20.110102 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.419291 ], [ 100.546875, 20.110102 ], [ 100.604553, 19.510609 ], [ 101.250000, 19.466592 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.334470 ], [ 101.035767, 18.409261 ], [ 101.057739, 17.513106 ], [ 101.469727, 17.748687 ], [ 101.469727, 12.645698 ], [ 101.250000, 12.640338 ], [ 100.829773, 12.629618 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.408322 ], [ 100.016785, 12.307802 ], [ 99.599304, 11.178402 ], [ 99.519653, 10.962764 ], [ 99.036255, 10.962764 ], [ 99.162598, 11.178402 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.209290, 13.269353 ], [ 99.096680, 13.830079 ], [ 98.429260, 14.623451 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.901672, 16.180386 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.709829 ], [ 98.959351, 19.753779 ], [ 99.541626, 20.187457 ], [ 100.115662, 20.419291 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.586304, 28.832644 ], [ 96.248474, 28.413144 ], [ 97.325134, 28.263263 ], [ 97.402039, 27.882784 ], [ 97.050476, 27.700552 ], [ 97.132874, 27.086028 ], [ 96.418762, 27.266837 ], [ 95.122375, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.600525, 25.162687 ], [ 94.551086, 24.676970 ], [ 94.106140, 23.853186 ], [ 93.323364, 24.079067 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.672424, 22.042367 ], [ 92.145081, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.705627, 22.986210 ], [ 91.156311, 23.503552 ], [ 91.466675, 24.074051 ], [ 91.914368, 24.131715 ], [ 92.375793, 24.978589 ], [ 91.799011, 25.147771 ], [ 90.870667, 25.132852 ], [ 90.000000, 25.262085 ], [ 89.920349, 25.272020 ], [ 89.832458, 25.965453 ], [ 89.780273, 25.972861 ], [ 89.780273, 26.730893 ], [ 90.000000, 26.787299 ], [ 90.370789, 26.877981 ], [ 91.216736, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.101135, 27.454665 ], [ 91.694641, 27.773481 ], [ 92.502136, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.279212 ], [ 95.402527, 29.032158 ], [ 96.116638, 29.453948 ], [ 96.586304, 28.832644 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.116638, 29.453948 ], [ 96.586304, 28.832644 ], [ 96.248474, 28.413144 ], [ 97.325134, 28.263263 ], [ 97.402039, 27.882784 ], [ 97.050476, 27.700552 ], [ 97.132874, 27.086028 ], [ 96.418762, 27.266837 ], [ 95.122375, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.600525, 25.162687 ], [ 94.551086, 24.676970 ], [ 94.106140, 23.853186 ], [ 93.323364, 24.079067 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.672424, 22.042367 ], [ 92.145081, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.705627, 22.986210 ], [ 91.156311, 23.503552 ], [ 91.466675, 24.074051 ], [ 91.914368, 24.131715 ], [ 92.375793, 24.978589 ], [ 91.799011, 25.147771 ], [ 90.870667, 25.132852 ], [ 90.000000, 25.262085 ], [ 89.920349, 25.272020 ], [ 89.832458, 25.965453 ], [ 89.780273, 25.972861 ], [ 89.780273, 26.730893 ], [ 90.000000, 26.787299 ], [ 90.370789, 26.877981 ], [ 91.216736, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.101135, 27.454665 ], [ 91.694641, 27.773481 ], [ 92.502136, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.279212 ], [ 95.402527, 29.032158 ], [ 96.116638, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.727844, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.694641, 27.773481 ], [ 92.101135, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.216736, 26.809364 ], [ 90.370789, 26.877981 ], [ 90.000000, 26.787299 ], [ 89.780273, 26.730893 ], [ 89.780273, 28.188244 ], [ 90.000000, 28.292289 ], [ 90.013733, 28.297126 ], [ 90.727844, 28.067133 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.013733, 28.297126 ], [ 90.727844, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.694641, 27.773481 ], [ 92.101135, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.216736, 26.809364 ], [ 90.370789, 26.877981 ], [ 90.000000, 26.787299 ], [ 89.780273, 26.730893 ], [ 89.780273, 28.188244 ], [ 90.000000, 28.292289 ], [ 90.013733, 28.297126 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.832458, 25.965453 ], [ 89.920349, 25.272020 ], [ 90.000000, 25.262085 ], [ 90.870667, 25.132852 ], [ 91.799011, 25.147771 ], [ 92.375793, 24.978589 ], [ 91.914368, 24.131715 ], [ 91.466675, 24.074051 ], [ 91.156311, 23.503552 ], [ 91.705627, 22.986210 ], [ 91.867676, 23.624395 ], [ 92.145081, 23.629427 ], [ 92.672424, 22.042367 ], [ 92.666931, 21.943046 ], [ 92.661438, 21.739091 ], [ 92.007751, 21.739091 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.184862 ], [ 91.414490, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.585022, 22.393253 ], [ 90.329590, 21.943046 ], [ 90.271912, 21.838555 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.958330 ], [ 89.780273, 25.972861 ], [ 89.832458, 25.965453 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.780273, 25.972861 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.272020 ], [ 90.000000, 25.262085 ], [ 90.870667, 25.132852 ], [ 91.799011, 25.147771 ], [ 92.375793, 24.978589 ], [ 91.914368, 24.131715 ], [ 91.466675, 24.074051 ], [ 91.156311, 23.503552 ], [ 91.705627, 22.986210 ], [ 91.867676, 23.624395 ], [ 92.145081, 23.629427 ], [ 92.672424, 22.042367 ], [ 92.666931, 21.943046 ], [ 92.661438, 21.739091 ], [ 92.007751, 21.739091 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.184862 ], [ 91.414490, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.585022, 22.393253 ], [ 90.329590, 21.943046 ], [ 90.271912, 21.838555 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.958330 ], [ 89.780273, 25.972861 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 21.739091 ], [ 101.153870, 21.739091 ], [ 101.148376, 21.851302 ], [ 100.862732, 21.739091 ], [ 99.992065, 21.739091 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.118722 ], [ 99.530640, 22.950806 ], [ 98.896179, 23.142886 ], [ 98.659973, 24.064020 ], [ 97.602539, 23.898394 ], [ 97.723389, 25.085599 ], [ 98.670959, 25.920996 ], [ 98.709412, 26.745610 ], [ 98.681946, 27.510707 ], [ 98.245239, 27.749177 ], [ 97.910156, 28.338230 ], [ 97.325134, 28.263263 ], [ 96.248474, 28.413144 ], [ 96.586304, 28.832644 ], [ 96.116638, 29.453948 ], [ 95.402527, 29.032158 ], [ 94.564819, 29.279212 ], [ 93.411255, 28.642389 ], [ 92.502136, 27.897349 ], [ 91.694641, 27.773481 ], [ 91.257935, 28.042895 ], [ 90.727844, 28.067133 ], [ 90.013733, 28.297126 ], [ 90.000000, 28.292289 ], [ 89.780273, 28.188244 ], [ 89.780273, 32.138409 ], [ 101.469727, 32.138409 ], [ 101.469727, 21.739091 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 32.138409 ], [ 101.469727, 21.739091 ], [ 101.153870, 21.739091 ], [ 101.148376, 21.851302 ], [ 100.862732, 21.739091 ], [ 99.992065, 21.739091 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.118722 ], [ 99.530640, 22.950806 ], [ 98.896179, 23.142886 ], [ 98.659973, 24.064020 ], [ 97.602539, 23.898394 ], [ 97.723389, 25.085599 ], [ 98.670959, 25.920996 ], [ 98.709412, 26.745610 ], [ 98.681946, 27.510707 ], [ 98.245239, 27.749177 ], [ 97.910156, 28.338230 ], [ 97.325134, 28.263263 ], [ 96.248474, 28.413144 ], [ 96.586304, 28.832644 ], [ 96.116638, 29.453948 ], [ 95.402527, 29.032158 ], [ 94.564819, 29.279212 ], [ 93.411255, 28.642389 ], [ 92.502136, 27.897349 ], [ 91.694641, 27.773481 ], [ 91.257935, 28.042895 ], [ 90.727844, 28.067133 ], [ 90.013733, 28.297126 ], [ 90.000000, 28.292289 ], [ 89.780273, 28.188244 ], [ 89.780273, 32.138409 ], [ 101.469727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.148376, 21.851302 ], [ 101.153870, 21.739091 ], [ 100.862732, 21.739091 ], [ 101.148376, 21.851302 ] ] ], [ [ [ 98.245239, 27.749177 ], [ 98.681946, 27.510707 ], [ 98.709412, 26.745610 ], [ 98.670959, 25.920996 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.898394 ], [ 98.659973, 24.064020 ], [ 98.896179, 23.142886 ], [ 99.530640, 22.950806 ], [ 99.239502, 22.118722 ], [ 99.585571, 21.943046 ], [ 99.992065, 21.739091 ], [ 92.661438, 21.739091 ], [ 92.666931, 21.943046 ], [ 92.672424, 22.042367 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.079067 ], [ 94.106140, 23.853186 ], [ 94.551086, 24.676970 ], [ 94.600525, 25.162687 ], [ 95.152588, 26.002487 ], [ 95.122375, 26.573790 ], [ 96.418762, 27.266837 ], [ 97.132874, 27.086028 ], [ 97.050476, 27.700552 ], [ 97.402039, 27.882784 ], [ 97.325134, 28.263263 ], [ 97.910156, 28.338230 ], [ 98.245239, 27.749177 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.749177 ], [ 98.681946, 27.510707 ], [ 98.709412, 26.745610 ], [ 98.670959, 25.920996 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.898394 ], [ 98.659973, 24.064020 ], [ 98.896179, 23.142886 ], [ 99.530640, 22.950806 ], [ 99.239502, 22.118722 ], [ 99.585571, 21.943046 ], [ 99.992065, 21.739091 ], [ 92.661438, 21.739091 ], [ 92.666931, 21.943046 ], [ 92.672424, 22.042367 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.079067 ], [ 94.106140, 23.853186 ], [ 94.551086, 24.676970 ], [ 94.600525, 25.162687 ], [ 95.152588, 26.002487 ], [ 95.122375, 26.573790 ], [ 96.418762, 27.266837 ], [ 97.132874, 27.086028 ], [ 97.050476, 27.700552 ], [ 97.402039, 27.882784 ], [ 97.325134, 28.263263 ], [ 97.910156, 28.338230 ] ] ], [ [ [ 101.153870, 21.739091 ], [ 100.862732, 21.739091 ], [ 101.148376, 21.851302 ], [ 101.153870, 21.739091 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 31.765537 ], [ 89.780273, 31.765537 ], [ 89.780273, 41.145570 ], [ 101.469727, 41.145570 ], [ 101.469727, 31.765537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 41.145570 ], [ 101.469727, 31.765537 ], [ 89.780273, 31.765537 ], [ 89.780273, 41.145570 ], [ 101.469727, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 42.571287 ], [ 101.250000, 42.603642 ], [ 100.843506, 42.664261 ], [ 99.514160, 42.524748 ], [ 97.451477, 42.749029 ], [ 96.347351, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.243231 ], [ 94.688416, 44.353314 ], [ 93.479919, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.585022, 45.721522 ], [ 90.969543, 46.888355 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.770714 ], [ 89.780273, 47.829752 ], [ 89.780273, 49.066668 ], [ 101.469727, 49.066668 ], [ 101.469727, 42.571287 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 49.066668 ], [ 101.469727, 42.571287 ], [ 101.250000, 42.603642 ], [ 100.843506, 42.664261 ], [ 99.514160, 42.524748 ], [ 97.451477, 42.749029 ], [ 96.347351, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.243231 ], [ 94.688416, 44.353314 ], [ 93.479919, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.585022, 45.721522 ], [ 90.969543, 46.888355 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.770714 ], [ 89.780273, 47.829752 ], [ 89.780273, 49.066668 ], [ 101.469727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 47.770714 ], [ 90.280151, 47.694974 ], [ 90.969543, 46.888355 ], [ 90.585022, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.479919, 44.976457 ], [ 94.688416, 44.353314 ], [ 95.306396, 44.243231 ], [ 95.762329, 43.321181 ], [ 96.347351, 42.726839 ], [ 97.451477, 42.749029 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.664261 ], [ 101.250000, 42.603642 ], [ 101.469727, 42.571287 ], [ 101.469727, 40.813809 ], [ 89.780273, 40.813809 ], [ 89.780273, 47.829752 ], [ 90.000000, 47.770714 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.780273, 47.829752 ], [ 90.000000, 47.770714 ], [ 90.280151, 47.694974 ], [ 90.969543, 46.888355 ], [ 90.585022, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.479919, 44.976457 ], [ 94.688416, 44.353314 ], [ 95.306396, 44.243231 ], [ 95.762329, 43.321181 ], [ 96.347351, 42.726839 ], [ 97.451477, 42.749029 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.664261 ], [ 101.250000, 42.603642 ], [ 101.469727, 42.571287 ], [ 101.469727, 40.813809 ], [ 89.780273, 40.813809 ], [ 89.780273, 47.829752 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 51.390637 ], [ 101.250000, 51.438601 ], [ 100.887451, 51.517289 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.047423 ], [ 97.825012, 51.012027 ], [ 98.231506, 50.422519 ], [ 97.259216, 49.726255 ], [ 95.811768, 49.977722 ], [ 94.814758, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.232971, 50.802463 ], [ 90.711365, 50.333190 ], [ 90.000000, 50.014799 ], [ 89.780273, 49.915862 ], [ 89.780273, 55.899956 ], [ 101.469727, 55.899956 ], [ 101.469727, 51.390637 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 55.899956 ], [ 101.469727, 51.390637 ], [ 101.250000, 51.438601 ], [ 100.887451, 51.517289 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.047423 ], [ 97.825012, 51.012027 ], [ 98.231506, 50.422519 ], [ 97.259216, 49.726255 ], [ 95.811768, 49.977722 ], [ 94.814758, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.232971, 50.802463 ], [ 90.711365, 50.333190 ], [ 90.000000, 50.014799 ], [ 89.780273, 49.915862 ], [ 89.780273, 55.899956 ], [ 101.469727, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.981079, 51.635067 ], [ 100.887451, 51.517289 ], [ 101.250000, 51.438601 ], [ 101.469727, 51.390637 ], [ 101.469727, 48.777913 ], [ 89.780273, 48.777913 ], [ 89.780273, 49.915862 ], [ 90.000000, 50.014799 ], [ 90.711365, 50.333190 ], [ 92.232971, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.814758, 50.014799 ], [ 95.811768, 49.977722 ], [ 97.259216, 49.726255 ], [ 98.231506, 50.422519 ], [ 97.825012, 51.012027 ], [ 98.860474, 52.047423 ], [ 99.981079, 51.635067 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.047423 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.517289 ], [ 101.250000, 51.438601 ], [ 101.469727, 51.390637 ], [ 101.469727, 48.777913 ], [ 89.780273, 48.777913 ], [ 89.780273, 49.915862 ], [ 90.000000, 50.014799 ], [ 90.711365, 50.333190 ], [ 92.232971, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.814758, 50.014799 ], [ 95.811768, 49.977722 ], [ 97.259216, 49.726255 ], [ 98.231506, 50.422519 ], [ 97.825012, 51.012027 ], [ 98.860474, 52.047423 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 55.652798 ], [ 89.780273, 55.652798 ], [ 89.780273, 61.710706 ], [ 101.469727, 61.710706 ], [ 101.469727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 61.710706 ], [ 101.469727, 55.652798 ], [ 89.780273, 55.652798 ], [ 89.780273, 61.710706 ], [ 101.469727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 61.501734 ], [ 89.780273, 61.501734 ], [ 89.780273, 66.600676 ], [ 101.469727, 66.600676 ], [ 101.469727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 66.600676 ], [ 101.469727, 61.501734 ], [ 89.780273, 61.501734 ], [ 89.780273, 66.600676 ], [ 101.469727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 66.425537 ], [ 89.780273, 66.425537 ], [ 89.780273, 70.685421 ], [ 101.469727, 70.685421 ], [ 101.469727, 66.425537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 70.685421 ], [ 101.469727, 66.425537 ], [ 89.780273, 66.425537 ], [ 89.780273, 70.685421 ], [ 101.469727, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 70.539543 ], [ 89.780273, 70.539543 ], [ 89.780273, 74.079925 ], [ 101.469727, 74.079925 ], [ 101.469727, 70.539543 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 74.079925 ], [ 101.469727, 70.539543 ], [ 89.780273, 70.539543 ], [ 89.780273, 74.079925 ], [ 101.469727, 74.079925 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 73.958939 ], [ 89.780273, 73.958939 ], [ 89.780273, 75.520525 ], [ 90.000000, 75.576046 ], [ 90.258179, 75.640217 ], [ 92.900391, 75.773797 ], [ 93.232727, 76.047254 ], [ 95.858459, 76.140327 ], [ 96.676941, 75.915521 ], [ 98.920898, 76.447482 ], [ 100.758362, 76.430738 ], [ 101.033020, 76.862059 ], [ 101.096191, 76.890745 ], [ 101.469727, 76.890745 ], [ 101.469727, 73.958939 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 76.890745 ], [ 101.469727, 73.958939 ], [ 89.780273, 73.958939 ], [ 89.780273, 75.520525 ], [ 90.000000, 75.576046 ], [ 90.258179, 75.640217 ], [ 92.900391, 75.773797 ], [ 93.232727, 76.047254 ], [ 95.858459, 76.140327 ], [ 96.676941, 75.915521 ], [ 98.920898, 76.447482 ], [ 100.758362, 76.430738 ], [ 101.033020, 76.862059 ], [ 101.096191, 76.890745 ], [ 101.469727, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.469727, 76.790701 ], [ 100.986328, 76.790701 ], [ 101.016541, 76.840816 ], [ 101.033020, 76.862059 ], [ 101.250000, 76.960334 ], [ 101.469727, 77.058501 ], [ 101.469727, 76.790701 ] ] ], [ [ [ 101.469727, 78.061989 ], [ 101.250000, 78.047209 ], [ 99.437256, 77.921418 ], [ 101.170349, 79.171335 ], [ 101.230774, 79.212538 ], [ 101.469727, 79.212538 ], [ 101.469727, 78.061989 ] ] ], [ [ [ 100.011292, 79.171335 ], [ 99.937134, 78.881177 ], [ 97.756348, 78.756551 ], [ 94.971313, 79.045225 ], [ 94.427490, 79.171335 ], [ 94.248962, 79.212538 ], [ 100.022278, 79.212538 ], [ 100.011292, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.469727, 77.058501 ], [ 101.469727, 76.790701 ], [ 100.986328, 76.790701 ], [ 101.016541, 76.840816 ], [ 101.033020, 76.862059 ], [ 101.250000, 76.960334 ], [ 101.469727, 77.058501 ] ] ], [ [ [ 101.469727, 79.212538 ], [ 101.469727, 78.061989 ], [ 101.250000, 78.047209 ], [ 99.437256, 77.921418 ], [ 101.170349, 79.171335 ], [ 101.230774, 79.212538 ], [ 101.469727, 79.212538 ] ] ], [ [ [ 100.022278, 79.212538 ], [ 100.011292, 79.171335 ], [ 99.937134, 78.881177 ], [ 97.756348, 78.756551 ], [ 94.971313, 79.045225 ], [ 94.427490, 79.171335 ], [ 94.248962, 79.212538 ], [ 100.022278, 79.212538 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.469727, 79.129976 ], [ 101.109924, 79.129976 ], [ 101.170349, 79.171335 ], [ 101.250000, 79.224868 ], [ 101.263733, 79.234107 ], [ 101.469727, 79.262800 ], [ 101.469727, 79.129976 ] ] ], [ [ [ 96.558838, 81.093214 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.011292, 79.171335 ], [ 100.000305, 79.129976 ], [ 94.606018, 79.129976 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.426828 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.341801 ], [ 93.776550, 81.024916 ], [ 94.748840, 81.127169 ], [ 96.424255, 81.127169 ], [ 96.558838, 81.093214 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.469727, 79.262800 ], [ 101.469727, 79.129976 ], [ 101.109924, 79.129976 ], [ 101.170349, 79.171335 ], [ 101.250000, 79.224868 ], [ 101.263733, 79.234107 ], [ 101.469727, 79.262800 ] ] ], [ [ [ 96.424255, 81.127169 ], [ 96.558838, 81.093214 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.011292, 79.171335 ], [ 100.000305, 79.129976 ], [ 94.606018, 79.129976 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.426828 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.341801 ], [ 93.776550, 81.024916 ], [ 94.748840, 81.127169 ], [ 96.424255, 81.127169 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.558838, 81.093214 ], [ 96.690674, 81.059130 ], [ 94.100647, 81.059130 ], [ 94.424744, 81.093214 ], [ 95.940857, 81.250438 ], [ 96.558838, 81.093214 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.940857, 81.250438 ], [ 96.558838, 81.093214 ], [ 96.690674, 81.059130 ], [ 94.100647, 81.059130 ], [ 94.424744, 81.093214 ], [ 95.940857, 81.250438 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -85.070048 ], [ 101.030273, -85.070048 ], [ 101.030273, -83.956169 ], [ 112.719727, -83.956169 ], [ 112.719727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -83.956169 ], [ 112.719727, -85.070048 ], [ 101.030273, -85.070048 ], [ 101.030273, -83.956169 ], [ 112.719727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -84.002262 ], [ 101.030273, -84.002262 ], [ 101.030273, -82.648222 ], [ 112.719727, -82.648222 ], [ 112.719727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -82.648222 ], [ 112.719727, -84.002262 ], [ 101.030273, -84.002262 ], [ 101.030273, -82.648222 ], [ 112.719727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -82.704241 ], [ 101.030273, -82.704241 ], [ 101.030273, -81.059130 ], [ 112.719727, -81.059130 ], [ 112.719727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -81.059130 ], [ 112.719727, -82.704241 ], [ 101.030273, -82.704241 ], [ 101.030273, -81.059130 ], [ 112.719727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -81.127169 ], [ 101.030273, -81.127169 ], [ 101.030273, -79.129976 ], [ 112.719727, -79.129976 ], [ 112.719727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -79.129976 ], [ 112.719727, -81.127169 ], [ 101.030273, -81.127169 ], [ 101.030273, -79.129976 ], [ 112.719727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -79.212538 ], [ 101.030273, -79.212538 ], [ 101.030273, -76.790701 ], [ 112.719727, -76.790701 ], [ 112.719727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -76.790701 ], [ 112.719727, -79.212538 ], [ 101.030273, -79.212538 ], [ 101.030273, -76.790701 ], [ 112.719727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -76.890745 ], [ 101.030273, -76.890745 ], [ 101.030273, -73.958939 ], [ 112.719727, -73.958939 ], [ 112.719727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -73.958939 ], [ 112.719727, -76.890745 ], [ 101.030273, -76.890745 ], [ 101.030273, -73.958939 ], [ 112.719727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -74.079925 ], [ 101.030273, -74.079925 ], [ 101.030273, -70.539543 ], [ 112.719727, -70.539543 ], [ 112.719727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -70.539543 ], [ 112.719727, -74.079925 ], [ 101.030273, -74.079925 ], [ 101.030273, -70.539543 ], [ 112.719727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, -66.513260 ], [ 106.180115, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.080750, -66.953727 ], [ 109.157410, -66.836246 ], [ 110.234070, -66.699737 ], [ 110.791626, -66.513260 ], [ 111.052551, -66.425537 ], [ 112.719727, -66.425537 ], [ 112.719727, -70.685421 ], [ 101.030273, -70.685421 ], [ 101.030273, -66.526392 ], [ 101.282959, -66.425537 ], [ 105.111694, -66.425537 ], [ 105.292969, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -66.425537 ], [ 112.719727, -70.685421 ], [ 101.030273, -70.685421 ], [ 101.030273, -66.526392 ], [ 101.282959, -66.425537 ], [ 105.111694, -66.425537 ], [ 105.292969, -66.513260 ], [ 106.180115, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.080750, -66.953727 ], [ 109.157410, -66.836246 ], [ 110.234070, -66.699737 ], [ 110.791626, -66.513260 ], [ 111.052551, -66.425537 ], [ 112.719727, -66.425537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.791626, -66.513260 ], [ 111.058044, -66.424439 ], [ 111.741943, -66.130520 ], [ 112.500000, -66.103832 ], [ 112.719727, -66.096043 ], [ 112.719727, -66.600676 ], [ 110.530701, -66.600676 ], [ 110.791626, -66.513260 ] ] ], [ [ [ 103.477478, -65.700128 ], [ 104.241028, -65.974443 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.474243, -66.600676 ], [ 101.030273, -66.600676 ], [ 101.030273, -66.526392 ], [ 101.576843, -66.307724 ], [ 102.832031, -65.563005 ], [ 103.477478, -65.700128 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.477478, -65.700128 ], [ 104.241028, -65.974443 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.474243, -66.600676 ], [ 101.030273, -66.600676 ], [ 101.030273, -66.526392 ], [ 101.576843, -66.307724 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.719727, -66.600676 ], [ 110.530701, -66.600676 ], [ 110.791626, -66.513260 ], [ 111.058044, -66.424439 ], [ 111.741943, -66.130520 ], [ 112.500000, -66.103832 ], [ 112.719727, -66.096043 ], [ 112.719727, -66.600676 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.262268, -5.954827 ], [ 108.069763, -6.345327 ], [ 108.484497, -6.421754 ], [ 108.621826, -6.776444 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.719727, -7.133598 ], [ 112.719727, -8.366410 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.369127 ], [ 111.519470, -8.301188 ], [ 110.585632, -8.121772 ], [ 109.426575, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.354295 ], [ 106.278992, -6.923700 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ], [ 107.262268, -5.954827 ] ] ], [ [ [ 103.837280, 0.107117 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.711346 ], [ 104.010315, -1.057374 ], [ 104.367371, -1.084835 ], [ 104.537659, -1.782244 ], [ 104.886475, -2.339438 ], [ 105.619812, -2.427252 ], [ 106.105957, -3.060982 ], [ 105.856018, -4.305330 ], [ 105.817566, -5.851010 ], [ 104.707947, -5.872868 ], [ 103.867493, -5.036227 ], [ 102.582092, -4.217682 ], [ 102.153625, -3.612107 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 101.030273, -2.240640 ], [ 101.030273, 0.219726 ], [ 103.647766, 0.219726 ], [ 103.837280, 0.107117 ] ] ], [ [ [ 112.719727, -3.277630 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.477782 ], [ 111.700745, -2.992413 ], [ 111.047058, -3.047268 ], [ 110.223083, -2.932069 ], [ 110.069275, -1.592812 ], [ 109.569397, -1.312751 ], [ 109.091492, -0.458674 ], [ 109.017334, 0.000000 ], [ 108.981628, 0.219726 ], [ 112.719727, 0.219726 ], [ 112.719727, -3.277630 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.262268, -5.954827 ], [ 108.069763, -6.345327 ], [ 108.484497, -6.421754 ], [ 108.621826, -6.776444 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.719727, -7.133598 ], [ 112.719727, -8.366410 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.369127 ], [ 111.519470, -8.301188 ], [ 110.585632, -8.121772 ], [ 109.426575, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.354295 ], [ 106.278992, -6.923700 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.647766, 0.219726 ], [ 103.837280, 0.107117 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.711346 ], [ 104.010315, -1.057374 ], [ 104.367371, -1.084835 ], [ 104.537659, -1.782244 ], [ 104.886475, -2.339438 ], [ 105.619812, -2.427252 ], [ 106.105957, -3.060982 ], [ 105.856018, -4.305330 ], [ 105.817566, -5.851010 ], [ 104.707947, -5.872868 ], [ 103.867493, -5.036227 ], [ 102.582092, -4.217682 ], [ 102.153625, -3.612107 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 101.030273, -2.240640 ], [ 101.030273, 0.219726 ], [ 103.647766, 0.219726 ] ] ], [ [ [ 112.719727, 0.219726 ], [ 112.719727, -3.277630 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.477782 ], [ 111.700745, -2.992413 ], [ 111.047058, -3.047268 ], [ 110.223083, -2.932069 ], [ 110.069275, -1.592812 ], [ 109.569397, -1.312751 ], [ 109.091492, -0.458674 ], [ 109.017334, 0.000000 ], [ 108.981628, 0.219726 ], [ 112.719727, 0.219726 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.620789, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.813049, 5.812757 ], [ 101.250000, 5.711647 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 101.030273, 6.230664 ], [ 101.030273, 6.858259 ], [ 101.620789, 6.740986 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 6.858259 ], [ 101.620789, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.813049, 5.812757 ], [ 101.250000, 5.711647 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 101.030273, 6.858259 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.577881, 11.178402 ], [ 108.363647, 11.008601 ], [ 107.218323, 10.366257 ], [ 106.402588, 9.533040 ], [ 105.155640, 8.600032 ], [ 104.793091, 9.243093 ], [ 105.075989, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.889951 ], [ 106.248779, 10.962764 ], [ 105.935669, 11.393879 ], [ 108.849792, 11.393879 ], [ 108.577881, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.849792, 11.393879 ], [ 108.577881, 11.178402 ], [ 108.363647, 11.008601 ], [ 107.218323, 10.366257 ], [ 106.402588, 9.533040 ], [ 105.155640, 8.600032 ], [ 104.793091, 9.243093 ], [ 105.075989, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.889951 ], [ 106.248779, 10.962764 ], [ 105.935669, 11.393879 ], [ 108.849792, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.076477, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.076477, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.719727, 1.474752 ], [ 112.500000, 1.436312 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.156921, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.827576, 1.340210 ], [ 109.662781, 2.007341 ], [ 110.396118, 1.664195 ], [ 111.167908, 1.850874 ], [ 111.368408, 2.698892 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.017098 ], [ 112.719727, 3.058239 ], [ 112.719727, 1.474752 ] ] ], [ [ [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.711647 ], [ 101.813049, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.961121, 5.525777 ], [ 103.378601, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.428040, 3.384566 ], [ 103.502197, 2.792168 ], [ 103.853760, 2.517805 ], [ 104.246521, 1.631249 ], [ 104.227295, 1.293530 ], [ 103.518677, 1.227628 ], [ 102.571106, 1.968912 ], [ 101.390076, 2.761991 ], [ 101.271973, 3.272146 ], [ 101.250000, 3.299566 ], [ 101.030273, 3.554541 ], [ 101.030273, 6.230664 ], [ 101.074219, 6.206090 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.719727, 3.058239 ], [ 112.719727, 1.474752 ], [ 112.500000, 1.436312 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.156921, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.827576, 1.340210 ], [ 109.662781, 2.007341 ], [ 110.396118, 1.664195 ], [ 111.167908, 1.850874 ], [ 111.368408, 2.698892 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.017098 ], [ 112.719727, 3.058239 ] ] ], [ [ [ 101.030273, 6.230664 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.711647 ], [ 101.813049, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.961121, 5.525777 ], [ 103.378601, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.428040, 3.384566 ], [ 103.502197, 2.792168 ], [ 103.853760, 2.517805 ], [ 104.246521, 1.631249 ], [ 104.227295, 1.293530 ], [ 103.518677, 1.227628 ], [ 102.571106, 1.968912 ], [ 101.390076, 2.761991 ], [ 101.271973, 3.272146 ], [ 101.250000, 3.299566 ], [ 101.030273, 3.554541 ], [ 101.030273, 6.230664 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.827576, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.156921, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.436312 ], [ 112.719727, 1.474752 ], [ 112.719727, -0.219726 ], [ 109.050293, -0.219726 ], [ 109.014587, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.342956 ], [ 109.662781, 2.007341 ], [ 109.827576, 1.340210 ] ] ], [ [ [ 101.250000, 2.092430 ], [ 101.656494, 2.084196 ], [ 102.496948, 1.400617 ], [ 103.076477, 0.563040 ], [ 103.837280, 0.107117 ], [ 103.782349, 0.000000 ], [ 103.675232, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.095175 ], [ 101.250000, 2.092430 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.662781, 2.007341 ], [ 109.827576, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.156921, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.436312 ], [ 112.719727, 1.474752 ], [ 112.719727, -0.219726 ], [ 109.050293, -0.219726 ], [ 109.014587, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.095175 ], [ 101.250000, 2.092430 ], [ 101.656494, 2.084196 ], [ 102.496948, 1.400617 ], [ 103.076477, 0.563040 ], [ 103.837280, 0.107117 ], [ 103.782349, 0.000000 ], [ 103.675232, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.095175 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.786133, 20.079150 ], [ 111.008606, 19.696900 ], [ 110.569153, 19.256701 ], [ 110.338440, 18.680073 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.508261 ], [ 108.624573, 19.368159 ], [ 109.118958, 19.823558 ], [ 110.209351, 20.102365 ], [ 110.786133, 20.079150 ] ] ], [ [ [ 112.719727, 21.869146 ], [ 112.500000, 21.790107 ], [ 111.843567, 21.552730 ], [ 110.783386, 21.399377 ], [ 110.442810, 20.342052 ], [ 109.888000, 20.282809 ], [ 109.627075, 21.010163 ], [ 109.863281, 21.396819 ], [ 108.520203, 21.716128 ], [ 108.047791, 21.552730 ], [ 107.042542, 21.813058 ], [ 106.888733, 21.943046 ], [ 106.649780, 22.146708 ], [ 112.719727, 22.146708 ], [ 112.719727, 21.869146 ] ] ], [ [ [ 101.802063, 21.176729 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.253542 ], [ 101.178589, 21.437730 ], [ 101.148376, 21.851302 ], [ 101.030273, 21.805408 ], [ 101.030273, 22.146708 ], [ 101.672974, 22.146708 ], [ 101.700439, 21.943046 ], [ 101.802063, 21.176729 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.079150 ], [ 111.008606, 19.696900 ], [ 110.569153, 19.256701 ], [ 110.338440, 18.680073 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.508261 ], [ 108.624573, 19.368159 ], [ 109.118958, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.719727, 22.146708 ], [ 112.719727, 21.869146 ], [ 112.500000, 21.790107 ], [ 111.843567, 21.552730 ], [ 110.783386, 21.399377 ], [ 110.442810, 20.342052 ], [ 109.888000, 20.282809 ], [ 109.627075, 21.010163 ], [ 109.863281, 21.396819 ], [ 108.520203, 21.716128 ], [ 108.047791, 21.552730 ], [ 107.042542, 21.813058 ], [ 106.888733, 21.943046 ], [ 106.649780, 22.146708 ], [ 112.719727, 22.146708 ] ] ], [ [ [ 101.672974, 22.146708 ], [ 101.700439, 21.943046 ], [ 101.802063, 21.176729 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.253542 ], [ 101.178589, 21.437730 ], [ 101.148376, 21.851302 ], [ 101.030273, 21.805408 ], [ 101.030273, 22.146708 ], [ 101.672974, 22.146708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.178589, 21.437730 ], [ 101.030273, 21.325198 ], [ 101.030273, 21.805408 ], [ 101.148376, 21.851302 ], [ 101.178589, 21.437730 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.148376, 21.851302 ], [ 101.178589, 21.437730 ], [ 101.030273, 21.325198 ], [ 101.030273, 21.805408 ], [ 101.148376, 21.851302 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.554626, 21.943046 ], [ 102.752380, 21.675296 ], [ 103.202820, 20.768955 ], [ 104.433289, 20.761250 ], [ 104.820557, 19.888140 ], [ 104.183350, 19.627066 ], [ 103.894958, 19.267073 ], [ 105.092468, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.553650, 16.604610 ], [ 107.311707, 15.911150 ], [ 107.564392, 15.204687 ], [ 107.380371, 14.203151 ], [ 106.495972, 14.572951 ], [ 106.042786, 13.883412 ], [ 105.216064, 14.275030 ], [ 105.542908, 14.724417 ], [ 105.586853, 15.572774 ], [ 104.776611, 16.443988 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.242395 ], [ 103.200073, 18.310203 ], [ 102.996826, 17.963058 ], [ 102.411804, 17.934316 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.623082 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.334470 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.466592 ], [ 101.030273, 19.482129 ], [ 101.030273, 21.325198 ], [ 101.178589, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.672974, 22.146708 ], [ 102.403564, 22.146708 ], [ 102.554626, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.403564, 22.146708 ], [ 102.554626, 21.943046 ], [ 102.752380, 21.675296 ], [ 103.202820, 20.768955 ], [ 104.433289, 20.761250 ], [ 104.820557, 19.888140 ], [ 104.183350, 19.627066 ], [ 103.894958, 19.267073 ], [ 105.092468, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.553650, 16.604610 ], [ 107.311707, 15.911150 ], [ 107.564392, 15.204687 ], [ 107.380371, 14.203151 ], [ 106.495972, 14.572951 ], [ 106.042786, 13.883412 ], [ 105.216064, 14.275030 ], [ 105.542908, 14.724417 ], [ 105.586853, 15.572774 ], [ 104.776611, 16.443988 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.242395 ], [ 103.200073, 18.310203 ], [ 102.996826, 17.963058 ], [ 102.411804, 17.934316 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.623082 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.334470 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.466592 ], [ 101.030273, 19.482129 ], [ 101.030273, 21.325198 ], [ 101.178589, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.672974, 22.146708 ], [ 102.403564, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.250000, 19.466592 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.334470 ], [ 101.035767, 18.409261 ], [ 101.057739, 17.513106 ], [ 101.250000, 17.623082 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.934316 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.242395 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.443988 ], [ 105.586853, 15.572774 ], [ 105.542908, 14.724417 ], [ 105.216064, 14.275030 ], [ 104.279480, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.345886, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.648378 ], [ 101.250000, 12.640338 ], [ 101.030273, 12.634978 ], [ 101.030273, 19.482129 ], [ 101.250000, 19.466592 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.482129 ], [ 101.250000, 19.466592 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.334470 ], [ 101.035767, 18.409261 ], [ 101.057739, 17.513106 ], [ 101.250000, 17.623082 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.934316 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.242395 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.443988 ], [ 105.586853, 15.572774 ], [ 105.542908, 14.724417 ], [ 105.216064, 14.275030 ], [ 104.279480, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.345886, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.648378 ], [ 101.250000, 12.640338 ], [ 101.030273, 12.634978 ], [ 101.030273, 19.482129 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.047791, 21.552730 ], [ 106.712952, 20.697031 ], [ 105.880737, 19.753779 ], [ 105.661011, 19.059522 ], [ 107.361145, 16.699340 ], [ 108.267517, 16.080125 ], [ 108.874512, 15.278886 ], [ 109.333191, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.577881, 11.178402 ], [ 108.363647, 11.008601 ], [ 108.281250, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.380371, 14.203151 ], [ 107.564392, 15.204687 ], [ 107.311707, 15.911150 ], [ 106.553650, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.092468, 18.667063 ], [ 103.894958, 19.267073 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.888140 ], [ 104.433289, 20.761250 ], [ 103.202820, 20.768955 ], [ 102.752380, 21.675296 ], [ 102.554626, 21.943046 ], [ 102.403564, 22.146708 ], [ 106.649780, 22.146708 ], [ 106.888733, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.649780, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.047791, 21.552730 ], [ 106.712952, 20.697031 ], [ 105.880737, 19.753779 ], [ 105.661011, 19.059522 ], [ 107.361145, 16.699340 ], [ 108.267517, 16.080125 ], [ 108.874512, 15.278886 ], [ 109.333191, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.577881, 11.178402 ], [ 108.363647, 11.008601 ], [ 108.281250, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.380371, 14.203151 ], [ 107.564392, 15.204687 ], [ 107.311707, 15.911150 ], [ 106.553650, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.092468, 18.667063 ], [ 103.894958, 19.267073 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.888140 ], [ 104.433289, 20.761250 ], [ 103.202820, 20.768955 ], [ 102.752380, 21.675296 ], [ 102.554626, 21.943046 ], [ 102.403564, 22.146708 ], [ 106.649780, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.380371, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.076477, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.345886, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.279480, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.042786, 13.883412 ], [ 106.495972, 14.572951 ], [ 107.380371, 14.203151 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.076477, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.345886, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.279480, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.042786, 13.883412 ], [ 106.495972, 14.572951 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 21.869146 ], [ 112.362671, 21.739091 ], [ 107.328186, 21.739091 ], [ 107.042542, 21.813058 ], [ 106.888733, 21.943046 ], [ 106.564636, 22.220463 ], [ 106.723938, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.328674, 23.352343 ], [ 104.474487, 22.819226 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.170105, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.697693, 21.943046 ], [ 101.725159, 21.739091 ], [ 101.153870, 21.739091 ], [ 101.148376, 21.851302 ], [ 101.030273, 21.805408 ], [ 101.030273, 32.138409 ], [ 112.719727, 32.138409 ], [ 112.719727, 21.869146 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 32.138409 ], [ 112.719727, 21.869146 ], [ 112.362671, 21.739091 ], [ 107.328186, 21.739091 ], [ 107.042542, 21.813058 ], [ 106.888733, 21.943046 ], [ 106.564636, 22.220463 ], [ 106.723938, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.328674, 23.352343 ], [ 104.474487, 22.819226 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.170105, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.697693, 21.943046 ], [ 101.725159, 21.739091 ], [ 101.153870, 21.739091 ], [ 101.148376, 21.851302 ], [ 101.030273, 21.805408 ], [ 101.030273, 32.138409 ], [ 112.719727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.153870, 21.739091 ], [ 101.030273, 21.739091 ], [ 101.030273, 21.805408 ], [ 101.148376, 21.851302 ], [ 101.153870, 21.739091 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.148376, 21.851302 ], [ 101.153870, 21.739091 ], [ 101.030273, 21.739091 ], [ 101.030273, 21.805408 ], [ 101.148376, 21.851302 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.554626, 21.943046 ], [ 102.702942, 21.739091 ], [ 101.725159, 21.739091 ], [ 101.697693, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.170105, 22.466878 ], [ 102.554626, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.170105, 22.466878 ], [ 102.554626, 21.943046 ], [ 102.702942, 21.739091 ], [ 101.725159, 21.739091 ], [ 101.697693, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.170105, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.809326, 22.978624 ], [ 106.723938, 22.796439 ], [ 106.564636, 22.220463 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 107.328186, 21.739091 ], [ 102.702942, 21.739091 ], [ 102.554626, 21.943046 ], [ 102.170105, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.819226 ], [ 105.328674, 23.352343 ], [ 105.809326, 22.978624 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.328674, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.723938, 22.796439 ], [ 106.564636, 22.220463 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 107.328186, 21.739091 ], [ 102.702942, 21.739091 ], [ 102.554626, 21.943046 ], [ 102.170105, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.819226 ], [ 105.328674, 23.352343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 31.765537 ], [ 101.030273, 31.765537 ], [ 101.030273, 41.145570 ], [ 112.719727, 41.145570 ], [ 112.719727, 31.765537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 41.145570 ], [ 112.719727, 31.765537 ], [ 101.030273, 31.765537 ], [ 101.030273, 41.145570 ], [ 112.719727, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 44.958968 ], [ 112.500000, 45.001709 ], [ 112.434082, 45.013360 ], [ 111.871033, 45.102608 ], [ 111.346436, 44.459270 ], [ 111.665039, 44.073774 ], [ 111.827087, 43.743321 ], [ 111.129456, 43.407043 ], [ 110.409851, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.482226 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.521179, 41.908409 ], [ 103.309937, 41.908409 ], [ 101.832275, 42.516651 ], [ 101.250000, 42.603642 ], [ 101.030273, 42.638000 ], [ 101.030273, 49.066668 ], [ 112.719727, 49.066668 ], [ 112.719727, 44.958968 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 49.066668 ], [ 112.719727, 44.958968 ], [ 112.500000, 45.001709 ], [ 112.434082, 45.013360 ], [ 111.871033, 45.102608 ], [ 111.346436, 44.459270 ], [ 111.665039, 44.073774 ], [ 111.827087, 43.743321 ], [ 111.129456, 43.407043 ], [ 110.409851, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.482226 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.521179, 41.908409 ], [ 103.309937, 41.908409 ], [ 101.832275, 42.516651 ], [ 101.250000, 42.603642 ], [ 101.030273, 42.638000 ], [ 101.030273, 49.066668 ], [ 112.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.434082, 45.013360 ], [ 112.500000, 45.001709 ], [ 112.719727, 44.958968 ], [ 112.719727, 40.813809 ], [ 101.030273, 40.813809 ], [ 101.030273, 42.638000 ], [ 101.250000, 42.603642 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.908409 ], [ 104.521179, 41.908409 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.482226 ], [ 109.242554, 42.520700 ], [ 110.409851, 42.871938 ], [ 111.129456, 43.407043 ], [ 111.827087, 43.743321 ], [ 111.665039, 44.073774 ], [ 111.346436, 44.459270 ], [ 111.871033, 45.102608 ], [ 112.434082, 45.013360 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.871033, 45.102608 ], [ 112.434082, 45.013360 ], [ 112.500000, 45.001709 ], [ 112.719727, 44.958968 ], [ 112.719727, 40.813809 ], [ 101.030273, 40.813809 ], [ 101.030273, 42.638000 ], [ 101.250000, 42.603642 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.908409 ], [ 104.521179, 41.908409 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.482226 ], [ 109.242554, 42.520700 ], [ 110.409851, 42.871938 ], [ 111.129456, 43.407043 ], [ 111.827087, 43.743321 ], [ 111.665039, 44.073774 ], [ 111.346436, 44.459270 ], [ 111.871033, 45.102608 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 49.523425 ], [ 112.500000, 49.496675 ], [ 111.579895, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.294680 ], [ 108.473511, 49.283932 ], [ 107.866516, 49.795450 ], [ 106.888733, 50.275299 ], [ 105.886230, 50.406767 ], [ 104.620056, 50.277054 ], [ 103.675232, 50.090631 ], [ 102.255249, 50.511680 ], [ 102.062988, 51.260196 ], [ 101.250000, 51.438601 ], [ 101.030273, 51.486514 ], [ 101.030273, 55.899956 ], [ 112.719727, 55.899956 ], [ 112.719727, 49.523425 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 55.899956 ], [ 112.719727, 49.523425 ], [ 112.500000, 49.496675 ], [ 111.579895, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.294680 ], [ 108.473511, 49.283932 ], [ 107.866516, 49.795450 ], [ 106.888733, 50.275299 ], [ 105.886230, 50.406767 ], [ 104.620056, 50.277054 ], [ 103.675232, 50.090631 ], [ 102.255249, 50.511680 ], [ 102.062988, 51.260196 ], [ 101.250000, 51.438601 ], [ 101.030273, 51.486514 ], [ 101.030273, 55.899956 ], [ 112.719727, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.250000, 51.438601 ], [ 102.062988, 51.260196 ], [ 102.255249, 50.511680 ], [ 103.675232, 50.090631 ], [ 104.620056, 50.277054 ], [ 105.886230, 50.406767 ], [ 106.888733, 50.275299 ], [ 107.866516, 49.795450 ], [ 108.473511, 49.283932 ], [ 109.401855, 49.294680 ], [ 110.659790, 49.131408 ], [ 111.579895, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.719727, 49.523425 ], [ 112.719727, 48.777913 ], [ 101.030273, 48.777913 ], [ 101.030273, 51.486514 ], [ 101.250000, 51.438601 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 51.486514 ], [ 101.250000, 51.438601 ], [ 102.062988, 51.260196 ], [ 102.255249, 50.511680 ], [ 103.675232, 50.090631 ], [ 104.620056, 50.277054 ], [ 105.886230, 50.406767 ], [ 106.888733, 50.275299 ], [ 107.866516, 49.795450 ], [ 108.473511, 49.283932 ], [ 109.401855, 49.294680 ], [ 110.659790, 49.131408 ], [ 111.579895, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.719727, 49.523425 ], [ 112.719727, 48.777913 ], [ 101.030273, 48.777913 ], [ 101.030273, 51.486514 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 55.652798 ], [ 101.030273, 55.652798 ], [ 101.030273, 61.710706 ], [ 112.719727, 61.710706 ], [ 112.719727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 61.710706 ], [ 112.719727, 55.652798 ], [ 101.030273, 55.652798 ], [ 101.030273, 61.710706 ], [ 112.719727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 61.501734 ], [ 101.030273, 61.501734 ], [ 101.030273, 66.600676 ], [ 112.719727, 66.600676 ], [ 112.719727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 66.600676 ], [ 112.719727, 61.501734 ], [ 101.030273, 61.501734 ], [ 101.030273, 66.600676 ], [ 112.719727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 66.425537 ], [ 101.030273, 66.425537 ], [ 101.030273, 70.685421 ], [ 112.719727, 70.685421 ], [ 112.719727, 66.425537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 70.685421 ], [ 112.719727, 66.425537 ], [ 101.030273, 66.425537 ], [ 101.030273, 70.685421 ], [ 112.719727, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.637817, 74.040702 ], [ 110.761414, 74.019543 ], [ 112.118225, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.719727, 73.915622 ], [ 112.719727, 70.539543 ], [ 101.030273, 70.539543 ], [ 101.030273, 74.079925 ], [ 110.289001, 74.079925 ], [ 110.637817, 74.040702 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.289001, 74.079925 ], [ 110.637817, 74.040702 ], [ 110.761414, 74.019543 ], [ 112.118225, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.719727, 73.915622 ], [ 112.719727, 70.539543 ], [ 101.030273, 70.539543 ], [ 101.030273, 74.079925 ], [ 110.289001, 74.079925 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.039795, 76.840816 ], [ 107.237549, 76.480268 ], [ 108.152161, 76.723377 ], [ 111.074524, 76.710125 ], [ 112.500000, 76.404292 ], [ 112.719727, 76.356432 ], [ 112.719727, 75.020566 ], [ 112.500000, 74.974352 ], [ 110.148926, 74.477314 ], [ 109.399109, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.761414, 74.019543 ], [ 111.118469, 73.958939 ], [ 101.030273, 73.958939 ], [ 101.030273, 76.858313 ], [ 101.033020, 76.862059 ], [ 101.096191, 76.890745 ], [ 107.012329, 76.890745 ], [ 107.039795, 76.840816 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.012329, 76.890745 ], [ 107.039795, 76.840816 ], [ 107.237549, 76.480268 ], [ 108.152161, 76.723377 ], [ 111.074524, 76.710125 ], [ 112.500000, 76.404292 ], [ 112.719727, 76.356432 ], [ 112.719727, 75.020566 ], [ 112.500000, 74.974352 ], [ 110.148926, 74.477314 ], [ 109.399109, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.761414, 74.019543 ], [ 111.118469, 73.958939 ], [ 101.030273, 73.958939 ], [ 101.030273, 76.858313 ], [ 101.033020, 76.862059 ], [ 101.096191, 76.890745 ], [ 107.012329, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.064758, 77.373904 ], [ 104.702454, 77.127825 ], [ 106.968384, 76.974579 ], [ 107.039795, 76.840816 ], [ 107.067261, 76.790701 ], [ 101.030273, 76.790701 ], [ 101.033020, 76.862059 ], [ 101.250000, 76.960334 ], [ 101.988831, 77.287763 ], [ 104.350891, 77.698138 ], [ 106.064758, 77.373904 ] ] ], [ [ [ 103.337402, 79.171335 ], [ 105.369873, 78.713629 ], [ 105.073242, 78.307182 ], [ 101.250000, 78.047209 ], [ 101.030273, 78.031840 ], [ 101.030273, 79.074936 ], [ 101.230774, 79.212538 ], [ 103.150635, 79.212538 ], [ 103.337402, 79.171335 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.350891, 77.698138 ], [ 106.064758, 77.373904 ], [ 104.702454, 77.127825 ], [ 106.968384, 76.974579 ], [ 107.039795, 76.840816 ], [ 107.067261, 76.790701 ], [ 101.030273, 76.790701 ], [ 101.033020, 76.862059 ], [ 101.250000, 76.960334 ], [ 101.988831, 77.287763 ], [ 104.350891, 77.698138 ] ] ], [ [ [ 103.150635, 79.212538 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.713629 ], [ 105.073242, 78.307182 ], [ 101.250000, 78.047209 ], [ 101.030273, 78.031840 ], [ 101.030273, 79.074936 ], [ 101.230774, 79.212538 ], [ 103.150635, 79.212538 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.837524, 79.281717 ], [ 103.337402, 79.171335 ], [ 103.524170, 79.129976 ], [ 101.109924, 79.129976 ], [ 101.250000, 79.224868 ], [ 101.263733, 79.234107 ], [ 102.084961, 79.346904 ], [ 102.837524, 79.281717 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.084961, 79.346904 ], [ 102.837524, 79.281717 ], [ 103.337402, 79.171335 ], [ 103.524170, 79.129976 ], [ 101.109924, 79.129976 ], [ 101.250000, 79.224868 ], [ 101.263733, 79.234107 ], [ 102.084961, 79.346904 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -85.070048 ], [ 112.280273, -85.070048 ], [ 112.280273, -83.956169 ], [ 123.969727, -83.956169 ], [ 123.969727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -83.956169 ], [ 123.969727, -85.070048 ], [ 112.280273, -85.070048 ], [ 112.280273, -83.956169 ], [ 123.969727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -84.002262 ], [ 112.280273, -84.002262 ], [ 112.280273, -82.648222 ], [ 123.969727, -82.648222 ], [ 123.969727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -82.648222 ], [ 123.969727, -84.002262 ], [ 112.280273, -84.002262 ], [ 112.280273, -82.648222 ], [ 123.969727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -82.704241 ], [ 112.280273, -82.704241 ], [ 112.280273, -81.059130 ], [ 123.969727, -81.059130 ], [ 123.969727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -81.059130 ], [ 123.969727, -82.704241 ], [ 112.280273, -82.704241 ], [ 112.280273, -81.059130 ], [ 123.969727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -81.127169 ], [ 112.280273, -81.127169 ], [ 112.280273, -79.129976 ], [ 123.969727, -79.129976 ], [ 123.969727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -79.129976 ], [ 123.969727, -81.127169 ], [ 112.280273, -81.127169 ], [ 112.280273, -79.129976 ], [ 123.969727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -79.212538 ], [ 112.280273, -79.212538 ], [ 112.280273, -76.790701 ], [ 123.969727, -76.790701 ], [ 123.969727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -76.790701 ], [ 123.969727, -79.212538 ], [ 112.280273, -79.212538 ], [ 112.280273, -76.790701 ], [ 123.969727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -76.890745 ], [ 112.280273, -76.890745 ], [ 112.280273, -73.958939 ], [ 123.969727, -73.958939 ], [ 123.969727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -73.958939 ], [ 123.969727, -76.890745 ], [ 112.280273, -76.890745 ], [ 112.280273, -73.958939 ], [ 123.969727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -74.079925 ], [ 112.280273, -74.079925 ], [ 112.280273, -70.539543 ], [ 123.969727, -70.539543 ], [ 123.969727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -70.539543 ], [ 123.969727, -74.079925 ], [ 112.280273, -74.079925 ], [ 112.280273, -70.539543 ], [ 123.969727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.177917, -66.513260 ], [ 115.600891, -66.699737 ], [ 116.696777, -66.660596 ], [ 117.383423, -66.914988 ], [ 118.578186, -67.169955 ], [ 119.830627, -67.267798 ], [ 120.868835, -67.189129 ], [ 121.654358, -66.875109 ], [ 122.319031, -66.562469 ], [ 123.219910, -66.483688 ], [ 123.412170, -66.513260 ], [ 123.750000, -66.564654 ], [ 123.969727, -66.597403 ], [ 123.969727, -70.685421 ], [ 112.280273, -70.685421 ], [ 112.280273, -66.425537 ], [ 114.982910, -66.425537 ], [ 115.177917, -66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.982910, -66.425537 ], [ 115.177917, -66.513260 ], [ 115.600891, -66.699737 ], [ 116.696777, -66.660596 ], [ 117.383423, -66.914988 ], [ 118.578186, -67.169955 ], [ 119.830627, -67.267798 ], [ 120.868835, -67.189129 ], [ 121.654358, -66.875109 ], [ 122.319031, -66.562469 ], [ 123.219910, -66.483688 ], [ 123.412170, -66.513260 ], [ 123.750000, -66.564654 ], [ 123.969727, -66.597403 ], [ 123.969727, -70.685421 ], [ 112.280273, -70.685421 ], [ 112.280273, -66.425537 ], [ 114.982910, -66.425537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.319031, -66.562469 ], [ 123.219910, -66.483688 ], [ 123.412170, -66.513260 ], [ 123.969727, -66.597403 ], [ 123.969727, -66.600676 ], [ 122.236633, -66.600676 ], [ 122.319031, -66.562469 ] ] ], [ [ [ 114.386902, -66.072660 ], [ 114.895020, -66.385961 ], [ 115.177917, -66.513260 ], [ 115.375671, -66.600676 ], [ 112.280273, -66.600676 ], [ 112.280273, -66.111619 ], [ 112.500000, -66.103832 ], [ 112.859802, -66.091591 ], [ 113.604126, -65.875847 ], [ 114.386902, -66.072660 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.875847 ], [ 114.386902, -66.072660 ], [ 114.895020, -66.385961 ], [ 115.177917, -66.513260 ], [ 115.375671, -66.600676 ], [ 112.280273, -66.600676 ], [ 112.280273, -66.111619 ], [ 112.500000, -66.103832 ], [ 112.859802, -66.091591 ], [ 113.604126, -65.875847 ] ] ], [ [ [ 123.412170, -66.513260 ], [ 123.969727, -66.597403 ], [ 123.969727, -66.600676 ], [ 122.236633, -66.600676 ], [ 122.319031, -66.562469 ], [ 123.219910, -66.483688 ], [ 123.412170, -66.513260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -33.543684 ], [ 123.750000, -33.788279 ], [ 123.659363, -33.888658 ], [ 122.810669, -33.913734 ], [ 122.181702, -34.002581 ], [ 121.297302, -33.820230 ], [ 120.577698, -33.929688 ], [ 119.891052, -33.975253 ], [ 119.297791, -34.508820 ], [ 119.006653, -34.463542 ], [ 118.504028, -34.746126 ], [ 118.023376, -35.063725 ], [ 117.292786, -35.023249 ], [ 116.622620, -35.023249 ], [ 115.562439, -34.384246 ], [ 115.024109, -34.195901 ], [ 115.046082, -33.621481 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.259360 ], [ 115.677795, -32.900344 ], [ 115.801392, -32.203505 ], [ 115.751953, -31.952162 ], [ 115.716248, -31.765537 ], [ 123.969727, -31.765537 ], [ 123.969727, -33.543684 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -31.765537 ], [ 123.969727, -33.543684 ], [ 123.750000, -33.788279 ], [ 123.659363, -33.888658 ], [ 122.810669, -33.913734 ], [ 122.181702, -34.002581 ], [ 121.297302, -33.820230 ], [ 120.577698, -33.929688 ], [ 119.891052, -33.975253 ], [ 119.297791, -34.508820 ], [ 119.006653, -34.463542 ], [ 118.504028, -34.746126 ], [ 118.023376, -35.063725 ], [ 117.292786, -35.023249 ], [ 116.622620, -35.023249 ], [ 115.562439, -34.384246 ], [ 115.024109, -34.195901 ], [ 115.046082, -33.621481 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.259360 ], [ 115.677795, -32.900344 ], [ 115.801392, -32.203505 ], [ 115.751953, -31.952162 ], [ 115.716248, -31.765537 ], [ 123.969727, -31.765537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -32.138409 ], [ 115.787659, -32.138409 ], [ 115.751953, -31.952162 ], [ 115.688782, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.996643, -30.028678 ], [ 115.037842, -29.458731 ], [ 114.639587, -28.808580 ], [ 114.614868, -28.514556 ], [ 114.172668, -28.118016 ], [ 114.046326, -27.332735 ], [ 113.475037, -26.541851 ], [ 113.337708, -26.115986 ], [ 113.777161, -26.546766 ], [ 113.439331, -25.619239 ], [ 113.936462, -25.911115 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.998505 ], [ 113.623352, -24.681961 ], [ 113.392639, -24.384626 ], [ 113.499756, -23.805450 ], [ 113.705750, -23.558952 ], [ 113.843079, -23.059516 ], [ 113.735962, -22.474493 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.515094 ], [ 114.573669, -21.943046 ], [ 114.645081, -21.828357 ], [ 114.859314, -21.739091 ], [ 123.969727, -21.739091 ], [ 123.969727, -32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -21.739091 ], [ 123.969727, -32.138409 ], [ 115.787659, -32.138409 ], [ 115.751953, -31.952162 ], [ 115.688782, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.996643, -30.028678 ], [ 115.037842, -29.458731 ], [ 114.639587, -28.808580 ], [ 114.614868, -28.514556 ], [ 114.172668, -28.118016 ], [ 114.046326, -27.332735 ], [ 113.475037, -26.541851 ], [ 113.337708, -26.115986 ], [ 113.777161, -26.546766 ], [ 113.439331, -25.619239 ], [ 113.936462, -25.911115 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.998505 ], [ 113.623352, -24.681961 ], [ 113.392639, -24.384626 ], [ 113.499756, -23.805450 ], [ 113.705750, -23.558952 ], [ 113.843079, -23.059516 ], [ 113.735962, -22.474493 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.515094 ], [ 114.573669, -21.943046 ], [ 114.645081, -21.828357 ], [ 114.859314, -21.739091 ], [ 123.969727, -21.739091 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.164429, -21.943046 ], [ 114.183655, -22.146708 ], [ 113.919983, -22.146708 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ] ] ], [ [ [ 114.645081, -21.828357 ], [ 115.458069, -21.493964 ], [ 115.946960, -21.066560 ], [ 116.710510, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.441101, -20.745840 ], [ 118.229370, -20.372952 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.043031 ], [ 119.251099, -19.952696 ], [ 119.803162, -19.975930 ], [ 120.855103, -19.681384 ], [ 121.398926, -19.238550 ], [ 121.654358, -18.703489 ], [ 122.239380, -18.195434 ], [ 122.286072, -17.798381 ], [ 122.310791, -17.253613 ], [ 123.011169, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.750000, -17.117168 ], [ 123.857117, -17.067287 ], [ 123.750000, -16.922822 ], [ 123.502808, -16.594081 ], [ 123.750000, -16.209400 ], [ 123.815918, -16.109153 ], [ 123.969727, -16.183024 ], [ 123.969727, -22.146708 ], [ 114.447327, -22.146708 ], [ 114.573669, -21.943046 ], [ 114.645081, -21.828357 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.183655, -22.146708 ], [ 113.919983, -22.146708 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 123.969727, -16.183024 ], [ 123.969727, -22.146708 ], [ 114.447327, -22.146708 ], [ 114.573669, -21.943046 ], [ 114.645081, -21.828357 ], [ 115.458069, -21.493964 ], [ 115.946960, -21.066560 ], [ 116.710510, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.441101, -20.745840 ], [ 118.229370, -20.372952 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.043031 ], [ 119.251099, -19.952696 ], [ 119.803162, -19.975930 ], [ 120.855103, -19.681384 ], [ 121.398926, -19.238550 ], [ 121.654358, -18.703489 ], [ 122.239380, -18.195434 ], [ 122.286072, -17.798381 ], [ 122.310791, -17.253613 ], [ 123.011169, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.750000, -17.117168 ], [ 123.857117, -17.067287 ], [ 123.750000, -16.922822 ], [ 123.502808, -16.594081 ], [ 123.750000, -16.209400 ], [ 123.815918, -16.109153 ], [ 123.969727, -16.183024 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, -10.258168 ], [ 123.750000, -10.312217 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.549500, -9.898510 ], [ 123.750000, -9.611582 ], [ 123.969727, -9.300017 ], [ 123.969727, -10.258168 ] ] ], [ [ [ 120.423889, -9.665738 ], [ 120.775452, -9.968851 ], [ 120.715027, -10.239249 ], [ 120.294800, -10.258168 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.359643 ], [ 120.423889, -9.665738 ] ] ], [ [ [ 118.259583, -8.360975 ], [ 118.877563, -8.279445 ], [ 119.124756, -8.703214 ], [ 117.968445, -8.904067 ], [ 117.276306, -9.039715 ], [ 116.737976, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.447922 ], [ 117.899780, -8.094581 ], [ 118.259583, -8.360975 ] ] ], [ [ [ 122.755737, -8.648911 ], [ 121.253357, -8.931200 ], [ 119.924011, -8.809082 ], [ 119.918518, -8.442488 ], [ 120.715027, -8.235955 ], [ 121.341248, -8.534849 ], [ 122.005920, -8.458789 ], [ 122.901306, -8.091862 ], [ 122.755737, -8.648911 ] ] ], [ [ [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.977905, -7.593940 ], [ 114.477539, -7.776309 ], [ 115.705261, -8.369127 ], [ 114.562683, -8.749366 ], [ 113.464050, -8.347388 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.369127 ], [ 112.280273, -8.352823 ], [ 112.280273, -6.858259 ], [ 112.500000, -6.915521 ] ] ], [ [ [ 120.135498, 0.000000 ], [ 120.039368, -0.519097 ], [ 120.934753, -1.408855 ], [ 121.473083, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.258362, -1.073851 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.506042, -1.903031 ], [ 122.453613, -3.184394 ], [ 122.269592, -3.527128 ], [ 123.170471, -4.683192 ], [ 123.162231, -5.339848 ], [ 122.626648, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.464165 ], [ 121.736755, -4.850154 ], [ 121.486816, -4.573687 ], [ 121.618652, -4.187551 ], [ 120.896301, -3.601142 ], [ 120.970459, -2.627558 ], [ 120.303040, -2.929326 ], [ 120.388184, -4.097151 ], [ 120.429382, -5.525777 ], [ 119.794922, -5.673384 ], [ 119.366455, -5.378132 ], [ 119.652100, -4.458689 ], [ 119.498291, -3.494231 ], [ 119.078064, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.144580 ], [ 119.322510, -1.351193 ], [ 119.825134, 0.156555 ], [ 119.855347, 0.219726 ], [ 120.176697, 0.219726 ], [ 120.135498, 0.000000 ] ] ], [ [ [ 117.476807, 0.104370 ], [ 117.479553, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.485734 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.494231 ], [ 113.755188, -3.436658 ], [ 113.255310, -3.118576 ], [ 112.500000, -3.346180 ], [ 112.280273, -3.411983 ], [ 112.280273, 0.219726 ], [ 117.531738, 0.219726 ], [ 117.476807, 0.104370 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, -9.300017 ], [ 123.969727, -10.258168 ], [ 123.750000, -10.312217 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.549500, -9.898510 ], [ 123.750000, -9.611582 ], [ 123.969727, -9.300017 ] ] ], [ [ [ 119.899292, -9.359643 ], [ 120.423889, -9.665738 ], [ 120.775452, -9.968851 ], [ 120.715027, -10.239249 ], [ 120.294800, -10.258168 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.359643 ] ] ], [ [ [ 117.899780, -8.094581 ], [ 118.259583, -8.360975 ], [ 118.877563, -8.279445 ], [ 119.124756, -8.703214 ], [ 117.968445, -8.904067 ], [ 117.276306, -9.039715 ], [ 116.737976, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.447922 ], [ 117.899780, -8.094581 ] ] ], [ [ [ 122.901306, -8.091862 ], [ 122.755737, -8.648911 ], [ 121.253357, -8.931200 ], [ 119.924011, -8.809082 ], [ 119.918518, -8.442488 ], [ 120.715027, -8.235955 ], [ 121.341248, -8.534849 ], [ 122.005920, -8.458789 ], [ 122.901306, -8.091862 ] ] ], [ [ [ 112.280273, -6.858259 ], [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.977905, -7.593940 ], [ 114.477539, -7.776309 ], [ 115.705261, -8.369127 ], [ 114.562683, -8.749366 ], [ 113.464050, -8.347388 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.369127 ], [ 112.280273, -8.352823 ], [ 112.280273, -6.858259 ] ] ], [ [ [ 120.176697, 0.219726 ], [ 120.135498, 0.000000 ], [ 120.039368, -0.519097 ], [ 120.934753, -1.408855 ], [ 121.473083, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.258362, -1.073851 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.506042, -1.903031 ], [ 122.453613, -3.184394 ], [ 122.269592, -3.527128 ], [ 123.170471, -4.683192 ], [ 123.162231, -5.339848 ], [ 122.626648, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.464165 ], [ 121.736755, -4.850154 ], [ 121.486816, -4.573687 ], [ 121.618652, -4.187551 ], [ 120.896301, -3.601142 ], [ 120.970459, -2.627558 ], [ 120.303040, -2.929326 ], [ 120.388184, -4.097151 ], [ 120.429382, -5.525777 ], [ 119.794922, -5.673384 ], [ 119.366455, -5.378132 ], [ 119.652100, -4.458689 ], [ 119.498291, -3.494231 ], [ 119.078064, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.144580 ], [ 119.322510, -1.351193 ], [ 119.825134, 0.156555 ], [ 119.855347, 0.219726 ], [ 120.176697, 0.219726 ] ] ], [ [ [ 117.531738, 0.219726 ], [ 117.476807, 0.104370 ], [ 117.479553, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.485734 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.494231 ], [ 113.755188, -3.436658 ], [ 113.255310, -3.118576 ], [ 112.500000, -3.346180 ], [ 112.280273, -3.411983 ], [ 112.280273, 0.219726 ], [ 117.531738, 0.219726 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.641602, 6.424484 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.017075 ], [ 118.438110, 4.967824 ], [ 118.616638, 4.480595 ], [ 117.880554, 4.138243 ], [ 117.012634, 4.308069 ], [ 115.864563, 4.308069 ], [ 115.518494, 3.170683 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.219390 ], [ 112.859802, 1.499463 ], [ 112.500000, 1.436312 ], [ 112.379150, 1.411600 ], [ 112.280273, 1.326481 ], [ 112.280273, 2.978699 ], [ 112.500000, 3.017098 ], [ 112.994385, 3.104864 ], [ 113.711243, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.009480 ], [ 114.867554, 4.349150 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.449225 ], [ 116.218872, 6.143286 ], [ 116.724243, 6.926427 ], [ 117.127991, 6.929153 ], [ 117.641602, 6.424484 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.127991, 6.929153 ], [ 117.641602, 6.424484 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.017075 ], [ 118.438110, 4.967824 ], [ 118.616638, 4.480595 ], [ 117.880554, 4.138243 ], [ 117.012634, 4.308069 ], [ 115.864563, 4.308069 ], [ 115.518494, 3.170683 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.219390 ], [ 112.859802, 1.499463 ], [ 112.500000, 1.436312 ], [ 112.379150, 1.411600 ], [ 112.280273, 1.326481 ], [ 112.280273, 2.978699 ], [ 112.500000, 3.017098 ], [ 112.994385, 3.104864 ], [ 113.711243, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.009480 ], [ 114.867554, 4.349150 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.449225 ], [ 116.218872, 6.143286 ], [ 116.724243, 6.926427 ], [ 117.127991, 6.929153 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.609924, 7.836173 ], [ 123.294067, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.082825, 6.901887 ], [ 121.918030, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.939758, 8.317495 ], [ 123.486328, 8.695069 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.290317 ], [ 123.969727, 7.566715 ], [ 123.750000, 7.732765 ], [ 123.609924, 7.836173 ] ] ], [ [ [ 119.550476, 11.178402 ], [ 119.687805, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.318990 ], [ 117.171936, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.385925, 9.684691 ], [ 118.984680, 10.377064 ], [ 119.404907, 11.178402 ], [ 119.509277, 11.372339 ], [ 119.550476, 11.178402 ] ] ], [ [ [ 123.969727, 10.271681 ], [ 123.750000, 10.071629 ], [ 123.620911, 9.952620 ], [ 123.307800, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.835388, 10.263573 ], [ 122.945251, 10.884557 ], [ 123.497314, 10.941192 ], [ 123.335266, 10.268979 ], [ 123.750000, 10.811724 ], [ 123.969727, 11.097556 ], [ 123.969727, 10.271681 ] ] ], [ [ [ 123.099060, 11.178402 ], [ 123.099060, 11.167624 ], [ 122.637634, 10.741572 ], [ 122.000427, 10.441897 ], [ 121.964722, 10.906133 ], [ 122.000427, 11.178402 ], [ 122.030640, 11.393879 ], [ 123.107300, 11.393879 ], [ 123.099060, 11.178402 ] ] ], [ [ [ 123.969727, 6.803717 ], [ 123.936768, 6.885527 ], [ 123.969727, 6.937333 ], [ 123.969727, 6.803717 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 7.566715 ], [ 123.750000, 7.732765 ], [ 123.609924, 7.836173 ], [ 123.294067, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.082825, 6.901887 ], [ 121.918030, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.939758, 8.317495 ], [ 123.486328, 8.695069 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.290317 ], [ 123.969727, 7.566715 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.550476, 11.178402 ], [ 119.687805, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.318990 ], [ 117.171936, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.385925, 9.684691 ], [ 118.984680, 10.377064 ], [ 119.404907, 11.178402 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 123.969727, 11.097556 ], [ 123.969727, 10.271681 ], [ 123.750000, 10.071629 ], [ 123.620911, 9.952620 ], [ 123.307800, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.835388, 10.263573 ], [ 122.945251, 10.884557 ], [ 123.497314, 10.941192 ], [ 123.335266, 10.268979 ], [ 123.750000, 10.811724 ], [ 123.969727, 11.097556 ] ] ], [ [ [ 123.107300, 11.393879 ], [ 123.099060, 11.178402 ], [ 123.099060, 11.167624 ], [ 122.637634, 10.741572 ], [ 122.000427, 10.441897 ], [ 121.964722, 10.906133 ], [ 122.000427, 11.178402 ], [ 122.030640, 11.393879 ], [ 123.107300, 11.393879 ] ] ], [ [ [ 123.969727, 6.937333 ], [ 123.969727, 6.803717 ], [ 123.936768, 6.885527 ], [ 123.969727, 6.937333 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.345459, 4.319024 ], [ 114.867554, 4.349150 ], [ 114.658813, 4.009480 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.902150 ], [ 115.449829, 5.449225 ], [ 115.345459, 4.319024 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.449225 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.349150 ], [ 114.658813, 4.009480 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.902150 ], [ 115.449829, 5.449225 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.665344, 1.016182 ], [ 122.926025, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.914573 ], [ 123.969727, 0.310362 ], [ 123.750000, 0.255431 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.238952 ], [ 120.135498, 0.000000 ], [ 120.094299, -0.219726 ], [ 119.696045, -0.219726 ], [ 119.770203, 0.000000 ], [ 119.825134, 0.156555 ], [ 120.033875, 0.568533 ], [ 120.885315, 1.310005 ], [ 121.665344, 1.016182 ] ] ], [ [ [ 117.880554, 4.138243 ], [ 117.312012, 3.236498 ], [ 118.048096, 2.290039 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.809143, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.479553, 0.000000 ], [ 117.490540, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.326481 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.436312 ], [ 112.859802, 1.499463 ], [ 113.804626, 1.219390 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.170683 ], [ 115.864563, 4.308069 ], [ 117.012634, 4.308069 ], [ 117.880554, 4.138243 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.885315, 1.310005 ], [ 121.665344, 1.016182 ], [ 122.926025, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.914573 ], [ 123.969727, 0.310362 ], [ 123.750000, 0.255431 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.238952 ], [ 120.135498, 0.000000 ], [ 120.094299, -0.219726 ], [ 119.696045, -0.219726 ], [ 119.770203, 0.000000 ], [ 119.825134, 0.156555 ], [ 120.033875, 0.568533 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.012634, 4.308069 ], [ 117.880554, 4.138243 ], [ 117.312012, 3.236498 ], [ 118.048096, 2.290039 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.809143, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.479553, 0.000000 ], [ 117.490540, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.326481 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.436312 ], [ 112.859802, 1.499463 ], [ 113.804626, 1.219390 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.170683 ], [ 115.864563, 4.308069 ], [ 117.012634, 4.308069 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.238831, 22.052550 ], [ 112.931213, 21.943046 ], [ 112.500000, 21.790107 ], [ 112.280273, 21.711025 ], [ 112.280273, 22.146708 ], [ 113.343201, 22.146708 ], [ 113.238831, 22.052550 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.343201, 22.146708 ], [ 113.238831, 22.052550 ], [ 112.931213, 21.943046 ], [ 112.500000, 21.790107 ], [ 112.280273, 21.711025 ], [ 112.280273, 22.146708 ], [ 113.343201, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.745239, 21.971066 ], [ 120.635376, 22.146708 ], [ 120.833130, 22.146708 ], [ 120.745239, 21.971066 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.833130, 22.146708 ], [ 120.745239, 21.971066 ], [ 120.635376, 22.146708 ], [ 120.833130, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 10.962764 ], [ 123.865356, 10.962764 ], [ 123.969727, 11.097556 ], [ 123.969727, 10.962764 ] ] ], [ [ [ 119.550476, 11.178402 ], [ 119.597168, 10.962764 ], [ 119.292297, 10.962764 ], [ 119.404907, 11.178402 ], [ 119.509277, 11.372339 ], [ 119.550476, 11.178402 ] ] ], [ [ [ 122.481079, 11.582288 ], [ 123.118286, 11.584979 ], [ 123.099060, 11.178402 ], [ 123.099060, 11.167624 ], [ 122.876587, 10.962764 ], [ 121.970215, 10.962764 ], [ 122.000427, 11.178402 ], [ 122.036133, 11.418110 ], [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ] ] ], [ [ [ 121.179199, 13.432367 ], [ 121.525269, 13.071452 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.467093 ], [ 121.179199, 13.432367 ] ] ], [ [ [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.335510, 18.226743 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.264777 ], [ 121.662598, 15.932279 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.330921 ], [ 122.258606, 14.219126 ], [ 122.700806, 14.338904 ], [ 123.750000, 13.872747 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 123.969727, 13.157051 ], [ 123.969727, 12.608176 ], [ 123.750000, 12.744837 ], [ 123.296814, 13.028642 ], [ 122.926025, 13.555222 ], [ 122.670593, 13.186468 ], [ 122.033386, 13.784737 ], [ 121.124268, 13.637980 ], [ 120.627136, 13.859414 ], [ 120.679321, 14.272369 ], [ 120.989685, 14.527756 ], [ 120.693054, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.918518, 15.408672 ], [ 119.882812, 16.364945 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.599521 ], [ 120.715027, 18.505657 ], [ 121.319275, 18.505657 ], [ 121.937256, 18.218916 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 11.097556 ], [ 123.969727, 10.962764 ], [ 123.865356, 10.962764 ], [ 123.969727, 11.097556 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.550476, 11.178402 ], [ 119.597168, 10.962764 ], [ 119.292297, 10.962764 ], [ 119.404907, 11.178402 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.584979 ], [ 123.099060, 11.178402 ], [ 123.099060, 11.167624 ], [ 122.876587, 10.962764 ], [ 121.970215, 10.962764 ], [ 122.000427, 11.178402 ], [ 122.036133, 11.418110 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.467093 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.071452 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.467093 ] ] ], [ [ [ 121.319275, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.335510, 18.226743 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.264777 ], [ 121.662598, 15.932279 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.330921 ], [ 122.258606, 14.219126 ], [ 122.700806, 14.338904 ], [ 123.750000, 13.872747 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 123.969727, 13.157051 ], [ 123.969727, 12.608176 ], [ 123.750000, 12.744837 ], [ 123.296814, 13.028642 ], [ 122.926025, 13.555222 ], [ 122.670593, 13.186468 ], [ 122.033386, 13.784737 ], [ 121.124268, 13.637980 ], [ 120.627136, 13.859414 ], [ 120.679321, 14.272369 ], [ 120.989685, 14.527756 ], [ 120.693054, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.918518, 15.408672 ], [ 119.882812, 16.364945 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.599521 ], [ 120.715027, 18.505657 ], [ 121.319275, 18.505657 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.676331, 31.952162 ], [ 121.907043, 31.693119 ], [ 121.890564, 30.951702 ], [ 121.261597, 30.678078 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.833496 ], [ 121.937256, 29.020150 ], [ 121.681824, 28.226970 ], [ 121.124268, 28.137394 ], [ 120.393677, 27.054234 ], [ 119.583435, 25.743003 ], [ 118.655090, 24.549622 ], [ 117.279053, 23.626911 ], [ 115.889282, 22.783779 ], [ 114.763184, 22.669779 ], [ 114.150696, 22.225548 ], [ 113.804626, 22.550611 ], [ 113.238831, 22.052550 ], [ 112.931213, 21.943046 ], [ 112.359924, 21.739091 ], [ 112.280273, 21.739091 ], [ 112.280273, 32.138409 ], [ 121.514282, 32.138409 ], [ 121.676331, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.514282, 32.138409 ], [ 121.676331, 31.952162 ], [ 121.907043, 31.693119 ], [ 121.890564, 30.951702 ], [ 121.261597, 30.678078 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.833496 ], [ 121.937256, 29.020150 ], [ 121.681824, 28.226970 ], [ 121.124268, 28.137394 ], [ 120.393677, 27.054234 ], [ 119.583435, 25.743003 ], [ 118.655090, 24.549622 ], [ 117.279053, 23.626911 ], [ 115.889282, 22.783779 ], [ 114.763184, 22.669779 ], [ 114.150696, 22.225548 ], [ 113.804626, 22.550611 ], [ 113.238831, 22.052550 ], [ 112.931213, 21.943046 ], [ 112.359924, 21.739091 ], [ 112.280273, 21.739091 ], [ 112.280273, 32.138409 ], [ 121.514282, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.950989, 24.998505 ], [ 121.775208, 24.394632 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.971066 ], [ 120.217896, 22.816694 ], [ 120.105286, 23.556434 ], [ 120.693054, 24.539628 ], [ 121.492310, 25.296854 ], [ 121.950989, 24.998505 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.296854 ], [ 121.950989, 24.998505 ], [ 121.775208, 24.394632 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.971066 ], [ 120.217896, 22.816694 ], [ 120.105286, 23.556434 ], [ 120.693054, 24.539628 ], [ 121.492310, 25.296854 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 39.869696 ], [ 123.750000, 39.823304 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.170529 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.361909 ], [ 121.374207, 39.751545 ], [ 122.167969, 40.423951 ], [ 121.637878, 40.946714 ], [ 120.767212, 40.595185 ], [ 119.638367, 39.899202 ], [ 119.023132, 39.253525 ], [ 118.042603, 39.204591 ], [ 117.531738, 38.739088 ], [ 118.059082, 38.063230 ], [ 118.877563, 37.898698 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.158128 ], [ 120.822144, 37.870517 ], [ 121.709290, 37.481397 ], [ 122.357483, 37.455238 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.652996 ], [ 120.635376, 36.113471 ], [ 119.663086, 35.610418 ], [ 119.149475, 34.910710 ], [ 120.226135, 34.361576 ], [ 120.618896, 33.378706 ], [ 121.228638, 32.461109 ], [ 121.676331, 31.952162 ], [ 121.841125, 31.765537 ], [ 112.280273, 31.765537 ], [ 112.280273, 41.145570 ], [ 123.969727, 41.145570 ], [ 123.969727, 39.869696 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 41.145570 ], [ 123.969727, 39.869696 ], [ 123.750000, 39.823304 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.170529 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.361909 ], [ 121.374207, 39.751545 ], [ 122.167969, 40.423951 ], [ 121.637878, 40.946714 ], [ 120.767212, 40.595185 ], [ 119.638367, 39.899202 ], [ 119.023132, 39.253525 ], [ 118.042603, 39.204591 ], [ 117.531738, 38.739088 ], [ 118.059082, 38.063230 ], [ 118.877563, 37.898698 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.158128 ], [ 120.822144, 37.870517 ], [ 121.709290, 37.481397 ], [ 122.357483, 37.455238 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.652996 ], [ 120.635376, 36.113471 ], [ 119.663086, 35.610418 ], [ 119.149475, 34.910710 ], [ 120.226135, 34.361576 ], [ 120.618896, 33.378706 ], [ 121.228638, 32.461109 ], [ 121.676331, 31.952162 ], [ 121.841125, 31.765537 ], [ 112.280273, 31.765537 ], [ 112.280273, 41.145570 ], [ 123.969727, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.037598, 48.922499 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.292786, 47.698672 ], [ 118.061829, 48.067068 ], [ 118.863831, 47.748558 ], [ 119.770203, 47.049540 ], [ 119.663086, 46.692783 ], [ 118.872070, 46.805700 ], [ 117.419128, 46.673941 ], [ 116.716003, 46.388622 ], [ 115.982666, 45.727274 ], [ 114.458313, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.001709 ], [ 112.434082, 45.013360 ], [ 112.280273, 45.038597 ], [ 112.280273, 49.066668 ], [ 116.141968, 49.066668 ], [ 116.037598, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.141968, 49.066668 ], [ 116.037598, 48.922499 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.292786, 47.698672 ], [ 118.061829, 48.067068 ], [ 118.863831, 47.748558 ], [ 119.770203, 47.049540 ], [ 119.663086, 46.692783 ], [ 118.872070, 46.805700 ], [ 117.419128, 46.673941 ], [ 116.716003, 46.388622 ], [ 115.982666, 45.727274 ], [ 114.458313, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.001709 ], [ 112.434082, 45.013360 ], [ 112.280273, 45.038597 ], [ 112.280273, 49.066668 ], [ 116.141968, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 40.813809 ], [ 121.769714, 40.813809 ], [ 121.637878, 40.946714 ], [ 121.305542, 40.813809 ], [ 112.280273, 40.813809 ], [ 112.280273, 45.038597 ], [ 112.500000, 45.001709 ], [ 113.461304, 44.809122 ], [ 114.458313, 45.340563 ], [ 115.982666, 45.727274 ], [ 116.716003, 46.388622 ], [ 117.419128, 46.673941 ], [ 118.872070, 46.805700 ], [ 119.663086, 46.692783 ], [ 119.770203, 47.049540 ], [ 118.863831, 47.748558 ], [ 118.061829, 48.067068 ], [ 117.292786, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.037598, 48.922499 ], [ 116.141968, 49.066668 ], [ 123.969727, 49.066668 ], [ 123.969727, 40.813809 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 49.066668 ], [ 123.969727, 40.813809 ], [ 121.769714, 40.813809 ], [ 121.637878, 40.946714 ], [ 121.305542, 40.813809 ], [ 112.280273, 40.813809 ], [ 112.280273, 45.038597 ], [ 112.500000, 45.001709 ], [ 113.461304, 44.809122 ], [ 114.458313, 45.340563 ], [ 115.982666, 45.727274 ], [ 116.716003, 46.388622 ], [ 117.419128, 46.673941 ], [ 118.872070, 46.805700 ], [ 119.663086, 46.692783 ], [ 119.770203, 47.049540 ], [ 118.863831, 47.748558 ], [ 118.061829, 48.067068 ], [ 117.292786, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.037598, 48.922499 ], [ 116.141968, 49.066668 ], [ 123.969727, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 53.381690 ], [ 123.750000, 53.424264 ], [ 123.568726, 53.460255 ], [ 122.244873, 53.432447 ], [ 121.000671, 53.252069 ], [ 120.176697, 52.754581 ], [ 120.723267, 52.517892 ], [ 120.737000, 51.964577 ], [ 120.179443, 51.643590 ], [ 119.278564, 50.583237 ], [ 119.286804, 50.143466 ], [ 117.877808, 49.512727 ], [ 116.677551, 49.889326 ], [ 115.485535, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.248961 ], [ 112.895508, 49.544816 ], [ 112.500000, 49.496675 ], [ 112.280273, 49.468124 ], [ 112.280273, 55.899956 ], [ 123.969727, 55.899956 ], [ 123.969727, 53.381690 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 55.899956 ], [ 123.969727, 53.381690 ], [ 123.750000, 53.424264 ], [ 123.568726, 53.460255 ], [ 122.244873, 53.432447 ], [ 121.000671, 53.252069 ], [ 120.176697, 52.754581 ], [ 120.723267, 52.517892 ], [ 120.737000, 51.964577 ], [ 120.179443, 51.643590 ], [ 119.278564, 50.583237 ], [ 119.286804, 50.143466 ], [ 117.877808, 49.512727 ], [ 116.677551, 49.889326 ], [ 115.485535, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.248961 ], [ 112.895508, 49.544816 ], [ 112.500000, 49.496675 ], [ 112.280273, 49.468124 ], [ 112.280273, 55.899956 ], [ 123.969727, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.960938, 50.141706 ], [ 115.485535, 49.806087 ], [ 116.677551, 49.889326 ], [ 116.191406, 49.135003 ], [ 116.037598, 48.922499 ], [ 115.935974, 48.777913 ], [ 112.280273, 48.777913 ], [ 112.280273, 49.468124 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.544816 ], [ 114.362183, 50.248961 ], [ 114.960938, 50.141706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.248961 ], [ 114.960938, 50.141706 ], [ 115.485535, 49.806087 ], [ 116.677551, 49.889326 ], [ 116.191406, 49.135003 ], [ 116.037598, 48.922499 ], [ 115.935974, 48.777913 ], [ 112.280273, 48.777913 ], [ 112.280273, 49.468124 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.544816 ], [ 114.362183, 50.248961 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.750000, 53.425901 ], [ 123.969727, 53.381690 ], [ 123.969727, 48.777913 ], [ 115.935974, 48.777913 ], [ 116.037598, 48.922499 ], [ 116.191406, 49.135003 ], [ 116.677551, 49.889326 ], [ 117.877808, 49.512727 ], [ 119.286804, 50.143466 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.643590 ], [ 120.737000, 51.964577 ], [ 120.723267, 52.517892 ], [ 120.176697, 52.754581 ], [ 121.000671, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.571472, 53.460255 ], [ 123.750000, 53.425901 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.571472, 53.460255 ], [ 123.750000, 53.425901 ], [ 123.969727, 53.381690 ], [ 123.969727, 48.777913 ], [ 115.935974, 48.777913 ], [ 116.037598, 48.922499 ], [ 116.191406, 49.135003 ], [ 116.677551, 49.889326 ], [ 117.877808, 49.512727 ], [ 119.286804, 50.143466 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.643590 ], [ 120.737000, 51.964577 ], [ 120.723267, 52.517892 ], [ 120.176697, 52.754581 ], [ 121.000671, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.571472, 53.460255 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 55.652798 ], [ 112.280273, 55.652798 ], [ 112.280273, 61.710706 ], [ 123.969727, 61.710706 ], [ 123.969727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 61.710706 ], [ 123.969727, 55.652798 ], [ 112.280273, 55.652798 ], [ 112.280273, 61.710706 ], [ 123.969727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 61.501734 ], [ 112.280273, 61.501734 ], [ 112.280273, 66.600676 ], [ 123.969727, 66.600676 ], [ 123.969727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 66.600676 ], [ 123.969727, 61.501734 ], [ 112.280273, 61.501734 ], [ 112.280273, 66.600676 ], [ 123.969727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 66.425537 ], [ 112.280273, 66.425537 ], [ 112.280273, 70.685421 ], [ 123.969727, 70.685421 ], [ 123.969727, 66.425537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 70.685421 ], [ 123.969727, 66.425537 ], [ 112.280273, 66.425537 ], [ 112.280273, 70.685421 ], [ 123.969727, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.753511 ], [ 118.775940, 73.588258 ], [ 119.017639, 73.120161 ], [ 123.197937, 72.971993 ], [ 123.255615, 73.735059 ], [ 123.750000, 73.695009 ], [ 123.969727, 73.676493 ], [ 123.969727, 70.539543 ], [ 112.280273, 70.539543 ], [ 112.280273, 73.822525 ], [ 112.500000, 73.869139 ], [ 113.019104, 73.977144 ], [ 113.527222, 73.335736 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.019104, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.753511 ], [ 118.775940, 73.588258 ], [ 119.017639, 73.120161 ], [ 123.197937, 72.971993 ], [ 123.255615, 73.735059 ], [ 123.750000, 73.695009 ], [ 123.969727, 73.676493 ], [ 123.969727, 70.539543 ], [ 112.280273, 70.539543 ], [ 112.280273, 73.822525 ], [ 112.500000, 73.869139 ], [ 113.019104, 73.977144 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.500000, 76.404292 ], [ 113.329468, 76.222329 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.777405, 75.031921 ], [ 112.500000, 74.975064 ], [ 112.280273, 74.929427 ], [ 112.280273, 76.451987 ], [ 112.500000, 76.404292 ] ] ], [ [ [ 113.019104, 73.977144 ], [ 113.032837, 73.958939 ], [ 112.931213, 73.958939 ], [ 113.019104, 73.977144 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.032837, 73.958939 ], [ 112.931213, 73.958939 ], [ 113.019104, 73.977144 ], [ 113.032837, 73.958939 ] ] ], [ [ [ 112.280273, 76.451987 ], [ 112.500000, 76.404292 ], [ 113.329468, 76.222329 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.777405, 75.031921 ], [ 112.500000, 74.975064 ], [ 112.280273, 74.929427 ], [ 112.280273, 76.451987 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -85.070048 ], [ 123.530273, -85.070048 ], [ 123.530273, -83.956169 ], [ 135.219727, -83.956169 ], [ 135.219727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -83.956169 ], [ 135.219727, -85.070048 ], [ 123.530273, -85.070048 ], [ 123.530273, -83.956169 ], [ 135.219727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -84.002262 ], [ 123.530273, -84.002262 ], [ 123.530273, -82.648222 ], [ 135.219727, -82.648222 ], [ 135.219727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -82.648222 ], [ 135.219727, -84.002262 ], [ 123.530273, -84.002262 ], [ 123.530273, -82.648222 ], [ 135.219727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -82.704241 ], [ 123.530273, -82.704241 ], [ 123.530273, -81.059130 ], [ 135.219727, -81.059130 ], [ 135.219727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -81.059130 ], [ 135.219727, -82.704241 ], [ 123.530273, -82.704241 ], [ 123.530273, -81.059130 ], [ 135.219727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -81.127169 ], [ 123.530273, -81.127169 ], [ 123.530273, -79.129976 ], [ 135.219727, -79.129976 ], [ 135.219727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -79.129976 ], [ 135.219727, -81.127169 ], [ 123.530273, -81.127169 ], [ 123.530273, -79.129976 ], [ 135.219727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -79.212538 ], [ 123.530273, -79.212538 ], [ 123.530273, -76.790701 ], [ 135.219727, -76.790701 ], [ 135.219727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -76.790701 ], [ 135.219727, -79.212538 ], [ 123.530273, -79.212538 ], [ 123.530273, -76.790701 ], [ 135.219727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -76.890745 ], [ 123.530273, -76.890745 ], [ 123.530273, -73.958939 ], [ 135.219727, -73.958939 ], [ 135.219727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -73.958939 ], [ 135.219727, -76.890745 ], [ 123.530273, -76.890745 ], [ 123.530273, -73.958939 ], [ 135.219727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -74.079925 ], [ 123.530273, -74.079925 ], [ 123.530273, -70.539543 ], [ 135.219727, -70.539543 ], [ 135.219727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -70.539543 ], [ 135.219727, -74.079925 ], [ 123.530273, -74.079925 ], [ 123.530273, -70.539543 ], [ 135.219727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -70.685421 ], [ 123.530273, -70.685421 ], [ 123.530273, -66.530768 ], [ 123.750000, -66.564654 ], [ 124.120789, -66.621392 ], [ 125.158997, -66.719285 ], [ 126.098328, -66.562469 ], [ 126.999207, -66.562469 ], [ 127.880859, -66.660596 ], [ 128.800964, -66.758334 ], [ 129.701843, -66.582126 ], [ 130.171509, -66.513260 ], [ 130.773010, -66.425537 ], [ 135.219727, -66.425537 ], [ 135.219727, -70.685421 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -66.425537 ], [ 135.219727, -70.685421 ], [ 123.530273, -70.685421 ], [ 123.530273, -66.530768 ], [ 123.750000, -66.564654 ], [ 124.120789, -66.621392 ], [ 125.158997, -66.719285 ], [ 126.098328, -66.562469 ], [ 126.999207, -66.562469 ], [ 127.880859, -66.660596 ], [ 128.800964, -66.758334 ], [ 129.701843, -66.582126 ], [ 130.171509, -66.513260 ], [ 130.773010, -66.425537 ], [ 135.219727, -66.425537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.098328, -66.562469 ], [ 126.999207, -66.562469 ], [ 127.339783, -66.600676 ], [ 125.867615, -66.600676 ], [ 126.098328, -66.562469 ] ] ], [ [ [ 129.701843, -66.582126 ], [ 130.171509, -66.513260 ], [ 130.781250, -66.424439 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.854675, -66.287851 ], [ 134.755554, -66.209308 ], [ 135.000000, -65.773490 ], [ 135.030212, -65.719335 ], [ 135.068665, -65.308387 ], [ 135.219727, -65.373705 ], [ 135.219727, -66.600676 ], [ 129.605713, -66.600676 ], [ 129.701843, -66.582126 ] ] ], [ [ [ 123.983459, -66.600676 ], [ 123.530273, -66.600676 ], [ 123.530273, -66.530768 ], [ 123.983459, -66.600676 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.530273, -66.530768 ], [ 123.983459, -66.600676 ], [ 123.530273, -66.600676 ], [ 123.530273, -66.530768 ] ] ], [ [ [ 127.339783, -66.600676 ], [ 125.867615, -66.600676 ], [ 126.098328, -66.562469 ], [ 126.999207, -66.562469 ], [ 127.339783, -66.600676 ] ] ], [ [ [ 135.219727, -65.373705 ], [ 135.219727, -66.600676 ], [ 129.605713, -66.600676 ], [ 129.701843, -66.582126 ], [ 130.171509, -66.513260 ], [ 130.781250, -66.424439 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.854675, -66.287851 ], [ 134.755554, -66.209308 ], [ 135.000000, -65.773490 ], [ 135.030212, -65.719335 ], [ 135.068665, -65.308387 ], [ 135.219727, -65.373705 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.612732, -33.222605 ], [ 134.085388, -32.847289 ], [ 134.272156, -32.616243 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.857910, -31.765537 ], [ 135.219727, -31.765537 ], [ 135.219727, -33.925130 ], [ 135.000000, -33.671783 ], [ 134.612732, -33.222605 ] ] ], [ [ [ 135.219727, -34.483920 ], [ 135.205994, -34.477128 ], [ 135.219727, -34.254946 ], [ 135.219727, -34.483920 ] ] ], [ [ [ 127.100830, -32.280167 ], [ 126.147766, -32.215125 ], [ 125.087585, -32.727220 ], [ 124.219666, -32.957977 ], [ 124.027405, -33.481854 ], [ 123.750000, -33.788279 ], [ 123.659363, -33.888658 ], [ 123.530273, -33.890937 ], [ 123.530273, -31.765537 ], [ 128.899841, -31.765537 ], [ 128.224182, -31.952162 ], [ 127.100830, -32.280167 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.219727, -33.925130 ], [ 135.000000, -33.671783 ], [ 134.612732, -33.222605 ], [ 134.085388, -32.847289 ], [ 134.272156, -32.616243 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.857910, -31.765537 ], [ 135.219727, -31.765537 ], [ 135.219727, -33.925130 ] ] ], [ [ [ 128.899841, -31.765537 ], [ 128.224182, -31.952162 ], [ 127.100830, -32.280167 ], [ 126.147766, -32.215125 ], [ 125.087585, -32.727220 ], [ 124.219666, -32.957977 ], [ 124.027405, -33.481854 ], [ 123.750000, -33.788279 ], [ 123.659363, -33.888658 ], [ 123.530273, -33.890937 ], [ 123.530273, -31.765537 ], [ 128.899841, -31.765537 ] ] ], [ [ [ 135.219727, -34.254946 ], [ 135.219727, -34.483920 ], [ 135.205994, -34.477128 ], [ 135.219727, -34.254946 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -32.138409 ], [ 133.258667, -32.138409 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.590234 ], [ 128.224182, -31.952162 ], [ 127.586975, -32.138409 ], [ 123.530273, -32.138409 ], [ 123.530273, -21.739091 ], [ 135.219727, -21.739091 ], [ 135.219727, -32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -21.739091 ], [ 135.219727, -32.138409 ], [ 133.258667, -32.138409 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.590234 ], [ 128.224182, -31.952162 ], [ 127.586975, -32.138409 ], [ 123.530273, -32.138409 ], [ 123.530273, -21.739091 ], [ 135.219727, -21.739091 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.489624, -11.178402 ], [ 133.016968, -11.375031 ], [ 133.549805, -11.784014 ], [ 134.393005, -12.042007 ], [ 134.675903, -11.939914 ], [ 135.219727, -12.205811 ], [ 135.219727, -22.146708 ], [ 123.530273, -22.146708 ], [ 123.530273, -17.219511 ], [ 123.750000, -17.117168 ], [ 123.857117, -17.067287 ], [ 123.750000, -16.922822 ], [ 123.530273, -16.628297 ], [ 123.530273, -16.549329 ], [ 123.750000, -16.209400 ], [ 123.815918, -16.109153 ], [ 124.258118, -16.325411 ], [ 124.378967, -15.564836 ], [ 124.925537, -15.074776 ], [ 125.167236, -14.679254 ], [ 125.669861, -14.509144 ], [ 125.683594, -14.229776 ], [ 126.123047, -14.346887 ], [ 126.142273, -14.093957 ], [ 126.581726, -13.952727 ], [ 127.065125, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.867814 ], [ 128.984985, -14.875778 ], [ 129.619446, -14.968667 ], [ 129.407959, -14.418720 ], [ 129.888611, -13.616625 ], [ 130.339050, -13.354882 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.535796 ], [ 131.223450, -12.181650 ], [ 131.734314, -12.302435 ], [ 132.574768, -12.111837 ], [ 132.555542, -11.601122 ], [ 131.822205, -11.272693 ], [ 132.165527, -11.178402 ], [ 132.355042, -11.127202 ], [ 132.489624, -11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.355042, -11.127202 ], [ 132.489624, -11.178402 ], [ 133.016968, -11.375031 ], [ 133.549805, -11.784014 ], [ 134.393005, -12.042007 ], [ 134.675903, -11.939914 ], [ 135.219727, -12.205811 ], [ 135.219727, -22.146708 ], [ 123.530273, -22.146708 ], [ 123.530273, -17.219511 ], [ 123.750000, -17.117168 ], [ 123.857117, -17.067287 ], [ 123.750000, -16.922822 ], [ 123.530273, -16.628297 ], [ 123.530273, -16.549329 ], [ 123.750000, -16.209400 ], [ 123.815918, -16.109153 ], [ 124.258118, -16.325411 ], [ 124.378967, -15.564836 ], [ 124.925537, -15.074776 ], [ 125.167236, -14.679254 ], [ 125.669861, -14.509144 ], [ 125.683594, -14.229776 ], [ 126.123047, -14.346887 ], [ 126.142273, -14.093957 ], [ 126.581726, -13.952727 ], [ 127.065125, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.867814 ], [ 128.984985, -14.875778 ], [ 129.619446, -14.968667 ], [ 129.407959, -14.418720 ], [ 129.888611, -13.616625 ], [ 130.339050, -13.354882 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.535796 ], [ 131.223450, -12.181650 ], [ 131.734314, -12.302435 ], [ 132.574768, -12.111837 ], [ 132.555542, -11.601122 ], [ 131.822205, -11.272693 ], [ 132.165527, -11.178402 ], [ 132.355042, -11.127202 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.068359, -9.088536 ], [ 125.087585, -9.392161 ], [ 124.433899, -10.139228 ], [ 123.750000, -10.312217 ], [ 123.579712, -10.358151 ], [ 123.530273, -10.309515 ], [ 123.530273, -9.968851 ], [ 123.549500, -9.898510 ], [ 123.750000, -9.611582 ], [ 123.977966, -9.289175 ], [ 124.966736, -8.890499 ], [ 125.068359, -9.088536 ] ] ], [ [ [ 134.725342, -5.736243 ], [ 134.722595, -6.214282 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.288635, -5.782699 ], [ 134.497375, -5.443757 ], [ 134.725342, -5.736243 ] ] ], [ [ [ 133.983765, -0.780005 ], [ 134.143066, -1.150740 ], [ 134.420471, -2.767478 ], [ 135.000000, -3.099378 ], [ 135.219727, -3.225529 ], [ 135.219727, -4.466904 ], [ 135.162048, -4.461427 ], [ 135.000000, -4.360105 ], [ 133.662415, -3.538093 ], [ 133.365784, -4.023179 ], [ 132.981262, -4.110848 ], [ 132.756042, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.819601 ], [ 133.066406, -2.460181 ], [ 133.777771, -2.479389 ], [ 133.695374, -2.213195 ], [ 132.231445, -2.210450 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.430820 ], [ 130.517578, -0.936543 ], [ 131.866150, -0.694868 ], [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ] ] ], [ [ [ 130.470886, -3.091151 ], [ 130.833435, -3.856034 ], [ 129.990234, -3.444883 ], [ 129.152527, -3.362631 ], [ 128.589478, -3.428433 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.841547 ], [ 129.369507, -2.800398 ], [ 130.470886, -3.091151 ] ] ], [ [ [ 127.249146, -3.458591 ], [ 126.872864, -3.790262 ], [ 126.183472, -3.606625 ], [ 125.988464, -3.176167 ], [ 126.999207, -3.126804 ], [ 127.249146, -3.458591 ] ] ], [ [ [ 128.029175, 0.000000 ], [ 127.966003, -0.249938 ], [ 128.377991, -0.777259 ], [ 128.097839, -0.898096 ], [ 127.694092, -0.266417 ], [ 127.630920, 0.000000 ], [ 127.578735, 0.219726 ], [ 128.084106, 0.219726 ], [ 128.029175, 0.000000 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.966736, -8.890499 ], [ 125.068359, -9.088536 ], [ 125.087585, -9.392161 ], [ 124.433899, -10.139228 ], [ 123.750000, -10.312217 ], [ 123.579712, -10.358151 ], [ 123.530273, -10.309515 ], [ 123.530273, -9.968851 ], [ 123.549500, -9.898510 ], [ 123.750000, -9.611582 ], [ 123.977966, -9.289175 ], [ 124.966736, -8.890499 ] ] ], [ [ [ 134.497375, -5.443757 ], [ 134.725342, -5.736243 ], [ 134.722595, -6.214282 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.288635, -5.782699 ], [ 134.497375, -5.443757 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.150740 ], [ 134.420471, -2.767478 ], [ 135.000000, -3.099378 ], [ 135.219727, -3.225529 ], [ 135.219727, -4.466904 ], [ 135.162048, -4.461427 ], [ 135.000000, -4.360105 ], [ 133.662415, -3.538093 ], [ 133.365784, -4.023179 ], [ 132.981262, -4.110848 ], [ 132.756042, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.819601 ], [ 133.066406, -2.460181 ], [ 133.777771, -2.479389 ], [ 133.695374, -2.213195 ], [ 132.231445, -2.210450 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.430820 ], [ 130.517578, -0.936543 ], [ 131.866150, -0.694868 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.470886, -3.091151 ], [ 130.833435, -3.856034 ], [ 129.990234, -3.444883 ], [ 129.152527, -3.362631 ], [ 128.589478, -3.428433 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.841547 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.999207, -3.126804 ], [ 127.249146, -3.458591 ], [ 126.872864, -3.790262 ], [ 126.183472, -3.606625 ], [ 125.988464, -3.176167 ], [ 126.999207, -3.126804 ] ] ], [ [ [ 128.084106, 0.219726 ], [ 128.029175, 0.000000 ], [ 127.966003, -0.249938 ], [ 128.377991, -0.777259 ], [ 128.097839, -0.898096 ], [ 127.694092, -0.266417 ], [ 127.630920, 0.000000 ], [ 127.578735, 0.219726 ], [ 128.084106, 0.219726 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.334290, -8.396300 ], [ 126.966248, -8.667918 ], [ 125.925293, -9.104809 ], [ 125.087585, -9.392161 ], [ 125.068359, -9.088536 ], [ 124.966736, -8.890499 ], [ 125.084839, -8.654342 ], [ 125.944519, -8.431621 ], [ 126.642151, -8.396300 ], [ 126.955261, -8.271291 ], [ 127.334290, -8.396300 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.955261, -8.271291 ], [ 127.334290, -8.396300 ], [ 126.966248, -8.667918 ], [ 125.925293, -9.104809 ], [ 125.087585, -9.392161 ], [ 125.068359, -9.088536 ], [ 124.966736, -8.890499 ], [ 125.084839, -8.654342 ], [ 125.944519, -8.431621 ], [ 126.642151, -8.396300 ], [ 126.955261, -8.271291 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.489624, -11.178402 ], [ 133.016968, -11.375031 ], [ 133.038940, -11.393879 ], [ 132.091370, -11.393879 ], [ 131.822205, -11.272693 ], [ 132.165527, -11.178402 ], [ 132.355042, -11.127202 ], [ 132.489624, -11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.355042, -11.127202 ], [ 132.489624, -11.178402 ], [ 133.016968, -11.375031 ], [ 133.038940, -11.393879 ], [ 132.091370, -11.393879 ], [ 131.822205, -11.272693 ], [ 132.165527, -11.178402 ], [ 132.355042, -11.127202 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.221924, 9.286465 ], [ 126.304321, 8.784654 ], [ 126.375732, 8.415319 ], [ 126.477356, 7.751816 ], [ 126.535034, 7.190826 ], [ 126.194458, 6.274348 ], [ 125.829163, 7.294363 ], [ 125.362244, 6.787353 ], [ 125.680847, 6.050430 ], [ 125.395203, 5.583184 ], [ 124.219666, 6.162401 ], [ 123.936768, 6.885527 ], [ 124.241638, 7.362467 ], [ 123.750000, 7.732765 ], [ 123.609924, 7.836173 ], [ 123.530273, 7.732765 ], [ 123.530273, 8.640765 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 124.601440, 8.515836 ], [ 124.763489, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.411682, 9.760491 ], [ 126.221924, 9.286465 ] ] ], [ [ [ 124.068604, 11.178402 ], [ 123.980713, 10.279789 ], [ 123.750000, 10.071629 ], [ 123.620911, 9.952620 ], [ 123.530273, 9.771318 ], [ 123.530273, 10.525619 ], [ 123.750000, 10.811724 ], [ 124.032898, 11.178402 ], [ 124.076843, 11.234980 ], [ 124.068604, 11.178402 ] ] ], [ [ [ 125.746765, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.313094 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.277100, 10.360853 ], [ 124.799194, 10.136524 ], [ 124.757996, 10.838701 ], [ 124.458618, 10.889951 ], [ 124.381714, 11.178402 ], [ 124.326782, 11.393879 ], [ 125.694580, 11.393879 ], [ 125.746765, 11.178402 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.411682, 9.760491 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.784654 ], [ 126.375732, 8.415319 ], [ 126.477356, 7.751816 ], [ 126.535034, 7.190826 ], [ 126.194458, 6.274348 ], [ 125.829163, 7.294363 ], [ 125.362244, 6.787353 ], [ 125.680847, 6.050430 ], [ 125.395203, 5.583184 ], [ 124.219666, 6.162401 ], [ 123.936768, 6.885527 ], [ 124.241638, 7.362467 ], [ 123.750000, 7.732765 ], [ 123.609924, 7.836173 ], [ 123.530273, 7.732765 ], [ 123.530273, 8.640765 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 124.601440, 8.515836 ], [ 124.763489, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.411682, 9.760491 ] ] ], [ [ [ 124.076843, 11.234980 ], [ 124.068604, 11.178402 ], [ 123.980713, 10.279789 ], [ 123.750000, 10.071629 ], [ 123.620911, 9.952620 ], [ 123.530273, 9.771318 ], [ 123.530273, 10.525619 ], [ 123.750000, 10.811724 ], [ 124.032898, 11.178402 ], [ 124.076843, 11.234980 ] ] ], [ [ [ 125.694580, 11.393879 ], [ 125.746765, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.313094 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.277100, 10.360853 ], [ 124.799194, 10.136524 ], [ 124.757996, 10.838701 ], [ 124.458618, 10.889951 ], [ 124.381714, 11.178402 ], [ 124.326782, 11.393879 ], [ 125.694580, 11.393879 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.001709, 1.631249 ], [ 128.592224, 1.543392 ], [ 128.685608, 1.134264 ], [ 128.633423, 0.260924 ], [ 128.119812, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.971497, -0.219726 ], [ 127.683105, -0.219726 ], [ 127.630920, 0.000000 ], [ 127.397461, 1.013436 ], [ 127.597961, 1.812442 ], [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ] ] ], [ [ [ 125.238647, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.255431 ], [ 123.684082, 0.236205 ], [ 123.530273, 0.269164 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.644977 ], [ 125.238647, 1.419838 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.592224, 1.543392 ], [ 128.685608, 1.134264 ], [ 128.633423, 0.260924 ], [ 128.119812, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.971497, -0.219726 ], [ 127.683105, -0.219726 ], [ 127.630920, 0.000000 ], [ 127.397461, 1.013436 ], [ 127.597961, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 125.065613, 1.644977 ], [ 125.238647, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.255431 ], [ 123.684082, 0.236205 ], [ 123.530273, 0.269164 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.644977 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.068604, 11.178402 ], [ 124.049377, 10.962764 ], [ 123.865356, 10.962764 ], [ 124.032898, 11.178402 ], [ 124.076843, 11.234980 ], [ 124.068604, 11.178402 ] ] ], [ [ [ 125.224915, 12.535796 ], [ 125.502319, 12.162856 ], [ 125.746765, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.313094 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.035400, 10.962764 ], [ 124.439392, 10.962764 ], [ 124.381714, 11.178402 ], [ 124.302063, 11.496174 ], [ 124.889832, 11.418110 ], [ 124.876099, 11.794769 ], [ 124.266357, 12.559925 ], [ 125.224915, 12.535796 ] ] ], [ [ [ 123.750000, 13.872747 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.181213, 12.999205 ], [ 124.076843, 12.538478 ], [ 123.750000, 12.744837 ], [ 123.530273, 12.884102 ], [ 123.530273, 13.971385 ], [ 123.750000, 13.872747 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.076843, 11.234980 ], [ 124.068604, 11.178402 ], [ 124.049377, 10.962764 ], [ 123.865356, 10.962764 ], [ 124.032898, 11.178402 ], [ 124.076843, 11.234980 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.224915, 12.535796 ], [ 125.502319, 12.162856 ], [ 125.746765, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.313094 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.035400, 10.962764 ], [ 124.439392, 10.962764 ], [ 124.381714, 11.178402 ], [ 124.302063, 11.496174 ], [ 124.889832, 11.418110 ], [ 124.876099, 11.794769 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 123.530273, 13.971385 ], [ 123.750000, 13.872747 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.181213, 12.999205 ], [ 124.076843, 12.538478 ], [ 123.750000, 12.744837 ], [ 123.530273, 12.884102 ], [ 123.530273, 13.971385 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.525574, 31.952162 ], [ 131.330566, 31.452096 ], [ 130.685120, 31.031755 ], [ 130.201721, 31.419288 ], [ 130.344543, 31.952162 ], [ 130.396729, 32.138409 ], [ 131.596985, 32.138409 ], [ 131.525574, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.596985, 32.138409 ], [ 131.525574, 31.952162 ], [ 131.330566, 31.452096 ], [ 130.685120, 31.031755 ], [ 130.201721, 31.419288 ], [ 130.344543, 31.952162 ], [ 130.396729, 32.138409 ], [ 131.596985, 32.138409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.180725, 41.108330 ], [ 125.917053, 40.979898 ], [ 125.079346, 40.570154 ], [ 124.263611, 39.928695 ], [ 123.750000, 39.823304 ], [ 123.530273, 39.778991 ], [ 123.530273, 41.145570 ], [ 126.213684, 41.145570 ], [ 126.180725, 41.108330 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.213684, 41.145570 ], [ 126.180725, 41.108330 ], [ 125.917053, 40.979898 ], [ 125.079346, 40.570154 ], [ 124.263611, 39.928695 ], [ 123.750000, 39.823304 ], [ 123.530273, 39.778991 ], [ 123.530273, 41.145570 ], [ 126.213684, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.696350, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.185486, 40.661889 ], [ 129.009705, 40.486649 ], [ 128.630676, 40.191463 ], [ 127.966003, 40.025511 ], [ 127.532043, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.383728, 39.215231 ], [ 127.781982, 39.051185 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.779236, 38.305025 ], [ 127.070618, 38.257593 ], [ 126.683350, 37.805444 ], [ 126.235657, 37.842326 ], [ 126.172485, 37.751172 ], [ 125.689087, 37.942031 ], [ 125.568237, 37.753344 ], [ 125.274353, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.950695 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.550313 ], [ 125.219421, 38.666212 ], [ 125.131531, 38.850403 ], [ 125.384216, 39.389509 ], [ 125.321045, 39.552765 ], [ 124.736023, 39.660685 ], [ 124.263611, 39.928695 ], [ 125.079346, 40.570154 ], [ 125.917053, 40.979898 ], [ 126.180725, 41.108330 ], [ 126.213684, 41.145570 ], [ 129.688110, 41.145570 ], [ 129.696350, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.688110, 41.145570 ], [ 129.696350, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.185486, 40.661889 ], [ 129.009705, 40.486649 ], [ 128.630676, 40.191463 ], [ 127.966003, 40.025511 ], [ 127.532043, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.383728, 39.215231 ], [ 127.781982, 39.051185 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.779236, 38.305025 ], [ 127.070618, 38.257593 ], [ 126.683350, 37.805444 ], [ 126.235657, 37.842326 ], [ 126.172485, 37.751172 ], [ 125.689087, 37.942031 ], [ 125.568237, 37.753344 ], [ 125.274353, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.950695 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.550313 ], [ 125.219421, 38.666212 ], [ 125.131531, 38.850403 ], [ 125.384216, 39.389509 ], [ 125.321045, 39.552765 ], [ 124.736023, 39.660685 ], [ 124.263611, 39.928695 ], [ 125.079346, 40.570154 ], [ 125.917053, 40.979898 ], [ 126.180725, 41.108330 ], [ 126.213684, 41.145570 ], [ 129.688110, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.210205, 37.433431 ], [ 129.460144, 36.785092 ], [ 129.465637, 35.632744 ], [ 129.089355, 35.083956 ], [ 128.185730, 34.890437 ], [ 127.386475, 34.477128 ], [ 126.485596, 34.391046 ], [ 126.372986, 34.935482 ], [ 126.557007, 35.686302 ], [ 126.114807, 36.725677 ], [ 126.859131, 36.894998 ], [ 126.172485, 37.751172 ], [ 126.235657, 37.842326 ], [ 126.683350, 37.805444 ], [ 127.070618, 38.257593 ], [ 127.779236, 38.305025 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ], [ 129.210205, 37.433431 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.433431 ], [ 129.460144, 36.785092 ], [ 129.465637, 35.632744 ], [ 129.089355, 35.083956 ], [ 128.185730, 34.890437 ], [ 127.386475, 34.477128 ], [ 126.485596, 34.391046 ], [ 126.372986, 34.935482 ], [ 126.557007, 35.686302 ], [ 126.114807, 36.725677 ], [ 126.859131, 36.894998 ], [ 126.172485, 37.751172 ], [ 126.235657, 37.842326 ], [ 126.683350, 37.805444 ], [ 127.070618, 38.257593 ], [ 127.779236, 38.305025 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 35.659528 ], [ 135.219727, 35.617116 ], [ 135.219727, 33.795126 ], [ 135.120850, 33.849889 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.338318, 34.377446 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.886377 ], [ 131.997986, 33.151349 ], [ 131.525574, 31.952162 ], [ 131.451416, 31.765537 ], [ 130.295105, 31.765537 ], [ 130.344543, 31.952162 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.296099 ], [ 130.352783, 33.605470 ], [ 130.877380, 34.234512 ], [ 131.882629, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.607239, 35.733136 ], [ 135.000000, 35.659528 ] ] ], [ [ [ 134.637451, 34.150454 ], [ 134.763794, 33.806538 ], [ 134.200745, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.277893, 33.291508 ], [ 133.014221, 32.706422 ], [ 132.360535, 32.990236 ], [ 132.368774, 33.465817 ], [ 132.923584, 34.061761 ], [ 133.492126, 33.945638 ], [ 133.901367, 34.366111 ], [ 134.637451, 34.150454 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.607239, 35.733136 ], [ 135.000000, 35.659528 ], [ 135.219727, 35.617116 ], [ 135.219727, 33.795126 ], [ 135.120850, 33.849889 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.338318, 34.377446 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.886377 ], [ 131.997986, 33.151349 ], [ 131.525574, 31.952162 ], [ 131.451416, 31.765537 ], [ 130.295105, 31.765537 ], [ 130.344543, 31.952162 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.296099 ], [ 130.352783, 33.605470 ], [ 130.877380, 34.234512 ], [ 131.882629, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.607239, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.150454 ], [ 134.763794, 33.806538 ], [ 134.200745, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.277893, 33.291508 ], [ 133.014221, 32.706422 ], [ 132.360535, 32.990236 ], [ 132.368774, 33.465817 ], [ 132.923584, 34.061761 ], [ 133.492126, 33.945638 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 43.723475 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.399061 ], [ 133.536072, 42.811522 ], [ 132.904358, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.778503, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.930285 ], [ 131.286621, 44.113226 ], [ 131.022949, 44.968684 ], [ 131.882629, 45.321254 ], [ 133.096619, 45.145242 ], [ 133.769531, 46.117038 ], [ 134.110107, 47.213971 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.436490 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.474742 ], [ 133.371277, 48.184401 ], [ 132.506104, 47.789171 ], [ 130.987244, 47.791016 ], [ 130.580750, 48.730832 ], [ 130.262146, 48.922499 ], [ 130.023193, 49.066668 ], [ 135.219727, 49.066668 ], [ 135.219727, 43.723475 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 49.066668 ], [ 135.219727, 43.723475 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.399061 ], [ 133.536072, 42.811522 ], [ 132.904358, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.778503, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.930285 ], [ 131.286621, 44.113226 ], [ 131.022949, 44.968684 ], [ 131.882629, 45.321254 ], [ 133.096619, 45.145242 ], [ 133.769531, 46.117038 ], [ 134.110107, 47.213971 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.436490 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.474742 ], [ 133.371277, 48.184401 ], [ 132.506104, 47.789171 ], [ 130.987244, 47.791016 ], [ 130.580750, 48.730832 ], [ 130.262146, 48.922499 ], [ 130.023193, 49.066668 ], [ 135.219727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.262146, 48.922499 ], [ 130.580750, 48.730832 ], [ 130.987244, 47.791016 ], [ 132.506104, 47.789171 ], [ 133.371277, 48.184401 ], [ 135.000000, 48.474742 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.436490 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.213971 ], [ 133.769531, 46.117038 ], [ 133.096619, 45.145242 ], [ 131.882629, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.113226 ], [ 131.143799, 42.930285 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.992981, 42.986567 ], [ 129.594727, 42.425484 ], [ 128.051147, 41.996243 ], [ 128.207703, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.867371, 41.818408 ], [ 126.180725, 41.108330 ], [ 125.914307, 40.979898 ], [ 125.573730, 40.813809 ], [ 123.530273, 40.813809 ], [ 123.530273, 49.066668 ], [ 130.023193, 49.066668 ], [ 130.262146, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.023193, 49.066668 ], [ 130.262146, 48.922499 ], [ 130.580750, 48.730832 ], [ 130.987244, 47.791016 ], [ 132.506104, 47.789171 ], [ 133.371277, 48.184401 ], [ 135.000000, 48.474742 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.436490 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.213971 ], [ 133.769531, 46.117038 ], [ 133.096619, 45.145242 ], [ 131.882629, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.113226 ], [ 131.143799, 42.930285 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.992981, 42.986567 ], [ 129.594727, 42.425484 ], [ 128.051147, 41.996243 ], [ 128.207703, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.867371, 41.818408 ], [ 126.180725, 41.108330 ], [ 125.914307, 40.979898 ], [ 125.573730, 40.813809 ], [ 123.530273, 40.813809 ], [ 123.530273, 49.066668 ], [ 130.023193, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.638428, 42.395066 ], [ 130.778503, 42.220382 ], [ 130.399475, 42.281373 ], [ 129.965515, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.537048, 40.813809 ], [ 125.573730, 40.813809 ], [ 125.914307, 40.979898 ], [ 126.180725, 41.108330 ], [ 126.867371, 41.818408 ], [ 127.342529, 41.504464 ], [ 128.207703, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.425484 ], [ 129.992981, 42.986567 ], [ 130.638428, 42.395066 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.992981, 42.986567 ], [ 130.638428, 42.395066 ], [ 130.778503, 42.220382 ], [ 130.399475, 42.281373 ], [ 129.965515, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.537048, 40.813809 ], [ 125.573730, 40.813809 ], [ 125.914307, 40.979898 ], [ 126.180725, 41.108330 ], [ 126.867371, 41.818408 ], [ 127.342529, 41.504464 ], [ 128.207703, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.425484 ], [ 129.992981, 42.986567 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 54.792768 ], [ 135.123596, 54.730964 ], [ 135.219727, 54.724620 ], [ 135.219727, 48.777913 ], [ 130.501099, 48.777913 ], [ 130.262146, 48.922499 ], [ 129.396973, 49.441343 ], [ 127.655640, 49.761752 ], [ 127.284851, 50.739932 ], [ 126.938782, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.944519, 52.794458 ], [ 125.065613, 53.161594 ], [ 123.750000, 53.424264 ], [ 123.568726, 53.460255 ], [ 123.530273, 53.460255 ], [ 123.530273, 55.899956 ], [ 135.219727, 55.899956 ], [ 135.219727, 54.792768 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 55.899956 ], [ 135.219727, 54.792768 ], [ 135.123596, 54.730964 ], [ 135.219727, 54.724620 ], [ 135.219727, 48.777913 ], [ 130.501099, 48.777913 ], [ 130.262146, 48.922499 ], [ 129.396973, 49.441343 ], [ 127.655640, 49.761752 ], [ 127.284851, 50.739932 ], [ 126.938782, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.944519, 52.794458 ], [ 125.065613, 53.161594 ], [ 123.750000, 53.424264 ], [ 123.568726, 53.460255 ], [ 123.530273, 53.460255 ], [ 123.530273, 55.899956 ], [ 135.219727, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.750000, 53.425901 ], [ 125.065613, 53.161594 ], [ 125.944519, 52.794458 ], [ 126.562500, 51.784834 ], [ 126.938782, 51.354631 ], [ 127.284851, 50.739932 ], [ 127.655640, 49.761752 ], [ 129.396973, 49.441343 ], [ 130.262146, 48.922499 ], [ 130.501099, 48.777913 ], [ 123.530273, 48.777913 ], [ 123.530273, 53.460255 ], [ 123.571472, 53.460255 ], [ 123.750000, 53.425901 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.571472, 53.460255 ], [ 123.750000, 53.425901 ], [ 125.065613, 53.161594 ], [ 125.944519, 52.794458 ], [ 126.562500, 51.784834 ], [ 126.938782, 51.354631 ], [ 127.284851, 50.739932 ], [ 127.655640, 49.761752 ], [ 129.396973, 49.441343 ], [ 130.262146, 48.922499 ], [ 130.501099, 48.777913 ], [ 123.530273, 48.777913 ], [ 123.530273, 53.460255 ], [ 123.571472, 53.460255 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 55.652798 ], [ 123.530273, 55.652798 ], [ 123.530273, 61.710706 ], [ 135.219727, 61.710706 ], [ 135.219727, 55.652798 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 61.710706 ], [ 135.219727, 55.652798 ], [ 123.530273, 55.652798 ], [ 123.530273, 61.710706 ], [ 135.219727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 61.501734 ], [ 123.530273, 61.501734 ], [ 123.530273, 66.600676 ], [ 135.219727, 66.600676 ], [ 135.219727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 66.600676 ], [ 135.219727, 61.501734 ], [ 123.530273, 61.501734 ], [ 123.530273, 66.600676 ], [ 135.219727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 66.425537 ], [ 123.530273, 66.425537 ], [ 123.530273, 70.685421 ], [ 135.219727, 70.685421 ], [ 135.219727, 66.425537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, 70.685421 ], [ 135.219727, 66.425537 ], [ 123.530273, 66.425537 ], [ 123.530273, 70.685421 ], [ 135.219727, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.750000, 73.695009 ], [ 125.378723, 73.560299 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.039425 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.787814 ], [ 132.253418, 71.836547 ], [ 133.857422, 71.386895 ], [ 135.219727, 71.603082 ], [ 135.219727, 70.539543 ], [ 123.530273, 70.539543 ], [ 123.530273, 73.712735 ], [ 123.750000, 73.695009 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.530273, 73.712735 ], [ 123.750000, 73.695009 ], [ 125.378723, 73.560299 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.039425 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.787814 ], [ 132.253418, 71.836547 ], [ 133.857422, 71.386895 ], [ 135.219727, 71.603082 ], [ 135.219727, 70.539543 ], [ 123.530273, 70.539543 ], [ 123.530273, 73.712735 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -85.070048 ], [ 134.780273, -85.070048 ], [ 134.780273, -83.956169 ], [ 146.469727, -83.956169 ], [ 146.469727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -83.956169 ], [ 146.469727, -85.070048 ], [ 134.780273, -85.070048 ], [ 134.780273, -83.956169 ], [ 146.469727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -84.002262 ], [ 134.780273, -84.002262 ], [ 134.780273, -82.648222 ], [ 146.469727, -82.648222 ], [ 146.469727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -82.648222 ], [ 146.469727, -84.002262 ], [ 134.780273, -84.002262 ], [ 134.780273, -82.648222 ], [ 146.469727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -82.704241 ], [ 134.780273, -82.704241 ], [ 134.780273, -81.059130 ], [ 146.469727, -81.059130 ], [ 146.469727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -81.059130 ], [ 146.469727, -82.704241 ], [ 134.780273, -82.704241 ], [ 134.780273, -81.059130 ], [ 146.469727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -81.127169 ], [ 134.780273, -81.127169 ], [ 134.780273, -79.129976 ], [ 146.469727, -79.129976 ], [ 146.469727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -79.129976 ], [ 146.469727, -81.127169 ], [ 134.780273, -81.127169 ], [ 134.780273, -79.129976 ], [ 146.469727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -79.212538 ], [ 134.780273, -79.212538 ], [ 134.780273, -76.790701 ], [ 146.469727, -76.790701 ], [ 146.469727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -76.790701 ], [ 146.469727, -79.212538 ], [ 134.780273, -79.212538 ], [ 134.780273, -76.790701 ], [ 146.469727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -76.890745 ], [ 134.780273, -76.890745 ], [ 134.780273, -73.958939 ], [ 146.469727, -73.958939 ], [ 146.469727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -73.958939 ], [ 146.469727, -76.890745 ], [ 134.780273, -76.890745 ], [ 134.780273, -73.958939 ], [ 146.469727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -74.079925 ], [ 134.780273, -74.079925 ], [ 134.780273, -70.539543 ], [ 146.469727, -70.539543 ], [ 146.469727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -70.539543 ], [ 146.469727, -74.079925 ], [ 134.780273, -74.079925 ], [ 134.780273, -70.539543 ], [ 146.469727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.205750, -66.444204 ], [ 136.288147, -66.513260 ], [ 136.617737, -66.777835 ], [ 137.458191, -66.953727 ], [ 138.595276, -66.895596 ], [ 139.908142, -66.875109 ], [ 140.809021, -66.816791 ], [ 142.119141, -66.816791 ], [ 143.061218, -66.797321 ], [ 144.371338, -66.836246 ], [ 145.489197, -66.914988 ], [ 146.195068, -67.228496 ], [ 145.997314, -67.600849 ], [ 146.250000, -67.714654 ], [ 146.469727, -67.814431 ], [ 146.469727, -70.685421 ], [ 134.780273, -70.685421 ], [ 134.780273, -66.425537 ], [ 136.189270, -66.425537 ], [ 136.205750, -66.444204 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.189270, -66.425537 ], [ 136.205750, -66.444204 ], [ 136.288147, -66.513260 ], [ 136.617737, -66.777835 ], [ 137.458191, -66.953727 ], [ 138.595276, -66.895596 ], [ 139.908142, -66.875109 ], [ 140.809021, -66.816791 ], [ 142.119141, -66.816791 ], [ 143.061218, -66.797321 ], [ 144.371338, -66.836246 ], [ 145.489197, -66.914988 ], [ 146.195068, -67.228496 ], [ 145.997314, -67.600849 ], [ 146.250000, -67.714654 ], [ 146.469727, -67.814431 ], [ 146.469727, -70.685421 ], [ 134.780273, -70.685421 ], [ 134.780273, -66.425537 ], [ 136.189270, -66.425537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.694885, -65.582314 ], [ 135.873413, -66.032527 ], [ 136.205750, -66.444204 ], [ 136.288147, -66.513260 ], [ 136.395264, -66.600676 ], [ 134.780273, -66.600676 ], [ 134.780273, -66.164951 ], [ 135.000000, -65.773490 ], [ 135.030212, -65.719335 ], [ 135.068665, -65.308387 ], [ 135.694885, -65.582314 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.068665, -65.308387 ], [ 135.694885, -65.582314 ], [ 135.873413, -66.032527 ], [ 136.205750, -66.444204 ], [ 136.288147, -66.513260 ], [ 136.395264, -66.600676 ], [ 134.780273, -66.600676 ], [ 134.780273, -66.164951 ], [ 135.000000, -65.773490 ], [ 135.030212, -65.719335 ], [ 135.068665, -65.308387 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.920410, -40.979898 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.108330 ], [ 146.469727, -43.570442 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.692530 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.725647, -40.979898 ], [ 144.733887, -40.813809 ], [ 145.458984, -40.813809 ], [ 145.920410, -40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.458984, -40.813809 ], [ 145.920410, -40.979898 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.108330 ], [ 146.469727, -43.570442 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.692530 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.725647, -40.979898 ], [ 144.733887, -40.813809 ], [ 145.458984, -40.813809 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.395813, -40.790939 ], [ 145.920410, -40.979898 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.108330 ], [ 146.469727, -41.145570 ], [ 144.717407, -41.145570 ], [ 144.725647, -40.979898 ], [ 144.742126, -40.703546 ], [ 145.395813, -40.790939 ] ] ], [ [ [ 146.469727, -38.925229 ], [ 146.315918, -39.034120 ], [ 146.250000, -38.997841 ], [ 145.489197, -38.593261 ], [ 144.876709, -38.417014 ], [ 145.030518, -37.894363 ], [ 144.483948, -38.084851 ], [ 143.607788, -38.807611 ], [ 142.745361, -38.537424 ], [ 142.176819, -38.378269 ], [ 141.605530, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.990540, -37.402892 ], [ 139.806519, -36.641978 ], [ 139.573059, -36.137875 ], [ 139.081421, -35.730907 ], [ 138.120117, -35.610418 ], [ 138.446960, -35.126648 ], [ 138.205261, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.502136, -34.129995 ], [ 137.889404, -33.639776 ], [ 137.809753, -32.898038 ], [ 136.996765, -33.751748 ], [ 136.370544, -34.093610 ], [ 135.988770, -34.888184 ], [ 135.205994, -34.477128 ], [ 135.238953, -33.947917 ], [ 135.000000, -33.671783 ], [ 134.780273, -33.415395 ], [ 134.780273, -31.765537 ], [ 146.469727, -31.765537 ], [ 146.469727, -38.925229 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.742126, -40.703546 ], [ 145.395813, -40.790939 ], [ 145.920410, -40.979898 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.108330 ], [ 146.469727, -41.145570 ], [ 144.717407, -41.145570 ], [ 144.725647, -40.979898 ], [ 144.742126, -40.703546 ] ] ], [ [ [ 146.469727, -31.765537 ], [ 146.469727, -38.925229 ], [ 146.315918, -39.034120 ], [ 146.250000, -38.997841 ], [ 145.489197, -38.593261 ], [ 144.876709, -38.417014 ], [ 145.030518, -37.894363 ], [ 144.483948, -38.084851 ], [ 143.607788, -38.807611 ], [ 142.745361, -38.537424 ], [ 142.176819, -38.378269 ], [ 141.605530, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.990540, -37.402892 ], [ 139.806519, -36.641978 ], [ 139.573059, -36.137875 ], [ 139.081421, -35.730907 ], [ 138.120117, -35.610418 ], [ 138.446960, -35.126648 ], [ 138.205261, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.502136, -34.129995 ], [ 137.889404, -33.639776 ], [ 137.809753, -32.898038 ], [ 136.996765, -33.751748 ], [ 136.370544, -34.093610 ], [ 135.988770, -34.888184 ], [ 135.205994, -34.477128 ], [ 135.238953, -33.947917 ], [ 135.000000, -33.671783 ], [ 134.780273, -33.415395 ], [ 134.780273, -31.765537 ], [ 146.469727, -31.765537 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -32.138409 ], [ 134.780273, -32.138409 ], [ 134.780273, -21.739091 ], [ 146.469727, -21.739091 ], [ 146.469727, -32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -21.739091 ], [ 146.469727, -32.138409 ], [ 134.780273, -32.138409 ], [ 134.780273, -21.739091 ], [ 146.469727, -21.739091 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.794800, -11.156845 ], [ 142.794800, -11.178402 ], [ 142.866211, -11.784014 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.561096, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.373840, -14.984586 ], [ 145.269470, -15.427206 ], [ 145.483704, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.159363, -17.759150 ], [ 146.063232, -18.278910 ], [ 146.250000, -18.669665 ], [ 146.387329, -18.958246 ], [ 146.469727, -18.997206 ], [ 146.469727, -22.146708 ], [ 134.780273, -22.146708 ], [ 134.780273, -11.990965 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.246076 ], [ 135.881653, -11.961410 ], [ 136.257935, -12.047379 ], [ 136.491394, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.683655, -12.886780 ], [ 136.304626, -13.290738 ], [ 135.961304, -13.322812 ], [ 136.076660, -13.723377 ], [ 135.782776, -14.221789 ], [ 135.428467, -14.713791 ], [ 135.499878, -14.995199 ], [ 136.293640, -15.548960 ], [ 137.062683, -15.868883 ], [ 137.579041, -16.214675 ], [ 138.301392, -16.807170 ], [ 138.584290, -16.804541 ], [ 139.106140, -17.062036 ], [ 139.259949, -17.368989 ], [ 140.213013, -17.709445 ], [ 140.874939, -17.368989 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.396790, -15.839820 ], [ 141.701660, -15.042948 ], [ 141.561584, -14.559659 ], [ 141.632996, -14.269707 ], [ 141.517639, -13.696693 ], [ 141.649475, -12.942999 ], [ 141.841736, -12.739479 ], [ 141.685181, -12.407071 ], [ 141.926880, -11.875414 ], [ 142.116394, -11.326560 ], [ 142.127380, -11.178402 ], [ 142.141113, -11.040951 ], [ 142.218018, -10.962764 ], [ 142.682190, -10.962764 ], [ 142.794800, -11.156845 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.682190, -10.962764 ], [ 142.794800, -11.156845 ], [ 142.794800, -11.178402 ], [ 142.866211, -11.784014 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.561096, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.373840, -14.984586 ], [ 145.269470, -15.427206 ], [ 145.483704, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.159363, -17.759150 ], [ 146.063232, -18.278910 ], [ 146.250000, -18.669665 ], [ 146.387329, -18.958246 ], [ 146.469727, -18.997206 ], [ 146.469727, -22.146708 ], [ 134.780273, -22.146708 ], [ 134.780273, -11.990965 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.246076 ], [ 135.881653, -11.961410 ], [ 136.257935, -12.047379 ], [ 136.491394, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.683655, -12.886780 ], [ 136.304626, -13.290738 ], [ 135.961304, -13.322812 ], [ 136.076660, -13.723377 ], [ 135.782776, -14.221789 ], [ 135.428467, -14.713791 ], [ 135.499878, -14.995199 ], [ 136.293640, -15.548960 ], [ 137.062683, -15.868883 ], [ 137.579041, -16.214675 ], [ 138.301392, -16.807170 ], [ 138.584290, -16.804541 ], [ 139.106140, -17.062036 ], [ 139.259949, -17.368989 ], [ 140.213013, -17.709445 ], [ 140.874939, -17.368989 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.396790, -15.839820 ], [ 141.701660, -15.042948 ], [ 141.561584, -14.559659 ], [ 141.632996, -14.269707 ], [ 141.517639, -13.696693 ], [ 141.649475, -12.942999 ], [ 141.841736, -12.739479 ], [ 141.685181, -12.407071 ], [ 141.926880, -11.875414 ], [ 142.116394, -11.326560 ], [ 142.127380, -11.178402 ], [ 142.141113, -11.040951 ], [ 142.218018, -10.962764 ], [ 142.682190, -10.962764 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.183044, -2.051258 ], [ 139.924622, -2.408043 ], [ 140.998535, -2.600120 ], [ 141.031494, -9.115656 ], [ 140.141602, -8.295752 ], [ 139.125366, -8.094581 ], [ 138.880920, -8.379997 ], [ 137.612000, -8.409885 ], [ 138.037720, -7.596663 ], [ 138.666687, -7.318882 ], [ 138.405762, -6.230664 ], [ 137.925110, -5.391805 ], [ 135.988770, -4.546308 ], [ 135.162048, -4.461427 ], [ 135.000000, -4.360105 ], [ 134.780273, -4.223161 ], [ 134.780273, -2.973213 ], [ 135.000000, -3.099378 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.183044, -2.051258 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.328857, -1.702630 ], [ 139.183044, -2.051258 ], [ 139.924622, -2.408043 ], [ 140.998535, -2.600120 ], [ 141.031494, -9.115656 ], [ 140.141602, -8.295752 ], [ 139.125366, -8.094581 ], [ 138.880920, -8.379997 ], [ 137.612000, -8.409885 ], [ 138.037720, -7.596663 ], [ 138.666687, -7.318882 ], [ 138.405762, -6.230664 ], [ 137.925110, -5.391805 ], [ 135.988770, -4.546308 ], [ 135.162048, -4.461427 ], [ 135.000000, -4.360105 ], [ 134.780273, -4.223161 ], [ 134.780273, -2.973213 ], [ 135.000000, -3.099378 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.794800, -11.156845 ], [ 142.794800, -11.178402 ], [ 142.819519, -11.393879 ], [ 142.091675, -11.393879 ], [ 142.116394, -11.326560 ], [ 142.127380, -11.178402 ], [ 142.141113, -11.040951 ], [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.794800, -11.178402 ], [ 142.819519, -11.393879 ], [ 142.091675, -11.393879 ], [ 142.116394, -11.326560 ], [ 142.127380, -11.178402 ], [ 142.141113, -11.040951 ], [ 142.514648, -10.666006 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.734375, -3.288598 ], [ 144.582825, -3.858774 ], [ 145.272217, -4.371059 ], [ 145.829773, -4.874784 ], [ 145.980835, -5.462896 ], [ 146.250000, -5.561315 ], [ 146.469727, -5.643319 ], [ 146.469727, -8.779225 ], [ 146.250000, -8.409885 ], [ 146.046753, -8.067388 ], [ 144.742126, -7.629331 ], [ 143.896179, -7.915073 ], [ 143.283691, -8.244110 ], [ 143.412781, -8.982749 ], [ 142.627258, -9.324411 ], [ 142.066956, -9.159044 ], [ 141.031494, -9.115656 ], [ 140.998535, -2.600120 ], [ 142.734375, -3.288598 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.998535, -2.600120 ], [ 142.734375, -3.288598 ], [ 144.582825, -3.858774 ], [ 145.272217, -4.371059 ], [ 145.829773, -4.874784 ], [ 145.980835, -5.462896 ], [ 146.250000, -5.561315 ], [ 146.469727, -5.643319 ], [ 146.469727, -8.779225 ], [ 146.250000, -8.409885 ], [ 146.046753, -8.067388 ], [ 144.742126, -7.629331 ], [ 143.896179, -7.915073 ], [ 143.283691, -8.244110 ], [ 143.412781, -8.982749 ], [ 142.627258, -9.324411 ], [ 142.066956, -9.159044 ], [ 141.031494, -9.115656 ], [ 140.998535, -2.600120 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.523132, 40.979898 ], [ 141.913147, 39.991851 ], [ 141.882935, 39.181175 ], [ 140.957336, 38.175592 ], [ 140.973816, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.140125 ], [ 138.974304, 34.669359 ], [ 137.216492, 34.608345 ], [ 135.791016, 33.465817 ], [ 135.120850, 33.849889 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.780273, 34.560859 ], [ 134.780273, 35.701917 ], [ 135.000000, 35.659528 ], [ 135.675659, 35.527756 ], [ 136.722107, 37.306829 ], [ 137.389526, 36.829073 ], [ 139.424744, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.880676, 40.563895 ], [ 140.158081, 40.979898 ], [ 140.267944, 41.145570 ], [ 141.457214, 41.145570 ], [ 141.523132, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.457214, 41.145570 ], [ 141.523132, 40.979898 ], [ 141.913147, 39.991851 ], [ 141.882935, 39.181175 ], [ 140.957336, 38.175592 ], [ 140.973816, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.140125 ], [ 138.974304, 34.669359 ], [ 137.216492, 34.608345 ], [ 135.791016, 33.465817 ], [ 135.120850, 33.849889 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.780273, 34.560859 ], [ 134.780273, 35.701917 ], [ 135.000000, 35.659528 ], [ 135.675659, 35.527756 ], [ 136.722107, 37.306829 ], [ 137.389526, 36.829073 ], [ 139.424744, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.880676, 40.563895 ], [ 140.158081, 40.979898 ], [ 140.267944, 41.145570 ], [ 141.457214, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.191040, 48.922499 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.000861 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.145242 ], [ 135.513611, 43.990839 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.399061 ], [ 134.780273, 43.361132 ], [ 134.780273, 48.063397 ], [ 135.000000, 48.436490 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.474742 ], [ 134.780273, 48.436490 ], [ 134.780273, 49.066668 ], [ 140.232239, 49.066668 ], [ 140.191040, 48.922499 ] ] ], [ [ [ 142.558594, 47.862931 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.741743 ], [ 142.091675, 45.968334 ], [ 141.904907, 46.807580 ], [ 142.017517, 47.781789 ], [ 141.902161, 48.859294 ], [ 141.965332, 49.066668 ], [ 143.069458, 49.066668 ], [ 143.006287, 48.922499 ], [ 142.558594, 47.862931 ] ] ], [ [ [ 144.651489, 48.976612 ], [ 144.247742, 49.066668 ], [ 144.599304, 49.066668 ], [ 144.651489, 48.976612 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.232239, 49.066668 ], [ 140.191040, 48.922499 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.000861 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.145242 ], [ 135.513611, 43.990839 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.399061 ], [ 134.780273, 43.361132 ], [ 134.780273, 48.063397 ], [ 135.000000, 48.436490 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.474742 ], [ 134.780273, 48.436490 ], [ 134.780273, 49.066668 ], [ 140.232239, 49.066668 ] ] ], [ [ [ 143.069458, 49.066668 ], [ 143.006287, 48.922499 ], [ 142.558594, 47.862931 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.741743 ], [ 142.091675, 45.968334 ], [ 141.904907, 46.807580 ], [ 142.017517, 47.781789 ], [ 141.902161, 48.859294 ], [ 141.965332, 49.066668 ], [ 143.069458, 49.066668 ] ] ], [ [ [ 144.599304, 49.066668 ], [ 144.651489, 48.976612 ], [ 144.247742, 49.066668 ], [ 144.599304, 49.066668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.436490 ], [ 134.780273, 48.063397 ], [ 134.780273, 48.436490 ], [ 135.000000, 48.474742 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.436490 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.024719, 48.478384 ], [ 135.000000, 48.436490 ], [ 134.780273, 48.063397 ], [ 134.780273, 48.436490 ], [ 135.000000, 48.474742 ], [ 135.024719, 48.478384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.523132, 40.979898 ], [ 141.589050, 40.813809 ], [ 140.045471, 40.813809 ], [ 140.158081, 40.979898 ], [ 140.303650, 41.195190 ], [ 141.366577, 41.378870 ], [ 141.523132, 40.979898 ] ] ], [ [ [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.318909, 44.386692 ], [ 145.541382, 43.263206 ], [ 144.058228, 42.988576 ], [ 143.182068, 41.996243 ], [ 141.611023, 42.680416 ], [ 141.067200, 41.584634 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.335167 ], [ 141.380310, 43.389082 ], [ 141.671448, 44.774036 ], [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.378870 ], [ 141.523132, 40.979898 ], [ 141.589050, 40.813809 ], [ 140.045471, 40.813809 ], [ 140.158081, 40.979898 ], [ 140.303650, 41.195190 ], [ 141.366577, 41.378870 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.318909, 44.386692 ], [ 145.541382, 43.263206 ], [ 144.058228, 42.988576 ], [ 143.182068, 41.996243 ], [ 141.611023, 42.680416 ], [ 141.067200, 41.584634 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.335167 ], [ 141.380310, 43.389082 ], [ 141.671448, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.912903, 53.704836 ], [ 143.258972, 52.741280 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.748622 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 143.006287, 48.922499 ], [ 142.945862, 48.777913 ], [ 141.910400, 48.777913 ], [ 141.902161, 48.859294 ], [ 141.921387, 48.922499 ], [ 142.135620, 49.616049 ], [ 142.179565, 50.953236 ], [ 141.591797, 51.935799 ], [ 141.682434, 53.302980 ], [ 142.605286, 53.763325 ], [ 142.207031, 54.226708 ], [ 142.654724, 54.366158 ], [ 142.912903, 53.704836 ] ] ], [ [ [ 136.793518, 55.776573 ], [ 135.123596, 54.730964 ], [ 136.700134, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.804016, 54.255598 ], [ 139.899902, 54.189763 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.239574 ], [ 140.594788, 51.241286 ], [ 140.512390, 50.046557 ], [ 140.191040, 48.922499 ], [ 140.149841, 48.777913 ], [ 134.780273, 48.777913 ], [ 134.780273, 55.899956 ], [ 136.994019, 55.899956 ], [ 136.793518, 55.776573 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.654724, 54.366158 ], [ 142.912903, 53.704836 ], [ 143.258972, 52.741280 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.748622 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 143.006287, 48.922499 ], [ 142.945862, 48.777913 ], [ 141.910400, 48.777913 ], [ 141.902161, 48.859294 ], [ 141.921387, 48.922499 ], [ 142.135620, 49.616049 ], [ 142.179565, 50.953236 ], [ 141.591797, 51.935799 ], [ 141.682434, 53.302980 ], [ 142.605286, 53.763325 ], [ 142.207031, 54.226708 ], [ 142.654724, 54.366158 ] ] ], [ [ [ 135.766296, 54.678595 ], [ 136.700134, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.804016, 54.255598 ], [ 139.899902, 54.189763 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.239574 ], [ 140.594788, 51.241286 ], [ 140.512390, 50.046557 ], [ 140.191040, 48.922499 ], [ 140.149841, 48.777913 ], [ 135.766296, 54.678595 ] ] ], [ [ [ 136.994019, 55.899956 ], [ 136.793518, 55.776573 ], [ 135.521851, 54.983918 ], [ 134.780273, 55.899956 ], [ 136.994019, 55.899956 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, 59.282720 ], [ 146.250000, 59.295345 ], [ 145.486450, 59.337392 ], [ 142.196045, 59.040555 ], [ 138.957825, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.590271, 55.652798 ], [ 134.780273, 55.652798 ], [ 134.780273, 61.710706 ], [ 146.469727, 61.710706 ], [ 146.469727, 59.282720 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, 61.710706 ], [ 146.469727, 59.282720 ], [ 146.250000, 59.295345 ], [ 145.486450, 59.337392 ], [ 142.196045, 59.040555 ], [ 138.957825, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.590271, 55.652798 ], [ 134.780273, 55.652798 ], [ 134.780273, 61.710706 ], [ 146.469727, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, 61.501734 ], [ 134.780273, 61.501734 ], [ 134.780273, 66.600676 ], [ 146.469727, 66.600676 ], [ 146.469727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, 66.600676 ], [ 146.469727, 61.501734 ], [ 134.780273, 61.501734 ], [ 134.780273, 66.600676 ], [ 146.469727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, 66.425537 ], [ 134.780273, 66.425537 ], [ 134.780273, 70.685421 ], [ 146.469727, 70.685421 ], [ 146.469727, 66.425537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, 70.685421 ], [ 146.469727, 66.425537 ], [ 134.780273, 66.425537 ], [ 134.780273, 70.685421 ], [ 146.469727, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.250000, 72.437192 ], [ 146.469727, 72.421439 ], [ 146.469727, 70.539543 ], [ 134.780273, 70.539543 ], [ 134.780273, 71.533611 ], [ 135.000000, 71.568378 ], [ 135.560303, 71.655885 ], [ 137.496643, 71.348285 ], [ 138.232727, 71.628203 ], [ 139.869690, 71.488319 ], [ 139.147339, 72.416461 ], [ 140.465698, 72.850122 ], [ 146.250000, 72.437192 ] ] ], [ [ [ 143.481445, 73.475361 ], [ 143.602295, 73.213220 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.317611 ], [ 139.861450, 73.370356 ], [ 140.809021, 73.765801 ], [ 142.061462, 73.857688 ], [ 143.481445, 73.475361 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 146.250000, 72.437192 ], [ 146.469727, 72.421439 ], [ 146.469727, 70.539543 ], [ 134.780273, 70.539543 ], [ 134.780273, 71.533611 ], [ 135.000000, 71.568378 ], [ 135.560303, 71.655885 ], [ 137.496643, 71.348285 ], [ 138.232727, 71.628203 ], [ 139.869690, 71.488319 ], [ 139.147339, 72.416461 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.061462, 73.857688 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.213220 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.317611 ], [ 139.861450, 73.370356 ], [ 140.809021, 73.765801 ], [ 142.061462, 73.857688 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.470947, 76.093537 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.611267, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262143 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137037 ], [ 141.470947, 76.093537 ] ] ], [ [ [ 146.469727, 75.488213 ], [ 146.469727, 75.099871 ], [ 146.118164, 75.173143 ], [ 146.250000, 75.353398 ], [ 146.357117, 75.497157 ], [ 146.469727, 75.488213 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.137037 ], [ 141.470947, 76.093537 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.611267, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262143 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137037 ] ] ], [ [ [ 146.357117, 75.497157 ], [ 146.469727, 75.099871 ], [ 146.118164, 75.173143 ], [ 146.250000, 75.353398 ], [ 146.357117, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -85.070048 ], [ 146.030273, -85.070048 ], [ 146.030273, -83.956169 ], [ 157.719727, -83.956169 ], [ 157.719727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -83.956169 ], [ 157.719727, -85.070048 ], [ 146.030273, -85.070048 ], [ 146.030273, -83.956169 ], [ 157.719727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -84.002262 ], [ 146.030273, -84.002262 ], [ 146.030273, -82.648222 ], [ 157.719727, -82.648222 ], [ 157.719727, -84.002262 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -82.648222 ], [ 157.719727, -84.002262 ], [ 146.030273, -84.002262 ], [ 146.030273, -82.648222 ], [ 157.719727, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -82.704241 ], [ 146.030273, -82.704241 ], [ 146.030273, -81.059130 ], [ 157.719727, -81.059130 ], [ 157.719727, -82.704241 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -81.059130 ], [ 157.719727, -82.704241 ], [ 146.030273, -82.704241 ], [ 146.030273, -81.059130 ], [ 157.719727, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -81.127169 ], [ 146.030273, -81.127169 ], [ 146.030273, -79.129976 ], [ 157.719727, -79.129976 ], [ 157.719727, -81.127169 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -79.129976 ], [ 157.719727, -81.127169 ], [ 146.030273, -81.127169 ], [ 146.030273, -79.129976 ], [ 157.719727, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -79.212538 ], [ 146.030273, -79.212538 ], [ 146.030273, -76.790701 ], [ 157.719727, -76.790701 ], [ 157.719727, -79.212538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -76.790701 ], [ 157.719727, -79.212538 ], [ 146.030273, -79.212538 ], [ 146.030273, -76.790701 ], [ 157.719727, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -76.890745 ], [ 146.030273, -76.890745 ], [ 146.030273, -73.958939 ], [ 157.719727, -73.958939 ], [ 157.719727, -76.890745 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -73.958939 ], [ 157.719727, -76.890745 ], [ 146.030273, -76.890745 ], [ 146.030273, -73.958939 ], [ 157.719727, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -74.079925 ], [ 146.030273, -74.079925 ], [ 146.030273, -70.539543 ], [ 157.719727, -70.539543 ], [ 157.719727, -74.079925 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -70.539543 ], [ 157.719727, -74.079925 ], [ 146.030273, -74.079925 ], [ 146.030273, -70.539543 ], [ 157.719727, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.250000, -67.714654 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.129645 ], [ 148.837280, -68.385020 ], [ 150.130920, -68.560384 ], [ 151.482239, -68.717450 ], [ 152.501221, -68.874409 ], [ 153.635559, -68.894198 ], [ 154.283752, -68.560384 ], [ 155.165405, -68.834777 ], [ 155.928955, -69.148876 ], [ 156.810608, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.719727, -69.455626 ], [ 157.719727, -70.685421 ], [ 146.030273, -70.685421 ], [ 146.030273, -67.615497 ], [ 146.250000, -67.714654 ] ] ], [ [ [ 146.195068, -67.228496 ], [ 146.030273, -67.539019 ], [ 146.030273, -67.155031 ], [ 146.195068, -67.228496 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.030273, -67.615497 ], [ 146.250000, -67.714654 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.129645 ], [ 148.837280, -68.385020 ], [ 150.130920, -68.560384 ], [ 151.482239, -68.717450 ], [ 152.501221, -68.874409 ], [ 153.635559, -68.894198 ], [ 154.283752, -68.560384 ], [ 155.165405, -68.834777 ], [ 155.928955, -69.148876 ], [ 156.810608, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.719727, -69.455626 ], [ 157.719727, -70.685421 ], [ 146.030273, -70.685421 ], [ 146.030273, -67.615497 ] ] ], [ [ [ 146.030273, -67.539019 ], [ 146.030273, -67.155031 ], [ 146.195068, -67.228496 ], [ 146.030273, -67.539019 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.016052, -42.405207 ], [ 147.911682, -43.211182 ], [ 147.562866, -42.936318 ], [ 146.867981, -43.634087 ], [ 146.661987, -43.580391 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 146.030273, -43.524655 ], [ 146.030273, -41.017211 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.980591, -40.979898 ], [ 147.661743, -40.813809 ], [ 147.744141, -40.813809 ], [ 148.287964, -40.874065 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.744141, -40.813809 ], [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.016052, -42.405207 ], [ 147.911682, -43.211182 ], [ 147.562866, -42.936318 ], [ 146.867981, -43.634087 ], [ 146.661987, -43.580391 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 146.030273, -43.524655 ], [ 146.030273, -41.017211 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.980591, -40.979898 ], [ 147.661743, -40.813809 ], [ 147.744141, -40.813809 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.301697, -41.145570 ], [ 146.030273, -41.145570 ], [ 146.030273, -41.017211 ], [ 146.362610, -41.137296 ], [ 146.980591, -40.979898 ], [ 147.689209, -40.807573 ], [ 148.287964, -40.874065 ] ] ], [ [ [ 152.737427, -31.952162 ], [ 152.449036, -32.549128 ], [ 151.707458, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.009827, -34.309413 ], [ 150.713196, -35.171563 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.419072 ], [ 149.944153, -37.107765 ], [ 149.996338, -37.424707 ], [ 149.422302, -37.770715 ], [ 148.304443, -37.807614 ], [ 147.381592, -38.218762 ], [ 146.920166, -38.606140 ], [ 146.315918, -39.034120 ], [ 146.250000, -38.997841 ], [ 146.030273, -38.880343 ], [ 146.030273, -31.765537 ], [ 152.828064, -31.765537 ], [ 152.737427, -31.952162 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.689209, -40.807573 ], [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.301697, -41.145570 ], [ 146.030273, -41.145570 ], [ 146.030273, -41.017211 ], [ 146.362610, -41.137296 ], [ 146.980591, -40.979898 ], [ 147.689209, -40.807573 ] ] ], [ [ [ 152.828064, -31.765537 ], [ 152.737427, -31.952162 ], [ 152.449036, -32.549128 ], [ 151.707458, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.009827, -34.309413 ], [ 150.713196, -35.171563 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.419072 ], [ 149.944153, -37.107765 ], [ 149.996338, -37.424707 ], [ 149.422302, -37.770715 ], [ 148.304443, -37.807614 ], [ 147.381592, -38.218762 ], [ 146.920166, -38.606140 ], [ 146.315918, -39.034120 ], [ 146.250000, -38.997841 ], [ 146.030273, -38.880343 ], [ 146.030273, -31.765537 ], [ 152.828064, -31.765537 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.532166, -21.943046 ], [ 149.677734, -22.342455 ], [ 150.075989, -22.121266 ], [ 150.482483, -22.555684 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.460727 ], [ 151.608582, -24.074051 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.267052 ], [ 153.135681, -26.069119 ], [ 153.160400, -26.640094 ], [ 153.091736, -27.259513 ], [ 153.566895, -28.108326 ], [ 153.511963, -28.993727 ], [ 153.338928, -29.456340 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.923433 ], [ 152.891235, -31.639352 ], [ 152.737427, -31.952162 ], [ 152.646790, -32.138409 ], [ 146.030273, -32.138409 ], [ 146.030273, -21.739091 ], [ 149.458008, -21.739091 ], [ 149.532166, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.458008, -21.739091 ], [ 149.532166, -21.943046 ], [ 149.677734, -22.342455 ], [ 150.075989, -22.121266 ], [ 150.482483, -22.555684 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.460727 ], [ 151.608582, -24.074051 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.267052 ], [ 153.135681, -26.069119 ], [ 153.160400, -26.640094 ], [ 153.091736, -27.259513 ], [ 153.566895, -28.108326 ], [ 153.511963, -28.993727 ], [ 153.338928, -29.456340 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.923433 ], [ 152.891235, -31.639352 ], [ 152.737427, -31.952162 ], [ 152.646790, -32.138409 ], [ 146.030273, -32.138409 ], [ 146.030273, -21.739091 ], [ 149.458008, -21.739091 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.075989, -22.121266 ], [ 150.097961, -22.146708 ], [ 150.029297, -22.146708 ], [ 150.075989, -22.121266 ] ] ], [ [ [ 146.159363, -17.759150 ], [ 146.063232, -18.278910 ], [ 146.250000, -18.669665 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.479540 ], [ 148.175354, -19.955278 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.532166, -21.943046 ], [ 149.606323, -22.146708 ], [ 146.030273, -22.146708 ], [ 146.030273, -17.353260 ], [ 146.159363, -17.759150 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.030273, -17.353260 ], [ 146.159363, -17.759150 ], [ 146.063232, -18.278910 ], [ 146.250000, -18.669665 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.479540 ], [ 148.175354, -19.955278 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.532166, -21.943046 ], [ 149.606323, -22.146708 ], [ 146.030273, -22.146708 ], [ 146.030273, -17.353260 ] ] ], [ [ [ 150.097961, -22.146708 ], [ 150.029297, -22.146708 ], [ 150.075989, -22.121266 ], [ 150.097961, -22.146708 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.250000, -5.561315 ], [ 147.648010, -6.083204 ], [ 147.889709, -6.612772 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.386982 ], [ 148.081970, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.037537, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.801086, -10.293301 ], [ 150.688477, -10.582322 ], [ 150.026550, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.922424, -10.279789 ], [ 147.911682, -10.128413 ], [ 147.134399, -9.492408 ], [ 146.565857, -8.942053 ], [ 146.250000, -8.409885 ], [ 146.046753, -8.067388 ], [ 146.030273, -8.059230 ], [ 146.030273, -5.479300 ], [ 146.250000, -5.561315 ] ] ], [ [ [ 154.758911, -5.339848 ], [ 155.061035, -5.566783 ], [ 155.547180, -6.200629 ], [ 156.019592, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.918247 ], [ 155.165405, -6.533645 ], [ 154.728699, -5.900189 ], [ 154.511719, -5.137450 ], [ 154.651794, -5.041699 ], [ 154.758911, -5.339848 ] ] ], [ [ [ 152.336426, -4.310808 ], [ 152.317200, -4.866574 ], [ 151.982117, -5.476566 ], [ 151.457520, -5.558582 ], [ 151.300964, -5.840081 ], [ 150.240784, -6.315299 ], [ 149.707947, -6.315299 ], [ 148.889465, -6.025848 ], [ 148.318176, -5.744441 ], [ 148.400574, -5.435554 ], [ 149.295959, -5.583184 ], [ 149.845276, -5.503906 ], [ 149.993591, -5.025283 ], [ 150.139160, -5.000658 ], [ 150.235291, -5.531244 ], [ 150.806580, -5.454693 ], [ 151.089478, -5.112830 ], [ 151.647034, -4.754361 ], [ 151.537170, -4.165637 ], [ 152.135925, -4.146461 ], [ 152.336426, -4.310808 ] ] ], [ [ [ 151.479492, -2.778451 ], [ 151.817322, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.658705 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.765310 ], [ 152.638550, -4.173855 ], [ 152.405090, -3.787522 ], [ 151.951904, -3.461333 ], [ 151.383362, -3.033555 ], [ 150.661011, -2.740044 ], [ 150.938416, -2.498597 ], [ 151.479492, -2.778451 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.030273, -5.479300 ], [ 146.250000, -5.561315 ], [ 147.648010, -6.083204 ], [ 147.889709, -6.612772 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.386982 ], [ 148.081970, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.037537, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.801086, -10.293301 ], [ 150.688477, -10.582322 ], [ 150.026550, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.922424, -10.279789 ], [ 147.911682, -10.128413 ], [ 147.134399, -9.492408 ], [ 146.565857, -8.942053 ], [ 146.250000, -8.409885 ], [ 146.046753, -8.067388 ], [ 146.030273, -8.059230 ], [ 146.030273, -5.479300 ] ] ], [ [ [ 154.651794, -5.041699 ], [ 154.758911, -5.339848 ], [ 155.061035, -5.566783 ], [ 155.547180, -6.200629 ], [ 156.019592, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.918247 ], [ 155.165405, -6.533645 ], [ 154.728699, -5.900189 ], [ 154.511719, -5.137450 ], [ 154.651794, -5.041699 ] ] ], [ [ [ 152.135925, -4.146461 ], [ 152.336426, -4.310808 ], [ 152.317200, -4.866574 ], [ 151.982117, -5.476566 ], [ 151.457520, -5.558582 ], [ 151.300964, -5.840081 ], [ 150.240784, -6.315299 ], [ 149.707947, -6.315299 ], [ 148.889465, -6.025848 ], [ 148.318176, -5.744441 ], [ 148.400574, -5.435554 ], [ 149.295959, -5.583184 ], [ 149.845276, -5.503906 ], [ 149.993591, -5.025283 ], [ 150.139160, -5.000658 ], [ 150.235291, -5.531244 ], [ 150.806580, -5.454693 ], [ 151.089478, -5.112830 ], [ 151.647034, -4.754361 ], [ 151.537170, -4.165637 ], [ 152.135925, -4.146461 ] ] ], [ [ [ 150.938416, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.817322, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.658705 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.765310 ], [ 152.638550, -4.173855 ], [ 152.405090, -3.787522 ], [ 151.951904, -3.461333 ], [ 151.383362, -3.033555 ], [ 150.661011, -2.740044 ], [ 150.938416, -2.498597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.137451, -7.019120 ], [ 157.500000, -7.316158 ], [ 157.535706, -7.346123 ], [ 157.500000, -7.354295 ], [ 157.337952, -7.403324 ], [ 156.901245, -7.174476 ], [ 156.489258, -6.765534 ], [ 156.541443, -6.599131 ], [ 157.137451, -7.019120 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.541443, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.316158 ], [ 157.535706, -7.346123 ], [ 157.500000, -7.354295 ], [ 157.337952, -7.403324 ], [ 156.901245, -7.174476 ], [ 156.489258, -6.765534 ], [ 156.541443, -6.599131 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 51.616311 ], [ 157.500000, 51.474540 ], [ 156.788635, 51.012027 ], [ 156.417847, 51.701502 ], [ 155.989380, 53.159947 ], [ 155.431824, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.607605, 55.899956 ], [ 157.719727, 55.899956 ], [ 157.719727, 51.616311 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 55.899956 ], [ 157.719727, 51.616311 ], [ 157.500000, 51.474540 ], [ 156.788635, 51.012027 ], [ 156.417847, 51.701502 ], [ 155.989380, 53.159947 ], [ 155.431824, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.607605, 55.899956 ], [ 157.719727, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 156.719971, 61.434828 ], [ 154.217834, 59.759162 ], [ 155.041809, 59.144952 ], [ 152.811584, 58.884781 ], [ 151.265259, 58.781015 ], [ 151.336670, 59.505061 ], [ 149.782104, 59.656642 ], [ 148.543396, 59.164668 ], [ 146.250000, 59.295345 ], [ 146.030273, 59.307964 ], [ 146.030273, 61.710706 ], [ 157.719727, 61.710706 ], [ 157.719727, 61.567189 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.434828 ] ] ], [ [ [ 157.719727, 55.652798 ], [ 155.522461, 55.652798 ], [ 155.563660, 55.776573 ], [ 155.912476, 56.769283 ], [ 156.755676, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.933809 ], [ 157.719727, 57.965874 ], [ 157.719727, 55.652798 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.719727, 61.567189 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.434828 ], [ 154.217834, 59.759162 ], [ 155.041809, 59.144952 ], [ 152.811584, 58.884781 ], [ 151.265259, 58.781015 ], [ 151.336670, 59.505061 ], [ 149.782104, 59.656642 ], [ 148.543396, 59.164668 ], [ 146.250000, 59.295345 ], [ 146.030273, 59.307964 ], [ 146.030273, 61.710706 ], [ 157.719727, 61.710706 ], [ 157.719727, 61.567189 ] ] ], [ [ [ 157.719727, 57.965874 ], [ 157.719727, 55.652798 ], [ 155.522461, 55.652798 ], [ 155.563660, 55.776573 ], [ 155.912476, 56.769283 ], [ 156.755676, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.933809 ], [ 157.719727, 57.965874 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 61.567189 ], [ 157.225342, 61.501734 ], [ 146.030273, 61.501734 ], [ 146.030273, 66.600676 ], [ 157.719727, 66.600676 ], [ 157.719727, 61.567189 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 66.600676 ], [ 157.719727, 61.567189 ], [ 157.225342, 61.501734 ], [ 146.030273, 61.501734 ], [ 146.030273, 66.600676 ], [ 157.719727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 66.425537 ], [ 146.030273, 66.425537 ], [ 146.030273, 70.685421 ], [ 157.719727, 70.685421 ], [ 157.719727, 66.425537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, 70.685421 ], [ 157.719727, 66.425537 ], [ 146.030273, 66.425537 ], [ 146.030273, 70.685421 ], [ 157.719727, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.250000, 72.437192 ], [ 149.499207, 72.200284 ], [ 150.350647, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.032142 ], [ 157.719727, 70.974028 ], [ 157.719727, 70.539543 ], [ 146.030273, 70.539543 ], [ 146.030273, 72.452932 ], [ 146.250000, 72.437192 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.030273, 72.452932 ], [ 146.250000, 72.437192 ], [ 149.499207, 72.200284 ], [ 150.350647, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.032142 ], [ 157.719727, 70.974028 ], [ 157.719727, 70.539543 ], [ 146.030273, 70.539543 ], [ 146.030273, 72.452932 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 148.222046, 75.346451 ], [ 150.729675, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.250000, 75.145707 ], [ 146.118164, 75.173143 ], [ 146.250000, 75.353398 ], [ 146.357117, 75.497157 ], [ 148.222046, 75.346451 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.357117, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.729675, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.250000, 75.145707 ], [ 146.118164, 75.173143 ], [ 146.250000, 75.353398 ], [ 146.357117, 75.497157 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, -85.070048 ], [ 157.280273, -85.070048 ], [ 157.280273, -83.956169 ], [ 168.969727, -83.956169 ], [ 168.969727, -85.070048 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, -83.956169 ], [ 168.969727, -85.070048 ], [ 157.280273, -85.070048 ], [ 157.280273, -83.956169 ], [ 168.969727, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.945984, -82.676285 ], [ 165.094299, -82.708774 ], [ 166.602173, -83.022216 ], [ 168.750000, -83.316176 ], [ 168.895569, -83.335967 ], [ 168.969727, -83.409506 ], [ 168.969727, -84.002262 ], [ 157.280273, -84.002262 ], [ 157.280273, -82.648222 ], [ 164.819641, -82.648222 ], [ 164.945984, -82.676285 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.819641, -82.648222 ], [ 164.945984, -82.676285 ], [ 165.094299, -82.708774 ], [ 166.602173, -83.022216 ], [ 168.750000, -83.316176 ], [ 168.895569, -83.335967 ], [ 168.969727, -83.409506 ], [ 168.969727, -84.002262 ], [ 157.280273, -84.002262 ], [ 157.280273, -82.648222 ], [ 164.819641, -82.648222 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 29 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.372925, -81.093214 ], [ 161.119995, -81.278386 ], [ 161.628113, -81.689909 ], [ 162.490540, -82.062067 ], [ 163.704529, -82.395157 ], [ 164.945984, -82.676285 ], [ 165.072327, -82.704241 ], [ 157.280273, -82.704241 ], [ 157.280273, -81.059130 ], [ 160.235596, -81.059130 ], [ 160.372925, -81.093214 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.235596, -81.059130 ], [ 160.372925, -81.093214 ], [ 161.119995, -81.278386 ], [ 161.628113, -81.689909 ], [ 162.490540, -82.062067 ], [ 163.704529, -82.395157 ], [ 164.945984, -82.676285 ], [ 165.072327, -82.704241 ], [ 157.280273, -82.704241 ], [ 157.280273, -81.059130 ], [ 160.235596, -81.059130 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 28 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.765442, -79.162043 ], [ 161.751709, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200709 ], [ 160.315247, -80.572647 ], [ 159.787903, -80.945299 ], [ 160.372925, -81.093214 ], [ 160.507507, -81.127169 ], [ 157.280273, -81.127169 ], [ 157.280273, -79.129976 ], [ 163.314514, -79.129976 ], [ 161.765442, -79.162043 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.314514, -79.129976 ], [ 161.765442, -79.162043 ], [ 161.751709, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200709 ], [ 160.315247, -80.572647 ], [ 159.787903, -80.945299 ], [ 160.372925, -81.093214 ], [ 160.507507, -81.127169 ], [ 157.280273, -81.127169 ], [ 157.280273, -79.129976 ], [ 163.314514, -79.129976 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 27 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.473816, -76.840816 ], [ 163.487549, -77.065265 ], [ 164.056091, -77.457084 ], [ 164.273071, -77.829694 ], [ 164.742737, -78.182400 ], [ 166.602173, -78.319421 ], [ 166.994934, -78.750659 ], [ 165.193176, -78.907100 ], [ 163.666077, -79.122722 ], [ 161.765442, -79.162043 ], [ 161.751709, -79.171335 ], [ 161.691284, -79.212538 ], [ 157.280273, -79.212538 ], [ 157.280273, -76.790701 ], [ 163.471069, -76.790701 ], [ 163.473816, -76.840816 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.471069, -76.790701 ], [ 163.473816, -76.840816 ], [ 163.487549, -77.065265 ], [ 164.056091, -77.457084 ], [ 164.273071, -77.829694 ], [ 164.742737, -78.182400 ], [ 166.602173, -78.319421 ], [ 166.994934, -78.750659 ], [ 165.193176, -78.907100 ], [ 163.666077, -79.122722 ], [ 161.765442, -79.162043 ], [ 161.751709, -79.171335 ], [ 161.691284, -79.212538 ], [ 157.280273, -79.212538 ], [ 157.280273, -76.790701 ], [ 163.471069, -76.790701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.626648, -74.019543 ], [ 167.384949, -74.164835 ], [ 166.094055, -74.380731 ], [ 165.643616, -74.772236 ], [ 164.956970, -75.145003 ], [ 164.231873, -75.458589 ], [ 163.822632, -75.869999 ], [ 163.567200, -76.241939 ], [ 163.468323, -76.693067 ], [ 163.473816, -76.840816 ], [ 163.476562, -76.890745 ], [ 157.280273, -76.890745 ], [ 157.280273, -73.958939 ], [ 167.728271, -73.958939 ], [ 167.626648, -74.019543 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.728271, -73.958939 ], [ 167.626648, -74.019543 ], [ 167.384949, -74.164835 ], [ 166.094055, -74.380731 ], [ 165.643616, -74.772236 ], [ 164.956970, -75.145003 ], [ 164.231873, -75.458589 ], [ 163.822632, -75.869999 ], [ 163.567200, -76.241939 ], [ 163.468323, -76.693067 ], [ 163.473816, -76.840816 ], [ 163.476562, -76.890745 ], [ 157.280273, -76.890745 ], [ 157.280273, -73.958939 ], [ 167.728271, -73.958939 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.570435, -70.578852 ], [ 161.806641, -70.612614 ], [ 162.685547, -70.736230 ], [ 163.841858, -70.716285 ], [ 164.918518, -70.775156 ], [ 166.113281, -70.755250 ], [ 167.308044, -70.833855 ], [ 168.423157, -70.971342 ], [ 168.750000, -71.045529 ], [ 168.969727, -71.094535 ], [ 168.969727, -73.693467 ], [ 168.750000, -73.719666 ], [ 167.972717, -73.812574 ], [ 167.626648, -74.019543 ], [ 167.525024, -74.079925 ], [ 157.280273, -74.079925 ], [ 157.280273, -70.539543 ], [ 161.482544, -70.539543 ], [ 161.570435, -70.578852 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.482544, -70.539543 ], [ 161.570435, -70.578852 ], [ 161.806641, -70.612614 ], [ 162.685547, -70.736230 ], [ 163.841858, -70.716285 ], [ 164.918518, -70.775156 ], [ 166.113281, -70.755250 ], [ 167.308044, -70.833855 ], [ 168.423157, -70.971342 ], [ 168.750000, -71.045529 ], [ 168.969727, -71.094535 ], [ 168.969727, -73.693467 ], [ 168.750000, -73.719666 ], [ 167.972717, -73.812574 ], [ 167.626648, -74.019543 ], [ 167.525024, -74.079925 ], [ 157.280273, -74.079925 ], [ 157.280273, -70.539543 ], [ 161.482544, -70.539543 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.500000, -69.438269 ], [ 158.024597, -69.481635 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.991475 ], [ 160.804138, -70.226028 ], [ 161.570435, -70.578852 ], [ 161.806641, -70.612614 ], [ 162.322998, -70.685421 ], [ 157.280273, -70.685421 ], [ 157.280273, -69.420899 ], [ 157.500000, -69.438269 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.280273, -69.420899 ], [ 157.500000, -69.438269 ], [ 158.024597, -69.481635 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.991475 ], [ 160.804138, -70.226028 ], [ 161.570435, -70.578852 ], [ 161.806641, -70.612614 ], [ 162.322998, -70.685421 ], [ 157.280273, -70.685421 ], [ 157.280273, -69.420899 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, -46.630579 ], [ 168.750000, -46.626806 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.676331, -46.219752 ], [ 166.508789, -45.851760 ], [ 167.044373, -45.110362 ], [ 168.302307, -44.123085 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 168.969727, -43.923615 ], [ 168.969727, -46.630579 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, -43.923615 ], [ 168.969727, -46.630579 ], [ 168.750000, -46.626806 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.676331, -46.219752 ], [ 166.508789, -45.851760 ], [ 167.044373, -45.110362 ], [ 168.302307, -44.123085 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 168.969727, -43.923615 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.874084, -21.943046 ], [ 167.118530, -22.159427 ], [ 166.739502, -22.398332 ], [ 166.187439, -22.128899 ], [ 165.890808, -21.943046 ], [ 165.569458, -21.739091 ], [ 166.643372, -21.739091 ], [ 166.874084, -21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.643372, -21.739091 ], [ 166.874084, -21.943046 ], [ 167.118530, -22.159427 ], [ 166.739502, -22.398332 ], [ 166.187439, -22.128899 ], [ 165.890808, -21.943046 ], [ 165.569458, -21.739091 ], [ 166.643372, -21.739091 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.843628, -16.465061 ], [ 167.514038, -16.596714 ], [ 167.178955, -16.159283 ], [ 167.214661, -15.890018 ], [ 167.843628, -16.465061 ] ] ], [ [ [ 167.107544, -14.931516 ], [ 167.269592, -15.739388 ], [ 167.000427, -15.612456 ], [ 166.791687, -15.667999 ], [ 166.648865, -15.390136 ], [ 166.626892, -14.626109 ], [ 167.107544, -14.931516 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.214661, -15.890018 ], [ 167.843628, -16.465061 ], [ 167.514038, -16.596714 ], [ 167.178955, -16.159283 ], [ 167.214661, -15.890018 ] ] ], [ [ [ 166.626892, -14.626109 ], [ 167.107544, -14.931516 ], [ 167.269592, -15.739388 ], [ 167.000427, -15.612456 ], [ 166.791687, -15.667999 ], [ 166.648865, -15.390136 ], [ 166.626892, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.459839, -20.117840 ], [ 165.017395, -20.457896 ], [ 165.459595, -20.799769 ], [ 165.778198, -21.079375 ], [ 166.599426, -21.698265 ], [ 166.874084, -21.943046 ], [ 167.102051, -22.146708 ], [ 166.223145, -22.146708 ], [ 166.187439, -22.128899 ], [ 165.890808, -21.943046 ], [ 165.473328, -21.677848 ], [ 164.827881, -21.148554 ], [ 164.165955, -20.442455 ], [ 164.028625, -20.104944 ], [ 164.459839, -20.117840 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.028625, -20.104944 ], [ 164.459839, -20.117840 ], [ 165.017395, -20.457896 ], [ 165.459595, -20.799769 ], [ 165.778198, -21.079375 ], [ 166.599426, -21.698265 ], [ 166.874084, -21.943046 ], [ 167.102051, -22.146708 ], [ 166.223145, -22.146708 ], [ 166.187439, -22.128899 ], [ 165.890808, -21.943046 ], [ 165.473328, -21.677848 ], [ 164.827881, -21.148554 ], [ 164.165955, -20.442455 ], [ 164.028625, -20.104944 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.916504, -10.444598 ], [ 162.117004, -10.482410 ], [ 162.397156, -10.825213 ], [ 161.699524, -10.819818 ], [ 161.317749, -10.204110 ], [ 161.916504, -10.444598 ] ] ], [ [ [ 160.361938, -9.400291 ], [ 160.686035, -9.608874 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.848328, -9.792971 ], [ 159.639587, -9.638661 ], [ 159.702759, -9.240382 ], [ 160.361938, -9.400291 ] ] ], [ [ [ 161.279297, -9.118368 ], [ 161.677551, -9.598042 ], [ 161.529236, -9.782145 ], [ 160.787659, -8.914920 ], [ 160.578918, -8.317495 ], [ 160.919495, -8.317495 ], [ 161.279297, -9.118368 ] ] ], [ [ [ 158.818359, -7.558547 ], [ 159.639587, -8.018436 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.584900, -7.754537 ], [ 158.208618, -7.419666 ], [ 158.359680, -7.318882 ], [ 158.818359, -7.558547 ] ] ], [ [ [ 157.500000, -7.316158 ], [ 157.535706, -7.346123 ], [ 157.500000, -7.354295 ], [ 157.337952, -7.403324 ], [ 157.280273, -7.370639 ], [ 157.280273, -7.136323 ], [ 157.500000, -7.316158 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.204110 ], [ 161.916504, -10.444598 ], [ 162.117004, -10.482410 ], [ 162.397156, -10.825213 ], [ 161.699524, -10.819818 ], [ 161.317749, -10.204110 ] ] ], [ [ [ 159.702759, -9.240382 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.608874 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.848328, -9.792971 ], [ 159.639587, -9.638661 ], [ 159.702759, -9.240382 ] ] ], [ [ [ 160.919495, -8.317495 ], [ 161.279297, -9.118368 ], [ 161.677551, -9.598042 ], [ 161.529236, -9.782145 ], [ 160.787659, -8.914920 ], [ 160.578918, -8.317495 ], [ 160.919495, -8.317495 ] ] ], [ [ [ 158.359680, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.639587, -8.018436 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.584900, -7.754537 ], [ 158.208618, -7.419666 ], [ 158.359680, -7.318882 ] ] ], [ [ [ 157.280273, -7.136323 ], [ 157.500000, -7.316158 ], [ 157.535706, -7.346123 ], [ 157.500000, -7.354295 ], [ 157.337952, -7.403324 ], [ 157.280273, -7.370639 ], [ 157.280273, -7.136323 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.946716, 55.776573 ], [ 161.699524, 55.286937 ], [ 162.117004, 54.856059 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.529968, 52.960221 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.476251 ], [ 157.280273, 51.334044 ], [ 157.280273, 55.899956 ], [ 162.009888, 55.899956 ], [ 161.946716, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.009888, 55.899956 ], [ 161.946716, 55.776573 ], [ 161.699524, 55.286937 ], [ 162.117004, 54.856059 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.529968, 52.960221 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.476251 ], [ 157.280273, 51.334044 ], [ 157.280273, 55.899956 ], [ 162.009888, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 168.969727, 60.541074 ], [ 168.898315, 60.574825 ], [ 168.750000, 60.531617 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.874573, 59.732869 ], [ 163.536987, 59.869641 ], [ 163.215637, 59.211094 ], [ 162.015381, 58.244500 ], [ 162.051086, 57.840365 ], [ 163.190918, 57.615992 ], [ 163.056335, 56.159318 ], [ 162.127991, 56.122591 ], [ 161.946716, 55.776573 ], [ 161.883545, 55.652798 ], [ 157.280273, 55.652798 ], [ 157.280273, 57.901715 ], [ 157.500000, 57.933809 ], [ 158.362427, 58.056085 ], [ 160.150452, 59.314973 ], [ 161.869812, 60.343260 ], [ 163.668823, 61.141910 ], [ 163.927002, 61.606396 ], [ 163.987427, 61.710706 ], [ 168.969727, 61.710706 ], [ 168.969727, 60.541074 ] ] ], [ [ [ 162.655334, 61.642945 ], [ 162.567444, 61.606396 ], [ 160.120239, 60.545126 ], [ 159.414368, 61.606396 ], [ 159.342957, 61.710706 ], [ 162.702026, 61.710706 ], [ 162.655334, 61.642945 ] ] ], [ [ [ 157.500000, 61.539715 ], [ 157.280273, 61.510906 ], [ 157.280273, 61.710706 ], [ 158.812866, 61.710706 ], [ 158.016357, 61.606396 ], [ 157.500000, 61.539715 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 168.969727, 61.710706 ], [ 168.969727, 60.541074 ], [ 168.898315, 60.574825 ], [ 168.750000, 60.531617 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.874573, 59.732869 ], [ 163.536987, 59.869641 ], [ 163.215637, 59.211094 ], [ 162.015381, 58.244500 ], [ 162.051086, 57.840365 ], [ 163.190918, 57.615992 ], [ 163.056335, 56.159318 ], [ 162.127991, 56.122591 ], [ 161.946716, 55.776573 ], [ 161.883545, 55.652798 ], [ 157.280273, 55.652798 ], [ 157.280273, 57.901715 ], [ 157.500000, 57.933809 ], [ 158.362427, 58.056085 ], [ 160.150452, 59.314973 ], [ 161.869812, 60.343260 ], [ 163.668823, 61.141910 ], [ 163.927002, 61.606396 ], [ 163.987427, 61.710706 ], [ 168.969727, 61.710706 ] ] ], [ [ [ 162.702026, 61.710706 ], [ 162.655334, 61.642945 ], [ 162.567444, 61.606396 ], [ 160.120239, 60.545126 ], [ 159.414368, 61.606396 ], [ 159.342957, 61.710706 ], [ 162.702026, 61.710706 ] ] ], [ [ [ 158.812866, 61.710706 ], [ 158.016357, 61.606396 ], [ 157.500000, 61.539715 ], [ 157.280273, 61.510906 ], [ 157.280273, 61.710706 ], [ 158.812866, 61.710706 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 61.501734 ], [ 163.869324, 61.501734 ], [ 163.927002, 61.606396 ], [ 164.470825, 62.551591 ], [ 163.256836, 62.466646 ], [ 162.655334, 61.642945 ], [ 162.567444, 61.606396 ], [ 162.322998, 61.501734 ], [ 159.485779, 61.501734 ], [ 159.414368, 61.606396 ], [ 159.301758, 61.774422 ], [ 158.016357, 61.606396 ], [ 157.280273, 61.510906 ], [ 157.280273, 66.600676 ], [ 168.969727, 66.600676 ], [ 168.969727, 61.501734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, 66.600676 ], [ 168.969727, 61.501734 ], [ 163.869324, 61.501734 ], [ 163.927002, 61.606396 ], [ 164.470825, 62.551591 ], [ 163.256836, 62.466646 ], [ 162.655334, 61.642945 ], [ 162.567444, 61.606396 ], [ 162.322998, 61.501734 ], [ 159.485779, 61.501734 ], [ 159.414368, 61.606396 ], [ 159.301758, 61.774422 ], [ 158.016357, 61.606396 ], [ 157.280273, 61.510906 ], [ 157.280273, 66.600676 ], [ 168.969727, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.510498, 70.612614 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.722867 ], [ 160.938721, 69.437305 ], [ 162.279053, 69.642759 ], [ 164.050598, 69.668541 ], [ 165.940247, 69.472005 ], [ 167.835388, 69.583438 ], [ 168.750000, 69.121485 ], [ 168.969727, 69.008627 ], [ 168.969727, 66.425537 ], [ 157.280273, 66.425537 ], [ 157.280273, 70.685421 ], [ 159.362183, 70.685421 ], [ 159.510498, 70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.362183, 70.685421 ], [ 159.510498, 70.612614 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.722867 ], [ 160.938721, 69.437305 ], [ 162.279053, 69.642759 ], [ 164.050598, 69.668541 ], [ 165.940247, 69.472005 ], [ 167.835388, 69.583438 ], [ 168.750000, 69.121485 ], [ 168.969727, 69.008627 ], [ 168.969727, 66.425537 ], [ 157.280273, 66.425537 ], [ 157.280273, 70.685421 ], [ 159.362183, 70.685421 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.500000, 70.991928 ], [ 158.996887, 70.867191 ], [ 159.510498, 70.612614 ], [ 159.656067, 70.539543 ], [ 157.280273, 70.539543 ], [ 157.280273, 71.009811 ], [ 157.500000, 70.991928 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.280273, 71.009811 ], [ 157.500000, 70.991928 ], [ 158.996887, 70.867191 ], [ 159.510498, 70.612614 ], [ 159.656067, 70.539543 ], [ 157.280273, 70.539543 ], [ 157.280273, 71.009811 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.441650, -83.979259 ], [ 172.282104, -84.041167 ], [ 172.474365, -84.117659 ], [ 173.221436, -84.413700 ], [ 175.984497, -84.158893 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.070048 ], [ 168.530273, -85.070048 ], [ 168.530273, -83.956169 ], [ 171.131287, -83.956169 ], [ 171.441650, -83.979259 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.131287, -83.956169 ], [ 171.441650, -83.979259 ], [ 172.282104, -84.041167 ], [ 172.474365, -84.117659 ], [ 173.221436, -84.413700 ], [ 175.984497, -84.158893 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.070048 ], [ 168.530273, -85.070048 ], [ 168.530273, -83.956169 ], [ 171.131287, -83.956169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 30 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.750000, -83.316176 ], [ 168.895569, -83.335967 ], [ 169.403687, -83.825811 ], [ 171.441650, -83.979259 ], [ 171.752014, -84.002262 ], [ 168.530273, -84.002262 ], [ 168.530273, -83.286701 ], [ 168.750000, -83.316176 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.530273, -83.286701 ], [ 168.750000, -83.316176 ], [ 168.895569, -83.335967 ], [ 169.403687, -83.825811 ], [ 171.441650, -83.979259 ], [ 171.752014, -84.002262 ], [ 168.530273, -84.002262 ], [ 168.530273, -83.286701 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.750000, -71.045529 ], [ 169.461365, -71.206344 ], [ 170.499573, -71.401793 ], [ 171.205444, -71.696469 ], [ 171.087341, -72.088277 ], [ 170.559998, -72.440507 ], [ 170.109558, -72.891378 ], [ 169.755249, -73.244129 ], [ 169.285583, -73.655637 ], [ 168.750000, -73.719666 ], [ 168.530273, -73.745825 ], [ 168.530273, -70.995506 ], [ 168.750000, -71.045529 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.530273, -70.995506 ], [ 168.750000, -71.045529 ], [ 169.461365, -71.206344 ], [ 170.499573, -71.401793 ], [ 171.205444, -71.696469 ], [ 171.087341, -72.088277 ], [ 170.559998, -72.440507 ], [ 170.109558, -72.891378 ], [ 169.755249, -73.244129 ], [ 169.285583, -73.655637 ], [ 168.750000, -73.719666 ], [ 168.530273, -73.745825 ], [ 168.530273, -70.995506 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.051147, -40.979898 ], [ 173.246155, -41.331451 ], [ 173.861389, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ], [ 174.245911, -41.347948 ], [ 174.245911, -41.769263 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.371116 ], [ 173.078613, -43.852355 ], [ 172.306824, -43.864238 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.896741 ], [ 170.614929, -45.907211 ], [ 169.829407, -46.354511 ], [ 169.332275, -46.640008 ], [ 168.750000, -46.626806 ], [ 168.530273, -46.621147 ], [ 168.530273, -44.056012 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 169.667358, -43.554520 ], [ 170.524292, -43.030753 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.087097, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.309570, -40.813809 ], [ 172.963257, -40.813809 ], [ 173.051147, -40.979898 ] ] ], [ [ [ 176.234436, -40.979898 ], [ 176.011963, -41.288126 ], [ 175.237427, -41.687271 ], [ 175.067139, -41.424194 ], [ 174.649658, -41.279871 ], [ 174.858398, -40.979898 ], [ 174.973755, -40.813809 ], [ 176.352539, -40.813809 ], [ 176.234436, -40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.963257, -40.813809 ], [ 173.051147, -40.979898 ], [ 173.246155, -41.331451 ], [ 173.861389, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ], [ 174.245911, -41.347948 ], [ 174.245911, -41.769263 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.371116 ], [ 173.078613, -43.852355 ], [ 172.306824, -43.864238 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.896741 ], [ 170.614929, -45.907211 ], [ 169.829407, -46.354511 ], [ 169.332275, -46.640008 ], [ 168.750000, -46.626806 ], [ 168.530273, -46.621147 ], [ 168.530273, -44.056012 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 169.667358, -43.554520 ], [ 170.524292, -43.030753 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.087097, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.309570, -40.813809 ], [ 172.963257, -40.813809 ] ] ], [ [ [ 176.352539, -40.813809 ], [ 176.234436, -40.979898 ], [ 176.011963, -41.288126 ], [ 175.237427, -41.687271 ], [ 175.067139, -41.424194 ], [ 174.649658, -41.279871 ], [ 174.858398, -40.979898 ], [ 174.973755, -40.813809 ], [ 176.352539, -40.813809 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.861389, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ], [ 174.105835, -41.145570 ], [ 173.570251, -41.145570 ], [ 173.861389, -40.979898 ] ] ], [ [ [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.141785, -41.145570 ], [ 172.043152, -41.145570 ], [ 172.087097, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ] ] ], [ [ [ 173.551025, -35.005253 ], [ 174.328308, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.355530, -36.525088 ], [ 175.808716, -36.798289 ], [ 175.957031, -37.553288 ], [ 176.761780, -37.879189 ], [ 177.437439, -37.959358 ], [ 178.008728, -37.579413 ], [ 178.516846, -37.694688 ], [ 178.272400, -38.582526 ], [ 177.970276, -39.166271 ], [ 177.206726, -39.144973 ], [ 176.937561, -39.448919 ], [ 177.030945, -39.878127 ], [ 176.885376, -40.065461 ], [ 176.234436, -40.979898 ], [ 176.113586, -41.145570 ], [ 174.743042, -41.145570 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.457397 ], [ 174.899597, -39.907629 ], [ 173.822937, -39.508279 ], [ 173.850403, -39.144973 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.696350, -37.381070 ], [ 174.289856, -36.710265 ], [ 174.317322, -36.533916 ], [ 173.839417, -36.120128 ], [ 173.053894, -35.236646 ], [ 172.633667, -34.526924 ], [ 173.004456, -34.449954 ], [ 173.551025, -35.005253 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.141785, -41.145570 ], [ 172.043152, -41.145570 ], [ 172.087097, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.004456, -34.449954 ], [ 173.551025, -35.005253 ], [ 174.328308, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.355530, -36.525088 ], [ 175.808716, -36.798289 ], [ 175.957031, -37.553288 ], [ 176.761780, -37.879189 ], [ 177.437439, -37.959358 ], [ 178.008728, -37.579413 ], [ 178.516846, -37.694688 ], [ 178.272400, -38.582526 ], [ 177.970276, -39.166271 ], [ 177.206726, -39.144973 ], [ 176.937561, -39.448919 ], [ 177.030945, -39.878127 ], [ 176.885376, -40.065461 ], [ 176.234436, -40.979898 ], [ 176.113586, -41.145570 ], [ 174.743042, -41.145570 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.457397 ], [ 174.899597, -39.907629 ], [ 173.822937, -39.508279 ], [ 173.850403, -39.144973 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.696350, -37.381070 ], [ 174.289856, -36.710265 ], [ 174.317322, -36.533916 ], [ 173.839417, -36.120128 ], [ 173.053894, -35.236646 ], [ 172.633667, -34.526924 ], [ 173.004456, -34.449954 ] ] ], [ [ [ 173.993225, -40.979898 ], [ 174.105835, -41.145570 ], [ 173.570251, -41.145570 ], [ 173.861389, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.717346, -17.628317 ], [ 178.552551, -18.148462 ], [ 177.931824, -18.286734 ], [ 177.379761, -18.164121 ], [ 177.283630, -17.722526 ], [ 177.668152, -17.379474 ], [ 178.124084, -17.502628 ], [ 178.371277, -17.337530 ], [ 178.717346, -17.628317 ] ] ], [ [ [ 180.000000, -16.554594 ], [ 179.362793, -16.799282 ], [ 178.722839, -17.009515 ], [ 178.596497, -16.638823 ], [ 179.096375, -16.433451 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.000000, -16.554594 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.371277, -17.337530 ], [ 178.717346, -17.628317 ], [ 178.552551, -18.148462 ], [ 177.931824, -18.286734 ], [ 177.379761, -18.164121 ], [ 177.283630, -17.722526 ], [ 177.668152, -17.379474 ], [ 178.124084, -17.502628 ], [ 178.371277, -17.337530 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.554594 ], [ 179.362793, -16.799282 ], [ 178.722839, -17.009515 ], [ 178.596497, -16.638823 ], [ 179.096375, -16.433451 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.680115, 61.653379 ], [ 173.575745, 61.606396 ], [ 172.147522, 60.950443 ], [ 170.697327, 60.336464 ], [ 170.329285, 59.882047 ], [ 168.898315, 60.574825 ], [ 168.750000, 60.531617 ], [ 168.530273, 60.465342 ], [ 168.530273, 61.710706 ], [ 174.116821, 61.710706 ], [ 173.680115, 61.653379 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.116821, 61.710706 ], [ 173.680115, 61.653379 ], [ 173.575745, 61.606396 ], [ 172.147522, 60.950443 ], [ 170.697327, 60.336464 ], [ 170.329285, 59.882047 ], [ 168.898315, 60.574825 ], [ 168.750000, 60.531617 ], [ 168.530273, 60.465342 ], [ 168.530273, 61.710706 ], [ 174.116821, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 64.980521 ], [ 179.991760, 64.974712 ], [ 178.706360, 64.535453 ], [ 177.409973, 64.608571 ], [ 178.310852, 64.077003 ], [ 178.906860, 63.252175 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.569310 ], [ 179.228210, 62.304964 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.769226 ], [ 173.680115, 61.653379 ], [ 173.575745, 61.606396 ], [ 173.345032, 61.501734 ], [ 168.530273, 61.501734 ], [ 168.530273, 66.600676 ], [ 180.000000, 66.600676 ], [ 180.000000, 64.980521 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.600676 ], [ 180.000000, 64.980521 ], [ 179.991760, 64.974712 ], [ 178.706360, 64.535453 ], [ 177.409973, 64.608571 ], [ 178.310852, 64.077003 ], [ 178.906860, 63.252175 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.569310 ], [ 179.228210, 62.304964 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.769226 ], [ 173.680115, 61.653379 ], [ 173.575745, 61.606396 ], [ 173.345032, 61.501734 ], [ 168.530273, 61.501734 ], [ 168.530273, 66.600676 ], [ 180.000000, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.641663, 69.817839 ], [ 175.723572, 69.877452 ], [ 178.599243, 69.400615 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.425537 ], [ 168.530273, 66.425537 ], [ 168.530273, 69.233763 ], [ 168.750000, 69.121485 ], [ 169.576721, 68.694509 ], [ 170.815430, 69.014530 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.641663, 69.817839 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.452881, 70.097399 ], [ 173.641663, 69.817839 ], [ 175.723572, 69.877452 ], [ 178.599243, 69.400615 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.425537 ], [ 168.530273, 66.425537 ], [ 168.530273, 69.233763 ], [ 168.750000, 69.121485 ], [ 169.576721, 68.694509 ], [ 170.815430, 69.014530 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 70.832953 ], [ 178.901367, 70.781486 ], [ 178.722839, 71.098984 ], [ 180.000000, 71.516203 ], [ 180.000000, 70.832953 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.832953 ], [ 178.901367, 70.781486 ], [ 178.722839, 71.098984 ], [ 180.000000, 71.516203 ] ] ] } } ] } ] } ] } diff --git a/tests/nullisland/out/-b0_-z4.json b/tests/nullisland/out/-b0_-z4.json index 8e04a43..52828d4 100644 --- a/tests/nullisland/out/-b0_-z4.json +++ b/tests/nullisland/out/-b0_-z4.json @@ -12,23 +12,23 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.054688, 0.000000 ], [ -1.054688, 1.054628 ], [ 0.000000, 1.054628 ], [ 0.000000, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 1.054628 ], [ 0.000000, 0.000000 ], [ -1.054688, 0.000000 ], [ -1.054688, 1.054628 ], [ 0.000000, 1.054628 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.054688, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.054688, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -0.966751 ], [ -1.054688, -0.966751 ], [ -1.054688, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ], [ -1.054688, -0.966751 ], [ -1.054688, 0.000000 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.054628 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.054628 ], [ 0.966797, 1.054628 ], [ 0.966797, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 1.054628 ], [ 0.966797, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.054628 ], [ 0.966797, 1.054628 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, -0.966751 ], [ 0.000000, -0.966751 ], [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ], [ 0.966797, -0.966751 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 0.000000 ], [ 0.966797, -0.966751 ], [ 0.000000, -0.966751 ], [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ] ] ] } } ] } ] } , @@ -38,7 +38,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -0.966751 ], [ -1.010742, -0.966751 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ], [ -1.010742, -0.966751 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -48,7 +48,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , @@ -70,7 +70,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, -0.966751 ], [ 0.000000, -0.966751 ], [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ], [ 0.966797, -0.966751 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 0.000000 ], [ 0.966797, -0.966751 ], [ 0.000000, -0.966751 ], [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ] ] ] } } ] } ] } , @@ -80,7 +80,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.966797, 1.010690 ], [ 0.966797, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 1.010690 ], [ 0.966797, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.966797, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -94,7 +94,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -0.988720 ], [ -1.010742, -0.988720 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, -0.988720 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ 0.000000, -0.988720 ], [ -1.010742, -0.988720 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -104,7 +104,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , @@ -126,7 +126,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.988770, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.988770, -0.988720 ], [ 0.000000, -0.988720 ], [ 0.000000, 0.000000 ], [ 0.988770, 0.000000 ], [ 0.988770, -0.988720 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.988770, 0.000000 ], [ 0.988770, -0.988720 ], [ 0.000000, -0.988720 ], [ 0.000000, 0.000000 ], [ 0.988770, 0.000000 ] ] ] } } ] } ] } , @@ -136,7 +136,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.988770, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.988770, 1.010690 ], [ 0.988770, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.988770, 1.010690 ], [ 0.988770, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.988770, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -150,7 +150,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -0.999705 ], [ -1.010742, -0.999705 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ], [ -1.010742, -0.999705 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -160,7 +160,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , @@ -182,7 +182,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, -0.999705 ], [ 0.000000, -0.999705 ], [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ], [ 0.999756, -0.999705 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 0.000000 ], [ 0.999756, -0.999705 ], [ 0.000000, -0.999705 ], [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } @@ -194,7 +194,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.999756, 1.010690 ], [ 0.999756, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 1.010690 ], [ 0.999756, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.999756, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -210,7 +210,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.005249, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -0.999705 ], [ -1.005249, -0.999705 ], [ -1.005249, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ], [ -1.005249, -0.999705 ], [ -1.005249, 0.000000 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -222,7 +222,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.005249, 0.000000 ], [ -1.005249, 1.005197 ], [ 0.000000, 1.005197 ], [ 0.000000, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 1.005197 ], [ 0.000000, 0.000000 ], [ -1.005249, 0.000000 ], [ -1.005249, 1.005197 ], [ 0.000000, 1.005197 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.005249, 0.000000 ] } } , @@ -244,7 +244,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, -0.999705 ], [ 0.000000, -0.999705 ], [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ], [ 0.999756, -0.999705 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 0.000000 ], [ 0.999756, -0.999705 ], [ 0.000000, -0.999705 ], [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, -0.999705 ] } } , @@ -258,7 +258,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.005197 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.005197 ], [ 0.999756, 1.005197 ], [ 0.999756, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 1.005197 ], [ 0.999756, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.005197 ], [ 0.999756, 1.005197 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , diff --git a/tests/nullisland/out/-b0_-z4_-ANullIsland.json b/tests/nullisland/out/-b0_-z4_-ANullIsland.json index ab13721..4d3a84f 100644 --- a/tests/nullisland/out/-b0_-z4_-ANullIsland.json +++ b/tests/nullisland/out/-b0_-z4_-ANullIsland.json @@ -13,23 +13,23 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.054688, 0.000000 ], [ -1.054688, 1.054628 ], [ 0.000000, 1.054628 ], [ 0.000000, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 1.054628 ], [ 0.000000, 0.000000 ], [ -1.054688, 0.000000 ], [ -1.054688, 1.054628 ], [ 0.000000, 1.054628 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.054688, 0.000000 ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.054688, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -0.966751 ], [ -1.054688, -0.966751 ], [ -1.054688, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ], [ -1.054688, -0.966751 ], [ -1.054688, 0.000000 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.054628 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.054628 ], [ 0.966797, 1.054628 ], [ 0.966797, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 1.054628 ], [ 0.966797, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.054628 ], [ 0.966797, 1.054628 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, -0.966751 ], [ 0.000000, -0.966751 ], [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ], [ 0.966797, -0.966751 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 0.000000 ], [ 0.966797, -0.966751 ], [ 0.000000, -0.966751 ], [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ] ] ] } } ] } ] } , @@ -39,7 +39,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -0.966751 ], [ -1.010742, -0.966751 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ 0.000000, -0.966751 ], [ -1.010742, -0.966751 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -49,7 +49,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , @@ -71,7 +71,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, -0.966751 ], [ 0.000000, -0.966751 ], [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ], [ 0.966797, -0.966751 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 0.000000 ], [ 0.966797, -0.966751 ], [ 0.000000, -0.966751 ], [ 0.000000, 0.000000 ], [ 0.966797, 0.000000 ] ] ] } } ] } ] } , @@ -81,7 +81,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.966797, 1.010690 ], [ 0.966797, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.966797, 1.010690 ], [ 0.966797, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.966797, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -95,7 +95,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -0.988720 ], [ -1.010742, -0.988720 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, -0.988720 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ 0.000000, -0.988720 ], [ -1.010742, -0.988720 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -105,7 +105,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , @@ -127,7 +127,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.988770, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.988770, -0.988720 ], [ 0.000000, -0.988720 ], [ 0.000000, 0.000000 ], [ 0.988770, 0.000000 ], [ 0.988770, -0.988720 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.988770, 0.000000 ], [ 0.988770, -0.988720 ], [ 0.000000, -0.988720 ], [ 0.000000, 0.000000 ], [ 0.988770, 0.000000 ] ] ] } } ] } ] } , @@ -137,7 +137,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.988770, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.988770, 1.010690 ], [ 0.988770, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.988770, 1.010690 ], [ 0.988770, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.988770, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -151,7 +151,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -0.999705 ], [ -1.010742, -0.999705 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ], [ -1.010742, -0.999705 ], [ -1.010742, 0.000000 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -161,7 +161,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 1.010690 ], [ 0.000000, 0.000000 ], [ -1.010742, 0.000000 ], [ -1.010742, 1.010690 ], [ 0.000000, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.010742, 0.000000 ] } } , @@ -183,7 +183,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, -0.999705 ], [ 0.000000, -0.999705 ], [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ], [ 0.999756, -0.999705 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 0.000000 ], [ 0.999756, -0.999705 ], [ 0.000000, -0.999705 ], [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } @@ -195,7 +195,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.999756, 1.010690 ], [ 0.999756, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 1.010690 ], [ 0.999756, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.010690 ], [ 0.999756, 1.010690 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -211,7 +211,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ -1.005249, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, -0.999705 ], [ -1.005249, -0.999705 ], [ -1.005249, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ], [ -1.005249, -0.999705 ], [ -1.005249, 0.000000 ], [ 0.000000, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , @@ -223,7 +223,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 0.000000 ], [ -1.005249, 0.000000 ], [ -1.005249, 1.005197 ], [ 0.000000, 1.005197 ], [ 0.000000, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 1.005197 ], [ 0.000000, 0.000000 ], [ -1.005249, 0.000000 ], [ -1.005249, 1.005197 ], [ 0.000000, 1.005197 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -1.005249, 0.000000 ] } } , @@ -245,7 +245,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, -0.999705 ], [ 0.000000, -0.999705 ], [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ], [ 0.999756, -0.999705 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 0.000000 ], [ 0.999756, -0.999705 ], [ 0.000000, -0.999705 ], [ 0.000000, 0.000000 ], [ 0.999756, 0.000000 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, -0.999705 ] } } , @@ -259,7 +259,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 1.005197 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.005197 ], [ 0.999756, 1.005197 ], [ 0.999756, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.999756, 1.005197 ], [ 0.999756, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 1.005197 ], [ 0.999756, 1.005197 ] ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } , diff --git a/tests/overlap/out/-z0.json b/tests/overlap/out/-z0.json index 24a56dc..317ef03 100644 --- a/tests/overlap/out/-z0.json +++ b/tests/overlap/out/-z0.json @@ -12,9 +12,9 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.076172, 61.015725 ], [ -37.001953, 34.016242 ], [ -71.015625, 29.075375 ], [ -103.007812, 39.027719 ], [ -117.070312, 60.020952 ], [ -113.027344, 69.005675 ], [ -93.076172, 75.004940 ], [ -74.003906, 79.004962 ], [ -33.046875, 79.004962 ], [ -3.076172, 61.015725 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.046875, 79.004962 ], [ -3.076172, 61.015725 ], [ -37.001953, 34.016242 ], [ -71.015625, 29.075375 ], [ -103.007812, 39.027719 ], [ -117.070312, 60.020952 ], [ -113.027344, 69.005675 ], [ -93.076172, 75.004940 ], [ -74.003906, 79.004962 ], [ -33.046875, 79.004962 ] ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -28.037109, 59.040555 ], [ -10.019531, 50.007739 ], [ -5.009766, 8.059230 ], [ -17.050781, -21.943046 ], [ -75.058594, -30.977609 ], [ -118.037109, -8.928487 ], [ -135.000000, 29.075375 ], [ -113.027344, 53.014783 ], [ -81.035156, 63.035039 ], [ -28.037109, 59.040555 ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.035156, 63.035039 ], [ -28.037109, 59.040555 ], [ -10.019531, 50.007739 ], [ -5.009766, 8.059230 ], [ -17.050781, -21.943046 ], [ -75.058594, -30.977609 ], [ -118.037109, -8.928487 ], [ -135.000000, 29.075375 ], [ -113.027344, 53.014783 ], [ -81.035156, 63.035039 ] ] ] } } ] } ] } ] } diff --git a/tests/overlap/out/-z0_--coalesce.json b/tests/overlap/out/-z0_--coalesce.json index 04aa984..4629d09 100644 --- a/tests/overlap/out/-z0_--coalesce.json +++ b/tests/overlap/out/-z0_--coalesce.json @@ -12,7 +12,7 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.007812, 39.027719 ], [ -71.015625, 29.075375 ], [ -37.001953, 34.016242 ], [ -15.380859, 52.908902 ], [ -10.019531, 50.007739 ], [ -5.009766, 8.059230 ], [ -17.050781, -21.943046 ], [ -75.058594, -30.977609 ], [ -118.037109, -8.928487 ], [ -135.000000, 29.075375 ], [ -113.027344, 53.014783 ], [ -111.884766, 53.383328 ], [ -103.007812, 39.027719 ] ] ], [ [ [ -117.070312, 60.020952 ], [ -113.027344, 69.005675 ], [ -93.076172, 75.004940 ], [ -74.003906, 79.004962 ], [ -33.046875, 79.004962 ], [ -3.076172, 61.015725 ], [ -15.380859, 52.908902 ], [ -28.037109, 59.040555 ], [ -81.035156, 63.035039 ], [ -111.884766, 53.383328 ], [ -117.070312, 60.020952 ] ] ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.046875, 79.004962 ], [ -3.076172, 61.015725 ], [ -15.380859, 52.908902 ], [ -10.019531, 50.007739 ], [ -5.009766, 8.059230 ], [ -17.050781, -21.943046 ], [ -75.058594, -30.977609 ], [ -118.037109, -8.928487 ], [ -135.000000, 29.075375 ], [ -113.027344, 53.014783 ], [ -111.884766, 53.383328 ], [ -117.070312, 60.020952 ], [ -113.027344, 69.005675 ], [ -93.076172, 75.004940 ], [ -74.003906, 79.004962 ], [ -33.046875, 79.004962 ] ] ] } } ] } ] } ] } diff --git a/tests/tl_2015_us_county/out/-z8.json b/tests/tl_2015_us_county/out/-z8.json index 2e8a24e..99d961e 100644 --- a/tests/tl_2015_us_county/out/-z8.json +++ b/tests/tl_2015_us_county/out/-z8.json @@ -12,173 +12,173 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 45.706179 ], [ -68.994141, 45.706179 ], [ -68.994141, 45.521744 ], [ -68.906250, 45.583290 ], [ -68.818359, 45.274886 ], [ -68.906250, 45.151053 ], [ -69.697266, 45.026950 ], [ -69.785156, 45.336702 ], [ -69.697266, 45.706179 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.890008 ], [ -69.785156, 46.619261 ], [ -68.906250, 46.619261 ], [ -68.906250, 45.706179 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 46.619261 ], [ -68.906250, 45.706179 ], [ -68.994141, 45.706179 ], [ -68.994141, 45.521744 ], [ -68.906250, 45.583290 ], [ -68.818359, 45.274886 ], [ -68.906250, 45.151053 ], [ -69.697266, 45.026950 ], [ -69.785156, 45.336702 ], [ -69.697266, 45.706179 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.890008 ], [ -69.785156, 46.619261 ], [ -68.906250, 46.619261 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.697266, 45.890008 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.706179 ], [ -69.785156, 45.583290 ], [ -69.697266, 45.026950 ], [ -69.433594, 45.089036 ], [ -69.345703, 44.777936 ], [ -69.697266, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.653024 ], [ -70.048828, 44.902578 ], [ -70.136719, 44.902578 ], [ -70.224609, 45.151053 ], [ -70.488281, 45.151053 ], [ -70.576172, 45.706179 ], [ -70.488281, 45.767523 ], [ -70.312500, 45.951150 ], [ -70.312500, 46.195042 ], [ -70.048828, 46.619261 ], [ -69.785156, 46.619261 ], [ -69.697266, 45.890008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 46.619261 ], [ -69.697266, 45.890008 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.706179 ], [ -69.785156, 45.583290 ], [ -69.697266, 45.026950 ], [ -69.433594, 45.089036 ], [ -69.345703, 44.777936 ], [ -69.697266, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.653024 ], [ -70.048828, 44.902578 ], [ -70.136719, 44.902578 ], [ -70.224609, 45.151053 ], [ -70.488281, 45.151053 ], [ -70.576172, 45.706179 ], [ -70.488281, 45.767523 ], [ -70.312500, 45.951150 ], [ -70.312500, 46.195042 ], [ -70.048828, 46.619261 ], [ -69.785156, 46.619261 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.862305, 45.706179 ], [ -68.994141, 45.675482 ], [ -68.994141, 45.521744 ], [ -68.862305, 45.552525 ], [ -68.818359, 45.243953 ], [ -68.906250, 45.243953 ], [ -68.862305, 45.151053 ], [ -69.653320, 45.026950 ], [ -69.741211, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.697266, 45.675482 ], [ -69.873047, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.741211, 45.890008 ], [ -69.653320, 45.890008 ], [ -69.697266, 46.012224 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ], [ -68.862305, 46.589069 ], [ -68.862305, 45.706179 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.862305, 46.589069 ], [ -68.862305, 45.706179 ], [ -68.994141, 45.675482 ], [ -68.994141, 45.521744 ], [ -68.862305, 45.552525 ], [ -68.818359, 45.243953 ], [ -68.906250, 45.243953 ], [ -68.862305, 45.151053 ], [ -69.653320, 45.026950 ], [ -69.741211, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.697266, 45.675482 ], [ -69.873047, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.741211, 45.890008 ], [ -69.653320, 45.890008 ], [ -69.697266, 46.012224 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ], [ -68.862305, 46.589069 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 45.981695 ], [ -69.697266, 46.012224 ], [ -69.653320, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.741211, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.675482 ], [ -69.785156, 45.552525 ], [ -69.653320, 45.026950 ], [ -69.389648, 45.089036 ], [ -69.301758, 44.746733 ], [ -69.389648, 44.777936 ], [ -69.433594, 44.715514 ], [ -69.653320, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.621754 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.871443 ], [ -70.180664, 45.151053 ], [ -70.444336, 45.151053 ], [ -70.576172, 45.675482 ], [ -70.444336, 45.736860 ], [ -70.444336, 45.798170 ], [ -70.268555, 45.951150 ], [ -70.356445, 45.981695 ], [ -70.268555, 46.164614 ], [ -70.312500, 46.195042 ], [ -70.224609, 46.377254 ], [ -70.092773, 46.437857 ], [ -70.048828, 46.589069 ], [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ], [ -69.697266, 46.012224 ], [ -69.653320, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.741211, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.675482 ], [ -69.785156, 45.552525 ], [ -69.653320, 45.026950 ], [ -69.389648, 45.089036 ], [ -69.301758, 44.746733 ], [ -69.389648, 44.777936 ], [ -69.433594, 44.715514 ], [ -69.653320, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.621754 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.871443 ], [ -70.180664, 45.151053 ], [ -70.444336, 45.151053 ], [ -70.576172, 45.675482 ], [ -70.444336, 45.736860 ], [ -70.444336, 45.798170 ], [ -70.268555, 45.951150 ], [ -70.356445, 45.981695 ], [ -70.268555, 46.164614 ], [ -70.312500, 46.195042 ], [ -70.224609, 46.377254 ], [ -70.092773, 46.437857 ], [ -70.048828, 46.589069 ], [ -69.741211, 46.589069 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.840332, 46.573967 ], [ -68.840332, 45.690833 ], [ -68.972168, 45.675482 ], [ -68.972168, 45.521744 ], [ -68.862305, 45.537137 ], [ -68.796387, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.151053 ], [ -69.521484, 45.058001 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.719238, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.719238, 45.598666 ], [ -69.719238, 45.660127 ], [ -69.763184, 45.660127 ], [ -69.741211, 45.690833 ], [ -69.851074, 45.752193 ], [ -69.807129, 45.752193 ], [ -69.807129, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.890008 ], [ -69.697266, 45.859412 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.996962 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ], [ -68.840332, 46.573967 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 46.589069 ], [ -68.840332, 46.573967 ], [ -68.840332, 45.690833 ], [ -68.972168, 45.675482 ], [ -68.972168, 45.521744 ], [ -68.862305, 45.537137 ], [ -68.796387, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.151053 ], [ -69.521484, 45.058001 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.719238, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.719238, 45.598666 ], [ -69.719238, 45.660127 ], [ -69.763184, 45.660127 ], [ -69.741211, 45.690833 ], [ -69.851074, 45.752193 ], [ -69.807129, 45.752193 ], [ -69.807129, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.890008 ], [ -69.697266, 45.859412 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.996962 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 45.981695 ], [ -69.697266, 45.996962 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.859412 ], [ -69.719238, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.767523 ], [ -69.807129, 45.798170 ], [ -69.807129, 45.752193 ], [ -69.851074, 45.752193 ], [ -69.741211, 45.690833 ], [ -69.763184, 45.660127 ], [ -69.719238, 45.660127 ], [ -69.719238, 45.598666 ], [ -69.785156, 45.552525 ], [ -69.631348, 45.011419 ], [ -69.367676, 45.073521 ], [ -69.279785, 44.731126 ], [ -69.345703, 44.715514 ], [ -69.345703, 44.762337 ], [ -69.389648, 44.762337 ], [ -69.433594, 44.715514 ], [ -69.477539, 44.699898 ], [ -69.499512, 44.731126 ], [ -69.653320, 44.715514 ], [ -69.587402, 44.637391 ], [ -69.609375, 44.590467 ], [ -69.785156, 44.621754 ], [ -69.807129, 44.590467 ], [ -69.873047, 44.621754 ], [ -69.938965, 44.621754 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.180664, 45.135555 ], [ -70.312500, 45.120053 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.422363, 45.721522 ], [ -70.400391, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.268555, 45.890008 ], [ -70.246582, 45.951150 ], [ -70.268555, 45.966425 ], [ -70.334473, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.334473, 46.027482 ], [ -70.290527, 46.057985 ], [ -70.312500, 46.073231 ], [ -70.246582, 46.149394 ], [ -70.312500, 46.195042 ], [ -70.202637, 46.362093 ], [ -70.070801, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ], [ -69.697266, 45.996962 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.859412 ], [ -69.719238, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.767523 ], [ -69.807129, 45.798170 ], [ -69.807129, 45.752193 ], [ -69.851074, 45.752193 ], [ -69.741211, 45.690833 ], [ -69.763184, 45.660127 ], [ -69.719238, 45.660127 ], [ -69.719238, 45.598666 ], [ -69.785156, 45.552525 ], [ -69.631348, 45.011419 ], [ -69.367676, 45.073521 ], [ -69.279785, 44.731126 ], [ -69.345703, 44.715514 ], [ -69.345703, 44.762337 ], [ -69.389648, 44.762337 ], [ -69.433594, 44.715514 ], [ -69.477539, 44.699898 ], [ -69.499512, 44.731126 ], [ -69.653320, 44.715514 ], [ -69.587402, 44.637391 ], [ -69.609375, 44.590467 ], [ -69.785156, 44.621754 ], [ -69.807129, 44.590467 ], [ -69.873047, 44.621754 ], [ -69.938965, 44.621754 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.180664, 45.135555 ], [ -70.312500, 45.120053 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.422363, 45.721522 ], [ -70.400391, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.268555, 45.890008 ], [ -70.246582, 45.951150 ], [ -70.268555, 45.966425 ], [ -70.334473, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.334473, 46.027482 ], [ -70.290527, 46.057985 ], [ -70.312500, 46.073231 ], [ -70.246582, 46.149394 ], [ -70.312500, 46.195042 ], [ -70.202637, 46.362093 ], [ -70.070801, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.741211, 46.589069 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.774170, 45.767523 ], [ -69.730225, 45.767523 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.790509 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.836454 ], [ -69.708252, 45.851760 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.890008 ], [ -69.686279, 45.851760 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.989329 ], [ -69.730225, 45.981695 ], [ -69.730225, 46.581518 ], [ -68.829346, 46.573967 ], [ -68.829346, 45.690833 ], [ -68.961182, 45.667805 ], [ -68.972168, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.785400, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.143305 ], [ -69.510498, 45.058001 ], [ -69.499512, 45.042478 ], [ -69.521484, 45.034715 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.708252, 45.298075 ], [ -69.785156, 45.544831 ], [ -69.719238, 45.590978 ], [ -69.730225, 45.621722 ], [ -69.708252, 45.629405 ], [ -69.719238, 45.652448 ], [ -69.697266, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.752197, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.818115, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.752193 ], [ -69.785156, 45.782848 ], [ -69.774170, 45.767523 ] ] ], [ [ [ -69.785156, 45.790509 ], [ -69.785156, 45.782848 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.790509 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.782848 ], [ -69.774170, 45.767523 ], [ -69.730225, 45.767523 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.790509 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.836454 ], [ -69.708252, 45.851760 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.890008 ], [ -69.686279, 45.851760 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.989329 ], [ -69.730225, 45.981695 ], [ -69.730225, 46.581518 ], [ -68.829346, 46.573967 ], [ -68.829346, 45.690833 ], [ -68.961182, 45.667805 ], [ -68.972168, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.785400, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.143305 ], [ -69.510498, 45.058001 ], [ -69.499512, 45.042478 ], [ -69.521484, 45.034715 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.708252, 45.298075 ], [ -69.785156, 45.544831 ], [ -69.719238, 45.590978 ], [ -69.730225, 45.621722 ], [ -69.708252, 45.629405 ], [ -69.719238, 45.652448 ], [ -69.697266, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.752197, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.818115, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.752193 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.790509 ], [ -69.785156, 45.782848 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.840088, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.818115, 45.721522 ], [ -69.785156, 45.690833 ], [ -69.741211, 45.683158 ], [ -69.752197, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.697266, 45.652448 ], [ -69.719238, 45.652448 ], [ -69.708252, 45.629405 ], [ -69.730225, 45.621722 ], [ -69.719238, 45.590978 ], [ -69.785156, 45.544831 ], [ -69.631348, 45.011419 ], [ -69.521484, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.042478 ], [ -69.510498, 45.058001 ], [ -69.356689, 45.073521 ], [ -69.268799, 44.723320 ], [ -69.334717, 44.715514 ], [ -69.345703, 44.754535 ], [ -69.389648, 44.754535 ], [ -69.422607, 44.707706 ], [ -69.477539, 44.699898 ], [ -69.477539, 44.723320 ], [ -69.488525, 44.723320 ], [ -69.642334, 44.707706 ], [ -69.620361, 44.660839 ], [ -69.587402, 44.629573 ], [ -69.609375, 44.582643 ], [ -69.785156, 44.613934 ], [ -69.796143, 44.582643 ], [ -69.829102, 44.582643 ], [ -69.829102, 44.613934 ], [ -69.862061, 44.621754 ], [ -69.938965, 44.613934 ], [ -69.971924, 44.668653 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.015869, 44.762337 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.793531 ], [ -70.015869, 44.793531 ], [ -70.037842, 44.809122 ], [ -70.037842, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.169678, 45.135555 ], [ -70.301514, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.532227, 45.667805 ], [ -70.466309, 45.713851 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.378418, 45.836454 ], [ -70.268555, 45.890008 ], [ -70.268555, 45.928230 ], [ -70.246582, 45.943511 ], [ -70.268555, 45.966425 ], [ -70.323486, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.323486, 46.019853 ], [ -70.279541, 46.057985 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.246582, 46.149394 ], [ -70.301514, 46.195042 ], [ -70.235596, 46.293816 ], [ -70.213623, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.354511 ], [ -70.136719, 46.369674 ], [ -70.103760, 46.415139 ], [ -70.059814, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.730225, 46.581518 ], [ -69.730225, 45.981695 ], [ -69.686279, 45.989329 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.851760 ], [ -69.708252, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.851760 ], [ -69.719238, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.790509 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.767523 ], [ -69.774170, 45.767523 ], [ -69.785156, 45.782848 ], [ -69.796143, 45.752193 ], [ -69.840088, 45.744527 ] ], [ [ -69.785156, 45.790509 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.790509 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 45.782848 ], [ -69.796143, 45.752193 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.818115, 45.721522 ], [ -69.785156, 45.690833 ], [ -69.741211, 45.683158 ], [ -69.752197, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.697266, 45.652448 ], [ -69.719238, 45.652448 ], [ -69.708252, 45.629405 ], [ -69.730225, 45.621722 ], [ -69.719238, 45.590978 ], [ -69.785156, 45.544831 ], [ -69.631348, 45.011419 ], [ -69.521484, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.042478 ], [ -69.510498, 45.058001 ], [ -69.356689, 45.073521 ], [ -69.268799, 44.723320 ], [ -69.334717, 44.715514 ], [ -69.345703, 44.754535 ], [ -69.389648, 44.754535 ], [ -69.422607, 44.707706 ], [ -69.477539, 44.699898 ], [ -69.477539, 44.723320 ], [ -69.488525, 44.723320 ], [ -69.642334, 44.707706 ], [ -69.620361, 44.660839 ], [ -69.587402, 44.629573 ], [ -69.609375, 44.582643 ], [ -69.785156, 44.613934 ], [ -69.796143, 44.582643 ], [ -69.829102, 44.582643 ], [ -69.829102, 44.613934 ], [ -69.862061, 44.621754 ], [ -69.938965, 44.613934 ], [ -69.971924, 44.668653 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.015869, 44.762337 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.793531 ], [ -70.015869, 44.793531 ], [ -70.037842, 44.809122 ], [ -70.037842, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.169678, 45.135555 ], [ -70.301514, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.532227, 45.667805 ], [ -70.466309, 45.713851 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.378418, 45.836454 ], [ -70.268555, 45.890008 ], [ -70.268555, 45.928230 ], [ -70.246582, 45.943511 ], [ -70.268555, 45.966425 ], [ -70.323486, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.323486, 46.019853 ], [ -70.279541, 46.057985 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.246582, 46.149394 ], [ -70.301514, 46.195042 ], [ -70.235596, 46.293816 ], [ -70.213623, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.354511 ], [ -70.136719, 46.369674 ], [ -70.103760, 46.415139 ], [ -70.059814, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.730225, 46.581518 ], [ -69.730225, 45.981695 ], [ -69.686279, 45.989329 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.851760 ], [ -69.708252, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.851760 ], [ -69.719238, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.790509 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.767523 ], [ -69.774170, 45.767523 ], [ -69.785156, 45.782848 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.790509 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.782848 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.713745, 45.832627 ], [ -69.708252, 45.847934 ], [ -69.735718, 45.878537 ], [ -69.702759, 45.886185 ], [ -69.702759, 45.874712 ], [ -69.686279, 45.851760 ], [ -69.675293, 45.855586 ], [ -69.675293, 45.863238 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.735718, 46.396200 ], [ -69.724731, 46.396200 ], [ -69.724731, 46.577743 ], [ -68.823853, 46.573967 ], [ -68.829346, 45.686996 ], [ -68.961182, 45.663966 ], [ -68.955688, 45.640928 ], [ -68.955688, 45.583290 ], [ -68.966675, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.779907, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.856812, 45.143305 ], [ -69.505005, 45.054121 ], [ -69.499512, 45.038597 ], [ -69.521484, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.625854, 45.011419 ], [ -69.691772, 45.209134 ], [ -69.713745, 45.294211 ], [ -69.702759, 45.294211 ], [ -69.785156, 45.544831 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.556372 ], [ -69.735718, 45.567910 ], [ -69.719238, 45.587134 ], [ -69.724731, 45.617880 ], [ -69.713745, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.719238, 45.640928 ], [ -69.719238, 45.648608 ], [ -69.713745, 45.652448 ], [ -69.697266, 45.640928 ], [ -69.697266, 45.648608 ], [ -69.724731, 45.660127 ], [ -69.746704, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.757690, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.713851 ], [ -69.818115, 45.721522 ], [ -69.807129, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.829102, 45.744527 ], [ -69.818115, 45.748360 ], [ -69.790649, 45.748360 ], [ -69.796143, 45.759859 ], [ -69.785156, 45.771355 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.779017 ], [ -69.774170, 45.763691 ], [ -69.752197, 45.767523 ], [ -69.741211, 45.756026 ], [ -69.730225, 45.763691 ], [ -69.730225, 45.775186 ], [ -69.741211, 45.782848 ], [ -69.724731, 45.786679 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.832627 ], [ -69.713745, 45.832627 ] ] ], [ [ [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.786679 ] ] ], [ [ [ -69.730225, 45.836454 ], [ -69.724731, 45.836454 ], [ -69.724731, 45.832627 ], [ -69.730225, 45.836454 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.779017 ], [ -69.774170, 45.763691 ], [ -69.752197, 45.767523 ], [ -69.741211, 45.756026 ], [ -69.730225, 45.763691 ], [ -69.730225, 45.775186 ], [ -69.741211, 45.782848 ], [ -69.724731, 45.786679 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.832627 ], [ -69.708252, 45.847934 ], [ -69.735718, 45.878537 ], [ -69.702759, 45.886185 ], [ -69.702759, 45.874712 ], [ -69.686279, 45.851760 ], [ -69.675293, 45.855586 ], [ -69.675293, 45.863238 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.735718, 46.396200 ], [ -69.724731, 46.396200 ], [ -69.724731, 46.577743 ], [ -68.823853, 46.573967 ], [ -68.829346, 45.686996 ], [ -68.961182, 45.663966 ], [ -68.955688, 45.640928 ], [ -68.955688, 45.583290 ], [ -68.966675, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.779907, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.856812, 45.143305 ], [ -69.505005, 45.054121 ], [ -69.499512, 45.038597 ], [ -69.521484, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.625854, 45.011419 ], [ -69.691772, 45.209134 ], [ -69.713745, 45.294211 ], [ -69.702759, 45.294211 ], [ -69.785156, 45.544831 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.556372 ], [ -69.735718, 45.567910 ], [ -69.719238, 45.587134 ], [ -69.724731, 45.617880 ], [ -69.713745, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.719238, 45.640928 ], [ -69.719238, 45.648608 ], [ -69.713745, 45.652448 ], [ -69.697266, 45.640928 ], [ -69.697266, 45.648608 ], [ -69.724731, 45.660127 ], [ -69.746704, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.757690, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.713851 ], [ -69.818115, 45.721522 ], [ -69.807129, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.829102, 45.744527 ], [ -69.818115, 45.748360 ], [ -69.790649, 45.748360 ], [ -69.796143, 45.759859 ], [ -69.785156, 45.771355 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.779017 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.713745, 45.813486 ], [ -69.724731, 45.786679 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.775186 ], [ -69.730225, 45.763691 ], [ -69.741211, 45.756026 ], [ -69.752197, 45.767523 ], [ -69.774170, 45.763691 ], [ -69.785156, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.771355 ], [ -69.796143, 45.759859 ], [ -69.790649, 45.748360 ], [ -69.818115, 45.748360 ], [ -69.829102, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.807129, 45.721522 ], [ -69.818115, 45.721522 ], [ -69.790649, 45.713851 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.683158 ], [ -69.741211, 45.683158 ], [ -69.746704, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.697266, 45.648608 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.652448 ], [ -69.719238, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.702759, 45.629405 ], [ -69.713745, 45.614037 ], [ -69.724731, 45.617880 ], [ -69.719238, 45.587134 ], [ -69.735718, 45.567910 ], [ -69.763184, 45.556372 ], [ -69.774170, 45.556372 ], [ -69.785156, 45.544831 ], [ -69.702759, 45.298075 ], [ -69.713745, 45.294211 ], [ -69.691772, 45.209134 ], [ -69.658813, 45.100669 ], [ -69.647827, 45.104546 ], [ -69.625854, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.038597 ], [ -69.505005, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.285278, 44.813019 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.400635, 44.750634 ], [ -69.395142, 44.735028 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.703802 ], [ -69.472046, 44.695993 ], [ -69.472046, 44.719417 ], [ -69.488525, 44.723320 ], [ -69.636841, 44.703802 ], [ -69.620361, 44.660839 ], [ -69.581909, 44.629573 ], [ -69.598389, 44.606113 ], [ -69.592896, 44.586555 ], [ -69.609375, 44.578730 ], [ -69.779663, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.823608, 44.582643 ], [ -69.823608, 44.610023 ], [ -69.856567, 44.621754 ], [ -69.933472, 44.613934 ], [ -69.949951, 44.649116 ], [ -69.971924, 44.664746 ], [ -69.960938, 44.664746 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.684277 ], [ -69.999390, 44.680372 ], [ -70.015869, 44.758436 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.789633 ], [ -70.021362, 44.813019 ], [ -70.032349, 44.809122 ], [ -70.037842, 44.867550 ], [ -70.131226, 44.851975 ], [ -70.153198, 44.910359 ], [ -70.147705, 44.914249 ], [ -70.153198, 44.945361 ], [ -70.114746, 44.949249 ], [ -70.164185, 45.131680 ], [ -70.296021, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.147179 ], [ -70.521240, 45.514046 ], [ -70.510254, 45.514046 ], [ -70.554199, 45.671644 ], [ -70.537720, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.466309, 45.710015 ], [ -70.444336, 45.706179 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.394897, 45.744527 ], [ -70.389404, 45.752193 ], [ -70.411377, 45.763691 ], [ -70.405884, 45.779017 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.400391, 45.809658 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.345459, 45.855586 ], [ -70.312500, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.268555, 45.897655 ], [ -70.257568, 45.909122 ], [ -70.268555, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.252075, 45.958788 ], [ -70.263062, 45.954969 ], [ -70.268555, 45.966425 ], [ -70.317993, 45.966425 ], [ -70.312500, 45.985512 ], [ -70.285034, 45.996962 ], [ -70.307007, 46.000778 ], [ -70.323486, 46.019853 ], [ -70.307007, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.279541, 46.057985 ], [ -70.285034, 46.065608 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.257568, 46.115134 ], [ -70.241089, 46.145589 ], [ -70.296021, 46.195042 ], [ -70.274048, 46.214051 ], [ -70.235596, 46.293816 ], [ -70.208130, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.350719 ], [ -70.175171, 46.362093 ], [ -70.153198, 46.362093 ], [ -70.131226, 46.369674 ], [ -70.131226, 46.381044 ], [ -70.109253, 46.388622 ], [ -70.098267, 46.411352 ], [ -70.059814, 46.418926 ], [ -70.026855, 46.573967 ], [ -69.724731, 46.577743 ], [ -69.724731, 46.396200 ], [ -69.735718, 46.396200 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.855586 ], [ -69.686279, 45.851760 ], [ -69.702759, 45.874712 ], [ -69.702759, 45.886185 ], [ -69.735718, 45.878537 ], [ -69.708252, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.724731, 45.832627 ], [ -69.713745, 45.813486 ] ], [ [ -69.724731, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.724731, 45.832627 ], [ -69.724731, 45.836454 ] ], [ [ -69.785156, 45.786679 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 45.779017 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.771355 ], [ -69.796143, 45.759859 ], [ -69.790649, 45.748360 ], [ -69.818115, 45.748360 ], [ -69.829102, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.807129, 45.721522 ], [ -69.818115, 45.721522 ], [ -69.790649, 45.713851 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.683158 ], [ -69.741211, 45.683158 ], [ -69.746704, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.697266, 45.648608 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.652448 ], [ -69.719238, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.702759, 45.629405 ], [ -69.713745, 45.614037 ], [ -69.724731, 45.617880 ], [ -69.719238, 45.587134 ], [ -69.735718, 45.567910 ], [ -69.763184, 45.556372 ], [ -69.774170, 45.556372 ], [ -69.785156, 45.544831 ], [ -69.702759, 45.298075 ], [ -69.713745, 45.294211 ], [ -69.691772, 45.209134 ], [ -69.658813, 45.100669 ], [ -69.647827, 45.104546 ], [ -69.625854, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.038597 ], [ -69.505005, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.285278, 44.813019 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.400635, 44.750634 ], [ -69.395142, 44.735028 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.703802 ], [ -69.472046, 44.695993 ], [ -69.472046, 44.719417 ], [ -69.488525, 44.723320 ], [ -69.636841, 44.703802 ], [ -69.620361, 44.660839 ], [ -69.581909, 44.629573 ], [ -69.598389, 44.606113 ], [ -69.592896, 44.586555 ], [ -69.609375, 44.578730 ], [ -69.779663, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.823608, 44.582643 ], [ -69.823608, 44.610023 ], [ -69.856567, 44.621754 ], [ -69.933472, 44.613934 ], [ -69.949951, 44.649116 ], [ -69.971924, 44.664746 ], [ -69.960938, 44.664746 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.684277 ], [ -69.999390, 44.680372 ], [ -70.015869, 44.758436 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.789633 ], [ -70.021362, 44.813019 ], [ -70.032349, 44.809122 ], [ -70.037842, 44.867550 ], [ -70.131226, 44.851975 ], [ -70.153198, 44.910359 ], [ -70.147705, 44.914249 ], [ -70.153198, 44.945361 ], [ -70.114746, 44.949249 ], [ -70.164185, 45.131680 ], [ -70.296021, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.147179 ], [ -70.521240, 45.514046 ], [ -70.510254, 45.514046 ], [ -70.554199, 45.671644 ], [ -70.537720, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.466309, 45.710015 ], [ -70.444336, 45.706179 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.394897, 45.744527 ], [ -70.389404, 45.752193 ], [ -70.411377, 45.763691 ], [ -70.405884, 45.779017 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.400391, 45.809658 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.345459, 45.855586 ], [ -70.312500, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.268555, 45.897655 ], [ -70.257568, 45.909122 ], [ -70.268555, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.252075, 45.958788 ], [ -70.263062, 45.954969 ], [ -70.268555, 45.966425 ], [ -70.317993, 45.966425 ], [ -70.312500, 45.985512 ], [ -70.285034, 45.996962 ], [ -70.307007, 46.000778 ], [ -70.323486, 46.019853 ], [ -70.307007, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.279541, 46.057985 ], [ -70.285034, 46.065608 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.257568, 46.115134 ], [ -70.241089, 46.145589 ], [ -70.296021, 46.195042 ], [ -70.274048, 46.214051 ], [ -70.235596, 46.293816 ], [ -70.208130, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.350719 ], [ -70.175171, 46.362093 ], [ -70.153198, 46.362093 ], [ -70.131226, 46.369674 ], [ -70.131226, 46.381044 ], [ -70.109253, 46.388622 ], [ -70.098267, 46.411352 ], [ -70.059814, 46.418926 ], [ -70.026855, 46.573967 ], [ -69.724731, 46.577743 ], [ -69.724731, 46.396200 ], [ -69.735718, 46.396200 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.855586 ], [ -69.686279, 45.851760 ], [ -69.702759, 45.874712 ], [ -69.702759, 45.886185 ], [ -69.735718, 45.878537 ], [ -69.708252, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.786679 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.775186 ], [ -69.730225, 45.763691 ], [ -69.741211, 45.756026 ], [ -69.752197, 45.767523 ], [ -69.774170, 45.763691 ], [ -69.785156, 45.779017 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.782848 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.713745, 45.832627 ], [ -69.705505, 45.847934 ], [ -69.708252, 45.847934 ], [ -69.708252, 45.855586 ], [ -69.713745, 45.857499 ], [ -69.713745, 45.861325 ], [ -69.719238, 45.867063 ], [ -69.727478, 45.867063 ], [ -69.724731, 45.874712 ], [ -69.735718, 45.878537 ], [ -69.735718, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.710999, 45.886185 ], [ -69.700012, 45.886185 ], [ -69.700012, 45.880449 ], [ -69.702759, 45.880449 ], [ -69.702759, 45.872800 ], [ -69.697266, 45.865150 ], [ -69.694519, 45.865150 ], [ -69.691772, 45.855586 ], [ -69.683533, 45.851760 ], [ -69.675293, 45.853673 ], [ -69.675293, 45.863238 ], [ -69.658813, 45.861325 ], [ -69.656067, 45.865150 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.732971, 46.394306 ], [ -69.721985, 46.394306 ], [ -69.721985, 46.575855 ], [ -68.823853, 46.573967 ], [ -68.821106, 46.212150 ], [ -68.829346, 45.685077 ], [ -68.961182, 45.663966 ], [ -68.952942, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.966675, 45.514046 ], [ -68.859558, 45.527517 ], [ -68.777161, 45.242020 ], [ -68.881531, 45.226546 ], [ -68.856812, 45.143305 ], [ -69.502258, 45.054121 ], [ -69.496765, 45.038597 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.623108, 45.011419 ], [ -69.647827, 45.102608 ], [ -69.656067, 45.100669 ], [ -69.689026, 45.209134 ], [ -69.686279, 45.213004 ], [ -69.710999, 45.292279 ], [ -69.702759, 45.294211 ], [ -69.782410, 45.542908 ], [ -69.774170, 45.546755 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.554449 ], [ -69.732971, 45.567910 ], [ -69.724731, 45.583290 ], [ -69.716492, 45.587134 ], [ -69.713745, 45.596744 ], [ -69.721985, 45.604431 ], [ -69.719238, 45.610195 ], [ -69.719238, 45.612116 ], [ -69.710999, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.708252, 45.639007 ], [ -69.719238, 45.640928 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.650528 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.646688 ], [ -69.702759, 45.652448 ], [ -69.724731, 45.658208 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.738464, 45.652448 ], [ -69.743958, 45.652448 ], [ -69.741211, 45.658208 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.667805 ], [ -69.741211, 45.681239 ], [ -69.757690, 45.681239 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.711933 ], [ -69.804382, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.721522 ], [ -69.804382, 45.725356 ], [ -69.793396, 45.727274 ], [ -69.793396, 45.729191 ], [ -69.801636, 45.734943 ], [ -69.809875, 45.734943 ], [ -69.812622, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.829102, 45.738777 ], [ -69.834595, 45.738777 ], [ -69.818115, 45.748360 ], [ -69.801636, 45.750277 ], [ -69.798889, 45.746444 ], [ -69.790649, 45.748360 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.756026 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.769439 ], [ -69.782410, 45.771355 ], [ -69.782410, 45.775186 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.771423, 45.761775 ], [ -69.754944, 45.761775 ], [ -69.752197, 45.767523 ], [ -69.749451, 45.759859 ], [ -69.738464, 45.756026 ], [ -69.727478, 45.763691 ], [ -69.727478, 45.773270 ], [ -69.738464, 45.782848 ], [ -69.724731, 45.784764 ], [ -69.710999, 45.811572 ], [ -69.721985, 45.832627 ], [ -69.713745, 45.832627 ] ] ], [ [ [ -69.804382, 45.786679 ], [ -69.796143, 45.784764 ], [ -69.793396, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.801636, 45.784764 ], [ -69.804382, 45.786679 ] ] ], [ [ [ -69.727478, 45.834540 ], [ -69.721985, 45.834540 ], [ -69.721985, 45.832627 ], [ -69.727478, 45.834540 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.732971, 45.878537 ], [ -69.710999, 45.886185 ], [ -69.700012, 45.886185 ], [ -69.700012, 45.880449 ], [ -69.702759, 45.880449 ], [ -69.702759, 45.872800 ], [ -69.697266, 45.865150 ], [ -69.694519, 45.865150 ], [ -69.691772, 45.855586 ], [ -69.683533, 45.851760 ], [ -69.675293, 45.853673 ], [ -69.675293, 45.863238 ], [ -69.658813, 45.861325 ], [ -69.656067, 45.865150 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.732971, 46.394306 ], [ -69.721985, 46.394306 ], [ -69.721985, 46.575855 ], [ -68.823853, 46.573967 ], [ -68.821106, 46.212150 ], [ -68.829346, 45.685077 ], [ -68.961182, 45.663966 ], [ -68.952942, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.966675, 45.514046 ], [ -68.859558, 45.527517 ], [ -68.777161, 45.242020 ], [ -68.881531, 45.226546 ], [ -68.856812, 45.143305 ], [ -69.502258, 45.054121 ], [ -69.496765, 45.038597 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.623108, 45.011419 ], [ -69.647827, 45.102608 ], [ -69.656067, 45.100669 ], [ -69.689026, 45.209134 ], [ -69.686279, 45.213004 ], [ -69.710999, 45.292279 ], [ -69.702759, 45.294211 ], [ -69.782410, 45.542908 ], [ -69.774170, 45.546755 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.554449 ], [ -69.732971, 45.567910 ], [ -69.724731, 45.583290 ], [ -69.716492, 45.587134 ], [ -69.713745, 45.596744 ], [ -69.721985, 45.604431 ], [ -69.719238, 45.610195 ], [ -69.719238, 45.612116 ], [ -69.710999, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.708252, 45.639007 ], [ -69.719238, 45.640928 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.650528 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.646688 ], [ -69.702759, 45.652448 ], [ -69.724731, 45.658208 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.738464, 45.652448 ], [ -69.743958, 45.652448 ], [ -69.741211, 45.658208 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.667805 ], [ -69.741211, 45.681239 ], [ -69.757690, 45.681239 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.711933 ], [ -69.804382, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.721522 ], [ -69.804382, 45.725356 ], [ -69.793396, 45.727274 ], [ -69.793396, 45.729191 ], [ -69.801636, 45.734943 ], [ -69.809875, 45.734943 ], [ -69.812622, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.818115, 45.748360 ], [ -69.801636, 45.750277 ], [ -69.798889, 45.746444 ], [ -69.790649, 45.748360 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.756026 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.769439 ], [ -69.782410, 45.771355 ], [ -69.782410, 45.775186 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.771423, 45.761775 ], [ -69.754944, 45.761775 ], [ -69.752197, 45.767523 ], [ -69.749451, 45.759859 ], [ -69.738464, 45.756026 ], [ -69.727478, 45.763691 ], [ -69.727478, 45.773270 ], [ -69.738464, 45.782848 ], [ -69.724731, 45.784764 ], [ -69.710999, 45.811572 ], [ -69.721985, 45.834540 ], [ -69.713745, 45.832627 ], [ -69.705505, 45.847934 ], [ -69.708252, 45.847934 ], [ -69.708252, 45.855586 ], [ -69.713745, 45.857499 ], [ -69.713745, 45.861325 ], [ -69.719238, 45.867063 ], [ -69.727478, 45.867063 ], [ -69.724731, 45.874712 ], [ -69.732971, 45.878537 ] ] ], [ [ [ -69.826355, 45.742610 ], [ -69.829102, 45.738777 ], [ -69.834595, 45.738777 ], [ -69.826355, 45.742610 ] ] ], [ [ [ -69.796143, 45.784764 ], [ -69.793396, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.796143, 45.784764 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.785156, 45.777102 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.796143, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.796143, 45.784764 ] ] ], [ [ [ -69.732971, 45.878537 ], [ -69.735718, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.732971, 45.878537 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.710999, 45.811572 ], [ -69.724731, 45.784764 ], [ -69.738464, 45.782848 ], [ -69.727478, 45.773270 ], [ -69.727478, 45.763691 ], [ -69.738464, 45.756026 ], [ -69.749451, 45.759859 ], [ -69.752197, 45.767523 ], [ -69.754944, 45.761775 ], [ -69.771423, 45.761775 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.782410, 45.775186 ], [ -69.782410, 45.771355 ], [ -69.790649, 45.769439 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.748360 ], [ -69.798889, 45.746444 ], [ -69.801636, 45.750277 ], [ -69.818115, 45.748360 ], [ -69.834595, 45.738777 ], [ -69.829102, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.812622, 45.738777 ], [ -69.809875, 45.734943 ], [ -69.801636, 45.734943 ], [ -69.793396, 45.729191 ], [ -69.793396, 45.727274 ], [ -69.804382, 45.725356 ], [ -69.804382, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.715769 ], [ -69.790649, 45.711933 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.681239 ], [ -69.741211, 45.681239 ], [ -69.741211, 45.667805 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.658208 ], [ -69.743958, 45.652448 ], [ -69.738464, 45.652448 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.724731, 45.658208 ], [ -69.702759, 45.652448 ], [ -69.694519, 45.646688 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.650528 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.710999, 45.639007 ], [ -69.702759, 45.629405 ], [ -69.710999, 45.614037 ], [ -69.719238, 45.612116 ], [ -69.719238, 45.610195 ], [ -69.721985, 45.604431 ], [ -69.713745, 45.596744 ], [ -69.716492, 45.587134 ], [ -69.724731, 45.583290 ], [ -69.732971, 45.567910 ], [ -69.763184, 45.554449 ], [ -69.774170, 45.556372 ], [ -69.774170, 45.546755 ], [ -69.782410, 45.542908 ], [ -69.702759, 45.296143 ], [ -69.702759, 45.294211 ], [ -69.710999, 45.292279 ], [ -69.686279, 45.213004 ], [ -69.689026, 45.209134 ], [ -69.656067, 45.100669 ], [ -69.647827, 45.102608 ], [ -69.623108, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.518738, 45.034715 ], [ -69.496765, 45.038597 ], [ -69.502258, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.288025, 44.809122 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.748684 ], [ -69.397888, 44.748684 ], [ -69.395142, 44.733077 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.694041 ], [ -69.469299, 44.709658 ], [ -69.474792, 44.709658 ], [ -69.472046, 44.719417 ], [ -69.485779, 44.721369 ], [ -69.634094, 44.701850 ], [ -69.631348, 44.674513 ], [ -69.620361, 44.658885 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.595642, 44.604157 ], [ -69.592896, 44.584599 ], [ -69.606628, 44.578730 ], [ -69.743958, 44.598290 ], [ -69.746704, 44.604157 ], [ -69.776917, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.820862, 44.582643 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.602202 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.608068 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611979 ], [ -69.947205, 44.649116 ], [ -69.969177, 44.662793 ], [ -69.960938, 44.662793 ], [ -69.960938, 44.672559 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.682325 ], [ -69.996643, 44.678419 ], [ -70.015869, 44.758436 ], [ -70.002136, 44.760386 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.811070 ], [ -70.029602, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.832500 ], [ -70.035095, 44.865603 ], [ -70.131226, 44.851975 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.943417 ], [ -70.112000, 44.949249 ], [ -70.161438, 45.129742 ], [ -70.296021, 45.110362 ], [ -70.309753, 45.164611 ], [ -70.312500, 45.166547 ], [ -70.367432, 45.158801 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.521240, 45.514046 ], [ -70.507507, 45.514046 ], [ -70.554199, 45.669725 ], [ -70.543213, 45.667805 ], [ -70.534973, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.513000, 45.679320 ], [ -70.480042, 45.696588 ], [ -70.466309, 45.708097 ], [ -70.441589, 45.704261 ], [ -70.427856, 45.708097 ], [ -70.430603, 45.711933 ], [ -70.419617, 45.713851 ], [ -70.403137, 45.721522 ], [ -70.397644, 45.729191 ], [ -70.392151, 45.729191 ], [ -70.386658, 45.734943 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.752193 ], [ -70.408630, 45.763691 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.786679 ], [ -70.419617, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.809658 ], [ -70.389404, 45.815401 ], [ -70.389404, 45.819229 ], [ -70.372925, 45.828799 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.342712, 45.853673 ], [ -70.309753, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.260315, 45.891920 ], [ -70.265808, 45.895743 ], [ -70.254822, 45.903389 ], [ -70.254822, 45.909122 ], [ -70.260315, 45.911033 ], [ -70.257568, 45.918677 ], [ -70.265808, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.241089, 45.945421 ], [ -70.246582, 45.945421 ], [ -70.243835, 45.947330 ], [ -70.252075, 45.956878 ], [ -70.263062, 45.953059 ], [ -70.260315, 45.960697 ], [ -70.268555, 45.964515 ], [ -70.274048, 45.962606 ], [ -70.276794, 45.968334 ], [ -70.285034, 45.964515 ], [ -70.317993, 45.964515 ], [ -70.312500, 45.966425 ], [ -70.309753, 45.983604 ], [ -70.296021, 45.987421 ], [ -70.285034, 45.996962 ], [ -70.290527, 45.995054 ], [ -70.304260, 45.998870 ], [ -70.307007, 46.012224 ], [ -70.320740, 46.019853 ], [ -70.304260, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.282288, 46.052267 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.061797 ], [ -70.285034, 46.063703 ], [ -70.304260, 46.061797 ], [ -70.312500, 46.065608 ], [ -70.304260, 46.071325 ], [ -70.304260, 46.082757 ], [ -70.293274, 46.088472 ], [ -70.287781, 46.101804 ], [ -70.274048, 46.103709 ], [ -70.254822, 46.101804 ], [ -70.254822, 46.115134 ], [ -70.238342, 46.145589 ], [ -70.241089, 46.151297 ], [ -70.249329, 46.153200 ], [ -70.268555, 46.170321 ], [ -70.279541, 46.176027 ], [ -70.287781, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.293274, 46.193141 ], [ -70.271301, 46.212150 ], [ -70.274048, 46.217852 ], [ -70.268555, 46.219752 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.260315, 46.238752 ], [ -70.252075, 46.250149 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.259645 ], [ -70.232849, 46.286224 ], [ -70.232849, 46.291918 ], [ -70.208130, 46.301406 ], [ -70.205383, 46.316584 ], [ -70.210876, 46.329862 ], [ -70.197144, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.183411, 46.352615 ], [ -70.175171, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.158691, 46.362093 ], [ -70.150452, 46.360198 ], [ -70.142212, 46.363988 ], [ -70.139465, 46.369674 ], [ -70.131226, 46.369674 ], [ -70.128479, 46.381044 ], [ -70.117493, 46.386728 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.386728 ], [ -70.114746, 46.388622 ], [ -70.109253, 46.388622 ], [ -70.112000, 46.392411 ], [ -70.101013, 46.401882 ], [ -70.101013, 46.405670 ], [ -70.098267, 46.407564 ], [ -70.098267, 46.411352 ], [ -70.079041, 46.411352 ], [ -70.057068, 46.417032 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.575855 ], [ -69.721985, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.656067, 45.865150 ], [ -69.658813, 45.861325 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.691772, 45.855586 ], [ -69.694519, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.702759, 45.872800 ], [ -69.702759, 45.880449 ], [ -69.700012, 45.880449 ], [ -69.700012, 45.886185 ], [ -69.710999, 45.886185 ], [ -69.732971, 45.878537 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.878537 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.867063 ], [ -69.719238, 45.867063 ], [ -69.713745, 45.861325 ], [ -69.713745, 45.857499 ], [ -69.708252, 45.855586 ], [ -69.708252, 45.847934 ], [ -69.705505, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.721985, 45.832627 ], [ -69.710999, 45.811572 ] ], [ [ -69.721985, 45.834540 ], [ -69.727478, 45.834540 ], [ -69.721985, 45.832627 ], [ -69.721985, 45.834540 ] ], [ [ -69.785156, 45.786679 ], [ -69.793396, 45.786679 ], [ -69.796143, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.801636, 45.784764 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.109253, 46.388622 ], [ -70.112000, 46.392411 ], [ -70.101013, 46.401882 ], [ -70.101013, 46.405670 ], [ -70.098267, 46.407564 ], [ -70.098267, 46.411352 ], [ -70.079041, 46.411352 ], [ -70.057068, 46.417032 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.575855 ], [ -69.721985, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.656067, 45.865150 ], [ -69.658813, 45.861325 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.691772, 45.855586 ], [ -69.694519, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.702759, 45.872800 ], [ -69.702759, 45.880449 ], [ -69.700012, 45.880449 ], [ -69.700012, 45.886185 ], [ -69.710999, 45.886185 ], [ -69.732971, 45.878537 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.867063 ], [ -69.719238, 45.867063 ], [ -69.713745, 45.861325 ], [ -69.713745, 45.857499 ], [ -69.708252, 45.855586 ], [ -69.708252, 45.847934 ], [ -69.705505, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.721985, 45.834540 ], [ -69.710999, 45.811572 ], [ -69.724731, 45.784764 ], [ -69.738464, 45.782848 ], [ -69.727478, 45.773270 ], [ -69.727478, 45.763691 ], [ -69.738464, 45.756026 ], [ -69.749451, 45.759859 ], [ -69.752197, 45.767523 ], [ -69.754944, 45.761775 ], [ -69.771423, 45.761775 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.775186 ], [ -69.782410, 45.771355 ], [ -69.790649, 45.769439 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.748360 ], [ -69.798889, 45.746444 ], [ -69.801636, 45.750277 ], [ -69.818115, 45.748360 ], [ -69.826355, 45.742610 ], [ -69.812622, 45.738777 ], [ -69.809875, 45.734943 ], [ -69.801636, 45.734943 ], [ -69.793396, 45.729191 ], [ -69.793396, 45.727274 ], [ -69.804382, 45.725356 ], [ -69.804382, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.715769 ], [ -69.790649, 45.711933 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.681239 ], [ -69.741211, 45.681239 ], [ -69.741211, 45.667805 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.658208 ], [ -69.743958, 45.652448 ], [ -69.738464, 45.652448 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.724731, 45.658208 ], [ -69.702759, 45.652448 ], [ -69.694519, 45.646688 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.650528 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.710999, 45.639007 ], [ -69.702759, 45.629405 ], [ -69.710999, 45.614037 ], [ -69.719238, 45.612116 ], [ -69.719238, 45.610195 ], [ -69.721985, 45.604431 ], [ -69.713745, 45.596744 ], [ -69.716492, 45.587134 ], [ -69.724731, 45.583290 ], [ -69.732971, 45.567910 ], [ -69.763184, 45.554449 ], [ -69.774170, 45.556372 ], [ -69.774170, 45.546755 ], [ -69.782410, 45.542908 ], [ -69.702759, 45.296143 ], [ -69.702759, 45.294211 ], [ -69.710999, 45.292279 ], [ -69.686279, 45.213004 ], [ -69.689026, 45.209134 ], [ -69.656067, 45.100669 ], [ -69.647827, 45.102608 ], [ -69.623108, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.518738, 45.034715 ], [ -69.496765, 45.038597 ], [ -69.502258, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.288025, 44.809122 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.748684 ], [ -69.397888, 44.748684 ], [ -69.395142, 44.733077 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.694041 ], [ -69.469299, 44.709658 ], [ -69.474792, 44.709658 ], [ -69.472046, 44.719417 ], [ -69.485779, 44.721369 ], [ -69.634094, 44.701850 ], [ -69.631348, 44.674513 ], [ -69.620361, 44.658885 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.595642, 44.604157 ], [ -69.592896, 44.584599 ], [ -69.606628, 44.578730 ], [ -69.743958, 44.598290 ], [ -69.746704, 44.604157 ], [ -69.776917, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.820862, 44.582643 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.602202 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.608068 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611979 ], [ -69.947205, 44.649116 ], [ -69.969177, 44.662793 ], [ -69.960938, 44.662793 ], [ -69.960938, 44.672559 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.682325 ], [ -69.996643, 44.678419 ], [ -70.015869, 44.758436 ], [ -70.002136, 44.760386 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.811070 ], [ -70.029602, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.832500 ], [ -70.035095, 44.865603 ], [ -70.131226, 44.851975 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.943417 ], [ -70.112000, 44.949249 ], [ -70.161438, 45.129742 ], [ -70.296021, 45.110362 ], [ -70.309753, 45.164611 ], [ -70.312500, 45.166547 ], [ -70.367432, 45.158801 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.521240, 45.514046 ], [ -70.507507, 45.514046 ], [ -70.554199, 45.669725 ], [ -70.543213, 45.667805 ], [ -70.534973, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.513000, 45.679320 ], [ -70.480042, 45.696588 ], [ -70.466309, 45.708097 ], [ -70.441589, 45.704261 ], [ -70.427856, 45.708097 ], [ -70.430603, 45.711933 ], [ -70.419617, 45.713851 ], [ -70.403137, 45.721522 ], [ -70.397644, 45.729191 ], [ -70.392151, 45.729191 ], [ -70.386658, 45.734943 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.752193 ], [ -70.408630, 45.763691 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.786679 ], [ -70.419617, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.809658 ], [ -70.389404, 45.815401 ], [ -70.389404, 45.819229 ], [ -70.372925, 45.828799 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.342712, 45.853673 ], [ -70.309753, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.260315, 45.891920 ], [ -70.265808, 45.895743 ], [ -70.254822, 45.903389 ], [ -70.254822, 45.909122 ], [ -70.260315, 45.911033 ], [ -70.257568, 45.918677 ], [ -70.265808, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.241089, 45.945421 ], [ -70.246582, 45.945421 ], [ -70.243835, 45.947330 ], [ -70.252075, 45.956878 ], [ -70.263062, 45.953059 ], [ -70.260315, 45.960697 ], [ -70.268555, 45.964515 ], [ -70.274048, 45.962606 ], [ -70.276794, 45.968334 ], [ -70.285034, 45.964515 ], [ -70.317993, 45.964515 ], [ -70.312500, 45.966425 ], [ -70.309753, 45.983604 ], [ -70.296021, 45.987421 ], [ -70.285034, 45.996962 ], [ -70.290527, 45.995054 ], [ -70.304260, 45.998870 ], [ -70.307007, 46.012224 ], [ -70.320740, 46.019853 ], [ -70.304260, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.282288, 46.052267 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.061797 ], [ -70.285034, 46.063703 ], [ -70.304260, 46.061797 ], [ -70.312500, 46.065608 ], [ -70.304260, 46.071325 ], [ -70.304260, 46.082757 ], [ -70.293274, 46.088472 ], [ -70.287781, 46.101804 ], [ -70.274048, 46.103709 ], [ -70.254822, 46.101804 ], [ -70.254822, 46.115134 ], [ -70.238342, 46.145589 ], [ -70.241089, 46.151297 ], [ -70.249329, 46.153200 ], [ -70.268555, 46.170321 ], [ -70.279541, 46.176027 ], [ -70.287781, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.293274, 46.193141 ], [ -70.271301, 46.212150 ], [ -70.274048, 46.217852 ], [ -70.268555, 46.219752 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.260315, 46.238752 ], [ -70.252075, 46.250149 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.259645 ], [ -70.232849, 46.286224 ], [ -70.232849, 46.291918 ], [ -70.208130, 46.301406 ], [ -70.205383, 46.316584 ], [ -70.210876, 46.329862 ], [ -70.197144, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.183411, 46.352615 ], [ -70.175171, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.158691, 46.362093 ], [ -70.150452, 46.360198 ], [ -70.142212, 46.363988 ], [ -70.139465, 46.369674 ], [ -70.131226, 46.369674 ], [ -70.128479, 46.381044 ], [ -70.117493, 46.386728 ], [ -70.117493, 46.388622 ], [ -70.109253, 46.388622 ] ], [ [ -69.826355, 45.742610 ], [ -69.834595, 45.738777 ], [ -69.829102, 45.738777 ], [ -69.826355, 45.742610 ] ], [ [ -69.796143, 45.784764 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.793396, 45.786679 ], [ -69.796143, 45.784764 ] ], [ [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.782848 ] ], [ [ -69.796143, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.801636, 45.784764 ], [ -69.796143, 45.784764 ] ], [ [ -69.732971, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.735718, 45.878537 ], [ -69.732971, 45.878537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.675293, 45.166547 ], [ -68.865051, 45.166547 ], [ -68.856812, 45.143305 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.865051, 45.166547 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.675293, 45.166547 ], [ -68.865051, 45.166547 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.282532, 44.809122 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268799, 44.722344 ], [ -69.327850, 44.714538 ], [ -69.344330, 44.750634 ], [ -69.348450, 44.749659 ], [ -69.360809, 44.751610 ], [ -69.371796, 44.755511 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.747709 ], [ -69.395142, 44.748684 ], [ -69.397888, 44.747709 ], [ -69.395142, 44.733077 ], [ -69.406128, 44.727223 ], [ -69.415741, 44.719417 ], [ -69.418488, 44.709658 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708682 ], [ -69.473419, 44.709658 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.634094, 44.700874 ], [ -69.629974, 44.673536 ], [ -69.621735, 44.665723 ], [ -69.618988, 44.657909 ], [ -69.614868, 44.654978 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.580536, 44.621754 ], [ -69.594269, 44.603180 ], [ -69.590149, 44.590467 ], [ -69.591522, 44.584599 ], [ -69.606628, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.745331, 44.603180 ], [ -69.775543, 44.609046 ], [ -69.787903, 44.594379 ], [ -69.793396, 44.577752 ], [ -69.796143, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.816742, 44.584599 ], [ -69.819489, 44.588511 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.601224 ], [ -69.820862, 44.603180 ], [ -69.823608, 44.605135 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.607090 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.966431, 44.663769 ], [ -69.965057, 44.660839 ], [ -69.960938, 44.660839 ], [ -69.959564, 44.662793 ], [ -69.959564, 44.671583 ], [ -69.966431, 44.675489 ], [ -69.960938, 44.678419 ], [ -69.960938, 44.681348 ], [ -69.996643, 44.678419 ], [ -70.014496, 44.758436 ], [ -70.000763, 44.759411 ], [ -70.004883, 44.774036 ], [ -70.002136, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.810096 ], [ -70.028229, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.831526 ], [ -70.033722, 44.864630 ], [ -70.131226, 44.851001 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.942445 ], [ -70.110626, 44.948277 ], [ -70.122986, 45.000738 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.144273 ], [ -70.425110, 45.166547 ], [ -69.675293, 45.166547 ], [ -69.656067, 45.100669 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.675293, 45.166547 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.282532, 44.809122 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268799, 44.722344 ], [ -69.327850, 44.714538 ], [ -69.344330, 44.750634 ], [ -69.348450, 44.749659 ], [ -69.360809, 44.751610 ], [ -69.371796, 44.755511 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.747709 ], [ -69.395142, 44.748684 ], [ -69.397888, 44.747709 ], [ -69.395142, 44.733077 ], [ -69.406128, 44.727223 ], [ -69.415741, 44.719417 ], [ -69.418488, 44.709658 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708682 ], [ -69.473419, 44.709658 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.634094, 44.700874 ], [ -69.629974, 44.673536 ], [ -69.621735, 44.665723 ], [ -69.618988, 44.657909 ], [ -69.614868, 44.654978 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.580536, 44.621754 ], [ -69.594269, 44.603180 ], [ -69.590149, 44.590467 ], [ -69.591522, 44.584599 ], [ -69.606628, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.745331, 44.603180 ], [ -69.775543, 44.609046 ], [ -69.787903, 44.594379 ], [ -69.793396, 44.577752 ], [ -69.796143, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.816742, 44.584599 ], [ -69.819489, 44.588511 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.601224 ], [ -69.820862, 44.603180 ], [ -69.823608, 44.605135 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.607090 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.966431, 44.663769 ], [ -69.965057, 44.660839 ], [ -69.960938, 44.660839 ], [ -69.959564, 44.662793 ], [ -69.959564, 44.671583 ], [ -69.966431, 44.675489 ], [ -69.960938, 44.678419 ], [ -69.960938, 44.681348 ], [ -69.996643, 44.678419 ], [ -70.014496, 44.758436 ], [ -70.000763, 44.759411 ], [ -70.004883, 44.774036 ], [ -70.002136, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.810096 ], [ -70.028229, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.831526 ], [ -70.033722, 44.864630 ], [ -70.131226, 44.851001 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.942445 ], [ -70.110626, 44.948277 ], [ -70.122986, 45.000738 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.144273 ], [ -70.425110, 45.166547 ], [ -69.675293, 45.166547 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.743958, 45.760817 ], [ -69.741211, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.727478, 45.762733 ], [ -69.724731, 45.766565 ], [ -69.726105, 45.772313 ], [ -69.728851, 45.775186 ], [ -69.737091, 45.779975 ], [ -69.738464, 45.782848 ], [ -69.723358, 45.783806 ], [ -69.719238, 45.798170 ], [ -69.709625, 45.811572 ], [ -69.713745, 45.824014 ], [ -69.719238, 45.829756 ], [ -69.720612, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.720612, 45.835497 ], [ -69.715118, 45.832627 ], [ -69.712372, 45.832627 ], [ -69.705505, 45.846978 ], [ -69.708252, 45.846978 ], [ -69.709625, 45.850804 ], [ -69.706879, 45.854630 ], [ -69.712372, 45.856543 ], [ -69.712372, 45.861325 ], [ -69.717865, 45.866106 ], [ -69.726105, 45.866106 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.876624 ], [ -69.734344, 45.877581 ], [ -69.734344, 45.879493 ], [ -69.732971, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.716492, 45.884273 ], [ -69.713745, 45.883317 ], [ -69.709625, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702759, 45.879493 ], [ -69.701385, 45.872800 ], [ -69.697266, 45.868019 ], [ -69.697266, 45.865150 ], [ -69.693146, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.690399, 45.858456 ], [ -69.690399, 45.854630 ], [ -69.687653, 45.854630 ], [ -69.686279, 45.851760 ], [ -69.683533, 45.851760 ], [ -69.678040, 45.853673 ], [ -69.676666, 45.853673 ], [ -69.676666, 45.851760 ], [ -69.675293, 45.852717 ], [ -69.672546, 45.859412 ], [ -69.675293, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.656067, 45.862281 ], [ -69.654694, 45.864194 ], [ -69.647827, 45.863238 ], [ -69.684906, 45.984558 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.720612, 46.394306 ], [ -69.721985, 46.574911 ], [ -68.822479, 46.573023 ], [ -68.822479, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.212150 ], [ -68.827972, 45.685077 ], [ -68.959808, 45.663007 ], [ -68.951569, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.965302, 45.513084 ], [ -68.858185, 45.527517 ], [ -68.829346, 45.434117 ], [ -68.777161, 45.241053 ], [ -68.881531, 45.225579 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.618988, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.687653, 45.208166 ], [ -69.684906, 45.213004 ], [ -69.709625, 45.291313 ], [ -69.701385, 45.293245 ], [ -69.781036, 45.542908 ], [ -69.774170, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.555410 ], [ -69.761810, 45.554449 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728851, 45.570794 ], [ -69.728851, 45.572716 ], [ -69.724731, 45.582329 ], [ -69.715118, 45.586173 ], [ -69.713745, 45.595783 ], [ -69.717865, 45.597705 ], [ -69.721985, 45.603470 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.612116 ], [ -69.713745, 45.614037 ], [ -69.709625, 45.614037 ], [ -69.709625, 45.616919 ], [ -69.704132, 45.620761 ], [ -69.702759, 45.628445 ], [ -69.708252, 45.633246 ], [ -69.708252, 45.638047 ], [ -69.719238, 45.639968 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.647648 ], [ -69.715118, 45.650528 ], [ -69.712372, 45.650528 ], [ -69.705505, 45.644768 ], [ -69.701385, 45.644768 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.693146, 45.645728 ], [ -69.701385, 45.652448 ], [ -69.723358, 45.658208 ], [ -69.726105, 45.657248 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.737091, 45.651488 ], [ -69.743958, 45.652448 ], [ -69.745331, 45.653408 ], [ -69.739838, 45.657248 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.739838, 45.667805 ], [ -69.739838, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.757690, 45.680280 ], [ -69.760437, 45.683158 ], [ -69.764557, 45.683158 ], [ -69.774170, 45.686036 ], [ -69.779663, 45.690833 ], [ -69.783783, 45.690833 ], [ -69.786530, 45.692751 ], [ -69.786530, 45.700425 ], [ -69.790649, 45.705220 ], [ -69.790649, 45.710974 ], [ -69.798889, 45.715769 ], [ -69.803009, 45.715769 ], [ -69.809875, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.804382, 45.720563 ], [ -69.803009, 45.724398 ], [ -69.800262, 45.723439 ], [ -69.798889, 45.725356 ], [ -69.793396, 45.726315 ], [ -69.792023, 45.729191 ], [ -69.794769, 45.729191 ], [ -69.800262, 45.733984 ], [ -69.809875, 45.733984 ], [ -69.812622, 45.735901 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.737818 ], [ -69.820862, 45.739735 ], [ -69.824982, 45.742610 ], [ -69.827728, 45.737818 ], [ -69.829102, 45.739735 ], [ -69.833221, 45.738777 ], [ -69.827728, 45.740693 ], [ -69.826355, 45.743569 ], [ -69.818115, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.797516, 45.746444 ], [ -69.789276, 45.747402 ], [ -69.789276, 45.750277 ], [ -69.793396, 45.751235 ], [ -69.790649, 45.756026 ], [ -69.794769, 45.757942 ], [ -69.792023, 45.758901 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.762733 ], [ -69.790649, 45.764649 ], [ -69.790649, 45.768481 ], [ -69.782410, 45.770397 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.790649, 45.778060 ], [ -69.785156, 45.782848 ], [ -69.787903, 45.783806 ], [ -69.783783, 45.785721 ], [ -69.782410, 45.781891 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.782410, 45.776144 ], [ -69.775543, 45.765607 ], [ -69.768677, 45.763691 ], [ -69.770050, 45.761775 ], [ -69.753571, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.748077, 45.759859 ], [ -69.743958, 45.760817 ] ] ], [ [ [ -69.809875, 45.722480 ], [ -69.815369, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.809875, 45.722480 ] ] ], [ [ [ -69.789276, 45.782848 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796143, 45.785721 ], [ -69.794769, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.782848 ] ] ], [ [ [ -69.738464, 45.883317 ], [ -69.734344, 45.879493 ], [ -69.738464, 45.880449 ], [ -69.738464, 45.883317 ] ] ], [ [ [ -69.789276, 45.784764 ], [ -69.787903, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.784764 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.734344, 45.879493 ], [ -69.732971, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.716492, 45.884273 ], [ -69.713745, 45.883317 ], [ -69.709625, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702759, 45.879493 ], [ -69.701385, 45.872800 ], [ -69.697266, 45.868019 ], [ -69.697266, 45.865150 ], [ -69.693146, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.690399, 45.858456 ], [ -69.690399, 45.854630 ], [ -69.687653, 45.854630 ], [ -69.686279, 45.851760 ], [ -69.683533, 45.851760 ], [ -69.678040, 45.853673 ], [ -69.676666, 45.853673 ], [ -69.676666, 45.851760 ], [ -69.675293, 45.852717 ], [ -69.672546, 45.859412 ], [ -69.675293, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.656067, 45.862281 ], [ -69.654694, 45.864194 ], [ -69.647827, 45.863238 ], [ -69.684906, 45.984558 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.720612, 46.394306 ], [ -69.721985, 46.574911 ], [ -68.822479, 46.573023 ], [ -68.822479, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.212150 ], [ -68.827972, 45.685077 ], [ -68.959808, 45.663007 ], [ -68.951569, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.965302, 45.513084 ], [ -68.858185, 45.527517 ], [ -68.829346, 45.434117 ], [ -68.777161, 45.241053 ], [ -68.881531, 45.225579 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.618988, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.687653, 45.208166 ], [ -69.684906, 45.213004 ], [ -69.709625, 45.291313 ], [ -69.701385, 45.293245 ], [ -69.781036, 45.542908 ], [ -69.774170, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.555410 ], [ -69.761810, 45.554449 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728851, 45.570794 ], [ -69.728851, 45.572716 ], [ -69.724731, 45.582329 ], [ -69.715118, 45.586173 ], [ -69.713745, 45.595783 ], [ -69.717865, 45.597705 ], [ -69.721985, 45.603470 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.612116 ], [ -69.713745, 45.614037 ], [ -69.709625, 45.614037 ], [ -69.709625, 45.616919 ], [ -69.704132, 45.620761 ], [ -69.702759, 45.628445 ], [ -69.708252, 45.633246 ], [ -69.708252, 45.638047 ], [ -69.719238, 45.639968 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.647648 ], [ -69.715118, 45.650528 ], [ -69.712372, 45.650528 ], [ -69.705505, 45.644768 ], [ -69.701385, 45.644768 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.693146, 45.645728 ], [ -69.701385, 45.652448 ], [ -69.723358, 45.658208 ], [ -69.726105, 45.657248 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.737091, 45.651488 ], [ -69.743958, 45.652448 ], [ -69.745331, 45.653408 ], [ -69.739838, 45.657248 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.739838, 45.667805 ], [ -69.739838, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.757690, 45.680280 ], [ -69.760437, 45.683158 ], [ -69.764557, 45.683158 ], [ -69.774170, 45.686036 ], [ -69.779663, 45.690833 ], [ -69.783783, 45.690833 ], [ -69.786530, 45.692751 ], [ -69.786530, 45.700425 ], [ -69.790649, 45.705220 ], [ -69.790649, 45.710974 ], [ -69.798889, 45.715769 ], [ -69.803009, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.808502, 45.723439 ], [ -69.804382, 45.720563 ], [ -69.803009, 45.724398 ], [ -69.800262, 45.723439 ], [ -69.798889, 45.725356 ], [ -69.793396, 45.726315 ], [ -69.792023, 45.729191 ], [ -69.794769, 45.729191 ], [ -69.800262, 45.733984 ], [ -69.809875, 45.733984 ], [ -69.812622, 45.735901 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.737818 ], [ -69.820862, 45.739735 ], [ -69.824982, 45.742610 ], [ -69.827728, 45.737818 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.740693 ], [ -69.826355, 45.743569 ], [ -69.818115, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.797516, 45.746444 ], [ -69.789276, 45.747402 ], [ -69.789276, 45.750277 ], [ -69.793396, 45.751235 ], [ -69.790649, 45.756026 ], [ -69.794769, 45.757942 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.762733 ], [ -69.790649, 45.764649 ], [ -69.790649, 45.768481 ], [ -69.782410, 45.770397 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.790649, 45.778060 ], [ -69.785156, 45.782848 ], [ -69.787903, 45.783806 ], [ -69.783783, 45.785721 ], [ -69.782410, 45.781891 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.782410, 45.776144 ], [ -69.775543, 45.765607 ], [ -69.768677, 45.763691 ], [ -69.770050, 45.761775 ], [ -69.753571, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.748077, 45.759859 ], [ -69.743958, 45.760817 ], [ -69.741211, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.727478, 45.762733 ], [ -69.724731, 45.766565 ], [ -69.726105, 45.772313 ], [ -69.728851, 45.775186 ], [ -69.737091, 45.779975 ], [ -69.738464, 45.782848 ], [ -69.723358, 45.783806 ], [ -69.719238, 45.798170 ], [ -69.709625, 45.811572 ], [ -69.713745, 45.824014 ], [ -69.719238, 45.829756 ], [ -69.720612, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.720612, 45.835497 ], [ -69.715118, 45.832627 ], [ -69.712372, 45.832627 ], [ -69.705505, 45.846978 ], [ -69.708252, 45.846978 ], [ -69.709625, 45.850804 ], [ -69.706879, 45.854630 ], [ -69.712372, 45.856543 ], [ -69.712372, 45.861325 ], [ -69.717865, 45.866106 ], [ -69.726105, 45.866106 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.876624 ], [ -69.734344, 45.877581 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.789276, 45.782848 ], [ -69.794769, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.789276, 45.784764 ], [ -69.789276, 45.782848 ] ] ], [ [ [ -69.797516, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ] ] ], [ [ [ -69.794769, 45.783806 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796143, 45.785721 ], [ -69.794769, 45.783806 ] ] ], [ [ [ -69.734344, 45.879493 ], [ -69.738464, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.734344, 45.879493 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.338837, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.338837, 45.011419 ] ] ], [ [ [ -69.770050, 45.761775 ], [ -69.768677, 45.763691 ], [ -69.775543, 45.765607 ], [ -69.782410, 45.776144 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.782410, 45.781891 ], [ -69.783783, 45.785721 ], [ -69.787903, 45.783806 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.778060 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.785156, 45.775186 ], [ -69.785156, 45.773270 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.770397 ], [ -69.790649, 45.768481 ], [ -69.790649, 45.764649 ], [ -69.793396, 45.762733 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758901 ], [ -69.794769, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.751235 ], [ -69.789276, 45.750277 ], [ -69.789276, 45.747402 ], [ -69.797516, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.812622, 45.746444 ], [ -69.812622, 45.747402 ], [ -69.818115, 45.747402 ], [ -69.826355, 45.743569 ], [ -69.827728, 45.740693 ], [ -69.833221, 45.738777 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.737818 ], [ -69.824982, 45.742610 ], [ -69.820862, 45.739735 ], [ -69.812622, 45.737818 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733984 ], [ -69.800262, 45.733984 ], [ -69.794769, 45.729191 ], [ -69.792023, 45.729191 ], [ -69.793396, 45.726315 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.723439 ], [ -69.803009, 45.724398 ], [ -69.804382, 45.720563 ], [ -69.808502, 45.723439 ], [ -69.809875, 45.722480 ], [ -69.803009, 45.715769 ], [ -69.798889, 45.715769 ], [ -69.790649, 45.710974 ], [ -69.790649, 45.705220 ], [ -69.786530, 45.700425 ], [ -69.786530, 45.692751 ], [ -69.783783, 45.690833 ], [ -69.779663, 45.690833 ], [ -69.774170, 45.686036 ], [ -69.764557, 45.683158 ], [ -69.760437, 45.683158 ], [ -69.757690, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.739838, 45.680280 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.675482 ], [ -69.739838, 45.667805 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.739838, 45.657248 ], [ -69.745331, 45.653408 ], [ -69.743958, 45.652448 ], [ -69.737091, 45.651488 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.728851, 45.657248 ], [ -69.723358, 45.658208 ], [ -69.701385, 45.652448 ], [ -69.693146, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.697266, 45.640928 ], [ -69.701385, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.712372, 45.650528 ], [ -69.715118, 45.650528 ], [ -69.713745, 45.647648 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.639968 ], [ -69.709625, 45.638047 ], [ -69.708252, 45.633246 ], [ -69.702759, 45.628445 ], [ -69.704132, 45.620761 ], [ -69.709625, 45.616919 ], [ -69.709625, 45.614037 ], [ -69.713745, 45.614037 ], [ -69.715118, 45.612116 ], [ -69.717865, 45.612116 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.608274 ], [ -69.721985, 45.603470 ], [ -69.717865, 45.597705 ], [ -69.713745, 45.595783 ], [ -69.715118, 45.586173 ], [ -69.724731, 45.582329 ], [ -69.728851, 45.572716 ], [ -69.728851, 45.570794 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.761810, 45.554449 ], [ -69.774170, 45.555410 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.545793 ], [ -69.781036, 45.542908 ], [ -69.732971, 45.389771 ], [ -69.701385, 45.296143 ], [ -69.701385, 45.293245 ], [ -69.709625, 45.292279 ], [ -69.705505, 45.276819 ], [ -69.684906, 45.213971 ], [ -69.687653, 45.208166 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -70.127106, 45.011419 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.473175, 45.352145 ], [ -70.519867, 45.513084 ], [ -70.506134, 45.514046 ], [ -70.554199, 45.668765 ], [ -70.547333, 45.666846 ], [ -70.543213, 45.666846 ], [ -70.533600, 45.671644 ], [ -70.526733, 45.666846 ], [ -70.519867, 45.669725 ], [ -70.519867, 45.671644 ], [ -70.511627, 45.679320 ], [ -70.503387, 45.682199 ], [ -70.503387, 45.684117 ], [ -70.497894, 45.686036 ], [ -70.493774, 45.689874 ], [ -70.480042, 45.695629 ], [ -70.470428, 45.702343 ], [ -70.471802, 45.703302 ], [ -70.466309, 45.707138 ], [ -70.462189, 45.706179 ], [ -70.456696, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.445709, 45.704261 ], [ -70.441589, 45.706179 ], [ -70.440216, 45.704261 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.430603, 45.710974 ], [ -70.418243, 45.713851 ], [ -70.414124, 45.716728 ], [ -70.408630, 45.717686 ], [ -70.401764, 45.720563 ], [ -70.397644, 45.729191 ], [ -70.390778, 45.729191 ], [ -70.385284, 45.734943 ], [ -70.386658, 45.734943 ], [ -70.386658, 45.736860 ], [ -70.390778, 45.736860 ], [ -70.390778, 45.737818 ], [ -70.393524, 45.738777 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.748360 ], [ -70.389404, 45.751235 ], [ -70.396271, 45.756984 ], [ -70.401764, 45.757942 ], [ -70.407257, 45.762733 ], [ -70.405884, 45.770397 ], [ -70.408630, 45.774228 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.785721 ], [ -70.415497, 45.790509 ], [ -70.418243, 45.796255 ], [ -70.407257, 45.798170 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.808700 ], [ -70.389404, 45.814444 ], [ -70.389404, 45.819229 ], [ -70.377045, 45.827842 ], [ -70.372925, 45.828799 ], [ -70.370178, 45.831670 ], [ -70.372925, 45.834540 ], [ -70.371552, 45.835497 ], [ -70.360565, 45.835497 ], [ -70.356445, 45.838368 ], [ -70.357819, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.349579, 45.847934 ], [ -70.342712, 45.852717 ], [ -70.319366, 45.856543 ], [ -70.308380, 45.859412 ], [ -70.304260, 45.864194 ], [ -70.298767, 45.865150 ], [ -70.285034, 45.871844 ], [ -70.274048, 45.880449 ], [ -70.274048, 45.883317 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891920 ], [ -70.265808, 45.894787 ], [ -70.254822, 45.902433 ], [ -70.253448, 45.908167 ], [ -70.260315, 45.910078 ], [ -70.257568, 45.918677 ], [ -70.261688, 45.920587 ], [ -70.263062, 45.920587 ], [ -70.264435, 45.924409 ], [ -70.252075, 45.933960 ], [ -70.239716, 45.939691 ], [ -70.239716, 45.944466 ], [ -70.245209, 45.945421 ], [ -70.242462, 45.947330 ], [ -70.249329, 45.950195 ], [ -70.252075, 45.955924 ], [ -70.256195, 45.953059 ], [ -70.261688, 45.953059 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258942, 45.959742 ], [ -70.261688, 45.960697 ], [ -70.267181, 45.964515 ], [ -70.274048, 45.961652 ], [ -70.275421, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.274048, 45.964515 ], [ -70.275421, 45.967379 ], [ -70.283661, 45.964515 ], [ -70.287781, 45.965470 ], [ -70.289154, 45.963561 ], [ -70.298767, 45.963561 ], [ -70.307007, 45.965470 ], [ -70.313873, 45.962606 ], [ -70.316620, 45.963561 ], [ -70.312500, 45.966425 ], [ -70.313873, 45.970243 ], [ -70.311127, 45.973106 ], [ -70.312500, 45.975015 ], [ -70.308380, 45.978832 ], [ -70.309753, 45.980741 ], [ -70.308380, 45.982649 ], [ -70.300140, 45.986466 ], [ -70.296021, 45.986466 ], [ -70.285034, 45.996008 ], [ -70.289154, 45.994099 ], [ -70.293274, 45.997916 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.307007, 46.004593 ], [ -70.307007, 46.011270 ], [ -70.312500, 46.012224 ], [ -70.311127, 46.016039 ], [ -70.319366, 46.019853 ], [ -70.302887, 46.027482 ], [ -70.298767, 46.031296 ], [ -70.302887, 46.032249 ], [ -70.300140, 46.038923 ], [ -70.282288, 46.051314 ], [ -70.279541, 46.057032 ], [ -70.279541, 46.060844 ], [ -70.283661, 46.060844 ], [ -70.285034, 46.062750 ], [ -70.293274, 46.060844 ], [ -70.302887, 46.060844 ], [ -70.304260, 46.062750 ], [ -70.307007, 46.061797 ], [ -70.309753, 46.062750 ], [ -70.311127, 46.064656 ], [ -70.302887, 46.070372 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.304260, 46.077041 ], [ -70.300140, 46.078947 ], [ -70.302887, 46.080852 ], [ -70.302887, 46.082757 ], [ -70.291901, 46.087519 ], [ -70.291901, 46.094186 ], [ -70.285034, 46.097995 ], [ -70.286407, 46.100852 ], [ -70.279541, 46.099900 ], [ -70.274048, 46.102757 ], [ -70.260315, 46.101804 ], [ -70.257568, 46.099900 ], [ -70.253448, 46.100852 ], [ -70.253448, 46.106565 ], [ -70.256195, 46.109422 ], [ -70.254822, 46.114182 ], [ -70.253448, 46.115134 ], [ -70.247955, 46.126556 ], [ -70.243835, 46.129412 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236969, 46.145589 ], [ -70.241089, 46.149394 ], [ -70.241089, 46.151297 ], [ -70.243835, 46.150346 ], [ -70.245209, 46.152248 ], [ -70.249329, 46.152248 ], [ -70.247955, 46.154151 ], [ -70.250702, 46.155102 ], [ -70.250702, 46.156054 ], [ -70.253448, 46.158907 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265808, 46.165566 ], [ -70.267181, 46.169370 ], [ -70.279541, 46.176027 ], [ -70.286407, 46.183634 ], [ -70.286407, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.290527, 46.188388 ], [ -70.293274, 46.192190 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.195993 ], [ -70.286407, 46.195993 ], [ -70.278168, 46.204547 ], [ -70.276794, 46.208349 ], [ -70.271301, 46.211200 ], [ -70.271301, 46.214051 ], [ -70.275421, 46.215001 ], [ -70.274048, 46.216902 ], [ -70.271301, 46.216902 ], [ -70.268555, 46.219752 ], [ -70.265808, 46.223553 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236853 ], [ -70.260315, 46.238752 ], [ -70.254822, 46.246351 ], [ -70.256195, 46.246351 ], [ -70.252075, 46.249200 ], [ -70.252075, 46.252998 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261544 ], [ -70.249329, 46.267240 ], [ -70.243835, 46.273885 ], [ -70.241089, 46.273885 ], [ -70.241089, 46.279580 ], [ -70.232849, 46.285275 ], [ -70.232849, 46.291918 ], [ -70.217743, 46.294764 ], [ -70.217743, 46.295713 ], [ -70.216370, 46.294764 ], [ -70.212250, 46.299509 ], [ -70.206757, 46.300457 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.315636 ], [ -70.208130, 46.319430 ], [ -70.206757, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.195770, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.182037, 46.352615 ], [ -70.182037, 46.354511 ], [ -70.173798, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.162811, 46.361145 ], [ -70.158691, 46.360198 ], [ -70.157318, 46.362093 ], [ -70.149078, 46.359250 ], [ -70.144958, 46.363041 ], [ -70.140839, 46.363041 ], [ -70.142212, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.129852, 46.369674 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.380096 ], [ -70.117493, 46.385781 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.385781 ], [ -70.112000, 46.386728 ], [ -70.113373, 46.388622 ], [ -70.107880, 46.388622 ], [ -70.110626, 46.391464 ], [ -70.107880, 46.391464 ], [ -70.107880, 46.393358 ], [ -70.102386, 46.397147 ], [ -70.101013, 46.401882 ], [ -70.099640, 46.400935 ], [ -70.101013, 46.403776 ], [ -70.098267, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.096893, 46.406617 ], [ -70.096893, 46.407564 ], [ -70.095520, 46.408511 ], [ -70.096893, 46.410405 ], [ -70.092773, 46.409458 ], [ -70.090027, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.411352 ], [ -70.077667, 46.410405 ], [ -70.057068, 46.416086 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.574911 ], [ -69.720612, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684906, 45.984558 ], [ -69.647827, 45.863238 ], [ -69.654694, 45.864194 ], [ -69.656067, 45.862281 ], [ -69.657440, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.675293, 45.862281 ], [ -69.672546, 45.860369 ], [ -69.675293, 45.852717 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853673 ], [ -69.678040, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.687653, 45.854630 ], [ -69.690399, 45.854630 ], [ -69.690399, 45.858456 ], [ -69.694519, 45.862281 ], [ -69.693146, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.697266, 45.868019 ], [ -69.701385, 45.872800 ], [ -69.702759, 45.879493 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.709625, 45.886185 ], [ -69.713745, 45.883317 ], [ -69.716492, 45.884273 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.734344, 45.879493 ], [ -69.734344, 45.877581 ], [ -69.727478, 45.876624 ], [ -69.724731, 45.874712 ], [ -69.726105, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.712372, 45.861325 ], [ -69.712372, 45.856543 ], [ -69.706879, 45.854630 ], [ -69.709625, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.705505, 45.846978 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832627 ], [ -69.720612, 45.835497 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.720612, 45.834540 ], [ -69.719238, 45.829756 ], [ -69.713745, 45.824014 ], [ -69.709625, 45.811572 ], [ -69.719238, 45.798170 ], [ -69.723358, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.779975 ], [ -69.728851, 45.775186 ], [ -69.726105, 45.772313 ], [ -69.724731, 45.766565 ], [ -69.727478, 45.762733 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.756026 ], [ -69.743958, 45.760817 ], [ -69.748077, 45.759859 ], [ -69.750824, 45.763691 ], [ -69.753571, 45.761775 ], [ -69.770050, 45.761775 ] ], [ [ -69.787903, 45.783806 ], [ -69.789276, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.787903, 45.783806 ] ], [ [ -69.815369, 45.721522 ], [ -69.809875, 45.722480 ], [ -69.809875, 45.723439 ], [ -69.815369, 45.721522 ] ], [ [ -69.738464, 45.883317 ], [ -69.738464, 45.880449 ], [ -69.734344, 45.879493 ], [ -69.738464, 45.883317 ] ], [ [ -69.792023, 45.785721 ], [ -69.794769, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.792023, 45.785721 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.734344, 45.879493 ], [ -69.734344, 45.877581 ], [ -69.727478, 45.876624 ], [ -69.724731, 45.874712 ], [ -69.726105, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.712372, 45.861325 ], [ -69.712372, 45.856543 ], [ -69.706879, 45.854630 ], [ -69.709625, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.705505, 45.846978 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832627 ], [ -69.720612, 45.835497 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.720612, 45.834540 ], [ -69.719238, 45.829756 ], [ -69.713745, 45.824014 ], [ -69.709625, 45.811572 ], [ -69.719238, 45.798170 ], [ -69.723358, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.779975 ], [ -69.728851, 45.775186 ], [ -69.726105, 45.772313 ], [ -69.724731, 45.766565 ], [ -69.727478, 45.762733 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.756026 ], [ -69.743958, 45.760817 ], [ -69.748077, 45.759859 ], [ -69.750824, 45.763691 ], [ -69.753571, 45.761775 ], [ -69.770050, 45.761775 ], [ -69.768677, 45.763691 ], [ -69.775543, 45.765607 ], [ -69.782410, 45.776144 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.782410, 45.781891 ], [ -69.783783, 45.785721 ], [ -69.787903, 45.783806 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.778060 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.785156, 45.775186 ], [ -69.785156, 45.773270 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.770397 ], [ -69.790649, 45.768481 ], [ -69.790649, 45.764649 ], [ -69.793396, 45.762733 ], [ -69.793396, 45.758901 ], [ -69.794769, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.751235 ], [ -69.789276, 45.750277 ], [ -69.789276, 45.747402 ], [ -69.797516, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.812622, 45.746444 ], [ -69.812622, 45.747402 ], [ -69.818115, 45.747402 ], [ -69.826355, 45.743569 ], [ -69.827728, 45.740693 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.737818 ], [ -69.824982, 45.742610 ], [ -69.820862, 45.739735 ], [ -69.812622, 45.737818 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733984 ], [ -69.800262, 45.733984 ], [ -69.794769, 45.729191 ], [ -69.792023, 45.729191 ], [ -69.793396, 45.726315 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.723439 ], [ -69.803009, 45.724398 ], [ -69.804382, 45.720563 ], [ -69.808502, 45.723439 ], [ -69.809875, 45.723439 ], [ -69.803009, 45.715769 ], [ -69.798889, 45.715769 ], [ -69.790649, 45.710974 ], [ -69.790649, 45.705220 ], [ -69.786530, 45.700425 ], [ -69.786530, 45.692751 ], [ -69.783783, 45.690833 ], [ -69.779663, 45.690833 ], [ -69.774170, 45.686036 ], [ -69.764557, 45.683158 ], [ -69.760437, 45.683158 ], [ -69.757690, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.739838, 45.680280 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.675482 ], [ -69.739838, 45.667805 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.739838, 45.657248 ], [ -69.745331, 45.653408 ], [ -69.743958, 45.652448 ], [ -69.737091, 45.651488 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.728851, 45.657248 ], [ -69.723358, 45.658208 ], [ -69.701385, 45.652448 ], [ -69.693146, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.697266, 45.640928 ], [ -69.701385, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.712372, 45.650528 ], [ -69.715118, 45.650528 ], [ -69.713745, 45.647648 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.639968 ], [ -69.709625, 45.638047 ], [ -69.708252, 45.633246 ], [ -69.702759, 45.628445 ], [ -69.704132, 45.620761 ], [ -69.709625, 45.616919 ], [ -69.709625, 45.614037 ], [ -69.713745, 45.614037 ], [ -69.715118, 45.612116 ], [ -69.717865, 45.612116 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.608274 ], [ -69.721985, 45.603470 ], [ -69.717865, 45.597705 ], [ -69.713745, 45.595783 ], [ -69.715118, 45.586173 ], [ -69.724731, 45.582329 ], [ -69.728851, 45.572716 ], [ -69.728851, 45.570794 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.761810, 45.554449 ], [ -69.774170, 45.555410 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.545793 ], [ -69.781036, 45.542908 ], [ -69.732971, 45.389771 ], [ -69.701385, 45.296143 ], [ -69.701385, 45.293245 ], [ -69.709625, 45.292279 ], [ -69.705505, 45.276819 ], [ -69.684906, 45.213971 ], [ -69.687653, 45.208166 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -70.127106, 45.011419 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.473175, 45.352145 ], [ -70.519867, 45.513084 ], [ -70.506134, 45.514046 ], [ -70.554199, 45.668765 ], [ -70.547333, 45.666846 ], [ -70.543213, 45.666846 ], [ -70.533600, 45.671644 ], [ -70.526733, 45.666846 ], [ -70.519867, 45.669725 ], [ -70.519867, 45.671644 ], [ -70.511627, 45.679320 ], [ -70.503387, 45.682199 ], [ -70.503387, 45.684117 ], [ -70.497894, 45.686036 ], [ -70.493774, 45.689874 ], [ -70.480042, 45.695629 ], [ -70.470428, 45.702343 ], [ -70.471802, 45.703302 ], [ -70.466309, 45.707138 ], [ -70.462189, 45.706179 ], [ -70.456696, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.445709, 45.704261 ], [ -70.441589, 45.706179 ], [ -70.440216, 45.704261 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.430603, 45.710974 ], [ -70.418243, 45.713851 ], [ -70.414124, 45.716728 ], [ -70.408630, 45.717686 ], [ -70.401764, 45.720563 ], [ -70.397644, 45.729191 ], [ -70.390778, 45.729191 ], [ -70.385284, 45.734943 ], [ -70.386658, 45.734943 ], [ -70.386658, 45.736860 ], [ -70.390778, 45.736860 ], [ -70.390778, 45.737818 ], [ -70.393524, 45.738777 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.748360 ], [ -70.389404, 45.751235 ], [ -70.396271, 45.756984 ], [ -70.401764, 45.757942 ], [ -70.407257, 45.762733 ], [ -70.405884, 45.770397 ], [ -70.408630, 45.774228 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.785721 ], [ -70.415497, 45.790509 ], [ -70.418243, 45.796255 ], [ -70.407257, 45.798170 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.808700 ], [ -70.389404, 45.814444 ], [ -70.389404, 45.819229 ], [ -70.377045, 45.827842 ], [ -70.372925, 45.828799 ], [ -70.370178, 45.831670 ], [ -70.372925, 45.834540 ], [ -70.371552, 45.835497 ], [ -70.360565, 45.835497 ], [ -70.356445, 45.838368 ], [ -70.357819, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.349579, 45.847934 ], [ -70.342712, 45.852717 ], [ -70.319366, 45.856543 ], [ -70.308380, 45.859412 ], [ -70.304260, 45.864194 ], [ -70.298767, 45.865150 ], [ -70.285034, 45.871844 ], [ -70.274048, 45.880449 ], [ -70.274048, 45.883317 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891920 ], [ -70.265808, 45.894787 ], [ -70.254822, 45.902433 ], [ -70.253448, 45.908167 ], [ -70.260315, 45.910078 ], [ -70.257568, 45.918677 ], [ -70.261688, 45.920587 ], [ -70.263062, 45.920587 ], [ -70.264435, 45.924409 ], [ -70.252075, 45.933960 ], [ -70.239716, 45.939691 ], [ -70.239716, 45.944466 ], [ -70.245209, 45.945421 ], [ -70.242462, 45.947330 ], [ -70.249329, 45.950195 ], [ -70.252075, 45.955924 ], [ -70.256195, 45.953059 ], [ -70.261688, 45.953059 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258942, 45.959742 ], [ -70.261688, 45.960697 ], [ -70.267181, 45.964515 ], [ -70.274048, 45.961652 ], [ -70.275421, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.274048, 45.964515 ], [ -70.275421, 45.967379 ], [ -70.283661, 45.964515 ], [ -70.287781, 45.965470 ], [ -70.289154, 45.963561 ], [ -70.298767, 45.963561 ], [ -70.307007, 45.965470 ], [ -70.313873, 45.962606 ], [ -70.316620, 45.963561 ], [ -70.312500, 45.966425 ], [ -70.313873, 45.970243 ], [ -70.311127, 45.973106 ], [ -70.312500, 45.975015 ], [ -70.308380, 45.978832 ], [ -70.309753, 45.980741 ], [ -70.308380, 45.982649 ], [ -70.300140, 45.986466 ], [ -70.296021, 45.986466 ], [ -70.285034, 45.996008 ], [ -70.289154, 45.994099 ], [ -70.293274, 45.997916 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.307007, 46.004593 ], [ -70.307007, 46.011270 ], [ -70.312500, 46.012224 ], [ -70.311127, 46.016039 ], [ -70.319366, 46.019853 ], [ -70.302887, 46.027482 ], [ -70.298767, 46.031296 ], [ -70.302887, 46.032249 ], [ -70.300140, 46.038923 ], [ -70.282288, 46.051314 ], [ -70.279541, 46.057032 ], [ -70.279541, 46.060844 ], [ -70.283661, 46.060844 ], [ -70.285034, 46.062750 ], [ -70.293274, 46.060844 ], [ -70.302887, 46.060844 ], [ -70.304260, 46.062750 ], [ -70.307007, 46.061797 ], [ -70.309753, 46.062750 ], [ -70.311127, 46.064656 ], [ -70.302887, 46.070372 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.304260, 46.077041 ], [ -70.300140, 46.078947 ], [ -70.302887, 46.080852 ], [ -70.302887, 46.082757 ], [ -70.291901, 46.087519 ], [ -70.291901, 46.094186 ], [ -70.285034, 46.097995 ], [ -70.286407, 46.100852 ], [ -70.279541, 46.099900 ], [ -70.274048, 46.102757 ], [ -70.260315, 46.101804 ], [ -70.257568, 46.099900 ], [ -70.253448, 46.100852 ], [ -70.253448, 46.106565 ], [ -70.256195, 46.109422 ], [ -70.254822, 46.114182 ], [ -70.253448, 46.115134 ], [ -70.247955, 46.126556 ], [ -70.243835, 46.129412 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236969, 46.145589 ], [ -70.241089, 46.149394 ], [ -70.241089, 46.151297 ], [ -70.243835, 46.150346 ], [ -70.245209, 46.152248 ], [ -70.249329, 46.152248 ], [ -70.247955, 46.154151 ], [ -70.250702, 46.155102 ], [ -70.250702, 46.156054 ], [ -70.253448, 46.158907 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265808, 46.165566 ], [ -70.267181, 46.169370 ], [ -70.279541, 46.176027 ], [ -70.286407, 46.183634 ], [ -70.286407, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.290527, 46.188388 ], [ -70.293274, 46.192190 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.195993 ], [ -70.286407, 46.195993 ], [ -70.278168, 46.204547 ], [ -70.276794, 46.208349 ], [ -70.271301, 46.211200 ], [ -70.271301, 46.214051 ], [ -70.275421, 46.215001 ], [ -70.274048, 46.216902 ], [ -70.271301, 46.216902 ], [ -70.268555, 46.219752 ], [ -70.265808, 46.223553 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236853 ], [ -70.260315, 46.238752 ], [ -70.254822, 46.246351 ], [ -70.252075, 46.249200 ], [ -70.252075, 46.252998 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261544 ], [ -70.249329, 46.267240 ], [ -70.243835, 46.273885 ], [ -70.241089, 46.273885 ], [ -70.241089, 46.279580 ], [ -70.232849, 46.285275 ], [ -70.232849, 46.291918 ], [ -70.217743, 46.294764 ], [ -70.217743, 46.295713 ], [ -70.216370, 46.294764 ], [ -70.212250, 46.299509 ], [ -70.206757, 46.300457 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.315636 ], [ -70.208130, 46.319430 ], [ -70.206757, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.195770, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.182037, 46.352615 ], [ -70.182037, 46.354511 ], [ -70.173798, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.162811, 46.361145 ], [ -70.158691, 46.360198 ], [ -70.157318, 46.362093 ], [ -70.149078, 46.359250 ], [ -70.144958, 46.363041 ], [ -70.140839, 46.363041 ], [ -70.142212, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.129852, 46.369674 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.380096 ], [ -70.117493, 46.385781 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.385781 ], [ -70.112000, 46.386728 ], [ -70.113373, 46.388622 ], [ -70.107880, 46.388622 ], [ -70.110626, 46.391464 ], [ -70.107880, 46.391464 ], [ -70.107880, 46.393358 ], [ -70.102386, 46.397147 ], [ -70.101013, 46.401882 ], [ -70.099640, 46.400935 ], [ -70.101013, 46.403776 ], [ -70.098267, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.096893, 46.406617 ], [ -70.096893, 46.407564 ], [ -70.095520, 46.408511 ], [ -70.096893, 46.410405 ], [ -70.092773, 46.409458 ], [ -70.090027, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.411352 ], [ -70.077667, 46.410405 ], [ -70.057068, 46.416086 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.574911 ], [ -69.720612, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684906, 45.984558 ], [ -69.647827, 45.863238 ], [ -69.654694, 45.864194 ], [ -69.656067, 45.862281 ], [ -69.657440, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.675293, 45.862281 ], [ -69.672546, 45.860369 ], [ -69.675293, 45.852717 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853673 ], [ -69.678040, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.687653, 45.854630 ], [ -69.690399, 45.854630 ], [ -69.690399, 45.858456 ], [ -69.694519, 45.862281 ], [ -69.693146, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.697266, 45.868019 ], [ -69.701385, 45.872800 ], [ -69.702759, 45.879493 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.709625, 45.886185 ], [ -69.713745, 45.883317 ], [ -69.716492, 45.884273 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.734344, 45.879493 ] ], [ [ -69.789276, 45.784764 ], [ -69.792023, 45.785721 ], [ -69.794769, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.789276, 45.784764 ] ], [ [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.797516, 45.783806 ] ], [ [ -69.794769, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.794769, 45.783806 ] ], [ [ -69.734344, 45.879493 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.880449 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.338837, 45.011419 ], [ -69.621735, 45.011419 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 46 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.257568, 45.127805 ], [ -70.257568, 45.115208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.257568, 45.127805 ], [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.257568, 45.127805 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 45 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.306320, 46.025098 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062273 ], [ -70.304260, 46.061797 ], [ -70.307693, 46.061321 ], [ -70.309753, 46.062273 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.261688, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ] ] ], [ [ [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.418930, 45.144273 ], [ -70.473175, 45.351663 ], [ -70.519180, 45.512602 ], [ -70.506134, 45.514046 ], [ -70.534286, 45.602989 ], [ -70.553513, 45.668285 ], [ -70.547333, 45.666366 ], [ -70.545273, 45.667325 ], [ -70.542526, 45.666846 ], [ -70.533600, 45.671164 ], [ -70.527420, 45.666846 ], [ -70.526047, 45.666846 ], [ -70.523987, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.673083 ], [ -70.517807, 45.674523 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506821, 45.681239 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683638 ], [ -70.497208, 45.685557 ], [ -70.497208, 45.686516 ], [ -70.493774, 45.689394 ], [ -70.486908, 45.691792 ], [ -70.485535, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.480042, 45.695149 ], [ -70.475235, 45.698027 ], [ -70.475235, 45.698986 ], [ -70.469742, 45.701864 ], [ -70.471115, 45.703302 ], [ -70.468369, 45.704261 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.449142, 45.704741 ], [ -70.445709, 45.703782 ], [ -70.441589, 45.705700 ], [ -70.439529, 45.704261 ], [ -70.429916, 45.707618 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.425797, 45.708097 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.426483, 45.711933 ], [ -70.423737, 45.711933 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715769 ], [ -70.413437, 45.716728 ], [ -70.407944, 45.717207 ], [ -70.401077, 45.720083 ], [ -70.399704, 45.721042 ], [ -70.401077, 45.722001 ], [ -70.398331, 45.723439 ], [ -70.396957, 45.729191 ], [ -70.395584, 45.729670 ], [ -70.390778, 45.728712 ], [ -70.384598, 45.734463 ], [ -70.385971, 45.734943 ], [ -70.385284, 45.735901 ], [ -70.385971, 45.736380 ], [ -70.390778, 45.736380 ], [ -70.390778, 45.737339 ], [ -70.390091, 45.737818 ], [ -70.392838, 45.738777 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393524, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394897, 45.744527 ], [ -70.393524, 45.744527 ], [ -70.392838, 45.745965 ], [ -70.388718, 45.748360 ], [ -70.388718, 45.750756 ], [ -70.394897, 45.755068 ], [ -70.396271, 45.756984 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762733 ], [ -70.406570, 45.768960 ], [ -70.405884, 45.770397 ], [ -70.407944, 45.773749 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.409317, 45.779975 ], [ -70.408630, 45.780454 ], [ -70.410690, 45.784285 ], [ -70.415497, 45.784764 ], [ -70.416183, 45.785721 ], [ -70.414810, 45.790509 ], [ -70.418243, 45.794340 ], [ -70.417557, 45.795776 ], [ -70.407257, 45.798170 ], [ -70.405197, 45.796733 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.396271, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.396271, 45.802957 ], [ -70.398331, 45.803914 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812529 ], [ -70.390778, 45.813486 ], [ -70.388718, 45.813965 ], [ -70.388718, 45.819229 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828321 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.370178, 45.833105 ], [ -70.372238, 45.834062 ], [ -70.370865, 45.835497 ], [ -70.368805, 45.836454 ], [ -70.367432, 45.835019 ], [ -70.365372, 45.835019 ], [ -70.362625, 45.835976 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.257568, 45.900999 ], [ -70.257568, 45.115208 ] ] ], [ [ [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.909122 ], [ -70.259628, 45.909600 ] ] ], [ [ [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.257568, 45.928707 ], [ -70.257568, 45.918677 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ] ] ], [ [ [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.277481, 46.174600 ], [ -70.280228, 46.176978 ], [ -70.280228, 46.177929 ], [ -70.281601, 46.177929 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191240 ], [ -70.290527, 46.193141 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.257568, 46.160334 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ] ] ], [ [ [ -70.259628, 46.238752 ], [ -70.257568, 46.240177 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.257568, 45.900999 ], [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.418930, 45.144273 ], [ -70.473175, 45.351663 ], [ -70.519180, 45.512602 ], [ -70.506134, 45.514046 ], [ -70.534286, 45.602989 ], [ -70.553513, 45.668285 ], [ -70.547333, 45.666366 ], [ -70.545273, 45.667325 ], [ -70.542526, 45.666846 ], [ -70.533600, 45.671164 ], [ -70.527420, 45.666846 ], [ -70.526047, 45.666846 ], [ -70.523987, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.673083 ], [ -70.517807, 45.674523 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506821, 45.681239 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683638 ], [ -70.497208, 45.685557 ], [ -70.497208, 45.686516 ], [ -70.493774, 45.689394 ], [ -70.486908, 45.691792 ], [ -70.485535, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.480042, 45.695149 ], [ -70.475235, 45.698027 ], [ -70.475235, 45.698986 ], [ -70.469742, 45.701864 ], [ -70.471115, 45.703302 ], [ -70.468369, 45.704261 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.449142, 45.704741 ], [ -70.445709, 45.703782 ], [ -70.441589, 45.705700 ], [ -70.439529, 45.704261 ], [ -70.429916, 45.707618 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.425797, 45.708097 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.426483, 45.711933 ], [ -70.423737, 45.711933 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715769 ], [ -70.413437, 45.716728 ], [ -70.407944, 45.717207 ], [ -70.401077, 45.720083 ], [ -70.399704, 45.721042 ], [ -70.401077, 45.722001 ], [ -70.398331, 45.723439 ], [ -70.396957, 45.729191 ], [ -70.395584, 45.729670 ], [ -70.390778, 45.728712 ], [ -70.384598, 45.734463 ], [ -70.385971, 45.734943 ], [ -70.385284, 45.735901 ], [ -70.385971, 45.736380 ], [ -70.390778, 45.736380 ], [ -70.390778, 45.737339 ], [ -70.390091, 45.737818 ], [ -70.392838, 45.738777 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393524, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394897, 45.744527 ], [ -70.393524, 45.744527 ], [ -70.392838, 45.745965 ], [ -70.388718, 45.748360 ], [ -70.388718, 45.750756 ], [ -70.394897, 45.755068 ], [ -70.396271, 45.756984 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762733 ], [ -70.406570, 45.768960 ], [ -70.405884, 45.770397 ], [ -70.407944, 45.773749 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.409317, 45.779975 ], [ -70.408630, 45.780454 ], [ -70.410690, 45.784285 ], [ -70.415497, 45.784764 ], [ -70.416183, 45.785721 ], [ -70.414810, 45.790509 ], [ -70.418243, 45.794340 ], [ -70.417557, 45.795776 ], [ -70.407257, 45.798170 ], [ -70.405197, 45.796733 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.396271, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.396271, 45.802957 ], [ -70.398331, 45.803914 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812529 ], [ -70.390778, 45.813486 ], [ -70.388718, 45.813965 ], [ -70.388718, 45.819229 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828321 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.370178, 45.833105 ], [ -70.372238, 45.834062 ], [ -70.370865, 45.835497 ], [ -70.368805, 45.836454 ], [ -70.367432, 45.835019 ], [ -70.365372, 45.835019 ], [ -70.362625, 45.835976 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.257568, 45.900999 ] ] ], [ [ [ -70.257568, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.306320, 46.025098 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.307693, 46.061321 ], [ -70.309753, 46.062273 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.261688, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 45.952582 ] ] ], [ [ [ -70.257568, 46.236853 ], [ -70.257568, 46.160334 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.277481, 46.174600 ], [ -70.280228, 46.176978 ], [ -70.280228, 46.177929 ], [ -70.281601, 46.177929 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191240 ], [ -70.290527, 46.193141 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ] ] ], [ [ [ -70.257568, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.909122 ] ] ], [ [ [ -70.257568, 45.928707 ], [ -70.257568, 45.918677 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.257568, 45.928707 ] ] ], [ [ [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.257568, 46.240177 ], [ -70.257568, 46.236853 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 46 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.126663, 45.105031 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025495 ], [ -69.621048, 45.011419 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.662933, 45.127805 ], [ -68.970108, 45.127805 ], [ -69.126663, 45.105031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.970108, 45.127805 ], [ -69.126663, 45.105031 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025495 ], [ -69.621048, 45.011419 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.662933, 45.127805 ], [ -68.970108, 45.127805 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.662933, 45.127805 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.621048, 45.011419 ], [ -69.515991, 45.025495 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500198, 45.054121 ], [ -69.356003, 45.073521 ], [ -69.281845, 44.811070 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268112, 44.721857 ], [ -69.327850, 44.714538 ], [ -69.343643, 44.750147 ], [ -69.348450, 44.749172 ], [ -69.360809, 44.751122 ], [ -69.371796, 44.755023 ], [ -69.383469, 44.754535 ], [ -69.388962, 44.752585 ], [ -69.388962, 44.747709 ], [ -69.390335, 44.747221 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.747221 ], [ -69.398575, 44.742344 ], [ -69.395142, 44.735516 ], [ -69.395142, 44.732589 ], [ -69.397202, 44.731126 ], [ -69.406128, 44.727223 ], [ -69.408875, 44.723808 ], [ -69.415054, 44.718929 ], [ -69.414368, 44.716978 ], [ -69.417801, 44.709658 ], [ -69.417114, 44.701362 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708194 ], [ -69.473419, 44.709170 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.581909, 44.708194 ], [ -69.633408, 44.700386 ], [ -69.633408, 44.691112 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673536 ], [ -69.627914, 44.671094 ], [ -69.621735, 44.665234 ], [ -69.618301, 44.657909 ], [ -69.614868, 44.654490 ], [ -69.605942, 44.651070 ], [ -69.599762, 44.644720 ], [ -69.592209, 44.639834 ], [ -69.586029, 44.632505 ], [ -69.581909, 44.630551 ], [ -69.579163, 44.627130 ], [ -69.580536, 44.621754 ], [ -69.590836, 44.608068 ], [ -69.593582, 44.603180 ], [ -69.592209, 44.595846 ], [ -69.589462, 44.590467 ], [ -69.591522, 44.584110 ], [ -69.593582, 44.582154 ], [ -69.601135, 44.580687 ], [ -69.605942, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.744644, 44.602691 ], [ -69.775543, 44.608557 ], [ -69.777603, 44.607579 ], [ -69.787903, 44.594379 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.818115, 44.582154 ], [ -69.816742, 44.584599 ], [ -69.818115, 44.584599 ], [ -69.817429, 44.586066 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.588022 ], [ -69.818115, 44.589000 ], [ -69.818802, 44.590467 ], [ -69.817429, 44.591934 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.594379 ], [ -69.817429, 44.598290 ], [ -69.818802, 44.598290 ], [ -69.818802, 44.599268 ], [ -69.820862, 44.599757 ], [ -69.820862, 44.600735 ], [ -69.822922, 44.601224 ], [ -69.822922, 44.602202 ], [ -69.820862, 44.603180 ], [ -69.820862, 44.604646 ], [ -69.822922, 44.604646 ], [ -69.822235, 44.605135 ], [ -69.822922, 44.605624 ], [ -69.822922, 44.608068 ], [ -69.824295, 44.608068 ], [ -69.825668, 44.607090 ], [ -69.827042, 44.608068 ], [ -69.828415, 44.608557 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663281 ], [ -69.966431, 44.663281 ], [ -69.964371, 44.660839 ], [ -69.960251, 44.660839 ], [ -69.958878, 44.662793 ], [ -69.958191, 44.668165 ], [ -69.959564, 44.671094 ], [ -69.961624, 44.673536 ], [ -69.965744, 44.675001 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678419 ], [ -69.960251, 44.679883 ], [ -69.960251, 44.681348 ], [ -69.996643, 44.677930 ], [ -70.013809, 44.757949 ], [ -70.000763, 44.759411 ], [ -70.004196, 44.773549 ], [ -70.001450, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787196 ], [ -70.021362, 44.810096 ], [ -70.027542, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.026169, 44.831039 ], [ -70.033722, 44.864630 ], [ -70.130539, 44.851001 ], [ -70.142212, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149765, 44.896255 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.911818 ], [ -70.152512, 44.941959 ], [ -70.110626, 44.947791 ], [ -70.122986, 45.000253 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.127805 ], [ -69.662933, 45.127805 ] ] ], [ [ [ -70.172424, 45.126836 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.159378, 45.127805 ], [ -70.172424, 45.126836 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.159378, 45.127805 ], [ -69.662933, 45.127805 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.621048, 45.011419 ], [ -69.515991, 45.025495 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500198, 45.054121 ], [ -69.356003, 45.073521 ], [ -69.281845, 44.811070 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268112, 44.721857 ], [ -69.327850, 44.714538 ], [ -69.343643, 44.750147 ], [ -69.348450, 44.749172 ], [ -69.360809, 44.751122 ], [ -69.371796, 44.755023 ], [ -69.383469, 44.754535 ], [ -69.388962, 44.752585 ], [ -69.388962, 44.747709 ], [ -69.390335, 44.747221 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.747221 ], [ -69.398575, 44.742344 ], [ -69.395142, 44.735516 ], [ -69.395142, 44.732589 ], [ -69.397202, 44.731126 ], [ -69.406128, 44.727223 ], [ -69.408875, 44.723808 ], [ -69.415054, 44.718929 ], [ -69.414368, 44.716978 ], [ -69.417801, 44.709658 ], [ -69.417114, 44.701362 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708194 ], [ -69.473419, 44.709170 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.581909, 44.708194 ], [ -69.633408, 44.700386 ], [ -69.633408, 44.691112 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673536 ], [ -69.627914, 44.671094 ], [ -69.621735, 44.665234 ], [ -69.618301, 44.657909 ], [ -69.614868, 44.654490 ], [ -69.605942, 44.651070 ], [ -69.599762, 44.644720 ], [ -69.592209, 44.639834 ], [ -69.586029, 44.632505 ], [ -69.581909, 44.630551 ], [ -69.579163, 44.627130 ], [ -69.580536, 44.621754 ], [ -69.590836, 44.608068 ], [ -69.593582, 44.603180 ], [ -69.592209, 44.595846 ], [ -69.589462, 44.590467 ], [ -69.591522, 44.584110 ], [ -69.593582, 44.582154 ], [ -69.601135, 44.580687 ], [ -69.605942, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.744644, 44.602691 ], [ -69.775543, 44.608557 ], [ -69.777603, 44.607579 ], [ -69.787903, 44.594379 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.818115, 44.582154 ], [ -69.816742, 44.584599 ], [ -69.818115, 44.584599 ], [ -69.817429, 44.586066 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.588022 ], [ -69.818115, 44.589000 ], [ -69.818802, 44.590467 ], [ -69.817429, 44.591934 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.594379 ], [ -69.817429, 44.598290 ], [ -69.818802, 44.598290 ], [ -69.818802, 44.599268 ], [ -69.820862, 44.599757 ], [ -69.820862, 44.600735 ], [ -69.822922, 44.601224 ], [ -69.822922, 44.602202 ], [ -69.820862, 44.603180 ], [ -69.820862, 44.604646 ], [ -69.822922, 44.604646 ], [ -69.822235, 44.605135 ], [ -69.822922, 44.605624 ], [ -69.822922, 44.608068 ], [ -69.824295, 44.608068 ], [ -69.825668, 44.607090 ], [ -69.827042, 44.608068 ], [ -69.828415, 44.608557 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663281 ], [ -69.966431, 44.663281 ], [ -69.964371, 44.660839 ], [ -69.960251, 44.660839 ], [ -69.958878, 44.662793 ], [ -69.958191, 44.668165 ], [ -69.959564, 44.671094 ], [ -69.961624, 44.673536 ], [ -69.965744, 44.675001 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678419 ], [ -69.960251, 44.679883 ], [ -69.960251, 44.681348 ], [ -69.996643, 44.677930 ], [ -70.013809, 44.757949 ], [ -70.000763, 44.759411 ], [ -70.004196, 44.773549 ], [ -70.001450, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787196 ], [ -70.021362, 44.810096 ], [ -70.027542, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.026169, 44.831039 ], [ -70.033722, 44.864630 ], [ -70.130539, 44.851001 ], [ -70.142212, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149765, 44.896255 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.911818 ], [ -70.152512, 44.941959 ], [ -70.110626, 44.947791 ], [ -70.122986, 45.000253 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.127805 ] ] ], [ [ [ -70.159378, 45.127805 ], [ -70.172424, 45.126836 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.159378, 45.127805 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 45 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.747391, 45.761775 ], [ -69.747391, 45.759859 ], [ -69.743958, 45.760338 ], [ -69.741211, 45.755547 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.730225, 45.759380 ], [ -69.730225, 45.760338 ], [ -69.726791, 45.762254 ], [ -69.724731, 45.766086 ], [ -69.726105, 45.771834 ], [ -69.728165, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738464, 45.782848 ], [ -69.733658, 45.783806 ], [ -69.723358, 45.783327 ], [ -69.723358, 45.786200 ], [ -69.720612, 45.788594 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791467 ], [ -69.718552, 45.797691 ], [ -69.716492, 45.801042 ], [ -69.714432, 45.801999 ], [ -69.713745, 45.804871 ], [ -69.708939, 45.811093 ], [ -69.709625, 45.815401 ], [ -69.713058, 45.819708 ], [ -69.713058, 45.823536 ], [ -69.715805, 45.825928 ], [ -69.716492, 45.829278 ], [ -69.718552, 45.829756 ], [ -69.718552, 45.831670 ], [ -69.719925, 45.834062 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.723358, 45.834062 ], [ -69.721985, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717865, 45.834540 ], [ -69.718552, 45.833584 ], [ -69.715118, 45.832148 ], [ -69.712372, 45.832627 ], [ -69.712372, 45.834062 ], [ -69.708252, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.707565, 45.839324 ], [ -69.707565, 45.842673 ], [ -69.704819, 45.846499 ], [ -69.708252, 45.846978 ], [ -69.708939, 45.850804 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.854630 ], [ -69.709625, 45.856065 ], [ -69.711685, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.715118, 45.862281 ], [ -69.717865, 45.866106 ], [ -69.725418, 45.866106 ], [ -69.726105, 45.867541 ], [ -69.724731, 45.868019 ], [ -69.724045, 45.870888 ], [ -69.725418, 45.872322 ], [ -69.724731, 45.874234 ], [ -69.727478, 45.874712 ], [ -69.727478, 45.876146 ], [ -69.728165, 45.875668 ], [ -69.731598, 45.877103 ], [ -69.734344, 45.877103 ], [ -69.735031, 45.879015 ], [ -69.733658, 45.879493 ], [ -69.737778, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.737091, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881405 ], [ -69.735718, 45.880449 ], [ -69.733658, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.717178, 45.882839 ], [ -69.716492, 45.883795 ], [ -69.713058, 45.883317 ], [ -69.713058, 45.884273 ], [ -69.709625, 45.885707 ], [ -69.706192, 45.885229 ], [ -69.702072, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702072, 45.879971 ], [ -69.702072, 45.879015 ], [ -69.702759, 45.879015 ], [ -69.702759, 45.877103 ], [ -69.700699, 45.874234 ], [ -69.701385, 45.872800 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868975 ], [ -69.697266, 45.867541 ], [ -69.697266, 45.864672 ], [ -69.694519, 45.864194 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.691772, 45.860847 ], [ -69.692459, 45.859412 ], [ -69.689713, 45.858456 ], [ -69.689713, 45.855108 ], [ -69.690399, 45.854630 ], [ -69.686966, 45.854152 ], [ -69.686279, 45.853195 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.683533, 45.851282 ], [ -69.682846, 45.852239 ], [ -69.679413, 45.851760 ], [ -69.678040, 45.853195 ], [ -69.676666, 45.853195 ], [ -69.676666, 45.851760 ], [ -69.674606, 45.852239 ], [ -69.674606, 45.857499 ], [ -69.672546, 45.858934 ], [ -69.674606, 45.862281 ], [ -69.673920, 45.861803 ], [ -69.673920, 45.862759 ], [ -69.670486, 45.860847 ], [ -69.667740, 45.862281 ], [ -69.664993, 45.862281 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662933, 45.861325 ], [ -69.660187, 45.861325 ], [ -69.660187, 45.860847 ], [ -69.658813, 45.861325 ], [ -69.656754, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.655380, 45.861803 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.863238 ], [ -69.654007, 45.864194 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.863238 ], [ -69.648514, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.647141, 45.863238 ], [ -69.684219, 45.984081 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.719925, 46.394306 ], [ -69.721298, 46.574439 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.017487, 46.572551 ], [ -68.821793, 46.572551 ], [ -68.822479, 46.402829 ], [ -68.821793, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.211675 ], [ -68.823166, 46.113706 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.685077 ], [ -68.959122, 45.662527 ], [ -68.950882, 45.638527 ], [ -68.952255, 45.580887 ], [ -68.965302, 45.512602 ], [ -68.880157, 45.524149 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433635 ], [ -68.804626, 45.341046 ], [ -68.776474, 45.240569 ], [ -68.881531, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.990707, 45.125382 ], [ -69.062119, 45.114238 ], [ -69.242020, 45.089036 ], [ -69.492645, 45.055091 ], [ -69.500198, 45.054121 ], [ -69.499512, 45.050240 ], [ -69.632034, 45.050240 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.687653, 45.208166 ], [ -69.684219, 45.213004 ], [ -69.702759, 45.268605 ], [ -69.708939, 45.291313 ], [ -69.700699, 45.292762 ], [ -69.732971, 45.389289 ], [ -69.780350, 45.542908 ], [ -69.773483, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.775543, 45.553006 ], [ -69.774170, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.764557, 45.554929 ], [ -69.761124, 45.554449 ], [ -69.754257, 45.557814 ], [ -69.749451, 45.559256 ], [ -69.748077, 45.560699 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572716 ], [ -69.726791, 45.574158 ], [ -69.726791, 45.577042 ], [ -69.724045, 45.581848 ], [ -69.719925, 45.583290 ], [ -69.717178, 45.585212 ], [ -69.715118, 45.585693 ], [ -69.714432, 45.588576 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.595303 ], [ -69.715118, 45.597224 ], [ -69.717865, 45.597705 ], [ -69.719238, 45.600587 ], [ -69.721298, 45.602989 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.608754 ], [ -69.717865, 45.611156 ], [ -69.719238, 45.613557 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.613077 ], [ -69.714432, 45.612116 ], [ -69.713058, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.708939, 45.616919 ], [ -69.705505, 45.618360 ], [ -69.704819, 45.619801 ], [ -69.703445, 45.620761 ], [ -69.704132, 45.621722 ], [ -69.702072, 45.628445 ], [ -69.707565, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.708252, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.712372, 45.638047 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.716492, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.713058, 45.647648 ], [ -69.714432, 45.650528 ], [ -69.711685, 45.650528 ], [ -69.706879, 45.647168 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.696579, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.692459, 45.645728 ], [ -69.698639, 45.649568 ], [ -69.701385, 45.651968 ], [ -69.703445, 45.651968 ], [ -69.705505, 45.653408 ], [ -69.706192, 45.652928 ], [ -69.713058, 45.655808 ], [ -69.719238, 45.656288 ], [ -69.723358, 45.657728 ], [ -69.726105, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732971, 45.657248 ], [ -69.732285, 45.655808 ], [ -69.734344, 45.654368 ], [ -69.736404, 45.651008 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.653408 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657728 ], [ -69.741898, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.741898, 45.666846 ], [ -69.739838, 45.667325 ], [ -69.740524, 45.669725 ], [ -69.739151, 45.671644 ], [ -69.739151, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.738464, 45.676921 ], [ -69.739151, 45.679800 ], [ -69.746017, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.754944, 45.679800 ], [ -69.757004, 45.679800 ], [ -69.760437, 45.682678 ], [ -69.764557, 45.682678 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.685077 ], [ -69.774170, 45.686036 ], [ -69.774857, 45.687955 ], [ -69.776917, 45.687955 ], [ -69.779663, 45.690353 ], [ -69.783096, 45.690833 ], [ -69.785843, 45.692751 ], [ -69.785843, 45.699945 ], [ -69.789963, 45.702343 ], [ -69.790649, 45.704741 ], [ -69.790649, 45.710495 ], [ -69.798203, 45.715289 ], [ -69.803009, 45.715289 ], [ -69.805756, 45.717207 ], [ -69.805756, 45.720563 ], [ -69.809189, 45.722960 ], [ -69.813309, 45.722001 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722480 ], [ -69.805069, 45.722001 ], [ -69.803696, 45.720563 ], [ -69.804382, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.800262, 45.722960 ], [ -69.800262, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.797516, 45.724398 ], [ -69.792709, 45.725836 ], [ -69.791336, 45.726794 ], [ -69.792023, 45.728712 ], [ -69.794083, 45.728712 ], [ -69.800262, 45.733505 ], [ -69.809875, 45.733505 ], [ -69.812622, 45.735901 ], [ -69.810562, 45.736380 ], [ -69.811935, 45.737339 ], [ -69.820175, 45.739256 ], [ -69.820175, 45.740693 ], [ -69.821548, 45.740693 ], [ -69.824295, 45.742610 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.743089 ], [ -69.822922, 45.743569 ], [ -69.822235, 45.745006 ], [ -69.817429, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.745965 ], [ -69.806442, 45.747881 ], [ -69.805756, 45.748839 ], [ -69.801636, 45.749319 ], [ -69.796829, 45.746444 ], [ -69.793396, 45.745965 ], [ -69.789963, 45.747402 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.749798 ], [ -69.791336, 45.750277 ], [ -69.792709, 45.751235 ], [ -69.792023, 45.753152 ], [ -69.789963, 45.754589 ], [ -69.789963, 45.756026 ], [ -69.793396, 45.757463 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.792709, 45.759859 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.790649, 45.764649 ], [ -69.792023, 45.764649 ], [ -69.791336, 45.766086 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.768002 ], [ -69.789276, 45.768960 ], [ -69.787216, 45.768481 ], [ -69.782410, 45.769918 ], [ -69.784470, 45.772313 ], [ -69.783096, 45.772792 ], [ -69.781723, 45.774228 ], [ -69.784470, 45.773270 ], [ -69.785156, 45.774707 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.776144 ], [ -69.786530, 45.776144 ], [ -69.786530, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.789276, 45.777102 ], [ -69.788589, 45.777581 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.778060 ], [ -69.787216, 45.780933 ], [ -69.785156, 45.780933 ], [ -69.784470, 45.782848 ], [ -69.785843, 45.783806 ], [ -69.787903, 45.783806 ], [ -69.788589, 45.784285 ], [ -69.788589, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783806 ], [ -69.792023, 45.784285 ], [ -69.794083, 45.782848 ], [ -69.796829, 45.783327 ], [ -69.796143, 45.784285 ], [ -69.797516, 45.783327 ], [ -69.798203, 45.784285 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.796143, 45.785721 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.794083, 45.783327 ], [ -69.792023, 45.785721 ], [ -69.791336, 45.784285 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.784764 ], [ -69.788589, 45.785243 ], [ -69.785156, 45.785721 ], [ -69.784470, 45.784285 ], [ -69.784470, 45.783806 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.783783, 45.781891 ], [ -69.785843, 45.779496 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.777102 ], [ -69.783096, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.781036, 45.776623 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.779663, 45.772313 ], [ -69.777603, 45.770876 ], [ -69.776917, 45.768002 ], [ -69.774170, 45.766086 ], [ -69.774857, 45.765128 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.763691 ], [ -69.767990, 45.763212 ], [ -69.769363, 45.761775 ], [ -69.762497, 45.761296 ], [ -69.760437, 45.762254 ], [ -69.758377, 45.761775 ], [ -69.752884, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.750824, 45.764649 ], [ -69.750137, 45.763212 ], [ -69.747391, 45.761775 ] ] ], [ [ [ -69.830475, 45.738297 ], [ -69.833221, 45.738777 ], [ -69.827042, 45.740214 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827728, 45.739256 ], [ -69.827728, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.830475, 45.738297 ] ] ], [ [ [ -69.801636, 45.785243 ], [ -69.801636, 45.785721 ], [ -69.798203, 45.784764 ], [ -69.798203, 45.784285 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785243 ] ] ], [ [ [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.798889, 45.783806 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.788589, 45.784764 ], [ -69.788589, 45.785243 ], [ -69.785156, 45.785721 ], [ -69.784470, 45.784285 ], [ -69.784470, 45.783806 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.783783, 45.781891 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.777102 ], [ -69.783096, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.781036, 45.776623 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.779663, 45.772313 ], [ -69.777603, 45.770876 ], [ -69.776917, 45.768002 ], [ -69.774170, 45.766086 ], [ -69.774857, 45.765128 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.763691 ], [ -69.767990, 45.763212 ], [ -69.769363, 45.761775 ], [ -69.762497, 45.761296 ], [ -69.760437, 45.762254 ], [ -69.758377, 45.761775 ], [ -69.752884, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.763212 ], [ -69.747391, 45.761775 ], [ -69.747391, 45.759859 ], [ -69.743958, 45.760338 ], [ -69.741211, 45.755547 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.730225, 45.759380 ], [ -69.730225, 45.760338 ], [ -69.726791, 45.762254 ], [ -69.724731, 45.766086 ], [ -69.726105, 45.771834 ], [ -69.728165, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738464, 45.782848 ], [ -69.733658, 45.783806 ], [ -69.723358, 45.783327 ], [ -69.723358, 45.786200 ], [ -69.720612, 45.788594 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791467 ], [ -69.718552, 45.797691 ], [ -69.716492, 45.801042 ], [ -69.714432, 45.801999 ], [ -69.713745, 45.804871 ], [ -69.708939, 45.811093 ], [ -69.709625, 45.815401 ], [ -69.713058, 45.819708 ], [ -69.713058, 45.823536 ], [ -69.715805, 45.825928 ], [ -69.716492, 45.829278 ], [ -69.718552, 45.829756 ], [ -69.718552, 45.831670 ], [ -69.719925, 45.834062 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.723358, 45.834062 ], [ -69.721985, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.718552, 45.833584 ], [ -69.715118, 45.832148 ], [ -69.712372, 45.832627 ], [ -69.712372, 45.834062 ], [ -69.708252, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.707565, 45.839324 ], [ -69.707565, 45.842673 ], [ -69.704819, 45.846499 ], [ -69.708252, 45.846978 ], [ -69.708939, 45.850804 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.854630 ], [ -69.709625, 45.856065 ], [ -69.711685, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.715118, 45.862281 ], [ -69.717865, 45.866106 ], [ -69.725418, 45.866106 ], [ -69.726105, 45.867541 ], [ -69.724731, 45.868019 ], [ -69.724045, 45.870888 ], [ -69.725418, 45.872322 ], [ -69.724731, 45.874234 ], [ -69.727478, 45.874712 ], [ -69.727478, 45.876146 ], [ -69.728165, 45.875668 ], [ -69.731598, 45.877103 ], [ -69.734344, 45.877103 ], [ -69.735031, 45.879015 ], [ -69.733658, 45.879493 ], [ -69.737778, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.737091, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881405 ], [ -69.735718, 45.880449 ], [ -69.733658, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.717178, 45.882839 ], [ -69.716492, 45.883795 ], [ -69.713058, 45.883317 ], [ -69.713058, 45.884273 ], [ -69.709625, 45.885707 ], [ -69.706192, 45.885229 ], [ -69.702072, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702072, 45.879971 ], [ -69.702072, 45.879015 ], [ -69.702759, 45.879015 ], [ -69.702759, 45.877103 ], [ -69.700699, 45.874234 ], [ -69.701385, 45.872800 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868975 ], [ -69.697266, 45.867541 ], [ -69.697266, 45.864672 ], [ -69.694519, 45.864194 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.691772, 45.860847 ], [ -69.692459, 45.859412 ], [ -69.689713, 45.858456 ], [ -69.689713, 45.855108 ], [ -69.690399, 45.854630 ], [ -69.686966, 45.854152 ], [ -69.686279, 45.853195 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.683533, 45.851282 ], [ -69.682846, 45.852239 ], [ -69.679413, 45.851760 ], [ -69.678040, 45.853195 ], [ -69.676666, 45.853195 ], [ -69.676666, 45.851760 ], [ -69.674606, 45.852239 ], [ -69.674606, 45.857499 ], [ -69.672546, 45.858934 ], [ -69.673920, 45.861803 ], [ -69.673920, 45.862759 ], [ -69.670486, 45.860847 ], [ -69.667740, 45.862281 ], [ -69.664993, 45.862281 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662933, 45.861325 ], [ -69.660187, 45.861325 ], [ -69.660187, 45.860847 ], [ -69.658813, 45.861325 ], [ -69.656754, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.655380, 45.861803 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.863238 ], [ -69.654007, 45.864194 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.863238 ], [ -69.648514, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.647141, 45.863238 ], [ -69.684219, 45.984081 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.719925, 46.394306 ], [ -69.721298, 46.574439 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.017487, 46.572551 ], [ -68.821793, 46.572551 ], [ -68.822479, 46.402829 ], [ -68.821793, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.211675 ], [ -68.823166, 46.113706 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.685077 ], [ -68.959122, 45.662527 ], [ -68.950882, 45.638527 ], [ -68.952255, 45.580887 ], [ -68.965302, 45.512602 ], [ -68.880157, 45.524149 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433635 ], [ -68.804626, 45.341046 ], [ -68.776474, 45.240569 ], [ -68.881531, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.990707, 45.125382 ], [ -69.062119, 45.114238 ], [ -69.242020, 45.089036 ], [ -69.492645, 45.055091 ], [ -69.500198, 45.054121 ], [ -69.499512, 45.050240 ], [ -69.632034, 45.050240 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.687653, 45.208166 ], [ -69.684219, 45.213004 ], [ -69.702759, 45.268605 ], [ -69.708939, 45.291313 ], [ -69.700699, 45.292762 ], [ -69.732971, 45.389289 ], [ -69.780350, 45.542908 ], [ -69.773483, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.775543, 45.553006 ], [ -69.774170, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.764557, 45.554929 ], [ -69.761124, 45.554449 ], [ -69.754257, 45.557814 ], [ -69.749451, 45.559256 ], [ -69.748077, 45.560699 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572716 ], [ -69.726791, 45.574158 ], [ -69.726791, 45.577042 ], [ -69.724045, 45.581848 ], [ -69.719925, 45.583290 ], [ -69.717178, 45.585212 ], [ -69.715118, 45.585693 ], [ -69.714432, 45.588576 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.595303 ], [ -69.715118, 45.597224 ], [ -69.717865, 45.597705 ], [ -69.719238, 45.600587 ], [ -69.721298, 45.602989 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.608754 ], [ -69.717865, 45.611156 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.613077 ], [ -69.714432, 45.612116 ], [ -69.713058, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.708939, 45.616919 ], [ -69.705505, 45.618360 ], [ -69.704819, 45.619801 ], [ -69.703445, 45.620761 ], [ -69.704132, 45.621722 ], [ -69.702072, 45.628445 ], [ -69.707565, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.708252, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.712372, 45.638047 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.716492, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.713058, 45.647648 ], [ -69.714432, 45.650528 ], [ -69.711685, 45.650528 ], [ -69.706879, 45.647168 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.696579, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.692459, 45.645728 ], [ -69.698639, 45.649568 ], [ -69.701385, 45.651968 ], [ -69.703445, 45.651968 ], [ -69.705505, 45.653408 ], [ -69.706192, 45.652928 ], [ -69.713058, 45.655808 ], [ -69.719238, 45.656288 ], [ -69.723358, 45.657728 ], [ -69.726105, 45.656768 ], [ -69.732971, 45.657248 ], [ -69.732285, 45.655808 ], [ -69.734344, 45.654368 ], [ -69.736404, 45.651008 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.653408 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657728 ], [ -69.741898, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.741898, 45.666846 ], [ -69.739838, 45.667325 ], [ -69.740524, 45.669725 ], [ -69.739151, 45.671644 ], [ -69.739151, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.738464, 45.676921 ], [ -69.739151, 45.679800 ], [ -69.746017, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.754944, 45.679800 ], [ -69.757004, 45.679800 ], [ -69.760437, 45.682678 ], [ -69.764557, 45.682678 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.685077 ], [ -69.774170, 45.686036 ], [ -69.774857, 45.687955 ], [ -69.776917, 45.687955 ], [ -69.779663, 45.690353 ], [ -69.783096, 45.690833 ], [ -69.785843, 45.692751 ], [ -69.785843, 45.699945 ], [ -69.789963, 45.702343 ], [ -69.790649, 45.704741 ], [ -69.790649, 45.710495 ], [ -69.798203, 45.715289 ], [ -69.803009, 45.715289 ], [ -69.805756, 45.717207 ], [ -69.805756, 45.720563 ], [ -69.807816, 45.722480 ], [ -69.805069, 45.722001 ], [ -69.803696, 45.720563 ], [ -69.804382, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.800262, 45.722960 ], [ -69.800262, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.797516, 45.724398 ], [ -69.792709, 45.725836 ], [ -69.791336, 45.726794 ], [ -69.792023, 45.728712 ], [ -69.794083, 45.728712 ], [ -69.800262, 45.733505 ], [ -69.809875, 45.733505 ], [ -69.812622, 45.735901 ], [ -69.810562, 45.736380 ], [ -69.811935, 45.737339 ], [ -69.820175, 45.739256 ], [ -69.820175, 45.740693 ], [ -69.821548, 45.740693 ], [ -69.824295, 45.742610 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.743089 ], [ -69.822922, 45.743569 ], [ -69.822235, 45.745006 ], [ -69.817429, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.745965 ], [ -69.806442, 45.747881 ], [ -69.805756, 45.748839 ], [ -69.801636, 45.749319 ], [ -69.796829, 45.746444 ], [ -69.793396, 45.745965 ], [ -69.789963, 45.747402 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.749798 ], [ -69.791336, 45.750277 ], [ -69.792709, 45.751235 ], [ -69.792023, 45.753152 ], [ -69.789963, 45.754589 ], [ -69.789963, 45.756026 ], [ -69.793396, 45.757463 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.792709, 45.759859 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.790649, 45.764649 ], [ -69.792023, 45.764649 ], [ -69.791336, 45.766086 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.768002 ], [ -69.789276, 45.768960 ], [ -69.787216, 45.768481 ], [ -69.782410, 45.769918 ], [ -69.784470, 45.772313 ], [ -69.783096, 45.772792 ], [ -69.781723, 45.774228 ], [ -69.784470, 45.773270 ], [ -69.785156, 45.774707 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.776144 ], [ -69.786530, 45.776144 ], [ -69.786530, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.789276, 45.777102 ], [ -69.788589, 45.777581 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.778060 ], [ -69.787216, 45.780933 ], [ -69.785156, 45.780933 ], [ -69.784470, 45.782848 ], [ -69.785843, 45.783806 ], [ -69.787903, 45.783806 ], [ -69.788589, 45.784764 ] ], [ [ -69.732971, 45.657248 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732971, 45.657248 ] ] ], [ [ [ -69.807816, 45.722480 ], [ -69.809189, 45.722960 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722480 ] ] ], [ [ [ -69.826355, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827728, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.828415, 45.739256 ], [ -69.830475, 45.738297 ], [ -69.833221, 45.738777 ], [ -69.827042, 45.740214 ], [ -69.826355, 45.741173 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.797516, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.796143, 45.785721 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.791336, 45.784285 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783806 ], [ -69.794083, 45.782848 ], [ -69.796829, 45.783327 ], [ -69.797516, 45.783327 ], [ -69.797516, 45.785721 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798203, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785721 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.788589, 45.784764 ], [ -69.788589, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.784764 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.107193, 46.390990 ], [ -70.107880, 46.392885 ], [ -70.105133, 46.393832 ], [ -70.102386, 46.396673 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099640, 46.403303 ], [ -70.101013, 46.403303 ], [ -70.098267, 46.404250 ], [ -70.100327, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.097580, 46.405670 ], [ -70.096207, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.407564 ], [ -70.094833, 46.408511 ], [ -70.097580, 46.409458 ], [ -70.096893, 46.409931 ], [ -70.092773, 46.409458 ], [ -70.089340, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.410878 ], [ -70.076981, 46.409931 ], [ -70.072174, 46.411352 ], [ -70.067368, 46.412298 ], [ -70.065308, 46.414192 ], [ -70.061874, 46.414192 ], [ -70.057068, 46.415612 ], [ -70.023422, 46.573495 ], [ -69.800949, 46.573495 ], [ -69.721298, 46.574439 ], [ -69.719925, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684219, 45.984081 ], [ -69.667053, 45.927274 ], [ -70.259628, 45.927274 ], [ -70.259628, 45.928230 ], [ -70.256195, 45.929662 ], [ -70.252075, 45.933960 ], [ -70.249329, 45.934916 ], [ -70.247269, 45.936348 ], [ -70.243149, 45.937303 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.943033 ], [ -70.239716, 45.943988 ], [ -70.241776, 45.944943 ], [ -70.244522, 45.944943 ], [ -70.242462, 45.946853 ], [ -70.248642, 45.949717 ], [ -70.249329, 45.952582 ], [ -70.251389, 45.953537 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.955924 ], [ -70.254822, 45.954491 ], [ -70.256195, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.308380, 46.061797 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.260315, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099900 ], [ -70.254822, 46.099900 ], [ -70.253448, 46.100376 ], [ -70.252762, 46.106089 ], [ -70.253448, 46.107993 ], [ -70.254822, 46.107993 ], [ -70.255508, 46.108945 ], [ -70.255508, 46.110850 ], [ -70.254135, 46.112754 ], [ -70.254822, 46.114182 ], [ -70.252762, 46.115134 ], [ -70.252762, 46.116562 ], [ -70.251389, 46.118466 ], [ -70.252075, 46.119893 ], [ -70.248642, 46.122749 ], [ -70.247955, 46.126080 ], [ -70.247269, 46.125605 ], [ -70.245895, 46.126556 ], [ -70.245209, 46.128936 ], [ -70.243835, 46.128936 ], [ -70.244522, 46.131315 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.241776, 46.134646 ], [ -70.242462, 46.135598 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.146540 ], [ -70.239716, 46.149394 ], [ -70.241089, 46.149394 ], [ -70.240402, 46.151297 ], [ -70.241776, 46.151297 ], [ -70.241776, 46.150346 ], [ -70.243149, 46.149870 ], [ -70.244522, 46.151773 ], [ -70.245209, 46.151297 ], [ -70.246582, 46.151297 ], [ -70.247269, 46.152248 ], [ -70.248642, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.153675 ], [ -70.250702, 46.154627 ], [ -70.250015, 46.156054 ], [ -70.252762, 46.157481 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.256195, 46.159859 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.278854, 46.175551 ], [ -70.280228, 46.177929 ], [ -70.282288, 46.178880 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191715 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.256195, 46.244926 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246351 ], [ -70.251389, 46.249200 ], [ -70.252075, 46.252523 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.255372 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261069 ], [ -70.250702, 46.263443 ], [ -70.248642, 46.265341 ], [ -70.249329, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.273411 ], [ -70.241089, 46.273411 ], [ -70.241089, 46.275309 ], [ -70.239716, 46.275784 ], [ -70.240402, 46.279580 ], [ -70.238342, 46.281004 ], [ -70.235596, 46.281479 ], [ -70.232849, 46.284800 ], [ -70.232162, 46.291443 ], [ -70.229416, 46.291918 ], [ -70.229416, 46.292392 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295713 ], [ -70.215683, 46.294764 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297611 ], [ -70.212250, 46.299034 ], [ -70.210876, 46.298560 ], [ -70.206070, 46.299983 ], [ -70.206070, 46.300457 ], [ -70.207443, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.312790 ], [ -70.203323, 46.315161 ], [ -70.207443, 46.319430 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.205383, 46.334129 ], [ -70.202637, 46.335551 ], [ -70.201263, 46.337447 ], [ -70.195770, 46.341239 ], [ -70.196457, 46.343610 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.348350 ], [ -70.192337, 46.349297 ], [ -70.191650, 46.350245 ], [ -70.190277, 46.350719 ], [ -70.188904, 46.350245 ], [ -70.184784, 46.352141 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354511 ], [ -70.177231, 46.355933 ], [ -70.175858, 46.358302 ], [ -70.173111, 46.359724 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357828 ], [ -70.164871, 46.359250 ], [ -70.163498, 46.359250 ], [ -70.162125, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359724 ], [ -70.158691, 46.361145 ], [ -70.156631, 46.361619 ], [ -70.154572, 46.360198 ], [ -70.148392, 46.359250 ], [ -70.144958, 46.362567 ], [ -70.142212, 46.362567 ], [ -70.140839, 46.363041 ], [ -70.141525, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.369200 ], [ -70.131912, 46.370148 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.379623 ], [ -70.126419, 46.381991 ], [ -70.116806, 46.385781 ], [ -70.116806, 46.388622 ], [ -70.115433, 46.388149 ], [ -70.114746, 46.385307 ], [ -70.111313, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112686, 46.388622 ], [ -70.110626, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108566, 46.389096 ], [ -70.109940, 46.390990 ], [ -70.107193, 46.390990 ] ], [ [ -70.107880, 46.388149 ], [ -70.108566, 46.388622 ], [ -70.108566, 46.387675 ], [ -70.107880, 46.388149 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.108566, 46.389096 ], [ -70.109940, 46.390990 ], [ -70.107193, 46.390990 ], [ -70.107880, 46.392885 ], [ -70.105133, 46.393832 ], [ -70.102386, 46.396673 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099640, 46.403303 ], [ -70.101013, 46.403303 ], [ -70.098267, 46.404250 ], [ -70.100327, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.097580, 46.405670 ], [ -70.096207, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.407564 ], [ -70.094833, 46.408511 ], [ -70.097580, 46.409458 ], [ -70.096893, 46.409931 ], [ -70.092773, 46.409458 ], [ -70.089340, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.410878 ], [ -70.076981, 46.409931 ], [ -70.072174, 46.411352 ], [ -70.067368, 46.412298 ], [ -70.065308, 46.414192 ], [ -70.061874, 46.414192 ], [ -70.057068, 46.415612 ], [ -70.023422, 46.573495 ], [ -69.800949, 46.573495 ], [ -69.721298, 46.574439 ], [ -69.719925, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684219, 45.984081 ], [ -69.667053, 45.927274 ], [ -70.259628, 45.927274 ], [ -70.259628, 45.928230 ], [ -70.256195, 45.929662 ], [ -70.252075, 45.933960 ], [ -70.249329, 45.934916 ], [ -70.247269, 45.936348 ], [ -70.243149, 45.937303 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.943033 ], [ -70.239716, 45.943988 ], [ -70.241776, 45.944943 ], [ -70.244522, 45.944943 ], [ -70.242462, 45.946853 ], [ -70.248642, 45.949717 ], [ -70.249329, 45.952582 ], [ -70.251389, 45.953537 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.955924 ], [ -70.254822, 45.954491 ], [ -70.256195, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.308380, 46.061797 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.260315, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099900 ], [ -70.254822, 46.099900 ], [ -70.253448, 46.100376 ], [ -70.252762, 46.106089 ], [ -70.253448, 46.107993 ], [ -70.254822, 46.107993 ], [ -70.255508, 46.108945 ], [ -70.255508, 46.110850 ], [ -70.254135, 46.112754 ], [ -70.254822, 46.114182 ], [ -70.252762, 46.115134 ], [ -70.252762, 46.116562 ], [ -70.251389, 46.118466 ], [ -70.252075, 46.119893 ], [ -70.248642, 46.122749 ], [ -70.247955, 46.126080 ], [ -70.247269, 46.125605 ], [ -70.245895, 46.126556 ], [ -70.245209, 46.128936 ], [ -70.243835, 46.128936 ], [ -70.244522, 46.131315 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.241776, 46.134646 ], [ -70.242462, 46.135598 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.146540 ], [ -70.239716, 46.149394 ], [ -70.241089, 46.149394 ], [ -70.240402, 46.151297 ], [ -70.241776, 46.151297 ], [ -70.241776, 46.150346 ], [ -70.243149, 46.149870 ], [ -70.244522, 46.151773 ], [ -70.245209, 46.151297 ], [ -70.246582, 46.151297 ], [ -70.247269, 46.152248 ], [ -70.248642, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.153675 ], [ -70.250702, 46.154627 ], [ -70.250015, 46.156054 ], [ -70.252762, 46.157481 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.256195, 46.159859 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.278854, 46.175551 ], [ -70.280228, 46.177929 ], [ -70.282288, 46.178880 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191715 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.256195, 46.244926 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246351 ], [ -70.251389, 46.249200 ], [ -70.252075, 46.252523 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.255372 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261069 ], [ -70.250702, 46.263443 ], [ -70.248642, 46.265341 ], [ -70.249329, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.273411 ], [ -70.241089, 46.273411 ], [ -70.241089, 46.275309 ], [ -70.239716, 46.275784 ], [ -70.240402, 46.279580 ], [ -70.238342, 46.281004 ], [ -70.235596, 46.281479 ], [ -70.232849, 46.284800 ], [ -70.232162, 46.291443 ], [ -70.229416, 46.291918 ], [ -70.229416, 46.292392 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295713 ], [ -70.215683, 46.294764 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297611 ], [ -70.212250, 46.299034 ], [ -70.210876, 46.298560 ], [ -70.206070, 46.299983 ], [ -70.206070, 46.300457 ], [ -70.207443, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.312790 ], [ -70.203323, 46.315161 ], [ -70.207443, 46.319430 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.205383, 46.334129 ], [ -70.202637, 46.335551 ], [ -70.201263, 46.337447 ], [ -70.195770, 46.341239 ], [ -70.196457, 46.343610 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.348350 ], [ -70.192337, 46.349297 ], [ -70.191650, 46.350245 ], [ -70.190277, 46.350719 ], [ -70.188904, 46.350245 ], [ -70.184784, 46.352141 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354511 ], [ -70.177231, 46.355933 ], [ -70.175858, 46.358302 ], [ -70.173111, 46.359724 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357828 ], [ -70.164871, 46.359250 ], [ -70.163498, 46.359250 ], [ -70.162125, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359724 ], [ -70.158691, 46.361145 ], [ -70.156631, 46.361619 ], [ -70.154572, 46.360198 ], [ -70.148392, 46.359250 ], [ -70.144958, 46.362567 ], [ -70.142212, 46.362567 ], [ -70.140839, 46.363041 ], [ -70.141525, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.369200 ], [ -70.131912, 46.370148 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.379623 ], [ -70.126419, 46.381991 ], [ -70.116806, 46.385781 ], [ -70.116806, 46.388622 ], [ -70.115433, 46.388149 ], [ -70.114746, 46.385307 ], [ -70.111313, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112686, 46.388622 ], [ -70.110626, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108566, 46.389096 ] ], [ [ -70.108566, 46.389096 ], [ -70.108566, 46.387675 ], [ -70.107880, 46.388149 ], [ -70.108566, 46.389096 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.500198, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.355316, 45.072066 ], [ -69.349136, 45.050240 ], [ -69.499512, 45.050240 ], [ -69.500198, 45.054121 ] ] ], [ [ [ -69.796143, 45.784285 ], [ -69.796829, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788589, 45.782848 ], [ -69.788589, 45.784285 ], [ -69.787903, 45.783806 ], [ -69.785843, 45.783806 ], [ -69.784470, 45.782848 ], [ -69.785156, 45.780933 ], [ -69.787216, 45.780933 ], [ -69.788589, 45.778060 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.777581 ], [ -69.789276, 45.777102 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.786530, 45.775186 ], [ -69.786530, 45.776144 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.774707 ], [ -69.784470, 45.773270 ], [ -69.781723, 45.774228 ], [ -69.782410, 45.773270 ], [ -69.784470, 45.772313 ], [ -69.782410, 45.769918 ], [ -69.787216, 45.768481 ], [ -69.789276, 45.768960 ], [ -69.790649, 45.768002 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.766086 ], [ -69.792023, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.760338 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.757463 ], [ -69.789963, 45.756026 ], [ -69.789963, 45.754589 ], [ -69.792023, 45.753152 ], [ -69.792709, 45.751235 ], [ -69.791336, 45.750277 ], [ -69.788589, 45.749798 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747402 ], [ -69.793396, 45.745965 ], [ -69.796829, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.805756, 45.748839 ], [ -69.806442, 45.747881 ], [ -69.812622, 45.745965 ], [ -69.812622, 45.747402 ], [ -69.817429, 45.747402 ], [ -69.821548, 45.745485 ], [ -69.822922, 45.743569 ], [ -69.825668, 45.743089 ], [ -69.826355, 45.741173 ], [ -69.824295, 45.742610 ], [ -69.821548, 45.740693 ], [ -69.820175, 45.740693 ], [ -69.820175, 45.739256 ], [ -69.811935, 45.737339 ], [ -69.810562, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733505 ], [ -69.800262, 45.733505 ], [ -69.794083, 45.728712 ], [ -69.792023, 45.728712 ], [ -69.791336, 45.726794 ], [ -69.792709, 45.725836 ], [ -69.797516, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.724398 ], [ -69.800262, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722960 ], [ -69.803696, 45.720563 ], [ -69.805069, 45.722001 ], [ -69.807816, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.813309, 45.722001 ], [ -69.809189, 45.722960 ], [ -69.805756, 45.720563 ], [ -69.805756, 45.717207 ], [ -69.803009, 45.715289 ], [ -69.798203, 45.715289 ], [ -69.790649, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789963, 45.702343 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.692751 ], [ -69.783096, 45.690833 ], [ -69.779663, 45.690353 ], [ -69.776917, 45.687955 ], [ -69.774857, 45.687955 ], [ -69.774170, 45.686036 ], [ -69.769363, 45.685077 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682678 ], [ -69.760437, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754944, 45.679800 ], [ -69.749451, 45.681239 ], [ -69.746017, 45.681239 ], [ -69.739151, 45.679800 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.739151, 45.675482 ], [ -69.739151, 45.671644 ], [ -69.740524, 45.669725 ], [ -69.739838, 45.667325 ], [ -69.741898, 45.666846 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.657728 ], [ -69.739838, 45.657728 ], [ -69.739838, 45.656768 ], [ -69.744644, 45.653408 ], [ -69.743958, 45.651968 ], [ -69.736404, 45.651008 ], [ -69.734344, 45.654368 ], [ -69.732285, 45.655808 ], [ -69.732971, 45.657248 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.728165, 45.656768 ], [ -69.723358, 45.657728 ], [ -69.719238, 45.656288 ], [ -69.713058, 45.655808 ], [ -69.706192, 45.652928 ], [ -69.705505, 45.653408 ], [ -69.703445, 45.651968 ], [ -69.701385, 45.651968 ], [ -69.700012, 45.650048 ], [ -69.692459, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.696579, 45.640928 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706879, 45.647168 ], [ -69.711685, 45.650528 ], [ -69.714432, 45.650528 ], [ -69.713058, 45.647648 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.648128 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712372, 45.638047 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.635647 ], [ -69.707565, 45.632766 ], [ -69.702072, 45.628445 ], [ -69.704132, 45.621722 ], [ -69.703445, 45.620761 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618840 ], [ -69.708939, 45.616919 ], [ -69.709625, 45.613557 ], [ -69.711685, 45.613077 ], [ -69.713058, 45.614037 ], [ -69.714432, 45.612116 ], [ -69.714432, 45.613077 ], [ -69.717865, 45.612116 ], [ -69.719238, 45.613557 ], [ -69.717865, 45.611156 ], [ -69.717865, 45.608754 ], [ -69.720612, 45.608274 ], [ -69.721298, 45.602989 ], [ -69.719238, 45.600587 ], [ -69.717865, 45.597705 ], [ -69.715118, 45.597224 ], [ -69.713745, 45.595303 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.588576 ], [ -69.715118, 45.585693 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583290 ], [ -69.724045, 45.581848 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.574158 ], [ -69.728851, 45.572716 ], [ -69.728165, 45.570313 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.748077, 45.560699 ], [ -69.749451, 45.559256 ], [ -69.754257, 45.557814 ], [ -69.761124, 45.554449 ], [ -69.764557, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.774170, 45.554929 ], [ -69.775543, 45.553006 ], [ -69.775543, 45.549640 ], [ -69.773483, 45.545793 ], [ -69.780350, 45.542908 ], [ -69.732971, 45.389289 ], [ -69.701385, 45.295660 ], [ -69.700699, 45.292762 ], [ -69.708939, 45.291796 ], [ -69.705505, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.684219, 45.212520 ], [ -69.687653, 45.208166 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.632034, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128773 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152506 ], [ -70.367432, 45.835019 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.267868, 45.886185 ], [ -70.262375, 45.888096 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897655 ], [ -70.261002, 45.899088 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.907689 ], [ -70.256195, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.927274 ], [ -69.667053, 45.927274 ], [ -69.647141, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.648514, 45.863238 ], [ -69.651260, 45.863238 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.864194 ], [ -69.654007, 45.863238 ], [ -69.655380, 45.862759 ], [ -69.655380, 45.861803 ], [ -69.657440, 45.862281 ], [ -69.656754, 45.860369 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.662933, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.664993, 45.862281 ], [ -69.667740, 45.862281 ], [ -69.670486, 45.860847 ], [ -69.673920, 45.862759 ], [ -69.673920, 45.861803 ], [ -69.672546, 45.859890 ], [ -69.674606, 45.857499 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853195 ], [ -69.678040, 45.853195 ], [ -69.678726, 45.852239 ], [ -69.682846, 45.852239 ], [ -69.683533, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853195 ], [ -69.686966, 45.854152 ], [ -69.690399, 45.854630 ], [ -69.689713, 45.855108 ], [ -69.689713, 45.858456 ], [ -69.692459, 45.859412 ], [ -69.691772, 45.860847 ], [ -69.694519, 45.862281 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.864194 ], [ -69.697266, 45.864672 ], [ -69.697266, 45.867541 ], [ -69.699326, 45.868975 ], [ -69.699326, 45.870410 ], [ -69.701385, 45.872800 ], [ -69.700699, 45.874234 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.879015 ], [ -69.702072, 45.879015 ], [ -69.702072, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.702072, 45.886185 ], [ -69.706192, 45.885229 ], [ -69.709625, 45.885707 ], [ -69.711685, 45.885229 ], [ -69.713058, 45.883317 ], [ -69.716492, 45.883795 ], [ -69.717178, 45.882839 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.733658, 45.880449 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881405 ], [ -69.737091, 45.880927 ], [ -69.737091, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.880449 ], [ -69.733658, 45.879493 ], [ -69.735031, 45.879015 ], [ -69.734344, 45.877103 ], [ -69.731598, 45.877103 ], [ -69.728165, 45.875668 ], [ -69.727478, 45.876146 ], [ -69.727478, 45.874712 ], [ -69.724731, 45.874234 ], [ -69.725418, 45.872322 ], [ -69.724045, 45.870888 ], [ -69.724731, 45.868019 ], [ -69.726105, 45.867541 ], [ -69.725418, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.715118, 45.862281 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.856543 ], [ -69.709625, 45.856065 ], [ -69.708939, 45.854630 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.704819, 45.846499 ], [ -69.707565, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.836932 ], [ -69.712372, 45.834062 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832148 ], [ -69.718552, 45.833584 ], [ -69.717865, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721985, 45.835019 ], [ -69.723358, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.719925, 45.834062 ], [ -69.718552, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829278 ], [ -69.715805, 45.825928 ], [ -69.713058, 45.823536 ], [ -69.713058, 45.819708 ], [ -69.709625, 45.815401 ], [ -69.708939, 45.811093 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801999 ], [ -69.716492, 45.801042 ], [ -69.718552, 45.797691 ], [ -69.719238, 45.791467 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788594 ], [ -69.723358, 45.786200 ], [ -69.723358, 45.783327 ], [ -69.733658, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.728165, 45.775186 ], [ -69.728165, 45.773270 ], [ -69.726105, 45.771834 ], [ -69.724731, 45.766086 ], [ -69.726791, 45.762254 ], [ -69.730225, 45.760338 ], [ -69.730225, 45.759380 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.755547 ], [ -69.743958, 45.760338 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761775 ], [ -69.750137, 45.763212 ], [ -69.750824, 45.764649 ], [ -69.750824, 45.763691 ], [ -69.752884, 45.761775 ], [ -69.758377, 45.761775 ], [ -69.760437, 45.762254 ], [ -69.762497, 45.761296 ], [ -69.769363, 45.761775 ], [ -69.767990, 45.763212 ], [ -69.771423, 45.763691 ], [ -69.772797, 45.765128 ], [ -69.774857, 45.765128 ], [ -69.774170, 45.766086 ], [ -69.776917, 45.768002 ], [ -69.777603, 45.770876 ], [ -69.779663, 45.772313 ], [ -69.781036, 45.775665 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.776623 ], [ -69.781723, 45.778539 ], [ -69.783096, 45.778539 ], [ -69.783783, 45.777102 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.785843, 45.779496 ], [ -69.783783, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.781723, 45.781891 ], [ -69.784470, 45.783806 ], [ -69.784470, 45.784285 ], [ -69.785156, 45.785721 ], [ -69.788589, 45.785243 ], [ -69.788589, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785721 ], [ -69.794083, 45.783327 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.798203, 45.784285 ], [ -69.797516, 45.783327 ], [ -69.796143, 45.784285 ] ], [ [ -69.798203, 45.784285 ], [ -69.798203, 45.784764 ], [ -69.801636, 45.785721 ], [ -69.801636, 45.785243 ], [ -69.798889, 45.784764 ], [ -69.798203, 45.784285 ] ], [ [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ] ], [ [ -69.825668, 45.739735 ], [ -69.826355, 45.741173 ], [ -69.827042, 45.740214 ], [ -69.833221, 45.738777 ], [ -69.830475, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.827728, 45.738297 ], [ -69.827728, 45.739256 ], [ -69.825668, 45.739735 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.788589, 45.784764 ], [ -69.787903, 45.783806 ], [ -69.785843, 45.783806 ], [ -69.784470, 45.782848 ], [ -69.785156, 45.780933 ], [ -69.787216, 45.780933 ], [ -69.788589, 45.778060 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.777581 ], [ -69.789276, 45.777102 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.786530, 45.775186 ], [ -69.786530, 45.776144 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.774707 ], [ -69.784470, 45.773270 ], [ -69.781723, 45.774228 ], [ -69.782410, 45.773270 ], [ -69.784470, 45.772313 ], [ -69.782410, 45.769918 ], [ -69.787216, 45.768481 ], [ -69.789276, 45.768960 ], [ -69.790649, 45.768002 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.766086 ], [ -69.792023, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.760338 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.757463 ], [ -69.789963, 45.756026 ], [ -69.789963, 45.754589 ], [ -69.792023, 45.753152 ], [ -69.792709, 45.751235 ], [ -69.791336, 45.750277 ], [ -69.788589, 45.749798 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747402 ], [ -69.793396, 45.745965 ], [ -69.796829, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.805756, 45.748839 ], [ -69.806442, 45.747881 ], [ -69.812622, 45.745965 ], [ -69.812622, 45.747402 ], [ -69.817429, 45.747402 ], [ -69.821548, 45.745485 ], [ -69.822922, 45.743569 ], [ -69.825668, 45.743089 ], [ -69.826355, 45.741173 ], [ -69.824295, 45.742610 ], [ -69.821548, 45.740693 ], [ -69.820175, 45.740693 ], [ -69.820175, 45.739256 ], [ -69.811935, 45.737339 ], [ -69.810562, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733505 ], [ -69.800262, 45.733505 ], [ -69.794083, 45.728712 ], [ -69.792023, 45.728712 ], [ -69.791336, 45.726794 ], [ -69.792709, 45.725836 ], [ -69.797516, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.724398 ], [ -69.800262, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722960 ], [ -69.803696, 45.720563 ], [ -69.805069, 45.722001 ], [ -69.807816, 45.722480 ], [ -69.805756, 45.720563 ], [ -69.805756, 45.717207 ], [ -69.803009, 45.715289 ], [ -69.798203, 45.715289 ], [ -69.790649, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789963, 45.702343 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.692751 ], [ -69.783096, 45.690833 ], [ -69.779663, 45.690353 ], [ -69.776917, 45.687955 ], [ -69.774857, 45.687955 ], [ -69.774170, 45.686036 ], [ -69.769363, 45.685077 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682678 ], [ -69.760437, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754944, 45.679800 ], [ -69.749451, 45.681239 ], [ -69.746017, 45.681239 ], [ -69.739151, 45.679800 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.739151, 45.675482 ], [ -69.739151, 45.671644 ], [ -69.740524, 45.669725 ], [ -69.739838, 45.667325 ], [ -69.741898, 45.666846 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.657728 ], [ -69.739838, 45.657728 ], [ -69.739838, 45.656768 ], [ -69.744644, 45.653408 ], [ -69.743958, 45.651968 ], [ -69.736404, 45.651008 ], [ -69.734344, 45.654368 ], [ -69.732285, 45.655808 ], [ -69.732971, 45.657248 ], [ -69.728165, 45.656768 ], [ -69.723358, 45.657728 ], [ -69.719238, 45.656288 ], [ -69.713058, 45.655808 ], [ -69.706192, 45.652928 ], [ -69.705505, 45.653408 ], [ -69.703445, 45.651968 ], [ -69.701385, 45.651968 ], [ -69.700012, 45.650048 ], [ -69.692459, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.696579, 45.640928 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706879, 45.647168 ], [ -69.711685, 45.650528 ], [ -69.714432, 45.650528 ], [ -69.713058, 45.647648 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.648128 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712372, 45.638047 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.635647 ], [ -69.707565, 45.632766 ], [ -69.702072, 45.628445 ], [ -69.704132, 45.621722 ], [ -69.703445, 45.620761 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618840 ], [ -69.708939, 45.616919 ], [ -69.709625, 45.613557 ], [ -69.711685, 45.613077 ], [ -69.713058, 45.614037 ], [ -69.714432, 45.612116 ], [ -69.714432, 45.613077 ], [ -69.717865, 45.612116 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.611156 ], [ -69.717865, 45.608754 ], [ -69.720612, 45.608274 ], [ -69.721298, 45.602989 ], [ -69.719238, 45.600587 ], [ -69.717865, 45.597705 ], [ -69.715118, 45.597224 ], [ -69.713745, 45.595303 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.588576 ], [ -69.715118, 45.585693 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583290 ], [ -69.724045, 45.581848 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.574158 ], [ -69.728851, 45.572716 ], [ -69.728165, 45.570313 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.748077, 45.560699 ], [ -69.749451, 45.559256 ], [ -69.754257, 45.557814 ], [ -69.761124, 45.554449 ], [ -69.764557, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.774170, 45.554929 ], [ -69.775543, 45.553006 ], [ -69.775543, 45.549640 ], [ -69.773483, 45.545793 ], [ -69.780350, 45.542908 ], [ -69.732971, 45.389289 ], [ -69.701385, 45.295660 ], [ -69.700699, 45.292762 ], [ -69.708939, 45.291796 ], [ -69.705505, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.684219, 45.212520 ], [ -69.687653, 45.208166 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.632034, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128773 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152506 ], [ -70.367432, 45.835019 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.267868, 45.886185 ], [ -70.262375, 45.888096 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897655 ], [ -70.261002, 45.899088 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.907689 ], [ -70.256195, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.927274 ], [ -69.667053, 45.927274 ], [ -69.647141, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.648514, 45.863238 ], [ -69.651260, 45.863238 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.864194 ], [ -69.654007, 45.863238 ], [ -69.655380, 45.862759 ], [ -69.655380, 45.861803 ], [ -69.657440, 45.862281 ], [ -69.656754, 45.860369 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.662933, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.664993, 45.862281 ], [ -69.667740, 45.862281 ], [ -69.670486, 45.860847 ], [ -69.673920, 45.862759 ], [ -69.673920, 45.861803 ], [ -69.672546, 45.859890 ], [ -69.674606, 45.857499 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853195 ], [ -69.678040, 45.853195 ], [ -69.678726, 45.852239 ], [ -69.682846, 45.852239 ], [ -69.683533, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853195 ], [ -69.686966, 45.854152 ], [ -69.690399, 45.854630 ], [ -69.689713, 45.855108 ], [ -69.689713, 45.858456 ], [ -69.692459, 45.859412 ], [ -69.691772, 45.860847 ], [ -69.694519, 45.862281 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.864194 ], [ -69.697266, 45.864672 ], [ -69.697266, 45.867541 ], [ -69.699326, 45.868975 ], [ -69.699326, 45.870410 ], [ -69.701385, 45.872800 ], [ -69.700699, 45.874234 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.879015 ], [ -69.702072, 45.879015 ], [ -69.702072, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.702072, 45.886185 ], [ -69.706192, 45.885229 ], [ -69.709625, 45.885707 ], [ -69.711685, 45.885229 ], [ -69.713058, 45.883317 ], [ -69.716492, 45.883795 ], [ -69.717178, 45.882839 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.733658, 45.880449 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881405 ], [ -69.737091, 45.880927 ], [ -69.737091, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.880449 ], [ -69.733658, 45.879493 ], [ -69.735031, 45.879015 ], [ -69.734344, 45.877103 ], [ -69.731598, 45.877103 ], [ -69.728165, 45.875668 ], [ -69.727478, 45.876146 ], [ -69.727478, 45.874712 ], [ -69.724731, 45.874234 ], [ -69.725418, 45.872322 ], [ -69.724045, 45.870888 ], [ -69.724731, 45.868019 ], [ -69.726105, 45.867541 ], [ -69.725418, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.715118, 45.862281 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.856543 ], [ -69.709625, 45.856065 ], [ -69.708939, 45.854630 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.704819, 45.846499 ], [ -69.707565, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.836932 ], [ -69.712372, 45.834062 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832148 ], [ -69.718552, 45.833584 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721985, 45.835019 ], [ -69.723358, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.719925, 45.834062 ], [ -69.718552, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829278 ], [ -69.715805, 45.825928 ], [ -69.713058, 45.823536 ], [ -69.713058, 45.819708 ], [ -69.709625, 45.815401 ], [ -69.708939, 45.811093 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801999 ], [ -69.716492, 45.801042 ], [ -69.718552, 45.797691 ], [ -69.719238, 45.791467 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788594 ], [ -69.723358, 45.786200 ], [ -69.723358, 45.783327 ], [ -69.733658, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.728165, 45.775186 ], [ -69.728165, 45.773270 ], [ -69.726105, 45.771834 ], [ -69.724731, 45.766086 ], [ -69.726791, 45.762254 ], [ -69.730225, 45.760338 ], [ -69.730225, 45.759380 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.755547 ], [ -69.743958, 45.760338 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761775 ], [ -69.750137, 45.763212 ], [ -69.751511, 45.766086 ], [ -69.750824, 45.763691 ], [ -69.752884, 45.761775 ], [ -69.758377, 45.761775 ], [ -69.760437, 45.762254 ], [ -69.762497, 45.761296 ], [ -69.769363, 45.761775 ], [ -69.767990, 45.763212 ], [ -69.771423, 45.763691 ], [ -69.772797, 45.765128 ], [ -69.774857, 45.765128 ], [ -69.774170, 45.766086 ], [ -69.776917, 45.768002 ], [ -69.777603, 45.770876 ], [ -69.779663, 45.772313 ], [ -69.781036, 45.775665 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.776623 ], [ -69.781723, 45.778539 ], [ -69.783096, 45.778539 ], [ -69.783783, 45.777102 ], [ -69.785156, 45.777102 ], [ -69.785843, 45.779496 ], [ -69.783783, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.781723, 45.781891 ], [ -69.784470, 45.783806 ], [ -69.784470, 45.784285 ], [ -69.785156, 45.785721 ], [ -69.788589, 45.785243 ], [ -69.788589, 45.784764 ] ], [ [ -69.807816, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.809189, 45.722960 ], [ -69.807816, 45.722480 ] ], [ [ -69.826355, 45.741173 ], [ -69.827042, 45.740214 ], [ -69.833221, 45.738777 ], [ -69.830475, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.827728, 45.739256 ], [ -69.825668, 45.739735 ], [ -69.826355, 45.741173 ] ], [ [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798889, 45.784764 ] ], [ [ -69.797516, 45.783327 ], [ -69.796829, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785721 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783327 ] ], [ [ -69.798889, 45.784764 ], [ -69.801636, 45.785721 ], [ -69.801636, 45.785243 ], [ -69.798889, 45.784764 ] ], [ [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798203, 45.784764 ], [ -69.798889, 45.784764 ] ], [ [ -69.788589, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.782848 ], [ -69.788589, 45.784764 ] ] ], [ [ [ -69.355316, 45.072066 ], [ -69.349136, 45.050240 ], [ -69.499512, 45.050240 ], [ -69.500198, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.355316, 45.072066 ] ] ], [ [ [ -69.732971, 45.657248 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657248 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 91 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 45.111331 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.365028, 45.157832 ], [ -70.363655, 45.152506 ], [ -70.384598, 45.149600 ], [ -70.418587, 45.144031 ], [ -70.427513, 45.176229 ], [ -70.439529, 45.223403 ], [ -70.455666, 45.283342 ], [ -70.472832, 45.351421 ], [ -70.518837, 45.512362 ], [ -70.505791, 45.513805 ], [ -70.534286, 45.602989 ], [ -70.538406, 45.619320 ], [ -70.553169, 45.668045 ], [ -70.547333, 45.666126 ], [ -70.545959, 45.666366 ], [ -70.544930, 45.667086 ], [ -70.542526, 45.666606 ], [ -70.539780, 45.667805 ], [ -70.538406, 45.669005 ], [ -70.537720, 45.669005 ], [ -70.536690, 45.669725 ], [ -70.535660, 45.669725 ], [ -70.534286, 45.671164 ], [ -70.533257, 45.671164 ], [ -70.530853, 45.669965 ], [ -70.529137, 45.668045 ], [ -70.527077, 45.666606 ], [ -70.526047, 45.666606 ], [ -70.523643, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.672843 ], [ -70.518150, 45.673323 ], [ -70.517464, 45.674283 ], [ -70.514030, 45.675962 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506477, 45.681239 ], [ -70.505104, 45.681239 ], [ -70.504761, 45.681719 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683398 ], [ -70.496864, 45.685557 ], [ -70.496521, 45.685796 ], [ -70.497208, 45.686276 ], [ -70.494804, 45.687715 ], [ -70.493774, 45.689154 ], [ -70.489655, 45.690113 ], [ -70.488968, 45.690833 ], [ -70.486908, 45.691552 ], [ -70.485535, 45.692512 ], [ -70.485191, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.479698, 45.694910 ], [ -70.477982, 45.696348 ], [ -70.475235, 45.697787 ], [ -70.475235, 45.698746 ], [ -70.469398, 45.701624 ], [ -70.470772, 45.703302 ], [ -70.468025, 45.704261 ], [ -70.466652, 45.706179 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460472, 45.705940 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.454636, 45.706899 ], [ -70.453262, 45.705220 ], [ -70.452232, 45.705220 ], [ -70.451202, 45.704021 ], [ -70.449142, 45.704501 ], [ -70.445366, 45.703782 ], [ -70.441246, 45.705460 ], [ -70.440559, 45.704501 ], [ -70.439186, 45.704021 ], [ -70.431633, 45.707138 ], [ -70.429573, 45.707378 ], [ -70.429230, 45.708097 ], [ -70.428543, 45.708097 ], [ -70.428543, 45.707618 ], [ -70.426140, 45.707138 ], [ -70.425797, 45.707858 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710255 ], [ -70.429230, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.428543, 45.710495 ], [ -70.426140, 45.711933 ], [ -70.423393, 45.711933 ], [ -70.422707, 45.712413 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715529 ], [ -70.413094, 45.716728 ], [ -70.410690, 45.716488 ], [ -70.407944, 45.716967 ], [ -70.406570, 45.717926 ], [ -70.403824, 45.718405 ], [ -70.402794, 45.719364 ], [ -70.400734, 45.719844 ], [ -70.399704, 45.720802 ], [ -70.400734, 45.721761 ], [ -70.397987, 45.723439 ], [ -70.397301, 45.725596 ], [ -70.397987, 45.725836 ], [ -70.397987, 45.726794 ], [ -70.397301, 45.727034 ], [ -70.396957, 45.728951 ], [ -70.395584, 45.729670 ], [ -70.392838, 45.729431 ], [ -70.391464, 45.728472 ], [ -70.390434, 45.728712 ], [ -70.385971, 45.732786 ], [ -70.385971, 45.733505 ], [ -70.384254, 45.734463 ], [ -70.385971, 45.734703 ], [ -70.385971, 45.735182 ], [ -70.384941, 45.735901 ], [ -70.385628, 45.736380 ], [ -70.387001, 45.736620 ], [ -70.388718, 45.735901 ], [ -70.390434, 45.736380 ], [ -70.390778, 45.737099 ], [ -70.389748, 45.737578 ], [ -70.391121, 45.737578 ], [ -70.392494, 45.738537 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393181, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394554, 45.744287 ], [ -70.393181, 45.744287 ], [ -70.392494, 45.745725 ], [ -70.390434, 45.746444 ], [ -70.388374, 45.748360 ], [ -70.389061, 45.749319 ], [ -70.388718, 45.750516 ], [ -70.394897, 45.754828 ], [ -70.396271, 45.756745 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762493 ], [ -70.407257, 45.764170 ], [ -70.406570, 45.764649 ], [ -70.406570, 45.768960 ], [ -70.405540, 45.770157 ], [ -70.406227, 45.771355 ], [ -70.407600, 45.772313 ], [ -70.407944, 45.773510 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.408974, 45.779975 ], [ -70.408287, 45.780454 ], [ -70.410347, 45.784285 ], [ -70.411377, 45.784764 ], [ -70.415497, 45.784524 ], [ -70.416183, 45.785482 ], [ -70.414467, 45.790270 ], [ -70.415154, 45.791706 ], [ -70.416870, 45.793621 ], [ -70.417900, 45.794100 ], [ -70.417213, 45.795537 ], [ -70.406914, 45.797930 ], [ -70.405197, 45.796733 ], [ -70.403137, 45.796015 ], [ -70.401764, 45.796015 ], [ -70.399017, 45.796733 ], [ -70.397301, 45.797930 ], [ -70.395927, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.395927, 45.802717 ], [ -70.397987, 45.803914 ], [ -70.396957, 45.805589 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812290 ], [ -70.390434, 45.813486 ], [ -70.388374, 45.813965 ], [ -70.388374, 45.818990 ], [ -70.383911, 45.822100 ], [ -70.383224, 45.822100 ], [ -70.380821, 45.824493 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828082 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.369835, 45.832866 ], [ -70.372238, 45.834062 ], [ -70.370522, 45.835497 ], [ -70.368805, 45.836215 ], [ -70.367775, 45.835976 ], [ -70.367432, 45.835019 ], [ -70.365028, 45.834780 ], [ -70.362625, 45.835736 ], [ -70.359535, 45.835497 ], [ -70.358505, 45.836693 ], [ -70.356445, 45.837650 ], [ -70.356789, 45.839324 ], [ -70.352325, 45.840999 ], [ -70.352325, 45.841955 ], [ -70.353012, 45.842673 ], [ -70.351982, 45.844108 ], [ -70.351295, 45.844108 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847217 ], [ -70.348549, 45.847456 ], [ -70.346146, 45.849369 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852478 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285034, 45.871844 ], [ -70.285034, 45.111331 ] ] ], [ [ [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.298767, 46.030581 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.285034, 46.048455 ], [ -70.285034, 45.995531 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ] ] ], [ [ [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.967856 ], [ -70.312500, 45.970243 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.285034, 45.994815 ], [ -70.285034, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ] ] ], [ [ [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -70.285034, 46.092281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 45.871844 ], [ -70.285034, 45.111331 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.365028, 45.157832 ], [ -70.363655, 45.152506 ], [ -70.384598, 45.149600 ], [ -70.418587, 45.144031 ], [ -70.427513, 45.176229 ], [ -70.439529, 45.223403 ], [ -70.455666, 45.283342 ], [ -70.472832, 45.351421 ], [ -70.518837, 45.512362 ], [ -70.505791, 45.513805 ], [ -70.534286, 45.602989 ], [ -70.538406, 45.619320 ], [ -70.553169, 45.668045 ], [ -70.547333, 45.666126 ], [ -70.545959, 45.666366 ], [ -70.544930, 45.667086 ], [ -70.542526, 45.666606 ], [ -70.539780, 45.667805 ], [ -70.538406, 45.669005 ], [ -70.537720, 45.669005 ], [ -70.536690, 45.669725 ], [ -70.535660, 45.669725 ], [ -70.534286, 45.671164 ], [ -70.533257, 45.671164 ], [ -70.530853, 45.669965 ], [ -70.529137, 45.668045 ], [ -70.527077, 45.666606 ], [ -70.526047, 45.666606 ], [ -70.523643, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.672843 ], [ -70.518150, 45.673323 ], [ -70.517464, 45.674283 ], [ -70.514030, 45.675962 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506477, 45.681239 ], [ -70.505104, 45.681239 ], [ -70.504761, 45.681719 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683398 ], [ -70.496864, 45.685557 ], [ -70.496521, 45.685796 ], [ -70.497208, 45.686276 ], [ -70.494804, 45.687715 ], [ -70.493774, 45.689154 ], [ -70.489655, 45.690113 ], [ -70.488968, 45.690833 ], [ -70.486908, 45.691552 ], [ -70.485535, 45.692512 ], [ -70.485191, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.479698, 45.694910 ], [ -70.477982, 45.696348 ], [ -70.475235, 45.697787 ], [ -70.475235, 45.698746 ], [ -70.469398, 45.701624 ], [ -70.470772, 45.703302 ], [ -70.468025, 45.704261 ], [ -70.466652, 45.706179 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460472, 45.705940 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.454636, 45.706899 ], [ -70.453262, 45.705220 ], [ -70.452232, 45.705220 ], [ -70.451202, 45.704021 ], [ -70.449142, 45.704501 ], [ -70.445366, 45.703782 ], [ -70.441246, 45.705460 ], [ -70.440559, 45.704501 ], [ -70.439186, 45.704021 ], [ -70.431633, 45.707138 ], [ -70.429573, 45.707378 ], [ -70.429230, 45.708097 ], [ -70.428543, 45.708097 ], [ -70.428543, 45.707618 ], [ -70.426140, 45.707138 ], [ -70.425797, 45.707858 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710255 ], [ -70.429230, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.428543, 45.710495 ], [ -70.426140, 45.711933 ], [ -70.423393, 45.711933 ], [ -70.422707, 45.712413 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715529 ], [ -70.413094, 45.716728 ], [ -70.410690, 45.716488 ], [ -70.407944, 45.716967 ], [ -70.406570, 45.717926 ], [ -70.403824, 45.718405 ], [ -70.402794, 45.719364 ], [ -70.400734, 45.719844 ], [ -70.399704, 45.720802 ], [ -70.400734, 45.721761 ], [ -70.397987, 45.723439 ], [ -70.397301, 45.725596 ], [ -70.397987, 45.725836 ], [ -70.397987, 45.726794 ], [ -70.397301, 45.727034 ], [ -70.396957, 45.728951 ], [ -70.395584, 45.729670 ], [ -70.392838, 45.729431 ], [ -70.391464, 45.728472 ], [ -70.390434, 45.728712 ], [ -70.385971, 45.732786 ], [ -70.385971, 45.733505 ], [ -70.384254, 45.734463 ], [ -70.385971, 45.734703 ], [ -70.385971, 45.735182 ], [ -70.384941, 45.735901 ], [ -70.385628, 45.736380 ], [ -70.387001, 45.736620 ], [ -70.388718, 45.735901 ], [ -70.390434, 45.736380 ], [ -70.390778, 45.737099 ], [ -70.389748, 45.737578 ], [ -70.391121, 45.737578 ], [ -70.392494, 45.738537 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393181, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394554, 45.744287 ], [ -70.393181, 45.744287 ], [ -70.392494, 45.745725 ], [ -70.390434, 45.746444 ], [ -70.388374, 45.748360 ], [ -70.389061, 45.749319 ], [ -70.388718, 45.750516 ], [ -70.394897, 45.754828 ], [ -70.396271, 45.756745 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762493 ], [ -70.407257, 45.764170 ], [ -70.406570, 45.764649 ], [ -70.406570, 45.768960 ], [ -70.405540, 45.770157 ], [ -70.406227, 45.771355 ], [ -70.407600, 45.772313 ], [ -70.407944, 45.773510 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.408974, 45.779975 ], [ -70.408287, 45.780454 ], [ -70.410347, 45.784285 ], [ -70.411377, 45.784764 ], [ -70.415497, 45.784524 ], [ -70.416183, 45.785482 ], [ -70.414467, 45.790270 ], [ -70.415154, 45.791706 ], [ -70.416870, 45.793621 ], [ -70.417900, 45.794100 ], [ -70.417213, 45.795537 ], [ -70.406914, 45.797930 ], [ -70.405197, 45.796733 ], [ -70.403137, 45.796015 ], [ -70.401764, 45.796015 ], [ -70.399017, 45.796733 ], [ -70.397301, 45.797930 ], [ -70.395927, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.395927, 45.802717 ], [ -70.397987, 45.803914 ], [ -70.396957, 45.805589 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812290 ], [ -70.390434, 45.813486 ], [ -70.388374, 45.813965 ], [ -70.388374, 45.818990 ], [ -70.383911, 45.822100 ], [ -70.383224, 45.822100 ], [ -70.380821, 45.824493 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828082 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.369835, 45.832866 ], [ -70.372238, 45.834062 ], [ -70.370522, 45.835497 ], [ -70.368805, 45.836215 ], [ -70.367775, 45.835976 ], [ -70.367432, 45.835019 ], [ -70.365028, 45.834780 ], [ -70.362625, 45.835736 ], [ -70.359535, 45.835497 ], [ -70.358505, 45.836693 ], [ -70.356445, 45.837650 ], [ -70.356789, 45.839324 ], [ -70.352325, 45.840999 ], [ -70.352325, 45.841955 ], [ -70.353012, 45.842673 ], [ -70.351982, 45.844108 ], [ -70.351295, 45.844108 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847217 ], [ -70.348549, 45.847456 ], [ -70.346146, 45.849369 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852478 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285034, 45.871844 ] ] ], [ [ [ -70.285034, 46.092281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -70.285034, 46.092281 ] ] ], [ [ [ -70.285034, 45.995531 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.298767, 46.030581 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.285034, 46.048455 ], [ -70.285034, 45.995531 ] ] ], [ [ [ -70.285034, 45.994815 ], [ -70.285034, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.967856 ], [ -70.312500, 45.970243 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.285034, 45.994815 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 90 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.286407, 46.096805 ], [ -70.285034, 46.097281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ] ] ], [ [ [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191240 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.286064, 46.196943 ], [ -70.285378, 46.197656 ], [ -70.285034, 46.197656 ], [ -70.285034, 46.182445 ], [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ] ] ], [ [ [ -70.285034, 46.100138 ], [ -70.285034, 46.099186 ], [ -70.286064, 46.099900 ], [ -70.285034, 46.100138 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 46.097281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.286407, 46.096805 ], [ -70.285034, 46.097281 ] ] ], [ [ [ -70.285034, 46.182445 ], [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191240 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.286064, 46.196943 ], [ -70.285378, 46.197656 ], [ -70.285034, 46.197656 ], [ -70.285034, 46.182445 ] ] ], [ [ [ -70.285034, 46.100138 ], [ -70.285034, 46.099186 ], [ -70.286064, 46.099900 ], [ -70.285034, 46.100138 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 92 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.053878 ], [ -69.495392, 45.037384 ], [ -69.518738, 45.034472 ], [ -69.515991, 45.025252 ], [ -69.585686, 45.015545 ], [ -69.621048, 45.011176 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.657440, 45.108423 ], [ -69.101601, 45.108423 ], [ -69.204254, 45.093883 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.101601, 45.108423 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.053878 ], [ -69.495392, 45.037384 ], [ -69.518738, 45.034472 ], [ -69.515991, 45.025252 ], [ -69.585686, 45.015545 ], [ -69.621048, 45.011176 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.657440, 45.108423 ], [ -69.101601, 45.108423 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.621048, 45.011176 ], [ -69.585686, 45.015545 ], [ -69.515991, 45.025252 ], [ -69.518738, 45.034472 ], [ -69.495392, 45.037384 ], [ -69.500198, 45.053878 ], [ -69.356003, 45.073521 ], [ -69.327164, 44.973785 ], [ -69.320984, 44.950221 ], [ -69.308968, 44.908900 ], [ -69.303474, 44.886769 ], [ -69.299011, 44.873146 ], [ -69.281845, 44.810827 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267082, 44.723076 ], [ -69.267082, 44.722100 ], [ -69.267769, 44.721857 ], [ -69.327507, 44.714538 ], [ -69.343643, 44.749903 ], [ -69.348450, 44.749172 ], [ -69.350510, 44.749415 ], [ -69.352226, 44.750147 ], [ -69.355659, 44.750391 ], [ -69.356689, 44.750878 ], [ -69.360809, 44.751122 ], [ -69.363556, 44.751854 ], [ -69.365616, 44.753073 ], [ -69.371796, 44.754779 ], [ -69.374542, 44.754292 ], [ -69.383469, 44.754292 ], [ -69.385529, 44.754048 ], [ -69.388618, 44.752585 ], [ -69.388618, 44.747465 ], [ -69.389992, 44.746977 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.746977 ], [ -69.398575, 44.745270 ], [ -69.398232, 44.742100 ], [ -69.396858, 44.737954 ], [ -69.395142, 44.735272 ], [ -69.395142, 44.732345 ], [ -69.395485, 44.731613 ], [ -69.396858, 44.730882 ], [ -69.399948, 44.730150 ], [ -69.406128, 44.727223 ], [ -69.408531, 44.723564 ], [ -69.414711, 44.718929 ], [ -69.415054, 44.718441 ], [ -69.414024, 44.716734 ], [ -69.415398, 44.715026 ], [ -69.416084, 44.711122 ], [ -69.417458, 44.709414 ], [ -69.416771, 44.704534 ], [ -69.417114, 44.701118 ], [ -69.472046, 44.693064 ], [ -69.467583, 44.708194 ], [ -69.473419, 44.708926 ], [ -69.470673, 44.718197 ], [ -69.484062, 44.720393 ], [ -69.581566, 44.707950 ], [ -69.633408, 44.700386 ], [ -69.632721, 44.697457 ], [ -69.633064, 44.691112 ], [ -69.632378, 44.688671 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673292 ], [ -69.627914, 44.670850 ], [ -69.621735, 44.664990 ], [ -69.618301, 44.657664 ], [ -69.614525, 44.654245 ], [ -69.607315, 44.652047 ], [ -69.605598, 44.651070 ], [ -69.599419, 44.644475 ], [ -69.592209, 44.639590 ], [ -69.586029, 44.632261 ], [ -69.581909, 44.630306 ], [ -69.579163, 44.627130 ], [ -69.579163, 44.623465 ], [ -69.580193, 44.621510 ], [ -69.581909, 44.618577 ], [ -69.590492, 44.608068 ], [ -69.593239, 44.602935 ], [ -69.592209, 44.595601 ], [ -69.590836, 44.594134 ], [ -69.589462, 44.590223 ], [ -69.589462, 44.588756 ], [ -69.590149, 44.588022 ], [ -69.591522, 44.583865 ], [ -69.593582, 44.582154 ], [ -69.600792, 44.580442 ], [ -69.604568, 44.578730 ], [ -69.605942, 44.577508 ], [ -69.742241, 44.598290 ], [ -69.744301, 44.602691 ], [ -69.775543, 44.608313 ], [ -69.776573, 44.608313 ], [ -69.777260, 44.607579 ], [ -69.787560, 44.594134 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819145, 44.581665 ], [ -69.818802, 44.582154 ], [ -69.817772, 44.582154 ], [ -69.818115, 44.582398 ], [ -69.817429, 44.582643 ], [ -69.817429, 44.583621 ], [ -69.816742, 44.584354 ], [ -69.818115, 44.584599 ], [ -69.818115, 44.585333 ], [ -69.817429, 44.585088 ], [ -69.817085, 44.585822 ], [ -69.817772, 44.585577 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.587778 ], [ -69.818802, 44.588511 ], [ -69.818115, 44.588511 ], [ -69.817772, 44.589000 ], [ -69.818115, 44.590223 ], [ -69.818802, 44.590467 ], [ -69.818115, 44.590712 ], [ -69.818459, 44.591201 ], [ -69.817429, 44.591690 ], [ -69.818115, 44.591690 ], [ -69.818115, 44.592179 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.592912 ], [ -69.818115, 44.592912 ], [ -69.818802, 44.594379 ], [ -69.818115, 44.594379 ], [ -69.818459, 44.595601 ], [ -69.817429, 44.596579 ], [ -69.817429, 44.598046 ], [ -69.818115, 44.597557 ], [ -69.818802, 44.598046 ], [ -69.818802, 44.599268 ], [ -69.820518, 44.599757 ], [ -69.820518, 44.600735 ], [ -69.821205, 44.600491 ], [ -69.822578, 44.600980 ], [ -69.822578, 44.601957 ], [ -69.821548, 44.602202 ], [ -69.820518, 44.603180 ], [ -69.820862, 44.604402 ], [ -69.822922, 44.604646 ], [ -69.821892, 44.604891 ], [ -69.822235, 44.605379 ], [ -69.822922, 44.605379 ], [ -69.822922, 44.606113 ], [ -69.822235, 44.606602 ], [ -69.822235, 44.607090 ], [ -69.822922, 44.607090 ], [ -69.822578, 44.607824 ], [ -69.824295, 44.607824 ], [ -69.825668, 44.606846 ], [ -69.826698, 44.608068 ], [ -69.828415, 44.608313 ], [ -69.853477, 44.621510 ], [ -69.887123, 44.616622 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658641 ], [ -69.967804, 44.659862 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663037 ], [ -69.966087, 44.663037 ], [ -69.964027, 44.660839 ], [ -69.960251, 44.660595 ], [ -69.958878, 44.662548 ], [ -69.958878, 44.666455 ], [ -69.958191, 44.667920 ], [ -69.959221, 44.671094 ], [ -69.961624, 44.673292 ], [ -69.964027, 44.673780 ], [ -69.965401, 44.674757 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678175 ], [ -69.959908, 44.679639 ], [ -69.960251, 44.681348 ], [ -69.996300, 44.677686 ], [ -70.013809, 44.757705 ], [ -70.000763, 44.759168 ], [ -70.003853, 44.773549 ], [ -70.001106, 44.774036 ], [ -70.003166, 44.788414 ], [ -70.015869, 44.786952 ], [ -70.021019, 44.809852 ], [ -70.027199, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.025826, 44.830796 ], [ -70.033379, 44.864630 ], [ -70.104446, 44.854652 ], [ -70.121269, 44.851975 ], [ -70.130196, 44.851001 ], [ -70.141869, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149422, 44.896255 ], [ -70.152855, 44.910359 ], [ -70.144958, 44.911575 ], [ -70.152168, 44.941959 ], [ -70.124702, 44.945361 ], [ -70.110626, 44.947548 ], [ -70.122643, 45.000253 ], [ -70.128479, 45.018214 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.154228, 45.108423 ], [ -69.657440, 45.108423 ], [ -69.655037, 45.100184 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.657440, 45.108423 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.621048, 45.011176 ], [ -69.585686, 45.015545 ], [ -69.515991, 45.025252 ], [ -69.518738, 45.034472 ], [ -69.495392, 45.037384 ], [ -69.500198, 45.053878 ], [ -69.356003, 45.073521 ], [ -69.327164, 44.973785 ], [ -69.320984, 44.950221 ], [ -69.308968, 44.908900 ], [ -69.303474, 44.886769 ], [ -69.299011, 44.873146 ], [ -69.281845, 44.810827 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267082, 44.723076 ], [ -69.267082, 44.722100 ], [ -69.267769, 44.721857 ], [ -69.327507, 44.714538 ], [ -69.343643, 44.749903 ], [ -69.348450, 44.749172 ], [ -69.350510, 44.749415 ], [ -69.352226, 44.750147 ], [ -69.355659, 44.750391 ], [ -69.356689, 44.750878 ], [ -69.360809, 44.751122 ], [ -69.363556, 44.751854 ], [ -69.365616, 44.753073 ], [ -69.371796, 44.754779 ], [ -69.374542, 44.754292 ], [ -69.383469, 44.754292 ], [ -69.385529, 44.754048 ], [ -69.388618, 44.752585 ], [ -69.388618, 44.747465 ], [ -69.389992, 44.746977 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.746977 ], [ -69.398575, 44.745270 ], [ -69.398232, 44.742100 ], [ -69.396858, 44.737954 ], [ -69.395142, 44.735272 ], [ -69.395142, 44.732345 ], [ -69.395485, 44.731613 ], [ -69.396858, 44.730882 ], [ -69.399948, 44.730150 ], [ -69.406128, 44.727223 ], [ -69.408531, 44.723564 ], [ -69.414711, 44.718929 ], [ -69.415054, 44.718441 ], [ -69.414024, 44.716734 ], [ -69.415398, 44.715026 ], [ -69.416084, 44.711122 ], [ -69.417458, 44.709414 ], [ -69.416771, 44.704534 ], [ -69.417114, 44.701118 ], [ -69.472046, 44.693064 ], [ -69.467583, 44.708194 ], [ -69.473419, 44.708926 ], [ -69.470673, 44.718197 ], [ -69.484062, 44.720393 ], [ -69.581566, 44.707950 ], [ -69.633408, 44.700386 ], [ -69.632721, 44.697457 ], [ -69.633064, 44.691112 ], [ -69.632378, 44.688671 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673292 ], [ -69.627914, 44.670850 ], [ -69.621735, 44.664990 ], [ -69.618301, 44.657664 ], [ -69.614525, 44.654245 ], [ -69.607315, 44.652047 ], [ -69.605598, 44.651070 ], [ -69.599419, 44.644475 ], [ -69.592209, 44.639590 ], [ -69.586029, 44.632261 ], [ -69.581909, 44.630306 ], [ -69.579163, 44.627130 ], [ -69.579163, 44.623465 ], [ -69.580193, 44.621510 ], [ -69.581909, 44.618577 ], [ -69.590492, 44.608068 ], [ -69.593239, 44.602935 ], [ -69.592209, 44.595601 ], [ -69.590836, 44.594134 ], [ -69.589462, 44.590223 ], [ -69.589462, 44.588756 ], [ -69.590149, 44.588022 ], [ -69.591522, 44.583865 ], [ -69.593582, 44.582154 ], [ -69.600792, 44.580442 ], [ -69.604568, 44.578730 ], [ -69.605942, 44.577508 ], [ -69.742241, 44.598290 ], [ -69.744301, 44.602691 ], [ -69.775543, 44.608313 ], [ -69.776573, 44.608313 ], [ -69.777260, 44.607579 ], [ -69.787560, 44.594134 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819145, 44.581665 ], [ -69.818802, 44.582154 ], [ -69.817772, 44.582154 ], [ -69.818115, 44.582398 ], [ -69.817429, 44.582643 ], [ -69.817429, 44.583621 ], [ -69.816742, 44.584354 ], [ -69.818115, 44.584599 ], [ -69.818115, 44.585333 ], [ -69.817429, 44.585088 ], [ -69.817085, 44.585822 ], [ -69.817772, 44.585577 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.587778 ], [ -69.818802, 44.588511 ], [ -69.818115, 44.588511 ], [ -69.817772, 44.589000 ], [ -69.818115, 44.590223 ], [ -69.818802, 44.590467 ], [ -69.818115, 44.590712 ], [ -69.818459, 44.591201 ], [ -69.817429, 44.591690 ], [ -69.818115, 44.591690 ], [ -69.818115, 44.592179 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.592912 ], [ -69.818115, 44.592912 ], [ -69.818802, 44.594379 ], [ -69.818115, 44.594379 ], [ -69.818459, 44.595601 ], [ -69.817429, 44.596579 ], [ -69.817429, 44.598046 ], [ -69.818115, 44.597557 ], [ -69.818802, 44.598046 ], [ -69.818802, 44.599268 ], [ -69.820518, 44.599757 ], [ -69.820518, 44.600735 ], [ -69.821205, 44.600491 ], [ -69.822578, 44.600980 ], [ -69.822578, 44.601957 ], [ -69.821548, 44.602202 ], [ -69.820518, 44.603180 ], [ -69.820862, 44.604402 ], [ -69.822922, 44.604646 ], [ -69.821892, 44.604891 ], [ -69.822235, 44.605379 ], [ -69.822922, 44.605379 ], [ -69.822922, 44.606113 ], [ -69.822235, 44.606602 ], [ -69.822235, 44.607090 ], [ -69.822922, 44.607090 ], [ -69.822578, 44.607824 ], [ -69.824295, 44.607824 ], [ -69.825668, 44.606846 ], [ -69.826698, 44.608068 ], [ -69.828415, 44.608313 ], [ -69.853477, 44.621510 ], [ -69.887123, 44.616622 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658641 ], [ -69.967804, 44.659862 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663037 ], [ -69.966087, 44.663037 ], [ -69.964027, 44.660839 ], [ -69.960251, 44.660595 ], [ -69.958878, 44.662548 ], [ -69.958878, 44.666455 ], [ -69.958191, 44.667920 ], [ -69.959221, 44.671094 ], [ -69.961624, 44.673292 ], [ -69.964027, 44.673780 ], [ -69.965401, 44.674757 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678175 ], [ -69.959908, 44.679639 ], [ -69.960251, 44.681348 ], [ -69.996300, 44.677686 ], [ -70.013809, 44.757705 ], [ -70.000763, 44.759168 ], [ -70.003853, 44.773549 ], [ -70.001106, 44.774036 ], [ -70.003166, 44.788414 ], [ -70.015869, 44.786952 ], [ -70.021019, 44.809852 ], [ -70.027199, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.025826, 44.830796 ], [ -70.033379, 44.864630 ], [ -70.104446, 44.854652 ], [ -70.121269, 44.851975 ], [ -70.130196, 44.851001 ], [ -70.141869, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149422, 44.896255 ], [ -70.152855, 44.910359 ], [ -70.144958, 44.911575 ], [ -70.152168, 44.941959 ], [ -70.124702, 44.945361 ], [ -70.110626, 44.947548 ], [ -70.122643, 45.000253 ], [ -70.128479, 45.018214 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.154228, 45.108423 ], [ -69.657440, 45.108423 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 91 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.830132, 45.738058 ], [ -69.833221, 45.738537 ], [ -69.832878, 45.739016 ], [ -69.830132, 45.738777 ], [ -69.827042, 45.739975 ], [ -69.826355, 45.741891 ], [ -69.825325, 45.742371 ], [ -69.825325, 45.743089 ], [ -69.823952, 45.743808 ], [ -69.822578, 45.743569 ], [ -69.821892, 45.745006 ], [ -69.819489, 45.745725 ], [ -69.817429, 45.747162 ], [ -69.817085, 45.746683 ], [ -69.815369, 45.747162 ], [ -69.812622, 45.747162 ], [ -69.812965, 45.745965 ], [ -69.812279, 45.745965 ], [ -69.810219, 45.746444 ], [ -69.809189, 45.747162 ], [ -69.806442, 45.747642 ], [ -69.805412, 45.748600 ], [ -69.803696, 45.749079 ], [ -69.801292, 45.749079 ], [ -69.800262, 45.748600 ], [ -69.800262, 45.747881 ], [ -69.798546, 45.747642 ], [ -69.798203, 45.746683 ], [ -69.796486, 45.746204 ], [ -69.793739, 45.746204 ], [ -69.793053, 45.745725 ], [ -69.789963, 45.746683 ], [ -69.789963, 45.747162 ], [ -69.788246, 45.746923 ], [ -69.788246, 45.747402 ], [ -69.789619, 45.747881 ], [ -69.789619, 45.748600 ], [ -69.788589, 45.749079 ], [ -69.788589, 45.749558 ], [ -69.789619, 45.750037 ], [ -69.790993, 45.750037 ], [ -69.791679, 45.750516 ], [ -69.791336, 45.750756 ], [ -69.792366, 45.751235 ], [ -69.791679, 45.753152 ], [ -69.789963, 45.754349 ], [ -69.789963, 45.755787 ], [ -69.792366, 45.756266 ], [ -69.792709, 45.756984 ], [ -69.794769, 45.757703 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.757942 ], [ -69.791679, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.759619 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.762014 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.791336, 45.764409 ], [ -69.790649, 45.764649 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.765846 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.767762 ], [ -69.788933, 45.768960 ], [ -69.787560, 45.768960 ], [ -69.786873, 45.768481 ], [ -69.784813, 45.769439 ], [ -69.782410, 45.769678 ], [ -69.782753, 45.770876 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.772552 ], [ -69.781723, 45.773989 ], [ -69.784126, 45.773031 ], [ -69.784813, 45.774468 ], [ -69.783440, 45.774468 ], [ -69.782753, 45.774947 ], [ -69.784813, 45.775905 ], [ -69.786186, 45.775905 ], [ -69.786186, 45.774947 ], [ -69.787903, 45.774947 ], [ -69.787560, 45.776862 ], [ -69.788933, 45.776862 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.777820 ], [ -69.789619, 45.777820 ], [ -69.789619, 45.778299 ], [ -69.788246, 45.777820 ], [ -69.788246, 45.779257 ], [ -69.787216, 45.779736 ], [ -69.786873, 45.780933 ], [ -69.784813, 45.780933 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.783327 ], [ -69.785500, 45.783327 ], [ -69.785843, 45.783806 ], [ -69.787560, 45.783567 ], [ -69.787560, 45.784045 ], [ -69.788246, 45.784045 ], [ -69.788246, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783567 ], [ -69.792366, 45.783806 ], [ -69.793053, 45.783088 ], [ -69.794083, 45.782848 ], [ -69.795456, 45.783567 ], [ -69.796486, 45.783327 ], [ -69.795799, 45.784285 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.784764 ], [ -69.792023, 45.785482 ], [ -69.791336, 45.784285 ], [ -69.790993, 45.784524 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.783806 ], [ -69.788246, 45.785003 ], [ -69.786530, 45.785003 ], [ -69.785156, 45.785482 ], [ -69.784126, 45.784764 ], [ -69.784470, 45.784045 ], [ -69.783440, 45.785003 ], [ -69.783440, 45.784285 ], [ -69.784126, 45.783806 ], [ -69.783096, 45.783567 ], [ -69.783096, 45.782848 ], [ -69.782066, 45.782848 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781172 ], [ -69.783783, 45.781651 ], [ -69.784126, 45.780454 ], [ -69.785500, 45.779496 ], [ -69.786186, 45.779975 ], [ -69.786186, 45.779017 ], [ -69.785500, 45.779017 ], [ -69.785156, 45.778539 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.776862 ], [ -69.782753, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.780693, 45.777341 ], [ -69.780693, 45.776623 ], [ -69.782066, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.780350, 45.773989 ], [ -69.779320, 45.773270 ], [ -69.779320, 45.772313 ], [ -69.777260, 45.770876 ], [ -69.776573, 45.767762 ], [ -69.775543, 45.767523 ], [ -69.775887, 45.767044 ], [ -69.773827, 45.766086 ], [ -69.774513, 45.764888 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.764409 ], [ -69.771080, 45.763451 ], [ -69.767990, 45.762972 ], [ -69.767990, 45.762014 ], [ -69.768677, 45.762014 ], [ -69.769020, 45.761535 ], [ -69.762154, 45.761296 ], [ -69.761124, 45.762014 ], [ -69.760437, 45.761775 ], [ -69.760094, 45.762254 ], [ -69.759064, 45.762254 ], [ -69.758034, 45.761535 ], [ -69.752884, 45.761775 ], [ -69.750481, 45.763451 ], [ -69.751854, 45.765846 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.764649 ], [ -69.749794, 45.763212 ], [ -69.749107, 45.763212 ], [ -69.747391, 45.761535 ], [ -69.747391, 45.759859 ], [ -69.746361, 45.759859 ], [ -69.746017, 45.760338 ], [ -69.743958, 45.760098 ], [ -69.742241, 45.758182 ], [ -69.742584, 45.757224 ], [ -69.741211, 45.756745 ], [ -69.741211, 45.755547 ], [ -69.739494, 45.755547 ], [ -69.736748, 45.754828 ], [ -69.734001, 45.755308 ], [ -69.733315, 45.756026 ], [ -69.732628, 45.756026 ], [ -69.731598, 45.757942 ], [ -69.729881, 45.759140 ], [ -69.729881, 45.760338 ], [ -69.727821, 45.761056 ], [ -69.727821, 45.761535 ], [ -69.726448, 45.762254 ], [ -69.724731, 45.765846 ], [ -69.725761, 45.771594 ], [ -69.727135, 45.772313 ], [ -69.727821, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.728851, 45.775186 ], [ -69.729881, 45.776383 ], [ -69.731255, 45.776623 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738121, 45.782130 ], [ -69.738121, 45.782848 ], [ -69.734001, 45.783088 ], [ -69.733315, 45.783567 ], [ -69.731598, 45.783567 ], [ -69.730911, 45.783088 ], [ -69.726791, 45.783088 ], [ -69.725418, 45.783806 ], [ -69.724045, 45.783806 ], [ -69.723015, 45.783327 ], [ -69.723358, 45.785961 ], [ -69.722328, 45.787397 ], [ -69.720612, 45.788355 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791228 ], [ -69.719238, 45.794818 ], [ -69.718208, 45.796015 ], [ -69.718208, 45.797691 ], [ -69.717178, 45.798409 ], [ -69.717522, 45.798888 ], [ -69.716835, 45.798888 ], [ -69.716148, 45.800802 ], [ -69.714432, 45.801760 ], [ -69.713745, 45.804871 ], [ -69.713058, 45.805350 ], [ -69.712715, 45.806547 ], [ -69.712029, 45.806786 ], [ -69.710999, 45.808940 ], [ -69.708939, 45.810854 ], [ -69.708939, 45.812290 ], [ -69.709969, 45.814444 ], [ -69.709625, 45.815401 ], [ -69.710655, 45.815879 ], [ -69.711342, 45.817076 ], [ -69.710999, 45.817554 ], [ -69.711685, 45.817794 ], [ -69.712715, 45.819469 ], [ -69.712715, 45.823297 ], [ -69.713402, 45.823536 ], [ -69.714088, 45.824971 ], [ -69.715462, 45.825928 ], [ -69.716492, 45.829038 ], [ -69.718552, 45.829756 ], [ -69.718208, 45.831670 ], [ -69.719582, 45.834062 ], [ -69.720955, 45.834301 ], [ -69.723015, 45.833344 ], [ -69.724388, 45.833344 ], [ -69.725418, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.725075, 45.834062 ], [ -69.723015, 45.834062 ], [ -69.721642, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717522, 45.834540 ], [ -69.718208, 45.833344 ], [ -69.715118, 45.831909 ], [ -69.712029, 45.832388 ], [ -69.712029, 45.833823 ], [ -69.710999, 45.834062 ], [ -69.709625, 45.835976 ], [ -69.708252, 45.836693 ], [ -69.708939, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.838128 ], [ -69.707565, 45.839324 ], [ -69.707222, 45.842673 ], [ -69.706535, 45.843151 ], [ -69.706535, 45.843869 ], [ -69.705505, 45.844347 ], [ -69.705505, 45.845543 ], [ -69.704475, 45.846260 ], [ -69.705162, 45.846739 ], [ -69.706879, 45.846499 ], [ -69.707909, 45.846978 ], [ -69.707909, 45.849130 ], [ -69.708595, 45.850565 ], [ -69.706879, 45.852956 ], [ -69.706192, 45.853195 ], [ -69.705849, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.706535, 45.854630 ], [ -69.707222, 45.854152 ], [ -69.708939, 45.854391 ], [ -69.709625, 45.854869 ], [ -69.709282, 45.855826 ], [ -69.711342, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.713402, 45.861086 ], [ -69.715118, 45.862281 ], [ -69.716148, 45.863477 ], [ -69.716148, 45.864433 ], [ -69.717522, 45.865150 ], [ -69.717522, 45.865867 ], [ -69.720955, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.722672, 45.865628 ], [ -69.724388, 45.865628 ], [ -69.725075, 45.866106 ], [ -69.725075, 45.867063 ], [ -69.725761, 45.866824 ], [ -69.725761, 45.867302 ], [ -69.724388, 45.868019 ], [ -69.724731, 45.868975 ], [ -69.723701, 45.870888 ], [ -69.724388, 45.872083 ], [ -69.725075, 45.872083 ], [ -69.724731, 45.873995 ], [ -69.727135, 45.874712 ], [ -69.727135, 45.875668 ], [ -69.727478, 45.875429 ], [ -69.728165, 45.875429 ], [ -69.731255, 45.876863 ], [ -69.731941, 45.876624 ], [ -69.734001, 45.877103 ], [ -69.734688, 45.878776 ], [ -69.733658, 45.879254 ], [ -69.735031, 45.879493 ], [ -69.736061, 45.880210 ], [ -69.737778, 45.880210 ], [ -69.737778, 45.881166 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881644 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.883317 ], [ -69.736748, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881166 ], [ -69.735718, 45.880449 ], [ -69.733315, 45.880210 ], [ -69.732628, 45.879493 ], [ -69.732628, 45.878537 ], [ -69.731941, 45.878537 ], [ -69.730225, 45.879732 ], [ -69.727821, 45.879732 ], [ -69.727135, 45.880449 ], [ -69.725761, 45.880210 ], [ -69.724731, 45.879493 ], [ -69.724731, 45.879732 ], [ -69.723358, 45.879971 ], [ -69.723701, 45.880688 ], [ -69.723015, 45.881166 ], [ -69.720612, 45.881644 ], [ -69.719582, 45.882361 ], [ -69.717178, 45.882600 ], [ -69.716492, 45.883556 ], [ -69.712715, 45.883317 ], [ -69.712715, 45.884273 ], [ -69.712029, 45.884273 ], [ -69.711685, 45.884990 ], [ -69.709625, 45.885229 ], [ -69.709282, 45.885707 ], [ -69.707565, 45.885707 ], [ -69.705849, 45.884990 ], [ -69.704132, 45.885229 ], [ -69.703445, 45.885946 ], [ -69.702072, 45.886185 ], [ -69.699669, 45.885707 ], [ -69.698296, 45.885946 ], [ -69.697952, 45.885229 ], [ -69.698639, 45.884751 ], [ -69.698639, 45.880449 ], [ -69.701729, 45.879971 ], [ -69.701729, 45.879015 ], [ -69.702759, 45.878776 ], [ -69.702759, 45.876863 ], [ -69.702072, 45.876624 ], [ -69.702072, 45.875668 ], [ -69.701385, 45.875429 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.872561 ], [ -69.700356, 45.872083 ], [ -69.700356, 45.870888 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868736 ], [ -69.696922, 45.867541 ], [ -69.697266, 45.864433 ], [ -69.694176, 45.864194 ], [ -69.692116, 45.865150 ], [ -69.692116, 45.864672 ], [ -69.693489, 45.864194 ], [ -69.692802, 45.863238 ], [ -69.693146, 45.862520 ], [ -69.693832, 45.862520 ], [ -69.694176, 45.862042 ], [ -69.691429, 45.860847 ], [ -69.692116, 45.859173 ], [ -69.690399, 45.858934 ], [ -69.689369, 45.858217 ], [ -69.689369, 45.855108 ], [ -69.690399, 45.854391 ], [ -69.686966, 45.853913 ], [ -69.685936, 45.852956 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.684219, 45.851282 ], [ -69.683533, 45.851043 ], [ -69.682503, 45.852239 ], [ -69.681816, 45.851760 ], [ -69.679413, 45.851760 ], [ -69.678383, 45.852000 ], [ -69.678040, 45.852956 ], [ -69.676323, 45.852956 ], [ -69.676666, 45.851521 ], [ -69.674606, 45.852239 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.855826 ], [ -69.673920, 45.856304 ], [ -69.674263, 45.857499 ], [ -69.672546, 45.858695 ], [ -69.672546, 45.859651 ], [ -69.673233, 45.859890 ], [ -69.673233, 45.860847 ], [ -69.673920, 45.861086 ], [ -69.674606, 45.862281 ], [ -69.673576, 45.861803 ], [ -69.673576, 45.862520 ], [ -69.672203, 45.862042 ], [ -69.671516, 45.861325 ], [ -69.670486, 45.861325 ], [ -69.670143, 45.860847 ], [ -69.668770, 45.861564 ], [ -69.667740, 45.861564 ], [ -69.667397, 45.862042 ], [ -69.664650, 45.862042 ], [ -69.663963, 45.861564 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662590, 45.861325 ], [ -69.661560, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.659843, 45.860608 ], [ -69.659157, 45.860608 ], [ -69.659500, 45.861086 ], [ -69.658813, 45.861325 ], [ -69.658127, 45.860608 ], [ -69.656754, 45.860369 ], [ -69.656410, 45.860847 ], [ -69.657097, 45.861325 ], [ -69.657097, 45.862042 ], [ -69.655724, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.654694, 45.862281 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.862998 ], [ -69.654007, 45.863955 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.862998 ], [ -69.650230, 45.863477 ], [ -69.649200, 45.863477 ], [ -69.648514, 45.862998 ], [ -69.648170, 45.863716 ], [ -69.646797, 45.863238 ], [ -69.661560, 45.910555 ], [ -69.677696, 45.965231 ], [ -69.683876, 45.983842 ], [ -69.728851, 45.976924 ], [ -69.728851, 46.037969 ], [ -69.729538, 46.053697 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.092281 ], [ -68.878784, 46.092281 ], [ -68.878784, 45.734943 ], [ -69.810905, 45.734943 ], [ -69.812622, 45.735901 ], [ -69.812622, 45.736380 ], [ -69.810219, 45.736141 ], [ -69.811592, 45.736860 ], [ -69.811592, 45.737339 ], [ -69.819832, 45.739256 ], [ -69.820518, 45.739735 ], [ -69.820175, 45.740454 ], [ -69.821548, 45.740454 ], [ -69.824295, 45.742371 ], [ -69.826012, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827385, 45.739016 ], [ -69.827385, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.830132, 45.738058 ] ], [ [ -69.791679, 45.784045 ], [ -69.792366, 45.784045 ], [ -69.792366, 45.783806 ], [ -69.791679, 45.784045 ] ] ], [ [ [ -69.797173, 45.783327 ], [ -69.797859, 45.783327 ], [ -69.797859, 45.784285 ], [ -69.798546, 45.784524 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.800262, 45.784524 ], [ -69.801292, 45.784764 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.802322, 45.785961 ], [ -69.801979, 45.786440 ], [ -69.801636, 45.785482 ], [ -69.797859, 45.784764 ], [ -69.797516, 45.784524 ], [ -69.797516, 45.785721 ], [ -69.796486, 45.785003 ], [ -69.796143, 45.785243 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.784285 ], [ -69.797173, 45.783327 ] ], [ [ -69.797516, 45.784524 ], [ -69.797173, 45.784285 ], [ -69.797173, 45.784045 ], [ -69.796829, 45.784285 ], [ -69.797516, 45.784524 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.707222, 45.854152 ], [ -69.708939, 45.854391 ], [ -69.709625, 45.854869 ], [ -69.709282, 45.855826 ], [ -69.711342, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.713402, 45.861086 ], [ -69.715118, 45.862281 ], [ -69.716148, 45.863477 ], [ -69.716148, 45.864433 ], [ -69.717522, 45.865150 ], [ -69.717522, 45.865867 ], [ -69.720955, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.722672, 45.865628 ], [ -69.724388, 45.865628 ], [ -69.725075, 45.866106 ], [ -69.725075, 45.867063 ], [ -69.725761, 45.866824 ], [ -69.725761, 45.867302 ], [ -69.724388, 45.868019 ], [ -69.724731, 45.868975 ], [ -69.723701, 45.870888 ], [ -69.724388, 45.872083 ], [ -69.725075, 45.872083 ], [ -69.724731, 45.873995 ], [ -69.727135, 45.874712 ], [ -69.727135, 45.875907 ], [ -69.727478, 45.875429 ], [ -69.728165, 45.875429 ], [ -69.731255, 45.876863 ], [ -69.731941, 45.876624 ], [ -69.734001, 45.877103 ], [ -69.734688, 45.878776 ], [ -69.733658, 45.879254 ], [ -69.735031, 45.879493 ], [ -69.736061, 45.880210 ], [ -69.737778, 45.880210 ], [ -69.737778, 45.881166 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881644 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.883317 ], [ -69.736748, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881166 ], [ -69.735718, 45.880449 ], [ -69.733315, 45.880210 ], [ -69.732628, 45.879493 ], [ -69.732628, 45.878537 ], [ -69.731941, 45.878537 ], [ -69.730225, 45.879732 ], [ -69.727821, 45.879732 ], [ -69.727135, 45.880449 ], [ -69.725761, 45.880210 ], [ -69.724731, 45.879732 ], [ -69.723358, 45.879971 ], [ -69.723701, 45.880688 ], [ -69.723015, 45.881166 ], [ -69.720612, 45.881644 ], [ -69.719582, 45.882361 ], [ -69.717178, 45.882600 ], [ -69.716492, 45.883556 ], [ -69.712715, 45.883317 ], [ -69.712715, 45.884273 ], [ -69.712029, 45.884273 ], [ -69.711685, 45.884990 ], [ -69.709625, 45.885229 ], [ -69.709282, 45.885707 ], [ -69.707565, 45.885707 ], [ -69.705849, 45.884990 ], [ -69.704132, 45.885229 ], [ -69.703445, 45.885946 ], [ -69.702072, 45.886185 ], [ -69.699669, 45.885707 ], [ -69.698296, 45.885946 ], [ -69.697952, 45.885229 ], [ -69.698639, 45.884751 ], [ -69.698639, 45.880449 ], [ -69.701729, 45.879971 ], [ -69.701729, 45.879015 ], [ -69.702759, 45.878776 ], [ -69.702759, 45.876863 ], [ -69.702072, 45.876624 ], [ -69.702072, 45.875668 ], [ -69.701385, 45.875429 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.872561 ], [ -69.700356, 45.872083 ], [ -69.700356, 45.870888 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868736 ], [ -69.696922, 45.867541 ], [ -69.697266, 45.864433 ], [ -69.694176, 45.864194 ], [ -69.692116, 45.865150 ], [ -69.692116, 45.864672 ], [ -69.693489, 45.864194 ], [ -69.692802, 45.863238 ], [ -69.693146, 45.862520 ], [ -69.693832, 45.862520 ], [ -69.694176, 45.862042 ], [ -69.691429, 45.860847 ], [ -69.692116, 45.859173 ], [ -69.690399, 45.858934 ], [ -69.689369, 45.858217 ], [ -69.689369, 45.855108 ], [ -69.690399, 45.854391 ], [ -69.686966, 45.853913 ], [ -69.685936, 45.852956 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.684219, 45.851282 ], [ -69.683533, 45.851043 ], [ -69.682503, 45.852239 ], [ -69.681816, 45.851760 ], [ -69.679413, 45.851760 ], [ -69.678383, 45.852000 ], [ -69.678040, 45.852956 ], [ -69.676323, 45.852956 ], [ -69.676666, 45.851521 ], [ -69.674606, 45.852239 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.855826 ], [ -69.673920, 45.856304 ], [ -69.674263, 45.857499 ], [ -69.672546, 45.858695 ], [ -69.672546, 45.859651 ], [ -69.673233, 45.859890 ], [ -69.673233, 45.860847 ], [ -69.673920, 45.861086 ], [ -69.674606, 45.862281 ], [ -69.673576, 45.861803 ], [ -69.673576, 45.862520 ], [ -69.672203, 45.862042 ], [ -69.671516, 45.861325 ], [ -69.670486, 45.861325 ], [ -69.670143, 45.860847 ], [ -69.668770, 45.861564 ], [ -69.667740, 45.861564 ], [ -69.667397, 45.862042 ], [ -69.664650, 45.862042 ], [ -69.663963, 45.861564 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662590, 45.861325 ], [ -69.661560, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.659843, 45.860608 ], [ -69.659157, 45.860608 ], [ -69.659500, 45.861086 ], [ -69.658813, 45.861325 ], [ -69.658127, 45.860608 ], [ -69.656754, 45.860369 ], [ -69.656410, 45.860847 ], [ -69.657097, 45.861325 ], [ -69.657097, 45.862042 ], [ -69.655724, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.654694, 45.862281 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.862998 ], [ -69.654007, 45.863955 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.862998 ], [ -69.650230, 45.863477 ], [ -69.649200, 45.863477 ], [ -69.648514, 45.862998 ], [ -69.648170, 45.863716 ], [ -69.646797, 45.863238 ], [ -69.661560, 45.910555 ], [ -69.677696, 45.965231 ], [ -69.683876, 45.983842 ], [ -69.728851, 45.976924 ], [ -69.728851, 46.037969 ], [ -69.729538, 46.053697 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.092281 ], [ -68.878784, 46.092281 ], [ -68.878784, 45.734943 ], [ -69.810905, 45.734943 ], [ -69.812622, 45.735901 ], [ -69.812622, 45.736380 ], [ -69.810219, 45.736141 ], [ -69.811592, 45.736860 ], [ -69.811592, 45.737339 ], [ -69.819832, 45.739256 ], [ -69.820518, 45.739735 ], [ -69.820175, 45.740454 ], [ -69.821548, 45.740454 ], [ -69.824295, 45.742371 ], [ -69.826012, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827385, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.828072, 45.739016 ], [ -69.830132, 45.738058 ], [ -69.833221, 45.738537 ], [ -69.832878, 45.739016 ], [ -69.830132, 45.738777 ], [ -69.827042, 45.739975 ], [ -69.826355, 45.741891 ], [ -69.825325, 45.742371 ], [ -69.825325, 45.743089 ], [ -69.823952, 45.743808 ], [ -69.822578, 45.743569 ], [ -69.821892, 45.745006 ], [ -69.819489, 45.745725 ], [ -69.817429, 45.747162 ], [ -69.817085, 45.746683 ], [ -69.815369, 45.747162 ], [ -69.812622, 45.747162 ], [ -69.812965, 45.745965 ], [ -69.812279, 45.745965 ], [ -69.810219, 45.746444 ], [ -69.809189, 45.747162 ], [ -69.806442, 45.747642 ], [ -69.805412, 45.748600 ], [ -69.803696, 45.749079 ], [ -69.801292, 45.749079 ], [ -69.800262, 45.748600 ], [ -69.800262, 45.747881 ], [ -69.798546, 45.747642 ], [ -69.798203, 45.746683 ], [ -69.796486, 45.746204 ], [ -69.793739, 45.746204 ], [ -69.793053, 45.745725 ], [ -69.789963, 45.746683 ], [ -69.789963, 45.747162 ], [ -69.788246, 45.746923 ], [ -69.788246, 45.747402 ], [ -69.789619, 45.747881 ], [ -69.789619, 45.748600 ], [ -69.788589, 45.749079 ], [ -69.788589, 45.749558 ], [ -69.789619, 45.750037 ], [ -69.790993, 45.750037 ], [ -69.791679, 45.750516 ], [ -69.791336, 45.750756 ], [ -69.792366, 45.751235 ], [ -69.791679, 45.753152 ], [ -69.789963, 45.754349 ], [ -69.789963, 45.755787 ], [ -69.792366, 45.756266 ], [ -69.792709, 45.756984 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.757942 ], [ -69.791679, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.759619 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.762014 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.791336, 45.764409 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.765846 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.767762 ], [ -69.788933, 45.768960 ], [ -69.787560, 45.768960 ], [ -69.786873, 45.768481 ], [ -69.784813, 45.769439 ], [ -69.782410, 45.769678 ], [ -69.782753, 45.770876 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.772552 ], [ -69.781723, 45.773989 ], [ -69.784126, 45.773031 ], [ -69.784813, 45.774468 ], [ -69.783440, 45.774468 ], [ -69.782753, 45.774947 ], [ -69.784813, 45.775905 ], [ -69.786186, 45.775905 ], [ -69.786186, 45.774947 ], [ -69.787903, 45.774947 ], [ -69.787560, 45.776862 ], [ -69.788933, 45.776862 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.777820 ], [ -69.789619, 45.777820 ], [ -69.789619, 45.778299 ], [ -69.788246, 45.777820 ], [ -69.788246, 45.779257 ], [ -69.787216, 45.779736 ], [ -69.786873, 45.780933 ], [ -69.784813, 45.780933 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.783327 ], [ -69.785500, 45.783327 ], [ -69.785843, 45.783806 ], [ -69.787560, 45.783567 ], [ -69.787560, 45.784045 ], [ -69.788246, 45.784045 ], [ -69.788246, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783567 ], [ -69.792366, 45.783806 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.784764 ], [ -69.792023, 45.785482 ], [ -69.791336, 45.784285 ], [ -69.790993, 45.784524 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.783806 ], [ -69.788246, 45.785003 ], [ -69.786530, 45.785003 ], [ -69.785156, 45.785482 ], [ -69.784126, 45.784764 ], [ -69.784470, 45.784045 ], [ -69.783440, 45.785003 ], [ -69.783440, 45.784285 ], [ -69.784126, 45.783806 ], [ -69.783096, 45.783567 ], [ -69.783096, 45.782848 ], [ -69.782066, 45.782848 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781172 ], [ -69.783783, 45.781651 ], [ -69.784126, 45.780454 ], [ -69.785500, 45.779496 ], [ -69.786186, 45.779975 ], [ -69.786186, 45.779017 ], [ -69.785500, 45.779017 ], [ -69.785156, 45.778539 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.776862 ], [ -69.782753, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.780693, 45.777341 ], [ -69.780693, 45.776623 ], [ -69.782066, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.780350, 45.773989 ], [ -69.779320, 45.773270 ], [ -69.779320, 45.772313 ], [ -69.777260, 45.770876 ], [ -69.776573, 45.767762 ], [ -69.775543, 45.767523 ], [ -69.775887, 45.767044 ], [ -69.773827, 45.766086 ], [ -69.774513, 45.764888 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.764409 ], [ -69.771080, 45.763451 ], [ -69.767990, 45.762972 ], [ -69.767990, 45.762014 ], [ -69.768677, 45.762014 ], [ -69.769020, 45.761535 ], [ -69.762154, 45.761296 ], [ -69.761124, 45.762014 ], [ -69.760437, 45.761775 ], [ -69.760094, 45.762254 ], [ -69.759064, 45.762254 ], [ -69.758034, 45.761535 ], [ -69.752884, 45.761775 ], [ -69.750481, 45.763451 ], [ -69.751854, 45.765846 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.764649 ], [ -69.749794, 45.763212 ], [ -69.749107, 45.763212 ], [ -69.747391, 45.761535 ], [ -69.747391, 45.759859 ], [ -69.746361, 45.759859 ], [ -69.746017, 45.760338 ], [ -69.743958, 45.760098 ], [ -69.742241, 45.758182 ], [ -69.742584, 45.757224 ], [ -69.741211, 45.756745 ], [ -69.741211, 45.755547 ], [ -69.739494, 45.755547 ], [ -69.736748, 45.754828 ], [ -69.734001, 45.755308 ], [ -69.733315, 45.756026 ], [ -69.732628, 45.756026 ], [ -69.731598, 45.757942 ], [ -69.729881, 45.759140 ], [ -69.729881, 45.760338 ], [ -69.727821, 45.761056 ], [ -69.727821, 45.761535 ], [ -69.726448, 45.762254 ], [ -69.724731, 45.765846 ], [ -69.725761, 45.771594 ], [ -69.727135, 45.772313 ], [ -69.727821, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.728851, 45.775186 ], [ -69.729881, 45.776383 ], [ -69.731255, 45.776623 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738121, 45.782130 ], [ -69.738121, 45.782848 ], [ -69.734001, 45.783088 ], [ -69.733315, 45.783567 ], [ -69.731598, 45.783567 ], [ -69.730911, 45.783088 ], [ -69.726791, 45.783088 ], [ -69.725418, 45.783806 ], [ -69.724045, 45.783806 ], [ -69.723015, 45.783327 ], [ -69.723358, 45.785961 ], [ -69.722328, 45.787397 ], [ -69.720612, 45.788355 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791228 ], [ -69.719238, 45.794818 ], [ -69.718208, 45.796015 ], [ -69.718208, 45.797691 ], [ -69.717178, 45.798409 ], [ -69.717522, 45.798888 ], [ -69.716835, 45.798888 ], [ -69.716148, 45.800802 ], [ -69.714432, 45.801760 ], [ -69.713745, 45.804871 ], [ -69.713058, 45.805350 ], [ -69.712715, 45.806547 ], [ -69.712029, 45.806786 ], [ -69.710999, 45.808940 ], [ -69.708939, 45.810854 ], [ -69.708939, 45.812290 ], [ -69.709969, 45.814444 ], [ -69.709625, 45.815401 ], [ -69.710655, 45.815879 ], [ -69.711342, 45.817076 ], [ -69.710999, 45.817554 ], [ -69.711685, 45.817794 ], [ -69.712715, 45.819469 ], [ -69.712715, 45.823297 ], [ -69.713402, 45.823536 ], [ -69.714088, 45.824971 ], [ -69.715462, 45.825928 ], [ -69.716492, 45.829038 ], [ -69.718552, 45.829756 ], [ -69.718208, 45.831670 ], [ -69.719582, 45.834062 ], [ -69.720955, 45.834301 ], [ -69.723015, 45.833344 ], [ -69.724388, 45.833344 ], [ -69.725418, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.725075, 45.834062 ], [ -69.723015, 45.834062 ], [ -69.721642, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717522, 45.834540 ], [ -69.718208, 45.833344 ], [ -69.715118, 45.831909 ], [ -69.712029, 45.832388 ], [ -69.712029, 45.833823 ], [ -69.710999, 45.834062 ], [ -69.709625, 45.835976 ], [ -69.708252, 45.836693 ], [ -69.708939, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.838128 ], [ -69.707565, 45.839324 ], [ -69.707222, 45.842673 ], [ -69.706535, 45.843151 ], [ -69.706535, 45.843869 ], [ -69.705505, 45.844347 ], [ -69.705505, 45.845543 ], [ -69.704475, 45.846260 ], [ -69.705162, 45.846739 ], [ -69.706879, 45.846499 ], [ -69.707909, 45.846978 ], [ -69.707909, 45.849130 ], [ -69.708595, 45.850565 ], [ -69.706879, 45.852956 ], [ -69.706192, 45.853195 ], [ -69.705849, 45.854152 ], [ -69.707222, 45.854152 ] ], [ [ -69.792366, 45.783806 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.784045 ], [ -69.792366, 45.783806 ] ] ], [ [ [ -69.797859, 45.784764 ], [ -69.797516, 45.784524 ], [ -69.797516, 45.785721 ], [ -69.796486, 45.785003 ], [ -69.796143, 45.785482 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.784285 ], [ -69.797173, 45.783327 ], [ -69.797859, 45.783327 ], [ -69.797859, 45.784285 ], [ -69.798546, 45.784524 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.800262, 45.784524 ], [ -69.801292, 45.784764 ], [ -69.797859, 45.784764 ] ], [ [ -69.797173, 45.784285 ], [ -69.797516, 45.783567 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784285 ] ] ], [ [ [ -69.795799, 45.784285 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.783088 ], [ -69.794083, 45.782848 ], [ -69.795456, 45.783567 ], [ -69.796486, 45.783327 ], [ -69.795799, 45.784285 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.802322, 45.785961 ], [ -69.801979, 45.786440 ], [ -69.801636, 45.785482 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.878784, 45.676202 ], [ -68.906250, 45.671644 ], [ -68.959122, 45.662287 ], [ -68.950882, 45.638527 ], [ -68.951912, 45.580647 ], [ -68.964958, 45.512602 ], [ -68.906250, 45.520541 ], [ -68.878784, 45.524149 ], [ -68.878784, 45.225579 ], [ -68.881187, 45.225095 ], [ -68.878784, 45.217357 ], [ -68.878784, 45.140157 ], [ -68.906250, 45.136524 ], [ -68.998947, 45.123929 ], [ -69.044952, 45.116419 ], [ -69.118080, 45.106243 ], [ -69.126320, 45.104789 ], [ -69.154472, 45.101154 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.385185, 45.069641 ], [ -69.637184, 45.069641 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.682846, 45.195103 ], [ -69.687309, 45.208166 ], [ -69.683876, 45.212762 ], [ -69.700012, 45.261597 ], [ -69.702759, 45.268363 ], [ -69.705162, 45.276336 ], [ -69.708595, 45.291313 ], [ -69.700699, 45.292520 ], [ -69.732628, 45.389047 ], [ -69.748421, 45.441104 ], [ -69.766960, 45.499369 ], [ -69.780006, 45.542908 ], [ -69.773483, 45.545553 ], [ -69.773483, 45.546034 ], [ -69.774513, 45.546515 ], [ -69.775543, 45.549400 ], [ -69.775200, 45.553006 ], [ -69.773827, 45.554689 ], [ -69.772110, 45.554689 ], [ -69.770393, 45.553727 ], [ -69.768333, 45.553727 ], [ -69.764214, 45.554689 ], [ -69.760780, 45.554208 ], [ -69.756317, 45.556131 ], [ -69.754257, 45.557814 ], [ -69.752197, 45.557814 ], [ -69.749107, 45.559016 ], [ -69.748077, 45.560458 ], [ -69.744987, 45.560939 ], [ -69.743614, 45.562862 ], [ -69.741554, 45.563343 ], [ -69.740181, 45.564304 ], [ -69.738464, 45.564545 ], [ -69.737778, 45.565266 ], [ -69.735374, 45.565506 ], [ -69.731598, 45.566948 ], [ -69.730568, 45.568390 ], [ -69.729195, 45.569111 ], [ -69.728851, 45.570073 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572476 ], [ -69.726791, 45.573918 ], [ -69.726791, 45.577042 ], [ -69.726105, 45.577523 ], [ -69.725761, 45.579205 ], [ -69.724045, 45.580647 ], [ -69.723701, 45.581848 ], [ -69.721985, 45.582809 ], [ -69.719925, 45.583049 ], [ -69.717178, 45.585212 ], [ -69.714775, 45.585452 ], [ -69.714775, 45.587615 ], [ -69.714088, 45.588576 ], [ -69.714432, 45.589777 ], [ -69.713745, 45.590017 ], [ -69.713745, 45.590978 ], [ -69.713058, 45.591699 ], [ -69.713402, 45.595303 ], [ -69.715118, 45.596984 ], [ -69.716492, 45.596744 ], [ -69.717865, 45.597465 ], [ -69.719238, 45.599386 ], [ -69.718895, 45.600347 ], [ -69.719925, 45.600828 ], [ -69.721298, 45.602749 ], [ -69.721298, 45.604190 ], [ -69.720612, 45.604190 ], [ -69.720268, 45.605151 ], [ -69.720955, 45.605872 ], [ -69.720955, 45.606832 ], [ -69.720268, 45.606832 ], [ -69.720268, 45.608033 ], [ -69.718208, 45.608033 ], [ -69.717522, 45.608514 ], [ -69.717522, 45.610915 ], [ -69.718552, 45.611876 ], [ -69.719582, 45.614758 ], [ -69.718895, 45.614518 ], [ -69.718895, 45.613557 ], [ -69.718208, 45.613317 ], [ -69.717522, 45.612116 ], [ -69.714775, 45.613077 ], [ -69.714088, 45.613077 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.612116 ], [ -69.713745, 45.612837 ], [ -69.712715, 45.613317 ], [ -69.712715, 45.614037 ], [ -69.712029, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.710312, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.709282, 45.615718 ], [ -69.708595, 45.616679 ], [ -69.706192, 45.618120 ], [ -69.705505, 45.618120 ], [ -69.704819, 45.618600 ], [ -69.704819, 45.619801 ], [ -69.703102, 45.620521 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.622202 ], [ -69.702759, 45.623883 ], [ -69.702759, 45.626764 ], [ -69.701729, 45.628204 ], [ -69.704819, 45.630605 ], [ -69.705505, 45.632046 ], [ -69.707222, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.707909, 45.637327 ], [ -69.708939, 45.638047 ], [ -69.712029, 45.637807 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.717522, 45.641888 ], [ -69.717522, 45.644048 ], [ -69.717178, 45.645728 ], [ -69.716492, 45.646208 ], [ -69.716492, 45.647888 ], [ -69.715118, 45.648608 ], [ -69.714088, 45.648128 ], [ -69.713745, 45.647408 ], [ -69.713058, 45.647408 ], [ -69.712715, 45.648128 ], [ -69.713402, 45.648608 ], [ -69.714088, 45.650288 ], [ -69.711685, 45.650528 ], [ -69.710655, 45.649808 ], [ -69.709969, 45.649808 ], [ -69.707909, 45.648128 ], [ -69.707909, 45.647648 ], [ -69.706535, 45.646928 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.700012, 45.643568 ], [ -69.698982, 45.643088 ], [ -69.698296, 45.641888 ], [ -69.696579, 45.640688 ], [ -69.694176, 45.640928 ], [ -69.694176, 45.642128 ], [ -69.692802, 45.643088 ], [ -69.692116, 45.645488 ], [ -69.696236, 45.648368 ], [ -69.698639, 45.649328 ], [ -69.701042, 45.651728 ], [ -69.703445, 45.651968 ], [ -69.705162, 45.653168 ], [ -69.705505, 45.652688 ], [ -69.706192, 45.652688 ], [ -69.707565, 45.653648 ], [ -69.710312, 45.654368 ], [ -69.713058, 45.655808 ], [ -69.718895, 45.656048 ], [ -69.723015, 45.657728 ], [ -69.726105, 45.656528 ], [ -69.728165, 45.656528 ], [ -69.732285, 45.657248 ], [ -69.732971, 45.657728 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732628, 45.657008 ], [ -69.731941, 45.656528 ], [ -69.731941, 45.655808 ], [ -69.734001, 45.654368 ], [ -69.734001, 45.653648 ], [ -69.736061, 45.650768 ], [ -69.738808, 45.650768 ], [ -69.739494, 45.651488 ], [ -69.742584, 45.652208 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.652448 ], [ -69.744644, 45.653168 ], [ -69.743271, 45.653888 ], [ -69.742584, 45.655328 ], [ -69.741898, 45.655808 ], [ -69.741211, 45.655568 ], [ -69.741211, 45.656288 ], [ -69.740524, 45.656048 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657488 ], [ -69.741554, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.660607 ], [ -69.744644, 45.661087 ], [ -69.744987, 45.661807 ], [ -69.744301, 45.662047 ], [ -69.744644, 45.664206 ], [ -69.743958, 45.664446 ], [ -69.743958, 45.664926 ], [ -69.743271, 45.664926 ], [ -69.743271, 45.665406 ], [ -69.741554, 45.666846 ], [ -69.739494, 45.667325 ], [ -69.739494, 45.667805 ], [ -69.740524, 45.668045 ], [ -69.740524, 45.669485 ], [ -69.739838, 45.669725 ], [ -69.740181, 45.670204 ], [ -69.739494, 45.670444 ], [ -69.739494, 45.671164 ], [ -69.738808, 45.671644 ], [ -69.739151, 45.675242 ], [ -69.738121, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.737091, 45.676921 ], [ -69.738121, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738464, 45.676921 ], [ -69.738808, 45.679560 ], [ -69.740181, 45.679560 ], [ -69.741211, 45.680280 ], [ -69.745674, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.750481, 45.680520 ], [ -69.754601, 45.679560 ], [ -69.757004, 45.679800 ], [ -69.760094, 45.682678 ], [ -69.764557, 45.682438 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.684597 ], [ -69.769020, 45.684837 ], [ -69.769707, 45.684597 ], [ -69.773827, 45.686036 ], [ -69.775200, 45.687475 ], [ -69.774857, 45.687715 ], [ -69.776573, 45.687955 ], [ -69.777260, 45.688914 ], [ -69.778976, 45.689394 ], [ -69.779320, 45.690113 ], [ -69.781036, 45.689874 ], [ -69.783096, 45.690593 ], [ -69.783096, 45.691073 ], [ -69.785500, 45.692751 ], [ -69.785156, 45.697547 ], [ -69.786186, 45.698267 ], [ -69.785843, 45.699945 ], [ -69.787560, 45.701384 ], [ -69.789619, 45.702103 ], [ -69.789963, 45.703782 ], [ -69.790649, 45.704501 ], [ -69.790993, 45.706659 ], [ -69.790306, 45.710495 ], [ -69.792709, 45.711454 ], [ -69.793739, 45.712173 ], [ -69.793739, 45.712892 ], [ -69.796829, 45.713851 ], [ -69.797859, 45.715050 ], [ -69.803009, 45.715050 ], [ -69.805412, 45.716967 ], [ -69.805756, 45.720323 ], [ -69.806442, 45.720323 ], [ -69.806442, 45.721042 ], [ -69.808846, 45.722720 ], [ -69.810905, 45.722720 ], [ -69.812279, 45.721761 ], [ -69.813652, 45.722001 ], [ -69.815369, 45.721522 ], [ -69.813995, 45.722241 ], [ -69.811935, 45.722480 ], [ -69.810905, 45.723199 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722241 ], [ -69.807129, 45.722241 ], [ -69.806442, 45.721522 ], [ -69.805069, 45.721761 ], [ -69.804726, 45.720802 ], [ -69.803696, 45.720563 ], [ -69.803352, 45.721282 ], [ -69.804039, 45.721522 ], [ -69.804382, 45.722720 ], [ -69.803009, 45.723918 ], [ -69.801979, 45.723918 ], [ -69.801292, 45.723199 ], [ -69.799919, 45.722720 ], [ -69.799919, 45.724158 ], [ -69.799232, 45.724158 ], [ -69.798546, 45.725117 ], [ -69.797859, 45.725117 ], [ -69.797173, 45.724398 ], [ -69.795456, 45.724637 ], [ -69.795113, 45.725356 ], [ -69.792366, 45.725596 ], [ -69.791336, 45.726794 ], [ -69.791679, 45.728472 ], [ -69.794083, 45.728472 ], [ -69.796143, 45.730629 ], [ -69.797173, 45.730869 ], [ -69.799576, 45.732546 ], [ -69.799919, 45.733265 ], [ -69.805756, 45.733265 ], [ -69.807129, 45.732786 ], [ -69.809875, 45.733265 ], [ -69.810905, 45.734943 ], [ -68.878784, 45.734943 ], [ -68.878784, 45.676202 ] ] ], [ [ [ -69.715118, 45.589777 ], [ -69.714432, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.715118, 45.589777 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.807816, 45.722241 ], [ -69.807129, 45.722241 ], [ -69.806442, 45.721522 ], [ -69.805069, 45.721761 ], [ -69.804726, 45.720802 ], [ -69.803696, 45.720563 ], [ -69.803352, 45.721282 ], [ -69.804039, 45.721522 ], [ -69.804382, 45.722720 ], [ -69.803009, 45.723918 ], [ -69.801979, 45.723918 ], [ -69.801292, 45.723199 ], [ -69.799919, 45.722720 ], [ -69.799919, 45.724158 ], [ -69.799232, 45.724158 ], [ -69.798546, 45.725117 ], [ -69.797859, 45.725117 ], [ -69.797173, 45.724398 ], [ -69.795456, 45.724637 ], [ -69.795113, 45.725356 ], [ -69.792366, 45.725596 ], [ -69.791336, 45.726794 ], [ -69.791679, 45.728472 ], [ -69.794083, 45.728472 ], [ -69.796143, 45.730629 ], [ -69.797173, 45.730869 ], [ -69.799576, 45.732546 ], [ -69.799919, 45.733265 ], [ -69.805756, 45.733265 ], [ -69.807129, 45.732786 ], [ -69.809875, 45.733265 ], [ -69.810905, 45.734943 ], [ -68.878784, 45.734943 ], [ -68.878784, 45.676202 ], [ -68.906250, 45.671644 ], [ -68.959122, 45.662287 ], [ -68.950882, 45.638527 ], [ -68.951912, 45.580647 ], [ -68.964958, 45.512602 ], [ -68.906250, 45.520541 ], [ -68.878784, 45.524149 ], [ -68.878784, 45.225579 ], [ -68.881187, 45.225095 ], [ -68.878784, 45.217357 ], [ -68.878784, 45.140157 ], [ -68.906250, 45.136524 ], [ -68.998947, 45.123929 ], [ -69.044952, 45.116419 ], [ -69.118080, 45.106243 ], [ -69.126320, 45.104789 ], [ -69.154472, 45.101154 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.385185, 45.069641 ], [ -69.637184, 45.069641 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.682846, 45.195103 ], [ -69.687309, 45.208166 ], [ -69.683876, 45.212762 ], [ -69.700012, 45.261597 ], [ -69.702759, 45.268363 ], [ -69.705162, 45.276336 ], [ -69.708595, 45.291313 ], [ -69.700699, 45.292520 ], [ -69.732628, 45.389047 ], [ -69.748421, 45.441104 ], [ -69.766960, 45.499369 ], [ -69.780006, 45.542908 ], [ -69.773483, 45.545553 ], [ -69.773483, 45.546034 ], [ -69.774513, 45.546515 ], [ -69.775543, 45.549400 ], [ -69.775200, 45.553006 ], [ -69.773827, 45.554689 ], [ -69.772110, 45.554689 ], [ -69.770393, 45.553727 ], [ -69.768333, 45.553727 ], [ -69.764214, 45.554689 ], [ -69.760780, 45.554208 ], [ -69.756317, 45.556131 ], [ -69.754257, 45.557814 ], [ -69.752197, 45.557814 ], [ -69.749107, 45.559016 ], [ -69.748077, 45.560458 ], [ -69.744987, 45.560939 ], [ -69.743614, 45.562862 ], [ -69.741554, 45.563343 ], [ -69.740181, 45.564304 ], [ -69.738464, 45.564545 ], [ -69.737778, 45.565266 ], [ -69.735374, 45.565506 ], [ -69.731598, 45.566948 ], [ -69.730568, 45.568390 ], [ -69.729195, 45.569111 ], [ -69.728851, 45.570073 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572476 ], [ -69.726791, 45.573918 ], [ -69.726791, 45.577042 ], [ -69.726105, 45.577523 ], [ -69.725761, 45.579205 ], [ -69.724045, 45.580647 ], [ -69.723701, 45.581848 ], [ -69.721985, 45.582809 ], [ -69.719925, 45.583049 ], [ -69.717178, 45.585212 ], [ -69.714775, 45.585452 ], [ -69.714775, 45.587615 ], [ -69.714088, 45.588576 ], [ -69.714432, 45.589777 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713745, 45.590978 ], [ -69.713058, 45.591699 ], [ -69.713402, 45.595303 ], [ -69.715118, 45.596984 ], [ -69.716492, 45.596744 ], [ -69.717865, 45.597465 ], [ -69.719238, 45.599386 ], [ -69.718895, 45.600347 ], [ -69.719925, 45.600828 ], [ -69.721298, 45.602749 ], [ -69.721298, 45.604190 ], [ -69.720612, 45.604190 ], [ -69.720268, 45.605151 ], [ -69.720955, 45.605872 ], [ -69.720955, 45.606832 ], [ -69.720268, 45.606832 ], [ -69.720268, 45.608033 ], [ -69.718208, 45.608033 ], [ -69.717522, 45.608514 ], [ -69.717522, 45.610915 ], [ -69.718552, 45.611876 ], [ -69.719582, 45.614758 ], [ -69.718895, 45.614518 ], [ -69.718895, 45.613557 ], [ -69.718208, 45.613317 ], [ -69.717522, 45.612116 ], [ -69.714775, 45.613077 ], [ -69.714088, 45.613077 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.612116 ], [ -69.713745, 45.612837 ], [ -69.712715, 45.613317 ], [ -69.712715, 45.614037 ], [ -69.712029, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.710312, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.709282, 45.615718 ], [ -69.708595, 45.616679 ], [ -69.706192, 45.618120 ], [ -69.705505, 45.618120 ], [ -69.704819, 45.618600 ], [ -69.704819, 45.619801 ], [ -69.703102, 45.620521 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.622202 ], [ -69.702759, 45.623883 ], [ -69.702759, 45.626764 ], [ -69.701729, 45.628204 ], [ -69.704819, 45.630605 ], [ -69.705505, 45.632046 ], [ -69.707222, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.707909, 45.637327 ], [ -69.708939, 45.638047 ], [ -69.712029, 45.637807 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.717522, 45.641888 ], [ -69.717522, 45.644048 ], [ -69.717178, 45.645728 ], [ -69.716492, 45.646208 ], [ -69.716492, 45.647888 ], [ -69.715118, 45.648608 ], [ -69.714088, 45.648128 ], [ -69.713745, 45.647408 ], [ -69.713058, 45.647408 ], [ -69.712715, 45.648128 ], [ -69.713402, 45.648608 ], [ -69.714088, 45.650288 ], [ -69.711685, 45.650528 ], [ -69.710655, 45.649808 ], [ -69.709969, 45.649808 ], [ -69.707909, 45.648128 ], [ -69.707909, 45.647648 ], [ -69.706535, 45.646928 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.700012, 45.643568 ], [ -69.698982, 45.643088 ], [ -69.698296, 45.641888 ], [ -69.696579, 45.640688 ], [ -69.694176, 45.640928 ], [ -69.694176, 45.642128 ], [ -69.692802, 45.643088 ], [ -69.692116, 45.645488 ], [ -69.696236, 45.648368 ], [ -69.698639, 45.649328 ], [ -69.701042, 45.651728 ], [ -69.703445, 45.651968 ], [ -69.705162, 45.653168 ], [ -69.705505, 45.652688 ], [ -69.706192, 45.652688 ], [ -69.707565, 45.653648 ], [ -69.710312, 45.654368 ], [ -69.713058, 45.655808 ], [ -69.718895, 45.656048 ], [ -69.723015, 45.657728 ], [ -69.726105, 45.656528 ], [ -69.728165, 45.656528 ], [ -69.732285, 45.657248 ], [ -69.732971, 45.657728 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732628, 45.657008 ], [ -69.731941, 45.656528 ], [ -69.731941, 45.655808 ], [ -69.734001, 45.654368 ], [ -69.734001, 45.653648 ], [ -69.736061, 45.650768 ], [ -69.738808, 45.650768 ], [ -69.739494, 45.651488 ], [ -69.742584, 45.652208 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.652448 ], [ -69.744644, 45.653168 ], [ -69.743271, 45.653888 ], [ -69.742584, 45.655328 ], [ -69.741898, 45.655808 ], [ -69.741211, 45.655568 ], [ -69.741211, 45.656288 ], [ -69.740524, 45.656048 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657488 ], [ -69.741554, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.660607 ], [ -69.744644, 45.661087 ], [ -69.744987, 45.661807 ], [ -69.744301, 45.662047 ], [ -69.744644, 45.664206 ], [ -69.743958, 45.664446 ], [ -69.743958, 45.664926 ], [ -69.743271, 45.664926 ], [ -69.743271, 45.665406 ], [ -69.741554, 45.666846 ], [ -69.739494, 45.667325 ], [ -69.739494, 45.667805 ], [ -69.740524, 45.668045 ], [ -69.740524, 45.669485 ], [ -69.739838, 45.669725 ], [ -69.740181, 45.670204 ], [ -69.739494, 45.670444 ], [ -69.739494, 45.671164 ], [ -69.738808, 45.671644 ], [ -69.739151, 45.675242 ], [ -69.738121, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.737091, 45.676921 ], [ -69.738121, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738464, 45.676921 ], [ -69.738808, 45.679560 ], [ -69.740181, 45.679560 ], [ -69.741211, 45.680280 ], [ -69.745674, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.750481, 45.680520 ], [ -69.754601, 45.679560 ], [ -69.757004, 45.679800 ], [ -69.760094, 45.682678 ], [ -69.764557, 45.682438 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.684597 ], [ -69.769707, 45.684597 ], [ -69.773827, 45.686036 ], [ -69.775200, 45.687475 ], [ -69.774857, 45.687715 ], [ -69.776573, 45.687955 ], [ -69.777260, 45.688914 ], [ -69.778976, 45.689394 ], [ -69.779320, 45.690113 ], [ -69.781036, 45.689874 ], [ -69.783096, 45.690593 ], [ -69.783096, 45.691073 ], [ -69.785500, 45.692751 ], [ -69.785156, 45.697547 ], [ -69.786186, 45.698267 ], [ -69.785843, 45.699945 ], [ -69.787560, 45.701384 ], [ -69.789619, 45.702103 ], [ -69.789963, 45.703782 ], [ -69.790649, 45.704501 ], [ -69.790993, 45.706659 ], [ -69.790306, 45.710495 ], [ -69.792709, 45.711454 ], [ -69.793739, 45.712173 ], [ -69.793739, 45.712892 ], [ -69.796829, 45.713851 ], [ -69.797859, 45.715050 ], [ -69.803009, 45.715050 ], [ -69.805412, 45.716967 ], [ -69.805756, 45.720323 ], [ -69.806442, 45.720323 ], [ -69.806442, 45.721042 ], [ -69.807816, 45.722241 ] ] ], [ [ [ -69.714432, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.715118, 45.589777 ], [ -69.714432, 45.589777 ] ] ], [ [ [ -69.807816, 45.722241 ], [ -69.808846, 45.722720 ], [ -69.810905, 45.722720 ], [ -69.812279, 45.721761 ], [ -69.813652, 45.722001 ], [ -69.815369, 45.721522 ], [ -69.813995, 45.722241 ], [ -69.811935, 45.722480 ], [ -69.810905, 45.723199 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722241 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875668 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.706535, 45.854630 ], [ -69.706879, 45.854152 ], [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805350 ], [ -69.713402, 45.805111 ], [ -70.339966, 45.805111 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ], [ -69.724731, 45.879493 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805350 ], [ -69.713402, 45.805111 ], [ -70.339966, 45.805111 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875907 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.705849, 45.854152 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ] ] ], [ [ [ -69.797516, 45.784524 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784045 ], [ -69.797173, 45.784285 ], [ -69.797516, 45.784524 ] ] ], [ [ [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.784045 ] ] ], [ [ [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793053, 45.783088 ], [ -69.792366, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.794769, 45.757703 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.738058 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769020, 45.684837 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.338249, 45.161222 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.805111 ], [ -69.713402, 45.805111 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.784764 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ] ], [ [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ] ], [ [ -69.796143, 45.785243 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785243 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.338249, 45.161222 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.805111 ], [ -69.713402, 45.805111 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.785003 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ] ], [ [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ] ], [ [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.807816, 45.722241 ] ], [ [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785482 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.801292, 45.784764 ] ], [ [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793053, 45.783088 ], [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ] ], [ [ -69.801636, 45.785482 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785482 ] ], [ [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.797173, 45.784285 ], [ -69.796829, 45.784285 ], [ -69.796829, 45.784045 ], [ -69.797516, 45.783567 ], [ -69.797173, 45.784285 ] ] ], [ [ [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ] ] ], [ [ [ -69.792366, 45.783806 ], [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.783806 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 90 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.487839, 46.573731 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.190865, 46.572787 ], [ -69.100914, 46.572787 ], [ -69.017487, 46.572315 ], [ -68.906250, 46.572787 ], [ -68.878784, 46.572787 ], [ -68.878784, 46.054173 ], [ -69.729538, 46.054173 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.147967 ], [ -69.730568, 46.177215 ], [ -69.730911, 46.252048 ], [ -69.732628, 46.394069 ], [ -69.719582, 46.394306 ], [ -69.721298, 46.574203 ], [ -69.487839, 46.573731 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.721298, 46.574203 ], [ -69.487839, 46.573731 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.190865, 46.572787 ], [ -69.100914, 46.572787 ], [ -69.017487, 46.572315 ], [ -68.906250, 46.572787 ], [ -68.878784, 46.572787 ], [ -68.878784, 46.054173 ], [ -69.729538, 46.054173 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.147967 ], [ -69.730568, 46.177215 ], [ -69.730911, 46.252048 ], [ -69.732628, 46.394069 ], [ -69.719582, 46.394306 ], [ -69.721298, 46.574203 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.284348, 46.097995 ], [ -70.284691, 46.098948 ], [ -70.285721, 46.099424 ], [ -70.286064, 46.100138 ], [ -70.282631, 46.100614 ], [ -70.280914, 46.100376 ], [ -70.280228, 46.099900 ], [ -70.278854, 46.099900 ], [ -70.273705, 46.102280 ], [ -70.273018, 46.102280 ], [ -70.272331, 46.101566 ], [ -70.270958, 46.101090 ], [ -70.268555, 46.101566 ], [ -70.266838, 46.100852 ], [ -70.264091, 46.100852 ], [ -70.262718, 46.100376 ], [ -70.261345, 46.101090 ], [ -70.260315, 46.101090 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099662 ], [ -70.254478, 46.099662 ], [ -70.253105, 46.100376 ], [ -70.253105, 46.104185 ], [ -70.252419, 46.106089 ], [ -70.253105, 46.107755 ], [ -70.254478, 46.107755 ], [ -70.254478, 46.108231 ], [ -70.255508, 46.108945 ], [ -70.254822, 46.110374 ], [ -70.255508, 46.110850 ], [ -70.254478, 46.111088 ], [ -70.254478, 46.112040 ], [ -70.253792, 46.112516 ], [ -70.254822, 46.113944 ], [ -70.253792, 46.114182 ], [ -70.253792, 46.114658 ], [ -70.252762, 46.114658 ], [ -70.253448, 46.115134 ], [ -70.253105, 46.115372 ], [ -70.252419, 46.115134 ], [ -70.252762, 46.116324 ], [ -70.251732, 46.117038 ], [ -70.252075, 46.117990 ], [ -70.251389, 46.117990 ], [ -70.251045, 46.118466 ], [ -70.251732, 46.119655 ], [ -70.250702, 46.119893 ], [ -70.250702, 46.120369 ], [ -70.250015, 46.120369 ], [ -70.250015, 46.121083 ], [ -70.248299, 46.122511 ], [ -70.248299, 46.124177 ], [ -70.247612, 46.124177 ], [ -70.247269, 46.124653 ], [ -70.247612, 46.125842 ], [ -70.246925, 46.125367 ], [ -70.246239, 46.126318 ], [ -70.245552, 46.126318 ], [ -70.245552, 46.127032 ], [ -70.244522, 46.127508 ], [ -70.245209, 46.127984 ], [ -70.244865, 46.128698 ], [ -70.243835, 46.128698 ], [ -70.244179, 46.131077 ], [ -70.243492, 46.131077 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.242805, 46.133694 ], [ -70.241776, 46.134408 ], [ -70.242119, 46.135598 ], [ -70.241089, 46.136311 ], [ -70.241089, 46.136787 ], [ -70.240402, 46.136787 ], [ -70.240402, 46.137977 ], [ -70.239716, 46.137977 ], [ -70.240402, 46.139166 ], [ -70.240402, 46.139642 ], [ -70.239372, 46.139880 ], [ -70.239372, 46.140355 ], [ -70.240402, 46.140593 ], [ -70.239716, 46.141069 ], [ -70.240059, 46.142021 ], [ -70.239372, 46.142258 ], [ -70.239716, 46.143448 ], [ -70.237312, 46.145113 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.145589 ], [ -70.236626, 46.146540 ], [ -70.237999, 46.147016 ], [ -70.239716, 46.149157 ], [ -70.240746, 46.149157 ], [ -70.240746, 46.149632 ], [ -70.240059, 46.149870 ], [ -70.240402, 46.151059 ], [ -70.241776, 46.151059 ], [ -70.241776, 46.150108 ], [ -70.242805, 46.149870 ], [ -70.243835, 46.150584 ], [ -70.244179, 46.151773 ], [ -70.245209, 46.151059 ], [ -70.246582, 46.151059 ], [ -70.246925, 46.152011 ], [ -70.248299, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.152724 ], [ -70.247612, 46.153438 ], [ -70.250702, 46.154389 ], [ -70.249672, 46.155816 ], [ -70.250359, 46.155816 ], [ -70.250359, 46.156529 ], [ -70.252419, 46.157243 ], [ -70.252762, 46.158432 ], [ -70.255165, 46.158432 ], [ -70.255852, 46.158907 ], [ -70.255852, 46.159621 ], [ -70.256538, 46.159383 ], [ -70.257568, 46.159859 ], [ -70.257568, 46.160334 ], [ -70.259285, 46.161523 ], [ -70.258598, 46.161761 ], [ -70.258598, 46.162237 ], [ -70.260315, 46.163663 ], [ -70.261345, 46.163663 ], [ -70.261688, 46.164377 ], [ -70.265121, 46.164852 ], [ -70.264435, 46.165566 ], [ -70.264778, 46.167943 ], [ -70.266151, 46.168419 ], [ -70.266495, 46.169370 ], [ -70.267525, 46.169370 ], [ -70.268555, 46.170559 ], [ -70.270271, 46.170321 ], [ -70.270615, 46.171034 ], [ -70.269928, 46.171034 ], [ -70.270958, 46.171510 ], [ -70.271301, 46.172223 ], [ -70.272331, 46.171985 ], [ -70.273018, 46.172461 ], [ -70.274048, 46.172461 ], [ -70.274048, 46.172936 ], [ -70.275421, 46.173412 ], [ -70.275078, 46.174363 ], [ -70.275764, 46.174363 ], [ -70.276108, 46.174838 ], [ -70.277481, 46.174600 ], [ -70.278511, 46.175314 ], [ -70.278511, 46.175789 ], [ -70.280228, 46.176740 ], [ -70.280228, 46.177691 ], [ -70.281258, 46.177691 ], [ -70.281258, 46.178166 ], [ -70.282288, 46.178642 ], [ -70.282631, 46.180068 ], [ -70.284004, 46.180544 ], [ -70.284348, 46.181019 ], [ -70.283661, 46.181494 ], [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191477 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.284348, 46.197894 ], [ -70.283318, 46.199320 ], [ -70.282288, 46.199320 ], [ -70.280914, 46.200270 ], [ -70.281258, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203359 ], [ -70.277138, 46.203834 ], [ -70.277481, 46.204547 ], [ -70.276794, 46.205260 ], [ -70.276451, 46.207636 ], [ -70.274048, 46.208824 ], [ -70.272675, 46.210012 ], [ -70.271645, 46.210012 ], [ -70.272331, 46.211200 ], [ -70.270958, 46.210962 ], [ -70.270958, 46.211913 ], [ -70.271988, 46.212625 ], [ -70.271988, 46.213101 ], [ -70.271301, 46.213338 ], [ -70.272331, 46.214051 ], [ -70.274391, 46.214526 ], [ -70.274391, 46.215239 ], [ -70.273018, 46.216189 ], [ -70.273018, 46.216664 ], [ -70.273705, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.268555, 46.218089 ], [ -70.267525, 46.219515 ], [ -70.267868, 46.221415 ], [ -70.265808, 46.223315 ], [ -70.265808, 46.224028 ], [ -70.267525, 46.224978 ], [ -70.267181, 46.225453 ], [ -70.265808, 46.225690 ], [ -70.265121, 46.226878 ], [ -70.264091, 46.227353 ], [ -70.264091, 46.228778 ], [ -70.261345, 46.229491 ], [ -70.259972, 46.230916 ], [ -70.261002, 46.231391 ], [ -70.259972, 46.232103 ], [ -70.259628, 46.234240 ], [ -70.257568, 46.236853 ], [ -70.257912, 46.238040 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.257225, 46.242314 ], [ -70.256195, 46.243264 ], [ -70.256195, 46.244689 ], [ -70.254135, 46.245638 ], [ -70.254478, 46.246113 ], [ -70.255508, 46.246351 ], [ -70.252419, 46.248487 ], [ -70.251045, 46.248962 ], [ -70.251732, 46.250387 ], [ -70.251732, 46.252286 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.254422 ], [ -70.253792, 46.254660 ], [ -70.253105, 46.255372 ], [ -70.253105, 46.259408 ], [ -70.251732, 46.260832 ], [ -70.250702, 46.260832 ], [ -70.250015, 46.262493 ], [ -70.250702, 46.262731 ], [ -70.250702, 46.263205 ], [ -70.249329, 46.264155 ], [ -70.249672, 46.264867 ], [ -70.248642, 46.265341 ], [ -70.248985, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.272699 ], [ -70.243492, 46.273173 ], [ -70.242805, 46.273648 ], [ -70.241432, 46.272699 ], [ -70.240746, 46.273173 ], [ -70.241089, 46.275072 ], [ -70.239716, 46.275546 ], [ -70.239716, 46.276496 ], [ -70.240402, 46.277207 ], [ -70.240059, 46.279343 ], [ -70.237999, 46.281004 ], [ -70.236626, 46.281004 ], [ -70.236282, 46.281479 ], [ -70.235596, 46.281479 ], [ -70.234566, 46.283614 ], [ -70.232849, 46.284800 ], [ -70.231819, 46.287885 ], [ -70.231819, 46.291206 ], [ -70.229073, 46.291681 ], [ -70.229073, 46.292392 ], [ -70.227699, 46.292155 ], [ -70.227356, 46.292629 ], [ -70.226326, 46.292867 ], [ -70.223579, 46.292867 ], [ -70.223236, 46.293341 ], [ -70.220490, 46.293341 ], [ -70.218086, 46.294290 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295476 ], [ -70.216370, 46.295476 ], [ -70.215340, 46.294764 ], [ -70.213966, 46.296425 ], [ -70.214310, 46.297374 ], [ -70.212250, 46.298797 ], [ -70.211563, 46.298323 ], [ -70.210533, 46.298323 ], [ -70.209160, 46.299034 ], [ -70.207787, 46.299034 ], [ -70.206070, 46.299746 ], [ -70.205727, 46.300457 ], [ -70.207100, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206413, 46.309944 ], [ -70.205040, 46.310893 ], [ -70.203667, 46.312790 ], [ -70.203323, 46.314924 ], [ -70.204353, 46.315399 ], [ -70.204353, 46.316821 ], [ -70.206413, 46.318007 ], [ -70.207443, 46.319192 ], [ -70.206757, 46.321326 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.323935 ], [ -70.206070, 46.324883 ], [ -70.207100, 46.326068 ], [ -70.207787, 46.328202 ], [ -70.209160, 46.329624 ], [ -70.207787, 46.331521 ], [ -70.205383, 46.332706 ], [ -70.205040, 46.333891 ], [ -70.202293, 46.335314 ], [ -70.201263, 46.337210 ], [ -70.195770, 46.341002 ], [ -70.195427, 46.342662 ], [ -70.196114, 46.343373 ], [ -70.193710, 46.345743 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.347639 ], [ -70.191307, 46.348113 ], [ -70.192337, 46.349060 ], [ -70.191650, 46.350245 ], [ -70.189934, 46.350719 ], [ -70.188560, 46.350008 ], [ -70.184441, 46.352141 ], [ -70.183411, 46.351667 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354274 ], [ -70.177231, 46.355696 ], [ -70.176201, 46.356643 ], [ -70.175514, 46.358302 ], [ -70.172768, 46.359487 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357591 ], [ -70.164528, 46.359250 ], [ -70.163155, 46.359250 ], [ -70.162811, 46.360671 ], [ -70.161781, 46.361145 ], [ -70.160065, 46.360908 ], [ -70.160408, 46.359961 ], [ -70.159721, 46.359487 ], [ -70.158005, 46.359487 ], [ -70.158348, 46.360908 ], [ -70.156288, 46.361619 ], [ -70.154228, 46.360198 ], [ -70.150795, 46.359250 ], [ -70.148392, 46.359013 ], [ -70.145988, 46.360908 ], [ -70.144958, 46.362330 ], [ -70.141869, 46.362330 ], [ -70.140839, 46.363041 ], [ -70.140495, 46.363751 ], [ -70.141525, 46.364936 ], [ -70.139122, 46.365884 ], [ -70.137749, 46.369437 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.368963 ], [ -70.131912, 46.369911 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127449, 46.370859 ], [ -70.126762, 46.371569 ], [ -70.127449, 46.372280 ], [ -70.128479, 46.379386 ], [ -70.126076, 46.381754 ], [ -70.124359, 46.381991 ], [ -70.121956, 46.382939 ], [ -70.116463, 46.385781 ], [ -70.116119, 46.387201 ], [ -70.117149, 46.387438 ], [ -70.116806, 46.388386 ], [ -70.115089, 46.388149 ], [ -70.115089, 46.385544 ], [ -70.114403, 46.385307 ], [ -70.113029, 46.386017 ], [ -70.110970, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112343, 46.388386 ], [ -70.110283, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108223, 46.388859 ], [ -70.108910, 46.388386 ], [ -70.108223, 46.387675 ], [ -70.107536, 46.388149 ], [ -70.107880, 46.389096 ], [ -70.109940, 46.390517 ], [ -70.109940, 46.390990 ], [ -70.109253, 46.391464 ], [ -70.108566, 46.391464 ], [ -70.107536, 46.390754 ], [ -70.106850, 46.390990 ], [ -70.106850, 46.391701 ], [ -70.107880, 46.392885 ], [ -70.106163, 46.393595 ], [ -70.105133, 46.393595 ], [ -70.104446, 46.394069 ], [ -70.104446, 46.395016 ], [ -70.102043, 46.396673 ], [ -70.101013, 46.398331 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099297, 46.403066 ], [ -70.100670, 46.403303 ], [ -70.098953, 46.403539 ], [ -70.097923, 46.404250 ], [ -70.098267, 46.404723 ], [ -70.100327, 46.404486 ], [ -70.101013, 46.405433 ], [ -70.097237, 46.405433 ], [ -70.095863, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.406854 ], [ -70.096893, 46.407327 ], [ -70.095177, 46.407801 ], [ -70.094833, 46.408511 ], [ -70.097237, 46.409221 ], [ -70.096893, 46.409694 ], [ -70.094833, 46.409931 ], [ -70.092430, 46.409458 ], [ -70.091400, 46.410405 ], [ -70.089340, 46.411115 ], [ -70.087967, 46.410405 ], [ -70.087967, 46.409931 ], [ -70.086937, 46.409221 ], [ -70.083847, 46.410641 ], [ -70.081444, 46.410878 ], [ -70.079384, 46.410641 ], [ -70.078354, 46.409931 ], [ -70.076637, 46.409694 ], [ -70.073891, 46.410405 ], [ -70.072174, 46.411352 ], [ -70.067024, 46.412062 ], [ -70.065308, 46.413955 ], [ -70.061531, 46.413955 ], [ -70.060844, 46.414429 ], [ -70.057411, 46.414902 ], [ -70.056725, 46.415612 ], [ -70.053635, 46.432178 ], [ -70.023422, 46.573495 ], [ -69.982567, 46.573967 ], [ -69.800606, 46.573495 ], [ -69.721298, 46.574203 ], [ -69.719582, 46.394306 ], [ -69.732628, 46.394069 ], [ -69.730911, 46.252048 ], [ -69.730568, 46.177215 ], [ -69.729881, 46.147967 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.054173 ], [ -70.280914, 46.054173 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.721298, 46.574203 ], [ -69.719582, 46.394306 ], [ -69.732628, 46.394069 ], [ -69.730911, 46.252048 ], [ -69.730568, 46.177215 ], [ -69.729881, 46.147967 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.054173 ], [ -70.280914, 46.054173 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.284348, 46.097995 ], [ -70.284691, 46.098948 ], [ -70.285721, 46.099424 ], [ -70.286064, 46.100138 ], [ -70.282631, 46.100614 ], [ -70.280914, 46.100376 ], [ -70.280228, 46.099900 ], [ -70.278854, 46.099900 ], [ -70.273705, 46.102280 ], [ -70.273018, 46.102280 ], [ -70.272331, 46.101566 ], [ -70.270958, 46.101090 ], [ -70.268555, 46.101566 ], [ -70.266838, 46.100852 ], [ -70.264091, 46.100852 ], [ -70.262718, 46.100376 ], [ -70.261345, 46.101090 ], [ -70.260315, 46.101090 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099662 ], [ -70.254478, 46.099662 ], [ -70.253105, 46.100376 ], [ -70.253105, 46.104185 ], [ -70.252419, 46.106089 ], [ -70.253105, 46.107755 ], [ -70.254478, 46.107755 ], [ -70.254478, 46.108231 ], [ -70.255508, 46.108945 ], [ -70.254822, 46.110374 ], [ -70.255508, 46.110850 ], [ -70.254478, 46.111088 ], [ -70.254478, 46.112040 ], [ -70.253792, 46.112516 ], [ -70.254822, 46.113944 ], [ -70.253792, 46.114182 ], [ -70.253792, 46.114658 ], [ -70.252762, 46.114658 ], [ -70.253448, 46.115134 ], [ -70.253105, 46.115372 ], [ -70.252419, 46.115134 ], [ -70.252762, 46.116324 ], [ -70.251732, 46.117038 ], [ -70.252075, 46.117990 ], [ -70.251389, 46.117990 ], [ -70.251045, 46.118466 ], [ -70.251732, 46.119655 ], [ -70.250702, 46.119893 ], [ -70.250702, 46.120369 ], [ -70.250015, 46.120369 ], [ -70.250015, 46.121083 ], [ -70.248299, 46.122511 ], [ -70.248299, 46.124177 ], [ -70.247612, 46.124177 ], [ -70.247269, 46.124653 ], [ -70.247612, 46.125842 ], [ -70.246925, 46.125367 ], [ -70.246239, 46.126318 ], [ -70.245552, 46.126318 ], [ -70.245552, 46.127032 ], [ -70.244522, 46.127508 ], [ -70.245209, 46.127984 ], [ -70.244865, 46.128698 ], [ -70.243835, 46.128698 ], [ -70.244179, 46.131077 ], [ -70.243492, 46.131077 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.242805, 46.133694 ], [ -70.241776, 46.134408 ], [ -70.242119, 46.135598 ], [ -70.241089, 46.136311 ], [ -70.241089, 46.136787 ], [ -70.240402, 46.136787 ], [ -70.240402, 46.137977 ], [ -70.239716, 46.137977 ], [ -70.240402, 46.139166 ], [ -70.240402, 46.139642 ], [ -70.239372, 46.139880 ], [ -70.239372, 46.140355 ], [ -70.240402, 46.140593 ], [ -70.239716, 46.141069 ], [ -70.240059, 46.142021 ], [ -70.239372, 46.142258 ], [ -70.239716, 46.143448 ], [ -70.237312, 46.145113 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.145589 ], [ -70.236626, 46.146540 ], [ -70.237999, 46.147016 ], [ -70.239716, 46.149157 ], [ -70.240746, 46.149157 ], [ -70.240746, 46.149632 ], [ -70.240059, 46.149870 ], [ -70.240402, 46.151059 ], [ -70.241776, 46.151059 ], [ -70.241776, 46.150108 ], [ -70.242805, 46.149870 ], [ -70.243835, 46.150584 ], [ -70.244179, 46.151773 ], [ -70.245209, 46.151059 ], [ -70.246582, 46.151059 ], [ -70.246925, 46.152011 ], [ -70.248299, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.152724 ], [ -70.247612, 46.153438 ], [ -70.250702, 46.154389 ], [ -70.249672, 46.155816 ], [ -70.250359, 46.155816 ], [ -70.250359, 46.156529 ], [ -70.252419, 46.157243 ], [ -70.252762, 46.158432 ], [ -70.255165, 46.158432 ], [ -70.255852, 46.158907 ], [ -70.255852, 46.159621 ], [ -70.256538, 46.159383 ], [ -70.257568, 46.159859 ], [ -70.257568, 46.160334 ], [ -70.259285, 46.161523 ], [ -70.258598, 46.161761 ], [ -70.258598, 46.162237 ], [ -70.260315, 46.163663 ], [ -70.261345, 46.163663 ], [ -70.261688, 46.164377 ], [ -70.265121, 46.164852 ], [ -70.264435, 46.165566 ], [ -70.264778, 46.167943 ], [ -70.266151, 46.168419 ], [ -70.266495, 46.169370 ], [ -70.267525, 46.169370 ], [ -70.268555, 46.170559 ], [ -70.270271, 46.170321 ], [ -70.270615, 46.171034 ], [ -70.269928, 46.171034 ], [ -70.270958, 46.171510 ], [ -70.271301, 46.172223 ], [ -70.272331, 46.171985 ], [ -70.273018, 46.172461 ], [ -70.274048, 46.172461 ], [ -70.274048, 46.172936 ], [ -70.275421, 46.173412 ], [ -70.275078, 46.174363 ], [ -70.275764, 46.174363 ], [ -70.276108, 46.174838 ], [ -70.277481, 46.174600 ], [ -70.278511, 46.175314 ], [ -70.278511, 46.175789 ], [ -70.280228, 46.176740 ], [ -70.280228, 46.177691 ], [ -70.281258, 46.177691 ], [ -70.281258, 46.178166 ], [ -70.282288, 46.178642 ], [ -70.282631, 46.180068 ], [ -70.284004, 46.180544 ], [ -70.284348, 46.181019 ], [ -70.283661, 46.181494 ], [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191477 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.284348, 46.197894 ], [ -70.283318, 46.199320 ], [ -70.282288, 46.199320 ], [ -70.280914, 46.200270 ], [ -70.281258, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203359 ], [ -70.277138, 46.203834 ], [ -70.277481, 46.204547 ], [ -70.276794, 46.205260 ], [ -70.276451, 46.207636 ], [ -70.274048, 46.208824 ], [ -70.272675, 46.210012 ], [ -70.271645, 46.210012 ], [ -70.272331, 46.211200 ], [ -70.270958, 46.210962 ], [ -70.270958, 46.211913 ], [ -70.271988, 46.212625 ], [ -70.271988, 46.213101 ], [ -70.271301, 46.213338 ], [ -70.272331, 46.214051 ], [ -70.274391, 46.214526 ], [ -70.274391, 46.215239 ], [ -70.273018, 46.216189 ], [ -70.273018, 46.216664 ], [ -70.273705, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.268555, 46.218089 ], [ -70.267525, 46.219515 ], [ -70.267868, 46.221415 ], [ -70.265808, 46.223315 ], [ -70.265808, 46.224028 ], [ -70.267525, 46.224978 ], [ -70.267181, 46.225453 ], [ -70.265808, 46.225690 ], [ -70.265121, 46.226878 ], [ -70.264091, 46.227353 ], [ -70.264091, 46.228778 ], [ -70.261345, 46.229491 ], [ -70.259972, 46.230916 ], [ -70.261002, 46.231391 ], [ -70.259972, 46.232103 ], [ -70.259628, 46.234240 ], [ -70.257568, 46.236853 ], [ -70.257912, 46.238040 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.257225, 46.242314 ], [ -70.256195, 46.243264 ], [ -70.256195, 46.244689 ], [ -70.254135, 46.245638 ], [ -70.254478, 46.246113 ], [ -70.255508, 46.246351 ], [ -70.252419, 46.248487 ], [ -70.251045, 46.248962 ], [ -70.251732, 46.250387 ], [ -70.251732, 46.252286 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.254422 ], [ -70.253792, 46.254660 ], [ -70.253105, 46.255372 ], [ -70.253105, 46.259408 ], [ -70.251732, 46.260832 ], [ -70.250702, 46.260832 ], [ -70.250015, 46.262493 ], [ -70.250702, 46.262731 ], [ -70.250702, 46.263205 ], [ -70.249329, 46.264155 ], [ -70.249672, 46.264867 ], [ -70.248642, 46.265341 ], [ -70.248985, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.272699 ], [ -70.243492, 46.273173 ], [ -70.242805, 46.273648 ], [ -70.241432, 46.272699 ], [ -70.240746, 46.273173 ], [ -70.241089, 46.275072 ], [ -70.239716, 46.275546 ], [ -70.239716, 46.276496 ], [ -70.240402, 46.277207 ], [ -70.240059, 46.279343 ], [ -70.237999, 46.281004 ], [ -70.236626, 46.281004 ], [ -70.236282, 46.281479 ], [ -70.235596, 46.281479 ], [ -70.234566, 46.283614 ], [ -70.232849, 46.284800 ], [ -70.231819, 46.287885 ], [ -70.231819, 46.291206 ], [ -70.229073, 46.291681 ], [ -70.229073, 46.292392 ], [ -70.227699, 46.292155 ], [ -70.227356, 46.292629 ], [ -70.226326, 46.292867 ], [ -70.223579, 46.292867 ], [ -70.223236, 46.293341 ], [ -70.220490, 46.293341 ], [ -70.218086, 46.294290 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295476 ], [ -70.216370, 46.295476 ], [ -70.215340, 46.294764 ], [ -70.213966, 46.296425 ], [ -70.214310, 46.297374 ], [ -70.212250, 46.298797 ], [ -70.211563, 46.298323 ], [ -70.210533, 46.298323 ], [ -70.209160, 46.299034 ], [ -70.207787, 46.299034 ], [ -70.206070, 46.299746 ], [ -70.205727, 46.300457 ], [ -70.207100, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206413, 46.309944 ], [ -70.205040, 46.310893 ], [ -70.203667, 46.312790 ], [ -70.203323, 46.314924 ], [ -70.204353, 46.315399 ], [ -70.204353, 46.316821 ], [ -70.206413, 46.318007 ], [ -70.207443, 46.319192 ], [ -70.206757, 46.321326 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.323935 ], [ -70.206070, 46.324883 ], [ -70.207100, 46.326068 ], [ -70.207787, 46.328202 ], [ -70.209160, 46.329624 ], [ -70.207787, 46.331521 ], [ -70.205383, 46.332706 ], [ -70.205040, 46.333891 ], [ -70.202293, 46.335314 ], [ -70.201263, 46.337210 ], [ -70.195770, 46.341002 ], [ -70.195427, 46.342662 ], [ -70.196114, 46.343373 ], [ -70.193710, 46.345743 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.347639 ], [ -70.191307, 46.348113 ], [ -70.192337, 46.349060 ], [ -70.191650, 46.350245 ], [ -70.189934, 46.350719 ], [ -70.188560, 46.350008 ], [ -70.184441, 46.352141 ], [ -70.183411, 46.351667 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354274 ], [ -70.177231, 46.355696 ], [ -70.176201, 46.356643 ], [ -70.175514, 46.358302 ], [ -70.172768, 46.359487 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357591 ], [ -70.164528, 46.359250 ], [ -70.163155, 46.359250 ], [ -70.162811, 46.360671 ], [ -70.161781, 46.361145 ], [ -70.160065, 46.360908 ], [ -70.160408, 46.359961 ], [ -70.159721, 46.359487 ], [ -70.158005, 46.359487 ], [ -70.158348, 46.360908 ], [ -70.156288, 46.361619 ], [ -70.154228, 46.360198 ], [ -70.150795, 46.359250 ], [ -70.148392, 46.359013 ], [ -70.145988, 46.360908 ], [ -70.144958, 46.362330 ], [ -70.141869, 46.362330 ], [ -70.140839, 46.363041 ], [ -70.140495, 46.363751 ], [ -70.141525, 46.364936 ], [ -70.139122, 46.365884 ], [ -70.137749, 46.369437 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.368963 ], [ -70.131912, 46.369911 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127449, 46.370859 ], [ -70.126762, 46.371569 ], [ -70.127449, 46.372280 ], [ -70.128479, 46.379386 ], [ -70.126076, 46.381754 ], [ -70.124359, 46.381991 ], [ -70.121956, 46.382939 ], [ -70.116463, 46.385781 ], [ -70.116119, 46.387201 ], [ -70.117149, 46.387438 ], [ -70.116806, 46.388386 ], [ -70.115089, 46.388149 ], [ -70.115089, 46.385544 ], [ -70.114403, 46.385307 ], [ -70.113029, 46.386017 ], [ -70.110970, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112343, 46.388386 ], [ -70.110283, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108223, 46.388859 ], [ -70.108910, 46.388386 ], [ -70.108223, 46.387675 ], [ -70.107536, 46.388149 ], [ -70.107880, 46.389096 ], [ -70.109940, 46.390517 ], [ -70.109940, 46.390990 ], [ -70.109253, 46.391464 ], [ -70.108566, 46.391464 ], [ -70.107536, 46.390754 ], [ -70.106850, 46.390990 ], [ -70.106850, 46.391701 ], [ -70.107880, 46.392885 ], [ -70.106163, 46.393595 ], [ -70.105133, 46.393595 ], [ -70.104446, 46.394069 ], [ -70.104446, 46.395016 ], [ -70.102043, 46.396673 ], [ -70.101013, 46.398331 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099297, 46.403066 ], [ -70.100670, 46.403303 ], [ -70.098953, 46.403539 ], [ -70.097923, 46.404250 ], [ -70.098267, 46.404723 ], [ -70.100327, 46.404486 ], [ -70.101013, 46.405433 ], [ -70.097237, 46.405433 ], [ -70.095863, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.406854 ], [ -70.096893, 46.407327 ], [ -70.095177, 46.407801 ], [ -70.094833, 46.408511 ], [ -70.097237, 46.409221 ], [ -70.096893, 46.409694 ], [ -70.094833, 46.409931 ], [ -70.092430, 46.409458 ], [ -70.091400, 46.410405 ], [ -70.089340, 46.411115 ], [ -70.087967, 46.410405 ], [ -70.087967, 46.409931 ], [ -70.086937, 46.409221 ], [ -70.083847, 46.410641 ], [ -70.081444, 46.410878 ], [ -70.079384, 46.410641 ], [ -70.078354, 46.409931 ], [ -70.076637, 46.409694 ], [ -70.073891, 46.410405 ], [ -70.072174, 46.411352 ], [ -70.067024, 46.412062 ], [ -70.065308, 46.413955 ], [ -70.061531, 46.413955 ], [ -70.060844, 46.414429 ], [ -70.057411, 46.414902 ], [ -70.056725, 46.415612 ], [ -70.053635, 46.432178 ], [ -70.023422, 46.573495 ], [ -69.982567, 46.573967 ], [ -69.800606, 46.573495 ], [ -69.721298, 46.574203 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 79, "y": 91 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.874664, 45.524630 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433395 ], [ -68.823509, 45.412189 ], [ -68.815269, 45.382055 ], [ -68.813553, 45.373855 ], [ -68.810120, 45.362760 ], [ -68.804626, 45.341046 ], [ -68.800163, 45.326565 ], [ -68.790207, 45.289380 ], [ -68.776131, 45.240327 ], [ -68.831062, 45.232107 ], [ -68.881187, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.906250, 45.136524 ], [ -68.906593, 45.136282 ], [ -68.933716, 45.132649 ], [ -68.933716, 45.516692 ], [ -68.906250, 45.520541 ], [ -68.874664, 45.524630 ] ] ], [ [ [ -68.823166, 46.092281 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.684837 ], [ -68.906250, 45.671644 ], [ -68.933716, 45.666846 ], [ -68.933716, 46.092281 ], [ -68.823166, 46.092281 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.933716, 45.666846 ], [ -68.933716, 46.092281 ], [ -68.823166, 46.092281 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.684837 ], [ -68.906250, 45.671644 ], [ -68.933716, 45.666846 ] ] ], [ [ [ -68.933716, 45.516692 ], [ -68.906250, 45.520541 ], [ -68.874664, 45.524630 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433395 ], [ -68.823509, 45.412189 ], [ -68.815269, 45.382055 ], [ -68.813553, 45.373855 ], [ -68.810120, 45.362760 ], [ -68.804626, 45.341046 ], [ -68.800163, 45.326565 ], [ -68.790207, 45.289380 ], [ -68.776131, 45.240327 ], [ -68.831062, 45.232107 ], [ -68.881187, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.906250, 45.136524 ], [ -68.906593, 45.136282 ], [ -68.933716, 45.132649 ], [ -68.933716, 45.516692 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 79, "y": 90 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.821449, 46.572551 ], [ -68.821449, 46.483501 ], [ -68.822136, 46.448976 ], [ -68.822136, 46.402592 ], [ -68.821793, 46.395963 ], [ -68.819733, 46.395963 ], [ -68.819733, 46.380096 ], [ -68.821106, 46.251574 ], [ -68.820763, 46.211438 ], [ -68.822823, 46.144161 ], [ -68.823166, 46.073231 ], [ -68.823509, 46.063941 ], [ -68.823509, 46.054173 ], [ -68.933716, 46.054173 ], [ -68.933716, 46.572787 ], [ -68.906250, 46.572787 ], [ -68.821449, 46.572551 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 46.572787 ], [ -68.821449, 46.572551 ], [ -68.821449, 46.483501 ], [ -68.822136, 46.448976 ], [ -68.822136, 46.402592 ], [ -68.821793, 46.395963 ], [ -68.819733, 46.395963 ], [ -68.819733, 46.380096 ], [ -68.821106, 46.251574 ], [ -68.820763, 46.211438 ], [ -68.822823, 46.144161 ], [ -68.823166, 46.073231 ], [ -68.823509, 46.063941 ], [ -68.823509, 46.054173 ], [ -68.933716, 46.054173 ], [ -68.933716, 46.572787 ], [ -68.906250, 46.572787 ] ] ] } } ] } ] } ] } diff --git a/tests/tl_2015_us_county/out/-z8_-pp.json b/tests/tl_2015_us_county/out/-z8_-pp.json index 1924b20..063b22e 100644 --- a/tests/tl_2015_us_county/out/-z8_-pp.json +++ b/tests/tl_2015_us_county/out/-z8_-pp.json @@ -12,167 +12,167 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 45.706179 ], [ -68.994141, 45.706179 ], [ -68.994141, 45.521744 ], [ -68.906250, 45.583290 ], [ -68.818359, 45.274886 ], [ -68.906250, 45.151053 ], [ -69.697266, 45.026950 ], [ -69.785156, 45.336702 ], [ -69.697266, 45.706179 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.890008 ], [ -69.785156, 46.619261 ], [ -68.906250, 46.619261 ], [ -68.906250, 45.706179 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 46.619261 ], [ -68.906250, 45.706179 ], [ -68.994141, 45.706179 ], [ -68.994141, 45.521744 ], [ -68.906250, 45.583290 ], [ -68.818359, 45.274886 ], [ -68.906250, 45.151053 ], [ -69.697266, 45.026950 ], [ -69.785156, 45.336702 ], [ -69.697266, 45.706179 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.890008 ], [ -69.785156, 46.619261 ], [ -68.906250, 46.619261 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.697266, 45.890008 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.706179 ], [ -69.785156, 45.583290 ], [ -69.697266, 45.026950 ], [ -69.433594, 45.089036 ], [ -69.345703, 44.777936 ], [ -69.697266, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.653024 ], [ -70.048828, 44.902578 ], [ -70.136719, 44.902578 ], [ -70.224609, 45.151053 ], [ -70.488281, 45.151053 ], [ -70.576172, 45.706179 ], [ -70.488281, 45.767523 ], [ -70.312500, 45.951150 ], [ -70.312500, 46.195042 ], [ -70.048828, 46.619261 ], [ -69.785156, 46.619261 ], [ -69.697266, 45.890008 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 46.619261 ], [ -69.697266, 45.890008 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.706179 ], [ -69.785156, 45.583290 ], [ -69.697266, 45.026950 ], [ -69.433594, 45.089036 ], [ -69.345703, 44.777936 ], [ -69.697266, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.653024 ], [ -70.048828, 44.902578 ], [ -70.136719, 44.902578 ], [ -70.224609, 45.151053 ], [ -70.488281, 45.151053 ], [ -70.576172, 45.706179 ], [ -70.488281, 45.767523 ], [ -70.312500, 45.951150 ], [ -70.312500, 46.195042 ], [ -70.048828, 46.619261 ], [ -69.785156, 46.619261 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.862305, 45.706179 ], [ -68.994141, 45.675482 ], [ -68.994141, 45.521744 ], [ -68.862305, 45.552525 ], [ -68.818359, 45.243953 ], [ -68.906250, 45.243953 ], [ -68.862305, 45.151053 ], [ -69.653320, 45.026950 ], [ -69.741211, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.697266, 45.675482 ], [ -69.873047, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.741211, 45.890008 ], [ -69.653320, 45.890008 ], [ -69.697266, 46.012224 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ], [ -68.862305, 46.589069 ], [ -68.862305, 45.706179 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.862305, 46.589069 ], [ -68.862305, 45.706179 ], [ -68.994141, 45.675482 ], [ -68.994141, 45.521744 ], [ -68.862305, 45.552525 ], [ -68.818359, 45.243953 ], [ -68.906250, 45.243953 ], [ -68.862305, 45.151053 ], [ -69.653320, 45.026950 ], [ -69.741211, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.697266, 45.675482 ], [ -69.873047, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.741211, 45.890008 ], [ -69.653320, 45.890008 ], [ -69.697266, 46.012224 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ], [ -68.862305, 46.589069 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 45.981695 ], [ -69.697266, 46.012224 ], [ -69.653320, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.741211, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.675482 ], [ -69.785156, 45.552525 ], [ -69.653320, 45.026950 ], [ -69.389648, 45.089036 ], [ -69.301758, 44.746733 ], [ -69.389648, 44.777936 ], [ -69.433594, 44.715514 ], [ -69.653320, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.621754 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.871443 ], [ -70.180664, 45.151053 ], [ -70.444336, 45.151053 ], [ -70.576172, 45.675482 ], [ -70.444336, 45.736860 ], [ -70.444336, 45.798170 ], [ -70.268555, 45.951150 ], [ -70.356445, 45.981695 ], [ -70.268555, 46.164614 ], [ -70.312500, 46.195042 ], [ -70.224609, 46.377254 ], [ -70.092773, 46.437857 ], [ -70.048828, 46.589069 ], [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ], [ -69.697266, 46.012224 ], [ -69.653320, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.741211, 45.767523 ], [ -69.829102, 45.798170 ], [ -69.873047, 45.767523 ], [ -69.697266, 45.675482 ], [ -69.785156, 45.552525 ], [ -69.653320, 45.026950 ], [ -69.389648, 45.089036 ], [ -69.301758, 44.746733 ], [ -69.389648, 44.777936 ], [ -69.433594, 44.715514 ], [ -69.653320, 44.715514 ], [ -69.609375, 44.590467 ], [ -69.960938, 44.621754 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.871443 ], [ -70.180664, 45.151053 ], [ -70.444336, 45.151053 ], [ -70.576172, 45.675482 ], [ -70.444336, 45.736860 ], [ -70.444336, 45.798170 ], [ -70.268555, 45.951150 ], [ -70.356445, 45.981695 ], [ -70.268555, 46.164614 ], [ -70.312500, 46.195042 ], [ -70.224609, 46.377254 ], [ -70.092773, 46.437857 ], [ -70.048828, 46.589069 ], [ -69.741211, 46.589069 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.840332, 46.573967 ], [ -68.840332, 45.690833 ], [ -68.972168, 45.675482 ], [ -68.972168, 45.521744 ], [ -68.862305, 45.537137 ], [ -68.796387, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.151053 ], [ -69.521484, 45.058001 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.719238, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.719238, 45.598666 ], [ -69.719238, 45.660127 ], [ -69.763184, 45.660127 ], [ -69.741211, 45.690833 ], [ -69.851074, 45.752193 ], [ -69.807129, 45.752193 ], [ -69.807129, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.890008 ], [ -69.697266, 45.859412 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.996962 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ], [ -68.840332, 46.573967 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 46.589069 ], [ -68.840332, 46.573967 ], [ -68.840332, 45.690833 ], [ -68.972168, 45.675482 ], [ -68.972168, 45.521744 ], [ -68.862305, 45.537137 ], [ -68.796387, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.151053 ], [ -69.521484, 45.058001 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.719238, 45.305803 ], [ -69.785156, 45.552525 ], [ -69.719238, 45.598666 ], [ -69.719238, 45.660127 ], [ -69.763184, 45.660127 ], [ -69.741211, 45.690833 ], [ -69.851074, 45.752193 ], [ -69.807129, 45.752193 ], [ -69.807129, 45.798170 ], [ -69.741211, 45.767523 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.890008 ], [ -69.697266, 45.859412 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.996962 ], [ -69.741211, 45.981695 ], [ -69.741211, 46.589069 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 45.981695 ], [ -69.697266, 45.996962 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.859412 ], [ -69.719238, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.767523 ], [ -69.807129, 45.798170 ], [ -69.807129, 45.752193 ], [ -69.851074, 45.752193 ], [ -69.741211, 45.690833 ], [ -69.763184, 45.660127 ], [ -69.719238, 45.660127 ], [ -69.719238, 45.598666 ], [ -69.785156, 45.552525 ], [ -69.631348, 45.011419 ], [ -69.367676, 45.073521 ], [ -69.279785, 44.731126 ], [ -69.345703, 44.715514 ], [ -69.345703, 44.762337 ], [ -69.389648, 44.762337 ], [ -69.433594, 44.715514 ], [ -69.477539, 44.699898 ], [ -69.499512, 44.731126 ], [ -69.653320, 44.715514 ], [ -69.587402, 44.637391 ], [ -69.609375, 44.590467 ], [ -69.785156, 44.621754 ], [ -69.807129, 44.590467 ], [ -69.873047, 44.621754 ], [ -69.938965, 44.621754 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.180664, 45.135555 ], [ -70.312500, 45.120053 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.422363, 45.721522 ], [ -70.400391, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.268555, 45.890008 ], [ -70.246582, 45.951150 ], [ -70.268555, 45.966425 ], [ -70.334473, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.334473, 46.027482 ], [ -70.290527, 46.057985 ], [ -70.312500, 46.073231 ], [ -70.246582, 46.149394 ], [ -70.312500, 46.195042 ], [ -70.202637, 46.362093 ], [ -70.070801, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.741211, 46.589069 ], [ -69.741211, 45.981695 ], [ -69.697266, 45.996962 ], [ -69.653320, 45.874712 ], [ -69.697266, 45.859412 ], [ -69.719238, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.719238, 45.859412 ], [ -69.741211, 45.767523 ], [ -69.807129, 45.798170 ], [ -69.807129, 45.752193 ], [ -69.851074, 45.752193 ], [ -69.741211, 45.690833 ], [ -69.763184, 45.660127 ], [ -69.719238, 45.660127 ], [ -69.719238, 45.598666 ], [ -69.785156, 45.552525 ], [ -69.631348, 45.011419 ], [ -69.367676, 45.073521 ], [ -69.279785, 44.731126 ], [ -69.345703, 44.715514 ], [ -69.345703, 44.762337 ], [ -69.389648, 44.762337 ], [ -69.433594, 44.715514 ], [ -69.477539, 44.699898 ], [ -69.499512, 44.731126 ], [ -69.653320, 44.715514 ], [ -69.587402, 44.637391 ], [ -69.609375, 44.590467 ], [ -69.785156, 44.621754 ], [ -69.807129, 44.590467 ], [ -69.873047, 44.621754 ], [ -69.938965, 44.621754 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.048828, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.180664, 45.135555 ], [ -70.312500, 45.120053 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.422363, 45.721522 ], [ -70.400391, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.268555, 45.890008 ], [ -70.246582, 45.951150 ], [ -70.268555, 45.966425 ], [ -70.334473, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.334473, 46.027482 ], [ -70.290527, 46.057985 ], [ -70.312500, 46.073231 ], [ -70.246582, 46.149394 ], [ -70.312500, 46.195042 ], [ -70.202637, 46.362093 ], [ -70.070801, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.741211, 46.589069 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.774170, 45.767523 ], [ -69.730225, 45.767523 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.790509 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.836454 ], [ -69.708252, 45.851760 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.890008 ], [ -69.686279, 45.851760 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.989329 ], [ -69.730225, 45.981695 ], [ -69.730225, 46.581518 ], [ -68.829346, 46.573967 ], [ -68.829346, 45.690833 ], [ -68.961182, 45.667805 ], [ -68.972168, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.785400, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.143305 ], [ -69.510498, 45.058001 ], [ -69.499512, 45.042478 ], [ -69.521484, 45.034715 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.708252, 45.298075 ], [ -69.785156, 45.544831 ], [ -69.719238, 45.590978 ], [ -69.730225, 45.621722 ], [ -69.708252, 45.629405 ], [ -69.719238, 45.652448 ], [ -69.697266, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.752197, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.818115, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.752193 ], [ -69.785156, 45.782848 ], [ -69.774170, 45.767523 ] ] ], [ [ [ -69.785156, 45.790509 ], [ -69.785156, 45.782848 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.790509 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.782848 ], [ -69.774170, 45.767523 ], [ -69.730225, 45.767523 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.790509 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.836454 ], [ -69.708252, 45.851760 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.890008 ], [ -69.686279, 45.851760 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.989329 ], [ -69.730225, 45.981695 ], [ -69.730225, 46.581518 ], [ -68.829346, 46.573967 ], [ -68.829346, 45.690833 ], [ -68.961182, 45.667805 ], [ -68.972168, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.785400, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.862305, 45.143305 ], [ -69.510498, 45.058001 ], [ -69.499512, 45.042478 ], [ -69.521484, 45.034715 ], [ -69.521484, 45.026950 ], [ -69.631348, 45.011419 ], [ -69.708252, 45.298075 ], [ -69.785156, 45.544831 ], [ -69.719238, 45.590978 ], [ -69.730225, 45.621722 ], [ -69.708252, 45.629405 ], [ -69.719238, 45.652448 ], [ -69.697266, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.752197, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.818115, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.752193 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.790509 ], [ -69.785156, 45.782848 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.840088, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.818115, 45.721522 ], [ -69.785156, 45.690833 ], [ -69.741211, 45.683158 ], [ -69.752197, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.697266, 45.652448 ], [ -69.719238, 45.652448 ], [ -69.708252, 45.629405 ], [ -69.730225, 45.621722 ], [ -69.719238, 45.590978 ], [ -69.785156, 45.544831 ], [ -69.631348, 45.011419 ], [ -69.521484, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.042478 ], [ -69.510498, 45.058001 ], [ -69.356689, 45.073521 ], [ -69.268799, 44.723320 ], [ -69.334717, 44.715514 ], [ -69.345703, 44.754535 ], [ -69.389648, 44.754535 ], [ -69.422607, 44.707706 ], [ -69.477539, 44.699898 ], [ -69.477539, 44.723320 ], [ -69.488525, 44.723320 ], [ -69.642334, 44.707706 ], [ -69.620361, 44.660839 ], [ -69.587402, 44.629573 ], [ -69.609375, 44.582643 ], [ -69.785156, 44.613934 ], [ -69.796143, 44.582643 ], [ -69.829102, 44.582643 ], [ -69.829102, 44.613934 ], [ -69.862061, 44.621754 ], [ -69.938965, 44.613934 ], [ -69.971924, 44.668653 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.015869, 44.762337 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.793531 ], [ -70.015869, 44.793531 ], [ -70.037842, 44.809122 ], [ -70.037842, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.169678, 45.135555 ], [ -70.301514, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.532227, 45.667805 ], [ -70.466309, 45.713851 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.378418, 45.836454 ], [ -70.268555, 45.890008 ], [ -70.268555, 45.928230 ], [ -70.246582, 45.943511 ], [ -70.268555, 45.966425 ], [ -70.323486, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.323486, 46.019853 ], [ -70.279541, 46.057985 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.246582, 46.149394 ], [ -70.301514, 46.195042 ], [ -70.235596, 46.293816 ], [ -70.213623, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.354511 ], [ -70.136719, 46.369674 ], [ -70.103760, 46.415139 ], [ -70.059814, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.730225, 46.581518 ], [ -69.730225, 45.981695 ], [ -69.686279, 45.989329 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.851760 ], [ -69.708252, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.851760 ], [ -69.719238, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.790509 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.767523 ], [ -69.774170, 45.767523 ], [ -69.785156, 45.782848 ], [ -69.796143, 45.752193 ], [ -69.840088, 45.744527 ] ], [ [ -69.785156, 45.790509 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.790509 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 45.782848 ], [ -69.796143, 45.752193 ], [ -69.840088, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.818115, 45.721522 ], [ -69.785156, 45.690833 ], [ -69.741211, 45.683158 ], [ -69.752197, 45.652448 ], [ -69.730225, 45.660127 ], [ -69.697266, 45.652448 ], [ -69.719238, 45.652448 ], [ -69.708252, 45.629405 ], [ -69.730225, 45.621722 ], [ -69.719238, 45.590978 ], [ -69.785156, 45.544831 ], [ -69.631348, 45.011419 ], [ -69.521484, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.042478 ], [ -69.510498, 45.058001 ], [ -69.356689, 45.073521 ], [ -69.268799, 44.723320 ], [ -69.334717, 44.715514 ], [ -69.345703, 44.754535 ], [ -69.389648, 44.754535 ], [ -69.422607, 44.707706 ], [ -69.477539, 44.699898 ], [ -69.477539, 44.723320 ], [ -69.488525, 44.723320 ], [ -69.642334, 44.707706 ], [ -69.620361, 44.660839 ], [ -69.587402, 44.629573 ], [ -69.609375, 44.582643 ], [ -69.785156, 44.613934 ], [ -69.796143, 44.582643 ], [ -69.829102, 44.582643 ], [ -69.829102, 44.613934 ], [ -69.862061, 44.621754 ], [ -69.938965, 44.613934 ], [ -69.971924, 44.668653 ], [ -69.960938, 44.684277 ], [ -70.004883, 44.684277 ], [ -70.015869, 44.762337 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.793531 ], [ -70.015869, 44.793531 ], [ -70.037842, 44.809122 ], [ -70.037842, 44.871443 ], [ -70.136719, 44.855869 ], [ -70.158691, 44.949249 ], [ -70.114746, 44.949249 ], [ -70.169678, 45.135555 ], [ -70.301514, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.151053 ], [ -70.554199, 45.675482 ], [ -70.532227, 45.667805 ], [ -70.466309, 45.713851 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.378418, 45.836454 ], [ -70.268555, 45.890008 ], [ -70.268555, 45.928230 ], [ -70.246582, 45.943511 ], [ -70.268555, 45.966425 ], [ -70.323486, 45.966425 ], [ -70.290527, 45.996962 ], [ -70.323486, 46.019853 ], [ -70.279541, 46.057985 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.246582, 46.149394 ], [ -70.301514, 46.195042 ], [ -70.235596, 46.293816 ], [ -70.213623, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.354511 ], [ -70.136719, 46.369674 ], [ -70.103760, 46.415139 ], [ -70.059814, 46.422713 ], [ -70.026855, 46.573967 ], [ -69.730225, 46.581518 ], [ -69.730225, 45.981695 ], [ -69.686279, 45.989329 ], [ -69.653320, 45.867063 ], [ -69.686279, 45.851760 ], [ -69.708252, 45.890008 ], [ -69.741211, 45.890008 ], [ -69.708252, 45.851760 ], [ -69.719238, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.719238, 45.813486 ], [ -69.730225, 45.790509 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.767523 ], [ -69.774170, 45.767523 ], [ -69.785156, 45.782848 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.790509 ], [ -69.807129, 45.790509 ], [ -69.785156, 45.782848 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.713745, 45.832627 ], [ -69.708252, 45.847934 ], [ -69.735718, 45.878537 ], [ -69.702759, 45.886185 ], [ -69.702759, 45.874712 ], [ -69.686279, 45.851760 ], [ -69.675293, 45.855586 ], [ -69.675293, 45.863238 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.735718, 46.396200 ], [ -69.724731, 46.396200 ], [ -69.724731, 46.577743 ], [ -68.823853, 46.573967 ], [ -68.829346, 45.686996 ], [ -68.961182, 45.663966 ], [ -68.955688, 45.640928 ], [ -68.955688, 45.583290 ], [ -68.966675, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.779907, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.856812, 45.143305 ], [ -69.505005, 45.054121 ], [ -69.499512, 45.038597 ], [ -69.521484, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.625854, 45.011419 ], [ -69.691772, 45.209134 ], [ -69.713745, 45.294211 ], [ -69.702759, 45.294211 ], [ -69.785156, 45.544831 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.556372 ], [ -69.735718, 45.567910 ], [ -69.719238, 45.587134 ], [ -69.724731, 45.617880 ], [ -69.713745, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.719238, 45.640928 ], [ -69.719238, 45.648608 ], [ -69.713745, 45.652448 ], [ -69.697266, 45.640928 ], [ -69.697266, 45.648608 ], [ -69.724731, 45.660127 ], [ -69.746704, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.757690, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.713851 ], [ -69.818115, 45.721522 ], [ -69.807129, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.829102, 45.744527 ], [ -69.818115, 45.748360 ], [ -69.790649, 45.748360 ], [ -69.796143, 45.759859 ], [ -69.785156, 45.771355 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.779017 ], [ -69.774170, 45.763691 ], [ -69.752197, 45.767523 ], [ -69.741211, 45.756026 ], [ -69.730225, 45.763691 ], [ -69.730225, 45.775186 ], [ -69.741211, 45.782848 ], [ -69.724731, 45.786679 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.832627 ], [ -69.713745, 45.832627 ] ] ], [ [ [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.786679 ] ] ], [ [ [ -69.730225, 45.836454 ], [ -69.724731, 45.836454 ], [ -69.724731, 45.832627 ], [ -69.730225, 45.836454 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 45.779017 ], [ -69.774170, 45.763691 ], [ -69.752197, 45.767523 ], [ -69.741211, 45.756026 ], [ -69.730225, 45.763691 ], [ -69.730225, 45.775186 ], [ -69.741211, 45.782848 ], [ -69.724731, 45.786679 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.832627 ], [ -69.708252, 45.847934 ], [ -69.735718, 45.878537 ], [ -69.702759, 45.886185 ], [ -69.702759, 45.874712 ], [ -69.686279, 45.851760 ], [ -69.675293, 45.855586 ], [ -69.675293, 45.863238 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.735718, 46.396200 ], [ -69.724731, 46.396200 ], [ -69.724731, 46.577743 ], [ -68.823853, 46.573967 ], [ -68.829346, 45.686996 ], [ -68.961182, 45.663966 ], [ -68.955688, 45.640928 ], [ -68.955688, 45.583290 ], [ -68.966675, 45.514046 ], [ -68.862305, 45.529441 ], [ -68.779907, 45.243953 ], [ -68.884277, 45.228481 ], [ -68.856812, 45.143305 ], [ -69.505005, 45.054121 ], [ -69.499512, 45.038597 ], [ -69.521484, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.625854, 45.011419 ], [ -69.691772, 45.209134 ], [ -69.713745, 45.294211 ], [ -69.702759, 45.294211 ], [ -69.785156, 45.544831 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.556372 ], [ -69.735718, 45.567910 ], [ -69.719238, 45.587134 ], [ -69.724731, 45.617880 ], [ -69.713745, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.719238, 45.640928 ], [ -69.719238, 45.648608 ], [ -69.713745, 45.652448 ], [ -69.697266, 45.640928 ], [ -69.697266, 45.648608 ], [ -69.724731, 45.660127 ], [ -69.746704, 45.652448 ], [ -69.741211, 45.683158 ], [ -69.757690, 45.683158 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.713851 ], [ -69.818115, 45.721522 ], [ -69.807129, 45.721522 ], [ -69.796143, 45.729191 ], [ -69.829102, 45.744527 ], [ -69.818115, 45.748360 ], [ -69.790649, 45.748360 ], [ -69.796143, 45.759859 ], [ -69.785156, 45.771355 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.779017 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.713745, 45.813486 ], [ -69.724731, 45.786679 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.775186 ], [ -69.730225, 45.763691 ], [ -69.741211, 45.756026 ], [ -69.752197, 45.767523 ], [ -69.774170, 45.763691 ], [ -69.785156, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.771355 ], [ -69.796143, 45.759859 ], [ -69.790649, 45.748360 ], [ -69.818115, 45.748360 ], [ -69.829102, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.807129, 45.721522 ], [ -69.818115, 45.721522 ], [ -69.790649, 45.713851 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.683158 ], [ -69.741211, 45.683158 ], [ -69.746704, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.697266, 45.648608 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.652448 ], [ -69.719238, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.702759, 45.629405 ], [ -69.713745, 45.614037 ], [ -69.724731, 45.617880 ], [ -69.719238, 45.587134 ], [ -69.735718, 45.567910 ], [ -69.763184, 45.556372 ], [ -69.774170, 45.556372 ], [ -69.785156, 45.544831 ], [ -69.702759, 45.298075 ], [ -69.713745, 45.294211 ], [ -69.691772, 45.209134 ], [ -69.658813, 45.100669 ], [ -69.647827, 45.104546 ], [ -69.625854, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.038597 ], [ -69.505005, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.285278, 44.813019 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.400635, 44.750634 ], [ -69.395142, 44.735028 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.703802 ], [ -69.472046, 44.695993 ], [ -69.472046, 44.719417 ], [ -69.488525, 44.723320 ], [ -69.636841, 44.703802 ], [ -69.620361, 44.660839 ], [ -69.581909, 44.629573 ], [ -69.598389, 44.606113 ], [ -69.592896, 44.586555 ], [ -69.609375, 44.578730 ], [ -69.779663, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.823608, 44.582643 ], [ -69.823608, 44.610023 ], [ -69.856567, 44.621754 ], [ -69.933472, 44.613934 ], [ -69.949951, 44.649116 ], [ -69.971924, 44.664746 ], [ -69.960938, 44.664746 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.684277 ], [ -69.999390, 44.680372 ], [ -70.015869, 44.758436 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.789633 ], [ -70.021362, 44.813019 ], [ -70.032349, 44.809122 ], [ -70.037842, 44.867550 ], [ -70.131226, 44.851975 ], [ -70.153198, 44.910359 ], [ -70.147705, 44.914249 ], [ -70.153198, 44.945361 ], [ -70.114746, 44.949249 ], [ -70.164185, 45.131680 ], [ -70.296021, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.147179 ], [ -70.521240, 45.514046 ], [ -70.510254, 45.514046 ], [ -70.554199, 45.671644 ], [ -70.537720, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.466309, 45.710015 ], [ -70.444336, 45.706179 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.394897, 45.744527 ], [ -70.389404, 45.752193 ], [ -70.411377, 45.763691 ], [ -70.405884, 45.779017 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.400391, 45.809658 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.345459, 45.855586 ], [ -70.312500, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.268555, 45.897655 ], [ -70.257568, 45.909122 ], [ -70.268555, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.252075, 45.958788 ], [ -70.263062, 45.954969 ], [ -70.268555, 45.966425 ], [ -70.317993, 45.966425 ], [ -70.312500, 45.985512 ], [ -70.285034, 45.996962 ], [ -70.307007, 46.000778 ], [ -70.323486, 46.019853 ], [ -70.307007, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.279541, 46.057985 ], [ -70.285034, 46.065608 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.257568, 46.115134 ], [ -70.241089, 46.145589 ], [ -70.296021, 46.195042 ], [ -70.274048, 46.214051 ], [ -70.235596, 46.293816 ], [ -70.208130, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.350719 ], [ -70.175171, 46.362093 ], [ -70.153198, 46.362093 ], [ -70.131226, 46.369674 ], [ -70.131226, 46.381044 ], [ -70.109253, 46.388622 ], [ -70.098267, 46.411352 ], [ -70.059814, 46.418926 ], [ -70.026855, 46.573967 ], [ -69.724731, 46.577743 ], [ -69.724731, 46.396200 ], [ -69.735718, 46.396200 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.855586 ], [ -69.686279, 45.851760 ], [ -69.702759, 45.874712 ], [ -69.702759, 45.886185 ], [ -69.735718, 45.878537 ], [ -69.708252, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.724731, 45.832627 ], [ -69.713745, 45.813486 ] ], [ [ -69.724731, 45.836454 ], [ -69.730225, 45.836454 ], [ -69.724731, 45.832627 ], [ -69.724731, 45.836454 ] ], [ [ -69.785156, 45.786679 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.785156, 45.779017 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.771355 ], [ -69.796143, 45.759859 ], [ -69.790649, 45.748360 ], [ -69.818115, 45.748360 ], [ -69.829102, 45.744527 ], [ -69.796143, 45.729191 ], [ -69.807129, 45.721522 ], [ -69.818115, 45.721522 ], [ -69.790649, 45.713851 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.683158 ], [ -69.741211, 45.683158 ], [ -69.746704, 45.652448 ], [ -69.724731, 45.660127 ], [ -69.697266, 45.648608 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.652448 ], [ -69.719238, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.702759, 45.629405 ], [ -69.713745, 45.614037 ], [ -69.724731, 45.617880 ], [ -69.719238, 45.587134 ], [ -69.735718, 45.567910 ], [ -69.763184, 45.556372 ], [ -69.774170, 45.556372 ], [ -69.785156, 45.544831 ], [ -69.702759, 45.298075 ], [ -69.713745, 45.294211 ], [ -69.691772, 45.209134 ], [ -69.658813, 45.100669 ], [ -69.647827, 45.104546 ], [ -69.625854, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.521484, 45.034715 ], [ -69.499512, 45.038597 ], [ -69.505005, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.285278, 44.813019 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.400635, 44.750634 ], [ -69.395142, 44.735028 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.703802 ], [ -69.472046, 44.695993 ], [ -69.472046, 44.719417 ], [ -69.488525, 44.723320 ], [ -69.636841, 44.703802 ], [ -69.620361, 44.660839 ], [ -69.581909, 44.629573 ], [ -69.598389, 44.606113 ], [ -69.592896, 44.586555 ], [ -69.609375, 44.578730 ], [ -69.779663, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.823608, 44.582643 ], [ -69.823608, 44.610023 ], [ -69.856567, 44.621754 ], [ -69.933472, 44.613934 ], [ -69.949951, 44.649116 ], [ -69.971924, 44.664746 ], [ -69.960938, 44.664746 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.684277 ], [ -69.999390, 44.680372 ], [ -70.015869, 44.758436 ], [ -70.004883, 44.762337 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.789633 ], [ -70.021362, 44.813019 ], [ -70.032349, 44.809122 ], [ -70.037842, 44.867550 ], [ -70.131226, 44.851975 ], [ -70.153198, 44.910359 ], [ -70.147705, 44.914249 ], [ -70.153198, 44.945361 ], [ -70.114746, 44.949249 ], [ -70.164185, 45.131680 ], [ -70.296021, 45.112300 ], [ -70.312500, 45.166547 ], [ -70.422363, 45.147179 ], [ -70.521240, 45.514046 ], [ -70.510254, 45.514046 ], [ -70.554199, 45.671644 ], [ -70.537720, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.466309, 45.710015 ], [ -70.444336, 45.706179 ], [ -70.422363, 45.713851 ], [ -70.389404, 45.736860 ], [ -70.394897, 45.744527 ], [ -70.389404, 45.752193 ], [ -70.411377, 45.763691 ], [ -70.405884, 45.779017 ], [ -70.422363, 45.798170 ], [ -70.400391, 45.798170 ], [ -70.400391, 45.809658 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.345459, 45.855586 ], [ -70.312500, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.268555, 45.897655 ], [ -70.257568, 45.909122 ], [ -70.268555, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.252075, 45.958788 ], [ -70.263062, 45.954969 ], [ -70.268555, 45.966425 ], [ -70.317993, 45.966425 ], [ -70.312500, 45.985512 ], [ -70.285034, 45.996962 ], [ -70.307007, 46.000778 ], [ -70.323486, 46.019853 ], [ -70.307007, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.279541, 46.057985 ], [ -70.285034, 46.065608 ], [ -70.312500, 46.065608 ], [ -70.290527, 46.103709 ], [ -70.257568, 46.103709 ], [ -70.257568, 46.115134 ], [ -70.241089, 46.145589 ], [ -70.296021, 46.195042 ], [ -70.274048, 46.214051 ], [ -70.235596, 46.293816 ], [ -70.208130, 46.301406 ], [ -70.213623, 46.331758 ], [ -70.191650, 46.350719 ], [ -70.175171, 46.362093 ], [ -70.153198, 46.362093 ], [ -70.131226, 46.369674 ], [ -70.131226, 46.381044 ], [ -70.109253, 46.388622 ], [ -70.098267, 46.411352 ], [ -70.059814, 46.418926 ], [ -70.026855, 46.573967 ], [ -69.724731, 46.577743 ], [ -69.724731, 46.396200 ], [ -69.735718, 46.396200 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.855586 ], [ -69.686279, 45.851760 ], [ -69.702759, 45.874712 ], [ -69.702759, 45.886185 ], [ -69.735718, 45.878537 ], [ -69.708252, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.724731, 45.836454 ], [ -69.713745, 45.813486 ], [ -69.724731, 45.786679 ], [ -69.741211, 45.782848 ], [ -69.730225, 45.775186 ], [ -69.730225, 45.763691 ], [ -69.741211, 45.756026 ], [ -69.752197, 45.767523 ], [ -69.774170, 45.763691 ], [ -69.785156, 45.779017 ] ], [ [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.807129, 45.786679 ], [ -69.785156, 45.782848 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.713745, 45.832627 ], [ -69.705505, 45.847934 ], [ -69.708252, 45.847934 ], [ -69.708252, 45.855586 ], [ -69.713745, 45.857499 ], [ -69.713745, 45.861325 ], [ -69.719238, 45.867063 ], [ -69.727478, 45.867063 ], [ -69.724731, 45.874712 ], [ -69.735718, 45.878537 ], [ -69.735718, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.710999, 45.886185 ], [ -69.700012, 45.886185 ], [ -69.700012, 45.880449 ], [ -69.702759, 45.880449 ], [ -69.702759, 45.872800 ], [ -69.697266, 45.865150 ], [ -69.694519, 45.865150 ], [ -69.691772, 45.855586 ], [ -69.683533, 45.851760 ], [ -69.675293, 45.853673 ], [ -69.675293, 45.863238 ], [ -69.658813, 45.861325 ], [ -69.656067, 45.865150 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.732971, 46.394306 ], [ -69.721985, 46.394306 ], [ -69.721985, 46.575855 ], [ -68.823853, 46.573967 ], [ -68.821106, 46.212150 ], [ -68.829346, 45.685077 ], [ -68.961182, 45.663966 ], [ -68.952942, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.966675, 45.514046 ], [ -68.859558, 45.527517 ], [ -68.777161, 45.242020 ], [ -68.881531, 45.226546 ], [ -68.856812, 45.143305 ], [ -69.502258, 45.054121 ], [ -69.496765, 45.038597 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.623108, 45.011419 ], [ -69.647827, 45.102608 ], [ -69.656067, 45.100669 ], [ -69.689026, 45.209134 ], [ -69.686279, 45.213004 ], [ -69.710999, 45.292279 ], [ -69.702759, 45.294211 ], [ -69.782410, 45.542908 ], [ -69.774170, 45.546755 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.554449 ], [ -69.732971, 45.567910 ], [ -69.724731, 45.583290 ], [ -69.716492, 45.587134 ], [ -69.713745, 45.596744 ], [ -69.721985, 45.604431 ], [ -69.719238, 45.610195 ], [ -69.719238, 45.612116 ], [ -69.710999, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.708252, 45.639007 ], [ -69.719238, 45.640928 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.650528 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.646688 ], [ -69.702759, 45.652448 ], [ -69.724731, 45.658208 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.738464, 45.652448 ], [ -69.743958, 45.652448 ], [ -69.741211, 45.658208 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.667805 ], [ -69.741211, 45.681239 ], [ -69.757690, 45.681239 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.711933 ], [ -69.804382, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.721522 ], [ -69.804382, 45.725356 ], [ -69.793396, 45.727274 ], [ -69.793396, 45.729191 ], [ -69.801636, 45.734943 ], [ -69.809875, 45.734943 ], [ -69.812622, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.829102, 45.738777 ], [ -69.834595, 45.738777 ], [ -69.818115, 45.748360 ], [ -69.801636, 45.750277 ], [ -69.798889, 45.746444 ], [ -69.790649, 45.748360 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.756026 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.769439 ], [ -69.782410, 45.771355 ], [ -69.782410, 45.775186 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.771423, 45.761775 ], [ -69.754944, 45.761775 ], [ -69.752197, 45.767523 ], [ -69.749451, 45.759859 ], [ -69.738464, 45.756026 ], [ -69.727478, 45.763691 ], [ -69.727478, 45.773270 ], [ -69.738464, 45.782848 ], [ -69.724731, 45.784764 ], [ -69.710999, 45.811572 ], [ -69.721985, 45.832627 ], [ -69.713745, 45.832627 ] ] ], [ [ [ -69.804382, 45.786679 ], [ -69.796143, 45.784764 ], [ -69.793396, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.801636, 45.784764 ], [ -69.804382, 45.786679 ] ] ], [ [ [ -69.727478, 45.834540 ], [ -69.721985, 45.834540 ], [ -69.721985, 45.832627 ], [ -69.727478, 45.834540 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.732971, 45.878537 ], [ -69.710999, 45.886185 ], [ -69.700012, 45.886185 ], [ -69.700012, 45.880449 ], [ -69.702759, 45.880449 ], [ -69.702759, 45.872800 ], [ -69.697266, 45.865150 ], [ -69.694519, 45.865150 ], [ -69.691772, 45.855586 ], [ -69.683533, 45.851760 ], [ -69.675293, 45.853673 ], [ -69.675293, 45.863238 ], [ -69.658813, 45.861325 ], [ -69.656067, 45.865150 ], [ -69.647827, 45.863238 ], [ -69.686279, 45.985512 ], [ -69.730225, 45.977878 ], [ -69.732971, 46.394306 ], [ -69.721985, 46.394306 ], [ -69.721985, 46.575855 ], [ -68.823853, 46.573967 ], [ -68.821106, 46.212150 ], [ -68.829346, 45.685077 ], [ -68.961182, 45.663966 ], [ -68.952942, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.966675, 45.514046 ], [ -68.859558, 45.527517 ], [ -68.777161, 45.242020 ], [ -68.881531, 45.226546 ], [ -68.856812, 45.143305 ], [ -69.502258, 45.054121 ], [ -69.496765, 45.038597 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.026950 ], [ -69.623108, 45.011419 ], [ -69.647827, 45.102608 ], [ -69.656067, 45.100669 ], [ -69.689026, 45.209134 ], [ -69.686279, 45.213004 ], [ -69.710999, 45.292279 ], [ -69.702759, 45.294211 ], [ -69.782410, 45.542908 ], [ -69.774170, 45.546755 ], [ -69.774170, 45.556372 ], [ -69.763184, 45.554449 ], [ -69.732971, 45.567910 ], [ -69.724731, 45.583290 ], [ -69.716492, 45.587134 ], [ -69.713745, 45.596744 ], [ -69.721985, 45.604431 ], [ -69.719238, 45.610195 ], [ -69.719238, 45.612116 ], [ -69.710999, 45.614037 ], [ -69.702759, 45.629405 ], [ -69.708252, 45.639007 ], [ -69.719238, 45.640928 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.650528 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.646688 ], [ -69.702759, 45.652448 ], [ -69.724731, 45.658208 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.738464, 45.652448 ], [ -69.743958, 45.652448 ], [ -69.741211, 45.658208 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.667805 ], [ -69.741211, 45.681239 ], [ -69.757690, 45.681239 ], [ -69.785156, 45.690833 ], [ -69.790649, 45.711933 ], [ -69.804382, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.721522 ], [ -69.804382, 45.725356 ], [ -69.793396, 45.727274 ], [ -69.793396, 45.729191 ], [ -69.801636, 45.734943 ], [ -69.809875, 45.734943 ], [ -69.812622, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.818115, 45.748360 ], [ -69.801636, 45.750277 ], [ -69.798889, 45.746444 ], [ -69.790649, 45.748360 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.756026 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.769439 ], [ -69.782410, 45.771355 ], [ -69.782410, 45.775186 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.771423, 45.761775 ], [ -69.754944, 45.761775 ], [ -69.752197, 45.767523 ], [ -69.749451, 45.759859 ], [ -69.738464, 45.756026 ], [ -69.727478, 45.763691 ], [ -69.727478, 45.773270 ], [ -69.738464, 45.782848 ], [ -69.724731, 45.784764 ], [ -69.710999, 45.811572 ], [ -69.721985, 45.834540 ], [ -69.713745, 45.832627 ], [ -69.705505, 45.847934 ], [ -69.708252, 45.847934 ], [ -69.708252, 45.855586 ], [ -69.713745, 45.857499 ], [ -69.713745, 45.861325 ], [ -69.719238, 45.867063 ], [ -69.727478, 45.867063 ], [ -69.724731, 45.874712 ], [ -69.732971, 45.878537 ] ] ], [ [ [ -69.826355, 45.742610 ], [ -69.829102, 45.738777 ], [ -69.834595, 45.738777 ], [ -69.826355, 45.742610 ] ] ], [ [ [ -69.796143, 45.784764 ], [ -69.793396, 45.786679 ], [ -69.785156, 45.786679 ], [ -69.785156, 45.782848 ], [ -69.796143, 45.784764 ] ] ], [ [ [ -69.785156, 45.782848 ], [ -69.785156, 45.777102 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.782848 ] ] ], [ [ [ -69.796143, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.796143, 45.784764 ] ] ], [ [ [ -69.732971, 45.878537 ], [ -69.735718, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.732971, 45.878537 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.710999, 45.811572 ], [ -69.724731, 45.784764 ], [ -69.738464, 45.782848 ], [ -69.727478, 45.773270 ], [ -69.727478, 45.763691 ], [ -69.738464, 45.756026 ], [ -69.749451, 45.759859 ], [ -69.752197, 45.767523 ], [ -69.754944, 45.761775 ], [ -69.771423, 45.761775 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.782410, 45.775186 ], [ -69.782410, 45.771355 ], [ -69.790649, 45.769439 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.748360 ], [ -69.798889, 45.746444 ], [ -69.801636, 45.750277 ], [ -69.818115, 45.748360 ], [ -69.834595, 45.738777 ], [ -69.829102, 45.738777 ], [ -69.826355, 45.742610 ], [ -69.812622, 45.738777 ], [ -69.809875, 45.734943 ], [ -69.801636, 45.734943 ], [ -69.793396, 45.729191 ], [ -69.793396, 45.727274 ], [ -69.804382, 45.725356 ], [ -69.804382, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.715769 ], [ -69.790649, 45.711933 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.681239 ], [ -69.741211, 45.681239 ], [ -69.741211, 45.667805 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.658208 ], [ -69.743958, 45.652448 ], [ -69.738464, 45.652448 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.724731, 45.658208 ], [ -69.702759, 45.652448 ], [ -69.694519, 45.646688 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.650528 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.710999, 45.639007 ], [ -69.702759, 45.629405 ], [ -69.710999, 45.614037 ], [ -69.719238, 45.612116 ], [ -69.719238, 45.610195 ], [ -69.721985, 45.604431 ], [ -69.713745, 45.596744 ], [ -69.716492, 45.587134 ], [ -69.724731, 45.583290 ], [ -69.732971, 45.567910 ], [ -69.763184, 45.554449 ], [ -69.774170, 45.556372 ], [ -69.774170, 45.546755 ], [ -69.782410, 45.542908 ], [ -69.702759, 45.296143 ], [ -69.702759, 45.294211 ], [ -69.710999, 45.292279 ], [ -69.686279, 45.213004 ], [ -69.689026, 45.209134 ], [ -69.656067, 45.100669 ], [ -69.647827, 45.102608 ], [ -69.623108, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.518738, 45.034715 ], [ -69.496765, 45.038597 ], [ -69.502258, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.288025, 44.809122 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.748684 ], [ -69.397888, 44.748684 ], [ -69.395142, 44.733077 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.694041 ], [ -69.469299, 44.709658 ], [ -69.474792, 44.709658 ], [ -69.472046, 44.719417 ], [ -69.485779, 44.721369 ], [ -69.634094, 44.701850 ], [ -69.631348, 44.674513 ], [ -69.620361, 44.658885 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.595642, 44.604157 ], [ -69.592896, 44.584599 ], [ -69.606628, 44.578730 ], [ -69.743958, 44.598290 ], [ -69.746704, 44.604157 ], [ -69.776917, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.820862, 44.582643 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.602202 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.608068 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611979 ], [ -69.947205, 44.649116 ], [ -69.969177, 44.662793 ], [ -69.960938, 44.662793 ], [ -69.960938, 44.672559 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.682325 ], [ -69.996643, 44.678419 ], [ -70.015869, 44.758436 ], [ -70.002136, 44.760386 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.811070 ], [ -70.029602, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.832500 ], [ -70.035095, 44.865603 ], [ -70.131226, 44.851975 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.943417 ], [ -70.112000, 44.949249 ], [ -70.161438, 45.129742 ], [ -70.296021, 45.110362 ], [ -70.309753, 45.164611 ], [ -70.312500, 45.166547 ], [ -70.367432, 45.158801 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.521240, 45.514046 ], [ -70.507507, 45.514046 ], [ -70.554199, 45.669725 ], [ -70.543213, 45.667805 ], [ -70.534973, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.513000, 45.679320 ], [ -70.480042, 45.696588 ], [ -70.466309, 45.708097 ], [ -70.441589, 45.704261 ], [ -70.427856, 45.708097 ], [ -70.430603, 45.711933 ], [ -70.419617, 45.713851 ], [ -70.403137, 45.721522 ], [ -70.397644, 45.729191 ], [ -70.392151, 45.729191 ], [ -70.386658, 45.734943 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.752193 ], [ -70.408630, 45.763691 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.786679 ], [ -70.419617, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.809658 ], [ -70.389404, 45.815401 ], [ -70.389404, 45.819229 ], [ -70.372925, 45.828799 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.342712, 45.853673 ], [ -70.309753, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.260315, 45.891920 ], [ -70.265808, 45.895743 ], [ -70.254822, 45.903389 ], [ -70.254822, 45.909122 ], [ -70.260315, 45.911033 ], [ -70.257568, 45.918677 ], [ -70.265808, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.241089, 45.945421 ], [ -70.246582, 45.945421 ], [ -70.243835, 45.947330 ], [ -70.252075, 45.956878 ], [ -70.263062, 45.953059 ], [ -70.260315, 45.960697 ], [ -70.268555, 45.964515 ], [ -70.274048, 45.962606 ], [ -70.276794, 45.968334 ], [ -70.285034, 45.964515 ], [ -70.317993, 45.964515 ], [ -70.312500, 45.966425 ], [ -70.309753, 45.983604 ], [ -70.296021, 45.987421 ], [ -70.285034, 45.996962 ], [ -70.290527, 45.995054 ], [ -70.304260, 45.998870 ], [ -70.307007, 46.012224 ], [ -70.320740, 46.019853 ], [ -70.304260, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.282288, 46.052267 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.061797 ], [ -70.285034, 46.063703 ], [ -70.304260, 46.061797 ], [ -70.312500, 46.065608 ], [ -70.304260, 46.071325 ], [ -70.304260, 46.082757 ], [ -70.293274, 46.088472 ], [ -70.287781, 46.101804 ], [ -70.274048, 46.103709 ], [ -70.254822, 46.101804 ], [ -70.254822, 46.115134 ], [ -70.238342, 46.145589 ], [ -70.241089, 46.151297 ], [ -70.249329, 46.153200 ], [ -70.268555, 46.170321 ], [ -70.279541, 46.176027 ], [ -70.287781, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.293274, 46.193141 ], [ -70.271301, 46.212150 ], [ -70.274048, 46.217852 ], [ -70.268555, 46.219752 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.260315, 46.238752 ], [ -70.252075, 46.250149 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.259645 ], [ -70.232849, 46.286224 ], [ -70.232849, 46.291918 ], [ -70.208130, 46.301406 ], [ -70.205383, 46.316584 ], [ -70.210876, 46.329862 ], [ -70.197144, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.183411, 46.352615 ], [ -70.175171, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.158691, 46.362093 ], [ -70.150452, 46.360198 ], [ -70.142212, 46.363988 ], [ -70.139465, 46.369674 ], [ -70.131226, 46.369674 ], [ -70.128479, 46.381044 ], [ -70.117493, 46.386728 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.386728 ], [ -70.114746, 46.388622 ], [ -70.109253, 46.388622 ], [ -70.112000, 46.392411 ], [ -70.101013, 46.401882 ], [ -70.101013, 46.405670 ], [ -70.098267, 46.407564 ], [ -70.098267, 46.411352 ], [ -70.079041, 46.411352 ], [ -70.057068, 46.417032 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.575855 ], [ -69.721985, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.656067, 45.865150 ], [ -69.658813, 45.861325 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.691772, 45.855586 ], [ -69.694519, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.702759, 45.872800 ], [ -69.702759, 45.880449 ], [ -69.700012, 45.880449 ], [ -69.700012, 45.886185 ], [ -69.710999, 45.886185 ], [ -69.732971, 45.878537 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.878537 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.867063 ], [ -69.719238, 45.867063 ], [ -69.713745, 45.861325 ], [ -69.713745, 45.857499 ], [ -69.708252, 45.855586 ], [ -69.708252, 45.847934 ], [ -69.705505, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.721985, 45.832627 ], [ -69.710999, 45.811572 ] ], [ [ -69.721985, 45.834540 ], [ -69.727478, 45.834540 ], [ -69.721985, 45.832627 ], [ -69.721985, 45.834540 ] ], [ [ -69.785156, 45.786679 ], [ -69.793396, 45.786679 ], [ -69.796143, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.801636, 45.784764 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.109253, 46.388622 ], [ -70.112000, 46.392411 ], [ -70.101013, 46.401882 ], [ -70.101013, 46.405670 ], [ -70.098267, 46.407564 ], [ -70.098267, 46.411352 ], [ -70.079041, 46.411352 ], [ -70.057068, 46.417032 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.575855 ], [ -69.721985, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.730225, 45.977878 ], [ -69.686279, 45.985512 ], [ -69.647827, 45.863238 ], [ -69.656067, 45.865150 ], [ -69.658813, 45.861325 ], [ -69.675293, 45.863238 ], [ -69.675293, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.691772, 45.855586 ], [ -69.694519, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.702759, 45.872800 ], [ -69.702759, 45.880449 ], [ -69.700012, 45.880449 ], [ -69.700012, 45.886185 ], [ -69.710999, 45.886185 ], [ -69.732971, 45.878537 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.867063 ], [ -69.719238, 45.867063 ], [ -69.713745, 45.861325 ], [ -69.713745, 45.857499 ], [ -69.708252, 45.855586 ], [ -69.708252, 45.847934 ], [ -69.705505, 45.847934 ], [ -69.713745, 45.832627 ], [ -69.721985, 45.834540 ], [ -69.710999, 45.811572 ], [ -69.724731, 45.784764 ], [ -69.738464, 45.782848 ], [ -69.727478, 45.773270 ], [ -69.727478, 45.763691 ], [ -69.738464, 45.756026 ], [ -69.749451, 45.759859 ], [ -69.752197, 45.767523 ], [ -69.754944, 45.761775 ], [ -69.771423, 45.761775 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.775186 ], [ -69.782410, 45.771355 ], [ -69.790649, 45.769439 ], [ -69.796143, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.752193 ], [ -69.790649, 45.748360 ], [ -69.798889, 45.746444 ], [ -69.801636, 45.750277 ], [ -69.818115, 45.748360 ], [ -69.826355, 45.742610 ], [ -69.812622, 45.738777 ], [ -69.809875, 45.734943 ], [ -69.801636, 45.734943 ], [ -69.793396, 45.729191 ], [ -69.793396, 45.727274 ], [ -69.804382, 45.725356 ], [ -69.804382, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.804382, 45.715769 ], [ -69.790649, 45.711933 ], [ -69.785156, 45.690833 ], [ -69.757690, 45.681239 ], [ -69.741211, 45.681239 ], [ -69.741211, 45.667805 ], [ -69.746704, 45.662047 ], [ -69.741211, 45.658208 ], [ -69.743958, 45.652448 ], [ -69.738464, 45.652448 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.724731, 45.658208 ], [ -69.702759, 45.652448 ], [ -69.694519, 45.646688 ], [ -69.697266, 45.640928 ], [ -69.713745, 45.650528 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.640928 ], [ -69.710999, 45.639007 ], [ -69.702759, 45.629405 ], [ -69.710999, 45.614037 ], [ -69.719238, 45.612116 ], [ -69.719238, 45.610195 ], [ -69.721985, 45.604431 ], [ -69.713745, 45.596744 ], [ -69.716492, 45.587134 ], [ -69.724731, 45.583290 ], [ -69.732971, 45.567910 ], [ -69.763184, 45.554449 ], [ -69.774170, 45.556372 ], [ -69.774170, 45.546755 ], [ -69.782410, 45.542908 ], [ -69.702759, 45.296143 ], [ -69.702759, 45.294211 ], [ -69.710999, 45.292279 ], [ -69.686279, 45.213004 ], [ -69.689026, 45.209134 ], [ -69.656067, 45.100669 ], [ -69.647827, 45.102608 ], [ -69.623108, 45.011419 ], [ -69.515991, 45.026950 ], [ -69.518738, 45.034715 ], [ -69.496765, 45.038597 ], [ -69.502258, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.288025, 44.809122 ], [ -69.268799, 44.723320 ], [ -69.329224, 44.715514 ], [ -69.345703, 44.750634 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.748684 ], [ -69.397888, 44.748684 ], [ -69.395142, 44.733077 ], [ -69.417114, 44.719417 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.694041 ], [ -69.469299, 44.709658 ], [ -69.474792, 44.709658 ], [ -69.472046, 44.719417 ], [ -69.485779, 44.721369 ], [ -69.634094, 44.701850 ], [ -69.631348, 44.674513 ], [ -69.620361, 44.658885 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.595642, 44.604157 ], [ -69.592896, 44.584599 ], [ -69.606628, 44.578730 ], [ -69.743958, 44.598290 ], [ -69.746704, 44.604157 ], [ -69.776917, 44.610023 ], [ -69.796143, 44.578730 ], [ -69.820862, 44.582643 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.602202 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.608068 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611979 ], [ -69.947205, 44.649116 ], [ -69.969177, 44.662793 ], [ -69.960938, 44.662793 ], [ -69.960938, 44.672559 ], [ -69.966431, 44.676466 ], [ -69.960938, 44.682325 ], [ -69.996643, 44.678419 ], [ -70.015869, 44.758436 ], [ -70.002136, 44.760386 ], [ -70.004883, 44.789633 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.811070 ], [ -70.029602, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.832500 ], [ -70.035095, 44.865603 ], [ -70.131226, 44.851975 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.943417 ], [ -70.112000, 44.949249 ], [ -70.161438, 45.129742 ], [ -70.296021, 45.110362 ], [ -70.309753, 45.164611 ], [ -70.312500, 45.166547 ], [ -70.367432, 45.158801 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.521240, 45.514046 ], [ -70.507507, 45.514046 ], [ -70.554199, 45.669725 ], [ -70.543213, 45.667805 ], [ -70.534973, 45.671644 ], [ -70.526733, 45.667805 ], [ -70.513000, 45.679320 ], [ -70.480042, 45.696588 ], [ -70.466309, 45.708097 ], [ -70.441589, 45.704261 ], [ -70.427856, 45.708097 ], [ -70.430603, 45.711933 ], [ -70.419617, 45.713851 ], [ -70.403137, 45.721522 ], [ -70.397644, 45.729191 ], [ -70.392151, 45.729191 ], [ -70.386658, 45.734943 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.752193 ], [ -70.408630, 45.763691 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.786679 ], [ -70.419617, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.809658 ], [ -70.389404, 45.815401 ], [ -70.389404, 45.819229 ], [ -70.372925, 45.828799 ], [ -70.372925, 45.836454 ], [ -70.361938, 45.836454 ], [ -70.342712, 45.853673 ], [ -70.309753, 45.859412 ], [ -70.263062, 45.890008 ], [ -70.260315, 45.891920 ], [ -70.265808, 45.895743 ], [ -70.254822, 45.903389 ], [ -70.254822, 45.909122 ], [ -70.260315, 45.911033 ], [ -70.257568, 45.918677 ], [ -70.265808, 45.924409 ], [ -70.241089, 45.939691 ], [ -70.241089, 45.945421 ], [ -70.246582, 45.945421 ], [ -70.243835, 45.947330 ], [ -70.252075, 45.956878 ], [ -70.263062, 45.953059 ], [ -70.260315, 45.960697 ], [ -70.268555, 45.964515 ], [ -70.274048, 45.962606 ], [ -70.276794, 45.968334 ], [ -70.285034, 45.964515 ], [ -70.317993, 45.964515 ], [ -70.312500, 45.966425 ], [ -70.309753, 45.983604 ], [ -70.296021, 45.987421 ], [ -70.285034, 45.996962 ], [ -70.290527, 45.995054 ], [ -70.304260, 45.998870 ], [ -70.307007, 46.012224 ], [ -70.320740, 46.019853 ], [ -70.304260, 46.027482 ], [ -70.301514, 46.038923 ], [ -70.282288, 46.052267 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.061797 ], [ -70.285034, 46.063703 ], [ -70.304260, 46.061797 ], [ -70.312500, 46.065608 ], [ -70.304260, 46.071325 ], [ -70.304260, 46.082757 ], [ -70.293274, 46.088472 ], [ -70.287781, 46.101804 ], [ -70.274048, 46.103709 ], [ -70.254822, 46.101804 ], [ -70.254822, 46.115134 ], [ -70.238342, 46.145589 ], [ -70.241089, 46.151297 ], [ -70.249329, 46.153200 ], [ -70.268555, 46.170321 ], [ -70.279541, 46.176027 ], [ -70.287781, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.293274, 46.193141 ], [ -70.271301, 46.212150 ], [ -70.274048, 46.217852 ], [ -70.268555, 46.219752 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.260315, 46.238752 ], [ -70.252075, 46.250149 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.259645 ], [ -70.232849, 46.286224 ], [ -70.232849, 46.291918 ], [ -70.208130, 46.301406 ], [ -70.205383, 46.316584 ], [ -70.210876, 46.329862 ], [ -70.197144, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.183411, 46.352615 ], [ -70.175171, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.158691, 46.362093 ], [ -70.150452, 46.360198 ], [ -70.142212, 46.363988 ], [ -70.139465, 46.369674 ], [ -70.131226, 46.369674 ], [ -70.128479, 46.381044 ], [ -70.117493, 46.386728 ], [ -70.117493, 46.388622 ], [ -70.109253, 46.388622 ] ], [ [ -69.826355, 45.742610 ], [ -69.834595, 45.738777 ], [ -69.829102, 45.738777 ], [ -69.826355, 45.742610 ] ], [ [ -69.796143, 45.784764 ], [ -69.785156, 45.782848 ], [ -69.785156, 45.786679 ], [ -69.793396, 45.786679 ], [ -69.796143, 45.784764 ] ], [ [ -69.785156, 45.782848 ], [ -69.790649, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.782848 ] ], [ [ -69.796143, 45.784764 ], [ -69.804382, 45.786679 ], [ -69.801636, 45.784764 ], [ -69.796143, 45.784764 ] ], [ [ -69.732971, 45.878537 ], [ -69.738464, 45.884273 ], [ -69.735718, 45.878537 ], [ -69.732971, 45.878537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.675293, 45.166547 ], [ -68.865051, 45.166547 ], [ -68.856812, 45.143305 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.865051, 45.166547 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.675293, 45.166547 ], [ -68.865051, 45.166547 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.282532, 44.809122 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268799, 44.722344 ], [ -69.327850, 44.714538 ], [ -69.344330, 44.750634 ], [ -69.348450, 44.749659 ], [ -69.360809, 44.751610 ], [ -69.371796, 44.755511 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.747709 ], [ -69.395142, 44.748684 ], [ -69.397888, 44.747709 ], [ -69.395142, 44.733077 ], [ -69.406128, 44.727223 ], [ -69.415741, 44.719417 ], [ -69.418488, 44.709658 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708682 ], [ -69.473419, 44.709658 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.634094, 44.700874 ], [ -69.629974, 44.673536 ], [ -69.621735, 44.665723 ], [ -69.618988, 44.657909 ], [ -69.614868, 44.654978 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.580536, 44.621754 ], [ -69.594269, 44.603180 ], [ -69.590149, 44.590467 ], [ -69.591522, 44.584599 ], [ -69.606628, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.745331, 44.603180 ], [ -69.775543, 44.609046 ], [ -69.787903, 44.594379 ], [ -69.793396, 44.577752 ], [ -69.796143, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.816742, 44.584599 ], [ -69.819489, 44.588511 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.601224 ], [ -69.820862, 44.603180 ], [ -69.823608, 44.605135 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.607090 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.966431, 44.663769 ], [ -69.965057, 44.660839 ], [ -69.960938, 44.660839 ], [ -69.959564, 44.662793 ], [ -69.959564, 44.671583 ], [ -69.966431, 44.675489 ], [ -69.960938, 44.678419 ], [ -69.960938, 44.681348 ], [ -69.996643, 44.678419 ], [ -70.014496, 44.758436 ], [ -70.000763, 44.759411 ], [ -70.004883, 44.774036 ], [ -70.002136, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.810096 ], [ -70.028229, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.831526 ], [ -70.033722, 44.864630 ], [ -70.131226, 44.851001 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.942445 ], [ -70.110626, 44.948277 ], [ -70.122986, 45.000738 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.144273 ], [ -70.425110, 45.166547 ], [ -69.675293, 45.166547 ], [ -69.656067, 45.100669 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.675293, 45.166547 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.282532, 44.811070 ], [ -69.282532, 44.809122 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268799, 44.722344 ], [ -69.327850, 44.714538 ], [ -69.344330, 44.750634 ], [ -69.348450, 44.749659 ], [ -69.360809, 44.751610 ], [ -69.371796, 44.755511 ], [ -69.384155, 44.754535 ], [ -69.389648, 44.752585 ], [ -69.389648, 44.747709 ], [ -69.395142, 44.748684 ], [ -69.397888, 44.747709 ], [ -69.395142, 44.733077 ], [ -69.406128, 44.727223 ], [ -69.415741, 44.719417 ], [ -69.418488, 44.709658 ], [ -69.417114, 44.701850 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708682 ], [ -69.473419, 44.709658 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.634094, 44.700874 ], [ -69.629974, 44.673536 ], [ -69.621735, 44.665723 ], [ -69.618988, 44.657909 ], [ -69.614868, 44.654978 ], [ -69.606628, 44.651070 ], [ -69.579163, 44.627619 ], [ -69.580536, 44.621754 ], [ -69.594269, 44.603180 ], [ -69.590149, 44.590467 ], [ -69.591522, 44.584599 ], [ -69.606628, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.745331, 44.603180 ], [ -69.775543, 44.609046 ], [ -69.787903, 44.594379 ], [ -69.793396, 44.577752 ], [ -69.796143, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.816742, 44.584599 ], [ -69.819489, 44.588511 ], [ -69.818115, 44.598290 ], [ -69.823608, 44.601224 ], [ -69.820862, 44.603180 ], [ -69.823608, 44.605135 ], [ -69.823608, 44.608068 ], [ -69.826355, 44.607090 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.966431, 44.663769 ], [ -69.965057, 44.660839 ], [ -69.960938, 44.660839 ], [ -69.959564, 44.662793 ], [ -69.959564, 44.671583 ], [ -69.966431, 44.675489 ], [ -69.960938, 44.678419 ], [ -69.960938, 44.681348 ], [ -69.996643, 44.678419 ], [ -70.014496, 44.758436 ], [ -70.000763, 44.759411 ], [ -70.004883, 44.774036 ], [ -70.002136, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787683 ], [ -70.021362, 44.810096 ], [ -70.028229, 44.809122 ], [ -70.032349, 44.830552 ], [ -70.026855, 44.831526 ], [ -70.033722, 44.864630 ], [ -70.131226, 44.851001 ], [ -70.142212, 44.896741 ], [ -70.150452, 44.896741 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.912304 ], [ -70.153198, 44.942445 ], [ -70.110626, 44.948277 ], [ -70.122986, 45.000738 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.144273 ], [ -70.425110, 45.166547 ], [ -69.675293, 45.166547 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.743958, 45.760817 ], [ -69.741211, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.727478, 45.762733 ], [ -69.724731, 45.766565 ], [ -69.726105, 45.772313 ], [ -69.728851, 45.775186 ], [ -69.737091, 45.779975 ], [ -69.738464, 45.782848 ], [ -69.723358, 45.783806 ], [ -69.719238, 45.798170 ], [ -69.709625, 45.811572 ], [ -69.713745, 45.824014 ], [ -69.719238, 45.829756 ], [ -69.720612, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.720612, 45.835497 ], [ -69.715118, 45.832627 ], [ -69.712372, 45.832627 ], [ -69.705505, 45.846978 ], [ -69.708252, 45.846978 ], [ -69.709625, 45.850804 ], [ -69.706879, 45.854630 ], [ -69.712372, 45.856543 ], [ -69.712372, 45.861325 ], [ -69.717865, 45.866106 ], [ -69.726105, 45.866106 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.876624 ], [ -69.734344, 45.877581 ], [ -69.734344, 45.879493 ], [ -69.732971, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.716492, 45.884273 ], [ -69.713745, 45.883317 ], [ -69.709625, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702759, 45.879493 ], [ -69.701385, 45.872800 ], [ -69.697266, 45.868019 ], [ -69.697266, 45.865150 ], [ -69.693146, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.690399, 45.858456 ], [ -69.690399, 45.854630 ], [ -69.687653, 45.854630 ], [ -69.686279, 45.851760 ], [ -69.683533, 45.851760 ], [ -69.678040, 45.853673 ], [ -69.676666, 45.853673 ], [ -69.676666, 45.851760 ], [ -69.675293, 45.852717 ], [ -69.672546, 45.859412 ], [ -69.675293, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.656067, 45.862281 ], [ -69.654694, 45.864194 ], [ -69.647827, 45.863238 ], [ -69.684906, 45.984558 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.720612, 46.394306 ], [ -69.721985, 46.574911 ], [ -68.822479, 46.573023 ], [ -68.822479, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.212150 ], [ -68.827972, 45.685077 ], [ -68.959808, 45.663007 ], [ -68.951569, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.965302, 45.513084 ], [ -68.858185, 45.527517 ], [ -68.829346, 45.434117 ], [ -68.777161, 45.241053 ], [ -68.881531, 45.225579 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.618988, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.687653, 45.208166 ], [ -69.684906, 45.213004 ], [ -69.709625, 45.291313 ], [ -69.701385, 45.293245 ], [ -69.781036, 45.542908 ], [ -69.774170, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.555410 ], [ -69.761810, 45.554449 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728851, 45.570794 ], [ -69.728851, 45.572716 ], [ -69.724731, 45.582329 ], [ -69.715118, 45.586173 ], [ -69.713745, 45.595783 ], [ -69.717865, 45.597705 ], [ -69.721985, 45.603470 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.612116 ], [ -69.713745, 45.614037 ], [ -69.709625, 45.614037 ], [ -69.709625, 45.616919 ], [ -69.704132, 45.620761 ], [ -69.702759, 45.628445 ], [ -69.708252, 45.633246 ], [ -69.708252, 45.638047 ], [ -69.719238, 45.639968 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.647648 ], [ -69.715118, 45.650528 ], [ -69.712372, 45.650528 ], [ -69.705505, 45.644768 ], [ -69.701385, 45.644768 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.693146, 45.645728 ], [ -69.701385, 45.652448 ], [ -69.723358, 45.658208 ], [ -69.726105, 45.657248 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.737091, 45.651488 ], [ -69.743958, 45.652448 ], [ -69.745331, 45.653408 ], [ -69.739838, 45.657248 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.739838, 45.667805 ], [ -69.739838, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.757690, 45.680280 ], [ -69.760437, 45.683158 ], [ -69.764557, 45.683158 ], [ -69.774170, 45.686036 ], [ -69.779663, 45.690833 ], [ -69.783783, 45.690833 ], [ -69.786530, 45.692751 ], [ -69.786530, 45.700425 ], [ -69.790649, 45.705220 ], [ -69.790649, 45.710974 ], [ -69.798889, 45.715769 ], [ -69.803009, 45.715769 ], [ -69.809875, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.804382, 45.720563 ], [ -69.803009, 45.724398 ], [ -69.800262, 45.723439 ], [ -69.798889, 45.725356 ], [ -69.793396, 45.726315 ], [ -69.792023, 45.729191 ], [ -69.794769, 45.729191 ], [ -69.800262, 45.733984 ], [ -69.809875, 45.733984 ], [ -69.812622, 45.735901 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.737818 ], [ -69.820862, 45.739735 ], [ -69.824982, 45.742610 ], [ -69.827728, 45.737818 ], [ -69.829102, 45.739735 ], [ -69.833221, 45.738777 ], [ -69.827728, 45.740693 ], [ -69.826355, 45.743569 ], [ -69.818115, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.797516, 45.746444 ], [ -69.789276, 45.747402 ], [ -69.789276, 45.750277 ], [ -69.793396, 45.751235 ], [ -69.790649, 45.756026 ], [ -69.794769, 45.757942 ], [ -69.792023, 45.758901 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.762733 ], [ -69.790649, 45.764649 ], [ -69.790649, 45.768481 ], [ -69.782410, 45.770397 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.790649, 45.778060 ], [ -69.785156, 45.782848 ], [ -69.787903, 45.783806 ], [ -69.783783, 45.785721 ], [ -69.782410, 45.781891 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.782410, 45.776144 ], [ -69.775543, 45.765607 ], [ -69.768677, 45.763691 ], [ -69.770050, 45.761775 ], [ -69.753571, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.748077, 45.759859 ], [ -69.743958, 45.760817 ] ] ], [ [ [ -69.809875, 45.722480 ], [ -69.815369, 45.721522 ], [ -69.809875, 45.723439 ], [ -69.809875, 45.722480 ] ] ], [ [ [ -69.789276, 45.782848 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796143, 45.785721 ], [ -69.794769, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.782848 ] ] ], [ [ [ -69.738464, 45.883317 ], [ -69.734344, 45.879493 ], [ -69.738464, 45.880449 ], [ -69.738464, 45.883317 ] ] ], [ [ [ -69.789276, 45.784764 ], [ -69.787903, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.789276, 45.784764 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.734344, 45.879493 ], [ -69.732971, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.716492, 45.884273 ], [ -69.713745, 45.883317 ], [ -69.709625, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702759, 45.879493 ], [ -69.701385, 45.872800 ], [ -69.697266, 45.868019 ], [ -69.697266, 45.865150 ], [ -69.693146, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.690399, 45.858456 ], [ -69.690399, 45.854630 ], [ -69.687653, 45.854630 ], [ -69.686279, 45.851760 ], [ -69.683533, 45.851760 ], [ -69.678040, 45.853673 ], [ -69.676666, 45.853673 ], [ -69.676666, 45.851760 ], [ -69.675293, 45.852717 ], [ -69.672546, 45.859412 ], [ -69.675293, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.656067, 45.862281 ], [ -69.654694, 45.864194 ], [ -69.647827, 45.863238 ], [ -69.684906, 45.984558 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.720612, 46.394306 ], [ -69.721985, 46.574911 ], [ -68.822479, 46.573023 ], [ -68.822479, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.212150 ], [ -68.827972, 45.685077 ], [ -68.959808, 45.663007 ], [ -68.951569, 45.639007 ], [ -68.952942, 45.581367 ], [ -68.965302, 45.513084 ], [ -68.858185, 45.527517 ], [ -68.829346, 45.434117 ], [ -68.777161, 45.241053 ], [ -68.881531, 45.225579 ], [ -68.856812, 45.143305 ], [ -69.242706, 45.089036 ], [ -69.500885, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025980 ], [ -69.618988, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.643707, 45.089036 ], [ -69.646454, 45.101638 ], [ -69.656067, 45.100669 ], [ -69.687653, 45.208166 ], [ -69.684906, 45.213004 ], [ -69.709625, 45.291313 ], [ -69.701385, 45.293245 ], [ -69.781036, 45.542908 ], [ -69.774170, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.555410 ], [ -69.761810, 45.554449 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728851, 45.570794 ], [ -69.728851, 45.572716 ], [ -69.724731, 45.582329 ], [ -69.715118, 45.586173 ], [ -69.713745, 45.595783 ], [ -69.717865, 45.597705 ], [ -69.721985, 45.603470 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.612116 ], [ -69.713745, 45.614037 ], [ -69.709625, 45.614037 ], [ -69.709625, 45.616919 ], [ -69.704132, 45.620761 ], [ -69.702759, 45.628445 ], [ -69.708252, 45.633246 ], [ -69.708252, 45.638047 ], [ -69.719238, 45.639968 ], [ -69.716492, 45.648608 ], [ -69.713745, 45.647648 ], [ -69.715118, 45.650528 ], [ -69.712372, 45.650528 ], [ -69.705505, 45.644768 ], [ -69.701385, 45.644768 ], [ -69.697266, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.693146, 45.645728 ], [ -69.701385, 45.652448 ], [ -69.723358, 45.658208 ], [ -69.726105, 45.657248 ], [ -69.735718, 45.658208 ], [ -69.732971, 45.656288 ], [ -69.737091, 45.651488 ], [ -69.743958, 45.652448 ], [ -69.745331, 45.653408 ], [ -69.739838, 45.657248 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.739838, 45.667805 ], [ -69.739838, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.757690, 45.680280 ], [ -69.760437, 45.683158 ], [ -69.764557, 45.683158 ], [ -69.774170, 45.686036 ], [ -69.779663, 45.690833 ], [ -69.783783, 45.690833 ], [ -69.786530, 45.692751 ], [ -69.786530, 45.700425 ], [ -69.790649, 45.705220 ], [ -69.790649, 45.710974 ], [ -69.798889, 45.715769 ], [ -69.803009, 45.715769 ], [ -69.809875, 45.723439 ], [ -69.808502, 45.723439 ], [ -69.804382, 45.720563 ], [ -69.803009, 45.724398 ], [ -69.800262, 45.723439 ], [ -69.798889, 45.725356 ], [ -69.793396, 45.726315 ], [ -69.792023, 45.729191 ], [ -69.794769, 45.729191 ], [ -69.800262, 45.733984 ], [ -69.809875, 45.733984 ], [ -69.812622, 45.735901 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.737818 ], [ -69.820862, 45.739735 ], [ -69.824982, 45.742610 ], [ -69.827728, 45.737818 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.740693 ], [ -69.826355, 45.743569 ], [ -69.818115, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.797516, 45.746444 ], [ -69.789276, 45.747402 ], [ -69.789276, 45.750277 ], [ -69.793396, 45.751235 ], [ -69.790649, 45.756026 ], [ -69.794769, 45.757942 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.762733 ], [ -69.790649, 45.764649 ], [ -69.790649, 45.768481 ], [ -69.782410, 45.770397 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.773270 ], [ -69.785156, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.790649, 45.778060 ], [ -69.785156, 45.782848 ], [ -69.787903, 45.783806 ], [ -69.783783, 45.785721 ], [ -69.782410, 45.781891 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.782410, 45.779017 ], [ -69.782410, 45.776144 ], [ -69.775543, 45.765607 ], [ -69.768677, 45.763691 ], [ -69.770050, 45.761775 ], [ -69.753571, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.748077, 45.759859 ], [ -69.743958, 45.760817 ], [ -69.741211, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.727478, 45.762733 ], [ -69.724731, 45.766565 ], [ -69.726105, 45.772313 ], [ -69.728851, 45.775186 ], [ -69.737091, 45.779975 ], [ -69.738464, 45.782848 ], [ -69.723358, 45.783806 ], [ -69.719238, 45.798170 ], [ -69.709625, 45.811572 ], [ -69.713745, 45.824014 ], [ -69.719238, 45.829756 ], [ -69.720612, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.720612, 45.835497 ], [ -69.715118, 45.832627 ], [ -69.712372, 45.832627 ], [ -69.705505, 45.846978 ], [ -69.708252, 45.846978 ], [ -69.709625, 45.850804 ], [ -69.706879, 45.854630 ], [ -69.712372, 45.856543 ], [ -69.712372, 45.861325 ], [ -69.717865, 45.866106 ], [ -69.726105, 45.866106 ], [ -69.724731, 45.874712 ], [ -69.727478, 45.876624 ], [ -69.734344, 45.877581 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.789276, 45.782848 ], [ -69.794769, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.789276, 45.784764 ], [ -69.789276, 45.782848 ] ] ], [ [ [ -69.797516, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ] ] ], [ [ [ -69.794769, 45.783806 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796143, 45.785721 ], [ -69.794769, 45.783806 ] ] ], [ [ [ -69.734344, 45.879493 ], [ -69.738464, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.734344, 45.879493 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.338837, 45.011419 ], [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.338837, 45.011419 ] ] ], [ [ [ -69.770050, 45.761775 ], [ -69.768677, 45.763691 ], [ -69.775543, 45.765607 ], [ -69.782410, 45.776144 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.782410, 45.781891 ], [ -69.783783, 45.785721 ], [ -69.787903, 45.783806 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.778060 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.785156, 45.775186 ], [ -69.785156, 45.773270 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.770397 ], [ -69.790649, 45.768481 ], [ -69.790649, 45.764649 ], [ -69.793396, 45.762733 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758901 ], [ -69.794769, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.751235 ], [ -69.789276, 45.750277 ], [ -69.789276, 45.747402 ], [ -69.797516, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.812622, 45.746444 ], [ -69.812622, 45.747402 ], [ -69.818115, 45.747402 ], [ -69.826355, 45.743569 ], [ -69.827728, 45.740693 ], [ -69.833221, 45.738777 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.737818 ], [ -69.824982, 45.742610 ], [ -69.820862, 45.739735 ], [ -69.812622, 45.737818 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733984 ], [ -69.800262, 45.733984 ], [ -69.794769, 45.729191 ], [ -69.792023, 45.729191 ], [ -69.793396, 45.726315 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.723439 ], [ -69.803009, 45.724398 ], [ -69.804382, 45.720563 ], [ -69.808502, 45.723439 ], [ -69.809875, 45.722480 ], [ -69.803009, 45.715769 ], [ -69.798889, 45.715769 ], [ -69.790649, 45.710974 ], [ -69.790649, 45.705220 ], [ -69.786530, 45.700425 ], [ -69.786530, 45.692751 ], [ -69.783783, 45.690833 ], [ -69.779663, 45.690833 ], [ -69.774170, 45.686036 ], [ -69.764557, 45.683158 ], [ -69.760437, 45.683158 ], [ -69.757690, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.739838, 45.680280 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.675482 ], [ -69.739838, 45.667805 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.739838, 45.657248 ], [ -69.745331, 45.653408 ], [ -69.743958, 45.652448 ], [ -69.737091, 45.651488 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.728851, 45.657248 ], [ -69.723358, 45.658208 ], [ -69.701385, 45.652448 ], [ -69.693146, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.697266, 45.640928 ], [ -69.701385, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.712372, 45.650528 ], [ -69.715118, 45.650528 ], [ -69.713745, 45.647648 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.639968 ], [ -69.709625, 45.638047 ], [ -69.708252, 45.633246 ], [ -69.702759, 45.628445 ], [ -69.704132, 45.620761 ], [ -69.709625, 45.616919 ], [ -69.709625, 45.614037 ], [ -69.713745, 45.614037 ], [ -69.715118, 45.612116 ], [ -69.717865, 45.612116 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.608274 ], [ -69.721985, 45.603470 ], [ -69.717865, 45.597705 ], [ -69.713745, 45.595783 ], [ -69.715118, 45.586173 ], [ -69.724731, 45.582329 ], [ -69.728851, 45.572716 ], [ -69.728851, 45.570794 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.761810, 45.554449 ], [ -69.774170, 45.555410 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.545793 ], [ -69.781036, 45.542908 ], [ -69.732971, 45.389771 ], [ -69.701385, 45.296143 ], [ -69.701385, 45.293245 ], [ -69.709625, 45.292279 ], [ -69.705505, 45.276819 ], [ -69.684906, 45.213971 ], [ -69.687653, 45.208166 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -70.127106, 45.011419 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.473175, 45.352145 ], [ -70.519867, 45.513084 ], [ -70.506134, 45.514046 ], [ -70.554199, 45.668765 ], [ -70.547333, 45.666846 ], [ -70.543213, 45.666846 ], [ -70.533600, 45.671644 ], [ -70.526733, 45.666846 ], [ -70.519867, 45.669725 ], [ -70.519867, 45.671644 ], [ -70.511627, 45.679320 ], [ -70.503387, 45.682199 ], [ -70.503387, 45.684117 ], [ -70.497894, 45.686036 ], [ -70.493774, 45.689874 ], [ -70.480042, 45.695629 ], [ -70.470428, 45.702343 ], [ -70.471802, 45.703302 ], [ -70.466309, 45.707138 ], [ -70.462189, 45.706179 ], [ -70.456696, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.445709, 45.704261 ], [ -70.441589, 45.706179 ], [ -70.440216, 45.704261 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.430603, 45.710974 ], [ -70.418243, 45.713851 ], [ -70.414124, 45.716728 ], [ -70.408630, 45.717686 ], [ -70.401764, 45.720563 ], [ -70.397644, 45.729191 ], [ -70.390778, 45.729191 ], [ -70.385284, 45.734943 ], [ -70.386658, 45.734943 ], [ -70.386658, 45.736860 ], [ -70.390778, 45.736860 ], [ -70.390778, 45.737818 ], [ -70.393524, 45.738777 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.748360 ], [ -70.389404, 45.751235 ], [ -70.396271, 45.756984 ], [ -70.401764, 45.757942 ], [ -70.407257, 45.762733 ], [ -70.405884, 45.770397 ], [ -70.408630, 45.774228 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.785721 ], [ -70.415497, 45.790509 ], [ -70.418243, 45.796255 ], [ -70.407257, 45.798170 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.808700 ], [ -70.389404, 45.814444 ], [ -70.389404, 45.819229 ], [ -70.377045, 45.827842 ], [ -70.372925, 45.828799 ], [ -70.370178, 45.831670 ], [ -70.372925, 45.834540 ], [ -70.371552, 45.835497 ], [ -70.360565, 45.835497 ], [ -70.356445, 45.838368 ], [ -70.357819, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.349579, 45.847934 ], [ -70.342712, 45.852717 ], [ -70.319366, 45.856543 ], [ -70.308380, 45.859412 ], [ -70.304260, 45.864194 ], [ -70.298767, 45.865150 ], [ -70.285034, 45.871844 ], [ -70.274048, 45.880449 ], [ -70.274048, 45.883317 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891920 ], [ -70.265808, 45.894787 ], [ -70.254822, 45.902433 ], [ -70.253448, 45.908167 ], [ -70.260315, 45.910078 ], [ -70.257568, 45.918677 ], [ -70.261688, 45.920587 ], [ -70.263062, 45.920587 ], [ -70.264435, 45.924409 ], [ -70.252075, 45.933960 ], [ -70.239716, 45.939691 ], [ -70.239716, 45.944466 ], [ -70.245209, 45.945421 ], [ -70.242462, 45.947330 ], [ -70.249329, 45.950195 ], [ -70.252075, 45.955924 ], [ -70.256195, 45.953059 ], [ -70.261688, 45.953059 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258942, 45.959742 ], [ -70.261688, 45.960697 ], [ -70.267181, 45.964515 ], [ -70.274048, 45.961652 ], [ -70.275421, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.274048, 45.964515 ], [ -70.275421, 45.967379 ], [ -70.283661, 45.964515 ], [ -70.287781, 45.965470 ], [ -70.289154, 45.963561 ], [ -70.298767, 45.963561 ], [ -70.307007, 45.965470 ], [ -70.313873, 45.962606 ], [ -70.316620, 45.963561 ], [ -70.312500, 45.966425 ], [ -70.313873, 45.970243 ], [ -70.311127, 45.973106 ], [ -70.312500, 45.975015 ], [ -70.308380, 45.978832 ], [ -70.309753, 45.980741 ], [ -70.308380, 45.982649 ], [ -70.300140, 45.986466 ], [ -70.296021, 45.986466 ], [ -70.285034, 45.996008 ], [ -70.289154, 45.994099 ], [ -70.293274, 45.997916 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.307007, 46.004593 ], [ -70.307007, 46.011270 ], [ -70.312500, 46.012224 ], [ -70.311127, 46.016039 ], [ -70.319366, 46.019853 ], [ -70.302887, 46.027482 ], [ -70.298767, 46.031296 ], [ -70.302887, 46.032249 ], [ -70.300140, 46.038923 ], [ -70.282288, 46.051314 ], [ -70.279541, 46.057032 ], [ -70.279541, 46.060844 ], [ -70.283661, 46.060844 ], [ -70.285034, 46.062750 ], [ -70.293274, 46.060844 ], [ -70.302887, 46.060844 ], [ -70.304260, 46.062750 ], [ -70.307007, 46.061797 ], [ -70.309753, 46.062750 ], [ -70.311127, 46.064656 ], [ -70.302887, 46.070372 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.304260, 46.077041 ], [ -70.300140, 46.078947 ], [ -70.302887, 46.080852 ], [ -70.302887, 46.082757 ], [ -70.291901, 46.087519 ], [ -70.291901, 46.094186 ], [ -70.285034, 46.097995 ], [ -70.286407, 46.100852 ], [ -70.279541, 46.099900 ], [ -70.274048, 46.102757 ], [ -70.260315, 46.101804 ], [ -70.257568, 46.099900 ], [ -70.253448, 46.100852 ], [ -70.253448, 46.106565 ], [ -70.256195, 46.109422 ], [ -70.254822, 46.114182 ], [ -70.253448, 46.115134 ], [ -70.247955, 46.126556 ], [ -70.243835, 46.129412 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236969, 46.145589 ], [ -70.241089, 46.149394 ], [ -70.241089, 46.151297 ], [ -70.243835, 46.150346 ], [ -70.245209, 46.152248 ], [ -70.249329, 46.152248 ], [ -70.247955, 46.154151 ], [ -70.250702, 46.155102 ], [ -70.250702, 46.156054 ], [ -70.253448, 46.158907 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265808, 46.165566 ], [ -70.267181, 46.169370 ], [ -70.279541, 46.176027 ], [ -70.286407, 46.183634 ], [ -70.286407, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.290527, 46.188388 ], [ -70.293274, 46.192190 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.195993 ], [ -70.286407, 46.195993 ], [ -70.278168, 46.204547 ], [ -70.276794, 46.208349 ], [ -70.271301, 46.211200 ], [ -70.271301, 46.214051 ], [ -70.275421, 46.215001 ], [ -70.274048, 46.216902 ], [ -70.271301, 46.216902 ], [ -70.268555, 46.219752 ], [ -70.265808, 46.223553 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236853 ], [ -70.260315, 46.238752 ], [ -70.254822, 46.246351 ], [ -70.256195, 46.246351 ], [ -70.252075, 46.249200 ], [ -70.252075, 46.252998 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261544 ], [ -70.249329, 46.267240 ], [ -70.243835, 46.273885 ], [ -70.241089, 46.273885 ], [ -70.241089, 46.279580 ], [ -70.232849, 46.285275 ], [ -70.232849, 46.291918 ], [ -70.217743, 46.294764 ], [ -70.217743, 46.295713 ], [ -70.216370, 46.294764 ], [ -70.212250, 46.299509 ], [ -70.206757, 46.300457 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.315636 ], [ -70.208130, 46.319430 ], [ -70.206757, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.195770, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.182037, 46.352615 ], [ -70.182037, 46.354511 ], [ -70.173798, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.162811, 46.361145 ], [ -70.158691, 46.360198 ], [ -70.157318, 46.362093 ], [ -70.149078, 46.359250 ], [ -70.144958, 46.363041 ], [ -70.140839, 46.363041 ], [ -70.142212, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.129852, 46.369674 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.380096 ], [ -70.117493, 46.385781 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.385781 ], [ -70.112000, 46.386728 ], [ -70.113373, 46.388622 ], [ -70.107880, 46.388622 ], [ -70.110626, 46.391464 ], [ -70.107880, 46.391464 ], [ -70.107880, 46.393358 ], [ -70.102386, 46.397147 ], [ -70.101013, 46.401882 ], [ -70.099640, 46.400935 ], [ -70.101013, 46.403776 ], [ -70.098267, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.096893, 46.406617 ], [ -70.096893, 46.407564 ], [ -70.095520, 46.408511 ], [ -70.096893, 46.410405 ], [ -70.092773, 46.409458 ], [ -70.090027, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.411352 ], [ -70.077667, 46.410405 ], [ -70.057068, 46.416086 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.574911 ], [ -69.720612, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684906, 45.984558 ], [ -69.647827, 45.863238 ], [ -69.654694, 45.864194 ], [ -69.656067, 45.862281 ], [ -69.657440, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.675293, 45.862281 ], [ -69.672546, 45.860369 ], [ -69.675293, 45.852717 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853673 ], [ -69.678040, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.687653, 45.854630 ], [ -69.690399, 45.854630 ], [ -69.690399, 45.858456 ], [ -69.694519, 45.862281 ], [ -69.693146, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.697266, 45.868019 ], [ -69.701385, 45.872800 ], [ -69.702759, 45.879493 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.709625, 45.886185 ], [ -69.713745, 45.883317 ], [ -69.716492, 45.884273 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.734344, 45.879493 ], [ -69.734344, 45.877581 ], [ -69.727478, 45.876624 ], [ -69.724731, 45.874712 ], [ -69.726105, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.712372, 45.861325 ], [ -69.712372, 45.856543 ], [ -69.706879, 45.854630 ], [ -69.709625, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.705505, 45.846978 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832627 ], [ -69.720612, 45.835497 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.720612, 45.834540 ], [ -69.719238, 45.829756 ], [ -69.713745, 45.824014 ], [ -69.709625, 45.811572 ], [ -69.719238, 45.798170 ], [ -69.723358, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.779975 ], [ -69.728851, 45.775186 ], [ -69.726105, 45.772313 ], [ -69.724731, 45.766565 ], [ -69.727478, 45.762733 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.756026 ], [ -69.743958, 45.760817 ], [ -69.748077, 45.759859 ], [ -69.750824, 45.763691 ], [ -69.753571, 45.761775 ], [ -69.770050, 45.761775 ] ], [ [ -69.787903, 45.783806 ], [ -69.789276, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.787903, 45.783806 ] ], [ [ -69.815369, 45.721522 ], [ -69.809875, 45.722480 ], [ -69.809875, 45.723439 ], [ -69.815369, 45.721522 ] ], [ [ -69.738464, 45.883317 ], [ -69.738464, 45.880449 ], [ -69.734344, 45.879493 ], [ -69.738464, 45.883317 ] ], [ [ -69.792023, 45.785721 ], [ -69.794769, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.792023, 45.785721 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.734344, 45.879493 ], [ -69.734344, 45.877581 ], [ -69.727478, 45.876624 ], [ -69.724731, 45.874712 ], [ -69.726105, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.712372, 45.861325 ], [ -69.712372, 45.856543 ], [ -69.706879, 45.854630 ], [ -69.709625, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.705505, 45.846978 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832627 ], [ -69.720612, 45.835497 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.720612, 45.834540 ], [ -69.719238, 45.829756 ], [ -69.713745, 45.824014 ], [ -69.709625, 45.811572 ], [ -69.719238, 45.798170 ], [ -69.723358, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.779975 ], [ -69.728851, 45.775186 ], [ -69.726105, 45.772313 ], [ -69.724731, 45.766565 ], [ -69.727478, 45.762733 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.756026 ], [ -69.743958, 45.760817 ], [ -69.748077, 45.759859 ], [ -69.750824, 45.763691 ], [ -69.753571, 45.761775 ], [ -69.770050, 45.761775 ], [ -69.768677, 45.763691 ], [ -69.775543, 45.765607 ], [ -69.782410, 45.776144 ], [ -69.782410, 45.779017 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.782410, 45.781891 ], [ -69.783783, 45.785721 ], [ -69.787903, 45.783806 ], [ -69.785156, 45.782848 ], [ -69.790649, 45.778060 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.785156, 45.775186 ], [ -69.785156, 45.773270 ], [ -69.782410, 45.774228 ], [ -69.785156, 45.772313 ], [ -69.782410, 45.770397 ], [ -69.790649, 45.768481 ], [ -69.790649, 45.764649 ], [ -69.793396, 45.762733 ], [ -69.793396, 45.758901 ], [ -69.794769, 45.757942 ], [ -69.790649, 45.756026 ], [ -69.793396, 45.751235 ], [ -69.789276, 45.750277 ], [ -69.789276, 45.747402 ], [ -69.797516, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.812622, 45.746444 ], [ -69.812622, 45.747402 ], [ -69.818115, 45.747402 ], [ -69.826355, 45.743569 ], [ -69.827728, 45.740693 ], [ -69.829102, 45.739735 ], [ -69.827728, 45.737818 ], [ -69.824982, 45.742610 ], [ -69.820862, 45.739735 ], [ -69.812622, 45.737818 ], [ -69.811249, 45.736860 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733984 ], [ -69.800262, 45.733984 ], [ -69.794769, 45.729191 ], [ -69.792023, 45.729191 ], [ -69.793396, 45.726315 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.723439 ], [ -69.803009, 45.724398 ], [ -69.804382, 45.720563 ], [ -69.808502, 45.723439 ], [ -69.809875, 45.723439 ], [ -69.803009, 45.715769 ], [ -69.798889, 45.715769 ], [ -69.790649, 45.710974 ], [ -69.790649, 45.705220 ], [ -69.786530, 45.700425 ], [ -69.786530, 45.692751 ], [ -69.783783, 45.690833 ], [ -69.779663, 45.690833 ], [ -69.774170, 45.686036 ], [ -69.764557, 45.683158 ], [ -69.760437, 45.683158 ], [ -69.757690, 45.680280 ], [ -69.746704, 45.681239 ], [ -69.739838, 45.680280 ], [ -69.737091, 45.676442 ], [ -69.739838, 45.675482 ], [ -69.739838, 45.667805 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.739838, 45.657248 ], [ -69.745331, 45.653408 ], [ -69.743958, 45.652448 ], [ -69.737091, 45.651488 ], [ -69.732971, 45.656288 ], [ -69.735718, 45.658208 ], [ -69.728851, 45.657248 ], [ -69.723358, 45.658208 ], [ -69.701385, 45.652448 ], [ -69.693146, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.697266, 45.640928 ], [ -69.701385, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.712372, 45.650528 ], [ -69.715118, 45.650528 ], [ -69.713745, 45.647648 ], [ -69.716492, 45.648608 ], [ -69.719238, 45.639968 ], [ -69.709625, 45.638047 ], [ -69.708252, 45.633246 ], [ -69.702759, 45.628445 ], [ -69.704132, 45.620761 ], [ -69.709625, 45.616919 ], [ -69.709625, 45.614037 ], [ -69.713745, 45.614037 ], [ -69.715118, 45.612116 ], [ -69.717865, 45.612116 ], [ -69.720612, 45.614998 ], [ -69.717865, 45.609234 ], [ -69.720612, 45.608274 ], [ -69.721985, 45.603470 ], [ -69.717865, 45.597705 ], [ -69.713745, 45.595783 ], [ -69.715118, 45.586173 ], [ -69.724731, 45.582329 ], [ -69.728851, 45.572716 ], [ -69.728851, 45.570794 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.761810, 45.554449 ], [ -69.774170, 45.555410 ], [ -69.775543, 45.549640 ], [ -69.774170, 45.545793 ], [ -69.781036, 45.542908 ], [ -69.732971, 45.389771 ], [ -69.701385, 45.296143 ], [ -69.701385, 45.293245 ], [ -69.709625, 45.292279 ], [ -69.705505, 45.276819 ], [ -69.684906, 45.213971 ], [ -69.687653, 45.208166 ], [ -69.656067, 45.100669 ], [ -69.646454, 45.101638 ], [ -69.643707, 45.089036 ], [ -69.621735, 45.011419 ], [ -70.127106, 45.011419 ], [ -70.149078, 45.089036 ], [ -70.160065, 45.128773 ], [ -70.294647, 45.110362 ], [ -70.309753, 45.163642 ], [ -70.312500, 45.163642 ], [ -70.312500, 45.165579 ], [ -70.366058, 45.157832 ], [ -70.364685, 45.152990 ], [ -70.419617, 45.145242 ], [ -70.473175, 45.352145 ], [ -70.519867, 45.513084 ], [ -70.506134, 45.514046 ], [ -70.554199, 45.668765 ], [ -70.547333, 45.666846 ], [ -70.543213, 45.666846 ], [ -70.533600, 45.671644 ], [ -70.526733, 45.666846 ], [ -70.519867, 45.669725 ], [ -70.519867, 45.671644 ], [ -70.511627, 45.679320 ], [ -70.503387, 45.682199 ], [ -70.503387, 45.684117 ], [ -70.497894, 45.686036 ], [ -70.493774, 45.689874 ], [ -70.480042, 45.695629 ], [ -70.470428, 45.702343 ], [ -70.471802, 45.703302 ], [ -70.466309, 45.707138 ], [ -70.462189, 45.706179 ], [ -70.456696, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.445709, 45.704261 ], [ -70.441589, 45.706179 ], [ -70.440216, 45.704261 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.430603, 45.710974 ], [ -70.418243, 45.713851 ], [ -70.414124, 45.716728 ], [ -70.408630, 45.717686 ], [ -70.401764, 45.720563 ], [ -70.397644, 45.729191 ], [ -70.390778, 45.729191 ], [ -70.385284, 45.734943 ], [ -70.386658, 45.734943 ], [ -70.386658, 45.736860 ], [ -70.390778, 45.736860 ], [ -70.390778, 45.737818 ], [ -70.393524, 45.738777 ], [ -70.394897, 45.742610 ], [ -70.389404, 45.748360 ], [ -70.389404, 45.751235 ], [ -70.396271, 45.756984 ], [ -70.401764, 45.757942 ], [ -70.407257, 45.762733 ], [ -70.405884, 45.770397 ], [ -70.408630, 45.774228 ], [ -70.405884, 45.777102 ], [ -70.411377, 45.784764 ], [ -70.416870, 45.785721 ], [ -70.415497, 45.790509 ], [ -70.418243, 45.796255 ], [ -70.407257, 45.798170 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.397644, 45.808700 ], [ -70.389404, 45.814444 ], [ -70.389404, 45.819229 ], [ -70.377045, 45.827842 ], [ -70.372925, 45.828799 ], [ -70.370178, 45.831670 ], [ -70.372925, 45.834540 ], [ -70.371552, 45.835497 ], [ -70.360565, 45.835497 ], [ -70.356445, 45.838368 ], [ -70.357819, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.349579, 45.847934 ], [ -70.342712, 45.852717 ], [ -70.319366, 45.856543 ], [ -70.308380, 45.859412 ], [ -70.304260, 45.864194 ], [ -70.298767, 45.865150 ], [ -70.285034, 45.871844 ], [ -70.274048, 45.880449 ], [ -70.274048, 45.883317 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891920 ], [ -70.265808, 45.894787 ], [ -70.254822, 45.902433 ], [ -70.253448, 45.908167 ], [ -70.260315, 45.910078 ], [ -70.257568, 45.918677 ], [ -70.261688, 45.920587 ], [ -70.263062, 45.920587 ], [ -70.264435, 45.924409 ], [ -70.252075, 45.933960 ], [ -70.239716, 45.939691 ], [ -70.239716, 45.944466 ], [ -70.245209, 45.945421 ], [ -70.242462, 45.947330 ], [ -70.249329, 45.950195 ], [ -70.252075, 45.955924 ], [ -70.256195, 45.953059 ], [ -70.261688, 45.953059 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258942, 45.959742 ], [ -70.261688, 45.960697 ], [ -70.267181, 45.964515 ], [ -70.274048, 45.961652 ], [ -70.275421, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.274048, 45.964515 ], [ -70.275421, 45.967379 ], [ -70.283661, 45.964515 ], [ -70.287781, 45.965470 ], [ -70.289154, 45.963561 ], [ -70.298767, 45.963561 ], [ -70.307007, 45.965470 ], [ -70.313873, 45.962606 ], [ -70.316620, 45.963561 ], [ -70.312500, 45.966425 ], [ -70.313873, 45.970243 ], [ -70.311127, 45.973106 ], [ -70.312500, 45.975015 ], [ -70.308380, 45.978832 ], [ -70.309753, 45.980741 ], [ -70.308380, 45.982649 ], [ -70.300140, 45.986466 ], [ -70.296021, 45.986466 ], [ -70.285034, 45.996008 ], [ -70.289154, 45.994099 ], [ -70.293274, 45.997916 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.307007, 46.004593 ], [ -70.307007, 46.011270 ], [ -70.312500, 46.012224 ], [ -70.311127, 46.016039 ], [ -70.319366, 46.019853 ], [ -70.302887, 46.027482 ], [ -70.298767, 46.031296 ], [ -70.302887, 46.032249 ], [ -70.300140, 46.038923 ], [ -70.282288, 46.051314 ], [ -70.279541, 46.057032 ], [ -70.279541, 46.060844 ], [ -70.283661, 46.060844 ], [ -70.285034, 46.062750 ], [ -70.293274, 46.060844 ], [ -70.302887, 46.060844 ], [ -70.304260, 46.062750 ], [ -70.307007, 46.061797 ], [ -70.309753, 46.062750 ], [ -70.311127, 46.064656 ], [ -70.302887, 46.070372 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.304260, 46.077041 ], [ -70.300140, 46.078947 ], [ -70.302887, 46.080852 ], [ -70.302887, 46.082757 ], [ -70.291901, 46.087519 ], [ -70.291901, 46.094186 ], [ -70.285034, 46.097995 ], [ -70.286407, 46.100852 ], [ -70.279541, 46.099900 ], [ -70.274048, 46.102757 ], [ -70.260315, 46.101804 ], [ -70.257568, 46.099900 ], [ -70.253448, 46.100852 ], [ -70.253448, 46.106565 ], [ -70.256195, 46.109422 ], [ -70.254822, 46.114182 ], [ -70.253448, 46.115134 ], [ -70.247955, 46.126556 ], [ -70.243835, 46.129412 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236969, 46.145589 ], [ -70.241089, 46.149394 ], [ -70.241089, 46.151297 ], [ -70.243835, 46.150346 ], [ -70.245209, 46.152248 ], [ -70.249329, 46.152248 ], [ -70.247955, 46.154151 ], [ -70.250702, 46.155102 ], [ -70.250702, 46.156054 ], [ -70.253448, 46.158907 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265808, 46.165566 ], [ -70.267181, 46.169370 ], [ -70.279541, 46.176027 ], [ -70.286407, 46.183634 ], [ -70.286407, 46.185535 ], [ -70.290527, 46.185535 ], [ -70.290527, 46.188388 ], [ -70.293274, 46.192190 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.195993 ], [ -70.286407, 46.195993 ], [ -70.278168, 46.204547 ], [ -70.276794, 46.208349 ], [ -70.271301, 46.211200 ], [ -70.271301, 46.214051 ], [ -70.275421, 46.215001 ], [ -70.274048, 46.216902 ], [ -70.271301, 46.216902 ], [ -70.268555, 46.219752 ], [ -70.265808, 46.223553 ], [ -70.268555, 46.225453 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236853 ], [ -70.260315, 46.238752 ], [ -70.254822, 46.246351 ], [ -70.252075, 46.249200 ], [ -70.252075, 46.252998 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261544 ], [ -70.249329, 46.267240 ], [ -70.243835, 46.273885 ], [ -70.241089, 46.273885 ], [ -70.241089, 46.279580 ], [ -70.232849, 46.285275 ], [ -70.232849, 46.291918 ], [ -70.217743, 46.294764 ], [ -70.217743, 46.295713 ], [ -70.216370, 46.294764 ], [ -70.212250, 46.299509 ], [ -70.206757, 46.300457 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.315636 ], [ -70.208130, 46.319430 ], [ -70.206757, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.195770, 46.341239 ], [ -70.191650, 46.350719 ], [ -70.182037, 46.352615 ], [ -70.182037, 46.354511 ], [ -70.173798, 46.360198 ], [ -70.166931, 46.358302 ], [ -70.162811, 46.361145 ], [ -70.158691, 46.360198 ], [ -70.157318, 46.362093 ], [ -70.149078, 46.359250 ], [ -70.144958, 46.363041 ], [ -70.140839, 46.363041 ], [ -70.142212, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.129852, 46.369674 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.380096 ], [ -70.117493, 46.385781 ], [ -70.117493, 46.388622 ], [ -70.114746, 46.385781 ], [ -70.112000, 46.386728 ], [ -70.113373, 46.388622 ], [ -70.107880, 46.388622 ], [ -70.110626, 46.391464 ], [ -70.107880, 46.391464 ], [ -70.107880, 46.393358 ], [ -70.102386, 46.397147 ], [ -70.101013, 46.401882 ], [ -70.099640, 46.400935 ], [ -70.101013, 46.403776 ], [ -70.098267, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.096893, 46.406617 ], [ -70.096893, 46.407564 ], [ -70.095520, 46.408511 ], [ -70.096893, 46.410405 ], [ -70.092773, 46.409458 ], [ -70.090027, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.411352 ], [ -70.077667, 46.410405 ], [ -70.057068, 46.416086 ], [ -70.024109, 46.573967 ], [ -69.721985, 46.574911 ], [ -69.720612, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684906, 45.984558 ], [ -69.647827, 45.863238 ], [ -69.654694, 45.864194 ], [ -69.656067, 45.862281 ], [ -69.657440, 45.862281 ], [ -69.657440, 45.860369 ], [ -69.675293, 45.862281 ], [ -69.672546, 45.860369 ], [ -69.675293, 45.852717 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853673 ], [ -69.678040, 45.853673 ], [ -69.683533, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.687653, 45.854630 ], [ -69.690399, 45.854630 ], [ -69.690399, 45.858456 ], [ -69.694519, 45.862281 ], [ -69.693146, 45.865150 ], [ -69.697266, 45.865150 ], [ -69.697266, 45.868019 ], [ -69.701385, 45.872800 ], [ -69.702759, 45.879493 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.709625, 45.886185 ], [ -69.713745, 45.883317 ], [ -69.716492, 45.884273 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732971, 45.878537 ], [ -69.734344, 45.879493 ] ], [ [ -69.789276, 45.784764 ], [ -69.792023, 45.785721 ], [ -69.794769, 45.783806 ], [ -69.789276, 45.782848 ], [ -69.789276, 45.784764 ] ], [ [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.797516, 45.783806 ] ], [ [ -69.794769, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.794769, 45.783806 ] ], [ [ -69.734344, 45.879493 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.880449 ], [ -69.734344, 45.879493 ] ] ], [ [ [ -69.621735, 45.011419 ], [ -69.515991, 45.025980 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500885, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.338837, 45.011419 ], [ -69.621735, 45.011419 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 46 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.257568, 45.127805 ], [ -70.257568, 45.115208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.257568, 45.127805 ], [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.257568, 45.127805 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 45 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.306320, 46.025098 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062273 ], [ -70.304260, 46.061797 ], [ -70.307693, 46.061321 ], [ -70.309753, 46.062273 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.261688, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ] ] ], [ [ [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.418930, 45.144273 ], [ -70.473175, 45.351663 ], [ -70.519180, 45.512602 ], [ -70.506134, 45.514046 ], [ -70.534286, 45.602989 ], [ -70.553513, 45.668285 ], [ -70.547333, 45.666366 ], [ -70.545273, 45.667325 ], [ -70.542526, 45.666846 ], [ -70.533600, 45.671164 ], [ -70.527420, 45.666846 ], [ -70.526047, 45.666846 ], [ -70.523987, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.673083 ], [ -70.517807, 45.674523 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506821, 45.681239 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683638 ], [ -70.497208, 45.685557 ], [ -70.497208, 45.686516 ], [ -70.493774, 45.689394 ], [ -70.486908, 45.691792 ], [ -70.485535, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.480042, 45.695149 ], [ -70.475235, 45.698027 ], [ -70.475235, 45.698986 ], [ -70.469742, 45.701864 ], [ -70.471115, 45.703302 ], [ -70.468369, 45.704261 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.449142, 45.704741 ], [ -70.445709, 45.703782 ], [ -70.441589, 45.705700 ], [ -70.439529, 45.704261 ], [ -70.429916, 45.707618 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.425797, 45.708097 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.426483, 45.711933 ], [ -70.423737, 45.711933 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715769 ], [ -70.413437, 45.716728 ], [ -70.407944, 45.717207 ], [ -70.401077, 45.720083 ], [ -70.399704, 45.721042 ], [ -70.401077, 45.722001 ], [ -70.398331, 45.723439 ], [ -70.396957, 45.729191 ], [ -70.395584, 45.729670 ], [ -70.390778, 45.728712 ], [ -70.384598, 45.734463 ], [ -70.385971, 45.734943 ], [ -70.385284, 45.735901 ], [ -70.385971, 45.736380 ], [ -70.390778, 45.736380 ], [ -70.390778, 45.737339 ], [ -70.390091, 45.737818 ], [ -70.392838, 45.738777 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393524, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394897, 45.744527 ], [ -70.393524, 45.744527 ], [ -70.392838, 45.745965 ], [ -70.388718, 45.748360 ], [ -70.388718, 45.750756 ], [ -70.394897, 45.755068 ], [ -70.396271, 45.756984 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762733 ], [ -70.406570, 45.768960 ], [ -70.405884, 45.770397 ], [ -70.407944, 45.773749 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.409317, 45.779975 ], [ -70.408630, 45.780454 ], [ -70.410690, 45.784285 ], [ -70.415497, 45.784764 ], [ -70.416183, 45.785721 ], [ -70.414810, 45.790509 ], [ -70.418243, 45.794340 ], [ -70.417557, 45.795776 ], [ -70.407257, 45.798170 ], [ -70.405197, 45.796733 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.396271, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.396271, 45.802957 ], [ -70.398331, 45.803914 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812529 ], [ -70.390778, 45.813486 ], [ -70.388718, 45.813965 ], [ -70.388718, 45.819229 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828321 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.370178, 45.833105 ], [ -70.372238, 45.834062 ], [ -70.370865, 45.835497 ], [ -70.368805, 45.836454 ], [ -70.367432, 45.835019 ], [ -70.365372, 45.835019 ], [ -70.362625, 45.835976 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.257568, 45.900999 ], [ -70.257568, 45.115208 ] ] ], [ [ [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.909122 ], [ -70.259628, 45.909600 ] ] ], [ [ [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.257568, 45.928707 ], [ -70.257568, 45.918677 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ] ] ], [ [ [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.277481, 46.174600 ], [ -70.280228, 46.176978 ], [ -70.280228, 46.177929 ], [ -70.281601, 46.177929 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191240 ], [ -70.290527, 46.193141 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.257568, 46.160334 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ] ] ], [ [ [ -70.259628, 46.238752 ], [ -70.257568, 46.240177 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.257568, 45.900999 ], [ -70.257568, 45.115208 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.418930, 45.144273 ], [ -70.473175, 45.351663 ], [ -70.519180, 45.512602 ], [ -70.506134, 45.514046 ], [ -70.534286, 45.602989 ], [ -70.553513, 45.668285 ], [ -70.547333, 45.666366 ], [ -70.545273, 45.667325 ], [ -70.542526, 45.666846 ], [ -70.533600, 45.671164 ], [ -70.527420, 45.666846 ], [ -70.526047, 45.666846 ], [ -70.523987, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.673083 ], [ -70.517807, 45.674523 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506821, 45.681239 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683638 ], [ -70.497208, 45.685557 ], [ -70.497208, 45.686516 ], [ -70.493774, 45.689394 ], [ -70.486908, 45.691792 ], [ -70.485535, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.480042, 45.695149 ], [ -70.475235, 45.698027 ], [ -70.475235, 45.698986 ], [ -70.469742, 45.701864 ], [ -70.471115, 45.703302 ], [ -70.468369, 45.704261 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.451202, 45.704261 ], [ -70.449142, 45.704741 ], [ -70.445709, 45.703782 ], [ -70.441589, 45.705700 ], [ -70.439529, 45.704261 ], [ -70.429916, 45.707618 ], [ -70.429230, 45.708097 ], [ -70.426483, 45.707138 ], [ -70.425797, 45.708097 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.426483, 45.711933 ], [ -70.423737, 45.711933 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715769 ], [ -70.413437, 45.716728 ], [ -70.407944, 45.717207 ], [ -70.401077, 45.720083 ], [ -70.399704, 45.721042 ], [ -70.401077, 45.722001 ], [ -70.398331, 45.723439 ], [ -70.396957, 45.729191 ], [ -70.395584, 45.729670 ], [ -70.390778, 45.728712 ], [ -70.384598, 45.734463 ], [ -70.385971, 45.734943 ], [ -70.385284, 45.735901 ], [ -70.385971, 45.736380 ], [ -70.390778, 45.736380 ], [ -70.390778, 45.737339 ], [ -70.390091, 45.737818 ], [ -70.392838, 45.738777 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393524, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394897, 45.744527 ], [ -70.393524, 45.744527 ], [ -70.392838, 45.745965 ], [ -70.388718, 45.748360 ], [ -70.388718, 45.750756 ], [ -70.394897, 45.755068 ], [ -70.396271, 45.756984 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762733 ], [ -70.406570, 45.768960 ], [ -70.405884, 45.770397 ], [ -70.407944, 45.773749 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.409317, 45.779975 ], [ -70.408630, 45.780454 ], [ -70.410690, 45.784285 ], [ -70.415497, 45.784764 ], [ -70.416183, 45.785721 ], [ -70.414810, 45.790509 ], [ -70.418243, 45.794340 ], [ -70.417557, 45.795776 ], [ -70.407257, 45.798170 ], [ -70.405197, 45.796733 ], [ -70.401764, 45.796255 ], [ -70.397644, 45.798170 ], [ -70.396271, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.396271, 45.802957 ], [ -70.398331, 45.803914 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812529 ], [ -70.390778, 45.813486 ], [ -70.388718, 45.813965 ], [ -70.388718, 45.819229 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828321 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.370178, 45.833105 ], [ -70.372238, 45.834062 ], [ -70.370865, 45.835497 ], [ -70.368805, 45.836454 ], [ -70.367432, 45.835019 ], [ -70.365372, 45.835019 ], [ -70.362625, 45.835976 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.261688, 45.889052 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.257568, 45.900999 ] ] ], [ [ [ -70.257568, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.306320, 46.025098 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.307693, 46.061321 ], [ -70.309753, 46.062273 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.261688, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 45.952582 ] ] ], [ [ [ -70.257568, 46.236853 ], [ -70.257568, 46.160334 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.277481, 46.174600 ], [ -70.280228, 46.176978 ], [ -70.280228, 46.177929 ], [ -70.281601, 46.177929 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191240 ], [ -70.290527, 46.193141 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ] ] ], [ [ [ -70.257568, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.909122 ] ] ], [ [ [ -70.257568, 45.928707 ], [ -70.257568, 45.918677 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.257568, 45.928707 ] ] ], [ [ [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.257568, 46.240177 ], [ -70.257568, 46.236853 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 46 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.126663, 45.105031 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025495 ], [ -69.621048, 45.011419 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.662933, 45.127805 ], [ -68.970108, 45.127805 ], [ -69.126663, 45.105031 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.970108, 45.127805 ], [ -69.126663, 45.105031 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.054121 ], [ -69.495392, 45.037626 ], [ -69.518738, 45.034715 ], [ -69.515991, 45.025495 ], [ -69.621048, 45.011419 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.662933, 45.127805 ], [ -68.970108, 45.127805 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.662933, 45.127805 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.621048, 45.011419 ], [ -69.515991, 45.025495 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500198, 45.054121 ], [ -69.356003, 45.073521 ], [ -69.281845, 44.811070 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268112, 44.721857 ], [ -69.327850, 44.714538 ], [ -69.343643, 44.750147 ], [ -69.348450, 44.749172 ], [ -69.360809, 44.751122 ], [ -69.371796, 44.755023 ], [ -69.383469, 44.754535 ], [ -69.388962, 44.752585 ], [ -69.388962, 44.747709 ], [ -69.390335, 44.747221 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.747221 ], [ -69.398575, 44.742344 ], [ -69.395142, 44.735516 ], [ -69.395142, 44.732589 ], [ -69.397202, 44.731126 ], [ -69.406128, 44.727223 ], [ -69.408875, 44.723808 ], [ -69.415054, 44.718929 ], [ -69.414368, 44.716978 ], [ -69.417801, 44.709658 ], [ -69.417114, 44.701362 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708194 ], [ -69.473419, 44.709170 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.581909, 44.708194 ], [ -69.633408, 44.700386 ], [ -69.633408, 44.691112 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673536 ], [ -69.627914, 44.671094 ], [ -69.621735, 44.665234 ], [ -69.618301, 44.657909 ], [ -69.614868, 44.654490 ], [ -69.605942, 44.651070 ], [ -69.599762, 44.644720 ], [ -69.592209, 44.639834 ], [ -69.586029, 44.632505 ], [ -69.581909, 44.630551 ], [ -69.579163, 44.627130 ], [ -69.580536, 44.621754 ], [ -69.590836, 44.608068 ], [ -69.593582, 44.603180 ], [ -69.592209, 44.595846 ], [ -69.589462, 44.590467 ], [ -69.591522, 44.584110 ], [ -69.593582, 44.582154 ], [ -69.601135, 44.580687 ], [ -69.605942, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.744644, 44.602691 ], [ -69.775543, 44.608557 ], [ -69.777603, 44.607579 ], [ -69.787903, 44.594379 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.818115, 44.582154 ], [ -69.816742, 44.584599 ], [ -69.818115, 44.584599 ], [ -69.817429, 44.586066 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.588022 ], [ -69.818115, 44.589000 ], [ -69.818802, 44.590467 ], [ -69.817429, 44.591934 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.594379 ], [ -69.817429, 44.598290 ], [ -69.818802, 44.598290 ], [ -69.818802, 44.599268 ], [ -69.820862, 44.599757 ], [ -69.820862, 44.600735 ], [ -69.822922, 44.601224 ], [ -69.822922, 44.602202 ], [ -69.820862, 44.603180 ], [ -69.820862, 44.604646 ], [ -69.822922, 44.604646 ], [ -69.822235, 44.605135 ], [ -69.822922, 44.605624 ], [ -69.822922, 44.608068 ], [ -69.824295, 44.608068 ], [ -69.825668, 44.607090 ], [ -69.827042, 44.608068 ], [ -69.828415, 44.608557 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663281 ], [ -69.966431, 44.663281 ], [ -69.964371, 44.660839 ], [ -69.960251, 44.660839 ], [ -69.958878, 44.662793 ], [ -69.958191, 44.668165 ], [ -69.959564, 44.671094 ], [ -69.961624, 44.673536 ], [ -69.965744, 44.675001 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678419 ], [ -69.960251, 44.679883 ], [ -69.960251, 44.681348 ], [ -69.996643, 44.677930 ], [ -70.013809, 44.757949 ], [ -70.000763, 44.759411 ], [ -70.004196, 44.773549 ], [ -70.001450, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787196 ], [ -70.021362, 44.810096 ], [ -70.027542, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.026169, 44.831039 ], [ -70.033722, 44.864630 ], [ -70.130539, 44.851001 ], [ -70.142212, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149765, 44.896255 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.911818 ], [ -70.152512, 44.941959 ], [ -70.110626, 44.947791 ], [ -70.122986, 45.000253 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.127805 ], [ -69.662933, 45.127805 ] ] ], [ [ [ -70.172424, 45.126836 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.159378, 45.127805 ], [ -70.172424, 45.126836 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.159378, 45.127805 ], [ -69.662933, 45.127805 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.621048, 45.011419 ], [ -69.515991, 45.025495 ], [ -69.518738, 45.034715 ], [ -69.495392, 45.037626 ], [ -69.500198, 45.054121 ], [ -69.356003, 45.073521 ], [ -69.281845, 44.811070 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267426, 44.723320 ], [ -69.268112, 44.721857 ], [ -69.327850, 44.714538 ], [ -69.343643, 44.750147 ], [ -69.348450, 44.749172 ], [ -69.360809, 44.751122 ], [ -69.371796, 44.755023 ], [ -69.383469, 44.754535 ], [ -69.388962, 44.752585 ], [ -69.388962, 44.747709 ], [ -69.390335, 44.747221 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.747221 ], [ -69.398575, 44.742344 ], [ -69.395142, 44.735516 ], [ -69.395142, 44.732589 ], [ -69.397202, 44.731126 ], [ -69.406128, 44.727223 ], [ -69.408875, 44.723808 ], [ -69.415054, 44.718929 ], [ -69.414368, 44.716978 ], [ -69.417801, 44.709658 ], [ -69.417114, 44.701362 ], [ -69.472046, 44.693064 ], [ -69.467926, 44.708194 ], [ -69.473419, 44.709170 ], [ -69.470673, 44.718441 ], [ -69.484406, 44.720393 ], [ -69.581909, 44.708194 ], [ -69.633408, 44.700386 ], [ -69.633408, 44.691112 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673536 ], [ -69.627914, 44.671094 ], [ -69.621735, 44.665234 ], [ -69.618301, 44.657909 ], [ -69.614868, 44.654490 ], [ -69.605942, 44.651070 ], [ -69.599762, 44.644720 ], [ -69.592209, 44.639834 ], [ -69.586029, 44.632505 ], [ -69.581909, 44.630551 ], [ -69.579163, 44.627130 ], [ -69.580536, 44.621754 ], [ -69.590836, 44.608068 ], [ -69.593582, 44.603180 ], [ -69.592209, 44.595846 ], [ -69.589462, 44.590467 ], [ -69.591522, 44.584110 ], [ -69.593582, 44.582154 ], [ -69.601135, 44.580687 ], [ -69.605942, 44.577752 ], [ -69.742584, 44.598290 ], [ -69.744644, 44.602691 ], [ -69.775543, 44.608557 ], [ -69.777603, 44.607579 ], [ -69.787903, 44.594379 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819489, 44.581665 ], [ -69.818115, 44.582154 ], [ -69.816742, 44.584599 ], [ -69.818115, 44.584599 ], [ -69.817429, 44.586066 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.588022 ], [ -69.818115, 44.589000 ], [ -69.818802, 44.590467 ], [ -69.817429, 44.591934 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.594379 ], [ -69.817429, 44.598290 ], [ -69.818802, 44.598290 ], [ -69.818802, 44.599268 ], [ -69.820862, 44.599757 ], [ -69.820862, 44.600735 ], [ -69.822922, 44.601224 ], [ -69.822922, 44.602202 ], [ -69.820862, 44.603180 ], [ -69.820862, 44.604646 ], [ -69.822922, 44.604646 ], [ -69.822235, 44.605135 ], [ -69.822922, 44.605624 ], [ -69.822922, 44.608068 ], [ -69.824295, 44.608068 ], [ -69.825668, 44.607090 ], [ -69.827042, 44.608068 ], [ -69.828415, 44.608557 ], [ -69.853821, 44.621754 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658885 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663281 ], [ -69.966431, 44.663281 ], [ -69.964371, 44.660839 ], [ -69.960251, 44.660839 ], [ -69.958878, 44.662793 ], [ -69.958191, 44.668165 ], [ -69.959564, 44.671094 ], [ -69.961624, 44.673536 ], [ -69.965744, 44.675001 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678419 ], [ -69.960251, 44.679883 ], [ -69.960251, 44.681348 ], [ -69.996643, 44.677930 ], [ -70.013809, 44.757949 ], [ -70.000763, 44.759411 ], [ -70.004196, 44.773549 ], [ -70.001450, 44.774036 ], [ -70.003510, 44.788658 ], [ -70.015869, 44.787196 ], [ -70.021362, 44.810096 ], [ -70.027542, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.026169, 44.831039 ], [ -70.033722, 44.864630 ], [ -70.130539, 44.851001 ], [ -70.142212, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149765, 44.896255 ], [ -70.153198, 44.910359 ], [ -70.144958, 44.911818 ], [ -70.152512, 44.941959 ], [ -70.110626, 44.947791 ], [ -70.122986, 45.000253 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.127805 ] ] ], [ [ [ -70.159378, 45.127805 ], [ -70.172424, 45.126836 ], [ -70.293961, 45.110362 ], [ -70.299454, 45.127805 ], [ -70.159378, 45.127805 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 39, "y": 45 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.747391, 45.761775 ], [ -69.747391, 45.759859 ], [ -69.743958, 45.760338 ], [ -69.741211, 45.755547 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.730225, 45.759380 ], [ -69.730225, 45.760338 ], [ -69.726791, 45.762254 ], [ -69.724731, 45.766086 ], [ -69.726105, 45.771834 ], [ -69.728165, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738464, 45.782848 ], [ -69.733658, 45.783806 ], [ -69.723358, 45.783327 ], [ -69.723358, 45.786200 ], [ -69.720612, 45.788594 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791467 ], [ -69.718552, 45.797691 ], [ -69.716492, 45.801042 ], [ -69.714432, 45.801999 ], [ -69.713745, 45.804871 ], [ -69.708939, 45.811093 ], [ -69.709625, 45.815401 ], [ -69.713058, 45.819708 ], [ -69.713058, 45.823536 ], [ -69.715805, 45.825928 ], [ -69.716492, 45.829278 ], [ -69.718552, 45.829756 ], [ -69.718552, 45.831670 ], [ -69.719925, 45.834062 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.723358, 45.834062 ], [ -69.721985, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717865, 45.834540 ], [ -69.718552, 45.833584 ], [ -69.715118, 45.832148 ], [ -69.712372, 45.832627 ], [ -69.712372, 45.834062 ], [ -69.708252, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.707565, 45.839324 ], [ -69.707565, 45.842673 ], [ -69.704819, 45.846499 ], [ -69.708252, 45.846978 ], [ -69.708939, 45.850804 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.854630 ], [ -69.709625, 45.856065 ], [ -69.711685, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.715118, 45.862281 ], [ -69.717865, 45.866106 ], [ -69.725418, 45.866106 ], [ -69.726105, 45.867541 ], [ -69.724731, 45.868019 ], [ -69.724045, 45.870888 ], [ -69.725418, 45.872322 ], [ -69.724731, 45.874234 ], [ -69.727478, 45.874712 ], [ -69.727478, 45.876146 ], [ -69.728165, 45.875668 ], [ -69.731598, 45.877103 ], [ -69.734344, 45.877103 ], [ -69.735031, 45.879015 ], [ -69.733658, 45.879493 ], [ -69.737778, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.737091, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881405 ], [ -69.735718, 45.880449 ], [ -69.733658, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.717178, 45.882839 ], [ -69.716492, 45.883795 ], [ -69.713058, 45.883317 ], [ -69.713058, 45.884273 ], [ -69.709625, 45.885707 ], [ -69.706192, 45.885229 ], [ -69.702072, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702072, 45.879971 ], [ -69.702072, 45.879015 ], [ -69.702759, 45.879015 ], [ -69.702759, 45.877103 ], [ -69.700699, 45.874234 ], [ -69.701385, 45.872800 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868975 ], [ -69.697266, 45.867541 ], [ -69.697266, 45.864672 ], [ -69.694519, 45.864194 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.691772, 45.860847 ], [ -69.692459, 45.859412 ], [ -69.689713, 45.858456 ], [ -69.689713, 45.855108 ], [ -69.690399, 45.854630 ], [ -69.686966, 45.854152 ], [ -69.686279, 45.853195 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.683533, 45.851282 ], [ -69.682846, 45.852239 ], [ -69.679413, 45.851760 ], [ -69.678040, 45.853195 ], [ -69.676666, 45.853195 ], [ -69.676666, 45.851760 ], [ -69.674606, 45.852239 ], [ -69.674606, 45.857499 ], [ -69.672546, 45.858934 ], [ -69.674606, 45.862281 ], [ -69.673920, 45.861803 ], [ -69.673920, 45.862759 ], [ -69.670486, 45.860847 ], [ -69.667740, 45.862281 ], [ -69.664993, 45.862281 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662933, 45.861325 ], [ -69.660187, 45.861325 ], [ -69.660187, 45.860847 ], [ -69.658813, 45.861325 ], [ -69.656754, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.655380, 45.861803 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.863238 ], [ -69.654007, 45.864194 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.863238 ], [ -69.648514, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.647141, 45.863238 ], [ -69.684219, 45.984081 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.719925, 46.394306 ], [ -69.721298, 46.574439 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.017487, 46.572551 ], [ -68.821793, 46.572551 ], [ -68.822479, 46.402829 ], [ -68.821793, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.211675 ], [ -68.823166, 46.113706 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.685077 ], [ -68.959122, 45.662527 ], [ -68.950882, 45.638527 ], [ -68.952255, 45.580887 ], [ -68.965302, 45.512602 ], [ -68.880157, 45.524149 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433635 ], [ -68.804626, 45.341046 ], [ -68.776474, 45.240569 ], [ -68.881531, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.990707, 45.125382 ], [ -69.062119, 45.114238 ], [ -69.242020, 45.089036 ], [ -69.492645, 45.055091 ], [ -69.500198, 45.054121 ], [ -69.499512, 45.050240 ], [ -69.632034, 45.050240 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.687653, 45.208166 ], [ -69.684219, 45.213004 ], [ -69.702759, 45.268605 ], [ -69.708939, 45.291313 ], [ -69.700699, 45.292762 ], [ -69.732971, 45.389289 ], [ -69.780350, 45.542908 ], [ -69.773483, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.775543, 45.553006 ], [ -69.774170, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.764557, 45.554929 ], [ -69.761124, 45.554449 ], [ -69.754257, 45.557814 ], [ -69.749451, 45.559256 ], [ -69.748077, 45.560699 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572716 ], [ -69.726791, 45.574158 ], [ -69.726791, 45.577042 ], [ -69.724045, 45.581848 ], [ -69.719925, 45.583290 ], [ -69.717178, 45.585212 ], [ -69.715118, 45.585693 ], [ -69.714432, 45.588576 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.595303 ], [ -69.715118, 45.597224 ], [ -69.717865, 45.597705 ], [ -69.719238, 45.600587 ], [ -69.721298, 45.602989 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.608754 ], [ -69.717865, 45.611156 ], [ -69.719238, 45.613557 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.613077 ], [ -69.714432, 45.612116 ], [ -69.713058, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.708939, 45.616919 ], [ -69.705505, 45.618360 ], [ -69.704819, 45.619801 ], [ -69.703445, 45.620761 ], [ -69.704132, 45.621722 ], [ -69.702072, 45.628445 ], [ -69.707565, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.708252, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.712372, 45.638047 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.716492, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.713058, 45.647648 ], [ -69.714432, 45.650528 ], [ -69.711685, 45.650528 ], [ -69.706879, 45.647168 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.696579, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.692459, 45.645728 ], [ -69.698639, 45.649568 ], [ -69.701385, 45.651968 ], [ -69.703445, 45.651968 ], [ -69.705505, 45.653408 ], [ -69.706192, 45.652928 ], [ -69.713058, 45.655808 ], [ -69.719238, 45.656288 ], [ -69.723358, 45.657728 ], [ -69.726105, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732971, 45.657248 ], [ -69.732285, 45.655808 ], [ -69.734344, 45.654368 ], [ -69.736404, 45.651008 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.653408 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657728 ], [ -69.741898, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.741898, 45.666846 ], [ -69.739838, 45.667325 ], [ -69.740524, 45.669725 ], [ -69.739151, 45.671644 ], [ -69.739151, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.738464, 45.676921 ], [ -69.739151, 45.679800 ], [ -69.746017, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.754944, 45.679800 ], [ -69.757004, 45.679800 ], [ -69.760437, 45.682678 ], [ -69.764557, 45.682678 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.685077 ], [ -69.774170, 45.686036 ], [ -69.774857, 45.687955 ], [ -69.776917, 45.687955 ], [ -69.779663, 45.690353 ], [ -69.783096, 45.690833 ], [ -69.785843, 45.692751 ], [ -69.785843, 45.699945 ], [ -69.789963, 45.702343 ], [ -69.790649, 45.704741 ], [ -69.790649, 45.710495 ], [ -69.798203, 45.715289 ], [ -69.803009, 45.715289 ], [ -69.805756, 45.717207 ], [ -69.805756, 45.720563 ], [ -69.809189, 45.722960 ], [ -69.813309, 45.722001 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722480 ], [ -69.805069, 45.722001 ], [ -69.803696, 45.720563 ], [ -69.804382, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.800262, 45.722960 ], [ -69.800262, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.797516, 45.724398 ], [ -69.792709, 45.725836 ], [ -69.791336, 45.726794 ], [ -69.792023, 45.728712 ], [ -69.794083, 45.728712 ], [ -69.800262, 45.733505 ], [ -69.809875, 45.733505 ], [ -69.812622, 45.735901 ], [ -69.810562, 45.736380 ], [ -69.811935, 45.737339 ], [ -69.820175, 45.739256 ], [ -69.820175, 45.740693 ], [ -69.821548, 45.740693 ], [ -69.824295, 45.742610 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.743089 ], [ -69.822922, 45.743569 ], [ -69.822235, 45.745006 ], [ -69.817429, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.745965 ], [ -69.806442, 45.747881 ], [ -69.805756, 45.748839 ], [ -69.801636, 45.749319 ], [ -69.796829, 45.746444 ], [ -69.793396, 45.745965 ], [ -69.789963, 45.747402 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.749798 ], [ -69.791336, 45.750277 ], [ -69.792709, 45.751235 ], [ -69.792023, 45.753152 ], [ -69.789963, 45.754589 ], [ -69.789963, 45.756026 ], [ -69.793396, 45.757463 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.792709, 45.759859 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.790649, 45.764649 ], [ -69.792023, 45.764649 ], [ -69.791336, 45.766086 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.768002 ], [ -69.789276, 45.768960 ], [ -69.787216, 45.768481 ], [ -69.782410, 45.769918 ], [ -69.784470, 45.772313 ], [ -69.783096, 45.772792 ], [ -69.781723, 45.774228 ], [ -69.784470, 45.773270 ], [ -69.785156, 45.774707 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.776144 ], [ -69.786530, 45.776144 ], [ -69.786530, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.789276, 45.777102 ], [ -69.788589, 45.777581 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.778060 ], [ -69.787216, 45.780933 ], [ -69.785156, 45.780933 ], [ -69.784470, 45.782848 ], [ -69.785843, 45.783806 ], [ -69.787903, 45.783806 ], [ -69.788589, 45.784285 ], [ -69.788589, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783806 ], [ -69.792023, 45.784285 ], [ -69.794083, 45.782848 ], [ -69.796829, 45.783327 ], [ -69.796143, 45.784285 ], [ -69.797516, 45.783327 ], [ -69.798203, 45.784285 ], [ -69.797516, 45.783806 ], [ -69.797516, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.796143, 45.785721 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.794083, 45.783327 ], [ -69.792023, 45.785721 ], [ -69.791336, 45.784285 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.784764 ], [ -69.788589, 45.785243 ], [ -69.785156, 45.785721 ], [ -69.784470, 45.784285 ], [ -69.784470, 45.783806 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.783783, 45.781891 ], [ -69.785843, 45.779496 ], [ -69.786530, 45.779975 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.777102 ], [ -69.783096, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.781036, 45.776623 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.779663, 45.772313 ], [ -69.777603, 45.770876 ], [ -69.776917, 45.768002 ], [ -69.774170, 45.766086 ], [ -69.774857, 45.765128 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.763691 ], [ -69.767990, 45.763212 ], [ -69.769363, 45.761775 ], [ -69.762497, 45.761296 ], [ -69.760437, 45.762254 ], [ -69.758377, 45.761775 ], [ -69.752884, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.750824, 45.764649 ], [ -69.750137, 45.763212 ], [ -69.747391, 45.761775 ] ] ], [ [ [ -69.830475, 45.738297 ], [ -69.833221, 45.738777 ], [ -69.827042, 45.740214 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827728, 45.739256 ], [ -69.827728, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.830475, 45.738297 ] ] ], [ [ [ -69.801636, 45.785243 ], [ -69.801636, 45.785721 ], [ -69.798203, 45.784764 ], [ -69.798203, 45.784285 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.785243 ] ] ], [ [ [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ], [ -69.798889, 45.783806 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.788589, 45.784764 ], [ -69.788589, 45.785243 ], [ -69.785156, 45.785721 ], [ -69.784470, 45.784285 ], [ -69.784470, 45.783806 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.783783, 45.781891 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.777102 ], [ -69.783096, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.781036, 45.776623 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.779663, 45.772313 ], [ -69.777603, 45.770876 ], [ -69.776917, 45.768002 ], [ -69.774170, 45.766086 ], [ -69.774857, 45.765128 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.763691 ], [ -69.767990, 45.763212 ], [ -69.769363, 45.761775 ], [ -69.762497, 45.761296 ], [ -69.760437, 45.762254 ], [ -69.758377, 45.761775 ], [ -69.752884, 45.761775 ], [ -69.750824, 45.763691 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.763212 ], [ -69.747391, 45.761775 ], [ -69.747391, 45.759859 ], [ -69.743958, 45.760338 ], [ -69.741211, 45.755547 ], [ -69.737091, 45.755068 ], [ -69.732971, 45.756026 ], [ -69.730225, 45.759380 ], [ -69.730225, 45.760338 ], [ -69.726791, 45.762254 ], [ -69.724731, 45.766086 ], [ -69.726105, 45.771834 ], [ -69.728165, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738464, 45.782848 ], [ -69.733658, 45.783806 ], [ -69.723358, 45.783327 ], [ -69.723358, 45.786200 ], [ -69.720612, 45.788594 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791467 ], [ -69.718552, 45.797691 ], [ -69.716492, 45.801042 ], [ -69.714432, 45.801999 ], [ -69.713745, 45.804871 ], [ -69.708939, 45.811093 ], [ -69.709625, 45.815401 ], [ -69.713058, 45.819708 ], [ -69.713058, 45.823536 ], [ -69.715805, 45.825928 ], [ -69.716492, 45.829278 ], [ -69.718552, 45.829756 ], [ -69.718552, 45.831670 ], [ -69.719925, 45.834062 ], [ -69.724731, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.723358, 45.834062 ], [ -69.721985, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.718552, 45.833584 ], [ -69.715118, 45.832148 ], [ -69.712372, 45.832627 ], [ -69.712372, 45.834062 ], [ -69.708252, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.707565, 45.839324 ], [ -69.707565, 45.842673 ], [ -69.704819, 45.846499 ], [ -69.708252, 45.846978 ], [ -69.708939, 45.850804 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.854630 ], [ -69.709625, 45.856065 ], [ -69.711685, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.715118, 45.862281 ], [ -69.717865, 45.866106 ], [ -69.725418, 45.866106 ], [ -69.726105, 45.867541 ], [ -69.724731, 45.868019 ], [ -69.724045, 45.870888 ], [ -69.725418, 45.872322 ], [ -69.724731, 45.874234 ], [ -69.727478, 45.874712 ], [ -69.727478, 45.876146 ], [ -69.728165, 45.875668 ], [ -69.731598, 45.877103 ], [ -69.734344, 45.877103 ], [ -69.735031, 45.879015 ], [ -69.733658, 45.879493 ], [ -69.737778, 45.880449 ], [ -69.738464, 45.883317 ], [ -69.737091, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881405 ], [ -69.735718, 45.880449 ], [ -69.733658, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.727478, 45.880449 ], [ -69.724731, 45.879493 ], [ -69.723358, 45.881405 ], [ -69.717178, 45.882839 ], [ -69.716492, 45.883795 ], [ -69.713058, 45.883317 ], [ -69.713058, 45.884273 ], [ -69.709625, 45.885707 ], [ -69.706192, 45.885229 ], [ -69.702072, 45.886185 ], [ -69.698639, 45.886185 ], [ -69.698639, 45.880449 ], [ -69.702072, 45.879971 ], [ -69.702072, 45.879015 ], [ -69.702759, 45.879015 ], [ -69.702759, 45.877103 ], [ -69.700699, 45.874234 ], [ -69.701385, 45.872800 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868975 ], [ -69.697266, 45.867541 ], [ -69.697266, 45.864672 ], [ -69.694519, 45.864194 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.862281 ], [ -69.691772, 45.860847 ], [ -69.692459, 45.859412 ], [ -69.689713, 45.858456 ], [ -69.689713, 45.855108 ], [ -69.690399, 45.854630 ], [ -69.686966, 45.854152 ], [ -69.686279, 45.853195 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.683533, 45.851282 ], [ -69.682846, 45.852239 ], [ -69.679413, 45.851760 ], [ -69.678040, 45.853195 ], [ -69.676666, 45.853195 ], [ -69.676666, 45.851760 ], [ -69.674606, 45.852239 ], [ -69.674606, 45.857499 ], [ -69.672546, 45.858934 ], [ -69.673920, 45.861803 ], [ -69.673920, 45.862759 ], [ -69.670486, 45.860847 ], [ -69.667740, 45.862281 ], [ -69.664993, 45.862281 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662933, 45.861325 ], [ -69.660187, 45.861325 ], [ -69.660187, 45.860847 ], [ -69.658813, 45.861325 ], [ -69.656754, 45.860369 ], [ -69.657440, 45.862281 ], [ -69.655380, 45.861803 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.863238 ], [ -69.654007, 45.864194 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.863238 ], [ -69.648514, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.647141, 45.863238 ], [ -69.684219, 45.984081 ], [ -69.728851, 45.976924 ], [ -69.732971, 46.394306 ], [ -69.719925, 46.394306 ], [ -69.721298, 46.574439 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.017487, 46.572551 ], [ -68.821793, 46.572551 ], [ -68.822479, 46.402829 ], [ -68.821793, 46.396200 ], [ -68.819733, 46.396200 ], [ -68.821106, 46.211675 ], [ -68.823166, 46.113706 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.685077 ], [ -68.959122, 45.662527 ], [ -68.950882, 45.638527 ], [ -68.952255, 45.580887 ], [ -68.965302, 45.512602 ], [ -68.880157, 45.524149 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433635 ], [ -68.804626, 45.341046 ], [ -68.776474, 45.240569 ], [ -68.881531, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.990707, 45.125382 ], [ -69.062119, 45.114238 ], [ -69.242020, 45.089036 ], [ -69.492645, 45.055091 ], [ -69.500198, 45.054121 ], [ -69.499512, 45.050240 ], [ -69.632034, 45.050240 ], [ -69.643021, 45.089036 ], [ -69.645767, 45.101638 ], [ -69.655380, 45.100184 ], [ -69.687653, 45.208166 ], [ -69.684219, 45.213004 ], [ -69.702759, 45.268605 ], [ -69.708939, 45.291313 ], [ -69.700699, 45.292762 ], [ -69.732971, 45.389289 ], [ -69.780350, 45.542908 ], [ -69.773483, 45.545793 ], [ -69.775543, 45.549640 ], [ -69.775543, 45.553006 ], [ -69.774170, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.764557, 45.554929 ], [ -69.761124, 45.554449 ], [ -69.754257, 45.557814 ], [ -69.749451, 45.559256 ], [ -69.748077, 45.560699 ], [ -69.745331, 45.561179 ], [ -69.743958, 45.563102 ], [ -69.731598, 45.566948 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572716 ], [ -69.726791, 45.574158 ], [ -69.726791, 45.577042 ], [ -69.724045, 45.581848 ], [ -69.719925, 45.583290 ], [ -69.717178, 45.585212 ], [ -69.715118, 45.585693 ], [ -69.714432, 45.588576 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.595303 ], [ -69.715118, 45.597224 ], [ -69.717865, 45.597705 ], [ -69.719238, 45.600587 ], [ -69.721298, 45.602989 ], [ -69.720612, 45.608274 ], [ -69.717865, 45.608754 ], [ -69.717865, 45.611156 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.612116 ], [ -69.715118, 45.613077 ], [ -69.714432, 45.612116 ], [ -69.713058, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.708939, 45.616919 ], [ -69.705505, 45.618360 ], [ -69.704819, 45.619801 ], [ -69.703445, 45.620761 ], [ -69.704132, 45.621722 ], [ -69.702072, 45.628445 ], [ -69.707565, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.708252, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.712372, 45.638047 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.716492, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.713058, 45.647648 ], [ -69.714432, 45.650528 ], [ -69.711685, 45.650528 ], [ -69.706879, 45.647168 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.696579, 45.640928 ], [ -69.694519, 45.640928 ], [ -69.692459, 45.645728 ], [ -69.698639, 45.649568 ], [ -69.701385, 45.651968 ], [ -69.703445, 45.651968 ], [ -69.705505, 45.653408 ], [ -69.706192, 45.652928 ], [ -69.713058, 45.655808 ], [ -69.719238, 45.656288 ], [ -69.723358, 45.657728 ], [ -69.726105, 45.656768 ], [ -69.732971, 45.657248 ], [ -69.732285, 45.655808 ], [ -69.734344, 45.654368 ], [ -69.736404, 45.651008 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.653408 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657728 ], [ -69.741898, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.745331, 45.662047 ], [ -69.743958, 45.664926 ], [ -69.741898, 45.666846 ], [ -69.739838, 45.667325 ], [ -69.740524, 45.669725 ], [ -69.739151, 45.671644 ], [ -69.739151, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.738464, 45.676921 ], [ -69.739151, 45.679800 ], [ -69.746017, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.754944, 45.679800 ], [ -69.757004, 45.679800 ], [ -69.760437, 45.682678 ], [ -69.764557, 45.682678 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.685077 ], [ -69.774170, 45.686036 ], [ -69.774857, 45.687955 ], [ -69.776917, 45.687955 ], [ -69.779663, 45.690353 ], [ -69.783096, 45.690833 ], [ -69.785843, 45.692751 ], [ -69.785843, 45.699945 ], [ -69.789963, 45.702343 ], [ -69.790649, 45.704741 ], [ -69.790649, 45.710495 ], [ -69.798203, 45.715289 ], [ -69.803009, 45.715289 ], [ -69.805756, 45.717207 ], [ -69.805756, 45.720563 ], [ -69.807816, 45.722480 ], [ -69.805069, 45.722001 ], [ -69.803696, 45.720563 ], [ -69.804382, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.800262, 45.722960 ], [ -69.800262, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.797516, 45.724398 ], [ -69.792709, 45.725836 ], [ -69.791336, 45.726794 ], [ -69.792023, 45.728712 ], [ -69.794083, 45.728712 ], [ -69.800262, 45.733505 ], [ -69.809875, 45.733505 ], [ -69.812622, 45.735901 ], [ -69.810562, 45.736380 ], [ -69.811935, 45.737339 ], [ -69.820175, 45.739256 ], [ -69.820175, 45.740693 ], [ -69.821548, 45.740693 ], [ -69.824295, 45.742610 ], [ -69.826355, 45.741173 ], [ -69.825668, 45.743089 ], [ -69.822922, 45.743569 ], [ -69.822235, 45.745006 ], [ -69.817429, 45.747402 ], [ -69.812622, 45.747402 ], [ -69.812622, 45.745965 ], [ -69.806442, 45.747881 ], [ -69.805756, 45.748839 ], [ -69.801636, 45.749319 ], [ -69.796829, 45.746444 ], [ -69.793396, 45.745965 ], [ -69.789963, 45.747402 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.749798 ], [ -69.791336, 45.750277 ], [ -69.792709, 45.751235 ], [ -69.792023, 45.753152 ], [ -69.789963, 45.754589 ], [ -69.789963, 45.756026 ], [ -69.793396, 45.757463 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.792709, 45.759859 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.790649, 45.764649 ], [ -69.792023, 45.764649 ], [ -69.791336, 45.766086 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.768002 ], [ -69.789276, 45.768960 ], [ -69.787216, 45.768481 ], [ -69.782410, 45.769918 ], [ -69.784470, 45.772313 ], [ -69.783096, 45.772792 ], [ -69.781723, 45.774228 ], [ -69.784470, 45.773270 ], [ -69.785156, 45.774707 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.776144 ], [ -69.786530, 45.776144 ], [ -69.786530, 45.775186 ], [ -69.787903, 45.775186 ], [ -69.787903, 45.777102 ], [ -69.789276, 45.777102 ], [ -69.788589, 45.777581 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.778060 ], [ -69.787216, 45.780933 ], [ -69.785156, 45.780933 ], [ -69.784470, 45.782848 ], [ -69.785843, 45.783806 ], [ -69.787903, 45.783806 ], [ -69.788589, 45.784764 ] ], [ [ -69.732971, 45.657248 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732971, 45.657248 ] ] ], [ [ [ -69.807816, 45.722480 ], [ -69.809189, 45.722960 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722480 ] ] ], [ [ [ -69.826355, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827728, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.828415, 45.739256 ], [ -69.830475, 45.738297 ], [ -69.833221, 45.738777 ], [ -69.827042, 45.740214 ], [ -69.826355, 45.741173 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.801636, 45.784764 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.797516, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.796143, 45.785721 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.792023, 45.785721 ], [ -69.791336, 45.784285 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783806 ], [ -69.794083, 45.782848 ], [ -69.796829, 45.783327 ], [ -69.797516, 45.783327 ], [ -69.797516, 45.785721 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.798203, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.798889, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785721 ], [ -69.798889, 45.784764 ] ] ], [ [ [ -69.788589, 45.784764 ], [ -69.788589, 45.782848 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.784764 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.500198, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.355316, 45.072066 ], [ -69.349136, 45.050240 ], [ -69.499512, 45.050240 ], [ -69.500198, 45.054121 ] ] ], [ [ [ -69.674606, 45.857499 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853195 ], [ -69.678040, 45.853195 ], [ -69.678726, 45.852239 ], [ -69.682846, 45.852239 ], [ -69.683533, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853195 ], [ -69.686966, 45.854152 ], [ -69.690399, 45.854630 ], [ -69.689713, 45.855108 ], [ -69.689713, 45.858456 ], [ -69.692459, 45.859412 ], [ -69.691772, 45.860847 ], [ -69.694519, 45.862281 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.864194 ], [ -69.697266, 45.864672 ], [ -69.697266, 45.867541 ], [ -69.699326, 45.868975 ], [ -69.699326, 45.870410 ], [ -69.701385, 45.872800 ], [ -69.700699, 45.874234 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.879015 ], [ -69.702072, 45.879015 ], [ -69.702072, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.702072, 45.886185 ], [ -69.706192, 45.885229 ], [ -69.709625, 45.885707 ], [ -69.711685, 45.885229 ], [ -69.713058, 45.883317 ], [ -69.716492, 45.883795 ], [ -69.717178, 45.882839 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.733658, 45.880449 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881405 ], [ -69.737091, 45.880927 ], [ -69.737091, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.880449 ], [ -69.733658, 45.879493 ], [ -69.735031, 45.879015 ], [ -69.734344, 45.877103 ], [ -69.731598, 45.877103 ], [ -69.728165, 45.875668 ], [ -69.727478, 45.876146 ], [ -69.727478, 45.874712 ], [ -69.724731, 45.874234 ], [ -69.725418, 45.872322 ], [ -69.724045, 45.870888 ], [ -69.724731, 45.868019 ], [ -69.726105, 45.867541 ], [ -69.725418, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.715118, 45.862281 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.856543 ], [ -69.709625, 45.856065 ], [ -69.708939, 45.854630 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.704819, 45.846499 ], [ -69.707565, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.836932 ], [ -69.712372, 45.834062 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832148 ], [ -69.718552, 45.833584 ], [ -69.717865, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721985, 45.835019 ], [ -69.723358, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.719925, 45.834062 ], [ -69.718552, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829278 ], [ -69.715805, 45.825928 ], [ -69.713058, 45.823536 ], [ -69.713058, 45.819708 ], [ -69.709625, 45.815401 ], [ -69.708939, 45.811093 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801999 ], [ -69.716492, 45.801042 ], [ -69.718552, 45.797691 ], [ -69.719238, 45.791467 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788594 ], [ -69.723358, 45.786200 ], [ -69.723358, 45.783327 ], [ -69.733658, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.728165, 45.775186 ], [ -69.728165, 45.773270 ], [ -69.726105, 45.771834 ], [ -69.724731, 45.766086 ], [ -69.726791, 45.762254 ], [ -69.730225, 45.760338 ], [ -69.730225, 45.759380 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.755547 ], [ -69.743958, 45.760338 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761775 ], [ -69.750137, 45.763212 ], [ -69.750824, 45.764649 ], [ -69.750824, 45.763691 ], [ -69.752884, 45.761775 ], [ -69.758377, 45.761775 ], [ -69.760437, 45.762254 ], [ -69.762497, 45.761296 ], [ -69.769363, 45.761775 ], [ -69.767990, 45.763212 ], [ -69.771423, 45.763691 ], [ -69.772797, 45.765128 ], [ -69.774857, 45.765128 ], [ -69.774170, 45.766086 ], [ -69.776917, 45.768002 ], [ -69.777603, 45.770876 ], [ -69.779663, 45.772313 ], [ -69.781036, 45.775665 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.776623 ], [ -69.781723, 45.778539 ], [ -69.783096, 45.778539 ], [ -69.783783, 45.777102 ], [ -69.785156, 45.777102 ], [ -69.786530, 45.779975 ], [ -69.785843, 45.779496 ], [ -69.783783, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.781723, 45.781891 ], [ -69.784470, 45.783806 ], [ -69.784470, 45.784285 ], [ -69.785156, 45.785721 ], [ -69.788589, 45.785243 ], [ -69.788589, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785721 ], [ -69.794083, 45.783327 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783806 ], [ -69.798203, 45.784285 ], [ -69.797516, 45.783327 ], [ -69.796143, 45.784285 ], [ -69.796829, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788589, 45.782848 ], [ -69.788589, 45.784285 ], [ -69.787903, 45.783806 ], [ -69.785843, 45.783806 ], [ -69.784470, 45.782848 ], [ -69.785156, 45.780933 ], [ -69.787216, 45.780933 ], [ -69.788589, 45.778060 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.777581 ], [ -69.789276, 45.777102 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.786530, 45.775186 ], [ -69.786530, 45.776144 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.774707 ], [ -69.784470, 45.773270 ], [ -69.781723, 45.774228 ], [ -69.782410, 45.773270 ], [ -69.784470, 45.772313 ], [ -69.782410, 45.769918 ], [ -69.787216, 45.768481 ], [ -69.789276, 45.768960 ], [ -69.790649, 45.768002 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.766086 ], [ -69.792023, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.760338 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.757463 ], [ -69.789963, 45.756026 ], [ -69.789963, 45.754589 ], [ -69.792023, 45.753152 ], [ -69.792709, 45.751235 ], [ -69.791336, 45.750277 ], [ -69.788589, 45.749798 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747402 ], [ -69.793396, 45.745965 ], [ -69.796829, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.805756, 45.748839 ], [ -69.806442, 45.747881 ], [ -69.812622, 45.745965 ], [ -69.812622, 45.747402 ], [ -69.817429, 45.747402 ], [ -69.821548, 45.745485 ], [ -69.822922, 45.743569 ], [ -69.825668, 45.743089 ], [ -69.826355, 45.741173 ], [ -69.824295, 45.742610 ], [ -69.821548, 45.740693 ], [ -69.820175, 45.740693 ], [ -69.820175, 45.739256 ], [ -69.811935, 45.737339 ], [ -69.810562, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733505 ], [ -69.800262, 45.733505 ], [ -69.794083, 45.728712 ], [ -69.792023, 45.728712 ], [ -69.791336, 45.726794 ], [ -69.792709, 45.725836 ], [ -69.797516, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.724398 ], [ -69.800262, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722960 ], [ -69.803696, 45.720563 ], [ -69.805069, 45.722001 ], [ -69.807816, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.813309, 45.722001 ], [ -69.809189, 45.722960 ], [ -69.805756, 45.720563 ], [ -69.805756, 45.717207 ], [ -69.803009, 45.715289 ], [ -69.798203, 45.715289 ], [ -69.790649, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789963, 45.702343 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.692751 ], [ -69.783096, 45.690833 ], [ -69.779663, 45.690353 ], [ -69.776917, 45.687955 ], [ -69.774857, 45.687955 ], [ -69.774170, 45.686036 ], [ -69.769363, 45.685077 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682678 ], [ -69.760437, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754944, 45.679800 ], [ -69.749451, 45.681239 ], [ -69.746017, 45.681239 ], [ -69.739151, 45.679800 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.739151, 45.675482 ], [ -69.739151, 45.671644 ], [ -69.740524, 45.669725 ], [ -69.739838, 45.667325 ], [ -69.741898, 45.666846 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.657728 ], [ -69.739838, 45.657728 ], [ -69.739838, 45.656768 ], [ -69.744644, 45.653408 ], [ -69.743958, 45.651968 ], [ -69.736404, 45.651008 ], [ -69.734344, 45.654368 ], [ -69.732285, 45.655808 ], [ -69.732971, 45.657248 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.728165, 45.656768 ], [ -69.723358, 45.657728 ], [ -69.719238, 45.656288 ], [ -69.713058, 45.655808 ], [ -69.706192, 45.652928 ], [ -69.705505, 45.653408 ], [ -69.703445, 45.651968 ], [ -69.701385, 45.651968 ], [ -69.700012, 45.650048 ], [ -69.692459, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.696579, 45.640928 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706879, 45.647168 ], [ -69.711685, 45.650528 ], [ -69.714432, 45.650528 ], [ -69.713058, 45.647648 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.648128 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712372, 45.638047 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.635647 ], [ -69.707565, 45.632766 ], [ -69.702072, 45.628445 ], [ -69.704132, 45.621722 ], [ -69.703445, 45.620761 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618840 ], [ -69.708939, 45.616919 ], [ -69.709625, 45.613557 ], [ -69.711685, 45.613077 ], [ -69.713058, 45.614037 ], [ -69.714432, 45.612116 ], [ -69.714432, 45.613077 ], [ -69.717865, 45.612116 ], [ -69.719238, 45.613557 ], [ -69.717865, 45.611156 ], [ -69.717865, 45.608754 ], [ -69.720612, 45.608274 ], [ -69.721298, 45.602989 ], [ -69.719238, 45.600587 ], [ -69.717865, 45.597705 ], [ -69.715118, 45.597224 ], [ -69.713745, 45.595303 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.588576 ], [ -69.715118, 45.585693 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583290 ], [ -69.724045, 45.581848 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.574158 ], [ -69.728851, 45.572716 ], [ -69.728165, 45.570313 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.748077, 45.560699 ], [ -69.749451, 45.559256 ], [ -69.754257, 45.557814 ], [ -69.761124, 45.554449 ], [ -69.764557, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.774170, 45.554929 ], [ -69.775543, 45.553006 ], [ -69.775543, 45.549640 ], [ -69.773483, 45.545793 ], [ -69.780350, 45.542908 ], [ -69.732971, 45.389289 ], [ -69.701385, 45.295660 ], [ -69.700699, 45.292762 ], [ -69.708939, 45.291796 ], [ -69.705505, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.684219, 45.212520 ], [ -69.687653, 45.208166 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.632034, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128773 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152506 ], [ -70.367432, 45.835019 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.267868, 45.886185 ], [ -70.262375, 45.888096 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897655 ], [ -70.261002, 45.899088 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.907689 ], [ -70.256195, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.256195, 45.929662 ], [ -70.252075, 45.933960 ], [ -70.249329, 45.934916 ], [ -70.247269, 45.936348 ], [ -70.243149, 45.937303 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.943033 ], [ -70.239716, 45.943988 ], [ -70.241776, 45.944943 ], [ -70.244522, 45.944943 ], [ -70.242462, 45.946853 ], [ -70.248642, 45.949717 ], [ -70.249329, 45.952582 ], [ -70.251389, 45.953537 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.955924 ], [ -70.254822, 45.954491 ], [ -70.256195, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.308380, 46.061797 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.260315, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099900 ], [ -70.254822, 46.099900 ], [ -70.253448, 46.100376 ], [ -70.252762, 46.106089 ], [ -70.253448, 46.107993 ], [ -70.254822, 46.107993 ], [ -70.255508, 46.108945 ], [ -70.255508, 46.110850 ], [ -70.254135, 46.112754 ], [ -70.254822, 46.114182 ], [ -70.252762, 46.115134 ], [ -70.252762, 46.116562 ], [ -70.251389, 46.118466 ], [ -70.252075, 46.119893 ], [ -70.248642, 46.122749 ], [ -70.247955, 46.126080 ], [ -70.247269, 46.125605 ], [ -70.245895, 46.126556 ], [ -70.245209, 46.128936 ], [ -70.243835, 46.128936 ], [ -70.244522, 46.131315 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.241776, 46.134646 ], [ -70.242462, 46.135598 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.146540 ], [ -70.239716, 46.149394 ], [ -70.241089, 46.149394 ], [ -70.240402, 46.151297 ], [ -70.241776, 46.151297 ], [ -70.241776, 46.150346 ], [ -70.243149, 46.149870 ], [ -70.244522, 46.151773 ], [ -70.245209, 46.151297 ], [ -70.246582, 46.151297 ], [ -70.247269, 46.152248 ], [ -70.248642, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.153675 ], [ -70.250702, 46.154627 ], [ -70.250015, 46.156054 ], [ -70.252762, 46.157481 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.256195, 46.159859 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.278854, 46.175551 ], [ -70.280228, 46.177929 ], [ -70.282288, 46.178880 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191715 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.256195, 46.244926 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246351 ], [ -70.251389, 46.249200 ], [ -70.252075, 46.252523 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.255372 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261069 ], [ -70.250702, 46.263443 ], [ -70.248642, 46.265341 ], [ -70.249329, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.273411 ], [ -70.241089, 46.273411 ], [ -70.241089, 46.275309 ], [ -70.239716, 46.275784 ], [ -70.240402, 46.279580 ], [ -70.238342, 46.281004 ], [ -70.235596, 46.281479 ], [ -70.232849, 46.284800 ], [ -70.232162, 46.291443 ], [ -70.229416, 46.291918 ], [ -70.229416, 46.292392 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295713 ], [ -70.215683, 46.294764 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297611 ], [ -70.212250, 46.299034 ], [ -70.210876, 46.298560 ], [ -70.206070, 46.299983 ], [ -70.206070, 46.300457 ], [ -70.207443, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.312790 ], [ -70.203323, 46.315161 ], [ -70.207443, 46.319430 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.205383, 46.334129 ], [ -70.202637, 46.335551 ], [ -70.201263, 46.337447 ], [ -70.195770, 46.341239 ], [ -70.196457, 46.343610 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.348350 ], [ -70.192337, 46.349297 ], [ -70.191650, 46.350245 ], [ -70.190277, 46.350719 ], [ -70.188904, 46.350245 ], [ -70.184784, 46.352141 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354511 ], [ -70.177231, 46.355933 ], [ -70.175858, 46.358302 ], [ -70.173111, 46.359724 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357828 ], [ -70.164871, 46.359250 ], [ -70.163498, 46.359250 ], [ -70.162125, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359724 ], [ -70.158691, 46.361145 ], [ -70.156631, 46.361619 ], [ -70.154572, 46.360198 ], [ -70.148392, 46.359250 ], [ -70.144958, 46.362567 ], [ -70.142212, 46.362567 ], [ -70.140839, 46.363041 ], [ -70.141525, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.369200 ], [ -70.131912, 46.370148 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.379623 ], [ -70.126419, 46.381991 ], [ -70.116806, 46.385781 ], [ -70.116806, 46.388622 ], [ -70.115433, 46.388149 ], [ -70.114746, 46.385307 ], [ -70.111313, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112686, 46.388622 ], [ -70.110626, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108566, 46.389096 ], [ -70.109940, 46.390990 ], [ -70.107193, 46.390990 ], [ -70.107880, 46.392885 ], [ -70.105133, 46.393832 ], [ -70.102386, 46.396673 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099640, 46.403303 ], [ -70.101013, 46.403303 ], [ -70.098267, 46.404250 ], [ -70.100327, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.097580, 46.405670 ], [ -70.096207, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.407564 ], [ -70.094833, 46.408511 ], [ -70.097580, 46.409458 ], [ -70.096893, 46.409931 ], [ -70.092773, 46.409458 ], [ -70.089340, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.410878 ], [ -70.076981, 46.409931 ], [ -70.072174, 46.411352 ], [ -70.067368, 46.412298 ], [ -70.065308, 46.414192 ], [ -70.061874, 46.414192 ], [ -70.057068, 46.415612 ], [ -70.023422, 46.573495 ], [ -69.800949, 46.573495 ], [ -69.721298, 46.574439 ], [ -69.719925, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684219, 45.984081 ], [ -69.647141, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.648514, 45.863238 ], [ -69.651260, 45.863238 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.864194 ], [ -69.654007, 45.863238 ], [ -69.655380, 45.862759 ], [ -69.655380, 45.861803 ], [ -69.657440, 45.862281 ], [ -69.656754, 45.860369 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.662933, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.664993, 45.862281 ], [ -69.667740, 45.862281 ], [ -69.670486, 45.860847 ], [ -69.673920, 45.862759 ], [ -69.673920, 45.861803 ], [ -69.672546, 45.859890 ], [ -69.674606, 45.857499 ] ], [ [ -70.107880, 46.388149 ], [ -70.108566, 46.388622 ], [ -70.108566, 46.387675 ], [ -70.107880, 46.388149 ] ], [ [ -69.798203, 45.784285 ], [ -69.798203, 45.784764 ], [ -69.801636, 45.785721 ], [ -69.801636, 45.785243 ], [ -69.798889, 45.784764 ], [ -69.798203, 45.784285 ] ], [ [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ] ], [ [ -69.825668, 45.739735 ], [ -69.826355, 45.741173 ], [ -69.827042, 45.740214 ], [ -69.833221, 45.738777 ], [ -69.830475, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.827728, 45.738297 ], [ -69.827728, 45.739256 ], [ -69.825668, 45.739735 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.108566, 46.389096 ], [ -70.109940, 46.390990 ], [ -70.107193, 46.390990 ], [ -70.107880, 46.392885 ], [ -70.105133, 46.393832 ], [ -70.102386, 46.396673 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099640, 46.403303 ], [ -70.101013, 46.403303 ], [ -70.098267, 46.404250 ], [ -70.100327, 46.404723 ], [ -70.101013, 46.405670 ], [ -70.097580, 46.405670 ], [ -70.096207, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.407564 ], [ -70.094833, 46.408511 ], [ -70.097580, 46.409458 ], [ -70.096893, 46.409931 ], [ -70.092773, 46.409458 ], [ -70.089340, 46.411352 ], [ -70.087280, 46.409458 ], [ -70.081787, 46.410878 ], [ -70.076981, 46.409931 ], [ -70.072174, 46.411352 ], [ -70.067368, 46.412298 ], [ -70.065308, 46.414192 ], [ -70.061874, 46.414192 ], [ -70.057068, 46.415612 ], [ -70.023422, 46.573495 ], [ -69.800949, 46.573495 ], [ -69.721298, 46.574439 ], [ -69.719925, 46.394306 ], [ -69.732971, 46.394306 ], [ -69.728851, 45.976924 ], [ -69.684219, 45.984081 ], [ -69.647141, 45.863238 ], [ -69.648514, 45.863716 ], [ -69.648514, 45.863238 ], [ -69.651260, 45.863238 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.864194 ], [ -69.654007, 45.863238 ], [ -69.655380, 45.862759 ], [ -69.655380, 45.861803 ], [ -69.657440, 45.862281 ], [ -69.656754, 45.860369 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.662933, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.664993, 45.862281 ], [ -69.667740, 45.862281 ], [ -69.670486, 45.860847 ], [ -69.673920, 45.862759 ], [ -69.673920, 45.861803 ], [ -69.672546, 45.859890 ], [ -69.674606, 45.857499 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851760 ], [ -69.676666, 45.853195 ], [ -69.678040, 45.853195 ], [ -69.678726, 45.852239 ], [ -69.682846, 45.852239 ], [ -69.683533, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853195 ], [ -69.686966, 45.854152 ], [ -69.690399, 45.854630 ], [ -69.689713, 45.855108 ], [ -69.689713, 45.858456 ], [ -69.692459, 45.859412 ], [ -69.691772, 45.860847 ], [ -69.694519, 45.862281 ], [ -69.692459, 45.865150 ], [ -69.694519, 45.864194 ], [ -69.697266, 45.864672 ], [ -69.697266, 45.867541 ], [ -69.699326, 45.868975 ], [ -69.699326, 45.870410 ], [ -69.701385, 45.872800 ], [ -69.700699, 45.874234 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.879015 ], [ -69.702072, 45.879015 ], [ -69.702072, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.886185 ], [ -69.702072, 45.886185 ], [ -69.706192, 45.885229 ], [ -69.709625, 45.885707 ], [ -69.711685, 45.885229 ], [ -69.713058, 45.883317 ], [ -69.716492, 45.883795 ], [ -69.717178, 45.882839 ], [ -69.723358, 45.881405 ], [ -69.724731, 45.879493 ], [ -69.727478, 45.880449 ], [ -69.732285, 45.878537 ], [ -69.733658, 45.880449 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881405 ], [ -69.737091, 45.880927 ], [ -69.737091, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.880449 ], [ -69.733658, 45.879493 ], [ -69.735031, 45.879015 ], [ -69.734344, 45.877103 ], [ -69.731598, 45.877103 ], [ -69.728165, 45.875668 ], [ -69.727478, 45.876146 ], [ -69.727478, 45.874712 ], [ -69.724731, 45.874234 ], [ -69.725418, 45.872322 ], [ -69.724045, 45.870888 ], [ -69.724731, 45.868019 ], [ -69.726105, 45.867541 ], [ -69.725418, 45.866106 ], [ -69.717865, 45.866106 ], [ -69.715118, 45.862281 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.856543 ], [ -69.709625, 45.856065 ], [ -69.708939, 45.854630 ], [ -69.706192, 45.854152 ], [ -69.708939, 45.850804 ], [ -69.708252, 45.846978 ], [ -69.704819, 45.846499 ], [ -69.707565, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.836932 ], [ -69.712372, 45.834062 ], [ -69.712372, 45.832627 ], [ -69.715118, 45.832148 ], [ -69.718552, 45.833584 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721985, 45.835019 ], [ -69.723358, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.724731, 45.833584 ], [ -69.719925, 45.834062 ], [ -69.718552, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829278 ], [ -69.715805, 45.825928 ], [ -69.713058, 45.823536 ], [ -69.713058, 45.819708 ], [ -69.709625, 45.815401 ], [ -69.708939, 45.811093 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801999 ], [ -69.716492, 45.801042 ], [ -69.718552, 45.797691 ], [ -69.719238, 45.791467 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788594 ], [ -69.723358, 45.786200 ], [ -69.723358, 45.783327 ], [ -69.733658, 45.783806 ], [ -69.738464, 45.782848 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.728165, 45.775186 ], [ -69.728165, 45.773270 ], [ -69.726105, 45.771834 ], [ -69.724731, 45.766086 ], [ -69.726791, 45.762254 ], [ -69.730225, 45.760338 ], [ -69.730225, 45.759380 ], [ -69.732971, 45.756026 ], [ -69.737091, 45.755068 ], [ -69.741211, 45.755547 ], [ -69.743958, 45.760338 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761775 ], [ -69.750137, 45.763212 ], [ -69.751511, 45.766086 ], [ -69.750824, 45.763691 ], [ -69.752884, 45.761775 ], [ -69.758377, 45.761775 ], [ -69.760437, 45.762254 ], [ -69.762497, 45.761296 ], [ -69.769363, 45.761775 ], [ -69.767990, 45.763212 ], [ -69.771423, 45.763691 ], [ -69.772797, 45.765128 ], [ -69.774857, 45.765128 ], [ -69.774170, 45.766086 ], [ -69.776917, 45.768002 ], [ -69.777603, 45.770876 ], [ -69.779663, 45.772313 ], [ -69.781036, 45.775665 ], [ -69.782410, 45.775665 ], [ -69.781036, 45.776623 ], [ -69.781723, 45.778539 ], [ -69.783096, 45.778539 ], [ -69.783783, 45.777102 ], [ -69.785156, 45.777102 ], [ -69.785843, 45.779496 ], [ -69.783783, 45.781891 ], [ -69.782410, 45.781412 ], [ -69.781723, 45.781891 ], [ -69.784470, 45.783806 ], [ -69.784470, 45.784285 ], [ -69.785156, 45.785721 ], [ -69.788589, 45.785243 ], [ -69.788589, 45.784764 ], [ -69.787903, 45.783806 ], [ -69.785843, 45.783806 ], [ -69.784470, 45.782848 ], [ -69.785156, 45.780933 ], [ -69.787216, 45.780933 ], [ -69.788589, 45.778060 ], [ -69.789963, 45.778060 ], [ -69.788589, 45.777581 ], [ -69.789276, 45.777102 ], [ -69.787903, 45.777102 ], [ -69.787903, 45.775186 ], [ -69.786530, 45.775186 ], [ -69.786530, 45.776144 ], [ -69.783096, 45.775186 ], [ -69.785156, 45.774707 ], [ -69.784470, 45.773270 ], [ -69.781723, 45.774228 ], [ -69.782410, 45.773270 ], [ -69.784470, 45.772313 ], [ -69.782410, 45.769918 ], [ -69.787216, 45.768481 ], [ -69.789276, 45.768960 ], [ -69.790649, 45.768002 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.766086 ], [ -69.792023, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762254 ], [ -69.792709, 45.760338 ], [ -69.793396, 45.758901 ], [ -69.792023, 45.758422 ], [ -69.793396, 45.757463 ], [ -69.789963, 45.756026 ], [ -69.789963, 45.754589 ], [ -69.792023, 45.753152 ], [ -69.792709, 45.751235 ], [ -69.791336, 45.750277 ], [ -69.788589, 45.749798 ], [ -69.789963, 45.747881 ], [ -69.788589, 45.746923 ], [ -69.789963, 45.747402 ], [ -69.793396, 45.745965 ], [ -69.796829, 45.746444 ], [ -69.801636, 45.749319 ], [ -69.805756, 45.748839 ], [ -69.806442, 45.747881 ], [ -69.812622, 45.745965 ], [ -69.812622, 45.747402 ], [ -69.817429, 45.747402 ], [ -69.821548, 45.745485 ], [ -69.822922, 45.743569 ], [ -69.825668, 45.743089 ], [ -69.826355, 45.741173 ], [ -69.824295, 45.742610 ], [ -69.821548, 45.740693 ], [ -69.820175, 45.740693 ], [ -69.820175, 45.739256 ], [ -69.811935, 45.737339 ], [ -69.810562, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.809875, 45.733505 ], [ -69.800262, 45.733505 ], [ -69.794083, 45.728712 ], [ -69.792023, 45.728712 ], [ -69.791336, 45.726794 ], [ -69.792709, 45.725836 ], [ -69.797516, 45.724398 ], [ -69.798889, 45.725356 ], [ -69.800262, 45.724398 ], [ -69.800262, 45.722960 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722960 ], [ -69.803696, 45.720563 ], [ -69.805069, 45.722001 ], [ -69.807816, 45.722480 ], [ -69.805756, 45.720563 ], [ -69.805756, 45.717207 ], [ -69.803009, 45.715289 ], [ -69.798203, 45.715289 ], [ -69.790649, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789963, 45.702343 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.692751 ], [ -69.783096, 45.690833 ], [ -69.779663, 45.690353 ], [ -69.776917, 45.687955 ], [ -69.774857, 45.687955 ], [ -69.774170, 45.686036 ], [ -69.769363, 45.685077 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682678 ], [ -69.760437, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754944, 45.679800 ], [ -69.749451, 45.681239 ], [ -69.746017, 45.681239 ], [ -69.739151, 45.679800 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.739151, 45.675482 ], [ -69.739151, 45.671644 ], [ -69.740524, 45.669725 ], [ -69.739838, 45.667325 ], [ -69.741898, 45.666846 ], [ -69.743958, 45.664926 ], [ -69.745331, 45.662047 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.657728 ], [ -69.739838, 45.657728 ], [ -69.739838, 45.656768 ], [ -69.744644, 45.653408 ], [ -69.743958, 45.651968 ], [ -69.736404, 45.651008 ], [ -69.734344, 45.654368 ], [ -69.732285, 45.655808 ], [ -69.732971, 45.657248 ], [ -69.728165, 45.656768 ], [ -69.723358, 45.657728 ], [ -69.719238, 45.656288 ], [ -69.713058, 45.655808 ], [ -69.706192, 45.652928 ], [ -69.705505, 45.653408 ], [ -69.703445, 45.651968 ], [ -69.701385, 45.651968 ], [ -69.700012, 45.650048 ], [ -69.692459, 45.645728 ], [ -69.694519, 45.640928 ], [ -69.696579, 45.640928 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706879, 45.647168 ], [ -69.711685, 45.650528 ], [ -69.714432, 45.650528 ], [ -69.713058, 45.647648 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.648128 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712372, 45.638047 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.635647 ], [ -69.707565, 45.632766 ], [ -69.702072, 45.628445 ], [ -69.704132, 45.621722 ], [ -69.703445, 45.620761 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618840 ], [ -69.708939, 45.616919 ], [ -69.709625, 45.613557 ], [ -69.711685, 45.613077 ], [ -69.713058, 45.614037 ], [ -69.714432, 45.612116 ], [ -69.714432, 45.613077 ], [ -69.717865, 45.612116 ], [ -69.719925, 45.614998 ], [ -69.717865, 45.611156 ], [ -69.717865, 45.608754 ], [ -69.720612, 45.608274 ], [ -69.721298, 45.602989 ], [ -69.719238, 45.600587 ], [ -69.717865, 45.597705 ], [ -69.715118, 45.597224 ], [ -69.713745, 45.595303 ], [ -69.713058, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.588576 ], [ -69.715118, 45.585693 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583290 ], [ -69.724045, 45.581848 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.574158 ], [ -69.728851, 45.572716 ], [ -69.728165, 45.570313 ], [ -69.731598, 45.566948 ], [ -69.743958, 45.563102 ], [ -69.745331, 45.561179 ], [ -69.748077, 45.560699 ], [ -69.749451, 45.559256 ], [ -69.754257, 45.557814 ], [ -69.761124, 45.554449 ], [ -69.764557, 45.554929 ], [ -69.770737, 45.553968 ], [ -69.774170, 45.554929 ], [ -69.775543, 45.553006 ], [ -69.775543, 45.549640 ], [ -69.773483, 45.545793 ], [ -69.780350, 45.542908 ], [ -69.732971, 45.389289 ], [ -69.701385, 45.295660 ], [ -69.700699, 45.292762 ], [ -69.708939, 45.291796 ], [ -69.705505, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.684219, 45.212520 ], [ -69.687653, 45.208166 ], [ -69.655380, 45.100184 ], [ -69.645767, 45.101638 ], [ -69.643021, 45.089036 ], [ -69.632034, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128773 ], [ -70.293961, 45.110362 ], [ -70.309067, 45.163642 ], [ -70.312500, 45.163158 ], [ -70.312500, 45.165095 ], [ -70.365372, 45.157832 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152506 ], [ -70.367432, 45.835019 ], [ -70.359879, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.839324 ], [ -70.352325, 45.841238 ], [ -70.353012, 45.842673 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847456 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852717 ], [ -70.329666, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.323486, 45.855586 ], [ -70.322113, 45.856543 ], [ -70.319366, 45.856065 ], [ -70.312500, 45.858934 ], [ -70.308380, 45.858934 ], [ -70.303574, 45.863716 ], [ -70.298080, 45.864672 ], [ -70.289841, 45.869453 ], [ -70.288467, 45.870888 ], [ -70.284348, 45.871844 ], [ -70.283661, 45.873756 ], [ -70.281601, 45.874234 ], [ -70.280228, 45.876624 ], [ -70.274048, 45.879971 ], [ -70.273361, 45.882839 ], [ -70.267868, 45.886185 ], [ -70.262375, 45.888096 ], [ -70.258942, 45.891442 ], [ -70.261002, 45.892398 ], [ -70.265121, 45.892876 ], [ -70.265808, 45.894309 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897655 ], [ -70.261002, 45.899088 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.907689 ], [ -70.256195, 45.909122 ], [ -70.259628, 45.909600 ], [ -70.260315, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.915810 ], [ -70.257568, 45.915810 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.919154 ], [ -70.261002, 45.920587 ], [ -70.263062, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263748, 45.923931 ], [ -70.259628, 45.926797 ], [ -70.259628, 45.928230 ], [ -70.256195, 45.929662 ], [ -70.252075, 45.933960 ], [ -70.249329, 45.934916 ], [ -70.247269, 45.936348 ], [ -70.243149, 45.937303 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.943033 ], [ -70.239716, 45.943988 ], [ -70.241776, 45.944943 ], [ -70.244522, 45.944943 ], [ -70.242462, 45.946853 ], [ -70.248642, 45.949717 ], [ -70.249329, 45.952582 ], [ -70.251389, 45.953537 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.955924 ], [ -70.254822, 45.954491 ], [ -70.256195, 45.952582 ], [ -70.261002, 45.952582 ], [ -70.261002, 45.954014 ], [ -70.258942, 45.954969 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.960220 ], [ -70.263748, 45.962129 ], [ -70.265808, 45.963084 ], [ -70.266495, 45.964515 ], [ -70.267868, 45.963084 ], [ -70.271988, 45.961652 ], [ -70.274734, 45.961652 ], [ -70.275421, 45.963561 ], [ -70.273361, 45.964515 ], [ -70.274734, 45.964515 ], [ -70.275421, 45.966902 ], [ -70.280914, 45.965947 ], [ -70.280914, 45.964515 ], [ -70.283661, 45.964038 ], [ -70.287094, 45.964993 ], [ -70.289154, 45.963561 ], [ -70.291901, 45.964038 ], [ -70.298767, 45.963084 ], [ -70.301514, 45.964515 ], [ -70.304260, 45.964515 ], [ -70.304260, 45.964993 ], [ -70.306320, 45.964993 ], [ -70.309753, 45.963084 ], [ -70.312500, 45.962606 ], [ -70.313187, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.316620, 45.964515 ], [ -70.312500, 45.965947 ], [ -70.312500, 45.970243 ], [ -70.310440, 45.972629 ], [ -70.312500, 45.974538 ], [ -70.310440, 45.975969 ], [ -70.310440, 45.977401 ], [ -70.307693, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307693, 45.982649 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.291901, 45.989806 ], [ -70.287094, 45.992191 ], [ -70.286407, 45.992668 ], [ -70.287781, 45.993622 ], [ -70.284348, 45.995531 ], [ -70.289154, 45.994099 ], [ -70.288467, 45.995531 ], [ -70.291214, 45.995054 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996485 ], [ -70.292587, 45.997439 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999347 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.002685 ], [ -70.305634, 46.003639 ], [ -70.306320, 46.004593 ], [ -70.305634, 46.006978 ], [ -70.307007, 46.010793 ], [ -70.309067, 46.010316 ], [ -70.311813, 46.012224 ], [ -70.311127, 46.015562 ], [ -70.312500, 46.016039 ], [ -70.312500, 46.016992 ], [ -70.315247, 46.016516 ], [ -70.315933, 46.018423 ], [ -70.318680, 46.019377 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.021284 ], [ -70.312500, 46.023191 ], [ -70.302200, 46.027482 ], [ -70.302200, 46.028912 ], [ -70.299454, 46.030342 ], [ -70.298767, 46.031296 ], [ -70.302200, 46.031772 ], [ -70.299454, 46.038923 ], [ -70.298080, 46.039876 ], [ -70.297394, 46.041306 ], [ -70.294647, 46.041306 ], [ -70.290527, 46.044165 ], [ -70.289154, 46.047025 ], [ -70.285034, 46.048455 ], [ -70.281601, 46.050838 ], [ -70.280228, 46.052267 ], [ -70.281601, 46.053220 ], [ -70.280914, 46.054650 ], [ -70.278854, 46.056556 ], [ -70.279541, 46.058462 ], [ -70.278854, 46.059415 ], [ -70.278854, 46.060844 ], [ -70.282974, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.287094, 46.063226 ], [ -70.293274, 46.060844 ], [ -70.302200, 46.060844 ], [ -70.303574, 46.062750 ], [ -70.304260, 46.061797 ], [ -70.308380, 46.061797 ], [ -70.311127, 46.064179 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071325 ], [ -70.305634, 46.071325 ], [ -70.305634, 46.072278 ], [ -70.302887, 46.073231 ], [ -70.303574, 46.076565 ], [ -70.300140, 46.078947 ], [ -70.300140, 46.079423 ], [ -70.302887, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.085138 ], [ -70.294647, 46.085614 ], [ -70.291901, 46.087519 ], [ -70.291214, 46.093710 ], [ -70.284348, 46.097995 ], [ -70.286407, 46.100376 ], [ -70.282974, 46.100852 ], [ -70.278854, 46.099900 ], [ -70.274048, 46.102280 ], [ -70.271301, 46.101328 ], [ -70.268555, 46.101804 ], [ -70.263062, 46.100376 ], [ -70.260315, 46.101328 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099900 ], [ -70.254822, 46.099900 ], [ -70.253448, 46.100376 ], [ -70.252762, 46.106089 ], [ -70.253448, 46.107993 ], [ -70.254822, 46.107993 ], [ -70.255508, 46.108945 ], [ -70.255508, 46.110850 ], [ -70.254135, 46.112754 ], [ -70.254822, 46.114182 ], [ -70.252762, 46.115134 ], [ -70.252762, 46.116562 ], [ -70.251389, 46.118466 ], [ -70.252075, 46.119893 ], [ -70.248642, 46.122749 ], [ -70.247955, 46.126080 ], [ -70.247269, 46.125605 ], [ -70.245895, 46.126556 ], [ -70.245209, 46.128936 ], [ -70.243835, 46.128936 ], [ -70.244522, 46.131315 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.241776, 46.134646 ], [ -70.242462, 46.135598 ], [ -70.239716, 46.137977 ], [ -70.239716, 46.143686 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.146540 ], [ -70.239716, 46.149394 ], [ -70.241089, 46.149394 ], [ -70.240402, 46.151297 ], [ -70.241776, 46.151297 ], [ -70.241776, 46.150346 ], [ -70.243149, 46.149870 ], [ -70.244522, 46.151773 ], [ -70.245209, 46.151297 ], [ -70.246582, 46.151297 ], [ -70.247269, 46.152248 ], [ -70.248642, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.153675 ], [ -70.250702, 46.154627 ], [ -70.250015, 46.156054 ], [ -70.252762, 46.157481 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.256195, 46.159859 ], [ -70.257568, 46.159859 ], [ -70.260315, 46.163663 ], [ -70.265121, 46.165090 ], [ -70.265121, 46.167943 ], [ -70.266495, 46.169370 ], [ -70.268555, 46.170796 ], [ -70.270615, 46.170321 ], [ -70.271301, 46.172223 ], [ -70.274048, 46.172698 ], [ -70.275421, 46.173649 ], [ -70.275421, 46.174600 ], [ -70.278854, 46.175551 ], [ -70.280228, 46.177929 ], [ -70.282288, 46.178880 ], [ -70.282974, 46.180306 ], [ -70.284348, 46.180781 ], [ -70.283661, 46.181732 ], [ -70.286407, 46.183158 ], [ -70.285721, 46.185060 ], [ -70.290527, 46.185535 ], [ -70.291214, 46.187912 ], [ -70.289841, 46.188388 ], [ -70.292587, 46.191715 ], [ -70.289154, 46.193141 ], [ -70.289154, 46.194092 ], [ -70.287781, 46.194092 ], [ -70.288467, 46.195517 ], [ -70.286407, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.280914, 46.200270 ], [ -70.281601, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203597 ], [ -70.277481, 46.204072 ], [ -70.276794, 46.207874 ], [ -70.271988, 46.210250 ], [ -70.272675, 46.211200 ], [ -70.271301, 46.211200 ], [ -70.271988, 46.212625 ], [ -70.271301, 46.213576 ], [ -70.274734, 46.214526 ], [ -70.273361, 46.216426 ], [ -70.274048, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.267868, 46.219752 ], [ -70.267868, 46.221652 ], [ -70.265808, 46.223553 ], [ -70.267868, 46.224978 ], [ -70.264435, 46.227353 ], [ -70.264435, 46.228778 ], [ -70.261688, 46.229728 ], [ -70.260315, 46.231153 ], [ -70.261002, 46.231628 ], [ -70.257568, 46.236853 ], [ -70.258255, 46.238277 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.256195, 46.244926 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246351 ], [ -70.251389, 46.249200 ], [ -70.252075, 46.252523 ], [ -70.254822, 46.253948 ], [ -70.253448, 46.255372 ], [ -70.253448, 46.259645 ], [ -70.250702, 46.261069 ], [ -70.250702, 46.263443 ], [ -70.248642, 46.265341 ], [ -70.249329, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.273411 ], [ -70.241089, 46.273411 ], [ -70.241089, 46.275309 ], [ -70.239716, 46.275784 ], [ -70.240402, 46.279580 ], [ -70.238342, 46.281004 ], [ -70.235596, 46.281479 ], [ -70.232849, 46.284800 ], [ -70.232162, 46.291443 ], [ -70.229416, 46.291918 ], [ -70.229416, 46.292392 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295713 ], [ -70.215683, 46.294764 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297611 ], [ -70.212250, 46.299034 ], [ -70.210876, 46.298560 ], [ -70.206070, 46.299983 ], [ -70.206070, 46.300457 ], [ -70.207443, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206757, 46.309944 ], [ -70.204010, 46.312790 ], [ -70.203323, 46.315161 ], [ -70.207443, 46.319430 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.325120 ], [ -70.209503, 46.329862 ], [ -70.205383, 46.334129 ], [ -70.202637, 46.335551 ], [ -70.201263, 46.337447 ], [ -70.195770, 46.341239 ], [ -70.196457, 46.343610 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.348350 ], [ -70.192337, 46.349297 ], [ -70.191650, 46.350245 ], [ -70.190277, 46.350719 ], [ -70.188904, 46.350245 ], [ -70.184784, 46.352141 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354511 ], [ -70.177231, 46.355933 ], [ -70.175858, 46.358302 ], [ -70.173111, 46.359724 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357828 ], [ -70.164871, 46.359250 ], [ -70.163498, 46.359250 ], [ -70.162125, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359724 ], [ -70.158691, 46.361145 ], [ -70.156631, 46.361619 ], [ -70.154572, 46.360198 ], [ -70.148392, 46.359250 ], [ -70.144958, 46.362567 ], [ -70.142212, 46.362567 ], [ -70.140839, 46.363041 ], [ -70.141525, 46.364936 ], [ -70.139465, 46.365884 ], [ -70.138092, 46.369674 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.369200 ], [ -70.131912, 46.370148 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127106, 46.371569 ], [ -70.128479, 46.379623 ], [ -70.126419, 46.381991 ], [ -70.116806, 46.385781 ], [ -70.116806, 46.388622 ], [ -70.115433, 46.388149 ], [ -70.114746, 46.385307 ], [ -70.111313, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112686, 46.388622 ], [ -70.110626, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108566, 46.389096 ] ], [ [ -69.807816, 45.722480 ], [ -69.808502, 45.723439 ], [ -69.809189, 45.722960 ], [ -69.807816, 45.722480 ] ], [ [ -69.826355, 45.741173 ], [ -69.827042, 45.740214 ], [ -69.833221, 45.738777 ], [ -69.830475, 45.738297 ], [ -69.828415, 45.739256 ], [ -69.827728, 45.737818 ], [ -69.827728, 45.739256 ], [ -69.825668, 45.739735 ], [ -69.826355, 45.741173 ] ], [ [ -69.798889, 45.784764 ], [ -69.801636, 45.784764 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798889, 45.784764 ] ], [ [ -69.797516, 45.783327 ], [ -69.796829, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785721 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.796143, 45.785721 ], [ -69.796829, 45.785243 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.783327 ] ], [ [ -69.798889, 45.784764 ], [ -69.801636, 45.785721 ], [ -69.801636, 45.785243 ], [ -69.798889, 45.784764 ] ], [ [ -69.798889, 45.784764 ], [ -69.797516, 45.783806 ], [ -69.798203, 45.784764 ], [ -69.798889, 45.784764 ] ], [ [ -69.788589, 45.784764 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.782848 ], [ -69.788589, 45.784764 ] ], [ [ -70.108566, 46.389096 ], [ -70.108566, 46.387675 ], [ -70.107880, 46.388149 ], [ -70.108566, 46.389096 ] ] ], [ [ [ -69.355316, 45.072066 ], [ -69.349136, 45.050240 ], [ -69.499512, 45.050240 ], [ -69.500198, 45.054121 ], [ -69.356689, 45.073521 ], [ -69.355316, 45.072066 ] ] ], [ [ [ -69.732971, 45.657248 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657248 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 91 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 45.111331 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.365028, 45.157832 ], [ -70.363655, 45.152506 ], [ -70.384598, 45.149600 ], [ -70.418587, 45.144031 ], [ -70.427513, 45.176229 ], [ -70.439529, 45.223403 ], [ -70.455666, 45.283342 ], [ -70.472832, 45.351421 ], [ -70.518837, 45.512362 ], [ -70.505791, 45.513805 ], [ -70.534286, 45.602989 ], [ -70.538406, 45.619320 ], [ -70.553169, 45.668045 ], [ -70.547333, 45.666126 ], [ -70.545959, 45.666366 ], [ -70.544930, 45.667086 ], [ -70.542526, 45.666606 ], [ -70.539780, 45.667805 ], [ -70.538406, 45.669005 ], [ -70.537720, 45.669005 ], [ -70.536690, 45.669725 ], [ -70.535660, 45.669725 ], [ -70.534286, 45.671164 ], [ -70.533257, 45.671164 ], [ -70.530853, 45.669965 ], [ -70.529137, 45.668045 ], [ -70.527077, 45.666606 ], [ -70.526047, 45.666606 ], [ -70.523643, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.672843 ], [ -70.518150, 45.673323 ], [ -70.517464, 45.674283 ], [ -70.514030, 45.675962 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506477, 45.681239 ], [ -70.505104, 45.681239 ], [ -70.504761, 45.681719 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683398 ], [ -70.496864, 45.685557 ], [ -70.496521, 45.685796 ], [ -70.497208, 45.686276 ], [ -70.494804, 45.687715 ], [ -70.493774, 45.689154 ], [ -70.489655, 45.690113 ], [ -70.488968, 45.690833 ], [ -70.486908, 45.691552 ], [ -70.485535, 45.692512 ], [ -70.485191, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.479698, 45.694910 ], [ -70.477982, 45.696348 ], [ -70.475235, 45.697787 ], [ -70.475235, 45.698746 ], [ -70.469398, 45.701624 ], [ -70.470772, 45.703302 ], [ -70.468025, 45.704261 ], [ -70.466652, 45.706179 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460472, 45.705940 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.454636, 45.706899 ], [ -70.453262, 45.705220 ], [ -70.452232, 45.705220 ], [ -70.451202, 45.704021 ], [ -70.449142, 45.704501 ], [ -70.445366, 45.703782 ], [ -70.441246, 45.705460 ], [ -70.440559, 45.704501 ], [ -70.439186, 45.704021 ], [ -70.431633, 45.707138 ], [ -70.429573, 45.707378 ], [ -70.429230, 45.708097 ], [ -70.428543, 45.708097 ], [ -70.428543, 45.707618 ], [ -70.426140, 45.707138 ], [ -70.425797, 45.707858 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710255 ], [ -70.429230, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.428543, 45.710495 ], [ -70.426140, 45.711933 ], [ -70.423393, 45.711933 ], [ -70.422707, 45.712413 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715529 ], [ -70.413094, 45.716728 ], [ -70.410690, 45.716488 ], [ -70.407944, 45.716967 ], [ -70.406570, 45.717926 ], [ -70.403824, 45.718405 ], [ -70.402794, 45.719364 ], [ -70.400734, 45.719844 ], [ -70.399704, 45.720802 ], [ -70.400734, 45.721761 ], [ -70.397987, 45.723439 ], [ -70.397301, 45.725596 ], [ -70.397987, 45.725836 ], [ -70.397987, 45.726794 ], [ -70.397301, 45.727034 ], [ -70.396957, 45.728951 ], [ -70.395584, 45.729670 ], [ -70.392838, 45.729431 ], [ -70.391464, 45.728472 ], [ -70.390434, 45.728712 ], [ -70.385971, 45.732786 ], [ -70.385971, 45.733505 ], [ -70.384254, 45.734463 ], [ -70.385971, 45.734703 ], [ -70.385971, 45.735182 ], [ -70.384941, 45.735901 ], [ -70.385628, 45.736380 ], [ -70.387001, 45.736620 ], [ -70.388718, 45.735901 ], [ -70.390434, 45.736380 ], [ -70.390778, 45.737099 ], [ -70.389748, 45.737578 ], [ -70.391121, 45.737578 ], [ -70.392494, 45.738537 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393181, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394554, 45.744287 ], [ -70.393181, 45.744287 ], [ -70.392494, 45.745725 ], [ -70.390434, 45.746444 ], [ -70.388374, 45.748360 ], [ -70.389061, 45.749319 ], [ -70.388718, 45.750516 ], [ -70.394897, 45.754828 ], [ -70.396271, 45.756745 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762493 ], [ -70.407257, 45.764170 ], [ -70.406570, 45.764649 ], [ -70.406570, 45.768960 ], [ -70.405540, 45.770157 ], [ -70.406227, 45.771355 ], [ -70.407600, 45.772313 ], [ -70.407944, 45.773510 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.408974, 45.779975 ], [ -70.408287, 45.780454 ], [ -70.410347, 45.784285 ], [ -70.411377, 45.784764 ], [ -70.415497, 45.784524 ], [ -70.416183, 45.785482 ], [ -70.414467, 45.790270 ], [ -70.415154, 45.791706 ], [ -70.416870, 45.793621 ], [ -70.417900, 45.794100 ], [ -70.417213, 45.795537 ], [ -70.406914, 45.797930 ], [ -70.405197, 45.796733 ], [ -70.403137, 45.796015 ], [ -70.401764, 45.796015 ], [ -70.399017, 45.796733 ], [ -70.397301, 45.797930 ], [ -70.395927, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.395927, 45.802717 ], [ -70.397987, 45.803914 ], [ -70.396957, 45.805589 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812290 ], [ -70.390434, 45.813486 ], [ -70.388374, 45.813965 ], [ -70.388374, 45.818990 ], [ -70.383911, 45.822100 ], [ -70.383224, 45.822100 ], [ -70.380821, 45.824493 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828082 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.369835, 45.832866 ], [ -70.372238, 45.834062 ], [ -70.370522, 45.835497 ], [ -70.368805, 45.836215 ], [ -70.367775, 45.835976 ], [ -70.367432, 45.835019 ], [ -70.365028, 45.834780 ], [ -70.362625, 45.835736 ], [ -70.359535, 45.835497 ], [ -70.358505, 45.836693 ], [ -70.356445, 45.837650 ], [ -70.356789, 45.839324 ], [ -70.352325, 45.840999 ], [ -70.352325, 45.841955 ], [ -70.353012, 45.842673 ], [ -70.351982, 45.844108 ], [ -70.351295, 45.844108 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847217 ], [ -70.348549, 45.847456 ], [ -70.346146, 45.849369 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852478 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285034, 45.871844 ], [ -70.285034, 45.111331 ] ] ], [ [ [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.298767, 46.030581 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.285034, 46.048455 ], [ -70.285034, 45.995531 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ] ] ], [ [ [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.967856 ], [ -70.312500, 45.970243 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.285034, 45.994815 ], [ -70.285034, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ] ] ], [ [ [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -70.285034, 46.092281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 45.871844 ], [ -70.285034, 45.111331 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.365028, 45.157832 ], [ -70.363655, 45.152506 ], [ -70.384598, 45.149600 ], [ -70.418587, 45.144031 ], [ -70.427513, 45.176229 ], [ -70.439529, 45.223403 ], [ -70.455666, 45.283342 ], [ -70.472832, 45.351421 ], [ -70.518837, 45.512362 ], [ -70.505791, 45.513805 ], [ -70.534286, 45.602989 ], [ -70.538406, 45.619320 ], [ -70.553169, 45.668045 ], [ -70.547333, 45.666126 ], [ -70.545959, 45.666366 ], [ -70.544930, 45.667086 ], [ -70.542526, 45.666606 ], [ -70.539780, 45.667805 ], [ -70.538406, 45.669005 ], [ -70.537720, 45.669005 ], [ -70.536690, 45.669725 ], [ -70.535660, 45.669725 ], [ -70.534286, 45.671164 ], [ -70.533257, 45.671164 ], [ -70.530853, 45.669965 ], [ -70.529137, 45.668045 ], [ -70.527077, 45.666606 ], [ -70.526047, 45.666606 ], [ -70.523643, 45.668285 ], [ -70.519867, 45.669245 ], [ -70.519867, 45.671644 ], [ -70.517807, 45.672843 ], [ -70.518150, 45.673323 ], [ -70.517464, 45.674283 ], [ -70.514030, 45.675962 ], [ -70.510941, 45.678361 ], [ -70.510941, 45.679320 ], [ -70.506477, 45.681239 ], [ -70.505104, 45.681239 ], [ -70.504761, 45.681719 ], [ -70.502701, 45.681719 ], [ -70.502701, 45.683398 ], [ -70.496864, 45.685557 ], [ -70.496521, 45.685796 ], [ -70.497208, 45.686276 ], [ -70.494804, 45.687715 ], [ -70.493774, 45.689154 ], [ -70.489655, 45.690113 ], [ -70.488968, 45.690833 ], [ -70.486908, 45.691552 ], [ -70.485535, 45.692512 ], [ -70.485191, 45.693711 ], [ -70.482788, 45.693711 ], [ -70.479698, 45.694910 ], [ -70.477982, 45.696348 ], [ -70.475235, 45.697787 ], [ -70.475235, 45.698746 ], [ -70.469398, 45.701624 ], [ -70.470772, 45.703302 ], [ -70.468025, 45.704261 ], [ -70.466652, 45.706179 ], [ -70.465622, 45.706659 ], [ -70.461502, 45.705700 ], [ -70.460472, 45.705940 ], [ -70.460129, 45.706659 ], [ -70.456009, 45.707138 ], [ -70.454636, 45.706899 ], [ -70.453262, 45.705220 ], [ -70.452232, 45.705220 ], [ -70.451202, 45.704021 ], [ -70.449142, 45.704501 ], [ -70.445366, 45.703782 ], [ -70.441246, 45.705460 ], [ -70.440559, 45.704501 ], [ -70.439186, 45.704021 ], [ -70.431633, 45.707138 ], [ -70.429573, 45.707378 ], [ -70.429230, 45.708097 ], [ -70.428543, 45.708097 ], [ -70.428543, 45.707618 ], [ -70.426140, 45.707138 ], [ -70.425797, 45.707858 ], [ -70.428543, 45.708577 ], [ -70.429916, 45.710255 ], [ -70.429230, 45.710495 ], [ -70.428543, 45.710015 ], [ -70.428543, 45.710495 ], [ -70.426140, 45.711933 ], [ -70.423393, 45.711933 ], [ -70.422707, 45.712413 ], [ -70.418243, 45.713371 ], [ -70.413437, 45.715529 ], [ -70.413094, 45.716728 ], [ -70.410690, 45.716488 ], [ -70.407944, 45.716967 ], [ -70.406570, 45.717926 ], [ -70.403824, 45.718405 ], [ -70.402794, 45.719364 ], [ -70.400734, 45.719844 ], [ -70.399704, 45.720802 ], [ -70.400734, 45.721761 ], [ -70.397987, 45.723439 ], [ -70.397301, 45.725596 ], [ -70.397987, 45.725836 ], [ -70.397987, 45.726794 ], [ -70.397301, 45.727034 ], [ -70.396957, 45.728951 ], [ -70.395584, 45.729670 ], [ -70.392838, 45.729431 ], [ -70.391464, 45.728472 ], [ -70.390434, 45.728712 ], [ -70.385971, 45.732786 ], [ -70.385971, 45.733505 ], [ -70.384254, 45.734463 ], [ -70.385971, 45.734703 ], [ -70.385971, 45.735182 ], [ -70.384941, 45.735901 ], [ -70.385628, 45.736380 ], [ -70.387001, 45.736620 ], [ -70.388718, 45.735901 ], [ -70.390434, 45.736380 ], [ -70.390778, 45.737099 ], [ -70.389748, 45.737578 ], [ -70.391121, 45.737578 ], [ -70.392494, 45.738537 ], [ -70.392151, 45.739256 ], [ -70.394211, 45.740214 ], [ -70.393181, 45.741652 ], [ -70.394897, 45.742610 ], [ -70.394554, 45.744287 ], [ -70.393181, 45.744287 ], [ -70.392494, 45.745725 ], [ -70.390434, 45.746444 ], [ -70.388374, 45.748360 ], [ -70.389061, 45.749319 ], [ -70.388718, 45.750516 ], [ -70.394897, 45.754828 ], [ -70.396271, 45.756745 ], [ -70.401077, 45.757463 ], [ -70.407257, 45.762493 ], [ -70.407257, 45.764170 ], [ -70.406570, 45.764649 ], [ -70.406570, 45.768960 ], [ -70.405540, 45.770157 ], [ -70.406227, 45.771355 ], [ -70.407600, 45.772313 ], [ -70.407944, 45.773510 ], [ -70.405884, 45.777102 ], [ -70.407257, 45.777581 ], [ -70.408974, 45.779975 ], [ -70.408287, 45.780454 ], [ -70.410347, 45.784285 ], [ -70.411377, 45.784764 ], [ -70.415497, 45.784524 ], [ -70.416183, 45.785482 ], [ -70.414467, 45.790270 ], [ -70.415154, 45.791706 ], [ -70.416870, 45.793621 ], [ -70.417900, 45.794100 ], [ -70.417213, 45.795537 ], [ -70.406914, 45.797930 ], [ -70.405197, 45.796733 ], [ -70.403137, 45.796015 ], [ -70.401764, 45.796015 ], [ -70.399017, 45.796733 ], [ -70.397301, 45.797930 ], [ -70.395927, 45.799606 ], [ -70.396957, 45.800084 ], [ -70.395927, 45.802717 ], [ -70.397987, 45.803914 ], [ -70.396957, 45.805589 ], [ -70.396957, 45.808222 ], [ -70.390778, 45.812290 ], [ -70.390434, 45.813486 ], [ -70.388374, 45.813965 ], [ -70.388374, 45.818990 ], [ -70.383911, 45.822100 ], [ -70.383224, 45.822100 ], [ -70.380821, 45.824493 ], [ -70.376358, 45.827364 ], [ -70.372238, 45.828082 ], [ -70.372238, 45.829278 ], [ -70.369492, 45.831191 ], [ -70.370865, 45.832148 ], [ -70.369835, 45.832866 ], [ -70.372238, 45.834062 ], [ -70.370522, 45.835497 ], [ -70.368805, 45.836215 ], [ -70.367775, 45.835976 ], [ -70.367432, 45.835019 ], [ -70.365028, 45.834780 ], [ -70.362625, 45.835736 ], [ -70.359535, 45.835497 ], [ -70.358505, 45.836693 ], [ -70.356445, 45.837650 ], [ -70.356789, 45.839324 ], [ -70.352325, 45.840999 ], [ -70.352325, 45.841955 ], [ -70.353012, 45.842673 ], [ -70.351982, 45.844108 ], [ -70.351295, 45.844108 ], [ -70.349579, 45.845543 ], [ -70.349579, 45.847217 ], [ -70.348549, 45.847456 ], [ -70.346146, 45.849369 ], [ -70.344086, 45.849847 ], [ -70.342026, 45.852478 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285034, 45.871844 ] ] ], [ [ [ -70.285034, 46.092281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -70.285034, 46.092281 ] ] ], [ [ [ -70.285034, 45.995531 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.298767, 46.030581 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.285034, 46.048455 ], [ -70.285034, 45.995531 ] ] ], [ [ [ -70.285034, 45.994815 ], [ -70.285034, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.967856 ], [ -70.312500, 45.970243 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.285034, 45.994815 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 90 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.286407, 46.096805 ], [ -70.285034, 46.097281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ] ] ], [ [ [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191240 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.286064, 46.196943 ], [ -70.285378, 46.197656 ], [ -70.285034, 46.197656 ], [ -70.285034, 46.182445 ], [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ] ] ], [ [ [ -70.285034, 46.100138 ], [ -70.285034, 46.099186 ], [ -70.286064, 46.099900 ], [ -70.285034, 46.100138 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 46.097281 ], [ -70.285034, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.288811, 46.062512 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.307350, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.286407, 46.096805 ], [ -70.285034, 46.097281 ] ] ], [ [ [ -70.285034, 46.182445 ], [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191240 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.286064, 46.196943 ], [ -70.285378, 46.197656 ], [ -70.285034, 46.197656 ], [ -70.285034, 46.182445 ] ] ], [ [ [ -70.285034, 46.100138 ], [ -70.285034, 46.099186 ], [ -70.286064, 46.099900 ], [ -70.285034, 46.100138 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 92 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.053878 ], [ -69.495392, 45.037384 ], [ -69.518738, 45.034472 ], [ -69.515991, 45.025252 ], [ -69.585686, 45.015545 ], [ -69.621048, 45.011176 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.657440, 45.108423 ], [ -69.101601, 45.108423 ], [ -69.204254, 45.093883 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.101601, 45.108423 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.500198, 45.053878 ], [ -69.495392, 45.037384 ], [ -69.518738, 45.034472 ], [ -69.515991, 45.025252 ], [ -69.585686, 45.015545 ], [ -69.621048, 45.011176 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.657440, 45.108423 ], [ -69.101601, 45.108423 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.621048, 45.011176 ], [ -69.585686, 45.015545 ], [ -69.515991, 45.025252 ], [ -69.518738, 45.034472 ], [ -69.495392, 45.037384 ], [ -69.500198, 45.053878 ], [ -69.356003, 45.073521 ], [ -69.327164, 44.973785 ], [ -69.320984, 44.950221 ], [ -69.308968, 44.908900 ], [ -69.303474, 44.886769 ], [ -69.299011, 44.873146 ], [ -69.281845, 44.810827 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267082, 44.723076 ], [ -69.267082, 44.722100 ], [ -69.267769, 44.721857 ], [ -69.327507, 44.714538 ], [ -69.343643, 44.749903 ], [ -69.348450, 44.749172 ], [ -69.350510, 44.749415 ], [ -69.352226, 44.750147 ], [ -69.355659, 44.750391 ], [ -69.356689, 44.750878 ], [ -69.360809, 44.751122 ], [ -69.363556, 44.751854 ], [ -69.365616, 44.753073 ], [ -69.371796, 44.754779 ], [ -69.374542, 44.754292 ], [ -69.383469, 44.754292 ], [ -69.385529, 44.754048 ], [ -69.388618, 44.752585 ], [ -69.388618, 44.747465 ], [ -69.389992, 44.746977 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.746977 ], [ -69.398575, 44.745270 ], [ -69.398232, 44.742100 ], [ -69.396858, 44.737954 ], [ -69.395142, 44.735272 ], [ -69.395142, 44.732345 ], [ -69.395485, 44.731613 ], [ -69.396858, 44.730882 ], [ -69.399948, 44.730150 ], [ -69.406128, 44.727223 ], [ -69.408531, 44.723564 ], [ -69.414711, 44.718929 ], [ -69.415054, 44.718441 ], [ -69.414024, 44.716734 ], [ -69.415398, 44.715026 ], [ -69.416084, 44.711122 ], [ -69.417458, 44.709414 ], [ -69.416771, 44.704534 ], [ -69.417114, 44.701118 ], [ -69.472046, 44.693064 ], [ -69.467583, 44.708194 ], [ -69.473419, 44.708926 ], [ -69.470673, 44.718197 ], [ -69.484062, 44.720393 ], [ -69.581566, 44.707950 ], [ -69.633408, 44.700386 ], [ -69.632721, 44.697457 ], [ -69.633064, 44.691112 ], [ -69.632378, 44.688671 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673292 ], [ -69.627914, 44.670850 ], [ -69.621735, 44.664990 ], [ -69.618301, 44.657664 ], [ -69.614525, 44.654245 ], [ -69.607315, 44.652047 ], [ -69.605598, 44.651070 ], [ -69.599419, 44.644475 ], [ -69.592209, 44.639590 ], [ -69.586029, 44.632261 ], [ -69.581909, 44.630306 ], [ -69.579163, 44.627130 ], [ -69.579163, 44.623465 ], [ -69.580193, 44.621510 ], [ -69.581909, 44.618577 ], [ -69.590492, 44.608068 ], [ -69.593239, 44.602935 ], [ -69.592209, 44.595601 ], [ -69.590836, 44.594134 ], [ -69.589462, 44.590223 ], [ -69.589462, 44.588756 ], [ -69.590149, 44.588022 ], [ -69.591522, 44.583865 ], [ -69.593582, 44.582154 ], [ -69.600792, 44.580442 ], [ -69.604568, 44.578730 ], [ -69.605942, 44.577508 ], [ -69.742241, 44.598290 ], [ -69.744301, 44.602691 ], [ -69.775543, 44.608313 ], [ -69.776573, 44.608313 ], [ -69.777260, 44.607579 ], [ -69.787560, 44.594134 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819145, 44.581665 ], [ -69.818802, 44.582154 ], [ -69.817772, 44.582154 ], [ -69.818115, 44.582398 ], [ -69.817429, 44.582643 ], [ -69.817429, 44.583621 ], [ -69.816742, 44.584354 ], [ -69.818115, 44.584599 ], [ -69.818115, 44.585333 ], [ -69.817429, 44.585088 ], [ -69.817085, 44.585822 ], [ -69.817772, 44.585577 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.587778 ], [ -69.818802, 44.588511 ], [ -69.818115, 44.588511 ], [ -69.817772, 44.589000 ], [ -69.818115, 44.590223 ], [ -69.818802, 44.590467 ], [ -69.818115, 44.590712 ], [ -69.818459, 44.591201 ], [ -69.817429, 44.591690 ], [ -69.818115, 44.591690 ], [ -69.818115, 44.592179 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.592912 ], [ -69.818115, 44.592912 ], [ -69.818802, 44.594379 ], [ -69.818115, 44.594379 ], [ -69.818459, 44.595601 ], [ -69.817429, 44.596579 ], [ -69.817429, 44.598046 ], [ -69.818115, 44.597557 ], [ -69.818802, 44.598046 ], [ -69.818802, 44.599268 ], [ -69.820518, 44.599757 ], [ -69.820518, 44.600735 ], [ -69.821205, 44.600491 ], [ -69.822578, 44.600980 ], [ -69.822578, 44.601957 ], [ -69.821548, 44.602202 ], [ -69.820518, 44.603180 ], [ -69.820862, 44.604402 ], [ -69.822922, 44.604646 ], [ -69.821892, 44.604891 ], [ -69.822235, 44.605379 ], [ -69.822922, 44.605379 ], [ -69.822922, 44.606113 ], [ -69.822235, 44.606602 ], [ -69.822235, 44.607090 ], [ -69.822922, 44.607090 ], [ -69.822578, 44.607824 ], [ -69.824295, 44.607824 ], [ -69.825668, 44.606846 ], [ -69.826698, 44.608068 ], [ -69.828415, 44.608313 ], [ -69.853477, 44.621510 ], [ -69.887123, 44.616622 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658641 ], [ -69.967804, 44.659862 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663037 ], [ -69.966087, 44.663037 ], [ -69.964027, 44.660839 ], [ -69.960251, 44.660595 ], [ -69.958878, 44.662548 ], [ -69.958878, 44.666455 ], [ -69.958191, 44.667920 ], [ -69.959221, 44.671094 ], [ -69.961624, 44.673292 ], [ -69.964027, 44.673780 ], [ -69.965401, 44.674757 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678175 ], [ -69.959908, 44.679639 ], [ -69.960251, 44.681348 ], [ -69.996300, 44.677686 ], [ -70.013809, 44.757705 ], [ -70.000763, 44.759168 ], [ -70.003853, 44.773549 ], [ -70.001106, 44.774036 ], [ -70.003166, 44.788414 ], [ -70.015869, 44.786952 ], [ -70.021019, 44.809852 ], [ -70.027199, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.025826, 44.830796 ], [ -70.033379, 44.864630 ], [ -70.104446, 44.854652 ], [ -70.121269, 44.851975 ], [ -70.130196, 44.851001 ], [ -70.141869, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149422, 44.896255 ], [ -70.152855, 44.910359 ], [ -70.144958, 44.911575 ], [ -70.152168, 44.941959 ], [ -70.124702, 44.945361 ], [ -70.110626, 44.947548 ], [ -70.122643, 45.000253 ], [ -70.128479, 45.018214 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.154228, 45.108423 ], [ -69.657440, 45.108423 ], [ -69.655037, 45.100184 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.657440, 45.108423 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.621048, 45.011176 ], [ -69.585686, 45.015545 ], [ -69.515991, 45.025252 ], [ -69.518738, 45.034472 ], [ -69.495392, 45.037384 ], [ -69.500198, 45.053878 ], [ -69.356003, 45.073521 ], [ -69.327164, 44.973785 ], [ -69.320984, 44.950221 ], [ -69.308968, 44.908900 ], [ -69.303474, 44.886769 ], [ -69.299011, 44.873146 ], [ -69.281845, 44.810827 ], [ -69.281845, 44.808635 ], [ -69.286652, 44.808147 ], [ -69.267082, 44.723076 ], [ -69.267082, 44.722100 ], [ -69.267769, 44.721857 ], [ -69.327507, 44.714538 ], [ -69.343643, 44.749903 ], [ -69.348450, 44.749172 ], [ -69.350510, 44.749415 ], [ -69.352226, 44.750147 ], [ -69.355659, 44.750391 ], [ -69.356689, 44.750878 ], [ -69.360809, 44.751122 ], [ -69.363556, 44.751854 ], [ -69.365616, 44.753073 ], [ -69.371796, 44.754779 ], [ -69.374542, 44.754292 ], [ -69.383469, 44.754292 ], [ -69.385529, 44.754048 ], [ -69.388618, 44.752585 ], [ -69.388618, 44.747465 ], [ -69.389992, 44.746977 ], [ -69.394455, 44.748196 ], [ -69.397888, 44.746977 ], [ -69.398575, 44.745270 ], [ -69.398232, 44.742100 ], [ -69.396858, 44.737954 ], [ -69.395142, 44.735272 ], [ -69.395142, 44.732345 ], [ -69.395485, 44.731613 ], [ -69.396858, 44.730882 ], [ -69.399948, 44.730150 ], [ -69.406128, 44.727223 ], [ -69.408531, 44.723564 ], [ -69.414711, 44.718929 ], [ -69.415054, 44.718441 ], [ -69.414024, 44.716734 ], [ -69.415398, 44.715026 ], [ -69.416084, 44.711122 ], [ -69.417458, 44.709414 ], [ -69.416771, 44.704534 ], [ -69.417114, 44.701118 ], [ -69.472046, 44.693064 ], [ -69.467583, 44.708194 ], [ -69.473419, 44.708926 ], [ -69.470673, 44.718197 ], [ -69.484062, 44.720393 ], [ -69.581566, 44.707950 ], [ -69.633408, 44.700386 ], [ -69.632721, 44.697457 ], [ -69.633064, 44.691112 ], [ -69.632378, 44.688671 ], [ -69.629974, 44.684766 ], [ -69.629288, 44.673292 ], [ -69.627914, 44.670850 ], [ -69.621735, 44.664990 ], [ -69.618301, 44.657664 ], [ -69.614525, 44.654245 ], [ -69.607315, 44.652047 ], [ -69.605598, 44.651070 ], [ -69.599419, 44.644475 ], [ -69.592209, 44.639590 ], [ -69.586029, 44.632261 ], [ -69.581909, 44.630306 ], [ -69.579163, 44.627130 ], [ -69.579163, 44.623465 ], [ -69.580193, 44.621510 ], [ -69.581909, 44.618577 ], [ -69.590492, 44.608068 ], [ -69.593239, 44.602935 ], [ -69.592209, 44.595601 ], [ -69.590836, 44.594134 ], [ -69.589462, 44.590223 ], [ -69.589462, 44.588756 ], [ -69.590149, 44.588022 ], [ -69.591522, 44.583865 ], [ -69.593582, 44.582154 ], [ -69.600792, 44.580442 ], [ -69.604568, 44.578730 ], [ -69.605942, 44.577508 ], [ -69.742241, 44.598290 ], [ -69.744301, 44.602691 ], [ -69.775543, 44.608313 ], [ -69.776573, 44.608313 ], [ -69.777260, 44.607579 ], [ -69.787560, 44.594134 ], [ -69.792709, 44.577752 ], [ -69.795456, 44.577752 ], [ -69.819145, 44.581665 ], [ -69.818802, 44.582154 ], [ -69.817772, 44.582154 ], [ -69.818115, 44.582398 ], [ -69.817429, 44.582643 ], [ -69.817429, 44.583621 ], [ -69.816742, 44.584354 ], [ -69.818115, 44.584599 ], [ -69.818115, 44.585333 ], [ -69.817429, 44.585088 ], [ -69.817085, 44.585822 ], [ -69.817772, 44.585577 ], [ -69.817429, 44.586555 ], [ -69.818802, 44.587778 ], [ -69.818802, 44.588511 ], [ -69.818115, 44.588511 ], [ -69.817772, 44.589000 ], [ -69.818115, 44.590223 ], [ -69.818802, 44.590467 ], [ -69.818115, 44.590712 ], [ -69.818459, 44.591201 ], [ -69.817429, 44.591690 ], [ -69.818115, 44.591690 ], [ -69.818115, 44.592179 ], [ -69.818802, 44.592423 ], [ -69.818802, 44.592912 ], [ -69.818115, 44.592912 ], [ -69.818802, 44.594379 ], [ -69.818115, 44.594379 ], [ -69.818459, 44.595601 ], [ -69.817429, 44.596579 ], [ -69.817429, 44.598046 ], [ -69.818115, 44.597557 ], [ -69.818802, 44.598046 ], [ -69.818802, 44.599268 ], [ -69.820518, 44.599757 ], [ -69.820518, 44.600735 ], [ -69.821205, 44.600491 ], [ -69.822578, 44.600980 ], [ -69.822578, 44.601957 ], [ -69.821548, 44.602202 ], [ -69.820518, 44.603180 ], [ -69.820862, 44.604402 ], [ -69.822922, 44.604646 ], [ -69.821892, 44.604891 ], [ -69.822235, 44.605379 ], [ -69.822922, 44.605379 ], [ -69.822922, 44.606113 ], [ -69.822235, 44.606602 ], [ -69.822235, 44.607090 ], [ -69.822922, 44.607090 ], [ -69.822578, 44.607824 ], [ -69.824295, 44.607824 ], [ -69.825668, 44.606846 ], [ -69.826698, 44.608068 ], [ -69.828415, 44.608313 ], [ -69.853477, 44.621510 ], [ -69.887123, 44.616622 ], [ -69.930725, 44.611001 ], [ -69.947205, 44.648139 ], [ -69.967804, 44.658641 ], [ -69.967804, 44.659862 ], [ -69.969177, 44.661816 ], [ -69.967804, 44.663037 ], [ -69.966087, 44.663037 ], [ -69.964027, 44.660839 ], [ -69.960251, 44.660595 ], [ -69.958878, 44.662548 ], [ -69.958878, 44.666455 ], [ -69.958191, 44.667920 ], [ -69.959221, 44.671094 ], [ -69.961624, 44.673292 ], [ -69.964027, 44.673780 ], [ -69.965401, 44.674757 ], [ -69.964371, 44.676466 ], [ -69.960938, 44.678175 ], [ -69.959908, 44.679639 ], [ -69.960251, 44.681348 ], [ -69.996300, 44.677686 ], [ -70.013809, 44.757705 ], [ -70.000763, 44.759168 ], [ -70.003853, 44.773549 ], [ -70.001106, 44.774036 ], [ -70.003166, 44.788414 ], [ -70.015869, 44.786952 ], [ -70.021019, 44.809852 ], [ -70.027199, 44.809122 ], [ -70.032349, 44.830065 ], [ -70.025826, 44.830796 ], [ -70.033379, 44.864630 ], [ -70.104446, 44.854652 ], [ -70.121269, 44.851975 ], [ -70.130196, 44.851001 ], [ -70.141869, 44.896255 ], [ -70.142899, 44.897228 ], [ -70.149422, 44.896255 ], [ -70.152855, 44.910359 ], [ -70.144958, 44.911575 ], [ -70.152168, 44.941959 ], [ -70.124702, 44.945361 ], [ -70.110626, 44.947548 ], [ -70.122643, 45.000253 ], [ -70.128479, 45.018214 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.154228, 45.108423 ], [ -69.657440, 45.108423 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 91 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.830132, 45.738058 ], [ -69.833221, 45.738537 ], [ -69.832878, 45.739016 ], [ -69.830132, 45.738777 ], [ -69.827042, 45.739975 ], [ -69.826355, 45.741891 ], [ -69.825325, 45.742371 ], [ -69.825325, 45.743089 ], [ -69.823952, 45.743808 ], [ -69.822578, 45.743569 ], [ -69.821892, 45.745006 ], [ -69.819489, 45.745725 ], [ -69.817429, 45.747162 ], [ -69.817085, 45.746683 ], [ -69.815369, 45.747162 ], [ -69.812622, 45.747162 ], [ -69.812965, 45.745965 ], [ -69.812279, 45.745965 ], [ -69.810219, 45.746444 ], [ -69.809189, 45.747162 ], [ -69.806442, 45.747642 ], [ -69.805412, 45.748600 ], [ -69.803696, 45.749079 ], [ -69.801292, 45.749079 ], [ -69.800262, 45.748600 ], [ -69.800262, 45.747881 ], [ -69.798546, 45.747642 ], [ -69.798203, 45.746683 ], [ -69.796486, 45.746204 ], [ -69.793739, 45.746204 ], [ -69.793053, 45.745725 ], [ -69.789963, 45.746683 ], [ -69.789963, 45.747162 ], [ -69.788246, 45.746923 ], [ -69.788246, 45.747402 ], [ -69.789619, 45.747881 ], [ -69.789619, 45.748600 ], [ -69.788589, 45.749079 ], [ -69.788589, 45.749558 ], [ -69.789619, 45.750037 ], [ -69.790993, 45.750037 ], [ -69.791679, 45.750516 ], [ -69.791336, 45.750756 ], [ -69.792366, 45.751235 ], [ -69.791679, 45.753152 ], [ -69.789963, 45.754349 ], [ -69.789963, 45.755787 ], [ -69.792366, 45.756266 ], [ -69.792709, 45.756984 ], [ -69.794769, 45.757703 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.757942 ], [ -69.791679, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.759619 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.762014 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.791336, 45.764409 ], [ -69.790649, 45.764649 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.765846 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.767762 ], [ -69.788933, 45.768960 ], [ -69.787560, 45.768960 ], [ -69.786873, 45.768481 ], [ -69.784813, 45.769439 ], [ -69.782410, 45.769678 ], [ -69.782753, 45.770876 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.772552 ], [ -69.781723, 45.773989 ], [ -69.784126, 45.773031 ], [ -69.784813, 45.774468 ], [ -69.783440, 45.774468 ], [ -69.782753, 45.774947 ], [ -69.784813, 45.775905 ], [ -69.786186, 45.775905 ], [ -69.786186, 45.774947 ], [ -69.787903, 45.774947 ], [ -69.787560, 45.776862 ], [ -69.788933, 45.776862 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.777820 ], [ -69.789619, 45.777820 ], [ -69.789619, 45.778299 ], [ -69.788246, 45.777820 ], [ -69.788246, 45.779257 ], [ -69.787216, 45.779736 ], [ -69.786873, 45.780933 ], [ -69.784813, 45.780933 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.783327 ], [ -69.785500, 45.783327 ], [ -69.785843, 45.783806 ], [ -69.787560, 45.783567 ], [ -69.787560, 45.784045 ], [ -69.788246, 45.784045 ], [ -69.788246, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783567 ], [ -69.792366, 45.783806 ], [ -69.793053, 45.783088 ], [ -69.794083, 45.782848 ], [ -69.795456, 45.783567 ], [ -69.796486, 45.783327 ], [ -69.795799, 45.784285 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.784764 ], [ -69.792023, 45.785482 ], [ -69.791336, 45.784285 ], [ -69.790993, 45.784524 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.783806 ], [ -69.788246, 45.785003 ], [ -69.786530, 45.785003 ], [ -69.785156, 45.785482 ], [ -69.784126, 45.784764 ], [ -69.784470, 45.784045 ], [ -69.783440, 45.785003 ], [ -69.783440, 45.784285 ], [ -69.784126, 45.783806 ], [ -69.783096, 45.783567 ], [ -69.783096, 45.782848 ], [ -69.782066, 45.782848 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781172 ], [ -69.783783, 45.781651 ], [ -69.784126, 45.780454 ], [ -69.785500, 45.779496 ], [ -69.786186, 45.779975 ], [ -69.786186, 45.779017 ], [ -69.785500, 45.779017 ], [ -69.785156, 45.778539 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.776862 ], [ -69.782753, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.780693, 45.777341 ], [ -69.780693, 45.776623 ], [ -69.782066, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.780350, 45.773989 ], [ -69.779320, 45.773270 ], [ -69.779320, 45.772313 ], [ -69.777260, 45.770876 ], [ -69.776573, 45.767762 ], [ -69.775543, 45.767523 ], [ -69.775887, 45.767044 ], [ -69.773827, 45.766086 ], [ -69.774513, 45.764888 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.764409 ], [ -69.771080, 45.763451 ], [ -69.767990, 45.762972 ], [ -69.767990, 45.762014 ], [ -69.768677, 45.762014 ], [ -69.769020, 45.761535 ], [ -69.762154, 45.761296 ], [ -69.761124, 45.762014 ], [ -69.760437, 45.761775 ], [ -69.760094, 45.762254 ], [ -69.759064, 45.762254 ], [ -69.758034, 45.761535 ], [ -69.752884, 45.761775 ], [ -69.750481, 45.763451 ], [ -69.751854, 45.765846 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.764649 ], [ -69.749794, 45.763212 ], [ -69.749107, 45.763212 ], [ -69.747391, 45.761535 ], [ -69.747391, 45.759859 ], [ -69.746361, 45.759859 ], [ -69.746017, 45.760338 ], [ -69.743958, 45.760098 ], [ -69.742241, 45.758182 ], [ -69.742584, 45.757224 ], [ -69.741211, 45.756745 ], [ -69.741211, 45.755547 ], [ -69.739494, 45.755547 ], [ -69.736748, 45.754828 ], [ -69.734001, 45.755308 ], [ -69.733315, 45.756026 ], [ -69.732628, 45.756026 ], [ -69.731598, 45.757942 ], [ -69.729881, 45.759140 ], [ -69.729881, 45.760338 ], [ -69.727821, 45.761056 ], [ -69.727821, 45.761535 ], [ -69.726448, 45.762254 ], [ -69.724731, 45.765846 ], [ -69.725761, 45.771594 ], [ -69.727135, 45.772313 ], [ -69.727821, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.728851, 45.775186 ], [ -69.729881, 45.776383 ], [ -69.731255, 45.776623 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738121, 45.782130 ], [ -69.738121, 45.782848 ], [ -69.734001, 45.783088 ], [ -69.733315, 45.783567 ], [ -69.731598, 45.783567 ], [ -69.730911, 45.783088 ], [ -69.726791, 45.783088 ], [ -69.725418, 45.783806 ], [ -69.724045, 45.783806 ], [ -69.723015, 45.783327 ], [ -69.723358, 45.785961 ], [ -69.722328, 45.787397 ], [ -69.720612, 45.788355 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791228 ], [ -69.719238, 45.794818 ], [ -69.718208, 45.796015 ], [ -69.718208, 45.797691 ], [ -69.717178, 45.798409 ], [ -69.717522, 45.798888 ], [ -69.716835, 45.798888 ], [ -69.716148, 45.800802 ], [ -69.714432, 45.801760 ], [ -69.713745, 45.804871 ], [ -69.713058, 45.805350 ], [ -69.712715, 45.806547 ], [ -69.712029, 45.806786 ], [ -69.710999, 45.808940 ], [ -69.708939, 45.810854 ], [ -69.708939, 45.812290 ], [ -69.709969, 45.814444 ], [ -69.709625, 45.815401 ], [ -69.710655, 45.815879 ], [ -69.711342, 45.817076 ], [ -69.710999, 45.817554 ], [ -69.711685, 45.817794 ], [ -69.712715, 45.819469 ], [ -69.712715, 45.823297 ], [ -69.713402, 45.823536 ], [ -69.714088, 45.824971 ], [ -69.715462, 45.825928 ], [ -69.716492, 45.829038 ], [ -69.718552, 45.829756 ], [ -69.718208, 45.831670 ], [ -69.719582, 45.834062 ], [ -69.720955, 45.834301 ], [ -69.723015, 45.833344 ], [ -69.724388, 45.833344 ], [ -69.725418, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.725075, 45.834062 ], [ -69.723015, 45.834062 ], [ -69.721642, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717522, 45.834540 ], [ -69.718208, 45.833344 ], [ -69.715118, 45.831909 ], [ -69.712029, 45.832388 ], [ -69.712029, 45.833823 ], [ -69.710999, 45.834062 ], [ -69.709625, 45.835976 ], [ -69.708252, 45.836693 ], [ -69.708939, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.838128 ], [ -69.707565, 45.839324 ], [ -69.707222, 45.842673 ], [ -69.706535, 45.843151 ], [ -69.706535, 45.843869 ], [ -69.705505, 45.844347 ], [ -69.705505, 45.845543 ], [ -69.704475, 45.846260 ], [ -69.705162, 45.846739 ], [ -69.706879, 45.846499 ], [ -69.707909, 45.846978 ], [ -69.707909, 45.849130 ], [ -69.708595, 45.850565 ], [ -69.706879, 45.852956 ], [ -69.706192, 45.853195 ], [ -69.705849, 45.854152 ], [ -69.706879, 45.854152 ], [ -69.706535, 45.854630 ], [ -69.707222, 45.854152 ], [ -69.708939, 45.854391 ], [ -69.709625, 45.854869 ], [ -69.709282, 45.855826 ], [ -69.711342, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.713402, 45.861086 ], [ -69.715118, 45.862281 ], [ -69.716148, 45.863477 ], [ -69.716148, 45.864433 ], [ -69.717522, 45.865150 ], [ -69.717522, 45.865867 ], [ -69.720955, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.722672, 45.865628 ], [ -69.724388, 45.865628 ], [ -69.725075, 45.866106 ], [ -69.725075, 45.867063 ], [ -69.725761, 45.866824 ], [ -69.725761, 45.867302 ], [ -69.724388, 45.868019 ], [ -69.724731, 45.868975 ], [ -69.723701, 45.870888 ], [ -69.724388, 45.872083 ], [ -69.725075, 45.872083 ], [ -69.724731, 45.873995 ], [ -69.727135, 45.874712 ], [ -69.727135, 45.875668 ], [ -69.727478, 45.875429 ], [ -69.728165, 45.875429 ], [ -69.731255, 45.876863 ], [ -69.731941, 45.876624 ], [ -69.734001, 45.877103 ], [ -69.734688, 45.878776 ], [ -69.733658, 45.879254 ], [ -69.735031, 45.879493 ], [ -69.736061, 45.880210 ], [ -69.737778, 45.880210 ], [ -69.737778, 45.881166 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881644 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.883317 ], [ -69.736748, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881166 ], [ -69.735718, 45.880449 ], [ -69.733315, 45.880210 ], [ -69.732628, 45.879493 ], [ -69.732628, 45.878537 ], [ -69.731941, 45.878537 ], [ -69.730225, 45.879732 ], [ -69.727821, 45.879732 ], [ -69.727135, 45.880449 ], [ -69.725761, 45.880210 ], [ -69.724731, 45.879493 ], [ -69.724731, 45.879732 ], [ -69.723358, 45.879971 ], [ -69.723701, 45.880688 ], [ -69.723015, 45.881166 ], [ -69.720612, 45.881644 ], [ -69.719582, 45.882361 ], [ -69.717178, 45.882600 ], [ -69.716492, 45.883556 ], [ -69.712715, 45.883317 ], [ -69.712715, 45.884273 ], [ -69.712029, 45.884273 ], [ -69.711685, 45.884990 ], [ -69.709625, 45.885229 ], [ -69.709282, 45.885707 ], [ -69.707565, 45.885707 ], [ -69.705849, 45.884990 ], [ -69.704132, 45.885229 ], [ -69.703445, 45.885946 ], [ -69.702072, 45.886185 ], [ -69.699669, 45.885707 ], [ -69.698296, 45.885946 ], [ -69.697952, 45.885229 ], [ -69.698639, 45.884751 ], [ -69.698639, 45.880449 ], [ -69.701729, 45.879971 ], [ -69.701729, 45.879015 ], [ -69.702759, 45.878776 ], [ -69.702759, 45.876863 ], [ -69.702072, 45.876624 ], [ -69.702072, 45.875668 ], [ -69.701385, 45.875429 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.872561 ], [ -69.700356, 45.872083 ], [ -69.700356, 45.870888 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868736 ], [ -69.696922, 45.867541 ], [ -69.697266, 45.864433 ], [ -69.694176, 45.864194 ], [ -69.692116, 45.865150 ], [ -69.692116, 45.864672 ], [ -69.693489, 45.864194 ], [ -69.692802, 45.863238 ], [ -69.693146, 45.862520 ], [ -69.693832, 45.862520 ], [ -69.694176, 45.862042 ], [ -69.691429, 45.860847 ], [ -69.692116, 45.859173 ], [ -69.690399, 45.858934 ], [ -69.689369, 45.858217 ], [ -69.689369, 45.855108 ], [ -69.690399, 45.854391 ], [ -69.686966, 45.853913 ], [ -69.685936, 45.852956 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.684219, 45.851282 ], [ -69.683533, 45.851043 ], [ -69.682503, 45.852239 ], [ -69.681816, 45.851760 ], [ -69.679413, 45.851760 ], [ -69.678383, 45.852000 ], [ -69.678040, 45.852956 ], [ -69.676323, 45.852956 ], [ -69.676666, 45.851521 ], [ -69.674606, 45.852239 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.855826 ], [ -69.673920, 45.856304 ], [ -69.674263, 45.857499 ], [ -69.672546, 45.858695 ], [ -69.672546, 45.859651 ], [ -69.673233, 45.859890 ], [ -69.673233, 45.860847 ], [ -69.673920, 45.861086 ], [ -69.674606, 45.862281 ], [ -69.673576, 45.861803 ], [ -69.673576, 45.862520 ], [ -69.672203, 45.862042 ], [ -69.671516, 45.861325 ], [ -69.670486, 45.861325 ], [ -69.670143, 45.860847 ], [ -69.668770, 45.861564 ], [ -69.667740, 45.861564 ], [ -69.667397, 45.862042 ], [ -69.664650, 45.862042 ], [ -69.663963, 45.861564 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662590, 45.861325 ], [ -69.661560, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.659843, 45.860608 ], [ -69.659157, 45.860608 ], [ -69.659500, 45.861086 ], [ -69.658813, 45.861325 ], [ -69.658127, 45.860608 ], [ -69.656754, 45.860369 ], [ -69.656410, 45.860847 ], [ -69.657097, 45.861325 ], [ -69.657097, 45.862042 ], [ -69.655724, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.654694, 45.862281 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.862998 ], [ -69.654007, 45.863955 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.862998 ], [ -69.650230, 45.863477 ], [ -69.649200, 45.863477 ], [ -69.648514, 45.862998 ], [ -69.648170, 45.863716 ], [ -69.646797, 45.863238 ], [ -69.661560, 45.910555 ], [ -69.677696, 45.965231 ], [ -69.683876, 45.983842 ], [ -69.728851, 45.976924 ], [ -69.728851, 46.037969 ], [ -69.729538, 46.053697 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.092281 ], [ -68.878784, 46.092281 ], [ -68.878784, 45.676202 ], [ -68.906250, 45.671644 ], [ -68.959122, 45.662287 ], [ -68.950882, 45.638527 ], [ -68.951912, 45.580647 ], [ -68.964958, 45.512602 ], [ -68.906250, 45.520541 ], [ -68.878784, 45.524149 ], [ -68.878784, 45.225579 ], [ -68.881187, 45.225095 ], [ -68.878784, 45.217357 ], [ -68.878784, 45.140157 ], [ -68.906250, 45.136524 ], [ -68.998947, 45.123929 ], [ -69.044952, 45.116419 ], [ -69.118080, 45.106243 ], [ -69.126320, 45.104789 ], [ -69.154472, 45.101154 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.385185, 45.069641 ], [ -69.637184, 45.069641 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.682846, 45.195103 ], [ -69.687309, 45.208166 ], [ -69.683876, 45.212762 ], [ -69.700012, 45.261597 ], [ -69.702759, 45.268363 ], [ -69.705162, 45.276336 ], [ -69.708595, 45.291313 ], [ -69.700699, 45.292520 ], [ -69.732628, 45.389047 ], [ -69.748421, 45.441104 ], [ -69.766960, 45.499369 ], [ -69.780006, 45.542908 ], [ -69.773483, 45.545553 ], [ -69.773483, 45.546034 ], [ -69.774513, 45.546515 ], [ -69.775543, 45.549400 ], [ -69.775200, 45.553006 ], [ -69.773827, 45.554689 ], [ -69.772110, 45.554689 ], [ -69.770393, 45.553727 ], [ -69.768333, 45.553727 ], [ -69.764214, 45.554689 ], [ -69.760780, 45.554208 ], [ -69.756317, 45.556131 ], [ -69.754257, 45.557814 ], [ -69.752197, 45.557814 ], [ -69.749107, 45.559016 ], [ -69.748077, 45.560458 ], [ -69.744987, 45.560939 ], [ -69.743614, 45.562862 ], [ -69.741554, 45.563343 ], [ -69.740181, 45.564304 ], [ -69.738464, 45.564545 ], [ -69.737778, 45.565266 ], [ -69.735374, 45.565506 ], [ -69.731598, 45.566948 ], [ -69.730568, 45.568390 ], [ -69.729195, 45.569111 ], [ -69.728851, 45.570073 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572476 ], [ -69.726791, 45.573918 ], [ -69.726791, 45.577042 ], [ -69.726105, 45.577523 ], [ -69.725761, 45.579205 ], [ -69.724045, 45.580647 ], [ -69.723701, 45.581848 ], [ -69.721985, 45.582809 ], [ -69.719925, 45.583049 ], [ -69.717178, 45.585212 ], [ -69.714775, 45.585452 ], [ -69.714775, 45.587615 ], [ -69.714088, 45.588576 ], [ -69.714432, 45.589777 ], [ -69.713745, 45.590017 ], [ -69.713745, 45.590978 ], [ -69.713058, 45.591699 ], [ -69.713402, 45.595303 ], [ -69.715118, 45.596984 ], [ -69.716492, 45.596744 ], [ -69.717865, 45.597465 ], [ -69.719238, 45.599386 ], [ -69.718895, 45.600347 ], [ -69.719925, 45.600828 ], [ -69.721298, 45.602749 ], [ -69.721298, 45.604190 ], [ -69.720612, 45.604190 ], [ -69.720268, 45.605151 ], [ -69.720955, 45.605872 ], [ -69.720955, 45.606832 ], [ -69.720268, 45.606832 ], [ -69.720268, 45.608033 ], [ -69.718208, 45.608033 ], [ -69.717522, 45.608514 ], [ -69.717522, 45.610915 ], [ -69.718552, 45.611876 ], [ -69.719582, 45.614758 ], [ -69.718895, 45.614518 ], [ -69.718895, 45.613557 ], [ -69.718208, 45.613317 ], [ -69.717522, 45.612116 ], [ -69.714775, 45.613077 ], [ -69.714088, 45.613077 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.612116 ], [ -69.713745, 45.612837 ], [ -69.712715, 45.613317 ], [ -69.712715, 45.614037 ], [ -69.712029, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.710312, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.709282, 45.615718 ], [ -69.708595, 45.616679 ], [ -69.706192, 45.618120 ], [ -69.705505, 45.618120 ], [ -69.704819, 45.618600 ], [ -69.704819, 45.619801 ], [ -69.703102, 45.620521 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.622202 ], [ -69.702759, 45.623883 ], [ -69.702759, 45.626764 ], [ -69.701729, 45.628204 ], [ -69.704819, 45.630605 ], [ -69.705505, 45.632046 ], [ -69.707222, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.707909, 45.637327 ], [ -69.708939, 45.638047 ], [ -69.712029, 45.637807 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.717522, 45.641888 ], [ -69.717522, 45.644048 ], [ -69.717178, 45.645728 ], [ -69.716492, 45.646208 ], [ -69.716492, 45.647888 ], [ -69.715118, 45.648608 ], [ -69.714088, 45.648128 ], [ -69.713745, 45.647408 ], [ -69.713058, 45.647408 ], [ -69.712715, 45.648128 ], [ -69.713402, 45.648608 ], [ -69.714088, 45.650288 ], [ -69.711685, 45.650528 ], [ -69.710655, 45.649808 ], [ -69.709969, 45.649808 ], [ -69.707909, 45.648128 ], [ -69.707909, 45.647648 ], [ -69.706535, 45.646928 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.700012, 45.643568 ], [ -69.698982, 45.643088 ], [ -69.698296, 45.641888 ], [ -69.696579, 45.640688 ], [ -69.694176, 45.640928 ], [ -69.694176, 45.642128 ], [ -69.692802, 45.643088 ], [ -69.692116, 45.645488 ], [ -69.696236, 45.648368 ], [ -69.698639, 45.649328 ], [ -69.701042, 45.651728 ], [ -69.703445, 45.651968 ], [ -69.705162, 45.653168 ], [ -69.705505, 45.652688 ], [ -69.706192, 45.652688 ], [ -69.707565, 45.653648 ], [ -69.710312, 45.654368 ], [ -69.713058, 45.655808 ], [ -69.718895, 45.656048 ], [ -69.723015, 45.657728 ], [ -69.726105, 45.656528 ], [ -69.728165, 45.656528 ], [ -69.732285, 45.657248 ], [ -69.732971, 45.657728 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732628, 45.657008 ], [ -69.731941, 45.656528 ], [ -69.731941, 45.655808 ], [ -69.734001, 45.654368 ], [ -69.734001, 45.653648 ], [ -69.736061, 45.650768 ], [ -69.738808, 45.650768 ], [ -69.739494, 45.651488 ], [ -69.742584, 45.652208 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.652448 ], [ -69.744644, 45.653168 ], [ -69.743271, 45.653888 ], [ -69.742584, 45.655328 ], [ -69.741898, 45.655808 ], [ -69.741211, 45.655568 ], [ -69.741211, 45.656288 ], [ -69.740524, 45.656048 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657488 ], [ -69.741554, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.660607 ], [ -69.744644, 45.661087 ], [ -69.744987, 45.661807 ], [ -69.744301, 45.662047 ], [ -69.744644, 45.664206 ], [ -69.743958, 45.664446 ], [ -69.743958, 45.664926 ], [ -69.743271, 45.664926 ], [ -69.743271, 45.665406 ], [ -69.741554, 45.666846 ], [ -69.739494, 45.667325 ], [ -69.739494, 45.667805 ], [ -69.740524, 45.668045 ], [ -69.740524, 45.669485 ], [ -69.739838, 45.669725 ], [ -69.740181, 45.670204 ], [ -69.739494, 45.670444 ], [ -69.739494, 45.671164 ], [ -69.738808, 45.671644 ], [ -69.739151, 45.675242 ], [ -69.738121, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.737091, 45.676921 ], [ -69.738121, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738464, 45.676921 ], [ -69.738808, 45.679560 ], [ -69.740181, 45.679560 ], [ -69.741211, 45.680280 ], [ -69.745674, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.750481, 45.680520 ], [ -69.754601, 45.679560 ], [ -69.757004, 45.679800 ], [ -69.760094, 45.682678 ], [ -69.764557, 45.682438 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.684597 ], [ -69.769020, 45.684837 ], [ -69.769707, 45.684597 ], [ -69.773827, 45.686036 ], [ -69.775200, 45.687475 ], [ -69.774857, 45.687715 ], [ -69.776573, 45.687955 ], [ -69.777260, 45.688914 ], [ -69.778976, 45.689394 ], [ -69.779320, 45.690113 ], [ -69.781036, 45.689874 ], [ -69.783096, 45.690593 ], [ -69.783096, 45.691073 ], [ -69.785500, 45.692751 ], [ -69.785156, 45.697547 ], [ -69.786186, 45.698267 ], [ -69.785843, 45.699945 ], [ -69.787560, 45.701384 ], [ -69.789619, 45.702103 ], [ -69.789963, 45.703782 ], [ -69.790649, 45.704501 ], [ -69.790993, 45.706659 ], [ -69.790306, 45.710495 ], [ -69.792709, 45.711454 ], [ -69.793739, 45.712173 ], [ -69.793739, 45.712892 ], [ -69.796829, 45.713851 ], [ -69.797859, 45.715050 ], [ -69.803009, 45.715050 ], [ -69.805412, 45.716967 ], [ -69.805756, 45.720323 ], [ -69.806442, 45.720323 ], [ -69.806442, 45.721042 ], [ -69.808846, 45.722720 ], [ -69.810905, 45.722720 ], [ -69.812279, 45.721761 ], [ -69.813652, 45.722001 ], [ -69.815369, 45.721522 ], [ -69.813995, 45.722241 ], [ -69.811935, 45.722480 ], [ -69.810905, 45.723199 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722241 ], [ -69.807129, 45.722241 ], [ -69.806442, 45.721522 ], [ -69.805069, 45.721761 ], [ -69.804726, 45.720802 ], [ -69.803696, 45.720563 ], [ -69.803352, 45.721282 ], [ -69.804039, 45.721522 ], [ -69.804382, 45.722720 ], [ -69.803009, 45.723918 ], [ -69.801979, 45.723918 ], [ -69.801292, 45.723199 ], [ -69.799919, 45.722720 ], [ -69.799919, 45.724158 ], [ -69.799232, 45.724158 ], [ -69.798546, 45.725117 ], [ -69.797859, 45.725117 ], [ -69.797173, 45.724398 ], [ -69.795456, 45.724637 ], [ -69.795113, 45.725356 ], [ -69.792366, 45.725596 ], [ -69.791336, 45.726794 ], [ -69.791679, 45.728472 ], [ -69.794083, 45.728472 ], [ -69.796143, 45.730629 ], [ -69.797173, 45.730869 ], [ -69.799576, 45.732546 ], [ -69.799919, 45.733265 ], [ -69.805756, 45.733265 ], [ -69.807129, 45.732786 ], [ -69.809875, 45.733265 ], [ -69.810905, 45.734943 ], [ -69.812622, 45.735901 ], [ -69.812622, 45.736380 ], [ -69.810219, 45.736141 ], [ -69.811592, 45.736860 ], [ -69.811592, 45.737339 ], [ -69.819832, 45.739256 ], [ -69.820518, 45.739735 ], [ -69.820175, 45.740454 ], [ -69.821548, 45.740454 ], [ -69.824295, 45.742371 ], [ -69.826012, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827385, 45.739016 ], [ -69.827385, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.830132, 45.738058 ] ], [ [ -69.791679, 45.784045 ], [ -69.792366, 45.784045 ], [ -69.792366, 45.783806 ], [ -69.791679, 45.784045 ] ] ], [ [ [ -69.715118, 45.589777 ], [ -69.714432, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.715118, 45.589777 ] ] ], [ [ [ -69.797173, 45.783327 ], [ -69.797859, 45.783327 ], [ -69.797859, 45.784285 ], [ -69.798546, 45.784524 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.800262, 45.784524 ], [ -69.801292, 45.784764 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.802322, 45.785961 ], [ -69.801979, 45.786440 ], [ -69.801636, 45.785482 ], [ -69.797859, 45.784764 ], [ -69.797516, 45.784524 ], [ -69.797516, 45.785721 ], [ -69.796486, 45.785003 ], [ -69.796143, 45.785243 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.784285 ], [ -69.797173, 45.783327 ] ], [ [ -69.797516, 45.784524 ], [ -69.797173, 45.784285 ], [ -69.797173, 45.784045 ], [ -69.796829, 45.784285 ], [ -69.797516, 45.784524 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.707222, 45.854152 ], [ -69.708939, 45.854391 ], [ -69.709625, 45.854869 ], [ -69.709282, 45.855826 ], [ -69.711342, 45.856543 ], [ -69.712372, 45.859412 ], [ -69.711685, 45.860847 ], [ -69.713402, 45.861086 ], [ -69.715118, 45.862281 ], [ -69.716148, 45.863477 ], [ -69.716148, 45.864433 ], [ -69.717522, 45.865150 ], [ -69.717522, 45.865867 ], [ -69.720955, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.722672, 45.865628 ], [ -69.724388, 45.865628 ], [ -69.725075, 45.866106 ], [ -69.725075, 45.867063 ], [ -69.725761, 45.866824 ], [ -69.725761, 45.867302 ], [ -69.724388, 45.868019 ], [ -69.724731, 45.868975 ], [ -69.723701, 45.870888 ], [ -69.724388, 45.872083 ], [ -69.725075, 45.872083 ], [ -69.724731, 45.873995 ], [ -69.727135, 45.874712 ], [ -69.727135, 45.875907 ], [ -69.727478, 45.875429 ], [ -69.728165, 45.875429 ], [ -69.731255, 45.876863 ], [ -69.731941, 45.876624 ], [ -69.734001, 45.877103 ], [ -69.734688, 45.878776 ], [ -69.733658, 45.879254 ], [ -69.735031, 45.879493 ], [ -69.736061, 45.880210 ], [ -69.737778, 45.880210 ], [ -69.737778, 45.881166 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881644 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.882361 ], [ -69.738464, 45.883317 ], [ -69.737778, 45.883317 ], [ -69.736748, 45.882361 ], [ -69.737091, 45.880927 ], [ -69.735718, 45.881166 ], [ -69.735718, 45.880449 ], [ -69.733315, 45.880210 ], [ -69.732628, 45.879493 ], [ -69.732628, 45.878537 ], [ -69.731941, 45.878537 ], [ -69.730225, 45.879732 ], [ -69.727821, 45.879732 ], [ -69.727135, 45.880449 ], [ -69.725761, 45.880210 ], [ -69.724731, 45.879732 ], [ -69.723358, 45.879971 ], [ -69.723701, 45.880688 ], [ -69.723015, 45.881166 ], [ -69.720612, 45.881644 ], [ -69.719582, 45.882361 ], [ -69.717178, 45.882600 ], [ -69.716492, 45.883556 ], [ -69.712715, 45.883317 ], [ -69.712715, 45.884273 ], [ -69.712029, 45.884273 ], [ -69.711685, 45.884990 ], [ -69.709625, 45.885229 ], [ -69.709282, 45.885707 ], [ -69.707565, 45.885707 ], [ -69.705849, 45.884990 ], [ -69.704132, 45.885229 ], [ -69.703445, 45.885946 ], [ -69.702072, 45.886185 ], [ -69.699669, 45.885707 ], [ -69.698296, 45.885946 ], [ -69.697952, 45.885229 ], [ -69.698639, 45.884751 ], [ -69.698639, 45.880449 ], [ -69.701729, 45.879971 ], [ -69.701729, 45.879015 ], [ -69.702759, 45.878776 ], [ -69.702759, 45.876863 ], [ -69.702072, 45.876624 ], [ -69.702072, 45.875668 ], [ -69.701385, 45.875429 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.872561 ], [ -69.700356, 45.872083 ], [ -69.700356, 45.870888 ], [ -69.699326, 45.870410 ], [ -69.699326, 45.868736 ], [ -69.696922, 45.867541 ], [ -69.697266, 45.864433 ], [ -69.694176, 45.864194 ], [ -69.692116, 45.865150 ], [ -69.692116, 45.864672 ], [ -69.693489, 45.864194 ], [ -69.692802, 45.863238 ], [ -69.693146, 45.862520 ], [ -69.693832, 45.862520 ], [ -69.694176, 45.862042 ], [ -69.691429, 45.860847 ], [ -69.692116, 45.859173 ], [ -69.690399, 45.858934 ], [ -69.689369, 45.858217 ], [ -69.689369, 45.855108 ], [ -69.690399, 45.854391 ], [ -69.686966, 45.853913 ], [ -69.685936, 45.852956 ], [ -69.686279, 45.851760 ], [ -69.684219, 45.851760 ], [ -69.684219, 45.851282 ], [ -69.683533, 45.851043 ], [ -69.682503, 45.852239 ], [ -69.681816, 45.851760 ], [ -69.679413, 45.851760 ], [ -69.678383, 45.852000 ], [ -69.678040, 45.852956 ], [ -69.676323, 45.852956 ], [ -69.676666, 45.851521 ], [ -69.674606, 45.852239 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.855826 ], [ -69.673920, 45.856304 ], [ -69.674263, 45.857499 ], [ -69.672546, 45.858695 ], [ -69.672546, 45.859651 ], [ -69.673233, 45.859890 ], [ -69.673233, 45.860847 ], [ -69.673920, 45.861086 ], [ -69.674606, 45.862281 ], [ -69.673576, 45.861803 ], [ -69.673576, 45.862520 ], [ -69.672203, 45.862042 ], [ -69.671516, 45.861325 ], [ -69.670486, 45.861325 ], [ -69.670143, 45.860847 ], [ -69.668770, 45.861564 ], [ -69.667740, 45.861564 ], [ -69.667397, 45.862042 ], [ -69.664650, 45.862042 ], [ -69.663963, 45.861564 ], [ -69.664307, 45.860369 ], [ -69.662247, 45.860369 ], [ -69.662590, 45.861325 ], [ -69.661560, 45.860847 ], [ -69.660187, 45.861325 ], [ -69.659843, 45.860608 ], [ -69.659157, 45.860608 ], [ -69.659500, 45.861086 ], [ -69.658813, 45.861325 ], [ -69.658127, 45.860608 ], [ -69.656754, 45.860369 ], [ -69.656410, 45.860847 ], [ -69.657097, 45.861325 ], [ -69.657097, 45.862042 ], [ -69.655724, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.654694, 45.862281 ], [ -69.655380, 45.862759 ], [ -69.654007, 45.862998 ], [ -69.654007, 45.863955 ], [ -69.651260, 45.863716 ], [ -69.651260, 45.862998 ], [ -69.650230, 45.863477 ], [ -69.649200, 45.863477 ], [ -69.648514, 45.862998 ], [ -69.648170, 45.863716 ], [ -69.646797, 45.863238 ], [ -69.661560, 45.910555 ], [ -69.677696, 45.965231 ], [ -69.683876, 45.983842 ], [ -69.728851, 45.976924 ], [ -69.728851, 46.037969 ], [ -69.729538, 46.053697 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.092281 ], [ -68.878784, 46.092281 ], [ -68.878784, 45.676202 ], [ -68.906250, 45.671644 ], [ -68.959122, 45.662287 ], [ -68.950882, 45.638527 ], [ -68.951912, 45.580647 ], [ -68.964958, 45.512602 ], [ -68.906250, 45.520541 ], [ -68.878784, 45.524149 ], [ -68.878784, 45.225579 ], [ -68.881187, 45.225095 ], [ -68.878784, 45.217357 ], [ -68.878784, 45.140157 ], [ -68.906250, 45.136524 ], [ -68.998947, 45.123929 ], [ -69.044952, 45.116419 ], [ -69.118080, 45.106243 ], [ -69.126320, 45.104789 ], [ -69.154472, 45.101154 ], [ -69.204254, 45.093883 ], [ -69.242020, 45.089036 ], [ -69.385185, 45.069641 ], [ -69.637184, 45.069641 ], [ -69.642677, 45.089036 ], [ -69.645767, 45.101396 ], [ -69.655037, 45.100184 ], [ -69.682846, 45.195103 ], [ -69.687309, 45.208166 ], [ -69.683876, 45.212762 ], [ -69.700012, 45.261597 ], [ -69.702759, 45.268363 ], [ -69.705162, 45.276336 ], [ -69.708595, 45.291313 ], [ -69.700699, 45.292520 ], [ -69.732628, 45.389047 ], [ -69.748421, 45.441104 ], [ -69.766960, 45.499369 ], [ -69.780006, 45.542908 ], [ -69.773483, 45.545553 ], [ -69.773483, 45.546034 ], [ -69.774513, 45.546515 ], [ -69.775543, 45.549400 ], [ -69.775200, 45.553006 ], [ -69.773827, 45.554689 ], [ -69.772110, 45.554689 ], [ -69.770393, 45.553727 ], [ -69.768333, 45.553727 ], [ -69.764214, 45.554689 ], [ -69.760780, 45.554208 ], [ -69.756317, 45.556131 ], [ -69.754257, 45.557814 ], [ -69.752197, 45.557814 ], [ -69.749107, 45.559016 ], [ -69.748077, 45.560458 ], [ -69.744987, 45.560939 ], [ -69.743614, 45.562862 ], [ -69.741554, 45.563343 ], [ -69.740181, 45.564304 ], [ -69.738464, 45.564545 ], [ -69.737778, 45.565266 ], [ -69.735374, 45.565506 ], [ -69.731598, 45.566948 ], [ -69.730568, 45.568390 ], [ -69.729195, 45.569111 ], [ -69.728851, 45.570073 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.572476 ], [ -69.726791, 45.573918 ], [ -69.726791, 45.577042 ], [ -69.726105, 45.577523 ], [ -69.725761, 45.579205 ], [ -69.724045, 45.580647 ], [ -69.723701, 45.581848 ], [ -69.721985, 45.582809 ], [ -69.719925, 45.583049 ], [ -69.717178, 45.585212 ], [ -69.714775, 45.585452 ], [ -69.714775, 45.587615 ], [ -69.714088, 45.588576 ], [ -69.714432, 45.589777 ], [ -69.714432, 45.590017 ], [ -69.713745, 45.590017 ], [ -69.713745, 45.590978 ], [ -69.713058, 45.591699 ], [ -69.713402, 45.595303 ], [ -69.715118, 45.596984 ], [ -69.716492, 45.596744 ], [ -69.717865, 45.597465 ], [ -69.719238, 45.599386 ], [ -69.718895, 45.600347 ], [ -69.719925, 45.600828 ], [ -69.721298, 45.602749 ], [ -69.721298, 45.604190 ], [ -69.720612, 45.604190 ], [ -69.720268, 45.605151 ], [ -69.720955, 45.605872 ], [ -69.720955, 45.606832 ], [ -69.720268, 45.606832 ], [ -69.720268, 45.608033 ], [ -69.718208, 45.608033 ], [ -69.717522, 45.608514 ], [ -69.717522, 45.610915 ], [ -69.718552, 45.611876 ], [ -69.719582, 45.614758 ], [ -69.718895, 45.614518 ], [ -69.718895, 45.613557 ], [ -69.718208, 45.613317 ], [ -69.717522, 45.612116 ], [ -69.714775, 45.613077 ], [ -69.714088, 45.613077 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.612116 ], [ -69.713745, 45.612837 ], [ -69.712715, 45.613317 ], [ -69.712715, 45.614037 ], [ -69.712029, 45.614037 ], [ -69.711685, 45.613077 ], [ -69.710312, 45.613077 ], [ -69.709625, 45.613557 ], [ -69.709282, 45.615718 ], [ -69.708595, 45.616679 ], [ -69.706192, 45.618120 ], [ -69.705505, 45.618120 ], [ -69.704819, 45.618600 ], [ -69.704819, 45.619801 ], [ -69.703102, 45.620521 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.622202 ], [ -69.702759, 45.623883 ], [ -69.702759, 45.626764 ], [ -69.701729, 45.628204 ], [ -69.704819, 45.630605 ], [ -69.705505, 45.632046 ], [ -69.707222, 45.632766 ], [ -69.706879, 45.635647 ], [ -69.707909, 45.637327 ], [ -69.708939, 45.638047 ], [ -69.712029, 45.637807 ], [ -69.715118, 45.639968 ], [ -69.718552, 45.639968 ], [ -69.717522, 45.641888 ], [ -69.717522, 45.644048 ], [ -69.717178, 45.645728 ], [ -69.716492, 45.646208 ], [ -69.716492, 45.647888 ], [ -69.715118, 45.648608 ], [ -69.714088, 45.648128 ], [ -69.713745, 45.647408 ], [ -69.713058, 45.647408 ], [ -69.712715, 45.648128 ], [ -69.713402, 45.648608 ], [ -69.714088, 45.650288 ], [ -69.711685, 45.650528 ], [ -69.710655, 45.649808 ], [ -69.709969, 45.649808 ], [ -69.707909, 45.648128 ], [ -69.707909, 45.647648 ], [ -69.706535, 45.646928 ], [ -69.705505, 45.644768 ], [ -69.700699, 45.644768 ], [ -69.700012, 45.643568 ], [ -69.698982, 45.643088 ], [ -69.698296, 45.641888 ], [ -69.696579, 45.640688 ], [ -69.694176, 45.640928 ], [ -69.694176, 45.642128 ], [ -69.692802, 45.643088 ], [ -69.692116, 45.645488 ], [ -69.696236, 45.648368 ], [ -69.698639, 45.649328 ], [ -69.701042, 45.651728 ], [ -69.703445, 45.651968 ], [ -69.705162, 45.653168 ], [ -69.705505, 45.652688 ], [ -69.706192, 45.652688 ], [ -69.707565, 45.653648 ], [ -69.710312, 45.654368 ], [ -69.713058, 45.655808 ], [ -69.718895, 45.656048 ], [ -69.723015, 45.657728 ], [ -69.726105, 45.656528 ], [ -69.728165, 45.656528 ], [ -69.732285, 45.657248 ], [ -69.732971, 45.657728 ], [ -69.735031, 45.657728 ], [ -69.735031, 45.656768 ], [ -69.732628, 45.657008 ], [ -69.731941, 45.656528 ], [ -69.731941, 45.655808 ], [ -69.734001, 45.654368 ], [ -69.734001, 45.653648 ], [ -69.736061, 45.650768 ], [ -69.738808, 45.650768 ], [ -69.739494, 45.651488 ], [ -69.742584, 45.652208 ], [ -69.743958, 45.651968 ], [ -69.744644, 45.652448 ], [ -69.744644, 45.653168 ], [ -69.743271, 45.653888 ], [ -69.742584, 45.655328 ], [ -69.741898, 45.655808 ], [ -69.741211, 45.655568 ], [ -69.741211, 45.656288 ], [ -69.740524, 45.656048 ], [ -69.739838, 45.656768 ], [ -69.739838, 45.657488 ], [ -69.741554, 45.657728 ], [ -69.741211, 45.660127 ], [ -69.741898, 45.660607 ], [ -69.744644, 45.661087 ], [ -69.744987, 45.661807 ], [ -69.744301, 45.662047 ], [ -69.744644, 45.664206 ], [ -69.743958, 45.664446 ], [ -69.743958, 45.664926 ], [ -69.743271, 45.664926 ], [ -69.743271, 45.665406 ], [ -69.741554, 45.666846 ], [ -69.739494, 45.667325 ], [ -69.739494, 45.667805 ], [ -69.740524, 45.668045 ], [ -69.740524, 45.669485 ], [ -69.739838, 45.669725 ], [ -69.740181, 45.670204 ], [ -69.739494, 45.670444 ], [ -69.739494, 45.671164 ], [ -69.738808, 45.671644 ], [ -69.739151, 45.675242 ], [ -69.738121, 45.675482 ], [ -69.737091, 45.676442 ], [ -69.737091, 45.676921 ], [ -69.738121, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738464, 45.676921 ], [ -69.738808, 45.679560 ], [ -69.740181, 45.679560 ], [ -69.741211, 45.680280 ], [ -69.745674, 45.681239 ], [ -69.749451, 45.681239 ], [ -69.750481, 45.680520 ], [ -69.754601, 45.679560 ], [ -69.757004, 45.679800 ], [ -69.760094, 45.682678 ], [ -69.764557, 45.682438 ], [ -69.767990, 45.683638 ], [ -69.769363, 45.684597 ], [ -69.769707, 45.684597 ], [ -69.773827, 45.686036 ], [ -69.775200, 45.687475 ], [ -69.774857, 45.687715 ], [ -69.776573, 45.687955 ], [ -69.777260, 45.688914 ], [ -69.778976, 45.689394 ], [ -69.779320, 45.690113 ], [ -69.781036, 45.689874 ], [ -69.783096, 45.690593 ], [ -69.783096, 45.691073 ], [ -69.785500, 45.692751 ], [ -69.785156, 45.697547 ], [ -69.786186, 45.698267 ], [ -69.785843, 45.699945 ], [ -69.787560, 45.701384 ], [ -69.789619, 45.702103 ], [ -69.789963, 45.703782 ], [ -69.790649, 45.704501 ], [ -69.790993, 45.706659 ], [ -69.790306, 45.710495 ], [ -69.792709, 45.711454 ], [ -69.793739, 45.712173 ], [ -69.793739, 45.712892 ], [ -69.796829, 45.713851 ], [ -69.797859, 45.715050 ], [ -69.803009, 45.715050 ], [ -69.805412, 45.716967 ], [ -69.805756, 45.720323 ], [ -69.806442, 45.720323 ], [ -69.806442, 45.721042 ], [ -69.807816, 45.722241 ], [ -69.807129, 45.722241 ], [ -69.806442, 45.721522 ], [ -69.805069, 45.721761 ], [ -69.804726, 45.720802 ], [ -69.803696, 45.720563 ], [ -69.803352, 45.721282 ], [ -69.804039, 45.721522 ], [ -69.804382, 45.722720 ], [ -69.803009, 45.723918 ], [ -69.801979, 45.723918 ], [ -69.801292, 45.723199 ], [ -69.799919, 45.722720 ], [ -69.799919, 45.724158 ], [ -69.799232, 45.724158 ], [ -69.798546, 45.725117 ], [ -69.797859, 45.725117 ], [ -69.797173, 45.724398 ], [ -69.795456, 45.724637 ], [ -69.795113, 45.725356 ], [ -69.792366, 45.725596 ], [ -69.791336, 45.726794 ], [ -69.791679, 45.728472 ], [ -69.794083, 45.728472 ], [ -69.796143, 45.730629 ], [ -69.797173, 45.730869 ], [ -69.799576, 45.732546 ], [ -69.799919, 45.733265 ], [ -69.805756, 45.733265 ], [ -69.807129, 45.732786 ], [ -69.809875, 45.733265 ], [ -69.810905, 45.734943 ], [ -69.812622, 45.735901 ], [ -69.812622, 45.736380 ], [ -69.810219, 45.736141 ], [ -69.811592, 45.736860 ], [ -69.811592, 45.737339 ], [ -69.819832, 45.739256 ], [ -69.820518, 45.739735 ], [ -69.820175, 45.740454 ], [ -69.821548, 45.740454 ], [ -69.824295, 45.742371 ], [ -69.826012, 45.741173 ], [ -69.825668, 45.739735 ], [ -69.827385, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.828072, 45.739016 ], [ -69.830132, 45.738058 ], [ -69.833221, 45.738537 ], [ -69.832878, 45.739016 ], [ -69.830132, 45.738777 ], [ -69.827042, 45.739975 ], [ -69.826355, 45.741891 ], [ -69.825325, 45.742371 ], [ -69.825325, 45.743089 ], [ -69.823952, 45.743808 ], [ -69.822578, 45.743569 ], [ -69.821892, 45.745006 ], [ -69.819489, 45.745725 ], [ -69.817429, 45.747162 ], [ -69.817085, 45.746683 ], [ -69.815369, 45.747162 ], [ -69.812622, 45.747162 ], [ -69.812965, 45.745965 ], [ -69.812279, 45.745965 ], [ -69.810219, 45.746444 ], [ -69.809189, 45.747162 ], [ -69.806442, 45.747642 ], [ -69.805412, 45.748600 ], [ -69.803696, 45.749079 ], [ -69.801292, 45.749079 ], [ -69.800262, 45.748600 ], [ -69.800262, 45.747881 ], [ -69.798546, 45.747642 ], [ -69.798203, 45.746683 ], [ -69.796486, 45.746204 ], [ -69.793739, 45.746204 ], [ -69.793053, 45.745725 ], [ -69.789963, 45.746683 ], [ -69.789963, 45.747162 ], [ -69.788246, 45.746923 ], [ -69.788246, 45.747402 ], [ -69.789619, 45.747881 ], [ -69.789619, 45.748600 ], [ -69.788589, 45.749079 ], [ -69.788589, 45.749558 ], [ -69.789619, 45.750037 ], [ -69.790993, 45.750037 ], [ -69.791679, 45.750516 ], [ -69.791336, 45.750756 ], [ -69.792366, 45.751235 ], [ -69.791679, 45.753152 ], [ -69.789963, 45.754349 ], [ -69.789963, 45.755787 ], [ -69.792366, 45.756266 ], [ -69.792709, 45.756984 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.757942 ], [ -69.791679, 45.758422 ], [ -69.793396, 45.758901 ], [ -69.793396, 45.759619 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.762014 ], [ -69.792709, 45.763691 ], [ -69.791336, 45.763691 ], [ -69.791336, 45.764409 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.765846 ], [ -69.789963, 45.766565 ], [ -69.790649, 45.767762 ], [ -69.788933, 45.768960 ], [ -69.787560, 45.768960 ], [ -69.786873, 45.768481 ], [ -69.784813, 45.769439 ], [ -69.782410, 45.769678 ], [ -69.782753, 45.770876 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.772552 ], [ -69.781723, 45.773989 ], [ -69.784126, 45.773031 ], [ -69.784813, 45.774468 ], [ -69.783440, 45.774468 ], [ -69.782753, 45.774947 ], [ -69.784813, 45.775905 ], [ -69.786186, 45.775905 ], [ -69.786186, 45.774947 ], [ -69.787903, 45.774947 ], [ -69.787560, 45.776862 ], [ -69.788933, 45.776862 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.777820 ], [ -69.789619, 45.777820 ], [ -69.789619, 45.778299 ], [ -69.788246, 45.777820 ], [ -69.788246, 45.779257 ], [ -69.787216, 45.779736 ], [ -69.786873, 45.780933 ], [ -69.784813, 45.780933 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.783327 ], [ -69.785500, 45.783327 ], [ -69.785843, 45.783806 ], [ -69.787560, 45.783567 ], [ -69.787560, 45.784045 ], [ -69.788246, 45.784045 ], [ -69.788246, 45.782848 ], [ -69.789963, 45.783806 ], [ -69.792023, 45.783567 ], [ -69.792366, 45.783806 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.784764 ], [ -69.792023, 45.785482 ], [ -69.791336, 45.784285 ], [ -69.790993, 45.784524 ], [ -69.789276, 45.783806 ], [ -69.788589, 45.783806 ], [ -69.788246, 45.785003 ], [ -69.786530, 45.785003 ], [ -69.785156, 45.785482 ], [ -69.784126, 45.784764 ], [ -69.784470, 45.784045 ], [ -69.783440, 45.785003 ], [ -69.783440, 45.784285 ], [ -69.784126, 45.783806 ], [ -69.783096, 45.783567 ], [ -69.783096, 45.782848 ], [ -69.782066, 45.782848 ], [ -69.781723, 45.781891 ], [ -69.782410, 45.781172 ], [ -69.783783, 45.781651 ], [ -69.784126, 45.780454 ], [ -69.785500, 45.779496 ], [ -69.786186, 45.779975 ], [ -69.786186, 45.779017 ], [ -69.785500, 45.779017 ], [ -69.785156, 45.778539 ], [ -69.785156, 45.777102 ], [ -69.783783, 45.776862 ], [ -69.782753, 45.778539 ], [ -69.781723, 45.778539 ], [ -69.780693, 45.777341 ], [ -69.780693, 45.776623 ], [ -69.782066, 45.775665 ], [ -69.781036, 45.775665 ], [ -69.780350, 45.773989 ], [ -69.779320, 45.773270 ], [ -69.779320, 45.772313 ], [ -69.777260, 45.770876 ], [ -69.776573, 45.767762 ], [ -69.775543, 45.767523 ], [ -69.775887, 45.767044 ], [ -69.773827, 45.766086 ], [ -69.774513, 45.764888 ], [ -69.772797, 45.765128 ], [ -69.771423, 45.764409 ], [ -69.771080, 45.763451 ], [ -69.767990, 45.762972 ], [ -69.767990, 45.762014 ], [ -69.768677, 45.762014 ], [ -69.769020, 45.761535 ], [ -69.762154, 45.761296 ], [ -69.761124, 45.762014 ], [ -69.760437, 45.761775 ], [ -69.760094, 45.762254 ], [ -69.759064, 45.762254 ], [ -69.758034, 45.761535 ], [ -69.752884, 45.761775 ], [ -69.750481, 45.763451 ], [ -69.751854, 45.765846 ], [ -69.751511, 45.766086 ], [ -69.750137, 45.764649 ], [ -69.749794, 45.763212 ], [ -69.749107, 45.763212 ], [ -69.747391, 45.761535 ], [ -69.747391, 45.759859 ], [ -69.746361, 45.759859 ], [ -69.746017, 45.760338 ], [ -69.743958, 45.760098 ], [ -69.742241, 45.758182 ], [ -69.742584, 45.757224 ], [ -69.741211, 45.756745 ], [ -69.741211, 45.755547 ], [ -69.739494, 45.755547 ], [ -69.736748, 45.754828 ], [ -69.734001, 45.755308 ], [ -69.733315, 45.756026 ], [ -69.732628, 45.756026 ], [ -69.731598, 45.757942 ], [ -69.729881, 45.759140 ], [ -69.729881, 45.760338 ], [ -69.727821, 45.761056 ], [ -69.727821, 45.761535 ], [ -69.726448, 45.762254 ], [ -69.724731, 45.765846 ], [ -69.725761, 45.771594 ], [ -69.727135, 45.772313 ], [ -69.727821, 45.773270 ], [ -69.728165, 45.775186 ], [ -69.728851, 45.775186 ], [ -69.729881, 45.776383 ], [ -69.731255, 45.776623 ], [ -69.736404, 45.779496 ], [ -69.735718, 45.780454 ], [ -69.737091, 45.780933 ], [ -69.738121, 45.782130 ], [ -69.738121, 45.782848 ], [ -69.734001, 45.783088 ], [ -69.733315, 45.783567 ], [ -69.731598, 45.783567 ], [ -69.730911, 45.783088 ], [ -69.726791, 45.783088 ], [ -69.725418, 45.783806 ], [ -69.724045, 45.783806 ], [ -69.723015, 45.783327 ], [ -69.723358, 45.785961 ], [ -69.722328, 45.787397 ], [ -69.720612, 45.788355 ], [ -69.720612, 45.790031 ], [ -69.719238, 45.791228 ], [ -69.719238, 45.794818 ], [ -69.718208, 45.796015 ], [ -69.718208, 45.797691 ], [ -69.717178, 45.798409 ], [ -69.717522, 45.798888 ], [ -69.716835, 45.798888 ], [ -69.716148, 45.800802 ], [ -69.714432, 45.801760 ], [ -69.713745, 45.804871 ], [ -69.713058, 45.805350 ], [ -69.712715, 45.806547 ], [ -69.712029, 45.806786 ], [ -69.710999, 45.808940 ], [ -69.708939, 45.810854 ], [ -69.708939, 45.812290 ], [ -69.709969, 45.814444 ], [ -69.709625, 45.815401 ], [ -69.710655, 45.815879 ], [ -69.711342, 45.817076 ], [ -69.710999, 45.817554 ], [ -69.711685, 45.817794 ], [ -69.712715, 45.819469 ], [ -69.712715, 45.823297 ], [ -69.713402, 45.823536 ], [ -69.714088, 45.824971 ], [ -69.715462, 45.825928 ], [ -69.716492, 45.829038 ], [ -69.718552, 45.829756 ], [ -69.718208, 45.831670 ], [ -69.719582, 45.834062 ], [ -69.720955, 45.834301 ], [ -69.723015, 45.833344 ], [ -69.724388, 45.833344 ], [ -69.725418, 45.833584 ], [ -69.726105, 45.834540 ], [ -69.725075, 45.834062 ], [ -69.723015, 45.834062 ], [ -69.721642, 45.835019 ], [ -69.719925, 45.835019 ], [ -69.718552, 45.834062 ], [ -69.717522, 45.834540 ], [ -69.718208, 45.833344 ], [ -69.715118, 45.831909 ], [ -69.712029, 45.832388 ], [ -69.712029, 45.833823 ], [ -69.710999, 45.834062 ], [ -69.709625, 45.835976 ], [ -69.708252, 45.836693 ], [ -69.708939, 45.836932 ], [ -69.708939, 45.837889 ], [ -69.708252, 45.838128 ], [ -69.707565, 45.839324 ], [ -69.707222, 45.842673 ], [ -69.706535, 45.843151 ], [ -69.706535, 45.843869 ], [ -69.705505, 45.844347 ], [ -69.705505, 45.845543 ], [ -69.704475, 45.846260 ], [ -69.705162, 45.846739 ], [ -69.706879, 45.846499 ], [ -69.707909, 45.846978 ], [ -69.707909, 45.849130 ], [ -69.708595, 45.850565 ], [ -69.706879, 45.852956 ], [ -69.706192, 45.853195 ], [ -69.705849, 45.854152 ], [ -69.707222, 45.854152 ] ], [ [ -69.792366, 45.783806 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.784045 ], [ -69.792366, 45.783806 ] ] ], [ [ [ -69.714432, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.715118, 45.589777 ], [ -69.714432, 45.589777 ] ] ], [ [ [ -69.807816, 45.722241 ], [ -69.808846, 45.722720 ], [ -69.810905, 45.722720 ], [ -69.812279, 45.721761 ], [ -69.813652, 45.722001 ], [ -69.815369, 45.721522 ], [ -69.813995, 45.722241 ], [ -69.811935, 45.722480 ], [ -69.810905, 45.723199 ], [ -69.808502, 45.723439 ], [ -69.807816, 45.722241 ] ] ], [ [ [ -69.797859, 45.784764 ], [ -69.797516, 45.784524 ], [ -69.797516, 45.785721 ], [ -69.796486, 45.785003 ], [ -69.796143, 45.785482 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.784285 ], [ -69.797173, 45.783327 ], [ -69.797859, 45.783327 ], [ -69.797859, 45.784285 ], [ -69.798546, 45.784524 ], [ -69.798889, 45.783806 ], [ -69.800262, 45.783806 ], [ -69.800262, 45.784524 ], [ -69.801292, 45.784764 ], [ -69.797859, 45.784764 ] ], [ [ -69.797173, 45.784285 ], [ -69.797516, 45.783567 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784285 ] ] ], [ [ [ -69.795799, 45.784285 ], [ -69.795456, 45.783806 ], [ -69.794083, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.793053, 45.783327 ], [ -69.793053, 45.783088 ], [ -69.794083, 45.782848 ], [ -69.795456, 45.783567 ], [ -69.796486, 45.783327 ], [ -69.795799, 45.784285 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785243 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.801636, 45.785482 ], [ -69.802322, 45.785961 ], [ -69.801979, 45.786440 ], [ -69.801636, 45.785482 ] ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ] ] ], [ [ [ -69.797516, 45.784524 ], [ -69.796829, 45.784285 ], [ -69.797173, 45.784045 ], [ -69.797173, 45.784285 ], [ -69.797516, 45.784524 ] ] ], [ [ [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792709, 45.783806 ], [ -69.792366, 45.784045 ] ] ], [ [ [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793053, 45.783088 ], [ -69.792366, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.790649, 45.764649 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.794769, 45.757703 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.738058 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769020, 45.684837 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.338249, 45.161222 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ], [ -69.724731, 45.879493 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875668 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.706535, 45.854630 ], [ -69.706879, 45.854152 ], [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805350 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.784764 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ] ], [ [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ] ], [ [ -69.796143, 45.785243 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785243 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.705849, 45.854152 ], [ -69.706192, 45.853195 ], [ -69.706879, 45.852956 ], [ -69.708595, 45.850565 ], [ -69.707909, 45.849130 ], [ -69.707909, 45.846978 ], [ -69.706879, 45.846499 ], [ -69.705162, 45.846739 ], [ -69.704475, 45.846260 ], [ -69.705505, 45.845543 ], [ -69.705505, 45.844347 ], [ -69.706535, 45.843869 ], [ -69.706535, 45.843151 ], [ -69.707222, 45.842673 ], [ -69.707565, 45.839324 ], [ -69.708252, 45.838128 ], [ -69.708939, 45.837889 ], [ -69.708939, 45.836932 ], [ -69.708252, 45.836693 ], [ -69.709625, 45.835976 ], [ -69.710999, 45.834062 ], [ -69.712029, 45.833823 ], [ -69.712029, 45.832388 ], [ -69.715118, 45.831909 ], [ -69.718208, 45.833344 ], [ -69.717522, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.721642, 45.835019 ], [ -69.723015, 45.834062 ], [ -69.725075, 45.834062 ], [ -69.726105, 45.834540 ], [ -69.725761, 45.833823 ], [ -69.724388, 45.833344 ], [ -69.723015, 45.833344 ], [ -69.720955, 45.834301 ], [ -69.719582, 45.834062 ], [ -69.718208, 45.831670 ], [ -69.718552, 45.829756 ], [ -69.716492, 45.829038 ], [ -69.715462, 45.825928 ], [ -69.714088, 45.824971 ], [ -69.713402, 45.823536 ], [ -69.712715, 45.823297 ], [ -69.712715, 45.819469 ], [ -69.711685, 45.817794 ], [ -69.710999, 45.817554 ], [ -69.711342, 45.817076 ], [ -69.710655, 45.815879 ], [ -69.709625, 45.815401 ], [ -69.709969, 45.814444 ], [ -69.708939, 45.812290 ], [ -69.708939, 45.810854 ], [ -69.710999, 45.808940 ], [ -69.712029, 45.806786 ], [ -69.712715, 45.806547 ], [ -69.713058, 45.805350 ], [ -69.713745, 45.804871 ], [ -69.714432, 45.801760 ], [ -69.716148, 45.800802 ], [ -69.716835, 45.798888 ], [ -69.717522, 45.798888 ], [ -69.717178, 45.798409 ], [ -69.718208, 45.797691 ], [ -69.718208, 45.796015 ], [ -69.719238, 45.794818 ], [ -69.719238, 45.791228 ], [ -69.720612, 45.790031 ], [ -69.720612, 45.788355 ], [ -69.722328, 45.787397 ], [ -69.723358, 45.785961 ], [ -69.723015, 45.783327 ], [ -69.724045, 45.783806 ], [ -69.725418, 45.783806 ], [ -69.726791, 45.783088 ], [ -69.730911, 45.783088 ], [ -69.731598, 45.783567 ], [ -69.733315, 45.783567 ], [ -69.734001, 45.783088 ], [ -69.738121, 45.782848 ], [ -69.738121, 45.782130 ], [ -69.737091, 45.780933 ], [ -69.735718, 45.780454 ], [ -69.736404, 45.779496 ], [ -69.731255, 45.776623 ], [ -69.729881, 45.776383 ], [ -69.728851, 45.775186 ], [ -69.728165, 45.775186 ], [ -69.727821, 45.773270 ], [ -69.727135, 45.772313 ], [ -69.725761, 45.771594 ], [ -69.724731, 45.765846 ], [ -69.726448, 45.762254 ], [ -69.727821, 45.761535 ], [ -69.727821, 45.761056 ], [ -69.729881, 45.760338 ], [ -69.729881, 45.759140 ], [ -69.731598, 45.757942 ], [ -69.732628, 45.756026 ], [ -69.733315, 45.756026 ], [ -69.734001, 45.755308 ], [ -69.736748, 45.754828 ], [ -69.739494, 45.755547 ], [ -69.741211, 45.755547 ], [ -69.741211, 45.756745 ], [ -69.742584, 45.757224 ], [ -69.742241, 45.758182 ], [ -69.743958, 45.760098 ], [ -69.746017, 45.760338 ], [ -69.746361, 45.759859 ], [ -69.747391, 45.759859 ], [ -69.747391, 45.761535 ], [ -69.748421, 45.762733 ], [ -69.749794, 45.763212 ], [ -69.750137, 45.764649 ], [ -69.751511, 45.766086 ], [ -69.751854, 45.765846 ], [ -69.750481, 45.763451 ], [ -69.752884, 45.761775 ], [ -69.758034, 45.761535 ], [ -69.759064, 45.762254 ], [ -69.760094, 45.762254 ], [ -69.760437, 45.761775 ], [ -69.761124, 45.762014 ], [ -69.762154, 45.761296 ], [ -69.769020, 45.761535 ], [ -69.768677, 45.762014 ], [ -69.767990, 45.762014 ], [ -69.767990, 45.762972 ], [ -69.771080, 45.763451 ], [ -69.771423, 45.764409 ], [ -69.772797, 45.765128 ], [ -69.774513, 45.764888 ], [ -69.773827, 45.766086 ], [ -69.775887, 45.767044 ], [ -69.775543, 45.767523 ], [ -69.776573, 45.767762 ], [ -69.777260, 45.770876 ], [ -69.779320, 45.772313 ], [ -69.779320, 45.773270 ], [ -69.780006, 45.773510 ], [ -69.781036, 45.775665 ], [ -69.782066, 45.775665 ], [ -69.780693, 45.776623 ], [ -69.780693, 45.777341 ], [ -69.781723, 45.778539 ], [ -69.782753, 45.778539 ], [ -69.783783, 45.776862 ], [ -69.785156, 45.777102 ], [ -69.785156, 45.778539 ], [ -69.785500, 45.779017 ], [ -69.786186, 45.779017 ], [ -69.786186, 45.779975 ], [ -69.785500, 45.779496 ], [ -69.784126, 45.780454 ], [ -69.783783, 45.781651 ], [ -69.782410, 45.781172 ], [ -69.781723, 45.781891 ], [ -69.782066, 45.782848 ], [ -69.783096, 45.782848 ], [ -69.783096, 45.783567 ], [ -69.784126, 45.783806 ], [ -69.783440, 45.784285 ], [ -69.783440, 45.785003 ], [ -69.784126, 45.784045 ], [ -69.784126, 45.784764 ], [ -69.785156, 45.785482 ], [ -69.786530, 45.785003 ], [ -69.788246, 45.785003 ], [ -69.788589, 45.783806 ], [ -69.789276, 45.783806 ], [ -69.790993, 45.784524 ], [ -69.791336, 45.784285 ], [ -69.792023, 45.785482 ], [ -69.792709, 45.785243 ], [ -69.792709, 45.783806 ], [ -69.789963, 45.783806 ], [ -69.788246, 45.782848 ], [ -69.788246, 45.784045 ], [ -69.787560, 45.784045 ], [ -69.787560, 45.783567 ], [ -69.785843, 45.783806 ], [ -69.785500, 45.783327 ], [ -69.784813, 45.783327 ], [ -69.784470, 45.782609 ], [ -69.784813, 45.780933 ], [ -69.786873, 45.780933 ], [ -69.787216, 45.779736 ], [ -69.788246, 45.779257 ], [ -69.788246, 45.777820 ], [ -69.788933, 45.778299 ], [ -69.789619, 45.778299 ], [ -69.789619, 45.777820 ], [ -69.788933, 45.777820 ], [ -69.788589, 45.777341 ], [ -69.788933, 45.776862 ], [ -69.787560, 45.776862 ], [ -69.787903, 45.774947 ], [ -69.786186, 45.774947 ], [ -69.786186, 45.775905 ], [ -69.784813, 45.775905 ], [ -69.782753, 45.774947 ], [ -69.783440, 45.774468 ], [ -69.784813, 45.774468 ], [ -69.784126, 45.773031 ], [ -69.781723, 45.773989 ], [ -69.782066, 45.773031 ], [ -69.784126, 45.772313 ], [ -69.782753, 45.770876 ], [ -69.782410, 45.769678 ], [ -69.784813, 45.769439 ], [ -69.786873, 45.768481 ], [ -69.787560, 45.768960 ], [ -69.788933, 45.768960 ], [ -69.790649, 45.767762 ], [ -69.789963, 45.766565 ], [ -69.791336, 45.765846 ], [ -69.791679, 45.764409 ], [ -69.791336, 45.764409 ], [ -69.791336, 45.763691 ], [ -69.792709, 45.763691 ], [ -69.793396, 45.762014 ], [ -69.792366, 45.760338 ], [ -69.792366, 45.759859 ], [ -69.793396, 45.759619 ], [ -69.793396, 45.758901 ], [ -69.791679, 45.758422 ], [ -69.792709, 45.757942 ], [ -69.793053, 45.757224 ], [ -69.792709, 45.756984 ], [ -69.792366, 45.756266 ], [ -69.789963, 45.755787 ], [ -69.789963, 45.754349 ], [ -69.791679, 45.753152 ], [ -69.792366, 45.751235 ], [ -69.791336, 45.750756 ], [ -69.791679, 45.750516 ], [ -69.790993, 45.750037 ], [ -69.789619, 45.750037 ], [ -69.788589, 45.749558 ], [ -69.788589, 45.749079 ], [ -69.789619, 45.748600 ], [ -69.789619, 45.747881 ], [ -69.788933, 45.747881 ], [ -69.788246, 45.746923 ], [ -69.789963, 45.747162 ], [ -69.789963, 45.746683 ], [ -69.793053, 45.745725 ], [ -69.793739, 45.746204 ], [ -69.796486, 45.746204 ], [ -69.798203, 45.746683 ], [ -69.798546, 45.747642 ], [ -69.800262, 45.747881 ], [ -69.800262, 45.748600 ], [ -69.801292, 45.749079 ], [ -69.803696, 45.749079 ], [ -69.805412, 45.748600 ], [ -69.806442, 45.747642 ], [ -69.809189, 45.747162 ], [ -69.810219, 45.746444 ], [ -69.812279, 45.745965 ], [ -69.812965, 45.745965 ], [ -69.812622, 45.747162 ], [ -69.815369, 45.747162 ], [ -69.816399, 45.746683 ], [ -69.817085, 45.746683 ], [ -69.817429, 45.747162 ], [ -69.819489, 45.745725 ], [ -69.821548, 45.745246 ], [ -69.822578, 45.743569 ], [ -69.823952, 45.743808 ], [ -69.825325, 45.743089 ], [ -69.825325, 45.742371 ], [ -69.826355, 45.741891 ], [ -69.827042, 45.739975 ], [ -69.830132, 45.738777 ], [ -69.832878, 45.739016 ], [ -69.833221, 45.738537 ], [ -69.830132, 45.738058 ], [ -69.828072, 45.739016 ], [ -69.827385, 45.737818 ], [ -69.827385, 45.739016 ], [ -69.825668, 45.739735 ], [ -69.826012, 45.741173 ], [ -69.824295, 45.742371 ], [ -69.821548, 45.740454 ], [ -69.820175, 45.740454 ], [ -69.820518, 45.739735 ], [ -69.819832, 45.739256 ], [ -69.811592, 45.737339 ], [ -69.811592, 45.736860 ], [ -69.810219, 45.736141 ], [ -69.812622, 45.736380 ], [ -69.812622, 45.735901 ], [ -69.810905, 45.734943 ], [ -69.809875, 45.733265 ], [ -69.808502, 45.732786 ], [ -69.805756, 45.733265 ], [ -69.799919, 45.733265 ], [ -69.799576, 45.732546 ], [ -69.797173, 45.730869 ], [ -69.796143, 45.730629 ], [ -69.794083, 45.728472 ], [ -69.791679, 45.728472 ], [ -69.791336, 45.726794 ], [ -69.792366, 45.725596 ], [ -69.795113, 45.725356 ], [ -69.795456, 45.724637 ], [ -69.797173, 45.724398 ], [ -69.797859, 45.725117 ], [ -69.798546, 45.725117 ], [ -69.798889, 45.724398 ], [ -69.799919, 45.724158 ], [ -69.799919, 45.722720 ], [ -69.801292, 45.723199 ], [ -69.801979, 45.723918 ], [ -69.803009, 45.723918 ], [ -69.804382, 45.722720 ], [ -69.804382, 45.722001 ], [ -69.803352, 45.721282 ], [ -69.803696, 45.720563 ], [ -69.804726, 45.720802 ], [ -69.805069, 45.721761 ], [ -69.806442, 45.721522 ], [ -69.807129, 45.722241 ], [ -69.807816, 45.722241 ], [ -69.806442, 45.721042 ], [ -69.806442, 45.720323 ], [ -69.805756, 45.720323 ], [ -69.805412, 45.716967 ], [ -69.803009, 45.715050 ], [ -69.797859, 45.715050 ], [ -69.796829, 45.713851 ], [ -69.793739, 45.712892 ], [ -69.793739, 45.712173 ], [ -69.790306, 45.710495 ], [ -69.790993, 45.706659 ], [ -69.790649, 45.704501 ], [ -69.789963, 45.703782 ], [ -69.789619, 45.702103 ], [ -69.787560, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.786186, 45.698267 ], [ -69.785156, 45.697547 ], [ -69.785500, 45.692751 ], [ -69.783096, 45.691073 ], [ -69.783096, 45.690593 ], [ -69.781036, 45.689874 ], [ -69.779320, 45.690113 ], [ -69.778976, 45.689394 ], [ -69.777260, 45.688914 ], [ -69.776573, 45.687955 ], [ -69.774857, 45.687715 ], [ -69.775200, 45.687475 ], [ -69.773827, 45.686036 ], [ -69.769707, 45.684597 ], [ -69.769363, 45.684597 ], [ -69.767990, 45.683638 ], [ -69.764557, 45.682438 ], [ -69.760094, 45.682678 ], [ -69.757004, 45.679800 ], [ -69.754601, 45.679560 ], [ -69.750481, 45.680520 ], [ -69.749451, 45.681239 ], [ -69.745674, 45.681239 ], [ -69.741211, 45.680280 ], [ -69.740181, 45.679560 ], [ -69.738808, 45.679560 ], [ -69.738464, 45.676921 ], [ -69.737434, 45.677881 ], [ -69.738121, 45.676921 ], [ -69.737091, 45.676921 ], [ -69.737091, 45.676442 ], [ -69.738121, 45.675482 ], [ -69.739151, 45.675242 ], [ -69.738808, 45.671644 ], [ -69.739494, 45.671164 ], [ -69.739494, 45.670444 ], [ -69.740181, 45.670204 ], [ -69.739838, 45.669725 ], [ -69.740524, 45.669485 ], [ -69.740524, 45.668045 ], [ -69.739838, 45.668045 ], [ -69.739494, 45.667325 ], [ -69.741554, 45.666846 ], [ -69.743271, 45.665406 ], [ -69.743271, 45.664926 ], [ -69.743958, 45.664926 ], [ -69.743958, 45.664446 ], [ -69.744644, 45.664206 ], [ -69.744301, 45.662047 ], [ -69.744987, 45.661807 ], [ -69.744644, 45.661087 ], [ -69.741898, 45.660607 ], [ -69.741211, 45.660127 ], [ -69.741554, 45.657728 ], [ -69.739838, 45.657488 ], [ -69.739838, 45.656768 ], [ -69.740524, 45.656048 ], [ -69.741211, 45.656288 ], [ -69.741211, 45.655568 ], [ -69.741898, 45.655808 ], [ -69.742584, 45.655328 ], [ -69.743271, 45.653888 ], [ -69.744644, 45.653168 ], [ -69.744644, 45.652448 ], [ -69.743958, 45.651968 ], [ -69.742584, 45.652208 ], [ -69.739494, 45.651488 ], [ -69.738808, 45.650768 ], [ -69.736061, 45.650768 ], [ -69.735374, 45.651248 ], [ -69.734001, 45.654368 ], [ -69.731941, 45.655808 ], [ -69.731941, 45.656528 ], [ -69.732628, 45.657008 ], [ -69.735031, 45.656768 ], [ -69.735031, 45.657728 ], [ -69.732971, 45.657728 ], [ -69.732285, 45.657248 ], [ -69.728165, 45.656528 ], [ -69.726105, 45.656528 ], [ -69.723015, 45.657728 ], [ -69.718895, 45.656048 ], [ -69.713058, 45.655808 ], [ -69.710312, 45.654368 ], [ -69.707565, 45.653648 ], [ -69.706192, 45.652688 ], [ -69.705505, 45.652688 ], [ -69.705162, 45.653168 ], [ -69.703445, 45.651968 ], [ -69.701042, 45.651728 ], [ -69.699669, 45.650048 ], [ -69.696236, 45.648368 ], [ -69.692116, 45.645488 ], [ -69.692802, 45.643088 ], [ -69.694176, 45.642128 ], [ -69.694176, 45.640928 ], [ -69.696579, 45.640688 ], [ -69.698296, 45.641888 ], [ -69.698982, 45.643088 ], [ -69.700012, 45.643568 ], [ -69.700699, 45.644768 ], [ -69.705505, 45.644768 ], [ -69.706535, 45.646928 ], [ -69.707909, 45.647648 ], [ -69.709282, 45.649328 ], [ -69.711685, 45.650528 ], [ -69.714088, 45.650288 ], [ -69.713402, 45.648608 ], [ -69.712715, 45.648128 ], [ -69.713058, 45.647408 ], [ -69.713745, 45.647408 ], [ -69.714088, 45.648128 ], [ -69.715118, 45.648608 ], [ -69.716492, 45.647888 ], [ -69.716492, 45.646208 ], [ -69.717178, 45.645728 ], [ -69.717522, 45.644048 ], [ -69.717522, 45.641888 ], [ -69.718552, 45.639968 ], [ -69.715118, 45.639968 ], [ -69.712029, 45.637807 ], [ -69.708939, 45.638047 ], [ -69.707909, 45.637327 ], [ -69.706879, 45.635647 ], [ -69.707222, 45.632766 ], [ -69.705505, 45.632046 ], [ -69.704819, 45.630605 ], [ -69.701729, 45.628204 ], [ -69.702759, 45.626764 ], [ -69.702759, 45.623883 ], [ -69.703102, 45.622202 ], [ -69.703789, 45.621482 ], [ -69.703102, 45.620521 ], [ -69.704819, 45.619801 ], [ -69.704819, 45.618600 ], [ -69.708595, 45.616679 ], [ -69.709282, 45.615718 ], [ -69.709625, 45.613557 ], [ -69.710312, 45.613077 ], [ -69.711685, 45.613077 ], [ -69.712029, 45.614037 ], [ -69.712715, 45.614037 ], [ -69.712715, 45.613317 ], [ -69.713745, 45.612837 ], [ -69.714088, 45.612116 ], [ -69.714775, 45.612356 ], [ -69.714088, 45.613077 ], [ -69.716835, 45.612596 ], [ -69.717522, 45.612116 ], [ -69.718208, 45.613317 ], [ -69.718895, 45.613557 ], [ -69.718895, 45.614518 ], [ -69.719582, 45.614758 ], [ -69.718552, 45.611876 ], [ -69.717522, 45.610915 ], [ -69.717522, 45.608514 ], [ -69.718208, 45.608033 ], [ -69.720268, 45.608033 ], [ -69.720268, 45.606832 ], [ -69.720955, 45.606832 ], [ -69.720955, 45.605872 ], [ -69.720268, 45.605151 ], [ -69.720612, 45.604190 ], [ -69.721298, 45.604190 ], [ -69.721298, 45.602749 ], [ -69.719925, 45.600828 ], [ -69.718895, 45.600347 ], [ -69.719238, 45.599386 ], [ -69.717865, 45.597465 ], [ -69.716492, 45.596744 ], [ -69.715118, 45.596984 ], [ -69.713402, 45.595303 ], [ -69.713058, 45.591699 ], [ -69.713745, 45.590978 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.590017 ], [ -69.714432, 45.589777 ], [ -69.714088, 45.588576 ], [ -69.714775, 45.587615 ], [ -69.714775, 45.585452 ], [ -69.717178, 45.585212 ], [ -69.719925, 45.583049 ], [ -69.721985, 45.582809 ], [ -69.723701, 45.581848 ], [ -69.724045, 45.580647 ], [ -69.725761, 45.579205 ], [ -69.726105, 45.577523 ], [ -69.726791, 45.577042 ], [ -69.726791, 45.573918 ], [ -69.728851, 45.572476 ], [ -69.728165, 45.570313 ], [ -69.728851, 45.570073 ], [ -69.729195, 45.569111 ], [ -69.730568, 45.568390 ], [ -69.731598, 45.566948 ], [ -69.735374, 45.565506 ], [ -69.737778, 45.565266 ], [ -69.738464, 45.564545 ], [ -69.740181, 45.564304 ], [ -69.741554, 45.563343 ], [ -69.743614, 45.562862 ], [ -69.744987, 45.560939 ], [ -69.748077, 45.560458 ], [ -69.749107, 45.559016 ], [ -69.752197, 45.557814 ], [ -69.754257, 45.557814 ], [ -69.756317, 45.556131 ], [ -69.760780, 45.554208 ], [ -69.764214, 45.554689 ], [ -69.768333, 45.553727 ], [ -69.770393, 45.553727 ], [ -69.772110, 45.554689 ], [ -69.773827, 45.554689 ], [ -69.775200, 45.553006 ], [ -69.775543, 45.549400 ], [ -69.774513, 45.546515 ], [ -69.773483, 45.546034 ], [ -69.773483, 45.545553 ], [ -69.780006, 45.542908 ], [ -69.766960, 45.499369 ], [ -69.748421, 45.441104 ], [ -69.732628, 45.389047 ], [ -69.701385, 45.295419 ], [ -69.700699, 45.292520 ], [ -69.708595, 45.291554 ], [ -69.705162, 45.276336 ], [ -69.684219, 45.213971 ], [ -69.683876, 45.212278 ], [ -69.687309, 45.208166 ], [ -69.682846, 45.195103 ], [ -69.655037, 45.100184 ], [ -69.645767, 45.101396 ], [ -69.642677, 45.089036 ], [ -69.637184, 45.069641 ], [ -70.142899, 45.069641 ], [ -70.148392, 45.089036 ], [ -70.151138, 45.097761 ], [ -70.159378, 45.128531 ], [ -70.249672, 45.116177 ], [ -70.253105, 45.115450 ], [ -70.293961, 45.110119 ], [ -70.308723, 45.163400 ], [ -70.312157, 45.162916 ], [ -70.312500, 45.164853 ], [ -70.338249, 45.161222 ], [ -70.339966, 45.161222 ], [ -70.339966, 45.852717 ], [ -70.338249, 45.852717 ], [ -70.336876, 45.853434 ], [ -70.334473, 45.853195 ], [ -70.332069, 45.853673 ], [ -70.331039, 45.854391 ], [ -70.329323, 45.854152 ], [ -70.328979, 45.855108 ], [ -70.327950, 45.855347 ], [ -70.326576, 45.854869 ], [ -70.323486, 45.855347 ], [ -70.321770, 45.856304 ], [ -70.319023, 45.855826 ], [ -70.315933, 45.857021 ], [ -70.314903, 45.857978 ], [ -70.312500, 45.858695 ], [ -70.308037, 45.858934 ], [ -70.305634, 45.860608 ], [ -70.303230, 45.863477 ], [ -70.298080, 45.864433 ], [ -70.295334, 45.865867 ], [ -70.292931, 45.867780 ], [ -70.292244, 45.867780 ], [ -70.290527, 45.869214 ], [ -70.289497, 45.869214 ], [ -70.288124, 45.870888 ], [ -70.285721, 45.871844 ], [ -70.284348, 45.871844 ], [ -70.283318, 45.873517 ], [ -70.281258, 45.874234 ], [ -70.280228, 45.876385 ], [ -70.278168, 45.877342 ], [ -70.276794, 45.878776 ], [ -70.274048, 45.879732 ], [ -70.274048, 45.881405 ], [ -70.273018, 45.882839 ], [ -70.270615, 45.884512 ], [ -70.268555, 45.885229 ], [ -70.267525, 45.886185 ], [ -70.265808, 45.886424 ], [ -70.263748, 45.887857 ], [ -70.262375, 45.888096 ], [ -70.261345, 45.888813 ], [ -70.261345, 45.889291 ], [ -70.259972, 45.890008 ], [ -70.259972, 45.890725 ], [ -70.258942, 45.891203 ], [ -70.260658, 45.892398 ], [ -70.262032, 45.892637 ], [ -70.262718, 45.892159 ], [ -70.264778, 45.892876 ], [ -70.265808, 45.893354 ], [ -70.265808, 45.894070 ], [ -70.264091, 45.895026 ], [ -70.263748, 45.896221 ], [ -70.261002, 45.897416 ], [ -70.260658, 45.898849 ], [ -70.258255, 45.899805 ], [ -70.257225, 45.900999 ], [ -70.255852, 45.901238 ], [ -70.254135, 45.902433 ], [ -70.253448, 45.903389 ], [ -70.254135, 45.903866 ], [ -70.254135, 45.906255 ], [ -70.253448, 45.907450 ], [ -70.254478, 45.907689 ], [ -70.254478, 45.908167 ], [ -70.255852, 45.908883 ], [ -70.259628, 45.909600 ], [ -70.259972, 45.910555 ], [ -70.258255, 45.912466 ], [ -70.258942, 45.913900 ], [ -70.258942, 45.915572 ], [ -70.257568, 45.915810 ], [ -70.257912, 45.917482 ], [ -70.257225, 45.917960 ], [ -70.257568, 45.918438 ], [ -70.259628, 45.918915 ], [ -70.259972, 45.920110 ], [ -70.260658, 45.920587 ], [ -70.262718, 45.920110 ], [ -70.262375, 45.922498 ], [ -70.263405, 45.923931 ], [ -70.261345, 45.925841 ], [ -70.259285, 45.926558 ], [ -70.259285, 45.928230 ], [ -70.255852, 45.929424 ], [ -70.254478, 45.930617 ], [ -70.253448, 45.932767 ], [ -70.251732, 45.933960 ], [ -70.248985, 45.934677 ], [ -70.246925, 45.936348 ], [ -70.244179, 45.937303 ], [ -70.243149, 45.937064 ], [ -70.242805, 45.938019 ], [ -70.239716, 45.939691 ], [ -70.240402, 45.940646 ], [ -70.239716, 45.941601 ], [ -70.240402, 45.942078 ], [ -70.240402, 45.943033 ], [ -70.239372, 45.943749 ], [ -70.239716, 45.944227 ], [ -70.240746, 45.943988 ], [ -70.241432, 45.944704 ], [ -70.242462, 45.944227 ], [ -70.244522, 45.944704 ], [ -70.242805, 45.945898 ], [ -70.242462, 45.946853 ], [ -70.244865, 45.947808 ], [ -70.246925, 45.949479 ], [ -70.248299, 45.949717 ], [ -70.248299, 45.950911 ], [ -70.248642, 45.951627 ], [ -70.249329, 45.951866 ], [ -70.248985, 45.952582 ], [ -70.250359, 45.952582 ], [ -70.251389, 45.953298 ], [ -70.252075, 45.954253 ], [ -70.252075, 45.955446 ], [ -70.253105, 45.955685 ], [ -70.254822, 45.954491 ], [ -70.255165, 45.953059 ], [ -70.255852, 45.952582 ], [ -70.259285, 45.952104 ], [ -70.260658, 45.952343 ], [ -70.260658, 45.953775 ], [ -70.259285, 45.954253 ], [ -70.258598, 45.954969 ], [ -70.259972, 45.956162 ], [ -70.260315, 45.957833 ], [ -70.258255, 45.959265 ], [ -70.261688, 45.959981 ], [ -70.263405, 45.962129 ], [ -70.264778, 45.962368 ], [ -70.265808, 45.963084 ], [ -70.265465, 45.964038 ], [ -70.266151, 45.964515 ], [ -70.267868, 45.962845 ], [ -70.269585, 45.962606 ], [ -70.271645, 45.961413 ], [ -70.274734, 45.961413 ], [ -70.275421, 45.963322 ], [ -70.274734, 45.963799 ], [ -70.273018, 45.964038 ], [ -70.273018, 45.964515 ], [ -70.274391, 45.964515 ], [ -70.274734, 45.966186 ], [ -70.275421, 45.966902 ], [ -70.277138, 45.966902 ], [ -70.278854, 45.965947 ], [ -70.280571, 45.965709 ], [ -70.280571, 45.964515 ], [ -70.282631, 45.964277 ], [ -70.283318, 45.963799 ], [ -70.284004, 45.963799 ], [ -70.284348, 45.964515 ], [ -70.286751, 45.964754 ], [ -70.289154, 45.963322 ], [ -70.291557, 45.963799 ], [ -70.293961, 45.963084 ], [ -70.296364, 45.963084 ], [ -70.296707, 45.963561 ], [ -70.298767, 45.963084 ], [ -70.299454, 45.963799 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303917, 45.964277 ], [ -70.303917, 45.964993 ], [ -70.305977, 45.964993 ], [ -70.307350, 45.964038 ], [ -70.308723, 45.963799 ], [ -70.309753, 45.962845 ], [ -70.312500, 45.962368 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.316277, 45.963084 ], [ -70.316277, 45.964277 ], [ -70.315590, 45.964277 ], [ -70.315590, 45.964754 ], [ -70.314217, 45.964754 ], [ -70.313530, 45.965470 ], [ -70.312500, 45.965709 ], [ -70.311813, 45.966425 ], [ -70.312500, 45.968811 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.971197 ], [ -70.311470, 45.972152 ], [ -70.310440, 45.972629 ], [ -70.310783, 45.973583 ], [ -70.312500, 45.974299 ], [ -70.311813, 45.975253 ], [ -70.310440, 45.975731 ], [ -70.310440, 45.977162 ], [ -70.307350, 45.978355 ], [ -70.307693, 45.979309 ], [ -70.308723, 45.979548 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980979 ], [ -70.308380, 45.980741 ], [ -70.308037, 45.981218 ], [ -70.307693, 45.982649 ], [ -70.305634, 45.983604 ], [ -70.304260, 45.983604 ], [ -70.303917, 45.984081 ], [ -70.302200, 45.984081 ], [ -70.300140, 45.985989 ], [ -70.295334, 45.985989 ], [ -70.293617, 45.987898 ], [ -70.291901, 45.988613 ], [ -70.291557, 45.989567 ], [ -70.288811, 45.991476 ], [ -70.287094, 45.991953 ], [ -70.286407, 45.992668 ], [ -70.287437, 45.993145 ], [ -70.287437, 45.993622 ], [ -70.284004, 45.995531 ], [ -70.284691, 45.995769 ], [ -70.286751, 45.994577 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994577 ], [ -70.288467, 45.994815 ], [ -70.288467, 45.995292 ], [ -70.289841, 45.995531 ], [ -70.290184, 45.995054 ], [ -70.291214, 45.994815 ], [ -70.291557, 45.995292 ], [ -70.290527, 45.995531 ], [ -70.290527, 45.996008 ], [ -70.291901, 45.996246 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.297050, 45.997916 ], [ -70.299797, 45.998393 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.999108 ], [ -70.303917, 46.000301 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.303230, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.303230, 46.003162 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.004593 ], [ -70.305290, 46.006978 ], [ -70.306664, 46.010555 ], [ -70.308037, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309410, 46.010555 ], [ -70.310097, 46.011747 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012939 ], [ -70.310783, 46.015323 ], [ -70.311127, 46.015800 ], [ -70.312500, 46.015800 ], [ -70.312500, 46.016754 ], [ -70.314903, 46.016516 ], [ -70.315590, 46.018423 ], [ -70.317650, 46.018661 ], [ -70.318336, 46.019138 ], [ -70.317993, 46.019615 ], [ -70.315933, 46.019853 ], [ -70.315247, 46.020330 ], [ -70.315247, 46.021284 ], [ -70.314217, 46.021761 ], [ -70.313873, 46.022476 ], [ -70.312500, 46.022953 ], [ -70.309753, 46.024383 ], [ -70.306320, 46.025098 ], [ -70.304947, 46.026290 ], [ -70.301857, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300827, 46.028912 ], [ -70.299110, 46.030104 ], [ -70.298767, 46.031057 ], [ -70.302200, 46.031772 ], [ -70.302200, 46.033441 ], [ -70.301170, 46.033679 ], [ -70.301514, 46.034871 ], [ -70.300827, 46.035824 ], [ -70.299797, 46.036063 ], [ -70.300140, 46.037254 ], [ -70.299454, 46.038684 ], [ -70.297737, 46.039638 ], [ -70.297394, 46.041067 ], [ -70.294647, 46.041067 ], [ -70.292244, 46.043451 ], [ -70.290527, 46.044165 ], [ -70.290527, 46.045357 ], [ -70.289154, 46.046787 ], [ -70.287781, 46.047025 ], [ -70.286064, 46.048455 ], [ -70.284691, 46.048455 ], [ -70.284691, 46.048931 ], [ -70.281258, 46.050838 ], [ -70.280914, 46.051791 ], [ -70.279884, 46.052267 ], [ -70.281258, 46.053220 ], [ -70.280914, 46.054411 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.292931, 46.086329 ], [ -70.291557, 46.087519 ], [ -70.291214, 46.092281 ], [ -69.729881, 46.092281 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.053697 ], [ -69.728851, 46.037969 ], [ -69.728851, 45.976924 ], [ -69.683876, 45.983842 ], [ -69.677696, 45.965231 ], [ -69.661560, 45.910555 ], [ -69.646797, 45.863238 ], [ -69.648170, 45.863716 ], [ -69.648514, 45.862998 ], [ -69.649200, 45.863477 ], [ -69.651260, 45.862998 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863955 ], [ -69.654007, 45.862998 ], [ -69.655380, 45.862759 ], [ -69.654694, 45.862281 ], [ -69.655037, 45.861803 ], [ -69.655724, 45.862281 ], [ -69.657097, 45.862042 ], [ -69.657097, 45.861325 ], [ -69.656410, 45.860847 ], [ -69.656754, 45.860369 ], [ -69.658127, 45.860608 ], [ -69.658813, 45.861325 ], [ -69.659500, 45.861086 ], [ -69.659157, 45.860608 ], [ -69.659843, 45.860608 ], [ -69.660187, 45.861325 ], [ -69.660873, 45.860847 ], [ -69.662590, 45.861325 ], [ -69.662247, 45.860369 ], [ -69.664307, 45.860369 ], [ -69.663963, 45.861564 ], [ -69.664650, 45.862042 ], [ -69.667397, 45.862042 ], [ -69.667740, 45.861564 ], [ -69.668770, 45.861564 ], [ -69.670143, 45.860847 ], [ -69.670486, 45.861325 ], [ -69.671516, 45.861325 ], [ -69.672203, 45.862042 ], [ -69.673576, 45.862520 ], [ -69.673576, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.674606, 45.861803 ], [ -69.673233, 45.860847 ], [ -69.673233, 45.859890 ], [ -69.672546, 45.859651 ], [ -69.672546, 45.858695 ], [ -69.674263, 45.857499 ], [ -69.673920, 45.856304 ], [ -69.674606, 45.855826 ], [ -69.674950, 45.854630 ], [ -69.674606, 45.852239 ], [ -69.676666, 45.851521 ], [ -69.676323, 45.852956 ], [ -69.678040, 45.852956 ], [ -69.678383, 45.852000 ], [ -69.681816, 45.851760 ], [ -69.682503, 45.852239 ], [ -69.683533, 45.851043 ], [ -69.684219, 45.851282 ], [ -69.684219, 45.851760 ], [ -69.686279, 45.851760 ], [ -69.685936, 45.852956 ], [ -69.686966, 45.853913 ], [ -69.690399, 45.854391 ], [ -69.689369, 45.855108 ], [ -69.689369, 45.858217 ], [ -69.690399, 45.858934 ], [ -69.692116, 45.859173 ], [ -69.691429, 45.860847 ], [ -69.694176, 45.862042 ], [ -69.693832, 45.862520 ], [ -69.693146, 45.862520 ], [ -69.692802, 45.863238 ], [ -69.693489, 45.864194 ], [ -69.692116, 45.864672 ], [ -69.692116, 45.865150 ], [ -69.694176, 45.864194 ], [ -69.697266, 45.864433 ], [ -69.696922, 45.867541 ], [ -69.699326, 45.868736 ], [ -69.699326, 45.870410 ], [ -69.700356, 45.870888 ], [ -69.700012, 45.871605 ], [ -69.701385, 45.872561 ], [ -69.700699, 45.873995 ], [ -69.701385, 45.875429 ], [ -69.702072, 45.875668 ], [ -69.701729, 45.876146 ], [ -69.702759, 45.876863 ], [ -69.702759, 45.878776 ], [ -69.701729, 45.879015 ], [ -69.701729, 45.879971 ], [ -69.698639, 45.880449 ], [ -69.698639, 45.884751 ], [ -69.697952, 45.885229 ], [ -69.698296, 45.885946 ], [ -69.699669, 45.885707 ], [ -69.702072, 45.886185 ], [ -69.703445, 45.885946 ], [ -69.704132, 45.885229 ], [ -69.705849, 45.884990 ], [ -69.707565, 45.885707 ], [ -69.709282, 45.885707 ], [ -69.709625, 45.885229 ], [ -69.711685, 45.884990 ], [ -69.712029, 45.884273 ], [ -69.712715, 45.884273 ], [ -69.712715, 45.883317 ], [ -69.716492, 45.883556 ], [ -69.717178, 45.882600 ], [ -69.719582, 45.882361 ], [ -69.720612, 45.881644 ], [ -69.723015, 45.881166 ], [ -69.723701, 45.880688 ], [ -69.723358, 45.879971 ], [ -69.724731, 45.879732 ], [ -69.725761, 45.880210 ], [ -69.727135, 45.880449 ], [ -69.727821, 45.879732 ], [ -69.730225, 45.879732 ], [ -69.731941, 45.878537 ], [ -69.732628, 45.878537 ], [ -69.732628, 45.879493 ], [ -69.733315, 45.880210 ], [ -69.735718, 45.880449 ], [ -69.735718, 45.881166 ], [ -69.737091, 45.880927 ], [ -69.736748, 45.882361 ], [ -69.737778, 45.883317 ], [ -69.738464, 45.883317 ], [ -69.738464, 45.882361 ], [ -69.737778, 45.882122 ], [ -69.738464, 45.881166 ], [ -69.737778, 45.881166 ], [ -69.737778, 45.880210 ], [ -69.736061, 45.880210 ], [ -69.735031, 45.879493 ], [ -69.733658, 45.879254 ], [ -69.734688, 45.878776 ], [ -69.734001, 45.877103 ], [ -69.731941, 45.876624 ], [ -69.731255, 45.876863 ], [ -69.728165, 45.875429 ], [ -69.727478, 45.875429 ], [ -69.727135, 45.875907 ], [ -69.727135, 45.874712 ], [ -69.724731, 45.873995 ], [ -69.725075, 45.872083 ], [ -69.724388, 45.872083 ], [ -69.723701, 45.870888 ], [ -69.724731, 45.868975 ], [ -69.724388, 45.868019 ], [ -69.725761, 45.867302 ], [ -69.725761, 45.866824 ], [ -69.725075, 45.867063 ], [ -69.725075, 45.866106 ], [ -69.724388, 45.865628 ], [ -69.722672, 45.865628 ], [ -69.721298, 45.866106 ], [ -69.720955, 45.865628 ], [ -69.717522, 45.865867 ], [ -69.717522, 45.865150 ], [ -69.716148, 45.864433 ], [ -69.716148, 45.863477 ], [ -69.715118, 45.862281 ], [ -69.713402, 45.861086 ], [ -69.711685, 45.860847 ], [ -69.712372, 45.859412 ], [ -69.711342, 45.856543 ], [ -69.709282, 45.855826 ], [ -69.709625, 45.854869 ], [ -69.708939, 45.854391 ], [ -69.707222, 45.854152 ], [ -69.705849, 45.854152 ] ], [ [ -69.714432, 45.589777 ], [ -69.715118, 45.589777 ], [ -69.714775, 45.589537 ], [ -69.714432, 45.589777 ] ], [ [ -69.807816, 45.722241 ], [ -69.808502, 45.723439 ], [ -69.810905, 45.723199 ], [ -69.811935, 45.722480 ], [ -69.813995, 45.722241 ], [ -69.815369, 45.721522 ], [ -69.813652, 45.722001 ], [ -69.812279, 45.721761 ], [ -69.810905, 45.722720 ], [ -69.808846, 45.722720 ], [ -69.807816, 45.722241 ] ], [ [ -69.801292, 45.784764 ], [ -69.800262, 45.784524 ], [ -69.800262, 45.783806 ], [ -69.798889, 45.783806 ], [ -69.798546, 45.784524 ], [ -69.797859, 45.784285 ], [ -69.797859, 45.783327 ], [ -69.797173, 45.783327 ], [ -69.796829, 45.784045 ], [ -69.795799, 45.784285 ], [ -69.796143, 45.785482 ], [ -69.796486, 45.785003 ], [ -69.797516, 45.785721 ], [ -69.797516, 45.784524 ], [ -69.797859, 45.784764 ], [ -69.801292, 45.784764 ] ], [ [ -69.795799, 45.784285 ], [ -69.796486, 45.783327 ], [ -69.795456, 45.783567 ], [ -69.794083, 45.782848 ], [ -69.793053, 45.783088 ], [ -69.792709, 45.783806 ], [ -69.793739, 45.783088 ], [ -69.794083, 45.783806 ], [ -69.795456, 45.783806 ], [ -69.795799, 45.784285 ] ], [ [ -69.801636, 45.785482 ], [ -69.801636, 45.785243 ], [ -69.798546, 45.784764 ], [ -69.801636, 45.785482 ] ], [ [ -69.801636, 45.785482 ], [ -69.801979, 45.786440 ], [ -69.802322, 45.785961 ], [ -69.801636, 45.785482 ] ] ], [ [ [ -69.797173, 45.784285 ], [ -69.796829, 45.784285 ], [ -69.796829, 45.784045 ], [ -69.797516, 45.783567 ], [ -69.797173, 45.784285 ] ] ], [ [ [ -69.354973, 45.069641 ], [ -69.385185, 45.069641 ], [ -69.356689, 45.073521 ], [ -69.356003, 45.073521 ], [ -69.354973, 45.069641 ] ] ], [ [ [ -69.792366, 45.783806 ], [ -69.792366, 45.784045 ], [ -69.791679, 45.784045 ], [ -69.792366, 45.783806 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 78, "y": 90 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.487839, 46.573731 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.190865, 46.572787 ], [ -69.100914, 46.572787 ], [ -69.017487, 46.572315 ], [ -68.906250, 46.572787 ], [ -68.878784, 46.572787 ], [ -68.878784, 46.054173 ], [ -69.729538, 46.054173 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.147967 ], [ -69.730568, 46.177215 ], [ -69.730911, 46.252048 ], [ -69.732628, 46.394069 ], [ -69.719582, 46.394306 ], [ -69.721298, 46.574203 ], [ -69.487839, 46.573731 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.721298, 46.574203 ], [ -69.487839, 46.573731 ], [ -69.405441, 46.573023 ], [ -69.249573, 46.573495 ], [ -69.190865, 46.572787 ], [ -69.100914, 46.572787 ], [ -69.017487, 46.572315 ], [ -68.906250, 46.572787 ], [ -68.878784, 46.572787 ], [ -68.878784, 46.054173 ], [ -69.729538, 46.054173 ], [ -69.729538, 46.073231 ], [ -69.729881, 46.147967 ], [ -69.730568, 46.177215 ], [ -69.730911, 46.252048 ], [ -69.732628, 46.394069 ], [ -69.719582, 46.394306 ], [ -69.721298, 46.574203 ] ] ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.284348, 46.097995 ], [ -70.284691, 46.098948 ], [ -70.285721, 46.099424 ], [ -70.286064, 46.100138 ], [ -70.282631, 46.100614 ], [ -70.280914, 46.100376 ], [ -70.280228, 46.099900 ], [ -70.278854, 46.099900 ], [ -70.273705, 46.102280 ], [ -70.273018, 46.102280 ], [ -70.272331, 46.101566 ], [ -70.270958, 46.101090 ], [ -70.268555, 46.101566 ], [ -70.266838, 46.100852 ], [ -70.264091, 46.100852 ], [ -70.262718, 46.100376 ], [ -70.261345, 46.101090 ], [ -70.260315, 46.101090 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099662 ], [ -70.254478, 46.099662 ], [ -70.253105, 46.100376 ], [ -70.253105, 46.104185 ], [ -70.252419, 46.106089 ], [ -70.253105, 46.107755 ], [ -70.254478, 46.107755 ], [ -70.254478, 46.108231 ], [ -70.255508, 46.108945 ], [ -70.254822, 46.110374 ], [ -70.255508, 46.110850 ], [ -70.254478, 46.111088 ], [ -70.254478, 46.112040 ], [ -70.253792, 46.112516 ], [ -70.254822, 46.113944 ], [ -70.253792, 46.114182 ], [ -70.253792, 46.114658 ], [ -70.252762, 46.114658 ], [ -70.253448, 46.115134 ], [ -70.253105, 46.115372 ], [ -70.252419, 46.115134 ], [ -70.252762, 46.116324 ], [ -70.251732, 46.117038 ], [ -70.252075, 46.117990 ], [ -70.251389, 46.117990 ], [ -70.251045, 46.118466 ], [ -70.251732, 46.119655 ], [ -70.250702, 46.119893 ], [ -70.250702, 46.120369 ], [ -70.250015, 46.120369 ], [ -70.250015, 46.121083 ], [ -70.248299, 46.122511 ], [ -70.248299, 46.124177 ], [ -70.247612, 46.124177 ], [ -70.247269, 46.124653 ], [ -70.247612, 46.125842 ], [ -70.246925, 46.125367 ], [ -70.246239, 46.126318 ], [ -70.245552, 46.126318 ], [ -70.245552, 46.127032 ], [ -70.244522, 46.127508 ], [ -70.245209, 46.127984 ], [ -70.244865, 46.128698 ], [ -70.243835, 46.128698 ], [ -70.244179, 46.131077 ], [ -70.243492, 46.131077 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.242805, 46.133694 ], [ -70.241776, 46.134408 ], [ -70.242119, 46.135598 ], [ -70.241089, 46.136311 ], [ -70.241089, 46.136787 ], [ -70.240402, 46.136787 ], [ -70.240402, 46.137977 ], [ -70.239716, 46.137977 ], [ -70.240402, 46.139166 ], [ -70.240402, 46.139642 ], [ -70.239372, 46.139880 ], [ -70.239372, 46.140355 ], [ -70.240402, 46.140593 ], [ -70.239716, 46.141069 ], [ -70.240059, 46.142021 ], [ -70.239372, 46.142258 ], [ -70.239716, 46.143448 ], [ -70.237312, 46.145113 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.145589 ], [ -70.236626, 46.146540 ], [ -70.237999, 46.147016 ], [ -70.239716, 46.149157 ], [ -70.240746, 46.149157 ], [ -70.240746, 46.149632 ], [ -70.240059, 46.149870 ], [ -70.240402, 46.151059 ], [ -70.241776, 46.151059 ], [ -70.241776, 46.150108 ], [ -70.242805, 46.149870 ], [ -70.243835, 46.150584 ], [ -70.244179, 46.151773 ], [ -70.245209, 46.151059 ], [ -70.246582, 46.151059 ], [ -70.246925, 46.152011 ], [ -70.248299, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.152724 ], [ -70.247612, 46.153438 ], [ -70.250702, 46.154389 ], [ -70.249672, 46.155816 ], [ -70.250359, 46.155816 ], [ -70.250359, 46.156529 ], [ -70.252419, 46.157243 ], [ -70.252762, 46.158432 ], [ -70.255165, 46.158432 ], [ -70.255852, 46.158907 ], [ -70.255852, 46.159621 ], [ -70.256538, 46.159383 ], [ -70.257568, 46.159859 ], [ -70.257568, 46.160334 ], [ -70.259285, 46.161523 ], [ -70.258598, 46.161761 ], [ -70.258598, 46.162237 ], [ -70.260315, 46.163663 ], [ -70.261345, 46.163663 ], [ -70.261688, 46.164377 ], [ -70.265121, 46.164852 ], [ -70.264435, 46.165566 ], [ -70.264778, 46.167943 ], [ -70.266151, 46.168419 ], [ -70.266495, 46.169370 ], [ -70.267525, 46.169370 ], [ -70.268555, 46.170559 ], [ -70.270271, 46.170321 ], [ -70.270615, 46.171034 ], [ -70.269928, 46.171034 ], [ -70.270958, 46.171510 ], [ -70.271301, 46.172223 ], [ -70.272331, 46.171985 ], [ -70.273018, 46.172461 ], [ -70.274048, 46.172461 ], [ -70.274048, 46.172936 ], [ -70.275421, 46.173412 ], [ -70.275078, 46.174363 ], [ -70.275764, 46.174363 ], [ -70.276108, 46.174838 ], [ -70.277481, 46.174600 ], [ -70.278511, 46.175314 ], [ -70.278511, 46.175789 ], [ -70.280228, 46.176740 ], [ -70.280228, 46.177691 ], [ -70.281258, 46.177691 ], [ -70.281258, 46.178166 ], [ -70.282288, 46.178642 ], [ -70.282631, 46.180068 ], [ -70.284004, 46.180544 ], [ -70.284348, 46.181019 ], [ -70.283661, 46.181494 ], [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191477 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.284348, 46.197894 ], [ -70.283318, 46.199320 ], [ -70.282288, 46.199320 ], [ -70.280914, 46.200270 ], [ -70.281258, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203359 ], [ -70.277138, 46.203834 ], [ -70.277481, 46.204547 ], [ -70.276794, 46.205260 ], [ -70.276451, 46.207636 ], [ -70.274048, 46.208824 ], [ -70.272675, 46.210012 ], [ -70.271645, 46.210012 ], [ -70.272331, 46.211200 ], [ -70.270958, 46.210962 ], [ -70.270958, 46.211913 ], [ -70.271988, 46.212625 ], [ -70.271988, 46.213101 ], [ -70.271301, 46.213338 ], [ -70.272331, 46.214051 ], [ -70.274391, 46.214526 ], [ -70.274391, 46.215239 ], [ -70.273018, 46.216189 ], [ -70.273018, 46.216664 ], [ -70.273705, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.268555, 46.218089 ], [ -70.267525, 46.219515 ], [ -70.267868, 46.221415 ], [ -70.265808, 46.223315 ], [ -70.265808, 46.224028 ], [ -70.267525, 46.224978 ], [ -70.267181, 46.225453 ], [ -70.265808, 46.225690 ], [ -70.265121, 46.226878 ], [ -70.264091, 46.227353 ], [ -70.264091, 46.228778 ], [ -70.261345, 46.229491 ], [ -70.259972, 46.230916 ], [ -70.261002, 46.231391 ], [ -70.259972, 46.232103 ], [ -70.259628, 46.234240 ], [ -70.257568, 46.236853 ], [ -70.257912, 46.238040 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.257225, 46.242314 ], [ -70.256195, 46.243264 ], [ -70.256195, 46.244689 ], [ -70.254135, 46.245638 ], [ -70.254478, 46.246113 ], [ -70.255508, 46.246351 ], [ -70.252419, 46.248487 ], [ -70.251045, 46.248962 ], [ -70.251732, 46.250387 ], [ -70.251732, 46.252286 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.254422 ], [ -70.253792, 46.254660 ], [ -70.253105, 46.255372 ], [ -70.253105, 46.259408 ], [ -70.251732, 46.260832 ], [ -70.250702, 46.260832 ], [ -70.250015, 46.262493 ], [ -70.250702, 46.262731 ], [ -70.250702, 46.263205 ], [ -70.249329, 46.264155 ], [ -70.249672, 46.264867 ], [ -70.248642, 46.265341 ], [ -70.248985, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.272699 ], [ -70.243492, 46.273173 ], [ -70.242805, 46.273648 ], [ -70.241432, 46.272699 ], [ -70.240746, 46.273173 ], [ -70.241089, 46.275072 ], [ -70.239716, 46.275546 ], [ -70.239716, 46.276496 ], [ -70.240402, 46.277207 ], [ -70.240059, 46.279343 ], [ -70.237999, 46.281004 ], [ -70.236626, 46.281004 ], [ -70.236282, 46.281479 ], [ -70.235596, 46.281479 ], [ -70.234566, 46.283614 ], [ -70.232849, 46.284800 ], [ -70.231819, 46.287885 ], [ -70.231819, 46.291206 ], [ -70.229073, 46.291681 ], [ -70.229073, 46.292392 ], [ -70.227699, 46.292155 ], [ -70.227356, 46.292629 ], [ -70.226326, 46.292867 ], [ -70.223579, 46.292867 ], [ -70.223236, 46.293341 ], [ -70.220490, 46.293341 ], [ -70.218086, 46.294290 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295476 ], [ -70.216370, 46.295476 ], [ -70.215340, 46.294764 ], [ -70.213966, 46.296425 ], [ -70.214310, 46.297374 ], [ -70.212250, 46.298797 ], [ -70.211563, 46.298323 ], [ -70.210533, 46.298323 ], [ -70.209160, 46.299034 ], [ -70.207787, 46.299034 ], [ -70.206070, 46.299746 ], [ -70.205727, 46.300457 ], [ -70.207100, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206413, 46.309944 ], [ -70.205040, 46.310893 ], [ -70.203667, 46.312790 ], [ -70.203323, 46.314924 ], [ -70.204353, 46.315399 ], [ -70.204353, 46.316821 ], [ -70.206413, 46.318007 ], [ -70.207443, 46.319192 ], [ -70.206757, 46.321326 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.323935 ], [ -70.206070, 46.324883 ], [ -70.207100, 46.326068 ], [ -70.207787, 46.328202 ], [ -70.209160, 46.329624 ], [ -70.207787, 46.331521 ], [ -70.205383, 46.332706 ], [ -70.205040, 46.333891 ], [ -70.202293, 46.335314 ], [ -70.201263, 46.337210 ], [ -70.195770, 46.341002 ], [ -70.195427, 46.342662 ], [ -70.196114, 46.343373 ], [ -70.193710, 46.345743 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.347639 ], [ -70.191307, 46.348113 ], [ -70.192337, 46.349060 ], [ -70.191650, 46.350245 ], [ -70.189934, 46.350719 ], [ -70.188560, 46.350008 ], [ -70.184441, 46.352141 ], [ -70.183411, 46.351667 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354274 ], [ -70.177231, 46.355696 ], [ -70.176201, 46.356643 ], [ -70.175514, 46.358302 ], [ -70.172768, 46.359487 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357591 ], [ -70.164528, 46.359250 ], [ -70.163155, 46.359250 ], [ -70.162811, 46.360671 ], [ -70.161781, 46.361145 ], [ -70.160065, 46.360908 ], [ -70.160408, 46.359961 ], [ -70.159721, 46.359487 ], [ -70.158005, 46.359487 ], [ -70.158348, 46.360908 ], [ -70.156288, 46.361619 ], [ -70.154228, 46.360198 ], [ -70.150795, 46.359250 ], [ -70.148392, 46.359013 ], [ -70.145988, 46.360908 ], [ -70.144958, 46.362330 ], [ -70.141869, 46.362330 ], [ -70.140839, 46.363041 ], [ -70.140495, 46.363751 ], [ -70.141525, 46.364936 ], [ -70.139122, 46.365884 ], [ -70.137749, 46.369437 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.368963 ], [ -70.131912, 46.369911 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127449, 46.370859 ], [ -70.126762, 46.371569 ], [ -70.127449, 46.372280 ], [ -70.128479, 46.379386 ], [ -70.126076, 46.381754 ], [ -70.124359, 46.381991 ], [ -70.121956, 46.382939 ], [ -70.116463, 46.385781 ], [ -70.116119, 46.387201 ], [ -70.117149, 46.387438 ], [ -70.116806, 46.388386 ], [ -70.115089, 46.388149 ], [ -70.115089, 46.385544 ], [ -70.114403, 46.385307 ], [ -70.113029, 46.386017 ], [ -70.110970, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112343, 46.388386 ], [ -70.110283, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108223, 46.388859 ], [ -70.108910, 46.388386 ], [ -70.108223, 46.387675 ], [ -70.107536, 46.388149 ], [ -70.107880, 46.389096 ], [ -70.109940, 46.390517 ], [ -70.109940, 46.390990 ], [ -70.109253, 46.391464 ], [ -70.108566, 46.391464 ], [ -70.107536, 46.390754 ], [ -70.106850, 46.390990 ], [ -70.106850, 46.391701 ], [ -70.107880, 46.392885 ], [ -70.106163, 46.393595 ], [ -70.105133, 46.393595 ], [ -70.104446, 46.394069 ], [ -70.104446, 46.395016 ], [ -70.102043, 46.396673 ], [ -70.101013, 46.398331 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099297, 46.403066 ], [ -70.100670, 46.403303 ], [ -70.098953, 46.403539 ], [ -70.097923, 46.404250 ], [ -70.098267, 46.404723 ], [ -70.100327, 46.404486 ], [ -70.101013, 46.405433 ], [ -70.097237, 46.405433 ], [ -70.095863, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.406854 ], [ -70.096893, 46.407327 ], [ -70.095177, 46.407801 ], [ -70.094833, 46.408511 ], [ -70.097237, 46.409221 ], [ -70.096893, 46.409694 ], [ -70.094833, 46.409931 ], [ -70.092430, 46.409458 ], [ -70.091400, 46.410405 ], [ -70.089340, 46.411115 ], [ -70.087967, 46.410405 ], [ -70.087967, 46.409931 ], [ -70.086937, 46.409221 ], [ -70.083847, 46.410641 ], [ -70.081444, 46.410878 ], [ -70.079384, 46.410641 ], [ -70.078354, 46.409931 ], [ -70.076637, 46.409694 ], [ -70.073891, 46.410405 ], [ -70.072174, 46.411352 ], [ -70.067024, 46.412062 ], [ -70.065308, 46.413955 ], [ -70.061531, 46.413955 ], [ -70.060844, 46.414429 ], [ -70.057411, 46.414902 ], [ -70.056725, 46.415612 ], [ -70.053635, 46.432178 ], [ -70.023422, 46.573495 ], [ -69.982567, 46.573967 ], [ -69.800606, 46.573495 ], [ -69.721298, 46.574203 ], [ -69.719582, 46.394306 ], [ -69.732628, 46.394069 ], [ -69.730911, 46.252048 ], [ -69.730568, 46.177215 ], [ -69.729881, 46.147967 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.054173 ], [ -70.280914, 46.054173 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062035 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.5074824", "INTPTLON": "-069.9760395" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.721298, 46.574203 ], [ -69.719582, 46.394306 ], [ -69.732628, 46.394069 ], [ -69.730911, 46.252048 ], [ -69.730568, 46.177215 ], [ -69.729881, 46.147967 ], [ -69.729538, 46.073231 ], [ -69.729538, 46.054173 ], [ -70.280914, 46.054173 ], [ -70.279884, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.056318 ], [ -70.279541, 46.058223 ], [ -70.279541, 46.058700 ], [ -70.278511, 46.059176 ], [ -70.278854, 46.060844 ], [ -70.279198, 46.061082 ], [ -70.281258, 46.060368 ], [ -70.282631, 46.060368 ], [ -70.284004, 46.062750 ], [ -70.286751, 46.062988 ], [ -70.288124, 46.062273 ], [ -70.289497, 46.062273 ], [ -70.290871, 46.061321 ], [ -70.293274, 46.060606 ], [ -70.299797, 46.061082 ], [ -70.302200, 46.060844 ], [ -70.303230, 46.061559 ], [ -70.303574, 46.062512 ], [ -70.303917, 46.061559 ], [ -70.305290, 46.061797 ], [ -70.306320, 46.061321 ], [ -70.309410, 46.062035 ], [ -70.309753, 46.062988 ], [ -70.311127, 46.063941 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065847 ], [ -70.308723, 46.066799 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068943 ], [ -70.302887, 46.070372 ], [ -70.302887, 46.071087 ], [ -70.305290, 46.071325 ], [ -70.305290, 46.072040 ], [ -70.302544, 46.073231 ], [ -70.302544, 46.074183 ], [ -70.303230, 46.074660 ], [ -70.303230, 46.076565 ], [ -70.301857, 46.077756 ], [ -70.300484, 46.077994 ], [ -70.300140, 46.078708 ], [ -70.300140, 46.079423 ], [ -70.302544, 46.080375 ], [ -70.302200, 46.082757 ], [ -70.297394, 46.084900 ], [ -70.294304, 46.085376 ], [ -70.291557, 46.087519 ], [ -70.291557, 46.091567 ], [ -70.290871, 46.093710 ], [ -70.289841, 46.094900 ], [ -70.288124, 46.095377 ], [ -70.284348, 46.097995 ], [ -70.284691, 46.098948 ], [ -70.285721, 46.099424 ], [ -70.286064, 46.100138 ], [ -70.282631, 46.100614 ], [ -70.280914, 46.100376 ], [ -70.280228, 46.099900 ], [ -70.278854, 46.099900 ], [ -70.273705, 46.102280 ], [ -70.273018, 46.102280 ], [ -70.272331, 46.101566 ], [ -70.270958, 46.101090 ], [ -70.268555, 46.101566 ], [ -70.266838, 46.100852 ], [ -70.264091, 46.100852 ], [ -70.262718, 46.100376 ], [ -70.261345, 46.101090 ], [ -70.260315, 46.101090 ], [ -70.257568, 46.100376 ], [ -70.257568, 46.099662 ], [ -70.254478, 46.099662 ], [ -70.253105, 46.100376 ], [ -70.253105, 46.104185 ], [ -70.252419, 46.106089 ], [ -70.253105, 46.107755 ], [ -70.254478, 46.107755 ], [ -70.254478, 46.108231 ], [ -70.255508, 46.108945 ], [ -70.254822, 46.110374 ], [ -70.255508, 46.110850 ], [ -70.254478, 46.111088 ], [ -70.254478, 46.112040 ], [ -70.253792, 46.112516 ], [ -70.254822, 46.113944 ], [ -70.253792, 46.114182 ], [ -70.253792, 46.114658 ], [ -70.252762, 46.114658 ], [ -70.253448, 46.115134 ], [ -70.253105, 46.115372 ], [ -70.252419, 46.115134 ], [ -70.252762, 46.116324 ], [ -70.251732, 46.117038 ], [ -70.252075, 46.117990 ], [ -70.251389, 46.117990 ], [ -70.251045, 46.118466 ], [ -70.251732, 46.119655 ], [ -70.250702, 46.119893 ], [ -70.250702, 46.120369 ], [ -70.250015, 46.120369 ], [ -70.250015, 46.121083 ], [ -70.248299, 46.122511 ], [ -70.248299, 46.124177 ], [ -70.247612, 46.124177 ], [ -70.247269, 46.124653 ], [ -70.247612, 46.125842 ], [ -70.246925, 46.125367 ], [ -70.246239, 46.126318 ], [ -70.245552, 46.126318 ], [ -70.245552, 46.127032 ], [ -70.244522, 46.127508 ], [ -70.245209, 46.127984 ], [ -70.244865, 46.128698 ], [ -70.243835, 46.128698 ], [ -70.244179, 46.131077 ], [ -70.243492, 46.131077 ], [ -70.242462, 46.131791 ], [ -70.243149, 46.132743 ], [ -70.242805, 46.133694 ], [ -70.241776, 46.134408 ], [ -70.242119, 46.135598 ], [ -70.241089, 46.136311 ], [ -70.241089, 46.136787 ], [ -70.240402, 46.136787 ], [ -70.240402, 46.137977 ], [ -70.239716, 46.137977 ], [ -70.240402, 46.139166 ], [ -70.240402, 46.139642 ], [ -70.239372, 46.139880 ], [ -70.239372, 46.140355 ], [ -70.240402, 46.140593 ], [ -70.239716, 46.141069 ], [ -70.240059, 46.142021 ], [ -70.239372, 46.142258 ], [ -70.239716, 46.143448 ], [ -70.237312, 46.145113 ], [ -70.236282, 46.145113 ], [ -70.236969, 46.145589 ], [ -70.236626, 46.146540 ], [ -70.237999, 46.147016 ], [ -70.239716, 46.149157 ], [ -70.240746, 46.149157 ], [ -70.240746, 46.149632 ], [ -70.240059, 46.149870 ], [ -70.240402, 46.151059 ], [ -70.241776, 46.151059 ], [ -70.241776, 46.150108 ], [ -70.242805, 46.149870 ], [ -70.243835, 46.150584 ], [ -70.244179, 46.151773 ], [ -70.245209, 46.151059 ], [ -70.246582, 46.151059 ], [ -70.246925, 46.152011 ], [ -70.248299, 46.151773 ], [ -70.248642, 46.152724 ], [ -70.247955, 46.152724 ], [ -70.247612, 46.153438 ], [ -70.250702, 46.154389 ], [ -70.249672, 46.155816 ], [ -70.250359, 46.155816 ], [ -70.250359, 46.156529 ], [ -70.252419, 46.157243 ], [ -70.252762, 46.158432 ], [ -70.255165, 46.158432 ], [ -70.255852, 46.158907 ], [ -70.255852, 46.159621 ], [ -70.256538, 46.159383 ], [ -70.257568, 46.159859 ], [ -70.257568, 46.160334 ], [ -70.259285, 46.161523 ], [ -70.258598, 46.161761 ], [ -70.258598, 46.162237 ], [ -70.260315, 46.163663 ], [ -70.261345, 46.163663 ], [ -70.261688, 46.164377 ], [ -70.265121, 46.164852 ], [ -70.264435, 46.165566 ], [ -70.264778, 46.167943 ], [ -70.266151, 46.168419 ], [ -70.266495, 46.169370 ], [ -70.267525, 46.169370 ], [ -70.268555, 46.170559 ], [ -70.270271, 46.170321 ], [ -70.270615, 46.171034 ], [ -70.269928, 46.171034 ], [ -70.270958, 46.171510 ], [ -70.271301, 46.172223 ], [ -70.272331, 46.171985 ], [ -70.273018, 46.172461 ], [ -70.274048, 46.172461 ], [ -70.274048, 46.172936 ], [ -70.275421, 46.173412 ], [ -70.275078, 46.174363 ], [ -70.275764, 46.174363 ], [ -70.276108, 46.174838 ], [ -70.277481, 46.174600 ], [ -70.278511, 46.175314 ], [ -70.278511, 46.175789 ], [ -70.280228, 46.176740 ], [ -70.280228, 46.177691 ], [ -70.281258, 46.177691 ], [ -70.281258, 46.178166 ], [ -70.282288, 46.178642 ], [ -70.282631, 46.180068 ], [ -70.284004, 46.180544 ], [ -70.284348, 46.181019 ], [ -70.283661, 46.181494 ], [ -70.286064, 46.182921 ], [ -70.285721, 46.184822 ], [ -70.290527, 46.185298 ], [ -70.290871, 46.187674 ], [ -70.289841, 46.188150 ], [ -70.290184, 46.189101 ], [ -70.292244, 46.190289 ], [ -70.292587, 46.191477 ], [ -70.290184, 46.192903 ], [ -70.288811, 46.192903 ], [ -70.289154, 46.193854 ], [ -70.287781, 46.193854 ], [ -70.288124, 46.195517 ], [ -70.286064, 46.195517 ], [ -70.285721, 46.197419 ], [ -70.284348, 46.197894 ], [ -70.283318, 46.199320 ], [ -70.282288, 46.199320 ], [ -70.280914, 46.200270 ], [ -70.281258, 46.201221 ], [ -70.279541, 46.201696 ], [ -70.278854, 46.203359 ], [ -70.277138, 46.203834 ], [ -70.277481, 46.204547 ], [ -70.276794, 46.205260 ], [ -70.276451, 46.207636 ], [ -70.274048, 46.208824 ], [ -70.272675, 46.210012 ], [ -70.271645, 46.210012 ], [ -70.272331, 46.211200 ], [ -70.270958, 46.210962 ], [ -70.270958, 46.211913 ], [ -70.271988, 46.212625 ], [ -70.271988, 46.213101 ], [ -70.271301, 46.213338 ], [ -70.272331, 46.214051 ], [ -70.274391, 46.214526 ], [ -70.274391, 46.215239 ], [ -70.273018, 46.216189 ], [ -70.273018, 46.216664 ], [ -70.273705, 46.216902 ], [ -70.270615, 46.216902 ], [ -70.268555, 46.218089 ], [ -70.267525, 46.219515 ], [ -70.267868, 46.221415 ], [ -70.265808, 46.223315 ], [ -70.265808, 46.224028 ], [ -70.267525, 46.224978 ], [ -70.267181, 46.225453 ], [ -70.265808, 46.225690 ], [ -70.265121, 46.226878 ], [ -70.264091, 46.227353 ], [ -70.264091, 46.228778 ], [ -70.261345, 46.229491 ], [ -70.259972, 46.230916 ], [ -70.261002, 46.231391 ], [ -70.259972, 46.232103 ], [ -70.259628, 46.234240 ], [ -70.257568, 46.236853 ], [ -70.257912, 46.238040 ], [ -70.259628, 46.238752 ], [ -70.256882, 46.240652 ], [ -70.257225, 46.242314 ], [ -70.256195, 46.243264 ], [ -70.256195, 46.244689 ], [ -70.254135, 46.245638 ], [ -70.254478, 46.246113 ], [ -70.255508, 46.246351 ], [ -70.252419, 46.248487 ], [ -70.251045, 46.248962 ], [ -70.251732, 46.250387 ], [ -70.251732, 46.252286 ], [ -70.254822, 46.253948 ], [ -70.254822, 46.254422 ], [ -70.253792, 46.254660 ], [ -70.253105, 46.255372 ], [ -70.253105, 46.259408 ], [ -70.251732, 46.260832 ], [ -70.250702, 46.260832 ], [ -70.250015, 46.262493 ], [ -70.250702, 46.262731 ], [ -70.250702, 46.263205 ], [ -70.249329, 46.264155 ], [ -70.249672, 46.264867 ], [ -70.248642, 46.265341 ], [ -70.248985, 46.267240 ], [ -70.243149, 46.271987 ], [ -70.243835, 46.272699 ], [ -70.243492, 46.273173 ], [ -70.242805, 46.273648 ], [ -70.241432, 46.272699 ], [ -70.240746, 46.273173 ], [ -70.241089, 46.275072 ], [ -70.239716, 46.275546 ], [ -70.239716, 46.276496 ], [ -70.240402, 46.277207 ], [ -70.240059, 46.279343 ], [ -70.237999, 46.281004 ], [ -70.236626, 46.281004 ], [ -70.236282, 46.281479 ], [ -70.235596, 46.281479 ], [ -70.234566, 46.283614 ], [ -70.232849, 46.284800 ], [ -70.231819, 46.287885 ], [ -70.231819, 46.291206 ], [ -70.229073, 46.291681 ], [ -70.229073, 46.292392 ], [ -70.227699, 46.292155 ], [ -70.227356, 46.292629 ], [ -70.226326, 46.292867 ], [ -70.223579, 46.292867 ], [ -70.223236, 46.293341 ], [ -70.220490, 46.293341 ], [ -70.218086, 46.294290 ], [ -70.217056, 46.294290 ], [ -70.217056, 46.295476 ], [ -70.216370, 46.295476 ], [ -70.215340, 46.294764 ], [ -70.213966, 46.296425 ], [ -70.214310, 46.297374 ], [ -70.212250, 46.298797 ], [ -70.211563, 46.298323 ], [ -70.210533, 46.298323 ], [ -70.209160, 46.299034 ], [ -70.207787, 46.299034 ], [ -70.206070, 46.299746 ], [ -70.205727, 46.300457 ], [ -70.207100, 46.301406 ], [ -70.205383, 46.302829 ], [ -70.206757, 46.305675 ], [ -70.206413, 46.309944 ], [ -70.205040, 46.310893 ], [ -70.203667, 46.312790 ], [ -70.203323, 46.314924 ], [ -70.204353, 46.315399 ], [ -70.204353, 46.316821 ], [ -70.206413, 46.318007 ], [ -70.207443, 46.319192 ], [ -70.206757, 46.321326 ], [ -70.207443, 46.322275 ], [ -70.206070, 46.323935 ], [ -70.206070, 46.324883 ], [ -70.207100, 46.326068 ], [ -70.207787, 46.328202 ], [ -70.209160, 46.329624 ], [ -70.207787, 46.331521 ], [ -70.205383, 46.332706 ], [ -70.205040, 46.333891 ], [ -70.202293, 46.335314 ], [ -70.201263, 46.337210 ], [ -70.195770, 46.341002 ], [ -70.195427, 46.342662 ], [ -70.196114, 46.343373 ], [ -70.193710, 46.345743 ], [ -70.193024, 46.347402 ], [ -70.191650, 46.347639 ], [ -70.191307, 46.348113 ], [ -70.192337, 46.349060 ], [ -70.191650, 46.350245 ], [ -70.189934, 46.350719 ], [ -70.188560, 46.350008 ], [ -70.184441, 46.352141 ], [ -70.183411, 46.351667 ], [ -70.182037, 46.352141 ], [ -70.181351, 46.354274 ], [ -70.177231, 46.355696 ], [ -70.176201, 46.356643 ], [ -70.175514, 46.358302 ], [ -70.172768, 46.359487 ], [ -70.169678, 46.359250 ], [ -70.166245, 46.357591 ], [ -70.164528, 46.359250 ], [ -70.163155, 46.359250 ], [ -70.162811, 46.360671 ], [ -70.161781, 46.361145 ], [ -70.160065, 46.360908 ], [ -70.160408, 46.359961 ], [ -70.159721, 46.359487 ], [ -70.158005, 46.359487 ], [ -70.158348, 46.360908 ], [ -70.156288, 46.361619 ], [ -70.154228, 46.360198 ], [ -70.150795, 46.359250 ], [ -70.148392, 46.359013 ], [ -70.145988, 46.360908 ], [ -70.144958, 46.362330 ], [ -70.141869, 46.362330 ], [ -70.140839, 46.363041 ], [ -70.140495, 46.363751 ], [ -70.141525, 46.364936 ], [ -70.139122, 46.365884 ], [ -70.137749, 46.369437 ], [ -70.136032, 46.370148 ], [ -70.134659, 46.368963 ], [ -70.131912, 46.369911 ], [ -70.129166, 46.369674 ], [ -70.129166, 46.370622 ], [ -70.127449, 46.370859 ], [ -70.126762, 46.371569 ], [ -70.127449, 46.372280 ], [ -70.128479, 46.379386 ], [ -70.126076, 46.381754 ], [ -70.124359, 46.381991 ], [ -70.121956, 46.382939 ], [ -70.116463, 46.385781 ], [ -70.116119, 46.387201 ], [ -70.117149, 46.387438 ], [ -70.116806, 46.388386 ], [ -70.115089, 46.388149 ], [ -70.115089, 46.385544 ], [ -70.114403, 46.385307 ], [ -70.113029, 46.386017 ], [ -70.110970, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112343, 46.388386 ], [ -70.110283, 46.387675 ], [ -70.109940, 46.389096 ], [ -70.108223, 46.388859 ], [ -70.108910, 46.388386 ], [ -70.108223, 46.387675 ], [ -70.107536, 46.388149 ], [ -70.107880, 46.389096 ], [ -70.109940, 46.390517 ], [ -70.109940, 46.390990 ], [ -70.109253, 46.391464 ], [ -70.108566, 46.391464 ], [ -70.107536, 46.390754 ], [ -70.106850, 46.390990 ], [ -70.106850, 46.391701 ], [ -70.107880, 46.392885 ], [ -70.106163, 46.393595 ], [ -70.105133, 46.393595 ], [ -70.104446, 46.394069 ], [ -70.104446, 46.395016 ], [ -70.102043, 46.396673 ], [ -70.101013, 46.398331 ], [ -70.101013, 46.401409 ], [ -70.098953, 46.400935 ], [ -70.100327, 46.402356 ], [ -70.099297, 46.403066 ], [ -70.100670, 46.403303 ], [ -70.098953, 46.403539 ], [ -70.097923, 46.404250 ], [ -70.098267, 46.404723 ], [ -70.100327, 46.404486 ], [ -70.101013, 46.405433 ], [ -70.097237, 46.405433 ], [ -70.095863, 46.406144 ], [ -70.095520, 46.407091 ], [ -70.096893, 46.406854 ], [ -70.096893, 46.407327 ], [ -70.095177, 46.407801 ], [ -70.094833, 46.408511 ], [ -70.097237, 46.409221 ], [ -70.096893, 46.409694 ], [ -70.094833, 46.409931 ], [ -70.092430, 46.409458 ], [ -70.091400, 46.410405 ], [ -70.089340, 46.411115 ], [ -70.087967, 46.410405 ], [ -70.087967, 46.409931 ], [ -70.086937, 46.409221 ], [ -70.083847, 46.410641 ], [ -70.081444, 46.410878 ], [ -70.079384, 46.410641 ], [ -70.078354, 46.409931 ], [ -70.076637, 46.409694 ], [ -70.073891, 46.410405 ], [ -70.072174, 46.411352 ], [ -70.067024, 46.412062 ], [ -70.065308, 46.413955 ], [ -70.061531, 46.413955 ], [ -70.060844, 46.414429 ], [ -70.057411, 46.414902 ], [ -70.056725, 46.415612 ], [ -70.053635, 46.432178 ], [ -70.023422, 46.573495 ], [ -69.982567, 46.573967 ], [ -69.800606, 46.573495 ], [ -69.721298, 46.574203 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 79, "y": 91 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.874664, 45.524630 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433395 ], [ -68.823509, 45.412189 ], [ -68.815269, 45.382055 ], [ -68.813553, 45.373855 ], [ -68.810120, 45.362760 ], [ -68.804626, 45.341046 ], [ -68.800163, 45.326565 ], [ -68.790207, 45.289380 ], [ -68.776131, 45.240327 ], [ -68.831062, 45.232107 ], [ -68.881187, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.906250, 45.136524 ], [ -68.906593, 45.136282 ], [ -68.933716, 45.132649 ], [ -68.933716, 45.516692 ], [ -68.906250, 45.520541 ], [ -68.874664, 45.524630 ] ] ], [ [ [ -68.823166, 46.092281 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.684837 ], [ -68.906250, 45.671644 ], [ -68.933716, 45.666846 ], [ -68.933716, 46.092281 ], [ -68.823166, 46.092281 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.933716, 45.666846 ], [ -68.933716, 46.092281 ], [ -68.823166, 46.092281 ], [ -68.823166, 45.915810 ], [ -68.827286, 45.684837 ], [ -68.906250, 45.671644 ], [ -68.933716, 45.666846 ] ] ], [ [ [ -68.933716, 45.516692 ], [ -68.906250, 45.520541 ], [ -68.874664, 45.524630 ], [ -68.857498, 45.527517 ], [ -68.828659, 45.433395 ], [ -68.823509, 45.412189 ], [ -68.815269, 45.382055 ], [ -68.813553, 45.373855 ], [ -68.810120, 45.362760 ], [ -68.804626, 45.341046 ], [ -68.800163, 45.326565 ], [ -68.790207, 45.289380 ], [ -68.776131, 45.240327 ], [ -68.831062, 45.232107 ], [ -68.881187, 45.225095 ], [ -68.856812, 45.142820 ], [ -68.906250, 45.136524 ], [ -68.906593, 45.136282 ], [ -68.933716, 45.132649 ], [ -68.933716, 45.516692 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 79, "y": 90 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "piscataquis", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.821449, 46.572551 ], [ -68.821449, 46.483501 ], [ -68.822136, 46.448976 ], [ -68.822136, 46.402592 ], [ -68.821793, 46.395963 ], [ -68.819733, 46.395963 ], [ -68.819733, 46.380096 ], [ -68.821106, 46.251574 ], [ -68.820763, 46.211438 ], [ -68.822823, 46.144161 ], [ -68.823166, 46.073231 ], [ -68.823509, 46.063941 ], [ -68.823509, 46.054173 ], [ -68.933716, 46.054173 ], [ -68.933716, 46.572787 ], [ -68.906250, 46.572787 ], [ -68.821449, 46.572551 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "021", "COUNTYNS": "00581296", "GEOID": "23021", "NAME": "Piscataquis", "NAMELSAD": "Piscataquis County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10258678459, "AWATER": 1080563045, "INTPTLAT": "+45.9176853", "INTPTLON": "-069.1045359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 46.572787 ], [ -68.821449, 46.572551 ], [ -68.821449, 46.483501 ], [ -68.822136, 46.448976 ], [ -68.822136, 46.402592 ], [ -68.821793, 46.395963 ], [ -68.819733, 46.395963 ], [ -68.819733, 46.380096 ], [ -68.821106, 46.251574 ], [ -68.820763, 46.211438 ], [ -68.822823, 46.144161 ], [ -68.823166, 46.073231 ], [ -68.823509, 46.063941 ], [ -68.823509, 46.054173 ], [ -68.933716, 46.054173 ], [ -68.933716, 46.572787 ], [ -68.906250, 46.572787 ] ] ] } } ] } ] } ] } diff --git a/tests/wyalkatchem/out/-pk_-pf_-Z9_-z12_-ldata.json b/tests/wyalkatchem/out/-pk_-pf_-Z9_-z12_-ldata.json index 939bb04..908d4cb 100644 --- a/tests/wyalkatchem/out/-pk_-pf_-Z9_-z12_-ldata.json +++ b/tests/wyalkatchem/out/-pk_-pf_-Z9_-z12_-ldata.json @@ -12,265 +12,265 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 422, "y": 303 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.274761, -31.353197 ], [ 117.274761, -31.369614 ], [ 117.278023, -31.369614 ], [ 117.273388, -31.373278 ], [ 117.273388, -31.391597 ], [ 117.270298, -31.391597 ], [ 117.270298, -31.402440 ], [ 117.279911, -31.402440 ], [ 117.280254, -31.402587 ], [ 117.280254, -31.403612 ], [ 117.290211, -31.403612 ], [ 117.290211, -31.394528 ], [ 117.298794, -31.394528 ], [ 117.298794, -31.396433 ], [ 117.318707, -31.396579 ], [ 117.323170, -31.398631 ], [ 117.324028, -31.399510 ], [ 117.325401, -31.402147 ], [ 117.331581, -31.402147 ], [ 117.331581, -31.411084 ], [ 117.338104, -31.411084 ], [ 117.338104, -31.423097 ], [ 117.335014, -31.423097 ], [ 117.335014, -31.436719 ], [ 117.368317, -31.436719 ], [ 117.368145, -31.433643 ], [ 117.397842, -31.433643 ], [ 117.397842, -31.439062 ], [ 117.421875, -31.438916 ], [ 117.435608, -31.438916 ], [ 117.435608, -31.488992 ], [ 117.421875, -31.488992 ], [ 117.397842, -31.489139 ], [ 117.388058, -31.488114 ], [ 117.379131, -31.485333 ], [ 117.377930, -31.485772 ], [ 117.368317, -31.486650 ], [ 117.335014, -31.486650 ], [ 117.325401, -31.485772 ], [ 117.315960, -31.482844 ], [ 117.307377, -31.478306 ], [ 117.299652, -31.472010 ], [ 117.293472, -31.464397 ], [ 117.288837, -31.455757 ], [ 117.288151, -31.453707 ], [ 117.280254, -31.453707 ], [ 117.259827, -31.451364 ], [ 117.250557, -31.448435 ], [ 117.241974, -31.443749 ], [ 117.234592, -31.437598 ], [ 117.228584, -31.429981 ], [ 117.223949, -31.421485 ], [ 117.221203, -31.412110 ], [ 117.220173, -31.402440 ], [ 117.220173, -31.391597 ], [ 117.221203, -31.381925 ], [ 117.223434, -31.374598 ], [ 117.224121, -31.364338 ], [ 117.224808, -31.361992 ], [ 117.224808, -31.357448 ], [ 117.223091, -31.355396 ], [ 117.222061, -31.353637 ], [ 117.218456, -31.346747 ], [ 117.216911, -31.341909 ], [ 117.280083, -31.341909 ], [ 117.280083, -31.353197 ], [ 117.274761, -31.353197 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.280083, -31.341909 ], [ 117.280083, -31.353197 ], [ 117.274761, -31.353197 ], [ 117.274761, -31.369614 ], [ 117.278023, -31.369614 ], [ 117.273388, -31.373278 ], [ 117.273388, -31.391597 ], [ 117.270298, -31.391597 ], [ 117.270298, -31.402440 ], [ 117.279911, -31.402440 ], [ 117.280254, -31.402587 ], [ 117.280254, -31.403612 ], [ 117.290211, -31.403612 ], [ 117.290211, -31.394528 ], [ 117.298794, -31.394528 ], [ 117.298794, -31.396433 ], [ 117.318707, -31.396579 ], [ 117.323170, -31.398631 ], [ 117.324028, -31.399510 ], [ 117.325401, -31.402147 ], [ 117.331581, -31.402147 ], [ 117.331581, -31.411084 ], [ 117.338104, -31.411084 ], [ 117.338104, -31.423097 ], [ 117.335014, -31.423097 ], [ 117.335014, -31.436719 ], [ 117.368317, -31.436719 ], [ 117.368145, -31.433643 ], [ 117.397842, -31.433643 ], [ 117.397842, -31.439062 ], [ 117.421875, -31.438916 ], [ 117.435608, -31.438916 ], [ 117.435608, -31.488992 ], [ 117.421875, -31.488992 ], [ 117.397842, -31.489139 ], [ 117.388058, -31.488114 ], [ 117.379131, -31.485333 ], [ 117.377930, -31.485772 ], [ 117.368317, -31.486650 ], [ 117.335014, -31.486650 ], [ 117.325401, -31.485772 ], [ 117.315960, -31.482844 ], [ 117.307377, -31.478306 ], [ 117.299652, -31.472010 ], [ 117.293472, -31.464397 ], [ 117.288837, -31.455757 ], [ 117.288151, -31.453707 ], [ 117.280254, -31.453707 ], [ 117.259827, -31.451364 ], [ 117.250557, -31.448435 ], [ 117.241974, -31.443749 ], [ 117.234592, -31.437598 ], [ 117.228584, -31.429981 ], [ 117.223949, -31.421485 ], [ 117.221203, -31.412110 ], [ 117.220173, -31.402440 ], [ 117.220173, -31.391597 ], [ 117.221203, -31.381925 ], [ 117.223434, -31.374598 ], [ 117.224121, -31.364338 ], [ 117.224808, -31.361992 ], [ 117.224808, -31.357448 ], [ 117.223091, -31.355396 ], [ 117.222061, -31.353637 ], [ 117.218456, -31.346747 ], [ 117.216911, -31.341909 ], [ 117.280083, -31.341909 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 422, "y": 302 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.378616, -31.102775 ], [ 117.376556, -31.103803 ], [ 117.362309, -31.103803 ], [ 117.359734, -31.102922 ], [ 117.346516, -31.102922 ], [ 117.346344, -31.112475 ], [ 117.327976, -31.112475 ], [ 117.327976, -31.142452 ], [ 117.324543, -31.142452 ], [ 117.324543, -31.152589 ], [ 117.326088, -31.152589 ], [ 117.326088, -31.162431 ], [ 117.323856, -31.162137 ], [ 117.294674, -31.165663 ], [ 117.294502, -31.252433 ], [ 117.301025, -31.252433 ], [ 117.301025, -31.269014 ], [ 117.299995, -31.270628 ], [ 117.298794, -31.271802 ], [ 117.297935, -31.273563 ], [ 117.297935, -31.276497 ], [ 117.278194, -31.276350 ], [ 117.274418, -31.275176 ], [ 117.253132, -31.275323 ], [ 117.253132, -31.282365 ], [ 117.253990, -31.282365 ], [ 117.254162, -31.287940 ], [ 117.262573, -31.287940 ], [ 117.262573, -31.295274 ], [ 117.260170, -31.295274 ], [ 117.260170, -31.303782 ], [ 117.258968, -31.303782 ], [ 117.258968, -31.311408 ], [ 117.264633, -31.311408 ], [ 117.264633, -31.327686 ], [ 117.280083, -31.327686 ], [ 117.280083, -31.353197 ], [ 117.274761, -31.353197 ], [ 117.274761, -31.365364 ], [ 117.224121, -31.365364 ], [ 117.224808, -31.361992 ], [ 117.224808, -31.357448 ], [ 117.223091, -31.355396 ], [ 117.222061, -31.353637 ], [ 117.218456, -31.346747 ], [ 117.215710, -31.337364 ], [ 117.215366, -31.335311 ], [ 117.212791, -31.330472 ], [ 117.210045, -31.321087 ], [ 117.209015, -31.309355 ], [ 117.207813, -31.307155 ], [ 117.205067, -31.297768 ], [ 117.204723, -31.294394 ], [ 117.204037, -31.292047 ], [ 117.203007, -31.282365 ], [ 117.203007, -31.275323 ], [ 117.204037, -31.265493 ], [ 117.206783, -31.256101 ], [ 117.211418, -31.247443 ], [ 117.217770, -31.239958 ], [ 117.225323, -31.233647 ], [ 117.233906, -31.229096 ], [ 117.243347, -31.226307 ], [ 117.244549, -31.226161 ], [ 117.244549, -31.165663 ], [ 117.245579, -31.156115 ], [ 117.248325, -31.146859 ], [ 117.252789, -31.138338 ], [ 117.258797, -31.130697 ], [ 117.266178, -31.124526 ], [ 117.274590, -31.119823 ], [ 117.278023, -31.118794 ], [ 117.278023, -31.112034 ], [ 117.279053, -31.102334 ], [ 117.281971, -31.093073 ], [ 117.286606, -31.084547 ], [ 117.292786, -31.076902 ], [ 117.300339, -31.070727 ], [ 117.308922, -31.066169 ], [ 117.315102, -31.064404 ], [ 117.317848, -31.062051 ], [ 117.326431, -31.057199 ], [ 117.336216, -31.054110 ], [ 117.346859, -31.052934 ], [ 117.359734, -31.052934 ], [ 117.369862, -31.053816 ], [ 117.378616, -31.052640 ], [ 117.435608, -31.052640 ], [ 117.435608, -31.102628 ], [ 117.421875, -31.102628 ], [ 117.378616, -31.102775 ] ] ], [ [ [ 117.426510, -31.200175 ], [ 117.428570, -31.200175 ], [ 117.428570, -31.195329 ], [ 117.435608, -31.195329 ], [ 117.435608, -31.209278 ], [ 117.426510, -31.209425 ], [ 117.426510, -31.200175 ] ] ], [ [ [ 117.435608, -31.119823 ], [ 117.435608, -31.183728 ], [ 117.435265, -31.183728 ], [ 117.435608, -31.119823 ] ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.435608, -31.102628 ], [ 117.421875, -31.102628 ], [ 117.378616, -31.102775 ], [ 117.376556, -31.103803 ], [ 117.362309, -31.103803 ], [ 117.359734, -31.102922 ], [ 117.346516, -31.102922 ], [ 117.346344, -31.112475 ], [ 117.327976, -31.112475 ], [ 117.327976, -31.142452 ], [ 117.324543, -31.142452 ], [ 117.324543, -31.152589 ], [ 117.326088, -31.152589 ], [ 117.326088, -31.162431 ], [ 117.323856, -31.162137 ], [ 117.294674, -31.165663 ], [ 117.294502, -31.252433 ], [ 117.301025, -31.252433 ], [ 117.301025, -31.269014 ], [ 117.299995, -31.270628 ], [ 117.298794, -31.271802 ], [ 117.297935, -31.273563 ], [ 117.297935, -31.276497 ], [ 117.278194, -31.276350 ], [ 117.274418, -31.275176 ], [ 117.253132, -31.275323 ], [ 117.253132, -31.282365 ], [ 117.253990, -31.282365 ], [ 117.254162, -31.287940 ], [ 117.262573, -31.287940 ], [ 117.262573, -31.295274 ], [ 117.260170, -31.295274 ], [ 117.260170, -31.303782 ], [ 117.258968, -31.303782 ], [ 117.258968, -31.311408 ], [ 117.264633, -31.311408 ], [ 117.264633, -31.327686 ], [ 117.280083, -31.327686 ], [ 117.280083, -31.353197 ], [ 117.274761, -31.353197 ], [ 117.274761, -31.365364 ], [ 117.224121, -31.365364 ], [ 117.224808, -31.361992 ], [ 117.224808, -31.357448 ], [ 117.223091, -31.355396 ], [ 117.222061, -31.353637 ], [ 117.218456, -31.346747 ], [ 117.215710, -31.337364 ], [ 117.215366, -31.335311 ], [ 117.212791, -31.330472 ], [ 117.210045, -31.321087 ], [ 117.209015, -31.309355 ], [ 117.207813, -31.307155 ], [ 117.205067, -31.297768 ], [ 117.204723, -31.294394 ], [ 117.204037, -31.292047 ], [ 117.203007, -31.282365 ], [ 117.203007, -31.275323 ], [ 117.204037, -31.265493 ], [ 117.206783, -31.256101 ], [ 117.211418, -31.247443 ], [ 117.217770, -31.239958 ], [ 117.225323, -31.233647 ], [ 117.233906, -31.229096 ], [ 117.243347, -31.226307 ], [ 117.244549, -31.226161 ], [ 117.244549, -31.165663 ], [ 117.245579, -31.156115 ], [ 117.248325, -31.146859 ], [ 117.252789, -31.138338 ], [ 117.258797, -31.130697 ], [ 117.266178, -31.124526 ], [ 117.274590, -31.119823 ], [ 117.278023, -31.118794 ], [ 117.278023, -31.112034 ], [ 117.279053, -31.102334 ], [ 117.281971, -31.093073 ], [ 117.286606, -31.084547 ], [ 117.292786, -31.076902 ], [ 117.300339, -31.070727 ], [ 117.308922, -31.066169 ], [ 117.315102, -31.064404 ], [ 117.317848, -31.062051 ], [ 117.326431, -31.057199 ], [ 117.336216, -31.054110 ], [ 117.346859, -31.052934 ], [ 117.359734, -31.052934 ], [ 117.369862, -31.053816 ], [ 117.378616, -31.052640 ], [ 117.435608, -31.052640 ], [ 117.435608, -31.102628 ] ] ], [ [ [ 117.435608, -31.195329 ], [ 117.435608, -31.209278 ], [ 117.426510, -31.209425 ], [ 117.426510, -31.200175 ], [ 117.428570, -31.200175 ], [ 117.428570, -31.195329 ], [ 117.435608, -31.195329 ] ] ], [ [ [ 117.435608, -31.102628 ], [ 117.435608, -31.183728 ], [ 117.435265, -31.183728 ], [ 117.435608, -31.102628 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 423, "y": 303 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.435780, -31.438916 ], [ 117.435780, -31.353637 ], [ 117.436123, -31.351145 ], [ 117.436123, -31.341909 ], [ 117.492085, -31.341909 ], [ 117.491226, -31.344841 ], [ 117.486591, -31.353637 ], [ 117.485905, -31.354370 ], [ 117.485561, -31.357448 ], [ 117.485733, -31.438916 ], [ 117.484703, -31.448728 ], [ 117.481956, -31.458100 ], [ 117.477322, -31.466739 ], [ 117.470970, -31.474353 ], [ 117.463417, -31.480648 ], [ 117.454834, -31.485186 ], [ 117.445393, -31.488114 ], [ 117.435608, -31.488992 ], [ 117.411232, -31.488992 ], [ 117.408142, -31.489139 ], [ 117.408142, -31.439062 ], [ 117.421875, -31.438916 ], [ 117.435780, -31.438916 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.492085, -31.341909 ], [ 117.491226, -31.344841 ], [ 117.486591, -31.353637 ], [ 117.485905, -31.354370 ], [ 117.485561, -31.357448 ], [ 117.485733, -31.438916 ], [ 117.484703, -31.448728 ], [ 117.481956, -31.458100 ], [ 117.477322, -31.466739 ], [ 117.470970, -31.474353 ], [ 117.463417, -31.480648 ], [ 117.454834, -31.485186 ], [ 117.445393, -31.488114 ], [ 117.435608, -31.488992 ], [ 117.411232, -31.488992 ], [ 117.408142, -31.489139 ], [ 117.408142, -31.439062 ], [ 117.421875, -31.438916 ], [ 117.435780, -31.438916 ], [ 117.435780, -31.353637 ], [ 117.436123, -31.351145 ], [ 117.436123, -31.341909 ], [ 117.492085, -31.341909 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 423, "y": 302 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.436123, -31.351145 ], [ 117.436123, -31.325633 ], [ 117.445049, -31.325780 ], [ 117.445049, -31.304662 ], [ 117.447624, -31.299675 ], [ 117.447624, -31.266520 ], [ 117.448311, -31.265786 ], [ 117.448311, -31.204433 ], [ 117.446766, -31.205167 ], [ 117.444191, -31.208103 ], [ 117.441788, -31.209131 ], [ 117.426510, -31.209425 ], [ 117.426510, -31.200175 ], [ 117.428570, -31.200175 ], [ 117.428570, -31.195329 ], [ 117.441273, -31.195329 ], [ 117.441273, -31.190924 ], [ 117.443333, -31.190924 ], [ 117.443333, -31.183728 ], [ 117.435265, -31.183728 ], [ 117.435265, -31.170216 ], [ 117.441444, -31.170069 ], [ 117.445736, -31.169629 ], [ 117.445564, -31.102628 ], [ 117.408142, -31.102628 ], [ 117.408142, -31.052640 ], [ 117.445564, -31.052640 ], [ 117.455349, -31.053669 ], [ 117.464619, -31.056463 ], [ 117.473373, -31.061022 ], [ 117.480927, -31.067345 ], [ 117.487106, -31.074844 ], [ 117.491741, -31.083518 ], [ 117.494659, -31.092926 ], [ 117.495518, -31.102628 ], [ 117.495689, -31.169482 ], [ 117.494659, -31.179763 ], [ 117.493458, -31.183434 ], [ 117.494659, -31.185637 ], [ 117.497406, -31.194889 ], [ 117.498264, -31.204433 ], [ 117.498436, -31.265786 ], [ 117.497578, -31.272976 ], [ 117.497578, -31.299675 ], [ 117.496204, -31.311262 ], [ 117.495003, -31.314488 ], [ 117.495003, -31.325780 ], [ 117.494144, -31.335458 ], [ 117.491226, -31.344841 ], [ 117.486591, -31.353637 ], [ 117.485905, -31.354370 ], [ 117.485561, -31.357448 ], [ 117.485561, -31.365364 ], [ 117.435608, -31.365364 ], [ 117.435780, -31.353637 ], [ 117.436123, -31.351145 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.445564, -31.052640 ], [ 117.455349, -31.053669 ], [ 117.464619, -31.056463 ], [ 117.473373, -31.061022 ], [ 117.480927, -31.067345 ], [ 117.487106, -31.074844 ], [ 117.491741, -31.083518 ], [ 117.494659, -31.092926 ], [ 117.495518, -31.102628 ], [ 117.495689, -31.169482 ], [ 117.494659, -31.179763 ], [ 117.493458, -31.183434 ], [ 117.494659, -31.185637 ], [ 117.497406, -31.194889 ], [ 117.498264, -31.204433 ], [ 117.498436, -31.265786 ], [ 117.497578, -31.272976 ], [ 117.497578, -31.299675 ], [ 117.496204, -31.311262 ], [ 117.495003, -31.314488 ], [ 117.495003, -31.325780 ], [ 117.494144, -31.335458 ], [ 117.491226, -31.344841 ], [ 117.486591, -31.353637 ], [ 117.485905, -31.354370 ], [ 117.485561, -31.357448 ], [ 117.485561, -31.365364 ], [ 117.448311, -31.215004 ], [ 117.448311, -31.204433 ], [ 117.446766, -31.205167 ], [ 117.446079, -31.205901 ], [ 117.442303, -31.190924 ], [ 117.443333, -31.190924 ], [ 117.443333, -31.183728 ], [ 117.440586, -31.183728 ], [ 117.437153, -31.170216 ], [ 117.441444, -31.170069 ], [ 117.445736, -31.169629 ], [ 117.445564, -31.102628 ], [ 117.420502, -31.102628 ], [ 117.408142, -31.052640 ], [ 117.445564, -31.052640 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 845, "y": 606 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.274847, -31.353270 ], [ 117.274847, -31.369614 ], [ 117.278023, -31.369614 ], [ 117.273388, -31.373352 ], [ 117.273388, -31.391597 ], [ 117.270298, -31.391597 ], [ 117.270298, -31.402513 ], [ 117.279911, -31.402513 ], [ 117.280254, -31.402660 ], [ 117.280254, -31.403685 ], [ 117.290297, -31.403685 ], [ 117.290297, -31.394601 ], [ 117.298794, -31.394601 ], [ 117.298794, -31.396433 ], [ 117.309351, -31.396359 ], [ 117.309351, -31.396579 ], [ 117.318707, -31.396579 ], [ 117.321968, -31.397971 ], [ 117.323170, -31.398631 ], [ 117.324028, -31.399583 ], [ 117.325058, -31.401634 ], [ 117.325401, -31.402147 ], [ 117.331667, -31.402147 ], [ 117.331667, -31.411157 ], [ 117.338190, -31.411157 ], [ 117.338190, -31.423097 ], [ 117.335100, -31.423097 ], [ 117.335100, -31.436719 ], [ 117.368317, -31.436719 ], [ 117.368231, -31.433716 ], [ 117.397928, -31.433716 ], [ 117.397928, -31.439136 ], [ 117.409687, -31.439136 ], [ 117.409945, -31.438989 ], [ 117.428741, -31.438989 ], [ 117.428741, -31.488992 ], [ 117.411232, -31.488992 ], [ 117.409601, -31.489139 ], [ 117.397842, -31.489139 ], [ 117.388144, -31.488114 ], [ 117.379131, -31.485406 ], [ 117.378016, -31.485772 ], [ 117.368317, -31.486723 ], [ 117.335100, -31.486723 ], [ 117.325401, -31.485772 ], [ 117.315960, -31.482917 ], [ 117.307377, -31.478306 ], [ 117.299738, -31.472083 ], [ 117.293558, -31.464470 ], [ 117.288923, -31.455831 ], [ 117.288237, -31.453707 ], [ 117.280254, -31.453707 ], [ 117.270555, -31.452755 ], [ 117.269783, -31.452536 ], [ 117.259827, -31.451438 ], [ 117.250643, -31.448509 ], [ 117.242060, -31.443822 ], [ 117.234678, -31.437598 ], [ 117.228584, -31.430055 ], [ 117.224035, -31.421485 ], [ 117.221203, -31.412183 ], [ 117.220259, -31.402513 ], [ 117.220259, -31.391670 ], [ 117.221203, -31.381925 ], [ 117.223434, -31.374598 ], [ 117.223434, -31.373352 ], [ 117.224207, -31.364411 ], [ 117.224894, -31.362066 ], [ 117.224894, -31.357522 ], [ 117.223091, -31.355396 ], [ 117.222147, -31.353637 ], [ 117.219057, -31.347773 ], [ 117.280169, -31.347773 ], [ 117.280169, -31.353270 ], [ 117.274847, -31.353270 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.280169, -31.347773 ], [ 117.280169, -31.353270 ], [ 117.274847, -31.353270 ], [ 117.274847, -31.369614 ], [ 117.278023, -31.369614 ], [ 117.273388, -31.373352 ], [ 117.273388, -31.391597 ], [ 117.270298, -31.391597 ], [ 117.270298, -31.402513 ], [ 117.279911, -31.402513 ], [ 117.280254, -31.402660 ], [ 117.280254, -31.403685 ], [ 117.290297, -31.403685 ], [ 117.290297, -31.394601 ], [ 117.298794, -31.394601 ], [ 117.298794, -31.396433 ], [ 117.309351, -31.396359 ], [ 117.309351, -31.396579 ], [ 117.318707, -31.396579 ], [ 117.321968, -31.397971 ], [ 117.323170, -31.398631 ], [ 117.324028, -31.399583 ], [ 117.325058, -31.401634 ], [ 117.325401, -31.402147 ], [ 117.331667, -31.402147 ], [ 117.331667, -31.411157 ], [ 117.338190, -31.411157 ], [ 117.338190, -31.423097 ], [ 117.335100, -31.423097 ], [ 117.335100, -31.436719 ], [ 117.368317, -31.436719 ], [ 117.368231, -31.433716 ], [ 117.397928, -31.433716 ], [ 117.397928, -31.439136 ], [ 117.409687, -31.439136 ], [ 117.409945, -31.438989 ], [ 117.428741, -31.438989 ], [ 117.428741, -31.488992 ], [ 117.411232, -31.488992 ], [ 117.409601, -31.489139 ], [ 117.397842, -31.489139 ], [ 117.388144, -31.488114 ], [ 117.379131, -31.485406 ], [ 117.378016, -31.485772 ], [ 117.368317, -31.486723 ], [ 117.335100, -31.486723 ], [ 117.325401, -31.485772 ], [ 117.315960, -31.482917 ], [ 117.307377, -31.478306 ], [ 117.299738, -31.472083 ], [ 117.293558, -31.464470 ], [ 117.288923, -31.455831 ], [ 117.288237, -31.453707 ], [ 117.280254, -31.453707 ], [ 117.270555, -31.452755 ], [ 117.269783, -31.452536 ], [ 117.259827, -31.451438 ], [ 117.250643, -31.448509 ], [ 117.242060, -31.443822 ], [ 117.234678, -31.437598 ], [ 117.228584, -31.430055 ], [ 117.224035, -31.421485 ], [ 117.221203, -31.412183 ], [ 117.220259, -31.402513 ], [ 117.220259, -31.391670 ], [ 117.221203, -31.381925 ], [ 117.223434, -31.374598 ], [ 117.223434, -31.373352 ], [ 117.224207, -31.364411 ], [ 117.224894, -31.362066 ], [ 117.224894, -31.357522 ], [ 117.223091, -31.355396 ], [ 117.222147, -31.353637 ], [ 117.219057, -31.347773 ], [ 117.280169, -31.347773 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 845, "y": 605 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.378702, -31.102775 ], [ 117.376642, -31.103803 ], [ 117.362309, -31.103803 ], [ 117.359819, -31.102922 ], [ 117.346945, -31.102922 ], [ 117.346516, -31.102995 ], [ 117.346430, -31.103656 ], [ 117.346430, -31.112475 ], [ 117.328062, -31.112475 ], [ 117.327976, -31.142452 ], [ 117.324543, -31.142452 ], [ 117.324543, -31.152662 ], [ 117.326174, -31.152662 ], [ 117.326174, -31.162505 ], [ 117.323856, -31.162211 ], [ 117.295618, -31.165516 ], [ 117.294674, -31.165736 ], [ 117.294588, -31.252433 ], [ 117.301025, -31.252506 ], [ 117.301025, -31.269014 ], [ 117.300081, -31.270628 ], [ 117.298880, -31.271875 ], [ 117.297935, -31.273563 ], [ 117.297935, -31.276570 ], [ 117.278194, -31.276424 ], [ 117.274504, -31.275250 ], [ 117.253132, -31.275323 ], [ 117.253132, -31.282365 ], [ 117.254076, -31.282365 ], [ 117.254162, -31.288013 ], [ 117.262573, -31.288013 ], [ 117.262573, -31.295274 ], [ 117.260170, -31.295274 ], [ 117.260170, -31.303855 ], [ 117.259054, -31.303855 ], [ 117.259054, -31.311408 ], [ 117.264719, -31.311408 ], [ 117.264719, -31.327686 ], [ 117.280169, -31.327686 ], [ 117.280169, -31.353270 ], [ 117.274847, -31.353270 ], [ 117.274847, -31.359501 ], [ 117.224894, -31.359501 ], [ 117.224894, -31.357522 ], [ 117.223091, -31.355396 ], [ 117.222147, -31.353637 ], [ 117.218542, -31.346747 ], [ 117.215710, -31.337437 ], [ 117.215452, -31.335384 ], [ 117.212877, -31.330546 ], [ 117.210045, -31.321161 ], [ 117.209101, -31.311408 ], [ 117.209101, -31.309355 ], [ 117.207899, -31.307228 ], [ 117.205067, -31.297841 ], [ 117.204723, -31.294394 ], [ 117.204037, -31.292121 ], [ 117.203093, -31.282365 ], [ 117.203093, -31.275323 ], [ 117.204037, -31.265566 ], [ 117.206869, -31.256175 ], [ 117.211504, -31.247516 ], [ 117.217770, -31.239958 ], [ 117.225323, -31.233720 ], [ 117.233992, -31.229096 ], [ 117.243347, -31.226307 ], [ 117.244549, -31.226161 ], [ 117.244635, -31.165663 ], [ 117.245579, -31.156115 ], [ 117.248325, -31.146859 ], [ 117.252874, -31.138338 ], [ 117.258883, -31.130771 ], [ 117.266264, -31.124599 ], [ 117.274675, -31.119897 ], [ 117.278023, -31.118794 ], [ 117.278023, -31.112108 ], [ 117.279053, -31.102407 ], [ 117.281971, -31.093073 ], [ 117.286606, -31.084547 ], [ 117.292786, -31.076975 ], [ 117.300425, -31.070800 ], [ 117.309008, -31.066242 ], [ 117.315102, -31.064404 ], [ 117.317848, -31.062051 ], [ 117.326431, -31.057199 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052934 ], [ 117.359819, -31.052934 ], [ 117.369862, -31.053816 ], [ 117.377329, -31.052934 ], [ 117.378702, -31.052713 ], [ 117.428741, -31.052713 ], [ 117.428741, -31.102701 ], [ 117.421875, -31.102701 ], [ 117.378702, -31.102775 ] ] ], [ [ [ 117.426510, -31.200248 ], [ 117.428656, -31.200248 ], [ 117.428741, -31.146859 ], [ 117.428741, -31.209425 ], [ 117.426510, -31.209498 ], [ 117.426510, -31.200248 ] ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.428741, -31.102701 ], [ 117.421875, -31.102701 ], [ 117.378702, -31.102775 ], [ 117.376642, -31.103803 ], [ 117.362309, -31.103803 ], [ 117.359819, -31.102922 ], [ 117.346945, -31.102922 ], [ 117.346516, -31.102995 ], [ 117.346430, -31.103656 ], [ 117.346430, -31.112475 ], [ 117.328062, -31.112475 ], [ 117.327976, -31.142452 ], [ 117.324543, -31.142452 ], [ 117.324543, -31.152662 ], [ 117.326174, -31.152662 ], [ 117.326174, -31.162505 ], [ 117.323856, -31.162211 ], [ 117.295618, -31.165516 ], [ 117.294674, -31.165736 ], [ 117.294588, -31.252433 ], [ 117.301025, -31.252506 ], [ 117.301025, -31.269014 ], [ 117.300081, -31.270628 ], [ 117.298880, -31.271875 ], [ 117.297935, -31.273563 ], [ 117.297935, -31.276570 ], [ 117.278194, -31.276424 ], [ 117.274504, -31.275250 ], [ 117.253132, -31.275323 ], [ 117.253132, -31.282365 ], [ 117.254076, -31.282365 ], [ 117.254162, -31.288013 ], [ 117.262573, -31.288013 ], [ 117.262573, -31.295274 ], [ 117.260170, -31.295274 ], [ 117.260170, -31.303855 ], [ 117.259054, -31.303855 ], [ 117.259054, -31.311408 ], [ 117.264719, -31.311408 ], [ 117.264719, -31.327686 ], [ 117.280169, -31.327686 ], [ 117.280169, -31.353270 ], [ 117.274847, -31.353270 ], [ 117.274847, -31.359501 ], [ 117.224894, -31.359501 ], [ 117.224894, -31.357522 ], [ 117.223091, -31.355396 ], [ 117.222147, -31.353637 ], [ 117.218542, -31.346747 ], [ 117.215710, -31.337437 ], [ 117.215452, -31.335384 ], [ 117.212877, -31.330546 ], [ 117.210045, -31.321161 ], [ 117.209101, -31.311408 ], [ 117.209101, -31.309355 ], [ 117.207899, -31.307228 ], [ 117.205067, -31.297841 ], [ 117.204723, -31.294394 ], [ 117.204037, -31.292121 ], [ 117.203093, -31.282365 ], [ 117.203093, -31.275323 ], [ 117.204037, -31.265566 ], [ 117.206869, -31.256175 ], [ 117.211504, -31.247516 ], [ 117.217770, -31.239958 ], [ 117.225323, -31.233720 ], [ 117.233992, -31.229096 ], [ 117.243347, -31.226307 ], [ 117.244549, -31.226161 ], [ 117.244635, -31.165663 ], [ 117.245579, -31.156115 ], [ 117.248325, -31.146859 ], [ 117.252874, -31.138338 ], [ 117.258883, -31.130771 ], [ 117.266264, -31.124599 ], [ 117.274675, -31.119897 ], [ 117.278023, -31.118794 ], [ 117.278023, -31.112108 ], [ 117.279053, -31.102407 ], [ 117.281971, -31.093073 ], [ 117.286606, -31.084547 ], [ 117.292786, -31.076975 ], [ 117.300425, -31.070800 ], [ 117.309008, -31.066242 ], [ 117.315102, -31.064404 ], [ 117.317848, -31.062051 ], [ 117.326431, -31.057199 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052934 ], [ 117.359819, -31.052934 ], [ 117.369862, -31.053816 ], [ 117.377329, -31.052934 ], [ 117.378702, -31.052713 ], [ 117.428741, -31.052713 ], [ 117.428741, -31.102701 ] ] ], [ [ [ 117.428741, -31.102701 ], [ 117.428741, -31.209425 ], [ 117.426510, -31.209498 ], [ 117.426510, -31.200248 ], [ 117.428656, -31.200248 ], [ 117.428741, -31.102701 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 845, "y": 604 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.428741, -31.058816 ], [ 117.323599, -31.058816 ], [ 117.326431, -31.057199 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052934 ], [ 117.359819, -31.052934 ], [ 117.369862, -31.053816 ], [ 117.377329, -31.052934 ], [ 117.378702, -31.052713 ], [ 117.428741, -31.052713 ], [ 117.428741, -31.058816 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.428741, -31.052713 ], [ 117.428741, -31.058816 ], [ 117.323599, -31.058816 ], [ 117.326431, -31.057199 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052934 ], [ 117.359819, -31.052934 ], [ 117.369862, -31.053816 ], [ 117.377329, -31.052934 ], [ 117.378702, -31.052713 ], [ 117.428741, -31.052713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 846, "y": 606 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.435780, -31.407934 ], [ 117.435608, -31.407934 ], [ 117.435694, -31.354223 ], [ 117.435780, -31.353637 ], [ 117.436209, -31.351218 ], [ 117.436209, -31.347773 ], [ 117.489767, -31.347773 ], [ 117.486591, -31.353637 ], [ 117.485905, -31.354443 ], [ 117.485647, -31.357448 ], [ 117.485733, -31.438989 ], [ 117.484789, -31.448802 ], [ 117.481956, -31.458174 ], [ 117.477322, -31.466813 ], [ 117.471056, -31.474426 ], [ 117.463503, -31.480648 ], [ 117.454834, -31.485259 ], [ 117.445393, -31.488114 ], [ 117.435608, -31.488992 ], [ 117.415009, -31.488992 ], [ 117.415009, -31.438989 ], [ 117.435780, -31.438989 ], [ 117.435780, -31.407934 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.489767, -31.347773 ], [ 117.486591, -31.353637 ], [ 117.485905, -31.354443 ], [ 117.485647, -31.357448 ], [ 117.485733, -31.438989 ], [ 117.484789, -31.448802 ], [ 117.481956, -31.458174 ], [ 117.477322, -31.466813 ], [ 117.471056, -31.474426 ], [ 117.463503, -31.480648 ], [ 117.454834, -31.485259 ], [ 117.445393, -31.488114 ], [ 117.435608, -31.488992 ], [ 117.415009, -31.488992 ], [ 117.415009, -31.438989 ], [ 117.435780, -31.438989 ], [ 117.435780, -31.407934 ], [ 117.435608, -31.407934 ], [ 117.435694, -31.354223 ], [ 117.435780, -31.353637 ], [ 117.436209, -31.351218 ], [ 117.436209, -31.347773 ], [ 117.489767, -31.347773 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 846, "y": 605 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.435780, -31.353637 ], [ 117.436209, -31.351218 ], [ 117.436123, -31.325707 ], [ 117.445135, -31.325780 ], [ 117.445135, -31.304662 ], [ 117.447710, -31.299675 ], [ 117.447710, -31.266520 ], [ 117.448397, -31.265786 ], [ 117.448397, -31.204506 ], [ 117.447624, -31.204800 ], [ 117.446766, -31.205240 ], [ 117.446079, -31.205901 ], [ 117.445049, -31.207296 ], [ 117.444191, -31.208103 ], [ 117.443075, -31.208764 ], [ 117.441874, -31.209204 ], [ 117.440672, -31.209278 ], [ 117.426510, -31.209498 ], [ 117.426510, -31.200248 ], [ 117.428656, -31.200248 ], [ 117.428656, -31.195403 ], [ 117.441273, -31.195403 ], [ 117.441273, -31.190997 ], [ 117.443419, -31.190997 ], [ 117.443419, -31.183728 ], [ 117.435350, -31.183728 ], [ 117.435350, -31.170290 ], [ 117.441444, -31.170143 ], [ 117.445736, -31.169629 ], [ 117.445650, -31.102701 ], [ 117.415009, -31.102701 ], [ 117.415009, -31.052713 ], [ 117.445650, -31.052713 ], [ 117.447710, -31.052934 ], [ 117.455349, -31.053669 ], [ 117.464705, -31.056463 ], [ 117.473373, -31.061096 ], [ 117.480927, -31.067345 ], [ 117.487192, -31.074917 ], [ 117.491827, -31.083518 ], [ 117.494659, -31.092926 ], [ 117.495604, -31.102628 ], [ 117.495775, -31.169555 ], [ 117.494659, -31.179836 ], [ 117.493544, -31.183434 ], [ 117.494659, -31.185711 ], [ 117.497406, -31.194889 ], [ 117.498350, -31.204433 ], [ 117.498436, -31.265786 ], [ 117.497663, -31.273049 ], [ 117.497663, -31.299748 ], [ 117.496290, -31.311335 ], [ 117.495089, -31.314488 ], [ 117.495089, -31.325780 ], [ 117.494144, -31.335531 ], [ 117.491312, -31.344914 ], [ 117.486591, -31.353637 ], [ 117.485905, -31.354443 ], [ 117.485647, -31.357448 ], [ 117.485647, -31.359501 ], [ 117.435608, -31.359501 ], [ 117.435694, -31.354223 ], [ 117.435780, -31.353637 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.445650, -31.052713 ], [ 117.447710, -31.052934 ], [ 117.455349, -31.053669 ], [ 117.464705, -31.056463 ], [ 117.473373, -31.061096 ], [ 117.480927, -31.067345 ], [ 117.487192, -31.074917 ], [ 117.491827, -31.083518 ], [ 117.494659, -31.092926 ], [ 117.495604, -31.102628 ], [ 117.495775, -31.169555 ], [ 117.494659, -31.179836 ], [ 117.493544, -31.183434 ], [ 117.494659, -31.185711 ], [ 117.497406, -31.194889 ], [ 117.498350, -31.204433 ], [ 117.498436, -31.265786 ], [ 117.497663, -31.273049 ], [ 117.497663, -31.299748 ], [ 117.496290, -31.311335 ], [ 117.495089, -31.314488 ], [ 117.495089, -31.325780 ], [ 117.494144, -31.335531 ], [ 117.491312, -31.344914 ], [ 117.486591, -31.353637 ], [ 117.485905, -31.354443 ], [ 117.485647, -31.357448 ], [ 117.485647, -31.359501 ], [ 117.435608, -31.359501 ], [ 117.435694, -31.354223 ], [ 117.435780, -31.353637 ], [ 117.436209, -31.351218 ], [ 117.436123, -31.325707 ], [ 117.445135, -31.325780 ], [ 117.445135, -31.304662 ], [ 117.447710, -31.299675 ], [ 117.447710, -31.266520 ], [ 117.448397, -31.265786 ], [ 117.448397, -31.204506 ], [ 117.447624, -31.204800 ], [ 117.446766, -31.205240 ], [ 117.446079, -31.205901 ], [ 117.445049, -31.207296 ], [ 117.444191, -31.208103 ], [ 117.443075, -31.208764 ], [ 117.441874, -31.209204 ], [ 117.440672, -31.209278 ], [ 117.426510, -31.209498 ], [ 117.426510, -31.200248 ], [ 117.428656, -31.200248 ], [ 117.428656, -31.195403 ], [ 117.441273, -31.195403 ], [ 117.441273, -31.190997 ], [ 117.443419, -31.190997 ], [ 117.443419, -31.183728 ], [ 117.435350, -31.183728 ], [ 117.435350, -31.170290 ], [ 117.441444, -31.170143 ], [ 117.445736, -31.169629 ], [ 117.445650, -31.102701 ], [ 117.415009, -31.102701 ], [ 117.415009, -31.052713 ], [ 117.445650, -31.052713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 846, "y": 604 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.447710, -31.052934 ], [ 117.455349, -31.053669 ], [ 117.464705, -31.056463 ], [ 117.468996, -31.058816 ], [ 117.415009, -31.058816 ], [ 117.415009, -31.052713 ], [ 117.445650, -31.052713 ], [ 117.447710, -31.052934 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.445650, -31.052713 ], [ 117.447710, -31.052934 ], [ 117.455349, -31.053669 ], [ 117.464705, -31.056463 ], [ 117.468996, -31.058816 ], [ 117.415009, -31.052713 ], [ 117.445650, -31.052713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1690, "y": 1212 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.249527, -31.447886 ], [ 117.246094, -31.446019 ], [ 117.242103, -31.443859 ], [ 117.234678, -31.437634 ], [ 117.228584, -31.430091 ], [ 117.224035, -31.421485 ], [ 117.221246, -31.412220 ], [ 117.220302, -31.402550 ], [ 117.220302, -31.391670 ], [ 117.221246, -31.381925 ], [ 117.223434, -31.374634 ], [ 117.223434, -31.373352 ], [ 117.224250, -31.364448 ], [ 117.224894, -31.362102 ], [ 117.224894, -31.357558 ], [ 117.223134, -31.355433 ], [ 117.222147, -31.353637 ], [ 117.220602, -31.350705 ], [ 117.249527, -31.350705 ], [ 117.249527, -31.447886 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.249527, -31.350705 ], [ 117.249527, -31.447886 ], [ 117.246094, -31.446019 ], [ 117.242103, -31.443859 ], [ 117.234678, -31.437634 ], [ 117.228584, -31.430091 ], [ 117.224035, -31.421485 ], [ 117.221246, -31.412220 ], [ 117.220302, -31.402550 ], [ 117.220302, -31.391670 ], [ 117.221246, -31.381925 ], [ 117.223434, -31.374634 ], [ 117.223434, -31.373352 ], [ 117.224250, -31.364448 ], [ 117.224894, -31.362102 ], [ 117.224894, -31.357558 ], [ 117.223134, -31.355433 ], [ 117.222147, -31.353637 ], [ 117.220602, -31.350705 ], [ 117.249527, -31.350705 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1690, "y": 1211 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.249527, -31.356569 ], [ 117.224035, -31.356569 ], [ 117.223134, -31.355433 ], [ 117.222147, -31.353637 ], [ 117.218542, -31.346783 ], [ 117.215710, -31.337437 ], [ 117.215495, -31.335421 ], [ 117.212920, -31.330582 ], [ 117.210045, -31.321197 ], [ 117.209101, -31.311445 ], [ 117.209101, -31.309355 ], [ 117.207942, -31.307228 ], [ 117.205110, -31.297841 ], [ 117.204766, -31.294394 ], [ 117.204080, -31.292157 ], [ 117.203135, -31.282402 ], [ 117.203135, -31.275323 ], [ 117.204080, -31.265566 ], [ 117.206912, -31.256211 ], [ 117.211547, -31.247553 ], [ 117.217770, -31.239995 ], [ 117.225366, -31.233757 ], [ 117.233992, -31.229133 ], [ 117.243390, -31.226307 ], [ 117.244592, -31.226161 ], [ 117.244635, -31.203405 ], [ 117.244635, -31.200468 ], [ 117.249527, -31.200468 ], [ 117.249527, -31.356569 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.249527, -31.200468 ], [ 117.249527, -31.356569 ], [ 117.224035, -31.356569 ], [ 117.223134, -31.355433 ], [ 117.222147, -31.353637 ], [ 117.218542, -31.346783 ], [ 117.215710, -31.337437 ], [ 117.215495, -31.335421 ], [ 117.212920, -31.330582 ], [ 117.210045, -31.321197 ], [ 117.209101, -31.311445 ], [ 117.209101, -31.309355 ], [ 117.207942, -31.307228 ], [ 117.205110, -31.297841 ], [ 117.204766, -31.294394 ], [ 117.204080, -31.292157 ], [ 117.203135, -31.282402 ], [ 117.203135, -31.275323 ], [ 117.204080, -31.265566 ], [ 117.206912, -31.256211 ], [ 117.211547, -31.247553 ], [ 117.217770, -31.239995 ], [ 117.225366, -31.233757 ], [ 117.233992, -31.229133 ], [ 117.243390, -31.226307 ], [ 117.244592, -31.226161 ], [ 117.244635, -31.203405 ], [ 117.244635, -31.200468 ], [ 117.249527, -31.200468 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1690, "y": 1210 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.249527, -31.206341 ], [ 117.244592, -31.206341 ], [ 117.244635, -31.203405 ], [ 117.244678, -31.165699 ], [ 117.245622, -31.156115 ], [ 117.246094, -31.154535 ], [ 117.248368, -31.146859 ], [ 117.249527, -31.144692 ], [ 117.249527, -31.206341 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.249527, -31.144692 ], [ 117.249527, -31.206341 ], [ 117.244592, -31.206341 ], [ 117.244635, -31.203405 ], [ 117.244678, -31.165699 ], [ 117.245622, -31.156115 ], [ 117.246094, -31.154535 ], [ 117.248368, -31.146859 ], [ 117.249527, -31.144692 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1691, "y": 1212 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.274890, -31.353270 ], [ 117.274890, -31.369651 ], [ 117.278023, -31.369651 ], [ 117.273431, -31.373352 ], [ 117.273431, -31.391634 ], [ 117.270298, -31.391634 ], [ 117.270298, -31.402513 ], [ 117.279911, -31.402513 ], [ 117.280297, -31.402696 ], [ 117.280297, -31.403722 ], [ 117.290339, -31.403722 ], [ 117.290339, -31.394638 ], [ 117.298794, -31.394638 ], [ 117.298794, -31.396433 ], [ 117.309351, -31.396396 ], [ 117.309351, -31.396579 ], [ 117.318707, -31.396579 ], [ 117.322011, -31.397971 ], [ 117.322612, -31.398301 ], [ 117.323170, -31.398667 ], [ 117.323642, -31.399107 ], [ 117.324028, -31.399620 ], [ 117.325058, -31.401634 ], [ 117.325401, -31.402147 ], [ 117.331667, -31.402147 ], [ 117.331710, -31.411194 ], [ 117.338190, -31.411194 ], [ 117.338190, -31.423133 ], [ 117.335143, -31.423133 ], [ 117.335143, -31.436719 ], [ 117.368317, -31.436719 ], [ 117.368274, -31.433753 ], [ 117.397928, -31.433716 ], [ 117.397928, -31.439136 ], [ 117.409687, -31.439136 ], [ 117.409945, -31.438989 ], [ 117.425308, -31.438989 ], [ 117.425308, -31.488992 ], [ 117.411275, -31.488992 ], [ 117.409601, -31.489139 ], [ 117.397842, -31.489139 ], [ 117.388144, -31.488150 ], [ 117.379174, -31.485406 ], [ 117.378058, -31.485772 ], [ 117.368317, -31.486723 ], [ 117.335143, -31.486723 ], [ 117.325401, -31.485772 ], [ 117.316003, -31.482917 ], [ 117.307377, -31.478306 ], [ 117.299781, -31.472083 ], [ 117.293558, -31.464506 ], [ 117.288923, -31.455867 ], [ 117.288280, -31.453707 ], [ 117.280297, -31.453707 ], [ 117.270555, -31.452755 ], [ 117.269783, -31.452536 ], [ 117.259870, -31.451438 ], [ 117.250643, -31.448509 ], [ 117.246094, -31.446019 ], [ 117.242661, -31.444115 ], [ 117.242661, -31.350705 ], [ 117.280169, -31.350705 ], [ 117.280169, -31.353270 ], [ 117.274890, -31.353270 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.280169, -31.350705 ], [ 117.280169, -31.353270 ], [ 117.274890, -31.353270 ], [ 117.274890, -31.369651 ], [ 117.278023, -31.369651 ], [ 117.273431, -31.373352 ], [ 117.273431, -31.391634 ], [ 117.270298, -31.391634 ], [ 117.270298, -31.402513 ], [ 117.279911, -31.402513 ], [ 117.280297, -31.402696 ], [ 117.280297, -31.403722 ], [ 117.290339, -31.403722 ], [ 117.290339, -31.394638 ], [ 117.298794, -31.394638 ], [ 117.298794, -31.396433 ], [ 117.309351, -31.396396 ], [ 117.309351, -31.396579 ], [ 117.318707, -31.396579 ], [ 117.322011, -31.397971 ], [ 117.322612, -31.398301 ], [ 117.323170, -31.398667 ], [ 117.323642, -31.399107 ], [ 117.324028, -31.399620 ], [ 117.325058, -31.401634 ], [ 117.325401, -31.402147 ], [ 117.331667, -31.402147 ], [ 117.331710, -31.411194 ], [ 117.338190, -31.411194 ], [ 117.338190, -31.423133 ], [ 117.335143, -31.423133 ], [ 117.335143, -31.436719 ], [ 117.368317, -31.436719 ], [ 117.368274, -31.433753 ], [ 117.397928, -31.433716 ], [ 117.397928, -31.439136 ], [ 117.409687, -31.439136 ], [ 117.409945, -31.438989 ], [ 117.425308, -31.438989 ], [ 117.425308, -31.488992 ], [ 117.411275, -31.488992 ], [ 117.409601, -31.489139 ], [ 117.397842, -31.489139 ], [ 117.388144, -31.488150 ], [ 117.379174, -31.485406 ], [ 117.378058, -31.485772 ], [ 117.368317, -31.486723 ], [ 117.335143, -31.486723 ], [ 117.325401, -31.485772 ], [ 117.316003, -31.482917 ], [ 117.307377, -31.478306 ], [ 117.299781, -31.472083 ], [ 117.293558, -31.464506 ], [ 117.288923, -31.455867 ], [ 117.288280, -31.453707 ], [ 117.280297, -31.453707 ], [ 117.270555, -31.452755 ], [ 117.269783, -31.452536 ], [ 117.259870, -31.451438 ], [ 117.250643, -31.448509 ], [ 117.246094, -31.446019 ], [ 117.242661, -31.444115 ], [ 117.242661, -31.350705 ], [ 117.280169, -31.350705 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1691, "y": 1211 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.294588, -31.252469 ], [ 117.301068, -31.252506 ], [ 117.301025, -31.269014 ], [ 117.300682, -31.269784 ], [ 117.300124, -31.270628 ], [ 117.298880, -31.271875 ], [ 117.298322, -31.272792 ], [ 117.297978, -31.273563 ], [ 117.297978, -31.276570 ], [ 117.288280, -31.276570 ], [ 117.278194, -31.276460 ], [ 117.274504, -31.275250 ], [ 117.261629, -31.275250 ], [ 117.261629, -31.275323 ], [ 117.253132, -31.275323 ], [ 117.253132, -31.282402 ], [ 117.254119, -31.282402 ], [ 117.254162, -31.288050 ], [ 117.262616, -31.288050 ], [ 117.262616, -31.295311 ], [ 117.260170, -31.295311 ], [ 117.260170, -31.303892 ], [ 117.259097, -31.303892 ], [ 117.259097, -31.311445 ], [ 117.264719, -31.311445 ], [ 117.264719, -31.327686 ], [ 117.280211, -31.327686 ], [ 117.280169, -31.353270 ], [ 117.274890, -31.353270 ], [ 117.274890, -31.356569 ], [ 117.242661, -31.356569 ], [ 117.242661, -31.226527 ], [ 117.243390, -31.226307 ], [ 117.244592, -31.226161 ], [ 117.244635, -31.200468 ], [ 117.294631, -31.200468 ], [ 117.294631, -31.203405 ], [ 117.294588, -31.252469 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.294631, -31.200468 ], [ 117.294631, -31.203405 ], [ 117.294588, -31.252469 ], [ 117.301068, -31.252506 ], [ 117.301025, -31.269014 ], [ 117.300682, -31.269784 ], [ 117.300124, -31.270628 ], [ 117.298880, -31.271875 ], [ 117.298322, -31.272792 ], [ 117.297978, -31.273563 ], [ 117.297978, -31.276570 ], [ 117.288280, -31.276570 ], [ 117.278194, -31.276460 ], [ 117.274504, -31.275250 ], [ 117.261629, -31.275250 ], [ 117.261629, -31.275323 ], [ 117.253132, -31.275323 ], [ 117.253132, -31.282402 ], [ 117.254119, -31.282402 ], [ 117.254162, -31.288050 ], [ 117.262616, -31.288050 ], [ 117.262616, -31.295311 ], [ 117.260170, -31.295311 ], [ 117.260170, -31.303892 ], [ 117.259097, -31.303892 ], [ 117.259097, -31.311445 ], [ 117.264719, -31.311445 ], [ 117.264719, -31.327686 ], [ 117.280211, -31.327686 ], [ 117.280169, -31.353270 ], [ 117.274890, -31.353270 ], [ 117.274890, -31.356569 ], [ 117.242661, -31.356569 ], [ 117.242661, -31.226527 ], [ 117.243390, -31.226307 ], [ 117.244592, -31.226161 ], [ 117.244635, -31.200468 ], [ 117.294631, -31.200468 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1691, "y": 1210 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.378745, -31.102775 ], [ 117.376685, -31.103840 ], [ 117.362309, -31.103840 ], [ 117.359862, -31.102958 ], [ 117.346945, -31.102958 ], [ 117.346516, -31.103032 ], [ 117.346430, -31.103656 ], [ 117.346430, -31.112475 ], [ 117.328062, -31.112475 ], [ 117.328062, -31.127869 ], [ 117.327976, -31.127905 ], [ 117.327976, -31.142489 ], [ 117.324543, -31.142489 ], [ 117.324543, -31.152699 ], [ 117.326217, -31.152699 ], [ 117.326217, -31.162541 ], [ 117.323899, -31.162211 ], [ 117.295618, -31.165553 ], [ 117.294674, -31.165773 ], [ 117.294631, -31.203405 ], [ 117.294631, -31.206341 ], [ 117.244592, -31.206341 ], [ 117.244678, -31.165699 ], [ 117.245622, -31.156115 ], [ 117.246094, -31.154535 ], [ 117.248368, -31.146859 ], [ 117.252874, -31.138338 ], [ 117.258925, -31.130808 ], [ 117.266307, -31.124599 ], [ 117.274718, -31.119897 ], [ 117.278023, -31.118831 ], [ 117.278066, -31.112144 ], [ 117.279096, -31.102444 ], [ 117.281971, -31.093110 ], [ 117.286606, -31.084547 ], [ 117.292829, -31.077012 ], [ 117.300425, -31.070837 ], [ 117.309008, -31.066242 ], [ 117.315102, -31.064404 ], [ 117.317848, -31.062088 ], [ 117.326474, -31.057235 ], [ 117.335873, -31.054184 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052934 ], [ 117.359862, -31.052934 ], [ 117.368703, -31.053743 ], [ 117.369132, -31.053853 ], [ 117.369905, -31.053853 ], [ 117.377372, -31.052934 ], [ 117.378702, -31.052750 ], [ 117.425308, -31.052713 ], [ 117.425308, -31.102738 ], [ 117.421875, -31.102738 ], [ 117.378745, -31.102775 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.425308, -31.052713 ], [ 117.425308, -31.102738 ], [ 117.421875, -31.102738 ], [ 117.378745, -31.102775 ], [ 117.376685, -31.103840 ], [ 117.362309, -31.103840 ], [ 117.359862, -31.102958 ], [ 117.346945, -31.102958 ], [ 117.346516, -31.103032 ], [ 117.346430, -31.103656 ], [ 117.346430, -31.112475 ], [ 117.328062, -31.112475 ], [ 117.328062, -31.127869 ], [ 117.327976, -31.127905 ], [ 117.327976, -31.142489 ], [ 117.324543, -31.142489 ], [ 117.324543, -31.152699 ], [ 117.326217, -31.152699 ], [ 117.326217, -31.162541 ], [ 117.323899, -31.162211 ], [ 117.295618, -31.165553 ], [ 117.294674, -31.165773 ], [ 117.294631, -31.203405 ], [ 117.294631, -31.206341 ], [ 117.244592, -31.206341 ], [ 117.244678, -31.165699 ], [ 117.245622, -31.156115 ], [ 117.246094, -31.154535 ], [ 117.248368, -31.146859 ], [ 117.252874, -31.138338 ], [ 117.258925, -31.130808 ], [ 117.266307, -31.124599 ], [ 117.274718, -31.119897 ], [ 117.278023, -31.118831 ], [ 117.278066, -31.112144 ], [ 117.279096, -31.102444 ], [ 117.281971, -31.093110 ], [ 117.286606, -31.084547 ], [ 117.292829, -31.077012 ], [ 117.300425, -31.070837 ], [ 117.309008, -31.066242 ], [ 117.315102, -31.064404 ], [ 117.317848, -31.062088 ], [ 117.326474, -31.057235 ], [ 117.335873, -31.054184 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052934 ], [ 117.359862, -31.052934 ], [ 117.368703, -31.053743 ], [ 117.369132, -31.053853 ], [ 117.369905, -31.053853 ], [ 117.377372, -31.052934 ], [ 117.378702, -31.052750 ], [ 117.425308, -31.052713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1691, "y": 1209 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.425308, -31.055875 ], [ 117.330680, -31.055875 ], [ 117.335873, -31.054184 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052934 ], [ 117.359862, -31.052934 ], [ 117.368703, -31.053743 ], [ 117.369132, -31.053853 ], [ 117.369905, -31.053853 ], [ 117.377372, -31.052934 ], [ 117.378702, -31.052750 ], [ 117.421875, -31.052713 ], [ 117.425308, -31.052713 ], [ 117.425308, -31.055875 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.425308, -31.052713 ], [ 117.425308, -31.055875 ], [ 117.330680, -31.055875 ], [ 117.335873, -31.054184 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052934 ], [ 117.359862, -31.052934 ], [ 117.368703, -31.053743 ], [ 117.369132, -31.053853 ], [ 117.369905, -31.053853 ], [ 117.377372, -31.052934 ], [ 117.378702, -31.052750 ], [ 117.421875, -31.052713 ], [ 117.425308, -31.052713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1692, "y": 1212 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.421875, -31.438989 ], [ 117.435780, -31.439026 ], [ 117.435780, -31.407971 ], [ 117.435651, -31.407971 ], [ 117.435694, -31.354260 ], [ 117.435780, -31.353637 ], [ 117.436252, -31.351218 ], [ 117.436252, -31.350705 ], [ 117.488222, -31.350705 ], [ 117.486634, -31.353637 ], [ 117.485948, -31.354480 ], [ 117.485690, -31.357448 ], [ 117.485647, -31.406909 ], [ 117.485776, -31.407971 ], [ 117.485776, -31.439026 ], [ 117.484789, -31.448802 ], [ 117.481956, -31.458210 ], [ 117.477322, -31.466849 ], [ 117.471099, -31.474426 ], [ 117.463503, -31.480648 ], [ 117.454834, -31.485259 ], [ 117.445436, -31.488114 ], [ 117.435651, -31.489029 ], [ 117.421875, -31.488992 ], [ 117.418442, -31.488992 ], [ 117.418442, -31.438989 ], [ 117.421875, -31.438989 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.488222, -31.350705 ], [ 117.486634, -31.353637 ], [ 117.485948, -31.354480 ], [ 117.485690, -31.357448 ], [ 117.485647, -31.406909 ], [ 117.485776, -31.407971 ], [ 117.485776, -31.439026 ], [ 117.484789, -31.448802 ], [ 117.481956, -31.458210 ], [ 117.477322, -31.466849 ], [ 117.471099, -31.474426 ], [ 117.463503, -31.480648 ], [ 117.454834, -31.485259 ], [ 117.445436, -31.488114 ], [ 117.435651, -31.489029 ], [ 117.421875, -31.488992 ], [ 117.418442, -31.488992 ], [ 117.418442, -31.438989 ], [ 117.421875, -31.438989 ], [ 117.435780, -31.439026 ], [ 117.435780, -31.407971 ], [ 117.435651, -31.407971 ], [ 117.435694, -31.354260 ], [ 117.435780, -31.353637 ], [ 117.436252, -31.351218 ], [ 117.436252, -31.350705 ], [ 117.488222, -31.350705 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1692, "y": 1211 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.435780, -31.353637 ], [ 117.436252, -31.351218 ], [ 117.436252, -31.340259 ], [ 117.436123, -31.340259 ], [ 117.436166, -31.325743 ], [ 117.445135, -31.325780 ], [ 117.445178, -31.304698 ], [ 117.447710, -31.299712 ], [ 117.447710, -31.266520 ], [ 117.448440, -31.265823 ], [ 117.448440, -31.245462 ], [ 117.448397, -31.204506 ], [ 117.447624, -31.204800 ], [ 117.446809, -31.205277 ], [ 117.446079, -31.205938 ], [ 117.445049, -31.207296 ], [ 117.444191, -31.208140 ], [ 117.443118, -31.208801 ], [ 117.441916, -31.209204 ], [ 117.440715, -31.209315 ], [ 117.426510, -31.209498 ], [ 117.426510, -31.200468 ], [ 117.497964, -31.200468 ], [ 117.498264, -31.203405 ], [ 117.498393, -31.204469 ], [ 117.498436, -31.265786 ], [ 117.497706, -31.273086 ], [ 117.497706, -31.299748 ], [ 117.496333, -31.311335 ], [ 117.495131, -31.314525 ], [ 117.495131, -31.325817 ], [ 117.494187, -31.335567 ], [ 117.491312, -31.344951 ], [ 117.486634, -31.353637 ], [ 117.485948, -31.354480 ], [ 117.485733, -31.356569 ], [ 117.435651, -31.356569 ], [ 117.435694, -31.354260 ], [ 117.435780, -31.353637 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.498264, -31.203405 ], [ 117.498393, -31.204469 ], [ 117.498436, -31.265786 ], [ 117.497706, -31.273086 ], [ 117.497706, -31.299748 ], [ 117.496333, -31.311335 ], [ 117.495131, -31.314525 ], [ 117.495131, -31.325817 ], [ 117.494187, -31.335567 ], [ 117.491312, -31.344951 ], [ 117.486634, -31.353637 ], [ 117.485948, -31.354480 ], [ 117.485733, -31.356569 ], [ 117.435651, -31.356569 ], [ 117.435694, -31.354260 ], [ 117.435780, -31.353637 ], [ 117.436252, -31.351218 ], [ 117.436252, -31.340259 ], [ 117.436123, -31.340259 ], [ 117.436166, -31.325743 ], [ 117.445135, -31.325780 ], [ 117.445178, -31.304698 ], [ 117.447710, -31.299712 ], [ 117.447710, -31.266520 ], [ 117.448440, -31.265823 ], [ 117.448440, -31.245462 ], [ 117.448397, -31.204506 ], [ 117.447624, -31.204800 ], [ 117.446809, -31.205277 ], [ 117.446079, -31.205938 ], [ 117.445049, -31.207296 ], [ 117.444191, -31.208140 ], [ 117.443118, -31.208801 ], [ 117.441916, -31.209204 ], [ 117.440715, -31.209315 ], [ 117.426510, -31.209498 ], [ 117.426510, -31.200468 ], [ 117.497964, -31.200468 ], [ 117.498264, -31.203405 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1692, "y": 1210 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.447624, -31.204800 ], [ 117.446809, -31.205277 ], [ 117.446079, -31.205938 ], [ 117.445736, -31.206341 ], [ 117.426510, -31.206341 ], [ 117.426510, -31.203405 ], [ 117.426553, -31.200248 ], [ 117.428656, -31.200248 ], [ 117.428656, -31.195403 ], [ 117.441316, -31.195403 ], [ 117.441316, -31.190997 ], [ 117.443419, -31.190997 ], [ 117.443419, -31.183728 ], [ 117.435393, -31.183728 ], [ 117.435393, -31.170326 ], [ 117.441444, -31.170143 ], [ 117.445736, -31.169629 ], [ 117.445650, -31.102738 ], [ 117.418442, -31.102738 ], [ 117.418442, -31.052713 ], [ 117.445650, -31.052713 ], [ 117.447710, -31.052934 ], [ 117.455392, -31.053669 ], [ 117.464747, -31.056500 ], [ 117.473416, -31.061132 ], [ 117.480969, -31.067345 ], [ 117.487192, -31.074917 ], [ 117.491827, -31.083554 ], [ 117.494702, -31.092926 ], [ 117.495646, -31.102664 ], [ 117.495775, -31.169592 ], [ 117.494702, -31.179873 ], [ 117.493544, -31.183471 ], [ 117.494702, -31.185711 ], [ 117.497449, -31.194925 ], [ 117.498264, -31.203405 ], [ 117.498393, -31.204469 ], [ 117.498393, -31.206341 ], [ 117.448397, -31.206341 ], [ 117.448397, -31.204506 ], [ 117.447624, -31.204800 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.445650, -31.052713 ], [ 117.447710, -31.052934 ], [ 117.455392, -31.053669 ], [ 117.464747, -31.056500 ], [ 117.473416, -31.061132 ], [ 117.480969, -31.067345 ], [ 117.487192, -31.074917 ], [ 117.491827, -31.083554 ], [ 117.494702, -31.092926 ], [ 117.495646, -31.102664 ], [ 117.495775, -31.169592 ], [ 117.494702, -31.179873 ], [ 117.493544, -31.183471 ], [ 117.494702, -31.185711 ], [ 117.497449, -31.194925 ], [ 117.498264, -31.203405 ], [ 117.498393, -31.204469 ], [ 117.498393, -31.206341 ], [ 117.448397, -31.206341 ], [ 117.448397, -31.204506 ], [ 117.447624, -31.204800 ], [ 117.446809, -31.205277 ], [ 117.446079, -31.205938 ], [ 117.445736, -31.206341 ], [ 117.426510, -31.206341 ], [ 117.426510, -31.203405 ], [ 117.426553, -31.200248 ], [ 117.428656, -31.200248 ], [ 117.428656, -31.195403 ], [ 117.441316, -31.195403 ], [ 117.441316, -31.190997 ], [ 117.443419, -31.190997 ], [ 117.443419, -31.183728 ], [ 117.435393, -31.183728 ], [ 117.435393, -31.170326 ], [ 117.441444, -31.170143 ], [ 117.445736, -31.169629 ], [ 117.445650, -31.102738 ], [ 117.418442, -31.102738 ], [ 117.418442, -31.052713 ], [ 117.445650, -31.052713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1692, "y": 1209 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.447710, -31.052934 ], [ 117.455392, -31.053669 ], [ 117.462602, -31.055875 ], [ 117.418442, -31.055875 ], [ 117.418442, -31.052713 ], [ 117.445650, -31.052713 ], [ 117.447710, -31.052934 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.445650, -31.052713 ], [ 117.447710, -31.052934 ], [ 117.455392, -31.053669 ], [ 117.462602, -31.055875 ], [ 117.418442, -31.052713 ], [ 117.445650, -31.052713 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3381, "y": 2425 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.247810, -31.446934 ], [ 117.246094, -31.446001 ], [ 117.242124, -31.443859 ], [ 117.234678, -31.437634 ], [ 117.228584, -31.430091 ], [ 117.227812, -31.428663 ], [ 117.227039, -31.427198 ], [ 117.247810, -31.427198 ], [ 117.247810, -31.446934 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.247810, -31.427198 ], [ 117.247810, -31.446934 ], [ 117.246094, -31.446001 ], [ 117.242124, -31.443859 ], [ 117.234678, -31.437634 ], [ 117.228584, -31.430091 ], [ 117.227812, -31.428663 ], [ 117.227039, -31.427198 ], [ 117.247810, -31.427198 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3381, "y": 2424 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.247810, -31.430128 ], [ 117.228606, -31.430128 ], [ 117.227812, -31.428663 ], [ 117.224035, -31.421504 ], [ 117.221246, -31.412220 ], [ 117.220302, -31.402568 ], [ 117.220302, -31.391689 ], [ 117.221246, -31.381925 ], [ 117.223456, -31.374634 ], [ 117.223456, -31.373352 ], [ 117.224250, -31.364448 ], [ 117.224894, -31.362102 ], [ 117.224894, -31.357577 ], [ 117.223155, -31.355451 ], [ 117.222168, -31.353637 ], [ 117.221375, -31.352171 ], [ 117.247810, -31.352171 ], [ 117.247810, -31.430128 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.247810, -31.352171 ], [ 117.247810, -31.430128 ], [ 117.228606, -31.430128 ], [ 117.227812, -31.428663 ], [ 117.224035, -31.421504 ], [ 117.221246, -31.412220 ], [ 117.220302, -31.402568 ], [ 117.220302, -31.391689 ], [ 117.221246, -31.381925 ], [ 117.223456, -31.374634 ], [ 117.223456, -31.373352 ], [ 117.224250, -31.364448 ], [ 117.224894, -31.362102 ], [ 117.224894, -31.357577 ], [ 117.223155, -31.355451 ], [ 117.222168, -31.353637 ], [ 117.221375, -31.352171 ], [ 117.247810, -31.352171 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3381, "y": 2423 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.247810, -31.355103 ], [ 117.222962, -31.355103 ], [ 117.222168, -31.353637 ], [ 117.218542, -31.346802 ], [ 117.215710, -31.337437 ], [ 117.215495, -31.335439 ], [ 117.212920, -31.330582 ], [ 117.210066, -31.321197 ], [ 117.209101, -31.311445 ], [ 117.209101, -31.309373 ], [ 117.207963, -31.307228 ], [ 117.205110, -31.297841 ], [ 117.204788, -31.294413 ], [ 117.204101, -31.292176 ], [ 117.203135, -31.282420 ], [ 117.203135, -31.277084 ], [ 117.247810, -31.277084 ], [ 117.247810, -31.355103 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.247810, -31.277084 ], [ 117.247810, -31.355103 ], [ 117.222962, -31.355103 ], [ 117.222168, -31.353637 ], [ 117.218542, -31.346802 ], [ 117.215710, -31.337437 ], [ 117.215495, -31.335439 ], [ 117.212920, -31.330582 ], [ 117.210066, -31.321197 ], [ 117.209101, -31.311445 ], [ 117.209101, -31.309373 ], [ 117.207963, -31.307228 ], [ 117.205110, -31.297841 ], [ 117.204788, -31.294413 ], [ 117.204101, -31.292176 ], [ 117.203135, -31.282420 ], [ 117.203135, -31.277084 ], [ 117.247810, -31.277084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3381, "y": 2422 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.247810, -31.280018 ], [ 117.203135, -31.280018 ], [ 117.203135, -31.275342 ], [ 117.204101, -31.265584 ], [ 117.206933, -31.256211 ], [ 117.211568, -31.247571 ], [ 117.217791, -31.239995 ], [ 117.225366, -31.233775 ], [ 117.233992, -31.229151 ], [ 117.243390, -31.226307 ], [ 117.244613, -31.226179 ], [ 117.244613, -31.201937 ], [ 117.247810, -31.201937 ], [ 117.247810, -31.280018 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.231460, -31.230509 ], [ 117.203135, -31.280018 ], [ 117.203135, -31.275342 ], [ 117.204101, -31.265584 ], [ 117.206933, -31.256211 ], [ 117.211568, -31.247571 ], [ 117.217791, -31.239995 ], [ 117.225366, -31.233775 ], [ 117.231460, -31.230509 ] ] ], [ [ [ 117.247810, -31.201937 ], [ 117.244613, -31.207534 ], [ 117.244613, -31.201937 ], [ 117.247810, -31.201937 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3381, "y": 2421 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.247810, -31.204873 ], [ 117.244613, -31.204873 ], [ 117.244613, -31.203405 ], [ 117.244678, -31.165718 ], [ 117.245622, -31.156115 ], [ 117.246094, -31.154535 ], [ 117.247810, -31.148806 ], [ 117.247810, -31.204873 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.247810, -31.148806 ], [ 117.247810, -31.204873 ], [ 117.244613, -31.204873 ], [ 117.244613, -31.203405 ], [ 117.244678, -31.165718 ], [ 117.245622, -31.156115 ], [ 117.246094, -31.154535 ], [ 117.247810, -31.148806 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3382, "y": 2425 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.335701, -31.436737 ], [ 117.335701, -31.486723 ], [ 117.335165, -31.486742 ], [ 117.333984, -31.486613 ], [ 117.325401, -31.485790 ], [ 117.316024, -31.482935 ], [ 117.307377, -31.478324 ], [ 117.299781, -31.472102 ], [ 117.293580, -31.464525 ], [ 117.288945, -31.455867 ], [ 117.288301, -31.453726 ], [ 117.280319, -31.453726 ], [ 117.270555, -31.452774 ], [ 117.269804, -31.452536 ], [ 117.269526, -31.452536 ], [ 117.259891, -31.451438 ], [ 117.250643, -31.448509 ], [ 117.246094, -31.446001 ], [ 117.244377, -31.445067 ], [ 117.244377, -31.427198 ], [ 117.335143, -31.427198 ], [ 117.335143, -31.436737 ], [ 117.335701, -31.436737 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.335143, -31.427198 ], [ 117.335143, -31.436737 ], [ 117.335701, -31.436737 ], [ 117.335701, -31.486723 ], [ 117.335165, -31.486742 ], [ 117.333984, -31.486613 ], [ 117.325401, -31.485790 ], [ 117.316024, -31.482935 ], [ 117.307377, -31.478324 ], [ 117.299781, -31.472102 ], [ 117.293580, -31.464525 ], [ 117.288945, -31.455867 ], [ 117.288301, -31.453726 ], [ 117.280319, -31.453726 ], [ 117.270555, -31.452774 ], [ 117.269804, -31.452536 ], [ 117.269526, -31.452536 ], [ 117.259891, -31.451438 ], [ 117.250643, -31.448509 ], [ 117.246094, -31.446001 ], [ 117.244377, -31.445067 ], [ 117.244377, -31.427198 ], [ 117.335143, -31.427198 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3382, "y": 2424 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.335143, -31.423152 ], [ 117.335143, -31.430128 ], [ 117.244377, -31.430128 ], [ 117.244377, -31.352171 ], [ 117.280190, -31.352171 ], [ 117.280190, -31.353270 ], [ 117.274911, -31.353270 ], [ 117.274890, -31.353637 ], [ 117.274890, -31.369669 ], [ 117.278044, -31.369669 ], [ 117.273452, -31.373352 ], [ 117.273452, -31.391652 ], [ 117.270298, -31.391652 ], [ 117.270298, -31.402532 ], [ 117.279932, -31.402532 ], [ 117.280319, -31.402696 ], [ 117.280319, -31.403722 ], [ 117.290339, -31.403722 ], [ 117.290339, -31.394656 ], [ 117.298794, -31.394656 ], [ 117.298794, -31.396433 ], [ 117.309372, -31.396414 ], [ 117.309372, -31.396597 ], [ 117.318707, -31.396597 ], [ 117.322011, -31.397989 ], [ 117.322633, -31.398301 ], [ 117.323170, -31.398685 ], [ 117.323663, -31.399125 ], [ 117.324049, -31.399620 ], [ 117.324350, -31.400151 ], [ 117.325058, -31.401653 ], [ 117.325423, -31.402147 ], [ 117.331688, -31.402147 ], [ 117.331710, -31.411212 ], [ 117.335701, -31.411212 ], [ 117.335701, -31.423152 ], [ 117.335143, -31.423152 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.280190, -31.352171 ], [ 117.280190, -31.353270 ], [ 117.274911, -31.353270 ], [ 117.274890, -31.353637 ], [ 117.274890, -31.369669 ], [ 117.278044, -31.369669 ], [ 117.273452, -31.373352 ], [ 117.273452, -31.391652 ], [ 117.270298, -31.391652 ], [ 117.270298, -31.402532 ], [ 117.279932, -31.402532 ], [ 117.280319, -31.402696 ], [ 117.280319, -31.403722 ], [ 117.290339, -31.403722 ], [ 117.290339, -31.394656 ], [ 117.298794, -31.394656 ], [ 117.298794, -31.396433 ], [ 117.309372, -31.396414 ], [ 117.309372, -31.396597 ], [ 117.318707, -31.396597 ], [ 117.322011, -31.397989 ], [ 117.322633, -31.398301 ], [ 117.323170, -31.398685 ], [ 117.323663, -31.399125 ], [ 117.324049, -31.399620 ], [ 117.324350, -31.400151 ], [ 117.325058, -31.401653 ], [ 117.325423, -31.402147 ], [ 117.331688, -31.402147 ], [ 117.331710, -31.411212 ], [ 117.335701, -31.411212 ], [ 117.335701, -31.423152 ], [ 117.335143, -31.423152 ], [ 117.335143, -31.430128 ], [ 117.244377, -31.430128 ], [ 117.244377, -31.352171 ], [ 117.280190, -31.352171 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3382, "y": 2423 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.254140, -31.282420 ], [ 117.254162, -31.288068 ], [ 117.262616, -31.288068 ], [ 117.262616, -31.295329 ], [ 117.260170, -31.295329 ], [ 117.260170, -31.303892 ], [ 117.259119, -31.303892 ], [ 117.259119, -31.311463 ], [ 117.264740, -31.311463 ], [ 117.264740, -31.327686 ], [ 117.280211, -31.327686 ], [ 117.280190, -31.353270 ], [ 117.274911, -31.353270 ], [ 117.274890, -31.353637 ], [ 117.274890, -31.355103 ], [ 117.244377, -31.355103 ], [ 117.244377, -31.277084 ], [ 117.253132, -31.277084 ], [ 117.253132, -31.282420 ], [ 117.254140, -31.282420 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.253132, -31.277084 ], [ 117.253132, -31.282420 ], [ 117.254140, -31.282420 ], [ 117.254162, -31.288068 ], [ 117.262616, -31.288068 ], [ 117.262616, -31.295329 ], [ 117.260170, -31.295329 ], [ 117.260170, -31.303892 ], [ 117.259119, -31.303892 ], [ 117.259119, -31.311463 ], [ 117.264740, -31.311463 ], [ 117.264740, -31.327686 ], [ 117.280211, -31.327686 ], [ 117.280190, -31.353270 ], [ 117.274911, -31.353270 ], [ 117.274890, -31.353637 ], [ 117.274890, -31.355103 ], [ 117.244377, -31.355103 ], [ 117.244377, -31.277084 ], [ 117.253132, -31.277084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3382, "y": 2422 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.294588, -31.252488 ], [ 117.301090, -31.252506 ], [ 117.301025, -31.269033 ], [ 117.300682, -31.269803 ], [ 117.300146, -31.270628 ], [ 117.299631, -31.271178 ], [ 117.298880, -31.271894 ], [ 117.298343, -31.272792 ], [ 117.297978, -31.273581 ], [ 117.297978, -31.276570 ], [ 117.288280, -31.276570 ], [ 117.278216, -31.276460 ], [ 117.274525, -31.275250 ], [ 117.261651, -31.275250 ], [ 117.261651, -31.275342 ], [ 117.253132, -31.275342 ], [ 117.253132, -31.280018 ], [ 117.244377, -31.280018 ], [ 117.244377, -31.226197 ], [ 117.244613, -31.226179 ], [ 117.244613, -31.201937 ], [ 117.294610, -31.201937 ], [ 117.294610, -31.203405 ], [ 117.294588, -31.252488 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.294610, -31.201937 ], [ 117.294610, -31.203405 ], [ 117.294588, -31.252488 ], [ 117.301090, -31.252506 ], [ 117.301025, -31.269033 ], [ 117.300682, -31.269803 ], [ 117.300146, -31.270628 ], [ 117.299631, -31.271178 ], [ 117.298880, -31.271894 ], [ 117.298343, -31.272792 ], [ 117.297978, -31.273581 ], [ 117.297978, -31.276570 ], [ 117.288280, -31.276570 ], [ 117.278216, -31.276460 ], [ 117.274525, -31.275250 ], [ 117.261651, -31.275250 ], [ 117.261651, -31.275342 ], [ 117.253132, -31.275342 ], [ 117.253132, -31.280018 ], [ 117.244377, -31.280018 ], [ 117.244377, -31.226197 ], [ 117.244613, -31.226179 ], [ 117.244613, -31.201937 ], [ 117.294610, -31.201937 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3382, "y": 2421 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.327976, -31.127924 ], [ 117.327976, -31.142507 ], [ 117.324543, -31.142507 ], [ 117.324543, -31.152699 ], [ 117.326238, -31.152699 ], [ 117.326238, -31.162541 ], [ 117.323921, -31.162229 ], [ 117.295618, -31.165571 ], [ 117.294674, -31.165773 ], [ 117.294631, -31.203405 ], [ 117.294631, -31.204873 ], [ 117.244613, -31.204873 ], [ 117.244678, -31.165718 ], [ 117.245622, -31.156115 ], [ 117.246094, -31.154535 ], [ 117.248390, -31.146878 ], [ 117.252874, -31.138338 ], [ 117.258925, -31.130826 ], [ 117.262037, -31.128199 ], [ 117.263775, -31.126730 ], [ 117.328084, -31.126730 ], [ 117.328084, -31.127887 ], [ 117.327976, -31.127924 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.328084, -31.126730 ], [ 117.328084, -31.127887 ], [ 117.327976, -31.127924 ], [ 117.327976, -31.142507 ], [ 117.324543, -31.142507 ], [ 117.324543, -31.152699 ], [ 117.326238, -31.152699 ], [ 117.326238, -31.162541 ], [ 117.323921, -31.162229 ], [ 117.295618, -31.165571 ], [ 117.294674, -31.165773 ], [ 117.294631, -31.203405 ], [ 117.294631, -31.204873 ], [ 117.244613, -31.204873 ], [ 117.244678, -31.165718 ], [ 117.245622, -31.156115 ], [ 117.246094, -31.154535 ], [ 117.248390, -31.146878 ], [ 117.252874, -31.138338 ], [ 117.258925, -31.130826 ], [ 117.262037, -31.128199 ], [ 117.263775, -31.126730 ], [ 117.328084, -31.126730 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3382, "y": 2420 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.328084, -31.127887 ], [ 117.327976, -31.127924 ], [ 117.327976, -31.129669 ], [ 117.260277, -31.129669 ], [ 117.262037, -31.128199 ], [ 117.266307, -31.124599 ], [ 117.274740, -31.119915 ], [ 117.278044, -31.118850 ], [ 117.278087, -31.112163 ], [ 117.279117, -31.102444 ], [ 117.281992, -31.093128 ], [ 117.286627, -31.084547 ], [ 117.292850, -31.077012 ], [ 117.300425, -31.070855 ], [ 117.309029, -31.066260 ], [ 117.315123, -31.064422 ], [ 117.317870, -31.062088 ], [ 117.326474, -31.057235 ], [ 117.333984, -31.054809 ], [ 117.335701, -31.054258 ], [ 117.335701, -31.112493 ], [ 117.328084, -31.112493 ], [ 117.328084, -31.127887 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.335701, -31.054258 ], [ 117.335701, -31.112493 ], [ 117.328084, -31.112493 ], [ 117.328084, -31.127887 ], [ 117.327976, -31.127924 ], [ 117.327976, -31.129669 ], [ 117.260277, -31.129669 ], [ 117.262037, -31.128199 ], [ 117.266307, -31.124599 ], [ 117.274740, -31.119915 ], [ 117.278044, -31.118850 ], [ 117.278087, -31.112163 ], [ 117.279117, -31.102444 ], [ 117.281992, -31.093128 ], [ 117.286627, -31.084547 ], [ 117.292850, -31.077012 ], [ 117.300425, -31.070855 ], [ 117.309029, -31.066260 ], [ 117.315123, -31.064422 ], [ 117.317870, -31.062088 ], [ 117.326474, -31.057235 ], [ 117.333984, -31.054809 ], [ 117.335701, -31.054258 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3382, "y": 2419 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.335701, -31.054405 ], [ 117.335229, -31.054405 ], [ 117.335701, -31.054258 ], [ 117.335701, -31.054405 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.335701, -31.054258 ], [ 117.335701, -31.054405 ], [ 117.335229, -31.054405 ], [ 117.335701, -31.054258 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3383, "y": 2425 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.368317, -31.436737 ], [ 117.368295, -31.433753 ], [ 117.397928, -31.433716 ], [ 117.397950, -31.439136 ], [ 117.409687, -31.439154 ], [ 117.409945, -31.438989 ], [ 117.423592, -31.438989 ], [ 117.423592, -31.488992 ], [ 117.411275, -31.488992 ], [ 117.409623, -31.489157 ], [ 117.397864, -31.489139 ], [ 117.388144, -31.488169 ], [ 117.379174, -31.485424 ], [ 117.378080, -31.485772 ], [ 117.368317, -31.486723 ], [ 117.335165, -31.486742 ], [ 117.333984, -31.486613 ], [ 117.332268, -31.486449 ], [ 117.332268, -31.427198 ], [ 117.335143, -31.427198 ], [ 117.335143, -31.436737 ], [ 117.368317, -31.436737 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.335143, -31.427198 ], [ 117.335143, -31.436737 ], [ 117.368317, -31.436737 ], [ 117.368295, -31.433753 ], [ 117.397928, -31.433716 ], [ 117.397950, -31.439136 ], [ 117.409687, -31.439154 ], [ 117.409945, -31.438989 ], [ 117.423592, -31.438989 ], [ 117.423592, -31.488992 ], [ 117.411275, -31.488992 ], [ 117.409623, -31.489157 ], [ 117.397864, -31.489139 ], [ 117.388144, -31.488169 ], [ 117.379174, -31.485424 ], [ 117.378080, -31.485772 ], [ 117.368317, -31.486723 ], [ 117.335165, -31.486742 ], [ 117.333984, -31.486613 ], [ 117.332268, -31.486449 ], [ 117.332268, -31.427198 ], [ 117.335143, -31.427198 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3383, "y": 2424 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.338190, -31.411212 ], [ 117.338190, -31.423152 ], [ 117.335143, -31.423152 ], [ 117.335143, -31.430128 ], [ 117.332268, -31.430128 ], [ 117.332268, -31.411212 ], [ 117.338190, -31.411212 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.332268, -31.411212 ], [ 117.338190, -31.411212 ], [ 117.338190, -31.423152 ], [ 117.335143, -31.423152 ], [ 117.335143, -31.430128 ], [ 117.332268, -31.430128 ], [ 117.332268, -31.411212 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3383, "y": 2420 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.335873, -31.054202 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052952 ], [ 117.359884, -31.052952 ], [ 117.368724, -31.053743 ], [ 117.369132, -31.053853 ], [ 117.369905, -31.053853 ], [ 117.377372, -31.052934 ], [ 117.378724, -31.052769 ], [ 117.423592, -31.052732 ], [ 117.423592, -31.102738 ], [ 117.421875, -31.102738 ], [ 117.378745, -31.102775 ], [ 117.376707, -31.103859 ], [ 117.362309, -31.103859 ], [ 117.359884, -31.102958 ], [ 117.346945, -31.102958 ], [ 117.346537, -31.103050 ], [ 117.346430, -31.103656 ], [ 117.346430, -31.112493 ], [ 117.332268, -31.112493 ], [ 117.332268, -31.055360 ], [ 117.335873, -31.054202 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.423592, -31.052732 ], [ 117.423592, -31.102738 ], [ 117.421875, -31.102738 ], [ 117.378745, -31.102775 ], [ 117.376707, -31.103859 ], [ 117.362309, -31.103859 ], [ 117.359884, -31.102958 ], [ 117.346945, -31.102958 ], [ 117.346537, -31.103050 ], [ 117.346430, -31.103656 ], [ 117.346430, -31.112493 ], [ 117.332268, -31.112493 ], [ 117.332268, -31.055360 ], [ 117.335873, -31.054202 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052952 ], [ 117.359884, -31.052952 ], [ 117.368724, -31.053743 ], [ 117.369132, -31.053853 ], [ 117.369905, -31.053853 ], [ 117.377372, -31.052934 ], [ 117.378724, -31.052769 ], [ 117.423592, -31.052732 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3383, "y": 2419 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.423592, -31.054405 ], [ 117.335229, -31.054405 ], [ 117.335873, -31.054202 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052952 ], [ 117.359884, -31.052952 ], [ 117.368724, -31.053743 ], [ 117.369132, -31.053853 ], [ 117.369905, -31.053853 ], [ 117.377372, -31.052934 ], [ 117.378724, -31.052769 ], [ 117.421875, -31.052732 ], [ 117.423592, -31.052732 ], [ 117.423592, -31.054405 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.423592, -31.052732 ], [ 117.423592, -31.054405 ], [ 117.335229, -31.054405 ], [ 117.335873, -31.054202 ], [ 117.336302, -31.054110 ], [ 117.346945, -31.052952 ], [ 117.359884, -31.052952 ], [ 117.368724, -31.053743 ], [ 117.369132, -31.053853 ], [ 117.369905, -31.053853 ], [ 117.377372, -31.052934 ], [ 117.378724, -31.052769 ], [ 117.421875, -31.052732 ], [ 117.423592, -31.052732 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3384, "y": 2425 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.421875, -31.438989 ], [ 117.435780, -31.439044 ], [ 117.435780, -31.427198 ], [ 117.485776, -31.427198 ], [ 117.485776, -31.439044 ], [ 117.484810, -31.448820 ], [ 117.481956, -31.458210 ], [ 117.477322, -31.466868 ], [ 117.471099, -31.474444 ], [ 117.463503, -31.480666 ], [ 117.454834, -31.485278 ], [ 117.445436, -31.488114 ], [ 117.435672, -31.489047 ], [ 117.421875, -31.488992 ], [ 117.420158, -31.488992 ], [ 117.420158, -31.438989 ], [ 117.421875, -31.438989 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.485776, -31.427198 ], [ 117.485776, -31.439044 ], [ 117.484810, -31.448820 ], [ 117.481956, -31.458210 ], [ 117.477322, -31.466868 ], [ 117.471099, -31.474444 ], [ 117.463503, -31.480666 ], [ 117.454834, -31.485278 ], [ 117.445436, -31.488114 ], [ 117.435672, -31.489047 ], [ 117.421875, -31.488992 ], [ 117.420158, -31.488992 ], [ 117.420158, -31.438989 ], [ 117.421875, -31.438989 ], [ 117.435780, -31.439044 ], [ 117.435780, -31.427198 ], [ 117.485776, -31.427198 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3384, "y": 2424 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.435672, -31.407989 ], [ 117.435694, -31.354278 ], [ 117.435801, -31.353637 ], [ 117.436059, -31.352171 ], [ 117.487450, -31.352171 ], [ 117.486656, -31.353637 ], [ 117.485948, -31.354498 ], [ 117.485690, -31.357448 ], [ 117.485669, -31.406909 ], [ 117.485776, -31.407989 ], [ 117.485776, -31.430128 ], [ 117.435780, -31.430128 ], [ 117.435780, -31.407989 ], [ 117.435672, -31.407989 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.486656, -31.353637 ], [ 117.485948, -31.354498 ], [ 117.485690, -31.357448 ], [ 117.485669, -31.406909 ], [ 117.485776, -31.407989 ], [ 117.485776, -31.430128 ], [ 117.435780, -31.430128 ], [ 117.435780, -31.407989 ], [ 117.435672, -31.407989 ], [ 117.435694, -31.354278 ], [ 117.435801, -31.353637 ], [ 117.436059, -31.352171 ], [ 117.487450, -31.352171 ], [ 117.486656, -31.353637 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3384, "y": 2423 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.435801, -31.353637 ], [ 117.436252, -31.351218 ], [ 117.436252, -31.340278 ], [ 117.436144, -31.340278 ], [ 117.436187, -31.325762 ], [ 117.445157, -31.325780 ], [ 117.445178, -31.304698 ], [ 117.447710, -31.299712 ], [ 117.447710, -31.277084 ], [ 117.497706, -31.277084 ], [ 117.497706, -31.299767 ], [ 117.496333, -31.311353 ], [ 117.495153, -31.314525 ], [ 117.495153, -31.325835 ], [ 117.494187, -31.335586 ], [ 117.491312, -31.344951 ], [ 117.486656, -31.353637 ], [ 117.485948, -31.354498 ], [ 117.485883, -31.355103 ], [ 117.435672, -31.355103 ], [ 117.435694, -31.354278 ], [ 117.435801, -31.353637 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.497706, -31.299767 ], [ 117.496333, -31.311353 ], [ 117.495153, -31.314525 ], [ 117.495153, -31.325835 ], [ 117.494187, -31.335586 ], [ 117.491312, -31.344951 ], [ 117.486656, -31.353637 ], [ 117.485948, -31.354498 ], [ 117.485883, -31.355103 ], [ 117.435672, -31.355103 ], [ 117.435694, -31.354278 ], [ 117.435801, -31.353637 ], [ 117.436252, -31.351218 ], [ 117.436252, -31.340278 ], [ 117.436144, -31.340278 ], [ 117.436187, -31.325762 ], [ 117.445157, -31.325780 ], [ 117.445178, -31.304698 ], [ 117.447710, -31.299712 ], [ 117.447710, -31.277084 ], [ 117.497706, -31.277084 ], [ 117.497706, -31.299767 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3384, "y": 2422 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.447731, -31.266538 ], [ 117.448440, -31.265823 ], [ 117.448440, -31.245462 ], [ 117.448397, -31.204525 ], [ 117.447646, -31.204800 ], [ 117.446809, -31.205295 ], [ 117.446079, -31.205938 ], [ 117.445049, -31.207296 ], [ 117.444191, -31.208158 ], [ 117.443140, -31.208801 ], [ 117.441938, -31.209204 ], [ 117.440715, -31.209333 ], [ 117.426531, -31.209516 ], [ 117.426531, -31.201937 ], [ 117.498114, -31.201937 ], [ 117.498264, -31.203405 ], [ 117.498393, -31.204488 ], [ 117.498436, -31.265786 ], [ 117.497728, -31.273086 ], [ 117.497706, -31.278551 ], [ 117.497706, -31.280018 ], [ 117.447710, -31.280018 ], [ 117.447710, -31.278551 ], [ 117.447731, -31.266538 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.498264, -31.203405 ], [ 117.498393, -31.204488 ], [ 117.498436, -31.265786 ], [ 117.497728, -31.273086 ], [ 117.497706, -31.278551 ], [ 117.497706, -31.280018 ], [ 117.447710, -31.280018 ], [ 117.447710, -31.278551 ], [ 117.447731, -31.266538 ], [ 117.448440, -31.265823 ], [ 117.448440, -31.245462 ], [ 117.448397, -31.204525 ], [ 117.447646, -31.204800 ], [ 117.446809, -31.205295 ], [ 117.446079, -31.205938 ], [ 117.445049, -31.207296 ], [ 117.444191, -31.208158 ], [ 117.443140, -31.208801 ], [ 117.441938, -31.209204 ], [ 117.440715, -31.209333 ], [ 117.426531, -31.209516 ], [ 117.426531, -31.201937 ], [ 117.498114, -31.201937 ], [ 117.498264, -31.203405 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3384, "y": 2421 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.447646, -31.204800 ], [ 117.447517, -31.204873 ], [ 117.426531, -31.204873 ], [ 117.426531, -31.203405 ], [ 117.426553, -31.200266 ], [ 117.428656, -31.200266 ], [ 117.428656, -31.195421 ], [ 117.441316, -31.195421 ], [ 117.441316, -31.190997 ], [ 117.443440, -31.190997 ], [ 117.443440, -31.183746 ], [ 117.435415, -31.183728 ], [ 117.435415, -31.170326 ], [ 117.441466, -31.170161 ], [ 117.445757, -31.169647 ], [ 117.445693, -31.128199 ], [ 117.445693, -31.126730 ], [ 117.495689, -31.126730 ], [ 117.495689, -31.128199 ], [ 117.495775, -31.169592 ], [ 117.494702, -31.179891 ], [ 117.493565, -31.183471 ], [ 117.494724, -31.185711 ], [ 117.497470, -31.194925 ], [ 117.498286, -31.203405 ], [ 117.498393, -31.204488 ], [ 117.498393, -31.204873 ], [ 117.448397, -31.204873 ], [ 117.448397, -31.204525 ], [ 117.447646, -31.204800 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.495689, -31.128199 ], [ 117.495775, -31.169592 ], [ 117.494702, -31.179891 ], [ 117.493565, -31.183471 ], [ 117.494724, -31.185711 ], [ 117.497470, -31.194925 ], [ 117.498286, -31.203405 ], [ 117.498393, -31.204488 ], [ 117.498393, -31.204873 ], [ 117.448397, -31.204873 ], [ 117.448397, -31.204525 ], [ 117.447646, -31.204800 ], [ 117.447517, -31.204873 ], [ 117.426531, -31.204873 ], [ 117.426531, -31.203405 ], [ 117.426553, -31.200266 ], [ 117.428656, -31.200266 ], [ 117.428656, -31.195421 ], [ 117.441316, -31.195421 ], [ 117.441316, -31.190997 ], [ 117.443440, -31.190997 ], [ 117.443440, -31.183746 ], [ 117.435415, -31.183728 ], [ 117.435415, -31.170326 ], [ 117.441466, -31.170161 ], [ 117.445757, -31.169647 ], [ 117.445693, -31.128199 ], [ 117.445693, -31.126730 ], [ 117.495689, -31.126730 ], [ 117.495689, -31.128199 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3384, "y": 2420 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.445672, -31.102738 ], [ 117.420158, -31.102738 ], [ 117.420158, -31.052732 ], [ 117.445650, -31.052732 ], [ 117.447710, -31.052934 ], [ 117.455392, -31.053688 ], [ 117.464769, -31.056519 ], [ 117.473416, -31.061132 ], [ 117.480991, -31.067345 ], [ 117.487214, -31.074917 ], [ 117.491848, -31.083554 ], [ 117.494702, -31.092926 ], [ 117.495668, -31.102664 ], [ 117.495689, -31.128199 ], [ 117.495711, -31.129669 ], [ 117.445693, -31.129669 ], [ 117.445693, -31.128199 ], [ 117.445672, -31.102738 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.445650, -31.052732 ], [ 117.447710, -31.052934 ], [ 117.455392, -31.053688 ], [ 117.464769, -31.056519 ], [ 117.473416, -31.061132 ], [ 117.480991, -31.067345 ], [ 117.487214, -31.074917 ], [ 117.491848, -31.083554 ], [ 117.494702, -31.092926 ], [ 117.495668, -31.102664 ], [ 117.495689, -31.128199 ], [ 117.495711, -31.129669 ], [ 117.445693, -31.129669 ], [ 117.445693, -31.128199 ], [ 117.445672, -31.102738 ], [ 117.420158, -31.102738 ], [ 117.420158, -31.052732 ], [ 117.445650, -31.052732 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 3384, "y": 2419 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "data", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.447710, -31.052934 ], [ 117.455392, -31.053688 ], [ 117.457752, -31.054405 ], [ 117.420158, -31.054405 ], [ 117.420158, -31.052732 ], [ 117.445650, -31.052732 ], [ 117.447710, -31.052934 ] ] ] } } +{ "type": "Feature", "id": 10959577660569731, "properties": { "country": "au", "text": "Wyalkatchem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.445650, -31.052732 ], [ 117.447710, -31.052934 ], [ 117.455392, -31.053688 ], [ 117.457752, -31.054405 ], [ 117.420158, -31.052732 ], [ 117.445650, -31.052732 ] ] ] } } ] } ] } ] } diff --git a/version.hpp b/version.hpp index f443013..9123a80 100644 --- a/version.hpp +++ b/version.hpp @@ -1 +1 @@ -#define VERSION "tippecanoe v1.15.4\n" +#define VERSION "tippecanoe v1.16.0\n" From d7d5bed7810304f720a3ee649712e68cdc37482a Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Tue, 13 Dec 2016 16:55:33 -0800 Subject: [PATCH 5/7] Remove duplicate vertices before calling wagyu --- geometry.cpp | 1 + .../out/-z4_-yname_--grid-low-zooms_-D8.json | 250 +++++++++--------- 2 files changed, 126 insertions(+), 125 deletions(-) diff --git a/geometry.cpp b/geometry.cpp index ae495df..deac6df 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -197,6 +197,7 @@ static void decode_clipped(mapbox::geometry::multi_polygon &t, drawve drawvec clean_or_clip_poly(drawvec &geom, int z, int detail, int buffer, bool clip) { mapbox::geometry::wagyu::wagyu wagyu; + geom = remove_noop(geom, VT_POLYGON, 0); for (size_t i = 0; i < geom.size(); i++) { if (geom[i].op == VT_MOVETO) { size_t j; diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json index c98f012..143be83 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json @@ -14,7 +14,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -139.218750, 69.657086 ], [ -139.218750, 69.162558 ], [ -140.625000, 69.162558 ], [ -140.625000, 69.657086 ], [ -139.218750, 69.657086 ] ] ], [ [ [ -119.531250, 74.402163 ], [ -119.531250, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.627789 ], [ -115.312500, 73.627789 ], [ -115.312500, 73.226700 ], [ -113.906250, 73.226700 ], [ -113.906250, 72.816074 ], [ -112.500000, 72.816074 ], [ -112.500000, 72.395706 ], [ -109.687500, 72.395706 ], [ -109.687500, 71.965388 ], [ -108.281250, 71.965388 ], [ -108.281250, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 71.074056 ], [ -104.062500, 71.074056 ], [ -104.062500, 70.612614 ], [ -102.656250, 70.612614 ], [ -102.656250, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -102.656250, 69.657086 ], [ -102.656250, 69.162558 ], [ -116.718750, 69.162558 ], [ -116.718750, 70.140364 ], [ -113.906250, 70.140364 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 71.074056 ], [ -119.531250, 71.074056 ], [ -119.531250, 71.965388 ], [ -120.937500, 71.965388 ], [ -120.937500, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.524909 ], [ -126.562500, 71.524909 ], [ -126.562500, 71.965388 ], [ -125.156250, 71.965388 ], [ -125.156250, 73.226700 ], [ -123.750000, 73.226700 ], [ -123.750000, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.402163 ], [ -119.531250, 74.402163 ] ], [ [ -118.125000, 71.965388 ], [ -118.125000, 72.395706 ], [ -119.531250, 72.395706 ], [ -119.531250, 71.965388 ], [ -118.125000, 71.965388 ] ], [ [ -115.312500, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 72.816074 ], [ -115.312500, 72.816074 ], [ -115.312500, 73.226700 ] ] ], [ [ [ -129.375000, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.162558 ], [ -135.000000, 69.162558 ], [ -135.000000, 69.657086 ], [ -130.781250, 69.657086 ], [ -130.781250, 70.140364 ], [ -129.375000, 70.140364 ], [ -129.375000, 69.657086 ] ] ], [ [ [ -98.437500, 73.627789 ], [ -98.437500, 71.074056 ], [ -99.843750, 71.074056 ], [ -99.843750, 71.524909 ], [ -101.250000, 71.524909 ], [ -101.250000, 71.965388 ], [ -102.656250, 71.965388 ], [ -102.656250, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 73.627789 ], [ -98.437500, 73.627789 ] ] ], [ [ [ -105.468750, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 73.226700 ] ] ], [ [ [ -111.093750, 75.845169 ], [ -111.093750, 76.516819 ], [ -108.281250, 76.516819 ], [ -108.281250, 75.845169 ], [ -105.468750, 75.845169 ], [ -105.468750, 75.140778 ], [ -106.875000, 75.140778 ], [ -106.875000, 74.775843 ], [ -109.687500, 74.775843 ], [ -109.687500, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.093750, 74.775843 ], [ -111.093750, 75.140778 ], [ -118.125000, 75.140778 ], [ -118.125000, 75.497157 ], [ -116.718750, 75.497157 ], [ -116.718750, 76.184995 ], [ -112.500000, 76.184995 ], [ -112.500000, 75.845169 ], [ -111.093750, 75.845169 ] ], [ [ -111.093750, 75.845169 ], [ -111.093750, 75.497157 ], [ -109.687500, 75.497157 ], [ -109.687500, 75.845169 ], [ -111.093750, 75.845169 ] ] ], [ [ [ -99.843750, 76.184995 ], [ -98.437500, 74.775843 ], [ -101.250000, 74.775843 ], [ -101.250000, 75.497157 ], [ -102.656250, 75.497157 ], [ -102.656250, 76.184995 ], [ -99.843750, 76.184995 ] ] ], [ [ [ -116.718750, 77.466028 ], [ -116.718750, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 75.845169 ], [ -122.343750, 75.845169 ], [ -122.343750, 76.516819 ], [ -120.937500, 76.516819 ], [ -120.937500, 77.157163 ], [ -119.531250, 77.157163 ], [ -119.531250, 77.466028 ], [ -116.718750, 77.466028 ] ] ], [ [ [ -109.687500, 78.061989 ], [ -109.687500, 77.466028 ], [ -113.906250, 77.466028 ], [ -113.906250, 77.767582 ], [ -112.500000, 77.767582 ], [ -112.500000, 78.061989 ], [ -109.687500, 78.061989 ] ] ], [ [ [ -104.062500, 79.171335 ], [ -104.062500, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.630006 ], [ -99.843750, 78.630006 ], [ -99.843750, 77.767582 ], [ -101.250000, 77.767582 ], [ -101.250000, 78.061989 ], [ -102.656250, 78.061989 ], [ -102.656250, 78.349411 ], [ -104.062500, 78.349411 ], [ -104.062500, 78.630006 ], [ -105.468750, 78.630006 ], [ -105.468750, 79.171335 ], [ -104.062500, 79.171335 ] ] ], [ [ [ -109.687500, 78.630006 ], [ -109.687500, 78.349411 ], [ -112.500000, 78.349411 ], [ -112.500000, 78.630006 ], [ -109.687500, 78.630006 ] ] ], [ [ [ -105.468750, 73.226700 ], [ -104.062500, 73.226700 ], [ -104.062500, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 73.226700 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.156250, 73.226700 ], [ -80.156250, 73.627789 ], [ -78.750000, 73.627789 ], [ -78.750000, 73.226700 ], [ -75.937500, 73.226700 ], [ -75.937500, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 71.965388 ], [ -78.750000, 71.965388 ], [ -78.750000, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 71.965388 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -71.718750, 71.524909 ], [ -71.718750, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.140364 ], [ -67.500000, 70.140364 ], [ -67.500000, 69.162558 ], [ -77.343750, 69.162558 ], [ -77.343750, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.162558 ], [ -85.781250, 69.162558 ], [ -85.781250, 69.657086 ], [ -84.375000, 69.657086 ], [ -84.375000, 70.140364 ], [ -88.593750, 70.140364 ], [ -88.593750, 71.074056 ], [ -90.000000, 71.074056 ], [ -90.000000, 73.226700 ], [ -88.593750, 73.226700 ], [ -88.593750, 73.627789 ], [ -85.781250, 73.627789 ], [ -85.781250, 73.226700 ], [ -87.187500, 73.226700 ], [ -87.187500, 72.816074 ], [ -84.375000, 72.816074 ], [ -84.375000, 73.226700 ], [ -80.156250, 73.226700 ] ] ], [ [ [ -97.031250, 73.226700 ], [ -98.437500, 73.226700 ], [ -98.437500, 73.627789 ], [ -97.031250, 73.627789 ], [ -97.031250, 73.226700 ] ] ], [ [ [ -94.218750, 77.157163 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.497157 ], [ -84.375000, 75.497157 ], [ -84.375000, 75.845169 ], [ -81.562500, 75.845169 ], [ -81.562500, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.402163 ], [ -92.812500, 74.402163 ], [ -92.812500, 75.845169 ], [ -94.218750, 75.845169 ], [ -94.218750, 76.184995 ], [ -95.625000, 76.184995 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.218750, 77.157163 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -95.625000, 75.140778 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -97.031250, 75.845169 ], [ -97.031250, 75.497157 ], [ -98.437500, 75.497157 ], [ -98.437500, 75.845169 ], [ -97.031250, 75.845169 ] ] ], [ [ [ -88.593750, 80.415707 ], [ -88.593750, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 81.308321 ], [ -91.406250, 81.308321 ], [ -91.406250, 81.923186 ], [ -90.000000, 81.923186 ], [ -90.000000, 82.118384 ], [ -87.187500, 82.118384 ], [ -87.187500, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.676285 ], [ -84.375000, 82.676285 ], [ -84.375000, 82.494824 ], [ -82.968750, 82.494824 ], [ -82.968750, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 83.026219 ], [ -78.750000, 83.026219 ], [ -78.750000, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -73.125000, 83.026219 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.026219 ], [ -66.093750, 83.026219 ], [ -66.093750, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.676285 ], [ -61.875000, 82.676285 ], [ -61.875000, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -64.687500, 81.923186 ], [ -64.687500, 81.723188 ], [ -66.093750, 81.723188 ], [ -66.093750, 81.093214 ], [ -67.500000, 81.093214 ], [ -67.500000, 80.647035 ], [ -68.906250, 80.647035 ], [ -68.906250, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.718750, 79.935918 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.432371 ], [ -77.343750, 79.432371 ], [ -77.343750, 79.171335 ], [ -75.937500, 79.171335 ], [ -75.937500, 77.767582 ], [ -77.343750, 77.767582 ], [ -77.343750, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.157163 ], [ -80.156250, 77.157163 ], [ -80.156250, 76.840816 ], [ -77.343750, 76.840816 ], [ -77.343750, 76.516819 ], [ -78.750000, 76.516819 ], [ -78.750000, 76.184995 ], [ -87.187500, 76.184995 ], [ -87.187500, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.840816 ], [ -87.187500, 76.840816 ], [ -87.187500, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 78.061989 ], [ -88.593750, 78.061989 ], [ -88.593750, 78.349411 ], [ -94.218750, 78.349411 ], [ -94.218750, 79.171335 ], [ -92.812500, 79.171335 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -95.625000, 80.415707 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.308321 ], [ -92.812500, 81.308321 ], [ -92.812500, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.415707 ], [ -88.593750, 80.415707 ] ], [ [ -87.187500, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -87.187500, 78.349411 ], [ -87.187500, 78.630006 ] ], [ [ -85.781250, 78.630006 ], [ -85.781250, 79.171335 ], [ -87.187500, 79.171335 ], [ -87.187500, 78.630006 ], [ -85.781250, 78.630006 ] ], [ [ -85.781250, 77.767582 ], [ -85.781250, 77.466028 ], [ -84.375000, 77.466028 ], [ -84.375000, 77.767582 ], [ -85.781250, 77.767582 ] ], [ [ -87.187500, 80.415707 ], [ -87.187500, 80.178713 ], [ -81.562500, 80.178713 ], [ -81.562500, 80.415707 ], [ -87.187500, 80.415707 ] ] ], [ [ [ -97.031250, 78.903929 ], [ -97.031250, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.466028 ], [ -97.031250, 77.466028 ], [ -97.031250, 77.767582 ], [ -98.437500, 77.767582 ], [ -98.437500, 78.903929 ], [ -97.031250, 78.903929 ] ] ], [ [ [ -94.218750, 71.524909 ], [ -92.812500, 71.524909 ], [ -92.812500, 70.612614 ], [ -91.406250, 70.612614 ], [ -91.406250, 69.657086 ], [ -90.000000, 69.657086 ], [ -90.000000, 69.162558 ], [ -98.437500, 69.162558 ], [ -98.437500, 69.657086 ], [ -97.031250, 69.657086 ], [ -97.031250, 71.074056 ], [ -98.437500, 71.074056 ], [ -98.437500, 72.395706 ], [ -97.031250, 72.395706 ], [ -97.031250, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 74.019543 ], [ -90.000000, 74.019543 ], [ -90.000000, 73.226700 ], [ -91.406250, 73.226700 ], [ -91.406250, 72.816074 ], [ -92.812500, 72.816074 ], [ -92.812500, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.524909 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.156250, 73.226700 ], [ -80.156250, 73.627789 ], [ -78.750000, 73.627789 ], [ -78.750000, 73.226700 ], [ -75.937500, 73.226700 ], [ -75.937500, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 71.965388 ], [ -78.750000, 71.965388 ], [ -78.750000, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 71.965388 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -71.718750, 71.524909 ], [ -71.718750, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.140364 ], [ -67.500000, 70.140364 ], [ -67.500000, 69.162558 ], [ -77.343750, 69.162558 ], [ -77.343750, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.162558 ], [ -85.781250, 69.162558 ], [ -85.781250, 69.657086 ], [ -84.375000, 69.657086 ], [ -84.375000, 70.140364 ], [ -88.593750, 70.140364 ], [ -88.593750, 71.074056 ], [ -90.000000, 71.074056 ], [ -90.000000, 73.226700 ], [ -88.593750, 73.226700 ], [ -88.593750, 73.627789 ], [ -85.781250, 73.627789 ], [ -85.781250, 73.226700 ], [ -87.187500, 73.226700 ], [ -87.187500, 72.816074 ], [ -84.375000, 72.816074 ], [ -84.375000, 73.226700 ], [ -80.156250, 73.226700 ] ] ], [ [ [ -97.031250, 73.226700 ], [ -98.437500, 73.226700 ], [ -98.437500, 73.627789 ], [ -97.031250, 73.627789 ], [ -97.031250, 73.226700 ] ] ], [ [ [ -94.218750, 77.157163 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.497157 ], [ -84.375000, 75.497157 ], [ -84.375000, 75.845169 ], [ -81.562500, 75.845169 ], [ -81.562500, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.402163 ], [ -92.812500, 74.402163 ], [ -92.812500, 75.845169 ], [ -94.218750, 75.845169 ], [ -94.218750, 76.184995 ], [ -95.625000, 76.184995 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.218750, 77.157163 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -95.625000, 75.140778 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -97.031250, 75.845169 ], [ -97.031250, 75.497157 ], [ -98.437500, 75.497157 ], [ -98.437500, 75.845169 ], [ -97.031250, 75.845169 ] ] ], [ [ [ -88.593750, 80.415707 ], [ -88.593750, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 81.308321 ], [ -91.406250, 81.308321 ], [ -91.406250, 81.923186 ], [ -90.000000, 81.923186 ], [ -90.000000, 82.118384 ], [ -87.187500, 82.118384 ], [ -87.187500, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.676285 ], [ -84.375000, 82.676285 ], [ -84.375000, 82.494824 ], [ -82.968750, 82.494824 ], [ -82.968750, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 83.026219 ], [ -78.750000, 83.026219 ], [ -78.750000, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -73.125000, 83.026219 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.026219 ], [ -66.093750, 83.026219 ], [ -66.093750, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.676285 ], [ -61.875000, 82.676285 ], [ -61.875000, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -64.687500, 81.923186 ], [ -64.687500, 81.723188 ], [ -66.093750, 81.723188 ], [ -66.093750, 81.093214 ], [ -67.500000, 81.093214 ], [ -67.500000, 80.647035 ], [ -68.906250, 80.647035 ], [ -68.906250, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.718750, 79.935918 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.432371 ], [ -77.343750, 79.432371 ], [ -77.343750, 79.171335 ], [ -75.937500, 79.171335 ], [ -75.937500, 77.767582 ], [ -77.343750, 77.767582 ], [ -77.343750, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.157163 ], [ -80.156250, 77.157163 ], [ -80.156250, 76.840816 ], [ -77.343750, 76.840816 ], [ -77.343750, 76.516819 ], [ -78.750000, 76.516819 ], [ -78.750000, 76.184995 ], [ -87.187500, 76.184995 ], [ -87.187500, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.840816 ], [ -87.187500, 76.840816 ], [ -87.187500, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 78.061989 ], [ -88.593750, 78.061989 ], [ -88.593750, 78.349411 ], [ -94.218750, 78.349411 ], [ -94.218750, 79.171335 ], [ -92.812500, 79.171335 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -95.625000, 80.415707 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.308321 ], [ -92.812500, 81.308321 ], [ -92.812500, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.415707 ], [ -88.593750, 80.415707 ] ], [ [ -87.187500, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -87.187500, 78.349411 ], [ -87.187500, 78.630006 ] ], [ [ -85.781250, 78.630006 ], [ -85.781250, 79.171335 ], [ -87.187500, 79.171335 ], [ -87.187500, 78.630006 ], [ -85.781250, 78.630006 ] ], [ [ -85.781250, 77.767582 ], [ -85.781250, 77.466028 ], [ -84.375000, 77.466028 ], [ -84.375000, 77.767582 ], [ -85.781250, 77.767582 ] ], [ [ -87.187500, 80.415707 ], [ -87.187500, 80.178713 ], [ -81.562500, 80.178713 ], [ -81.562500, 80.415707 ], [ -87.187500, 80.415707 ] ] ], [ [ [ -97.031250, 77.767582 ], [ -98.437500, 77.767582 ], [ -98.437500, 78.903929 ], [ -97.031250, 78.903929 ], [ -97.031250, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.767582 ], [ -94.218750, 77.466028 ], [ -97.031250, 77.466028 ], [ -97.031250, 77.767582 ] ] ], [ [ [ -94.218750, 71.524909 ], [ -92.812500, 71.524909 ], [ -92.812500, 70.612614 ], [ -91.406250, 70.612614 ], [ -91.406250, 69.657086 ], [ -90.000000, 69.657086 ], [ -90.000000, 69.162558 ], [ -98.437500, 69.162558 ], [ -98.437500, 69.657086 ], [ -97.031250, 69.657086 ], [ -97.031250, 71.074056 ], [ -98.437500, 71.074056 ], [ -98.437500, 72.395706 ], [ -97.031250, 72.395706 ], [ -97.031250, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 74.019543 ], [ -90.000000, 74.019543 ], [ -90.000000, 73.226700 ], [ -91.406250, 73.226700 ], [ -91.406250, 72.816074 ], [ -92.812500, 72.816074 ], [ -92.812500, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.524909 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ], [ -129.375000, 53.330873 ], [ -130.781250, 53.330873 ], [ -130.781250, 54.977614 ], [ -129.375000, 54.977614 ], [ -129.375000, 55.776573 ], [ -132.187500, 55.776573 ], [ -132.187500, 57.326521 ], [ -133.593750, 57.326521 ], [ -133.593750, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 58.813742 ], [ -137.812500, 58.813742 ], [ -137.812500, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 68.656555 ], [ -135.000000, 68.656555 ], [ -135.000000, 69.162558 ], [ -118.125000, 69.162558 ], [ -118.125000, 68.656555 ], [ -115.312500, 68.656555 ], [ -115.312500, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -106.875000, 69.162558 ], [ -106.875000, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.138852 ], [ -102.656250, 68.138852 ], [ -102.656250, 67.609221 ], [ -98.437500, 67.609221 ], [ -98.437500, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 68.138852 ], [ -94.218750, 68.138852 ], [ -94.218750, 69.162558 ], [ -90.000000, 69.162558 ], [ -90.000000, 68.656555 ], [ -88.593750, 68.656555 ], [ -88.593750, 67.067433 ], [ -87.187500, 67.067433 ], [ -87.187500, 67.609221 ], [ -85.781250, 67.609221 ], [ -85.781250, 69.162558 ], [ -84.375000, 69.162558 ], [ -84.375000, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.548552 ], [ -91.406250, 63.548552 ], [ -91.406250, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 61.606396 ], [ -94.218750, 61.606396 ], [ -94.218750, 58.813742 ], [ -92.812500, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -91.406250, 56.559482 ], [ -88.593750, 56.559482 ], [ -88.593750, 55.776573 ], [ -85.781250, 55.776573 ], [ -85.781250, 54.977614 ], [ -84.375000, 54.977614 ], [ -84.375000, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.989922 ], [ -94.218750, 47.989922 ], [ -94.218750, 49.837982 ], [ -95.625000, 49.837982 ], [ -95.625000, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 47.989922 ], [ -125.156250, 47.989922 ], [ -125.156250, 48.922499 ], [ -126.562500, 48.922499 ], [ -126.562500, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 52.482780 ] ] ], [ [ [ -132.187500, 54.162434 ], [ -132.187500, 53.330873 ], [ -133.593750, 53.330873 ], [ -133.593750, 54.162434 ], [ -132.187500, 54.162434 ] ] ], [ [ [ -102.656250, 69.162558 ], [ -102.656250, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 69.162558 ], [ -102.656250, 69.162558 ] ] ], [ [ [ -95.625000, 69.162558 ], [ -95.625000, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 69.162558 ], [ -95.625000, 69.162558 ] ] ], [ [ [ -85.781250, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 62.915233 ], [ -85.781250, 62.915233 ], [ -85.781250, 65.366837 ] ] ] ] } } , @@ -22,7 +22,7 @@ , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -154.687500, 20.632784 ], [ -154.687500, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ], [ -154.687500, 20.632784 ] ] ], [ [ [ -163.125000, 54.977614 ], [ -163.125000, 54.162434 ], [ -164.531250, 54.162434 ], [ -164.531250, 54.977614 ], [ -163.125000, 54.977614 ] ] ], [ [ [ -132.187500, 55.776573 ], [ -129.375000, 55.776573 ], [ -129.375000, 54.977614 ], [ -132.187500, 54.977614 ], [ -132.187500, 55.776573 ] ] ], [ [ [ -160.312500, 55.776573 ], [ -160.312500, 54.977614 ], [ -161.718750, 54.977614 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ] ] ], [ [ [ -139.218750, 59.534318 ], [ -142.031250, 59.534318 ], [ -142.031250, 60.239811 ], [ -149.062500, 60.239811 ], [ -149.062500, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 58.813742 ], [ -151.875000, 58.813742 ], [ -151.875000, 60.239811 ], [ -153.281250, 60.239811 ], [ -153.281250, 59.534318 ], [ -154.687500, 59.534318 ], [ -154.687500, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.077876 ], [ -154.687500, 58.077876 ], [ -154.687500, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.559482 ], [ -157.500000, 56.559482 ], [ -157.500000, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.813742 ], [ -158.906250, 58.813742 ], [ -158.906250, 58.077876 ], [ -160.312500, 58.077876 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -164.531250, 59.534318 ], [ -164.531250, 60.239811 ], [ -165.937500, 60.239811 ], [ -165.937500, 62.267923 ], [ -164.531250, 62.267923 ], [ -164.531250, 62.915233 ], [ -161.718750, 62.915233 ], [ -161.718750, 63.548552 ], [ -160.312500, 63.548552 ], [ -160.312500, 64.774125 ], [ -163.125000, 64.774125 ], [ -163.125000, 64.168107 ], [ -165.937500, 64.168107 ], [ -165.937500, 64.774125 ], [ -167.343750, 64.774125 ], [ -167.343750, 65.366837 ], [ -168.750000, 65.366837 ], [ -168.750000, 65.946472 ], [ -164.531250, 65.946472 ], [ -164.531250, 66.513260 ], [ -163.125000, 66.513260 ], [ -163.125000, 67.067433 ], [ -164.531250, 67.067433 ], [ -164.531250, 67.609221 ], [ -165.937500, 67.609221 ], [ -165.937500, 68.656555 ], [ -164.531250, 68.656555 ], [ -164.531250, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.657086 ], [ -161.718750, 69.657086 ], [ -161.718750, 70.140364 ], [ -160.312500, 70.140364 ], [ -160.312500, 70.612614 ], [ -157.500000, 70.612614 ], [ -157.500000, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.612614 ], [ -149.062500, 70.612614 ], [ -149.062500, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 60.239811 ], [ -139.218750, 60.239811 ], [ -139.218750, 59.534318 ] ] ], [ [ [ -133.593750, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -133.593750, 56.559482 ], [ -133.593750, 57.326521 ] ] ], [ [ [ -165.937500, 60.239811 ], [ -165.937500, 59.534318 ], [ -167.343750, 59.534318 ], [ -167.343750, 60.239811 ], [ -165.937500, 60.239811 ] ] ], [ [ [ -168.750000, 63.548552 ], [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.548552 ], [ -168.750000, 63.548552 ] ] ], [ [ [ -154.687500, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ] ] ], [ [ [ -153.281250, 58.077876 ], [ -151.875000, 58.077876 ], [ -151.875000, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 58.077876 ] ] ], [ [ [ -137.812500, 58.813742 ], [ -136.406250, 58.813742 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -133.593750, 58.813742 ], [ -133.593750, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.813742 ] ] ], [ [ [ -139.218750, 59.534318 ], [ -137.812500, 59.534318 ], [ -137.812500, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.534318 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.218750, 49.837982 ], [ -94.218750, 47.989922 ], [ -85.781250, 47.989922 ], [ -85.781250, 47.040182 ], [ -84.375000, 47.040182 ], [ -84.375000, 46.073231 ], [ -82.968750, 46.073231 ], [ -82.968750, 42.032974 ], [ -78.750000, 42.032974 ], [ -78.750000, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 44.087585 ], [ -70.312500, 44.087585 ], [ -70.312500, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 34.307144 ], [ -78.750000, 34.307144 ], [ -78.750000, 31.952162 ], [ -81.562500, 31.952162 ], [ -81.562500, 28.304381 ], [ -80.156250, 28.304381 ], [ -80.156250, 24.527135 ], [ -81.562500, 24.527135 ], [ -81.562500, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.218750, 29.535230 ], [ -94.218750, 28.304381 ], [ -97.031250, 28.304381 ], [ -97.031250, 25.799891 ], [ -99.843750, 25.799891 ], [ -99.843750, 28.304381 ], [ -101.250000, 28.304381 ], [ -101.250000, 29.535230 ], [ -105.468750, 29.535230 ], [ -105.468750, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 30.751278 ], [ -113.906250, 30.751278 ], [ -113.906250, 31.952162 ], [ -116.718750, 31.952162 ], [ -116.718750, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -122.343750, 35.460670 ], [ -122.343750, 37.718590 ], [ -123.750000, 37.718590 ], [ -123.750000, 42.032974 ], [ -125.156250, 42.032974 ], [ -125.156250, 43.068888 ], [ -123.750000, 43.068888 ], [ -123.750000, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.922499 ], [ -95.625000, 48.922499 ], [ -95.625000, 49.837982 ], [ -94.218750, 49.837982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.218750, 49.837982 ], [ -94.218750, 47.989922 ], [ -85.781250, 47.989922 ], [ -85.781250, 47.040182 ], [ -84.375000, 47.040182 ], [ -84.375000, 46.073231 ], [ -82.968750, 46.073231 ], [ -82.968750, 42.032974 ], [ -78.750000, 42.032974 ], [ -78.750000, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 44.087585 ], [ -70.312500, 44.087585 ], [ -70.312500, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 34.307144 ], [ -78.750000, 34.307144 ], [ -78.750000, 31.952162 ], [ -81.562500, 31.952162 ], [ -81.562500, 28.304381 ], [ -80.156250, 28.304381 ], [ -80.156250, 24.527135 ], [ -81.562500, 24.527135 ], [ -81.562500, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.218750, 29.535230 ], [ -94.218750, 28.304381 ], [ -97.031250, 28.304381 ], [ -97.031250, 25.799891 ], [ -99.843750, 25.799891 ], [ -99.843750, 28.304381 ], [ -101.250000, 28.304381 ], [ -101.250000, 29.535230 ], [ -105.468750, 29.535230 ], [ -105.468750, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 30.751278 ], [ -113.906250, 30.751278 ], [ -113.906250, 31.952162 ], [ -116.718750, 31.952162 ], [ -116.718750, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -122.343750, 35.460670 ], [ -122.343750, 37.718590 ], [ -123.750000, 37.718590 ], [ -123.750000, 42.032974 ], [ -125.156250, 42.032974 ], [ -125.156250, 43.068888 ], [ -123.750000, 43.068888 ], [ -123.750000, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.922499 ], [ -95.625000, 48.922499 ], [ -94.218750, 49.837982 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.468750, 31.952162 ], [ -105.468750, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 23.241346 ], [ -98.437500, 23.241346 ], [ -98.437500, 21.943046 ], [ -97.031250, 21.943046 ], [ -97.031250, 19.311143 ], [ -95.625000, 19.311143 ], [ -95.625000, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 16.636192 ], [ -95.625000, 16.636192 ], [ -95.625000, 15.284185 ], [ -98.437500, 15.284185 ], [ -98.437500, 16.636192 ], [ -101.250000, 16.636192 ], [ -101.250000, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 23.241346 ], [ -108.281250, 23.241346 ], [ -108.281250, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 30.751278 ], [ -108.281250, 30.751278 ], [ -108.281250, 31.952162 ], [ -105.468750, 31.952162 ] ] ], [ [ [ -87.187500, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 19.311143 ], [ -90.000000, 19.311143 ], [ -90.000000, 20.632784 ], [ -88.593750, 20.632784 ], [ -88.593750, 21.943046 ], [ -87.187500, 21.943046 ], [ -87.187500, 17.978733 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 25.799891 ], [ -113.906250, 25.799891 ], [ -113.906250, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 24.527135 ] ] ], [ [ [ -115.312500, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.952162 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -109.687500, 24.527135 ], [ -109.687500, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 24.527135 ] ] ] ] } } , @@ -38,17 +38,17 @@ , { "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 15.284185 ], [ -82.968750, 12.554564 ], [ -84.375000, 12.554564 ], [ -84.375000, 11.178402 ], [ -87.187500, 11.178402 ], [ -87.187500, 13.923404 ], [ -84.375000, 13.923404 ], [ -84.375000, 15.284185 ], [ -82.968750, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.156250, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 23.241346 ], [ -80.156250, 23.241346 ], [ -80.156250, 21.943046 ] ] ], [ [ [ -82.968750, 23.241346 ], [ -82.968750, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 23.241346 ], [ -82.968750, 23.241346 ] ] ], [ [ [ -77.343750, 20.632784 ], [ -74.531250, 20.632784 ], [ -74.531250, 19.311143 ], [ -77.343750, 19.311143 ], [ -77.343750, 20.632784 ] ] ], [ [ [ -78.750000, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.156250, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 23.241346 ], [ -80.156250, 23.241346 ], [ -80.156250, 21.943046 ] ] ], [ [ [ -77.343750, 20.632784 ], [ -74.531250, 20.632784 ], [ -74.531250, 19.311143 ], [ -77.343750, 19.311143 ], [ -77.343750, 20.632784 ] ] ], [ [ [ -78.750000, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.943046 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 11.178402 ], [ -82.968750, 8.407168 ], [ -84.375000, 8.407168 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -82.968750, 11.178402 ] ] ] } } , { "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -81.562500, 9.795678 ], [ -81.562500, 8.407168 ] ] ], [ [ [ -78.750000, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 8.407168 ] ] ], [ [ [ -81.562500, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ], [ -81.562500, 7.013668 ], [ -81.562500, 8.407168 ] ] ], [ [ [ -78.750000, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.013668 ], [ -78.750000, 7.013668 ], [ -78.750000, 8.407168 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 19.311143 ], [ -68.906250, 17.978733 ], [ -71.718750, 17.978733 ], [ -71.718750, 19.311143 ], [ -68.906250, 19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 19.311143 ], [ -68.906250, 17.978733 ], [ -70.312500, 17.978733 ], [ -71.718750, 19.311143 ], [ -68.906250, 19.311143 ] ] ] } } , { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125000, 11.178402 ], [ -73.125000, 8.407168 ], [ -71.718750, 8.407168 ], [ -71.718750, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 5.615986 ], [ -67.500000, 5.615986 ], [ -67.500000, 1.406109 ], [ -68.906250, 1.406109 ], [ -68.906250, -2.811371 ], [ -73.125000, -2.811371 ], [ -73.125000, -1.406109 ], [ -74.531250, -1.406109 ], [ -74.531250, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 1.406109 ], [ -78.750000, 1.406109 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 11.178402 ], [ -73.125000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875000, 11.178402 ], [ -61.875000, 9.795678 ], [ -60.468750, 9.795678 ], [ -60.468750, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.281250, 2.811371 ], [ -63.281250, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 5.615986 ], [ -70.312500, 5.615986 ], [ -70.312500, 7.013668 ], [ -71.718750, 7.013668 ], [ -71.718750, 8.407168 ], [ -73.125000, 8.407168 ], [ -71.718750, 11.178402 ], [ -66.093750, 11.178402 ], [ -66.093750, 9.795678 ], [ -64.687500, 9.795678 ], [ -64.687500, 11.178402 ], [ -61.875000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875000, 11.178402 ], [ -61.875000, 9.795678 ], [ -60.468750, 9.795678 ], [ -60.468750, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.281250, 2.811371 ], [ -63.281250, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 5.615986 ], [ -70.312500, 5.615986 ], [ -70.312500, 7.013668 ], [ -71.718750, 7.013668 ], [ -71.718750, 11.178402 ], [ -66.093750, 11.178402 ], [ -66.093750, 9.795678 ], [ -64.687500, 9.795678 ], [ -64.687500, 11.178402 ], [ -61.875000, 11.178402 ] ] ] } } , { "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 11.178402 ], [ -60.468750, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 11.178402 ], [ -60.468750, 11.178402 ] ] ] } } , @@ -56,9 +56,9 @@ , { "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.437500, 5.615986 ], [ -53.437500, 2.811371 ], [ -56.250000, 2.811371 ], [ -56.250000, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 5.615986 ], [ -53.437500, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 66.513260 ], [ -22.500000, 65.946472 ], [ -15.468750, 65.946472 ], [ -14.062500, 66.513260 ], [ -14.062500, 64.774125 ], [ -15.468750, 64.774125 ], [ -15.468750, 63.548552 ], [ -22.500000, 63.548552 ], [ -22.500000, 64.168107 ], [ -23.906250, 64.168107 ], [ -23.906250, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.500000, 66.513260 ], [ -22.500000, 65.946472 ], [ -18.281250, 65.946472 ], [ -14.062500, 66.513260 ], [ -14.062500, 64.774125 ], [ -15.468750, 64.774125 ], [ -15.468750, 63.548552 ], [ -22.500000, 63.548552 ], [ -22.500000, 64.168107 ], [ -23.906250, 64.168107 ], [ -23.906250, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.977614 ], [ -7.031250, 54.162434 ], [ -5.625000, 54.162434 ], [ -5.625000, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.977614 ], [ -7.031250, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.977614 ], [ -5.625000, 54.162434 ], [ -5.625000, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.977614 ], [ -7.031250, 54.977614 ] ] ] } } , { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 58.813742 ], [ -2.812500, 58.077876 ], [ -4.218750, 58.077876 ], [ -4.218750, 57.326521 ], [ -1.406250, 57.326521 ], [ -1.406250, 56.559482 ], [ -2.812500, 56.559482 ], [ -2.812500, 55.776573 ], [ -1.406250, 55.776573 ], [ -1.406250, 54.162434 ], [ 0.000000, 54.162434 ], [ 0.000000, 52.482780 ], [ 1.406250, 52.482780 ], [ 1.406250, 50.736455 ], [ -2.812500, 50.736455 ], [ -2.812500, 49.837982 ], [ -5.625000, 49.837982 ], [ -5.625000, 50.736455 ], [ -4.218750, 50.736455 ], [ -4.218750, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -4.218750, 54.162434 ], [ -4.218750, 55.776573 ], [ -5.625000, 55.776573 ], [ -5.625000, 58.813742 ], [ -2.812500, 58.813742 ] ] ] } } , @@ -68,7 +68,7 @@ , { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 42.032974 ], [ -7.031250, 36.597889 ], [ -8.437500, 36.597889 ], [ -8.437500, 37.718590 ], [ -9.843750, 37.718590 ], [ -9.843750, 39.909736 ], [ -8.437500, 39.909736 ], [ -8.437500, 42.032974 ], [ -7.031250, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 43.068888 ], [ 0.000000, 42.032974 ], [ 2.812500, 42.032974 ], [ 2.812500, 40.979898 ], [ 1.406250, 40.979898 ], [ 1.406250, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 36.597889 ], [ -7.031250, 36.597889 ], [ -7.031250, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 43.068888 ], [ 0.000000, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 43.068888 ], [ 0.000000, 42.032974 ], [ 2.812500, 42.032974 ], [ 2.812500, 40.979898 ], [ 1.406250, 40.979898 ], [ 1.406250, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 36.597889 ], [ -7.031250, 36.597889 ], [ -7.031250, 39.909736 ], [ -8.437500, 42.032974 ], [ -8.437500, 43.068888 ], [ 0.000000, 43.068888 ] ] ] } } , { "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 35.460670 ], [ -2.812500, 34.307144 ], [ -1.406250, 34.307144 ], [ -1.406250, 31.952162 ], [ -4.218750, 31.952162 ], [ -4.218750, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 28.304381 ], [ -8.437500, 28.304381 ], [ -8.437500, 27.059126 ], [ -11.250000, 27.059126 ], [ -11.250000, 25.799891 ], [ -12.656250, 25.799891 ], [ -12.656250, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 23.241346 ], [ -15.468750, 23.241346 ], [ -15.468750, 25.799891 ], [ -14.062500, 25.799891 ], [ -14.062500, 27.059126 ], [ -12.656250, 27.059126 ], [ -12.656250, 28.304381 ], [ -9.843750, 28.304381 ], [ -9.843750, 33.137551 ], [ -7.031250, 33.137551 ], [ -7.031250, 34.307144 ], [ -5.625000, 35.460670 ], [ -2.812500, 35.460670 ] ] ] } } , @@ -84,17 +84,17 @@ , { "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 25.799891 ], [ -7.031250, 21.943046 ], [ -5.625000, 21.943046 ], [ -5.625000, 15.284185 ], [ -14.062500, 15.284185 ], [ -14.062500, 16.636192 ], [ -15.468750, 16.636192 ], [ -15.468750, 17.978733 ], [ -16.875000, 17.978733 ], [ -16.875000, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 23.241346 ], [ -11.250000, 23.241346 ], [ -11.250000, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.799891 ], [ -7.031250, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.218750, 24.527135 ], [ -4.218750, 23.241346 ], [ -1.406250, 23.241346 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 13.923404 ], [ -4.218750, 13.923404 ], [ -4.218750, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 12.554564 ], [ -9.843750, 12.554564 ], [ -9.843750, 11.178402 ], [ -11.250000, 11.178402 ], [ -11.250000, 13.923404 ], [ -12.656250, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 21.943046 ], [ -7.031250, 21.943046 ], [ -7.031250, 24.527135 ], [ -4.218750, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.218750, 24.527135 ], [ -4.218750, 23.241346 ], [ -1.406250, 23.241346 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 13.923404 ], [ -4.218750, 13.923404 ], [ -4.218750, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 12.554564 ], [ -9.843750, 12.554564 ], [ -9.843750, 11.178402 ], [ -11.250000, 11.178402 ], [ -11.250000, 12.554564 ], [ -12.656250, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 21.943046 ], [ -7.031250, 21.943046 ], [ -7.031250, 24.527135 ], [ -4.218750, 24.527135 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 1.406250, 13.923404 ], [ 1.406250, 12.554564 ], [ 2.812500, 12.554564 ], [ 2.812500, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 11.178402 ], [ -4.218750, 11.178402 ], [ -4.218750, 13.923404 ], [ -1.406250, 13.923404 ], [ -1.406250, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 1.406250, 13.923404 ], [ 1.406250, 12.554564 ], [ 2.812500, 12.554564 ], [ 2.812500, 11.178402 ], [ -1.406250, 11.178402 ], [ -2.812500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 11.178402 ], [ -4.218750, 11.178402 ], [ -4.218750, 13.923404 ], [ -1.406250, 13.923404 ], [ -1.406250, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 5.615986 ], [ -7.031250, 5.615986 ], [ -7.031250, 4.214943 ], [ -9.843750, 4.214943 ], [ -9.843750, 5.615986 ], [ -11.250000, 5.615986 ], [ -11.250000, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 5.615986 ], [ -7.031250, 4.214943 ], [ -9.843750, 4.214943 ], [ -9.843750, 5.615986 ], [ -11.250000, 5.615986 ], [ -11.250000, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } , { "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 9.795678 ], [ -2.812500, 5.615986 ], [ -5.625000, 5.615986 ], [ -5.625000, 4.214943 ], [ -7.031250, 4.214943 ], [ -7.031250, 5.615986 ], [ -8.437500, 5.615986 ], [ -8.437500, 9.795678 ], [ -2.812500, 9.795678 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 8.407168 ], [ 1.406250, 8.407168 ], [ 1.406250, 7.013668 ], [ 0.000000, 7.013668 ], [ 0.000000, 5.615986 ], [ -1.406250, 5.615986 ], [ -1.406250, 4.214943 ], [ -2.812500, 4.214943 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 1.406109 ], [ -77.343750, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -4.214943 ], [ -78.750000, -4.214943 ], [ -80.156250, -5.615986 ], [ -80.156250, 1.406109 ], [ -77.343750, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 1.406109 ], [ -77.343750, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -4.214943 ], [ -80.156250, -5.615986 ], [ -80.156250, 1.406109 ], [ -77.343750, 1.406109 ] ] ] } } , { "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.531250, 0.000000 ], [ -74.531250, -1.406109 ], [ -73.125000, -1.406109 ], [ -73.125000, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.718750, -4.214943 ], [ -71.718750, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -74.531250, -7.013668 ], [ -74.531250, -8.407168 ], [ -73.125000, -8.407168 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -68.906250, -11.178402 ], [ -68.906250, -17.978733 ], [ -73.125000, -17.978733 ], [ -73.125000, -16.636192 ], [ -75.937500, -16.636192 ], [ -75.937500, -13.923404 ], [ -77.343750, -13.923404 ], [ -77.343750, -11.178402 ], [ -78.750000, -11.178402 ], [ -78.750000, -8.407168 ], [ -80.156250, -8.407168 ], [ -80.156250, -7.013668 ], [ -81.562500, -7.013668 ], [ -81.562500, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -5.615986 ], [ -78.750000, -5.615986 ], [ -78.750000, -4.214943 ], [ -77.343750, -4.214943 ], [ -77.343750, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ] ] ] } } , @@ -106,11 +106,11 @@ , { "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -19.311143 ], [ -57.656250, -21.943046 ], [ -56.250000, -21.943046 ], [ -56.250000, -23.241346 ], [ -54.843750, -23.241346 ], [ -54.843750, -27.059126 ], [ -57.656250, -27.059126 ], [ -57.656250, -24.527135 ], [ -60.468750, -24.527135 ], [ -60.468750, -23.241346 ], [ -63.281250, -23.241346 ], [ -63.281250, -21.943046 ], [ -61.875000, -21.943046 ], [ -61.875000, -19.311143 ], [ -57.656250, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.093750, -54.162434 ], [ -66.093750, -54.977614 ], [ -68.906250, -54.977614 ], [ -68.906250, -54.162434 ], [ -66.093750, -54.162434 ] ] ], [ [ [ -63.281250, -21.943046 ], [ -63.281250, -23.241346 ], [ -60.468750, -23.241346 ], [ -60.468750, -24.527135 ], [ -57.656250, -24.527135 ], [ -57.656250, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -28.304381 ], [ -56.250000, -28.304381 ], [ -56.250000, -29.535230 ], [ -57.656250, -29.535230 ], [ -57.656250, -34.307144 ], [ -59.062500, -34.307144 ], [ -59.062500, -35.460670 ], [ -57.656250, -35.460670 ], [ -57.656250, -36.597889 ], [ -56.250000, -36.597889 ], [ -56.250000, -37.718590 ], [ -57.656250, -37.718590 ], [ -57.656250, -38.822591 ], [ -61.875000, -38.822591 ], [ -61.875000, -40.979898 ], [ -64.687500, -40.979898 ], [ -64.687500, -42.032974 ], [ -63.281250, -42.032974 ], [ -63.281250, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -45.089036 ], [ -67.500000, -45.089036 ], [ -67.500000, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -49.837982 ], [ -68.906250, -49.837982 ], [ -68.906250, -52.482780 ], [ -71.718750, -52.482780 ], [ -71.718750, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -48.922499 ], [ -71.718750, -48.922499 ], [ -71.718750, -36.597889 ], [ -70.312500, -36.597889 ], [ -70.312500, -28.304381 ], [ -68.906250, -28.304381 ], [ -68.906250, -24.527135 ], [ -67.500000, -24.527135 ], [ -67.500000, -23.241346 ], [ -66.093750, -23.241346 ], [ -66.093750, -21.943046 ], [ -63.281250, -21.943046 ] ] ], [ [ [ -53.437500, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.799891 ], [ -53.437500, -25.799891 ], [ -53.437500, -27.059126 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, -54.162434 ], [ -66.093750, -54.977614 ], [ -68.906250, -54.977614 ], [ -68.906250, -54.162434 ], [ -67.500000, -54.162434 ] ] ], [ [ [ -63.281250, -21.943046 ], [ -63.281250, -23.241346 ], [ -60.468750, -23.241346 ], [ -60.468750, -24.527135 ], [ -57.656250, -24.527135 ], [ -57.656250, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -28.304381 ], [ -56.250000, -28.304381 ], [ -56.250000, -29.535230 ], [ -57.656250, -29.535230 ], [ -57.656250, -34.307144 ], [ -59.062500, -34.307144 ], [ -59.062500, -35.460670 ], [ -57.656250, -35.460670 ], [ -57.656250, -36.597889 ], [ -56.250000, -36.597889 ], [ -56.250000, -37.718590 ], [ -57.656250, -37.718590 ], [ -57.656250, -38.822591 ], [ -61.875000, -38.822591 ], [ -61.875000, -40.979898 ], [ -64.687500, -40.979898 ], [ -64.687500, -42.032974 ], [ -63.281250, -42.032974 ], [ -63.281250, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -45.089036 ], [ -67.500000, -45.089036 ], [ -67.500000, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -49.837982 ], [ -68.906250, -49.837982 ], [ -68.906250, -52.482780 ], [ -71.718750, -52.482780 ], [ -71.718750, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -48.922499 ], [ -71.718750, -48.922499 ], [ -71.718750, -36.597889 ], [ -70.312500, -36.597889 ], [ -70.312500, -28.304381 ], [ -68.906250, -28.304381 ], [ -68.906250, -24.527135 ], [ -67.500000, -24.527135 ], [ -67.500000, -23.241346 ], [ -66.093750, -23.241346 ], [ -64.687500, -21.943046 ], [ -63.281250, -21.943046 ] ] ], [ [ [ -53.437500, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.799891 ], [ -53.437500, -25.799891 ], [ -53.437500, -27.059126 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, -30.751278 ], [ -56.250000, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -35.460670 ], [ -56.250000, -35.460670 ], [ -56.250000, -34.307144 ], [ -57.656250, -34.307144 ], [ -57.656250, -30.751278 ], [ -56.250000, -30.751278 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -51.618017 ], [ -57.656250, -52.482780 ], [ -60.468750, -52.482780 ], [ -61.875000, -51.618017 ], [ -57.656250, -51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -51.618017 ], [ -57.656250, -52.482780 ], [ -60.468750, -52.482780 ], [ -60.468750, -51.618017 ], [ -57.656250, -51.618017 ] ] ] } } , { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -168.750000, -83.979259 ], [ -168.750000, -84.405941 ], [ -167.343750, -84.405941 ], [ -167.343750, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.170970 ], [ -161.718750, -85.170970 ], [ -161.718750, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.402036 ], [ -156.093750, -85.402036 ], [ -156.093750, -85.170970 ], [ -151.875000, -85.170970 ], [ -151.875000, -85.287916 ], [ -150.468750, -85.287916 ], [ -150.468750, -85.513398 ], [ -149.062500, -85.513398 ], [ -149.062500, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.405941 ], [ -178.593750, -84.405941 ], [ -178.593750, -84.267172 ], [ -175.781250, -84.267172 ], [ -175.781250, -84.405941 ], [ -172.968750, -84.405941 ], [ -172.968750, -84.124973 ], [ -171.562500, -84.124973 ], [ -171.562500, -83.979259 ], [ -168.750000, -83.979259 ] ] ], [ [ [ -98.437500, -73.627789 ], [ -95.625000, -73.627789 ], [ -95.625000, -85.622069 ], [ -147.656250, -85.622069 ], [ -147.656250, -85.402036 ], [ -146.250000, -85.402036 ], [ -146.250000, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -143.437500, -85.170970 ], [ -143.437500, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.405941 ], [ -150.468750, -84.405941 ], [ -150.468750, -83.829945 ], [ -153.281250, -83.829945 ], [ -153.281250, -81.923186 ], [ -154.687500, -81.923186 ], [ -154.687500, -81.518272 ], [ -156.093750, -81.518272 ], [ -156.093750, -81.308321 ], [ -157.500000, -81.308321 ], [ -157.500000, -81.093214 ], [ -151.875000, -81.093214 ], [ -151.875000, -81.308321 ], [ -149.062500, -81.308321 ], [ -149.062500, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.647035 ], [ -146.250000, -80.647035 ], [ -146.250000, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -151.875000, -79.432371 ], [ -151.875000, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -157.500000, -78.630006 ], [ -157.500000, -77.466028 ], [ -158.906250, -77.466028 ], [ -158.906250, -76.840816 ], [ -157.500000, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.157163 ], [ -149.062500, -77.157163 ], [ -149.062500, -76.840816 ], [ -147.656250, -76.840816 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.497157 ], [ -142.031250, -75.497157 ], [ -142.031250, -75.140778 ], [ -137.812500, -75.140778 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.402163 ], [ -115.312500, -74.402163 ], [ -115.312500, -74.019543 ], [ -113.906250, -74.019543 ], [ -113.906250, -74.402163 ], [ -112.500000, -74.402163 ], [ -112.500000, -74.775843 ], [ -108.281250, -74.775843 ], [ -108.281250, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -101.250000, -74.775843 ], [ -101.250000, -74.019543 ], [ -102.656250, -74.019543 ], [ -102.656250, -73.226700 ], [ -104.062500, -73.226700 ], [ -104.062500, -72.816074 ], [ -98.437500, -72.816074 ], [ -98.437500, -73.627789 ] ] ], [ [ [ -161.718750, -78.349411 ], [ -161.718750, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -78.903929 ], [ -158.906250, -78.903929 ], [ -158.906250, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -163.125000, -79.432371 ], [ -163.125000, -78.349411 ], [ -161.718750, -78.349411 ] ] ], [ [ [ -118.125000, -73.627789 ], [ -118.125000, -74.019543 ], [ -122.343750, -74.019543 ], [ -122.343750, -73.627789 ], [ -118.125000, -73.627789 ] ] ], [ [ [ -125.156250, -73.627789 ], [ -125.156250, -74.019543 ], [ -126.562500, -74.019543 ], [ -126.562500, -73.627789 ], [ -125.156250, -73.627789 ] ] ], [ [ [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ], [ -102.656250, -72.395706 ], [ -102.656250, -71.965388 ], [ -97.031250, -71.965388 ] ] ] ] } } , @@ -118,7 +118,7 @@ , { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.406250, -65.946472 ], [ 136.406250, -67.067433 ], [ 146.250000, -67.067433 ], [ 146.250000, -68.138852 ], [ 149.062500, -68.138852 ], [ 149.062500, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -69.162558 ], [ 157.500000, -69.162558 ], [ 157.500000, -69.657086 ], [ 158.906250, -69.657086 ], [ 158.906250, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.612614 ], [ 167.343750, -70.612614 ], [ 167.343750, -71.074056 ], [ 170.156250, -71.074056 ], [ 170.156250, -71.524909 ], [ 171.562500, -71.524909 ], [ 171.562500, -72.395706 ], [ 170.156250, -72.395706 ], [ 170.156250, -73.627789 ], [ 167.343750, -73.627789 ], [ 167.343750, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -75.140778 ], [ 164.531250, -75.140778 ], [ 164.531250, -75.845169 ], [ 163.125000, -75.845169 ], [ 163.125000, -77.466028 ], [ 164.531250, -77.466028 ], [ 164.531250, -78.349411 ], [ 165.937500, -78.349411 ], [ 165.937500, -78.630006 ], [ 167.343750, -78.630006 ], [ 167.343750, -78.903929 ], [ 164.531250, -78.903929 ], [ 164.531250, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.432371 ], [ 160.312500, -79.432371 ], [ 160.312500, -81.093214 ], [ 161.718750, -81.093214 ], [ 161.718750, -81.923186 ], [ 163.125000, -81.923186 ], [ 163.125000, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -83.194896 ], [ 167.343750, -83.194896 ], [ 167.343750, -83.359511 ], [ 168.750000, -83.359511 ], [ 168.750000, -83.829945 ], [ 170.156250, -83.829945 ], [ 170.156250, -83.979259 ], [ 172.968750, -83.979259 ], [ 172.968750, -84.405941 ], [ 174.375000, -84.405941 ], [ 174.375000, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 178.593750, -84.405941 ], [ 178.593750, -84.541361 ], [ 180.000000, -84.541361 ], [ 180.000000, -85.622069 ], [ -22.500000, -85.622069 ], [ -22.500000, -76.184995 ], [ -21.093750, -76.184995 ], [ -21.093750, -75.845169 ], [ -18.281250, -75.845169 ], [ -18.281250, -75.497157 ], [ -16.875000, -75.497157 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.395706 ], [ -11.250000, -72.395706 ], [ -11.250000, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.074056 ], [ 0.000000, -71.074056 ], [ 0.000000, -71.524909 ], [ 1.406250, -71.524909 ], [ 1.406250, -71.074056 ], [ 5.625000, -71.074056 ], [ 5.625000, -70.612614 ], [ 7.031250, -70.612614 ], [ 7.031250, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.612614 ], [ 12.656250, -70.612614 ], [ 12.656250, -70.140364 ], [ 14.062500, -70.140364 ], [ 14.062500, -70.612614 ], [ 15.468750, -70.612614 ], [ 15.468750, -70.140364 ], [ 18.281250, -70.140364 ], [ 18.281250, -69.657086 ], [ 19.687500, -69.657086 ], [ 19.687500, -70.140364 ], [ 21.093750, -70.140364 ], [ 21.093750, -70.612614 ], [ 28.125000, -70.612614 ], [ 28.125000, -70.140364 ], [ 30.937500, -70.140364 ], [ 30.937500, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.162558 ], [ 33.750000, -69.162558 ], [ 33.750000, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 36.562500, -69.162558 ], [ 36.562500, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.162558 ], [ 42.187500, -69.162558 ], [ 42.187500, -68.656555 ], [ 43.593750, -68.656555 ], [ 43.593750, -68.138852 ], [ 46.406250, -68.138852 ], [ 46.406250, -67.609221 ], [ 49.218750, -67.609221 ], [ 49.218750, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 52.031250, -66.513260 ], [ 52.031250, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.513260 ], [ 57.656250, -66.513260 ], [ 57.656250, -67.067433 ], [ 59.062500, -67.067433 ], [ 59.062500, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -68.138852 ], [ 63.281250, -68.138852 ], [ 63.281250, -67.609221 ], [ 67.500000, -67.609221 ], [ 67.500000, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -68.656555 ], [ 70.312500, -68.656555 ], [ 70.312500, -69.657086 ], [ 68.906250, -69.657086 ], [ 68.906250, -70.140364 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -72.395706 ], [ 71.718750, -72.395706 ], [ 71.718750, -71.524909 ], [ 73.125000, -71.524909 ], [ 73.125000, -70.140364 ], [ 74.531250, -70.140364 ], [ 74.531250, -69.657086 ], [ 78.750000, -69.657086 ], [ 78.750000, -68.138852 ], [ 81.562500, -68.138852 ], [ 81.562500, -67.609221 ], [ 82.968750, -67.609221 ], [ 82.968750, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 95.625000, -67.067433 ], [ 95.625000, -67.609221 ], [ 97.031250, -67.609221 ], [ 97.031250, -67.067433 ], [ 101.250000, -67.067433 ], [ 101.250000, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -67.067433 ], [ 109.687500, -67.067433 ], [ 109.687500, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.513260 ], [ 116.718750, -66.513260 ], [ 116.718750, -67.067433 ], [ 122.343750, -67.067433 ], [ 122.343750, -66.513260 ], [ 135.000000, -66.513260 ], [ 135.000000, -65.946472 ], [ 136.406250, -65.946472 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.125000, 53.330873 ], [ 73.125000, 54.162434 ], [ 70.312500, 54.162434 ], [ 70.312500, 54.977614 ], [ 66.093750, 54.977614 ], [ 66.093750, 54.162434 ], [ 61.875000, 54.162434 ], [ 61.875000, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 51.618017 ], [ 61.875000, 51.618017 ], [ 61.875000, 50.736455 ], [ 52.031250, 50.736455 ], [ 52.031250, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 49.837982 ], [ 46.406250, 49.837982 ], [ 46.406250, 47.989922 ], [ 47.812500, 47.989922 ], [ 47.812500, 47.040182 ], [ 49.218750, 47.040182 ], [ 49.218750, 46.073231 ], [ 47.812500, 46.073231 ], [ 47.812500, 45.089036 ], [ 46.406250, 45.089036 ], [ 46.406250, 44.087585 ], [ 47.812500, 44.087585 ], [ 47.812500, 42.032974 ], [ 49.218750, 42.032974 ], [ 49.218750, 40.979898 ], [ 46.406250, 40.979898 ], [ 46.406250, 42.032974 ], [ 45.000000, 42.032974 ], [ 45.000000, 43.068888 ], [ 39.375000, 43.068888 ], [ 39.375000, 44.087585 ], [ 37.968750, 44.087585 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 49.837982 ], [ 35.156250, 49.837982 ], [ 35.156250, 51.618017 ], [ 33.750000, 51.618017 ], [ 33.750000, 52.482780 ], [ 30.937500, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 58.077876 ], [ 26.718750, 58.077876 ], [ 26.718750, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 29.531250, 59.534318 ], [ 29.531250, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.930432 ], [ 29.531250, 60.930432 ], [ 29.531250, 61.606396 ], [ 30.937500, 61.606396 ], [ 30.937500, 62.915233 ], [ 29.531250, 62.915233 ], [ 29.531250, 63.548552 ], [ 30.937500, 63.548552 ], [ 30.937500, 64.168107 ], [ 29.531250, 64.168107 ], [ 29.531250, 67.609221 ], [ 28.125000, 67.609221 ], [ 28.125000, 69.162558 ], [ 30.937500, 69.162558 ], [ 30.937500, 69.657086 ], [ 33.750000, 69.657086 ], [ 33.750000, 69.162558 ], [ 36.562500, 69.162558 ], [ 36.562500, 68.656555 ], [ 39.375000, 68.656555 ], [ 39.375000, 68.138852 ], [ 40.781250, 68.138852 ], [ 40.781250, 66.513260 ], [ 39.375000, 66.513260 ], [ 39.375000, 65.946472 ], [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 64.774125 ], [ 39.375000, 64.774125 ], [ 39.375000, 65.366837 ], [ 40.781250, 65.366837 ], [ 40.781250, 65.946472 ], [ 42.187500, 65.946472 ], [ 42.187500, 66.513260 ], [ 43.593750, 66.513260 ], [ 43.593750, 65.946472 ], [ 45.000000, 65.946472 ], [ 45.000000, 66.513260 ], [ 47.812500, 66.513260 ], [ 47.812500, 67.609221 ], [ 50.625000, 67.609221 ], [ 50.625000, 68.138852 ], [ 53.437500, 68.138852 ], [ 53.437500, 68.656555 ], [ 59.062500, 68.656555 ], [ 59.062500, 68.138852 ], [ 60.468750, 68.138852 ], [ 60.468750, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.162558 ], [ 64.687500, 69.162558 ], [ 64.687500, 68.656555 ], [ 67.500000, 68.656555 ], [ 67.500000, 70.140364 ], [ 66.093750, 70.140364 ], [ 66.093750, 71.074056 ], [ 67.500000, 71.074056 ], [ 67.500000, 71.524909 ], [ 68.906250, 71.524909 ], [ 68.906250, 72.816074 ], [ 73.125000, 72.816074 ], [ 73.125000, 71.965388 ], [ 71.718750, 71.965388 ], [ 71.718750, 71.074056 ], [ 73.125000, 71.074056 ], [ 73.125000, 71.524909 ], [ 74.531250, 71.524909 ], [ 74.531250, 72.395706 ], [ 75.937500, 72.395706 ], [ 75.937500, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.395706 ], [ 80.156250, 72.395706 ], [ 80.156250, 50.736455 ], [ 78.750000, 50.736455 ], [ 78.750000, 52.482780 ], [ 77.343750, 52.482780 ], [ 77.343750, 53.330873 ], [ 73.125000, 53.330873 ] ], [ [ 73.125000, 69.162558 ], [ 73.125000, 67.067433 ], [ 71.718750, 67.067433 ], [ 71.718750, 65.946472 ], [ 73.125000, 65.946472 ], [ 73.125000, 66.513260 ], [ 74.531250, 66.513260 ], [ 74.531250, 69.162558 ], [ 73.125000, 69.162558 ] ], [ [ 35.156250, 65.946472 ], [ 35.156250, 66.513260 ], [ 33.750000, 66.513260 ], [ 33.750000, 65.946472 ], [ 35.156250, 65.946472 ] ], [ [ 67.500000, 68.656555 ], [ 67.500000, 68.138852 ], [ 68.906250, 68.138852 ], [ 68.906250, 68.656555 ], [ 67.500000, 68.656555 ] ], [ [ 73.125000, 71.074056 ], [ 73.125000, 70.140364 ], [ 74.531250, 70.140364 ], [ 74.531250, 71.074056 ], [ 73.125000, 71.074056 ] ] ], [ [ [ 22.500000, 54.977614 ], [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 22.500000, 54.977614 ] ] ], [ [ [ -178.593750, 68.656555 ], [ -178.593750, 68.138852 ], [ -177.187500, 68.138852 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.067433 ], [ -171.562500, 67.067433 ], [ -171.562500, 66.513260 ], [ -170.156250, 66.513260 ], [ -170.156250, 65.366837 ], [ -172.968750, 65.366837 ], [ -172.968750, 64.168107 ], [ -174.375000, 64.168107 ], [ -174.375000, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 68.656555 ], [ -178.593750, 68.656555 ] ] ], [ [ [ -178.593750, 71.524909 ], [ -178.593750, 70.612614 ], [ -180.000000, 70.612614 ], [ -180.000000, 71.524909 ], [ -178.593750, 71.524909 ] ] ], [ [ [ 67.500000, 76.840816 ], [ 67.500000, 76.516819 ], [ 68.906250, 76.516819 ], [ 68.906250, 76.184995 ], [ 67.500000, 76.184995 ], [ 67.500000, 75.845169 ], [ 64.687500, 75.845169 ], [ 64.687500, 75.497157 ], [ 63.281250, 75.497157 ], [ 63.281250, 75.140778 ], [ 61.875000, 75.140778 ], [ 61.875000, 74.775843 ], [ 60.468750, 74.775843 ], [ 60.468750, 74.402163 ], [ 59.062500, 74.402163 ], [ 59.062500, 73.627789 ], [ 57.656250, 73.627789 ], [ 57.656250, 72.816074 ], [ 56.250000, 72.816074 ], [ 56.250000, 72.395706 ], [ 54.843750, 72.395706 ], [ 54.843750, 71.965388 ], [ 56.250000, 71.965388 ], [ 56.250000, 71.074056 ], [ 57.656250, 70.612614 ], [ 53.437500, 70.612614 ], [ 53.437500, 71.074056 ], [ 52.031250, 71.074056 ], [ 52.031250, 72.816074 ], [ 53.437500, 72.816074 ], [ 53.437500, 73.226700 ], [ 54.843750, 73.226700 ], [ 54.843750, 74.402163 ], [ 56.250000, 74.402163 ], [ 56.250000, 75.140778 ], [ 57.656250, 75.140778 ], [ 57.656250, 75.497157 ], [ 59.062500, 75.497157 ], [ 59.062500, 75.845169 ], [ 60.468750, 75.845169 ], [ 60.468750, 76.184995 ], [ 63.281250, 76.184995 ], [ 63.281250, 76.516819 ], [ 66.093750, 76.516819 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ] ] ], [ [ [ 47.812500, 80.872827 ], [ 47.812500, 80.647035 ], [ 50.625000, 80.647035 ], [ 50.625000, 80.415707 ], [ 49.218750, 80.415707 ], [ 49.218750, 79.935918 ], [ 46.406250, 79.935918 ], [ 46.406250, 80.872827 ], [ 47.812500, 80.872827 ] ] ], [ [ [ 45.000000, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.609221 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.125000, 53.330873 ], [ 73.125000, 54.162434 ], [ 70.312500, 54.162434 ], [ 70.312500, 54.977614 ], [ 66.093750, 54.977614 ], [ 66.093750, 54.162434 ], [ 61.875000, 54.162434 ], [ 61.875000, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 51.618017 ], [ 61.875000, 51.618017 ], [ 61.875000, 50.736455 ], [ 52.031250, 50.736455 ], [ 52.031250, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 49.837982 ], [ 46.406250, 49.837982 ], [ 46.406250, 47.989922 ], [ 47.812500, 47.989922 ], [ 47.812500, 47.040182 ], [ 49.218750, 47.040182 ], [ 49.218750, 46.073231 ], [ 47.812500, 46.073231 ], [ 47.812500, 45.089036 ], [ 46.406250, 45.089036 ], [ 46.406250, 44.087585 ], [ 47.812500, 44.087585 ], [ 47.812500, 42.032974 ], [ 49.218750, 42.032974 ], [ 49.218750, 40.979898 ], [ 46.406250, 40.979898 ], [ 46.406250, 42.032974 ], [ 45.000000, 42.032974 ], [ 45.000000, 43.068888 ], [ 39.375000, 43.068888 ], [ 39.375000, 44.087585 ], [ 37.968750, 44.087585 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 49.837982 ], [ 35.156250, 49.837982 ], [ 35.156250, 51.618017 ], [ 33.750000, 51.618017 ], [ 33.750000, 52.482780 ], [ 30.937500, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 58.077876 ], [ 26.718750, 58.077876 ], [ 26.718750, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 29.531250, 59.534318 ], [ 29.531250, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.930432 ], [ 29.531250, 60.930432 ], [ 29.531250, 61.606396 ], [ 30.937500, 61.606396 ], [ 30.937500, 62.915233 ], [ 29.531250, 62.915233 ], [ 29.531250, 63.548552 ], [ 30.937500, 63.548552 ], [ 30.937500, 64.168107 ], [ 29.531250, 64.168107 ], [ 29.531250, 67.609221 ], [ 28.125000, 67.609221 ], [ 28.125000, 69.162558 ], [ 30.937500, 69.162558 ], [ 30.937500, 69.657086 ], [ 33.750000, 69.657086 ], [ 33.750000, 69.162558 ], [ 36.562500, 69.162558 ], [ 36.562500, 68.656555 ], [ 39.375000, 68.656555 ], [ 39.375000, 68.138852 ], [ 40.781250, 68.138852 ], [ 40.781250, 66.513260 ], [ 39.375000, 66.513260 ], [ 39.375000, 65.946472 ], [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 64.774125 ], [ 39.375000, 64.774125 ], [ 39.375000, 65.366837 ], [ 40.781250, 65.366837 ], [ 40.781250, 65.946472 ], [ 42.187500, 65.946472 ], [ 42.187500, 66.513260 ], [ 43.593750, 66.513260 ], [ 43.593750, 65.946472 ], [ 45.000000, 65.946472 ], [ 45.000000, 66.513260 ], [ 47.812500, 66.513260 ], [ 47.812500, 67.609221 ], [ 50.625000, 67.609221 ], [ 50.625000, 68.138852 ], [ 53.437500, 68.138852 ], [ 53.437500, 68.656555 ], [ 59.062500, 68.656555 ], [ 59.062500, 68.138852 ], [ 60.468750, 68.138852 ], [ 60.468750, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.162558 ], [ 64.687500, 69.162558 ], [ 64.687500, 68.656555 ], [ 67.500000, 68.656555 ], [ 67.500000, 70.140364 ], [ 66.093750, 70.140364 ], [ 66.093750, 71.074056 ], [ 67.500000, 71.074056 ], [ 67.500000, 71.524909 ], [ 68.906250, 71.524909 ], [ 68.906250, 72.816074 ], [ 73.125000, 72.816074 ], [ 73.125000, 71.965388 ], [ 71.718750, 71.965388 ], [ 71.718750, 71.074056 ], [ 73.125000, 71.074056 ], [ 73.125000, 71.524909 ], [ 74.531250, 71.524909 ], [ 74.531250, 72.395706 ], [ 75.937500, 72.395706 ], [ 75.937500, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.395706 ], [ 80.156250, 72.395706 ], [ 80.156250, 50.736455 ], [ 78.750000, 50.736455 ], [ 78.750000, 52.482780 ], [ 77.343750, 52.482780 ], [ 77.343750, 53.330873 ], [ 73.125000, 53.330873 ] ], [ [ 73.125000, 69.162558 ], [ 73.125000, 67.067433 ], [ 71.718750, 67.067433 ], [ 71.718750, 65.946472 ], [ 73.125000, 65.946472 ], [ 73.125000, 66.513260 ], [ 74.531250, 66.513260 ], [ 74.531250, 69.162558 ], [ 73.125000, 69.162558 ] ], [ [ 35.156250, 65.946472 ], [ 35.156250, 66.513260 ], [ 33.750000, 66.513260 ], [ 33.750000, 65.946472 ], [ 35.156250, 65.946472 ] ], [ [ 67.500000, 68.656555 ], [ 67.500000, 68.138852 ], [ 68.906250, 68.138852 ], [ 68.906250, 68.656555 ], [ 67.500000, 68.656555 ] ], [ [ 73.125000, 71.074056 ], [ 73.125000, 70.140364 ], [ 74.531250, 70.140364 ], [ 74.531250, 71.074056 ], [ 73.125000, 71.074056 ] ] ], [ [ [ 21.093750, 54.977614 ], [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 21.093750, 54.977614 ] ] ], [ [ [ -178.593750, 68.656555 ], [ -178.593750, 68.138852 ], [ -177.187500, 68.138852 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.067433 ], [ -171.562500, 67.067433 ], [ -171.562500, 66.513260 ], [ -170.156250, 66.513260 ], [ -170.156250, 65.366837 ], [ -172.968750, 65.366837 ], [ -172.968750, 64.168107 ], [ -174.375000, 64.168107 ], [ -174.375000, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 68.656555 ], [ -178.593750, 68.656555 ] ] ], [ [ [ -178.593750, 71.524909 ], [ -178.593750, 70.612614 ], [ -180.000000, 70.612614 ], [ -180.000000, 71.524909 ], [ -178.593750, 71.524909 ] ] ], [ [ [ 67.500000, 76.840816 ], [ 67.500000, 76.516819 ], [ 68.906250, 76.516819 ], [ 68.906250, 76.184995 ], [ 67.500000, 76.184995 ], [ 67.500000, 75.845169 ], [ 64.687500, 75.845169 ], [ 64.687500, 75.497157 ], [ 63.281250, 75.497157 ], [ 63.281250, 75.140778 ], [ 61.875000, 75.140778 ], [ 61.875000, 74.775843 ], [ 60.468750, 74.775843 ], [ 60.468750, 74.402163 ], [ 59.062500, 74.402163 ], [ 59.062500, 73.627789 ], [ 57.656250, 73.627789 ], [ 57.656250, 72.816074 ], [ 56.250000, 72.816074 ], [ 56.250000, 72.395706 ], [ 54.843750, 72.395706 ], [ 54.843750, 71.965388 ], [ 56.250000, 71.965388 ], [ 56.250000, 71.074056 ], [ 57.656250, 70.612614 ], [ 53.437500, 70.612614 ], [ 53.437500, 71.074056 ], [ 52.031250, 71.074056 ], [ 52.031250, 72.816074 ], [ 53.437500, 72.816074 ], [ 53.437500, 73.226700 ], [ 54.843750, 73.226700 ], [ 54.843750, 74.402163 ], [ 56.250000, 74.402163 ], [ 56.250000, 75.140778 ], [ 57.656250, 75.140778 ], [ 57.656250, 75.497157 ], [ 59.062500, 75.497157 ], [ 59.062500, 75.845169 ], [ 60.468750, 75.845169 ], [ 60.468750, 76.184995 ], [ 63.281250, 76.184995 ], [ 63.281250, 76.516819 ], [ 66.093750, 76.516819 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ] ] ], [ [ [ 47.812500, 80.872827 ], [ 47.812500, 80.647035 ], [ 50.625000, 80.647035 ], [ 50.625000, 80.415707 ], [ 49.218750, 80.415707 ], [ 49.218750, 79.935918 ], [ 46.406250, 79.935918 ], [ 46.406250, 80.872827 ], [ 47.812500, 80.872827 ] ] ], [ [ [ 45.000000, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.609221 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 77.466028 ], [ 105.468750, 77.157163 ], [ 104.062500, 77.157163 ], [ 104.062500, 76.840816 ], [ 106.875000, 76.840816 ], [ 106.875000, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.840816 ], [ 111.093750, 76.840816 ], [ 111.093750, 76.516819 ], [ 112.500000, 76.516819 ], [ 112.500000, 76.184995 ], [ 113.906250, 76.184995 ], [ 113.906250, 75.140778 ], [ 112.500000, 75.140778 ], [ 112.500000, 74.775843 ], [ 111.093750, 74.775843 ], [ 111.093750, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.019543 ], [ 111.093750, 74.019543 ], [ 111.093750, 73.627789 ], [ 118.125000, 73.627789 ], [ 118.125000, 73.226700 ], [ 120.937500, 73.226700 ], [ 120.937500, 72.816074 ], [ 123.750000, 72.816074 ], [ 123.750000, 73.627789 ], [ 126.562500, 73.627789 ], [ 126.562500, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.816074 ], [ 129.375000, 72.816074 ], [ 129.375000, 71.965388 ], [ 127.968750, 71.965388 ], [ 127.968750, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 70.612614 ], [ 130.781250, 70.612614 ], [ 130.781250, 71.074056 ], [ 132.187500, 71.074056 ], [ 132.187500, 71.524909 ], [ 139.218750, 71.524909 ], [ 139.218750, 72.395706 ], [ 140.625000, 72.395706 ], [ 140.625000, 72.816074 ], [ 143.437500, 72.816074 ], [ 143.437500, 72.395706 ], [ 149.062500, 72.395706 ], [ 149.062500, 71.965388 ], [ 150.468750, 71.965388 ], [ 150.468750, 71.074056 ], [ 151.875000, 71.074056 ], [ 151.875000, 70.612614 ], [ 156.093750, 70.612614 ], [ 156.093750, 71.074056 ], [ 158.906250, 71.074056 ], [ 158.906250, 70.612614 ], [ 160.312500, 70.612614 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 167.343750, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 68.656555 ], [ 170.156250, 68.656555 ], [ 170.156250, 69.657086 ], [ 175.781250, 69.657086 ], [ 175.781250, 69.162558 ], [ 180.000000, 69.162558 ], [ 180.000000, 65.946472 ], [ 80.156250, 65.946472 ], [ 80.156250, 73.627789 ], [ 87.187500, 73.627789 ], [ 87.187500, 74.019543 ], [ 85.781250, 74.019543 ], [ 85.781250, 74.775843 ], [ 87.187500, 74.775843 ], [ 87.187500, 75.140778 ], [ 90.000000, 75.140778 ], [ 90.000000, 75.497157 ], [ 92.812500, 75.497157 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.840816 ], [ 102.656250, 76.840816 ], [ 102.656250, 77.466028 ], [ 105.468750, 77.466028 ] ] ], [ [ [ 180.000000, 71.074056 ], [ 180.000000, 70.612614 ], [ 178.593750, 70.612614 ], [ 178.593750, 71.074056 ], [ 180.000000, 71.074056 ] ] ], [ [ [ 142.031250, 73.627789 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.627789 ], [ 142.031250, 73.627789 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 147.656250, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.775843 ], [ 146.250000, 74.775843 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ 142.031250, 76.184995 ], [ 142.031250, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 74.775843 ], [ 136.406250, 74.775843 ], [ 136.406250, 75.497157 ], [ 137.812500, 75.497157 ], [ 137.812500, 75.845169 ], [ 139.218750, 75.845169 ], [ 139.218750, 76.184995 ], [ 142.031250, 76.184995 ] ] ], [ [ [ 99.843750, 78.630006 ], [ 97.031250, 78.630006 ], [ 97.031250, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 79.171335 ], [ 92.812500, 79.171335 ], [ 92.812500, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.415707 ], [ 92.812500, 80.415707 ], [ 92.812500, 80.872827 ], [ 94.218750, 80.872827 ], [ 94.218750, 81.093214 ], [ 97.031250, 81.093214 ], [ 97.031250, 80.647035 ], [ 98.437500, 80.647035 ], [ 98.437500, 80.178713 ], [ 99.843750, 80.178713 ], [ 99.843750, 78.630006 ] ] ], [ [ [ 99.843750, 78.630006 ], [ 101.250000, 78.630006 ], [ 101.250000, 79.171335 ], [ 102.656250, 79.171335 ], [ 102.656250, 78.903929 ], [ 104.062500, 78.903929 ], [ 104.062500, 78.630006 ], [ 105.468750, 78.630006 ], [ 105.468750, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.630006 ] ] ] ] } } , @@ -132,13 +132,13 @@ , { "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.330873 ], [ 7.031250, 51.618017 ], [ 4.218750, 51.618017 ], [ 4.218750, 53.330873 ], [ 7.031250, 53.330873 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.618017 ], [ 5.625000, 49.837982 ], [ 4.218750, 49.837982 ], [ 4.218750, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 5.625000, 51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.618017 ], [ 5.625000, 49.837982 ], [ 4.218750, 49.837982 ], [ 4.218750, 50.736455 ], [ 2.812500, 51.618017 ], [ 5.625000, 51.618017 ] ] ] } } , { "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 14.062500, 54.162434 ], [ 14.062500, 50.736455 ], [ 12.656250, 50.736455 ], [ 12.656250, 48.922499 ], [ 14.062500, 48.922499 ], [ 14.062500, 47.989922 ], [ 8.437500, 47.989922 ], [ 8.437500, 48.922499 ], [ 5.625000, 48.922499 ], [ 5.625000, 51.618017 ], [ 7.031250, 51.618017 ], [ 7.031250, 53.330873 ], [ 8.437500, 53.330873 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , { "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 47.989922 ], [ 9.843750, 46.073231 ], [ 5.625000, 46.073231 ], [ 5.625000, 47.040182 ], [ 7.031250, 47.040182 ], [ 7.031250, 47.989922 ], [ 9.843750, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 50.736455 ], [ 16.875000, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 50.736455 ], [ 16.875000, 50.736455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 50.736455 ], [ 18.281250, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 50.736455 ], [ 16.875000, 50.736455 ] ] ] } } , { "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 54.162434 ], [ 23.906250, 52.482780 ], [ 22.500000, 52.482780 ], [ 22.500000, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 19.687500, 48.922499 ], [ 19.687500, 49.837982 ], [ 16.875000, 49.837982 ], [ 16.875000, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 54.162434 ], [ 23.906250, 54.162434 ] ] ] } } , @@ -146,7 +146,7 @@ , { "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 46.073231 ], [ 15.468750, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 46.073231 ], [ 15.468750, 46.073231 ] ] ], [ [ [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 46.073231 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ], [ 12.656250, 36.597889 ], [ 12.656250, 37.718590 ], [ 15.468750, 37.718590 ] ] ], [ [ [ 12.656250, 47.040182 ], [ 12.656250, 44.087585 ], [ 14.062500, 44.087585 ], [ 14.062500, 42.032974 ], [ 15.468750, 42.032974 ], [ 15.468750, 40.979898 ], [ 16.875000, 40.979898 ], [ 16.875000, 37.718590 ], [ 15.468750, 37.718590 ], [ 15.468750, 39.909736 ], [ 14.062500, 39.909736 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 42.032974 ], [ 9.843750, 42.032974 ], [ 9.843750, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 46.073231 ], [ 9.843750, 46.073231 ], [ 9.843750, 47.040182 ], [ 12.656250, 47.040182 ] ] ], [ [ [ 9.843750, 40.979898 ], [ 9.843750, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.843750, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ], [ 12.656250, 36.597889 ], [ 12.656250, 37.718590 ], [ 15.468750, 37.718590 ] ] ], [ [ [ 12.656250, 47.040182 ], [ 12.656250, 44.087585 ], [ 14.062500, 44.087585 ], [ 14.062500, 42.032974 ], [ 15.468750, 42.032974 ], [ 15.468750, 40.979898 ], [ 16.875000, 40.979898 ], [ 16.875000, 37.718590 ], [ 15.468750, 37.718590 ], [ 15.468750, 39.909736 ], [ 14.062500, 39.909736 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 42.032974 ], [ 9.843750, 42.032974 ], [ 9.843750, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 46.073231 ], [ 9.843750, 46.073231 ], [ 12.656250, 47.040182 ] ] ], [ [ [ 9.843750, 40.979898 ], [ 9.843750, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.843750, 40.979898 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 43.068888 ], [ 15.468750, 43.068888 ], [ 15.468750, 44.087585 ], [ 16.875000, 44.087585 ], [ 16.875000, 43.068888 ] ] ], [ [ [ 18.281250, 45.089036 ], [ 15.468750, 45.089036 ], [ 15.468750, 46.073231 ], [ 18.281250, 46.073231 ], [ 18.281250, 45.089036 ] ] ], [ [ [ 16.875000, 43.068888 ], [ 18.281250, 43.068888 ], [ 18.281250, 42.032974 ], [ 16.875000, 42.032974 ], [ 16.875000, 43.068888 ] ] ] ] } } , @@ -162,7 +162,7 @@ , { "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.032974 ], [ 19.687500, 42.032974 ], [ 19.687500, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 42.032974 ], [ 21.093750, 39.909736 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.032974 ], [ 21.093750, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.068888 ], [ 21.093750, 42.032974 ], [ 21.093750, 39.909736 ], [ 19.687500, 39.909736 ], [ 19.687500, 43.068888 ] ] ] } } , { "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.032974 ], [ 22.500000, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 42.032974 ], [ 22.500000, 42.032974 ] ] ] } } , @@ -170,15 +170,15 @@ , { "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 58.077876 ], [ 25.312500, 57.326521 ], [ 28.125000, 57.326521 ], [ 28.125000, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.559482 ], [ 22.500000, 56.559482 ], [ 21.093750, 55.776573 ], [ 21.093750, 57.326521 ], [ 23.906250, 57.326521 ], [ 23.906250, 58.077876 ], [ 25.312500, 58.077876 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 26.718750, 58.813742 ], [ 26.718750, 58.077876 ], [ 28.125000, 58.077876 ], [ 28.125000, 57.326521 ], [ 25.312500, 57.326521 ], [ 25.312500, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.906250, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 26.718750, 58.813742 ], [ 26.718750, 58.077876 ], [ 28.125000, 58.077876 ], [ 28.125000, 57.326521 ], [ 25.312500, 57.326521 ], [ 23.906250, 58.077876 ], [ 23.906250, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } , { "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.559482 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ], [ 25.312500, 54.977614 ], [ 25.312500, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.776573 ], [ 22.500000, 55.776573 ], [ 22.500000, 56.559482 ], [ 25.312500, 56.559482 ] ] ] } } , { "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, 55.776573 ], [ 30.937500, 54.162434 ], [ 32.343750, 54.162434 ], [ 32.343750, 53.330873 ], [ 30.937500, 53.330873 ], [ 30.937500, 52.482780 ], [ 32.343750, 52.482780 ], [ 32.343750, 51.618017 ], [ 22.500000, 51.618017 ], [ 22.500000, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.776573 ], [ 30.937500, 55.776573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 47.989922 ], [ 26.718750, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.087585 ], [ 21.093750, 44.087585 ], [ 21.093750, 47.040182 ], [ 22.500000, 47.989922 ], [ 26.718750, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 47.989922 ], [ 26.718750, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.087585 ], [ 21.093750, 44.087585 ], [ 21.093750, 46.073231 ], [ 22.500000, 47.989922 ], [ 26.718750, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 44.087585 ], [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 44.087585 ], [ 28.125000, 44.087585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 44.087585 ], [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 40.979898 ], [ 23.906250, 40.979898 ], [ 22.500000, 44.087585 ], [ 28.125000, 44.087585 ] ] ] } } , { "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 47.989922 ], [ 29.531250, 46.073231 ], [ 28.125000, 46.073231 ], [ 28.125000, 47.040182 ], [ 26.718750, 47.989922 ], [ 29.531250, 47.989922 ] ] ] } } , @@ -198,11 +198,11 @@ , { "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.218750, 11.178402 ], [ 4.218750, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 5.615986 ], [ 1.406250, 5.615986 ], [ 1.406250, 11.178402 ], [ 4.218750, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 13.923404 ], [ 11.250000, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 9.795678 ], [ 12.656250, 9.795678 ], [ 12.656250, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 5.615986 ], [ 2.812500, 5.615986 ], [ 2.812500, 9.795678 ], [ 4.218750, 9.795678 ], [ 4.218750, 13.923404 ], [ 7.031250, 13.923404 ], [ 7.031250, 12.554564 ], [ 9.843750, 12.554564 ], [ 9.843750, 13.923404 ], [ 11.250000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 13.923404 ], [ 11.250000, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 9.795678 ], [ 12.656250, 9.795678 ], [ 12.656250, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 5.615986 ], [ 8.437500, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 5.615986 ], [ 2.812500, 5.615986 ], [ 2.812500, 9.795678 ], [ 4.218750, 9.795678 ], [ 4.218750, 13.923404 ], [ 7.031250, 13.923404 ], [ 7.031250, 12.554564 ], [ 9.843750, 12.554564 ], [ 9.843750, 13.923404 ], [ 11.250000, 13.923404 ] ] ] } } , { "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.811371 ], [ 11.250000, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 23.241346 ], [ 16.875000, 21.943046 ], [ 19.687500, 21.943046 ], [ 19.687500, 20.632784 ], [ 22.500000, 20.632784 ], [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 11.178402 ], [ 21.093750, 11.178402 ], [ 21.093750, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.013668 ], [ 15.468750, 7.013668 ], [ 15.468750, 8.407168 ], [ 14.062500, 8.407168 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 15.284185 ], [ 15.468750, 15.284185 ], [ 15.468750, 23.241346 ], [ 16.875000, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 23.241346 ], [ 16.875000, 21.943046 ], [ 19.687500, 21.943046 ], [ 19.687500, 20.632784 ], [ 22.500000, 20.632784 ], [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 11.178402 ], [ 21.093750, 11.178402 ], [ 21.093750, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.013668 ], [ 15.468750, 7.013668 ], [ 15.468750, 8.407168 ], [ 14.062500, 8.407168 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 11.178402 ], [ 14.062500, 12.554564 ], [ 14.062500, 15.284185 ], [ 15.468750, 15.284185 ], [ 15.468750, 23.241346 ], [ 16.875000, 23.241346 ] ] ] } } , { "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.062500, 9.795678 ], [ 14.062500, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 5.615986 ], [ 14.062500, 5.615986 ], [ 14.062500, 4.214943 ], [ 15.468750, 4.214943 ], [ 15.468750, 1.406109 ], [ 14.062500, 2.811371 ], [ 9.843750, 2.811371 ], [ 9.843750, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.843750, 5.615986 ], [ 9.843750, 7.013668 ], [ 12.656250, 7.013668 ], [ 12.656250, 9.795678 ], [ 14.062500, 9.795678 ] ] ], [ [ [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 12.554564 ], [ 15.468750, 12.554564 ], [ 15.468750, 9.795678 ] ] ] ] } } , @@ -214,7 +214,7 @@ , { "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 31.952162 ], [ 32.343750, 30.751278 ], [ 33.750000, 30.751278 ], [ 33.750000, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 28.304381 ], [ 33.750000, 28.304381 ], [ 33.750000, 25.799891 ], [ 35.156250, 25.799891 ], [ 35.156250, 21.943046 ], [ 25.312500, 21.943046 ], [ 25.312500, 31.952162 ], [ 26.718750, 31.952162 ], [ 26.718750, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.952162 ], [ 32.343750, 31.952162 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 40.979898 ], [ 32.343750, 40.979898 ], [ 32.343750, 42.032974 ], [ 35.156250, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 36.597889 ], [ 43.593750, 36.597889 ], [ 43.593750, 37.718590 ], [ 42.187500, 37.718590 ], [ 42.187500, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 35.460670 ], [ 35.156250, 35.460670 ], [ 35.156250, 36.597889 ], [ 26.718750, 36.597889 ], [ 26.718750, 39.909736 ], [ 28.125000, 39.909736 ], [ 28.125000, 40.979898 ] ] ], [ [ [ 28.125000, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 36.597889 ], [ 43.593750, 36.597889 ], [ 43.593750, 37.718590 ], [ 42.187500, 37.718590 ], [ 42.187500, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 35.460670 ], [ 35.156250, 35.460670 ], [ 35.156250, 36.597889 ], [ 26.718750, 36.597889 ], [ 26.718750, 39.909736 ], [ 28.125000, 40.979898 ] ] ], [ [ [ 28.125000, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 40.979898 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.307144 ], [ 36.562500, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 34.307144 ], [ 36.562500, 34.307144 ] ] ] } } , @@ -222,35 +222,35 @@ , { "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 37.718590 ], [ 43.593750, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 35.460670 ], [ 46.406250, 35.460670 ], [ 46.406250, 34.307144 ], [ 45.000000, 34.307144 ], [ 45.000000, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 29.535230 ], [ 42.187500, 29.535230 ], [ 42.187500, 30.751278 ], [ 40.781250, 30.751278 ], [ 40.781250, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 33.137551 ], [ 40.781250, 33.137551 ], [ 40.781250, 36.597889 ], [ 42.187500, 36.597889 ], [ 42.187500, 37.718590 ], [ 43.593750, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 30.751278 ], [ 35.156250, 29.535230 ], [ 33.750000, 29.535230 ], [ 33.750000, 30.751278 ], [ 35.156250, 30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 31.952162 ], [ 35.156250, 31.952162 ], [ 35.156250, 30.751278 ], [ 33.750000, 30.751278 ], [ 33.750000, 31.952162 ] ] ] } } , { "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 31.952162 ], [ 36.562500, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 31.952162 ], [ 36.562500, 31.952162 ] ] ] } } , { "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 21.943046 ], [ 36.562500, 17.978733 ], [ 37.968750, 17.978733 ], [ 37.968750, 16.636192 ], [ 36.562500, 16.636192 ], [ 36.562500, 12.554564 ], [ 35.156250, 12.554564 ], [ 35.156250, 11.178402 ], [ 33.750000, 11.178402 ], [ 33.750000, 12.554564 ], [ 32.343750, 12.554564 ], [ 32.343750, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 9.795678 ], [ 22.500000, 9.795678 ], [ 22.500000, 15.284185 ], [ 23.906250, 15.284185 ], [ 23.906250, 20.632784 ], [ 25.312500, 20.632784 ], [ 25.312500, 21.943046 ], [ 36.562500, 21.943046 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 12.554564 ], [ 33.750000, 7.013668 ], [ 35.156250, 7.013668 ], [ 35.156250, 4.214943 ], [ 30.937500, 4.214943 ], [ 30.937500, 2.811371 ], [ 29.531250, 2.811371 ], [ 29.531250, 4.214943 ], [ 26.718750, 4.214943 ], [ 26.718750, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 9.795678 ], [ 32.343750, 9.795678 ], [ 32.343750, 12.554564 ], [ 33.750000, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 12.554564 ], [ 33.750000, 7.013668 ], [ 35.156250, 7.013668 ], [ 35.156250, 4.214943 ], [ 30.937500, 4.214943 ], [ 30.937500, 2.811371 ], [ 29.531250, 2.811371 ], [ 29.531250, 4.214943 ], [ 26.718750, 4.214943 ], [ 26.718750, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 9.795678 ], [ 32.343750, 9.795678 ], [ 32.343750, 11.178402 ], [ 33.750000, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 4.214943 ], [ 35.156250, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 4.214943 ], [ 35.156250, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 4.214943 ], [ 35.156250, 0.000000 ], [ 33.750000, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 4.214943 ], [ 35.156250, 4.214943 ] ] ] } } , { "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 16.636192 ], [ 39.375000, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 16.636192 ], [ 39.375000, 16.636192 ] ] ] } } , { "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 12.554564 ], [ 43.593750, 11.178402 ], [ 42.187500, 11.178402 ], [ 42.187500, 12.554564 ], [ 43.593750, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 4.214943 ], [ 40.781250, 2.811371 ], [ 40.781250, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -2.811371 ], [ 35.156250, -2.811371 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 35.156250, 0.000000 ], [ 35.156250, 4.214943 ], [ 37.968750, 4.214943 ], [ 37.968750, 2.811371 ], [ 39.375000, 2.811371 ], [ 39.375000, 4.214943 ], [ 42.187500, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 4.214943 ], [ 40.781250, -1.406109 ], [ 40.781250, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -2.811371 ], [ 35.156250, -2.811371 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 35.156250, 0.000000 ], [ 35.156250, 4.214943 ], [ 37.968750, 4.214943 ], [ 37.968750, 2.811371 ], [ 39.375000, 2.811371 ], [ 39.375000, 4.214943 ], [ 42.187500, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 13.923404 ], [ 42.187500, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 5.615986 ], [ 43.593750, 5.615986 ], [ 43.593750, 4.214943 ], [ 39.375000, 4.214943 ], [ 39.375000, 2.811371 ], [ 37.968750, 2.811371 ], [ 37.968750, 4.214943 ], [ 35.156250, 4.214943 ], [ 35.156250, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 12.554564 ], [ 36.562500, 13.923404 ], [ 42.187500, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 13.923404 ], [ 42.187500, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 5.615986 ], [ 43.593750, 5.615986 ], [ 43.593750, 4.214943 ], [ 39.375000, 4.214943 ], [ 39.375000, 2.811371 ], [ 37.968750, 2.811371 ], [ 37.968750, 4.214943 ], [ 35.156250, 4.214943 ], [ 35.156250, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 11.178402 ], [ 35.156250, 11.178402 ], [ 36.562500, 13.923404 ], [ 42.187500, 13.923404 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.343750, 53.330873 ], [ 77.343750, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 50.736455 ], [ 84.375000, 50.736455 ], [ 84.375000, 49.837982 ], [ 87.187500, 49.837982 ], [ 87.187500, 47.989922 ], [ 85.781250, 47.989922 ], [ 85.781250, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 44.087585 ], [ 81.562500, 44.087585 ], [ 81.562500, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.032974 ], [ 78.750000, 42.032974 ], [ 78.750000, 43.068888 ], [ 73.125000, 43.068888 ], [ 73.125000, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 40.979898 ], [ 66.093750, 40.979898 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 44.087585 ], [ 63.281250, 44.087585 ], [ 63.281250, 43.068888 ], [ 60.468750, 43.068888 ], [ 60.468750, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 40.979898 ], [ 54.843750, 40.979898 ], [ 54.843750, 42.032974 ], [ 52.031250, 42.032974 ], [ 52.031250, 43.068888 ], [ 50.625000, 43.068888 ], [ 50.625000, 45.089036 ], [ 53.437500, 45.089036 ], [ 53.437500, 47.040182 ], [ 50.625000, 47.040182 ], [ 50.625000, 46.073231 ], [ 49.218750, 46.073231 ], [ 49.218750, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 49.837982 ], [ 49.218750, 49.837982 ], [ 49.218750, 50.736455 ], [ 50.625000, 50.736455 ], [ 50.625000, 51.618017 ], [ 52.031250, 51.618017 ], [ 52.031250, 50.736455 ], [ 61.875000, 50.736455 ], [ 61.875000, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 52.482780 ], [ 61.875000, 52.482780 ], [ 61.875000, 54.162434 ], [ 66.093750, 54.162434 ], [ 66.093750, 54.977614 ], [ 70.312500, 54.977614 ], [ 70.312500, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 53.330873 ], [ 77.343750, 53.330873 ] ] ] } } , { "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.906250, 40.979898 ], [ 68.906250, 39.909736 ], [ 67.500000, 39.909736 ], [ 67.500000, 37.718590 ], [ 64.687500, 37.718590 ], [ 64.687500, 38.822591 ], [ 61.875000, 38.822591 ], [ 61.875000, 40.979898 ], [ 60.468750, 40.979898 ], [ 60.468750, 42.032974 ], [ 56.250000, 42.032974 ], [ 56.250000, 45.089036 ], [ 60.468750, 45.089036 ], [ 60.468750, 43.068888 ], [ 63.281250, 43.068888 ], [ 63.281250, 44.087585 ], [ 64.687500, 44.087585 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 40.979898 ], [ 68.906250, 40.979898 ] ] ], [ [ [ 67.500000, 37.718590 ], [ 68.906250, 37.718590 ], [ 68.906250, 36.597889 ], [ 67.500000, 36.597889 ], [ 67.500000, 37.718590 ] ] ], [ [ [ 70.312500, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 39.909736 ], [ 70.312500, 39.909736 ], [ 70.312500, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.125000, 39.909736 ], [ 73.125000, 38.822591 ], [ 70.312500, 38.822591 ], [ 70.312500, 39.909736 ], [ 73.125000, 39.909736 ] ] ], [ [ [ 78.750000, 40.979898 ], [ 77.343750, 40.979898 ], [ 77.343750, 39.909736 ], [ 73.125000, 39.909736 ], [ 73.125000, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 42.032974 ], [ 73.125000, 42.032974 ], [ 73.125000, 43.068888 ], [ 78.750000, 43.068888 ], [ 78.750000, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.125000, 39.909736 ], [ 73.125000, 38.822591 ], [ 70.312500, 38.822591 ], [ 70.312500, 39.909736 ], [ 73.125000, 39.909736 ] ] ], [ [ [ 78.750000, 40.979898 ], [ 77.343750, 40.979898 ], [ 77.343750, 39.909736 ], [ 73.125000, 39.909736 ], [ 73.125000, 40.979898 ], [ 70.312500, 40.979898 ], [ 71.718750, 42.032974 ], [ 73.125000, 42.032974 ], [ 73.125000, 43.068888 ], [ 78.750000, 43.068888 ], [ 78.750000, 40.979898 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 40.979898 ], [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 45.000000, 40.979898 ] ] ] } } , { "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 38.822591 ], [ 45.000000, 40.979898 ], [ 50.625000, 40.979898 ], [ 50.625000, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 37.718590 ], [ 47.812500, 37.718590 ], [ 47.812500, 38.822591 ], [ 45.000000, 38.822591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 37.718590 ], [ 50.625000, 37.718590 ], [ 50.625000, 36.597889 ], [ 52.031250, 36.597889 ], [ 53.437500, 37.718590 ], [ 59.062500, 37.718590 ], [ 59.062500, 36.597889 ], [ 60.468750, 36.597889 ], [ 60.468750, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 34.307144 ], [ 60.468750, 34.307144 ], [ 60.468750, 31.952162 ], [ 61.875000, 31.952162 ], [ 61.875000, 28.304381 ], [ 63.281250, 28.304381 ], [ 63.281250, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 24.527135 ], [ 59.062500, 24.527135 ], [ 59.062500, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 27.059126 ], [ 52.031250, 27.059126 ], [ 52.031250, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 31.952162 ], [ 46.406250, 31.952162 ], [ 46.406250, 33.137551 ], [ 45.000000, 33.137551 ], [ 45.000000, 34.307144 ], [ 46.406250, 34.307144 ], [ 46.406250, 35.460670 ], [ 45.000000, 35.460670 ], [ 45.000000, 38.822591 ] ] ], [ [ [ 45.000000, 38.822591 ], [ 43.593750, 38.822591 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 37.718590 ], [ 59.062500, 37.718590 ], [ 59.062500, 36.597889 ], [ 60.468750, 36.597889 ], [ 60.468750, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 34.307144 ], [ 60.468750, 34.307144 ], [ 60.468750, 31.952162 ], [ 61.875000, 31.952162 ], [ 61.875000, 28.304381 ], [ 63.281250, 28.304381 ], [ 63.281250, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 24.527135 ], [ 59.062500, 24.527135 ], [ 59.062500, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 27.059126 ], [ 52.031250, 27.059126 ], [ 52.031250, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 31.952162 ], [ 46.406250, 31.952162 ], [ 46.406250, 33.137551 ], [ 45.000000, 33.137551 ], [ 45.000000, 34.307144 ], [ 46.406250, 34.307144 ], [ 46.406250, 35.460670 ], [ 45.000000, 35.460670 ], [ 45.000000, 38.822591 ] ] ], [ [ [ 45.000000, 38.822591 ], [ 43.593750, 38.822591 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 38.822591 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 31.952162 ], [ 40.781250, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 28.304381 ], [ 49.218750, 28.304381 ], [ 49.218750, 27.059126 ], [ 50.625000, 27.059126 ], [ 50.625000, 24.527135 ], [ 52.031250, 24.527135 ], [ 52.031250, 21.943046 ], [ 56.250000, 21.943046 ], [ 56.250000, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 19.311143 ], [ 52.031250, 19.311143 ], [ 52.031250, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 16.636192 ], [ 45.000000, 16.636192 ], [ 45.000000, 17.978733 ], [ 43.593750, 17.978733 ], [ 43.593750, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.978733 ], [ 40.781250, 17.978733 ], [ 40.781250, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 21.943046 ], [ 37.968750, 21.943046 ], [ 37.968750, 24.527135 ], [ 36.562500, 24.527135 ], [ 36.562500, 27.059126 ], [ 35.156250, 27.059126 ], [ 35.156250, 29.535230 ], [ 37.968750, 29.535230 ], [ 37.968750, 30.751278 ], [ 36.562500, 30.751278 ], [ 36.562500, 31.952162 ], [ 40.781250, 31.952162 ] ] ] } } , @@ -268,7 +268,7 @@ , { "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 11.178402 ], [ 50.625000, 7.013668 ], [ 49.218750, 7.013668 ], [ 49.218750, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 1.406109 ], [ 43.593750, 1.406109 ], [ 43.593750, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 42.187500, 2.811371 ], [ 42.187500, 4.214943 ], [ 43.593750, 4.214943 ], [ 43.593750, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 7.013668 ], [ 47.812500, 7.013668 ], [ 47.812500, 8.407168 ], [ 49.218750, 8.407168 ], [ 49.218750, 11.178402 ], [ 50.625000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 40.979898 ], [ 70.312500, 38.822591 ], [ 74.531250, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.125000, 37.718590 ], [ 73.125000, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.979898 ], [ 70.312500, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, 40.979898 ], [ 70.312500, 39.909736 ], [ 70.312500, 38.822591 ], [ 74.531250, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.125000, 37.718590 ], [ 73.125000, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.979898 ] ] ] } } , { "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.718750, 34.307144 ], [ 70.312500, 34.307144 ], [ 70.312500, 31.952162 ], [ 67.500000, 31.952162 ], [ 67.500000, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 61.875000, 29.535230 ], [ 61.875000, 31.952162 ], [ 60.468750, 31.952162 ], [ 60.468750, 34.307144 ], [ 61.875000, 35.460670 ], [ 64.687500, 35.460670 ], [ 64.687500, 36.597889 ], [ 66.093750, 36.597889 ], [ 66.093750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 36.597889 ], [ 68.906250, 36.597889 ], [ 68.906250, 37.718590 ], [ 71.718750, 37.718590 ], [ 71.718750, 34.307144 ] ] ], [ [ [ 74.531250, 36.597889 ], [ 73.125000, 36.597889 ], [ 73.125000, 37.718590 ], [ 74.531250, 37.718590 ], [ 74.531250, 36.597889 ] ] ] ] } } , @@ -290,7 +290,7 @@ , { "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 13.923404 ], [ 99.843750, 13.923404 ], [ 99.843750, 11.178402 ], [ 98.437500, 11.178402 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 21.943046 ], [ 101.250000, 21.943046 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 19.311143 ], [ 98.437500, 19.311143 ], [ 98.437500, 15.284185 ], [ 94.218750, 15.284185 ], [ 94.218750, 19.311143 ], [ 92.812500, 19.311143 ], [ 92.812500, 23.241346 ], [ 94.218750, 23.241346 ], [ 94.218750, 24.527135 ], [ 95.625000, 24.527135 ], [ 95.625000, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 98.437500, 28.304381 ], [ 98.437500, 23.241346 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 16.636192 ], [ 104.062500, 16.636192 ], [ 104.062500, 17.978733 ], [ 101.250000, 17.978733 ], [ 101.250000, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 20.632784 ], [ 104.062500, 20.632784 ], [ 104.062500, 19.311143 ], [ 105.468750, 19.311143 ], [ 105.468750, 16.636192 ] ] ], [ [ [ 105.468750, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 16.636192 ], [ 104.062500, 16.636192 ], [ 104.062500, 17.978733 ], [ 101.250000, 17.978733 ], [ 101.250000, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 20.632784 ], [ 104.062500, 20.632784 ], [ 104.062500, 19.311143 ], [ 105.468750, 19.311143 ], [ 105.468750, 16.636192 ] ] ], [ [ [ 105.468750, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 15.284185 ], [ 105.468750, 13.923404 ], [ 105.468750, 16.636192 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.843750, 7.013668 ], [ 98.437500, 7.013668 ], [ 98.437500, 11.178402 ], [ 99.843750, 11.178402 ], [ 99.843750, 7.013668 ] ] ], [ [ [ 98.437500, 13.923404 ], [ 98.437500, 19.311143 ], [ 99.843750, 19.311143 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.923404 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 99.843750, 7.013668 ], [ 101.250000, 7.013668 ], [ 101.250000, 5.615986 ], [ 99.843750, 5.615986 ], [ 99.843750, 7.013668 ] ] ] ] } } , @@ -298,15 +298,15 @@ , { "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.281250, 13.923404 ], [ 108.281250, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 11.178402 ], [ 105.468750, 11.178402 ], [ 105.468750, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 13.923404 ], [ 108.281250, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.656250, 5.615986 ], [ 102.656250, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 101.250000, 1.406109 ], [ 101.250000, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 5.615986 ], [ 102.656250, 5.615986 ] ] ], [ [ [ 115.312500, 4.214943 ], [ 115.312500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.906250, 2.811371 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.718750, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.125000, 7.013668 ], [ 118.125000, 4.214943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.656250, 5.615986 ], [ 102.656250, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 101.250000, 1.406109 ], [ 101.250000, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 5.615986 ], [ 102.656250, 5.615986 ] ] ], [ [ [ 115.312500, 4.214943 ], [ 115.312500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.906250, 2.811371 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ] ] ], [ [ [ 118.125000, 5.615986 ], [ 119.531250, 5.615986 ], [ 118.125000, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.718750, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.125000, 7.013668 ], [ 118.125000, 5.615986 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.937500, 23.241346 ], [ 120.937500, 21.943046 ], [ 119.531250, 21.943046 ], [ 119.531250, 23.241346 ], [ 120.937500, 23.241346 ] ] ], [ [ [ 122.343750, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 24.527135 ], [ 122.343750, 24.527135 ], [ 122.343750, 23.241346 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 42.032974 ], [ 129.375000, 39.909736 ], [ 127.968750, 39.909736 ], [ 127.968750, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 40.979898 ], [ 127.968750, 40.979898 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 42.032974 ], [ 129.375000, 39.909736 ], [ 127.968750, 39.909736 ], [ 127.968750, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 40.979898 ], [ 127.968750, 40.979898 ], [ 129.375000, 42.032974 ] ] ] } } , { "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 37.718590 ], [ 129.375000, 35.460670 ], [ 127.968750, 35.460670 ], [ 127.968750, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 37.718590 ], [ 129.375000, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.343750, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 8.407168 ], [ 125.156250, 8.407168 ], [ 125.156250, 9.795678 ], [ 126.562500, 9.795678 ], [ 126.562500, 5.615986 ], [ 123.750000, 5.615986 ], [ 123.750000, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 11.178402 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 119.531250, 13.923404 ], [ 119.531250, 16.636192 ], [ 120.937500, 16.636192 ], [ 120.937500, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.284185 ], [ 120.937500, 15.284185 ], [ 120.937500, 13.923404 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ], [ 122.343750, 12.554564 ], [ 122.343750, 13.923404 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.343750, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 8.407168 ], [ 125.156250, 8.407168 ], [ 126.562500, 9.795678 ], [ 126.562500, 5.615986 ], [ 123.750000, 5.615986 ], [ 123.750000, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 11.178402 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 119.531250, 13.923404 ], [ 119.531250, 16.636192 ], [ 120.937500, 16.636192 ], [ 120.937500, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.284185 ], [ 120.937500, 15.284185 ], [ 120.937500, 13.923404 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ], [ 122.343750, 12.554564 ], [ 122.343750, 13.923404 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.187500, 33.137551 ], [ 132.187500, 31.952162 ], [ 129.375000, 31.952162 ], [ 129.375000, 33.137551 ], [ 132.187500, 33.137551 ] ] ], [ [ [ 133.593750, 33.137551 ], [ 133.593750, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 35.460670 ], [ 135.000000, 36.597889 ], [ 139.218750, 36.597889 ], [ 139.218750, 38.822591 ], [ 140.625000, 38.822591 ], [ 140.625000, 39.909736 ], [ 139.218750, 39.909736 ], [ 139.218750, 40.979898 ], [ 142.031250, 40.979898 ], [ 142.031250, 38.822591 ], [ 140.625000, 37.718590 ], [ 140.625000, 34.307144 ], [ 137.812500, 34.307144 ], [ 137.812500, 33.137551 ], [ 133.593750, 33.137551 ] ] ], [ [ [ 144.843750, 44.087585 ], [ 144.843750, 43.068888 ], [ 143.437500, 43.068888 ], [ 143.437500, 42.032974 ], [ 139.218750, 42.032974 ], [ 139.218750, 43.068888 ], [ 142.031250, 43.068888 ], [ 142.031250, 44.087585 ], [ 144.843750, 44.087585 ] ] ] ] } } , @@ -332,7 +332,7 @@ , { "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -16.636192 ], [ 33.750000, -16.636192 ], [ 33.750000, -13.923404 ] ] ], [ [ [ 35.156250, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -11.178402 ], [ 35.156250, -11.178402 ], [ 35.156250, -12.554564 ] ] ], [ [ [ 33.750000, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -13.923404 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -13.923404 ], [ 35.156250, -11.178402 ], [ 40.781250, -11.178402 ], [ 40.781250, -16.636192 ], [ 37.968750, -16.636192 ], [ 37.968750, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -24.527135 ], [ 33.750000, -24.527135 ], [ 33.750000, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -23.241346 ], [ 30.937500, -23.241346 ], [ 30.937500, -21.943046 ], [ 32.343750, -21.943046 ], [ 32.343750, -16.636192 ], [ 30.937500, -16.636192 ], [ 30.937500, -15.284185 ], [ 32.343750, -15.284185 ], [ 32.343750, -13.923404 ], [ 33.750000, -13.923404 ] ], [ [ 33.750000, -13.923404 ], [ 33.750000, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -13.923404 ], [ 33.750000, -13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, -11.178402 ], [ 40.781250, -16.636192 ], [ 37.968750, -16.636192 ], [ 37.968750, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -24.527135 ], [ 33.750000, -24.527135 ], [ 33.750000, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -23.241346 ], [ 30.937500, -23.241346 ], [ 30.937500, -21.943046 ], [ 32.343750, -21.943046 ], [ 32.343750, -16.636192 ], [ 30.937500, -16.636192 ], [ 30.937500, -15.284185 ], [ 32.343750, -15.284185 ], [ 32.343750, -13.923404 ], [ 33.750000, -13.923404 ], [ 33.750000, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -11.178402 ], [ 40.781250, -11.178402 ] ] ] } } , { "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 25.312500, -19.311143 ], [ 26.718750, -19.311143 ], [ 26.718750, -20.632784 ], [ 28.125000, -20.632784 ], [ 28.125000, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -23.241346 ], [ 26.718750, -23.241346 ], [ 26.718750, -24.527135 ], [ 25.312500, -24.527135 ], [ 25.312500, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -27.059126 ], [ 21.093750, -27.059126 ], [ 21.093750, -25.799891 ], [ 19.687500, -25.799891 ], [ 19.687500, -21.943046 ], [ 21.093750, -21.943046 ], [ 21.093750, -17.978733 ], [ 25.312500, -17.978733 ] ] ] } } , @@ -346,13 +346,13 @@ , { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, -48.922499 ], [ 70.312500, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.031250, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -2.811371 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 102.656250, -5.615986 ], [ 102.656250, -4.214943 ], [ 101.250000, -4.214943 ], [ 101.250000, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, 0.000000 ], [ 98.437500, 0.000000 ], [ 98.437500, 1.406109 ], [ 97.031250, 1.406109 ], [ 97.031250, 4.214943 ] ] ], [ [ [ 139.218750, -1.406109 ], [ 139.218750, -2.811371 ], [ 140.625000, -2.811371 ], [ 140.625000, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -5.615986 ], [ 136.406250, -5.615986 ], [ 136.406250, -4.214943 ], [ 132.187500, -4.214943 ], [ 132.187500, -1.406109 ], [ 133.593750, -1.406109 ], [ 133.593750, -2.811371 ], [ 137.812500, -2.811371 ], [ 137.812500, -1.406109 ], [ 139.218750, -1.406109 ] ] ], [ [ [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ], [ 133.593750, -7.013668 ], [ 133.593750, -5.615986 ], [ 135.000000, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 130.781250, -2.811371 ], [ 130.781250, -4.214943 ], [ 129.375000, -4.214943 ], [ 129.375000, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 118.125000, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -4.214943 ], [ 113.906250, -4.214943 ], [ 113.906250, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, 1.406109 ], [ 115.312500, 1.406109 ], [ 115.312500, 4.214943 ], [ 118.125000, 4.214943 ] ] ], [ [ [ 129.375000, 1.406109 ], [ 129.375000, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, 1.406109 ], [ 129.375000, 1.406109 ] ] ], [ [ [ 125.156250, 0.000000 ], [ 120.937500, 0.000000 ], [ 120.937500, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 0.000000 ] ] ], [ [ [ 106.875000, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -8.407168 ], [ 106.875000, -8.407168 ], [ 106.875000, -7.013668 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 106.875000, -5.615986 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 123.750000, -4.214943 ], [ 123.750000, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 97.031250, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 5.615986 ], [ 97.031250, 5.615986 ], [ 97.031250, 4.214943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.875000, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -8.407168 ], [ 106.875000, -8.407168 ], [ 106.875000, -7.013668 ] ] ], [ [ [ 139.218750, -1.406109 ], [ 139.218750, -2.811371 ], [ 140.625000, -2.811371 ], [ 140.625000, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -5.615986 ], [ 136.406250, -5.615986 ], [ 136.406250, -4.214943 ], [ 132.187500, -4.214943 ], [ 132.187500, -1.406109 ], [ 133.593750, -1.406109 ], [ 133.593750, -2.811371 ], [ 137.812500, -2.811371 ], [ 137.812500, -1.406109 ], [ 139.218750, -1.406109 ] ] ], [ [ [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ], [ 133.593750, -7.013668 ], [ 133.593750, -5.615986 ], [ 135.000000, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 97.031250, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -2.811371 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 102.656250, -5.615986 ], [ 102.656250, -4.214943 ], [ 101.250000, -4.214943 ], [ 101.250000, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, 0.000000 ], [ 98.437500, 0.000000 ], [ 98.437500, 1.406109 ], [ 97.031250, 1.406109 ], [ 97.031250, 4.214943 ] ] ], [ [ [ 130.781250, -2.811371 ], [ 130.781250, -4.214943 ], [ 129.375000, -4.214943 ], [ 129.375000, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 118.125000, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -4.214943 ], [ 113.906250, -4.214943 ], [ 113.906250, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, 1.406109 ], [ 115.312500, 1.406109 ], [ 115.312500, 4.214943 ], [ 118.125000, 4.214943 ] ] ], [ [ [ 129.375000, 1.406109 ], [ 129.375000, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, 1.406109 ], [ 129.375000, 1.406109 ] ] ], [ [ [ 125.156250, 0.000000 ], [ 120.937500, 0.000000 ], [ 120.937500, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 0.000000 ] ] ], [ [ [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -5.615986 ], [ 106.875000, -7.013668 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 123.750000, -4.214943 ], [ 123.750000, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 97.031250, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 5.615986 ], [ 97.031250, 5.615986 ], [ 97.031250, 4.214943 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.156250, -8.407168 ], [ 126.562500, -8.407168 ], [ 126.562500, -9.795678 ], [ 125.156250, -9.795678 ], [ 125.156250, -8.407168 ] ] ] } } , { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.656250, -40.979898 ], [ 147.656250, -44.087585 ], [ 146.250000, -44.087585 ], [ 146.250000, -43.068888 ], [ 144.843750, -43.068888 ], [ 144.843750, -40.979898 ], [ 147.656250, -40.979898 ] ] ], [ [ [ 143.437500, -11.178402 ], [ 143.437500, -13.923404 ], [ 144.843750, -13.923404 ], [ 144.843750, -16.636192 ], [ 146.250000, -16.636192 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 150.468750, -21.943046 ], [ 150.468750, -24.527135 ], [ 151.875000, -24.527135 ], [ 151.875000, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -34.307144 ], [ 150.468750, -34.307144 ], [ 150.468750, -37.718590 ], [ 147.656250, -37.718590 ], [ 147.656250, -38.822591 ], [ 140.625000, -38.822591 ], [ 140.625000, -37.718590 ], [ 139.218750, -37.718590 ], [ 139.218750, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -35.460670 ], [ 135.000000, -35.460670 ], [ 135.000000, -33.137551 ], [ 133.593750, -33.137551 ], [ 133.593750, -31.952162 ], [ 126.562500, -31.952162 ], [ 126.562500, -33.137551 ], [ 123.750000, -33.137551 ], [ 123.750000, -34.307144 ], [ 118.125000, -34.307144 ], [ 118.125000, -35.460670 ], [ 115.312500, -35.460670 ], [ 115.312500, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -20.632784 ], [ 120.937500, -20.632784 ], [ 120.937500, -19.311143 ], [ 122.343750, -19.311143 ], [ 122.343750, -16.636192 ], [ 123.750000, -16.636192 ], [ 123.750000, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -13.923404 ], [ 127.968750, -13.923404 ], [ 127.968750, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -13.923404 ], [ 130.781250, -13.923404 ], [ 130.781250, -12.554564 ], [ 132.187500, -12.554564 ], [ 132.187500, -11.178402 ], [ 133.593750, -11.178402 ], [ 133.593750, -12.554564 ], [ 136.406250, -12.554564 ], [ 136.406250, -16.636192 ], [ 139.218750, -16.636192 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -16.636192 ], [ 142.031250, -16.636192 ], [ 142.031250, -11.178402 ], [ 143.437500, -11.178402 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -2.811371 ], [ 143.437500, -4.214943 ], [ 146.250000, -4.214943 ], [ 146.250000, -5.615986 ], [ 147.656250, -5.615986 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.795678 ], [ 140.625000, -9.795678 ], [ 140.625000, -2.811371 ], [ 143.437500, -2.811371 ] ] ], [ [ [ 156.093750, -5.615986 ], [ 156.093750, -7.013668 ], [ 154.687500, -7.013668 ], [ 154.687500, -5.615986 ], [ 156.093750, -5.615986 ] ] ], [ [ [ 150.468750, -5.615986 ], [ 150.468750, -7.013668 ], [ 149.062500, -7.013668 ], [ 149.062500, -5.615986 ], [ 150.468750, -5.615986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -2.811371 ], [ 143.437500, -4.214943 ], [ 146.250000, -4.214943 ], [ 147.656250, -5.615986 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.795678 ], [ 140.625000, -9.795678 ], [ 140.625000, -2.811371 ], [ 143.437500, -2.811371 ] ] ], [ [ [ 156.093750, -5.615986 ], [ 156.093750, -7.013668 ], [ 154.687500, -7.013668 ], [ 154.687500, -5.615986 ], [ 156.093750, -5.615986 ] ] ], [ [ [ 150.468750, -5.615986 ], [ 150.468750, -7.013668 ], [ 149.062500, -7.013668 ], [ 149.062500, -5.615986 ], [ 150.468750, -5.615986 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.937500, -20.632784 ], [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -20.632784 ], [ 165.937500, -20.632784 ] ] ] } } , @@ -362,7 +362,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 3.513421 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -74.531250, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 3.513421 ], [ -67.500000, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 3.513421 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 3.513421 ], [ -67.500000, 3.513421 ] ] ] } } , { "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, 3.513421 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 0.703107 ], [ -66.796875, 0.703107 ], [ -66.796875, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 3.513421 ], [ -64.687500, 3.513421 ] ] ] } } , @@ -390,9 +390,9 @@ , { "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -51.618017 ], [ -57.656250, -52.052490 ], [ -59.765625, -52.052490 ], [ -59.765625, -52.482780 ], [ -61.171875, -52.482780 ], [ -61.171875, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -51.618017 ], [ -57.656250, -51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.453125, -83.979259 ], [ -169.453125, -84.124973 ], [ -168.750000, -84.124973 ], [ -168.750000, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.051129 ], [ -162.421875, -85.051129 ], [ -162.421875, -85.111416 ], [ -161.718750, -85.111416 ], [ -161.718750, -85.170970 ], [ -161.015625, -85.170970 ], [ -161.015625, -85.229801 ], [ -159.609375, -85.229801 ], [ -159.609375, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.474065 ], [ -179.296875, -84.474065 ], [ -179.296875, -84.196507 ], [ -178.593750, -84.196507 ], [ -178.593750, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.474065 ], [ -177.187500, -84.474065 ], [ -177.187500, -84.336980 ], [ -176.484375, -84.336980 ], [ -176.484375, -84.196507 ], [ -175.781250, -84.196507 ], [ -175.781250, -84.267172 ], [ -175.078125, -84.267172 ], [ -175.078125, -84.474065 ], [ -173.671875, -84.474065 ], [ -173.671875, -84.267172 ], [ -172.968750, -84.267172 ], [ -172.968750, -84.052561 ], [ -171.562500, -84.052561 ], [ -171.562500, -83.979259 ], [ -169.453125, -83.979259 ] ] ], [ [ [ -153.984375, -85.229801 ], [ -152.578125, -85.229801 ], [ -152.578125, -85.287916 ], [ -151.171875, -85.287916 ], [ -151.171875, -85.345325 ], [ -156.796875, -85.345325 ], [ -156.796875, -85.229801 ], [ -156.093750, -85.229801 ], [ -156.093750, -85.170970 ], [ -153.984375, -85.170970 ], [ -153.984375, -85.229801 ] ] ], [ [ [ -156.093750, -81.201420 ], [ -153.281250, -81.201420 ], [ -153.281250, -81.093214 ], [ -151.171875, -81.093214 ], [ -151.171875, -81.308321 ], [ -149.765625, -81.308321 ], [ -149.765625, -81.201420 ], [ -149.062500, -81.201420 ], [ -149.062500, -81.093214 ], [ -148.359375, -81.093214 ], [ -148.359375, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.760615 ], [ -146.953125, -80.760615 ], [ -146.953125, -80.532071 ], [ -146.250000, -80.532071 ], [ -146.250000, -80.178713 ], [ -146.953125, -80.178713 ], [ -146.953125, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.812302 ], [ -148.359375, -79.812302 ], [ -148.359375, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -149.765625, -79.432371 ], [ -149.765625, -79.302640 ], [ -153.281250, -79.302640 ], [ -153.281250, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -156.796875, -78.630006 ], [ -156.796875, -78.490552 ], [ -157.500000, -78.490552 ], [ -157.500000, -78.206563 ], [ -158.203125, -78.206563 ], [ -158.203125, -77.157163 ], [ -157.500000, -77.157163 ], [ -157.500000, -77.312520 ], [ -155.390625, -77.312520 ], [ -155.390625, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.312520 ], [ -149.765625, -77.312520 ], [ -149.765625, -76.999935 ], [ -149.062500, -76.999935 ], [ -149.062500, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.320025 ], [ -144.140625, -75.320025 ], [ -144.140625, -75.497157 ], [ -142.734375, -75.497157 ], [ -142.734375, -75.320025 ], [ -141.328125, -75.320025 ], [ -141.328125, -75.140778 ], [ -138.515625, -75.140778 ], [ -138.515625, -74.959392 ], [ -137.812500, -74.959392 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.590108 ], [ -135.703125, -74.590108 ], [ -135.703125, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.590108 ], [ -119.531250, -74.590108 ], [ -119.531250, -74.402163 ], [ -118.828125, -74.402163 ], [ -118.828125, -74.211983 ], [ -115.312500, -74.211983 ], [ -115.312500, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.824820 ], [ -113.203125, -73.824820 ], [ -113.203125, -74.590108 ], [ -112.500000, -74.590108 ], [ -112.500000, -74.775843 ], [ -111.796875, -74.775843 ], [ -111.796875, -74.590108 ], [ -110.390625, -74.590108 ], [ -110.390625, -74.959392 ], [ -108.984375, -74.959392 ], [ -108.984375, -75.140778 ], [ -104.765625, -75.140778 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.320025 ], [ -100.546875, -75.320025 ], [ -100.546875, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.402163 ], [ -101.250000, -74.402163 ], [ -101.250000, -74.211983 ], [ -102.656250, -74.211983 ], [ -102.656250, -74.019543 ], [ -103.359375, -74.019543 ], [ -103.359375, -72.816074 ], [ -99.140625, -72.816074 ], [ -99.140625, -73.022592 ], [ -98.437500, -73.022592 ], [ -98.437500, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.627789 ], [ -94.921875, -73.627789 ], [ -94.921875, -73.428424 ], [ -93.515625, -73.428424 ], [ -93.515625, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.428424 ], [ -90.000000, -73.428424 ], [ -90.000000, -73.022592 ], [ -89.296875, -73.022592 ], [ -89.296875, -85.345325 ], [ -145.546875, -85.345325 ], [ -145.546875, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -144.140625, -85.170970 ], [ -144.140625, -85.111416 ], [ -143.437500, -85.111416 ], [ -143.437500, -84.802474 ], [ -142.734375, -84.802474 ], [ -142.734375, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.474065 ], [ -148.359375, -84.474065 ], [ -148.359375, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.196507 ], [ -150.468750, -84.196507 ], [ -150.468750, -84.052561 ], [ -151.171875, -84.052561 ], [ -151.171875, -83.905058 ], [ -151.875000, -83.905058 ], [ -151.875000, -83.829945 ], [ -152.578125, -83.829945 ], [ -152.578125, -83.753911 ], [ -153.281250, -83.753911 ], [ -153.281250, -82.676285 ], [ -152.578125, -82.676285 ], [ -152.578125, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.923186 ], [ -153.984375, -81.923186 ], [ -153.984375, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.621352 ], [ -155.390625, -81.621352 ], [ -155.390625, -81.413933 ], [ -156.093750, -81.413933 ], [ -156.093750, -81.201420 ] ] ], [ [ [ -162.421875, -78.206563 ], [ -162.421875, -78.349411 ], [ -161.015625, -78.349411 ], [ -161.015625, -78.490552 ], [ -160.312500, -78.490552 ], [ -160.312500, -78.903929 ], [ -159.609375, -78.903929 ], [ -159.609375, -79.302640 ], [ -158.906250, -79.302640 ], [ -158.906250, -79.560546 ], [ -159.609375, -79.560546 ], [ -159.609375, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -162.421875, -79.432371 ], [ -162.421875, -79.171335 ], [ -163.125000, -79.171335 ], [ -163.125000, -78.767792 ], [ -163.828125, -78.767792 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.490552 ], [ -163.125000, -78.206563 ], [ -162.421875, -78.206563 ] ] ], [ [ [ -120.937500, -73.428424 ], [ -120.937500, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -74.019543 ], [ -121.640625, -74.019543 ], [ -121.640625, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.428424 ], [ -120.937500, -73.428424 ] ] ], [ [ [ -125.859375, -73.428424 ], [ -125.859375, -73.627789 ], [ -124.453125, -73.627789 ], [ -124.453125, -73.824820 ], [ -126.562500, -73.824820 ], [ -126.562500, -73.627789 ], [ -127.265625, -73.627789 ], [ -127.265625, -73.428424 ], [ -125.859375, -73.428424 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.181804 ], [ -102.656250, -72.181804 ], [ -102.656250, -71.965388 ], [ -101.953125, -71.965388 ], [ -101.953125, -71.746432 ], [ -100.546875, -71.746432 ], [ -100.546875, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ] ] ], [ [ [ -156.093750, -81.201420 ], [ -156.796875, -81.201420 ], [ -156.796875, -81.093214 ], [ -156.093750, -81.093214 ], [ -156.093750, -81.201420 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -96.328125, -72.395706 ], [ -96.328125, -72.607120 ], [ -97.031250, -72.607120 ], [ -97.031250, -72.395706 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.453125, -83.979259 ], [ -169.453125, -84.124973 ], [ -168.750000, -84.124973 ], [ -168.750000, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.051129 ], [ -162.421875, -85.051129 ], [ -162.421875, -85.111416 ], [ -161.718750, -85.111416 ], [ -161.718750, -85.170970 ], [ -161.015625, -85.170970 ], [ -161.015625, -85.229801 ], [ -159.609375, -85.229801 ], [ -159.609375, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.474065 ], [ -179.296875, -84.474065 ], [ -179.296875, -84.196507 ], [ -178.593750, -84.196507 ], [ -178.593750, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.474065 ], [ -177.187500, -84.474065 ], [ -177.187500, -84.336980 ], [ -176.484375, -84.336980 ], [ -176.484375, -84.196507 ], [ -175.781250, -84.196507 ], [ -175.781250, -84.267172 ], [ -175.078125, -84.267172 ], [ -175.078125, -84.474065 ], [ -173.671875, -84.474065 ], [ -173.671875, -84.267172 ], [ -172.968750, -84.267172 ], [ -172.968750, -84.052561 ], [ -171.562500, -84.052561 ], [ -171.562500, -83.979259 ], [ -169.453125, -83.979259 ] ] ], [ [ [ -153.984375, -85.229801 ], [ -152.578125, -85.229801 ], [ -152.578125, -85.287916 ], [ -151.171875, -85.287916 ], [ -151.171875, -85.345325 ], [ -156.796875, -85.345325 ], [ -156.796875, -85.229801 ], [ -156.093750, -85.229801 ], [ -156.093750, -85.170970 ], [ -153.984375, -85.170970 ], [ -153.984375, -85.229801 ] ] ], [ [ [ -156.093750, -81.201420 ], [ -153.281250, -81.201420 ], [ -153.281250, -81.093214 ], [ -151.171875, -81.093214 ], [ -151.171875, -81.308321 ], [ -149.765625, -81.308321 ], [ -149.765625, -81.201420 ], [ -149.062500, -81.201420 ], [ -149.062500, -81.093214 ], [ -148.359375, -81.093214 ], [ -148.359375, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.760615 ], [ -146.953125, -80.760615 ], [ -146.953125, -80.532071 ], [ -146.250000, -80.532071 ], [ -146.250000, -80.178713 ], [ -146.953125, -80.178713 ], [ -146.953125, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.812302 ], [ -148.359375, -79.812302 ], [ -148.359375, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -149.765625, -79.432371 ], [ -149.765625, -79.302640 ], [ -153.281250, -79.302640 ], [ -153.281250, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -156.796875, -78.630006 ], [ -156.796875, -78.490552 ], [ -157.500000, -78.490552 ], [ -157.500000, -78.206563 ], [ -158.203125, -78.206563 ], [ -158.203125, -77.157163 ], [ -157.500000, -77.157163 ], [ -157.500000, -77.312520 ], [ -155.390625, -77.312520 ], [ -155.390625, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.312520 ], [ -149.765625, -77.312520 ], [ -149.765625, -76.999935 ], [ -149.062500, -76.999935 ], [ -149.062500, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.320025 ], [ -144.140625, -75.320025 ], [ -144.140625, -75.497157 ], [ -142.734375, -75.497157 ], [ -142.734375, -75.320025 ], [ -141.328125, -75.320025 ], [ -141.328125, -75.140778 ], [ -138.515625, -75.140778 ], [ -138.515625, -74.959392 ], [ -137.812500, -74.959392 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.590108 ], [ -135.703125, -74.590108 ], [ -135.703125, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.590108 ], [ -119.531250, -74.590108 ], [ -119.531250, -74.402163 ], [ -118.828125, -74.402163 ], [ -118.828125, -74.211983 ], [ -115.312500, -74.211983 ], [ -115.312500, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.824820 ], [ -113.203125, -73.824820 ], [ -113.203125, -74.590108 ], [ -112.500000, -74.590108 ], [ -112.500000, -74.775843 ], [ -111.796875, -74.775843 ], [ -111.796875, -74.590108 ], [ -110.390625, -74.590108 ], [ -110.390625, -74.959392 ], [ -108.984375, -74.959392 ], [ -108.984375, -75.140778 ], [ -104.765625, -75.140778 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.320025 ], [ -100.546875, -75.320025 ], [ -100.546875, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.402163 ], [ -101.250000, -74.402163 ], [ -101.250000, -74.211983 ], [ -102.656250, -74.211983 ], [ -102.656250, -74.019543 ], [ -103.359375, -74.019543 ], [ -103.359375, -72.816074 ], [ -99.140625, -72.816074 ], [ -99.140625, -73.022592 ], [ -98.437500, -73.022592 ], [ -98.437500, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.627789 ], [ -94.921875, -73.627789 ], [ -94.921875, -73.428424 ], [ -93.515625, -73.428424 ], [ -93.515625, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.428424 ], [ -90.000000, -73.428424 ], [ -90.000000, -73.022592 ], [ -89.296875, -73.022592 ], [ -89.296875, -85.345325 ], [ -145.546875, -85.345325 ], [ -145.546875, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -144.140625, -85.170970 ], [ -144.140625, -85.111416 ], [ -143.437500, -85.111416 ], [ -143.437500, -84.802474 ], [ -142.734375, -84.802474 ], [ -142.734375, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.474065 ], [ -148.359375, -84.474065 ], [ -148.359375, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.196507 ], [ -150.468750, -84.196507 ], [ -150.468750, -84.052561 ], [ -151.171875, -84.052561 ], [ -151.171875, -83.905058 ], [ -151.875000, -83.905058 ], [ -151.875000, -83.829945 ], [ -152.578125, -83.829945 ], [ -152.578125, -83.753911 ], [ -153.281250, -83.753911 ], [ -153.281250, -82.676285 ], [ -152.578125, -82.676285 ], [ -152.578125, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.923186 ], [ -153.984375, -81.923186 ], [ -153.984375, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.621352 ], [ -155.390625, -81.621352 ], [ -155.390625, -81.413933 ], [ -156.093750, -81.413933 ], [ -156.093750, -81.201420 ] ] ], [ [ [ -162.421875, -78.206563 ], [ -162.421875, -78.349411 ], [ -161.015625, -78.349411 ], [ -161.015625, -78.490552 ], [ -160.312500, -78.490552 ], [ -160.312500, -78.903929 ], [ -159.609375, -78.903929 ], [ -159.609375, -79.302640 ], [ -158.906250, -79.302640 ], [ -158.906250, -79.560546 ], [ -159.609375, -79.560546 ], [ -159.609375, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -162.421875, -79.432371 ], [ -162.421875, -79.171335 ], [ -163.125000, -79.171335 ], [ -163.125000, -78.767792 ], [ -163.828125, -78.767792 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.490552 ], [ -163.125000, -78.206563 ], [ -162.421875, -78.206563 ] ] ], [ [ [ -120.937500, -73.428424 ], [ -120.937500, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -74.019543 ], [ -121.640625, -74.019543 ], [ -121.640625, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.428424 ], [ -120.937500, -73.428424 ] ] ], [ [ [ -125.859375, -73.428424 ], [ -125.859375, -73.627789 ], [ -124.453125, -73.627789 ], [ -124.453125, -73.824820 ], [ -126.562500, -73.824820 ], [ -126.562500, -73.627789 ], [ -127.265625, -73.627789 ], [ -127.265625, -73.428424 ], [ -125.859375, -73.428424 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.181804 ], [ -102.656250, -72.181804 ], [ -102.656250, -71.965388 ], [ -101.953125, -71.965388 ], [ -101.953125, -71.746432 ], [ -100.546875, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ] ] ], [ [ [ -156.093750, -81.201420 ], [ -156.796875, -81.201420 ], [ -156.796875, -81.093214 ], [ -156.093750, -81.093214 ], [ -156.093750, -81.201420 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -96.328125, -72.395706 ], [ -96.328125, -72.607120 ], [ -97.031250, -72.607120 ], [ -97.031250, -72.395706 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.875000, -64.774125 ], [ -61.875000, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -66.231457 ], [ -61.875000, -66.231457 ], [ -61.875000, -66.513260 ], [ -63.984375, -66.513260 ], [ -63.984375, -67.067433 ], [ -64.687500, -67.067433 ], [ -64.687500, -67.339861 ], [ -65.390625, -67.339861 ], [ -65.390625, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -69.411242 ], [ -62.578125, -69.411242 ], [ -62.578125, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.844673 ], [ -61.171875, -70.844673 ], [ -61.171875, -73.022592 ], [ -60.468750, -73.022592 ], [ -60.468750, -73.428424 ], [ -61.171875, -73.428424 ], [ -61.171875, -74.211983 ], [ -61.875000, -74.211983 ], [ -61.875000, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.775843 ], [ -63.984375, -74.775843 ], [ -63.984375, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.672197 ], [ -66.093750, -75.672197 ], [ -66.093750, -75.845169 ], [ -89.296875, -75.845169 ], [ -89.296875, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.226700 ], [ -85.078125, -73.226700 ], [ -85.078125, -73.428424 ], [ -83.671875, -73.428424 ], [ -83.671875, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.428424 ], [ -78.046875, -73.428424 ], [ -78.046875, -73.627789 ], [ -76.640625, -73.627789 ], [ -76.640625, -73.824820 ], [ -75.937500, -73.824820 ], [ -75.937500, -74.019543 ], [ -75.234375, -74.019543 ], [ -75.234375, -73.824820 ], [ -73.828125, -73.824820 ], [ -73.828125, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.428424 ], [ -71.718750, -73.428424 ], [ -71.718750, -73.226700 ], [ -68.906250, -73.226700 ], [ -68.906250, -73.022592 ], [ -68.203125, -73.022592 ], [ -68.203125, -72.607120 ], [ -67.500000, -72.607120 ], [ -67.500000, -72.181804 ], [ -66.796875, -72.181804 ], [ -66.796875, -71.965388 ], [ -67.500000, -71.965388 ], [ -67.500000, -71.074056 ], [ -68.203125, -71.074056 ], [ -68.203125, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.395706 ], [ -69.609375, -72.395706 ], [ -69.609375, -72.607120 ], [ -72.421875, -72.607120 ], [ -72.421875, -72.395706 ], [ -71.718750, -72.395706 ], [ -71.718750, -72.181804 ], [ -73.125000, -72.181804 ], [ -73.125000, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -72.181804 ], [ -75.234375, -72.181804 ], [ -75.234375, -71.746432 ], [ -74.531250, -71.746432 ], [ -74.531250, -71.524909 ], [ -73.828125, -71.524909 ], [ -73.828125, -71.300793 ], [ -72.421875, -71.300793 ], [ -72.421875, -71.074056 ], [ -71.718750, -71.074056 ], [ -71.718750, -69.162558 ], [ -71.015625, -69.162558 ], [ -71.015625, -68.911005 ], [ -70.312500, -68.911005 ], [ -70.312500, -69.162558 ], [ -69.609375, -69.162558 ], [ -69.609375, -69.900118 ], [ -68.906250, -69.900118 ], [ -68.906250, -70.612614 ], [ -68.203125, -70.844673 ], [ -68.203125, -68.911005 ], [ -67.500000, -68.911005 ], [ -67.500000, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.093750, -66.513260 ], [ -66.093750, -66.231457 ], [ -65.390625, -66.231457 ], [ -65.390625, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -65.366837 ], [ -63.984375, -65.366837 ], [ -63.984375, -65.072130 ], [ -63.281250, -65.072130 ], [ -63.281250, -64.774125 ], [ -61.875000, -64.774125 ] ] ], [ [ [ 3.515625, -75.845169 ], [ -19.687500, -75.845169 ], [ -19.687500, -75.672197 ], [ -18.984375, -75.672197 ], [ -18.984375, -75.497157 ], [ -18.281250, -75.497157 ], [ -18.281250, -75.320025 ], [ -17.578125, -75.320025 ], [ -17.578125, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.428424 ], [ -15.468750, -73.428424 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -73.022592 ], [ -13.359375, -73.022592 ], [ -13.359375, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.607120 ], [ -11.953125, -72.607120 ], [ -11.953125, -72.181804 ], [ -11.250000, -72.181804 ], [ -11.250000, -71.524909 ], [ -10.546875, -71.524909 ], [ -10.546875, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.524909 ], [ -8.437500, -71.524909 ], [ -8.437500, -71.746432 ], [ -7.734375, -71.746432 ], [ -7.734375, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.300793 ], [ -0.703125, -71.300793 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 2.109375, -71.300793 ], [ 2.109375, -71.074056 ], [ 3.515625, -71.074056 ], [ 3.515625, -75.845169 ] ] ], [ [ [ -61.171875, -64.472794 ], [ -61.171875, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.472794 ], [ -61.171875, -64.472794 ] ] ], [ [ [ -59.765625, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -63.548552 ], [ -58.359375, -63.548552 ], [ -58.359375, -63.233627 ], [ -57.656250, -63.233627 ], [ -57.656250, -63.548552 ], [ -56.953125, -63.548552 ], [ -56.953125, -63.860036 ], [ -57.656250, -63.860036 ], [ -57.656250, -64.168107 ], [ -58.359375, -64.168107 ], [ -58.359375, -64.472794 ], [ -59.765625, -64.472794 ], [ -59.765625, -63.860036 ] ] ], [ [ [ -60.468750, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.168107 ], [ -60.468750, -64.168107 ], [ -60.468750, -64.472794 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.875000, -64.774125 ], [ -61.875000, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -66.231457 ], [ -61.875000, -66.231457 ], [ -61.875000, -66.513260 ], [ -63.984375, -66.513260 ], [ -63.984375, -67.067433 ], [ -64.687500, -67.067433 ], [ -64.687500, -67.339861 ], [ -65.390625, -67.339861 ], [ -65.390625, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -69.411242 ], [ -62.578125, -69.411242 ], [ -62.578125, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.844673 ], [ -61.171875, -70.844673 ], [ -61.171875, -73.022592 ], [ -60.468750, -73.022592 ], [ -60.468750, -73.428424 ], [ -61.171875, -73.428424 ], [ -61.171875, -74.211983 ], [ -61.875000, -74.211983 ], [ -61.875000, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.775843 ], [ -63.984375, -74.775843 ], [ -63.984375, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.672197 ], [ -66.093750, -75.672197 ], [ -66.093750, -75.845169 ], [ -89.296875, -75.845169 ], [ -89.296875, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.226700 ], [ -85.078125, -73.226700 ], [ -85.078125, -73.428424 ], [ -83.671875, -73.428424 ], [ -83.671875, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.428424 ], [ -78.046875, -73.428424 ], [ -78.046875, -73.627789 ], [ -76.640625, -73.627789 ], [ -76.640625, -73.824820 ], [ -75.937500, -73.824820 ], [ -75.937500, -74.019543 ], [ -75.234375, -74.019543 ], [ -75.234375, -73.824820 ], [ -73.828125, -73.824820 ], [ -73.828125, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.428424 ], [ -71.718750, -73.428424 ], [ -71.718750, -73.226700 ], [ -68.906250, -73.226700 ], [ -68.906250, -73.022592 ], [ -68.203125, -73.022592 ], [ -68.203125, -72.607120 ], [ -67.500000, -72.607120 ], [ -67.500000, -72.181804 ], [ -66.796875, -72.181804 ], [ -66.796875, -71.965388 ], [ -67.500000, -71.965388 ], [ -67.500000, -71.074056 ], [ -68.203125, -71.074056 ], [ -68.203125, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.395706 ], [ -69.609375, -72.395706 ], [ -69.609375, -72.607120 ], [ -72.421875, -72.607120 ], [ -72.421875, -72.395706 ], [ -71.718750, -72.395706 ], [ -71.718750, -72.181804 ], [ -73.125000, -72.181804 ], [ -73.125000, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -72.181804 ], [ -75.234375, -72.181804 ], [ -75.234375, -71.746432 ], [ -74.531250, -71.746432 ], [ -74.531250, -71.524909 ], [ -73.828125, -71.524909 ], [ -73.828125, -71.300793 ], [ -72.421875, -71.300793 ], [ -72.421875, -71.074056 ], [ -71.718750, -71.074056 ], [ -71.718750, -69.162558 ], [ -71.015625, -69.162558 ], [ -71.015625, -68.911005 ], [ -70.312500, -68.911005 ], [ -70.312500, -69.162558 ], [ -69.609375, -69.162558 ], [ -69.609375, -69.900118 ], [ -68.906250, -69.900118 ], [ -68.906250, -70.140364 ], [ -68.203125, -70.844673 ], [ -68.203125, -68.911005 ], [ -67.500000, -68.911005 ], [ -67.500000, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.093750, -66.513260 ], [ -66.093750, -66.231457 ], [ -65.390625, -66.231457 ], [ -65.390625, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -65.366837 ], [ -63.984375, -65.366837 ], [ -63.984375, -65.072130 ], [ -63.281250, -65.072130 ], [ -63.281250, -64.774125 ], [ -61.875000, -64.774125 ] ] ], [ [ [ 3.515625, -75.845169 ], [ -19.687500, -75.845169 ], [ -19.687500, -75.672197 ], [ -18.984375, -75.672197 ], [ -18.984375, -75.497157 ], [ -18.281250, -75.497157 ], [ -18.281250, -75.320025 ], [ -17.578125, -75.320025 ], [ -17.578125, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.428424 ], [ -15.468750, -73.428424 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -73.022592 ], [ -13.359375, -73.022592 ], [ -13.359375, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.607120 ], [ -11.953125, -72.607120 ], [ -11.953125, -72.181804 ], [ -11.250000, -72.181804 ], [ -11.250000, -71.524909 ], [ -10.546875, -71.524909 ], [ -10.546875, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.524909 ], [ -8.437500, -71.524909 ], [ -8.437500, -71.746432 ], [ -7.734375, -71.746432 ], [ -7.734375, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.300793 ], [ -0.703125, -71.300793 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 2.109375, -71.300793 ], [ 2.109375, -71.074056 ], [ 3.515625, -71.074056 ], [ 3.515625, -75.845169 ] ] ], [ [ [ -61.171875, -64.472794 ], [ -61.171875, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.472794 ], [ -61.171875, -64.472794 ] ] ], [ [ [ -59.765625, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -63.548552 ], [ -58.359375, -63.548552 ], [ -58.359375, -63.233627 ], [ -57.656250, -63.233627 ], [ -57.656250, -63.548552 ], [ -56.953125, -63.548552 ], [ -56.953125, -63.860036 ], [ -57.656250, -63.860036 ], [ -57.656250, -64.168107 ], [ -58.359375, -64.168107 ], [ -58.359375, -64.472794 ], [ -59.765625, -64.472794 ], [ -59.765625, -63.860036 ] ] ], [ [ [ -60.468750, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.168107 ], [ -60.468750, -64.168107 ], [ -60.468750, -64.472794 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.515625, -75.845169 ], [ 3.515625, -85.345325 ], [ -89.296875, -85.345325 ], [ -89.296875, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -76.016094 ], [ -68.203125, -76.016094 ], [ -68.203125, -76.184995 ], [ -69.609375, -76.184995 ], [ -69.609375, -76.516819 ], [ -70.312500, -76.516819 ], [ -70.312500, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.999935 ], [ -76.640625, -76.999935 ], [ -76.640625, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.937500, -78.206563 ], [ -75.937500, -78.061989 ], [ -76.640625, -78.061989 ], [ -76.640625, -78.206563 ], [ -77.343750, -78.206563 ], [ -77.343750, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.302640 ], [ -77.343750, -79.302640 ], [ -77.343750, -79.560546 ], [ -76.640625, -79.560546 ], [ -76.640625, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.983688 ], [ -70.312500, -80.983688 ], [ -70.312500, -81.093214 ], [ -69.609375, -81.093214 ], [ -69.609375, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.308321 ], [ -68.203125, -81.308321 ], [ -68.203125, -81.413933 ], [ -66.796875, -81.413933 ], [ -66.796875, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.621352 ], [ -63.984375, -81.621352 ], [ -63.984375, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.823794 ], [ -62.578125, -81.823794 ], [ -62.578125, -82.021378 ], [ -61.875000, -82.021378 ], [ -61.875000, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.402423 ], [ -59.765625, -82.402423 ], [ -59.765625, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -83.026219 ], [ -58.359375, -83.026219 ], [ -58.359375, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -82.940327 ], [ -56.953125, -82.940327 ], [ -56.953125, -82.853382 ], [ -56.250000, -82.853382 ], [ -56.250000, -82.676285 ], [ -55.546875, -82.676285 ], [ -55.546875, -82.586106 ], [ -54.843750, -82.586106 ], [ -54.843750, -82.402423 ], [ -54.140625, -82.402423 ], [ -54.140625, -82.308893 ], [ -53.437500, -82.308893 ], [ -53.437500, -82.214217 ], [ -52.734375, -82.214217 ], [ -52.734375, -82.118384 ], [ -51.328125, -82.118384 ], [ -51.328125, -82.021378 ], [ -50.625000, -82.021378 ], [ -50.625000, -81.823794 ], [ -49.921875, -81.823794 ], [ -49.921875, -81.723188 ], [ -46.406250, -81.723188 ], [ -46.406250, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -82.021378 ], [ -43.593750, -82.021378 ], [ -43.593750, -82.118384 ], [ -42.890625, -82.118384 ], [ -42.890625, -81.923186 ], [ -42.187500, -81.923186 ], [ -42.187500, -81.621352 ], [ -41.484375, -81.621352 ], [ -41.484375, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.308321 ], [ -37.265625, -81.308321 ], [ -37.265625, -81.201420 ], [ -36.562500, -81.201420 ], [ -36.562500, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.760615 ], [ -30.937500, -80.760615 ], [ -30.937500, -80.647035 ], [ -29.531250, -80.647035 ], [ -29.531250, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.302640 ], [ -32.343750, -79.302640 ], [ -32.343750, -79.432371 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.206563 ], [ -35.156250, -78.206563 ], [ -35.156250, -78.061989 ], [ -33.750000, -78.061989 ], [ -33.750000, -77.915669 ], [ -33.046875, -77.915669 ], [ -33.046875, -77.767582 ], [ -32.343750, -77.767582 ], [ -32.343750, -77.617709 ], [ -31.640625, -77.617709 ], [ -31.640625, -77.466028 ], [ -30.937500, -77.466028 ], [ -30.937500, -77.312520 ], [ -30.234375, -77.312520 ], [ -30.234375, -77.157163 ], [ -29.531250, -77.157163 ], [ -29.531250, -76.840816 ], [ -28.828125, -76.840816 ], [ -28.828125, -76.679785 ], [ -27.421875, -76.679785 ], [ -27.421875, -76.516819 ], [ -26.015625, -76.516819 ], [ -26.015625, -76.351896 ], [ -23.906250, -76.351896 ], [ -23.906250, -76.184995 ], [ -21.796875, -76.184995 ], [ -21.796875, -76.016094 ], [ -21.093750, -76.016094 ], [ -21.093750, -75.845169 ], [ 3.515625, -75.845169 ] ] ], [ [ [ -60.468750, -79.812302 ], [ -59.765625, -79.935918 ], [ -59.765625, -80.760615 ], [ -60.468750, -80.760615 ], [ -60.468750, -80.983688 ], [ -61.875000, -80.983688 ], [ -61.875000, -80.872827 ], [ -64.687500, -80.872827 ], [ -64.687500, -80.760615 ], [ -65.390625, -80.760615 ], [ -65.390625, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.297927 ], [ -63.281250, -80.297927 ], [ -63.281250, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.178713 ], [ -61.171875, -80.178713 ], [ -61.171875, -79.812302 ], [ -60.468750, -79.812302 ] ] ], [ [ [ -45.703125, -77.915669 ], [ -45.703125, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.206563 ], [ -44.296875, -78.206563 ], [ -44.296875, -78.490552 ], [ -43.593750, -78.490552 ], [ -43.593750, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.297927 ], [ -45.000000, -80.297927 ], [ -45.000000, -80.415707 ], [ -45.703125, -80.415707 ], [ -45.703125, -80.647035 ], [ -46.406250, -80.647035 ], [ -46.406250, -80.760615 ], [ -47.812500, -80.760615 ], [ -47.812500, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.983688 ], [ -53.437500, -80.983688 ], [ -53.437500, -80.760615 ], [ -54.140625, -80.760615 ], [ -54.140625, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.058050 ], [ -52.031250, -80.058050 ], [ -52.031250, -79.812302 ], [ -51.328125, -79.812302 ], [ -51.328125, -79.432371 ], [ -50.625000, -79.432371 ], [ -50.625000, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.630006 ], [ -49.218750, -78.630006 ], [ -49.218750, -78.349411 ], [ -48.515625, -78.349411 ], [ -48.515625, -78.061989 ], [ -47.109375, -78.061989 ], [ -47.109375, -77.915669 ], [ -45.703125, -77.915669 ] ] ] ] } } ] } @@ -402,7 +402,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.625000, 69.657086 ], [ -140.625000, 69.411242 ], [ -141.328125, 69.411242 ], [ -141.328125, 69.657086 ], [ -140.625000, 69.657086 ] ] ], [ [ [ -105.468750, 72.181804 ], [ -104.765625, 72.181804 ], [ -104.765625, 70.844673 ], [ -103.359375, 70.844673 ], [ -103.359375, 70.612614 ], [ -102.656250, 70.612614 ], [ -102.656250, 70.377854 ], [ -101.953125, 70.377854 ], [ -101.953125, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.657086 ], [ -117.421875, 69.657086 ], [ -117.421875, 69.900118 ], [ -116.718750, 69.900118 ], [ -116.718750, 70.140364 ], [ -112.500000, 70.140364 ], [ -112.500000, 70.377854 ], [ -113.906250, 70.377854 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -117.421875, 70.844673 ], [ -117.421875, 71.074056 ], [ -116.015625, 71.074056 ], [ -116.015625, 71.300793 ], [ -118.828125, 71.300793 ], [ -118.828125, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.965388 ], [ -118.828125, 71.965388 ], [ -118.828125, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.607120 ], [ -117.421875, 72.607120 ], [ -117.421875, 72.816074 ], [ -116.015625, 72.816074 ], [ -116.015625, 73.022592 ], [ -113.906250, 73.022592 ], [ -113.906250, 72.816074 ], [ -111.796875, 72.816074 ], [ -111.796875, 72.395706 ], [ -110.390625, 72.395706 ], [ -110.390625, 72.816074 ], [ -108.984375, 72.816074 ], [ -108.984375, 72.181804 ], [ -108.281250, 72.181804 ], [ -108.281250, 71.746432 ], [ -107.578125, 71.746432 ], [ -107.578125, 72.395706 ], [ -108.281250, 72.395706 ], [ -108.281250, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 73.428424 ], [ -104.765625, 73.428424 ], [ -104.765625, 73.022592 ], [ -105.468750, 73.022592 ], [ -105.468750, 72.181804 ] ], [ [ -113.906250, 72.816074 ], [ -114.609375, 72.816074 ], [ -114.609375, 72.607120 ], [ -113.906250, 72.607120 ], [ -113.906250, 72.816074 ] ] ], [ [ [ -127.265625, 70.140364 ], [ -126.562500, 70.140364 ], [ -126.562500, 69.657086 ], [ -125.859375, 69.657086 ], [ -125.859375, 69.411242 ], [ -132.187500, 69.411242 ], [ -132.187500, 69.657086 ], [ -131.484375, 69.657086 ], [ -131.484375, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 70.140364 ], [ -127.968750, 70.140364 ], [ -127.968750, 70.377854 ], [ -127.265625, 70.377854 ], [ -127.265625, 70.140364 ] ] ], [ [ [ -124.453125, 69.411242 ], [ -125.156250, 69.411242 ], [ -125.156250, 69.900118 ], [ -124.453125, 69.900118 ], [ -124.453125, 69.411242 ] ] ], [ [ [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.411242 ], [ -123.046875, 69.411242 ], [ -123.046875, 69.657086 ], [ -122.343750, 69.657086 ], [ -122.343750, 69.900118 ], [ -121.640625, 69.900118 ], [ -121.640625, 69.657086 ] ] ], [ [ [ -97.031250, 69.900118 ], [ -99.140625, 69.411242 ], [ -99.140625, 69.900118 ], [ -97.031250, 69.900118 ] ] ], [ [ [ -97.031250, 73.824820 ], [ -97.031250, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 72.816074 ], [ -97.031250, 72.816074 ], [ -97.031250, 71.524909 ], [ -97.734375, 71.524909 ], [ -97.734375, 71.300793 ], [ -99.140625, 71.300793 ], [ -99.140625, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.746432 ], [ -100.546875, 71.746432 ], [ -100.546875, 71.965388 ], [ -101.250000, 71.965388 ], [ -101.250000, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.816074 ], [ -101.953125, 72.816074 ], [ -101.953125, 72.607120 ], [ -100.546875, 72.607120 ], [ -100.546875, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.627789 ], [ -97.734375, 73.627789 ], [ -97.734375, 73.824820 ], [ -97.031250, 73.824820 ] ] ], [ [ [ -108.281250, 76.679785 ], [ -108.281250, 76.016094 ], [ -107.578125, 76.016094 ], [ -107.578125, 75.845169 ], [ -106.875000, 75.845169 ], [ -106.875000, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.171875, 75.672197 ], [ -105.468750, 75.672197 ], [ -105.468750, 75.140778 ], [ -106.171875, 75.140778 ], [ -106.171875, 74.959392 ], [ -107.578125, 74.959392 ], [ -107.578125, 74.775843 ], [ -109.687500, 74.775843 ], [ -109.687500, 74.590108 ], [ -111.093750, 74.590108 ], [ -111.093750, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.959392 ], [ -117.421875, 74.959392 ], [ -117.421875, 75.320025 ], [ -116.718750, 75.320025 ], [ -116.718750, 75.845169 ], [ -116.015625, 75.845169 ], [ -116.015625, 76.351896 ], [ -113.906250, 76.351896 ], [ -113.906250, 76.184995 ], [ -112.500000, 76.184995 ], [ -112.500000, 76.016094 ], [ -111.796875, 76.016094 ], [ -111.796875, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.497157 ], [ -108.984375, 75.497157 ], [ -108.984375, 75.672197 ], [ -109.687500, 75.672197 ], [ -109.687500, 76.016094 ], [ -110.390625, 76.016094 ], [ -110.390625, 76.516819 ], [ -109.687500, 76.516819 ], [ -109.687500, 76.679785 ], [ -108.281250, 76.679785 ] ], [ [ -113.203125, 75.140778 ], [ -113.203125, 74.959392 ], [ -111.796875, 74.959392 ], [ -111.796875, 75.140778 ], [ -113.203125, 75.140778 ] ] ], [ [ [ -98.437500, 76.516819 ], [ -98.437500, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.320025 ], [ -98.437500, 75.320025 ], [ -98.437500, 74.959392 ], [ -100.546875, 74.959392 ], [ -100.546875, 75.672197 ], [ -101.250000, 75.672197 ], [ -101.250000, 75.497157 ], [ -102.656250, 75.497157 ], [ -102.656250, 76.351896 ], [ -100.546875, 76.351896 ], [ -100.546875, 76.516819 ], [ -98.437500, 76.516819 ] ] ], [ [ [ -116.015625, 77.466028 ], [ -116.015625, 76.679785 ], [ -116.718750, 76.679785 ], [ -116.718750, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 76.016094 ], [ -120.234375, 76.016094 ], [ -120.234375, 75.845169 ], [ -122.343750, 75.845169 ], [ -122.343750, 76.016094 ], [ -123.046875, 76.016094 ], [ -123.046875, 76.184995 ], [ -122.343750, 76.184995 ], [ -122.343750, 76.516819 ], [ -121.640625, 76.516819 ], [ -121.640625, 76.679785 ], [ -120.937500, 76.679785 ], [ -120.937500, 76.840816 ], [ -120.234375, 76.840816 ], [ -120.234375, 77.157163 ], [ -119.531250, 77.157163 ], [ -119.531250, 77.312520 ], [ -118.828125, 77.312520 ], [ -118.828125, 77.466028 ], [ -116.015625, 77.466028 ] ] ], [ [ [ -109.687500, 78.061989 ], [ -109.687500, 77.915669 ], [ -110.390625, 77.915669 ], [ -110.390625, 77.617709 ], [ -111.093750, 77.617709 ], [ -111.093750, 77.466028 ], [ -112.500000, 77.466028 ], [ -112.500000, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.915669 ], [ -112.500000, 77.915669 ], [ -112.500000, 78.061989 ], [ -109.687500, 78.061989 ] ] ], [ [ [ -97.031250, 78.767792 ], [ -97.031250, 77.915669 ], [ -98.437500, 77.915669 ], [ -98.437500, 78.767792 ], [ -97.031250, 78.767792 ] ] ], [ [ [ -104.765625, 79.302640 ], [ -104.765625, 79.171335 ], [ -103.359375, 79.171335 ], [ -103.359375, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.767792 ], [ -100.546875, 78.767792 ], [ -100.546875, 78.490552 ], [ -99.843750, 78.490552 ], [ -99.843750, 77.915669 ], [ -101.250000, 77.915669 ], [ -101.250000, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -104.062500, 78.490552 ], [ -104.062500, 78.630006 ], [ -104.765625, 78.630006 ], [ -104.765625, 78.767792 ], [ -105.468750, 78.767792 ], [ -105.468750, 79.302640 ], [ -104.765625, 79.302640 ] ] ], [ [ [ -111.093750, 78.767792 ], [ -111.093750, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.349411 ], [ -112.500000, 78.349411 ], [ -112.500000, 78.630006 ], [ -111.796875, 78.630006 ], [ -111.796875, 78.767792 ], [ -111.093750, 78.767792 ] ] ], [ [ [ -117.421875, 72.816074 ], [ -118.828125, 72.816074 ], [ -118.828125, 72.607120 ], [ -119.531250, 72.607120 ], [ -119.531250, 72.181804 ], [ -120.234375, 72.181804 ], [ -120.234375, 71.074056 ], [ -121.640625, 71.074056 ], [ -121.640625, 70.844673 ], [ -123.046875, 70.844673 ], [ -123.046875, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.300793 ], [ -124.453125, 71.300793 ], [ -124.453125, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.746432 ], [ -125.859375, 71.746432 ], [ -125.859375, 72.181804 ], [ -125.156250, 72.181804 ], [ -125.156250, 73.022592 ], [ -124.453125, 73.022592 ], [ -124.453125, 73.428424 ], [ -123.750000, 73.428424 ], [ -123.750000, 73.627789 ], [ -124.453125, 73.627789 ], [ -124.453125, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.211983 ], [ -123.046875, 74.211983 ], [ -123.046875, 74.402163 ], [ -121.640625, 74.402163 ], [ -121.640625, 74.211983 ], [ -117.421875, 74.211983 ], [ -117.421875, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.428424 ], [ -115.312500, 73.428424 ], [ -115.312500, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.816074 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.781250, 77.617709 ], [ -85.781250, 77.915669 ], [ -86.484375, 77.915669 ], [ -86.484375, 78.206563 ], [ -87.890625, 78.206563 ], [ -87.890625, 78.490552 ], [ -87.187500, 78.490552 ], [ -87.187500, 78.767792 ], [ -86.484375, 78.767792 ], [ -86.484375, 78.903929 ], [ -85.078125, 78.903929 ], [ -85.078125, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 80.297927 ], [ -86.484375, 80.297927 ], [ -86.484375, 80.178713 ], [ -84.375000, 80.178713 ], [ -84.375000, 80.058050 ], [ -82.968750, 80.058050 ], [ -82.968750, 80.178713 ], [ -82.265625, 80.178713 ], [ -82.265625, 80.297927 ], [ -81.562500, 80.297927 ], [ -81.562500, 80.415707 ], [ -83.671875, 80.415707 ], [ -83.671875, 80.532071 ], [ -88.593750, 80.532071 ], [ -88.593750, 80.760615 ], [ -89.296875, 80.760615 ], [ -89.296875, 81.093214 ], [ -90.000000, 81.093214 ], [ -90.000000, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.406250, 81.413933 ], [ -91.406250, 81.923186 ], [ -90.703125, 81.923186 ], [ -90.703125, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.118384 ], [ -87.890625, 82.118384 ], [ -87.890625, 82.214217 ], [ -87.187500, 82.214217 ], [ -87.187500, 82.402423 ], [ -86.484375, 82.402423 ], [ -86.484375, 82.586106 ], [ -84.375000, 82.586106 ], [ -84.375000, 82.494824 ], [ -83.671875, 82.494824 ], [ -83.671875, 82.308893 ], [ -82.968750, 82.308893 ], [ -82.968750, 82.586106 ], [ -82.265625, 82.586106 ], [ -82.265625, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 82.940327 ], [ -80.859375, 82.940327 ], [ -80.859375, 83.026219 ], [ -79.453125, 83.026219 ], [ -79.453125, 83.111071 ], [ -77.343750, 83.111071 ], [ -77.343750, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -74.531250, 83.026219 ], [ -74.531250, 83.111071 ], [ -73.125000, 83.111071 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.111071 ], [ -67.500000, 83.111071 ], [ -67.500000, 83.026219 ], [ -65.390625, 83.026219 ], [ -65.390625, 82.940327 ], [ -63.984375, 82.940327 ], [ -63.984375, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.586106 ], [ -61.875000, 82.586106 ], [ -61.875000, 82.308893 ], [ -62.578125, 82.308893 ], [ -62.578125, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -63.984375, 81.923186 ], [ -63.984375, 81.823794 ], [ -65.390625, 81.823794 ], [ -65.390625, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.621352 ], [ -67.500000, 81.621352 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -65.390625, 81.413933 ], [ -66.093750, 81.413933 ], [ -66.093750, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 80.983688 ], [ -67.500000, 80.983688 ], [ -67.500000, 80.760615 ], [ -68.906250, 80.760615 ], [ -68.906250, 80.647035 ], [ -69.609375, 80.647035 ], [ -69.609375, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.812302 ], [ -71.718750, 79.812302 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.560546 ], [ -73.828125, 79.560546 ], [ -73.828125, 79.432371 ], [ -74.531250, 79.432371 ], [ -74.531250, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.171335 ], [ -75.234375, 79.171335 ], [ -75.234375, 79.038437 ], [ -75.937500, 79.038437 ], [ -75.937500, 78.767792 ], [ -75.234375, 78.767792 ], [ -75.234375, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.206563 ], [ -76.640625, 78.206563 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.312520 ], [ -78.750000, 77.312520 ], [ -78.750000, 77.157163 ], [ -87.890625, 77.157163 ], [ -87.890625, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.915669 ], [ -87.890625, 77.915669 ], [ -87.890625, 77.767582 ], [ -87.187500, 77.767582 ], [ -87.187500, 77.617709 ], [ -85.781250, 77.617709 ] ], [ [ -85.781250, 77.617709 ], [ -85.781250, 77.466028 ], [ -85.078125, 77.466028 ], [ -85.078125, 77.617709 ], [ -85.781250, 77.617709 ] ] ], [ [ [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -93.515625, 77.617709 ], [ -93.515625, 77.466028 ], [ -95.625000, 77.466028 ], [ -95.625000, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -94.218750, 77.767582 ] ] ], [ [ [ -96.328125, 78.630006 ], [ -96.328125, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.915669 ], [ -97.031250, 77.915669 ], [ -97.031250, 78.630006 ], [ -96.328125, 78.630006 ] ] ], [ [ [ -92.109375, 81.308321 ], [ -92.109375, 80.983688 ], [ -91.406250, 80.983688 ], [ -91.406250, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.297927 ], [ -87.890625, 80.297927 ], [ -87.890625, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.171335 ], [ -86.484375, 79.171335 ], [ -86.484375, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 78.903929 ], [ -87.890625, 78.903929 ], [ -87.890625, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -89.296875, 78.349411 ], [ -89.296875, 78.206563 ], [ -92.109375, 78.206563 ], [ -92.109375, 78.349411 ], [ -93.515625, 78.349411 ], [ -93.515625, 78.630006 ], [ -94.218750, 78.630006 ], [ -94.218750, 79.171335 ], [ -93.515625, 79.171335 ], [ -93.515625, 79.302640 ], [ -92.812500, 79.302640 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.560546 ], [ -96.328125, 79.560546 ], [ -96.328125, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -96.328125, 80.415707 ], [ -96.328125, 80.760615 ], [ -95.625000, 80.760615 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.093214 ], [ -94.921875, 81.093214 ], [ -94.921875, 81.201420 ], [ -92.812500, 81.201420 ], [ -92.812500, 81.308321 ], [ -92.109375, 81.308321 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.781250, 77.617709 ], [ -85.781250, 77.915669 ], [ -86.484375, 77.915669 ], [ -86.484375, 78.206563 ], [ -87.890625, 78.206563 ], [ -87.890625, 78.490552 ], [ -87.187500, 78.490552 ], [ -87.187500, 78.767792 ], [ -86.484375, 78.767792 ], [ -86.484375, 78.903929 ], [ -85.078125, 78.903929 ], [ -85.078125, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 80.297927 ], [ -86.484375, 80.297927 ], [ -86.484375, 80.178713 ], [ -84.375000, 80.178713 ], [ -84.375000, 80.058050 ], [ -82.968750, 80.058050 ], [ -82.968750, 80.178713 ], [ -82.265625, 80.178713 ], [ -82.265625, 80.297927 ], [ -81.562500, 80.297927 ], [ -81.562500, 80.415707 ], [ -83.671875, 80.415707 ], [ -83.671875, 80.532071 ], [ -88.593750, 80.532071 ], [ -88.593750, 80.760615 ], [ -89.296875, 80.760615 ], [ -89.296875, 81.093214 ], [ -90.000000, 81.093214 ], [ -90.000000, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.406250, 81.413933 ], [ -91.406250, 81.923186 ], [ -90.703125, 81.923186 ], [ -90.703125, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.118384 ], [ -87.890625, 82.118384 ], [ -87.890625, 82.214217 ], [ -87.187500, 82.214217 ], [ -87.187500, 82.402423 ], [ -86.484375, 82.402423 ], [ -86.484375, 82.586106 ], [ -84.375000, 82.586106 ], [ -84.375000, 82.494824 ], [ -83.671875, 82.494824 ], [ -83.671875, 82.308893 ], [ -82.968750, 82.308893 ], [ -82.968750, 82.586106 ], [ -82.265625, 82.586106 ], [ -82.265625, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 82.940327 ], [ -80.859375, 82.940327 ], [ -80.859375, 83.026219 ], [ -79.453125, 83.026219 ], [ -79.453125, 83.111071 ], [ -77.343750, 83.111071 ], [ -77.343750, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -74.531250, 83.026219 ], [ -74.531250, 83.111071 ], [ -73.125000, 83.111071 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.111071 ], [ -67.500000, 83.111071 ], [ -67.500000, 83.026219 ], [ -65.390625, 83.026219 ], [ -65.390625, 82.940327 ], [ -63.984375, 82.940327 ], [ -63.984375, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.586106 ], [ -61.875000, 82.586106 ], [ -61.875000, 82.308893 ], [ -62.578125, 82.308893 ], [ -62.578125, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -63.984375, 81.923186 ], [ -63.984375, 81.823794 ], [ -65.390625, 81.823794 ], [ -65.390625, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.621352 ], [ -67.500000, 81.621352 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -65.390625, 81.413933 ], [ -66.093750, 81.413933 ], [ -66.093750, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 80.983688 ], [ -67.500000, 80.983688 ], [ -67.500000, 80.760615 ], [ -68.906250, 80.760615 ], [ -68.906250, 80.647035 ], [ -69.609375, 80.647035 ], [ -69.609375, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.812302 ], [ -71.718750, 79.812302 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.560546 ], [ -73.828125, 79.560546 ], [ -73.828125, 79.432371 ], [ -74.531250, 79.432371 ], [ -74.531250, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.171335 ], [ -75.234375, 79.171335 ], [ -75.234375, 79.038437 ], [ -75.937500, 79.038437 ], [ -75.937500, 78.767792 ], [ -75.234375, 78.767792 ], [ -75.234375, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.206563 ], [ -76.640625, 78.206563 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.312520 ], [ -78.750000, 77.312520 ], [ -78.750000, 77.157163 ], [ -87.890625, 77.157163 ], [ -87.890625, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.915669 ], [ -87.890625, 77.915669 ], [ -87.890625, 77.767582 ], [ -87.187500, 77.767582 ], [ -87.187500, 77.617709 ], [ -85.781250, 77.617709 ] ], [ [ -85.781250, 77.617709 ], [ -85.781250, 77.466028 ], [ -85.078125, 77.466028 ], [ -85.078125, 77.617709 ], [ -85.781250, 77.617709 ] ] ], [ [ [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -93.515625, 77.466028 ], [ -95.625000, 77.466028 ], [ -95.625000, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -94.218750, 77.767582 ] ] ], [ [ [ -96.328125, 78.630006 ], [ -96.328125, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.915669 ], [ -97.031250, 77.915669 ], [ -97.031250, 78.630006 ], [ -96.328125, 78.630006 ] ] ], [ [ [ -92.109375, 81.308321 ], [ -92.109375, 80.983688 ], [ -91.406250, 80.983688 ], [ -91.406250, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.297927 ], [ -87.890625, 80.297927 ], [ -87.890625, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.171335 ], [ -86.484375, 79.171335 ], [ -86.484375, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 78.903929 ], [ -87.890625, 78.903929 ], [ -87.890625, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -89.296875, 78.349411 ], [ -89.296875, 78.206563 ], [ -92.109375, 78.206563 ], [ -92.109375, 78.349411 ], [ -93.515625, 78.349411 ], [ -93.515625, 78.630006 ], [ -94.218750, 78.630006 ], [ -94.218750, 79.171335 ], [ -93.515625, 79.171335 ], [ -93.515625, 79.302640 ], [ -92.812500, 79.302640 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.560546 ], [ -96.328125, 79.560546 ], [ -96.328125, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -96.328125, 80.415707 ], [ -96.328125, 80.760615 ], [ -95.625000, 80.760615 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.093214 ], [ -94.921875, 81.093214 ], [ -94.921875, 81.201420 ], [ -92.812500, 81.201420 ], [ -92.812500, 81.308321 ], [ -92.109375, 81.308321 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -96.328125, 69.657086 ], [ -96.328125, 69.411242 ], [ -97.031250, 69.411242 ], [ -97.031250, 69.657086 ], [ -96.328125, 69.657086 ] ] ], [ [ [ -94.218750, 71.746432 ], [ -94.218750, 71.524909 ], [ -93.515625, 71.524909 ], [ -93.515625, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 70.844673 ], [ -92.109375, 70.844673 ], [ -92.109375, 70.377854 ], [ -91.406250, 70.377854 ], [ -91.406250, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.411242 ], [ -95.625000, 69.411242 ], [ -95.625000, 69.900118 ], [ -96.328125, 69.900118 ], [ -96.328125, 71.300793 ], [ -95.625000, 71.300793 ], [ -95.625000, 71.746432 ], [ -94.218750, 71.746432 ] ] ], [ [ [ -85.781250, 70.140364 ], [ -87.187500, 70.140364 ], [ -87.187500, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 72.607120 ], [ -89.296875, 72.607120 ], [ -89.296875, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.627789 ], [ -86.484375, 73.824820 ], [ -85.781250, 73.824820 ], [ -85.781250, 73.428424 ], [ -86.484375, 73.428424 ], [ -86.484375, 72.816074 ], [ -85.781250, 72.816074 ], [ -85.781250, 73.022592 ], [ -85.078125, 73.022592 ], [ -85.078125, 73.428424 ], [ -83.671875, 73.428424 ], [ -83.671875, 73.627789 ], [ -82.265625, 73.627789 ], [ -82.265625, 73.428424 ], [ -81.562500, 73.428424 ], [ -81.562500, 73.022592 ], [ -80.859375, 73.022592 ], [ -80.859375, 71.965388 ], [ -80.156250, 71.965388 ], [ -80.156250, 72.181804 ], [ -78.750000, 72.181804 ], [ -78.750000, 72.607120 ], [ -77.343750, 72.607120 ], [ -77.343750, 72.395706 ], [ -76.640625, 72.395706 ], [ -76.640625, 72.181804 ], [ -75.937500, 72.181804 ], [ -75.937500, 71.965388 ], [ -75.234375, 71.965388 ], [ -75.234375, 71.746432 ], [ -74.531250, 71.746432 ], [ -74.531250, 71.524909 ], [ -73.828125, 71.524909 ], [ -73.828125, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 70.844673 ], [ -70.312500, 70.844673 ], [ -70.312500, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.377854 ], [ -68.203125, 70.377854 ], [ -68.203125, 69.900118 ], [ -67.500000, 69.900118 ], [ -67.500000, 69.411242 ], [ -77.343750, 69.411242 ], [ -77.343750, 69.657086 ], [ -78.046875, 69.657086 ], [ -78.046875, 69.900118 ], [ -80.156250, 69.900118 ], [ -80.156250, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.411242 ], [ -85.781250, 69.411242 ], [ -85.781250, 70.140364 ] ], [ [ -84.375000, 69.900118 ], [ -84.375000, 69.657086 ], [ -83.671875, 69.657086 ], [ -83.671875, 69.900118 ], [ -84.375000, 69.900118 ] ] ], [ [ [ -93.515625, 74.211983 ], [ -93.515625, 74.019543 ], [ -92.109375, 74.019543 ], [ -92.109375, 73.824820 ], [ -90.703125, 73.824820 ], [ -90.703125, 73.627789 ], [ -91.406250, 73.627789 ], [ -91.406250, 73.226700 ], [ -92.109375, 73.226700 ], [ -92.109375, 72.816074 ], [ -93.515625, 72.816074 ], [ -93.515625, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.965388 ], [ -95.625000, 71.965388 ], [ -95.625000, 72.395706 ], [ -96.328125, 72.395706 ], [ -96.328125, 72.181804 ], [ -97.031250, 72.181804 ], [ -97.031250, 72.607120 ], [ -96.328125, 72.607120 ], [ -96.328125, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.824820 ], [ -94.921875, 73.824820 ], [ -94.921875, 74.019543 ], [ -94.218750, 74.019543 ], [ -94.218750, 74.211983 ], [ -93.515625, 74.211983 ] ] ], [ [ [ -79.453125, 73.824820 ], [ -79.453125, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.022592 ], [ -76.640625, 73.022592 ], [ -76.640625, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.627789 ], [ -80.156250, 73.627789 ], [ -80.156250, 73.824820 ], [ -79.453125, 73.824820 ] ] ], [ [ [ -94.921875, 77.157163 ], [ -94.921875, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 76.679785 ], [ -90.703125, 76.679785 ], [ -90.703125, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.497157 ], [ -85.078125, 75.497157 ], [ -85.078125, 75.672197 ], [ -83.671875, 75.672197 ], [ -83.671875, 75.845169 ], [ -82.265625, 75.845169 ], [ -82.265625, 75.672197 ], [ -80.859375, 75.672197 ], [ -80.859375, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.402163 ], [ -82.968750, 74.402163 ], [ -82.968750, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.590108 ], [ -91.406250, 74.590108 ], [ -91.406250, 74.775843 ], [ -92.109375, 74.775843 ], [ -92.109375, 74.959392 ], [ -92.812500, 74.959392 ], [ -92.812500, 75.845169 ], [ -93.515625, 75.845169 ], [ -93.515625, 76.184995 ], [ -94.218750, 76.184995 ], [ -94.218750, 76.351896 ], [ -95.625000, 76.351896 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.921875, 77.157163 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 75.140778 ], [ -93.515625, 75.140778 ], [ -93.515625, 74.775843 ], [ -94.218750, 74.775843 ], [ -94.218750, 74.590108 ], [ -96.328125, 74.590108 ], [ -96.328125, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.320025 ], [ -95.625000, 75.320025 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -79.453125, 77.157163 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.679785 ], [ -78.750000, 76.679785 ], [ -78.750000, 76.516819 ], [ -79.453125, 76.516819 ], [ -79.453125, 76.351896 ], [ -80.156250, 76.351896 ], [ -80.156250, 76.184995 ], [ -81.562500, 76.184995 ], [ -81.562500, 76.351896 ], [ -82.968750, 76.351896 ], [ -82.968750, 76.516819 ], [ -83.671875, 76.516819 ], [ -83.671875, 76.351896 ], [ -89.296875, 76.351896 ], [ -89.296875, 76.999935 ], [ -87.890625, 76.999935 ], [ -87.890625, 77.157163 ], [ -79.453125, 77.157163 ] ] ] ] } } , @@ -410,15 +410,15 @@ , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.125000, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.015625, 61.270233 ], [ -71.015625, 60.930432 ], [ -69.609375, 60.930432 ], [ -69.609375, 58.813742 ], [ -68.203125, 58.813742 ], [ -68.203125, 58.447733 ], [ -67.500000, 58.447733 ], [ -67.500000, 58.077876 ], [ -66.796875, 58.077876 ], [ -66.796875, 58.447733 ], [ -66.093750, 58.447733 ], [ -66.093750, 59.175928 ], [ -65.390625, 59.175928 ], [ -65.390625, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.175928 ], [ -63.281250, 59.175928 ], [ -63.281250, 58.447733 ], [ -62.578125, 58.447733 ], [ -62.578125, 57.704147 ], [ -61.875000, 57.704147 ], [ -61.875000, 57.326521 ], [ -76.640625, 57.326521 ], [ -76.640625, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -78.046875, 58.077876 ], [ -78.046875, 58.447733 ], [ -78.750000, 58.447733 ], [ -78.750000, 58.813742 ], [ -78.046875, 58.813742 ], [ -78.046875, 59.534318 ], [ -77.343750, 59.534318 ], [ -77.343750, 60.239811 ], [ -78.046875, 60.239811 ], [ -78.046875, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.938950 ] ] ], [ [ [ -79.453125, 62.267923 ], [ -79.453125, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 62.267923 ], [ -79.453125, 62.267923 ] ] ], [ [ [ -66.796875, 69.411242 ], [ -66.796875, 68.911005 ], [ -68.203125, 68.911005 ], [ -68.203125, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.875541 ], [ -64.687500, 67.875541 ], [ -64.687500, 67.609221 ], [ -63.984375, 67.609221 ], [ -63.984375, 67.067433 ], [ -63.281250, 67.067433 ], [ -63.281250, 66.791909 ], [ -61.875000, 66.791909 ], [ -61.875000, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.658275 ], [ -63.281250, 65.658275 ], [ -63.281250, 65.072130 ], [ -65.390625, 65.072130 ], [ -65.390625, 65.658275 ], [ -66.093750, 65.658275 ], [ -66.093750, 66.231457 ], [ -68.203125, 66.231457 ], [ -68.203125, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.072130 ], [ -66.796875, 65.072130 ], [ -66.796875, 64.774125 ], [ -65.390625, 64.774125 ], [ -65.390625, 63.860036 ], [ -64.687500, 63.860036 ], [ -64.687500, 62.593341 ], [ -66.093750, 62.593341 ], [ -66.093750, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.233627 ], [ -68.203125, 63.233627 ], [ -68.203125, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.267923 ], [ -66.093750, 62.267923 ], [ -66.093750, 61.938950 ], [ -68.203125, 61.938950 ], [ -68.203125, 62.267923 ], [ -69.609375, 62.267923 ], [ -69.609375, 62.593341 ], [ -71.015625, 62.593341 ], [ -71.015625, 62.915233 ], [ -71.718750, 62.915233 ], [ -71.718750, 63.233627 ], [ -72.421875, 63.233627 ], [ -72.421875, 63.860036 ], [ -73.125000, 63.860036 ], [ -73.125000, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.472794 ], [ -75.937500, 64.472794 ], [ -75.937500, 64.168107 ], [ -78.750000, 64.168107 ], [ -78.750000, 64.774125 ], [ -78.046875, 64.774125 ], [ -78.046875, 65.366837 ], [ -73.828125, 65.366837 ], [ -73.828125, 65.658275 ], [ -74.531250, 65.658275 ], [ -74.531250, 65.946472 ], [ -73.828125, 65.946472 ], [ -73.828125, 66.513260 ], [ -73.125000, 66.513260 ], [ -73.125000, 67.067433 ], [ -72.421875, 67.067433 ], [ -72.421875, 67.339861 ], [ -73.125000, 67.339861 ], [ -73.125000, 68.138852 ], [ -73.828125, 68.138852 ], [ -73.828125, 68.399180 ], [ -74.531250, 68.399180 ], [ -74.531250, 68.656555 ], [ -75.937500, 68.656555 ], [ -75.937500, 69.162558 ], [ -66.796875, 69.411242 ] ] ], [ [ [ -81.562500, 62.915233 ], [ -81.562500, 62.267923 ], [ -83.671875, 62.267923 ], [ -83.671875, 62.593341 ], [ -82.968750, 62.593341 ], [ -82.968750, 62.915233 ], [ -81.562500, 62.915233 ] ] ], [ [ [ -85.078125, 65.658275 ], [ -85.078125, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 63.860036 ], [ -80.156250, 63.860036 ], [ -80.156250, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.860036 ], [ -83.671875, 63.860036 ], [ -83.671875, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 62.915233 ], [ -85.781250, 62.915233 ], [ -85.781250, 65.658275 ], [ -85.078125, 65.658275 ] ] ], [ [ [ -82.265625, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 68.399180 ], [ -82.265625, 68.399180 ], [ -82.265625, 67.875541 ], [ -81.562500, 67.875541 ], [ -81.562500, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.513260 ], [ -83.671875, 66.513260 ], [ -83.671875, 66.231457 ], [ -85.781250, 66.231457 ], [ -85.781250, 69.411242 ], [ -82.265625, 69.411242 ], [ -82.265625, 69.162558 ] ] ], [ [ [ -75.234375, 68.138852 ], [ -75.234375, 67.067433 ], [ -76.640625, 67.067433 ], [ -76.640625, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.875541 ], [ -76.640625, 67.875541 ], [ -76.640625, 68.138852 ], [ -75.234375, 68.138852 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.875000, 46.073231 ], [ -61.171875, 46.073231 ], [ -61.171875, 46.558860 ], [ -60.468750, 46.558860 ], [ -60.468750, 46.073231 ], [ -59.765625, 46.073231 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.590467 ], [ -63.281250, 44.590467 ], [ -63.281250, 44.087585 ], [ -63.984375, 44.087585 ], [ -63.984375, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.590467 ], [ -64.687500, 44.590467 ], [ -64.687500, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 46.558860 ], [ -70.312500, 46.558860 ], [ -70.312500, 45.089036 ], [ -74.531250, 45.089036 ], [ -74.531250, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.580391 ], [ -79.453125, 43.580391 ], [ -79.453125, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.553080 ], [ -80.156250, 42.553080 ], [ -80.156250, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 41.508577 ], [ -82.968750, 41.508577 ], [ -82.968750, 42.553080 ], [ -82.265625, 42.553080 ], [ -82.265625, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 46.558860 ], [ -85.078125, 46.558860 ], [ -85.078125, 47.040182 ], [ -85.781250, 55.379110 ], [ -83.671875, 55.379110 ], [ -83.671875, 54.977614 ], [ -82.265625, 54.977614 ], [ -82.265625, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 51.618017 ], [ -80.859375, 51.618017 ], [ -80.859375, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.453125, 53.330873 ], [ -79.453125, 54.162434 ], [ -80.156250, 54.162434 ], [ -80.156250, 54.572062 ], [ -78.750000, 54.572062 ], [ -78.750000, 54.977614 ], [ -78.046875, 54.977614 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 57.326521 ], [ -61.875000, 57.326521 ], [ -61.875000, 56.944974 ], [ -61.171875, 56.944974 ], [ -61.171875, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.379110 ], [ -59.062500, 55.379110 ], [ -59.062500, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.330873 ], [ -55.546875, 53.330873 ], [ -55.546875, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 51.179343 ], [ -59.062500, 51.179343 ], [ -59.062500, 50.736455 ], [ -59.765625, 50.736455 ], [ -59.765625, 50.289339 ], [ -66.093750, 50.289339 ], [ -66.093750, 49.837982 ], [ -66.796875, 49.837982 ], [ -66.796875, 49.382373 ], [ -67.500000, 49.382373 ], [ -67.500000, 48.922499 ], [ -63.984375, 48.922499 ], [ -63.984375, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.390625, 47.989922 ], [ -65.390625, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 45.583290 ], [ -61.875000, 45.583290 ], [ -61.875000, 46.073231 ] ], [ [ -67.500000, 48.922499 ], [ -68.203125, 48.922499 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.922499 ] ] ], [ [ [ -55.546875, 51.179343 ], [ -55.546875, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.289339 ], [ -56.953125, 50.289339 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.437500, 49.382373 ], [ -53.437500, 47.989922 ], [ -52.734375, 47.989922 ], [ -52.734375, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -55.546875, 47.040182 ], [ -55.546875, 47.517201 ], [ -59.765625, 47.517201 ], [ -59.765625, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 48.458352 ], [ -58.359375, 48.458352 ], [ -58.359375, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 51.179343 ], [ -55.546875, 51.179343 ] ] ], [ [ [ -62.578125, 49.837982 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 48.922499 ], [ -63.281250, 48.922499 ], [ -63.281250, 49.382373 ], [ -64.687500, 49.382373 ], [ -64.687500, 49.837982 ], [ -62.578125, 49.837982 ] ] ], [ [ [ -61.875000, 46.073231 ], [ -63.984375, 46.073231 ], [ -63.984375, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.073231 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.875000, 46.073231 ], [ -61.171875, 46.073231 ], [ -61.171875, 46.558860 ], [ -60.468750, 46.558860 ], [ -60.468750, 46.073231 ], [ -59.765625, 46.073231 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.590467 ], [ -63.281250, 44.590467 ], [ -63.281250, 44.087585 ], [ -63.984375, 44.087585 ], [ -63.984375, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.590467 ], [ -64.687500, 44.590467 ], [ -64.687500, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 46.558860 ], [ -70.312500, 46.558860 ], [ -70.312500, 45.089036 ], [ -74.531250, 45.089036 ], [ -74.531250, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.580391 ], [ -79.453125, 43.580391 ], [ -79.453125, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.553080 ], [ -80.156250, 42.553080 ], [ -80.156250, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 41.508577 ], [ -82.968750, 41.508577 ], [ -82.968750, 42.553080 ], [ -82.265625, 42.553080 ], [ -82.265625, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 46.558860 ], [ -85.078125, 46.558860 ], [ -85.078125, 47.040182 ], [ -85.781250, 55.379110 ], [ -83.671875, 55.379110 ], [ -83.671875, 54.977614 ], [ -82.265625, 54.977614 ], [ -82.265625, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 51.618017 ], [ -80.859375, 51.618017 ], [ -80.859375, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.453125, 53.330873 ], [ -79.453125, 54.162434 ], [ -80.156250, 54.162434 ], [ -80.156250, 54.572062 ], [ -78.750000, 54.572062 ], [ -78.750000, 54.977614 ], [ -78.046875, 54.977614 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 57.326521 ], [ -61.875000, 57.326521 ], [ -61.875000, 56.944974 ], [ -61.171875, 56.944974 ], [ -61.171875, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.379110 ], [ -59.062500, 55.379110 ], [ -59.062500, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.330873 ], [ -55.546875, 53.330873 ], [ -55.546875, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 51.179343 ], [ -59.062500, 51.179343 ], [ -59.062500, 50.736455 ], [ -59.765625, 50.736455 ], [ -59.765625, 50.289339 ], [ -66.093750, 50.289339 ], [ -66.093750, 49.837982 ], [ -66.796875, 49.837982 ], [ -66.796875, 49.382373 ], [ -67.500000, 49.382373 ], [ -67.500000, 48.922499 ], [ -63.984375, 48.922499 ], [ -63.984375, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.390625, 47.989922 ], [ -65.390625, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 45.583290 ], [ -61.875000, 45.583290 ], [ -61.875000, 46.073231 ] ], [ [ -67.500000, 48.922499 ], [ -68.203125, 48.922499 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.922499 ] ] ], [ [ [ -55.546875, 51.179343 ], [ -55.546875, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.289339 ], [ -56.953125, 50.289339 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.437500, 49.382373 ], [ -53.437500, 47.989922 ], [ -52.734375, 47.989922 ], [ -52.734375, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -55.546875, 47.040182 ], [ -55.546875, 47.517201 ], [ -59.765625, 47.517201 ], [ -59.765625, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 48.458352 ], [ -58.359375, 48.458352 ], [ -58.359375, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 51.179343 ], [ -55.546875, 51.179343 ] ] ], [ [ [ -62.578125, 49.837982 ], [ -62.578125, 49.382373 ], [ -61.875000, 48.922499 ], [ -63.281250, 48.922499 ], [ -63.281250, 49.382373 ], [ -64.687500, 49.382373 ], [ -64.687500, 49.837982 ], [ -62.578125, 49.837982 ] ] ], [ [ [ -61.875000, 46.073231 ], [ -63.984375, 46.073231 ], [ -63.984375, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.073231 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.390625, 19.973349 ], [ -155.390625, 18.646245 ], [ -156.093750, 18.646245 ], [ -156.093750, 19.973349 ], [ -155.390625, 19.973349 ] ] ], [ [ [ -123.750000, 44.087585 ], [ -123.750000, 39.909736 ], [ -124.453125, 39.909736 ], [ -124.453125, 44.087585 ], [ -123.750000, 44.087585 ] ] ], [ [ [ -123.750000, 47.040182 ], [ -124.453125, 47.040182 ], [ -124.453125, 47.989922 ], [ -123.750000, 47.989922 ], [ -123.750000, 47.040182 ] ] ], [ [ [ -153.984375, 57.704147 ], [ -155.390625, 57.704147 ], [ -155.390625, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 55.776573 ], [ -158.906250, 55.776573 ], [ -158.906250, 55.379110 ], [ -161.015625, 55.379110 ], [ -161.015625, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.572062 ], [ -163.828125, 54.572062 ], [ -163.828125, 54.977614 ], [ -163.125000, 54.977614 ], [ -163.125000, 55.379110 ], [ -161.718750, 55.379110 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.944974 ], [ -158.203125, 56.944974 ], [ -158.203125, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.447733 ], [ -160.312500, 58.447733 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -162.421875, 59.534318 ], [ -162.421875, 59.888937 ], [ -164.531250, 59.888937 ], [ -164.531250, 60.239811 ], [ -165.234375, 60.239811 ], [ -165.234375, 61.270233 ], [ -165.937500, 61.270233 ], [ -165.937500, 62.267923 ], [ -165.234375, 62.267923 ], [ -165.234375, 62.915233 ], [ -164.531250, 62.915233 ], [ -164.531250, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 62.915233 ], [ -163.125000, 62.915233 ], [ -163.125000, 63.233627 ], [ -162.421875, 63.233627 ], [ -162.421875, 63.548552 ], [ -161.015625, 63.548552 ], [ -161.015625, 64.168107 ], [ -161.718750, 64.168107 ], [ -161.718750, 64.472794 ], [ -166.640625, 64.472794 ], [ -166.640625, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -168.046875, 65.366837 ], [ -168.046875, 65.658275 ], [ -166.640625, 65.658275 ], [ -166.640625, 65.946472 ], [ -165.937500, 65.946472 ], [ -165.937500, 66.231457 ], [ -164.531250, 66.231457 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 65.946472 ], [ -162.421875, 65.946472 ], [ -162.421875, 66.231457 ], [ -161.718750, 66.231457 ], [ -161.718750, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 67.339861 ], [ -164.531250, 67.339861 ], [ -164.531250, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.138852 ], [ -166.640625, 68.138852 ], [ -166.640625, 68.656555 ], [ -165.937500, 68.656555 ], [ -165.937500, 68.911005 ], [ -163.828125, 68.911005 ], [ -163.828125, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.900118 ], [ -162.421875, 69.900118 ], [ -162.421875, 70.140364 ], [ -161.718750, 70.140364 ], [ -161.718750, 70.377854 ], [ -160.312500, 70.377854 ], [ -160.312500, 70.612614 ], [ -158.906250, 70.612614 ], [ -158.906250, 70.844673 ], [ -157.500000, 70.844673 ], [ -157.500000, 71.074056 ], [ -155.390625, 71.074056 ], [ -155.390625, 70.844673 ], [ -154.687500, 70.844673 ], [ -154.687500, 70.612614 ], [ -153.984375, 70.612614 ], [ -153.984375, 70.844673 ], [ -151.875000, 70.844673 ], [ -151.875000, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.140364 ], [ -145.546875, 70.140364 ], [ -145.546875, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.657086 ], [ -141.328125, 69.657086 ], [ -141.328125, 60.239811 ], [ -139.921875, 60.239811 ], [ -139.921875, 59.888937 ], [ -139.218750, 59.888937 ], [ -139.218750, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.813742 ], [ -137.109375, 58.813742 ], [ -137.109375, 59.175928 ], [ -136.406250, 59.175928 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.704147 ], [ -134.296875, 57.704147 ], [ -134.296875, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.447733 ], [ -138.515625, 58.447733 ], [ -138.515625, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.175928 ], [ -139.921875, 59.175928 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.888937 ], [ -142.031250, 59.888937 ], [ -142.031250, 60.239811 ], [ -142.734375, 60.239811 ], [ -142.734375, 59.888937 ], [ -144.843750, 59.888937 ], [ -144.843750, 60.239811 ], [ -146.250000, 60.239811 ], [ -146.250000, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.534318 ], [ -153.281250, 59.534318 ], [ -153.281250, 59.175928 ], [ -153.984375, 59.175928 ], [ -153.984375, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 57.704147 ] ], [ [ -151.171875, 60.586967 ], [ -151.875000, 60.586967 ], [ -151.875000, 60.239811 ], [ -151.171875, 60.239811 ], [ -151.171875, 60.586967 ] ], [ [ -151.171875, 60.930432 ], [ -151.171875, 60.586967 ], [ -150.468750, 60.586967 ], [ -150.468750, 60.930432 ], [ -151.171875, 60.930432 ] ], [ [ -161.718750, 64.774125 ], [ -161.718750, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.774125 ], [ -161.718750, 64.774125 ] ] ], [ [ [ -165.937500, 60.239811 ], [ -165.937500, 59.888937 ], [ -167.343750, 59.888937 ], [ -167.343750, 60.239811 ], [ -165.937500, 60.239811 ] ] ], [ [ [ -169.453125, 63.548552 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.233627 ], [ -170.859375, 63.233627 ], [ -171.562500, 63.548552 ], [ -169.453125, 63.548552 ] ] ], [ [ [ -132.187500, 56.559482 ], [ -131.484375, 56.559482 ], [ -131.484375, 56.170023 ], [ -130.781250, 56.170023 ], [ -130.781250, 55.776573 ], [ -130.078125, 55.776573 ], [ -130.078125, 54.977614 ], [ -130.781250, 54.977614 ], [ -130.781250, 55.379110 ], [ -132.187500, 55.379110 ], [ -132.187500, 56.559482 ] ] ], [ [ [ -153.984375, 57.704147 ], [ -153.281250, 57.704147 ], [ -153.281250, 58.077876 ], [ -152.578125, 58.077876 ], [ -152.578125, 57.704147 ], [ -151.875000, 57.704147 ], [ -151.875000, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 56.944974 ], [ -153.281250, 56.944974 ], [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ], [ -153.984375, 57.326521 ], [ -153.984375, 57.704147 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.390625, 19.973349 ], [ -155.390625, 18.646245 ], [ -156.093750, 18.646245 ], [ -156.093750, 19.973349 ], [ -155.390625, 19.973349 ] ] ], [ [ [ -123.750000, 44.087585 ], [ -123.750000, 39.909736 ], [ -124.453125, 39.909736 ], [ -124.453125, 44.087585 ], [ -123.750000, 44.087585 ] ] ], [ [ [ -123.750000, 47.040182 ], [ -124.453125, 47.040182 ], [ -124.453125, 47.989922 ], [ -123.750000, 47.989922 ], [ -123.750000, 47.040182 ] ] ], [ [ [ -153.984375, 57.704147 ], [ -155.390625, 57.704147 ], [ -155.390625, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 55.776573 ], [ -158.906250, 55.776573 ], [ -158.906250, 55.379110 ], [ -161.015625, 55.379110 ], [ -161.015625, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.572062 ], [ -163.828125, 54.572062 ], [ -163.828125, 54.977614 ], [ -163.125000, 54.977614 ], [ -163.125000, 55.379110 ], [ -161.718750, 55.379110 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.944974 ], [ -158.203125, 56.944974 ], [ -158.203125, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.447733 ], [ -160.312500, 58.447733 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -162.421875, 59.534318 ], [ -162.421875, 59.888937 ], [ -164.531250, 59.888937 ], [ -164.531250, 60.239811 ], [ -165.234375, 60.239811 ], [ -165.234375, 61.270233 ], [ -165.937500, 61.270233 ], [ -165.937500, 62.267923 ], [ -165.234375, 62.267923 ], [ -165.234375, 62.915233 ], [ -164.531250, 62.915233 ], [ -164.531250, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 62.915233 ], [ -163.125000, 62.915233 ], [ -163.125000, 63.233627 ], [ -162.421875, 63.233627 ], [ -162.421875, 63.548552 ], [ -161.015625, 63.548552 ], [ -161.015625, 64.168107 ], [ -161.718750, 64.168107 ], [ -161.718750, 64.472794 ], [ -166.640625, 64.472794 ], [ -166.640625, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -168.046875, 65.366837 ], [ -168.046875, 65.658275 ], [ -166.640625, 65.658275 ], [ -166.640625, 65.946472 ], [ -165.937500, 65.946472 ], [ -165.937500, 66.231457 ], [ -164.531250, 66.231457 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 65.946472 ], [ -162.421875, 65.946472 ], [ -162.421875, 66.231457 ], [ -161.718750, 66.231457 ], [ -161.718750, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 67.339861 ], [ -164.531250, 67.339861 ], [ -164.531250, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.138852 ], [ -166.640625, 68.138852 ], [ -166.640625, 68.656555 ], [ -165.937500, 68.656555 ], [ -165.937500, 68.911005 ], [ -163.828125, 68.911005 ], [ -163.828125, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.900118 ], [ -162.421875, 69.900118 ], [ -162.421875, 70.140364 ], [ -161.718750, 70.140364 ], [ -161.718750, 70.377854 ], [ -160.312500, 70.377854 ], [ -160.312500, 70.612614 ], [ -158.906250, 70.612614 ], [ -158.906250, 70.844673 ], [ -157.500000, 70.844673 ], [ -157.500000, 71.074056 ], [ -155.390625, 71.074056 ], [ -155.390625, 70.844673 ], [ -154.687500, 70.844673 ], [ -154.687500, 70.612614 ], [ -153.984375, 70.612614 ], [ -153.984375, 70.844673 ], [ -151.875000, 70.844673 ], [ -151.875000, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.140364 ], [ -145.546875, 70.140364 ], [ -145.546875, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.657086 ], [ -141.328125, 69.657086 ], [ -141.328125, 60.239811 ], [ -139.921875, 60.239811 ], [ -139.921875, 59.888937 ], [ -139.218750, 59.888937 ], [ -139.218750, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.813742 ], [ -137.109375, 58.813742 ], [ -137.109375, 59.175928 ], [ -136.406250, 59.175928 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.704147 ], [ -134.296875, 57.704147 ], [ -134.296875, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.447733 ], [ -138.515625, 58.447733 ], [ -138.515625, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.175928 ], [ -139.921875, 59.175928 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.888937 ], [ -142.031250, 59.888937 ], [ -142.031250, 60.239811 ], [ -142.734375, 60.239811 ], [ -142.734375, 59.888937 ], [ -144.843750, 59.888937 ], [ -144.843750, 60.239811 ], [ -146.250000, 60.239811 ], [ -146.250000, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.534318 ], [ -153.281250, 59.534318 ], [ -153.281250, 59.175928 ], [ -153.984375, 59.175928 ], [ -153.984375, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 57.704147 ] ], [ [ -151.171875, 60.586967 ], [ -151.875000, 60.586967 ], [ -151.875000, 60.239811 ], [ -151.171875, 60.239811 ], [ -151.171875, 60.586967 ] ], [ [ -151.171875, 60.930432 ], [ -151.171875, 60.586967 ], [ -150.468750, 60.586967 ], [ -150.468750, 60.930432 ], [ -151.171875, 60.930432 ] ], [ [ -161.718750, 64.774125 ], [ -161.718750, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.774125 ], [ -161.718750, 64.774125 ] ] ], [ [ [ -166.640625, 60.239811 ], [ -165.937500, 59.888937 ], [ -167.343750, 59.888937 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.239811 ] ] ], [ [ [ -169.453125, 63.548552 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.233627 ], [ -171.562500, 63.548552 ], [ -169.453125, 63.548552 ] ] ], [ [ [ -132.187500, 56.559482 ], [ -131.484375, 56.559482 ], [ -131.484375, 56.170023 ], [ -130.781250, 56.170023 ], [ -130.781250, 55.776573 ], [ -130.078125, 55.776573 ], [ -130.078125, 54.977614 ], [ -130.781250, 54.977614 ], [ -130.781250, 55.379110 ], [ -132.187500, 55.379110 ], [ -132.187500, 56.559482 ] ] ], [ [ [ -153.984375, 57.704147 ], [ -153.281250, 57.704147 ], [ -153.281250, 58.077876 ], [ -152.578125, 58.077876 ], [ -152.578125, 57.704147 ], [ -151.875000, 57.704147 ], [ -151.875000, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 56.944974 ], [ -153.281250, 56.944974 ], [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ], [ -153.984375, 57.326521 ], [ -153.984375, 57.704147 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.921875, 48.922499 ], [ -94.921875, 48.458352 ], [ -92.812500, 48.458352 ], [ -92.812500, 47.989922 ], [ -87.187500, 47.989922 ], [ -87.187500, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.558860 ], [ -84.375000, 46.558860 ], [ -84.375000, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 45.583290 ], [ -82.265625, 45.583290 ], [ -82.265625, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 41.508577 ], [ -81.562500, 41.508577 ], [ -81.562500, 42.032974 ], [ -80.156250, 42.032974 ], [ -80.156250, 42.553080 ], [ -78.750000, 42.553080 ], [ -78.750000, 43.068888 ], [ -79.453125, 43.068888 ], [ -79.453125, 43.580391 ], [ -76.640625, 43.580391 ], [ -76.640625, 44.087585 ], [ -75.234375, 44.087585 ], [ -75.234375, 44.590467 ], [ -74.531250, 44.590467 ], [ -74.531250, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 46.558860 ], [ -69.609375, 46.558860 ], [ -69.609375, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 45.089036 ], [ -66.796875, 45.089036 ], [ -66.796875, 44.087585 ], [ -68.906250, 44.087585 ], [ -68.906250, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.068888 ], [ -71.015625, 43.068888 ], [ -71.015625, 42.032974 ], [ -69.609375, 42.032974 ], [ -69.609375, 41.508577 ], [ -72.421875, 41.508577 ], [ -72.421875, 40.979898 ], [ -71.718750, 40.979898 ], [ -71.718750, 40.446947 ], [ -73.828125, 40.446947 ], [ -73.828125, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 38.822591 ], [ -76.640625, 38.822591 ], [ -76.640625, 37.160317 ], [ -75.937500, 37.160317 ], [ -75.937500, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.307144 ], [ -77.343750, 34.307144 ], [ -77.343750, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.137551 ], [ -79.453125, 33.137551 ], [ -79.453125, 32.546813 ], [ -80.156250, 32.546813 ], [ -80.156250, 31.952162 ], [ -80.859375, 31.952162 ], [ -80.859375, 31.353637 ], [ -81.562500, 31.353637 ], [ -81.562500, 29.535230 ], [ -80.859375, 29.535230 ], [ -80.859375, 27.683528 ], [ -80.156250, 27.683528 ], [ -80.156250, 25.165173 ], [ -81.562500, 25.165173 ], [ -81.562500, 25.799891 ], [ -82.265625, 25.799891 ], [ -82.265625, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 30.145127 ], [ -84.375000, 30.145127 ], [ -84.375000, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.145127 ], [ -89.296875, 30.145127 ], [ -89.296875, 28.921631 ], [ -91.406250, 28.921631 ], [ -91.406250, 29.535230 ], [ -94.921875, 29.535230 ], [ -94.921875, 28.921631 ], [ -95.625000, 28.921631 ], [ -95.625000, 28.304381 ], [ -96.328125, 28.304381 ], [ -96.328125, 27.683528 ], [ -97.031250, 27.683528 ], [ -97.031250, 25.799891 ], [ -99.140625, 25.799891 ], [ -99.140625, 27.059126 ], [ -99.843750, 27.059126 ], [ -99.843750, 28.304381 ], [ -100.546875, 28.304381 ], [ -100.546875, 28.921631 ], [ -101.250000, 28.921631 ], [ -101.250000, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 28.921631 ], [ -104.062500, 28.921631 ], [ -104.062500, 29.535230 ], [ -104.765625, 29.535230 ], [ -104.765625, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 31.353637 ], [ -112.500000, 31.353637 ], [ -112.500000, 31.952162 ], [ -114.609375, 31.952162 ], [ -114.609375, 32.546813 ], [ -117.421875, 32.546813 ], [ -117.421875, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 33.724340 ], [ -118.828125, 33.724340 ], [ -118.828125, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -121.640625, 35.460670 ], [ -121.640625, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.718590 ], [ -123.046875, 37.718590 ], [ -123.046875, 38.272689 ], [ -123.750000, 38.272689 ], [ -123.750000, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.343750, 47.517201 ], [ -122.343750, 48.458352 ], [ -123.046875, 48.458352 ], [ -123.046875, 48.922499 ], [ -94.921875, 48.922499 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.609375, 32.546813 ], [ -114.609375, 31.952162 ], [ -112.500000, 31.952162 ], [ -112.500000, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.952162 ], [ -106.171875, 31.952162 ], [ -106.171875, 31.353637 ], [ -105.468750, 31.353637 ], [ -105.468750, 30.751278 ], [ -104.765625, 30.751278 ], [ -104.765625, 29.535230 ], [ -104.062500, 29.535230 ], [ -104.062500, 28.921631 ], [ -102.656250, 28.921631 ], [ -102.656250, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 27.059126 ], [ -99.140625, 27.059126 ], [ -99.140625, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 25.165173 ], [ -97.734375, 25.165173 ], [ -97.734375, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.973349 ], [ -96.328125, 19.973349 ], [ -96.328125, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 17.978733 ], [ -93.515625, 17.978733 ], [ -93.515625, 18.646245 ], [ -90.703125, 18.646245 ], [ -90.703125, 20.632784 ], [ -90.000000, 20.632784 ], [ -90.000000, 21.289374 ], [ -86.484375, 21.289374 ], [ -86.484375, 20.632784 ], [ -87.187500, 20.632784 ], [ -87.187500, 19.973349 ], [ -87.890625, 19.973349 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 17.978733 ], [ -90.703125, 17.978733 ], [ -90.703125, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 15.961329 ], [ -91.406250, 15.961329 ], [ -91.406250, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 14.604847 ], [ -93.515625, 14.604847 ], [ -93.515625, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 15.961329 ], [ -99.140625, 15.961329 ], [ -99.140625, 16.636192 ], [ -100.546875, 16.636192 ], [ -100.546875, 17.308688 ], [ -101.953125, 17.308688 ], [ -101.953125, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 18.646245 ], [ -104.765625, 18.646245 ], [ -104.765625, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 23.241346 ], [ -106.875000, 23.241346 ], [ -106.875000, 23.885838 ], [ -107.578125, 23.885838 ], [ -107.578125, 24.527135 ], [ -108.281250, 24.527135 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 26.431228 ], [ -110.390625, 26.431228 ], [ -110.390625, 27.683528 ], [ -111.796875, 27.683528 ], [ -111.796875, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 30.145127 ], [ -113.203125, 30.145127 ], [ -113.203125, 31.353637 ], [ -114.609375, 31.353637 ], [ -114.609375, 29.535230 ], [ -116.015625, 29.535230 ], [ -116.015625, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.952162 ], [ -117.421875, 31.952162 ], [ -117.421875, 32.546813 ], [ -114.609375, 32.546813 ] ] ], [ [ [ -112.500000, 26.431228 ], [ -111.796875, 26.431228 ], [ -111.796875, 25.799891 ], [ -111.093750, 25.799891 ], [ -111.093750, 24.527135 ], [ -110.390625, 24.527135 ], [ -110.390625, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 22.593726 ], [ -110.390625, 22.593726 ], [ -110.390625, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 23.885838 ], [ -111.796875, 23.885838 ], [ -111.796875, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 26.431228 ] ] ], [ [ [ -112.500000, 26.431228 ], [ -113.906250, 26.431228 ], [ -113.906250, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 27.683528 ], [ -113.906250, 27.683528 ], [ -113.906250, 28.921631 ], [ -113.203125, 28.921631 ], [ -113.203125, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 15.961329 ], [ -87.890625, 15.961329 ], [ -87.890625, 15.284185 ], [ -89.296875, 15.284185 ], [ -89.296875, 13.923404 ], [ -92.109375, 13.923404 ], [ -92.109375, 15.284185 ], [ -91.406250, 15.284185 ], [ -91.406250, 15.961329 ], [ -90.703125, 15.961329 ], [ -90.703125, 16.636192 ], [ -91.406250, 16.636192 ], [ -91.406250, 17.308688 ], [ -90.703125, 17.308688 ], [ -90.703125, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 15.961329 ], [ -87.890625, 15.961329 ], [ -87.890625, 15.284185 ], [ -88.593750, 15.284185 ], [ -89.296875, 13.923404 ], [ -92.109375, 13.923404 ], [ -92.109375, 15.284185 ], [ -91.406250, 15.284185 ], [ -91.406250, 15.961329 ], [ -90.703125, 15.961329 ], [ -90.703125, 16.636192 ], [ -91.406250, 16.636192 ], [ -91.406250, 17.308688 ], [ -90.703125, 17.308688 ], [ -90.703125, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -23.203125, 72.181804 ], [ -23.203125, 71.965388 ], [ -22.500000, 71.965388 ], [ -22.500000, 71.524909 ], [ -21.796875, 71.524909 ], [ -21.796875, 70.377854 ], [ -23.906250, 70.377854 ], [ -23.906250, 70.612614 ], [ -24.609375, 70.612614 ], [ -24.609375, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.377854 ], [ -26.015625, 70.377854 ], [ -26.015625, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 68.911005 ], [ -26.015625, 68.911005 ], [ -26.015625, 68.656555 ], [ -26.718750, 68.656555 ], [ -26.718750, 68.399180 ], [ -28.828125, 68.399180 ], [ -28.828125, 68.138852 ], [ -31.640625, 68.138852 ], [ -31.640625, 67.875541 ], [ -32.343750, 67.875541 ], [ -32.343750, 67.609221 ], [ -33.046875, 67.609221 ], [ -33.046875, 67.339861 ], [ -33.750000, 67.339861 ], [ -33.750000, 66.791909 ], [ -34.453125, 66.791909 ], [ -34.453125, 66.513260 ], [ -35.156250, 66.513260 ], [ -35.156250, 66.231457 ], [ -35.859375, 66.231457 ], [ -35.859375, 65.946472 ], [ -37.265625, 65.946472 ], [ -37.265625, 65.658275 ], [ -38.671875, 65.658275 ], [ -38.671875, 65.366837 ], [ -40.078125, 65.366837 ], [ -40.078125, 65.072130 ], [ -40.781250, 65.072130 ], [ -40.781250, 63.860036 ], [ -41.484375, 63.860036 ], [ -41.484375, 63.233627 ], [ -42.187500, 63.233627 ], [ -42.187500, 62.593341 ], [ -42.890625, 62.593341 ], [ -42.890625, 62.267923 ], [ -42.187500, 62.267923 ], [ -42.187500, 61.270233 ], [ -42.890625, 61.270233 ], [ -42.890625, 60.586967 ], [ -43.593750, 60.586967 ], [ -43.593750, 59.888937 ], [ -45.703125, 59.888937 ], [ -45.703125, 60.586967 ], [ -46.406250, 60.586967 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 61.606396 ], [ -49.921875, 61.606396 ], [ -49.921875, 62.593341 ], [ -50.625000, 62.593341 ], [ -50.625000, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.860036 ], [ -52.031250, 63.860036 ], [ -52.031250, 65.366837 ], [ -52.734375, 65.366837 ], [ -52.734375, 65.946472 ], [ -53.437500, 65.946472 ], [ -53.437500, 66.791909 ], [ -54.140625, 66.791909 ], [ -54.140625, 67.339861 ], [ -53.437500, 67.339861 ], [ -53.437500, 67.875541 ], [ -52.734375, 67.875541 ], [ -52.734375, 68.399180 ], [ -51.328125, 68.399180 ], [ -51.328125, 69.411242 ], [ -50.625000, 69.411242 ], [ -50.625000, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.162558 ], [ -54.140625, 69.162558 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.411242 ], [ -54.843750, 70.612614 ], [ -54.140625, 70.612614 ], [ -54.140625, 70.844673 ], [ -52.734375, 70.844673 ], [ -52.734375, 71.074056 ], [ -53.437500, 71.074056 ], [ -53.437500, 71.300793 ], [ -54.843750, 71.300793 ], [ -54.843750, 71.524909 ], [ -55.546875, 71.524909 ], [ -55.546875, 72.181804 ], [ -54.843750, 72.181804 ], [ -54.843750, 72.816074 ], [ -55.546875, 72.816074 ], [ -55.546875, 73.226700 ], [ -56.250000, 73.226700 ], [ -56.250000, 73.824820 ], [ -56.953125, 73.824820 ], [ -56.953125, 74.402163 ], [ -57.656250, 74.402163 ], [ -57.656250, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.497157 ], [ -59.062500, 75.497157 ], [ -59.062500, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.184995 ], [ -66.796875, 76.184995 ], [ -66.796875, 76.016094 ], [ -68.906250, 76.016094 ], [ -68.906250, 76.184995 ], [ -69.609375, 76.184995 ], [ -69.609375, 76.351896 ], [ -70.312500, 76.351896 ], [ -70.312500, 76.679785 ], [ -71.015625, 76.679785 ], [ -71.015625, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 76.999935 ], [ -70.312500, 76.999935 ], [ -70.312500, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.312520 ], [ -68.203125, 77.312520 ], [ -68.203125, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.617709 ], [ -71.718750, 77.617709 ], [ -71.718750, 77.767582 ], [ -72.421875, 77.767582 ], [ -72.421875, 77.915669 ], [ -73.125000, 77.915669 ], [ -73.125000, 78.490552 ], [ -72.421875, 78.490552 ], [ -72.421875, 78.630006 ], [ -71.015625, 78.630006 ], [ -71.015625, 78.767792 ], [ -69.609375, 78.767792 ], [ -69.609375, 78.903929 ], [ -68.906250, 78.903929 ], [ -68.906250, 79.038437 ], [ -67.500000, 79.038437 ], [ -67.500000, 79.171335 ], [ -66.796875, 79.171335 ], [ -66.796875, 79.302640 ], [ -65.390625, 79.302640 ], [ -65.390625, 79.812302 ], [ -66.796875, 79.812302 ], [ -66.796875, 79.935918 ], [ -68.203125, 79.935918 ], [ -68.203125, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.647035 ], [ -66.093750, 80.647035 ], [ -66.093750, 80.872827 ], [ -65.390625, 80.872827 ], [ -65.390625, 80.983688 ], [ -64.687500, 80.983688 ], [ -64.687500, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.201420 ], [ -62.578125, 81.201420 ], [ -62.578125, 81.723188 ], [ -61.875000, 81.723188 ], [ -61.875000, 81.823794 ], [ -61.171875, 81.823794 ], [ -61.171875, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.021378 ], [ -59.062500, 82.021378 ], [ -59.062500, 82.118384 ], [ -57.656250, 82.118384 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.118384 ], [ -51.328125, 82.118384 ], [ -51.328125, 82.308893 ], [ -49.921875, 82.308893 ], [ -49.921875, 82.214217 ], [ -49.218750, 82.214217 ], [ -49.218750, 82.118384 ], [ -48.515625, 82.118384 ], [ -48.515625, 82.021378 ], [ -46.406250, 82.021378 ], [ -46.406250, 82.118384 ], [ -47.109375, 82.118384 ], [ -47.109375, 82.586106 ], [ -46.406250, 82.586106 ], [ -46.406250, 82.765373 ], [ -45.703125, 82.765373 ], [ -45.703125, 82.853382 ], [ -45.000000, 82.853382 ], [ -45.000000, 82.940327 ], [ -44.296875, 82.940327 ], [ -44.296875, 83.111071 ], [ -43.593750, 83.111071 ], [ -43.593750, 83.194896 ], [ -40.078125, 83.194896 ], [ -40.078125, 83.277705 ], [ -39.375000, 83.277705 ], [ -39.375000, 83.440326 ], [ -38.671875, 83.440326 ], [ -38.671875, 83.520162 ], [ -37.265625, 83.520162 ], [ -37.265625, 83.599031 ], [ -35.859375, 83.599031 ], [ -35.859375, 83.676943 ], [ -33.750000, 83.676943 ], [ -33.750000, 83.599031 ], [ -29.531250, 83.599031 ], [ -29.531250, 83.520162 ], [ -27.421875, 83.520162 ], [ -27.421875, 83.440326 ], [ -26.718750, 83.440326 ], [ -26.718750, 83.359511 ], [ -26.015625, 83.359511 ], [ -26.015625, 83.277705 ], [ -25.312500, 83.277705 ], [ -25.312500, 83.194896 ], [ -24.609375, 83.194896 ], [ -24.609375, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.586106 ], [ -21.796875, 82.586106 ], [ -21.796875, 82.402423 ], [ -22.500000, 82.402423 ], [ -22.500000, 82.308893 ], [ -28.828125, 82.308893 ], [ -28.828125, 82.214217 ], [ -31.640625, 82.214217 ], [ -31.640625, 82.021378 ], [ -29.531250, 82.021378 ], [ -29.531250, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.923186 ], [ -25.312500, 81.923186 ], [ -25.312500, 81.823794 ], [ -23.906250, 81.823794 ], [ -23.906250, 82.021378 ], [ -22.500000, 82.021378 ], [ -22.500000, 81.823794 ], [ -21.796875, 81.823794 ], [ -21.796875, 81.518272 ], [ -22.500000, 81.518272 ], [ -22.500000, 81.308321 ], [ -21.093750, 81.308321 ], [ -21.093750, 81.413933 ], [ -20.390625, 81.413933 ], [ -20.390625, 81.518272 ], [ -19.687500, 81.518272 ], [ -19.687500, 81.621352 ], [ -18.281250, 81.621352 ], [ -18.281250, 81.723188 ], [ -16.875000, 81.723188 ], [ -16.875000, 81.823794 ], [ -14.062500, 81.823794 ], [ -14.062500, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.518272 ], [ -11.953125, 81.518272 ], [ -11.953125, 81.201420 ], [ -12.656250, 81.201420 ], [ -12.656250, 81.093214 ], [ -13.359375, 81.093214 ], [ -13.359375, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.760615 ], [ -14.765625, 80.760615 ], [ -14.765625, 80.647035 ], [ -15.468750, 80.647035 ], [ -15.468750, 80.532071 ], [ -16.171875, 80.532071 ], [ -16.171875, 80.415707 ], [ -16.875000, 80.415707 ], [ -16.875000, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.178713 ], [ -17.578125, 80.178713 ], [ -17.578125, 79.935918 ], [ -18.281250, 79.935918 ], [ -18.281250, 79.560546 ], [ -18.984375, 79.560546 ], [ -18.984375, 79.038437 ], [ -19.687500, 79.038437 ], [ -19.687500, 77.466028 ], [ -18.984375, 77.466028 ], [ -18.984375, 77.157163 ], [ -18.281250, 77.157163 ], [ -18.281250, 76.999935 ], [ -19.687500, 76.999935 ], [ -19.687500, 76.840816 ], [ -21.093750, 76.840816 ], [ -21.093750, 76.679785 ], [ -21.796875, 76.679785 ], [ -21.796875, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.351896 ], [ -20.390625, 76.351896 ], [ -20.390625, 76.016094 ], [ -19.687500, 76.016094 ], [ -19.687500, 75.140778 ], [ -20.390625, 75.140778 ], [ -20.390625, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.211983 ], [ -21.796875, 74.211983 ], [ -21.796875, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.627789 ], [ -21.093750, 73.627789 ], [ -21.093750, 73.226700 ], [ -23.906250, 73.226700 ], [ -23.906250, 73.022592 ], [ -23.203125, 73.022592 ], [ -23.203125, 72.607120 ], [ -22.500000, 72.607120 ], [ -22.500000, 72.181804 ], [ -23.203125, 72.181804 ] ], [ [ -22.500000, 81.308321 ], [ -23.203125, 81.308321 ], [ -23.203125, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.308321 ] ], [ [ -52.734375, 70.844673 ], [ -52.734375, 70.612614 ], [ -52.031250, 70.612614 ], [ -52.031250, 70.844673 ], [ -52.734375, 70.844673 ] ], [ [ -23.203125, 72.181804 ], [ -23.203125, 72.395706 ], [ -24.609375, 72.395706 ], [ -24.609375, 72.181804 ], [ -23.203125, 72.181804 ] ] ] } } , @@ -426,7 +426,7 @@ , { "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.593750, 17.978733 ], [ -88.593750, 17.308688 ], [ -87.890625, 17.308688 ], [ -87.890625, 16.636192 ], [ -88.593750, 16.636192 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.593750, 17.978733 ] ] ], [ [ [ -87.890625, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 17.978733 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -90.000000, 13.239945 ], [ -90.000000, 13.923404 ], [ -87.890625, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 13.923404 ], [ -87.890625, 13.239945 ], [ -90.000000, 13.239945 ], [ -90.000000, 13.923404 ], [ -89.296875, 13.923404 ] ] ] } } , { "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.284185 ], [ -83.671875, 15.284185 ], [ -83.671875, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 13.923404 ], [ -86.484375, 13.923404 ], [ -86.484375, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -89.296875, 13.923404 ], [ -89.296875, 15.284185 ], [ -87.890625, 15.284185 ], [ -87.890625, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } , @@ -436,7 +436,7 @@ , { "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 11.178402 ], [ -84.375000, 10.487812 ], [ -83.671875, 10.487812 ], [ -83.671875, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -84.375000, 9.102097 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -84.375000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ], [ -80.859375, 7.013668 ], [ -80.859375, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -82.265625, 9.795678 ], [ -82.265625, 9.102097 ], [ -79.453125, 9.102097 ], [ -79.453125, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 9.102097 ], [ -78.046875, 9.102097 ], [ -78.046875, 8.407168 ] ] ], [ [ [ -78.046875, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.710992 ], [ -78.046875, 7.710992 ], [ -78.046875, 8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ], [ -80.859375, 7.013668 ], [ -80.859375, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -82.265625, 9.795678 ], [ -82.265625, 9.102097 ], [ -79.453125, 9.102097 ], [ -79.453125, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 9.102097 ], [ -78.046875, 9.102097 ], [ -78.046875, 8.407168 ] ] ], [ [ [ -78.046875, 8.407168 ], [ -77.343750, 7.710992 ], [ -78.046875, 7.710992 ], [ -78.046875, 8.407168 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.640625, 18.646245 ], [ -76.640625, 17.978733 ], [ -78.046875, 17.978733 ], [ -78.046875, 18.646245 ], [ -76.640625, 18.646245 ] ] ] } } , @@ -444,7 +444,7 @@ , { "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.906250, 18.646245 ], [ -69.609375, 18.646245 ], [ -69.609375, 17.978733 ], [ -71.015625, 17.978733 ], [ -71.015625, 17.308688 ], [ -71.718750, 17.308688 ], [ -71.718750, 19.973349 ], [ -71.015625, 19.973349 ], [ -71.015625, 19.311143 ], [ -68.906250, 19.311143 ], [ -68.906250, 18.646245 ] ] ], [ [ [ -68.906250, 18.646245 ], [ -68.203125, 18.646245 ], [ -68.203125, 17.978733 ], [ -68.906250, 17.978733 ], [ -68.906250, 18.646245 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -72.421875, 11.178402 ], [ -72.421875, 10.487812 ], [ -73.125000, 10.487812 ], [ -73.125000, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 6.315299 ], [ -67.500000, 6.315299 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -74.531250, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 9.795678 ], [ -75.234375, 9.795678 ], [ -75.234375, 11.178402 ], [ -72.421875, 11.178402 ] ] ], [ [ [ -71.718750, 11.178402 ], [ -72.421875, 11.178402 ], [ -72.421875, 11.867351 ], [ -71.718750, 11.867351 ], [ -71.718750, 11.178402 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -72.421875, 11.178402 ], [ -72.421875, 10.487812 ], [ -73.125000, 10.487812 ], [ -73.125000, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 6.315299 ], [ -67.500000, 6.315299 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 9.795678 ], [ -75.234375, 9.795678 ], [ -75.234375, 11.178402 ], [ -72.421875, 11.178402 ] ] ], [ [ [ -71.718750, 11.178402 ], [ -72.421875, 11.178402 ], [ -72.421875, 11.867351 ], [ -71.718750, 11.867351 ], [ -71.718750, 11.178402 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, 18.646245 ], [ -66.093750, 17.978733 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ] } } , @@ -454,9 +454,9 @@ , { "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 7.710992 ], [ -59.062500, 7.013668 ], [ -58.359375, 7.013668 ], [ -58.359375, 6.315299 ], [ -56.953125, 6.315299 ], [ -56.953125, 5.615986 ], [ -57.656250, 5.615986 ], [ -57.656250, 4.214943 ], [ -58.359375, 4.214943 ], [ -58.359375, 3.513421 ], [ -56.953125, 3.513421 ], [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 4.915833 ], [ -61.171875, 4.915833 ], [ -61.171875, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.710992 ], [ -59.062500, 7.710992 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 5.615986 ], [ -54.140625, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 3.513421 ], [ -58.359375, 3.513421 ], [ -58.359375, 4.214943 ], [ -57.656250, 4.214943 ], [ -57.656250, 5.615986 ], [ -54.140625, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 5.615986 ], [ -54.140625, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 3.513421 ], [ -58.359375, 3.513421 ], [ -57.656250, 5.615986 ], [ -54.140625, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.765625, 66.513260 ], [ -14.765625, 65.658275 ], [ -14.062500, 65.658275 ], [ -14.062500, 65.072130 ], [ -13.359375, 65.072130 ], [ -13.359375, 64.774125 ], [ -14.062500, 64.774125 ], [ -14.062500, 64.472794 ], [ -14.765625, 64.472794 ], [ -14.765625, 64.168107 ], [ -15.468750, 64.168107 ], [ -15.468750, 63.860036 ], [ -16.875000, 63.860036 ], [ -16.875000, 63.548552 ], [ -21.796875, 63.548552 ], [ -21.796875, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -21.796875, 64.168107 ], [ -21.796875, 64.472794 ], [ -23.203125, 64.472794 ], [ -23.203125, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 65.658275 ], [ -24.609375, 65.658275 ], [ -24.609375, 65.946472 ], [ -23.906250, 65.946472 ], [ -23.906250, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.513260 ], [ -21.796875, 66.513260 ], [ -21.796875, 66.231457 ], [ -21.093750, 66.231457 ], [ -21.093750, 65.658275 ], [ -19.687500, 65.658275 ], [ -19.687500, 65.946472 ], [ -16.875000, 65.946472 ], [ -16.875000, 66.231457 ], [ -16.171875, 66.231457 ], [ -16.171875, 66.513260 ], [ -14.765625, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.796875, 66.513260 ], [ -21.796875, 66.231457 ], [ -21.093750, 66.231457 ], [ -21.093750, 65.658275 ], [ -19.687500, 65.658275 ], [ -19.687500, 65.946472 ], [ -16.875000, 65.946472 ], [ -16.875000, 66.231457 ], [ -16.171875, 66.231457 ], [ -14.765625, 66.513260 ], [ -14.765625, 65.658275 ], [ -14.062500, 65.658275 ], [ -14.062500, 65.072130 ], [ -13.359375, 65.072130 ], [ -13.359375, 64.774125 ], [ -14.062500, 64.774125 ], [ -14.062500, 64.472794 ], [ -14.765625, 64.472794 ], [ -14.765625, 64.168107 ], [ -15.468750, 64.168107 ], [ -15.468750, 63.860036 ], [ -16.875000, 63.860036 ], [ -16.875000, 63.548552 ], [ -21.796875, 63.548552 ], [ -21.796875, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -21.796875, 64.168107 ], [ -21.796875, 64.472794 ], [ -23.203125, 64.472794 ], [ -23.203125, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 65.658275 ], [ -24.609375, 65.658275 ], [ -24.609375, 65.946472 ], [ -23.906250, 65.946472 ], [ -23.906250, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.513260 ], [ -21.796875, 66.513260 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.572062 ], [ -7.031250, 54.162434 ], [ -6.328125, 53.748711 ], [ -6.328125, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 52.052490 ], [ -9.140625, 52.052490 ], [ -9.140625, 53.330873 ], [ -9.843750, 53.330873 ], [ -9.843750, 53.748711 ], [ -9.140625, 53.748711 ], [ -9.140625, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.572062 ], [ -7.031250, 54.572062 ] ] ] } } , @@ -466,7 +466,7 @@ , { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.165173 ], [ -11.953125, 23.241346 ], [ -12.656250, 23.241346 ], [ -12.656250, 22.593726 ], [ -13.359375, 22.593726 ], [ -13.359375, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 21.289374 ], [ -14.765625, 21.289374 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.885838 ], [ -12.656250, 23.885838 ], [ -12.656250, 25.165173 ], [ -11.953125, 25.165173 ] ] ], [ [ [ -8.437500, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.431228 ], [ -11.250000, 26.431228 ], [ -11.250000, 27.059126 ], [ -9.140625, 27.059126 ], [ -9.140625, 27.683528 ], [ -8.437500, 27.683528 ], [ -8.437500, 25.799891 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 42.032974 ], [ -6.328125, 40.979898 ], [ -7.031250, 40.979898 ], [ -7.031250, 39.368279 ], [ -7.734375, 39.368279 ], [ -7.734375, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 37.160317 ], [ -7.734375, 37.160317 ], [ -7.734375, 36.597889 ], [ -9.140625, 36.597889 ], [ -9.140625, 37.160317 ], [ -8.437500, 37.160317 ], [ -8.437500, 37.718590 ], [ -9.140625, 37.718590 ], [ -9.140625, 38.272689 ], [ -9.843750, 38.272689 ], [ -9.843750, 38.822591 ], [ -9.140625, 38.822591 ], [ -9.140625, 40.446947 ], [ -8.437500, 40.446947 ], [ -8.437500, 40.979898 ], [ -9.140625, 40.979898 ], [ -9.140625, 42.032974 ], [ -6.328125, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 42.032974 ], [ -6.328125, 40.979898 ], [ -7.031250, 40.979898 ], [ -7.031250, 39.368279 ], [ -7.734375, 39.368279 ], [ -7.734375, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 37.160317 ], [ -7.734375, 37.160317 ], [ -7.734375, 36.597889 ], [ -9.140625, 36.597889 ], [ -9.140625, 37.160317 ], [ -8.437500, 37.160317 ], [ -8.437500, 37.718590 ], [ -9.140625, 37.718590 ], [ -9.140625, 38.272689 ], [ -9.843750, 38.272689 ], [ -9.843750, 38.822591 ], [ -9.140625, 38.822591 ], [ -9.140625, 40.446947 ], [ -8.437500, 40.446947 ], [ -9.140625, 42.032974 ], [ -6.328125, 42.032974 ] ] ] } } , { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 38.272689 ], [ -0.703125, 38.272689 ], [ -0.703125, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 37.160317 ], [ -2.109375, 37.160317 ], [ -2.109375, 36.597889 ], [ -4.921875, 36.597889 ], [ -4.921875, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 37.160317 ], [ -7.031250, 37.160317 ], [ -7.031250, 38.822591 ], [ -7.734375, 38.822591 ], [ -7.734375, 39.368279 ], [ -7.031250, 39.368279 ], [ -7.031250, 40.979898 ], [ -6.328125, 40.979898 ], [ -6.328125, 42.032974 ], [ -9.140625, 42.032974 ], [ -9.140625, 43.068888 ], [ -7.734375, 43.068888 ], [ -7.734375, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } , @@ -480,17 +480,17 @@ , { "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 12.554564 ], [ -11.250000, 11.867351 ], [ -8.437500, 11.867351 ], [ -8.437500, 10.487812 ], [ -7.734375, 10.487812 ], [ -7.734375, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 9.102097 ], [ -7.734375, 9.102097 ], [ -7.734375, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 7.013668 ], [ -9.140625, 7.013668 ], [ -9.140625, 7.710992 ], [ -9.843750, 7.710992 ], [ -9.843750, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 9.102097 ], [ -13.359375, 9.102097 ], [ -13.359375, 9.795678 ], [ -14.765625, 9.795678 ], [ -14.765625, 11.178402 ], [ -14.062500, 11.178402 ], [ -14.062500, 12.554564 ], [ -11.250000, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.546875, 9.795678 ], [ -10.546875, 7.710992 ], [ -11.250000, 7.710992 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 7.710992 ], [ -13.359375, 7.710992 ], [ -13.359375, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.795678 ], [ -10.546875, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.546875, 9.795678 ], [ -10.546875, 7.710992 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 7.710992 ], [ -13.359375, 7.710992 ], [ -13.359375, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.795678 ], [ -10.546875, 9.795678 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.734375, 27.059126 ], [ -7.734375, 26.431228 ], [ -6.328125, 26.431228 ], [ -6.328125, 25.799891 ], [ -5.625000, 25.799891 ], [ -5.625000, 25.165173 ], [ -6.328125, 25.165173 ], [ -6.328125, 22.593726 ], [ -5.625000, 22.593726 ], [ -5.625000, 15.284185 ], [ -11.953125, 15.284185 ], [ -11.953125, 14.604847 ], [ -12.656250, 14.604847 ], [ -12.656250, 15.284185 ], [ -13.359375, 15.284185 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.636192 ], [ -16.171875, 16.636192 ], [ -16.171875, 19.973349 ], [ -16.875000, 19.973349 ], [ -16.875000, 21.289374 ], [ -12.656250, 21.289374 ], [ -12.656250, 21.943046 ], [ -13.359375, 21.943046 ], [ -13.359375, 22.593726 ], [ -12.656250, 22.593726 ], [ -12.656250, 23.241346 ], [ -11.953125, 23.241346 ], [ -11.953125, 25.799891 ], [ -8.437500, 25.799891 ], [ -8.437500, 27.059126 ], [ -7.734375, 27.059126 ] ] ], [ [ [ -16.171875, 16.636192 ], [ -16.171875, 15.961329 ], [ -16.875000, 15.961329 ], [ -16.875000, 16.636192 ], [ -16.171875, 16.636192 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.165173 ], [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 23.885838 ], [ -2.812500, 23.885838 ], [ -2.812500, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.632784 ], [ 2.109375, 20.632784 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 3.515625, 19.311143 ], [ 3.515625, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.604847 ], [ -0.703125, 14.604847 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -7.734375, 9.795678 ], [ -7.734375, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 11.867351 ], [ -11.250000, 11.867351 ], [ -11.250000, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 22.593726 ], [ -6.328125, 22.593726 ], [ -6.328125, 25.165173 ], [ -4.921875, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -4.921875, 11.178402 ], [ -4.921875, 11.867351 ], [ -4.218750, 11.867351 ], [ -4.218750, 13.239945 ], [ -2.812500, 13.239945 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -1.406250, 11.178402 ], [ -2.812500, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -4.921875, 11.178402 ], [ -4.921875, 11.867351 ], [ -4.218750, 11.867351 ], [ -4.218750, 13.239945 ], [ -2.812500, 13.239945 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } , { "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 7.710992 ], [ -9.140625, 7.710992 ], [ -9.140625, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 6.315299 ], [ -7.734375, 6.315299 ], [ -7.734375, 4.214943 ], [ -9.140625, 4.214943 ], [ -9.140625, 4.915833 ], [ -9.843750, 4.915833 ], [ -9.843750, 5.615986 ], [ -10.546875, 5.615986 ], [ -10.546875, 6.315299 ], [ -11.250000, 6.315299 ], [ -11.250000, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 10.487812 ], [ -4.921875, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 6.315299 ], [ -2.812500, 4.915833 ], [ -6.328125, 4.915833 ], [ -6.328125, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 9.102097 ], [ -8.437500, 9.102097 ], [ -8.437500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 10.487812 ], [ -4.921875, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 10.487812 ], [ -4.921875, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 4.915833 ], [ -6.328125, 4.915833 ], [ -6.328125, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 9.102097 ], [ -8.437500, 9.102097 ], [ -8.437500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 10.487812 ], [ -4.921875, 10.487812 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.515625, 5.615986 ], [ -3.515625, 7.013668 ], [ -2.812500, 7.013668 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , @@ -524,7 +524,7 @@ , { "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 1.406109 ], [ 9.843750, 0.703107 ], [ 9.140625, 0.703107 ], [ 9.140625, 1.406109 ], [ 9.843750, 1.406109 ] ] ], [ [ [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.108899 ], [ 11.250000, 2.108899 ], [ 11.250000, 1.406109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 3.513421 ], [ 15.468750, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 3.513421 ], [ 15.468750, 3.513421 ] ] ] } } , { "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 3.513421 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 16.875000, 3.513421 ] ] ] } } , @@ -534,15 +534,15 @@ , { "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 3.513421 ], [ 47.109375, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 47.109375, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 115.312500, 3.513421 ] ] ], [ [ [ 103.359375, 3.513421 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 103.359375, 3.513421 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 115.312500, 3.513421 ] ] ], [ [ [ 103.359375, 3.513421 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 103.359375, 3.513421 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.308688 ], [ 178.593750, -17.978733 ], [ 177.890625, -17.978733 ], [ 177.890625, -17.308688 ], [ 178.593750, -17.308688 ] ] ], [ [ [ 179.296875, -16.636192 ], [ 179.296875, -17.308688 ], [ 178.593750, -17.308688 ], [ 178.593750, -16.636192 ], [ 179.296875, -16.636192 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.108899 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -1.406109 ], [ 14.765625, -1.406109 ], [ 14.765625, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.811371 ], [ 13.359375, -2.811371 ], [ 13.359375, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -3.513421 ], [ 11.953125, -3.513421 ], [ 11.953125, -4.214943 ], [ 10.546875, -4.214943 ], [ 10.546875, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 1.406109 ], [ 17.578125, 1.406109 ], [ 17.578125, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -3.513421 ], [ 15.468750, -3.513421 ], [ 15.468750, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.214943 ], [ 13.359375, -4.214943 ], [ 13.359375, -4.915833 ], [ 11.250000, -4.915833 ], [ 11.250000, -4.214943 ], [ 11.953125, -4.214943 ], [ 11.953125, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.811371 ], [ 12.656250, -2.811371 ], [ 12.656250, -2.108899 ], [ 13.359375, -2.108899 ], [ 13.359375, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, -2.108899 ], [ 14.765625, -2.108899 ], [ 14.765625, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 1.406109 ], [ 16.171875, 1.406109 ], [ 16.171875, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 1.406109 ], [ 17.578125, 1.406109 ], [ 17.578125, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -3.513421 ], [ 15.468750, -3.513421 ], [ 15.468750, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.214943 ], [ 12.656250, -4.915833 ], [ 11.250000, -4.915833 ], [ 11.250000, -4.214943 ], [ 11.953125, -4.214943 ], [ 11.953125, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.811371 ], [ 12.656250, -2.811371 ], [ 12.656250, -2.108899 ], [ 13.359375, -2.108899 ], [ 13.359375, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, -2.108899 ], [ 14.765625, -2.108899 ], [ 14.765625, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 1.406109 ], [ 16.171875, 1.406109 ], [ 16.171875, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.828125, -12.554564 ], [ 27.421875, -12.554564 ], [ 27.421875, -11.867351 ], [ 25.312500, -11.867351 ], [ 25.312500, -11.178402 ], [ 22.500000, -11.178402 ], [ 22.500000, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -7.710992 ], [ 18.281250, -7.710992 ], [ 18.281250, -8.407168 ], [ 16.875000, -8.407168 ], [ 16.875000, -6.315299 ], [ 16.171875, -6.315299 ], [ 16.171875, -5.615986 ], [ 13.359375, -5.615986 ], [ 13.359375, -6.315299 ], [ 11.953125, -6.315299 ], [ 11.953125, -5.615986 ], [ 12.656250, -5.615986 ], [ 12.656250, -4.915833 ], [ 13.359375, -4.915833 ], [ 13.359375, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -4.915833 ], [ 15.468750, -4.915833 ], [ 15.468750, -3.513421 ], [ 16.171875, -3.513421 ], [ 16.171875, -1.406109 ], [ 17.578125, -1.406109 ], [ 17.578125, 1.406109 ], [ 18.281250, 1.406109 ], [ 18.281250, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.531250, 0.703107 ], [ 29.531250, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.513421 ], [ 29.531250, -3.513421 ], [ 29.531250, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.710992 ], [ 30.937500, -7.710992 ], [ 30.937500, -8.407168 ], [ 28.828125, -8.407168 ], [ 28.828125, -9.102097 ], [ 28.125000, -9.102097 ], [ 28.125000, -9.795678 ], [ 28.828125, -9.795678 ], [ 28.828125, -11.178402 ], [ 28.125000, -11.178402 ], [ 28.125000, -11.867351 ], [ 28.828125, -11.867351 ], [ 28.828125, -12.554564 ] ] ], [ [ [ 28.828125, -12.554564 ], [ 29.531250, -12.554564 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.828125, -12.554564 ], [ 27.421875, -12.554564 ], [ 27.421875, -11.867351 ], [ 25.312500, -11.867351 ], [ 25.312500, -11.178402 ], [ 22.500000, -11.178402 ], [ 22.500000, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -7.710992 ], [ 18.281250, -7.710992 ], [ 18.281250, -8.407168 ], [ 16.875000, -8.407168 ], [ 16.875000, -6.315299 ], [ 16.171875, -6.315299 ], [ 16.171875, -5.615986 ], [ 13.359375, -5.615986 ], [ 13.359375, -6.315299 ], [ 11.953125, -6.315299 ], [ 11.953125, -5.615986 ], [ 12.656250, -5.615986 ], [ 12.656250, -4.915833 ], [ 13.359375, -4.915833 ], [ 13.359375, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -4.915833 ], [ 15.468750, -4.915833 ], [ 15.468750, -3.513421 ], [ 16.171875, -3.513421 ], [ 16.171875, -1.406109 ], [ 17.578125, -1.406109 ], [ 17.578125, 1.406109 ], [ 18.281250, 1.406109 ], [ 18.281250, 2.811371 ], [ 30.937500, 3.513421 ], [ 30.937500, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.531250, 0.703107 ], [ 29.531250, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.513421 ], [ 29.531250, -3.513421 ], [ 29.531250, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.710992 ], [ 30.937500, -7.710992 ], [ 30.937500, -8.407168 ], [ 28.828125, -8.407168 ], [ 28.828125, -9.102097 ], [ 28.125000, -9.102097 ], [ 28.125000, -9.795678 ], [ 28.828125, -9.795678 ], [ 28.828125, -11.178402 ], [ 28.125000, -11.178402 ], [ 28.125000, -11.867351 ], [ 28.828125, -11.867351 ], [ 28.828125, -12.554564 ] ] ], [ [ [ 28.828125, -12.554564 ], [ 29.531250, -12.554564 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.554564 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.615986 ], [ 16.171875, -6.315299 ], [ 16.875000, -6.315299 ], [ 16.875000, -8.407168 ], [ 18.281250, -8.407168 ], [ 18.281250, -7.710992 ], [ 19.687500, -7.710992 ], [ 19.687500, -7.013668 ], [ 21.796875, -7.013668 ], [ 21.796875, -9.795678 ], [ 22.500000, -9.795678 ], [ 22.500000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -13.239945 ], [ 21.796875, -13.239945 ], [ 21.796875, -16.636192 ], [ 22.500000, -16.636192 ], [ 22.500000, -17.978733 ], [ 18.281250, -17.978733 ], [ 18.281250, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.636192 ], [ 12.656250, -16.636192 ], [ 12.656250, -17.308688 ], [ 11.953125, -17.308688 ], [ 11.953125, -13.923404 ], [ 12.656250, -13.923404 ], [ 12.656250, -13.239945 ], [ 13.359375, -13.239945 ], [ 13.359375, -11.867351 ], [ 14.062500, -11.867351 ], [ 14.062500, -11.178402 ], [ 13.359375, -11.178402 ], [ 13.359375, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -9.102097 ], [ 13.359375, -9.102097 ], [ 13.359375, -8.407168 ], [ 12.656250, -8.407168 ], [ 12.656250, -7.013668 ], [ 11.953125, -7.013668 ], [ 11.953125, -6.315299 ], [ 13.359375, -6.315299 ], [ 13.359375, -5.615986 ], [ 16.171875, -5.615986 ] ] ], [ [ [ 12.656250, -4.915833 ], [ 12.656250, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 12.656250, -4.915833 ] ] ] ] } } , @@ -552,7 +552,7 @@ , { "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 30.937500, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 30.937500, -2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -12.554564 ], [ 28.828125, -11.867351 ], [ 28.125000, -11.867351 ], [ 28.125000, -11.178402 ], [ 28.828125, -11.178402 ], [ 28.828125, -9.795678 ], [ 28.125000, -9.795678 ], [ 28.125000, -9.102097 ], [ 28.828125, -9.102097 ], [ 28.828125, -8.407168 ], [ 30.937500, -8.407168 ], [ 30.937500, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -13.239945 ], [ 32.343750, -13.239945 ], [ 32.343750, -14.604847 ], [ 30.234375, -14.604847 ], [ 30.234375, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.636192 ], [ 21.796875, -16.636192 ], [ 21.796875, -13.239945 ], [ 23.906250, -13.239945 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.554564 ], [ 28.828125, -12.554564 ] ], [ [ 28.828125, -12.554564 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.554564 ], [ 28.828125, -12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -12.554564 ], [ 28.828125, -11.867351 ], [ 28.125000, -11.867351 ], [ 28.125000, -11.178402 ], [ 28.828125, -11.178402 ], [ 28.828125, -9.795678 ], [ 28.125000, -9.795678 ], [ 28.125000, -9.102097 ], [ 28.828125, -9.102097 ], [ 28.828125, -8.407168 ], [ 30.234375, -8.407168 ], [ 33.046875, -9.102097 ], [ 33.046875, -13.239945 ], [ 32.343750, -13.239945 ], [ 32.343750, -14.604847 ], [ 30.234375, -14.604847 ], [ 30.234375, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.636192 ], [ 21.796875, -16.636192 ], [ 21.796875, -13.239945 ], [ 23.906250, -13.239945 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.554564 ], [ 28.828125, -12.554564 ] ], [ [ 28.828125, -12.554564 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.554564 ], [ 28.828125, -12.554564 ] ] ] } } , { "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -15.961329 ], [ 31.640625, -16.636192 ], [ 33.046875, -16.636192 ], [ 33.046875, -18.646245 ], [ 32.343750, -18.646245 ], [ 32.343750, -19.973349 ], [ 33.046875, -19.973349 ], [ 33.046875, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -21.943046 ], [ 30.937500, -21.943046 ], [ 30.937500, -22.593726 ], [ 29.531250, -22.593726 ], [ 29.531250, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -21.289374 ], [ 27.421875, -21.289374 ], [ 27.421875, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.973349 ], [ 26.015625, -19.973349 ], [ 26.015625, -18.646245 ], [ 25.312500, -18.646245 ], [ 25.312500, -17.978733 ], [ 27.421875, -17.978733 ], [ 27.421875, -17.308688 ], [ 28.125000, -17.308688 ], [ 28.125000, -16.636192 ], [ 28.828125, -16.636192 ], [ 28.828125, -15.961329 ], [ 31.640625, -15.961329 ] ] ] } } , @@ -568,23 +568,23 @@ , { "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -25.799891 ], [ 31.640625, -26.431228 ], [ 32.343750, -26.431228 ], [ 32.343750, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ], [ 31.640625, -25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.921631 ], [ 28.828125, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.751278 ], [ 26.718750, -30.751278 ], [ 26.718750, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -29.535230 ], [ 28.125000, -29.535230 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.921631 ], [ 28.828125, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.751278 ], [ 26.718750, -30.751278 ], [ 26.718750, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -29.535230 ], [ 28.125000, -29.535230 ], [ 28.828125, -28.921631 ] ] ] } } , { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.921875, -12.554564 ], [ 49.921875, -15.284185 ], [ 50.625000, -15.284185 ], [ 50.625000, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -17.308688 ], [ 49.218750, -17.308688 ], [ 49.218750, -19.973349 ], [ 48.515625, -19.973349 ], [ 48.515625, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -24.527135 ], [ 47.109375, -24.527135 ], [ 47.109375, -25.165173 ], [ 46.406250, -25.165173 ], [ 46.406250, -25.799891 ], [ 45.000000, -25.799891 ], [ 45.000000, -25.165173 ], [ 43.593750, -25.165173 ], [ 43.593750, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -15.961329 ], [ 47.109375, -15.961329 ], [ 47.109375, -15.284185 ], [ 47.812500, -15.284185 ], [ 47.812500, -13.923404 ], [ 48.515625, -13.923404 ], [ 48.515625, -12.554564 ], [ 49.921875, -12.554564 ] ] ] } } , { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, -48.922499 ], [ 70.312500, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.937500, -9.795678 ], [ 120.937500, -10.487812 ], [ 118.828125, -10.487812 ], [ 118.828125, -9.795678 ], [ 120.937500, -9.795678 ] ] ], [ [ [ 125.156250, -9.102097 ], [ 125.156250, -9.795678 ], [ 124.453125, -9.795678 ], [ 124.453125, -10.487812 ], [ 123.750000, -10.487812 ], [ 123.750000, -9.102097 ], [ 125.156250, -9.102097 ] ] ], [ [ [ 118.828125, -8.407168 ], [ 118.828125, -9.102097 ], [ 117.421875, -9.102097 ], [ 117.421875, -8.407168 ], [ 118.828125, -8.407168 ] ] ], [ [ [ 122.343750, -8.407168 ], [ 122.343750, -9.102097 ], [ 120.234375, -9.102097 ], [ 120.234375, -8.407168 ], [ 122.343750, -8.407168 ] ] ], [ [ [ 134.296875, -0.703107 ], [ 134.296875, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 139.921875, -2.108899 ], [ 139.921875, -2.811371 ], [ 141.328125, -2.811371 ], [ 141.328125, -9.102097 ], [ 139.921875, -9.102097 ], [ 139.921875, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -6.315299 ], [ 137.812500, -6.315299 ], [ 137.812500, -5.615986 ], [ 137.109375, -5.615986 ], [ 137.109375, -4.915833 ], [ 135.703125, -4.915833 ], [ 135.703125, -4.214943 ], [ 132.890625, -4.214943 ], [ 132.890625, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 133.593750, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -0.703107 ], [ 134.296875, -0.703107 ] ] ], [ [ [ 107.578125, -5.615986 ], [ 107.578125, -6.315299 ], [ 108.281250, -6.315299 ], [ 108.281250, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.407168 ], [ 109.687500, -8.407168 ], [ 109.687500, -7.710992 ], [ 106.875000, -7.710992 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -6.315299 ], [ 106.171875, -6.315299 ], [ 106.171875, -5.615986 ], [ 107.578125, -5.615986 ] ] ], [ [ [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ], [ 134.296875, -7.013668 ], [ 134.296875, -5.615986 ], [ 135.000000, -5.615986 ] ] ], [ [ [ 120.234375, 0.000000 ], [ 120.234375, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ], [ 123.046875, -4.214943 ], [ 123.046875, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, 0.000000 ], [ 120.234375, 0.000000 ] ] ], [ [ [ 106.171875, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -4.915833 ], [ 102.656250, -4.915833 ], [ 102.656250, -4.214943 ], [ 101.953125, -4.214943 ], [ 101.953125, -3.513421 ], [ 101.250000, -3.513421 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, -0.703107 ], [ 99.140625, -0.703107 ], [ 99.140625, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 99.843750, 3.513421 ], [ 99.843750, 2.811371 ], [ 100.546875, 2.811371 ], [ 100.546875, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -1.406109 ], [ 104.062500, -1.406109 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.811371 ], [ 106.171875, -2.811371 ], [ 106.171875, -5.615986 ] ] ], [ [ [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 118.125000, 2.811371 ], [ 118.125000, 1.406109 ], [ 118.828125, 1.406109 ], [ 118.828125, 0.703107 ], [ 118.125000, 0.703107 ], [ 118.125000, 0.000000 ], [ 117.421875, 0.000000 ], [ 117.421875, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -3.513421 ], [ 116.015625, -3.513421 ], [ 116.015625, -4.214943 ], [ 114.609375, -4.214943 ], [ 114.609375, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -2.811371 ], [ 110.390625, -2.811371 ], [ 110.390625, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 1.406109 ], [ 109.687500, 1.406109 ], [ 109.687500, 0.703107 ], [ 112.500000, 0.703107 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 2.108899 ], [ 115.312500, 3.513421 ], [ 117.421875, 3.513421 ] ] ], [ [ [ 130.781250, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 124.453125, 0.703107 ], [ 124.453125, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, 0.703107 ], [ 124.453125, 0.703107 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.000000 ], [ 127.265625, 0.000000 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 120.937500, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, 0.703107 ], [ 120.937500, 0.703107 ], [ 120.937500, 0.000000 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.234375, -9.795678 ], [ 120.937500, -10.487812 ], [ 118.828125, -10.487812 ], [ 118.828125, -9.795678 ], [ 120.234375, -9.795678 ] ] ], [ [ [ 125.156250, -9.102097 ], [ 125.156250, -9.795678 ], [ 124.453125, -9.795678 ], [ 124.453125, -10.487812 ], [ 123.750000, -10.487812 ], [ 123.750000, -9.102097 ], [ 125.156250, -9.102097 ] ] ], [ [ [ 118.828125, -8.407168 ], [ 118.828125, -9.102097 ], [ 117.421875, -9.102097 ], [ 117.421875, -8.407168 ], [ 118.828125, -8.407168 ] ] ], [ [ [ 122.343750, -8.407168 ], [ 122.343750, -9.102097 ], [ 120.234375, -9.102097 ], [ 120.234375, -8.407168 ], [ 122.343750, -8.407168 ] ] ], [ [ [ 134.296875, -0.703107 ], [ 134.296875, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 139.921875, -2.108899 ], [ 139.921875, -2.811371 ], [ 141.328125, -2.811371 ], [ 141.328125, -9.102097 ], [ 139.921875, -9.102097 ], [ 139.921875, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -6.315299 ], [ 137.812500, -6.315299 ], [ 137.812500, -5.615986 ], [ 137.109375, -5.615986 ], [ 137.109375, -4.915833 ], [ 135.703125, -4.915833 ], [ 135.703125, -4.214943 ], [ 132.890625, -4.214943 ], [ 132.890625, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 133.593750, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -0.703107 ], [ 134.296875, -0.703107 ] ] ], [ [ [ 107.578125, -5.615986 ], [ 108.281250, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.407168 ], [ 109.687500, -8.407168 ], [ 109.687500, -7.710992 ], [ 106.875000, -7.710992 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -6.315299 ], [ 106.171875, -6.315299 ], [ 106.171875, -5.615986 ], [ 107.578125, -5.615986 ] ] ], [ [ [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ], [ 134.296875, -7.013668 ], [ 134.296875, -5.615986 ], [ 135.000000, -5.615986 ] ] ], [ [ [ 120.234375, 0.000000 ], [ 120.234375, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ], [ 123.046875, -4.214943 ], [ 123.046875, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, 0.000000 ], [ 120.234375, 0.000000 ] ] ], [ [ [ 106.171875, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -4.915833 ], [ 102.656250, -4.915833 ], [ 102.656250, -4.214943 ], [ 101.953125, -4.214943 ], [ 101.953125, -3.513421 ], [ 101.250000, -3.513421 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, -0.703107 ], [ 99.140625, -0.703107 ], [ 99.140625, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 99.843750, 3.513421 ], [ 99.843750, 2.811371 ], [ 100.546875, 2.811371 ], [ 100.546875, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -1.406109 ], [ 104.062500, -1.406109 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.811371 ], [ 106.171875, -2.811371 ], [ 106.171875, -5.615986 ] ] ], [ [ [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 118.125000, 2.811371 ], [ 118.125000, 1.406109 ], [ 118.828125, 1.406109 ], [ 118.828125, 0.703107 ], [ 118.125000, 0.703107 ], [ 118.125000, 0.000000 ], [ 117.421875, 0.000000 ], [ 117.421875, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -3.513421 ], [ 116.015625, -3.513421 ], [ 116.015625, -4.214943 ], [ 114.609375, -4.214943 ], [ 114.609375, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -2.811371 ], [ 110.390625, -2.811371 ], [ 110.390625, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 1.406109 ], [ 109.687500, 1.406109 ], [ 109.687500, 0.703107 ], [ 112.500000, 0.703107 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 2.108899 ], [ 115.312500, 3.513421 ], [ 117.421875, 3.513421 ] ] ], [ [ [ 130.781250, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 124.453125, 0.703107 ], [ 124.453125, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, 0.703107 ], [ 124.453125, 0.703107 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.000000 ], [ 127.265625, 0.000000 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 120.937500, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, 0.703107 ], [ 120.937500, 0.703107 ], [ 120.937500, 0.000000 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.407168 ], [ 127.265625, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -8.407168 ], [ 127.265625, -8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.359375, -40.979898 ], [ 148.359375, -43.068888 ], [ 147.656250, -43.068888 ], [ 147.656250, -43.580391 ], [ 146.250000, -43.580391 ], [ 146.250000, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -41.508577 ], [ 144.843750, -40.979898 ], [ 148.359375, -40.979898 ] ] ], [ [ [ 132.890625, -11.867351 ], [ 135.000000, -11.867351 ], [ 135.000000, -12.554564 ], [ 135.703125, -12.554564 ], [ 135.703125, -11.867351 ], [ 136.406250, -11.867351 ], [ 136.406250, -13.239945 ], [ 135.703125, -13.239945 ], [ 135.703125, -15.284185 ], [ 136.406250, -15.284185 ], [ 136.406250, -15.961329 ], [ 137.812500, -15.961329 ], [ 137.812500, -16.636192 ], [ 138.515625, -16.636192 ], [ 138.515625, -17.308688 ], [ 139.218750, -17.308688 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -17.308688 ], [ 141.328125, -17.308688 ], [ 141.328125, -15.961329 ], [ 142.031250, -15.961329 ], [ 142.031250, -15.284185 ], [ 141.328125, -15.284185 ], [ 141.328125, -13.239945 ], [ 142.031250, -13.239945 ], [ 142.031250, -11.178402 ], [ 142.734375, -11.178402 ], [ 142.734375, -11.867351 ], [ 143.437500, -11.867351 ], [ 143.437500, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -15.284185 ], [ 145.546875, -15.284185 ], [ 145.546875, -17.308688 ], [ 146.250000, -17.308688 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -19.973349 ], [ 148.359375, -19.973349 ], [ 148.359375, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 149.765625, -21.943046 ], [ 149.765625, -22.593726 ], [ 150.468750, -22.593726 ], [ 150.468750, -23.241346 ], [ 151.171875, -23.241346 ], [ 151.171875, -23.885838 ], [ 151.875000, -23.885838 ], [ 151.875000, -25.165173 ], [ 152.578125, -25.165173 ], [ 152.578125, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -31.353637 ], [ 152.578125, -31.353637 ], [ 152.578125, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.885931 ], [ 150.468750, -34.885931 ], [ 150.468750, -36.031332 ], [ 149.765625, -36.031332 ], [ 149.765625, -37.718590 ], [ 148.359375, -37.718590 ], [ 148.359375, -38.272689 ], [ 147.656250, -38.272689 ], [ 147.656250, -38.822591 ], [ 144.843750, -38.822591 ], [ 144.843750, -38.272689 ], [ 144.140625, -38.272689 ], [ 144.140625, -38.822591 ], [ 142.734375, -38.822591 ], [ 142.734375, -38.272689 ], [ 140.625000, -38.272689 ], [ 140.625000, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.460670 ], [ 138.515625, -35.460670 ], [ 138.515625, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -33.724340 ], [ 137.109375, -33.724340 ], [ 137.109375, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -34.885931 ], [ 135.000000, -34.885931 ], [ 135.000000, -33.724340 ], [ 134.296875, -33.724340 ], [ 134.296875, -32.546813 ], [ 132.890625, -32.546813 ], [ 132.890625, -31.952162 ], [ 131.484375, -31.952162 ], [ 131.484375, -31.353637 ], [ 129.375000, -31.353637 ], [ 129.375000, -31.952162 ], [ 127.968750, -31.952162 ], [ 127.968750, -32.546813 ], [ 125.156250, -32.546813 ], [ 125.156250, -33.137551 ], [ 124.453125, -33.137551 ], [ 124.453125, -33.724340 ], [ 120.234375, -33.724340 ], [ 120.234375, -34.307144 ], [ 118.828125, -34.307144 ], [ 118.828125, -34.885931 ], [ 115.312500, -34.885931 ], [ 115.312500, -33.724340 ], [ 116.015625, -33.724340 ], [ 116.015625, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -29.535230 ], [ 114.609375, -29.535230 ], [ 114.609375, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -27.059126 ], [ 113.203125, -27.059126 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -24.527135 ], [ 113.203125, -24.527135 ], [ 113.203125, -23.885838 ], [ 113.906250, -23.885838 ], [ 113.906250, -22.593726 ], [ 114.609375, -22.593726 ], [ 114.609375, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -21.289374 ], [ 116.718750, -21.289374 ], [ 116.718750, -20.632784 ], [ 118.828125, -20.632784 ], [ 118.828125, -19.973349 ], [ 121.640625, -19.973349 ], [ 121.640625, -18.646245 ], [ 122.343750, -18.646245 ], [ 122.343750, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.636192 ], [ 124.453125, -16.636192 ], [ 124.453125, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -14.604847 ], [ 125.859375, -14.604847 ], [ 125.859375, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.604847 ], [ 128.671875, -14.604847 ], [ 128.671875, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -14.604847 ], [ 130.078125, -14.604847 ], [ 130.078125, -13.239945 ], [ 130.781250, -13.239945 ], [ 130.781250, -12.554564 ], [ 132.890625, -12.554564 ], [ 132.890625, -11.867351 ] ] ], [ [ [ 137.812500, -34.885931 ], [ 137.812500, -35.460670 ], [ 137.109375, -35.460670 ], [ 137.109375, -34.885931 ], [ 137.812500, -34.885931 ] ] ], [ [ [ 132.890625, -11.867351 ], [ 131.484375, -11.867351 ], [ 131.484375, -11.178402 ], [ 132.890625, -11.178402 ], [ 132.890625, -11.867351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.359375, -40.979898 ], [ 148.359375, -43.068888 ], [ 147.656250, -43.068888 ], [ 147.656250, -43.580391 ], [ 146.250000, -43.580391 ], [ 146.250000, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -42.032974 ], [ 144.843750, -40.979898 ], [ 148.359375, -40.979898 ] ] ], [ [ [ 132.890625, -11.867351 ], [ 135.000000, -11.867351 ], [ 135.000000, -12.554564 ], [ 135.703125, -12.554564 ], [ 135.703125, -11.867351 ], [ 136.406250, -11.867351 ], [ 136.406250, -13.239945 ], [ 135.703125, -13.239945 ], [ 135.703125, -15.284185 ], [ 136.406250, -15.284185 ], [ 136.406250, -15.961329 ], [ 137.812500, -15.961329 ], [ 137.812500, -16.636192 ], [ 138.515625, -16.636192 ], [ 138.515625, -17.308688 ], [ 139.218750, -17.308688 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -17.308688 ], [ 141.328125, -17.308688 ], [ 141.328125, -15.961329 ], [ 142.031250, -15.961329 ], [ 142.031250, -15.284185 ], [ 141.328125, -15.284185 ], [ 141.328125, -13.239945 ], [ 142.031250, -13.239945 ], [ 142.031250, -11.178402 ], [ 142.734375, -11.178402 ], [ 142.734375, -11.867351 ], [ 143.437500, -11.867351 ], [ 143.437500, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -15.284185 ], [ 145.546875, -15.284185 ], [ 145.546875, -17.308688 ], [ 146.250000, -17.308688 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -19.973349 ], [ 148.359375, -19.973349 ], [ 148.359375, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 149.765625, -21.943046 ], [ 149.765625, -22.593726 ], [ 150.468750, -22.593726 ], [ 150.468750, -23.241346 ], [ 151.171875, -23.241346 ], [ 151.171875, -23.885838 ], [ 151.875000, -23.885838 ], [ 151.875000, -25.165173 ], [ 152.578125, -25.165173 ], [ 152.578125, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -31.353637 ], [ 152.578125, -31.353637 ], [ 152.578125, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.885931 ], [ 150.468750, -34.885931 ], [ 150.468750, -36.031332 ], [ 149.765625, -36.031332 ], [ 149.765625, -37.718590 ], [ 148.359375, -37.718590 ], [ 148.359375, -38.272689 ], [ 147.656250, -38.272689 ], [ 147.656250, -38.822591 ], [ 144.843750, -38.822591 ], [ 144.843750, -38.272689 ], [ 144.140625, -38.272689 ], [ 144.140625, -38.822591 ], [ 142.734375, -38.822591 ], [ 142.734375, -38.272689 ], [ 140.625000, -38.272689 ], [ 140.625000, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.460670 ], [ 138.515625, -35.460670 ], [ 138.515625, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -33.724340 ], [ 137.109375, -33.724340 ], [ 137.109375, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -34.885931 ], [ 135.000000, -34.885931 ], [ 135.000000, -33.724340 ], [ 134.296875, -33.724340 ], [ 134.296875, -32.546813 ], [ 132.890625, -32.546813 ], [ 132.890625, -31.952162 ], [ 131.484375, -31.952162 ], [ 131.484375, -31.353637 ], [ 129.375000, -31.353637 ], [ 129.375000, -31.952162 ], [ 127.968750, -31.952162 ], [ 127.968750, -32.546813 ], [ 125.156250, -32.546813 ], [ 125.156250, -33.137551 ], [ 124.453125, -33.137551 ], [ 124.453125, -33.724340 ], [ 120.234375, -33.724340 ], [ 120.234375, -34.307144 ], [ 118.828125, -34.307144 ], [ 118.828125, -34.885931 ], [ 115.312500, -34.885931 ], [ 115.312500, -33.724340 ], [ 116.015625, -33.724340 ], [ 116.015625, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -29.535230 ], [ 114.609375, -29.535230 ], [ 114.609375, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -27.059126 ], [ 113.203125, -27.059126 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -24.527135 ], [ 113.203125, -24.527135 ], [ 113.203125, -23.885838 ], [ 113.906250, -23.885838 ], [ 113.906250, -22.593726 ], [ 114.609375, -22.593726 ], [ 114.609375, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -21.289374 ], [ 116.718750, -21.289374 ], [ 116.718750, -20.632784 ], [ 118.828125, -20.632784 ], [ 118.828125, -19.973349 ], [ 121.640625, -19.973349 ], [ 121.640625, -18.646245 ], [ 122.343750, -18.646245 ], [ 122.343750, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.636192 ], [ 124.453125, -16.636192 ], [ 124.453125, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -14.604847 ], [ 125.859375, -14.604847 ], [ 125.859375, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.604847 ], [ 128.671875, -14.604847 ], [ 128.671875, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -14.604847 ], [ 130.078125, -14.604847 ], [ 130.078125, -13.239945 ], [ 130.781250, -13.239945 ], [ 130.781250, -12.554564 ], [ 132.890625, -12.554564 ], [ 132.890625, -11.867351 ] ] ], [ [ [ 137.812500, -34.885931 ], [ 137.812500, -35.460670 ], [ 137.109375, -35.460670 ], [ 137.109375, -34.885931 ], [ 137.812500, -34.885931 ] ] ], [ [ [ 132.890625, -11.867351 ], [ 131.484375, -11.867351 ], [ 131.484375, -11.178402 ], [ 132.890625, -11.178402 ], [ 132.890625, -11.867351 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -3.513421 ], [ 144.843750, -4.214943 ], [ 145.546875, -4.214943 ], [ 145.546875, -5.615986 ], [ 146.250000, -5.615986 ], [ 146.250000, -6.315299 ], [ 147.656250, -6.315299 ], [ 147.656250, -7.013668 ], [ 146.953125, -7.013668 ], [ 146.953125, -7.710992 ], [ 148.359375, -7.710992 ], [ 148.359375, -8.407168 ], [ 149.062500, -8.407168 ], [ 149.062500, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -10.487812 ], [ 147.656250, -10.487812 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 144.843750, -8.407168 ], [ 144.843750, -7.710992 ], [ 144.140625, -7.710992 ], [ 144.140625, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.102097 ], [ 141.328125, -9.102097 ], [ 141.328125, -3.513421 ], [ 144.843750, -3.513421 ] ] ], [ [ [ 155.390625, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ], [ 155.390625, -5.615986 ], [ 155.390625, -6.315299 ] ] ], [ [ [ 150.468750, -4.915833 ], [ 150.468750, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -6.315299 ], [ 148.359375, -6.315299 ], [ 148.359375, -5.615986 ], [ 149.765625, -5.615986 ], [ 149.765625, -4.915833 ], [ 150.468750, -4.915833 ] ] ], [ [ [ 153.281250, -4.214943 ], [ 153.281250, -4.915833 ], [ 152.578125, -4.915833 ], [ 152.578125, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -4.915833 ], [ 151.875000, -4.915833 ], [ 151.875000, -4.214943 ], [ 153.281250, -4.214943 ] ] ], [ [ [ 151.875000, -3.513421 ], [ 151.171875, -3.513421 ], [ 151.171875, -2.811371 ], [ 151.875000, -2.811371 ], [ 151.875000, -3.513421 ] ] ], [ [ [ 155.390625, -6.315299 ], [ 156.093750, -6.315299 ], [ 156.093750, -7.013668 ], [ 155.390625, -7.013668 ], [ 155.390625, -6.315299 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 160.312500, -9.102097 ], [ 160.312500, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 160.312500, -9.102097 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -9.102097 ], [ 160.312500, -9.102097 ], [ 160.312500, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 159.609375, -7.710992 ], [ 159.609375, -8.407168 ], [ 158.906250, -8.407168 ], [ 158.906250, -7.710992 ], [ 159.609375, -7.710992 ] ] ], [ [ [ 157.500000, -7.013668 ], [ 157.500000, -7.710992 ], [ 156.796875, -7.710992 ], [ 156.796875, -7.013668 ], [ 157.500000, -7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.343750, -14.604847 ], [ 167.343750, -15.961329 ], [ 166.640625, -15.961329 ], [ 166.640625, -15.284185 ], [ 167.343750, -14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.343750, -14.604847 ], [ 167.343750, -15.961329 ], [ 166.640625, -15.961329 ], [ 167.343750, -14.604847 ] ] ] } } , { "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -21.289374 ], [ 163.828125, -21.289374 ], [ 163.828125, -19.973349 ], [ 164.531250, -19.973349 ], [ 164.531250, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.943046 ] ] ], [ [ [ 165.937500, -21.943046 ], [ 167.343750, -21.943046 ], [ 167.343750, -22.593726 ], [ 165.937500, -22.593726 ], [ 165.937500, -21.943046 ] ] ] ] } } , @@ -594,7 +594,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 57.704147 ], [ -2.109375, 56.170023 ], [ -2.812500, 56.170023 ], [ -2.812500, 55.776573 ], [ -2.109375, 55.776573 ], [ -2.109375, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ 0.703125, 51.618017 ], [ 0.703125, 51.179343 ], [ 1.406250, 51.179343 ], [ 1.406250, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 57.704147 ], [ -2.109375, 56.170023 ], [ -2.812500, 56.170023 ], [ -2.812500, 55.776573 ], [ -2.109375, 55.776573 ], [ -2.109375, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ 0.703125, 51.618017 ], [ 0.703125, 51.179343 ], [ 1.406250, 51.179343 ], [ 1.406250, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 53.330873 ], [ -2.812500, 53.330873 ], [ -3.515625, 54.162434 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 42.553080 ], [ 9.843750, 41.508577 ], [ 8.437500, 41.508577 ], [ 8.437500, 42.553080 ], [ 9.843750, 42.553080 ] ] ], [ [ [ 2.812500, 50.736455 ], [ 2.812500, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.382373 ], [ 7.031250, 49.382373 ], [ 7.031250, 48.922499 ], [ 8.437500, 48.922499 ], [ 8.437500, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 47.517201 ], [ 7.031250, 47.517201 ], [ 7.031250, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 44.087585 ], [ 7.734375, 44.087585 ], [ 7.734375, 43.068888 ], [ 4.921875, 43.068888 ], [ 4.921875, 43.580391 ], [ 4.218750, 43.580391 ], [ 4.218750, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.553080 ], [ -1.406250, 42.553080 ], [ -1.406250, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.458352 ], [ -1.406250, 48.458352 ], [ -1.406250, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ 0.000000, 49.382373 ], [ 0.000000, 49.837982 ], [ 1.406250, 49.837982 ], [ 1.406250, 50.736455 ], [ 2.812500, 50.736455 ] ] ] ] } } , @@ -614,7 +614,7 @@ , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 63.860036 ], [ 37.265625, 63.860036 ], [ 37.265625, 64.472794 ], [ 36.562500, 64.472794 ], [ 36.562500, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.472794 ], [ 40.781250, 64.472794 ], [ 40.781250, 65.072130 ], [ 40.078125, 65.072130 ], [ 40.078125, 65.366837 ], [ 40.781250, 65.366837 ], [ 93.515625, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 49.837982 ], [ 89.296875, 49.837982 ], [ 89.296875, 49.382373 ], [ 86.484375, 49.382373 ], [ 86.484375, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.289339 ], [ 83.671875, 50.289339 ], [ 83.671875, 50.736455 ], [ 80.156250, 50.736455 ], [ 80.156250, 51.179343 ], [ 79.453125, 51.179343 ], [ 79.453125, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.908902 ], [ 78.046875, 52.908902 ], [ 78.046875, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.640625, 53.748711 ], [ 76.640625, 54.162434 ], [ 75.234375, 54.162434 ], [ 75.234375, 53.748711 ], [ 74.531250, 53.748711 ], [ 74.531250, 53.330873 ], [ 73.125000, 53.330873 ], [ 73.125000, 53.748711 ], [ 73.828125, 53.748711 ], [ 73.828125, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.977614 ], [ 69.609375, 54.977614 ], [ 69.609375, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 54.977614 ], [ 67.500000, 54.977614 ], [ 67.500000, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.162434 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.330873 ], [ 61.875000, 53.330873 ], [ 61.875000, 52.908902 ], [ 60.468750, 52.908902 ], [ 60.468750, 52.482780 ], [ 61.171875, 52.482780 ], [ 61.171875, 52.052490 ], [ 59.765625, 52.052490 ], [ 59.765625, 51.618017 ], [ 61.171875, 51.618017 ], [ 61.171875, 51.179343 ], [ 61.875000, 51.179343 ], [ 61.875000, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 51.179343 ], [ 56.953125, 51.179343 ], [ 56.953125, 50.736455 ], [ 54.843750, 50.736455 ], [ 54.843750, 51.179343 ], [ 52.734375, 51.179343 ], [ 52.734375, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.179343 ], [ 49.218750, 51.179343 ], [ 49.218750, 50.736455 ], [ 48.515625, 50.736455 ], [ 48.515625, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.382373 ], [ 46.406250, 49.382373 ], [ 46.406250, 48.922499 ], [ 47.109375, 48.922499 ], [ 47.109375, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.517201 ], [ 47.812500, 47.517201 ], [ 47.812500, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 46.558860 ], [ 49.218750, 46.558860 ], [ 49.218750, 46.073231 ], [ 48.515625, 46.073231 ], [ 48.515625, 45.583290 ], [ 47.812500, 45.583290 ], [ 47.812500, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.406250, 44.590467 ], [ 46.406250, 44.087585 ], [ 47.109375, 44.087585 ], [ 47.109375, 43.580391 ], [ 47.812500, 43.580391 ], [ 47.812500, 42.553080 ], [ 48.515625, 42.553080 ], [ 48.515625, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 40.979898 ], [ 47.109375, 40.979898 ], [ 47.109375, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.553080 ], [ 42.187500, 42.553080 ], [ 42.187500, 43.068888 ], [ 40.781250, 43.068888 ], [ 40.781250, 43.580391 ], [ 38.671875, 43.580391 ], [ 38.671875, 44.087585 ], [ 37.265625, 44.087585 ], [ 37.265625, 44.590467 ], [ 36.562500, 44.590467 ], [ 36.562500, 45.089036 ], [ 37.265625, 45.089036 ], [ 37.265625, 45.583290 ], [ 37.968750, 45.583290 ], [ 37.968750, 46.558860 ], [ 39.375000, 46.558860 ], [ 39.375000, 47.040182 ], [ 37.968750, 47.040182 ], [ 37.968750, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.989922 ], [ 40.078125, 47.989922 ], [ 40.078125, 48.458352 ], [ 39.375000, 48.458352 ], [ 39.375000, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.382373 ], [ 38.671875, 49.382373 ], [ 38.671875, 49.837982 ], [ 37.265625, 49.837982 ], [ 37.265625, 50.289339 ], [ 35.156250, 50.289339 ], [ 35.156250, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 55.379110 ], [ 30.234375, 55.379110 ], [ 30.234375, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 56.944974 ], [ 27.421875, 56.944974 ], [ 27.421875, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 28.828125, 59.534318 ], [ 28.828125, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.586967 ], [ 28.828125, 60.586967 ], [ 28.828125, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.938950 ], [ 30.937500, 61.938950 ], [ 30.937500, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 64.472794 ], [ 29.531250, 64.472794 ], [ 29.531250, 65.366837 ], [ 30.234375, 65.366837 ], [ 30.234375, 65.946472 ], [ 35.156250, 65.946472 ] ] ], [ [ [ 22.500000, 54.977614 ], [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 22.500000, 54.977614 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.765625, 77.617709 ], [ 104.765625, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.312520 ], [ 106.171875, 77.312520 ], [ 106.171875, 77.157163 ], [ 105.468750, 77.157163 ], [ 105.468750, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.679785 ], [ 107.578125, 76.679785 ], [ 107.578125, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.775843 ], [ 111.796875, 74.775843 ], [ 111.796875, 74.590108 ], [ 111.093750, 74.590108 ], [ 111.093750, 74.402163 ], [ 110.390625, 74.402163 ], [ 110.390625, 74.211983 ], [ 109.687500, 74.211983 ], [ 109.687500, 74.019543 ], [ 110.390625, 74.019543 ], [ 110.390625, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 115.312500, 73.627789 ], [ 115.312500, 73.824820 ], [ 116.718750, 73.824820 ], [ 116.718750, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 123.750000, 73.824820 ], [ 123.750000, 73.627789 ], [ 127.265625, 73.627789 ], [ 127.265625, 73.428424 ], [ 127.968750, 73.428424 ], [ 127.968750, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.607120 ], [ 129.375000, 72.607120 ], [ 129.375000, 72.181804 ], [ 128.671875, 72.181804 ], [ 128.671875, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 71.074056 ], [ 130.781250, 71.074056 ], [ 130.781250, 70.844673 ], [ 131.484375, 70.844673 ], [ 131.484375, 71.300793 ], [ 132.187500, 71.300793 ], [ 132.187500, 71.524909 ], [ 132.890625, 71.524909 ], [ 132.890625, 71.300793 ], [ 134.296875, 71.300793 ], [ 134.296875, 71.524909 ], [ 137.109375, 71.524909 ], [ 137.109375, 71.300793 ], [ 138.515625, 71.300793 ], [ 138.515625, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.965388 ], [ 139.218750, 71.965388 ], [ 139.218750, 72.395706 ], [ 139.921875, 72.395706 ], [ 139.921875, 72.607120 ], [ 140.625000, 72.607120 ], [ 140.625000, 72.816074 ], [ 142.031250, 72.816074 ], [ 142.031250, 72.607120 ], [ 144.843750, 72.607120 ], [ 144.843750, 72.395706 ], [ 147.656250, 72.395706 ], [ 147.656250, 72.181804 ], [ 149.765625, 72.181804 ], [ 149.765625, 71.746432 ], [ 150.468750, 71.746432 ], [ 150.468750, 71.300793 ], [ 151.171875, 71.300793 ], [ 151.171875, 71.074056 ], [ 152.578125, 71.074056 ], [ 152.578125, 70.844673 ], [ 155.390625, 70.844673 ], [ 155.390625, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 69.411242 ], [ 162.421875, 69.411242 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.411242 ], [ 167.343750, 69.411242 ], [ 167.343750, 69.657086 ], [ 168.046875, 69.657086 ], [ 168.046875, 69.411242 ], [ 168.750000, 69.411242 ], [ 168.750000, 68.911005 ], [ 169.453125, 68.911005 ], [ 169.453125, 68.656555 ], [ 170.859375, 68.656555 ], [ 170.859375, 69.162558 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 171.562500, 70.140364 ], [ 171.562500, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 65.658275 ], [ 93.515625, 65.658275 ], [ 93.515625, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.016094 ], [ 97.734375, 76.016094 ], [ 97.734375, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.351896 ], [ 100.546875, 76.351896 ], [ 100.546875, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.999935 ], [ 101.953125, 76.999935 ], [ 101.953125, 77.312520 ], [ 102.656250, 77.312520 ], [ 102.656250, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.617709 ], [ 104.765625, 77.617709 ] ] ], [ [ [ 180.000000, 71.300793 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 179.296875, 71.074056 ], [ 179.296875, 71.300793 ], [ 180.000000, 71.300793 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 142.031250, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.428424 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 139.921875, 73.226700 ], [ 139.921875, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.824820 ], [ 142.031250, 73.824820 ] ] ], [ [ [ 139.218750, 76.184995 ], [ 139.218750, 76.016094 ], [ 141.328125, 76.016094 ], [ 141.328125, 75.845169 ], [ 142.734375, 75.845169 ], [ 142.734375, 75.672197 ], [ 144.140625, 75.672197 ], [ 144.140625, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 75.140778 ], [ 144.140625, 75.140778 ], [ 144.140625, 74.775843 ], [ 140.625000, 74.775843 ], [ 140.625000, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.672197 ], [ 137.812500, 75.672197 ], [ 137.812500, 76.016094 ], [ 138.515625, 76.016094 ], [ 138.515625, 76.184995 ], [ 139.218750, 76.184995 ] ] ], [ [ [ 146.953125, 75.497157 ], [ 146.953125, 75.320025 ], [ 149.062500, 75.320025 ], [ 149.062500, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.959392 ], [ 149.765625, 74.959392 ], [ 149.765625, 74.775843 ], [ 146.953125, 74.775843 ], [ 146.953125, 74.959392 ], [ 146.250000, 74.959392 ], [ 146.250000, 75.497157 ], [ 146.953125, 75.497157 ] ] ], [ [ [ 102.656250, 79.302640 ], [ 102.656250, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.468750, 78.767792 ], [ 105.468750, 78.490552 ], [ 104.765625, 78.490552 ], [ 104.765625, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.206563 ], [ 102.656250, 78.206563 ], [ 102.656250, 78.061989 ], [ 100.546875, 78.061989 ], [ 100.546875, 77.915669 ], [ 99.140625, 77.915669 ], [ 99.140625, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.490552 ], [ 100.546875, 78.490552 ], [ 100.546875, 78.903929 ], [ 101.250000, 78.903929 ], [ 101.250000, 79.171335 ], [ 101.953125, 79.171335 ], [ 101.953125, 79.302640 ], [ 102.656250, 79.302640 ] ] ], [ [ [ 96.328125, 81.093214 ], [ 96.328125, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.297927 ], [ 99.140625, 80.297927 ], [ 99.140625, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 78.903929 ], [ 99.140625, 78.903929 ], [ 99.140625, 78.767792 ], [ 96.328125, 78.767792 ], [ 96.328125, 78.903929 ], [ 94.921875, 78.903929 ], [ 94.921875, 79.038437 ], [ 94.218750, 79.038437 ], [ 94.218750, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 80.983688 ], [ 94.218750, 80.983688 ], [ 94.218750, 81.093214 ], [ 96.328125, 81.093214 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.765625, 77.617709 ], [ 104.765625, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.312520 ], [ 106.171875, 77.312520 ], [ 106.171875, 77.157163 ], [ 105.468750, 77.157163 ], [ 105.468750, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.679785 ], [ 107.578125, 76.679785 ], [ 107.578125, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.775843 ], [ 111.796875, 74.775843 ], [ 111.796875, 74.590108 ], [ 111.093750, 74.590108 ], [ 111.093750, 74.402163 ], [ 110.390625, 74.402163 ], [ 110.390625, 74.211983 ], [ 109.687500, 74.211983 ], [ 109.687500, 74.019543 ], [ 110.390625, 74.019543 ], [ 110.390625, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 115.312500, 73.627789 ], [ 115.312500, 73.824820 ], [ 116.718750, 73.824820 ], [ 116.718750, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 123.750000, 73.824820 ], [ 123.750000, 73.627789 ], [ 127.265625, 73.627789 ], [ 127.265625, 73.428424 ], [ 127.968750, 73.428424 ], [ 127.968750, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.607120 ], [ 129.375000, 72.607120 ], [ 129.375000, 72.181804 ], [ 128.671875, 72.181804 ], [ 128.671875, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 71.074056 ], [ 130.781250, 71.074056 ], [ 130.781250, 70.844673 ], [ 131.484375, 70.844673 ], [ 131.484375, 71.300793 ], [ 132.187500, 71.300793 ], [ 132.187500, 71.524909 ], [ 132.890625, 71.524909 ], [ 132.890625, 71.300793 ], [ 134.296875, 71.300793 ], [ 134.296875, 71.524909 ], [ 137.109375, 71.524909 ], [ 137.109375, 71.300793 ], [ 138.515625, 71.300793 ], [ 138.515625, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.965388 ], [ 139.218750, 71.965388 ], [ 139.218750, 72.395706 ], [ 139.921875, 72.395706 ], [ 139.921875, 72.607120 ], [ 140.625000, 72.607120 ], [ 140.625000, 72.816074 ], [ 142.031250, 72.816074 ], [ 142.031250, 72.607120 ], [ 144.843750, 72.607120 ], [ 144.843750, 72.395706 ], [ 147.656250, 72.395706 ], [ 147.656250, 72.181804 ], [ 149.765625, 72.181804 ], [ 149.765625, 71.746432 ], [ 150.468750, 71.746432 ], [ 150.468750, 71.300793 ], [ 151.171875, 71.300793 ], [ 151.171875, 71.074056 ], [ 152.578125, 71.074056 ], [ 152.578125, 70.844673 ], [ 155.390625, 70.844673 ], [ 155.390625, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 69.411242 ], [ 162.421875, 69.411242 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.411242 ], [ 167.343750, 69.411242 ], [ 167.343750, 69.657086 ], [ 168.046875, 69.657086 ], [ 168.046875, 69.411242 ], [ 168.750000, 69.411242 ], [ 168.750000, 68.911005 ], [ 169.453125, 68.911005 ], [ 169.453125, 68.656555 ], [ 170.859375, 68.656555 ], [ 170.859375, 69.162558 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 171.562500, 70.140364 ], [ 171.562500, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 65.658275 ], [ 93.515625, 65.658275 ], [ 93.515625, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.016094 ], [ 97.734375, 76.016094 ], [ 97.734375, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.351896 ], [ 100.546875, 76.351896 ], [ 100.546875, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.999935 ], [ 101.953125, 76.999935 ], [ 101.953125, 77.312520 ], [ 102.656250, 77.312520 ], [ 102.656250, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.617709 ], [ 104.765625, 77.617709 ] ] ], [ [ [ 180.000000, 71.300793 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 179.296875, 71.074056 ], [ 179.296875, 71.300793 ], [ 180.000000, 71.300793 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 142.031250, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.428424 ], [ 143.437500, 73.226700 ], [ 139.921875, 73.226700 ], [ 139.921875, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.824820 ], [ 142.031250, 73.824820 ] ] ], [ [ [ 139.218750, 76.184995 ], [ 139.218750, 76.016094 ], [ 141.328125, 76.016094 ], [ 141.328125, 75.845169 ], [ 142.734375, 75.845169 ], [ 142.734375, 75.672197 ], [ 144.140625, 75.672197 ], [ 144.140625, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 75.140778 ], [ 144.140625, 75.140778 ], [ 144.140625, 74.775843 ], [ 140.625000, 74.775843 ], [ 140.625000, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.672197 ], [ 137.812500, 75.672197 ], [ 137.812500, 76.016094 ], [ 138.515625, 76.016094 ], [ 138.515625, 76.184995 ], [ 139.218750, 76.184995 ] ] ], [ [ [ 146.953125, 75.497157 ], [ 146.953125, 75.320025 ], [ 149.062500, 75.320025 ], [ 149.062500, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.959392 ], [ 149.765625, 74.959392 ], [ 149.765625, 74.775843 ], [ 146.953125, 74.775843 ], [ 146.953125, 74.959392 ], [ 146.250000, 74.959392 ], [ 146.250000, 75.497157 ], [ 146.953125, 75.497157 ] ] ], [ [ [ 102.656250, 79.302640 ], [ 102.656250, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.468750, 78.767792 ], [ 105.468750, 78.490552 ], [ 104.765625, 78.490552 ], [ 104.765625, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.206563 ], [ 102.656250, 78.206563 ], [ 102.656250, 78.061989 ], [ 100.546875, 78.061989 ], [ 100.546875, 77.915669 ], [ 99.140625, 77.915669 ], [ 99.140625, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.490552 ], [ 100.546875, 78.490552 ], [ 100.546875, 78.903929 ], [ 101.250000, 78.903929 ], [ 101.250000, 79.171335 ], [ 101.953125, 79.171335 ], [ 101.953125, 79.302640 ], [ 102.656250, 79.302640 ] ] ], [ [ [ 96.328125, 81.093214 ], [ 96.328125, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.297927 ], [ 99.140625, 80.297927 ], [ 99.140625, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 78.903929 ], [ 99.140625, 78.903929 ], [ 99.140625, 78.767792 ], [ 96.328125, 78.767792 ], [ 96.328125, 78.903929 ], [ 94.921875, 78.903929 ], [ 94.921875, 79.038437 ], [ 94.218750, 79.038437 ], [ 94.218750, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 80.983688 ], [ 94.218750, 80.983688 ], [ 94.218750, 81.093214 ], [ 96.328125, 81.093214 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, 53.330873 ], [ 143.437500, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 144.843750, 49.382373 ], [ 144.843750, 48.922499 ], [ 143.437500, 48.922499 ], [ 143.437500, 48.458352 ], [ 142.734375, 48.458352 ], [ 142.734375, 47.517201 ], [ 143.437500, 47.517201 ], [ 143.437500, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 51.179343 ], [ 141.328125, 51.179343 ], [ 141.328125, 51.618017 ], [ 140.625000, 51.618017 ], [ 140.625000, 48.922499 ], [ 139.921875, 48.922499 ], [ 139.921875, 47.989922 ], [ 139.218750, 47.989922 ], [ 139.218750, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 45.583290 ], [ 137.812500, 45.583290 ], [ 137.812500, 45.089036 ], [ 137.109375, 45.089036 ], [ 137.109375, 44.590467 ], [ 136.406250, 44.590467 ], [ 136.406250, 44.087585 ], [ 135.703125, 44.087585 ], [ 135.703125, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.068888 ], [ 134.296875, 43.068888 ], [ 134.296875, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 43.068888 ], [ 131.484375, 43.068888 ], [ 131.484375, 44.590467 ], [ 130.781250, 44.590467 ], [ 130.781250, 45.089036 ], [ 132.890625, 45.089036 ], [ 132.890625, 45.583290 ], [ 133.593750, 45.583290 ], [ 133.593750, 46.558860 ], [ 134.296875, 46.558860 ], [ 134.296875, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.922499 ], [ 129.375000, 48.922499 ], [ 129.375000, 49.382373 ], [ 127.968750, 49.382373 ], [ 127.968750, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 51.179343 ], [ 126.562500, 51.179343 ], [ 126.562500, 52.052490 ], [ 125.859375, 52.052490 ], [ 125.859375, 52.908902 ], [ 125.156250, 52.908902 ], [ 125.156250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 52.482780 ], [ 120.937500, 52.482780 ], [ 120.937500, 51.618017 ], [ 120.234375, 51.618017 ], [ 120.234375, 51.179343 ], [ 119.531250, 51.179343 ], [ 119.531250, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 49.382373 ], [ 116.718750, 49.382373 ], [ 116.718750, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 49.382373 ], [ 111.796875, 49.382373 ], [ 111.796875, 48.922499 ], [ 109.687500, 48.922499 ], [ 109.687500, 49.382373 ], [ 107.578125, 49.382373 ], [ 107.578125, 49.837982 ], [ 106.875000, 49.837982 ], [ 106.875000, 50.289339 ], [ 101.953125, 50.289339 ], [ 101.953125, 51.179343 ], [ 100.546875, 51.179343 ], [ 100.546875, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 51.179343 ], [ 97.734375, 51.179343 ], [ 97.734375, 50.736455 ], [ 98.437500, 50.736455 ], [ 98.437500, 49.837982 ], [ 94.218750, 49.837982 ], [ 94.218750, 50.289339 ], [ 93.515625, 50.289339 ], [ 93.515625, 65.658275 ], [ 180.000000, 65.658275 ], [ 180.000000, 64.774125 ], [ 179.296875, 64.774125 ], [ 179.296875, 64.472794 ], [ 177.187500, 64.472794 ], [ 177.187500, 64.168107 ], [ 178.593750, 64.168107 ], [ 178.593750, 62.915233 ], [ 179.296875, 62.915233 ], [ 179.296875, 62.267923 ], [ 177.890625, 62.267923 ], [ 177.890625, 62.593341 ], [ 177.187500, 62.593341 ], [ 177.187500, 62.267923 ], [ 176.484375, 62.267923 ], [ 176.484375, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.606396 ], [ 173.671875, 61.606396 ], [ 173.671875, 61.270233 ], [ 172.968750, 61.270233 ], [ 172.968750, 60.930432 ], [ 172.265625, 60.930432 ], [ 172.265625, 60.586967 ], [ 171.562500, 60.586967 ], [ 171.562500, 60.239811 ], [ 170.859375, 60.239811 ], [ 170.859375, 59.888937 ], [ 169.453125, 59.888937 ], [ 169.453125, 60.239811 ], [ 167.343750, 60.239811 ], [ 167.343750, 59.888937 ], [ 163.828125, 59.888937 ], [ 163.828125, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.813742 ], [ 162.421875, 58.813742 ], [ 162.421875, 58.077876 ], [ 161.718750, 58.077876 ], [ 161.718750, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.421875, 56.170023 ], [ 162.421875, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.977614 ], [ 162.421875, 54.977614 ], [ 162.421875, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.162434 ], [ 160.312500, 54.162434 ], [ 160.312500, 53.330873 ], [ 159.609375, 53.330873 ], [ 159.609375, 52.908902 ], [ 158.203125, 52.908902 ], [ 158.203125, 51.618017 ], [ 157.500000, 51.618017 ], [ 157.500000, 51.179343 ], [ 156.093750, 51.179343 ], [ 156.093750, 54.162434 ], [ 155.390625, 54.162434 ], [ 155.390625, 56.170023 ], [ 156.093750, 56.170023 ], [ 156.093750, 56.944974 ], [ 156.796875, 56.944974 ], [ 156.796875, 57.704147 ], [ 158.203125, 57.704147 ], [ 158.203125, 58.077876 ], [ 158.906250, 58.077876 ], [ 158.906250, 58.447733 ], [ 159.609375, 58.447733 ], [ 159.609375, 58.813742 ], [ 160.312500, 58.813742 ], [ 160.312500, 59.175928 ], [ 161.015625, 59.175928 ], [ 161.015625, 59.888937 ], [ 161.718750, 59.888937 ], [ 161.718750, 60.239811 ], [ 162.421875, 60.239811 ], [ 162.421875, 60.586967 ], [ 163.125000, 60.586967 ], [ 163.125000, 60.930432 ], [ 163.828125, 60.930432 ], [ 163.828125, 61.938950 ], [ 164.531250, 61.938950 ], [ 164.531250, 62.593341 ], [ 163.125000, 62.593341 ], [ 163.125000, 61.938950 ], [ 162.421875, 61.938950 ], [ 162.421875, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.586967 ], [ 160.312500, 60.586967 ], [ 160.312500, 61.270233 ], [ 159.609375, 61.270233 ], [ 159.609375, 61.606396 ], [ 158.203125, 61.606396 ], [ 158.203125, 61.270233 ], [ 156.796875, 61.270233 ], [ 156.796875, 60.930432 ], [ 156.093750, 60.930432 ], [ 156.093750, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.239811 ], [ 154.687500, 60.239811 ], [ 154.687500, 59.888937 ], [ 153.984375, 59.888937 ], [ 153.984375, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.534318 ], [ 149.765625, 59.175928 ], [ 142.031250, 59.175928 ], [ 142.031250, 58.813742 ], [ 141.328125, 58.813742 ], [ 141.328125, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.704147 ], [ 139.921875, 57.704147 ], [ 139.921875, 56.944974 ], [ 139.218750, 56.944974 ], [ 139.218750, 56.559482 ], [ 138.515625, 56.559482 ], [ 138.515625, 56.170023 ], [ 137.812500, 56.170023 ], [ 137.812500, 55.776573 ], [ 137.109375, 55.776573 ], [ 137.109375, 55.379110 ], [ 136.406250, 55.379110 ], [ 136.406250, 54.977614 ], [ 135.703125, 54.977614 ], [ 135.703125, 54.572062 ], [ 136.406250, 54.572062 ], [ 136.406250, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 53.748711 ], [ 138.515625, 53.748711 ], [ 138.515625, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 52.908902 ], [ 141.328125, 52.908902 ], [ 141.328125, 52.482780 ], [ 142.031250, 52.482780 ], [ 142.031250, 53.330873 ], [ 143.437500, 53.330873 ] ] ], [ [ [ 142.734375, 53.748711 ], [ 142.031250, 53.748711 ], [ 142.031250, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.748711 ] ] ] ] } } , @@ -626,9 +626,9 @@ , { "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.330873 ], [ 7.031250, 52.052490 ], [ 6.328125, 52.052490 ], [ 6.328125, 50.736455 ], [ 5.625000, 50.736455 ], [ 5.625000, 51.179343 ], [ 3.515625, 51.179343 ], [ 3.515625, 51.618017 ], [ 4.218750, 51.618017 ], [ 4.218750, 52.482780 ], [ 4.921875, 52.482780 ], [ 4.921875, 52.908902 ], [ 6.328125, 52.908902 ], [ 6.328125, 53.330873 ], [ 7.031250, 53.330873 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.179343 ], [ 5.625000, 50.736455 ], [ 6.328125, 50.736455 ], [ 6.328125, 50.289339 ], [ 5.625000, 50.289339 ], [ 5.625000, 49.382373 ], [ 4.921875, 49.382373 ], [ 4.921875, 49.837982 ], [ 3.515625, 49.837982 ], [ 3.515625, 50.289339 ], [ 2.812500, 50.289339 ], [ 2.812500, 51.179343 ], [ 5.625000, 51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.179343 ], [ 5.625000, 50.736455 ], [ 6.328125, 50.736455 ], [ 6.328125, 50.289339 ], [ 5.625000, 50.289339 ], [ 5.625000, 49.382373 ], [ 4.921875, 49.382373 ], [ 4.921875, 49.837982 ], [ 3.515625, 49.837982 ], [ 3.515625, 50.289339 ], [ 2.812500, 51.179343 ], [ 5.625000, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 50.289339 ], [ 6.328125, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 50.289339 ], [ 6.328125, 50.289339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 50.289339 ], [ 6.328125, 49.382373 ], [ 5.625000, 49.382373 ], [ 6.328125, 50.289339 ] ] ] } } , { "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 13.359375, 54.162434 ], [ 13.359375, 53.748711 ], [ 14.062500, 53.748711 ], [ 14.062500, 52.482780 ], [ 14.765625, 52.482780 ], [ 14.765625, 51.179343 ], [ 14.062500, 51.179343 ], [ 14.062500, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.289339 ], [ 11.953125, 50.289339 ], [ 11.953125, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 49.382373 ], [ 13.359375, 49.382373 ], [ 13.359375, 48.458352 ], [ 12.656250, 48.458352 ], [ 12.656250, 47.989922 ], [ 13.359375, 47.989922 ], [ 13.359375, 47.517201 ], [ 7.734375, 47.517201 ], [ 7.734375, 48.458352 ], [ 8.437500, 48.458352 ], [ 8.437500, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 52.052490 ], [ 7.031250, 52.052490 ], [ 7.031250, 53.748711 ], [ 7.734375, 53.748711 ], [ 7.734375, 53.330873 ], [ 8.437500, 53.330873 ], [ 8.437500, 53.748711 ], [ 9.140625, 53.748711 ], [ 9.140625, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , @@ -636,11 +636,11 @@ , { "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 51.179343 ], [ 14.765625, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 48.922499 ], [ 16.875000, 48.922499 ], [ 16.875000, 48.458352 ], [ 16.171875, 48.458352 ], [ 16.171875, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 48.458352 ], [ 13.359375, 48.458352 ], [ 13.359375, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 49.837982 ], [ 11.953125, 49.837982 ], [ 11.953125, 50.289339 ], [ 13.359375, 50.289339 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 51.179343 ], [ 14.765625, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 54.572062 ], [ 19.687500, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 52.908902 ], [ 23.906250, 52.908902 ], [ 23.906250, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 21.796875, 48.922499 ], [ 21.796875, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.837982 ], [ 17.578125, 49.837982 ], [ 17.578125, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 14.765625, 50.736455 ], [ 14.765625, 52.482780 ], [ 14.062500, 52.482780 ], [ 14.062500, 53.748711 ], [ 14.765625, 53.748711 ], [ 14.765625, 54.162434 ], [ 16.171875, 54.162434 ], [ 16.171875, 54.572062 ], [ 19.687500, 54.572062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 54.572062 ], [ 19.687500, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 52.908902 ], [ 23.906250, 52.908902 ], [ 23.906250, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 21.796875, 48.922499 ], [ 21.796875, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.837982 ], [ 17.578125, 49.837982 ], [ 17.578125, 50.289339 ], [ 16.171875, 50.289339 ], [ 14.765625, 50.736455 ], [ 14.765625, 52.482780 ], [ 14.062500, 52.482780 ], [ 14.062500, 53.748711 ], [ 14.765625, 53.748711 ], [ 14.765625, 54.162434 ], [ 16.171875, 54.162434 ], [ 16.171875, 54.572062 ], [ 19.687500, 54.572062 ] ] ] } } , { "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 48.922499 ], [ 16.875000, 48.458352 ], [ 16.875000, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.558860 ], [ 11.953125, 46.558860 ], [ 11.953125, 47.040182 ], [ 11.250000, 47.040182 ], [ 11.250000, 46.558860 ], [ 10.546875, 46.558860 ], [ 10.546875, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 47.517201 ], [ 13.359375, 47.517201 ], [ 13.359375, 47.989922 ], [ 12.656250, 47.989922 ], [ 12.656250, 48.458352 ], [ 14.765625, 48.458352 ], [ 14.765625, 48.922499 ], [ 16.171875, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.558860 ], [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 45.583290 ], [ 13.359375, 45.583290 ], [ 14.062500, 46.558860 ], [ 16.875000, 46.558860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.558860 ], [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 45.583290 ], [ 14.062500, 45.583290 ], [ 14.062500, 46.558860 ], [ 16.875000, 46.558860 ] ] ] } } , { "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, 38.272689 ], [ 16.171875, 37.718590 ], [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ], [ 14.062500, 36.597889 ], [ 14.062500, 37.160317 ], [ 12.656250, 37.160317 ], [ 12.656250, 38.272689 ], [ 16.171875, 38.272689 ] ] ], [ [ [ 17.578125, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 39.909736 ], [ 16.171875, 39.909736 ], [ 16.171875, 39.368279 ], [ 16.875000, 39.368279 ], [ 16.875000, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 38.822591 ], [ 15.468750, 38.822591 ], [ 15.468750, 39.909736 ], [ 14.765625, 39.909736 ], [ 14.765625, 40.446947 ], [ 14.062500, 40.446947 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 44.087585 ], [ 8.437500, 44.087585 ], [ 8.437500, 43.580391 ], [ 7.734375, 43.580391 ], [ 7.734375, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 45.583290 ], [ 8.437500, 45.583290 ], [ 8.437500, 46.073231 ], [ 10.546875, 46.073231 ], [ 10.546875, 46.558860 ], [ 11.250000, 46.558860 ], [ 11.250000, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.073231 ], [ 13.359375, 46.073231 ], [ 13.359375, 45.583290 ], [ 12.656250, 45.583290 ], [ 12.656250, 44.590467 ], [ 11.953125, 44.590467 ], [ 11.953125, 44.087585 ], [ 12.656250, 44.087585 ], [ 12.656250, 43.580391 ], [ 13.359375, 43.580391 ], [ 13.359375, 43.068888 ], [ 14.062500, 43.068888 ], [ 14.062500, 42.032974 ], [ 16.171875, 42.032974 ], [ 16.171875, 40.979898 ], [ 17.578125, 40.979898 ], [ 17.578125, 40.446947 ] ] ], [ [ [ 9.140625, 40.979898 ], [ 9.140625, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.368279 ], [ 9.140625, 39.368279 ], [ 9.140625, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.140625, 40.979898 ] ] ], [ [ [ 17.578125, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.446947 ] ] ] ] } } , @@ -648,7 +648,7 @@ , { "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 48.458352 ], [ 21.796875, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 47.517201 ], [ 21.796875, 47.517201 ], [ 21.796875, 46.558860 ], [ 21.093750, 46.558860 ], [ 21.093750, 46.073231 ], [ 18.984375, 46.073231 ], [ 18.984375, 45.583290 ], [ 17.578125, 45.583290 ], [ 17.578125, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.558860 ], [ 16.171875, 46.558860 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 47.989922 ], [ 20.390625, 47.989922 ], [ 20.390625, 48.458352 ], [ 21.796875, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 49.382373 ], [ 21.796875, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 17.578125, 48.922499 ], [ 18.281250, 49.382373 ], [ 21.796875, 49.382373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 49.382373 ], [ 21.796875, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.458352 ], [ 18.281250, 49.382373 ], [ 21.796875, 49.382373 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 45.089036 ], [ 19.687500, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.580391 ], [ 18.984375, 43.580391 ], [ 18.984375, 42.553080 ], [ 17.578125, 42.553080 ], [ 17.578125, 43.580391 ], [ 16.171875, 43.580391 ], [ 16.171875, 45.089036 ], [ 19.687500, 45.089036 ] ] ] } } , @@ -658,7 +658,7 @@ , { "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 42.553080 ], [ 20.390625, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 40.446947 ], [ 20.390625, 40.446947 ], [ 20.390625, 39.368279 ], [ 19.687500, 39.368279 ], [ 19.687500, 40.446947 ], [ 18.984375, 40.446947 ], [ 18.984375, 40.979898 ], [ 19.687500, 40.979898 ], [ 19.687500, 42.553080 ], [ 20.390625, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 42.553080 ], [ 20.390625, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 40.446947 ], [ 20.390625, 40.446947 ], [ 20.390625, 39.368279 ], [ 19.687500, 39.368279 ], [ 19.687500, 40.446947 ], [ 18.984375, 40.446947 ], [ 18.984375, 40.979898 ], [ 19.687500, 40.979898 ], [ 19.687500, 42.032974 ], [ 20.390625, 42.553080 ] ] ] } } , { "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.553080 ], [ 22.500000, 42.032974 ], [ 23.203125, 42.032974 ], [ 23.203125, 41.508577 ], [ 22.500000, 41.508577 ], [ 22.500000, 40.979898 ], [ 20.390625, 40.979898 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.032974 ], [ 21.796875, 42.553080 ], [ 22.500000, 42.553080 ] ] ] } } , @@ -668,19 +668,19 @@ , { "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 57.326521 ], [ 25.312500, 57.326521 ], [ 25.312500, 58.077876 ], [ 24.609375, 57.704147 ], [ 24.609375, 58.077876 ], [ 23.203125, 58.077876 ], [ 23.203125, 59.175928 ], [ 24.609375, 59.175928 ], [ 24.609375, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.170023 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.572062 ], [ 25.312500, 54.572062 ], [ 25.312500, 53.748711 ], [ 23.203125, 53.748711 ], [ 23.203125, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 56.170023 ], [ 25.312500, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.170023 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.572062 ], [ 25.312500, 54.572062 ], [ 25.312500, 53.748711 ], [ 23.203125, 53.748711 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 56.170023 ], [ 25.312500, 56.170023 ] ] ] } } , { "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, 55.776573 ], [ 30.234375, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 54.572062 ], [ 31.640625, 54.572062 ], [ 31.640625, 53.748711 ], [ 32.343750, 53.748711 ], [ 32.343750, 53.330873 ], [ 31.640625, 53.330873 ], [ 31.640625, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.179343 ], [ 28.828125, 51.179343 ], [ 28.828125, 51.618017 ], [ 25.312500, 51.618017 ], [ 25.312500, 52.052490 ], [ 24.609375, 52.052490 ], [ 24.609375, 51.618017 ], [ 23.203125, 51.618017 ], [ 23.203125, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 52.908902 ], [ 23.203125, 52.908902 ], [ 23.203125, 53.748711 ], [ 25.312500, 53.748711 ], [ 25.312500, 54.572062 ], [ 26.015625, 54.572062 ], [ 26.015625, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.776573 ], [ 30.234375, 55.776573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 47.989922 ], [ 27.421875, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.590467 ], [ 28.828125, 44.590467 ], [ 28.828125, 43.580391 ], [ 27.421875, 43.580391 ], [ 27.421875, 44.087585 ], [ 26.015625, 44.087585 ], [ 26.015625, 43.580391 ], [ 22.500000, 43.580391 ], [ 22.500000, 44.590467 ], [ 21.796875, 44.590467 ], [ 21.796875, 45.089036 ], [ 21.093750, 45.089036 ], [ 21.093750, 45.583290 ], [ 20.390625, 45.583290 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.558860 ], [ 21.796875, 46.558860 ], [ 21.796875, 47.517201 ], [ 22.500000, 47.989922 ], [ 24.609375, 47.989922 ], [ 24.609375, 47.517201 ], [ 25.312500, 47.517201 ], [ 25.312500, 47.989922 ], [ 27.421875, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 47.989922 ], [ 27.421875, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.590467 ], [ 28.828125, 44.590467 ], [ 28.828125, 43.580391 ], [ 27.421875, 43.580391 ], [ 27.421875, 44.087585 ], [ 26.015625, 44.087585 ], [ 26.015625, 43.580391 ], [ 22.500000, 43.580391 ], [ 22.500000, 44.590467 ], [ 21.796875, 44.590467 ], [ 21.796875, 45.089036 ], [ 21.093750, 45.089036 ], [ 21.093750, 45.583290 ], [ 20.390625, 45.583290 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.558860 ], [ 21.796875, 46.558860 ], [ 21.796875, 47.040182 ], [ 22.500000, 47.989922 ], [ 24.609375, 47.989922 ], [ 24.609375, 47.517201 ], [ 25.312500, 47.517201 ], [ 25.312500, 47.989922 ], [ 27.421875, 47.989922 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 44.087585 ], [ 27.421875, 43.580391 ], [ 28.828125, 43.580391 ], [ 28.828125, 43.068888 ], [ 28.125000, 43.068888 ], [ 28.125000, 42.553080 ], [ 27.421875, 42.553080 ], [ 27.421875, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 41.508577 ], [ 23.203125, 41.508577 ], [ 23.203125, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 43.580391 ], [ 26.015625, 43.580391 ], [ 26.015625, 44.087585 ], [ 27.421875, 44.087585 ] ] ] } } , { "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.421875, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 47.517201 ], [ 29.531250, 47.517201 ], [ 29.531250, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 47.040182 ], [ 27.421875, 47.040182 ], [ 27.421875, 47.989922 ] ] ], [ [ [ 27.421875, 47.989922 ], [ 26.718750, 47.989922 ], [ 26.718750, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 47.989922 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 52.052490 ], [ 34.453125, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 49.837982 ], [ 38.671875, 49.837982 ], [ 38.671875, 49.382373 ], [ 40.078125, 49.382373 ], [ 40.078125, 48.922499 ], [ 39.375000, 48.922499 ], [ 39.375000, 48.458352 ], [ 40.078125, 48.458352 ], [ 40.078125, 47.989922 ], [ 38.671875, 47.989922 ], [ 38.671875, 47.517201 ], [ 37.968750, 47.517201 ], [ 37.968750, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.558860 ], [ 35.859375, 46.558860 ], [ 35.859375, 46.073231 ], [ 35.156250, 46.073231 ], [ 35.156250, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.089036 ], [ 35.156250, 45.089036 ], [ 35.156250, 44.590467 ], [ 33.750000, 44.590467 ], [ 33.750000, 45.089036 ], [ 32.343750, 45.089036 ], [ 32.343750, 45.583290 ], [ 33.750000, 45.583290 ], [ 33.750000, 46.073231 ], [ 31.640625, 46.073231 ], [ 31.640625, 46.558860 ], [ 30.937500, 46.558860 ], [ 30.937500, 46.073231 ], [ 30.234375, 46.073231 ], [ 30.234375, 45.583290 ], [ 29.531250, 45.583290 ], [ 29.531250, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 45.583290 ], [ 28.828125, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.531250, 46.558860 ], [ 29.531250, 47.517201 ], [ 28.828125, 47.517201 ], [ 28.828125, 47.989922 ], [ 27.421875, 47.989922 ], [ 27.421875, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 47.517201 ], [ 24.609375, 47.517201 ], [ 24.609375, 47.989922 ], [ 21.796875, 47.989922 ], [ 21.796875, 48.458352 ], [ 22.500000, 48.458352 ], [ 22.500000, 49.837982 ], [ 23.203125, 49.837982 ], [ 23.203125, 50.289339 ], [ 23.906250, 50.289339 ], [ 23.906250, 51.179343 ], [ 23.203125, 51.179343 ], [ 23.203125, 51.618017 ], [ 24.609375, 51.618017 ], [ 24.609375, 52.052490 ], [ 25.312500, 52.052490 ], [ 25.312500, 51.618017 ], [ 28.828125, 51.618017 ], [ 28.828125, 51.179343 ], [ 30.234375, 51.179343 ], [ 30.937500, 52.052490 ], [ 34.453125, 52.052490 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 52.052490 ], [ 34.453125, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 49.837982 ], [ 38.671875, 49.837982 ], [ 38.671875, 49.382373 ], [ 40.078125, 49.382373 ], [ 40.078125, 48.922499 ], [ 39.375000, 48.922499 ], [ 39.375000, 48.458352 ], [ 40.078125, 48.458352 ], [ 40.078125, 47.989922 ], [ 38.671875, 47.989922 ], [ 38.671875, 47.517201 ], [ 37.968750, 47.517201 ], [ 37.968750, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.558860 ], [ 35.859375, 46.558860 ], [ 35.859375, 46.073231 ], [ 35.156250, 46.073231 ], [ 35.156250, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.089036 ], [ 35.156250, 45.089036 ], [ 35.156250, 44.590467 ], [ 33.750000, 44.590467 ], [ 33.750000, 45.089036 ], [ 32.343750, 45.089036 ], [ 32.343750, 45.583290 ], [ 33.750000, 45.583290 ], [ 33.750000, 46.073231 ], [ 31.640625, 46.073231 ], [ 31.640625, 46.558860 ], [ 30.937500, 46.558860 ], [ 30.937500, 46.073231 ], [ 30.234375, 46.073231 ], [ 30.234375, 45.583290 ], [ 29.531250, 45.583290 ], [ 29.531250, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 45.583290 ], [ 28.828125, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.531250, 46.558860 ], [ 29.531250, 47.517201 ], [ 28.828125, 47.517201 ], [ 28.828125, 47.989922 ], [ 27.421875, 47.989922 ], [ 27.421875, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 47.517201 ], [ 24.609375, 47.517201 ], [ 24.609375, 47.989922 ], [ 21.796875, 47.989922 ], [ 21.796875, 48.458352 ], [ 22.500000, 48.458352 ], [ 22.500000, 49.837982 ], [ 23.203125, 49.837982 ], [ 23.203125, 50.289339 ], [ 23.906250, 50.289339 ], [ 23.906250, 51.179343 ], [ 23.203125, 51.179343 ], [ 23.203125, 51.618017 ], [ 24.609375, 51.618017 ], [ 24.609375, 52.052490 ], [ 25.312500, 52.052490 ], [ 25.312500, 51.618017 ], [ 28.828125, 51.618017 ], [ 28.828125, 51.179343 ], [ 30.234375, 51.179343 ], [ 30.234375, 51.618017 ], [ 30.937500, 52.052490 ], [ 34.453125, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.781250, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 42.553080 ], [ 45.703125, 42.553080 ], [ 45.703125, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 40.979898 ], [ 42.890625, 40.979898 ], [ 42.890625, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 42.553080 ], [ 40.781250, 42.553080 ], [ 40.781250, 43.068888 ] ] ], [ [ [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.580391 ], [ 40.781250, 43.580391 ], [ 40.781250, 43.068888 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.781250, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 42.553080 ], [ 45.703125, 42.553080 ], [ 45.703125, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 40.979898 ], [ 42.890625, 40.979898 ], [ 41.484375, 41.508577 ], [ 41.484375, 42.553080 ], [ 40.781250, 42.553080 ], [ 40.781250, 43.068888 ] ] ], [ [ [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.580391 ], [ 40.781250, 43.580391 ], [ 40.781250, 43.068888 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.546875, 37.160317 ], [ 10.546875, 35.460670 ], [ 11.250000, 35.460670 ], [ 11.250000, 34.885931 ], [ 10.546875, 34.885931 ], [ 10.546875, 34.307144 ], [ 9.843750, 34.307144 ], [ 9.843750, 33.724340 ], [ 10.546875, 33.724340 ], [ 10.546875, 33.137551 ], [ 11.250000, 33.137551 ], [ 11.250000, 31.952162 ], [ 10.546875, 31.952162 ], [ 10.546875, 31.353637 ], [ 9.843750, 31.353637 ], [ 9.843750, 30.145127 ], [ 9.140625, 30.145127 ], [ 9.140625, 31.952162 ], [ 8.437500, 31.952162 ], [ 8.437500, 32.546813 ], [ 7.734375, 32.546813 ], [ 7.734375, 34.307144 ], [ 8.437500, 34.307144 ], [ 8.437500, 37.160317 ], [ 10.546875, 37.160317 ] ] ] } } , @@ -700,7 +700,7 @@ , { "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 22.593726 ], [ 17.578125, 21.943046 ], [ 18.984375, 21.943046 ], [ 18.984375, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 13.239945 ], [ 21.796875, 13.239945 ], [ 21.796875, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 9.795678 ], [ 21.093750, 9.795678 ], [ 21.093750, 9.102097 ], [ 18.984375, 9.102097 ], [ 18.984375, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.710992 ], [ 15.468750, 7.710992 ], [ 15.468750, 8.407168 ], [ 14.765625, 8.407168 ], [ 14.765625, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 13.239945 ], [ 14.062500, 13.239945 ], [ 14.062500, 13.923404 ], [ 13.359375, 13.923404 ], [ 13.359375, 15.284185 ], [ 14.062500, 15.284185 ], [ 14.062500, 15.961329 ], [ 15.468750, 15.961329 ], [ 15.468750, 19.973349 ], [ 16.171875, 19.973349 ], [ 16.171875, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.289374 ], [ 14.765625, 21.289374 ], [ 14.765625, 22.593726 ], [ 17.578125, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.468750, 10.487812 ], [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.765625, 9.102097 ], [ 14.765625, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 7.013668 ], [ 14.765625, 7.013668 ], [ 14.765625, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 2.811371 ], [ 9.140625, 2.811371 ], [ 9.140625, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.140625, 5.615986 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.315299 ], [ 11.953125, 6.315299 ], [ 11.953125, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.359375, 9.102097 ], [ 13.359375, 10.487812 ], [ 14.062500, 10.487812 ], [ 14.062500, 11.178402 ], [ 14.765625, 11.178402 ] ] ], [ [ [ 14.765625, 11.867351 ], [ 14.062500, 11.867351 ], [ 14.062500, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.468750, 10.487812 ], [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.765625, 9.102097 ], [ 14.765625, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 7.013668 ], [ 14.765625, 7.013668 ], [ 14.765625, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 2.811371 ], [ 9.140625, 2.811371 ], [ 9.140625, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.140625, 5.615986 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.315299 ], [ 11.953125, 6.315299 ], [ 11.953125, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.359375, 9.102097 ], [ 13.359375, 10.487812 ], [ 14.062500, 10.487812 ], [ 14.062500, 11.178402 ], [ 14.765625, 11.178402 ] ] ], [ [ [ 14.765625, 11.867351 ], [ 14.062500, 11.867351 ], [ 14.062500, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 11.178402 ], [ 23.203125, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 9.102097 ], [ 23.203125, 9.102097 ], [ 23.203125, 8.407168 ], [ 24.609375, 8.407168 ], [ 24.609375, 7.710992 ], [ 25.312500, 7.710992 ], [ 25.312500, 7.013668 ], [ 26.015625, 7.013668 ], [ 26.015625, 5.615986 ], [ 27.421875, 5.615986 ], [ 27.421875, 4.915833 ], [ 22.500000, 4.915833 ], [ 22.500000, 4.214943 ], [ 20.390625, 4.214943 ], [ 20.390625, 4.915833 ], [ 18.984375, 4.915833 ], [ 18.984375, 4.214943 ], [ 18.281250, 4.214943 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 14.765625, 3.513421 ], [ 14.765625, 6.315299 ], [ 15.468750, 7.710992 ], [ 18.281250, 7.710992 ], [ 18.281250, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 9.102097 ], [ 21.093750, 9.102097 ], [ 21.093750, 9.795678 ], [ 21.796875, 9.795678 ], [ 21.796875, 10.487812 ], [ 22.500000, 10.487812 ], [ 22.500000, 11.178402 ], [ 23.203125, 11.178402 ] ] ] } } , @@ -722,7 +722,7 @@ , { "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 31.952162 ], [ 35.156250, 30.145127 ], [ 34.453125, 30.145127 ], [ 34.453125, 31.952162 ], [ 35.156250, 31.952162 ] ] ], [ [ [ 35.859375, 32.546813 ], [ 35.156250, 32.546813 ], [ 35.156250, 33.137551 ], [ 35.859375, 33.137551 ], [ 35.859375, 32.546813 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 32.546813 ], [ 35.859375, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 32.546813 ], [ 35.859375, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 31.952162 ], [ 35.859375, 32.546813 ] ] ] } } , { "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.546813 ], [ 39.375000, 32.546813 ], [ 39.375000, 31.952162 ], [ 38.671875, 31.952162 ], [ 38.671875, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 30.145127 ], [ 36.562500, 30.145127 ], [ 36.562500, 28.921631 ], [ 35.156250, 28.921631 ], [ 35.156250, 31.353637 ], [ 35.859375, 31.353637 ], [ 35.859375, 32.546813 ], [ 37.968750, 32.546813 ], [ 37.968750, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } , @@ -738,7 +738,7 @@ , { "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 5.615986 ], [ 35.859375, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 3.513421 ], [ 40.781250, 3.513421 ], [ 40.781250, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.513421 ], [ 37.968750, -3.513421 ], [ 37.968750, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 34.453125, -2.108899 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 34.453125, 0.000000 ], [ 34.453125, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.453125, 2.108899 ], [ 34.453125, 3.513421 ], [ 33.750000, 3.513421 ], [ 33.750000, 4.214943 ], [ 34.453125, 4.214943 ], [ 34.453125, 4.915833 ], [ 35.156250, 4.915833 ], [ 35.156250, 5.615986 ], [ 35.859375, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 14.604847 ], [ 40.078125, 13.923404 ], [ 41.484375, 13.923404 ], [ 41.484375, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 11.867351 ], [ 41.484375, 11.867351 ], [ 41.484375, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 9.102097 ], [ 44.296875, 9.102097 ], [ 44.296875, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 7.710992 ], [ 47.812500, 7.710992 ], [ 47.812500, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 6.315299 ], [ 46.406250, 6.315299 ], [ 46.406250, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.513421 ], [ 36.562500, 3.513421 ], [ 36.562500, 4.214943 ], [ 35.859375, 4.214943 ], [ 35.859375, 5.615986 ], [ 34.453125, 5.615986 ], [ 34.453125, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 9.795678 ], [ 34.453125, 9.795678 ], [ 34.453125, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 11.867351 ], [ 35.859375, 11.867351 ], [ 35.859375, 12.554564 ], [ 36.562500, 12.554564 ], [ 36.562500, 13.923404 ], [ 37.265625, 14.604847 ], [ 40.078125, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 14.604847 ], [ 40.078125, 13.923404 ], [ 41.484375, 13.923404 ], [ 41.484375, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 11.867351 ], [ 41.484375, 11.867351 ], [ 41.484375, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 9.102097 ], [ 44.296875, 9.102097 ], [ 44.296875, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 7.710992 ], [ 47.812500, 7.710992 ], [ 47.812500, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 6.315299 ], [ 46.406250, 6.315299 ], [ 46.406250, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.513421 ], [ 36.562500, 3.513421 ], [ 36.562500, 4.214943 ], [ 35.859375, 4.214943 ], [ 35.859375, 5.615986 ], [ 34.453125, 5.615986 ], [ 34.453125, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 9.795678 ], [ 34.453125, 9.795678 ], [ 34.453125, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 11.867351 ], [ 35.859375, 11.867351 ], [ 35.859375, 12.554564 ], [ 36.562500, 12.554564 ], [ 36.562500, 14.604847 ], [ 40.078125, 14.604847 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.609375, 55.379110 ], [ 69.609375, 54.977614 ], [ 71.015625, 54.977614 ], [ 71.015625, 54.162434 ], [ 73.828125, 54.162434 ], [ 73.828125, 53.748711 ], [ 73.125000, 53.748711 ], [ 73.125000, 53.330873 ], [ 74.531250, 53.330873 ], [ 74.531250, 53.748711 ], [ 75.234375, 53.748711 ], [ 75.234375, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 52.908902 ], [ 78.750000, 52.908902 ], [ 78.750000, 52.052490 ], [ 79.453125, 52.052490 ], [ 79.453125, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.736455 ], [ 83.671875, 50.736455 ], [ 83.671875, 50.289339 ], [ 85.078125, 50.289339 ], [ 85.078125, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.484375, 48.922499 ], [ 86.484375, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.040182 ], [ 83.671875, 47.040182 ], [ 83.671875, 47.517201 ], [ 82.968750, 47.517201 ], [ 82.968750, 46.558860 ], [ 82.265625, 46.558860 ], [ 82.265625, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 44.087585 ], [ 80.859375, 44.087585 ], [ 80.859375, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 42.553080 ], [ 72.421875, 42.553080 ], [ 72.421875, 43.068888 ], [ 71.718750, 43.068888 ], [ 71.718750, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.446947 ], [ 68.203125, 40.446947 ], [ 68.203125, 40.979898 ], [ 66.796875, 40.979898 ], [ 66.796875, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 43.580391 ], [ 61.875000, 43.580391 ], [ 61.875000, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.590467 ], [ 59.765625, 44.590467 ], [ 59.765625, 45.089036 ], [ 58.359375, 45.089036 ], [ 58.359375, 45.583290 ], [ 57.656250, 45.583290 ], [ 57.656250, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 41.508577 ], [ 54.843750, 41.508577 ], [ 54.843750, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 42.553080 ], [ 51.328125, 42.553080 ], [ 51.328125, 43.580391 ], [ 50.625000, 43.580391 ], [ 50.625000, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.089036 ], [ 52.734375, 45.089036 ], [ 52.734375, 45.583290 ], [ 53.437500, 45.583290 ], [ 53.437500, 46.558860 ], [ 52.734375, 46.558860 ], [ 52.734375, 47.040182 ], [ 51.328125, 47.040182 ], [ 51.328125, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.517201 ], [ 47.109375, 47.517201 ], [ 47.109375, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 48.458352 ], [ 47.109375, 48.458352 ], [ 47.109375, 48.922499 ], [ 46.406250, 48.922499 ], [ 46.406250, 49.382373 ], [ 47.109375, 49.382373 ], [ 47.109375, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 51.179343 ], [ 50.625000, 51.179343 ], [ 50.625000, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.179343 ], [ 54.843750, 51.179343 ], [ 54.843750, 50.736455 ], [ 56.953125, 50.736455 ], [ 56.953125, 51.179343 ], [ 58.359375, 51.179343 ], [ 58.359375, 50.736455 ], [ 61.875000, 50.736455 ], [ 61.875000, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.618017 ], [ 59.765625, 51.618017 ], [ 59.765625, 52.052490 ], [ 61.171875, 52.052490 ], [ 61.171875, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 52.908902 ], [ 61.875000, 52.908902 ], [ 61.875000, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 54.162434 ], [ 65.390625, 54.162434 ], [ 65.390625, 54.572062 ], [ 67.500000, 54.572062 ], [ 67.500000, 54.977614 ], [ 68.906250, 54.977614 ], [ 68.906250, 55.379110 ], [ 69.609375, 55.379110 ] ] ] } } , @@ -752,7 +752,7 @@ , { "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.368279 ], [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 38.272689 ], [ 49.218750, 38.272689 ], [ 49.218750, 37.160317 ], [ 49.921875, 37.160317 ], [ 49.921875, 36.597889 ], [ 52.031250, 36.597889 ], [ 53.437500, 37.160317 ], [ 55.546875, 37.160317 ], [ 55.546875, 37.718590 ], [ 56.953125, 37.718590 ], [ 56.953125, 38.272689 ], [ 57.656250, 38.272689 ], [ 57.656250, 37.718590 ], [ 58.359375, 37.718590 ], [ 58.359375, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 36.597889 ], [ 61.171875, 36.597889 ], [ 61.171875, 34.885931 ], [ 60.468750, 34.885931 ], [ 60.468750, 33.724340 ], [ 61.171875, 33.724340 ], [ 61.171875, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.546813 ], [ 61.171875, 32.546813 ], [ 61.171875, 31.353637 ], [ 61.875000, 31.353637 ], [ 61.875000, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 28.921631 ], [ 61.875000, 28.921631 ], [ 61.875000, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.431228 ], [ 61.875000, 26.431228 ], [ 61.875000, 25.799891 ], [ 61.171875, 25.799891 ], [ 61.171875, 25.165173 ], [ 58.359375, 25.165173 ], [ 58.359375, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.546875, 27.059126 ], [ 55.546875, 26.431228 ], [ 53.437500, 26.431228 ], [ 53.437500, 27.059126 ], [ 52.734375, 27.059126 ], [ 52.734375, 27.683528 ], [ 51.328125, 27.683528 ], [ 51.328125, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 49.921875, 29.535230 ], [ 49.921875, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 31.952162 ], [ 47.109375, 31.952162 ], [ 47.109375, 32.546813 ], [ 46.406250, 32.546813 ], [ 46.406250, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 34.885931 ], [ 46.406250, 34.885931 ], [ 46.406250, 35.460670 ], [ 45.703125, 35.460670 ], [ 45.703125, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ] ] ], [ [ [ 48.515625, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 39.368279 ], [ 48.515625, 39.368279 ], [ 48.515625, 38.822591 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 48.515625, 28.921631 ], [ 48.515625, 28.304381 ], [ 47.109375, 28.304381 ], [ 47.109375, 28.921631 ], [ 46.406250, 28.921631 ], [ 46.406250, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 48.515625, 28.921631 ], [ 48.515625, 28.304381 ], [ 47.109375, 28.304381 ], [ 47.109375, 28.921631 ], [ 46.406250, 28.921631 ], [ 46.406250, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.812500, 30.145127 ] ] ] } } , { "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 31.952162 ], [ 40.781250, 31.353637 ], [ 42.187500, 31.353637 ], [ 42.187500, 30.751278 ], [ 42.890625, 30.751278 ], [ 42.890625, 30.145127 ], [ 43.593750, 30.145127 ], [ 43.593750, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 28.921631 ], [ 47.109375, 28.921631 ], [ 47.109375, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.683528 ], [ 49.218750, 27.683528 ], [ 49.218750, 26.431228 ], [ 49.921875, 26.431228 ], [ 49.921875, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 23.241346 ], [ 52.734375, 23.241346 ], [ 52.734375, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 19.973349 ], [ 54.140625, 19.973349 ], [ 54.140625, 19.311143 ], [ 51.328125, 19.311143 ], [ 51.328125, 18.646245 ], [ 49.218750, 18.646245 ], [ 49.218750, 17.978733 ], [ 48.515625, 17.978733 ], [ 48.515625, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 16.636192 ], [ 46.406250, 16.636192 ], [ 46.406250, 17.308688 ], [ 42.890625, 17.308688 ], [ 42.890625, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.308688 ], [ 41.484375, 17.308688 ], [ 41.484375, 18.646245 ], [ 40.781250, 18.646245 ], [ 40.781250, 19.311143 ], [ 40.078125, 19.311143 ], [ 40.078125, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 23.241346 ], [ 38.671875, 23.241346 ], [ 38.671875, 23.885838 ], [ 37.265625, 23.885838 ], [ 37.265625, 25.799891 ], [ 36.562500, 25.799891 ], [ 36.562500, 27.059126 ], [ 35.859375, 27.059126 ], [ 35.859375, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 28.921631 ], [ 36.562500, 28.921631 ], [ 36.562500, 30.145127 ], [ 37.968750, 30.145127 ], [ 37.968750, 30.751278 ], [ 37.265625, 30.751278 ], [ 37.265625, 31.353637 ], [ 38.671875, 31.353637 ], [ 38.671875, 31.952162 ], [ 40.781250, 31.952162 ] ] ] } } , @@ -790,9 +790,9 @@ , { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.156250, 53.330873 ], [ 125.156250, 52.908902 ], [ 125.859375, 52.908902 ], [ 125.859375, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.179343 ], [ 127.265625, 51.179343 ], [ 127.265625, 50.289339 ], [ 127.968750, 50.289339 ], [ 127.968750, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 48.922499 ], [ 130.781250, 48.922499 ], [ 130.781250, 47.989922 ], [ 134.296875, 47.989922 ], [ 134.296875, 46.558860 ], [ 133.593750, 46.558860 ], [ 133.593750, 45.583290 ], [ 132.890625, 45.583290 ], [ 132.890625, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 44.590467 ], [ 131.484375, 44.590467 ], [ 131.484375, 43.068888 ], [ 130.781250, 43.068888 ], [ 130.781250, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.508577 ], [ 125.859375, 41.508577 ], [ 125.859375, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 38.822591 ], [ 121.640625, 38.822591 ], [ 121.640625, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 40.446947 ], [ 120.937500, 40.446947 ], [ 120.937500, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.368279 ], [ 118.125000, 39.368279 ], [ 118.125000, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.272689 ], [ 118.125000, 38.272689 ], [ 118.125000, 37.718590 ], [ 118.828125, 37.718590 ], [ 118.828125, 37.160317 ], [ 120.937500, 37.160317 ], [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 34.885931 ], [ 118.828125, 34.885931 ], [ 118.828125, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.937500, 33.724340 ], [ 120.937500, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 30.145127 ], [ 121.640625, 30.145127 ], [ 121.640625, 29.535230 ], [ 122.343750, 29.535230 ], [ 122.343750, 28.921631 ], [ 121.640625, 28.921631 ], [ 121.640625, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 27.683528 ], [ 120.234375, 27.683528 ], [ 120.234375, 26.431228 ], [ 119.531250, 26.431228 ], [ 119.531250, 25.165173 ], [ 118.828125, 25.165173 ], [ 118.828125, 23.885838 ], [ 117.421875, 23.885838 ], [ 117.421875, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 22.593726 ], [ 114.609375, 22.593726 ], [ 114.609375, 21.943046 ], [ 113.203125, 21.943046 ], [ 113.203125, 21.289374 ], [ 111.093750, 21.289374 ], [ 111.093750, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 19.973349 ], [ 111.093750, 19.973349 ], [ 111.093750, 19.311143 ], [ 110.390625, 19.311143 ], [ 110.390625, 17.978733 ], [ 108.984375, 17.978733 ], [ 108.984375, 18.646245 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.311143 ], [ 108.984375, 19.311143 ], [ 108.984375, 19.973349 ], [ 109.687500, 19.973349 ], [ 109.687500, 21.289374 ], [ 106.875000, 21.289374 ], [ 106.875000, 22.593726 ], [ 101.953125, 22.593726 ], [ 101.953125, 21.289374 ], [ 99.843750, 21.289374 ], [ 99.843750, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.843750, 22.593726 ], [ 99.843750, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 23.885838 ], [ 97.734375, 23.885838 ], [ 97.734375, 25.165173 ], [ 98.437500, 25.165173 ], [ 98.437500, 27.683528 ], [ 97.734375, 27.683528 ], [ 97.734375, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 28.921631 ], [ 93.515625, 28.921631 ], [ 93.515625, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.683528 ], [ 85.781250, 27.683528 ], [ 85.781250, 28.304381 ], [ 85.078125, 28.304381 ], [ 85.078125, 28.921631 ], [ 83.671875, 28.921631 ], [ 83.671875, 29.535230 ], [ 82.265625, 29.535230 ], [ 82.265625, 30.145127 ], [ 79.453125, 30.145127 ], [ 79.453125, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 32.546813 ], [ 79.453125, 32.546813 ], [ 79.453125, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.460670 ], [ 76.640625, 35.460670 ], [ 76.640625, 36.031332 ], [ 75.937500, 36.031332 ], [ 75.937500, 36.597889 ], [ 75.234375, 36.597889 ], [ 75.234375, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 38.272689 ], [ 73.828125, 38.272689 ], [ 73.828125, 39.909736 ], [ 74.531250, 39.909736 ], [ 74.531250, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.979898 ], [ 78.750000, 40.979898 ], [ 78.750000, 41.508577 ], [ 80.156250, 41.508577 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 45.089036 ], [ 82.265625, 45.089036 ], [ 82.265625, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.517201 ], [ 83.671875, 47.517201 ], [ 83.671875, 47.040182 ], [ 85.781250, 47.040182 ], [ 85.781250, 48.458352 ], [ 86.484375, 48.458352 ], [ 86.484375, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.382373 ], [ 87.890625, 49.382373 ], [ 87.890625, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 45.089036 ], [ 93.515625, 45.089036 ], [ 93.515625, 44.590467 ], [ 94.921875, 44.590467 ], [ 94.921875, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 42.553080 ], [ 101.953125, 42.553080 ], [ 101.953125, 42.032974 ], [ 104.765625, 42.032974 ], [ 104.765625, 41.508577 ], [ 106.171875, 41.508577 ], [ 106.171875, 42.032974 ], [ 107.578125, 42.032974 ], [ 107.578125, 42.553080 ], [ 110.390625, 42.553080 ], [ 110.390625, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.093750, 44.087585 ], [ 111.093750, 44.590467 ], [ 111.796875, 44.590467 ], [ 111.796875, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 44.590467 ], [ 113.906250, 44.590467 ], [ 113.906250, 45.089036 ], [ 114.609375, 45.089036 ], [ 114.609375, 45.583290 ], [ 116.015625, 45.583290 ], [ 116.015625, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.558860 ], [ 119.531250, 46.558860 ], [ 119.531250, 47.040182 ], [ 118.828125, 47.040182 ], [ 118.828125, 47.517201 ], [ 115.312500, 47.517201 ], [ 115.312500, 48.458352 ], [ 116.015625, 48.458352 ], [ 116.015625, 49.382373 ], [ 118.828125, 49.382373 ], [ 118.828125, 49.837982 ], [ 119.531250, 49.837982 ], [ 119.531250, 51.179343 ], [ 120.234375, 51.179343 ], [ 120.234375, 51.618017 ], [ 120.937500, 51.618017 ], [ 120.937500, 52.482780 ], [ 120.234375, 52.482780 ], [ 120.234375, 52.908902 ], [ 120.937500, 52.908902 ], [ 120.937500, 53.330873 ], [ 125.156250, 53.330873 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 13.923404 ], [ 97.734375, 13.923404 ], [ 97.734375, 15.961329 ], [ 97.031250, 15.961329 ], [ 97.031250, 16.636192 ], [ 96.328125, 16.636192 ], [ 96.328125, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 18.646245 ], [ 93.515625, 18.646245 ], [ 93.515625, 19.973349 ], [ 92.109375, 19.973349 ], [ 92.109375, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.515625, 21.943046 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.527135 ], [ 94.921875, 24.527135 ], [ 94.921875, 26.431228 ], [ 96.328125, 26.431228 ], [ 96.328125, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 97.734375, 28.304381 ], [ 97.734375, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 19.973349 ], [ 98.437500, 19.973349 ], [ 98.437500, 19.311143 ], [ 97.734375, 19.311143 ], [ 97.734375, 18.646245 ], [ 97.031250, 18.646245 ], [ 97.031250, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 15.961329 ], [ 99.140625, 15.961329 ], [ 99.140625, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 98.437500, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 11.867351 ], [ 99.843750, 11.867351 ], [ 99.843750, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.437500, 10.487812 ], [ 98.437500, 13.923404 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 13.923404 ], [ 97.734375, 13.923404 ], [ 97.734375, 15.961329 ], [ 97.031250, 15.961329 ], [ 97.031250, 16.636192 ], [ 96.328125, 16.636192 ], [ 96.328125, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 18.646245 ], [ 93.515625, 18.646245 ], [ 93.515625, 19.973349 ], [ 92.109375, 19.973349 ], [ 92.109375, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.515625, 21.943046 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.527135 ], [ 94.921875, 24.527135 ], [ 94.921875, 26.431228 ], [ 96.328125, 26.431228 ], [ 96.328125, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 97.734375, 28.304381 ], [ 97.734375, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 20.632784 ], [ 100.546875, 20.632784 ], [ 99.843750, 19.973349 ], [ 98.437500, 19.973349 ], [ 98.437500, 19.311143 ], [ 97.734375, 19.311143 ], [ 97.734375, 18.646245 ], [ 97.031250, 18.646245 ], [ 97.031250, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 15.961329 ], [ 99.140625, 15.961329 ], [ 99.140625, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 98.437500, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 11.867351 ], [ 99.843750, 11.867351 ], [ 99.843750, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.437500, 10.487812 ], [ 98.437500, 13.923404 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.359375, 21.289374 ], [ 103.359375, 20.632784 ], [ 104.765625, 20.632784 ], [ 104.765625, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 15.961329 ], [ 107.578125, 15.961329 ], [ 107.578125, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.062500, 17.308688 ], [ 104.062500, 17.978733 ], [ 101.953125, 17.978733 ], [ 101.953125, 17.308688 ], [ 101.250000, 17.308688 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 99.843750, 19.973349 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.943046 ], [ 102.656250, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 13.923404 ], [ 105.468750, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.062500, 17.308688 ], [ 104.062500, 17.978733 ], [ 101.953125, 17.978733 ], [ 101.953125, 17.308688 ], [ 101.250000, 17.308688 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 99.843750, 19.973349 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.359375, 21.289374 ], [ 103.359375, 20.632784 ], [ 104.765625, 20.632784 ], [ 104.765625, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 15.961329 ], [ 107.578125, 15.961329 ], [ 107.578125, 13.923404 ], [ 105.468750, 13.923404 ] ] ] } } , { "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.140625, 10.487812 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 99.843750, 8.407168 ], [ 100.546875, 8.407168 ], [ 100.546875, 7.013668 ], [ 101.953125, 7.013668 ], [ 101.953125, 5.615986 ], [ 101.250000, 5.615986 ], [ 101.250000, 6.315299 ], [ 99.843750, 6.315299 ], [ 99.843750, 7.013668 ], [ 99.140625, 7.013668 ], [ 99.140625, 7.710992 ], [ 98.437500, 7.710992 ], [ 98.437500, 10.487812 ], [ 99.140625, 10.487812 ] ] ], [ [ [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 17.308688 ], [ 101.953125, 17.308688 ], [ 101.953125, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.468750, 15.961329 ], [ 105.468750, 14.604847 ], [ 104.062500, 14.604847 ], [ 104.062500, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 11.867351 ], [ 101.953125, 11.867351 ], [ 101.953125, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.239945 ], [ 99.843750, 13.239945 ], [ 99.843750, 11.867351 ], [ 99.140625, 11.867351 ], [ 99.140625, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 15.284185 ], [ 99.140625, 15.284185 ], [ 99.140625, 15.961329 ], [ 98.437500, 15.961329 ], [ 98.437500, 16.636192 ], [ 97.734375, 16.636192 ], [ 97.734375, 17.978733 ], [ 97.031250, 17.978733 ], [ 97.031250, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 19.311143 ], [ 98.437500, 19.311143 ], [ 98.437500, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 19.311143 ] ] ] ] } } , @@ -800,7 +800,7 @@ , { "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 14.604847 ], [ 105.468750, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 11.867351 ], [ 105.468750, 11.867351 ], [ 105.468750, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 13.923404 ], [ 104.062500, 13.923404 ], [ 104.062500, 14.604847 ], [ 105.468750, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.421875, 7.013668 ], [ 117.421875, 5.615986 ], [ 119.531250, 5.615986 ], [ 119.531250, 4.915833 ], [ 118.125000, 4.915833 ], [ 118.125000, 4.214943 ], [ 116.015625, 4.214943 ], [ 116.015625, 3.513421 ], [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 113.906250, 3.513421 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.015625, 5.615986 ], [ 116.015625, 6.315299 ], [ 116.718750, 6.315299 ], [ 116.718750, 7.013668 ], [ 117.421875, 7.013668 ] ] ], [ [ [ 102.656250, 6.315299 ], [ 102.656250, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 6.315299 ], [ 101.250000, 6.315299 ], [ 101.250000, 5.615986 ], [ 101.953125, 5.615986 ], [ 101.953125, 6.315299 ], [ 102.656250, 6.315299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.421875, 7.013668 ], [ 117.421875, 5.615986 ], [ 119.531250, 5.615986 ], [ 119.531250, 4.915833 ], [ 118.828125, 4.915833 ], [ 118.125000, 4.214943 ], [ 116.015625, 4.214943 ], [ 116.015625, 3.513421 ], [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 113.906250, 3.513421 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.015625, 5.615986 ], [ 116.015625, 6.315299 ], [ 116.718750, 6.315299 ], [ 116.718750, 7.013668 ], [ 117.421875, 7.013668 ] ] ], [ [ [ 102.656250, 6.315299 ], [ 102.656250, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 6.315299 ], [ 101.250000, 6.315299 ], [ 101.250000, 5.615986 ], [ 101.953125, 5.615986 ], [ 101.953125, 6.315299 ], [ 102.656250, 6.315299 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 24.527135 ], [ 121.640625, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 21.943046 ], [ 120.234375, 21.943046 ], [ 120.234375, 23.885838 ], [ 120.937500, 23.885838 ], [ 120.937500, 24.527135 ], [ 121.640625, 24.527135 ] ] ] } } , @@ -808,11 +808,11 @@ , { "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.671875, 38.272689 ], [ 128.671875, 37.718590 ], [ 129.375000, 37.718590 ], [ 129.375000, 34.885931 ], [ 127.968750, 34.885931 ], [ 127.968750, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 36.031332 ], [ 125.859375, 36.031332 ], [ 125.859375, 36.597889 ], [ 126.562500, 36.597889 ], [ 126.562500, 37.160317 ], [ 125.859375, 37.160317 ], [ 125.859375, 37.718590 ], [ 127.265625, 37.718590 ], [ 127.265625, 38.272689 ], [ 128.671875, 38.272689 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.859375, 6.315299 ], [ 125.859375, 5.615986 ], [ 124.453125, 5.615986 ], [ 124.453125, 6.315299 ], [ 123.750000, 6.315299 ], [ 123.750000, 7.710992 ], [ 123.046875, 7.710992 ], [ 123.046875, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 9.102097 ], [ 125.156250, 9.102097 ], [ 125.156250, 9.795678 ], [ 126.562500, 9.102097 ], [ 126.562500, 6.315299 ], [ 125.859375, 6.315299 ] ], [ [ 125.859375, 6.315299 ], [ 125.859375, 7.013668 ], [ 125.156250, 7.013668 ], [ 125.156250, 6.315299 ], [ 125.859375, 6.315299 ] ] ], [ [ [ 123.046875, 7.710992 ], [ 123.046875, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 7.710992 ], [ 123.046875, 7.710992 ] ] ], [ [ [ 118.828125, 9.795678 ], [ 118.828125, 8.407168 ], [ 117.421875, 8.407168 ], [ 117.421875, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 9.795678 ], [ 118.828125, 9.795678 ] ] ], [ [ [ 123.046875, 11.867351 ], [ 123.046875, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 9.102097 ], [ 122.343750, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.046875, 9.795678 ], [ 123.046875, 10.487812 ], [ 121.640625, 10.487812 ], [ 121.640625, 11.178402 ], [ 122.343750, 11.178402 ], [ 121.640625, 11.867351 ], [ 123.046875, 11.867351 ] ] ], [ [ [ 125.156250, 11.178402 ], [ 125.156250, 9.795678 ], [ 124.453125, 9.795678 ], [ 124.453125, 11.178402 ], [ 125.156250, 11.178402 ] ] ], [ [ [ 119.531250, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 10.487812 ], [ 119.531250, 10.487812 ], [ 119.531250, 9.795678 ] ] ], [ [ [ 121.640625, 13.239945 ], [ 121.640625, 12.554564 ], [ 120.234375, 12.554564 ], [ 120.234375, 13.239945 ], [ 121.640625, 13.239945 ] ] ], [ [ [ 121.640625, 13.923404 ], [ 120.937500, 13.923404 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 17.978733 ], [ 120.937500, 17.978733 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 121.640625, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 13.923404 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ], [ 124.453125, 13.239945 ], [ 124.453125, 12.554564 ], [ 123.046875, 12.554564 ], [ 123.046875, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.923404 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.859375, 6.315299 ], [ 125.859375, 5.615986 ], [ 124.453125, 5.615986 ], [ 124.453125, 6.315299 ], [ 123.750000, 6.315299 ], [ 123.750000, 7.710992 ], [ 123.046875, 7.710992 ], [ 123.046875, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 9.102097 ], [ 126.562500, 9.102097 ], [ 126.562500, 6.315299 ], [ 125.859375, 6.315299 ] ], [ [ 125.859375, 6.315299 ], [ 125.859375, 7.013668 ], [ 125.156250, 7.013668 ], [ 125.156250, 6.315299 ], [ 125.859375, 6.315299 ] ] ], [ [ [ 123.046875, 7.710992 ], [ 123.046875, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 7.710992 ], [ 123.046875, 7.710992 ] ] ], [ [ [ 118.828125, 9.795678 ], [ 118.828125, 8.407168 ], [ 117.421875, 8.407168 ], [ 117.421875, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 9.795678 ], [ 118.828125, 9.795678 ] ] ], [ [ [ 123.046875, 11.867351 ], [ 123.046875, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 9.102097 ], [ 122.343750, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.046875, 9.795678 ], [ 123.046875, 10.487812 ], [ 121.640625, 10.487812 ], [ 121.640625, 11.178402 ], [ 122.343750, 11.178402 ], [ 121.640625, 11.867351 ], [ 123.046875, 11.867351 ] ] ], [ [ [ 125.156250, 11.178402 ], [ 125.156250, 9.795678 ], [ 124.453125, 9.795678 ], [ 124.453125, 11.178402 ], [ 125.156250, 11.178402 ] ] ], [ [ [ 119.531250, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 10.487812 ], [ 119.531250, 10.487812 ], [ 119.531250, 9.795678 ] ] ], [ [ [ 121.640625, 13.239945 ], [ 121.640625, 12.554564 ], [ 120.234375, 12.554564 ], [ 120.234375, 13.239945 ], [ 121.640625, 13.239945 ] ] ], [ [ [ 121.640625, 13.923404 ], [ 120.937500, 13.923404 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 17.978733 ], [ 120.937500, 17.978733 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 121.640625, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 13.923404 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ], [ 124.453125, 13.239945 ], [ 124.453125, 12.554564 ], [ 123.046875, 12.554564 ], [ 123.046875, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.923404 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.915833 ], [ 115.312500, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.915833 ], [ 115.312500, 4.915833 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 33.724340 ], [ 135.000000, 33.137551 ], [ 133.593750, 33.137551 ], [ 133.593750, 32.546813 ], [ 132.187500, 32.546813 ], [ 132.187500, 31.952162 ], [ 131.484375, 31.952162 ], [ 131.484375, 30.751278 ], [ 130.078125, 30.751278 ], [ 130.078125, 31.952162 ], [ 130.781250, 31.952162 ], [ 130.781250, 32.546813 ], [ 129.375000, 32.546813 ], [ 129.375000, 33.137551 ], [ 130.078125, 33.137551 ], [ 130.078125, 33.724340 ], [ 130.781250, 33.724340 ], [ 130.781250, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 34.885931 ], [ 132.890625, 34.885931 ], [ 132.890625, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 36.031332 ], [ 136.406250, 36.031332 ], [ 136.406250, 36.597889 ], [ 137.812500, 36.597889 ], [ 137.812500, 37.160317 ], [ 138.515625, 37.160317 ], [ 138.515625, 37.718590 ], [ 139.218750, 37.718590 ], [ 139.218750, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.446947 ], [ 140.625000, 40.446947 ], [ 140.625000, 40.979898 ], [ 141.328125, 40.979898 ], [ 141.328125, 40.446947 ], [ 142.031250, 40.446947 ], [ 142.031250, 38.822591 ], [ 140.625000, 38.272689 ], [ 140.625000, 35.460670 ], [ 139.921875, 35.460670 ], [ 139.921875, 34.885931 ], [ 137.109375, 34.885931 ], [ 137.109375, 34.307144 ], [ 136.406250, 34.307144 ], [ 136.406250, 33.724340 ], [ 135.000000, 33.724340 ] ], [ [ 130.781250, 33.724340 ], [ 130.781250, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 33.724340 ], [ 130.781250, 33.724340 ] ], [ [ 135.000000, 33.724340 ], [ 135.000000, 34.307144 ], [ 134.296875, 34.307144 ], [ 134.296875, 33.724340 ], [ 135.000000, 33.724340 ] ] ], [ [ [ 142.734375, 45.089036 ], [ 142.734375, 44.590467 ], [ 143.437500, 44.590467 ], [ 143.437500, 44.087585 ], [ 145.546875, 44.087585 ], [ 145.546875, 43.068888 ], [ 144.140625, 43.068888 ], [ 144.140625, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.032974 ], [ 142.031250, 42.032974 ], [ 142.031250, 42.553080 ], [ 141.328125, 42.553080 ], [ 141.328125, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 43.068888 ], [ 140.625000, 43.068888 ], [ 140.625000, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.328125, 45.089036 ], [ 142.734375, 45.089036 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 33.724340 ], [ 135.000000, 33.137551 ], [ 133.593750, 33.137551 ], [ 133.593750, 32.546813 ], [ 132.187500, 32.546813 ], [ 132.187500, 31.952162 ], [ 131.484375, 31.952162 ], [ 131.484375, 30.751278 ], [ 130.078125, 30.751278 ], [ 130.078125, 31.952162 ], [ 130.781250, 31.952162 ], [ 130.781250, 32.546813 ], [ 129.375000, 32.546813 ], [ 129.375000, 33.137551 ], [ 130.078125, 33.137551 ], [ 130.078125, 33.724340 ], [ 130.781250, 33.724340 ], [ 130.781250, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 34.885931 ], [ 132.890625, 34.885931 ], [ 132.890625, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 36.031332 ], [ 136.406250, 36.031332 ], [ 136.406250, 36.597889 ], [ 137.812500, 36.597889 ], [ 137.812500, 37.160317 ], [ 138.515625, 37.160317 ], [ 138.515625, 37.718590 ], [ 139.218750, 37.718590 ], [ 139.218750, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.446947 ], [ 140.625000, 40.446947 ], [ 140.625000, 40.979898 ], [ 141.328125, 40.979898 ], [ 141.328125, 40.446947 ], [ 142.031250, 40.446947 ], [ 142.031250, 38.822591 ], [ 140.625000, 38.272689 ], [ 140.625000, 35.460670 ], [ 139.921875, 35.460670 ], [ 139.921875, 34.885931 ], [ 137.109375, 34.885931 ], [ 137.109375, 34.307144 ], [ 136.406250, 34.307144 ], [ 136.406250, 33.724340 ], [ 135.000000, 33.724340 ] ], [ [ 130.781250, 33.724340 ], [ 130.781250, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 33.724340 ], [ 130.781250, 33.724340 ] ], [ [ 135.000000, 33.724340 ], [ 135.000000, 34.307144 ], [ 134.296875, 34.307144 ], [ 134.296875, 33.724340 ], [ 135.000000, 33.724340 ] ] ], [ [ [ 142.734375, 45.089036 ], [ 142.734375, 44.590467 ], [ 143.437500, 44.087585 ], [ 145.546875, 44.087585 ], [ 145.546875, 43.068888 ], [ 144.140625, 43.068888 ], [ 144.140625, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.032974 ], [ 142.031250, 42.032974 ], [ 142.031250, 42.553080 ], [ 141.328125, 42.553080 ], [ 141.328125, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 43.068888 ], [ 140.625000, 43.068888 ], [ 140.625000, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.328125, 45.089036 ], [ 142.734375, 45.089036 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.108899 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -1.406109 ], [ 14.765625, -1.406109 ], [ 14.765625, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.811371 ], [ 13.359375, -2.811371 ], [ 13.359375, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.108899 ] ] ] } } , @@ -850,7 +850,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.168107 ], [ -88.945312, 64.168107 ], [ -88.945312, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.548552 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.054688, 62.915233 ], [ -91.054688, 62.754726 ], [ -91.757812, 62.754726 ], [ -91.757812, 62.593341 ], [ -92.109375, 62.593341 ], [ -92.109375, 62.431074 ], [ -92.460938, 62.431074 ], [ -92.460938, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 62.103883 ], [ -93.164062, 62.103883 ], [ -93.164062, 61.773123 ], [ -93.515625, 61.773123 ], [ -93.515625, 61.438767 ], [ -93.867188, 61.438767 ], [ -93.867188, 61.100789 ], [ -94.218750, 61.100789 ], [ -94.218750, 60.413852 ], [ -94.570312, 60.413852 ], [ -94.570312, 58.995311 ], [ -94.218750, 58.995311 ], [ -94.218750, 58.813742 ], [ -93.164062, 58.813742 ], [ -93.164062, 58.263287 ], [ -92.812500, 58.263287 ], [ -92.812500, 57.515823 ], [ -92.460938, 57.515823 ], [ -92.460938, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -89.648438, 57.136239 ], [ -89.648438, 56.944974 ], [ -88.945312, 56.944974 ], [ -88.945312, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -92.460938, 48.224673 ], [ -92.460938, 48.458352 ], [ -93.164062, 48.458352 ], [ -93.164062, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 49.152970 ], [ -94.921875, 49.152970 ], [ -94.921875, 49.382373 ], [ -95.273438, 49.382373 ], [ -95.273438, 48.922499 ], [ -123.398438, 48.922499 ], [ -123.398438, 49.152970 ], [ -123.750000, 49.152970 ], [ -123.750000, 49.382373 ], [ -124.101562, 49.382373 ], [ -124.101562, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.837982 ], [ -124.804688, 49.837982 ], [ -124.804688, 50.064192 ], [ -125.156250, 50.064192 ], [ -125.156250, 50.289339 ], [ -125.507812, 50.289339 ], [ -125.507812, 50.513427 ], [ -126.562500, 50.513427 ], [ -126.562500, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.399206 ], [ -127.968750, 51.399206 ], [ -127.968750, 52.268157 ], [ -128.320312, 52.268157 ], [ -128.320312, 52.482780 ], [ -129.023438, 52.482780 ], [ -129.023438, 53.120405 ], [ -129.375000, 53.120405 ], [ -129.375000, 53.540307 ], [ -129.726562, 53.540307 ], [ -129.726562, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.170023 ], [ -131.132812, 56.170023 ], [ -131.132812, 56.365250 ], [ -131.835938, 56.365250 ], [ -131.835938, 56.752723 ], [ -132.187500, 56.752723 ], [ -132.187500, 57.136239 ], [ -132.539062, 57.136239 ], [ -132.539062, 57.515823 ], [ -132.890625, 57.515823 ], [ -132.890625, 58.077876 ], [ -133.242188, 58.077876 ], [ -133.242188, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.631217 ], [ -134.296875, 58.631217 ], [ -134.296875, 58.813742 ], [ -134.648438, 58.813742 ], [ -134.648438, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.355596 ], [ -136.757812, 59.355596 ], [ -136.757812, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 58.995311 ], [ -137.812500, 58.995311 ], [ -137.812500, 59.175928 ], [ -138.164062, 59.175928 ], [ -138.164062, 59.355596 ], [ -138.515625, 59.355596 ], [ -138.515625, 59.712097 ], [ -138.867188, 59.712097 ], [ -138.867188, 60.064840 ], [ -139.570312, 60.064840 ], [ -139.570312, 60.239811 ], [ -140.976562, 60.239811 ], [ -140.976562, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -127.968750, 50.736455 ], [ -127.968750, 50.513427 ], [ -127.265625, 50.513427 ], [ -127.265625, 50.289339 ], [ -125.859375, 50.289339 ], [ -125.859375, 50.064192 ], [ -125.507812, 50.064192 ], [ -125.507812, 49.610710 ], [ -125.156250, 49.610710 ], [ -125.156250, 49.382373 ], [ -124.453125, 49.382373 ], [ -124.453125, 49.152970 ], [ -123.750000, 49.152970 ], [ -123.750000, 48.690960 ], [ -123.398438, 48.458352 ], [ -124.804688, 48.458352 ], [ -124.804688, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.837982 ], [ -127.617188, 49.837982 ], [ -127.617188, 50.064192 ], [ -127.968750, 50.064192 ], [ -127.968750, 50.289339 ], [ -128.320312, 50.289339 ], [ -128.320312, 50.736455 ], [ -127.968750, 50.736455 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -131.835938, 52.696361 ], [ -131.835938, 52.482780 ] ] ], [ [ [ -131.835938, 53.540307 ], [ -132.187500, 53.540307 ], [ -132.187500, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.120405 ], [ -132.890625, 53.120405 ], [ -132.890625, 53.540307 ], [ -133.242188, 53.540307 ], [ -133.242188, 53.956086 ], [ -131.835938, 53.956086 ], [ -131.835938, 53.540307 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.268157 ], [ -131.835938, 52.268157 ], [ -131.835938, 52.482780 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 20.303418 ], [ -155.742188, 19.973349 ], [ -155.039062, 19.973349 ], [ -155.039062, 19.642588 ], [ -154.687500, 19.642588 ], [ -154.687500, 19.311143 ], [ -155.390625, 19.311143 ], [ -155.390625, 18.979026 ], [ -155.742188, 18.979026 ], [ -155.742188, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.303418 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -156.093750, 20.961440 ], [ -156.093750, 20.632784 ], [ -156.796875, 20.632784 ], [ -156.796875, 20.961440 ] ] ], [ [ [ -157.851562, 21.616579 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -157.851562, 21.616579 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.257812, 21.943046 ], [ -159.609375, 21.943046 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -140.976562, 67.204032 ], [ -140.976562, 60.239811 ], [ -139.921875, 60.239811 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.712097 ], [ -141.679688, 59.712097 ], [ -141.679688, 59.888937 ], [ -142.382812, 59.888937 ], [ -142.382812, 60.064840 ], [ -144.492188, 60.064840 ], [ -144.492188, 60.239811 ], [ -145.546875, 60.239811 ], [ -145.546875, 60.413852 ], [ -146.250000, 60.413852 ], [ -146.250000, 60.586967 ], [ -146.601562, 60.586967 ], [ -146.601562, 60.759160 ], [ -147.656250, 60.759160 ], [ -147.656250, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 60.239811 ], [ -148.007812, 60.239811 ], [ -148.007812, 59.888937 ], [ -149.062500, 59.888937 ], [ -149.062500, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.534318 ], [ -150.117188, 59.534318 ], [ -150.117188, 59.355596 ], [ -150.820312, 59.355596 ], [ -150.820312, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.759160 ], [ -151.875000, 60.759160 ], [ -151.875000, 60.586967 ], [ -152.226562, 60.586967 ], [ -152.226562, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.712097 ], [ -153.281250, 59.712097 ], [ -153.281250, 59.534318 ], [ -153.632812, 59.534318 ], [ -153.632812, 59.355596 ], [ -153.984375, 59.355596 ], [ -153.984375, 59.175928 ], [ -153.632812, 59.175928 ], [ -153.632812, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.631217 ], [ -153.632812, 58.631217 ], [ -153.632812, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 58.077876 ], [ -154.335938, 58.077876 ], [ -154.335938, 57.891497 ], [ -155.039062, 57.891497 ], [ -155.039062, 57.704147 ], [ -155.742188, 57.704147 ], [ -155.742188, 57.515823 ], [ -156.445312, 57.515823 ], [ -156.445312, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.752723 ], [ -157.500000, 56.752723 ], [ -157.500000, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 56.170023 ], [ -158.554688, 56.170023 ], [ -158.554688, 55.776573 ], [ -159.257812, 55.776573 ], [ -159.257812, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.379110 ], [ -161.367188, 55.379110 ], [ -161.367188, 55.178868 ], [ -161.718750, 55.178868 ], [ -161.718750, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.775346 ], [ -163.476562, 54.775346 ], [ -163.476562, 54.572062 ], [ -164.179688, 54.572062 ], [ -164.179688, 54.367759 ], [ -164.882812, 54.367759 ], [ -164.882812, 54.572062 ], [ -164.531250, 54.572062 ], [ -164.531250, 54.775346 ], [ -163.828125, 54.775346 ], [ -163.828125, 54.977614 ], [ -163.476562, 54.977614 ], [ -163.476562, 55.178868 ], [ -162.773438, 55.178868 ], [ -162.773438, 55.379110 ], [ -162.421875, 55.379110 ], [ -162.421875, 55.578345 ], [ -162.070312, 55.578345 ], [ -162.070312, 55.776573 ], [ -161.718750, 55.776573 ], [ -161.718750, 55.973798 ], [ -160.312500, 55.973798 ], [ -160.312500, 56.170023 ], [ -159.960938, 56.170023 ], [ -159.960938, 56.365250 ], [ -159.609375, 56.365250 ], [ -159.609375, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.752723 ], [ -158.554688, 56.752723 ], [ -158.554688, 57.136239 ], [ -158.203125, 57.136239 ], [ -158.203125, 57.326521 ], [ -157.851562, 57.326521 ], [ -157.851562, 57.891497 ], [ -157.500000, 57.891497 ], [ -157.500000, 58.631217 ], [ -157.148438, 58.631217 ], [ -157.148438, 58.813742 ], [ -157.851562, 58.813742 ], [ -157.851562, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.813742 ], [ -161.015625, 58.813742 ], [ -161.015625, 58.631217 ], [ -162.070312, 58.631217 ], [ -162.070312, 59.534318 ], [ -161.718750, 59.534318 ], [ -161.718750, 59.712097 ], [ -162.070312, 59.712097 ], [ -162.070312, 59.888937 ], [ -163.125000, 59.888937 ], [ -163.125000, 59.712097 ], [ -164.179688, 59.712097 ], [ -164.179688, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.413852 ], [ -165.234375, 60.413852 ], [ -165.234375, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.270233 ], [ -166.289062, 61.270233 ], [ -166.289062, 61.606396 ], [ -165.937500, 61.606396 ], [ -165.937500, 61.938950 ], [ -165.585938, 61.938950 ], [ -165.585938, 62.103883 ], [ -165.234375, 62.103883 ], [ -165.234375, 62.431074 ], [ -164.882812, 62.431074 ], [ -164.882812, 62.754726 ], [ -164.531250, 62.754726 ], [ -164.531250, 63.074866 ], [ -162.773438, 63.074866 ], [ -162.773438, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.391522 ], [ -161.015625, 63.391522 ], [ -161.015625, 63.548552 ], [ -160.664062, 63.548552 ], [ -160.664062, 63.860036 ], [ -161.015625, 63.860036 ], [ -161.015625, 64.320872 ], [ -161.367188, 64.320872 ], [ -161.367188, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.623877 ], [ -160.664062, 64.623877 ], [ -160.664062, 64.774125 ], [ -161.718750, 64.774125 ], [ -161.718750, 64.623877 ], [ -162.421875, 64.623877 ], [ -162.421875, 64.472794 ], [ -162.773438, 64.472794 ], [ -162.773438, 64.320872 ], [ -163.125000, 64.320872 ], [ -163.125000, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.623877 ], [ -163.828125, 64.623877 ], [ -163.828125, 64.472794 ], [ -165.937500, 64.472794 ], [ -165.937500, 64.623877 ], [ -166.640625, 64.623877 ], [ -166.640625, 64.923542 ], [ -166.992188, 64.923542 ], [ -166.992188, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -167.695312, 65.366837 ], [ -167.695312, 65.512963 ], [ -168.046875, 65.512963 ], [ -168.046875, 65.658275 ], [ -167.695312, 65.658275 ], [ -167.695312, 65.802776 ], [ -166.992188, 65.802776 ], [ -166.992188, 65.946472 ], [ -166.640625, 65.946472 ], [ -166.640625, 66.089364 ], [ -165.937500, 66.089364 ], [ -165.937500, 66.231457 ], [ -165.234375, 66.231457 ], [ -165.234375, 66.372755 ], [ -164.531250, 66.372755 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.828125, 66.930060 ], [ -163.828125, 67.067433 ], [ -140.976562, 67.204032 ] ], [ [ -151.171875, 60.930432 ], [ -151.523438, 60.930432 ], [ -151.523438, 60.759160 ], [ -151.171875, 60.759160 ], [ -151.171875, 60.930432 ] ], [ [ -150.820312, 61.100789 ], [ -150.820312, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.100789 ], [ -150.820312, 61.100789 ] ] ], [ [ [ -152.578125, 57.891497 ], [ -152.578125, 57.704147 ], [ -152.226562, 57.704147 ], [ -152.226562, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 57.136239 ], [ -152.929688, 57.136239 ], [ -152.929688, 56.944974 ], [ -153.632812, 56.944974 ], [ -153.632812, 56.752723 ], [ -154.687500, 56.752723 ], [ -154.687500, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.704147 ], [ -153.632812, 57.704147 ], [ -153.632812, 57.891497 ], [ -152.578125, 57.891497 ] ] ], [ [ [ -166.289062, 60.413852 ], [ -166.289062, 60.239811 ], [ -165.585938, 60.239811 ], [ -165.585938, 59.712097 ], [ -166.992188, 59.712097 ], [ -166.992188, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.239811 ], [ -166.640625, 60.413852 ], [ -166.289062, 60.413852 ] ] ], [ [ [ -171.210938, 63.704722 ], [ -171.210938, 63.548552 ], [ -170.156250, 63.548552 ], [ -170.156250, 63.391522 ], [ -169.453125, 63.391522 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 63.074866 ], [ -169.101562, 63.074866 ], [ -169.101562, 62.915233 ], [ -169.804688, 62.915233 ], [ -169.804688, 63.074866 ], [ -170.156250, 63.074866 ], [ -170.156250, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.391522 ], [ -171.914062, 63.391522 ], [ -171.914062, 63.548552 ], [ -171.562500, 63.548552 ], [ -171.562500, 63.704722 ], [ -171.210938, 63.704722 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -157.148438, 20.961440 ], [ -157.148438, 21.289374 ], [ -156.796875, 21.289374 ], [ -156.796875, 20.961440 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 20.303418 ], [ -155.742188, 19.973349 ], [ -155.039062, 19.973349 ], [ -155.039062, 19.642588 ], [ -154.687500, 19.642588 ], [ -154.687500, 19.311143 ], [ -155.390625, 19.311143 ], [ -155.390625, 18.979026 ], [ -155.742188, 18.979026 ], [ -155.742188, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.303418 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -156.445312, 20.961440 ], [ -156.093750, 20.632784 ], [ -156.796875, 20.632784 ], [ -156.796875, 20.961440 ] ] ], [ [ [ -157.851562, 21.616579 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -157.851562, 21.616579 ] ] ], [ [ [ -140.976562, 67.204032 ], [ -140.976562, 60.239811 ], [ -139.921875, 60.239811 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.712097 ], [ -141.679688, 59.712097 ], [ -141.679688, 59.888937 ], [ -142.382812, 59.888937 ], [ -142.382812, 60.064840 ], [ -144.492188, 60.064840 ], [ -144.492188, 60.239811 ], [ -145.546875, 60.239811 ], [ -145.546875, 60.413852 ], [ -146.250000, 60.413852 ], [ -146.250000, 60.586967 ], [ -146.601562, 60.586967 ], [ -146.601562, 60.759160 ], [ -147.656250, 60.759160 ], [ -147.656250, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 60.239811 ], [ -148.007812, 60.239811 ], [ -148.007812, 59.888937 ], [ -149.062500, 59.888937 ], [ -149.062500, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.534318 ], [ -150.117188, 59.534318 ], [ -150.117188, 59.355596 ], [ -150.820312, 59.355596 ], [ -150.820312, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.759160 ], [ -151.875000, 60.759160 ], [ -151.875000, 60.586967 ], [ -152.226562, 60.586967 ], [ -152.226562, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.712097 ], [ -153.281250, 59.712097 ], [ -153.281250, 59.534318 ], [ -153.632812, 59.534318 ], [ -153.632812, 59.355596 ], [ -153.984375, 59.355596 ], [ -153.984375, 59.175928 ], [ -153.632812, 59.175928 ], [ -153.632812, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.631217 ], [ -153.632812, 58.631217 ], [ -153.632812, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 58.077876 ], [ -154.335938, 58.077876 ], [ -154.335938, 57.891497 ], [ -155.039062, 57.891497 ], [ -155.039062, 57.704147 ], [ -155.742188, 57.704147 ], [ -155.742188, 57.515823 ], [ -156.445312, 57.515823 ], [ -156.445312, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.752723 ], [ -157.500000, 56.752723 ], [ -157.500000, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 56.170023 ], [ -158.554688, 56.170023 ], [ -158.554688, 55.776573 ], [ -159.257812, 55.776573 ], [ -159.257812, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.379110 ], [ -161.367188, 55.379110 ], [ -161.367188, 55.178868 ], [ -161.718750, 55.178868 ], [ -161.718750, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.775346 ], [ -163.476562, 54.775346 ], [ -163.476562, 54.572062 ], [ -164.179688, 54.572062 ], [ -164.179688, 54.367759 ], [ -164.882812, 54.367759 ], [ -164.882812, 54.572062 ], [ -164.531250, 54.572062 ], [ -164.531250, 54.775346 ], [ -163.828125, 54.775346 ], [ -163.828125, 54.977614 ], [ -163.476562, 54.977614 ], [ -163.476562, 55.178868 ], [ -162.773438, 55.178868 ], [ -162.773438, 55.379110 ], [ -162.421875, 55.379110 ], [ -162.421875, 55.578345 ], [ -162.070312, 55.578345 ], [ -162.070312, 55.776573 ], [ -161.718750, 55.776573 ], [ -161.718750, 55.973798 ], [ -160.312500, 55.973798 ], [ -160.312500, 56.170023 ], [ -159.960938, 56.170023 ], [ -159.960938, 56.365250 ], [ -159.609375, 56.365250 ], [ -159.609375, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.752723 ], [ -158.554688, 56.752723 ], [ -158.554688, 57.136239 ], [ -158.203125, 57.136239 ], [ -158.203125, 57.326521 ], [ -157.851562, 57.326521 ], [ -157.851562, 57.891497 ], [ -157.500000, 57.891497 ], [ -157.500000, 58.631217 ], [ -157.148438, 58.631217 ], [ -157.148438, 58.813742 ], [ -157.851562, 58.813742 ], [ -157.851562, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.813742 ], [ -161.015625, 58.813742 ], [ -161.015625, 58.631217 ], [ -162.070312, 58.631217 ], [ -162.070312, 59.534318 ], [ -161.718750, 59.534318 ], [ -161.718750, 59.712097 ], [ -162.070312, 59.712097 ], [ -162.070312, 59.888937 ], [ -163.125000, 59.888937 ], [ -163.125000, 59.712097 ], [ -164.179688, 59.712097 ], [ -164.179688, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.413852 ], [ -165.234375, 60.413852 ], [ -165.234375, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.270233 ], [ -166.289062, 61.270233 ], [ -166.289062, 61.606396 ], [ -165.937500, 61.606396 ], [ -165.937500, 61.938950 ], [ -165.585938, 61.938950 ], [ -165.585938, 62.103883 ], [ -165.234375, 62.103883 ], [ -165.234375, 62.431074 ], [ -164.882812, 62.431074 ], [ -164.882812, 62.754726 ], [ -164.531250, 62.754726 ], [ -164.531250, 63.074866 ], [ -162.773438, 63.074866 ], [ -162.773438, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.391522 ], [ -161.015625, 63.391522 ], [ -161.015625, 63.548552 ], [ -160.664062, 63.548552 ], [ -160.664062, 63.860036 ], [ -161.015625, 63.860036 ], [ -161.015625, 64.320872 ], [ -161.367188, 64.320872 ], [ -161.367188, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.623877 ], [ -160.664062, 64.623877 ], [ -160.664062, 64.774125 ], [ -161.718750, 64.774125 ], [ -161.718750, 64.623877 ], [ -162.421875, 64.623877 ], [ -162.421875, 64.472794 ], [ -162.773438, 64.472794 ], [ -162.773438, 64.320872 ], [ -163.125000, 64.320872 ], [ -163.125000, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.623877 ], [ -163.828125, 64.623877 ], [ -163.828125, 64.472794 ], [ -165.937500, 64.472794 ], [ -165.937500, 64.623877 ], [ -166.640625, 64.623877 ], [ -166.640625, 64.923542 ], [ -166.992188, 64.923542 ], [ -166.992188, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -167.695312, 65.366837 ], [ -167.695312, 65.512963 ], [ -168.046875, 65.512963 ], [ -168.046875, 65.658275 ], [ -167.695312, 65.658275 ], [ -167.695312, 65.802776 ], [ -166.992188, 65.802776 ], [ -166.992188, 65.946472 ], [ -166.640625, 65.946472 ], [ -166.640625, 66.089364 ], [ -165.937500, 66.089364 ], [ -165.937500, 66.231457 ], [ -165.234375, 66.231457 ], [ -165.234375, 66.372755 ], [ -164.531250, 66.372755 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.828125, 66.930060 ], [ -163.828125, 67.067433 ], [ -140.976562, 67.204032 ] ], [ [ -151.171875, 60.930432 ], [ -151.523438, 60.930432 ], [ -151.523438, 60.759160 ], [ -151.171875, 60.759160 ], [ -151.171875, 60.930432 ] ], [ [ -150.820312, 61.100789 ], [ -150.820312, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.100789 ], [ -150.820312, 61.100789 ] ] ], [ [ [ -152.578125, 57.891497 ], [ -152.578125, 57.704147 ], [ -152.226562, 57.704147 ], [ -152.226562, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 57.136239 ], [ -152.929688, 57.136239 ], [ -152.929688, 56.944974 ], [ -153.632812, 56.944974 ], [ -153.632812, 56.752723 ], [ -154.687500, 56.752723 ], [ -154.687500, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.704147 ], [ -153.632812, 57.704147 ], [ -153.632812, 57.891497 ], [ -152.578125, 57.891497 ] ] ], [ [ [ -166.289062, 60.413852 ], [ -166.289062, 60.239811 ], [ -165.585938, 60.239811 ], [ -165.585938, 59.712097 ], [ -166.992188, 59.712097 ], [ -166.992188, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.239811 ], [ -166.640625, 60.413852 ], [ -166.289062, 60.413852 ] ] ], [ [ [ -171.210938, 63.704722 ], [ -171.210938, 63.548552 ], [ -170.156250, 63.548552 ], [ -170.156250, 63.391522 ], [ -169.453125, 63.391522 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 63.074866 ], [ -169.101562, 63.074866 ], [ -169.101562, 62.915233 ], [ -169.804688, 62.915233 ], [ -169.804688, 63.074866 ], [ -170.156250, 63.074866 ], [ -170.156250, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.391522 ], [ -171.914062, 63.391522 ], [ -171.914062, 63.548552 ], [ -171.562500, 63.548552 ], [ -171.562500, 63.704722 ], [ -171.210938, 63.704722 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -157.148438, 20.961440 ], [ -157.148438, 21.289374 ], [ -156.796875, 21.289374 ], [ -156.796875, 20.961440 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.921875, 49.382373 ], [ -94.921875, 49.152970 ], [ -94.570312, 49.152970 ], [ -94.570312, 48.690960 ], [ -93.164062, 48.690960 ], [ -93.164062, 48.458352 ], [ -92.460938, 48.458352 ], [ -92.460938, 48.224673 ], [ -90.351562, 48.224673 ], [ -90.351562, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.224673 ], [ -88.242188, 48.224673 ], [ -88.242188, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.840644 ], [ -89.296875, 29.840644 ], [ -89.296875, 29.228890 ], [ -91.757812, 29.228890 ], [ -91.757812, 29.535230 ], [ -93.164062, 29.535230 ], [ -93.164062, 29.840644 ], [ -93.867188, 29.840644 ], [ -93.867188, 29.535230 ], [ -94.570312, 29.535230 ], [ -94.570312, 29.228890 ], [ -94.921875, 29.228890 ], [ -94.921875, 28.921631 ], [ -95.273438, 28.921631 ], [ -95.273438, 28.613459 ], [ -95.976562, 28.613459 ], [ -95.976562, 28.304381 ], [ -96.679688, 28.304381 ], [ -96.679688, 27.994401 ], [ -97.031250, 27.994401 ], [ -97.031250, 27.371767 ], [ -97.382812, 27.371767 ], [ -97.382812, 25.799891 ], [ -98.085938, 25.799891 ], [ -98.085938, 26.115986 ], [ -98.789062, 26.115986 ], [ -98.789062, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 27.059126 ], [ -99.492188, 27.059126 ], [ -99.492188, 27.683528 ], [ -100.195312, 27.683528 ], [ -100.195312, 28.304381 ], [ -100.546875, 28.304381 ], [ -100.546875, 28.921631 ], [ -100.898438, 28.921631 ], [ -100.898438, 29.228890 ], [ -101.250000, 29.228890 ], [ -101.250000, 29.535230 ], [ -101.601562, 29.535230 ], [ -101.601562, 29.840644 ], [ -102.304688, 29.840644 ], [ -102.304688, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 28.921631 ], [ -103.710938, 28.921631 ], [ -103.710938, 29.228890 ], [ -104.414062, 29.228890 ], [ -104.414062, 29.840644 ], [ -104.765625, 29.840644 ], [ -104.765625, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.052934 ], [ -106.171875, 31.052934 ], [ -106.171875, 31.353637 ], [ -106.523438, 31.353637 ], [ -106.523438, 31.653381 ], [ -108.281250, 31.653381 ], [ -108.281250, 31.353637 ], [ -111.796875, 31.353637 ], [ -111.796875, 31.653381 ], [ -112.851562, 31.653381 ], [ -112.851562, 31.952162 ], [ -113.906250, 31.952162 ], [ -113.906250, 32.249974 ], [ -114.609375, 32.249974 ], [ -114.609375, 32.842674 ], [ -114.960938, 32.842674 ], [ -114.960938, 32.546813 ], [ -117.070312, 32.546813 ], [ -117.070312, 32.842674 ], [ -117.421875, 32.842674 ], [ -117.421875, 33.431441 ], [ -117.773438, 33.431441 ], [ -117.773438, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.531250, 34.016242 ], [ -119.531250, 34.307144 ], [ -120.585938, 34.307144 ], [ -120.585938, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.460670 ], [ -121.289062, 35.460670 ], [ -121.289062, 35.746512 ], [ -121.640625, 35.746512 ], [ -121.640625, 36.031332 ], [ -121.992188, 36.031332 ], [ -121.992188, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.160317 ], [ -122.695312, 37.160317 ], [ -122.695312, 37.439974 ], [ -122.343750, 37.439974 ], [ -122.343750, 37.718590 ], [ -123.046875, 37.718590 ], [ -123.046875, 37.996163 ], [ -123.398438, 37.996163 ], [ -123.398438, 38.548165 ], [ -123.750000, 38.548165 ], [ -123.750000, 39.639538 ], [ -124.101562, 39.639538 ], [ -124.101562, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.713956 ], [ -124.101562, 40.713956 ], [ -124.101562, 42.293564 ], [ -124.453125, 42.293564 ], [ -124.453125, 43.325178 ], [ -124.101562, 43.325178 ], [ -124.101562, 45.089036 ], [ -123.750000, 45.089036 ], [ -123.750000, 46.073231 ], [ -124.101562, 46.073231 ], [ -124.101562, 47.279229 ], [ -124.453125, 47.279229 ], [ -124.453125, 47.989922 ], [ -124.804688, 47.989922 ], [ -124.804688, 48.224673 ], [ -123.750000, 48.224673 ], [ -123.750000, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.458352 ], [ -122.695312, 48.458352 ], [ -122.695312, 48.922499 ], [ -95.273438, 48.922499 ], [ -95.273438, 49.382373 ], [ -94.921875, 49.382373 ] ] ], [ [ [ -139.570312, 60.239811 ], [ -139.570312, 60.064840 ], [ -138.867188, 60.064840 ], [ -138.867188, 59.712097 ], [ -138.515625, 59.712097 ], [ -138.515625, 59.355596 ], [ -138.164062, 59.355596 ], [ -138.164062, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.175928 ], [ -136.757812, 59.175928 ], [ -136.757812, 59.355596 ], [ -136.406250, 59.355596 ], [ -136.406250, 59.534318 ], [ -135.703125, 59.534318 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.631217 ], [ -133.593750, 58.631217 ], [ -133.593750, 58.447733 ], [ -133.242188, 58.447733 ], [ -133.242188, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.515823 ], [ -132.539062, 57.515823 ], [ -132.539062, 57.136239 ], [ -132.187500, 57.136239 ], [ -132.187500, 56.752723 ], [ -131.835938, 56.752723 ], [ -131.835938, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.170023 ], [ -130.429688, 56.170023 ], [ -130.429688, 55.973798 ], [ -130.078125, 55.973798 ], [ -130.078125, 54.977614 ], [ -130.429688, 54.977614 ], [ -130.429688, 54.775346 ], [ -130.781250, 54.775346 ], [ -130.781250, 54.977614 ], [ -131.132812, 54.977614 ], [ -131.132812, 55.178868 ], [ -131.484375, 55.178868 ], [ -131.484375, 55.379110 ], [ -131.835938, 55.379110 ], [ -131.835938, 55.973798 ], [ -132.187500, 55.973798 ], [ -132.187500, 56.365250 ], [ -132.539062, 56.365250 ], [ -132.539062, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.752723 ], [ -133.242188, 56.752723 ], [ -133.242188, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.515823 ], [ -133.945312, 57.515823 ], [ -133.945312, 58.077876 ], [ -134.648438, 58.077876 ], [ -134.648438, 58.263287 ], [ -137.460938, 58.263287 ], [ -137.460938, 58.447733 ], [ -138.164062, 58.447733 ], [ -138.164062, 58.631217 ], [ -138.515625, 58.631217 ], [ -138.515625, 58.813742 ], [ -138.867188, 58.813742 ], [ -138.867188, 58.995311 ], [ -139.218750, 58.995311 ], [ -139.218750, 59.175928 ], [ -139.570312, 59.175928 ], [ -139.570312, 59.355596 ], [ -139.921875, 59.355596 ], [ -139.921875, 60.239811 ], [ -139.570312, 60.239811 ] ] ] ] } } , @@ -860,7 +860,7 @@ , { "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 16.299051 ], [ -88.593750, 16.299051 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.242188, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -88.242188, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ] ] ] } } , { "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.284185 ], [ -88.242188, 13.923404 ], [ -88.945312, 13.923404 ], [ -88.945312, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.944785 ], [ -88.593750, 14.944785 ], [ -88.593750, 15.284185 ], [ -88.242188, 15.284185 ] ] ] } } , @@ -926,7 +926,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 62.915233 ], [ -91.757812, 67.204032 ], [ -81.210938, 67.204032 ], [ -81.210938, 66.930060 ], [ -81.562500, 66.930060 ], [ -81.562500, 66.791909 ], [ -81.914062, 66.791909 ], [ -81.914062, 66.652977 ], [ -82.617188, 66.652977 ], [ -82.617188, 66.513260 ], [ -82.968750, 66.513260 ], [ -82.968750, 66.372755 ], [ -83.671875, 66.372755 ], [ -83.671875, 66.231457 ], [ -85.078125, 66.231457 ], [ -85.078125, 66.372755 ], [ -85.781250, 66.372755 ], [ -85.781250, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.658275 ], [ -86.835938, 65.658275 ], [ -86.835938, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 64.623877 ], [ -87.539062, 64.623877 ], [ -87.539062, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.320872 ], [ -88.242188, 64.320872 ], [ -88.242188, 64.168107 ], [ -88.945312, 64.168107 ], [ -88.945312, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.548552 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.757812, 62.915233 ] ] ], [ [ [ -76.992188, 62.431074 ], [ -76.289062, 62.431074 ], [ -76.289062, 62.267923 ], [ -75.234375, 62.267923 ], [ -75.234375, 62.103883 ], [ -74.179688, 62.103883 ], [ -74.179688, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 62.103883 ], [ -72.773438, 62.103883 ], [ -72.773438, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.773123 ], [ -72.070312, 61.773123 ], [ -72.070312, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.367188, 61.270233 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 59.534318 ], [ -69.257812, 59.534318 ], [ -69.257812, 58.995311 ], [ -68.906250, 58.995311 ], [ -68.906250, 58.813742 ], [ -68.203125, 58.813742 ], [ -68.203125, 58.631217 ], [ -67.851562, 58.631217 ], [ -67.851562, 58.263287 ], [ -67.148438, 58.263287 ], [ -67.148438, 58.447733 ], [ -66.445312, 58.447733 ], [ -66.445312, 58.631217 ], [ -66.093750, 58.631217 ], [ -66.093750, 58.995311 ], [ -65.742188, 58.995311 ], [ -65.742188, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 60.239811 ], [ -64.335938, 60.239811 ], [ -64.335938, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.534318 ], [ -63.632812, 59.534318 ], [ -63.632812, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 56.365250 ], [ -76.640625, 56.365250 ], [ -76.640625, 57.326521 ], [ -76.992188, 57.326521 ], [ -76.992188, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -77.695312, 58.077876 ], [ -77.695312, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.995311 ], [ -78.046875, 58.995311 ], [ -78.046875, 59.355596 ], [ -77.695312, 59.355596 ], [ -77.695312, 59.712097 ], [ -77.343750, 59.712097 ], [ -77.343750, 60.239811 ], [ -77.695312, 60.239811 ], [ -77.695312, 61.438767 ], [ -78.046875, 61.438767 ], [ -78.046875, 62.267923 ], [ -77.695312, 62.267923 ], [ -77.695312, 62.431074 ], [ -77.343750, 62.431074 ], [ -77.343750, 62.593341 ], [ -76.992188, 62.593341 ], [ -76.992188, 62.431074 ] ] ], [ [ [ -79.453125, 62.431074 ], [ -79.453125, 62.267923 ], [ -79.101562, 62.267923 ], [ -79.101562, 61.938950 ], [ -79.453125, 61.938950 ], [ -79.453125, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 61.773123 ], [ -80.507812, 61.773123 ], [ -80.507812, 61.938950 ], [ -80.156250, 61.938950 ], [ -80.156250, 62.267923 ], [ -79.804688, 62.267923 ], [ -79.804688, 62.431074 ], [ -79.453125, 62.431074 ] ] ], [ [ [ -68.203125, 63.391522 ], [ -68.203125, 63.074866 ], [ -67.851562, 63.074866 ], [ -67.851562, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.754726 ], [ -67.148438, 62.754726 ], [ -67.148438, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.267923 ], [ -66.445312, 62.267923 ], [ -66.445312, 62.103883 ], [ -66.093750, 62.103883 ], [ -66.093750, 61.938950 ], [ -67.148438, 61.938950 ], [ -67.148438, 62.103883 ], [ -68.554688, 62.103883 ], [ -68.554688, 62.267923 ], [ -69.257812, 62.267923 ], [ -69.257812, 62.431074 ], [ -69.960938, 62.431074 ], [ -69.960938, 62.593341 ], [ -70.312500, 62.593341 ], [ -70.312500, 62.754726 ], [ -71.015625, 62.754726 ], [ -71.015625, 62.915233 ], [ -71.367188, 62.915233 ], [ -71.367188, 63.074866 ], [ -71.718750, 63.074866 ], [ -71.718750, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.548552 ], [ -71.718750, 63.548552 ], [ -71.718750, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.860036 ], [ -72.773438, 63.860036 ], [ -72.773438, 64.014496 ], [ -73.476562, 64.014496 ], [ -73.476562, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.320872 ], [ -74.531250, 64.320872 ], [ -74.531250, 64.472794 ], [ -74.882812, 64.472794 ], [ -74.882812, 64.320872 ], [ -75.937500, 64.320872 ], [ -75.937500, 64.168107 ], [ -78.046875, 64.168107 ], [ -78.046875, 64.472794 ], [ -78.398438, 64.472794 ], [ -78.398438, 64.923542 ], [ -78.046875, 64.923542 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 65.512963 ], [ -73.828125, 65.512963 ], [ -73.828125, 65.658275 ], [ -74.179688, 65.658275 ], [ -74.179688, 66.089364 ], [ -73.828125, 66.089364 ], [ -73.828125, 66.513260 ], [ -73.476562, 66.513260 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -63.984375, 67.204032 ], [ -63.984375, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.658275 ], [ -62.929688, 65.658275 ], [ -62.929688, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.632812, 65.366837 ], [ -63.632812, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.219894 ], [ -65.039062, 65.219894 ], [ -65.039062, 65.366837 ], [ -65.390625, 65.366837 ], [ -65.390625, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 65.946472 ], [ -66.445312, 65.946472 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.372755 ], [ -67.148438, 66.372755 ], [ -67.148438, 66.231457 ], [ -67.851562, 66.231457 ], [ -67.851562, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.512963 ], [ -67.851562, 65.512963 ], [ -67.851562, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.072130 ], [ -67.148438, 65.072130 ], [ -67.148438, 64.923542 ], [ -66.796875, 64.923542 ], [ -66.796875, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.623877 ], [ -65.742188, 64.623877 ], [ -65.742188, 64.472794 ], [ -65.390625, 64.472794 ], [ -65.390625, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.548552 ], [ -64.687500, 63.548552 ], [ -64.687500, 63.074866 ], [ -65.039062, 63.074866 ], [ -65.039062, 62.754726 ], [ -66.093750, 62.754726 ], [ -66.093750, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.074866 ], [ -67.500000, 63.074866 ], [ -67.500000, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 63.391522 ], [ -68.203125, 63.391522 ] ], [ [ -68.203125, 63.391522 ], [ -68.203125, 63.548552 ], [ -68.554688, 63.548552 ], [ -68.554688, 63.391522 ], [ -68.203125, 63.391522 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ], [ -82.265625, 62.593341 ], [ -82.265625, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.103883 ], [ -83.671875, 62.103883 ], [ -83.671875, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.431074 ], [ -83.671875, 62.431074 ], [ -83.671875, 62.754726 ], [ -83.320312, 62.754726 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.078125, 65.658275 ], [ -85.078125, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 64.923542 ], [ -83.320312, 64.923542 ], [ -83.320312, 64.774125 ], [ -82.617188, 64.774125 ], [ -82.617188, 64.623877 ], [ -81.914062, 64.623877 ], [ -81.914062, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.014496 ], [ -80.859375, 63.860036 ], [ -80.507812, 63.860036 ], [ -80.507812, 63.704722 ], [ -80.156250, 63.704722 ], [ -80.156250, 63.548552 ], [ -80.507812, 63.548552 ], [ -80.507812, 63.391522 ], [ -81.562500, 63.391522 ], [ -81.562500, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.704722 ], [ -82.617188, 63.704722 ], [ -82.617188, 63.860036 ], [ -82.968750, 63.860036 ], [ -82.968750, 64.014496 ], [ -83.320312, 64.014496 ], [ -83.320312, 63.860036 ], [ -83.671875, 63.860036 ], [ -83.671875, 63.548552 ], [ -84.023438, 63.548552 ], [ -84.023438, 63.391522 ], [ -84.375000, 63.391522 ], [ -84.375000, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 63.074866 ], [ -85.429688, 63.074866 ], [ -85.429688, 63.391522 ], [ -85.781250, 63.391522 ], [ -85.781250, 63.704722 ], [ -86.132812, 63.704722 ], [ -86.132812, 63.548552 ], [ -86.835938, 63.548552 ], [ -86.835938, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 64.320872 ], [ -86.132812, 64.320872 ], [ -86.132812, 65.219894 ], [ -85.781250, 65.219894 ], [ -85.781250, 65.658275 ], [ -85.078125, 65.658275 ] ] ], [ [ [ -76.289062, 67.204032 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.204032 ], [ -76.289062, 67.204032 ] ] ], [ [ [ -91.757812, 57.136239 ], [ -91.054688, 57.136239 ], [ -91.054688, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -89.648438, 57.136239 ], [ -89.648438, 56.944974 ], [ -88.945312, 56.944974 ], [ -88.945312, 56.752723 ], [ -88.242188, 56.752723 ], [ -88.242188, 56.559482 ], [ -87.890625, 56.559482 ], [ -87.890625, 56.365250 ], [ -91.757812, 56.365250 ], [ -91.757812, 57.136239 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.875000, 56.365250 ], [ -61.875000, 56.170023 ], [ -61.523438, 56.170023 ], [ -61.523438, 55.973798 ], [ -60.820312, 55.973798 ], [ -60.820312, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.379110 ], [ -59.765625, 55.379110 ], [ -59.765625, 55.178868 ], [ -59.062500, 55.178868 ], [ -59.062500, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.775346 ], [ -57.656250, 54.775346 ], [ -57.656250, 54.572062 ], [ -57.304688, 54.572062 ], [ -57.304688, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 52.696361 ], [ -55.546875, 52.696361 ], [ -55.546875, 51.835778 ], [ -56.250000, 51.835778 ], [ -56.250000, 51.618017 ], [ -56.601562, 51.618017 ], [ -56.601562, 51.399206 ], [ -57.304688, 51.399206 ], [ -57.304688, 51.179343 ], [ -58.007812, 51.179343 ], [ -58.007812, 50.958427 ], [ -58.710938, 50.958427 ], [ -58.710938, 50.736455 ], [ -59.062500, 50.736455 ], [ -59.062500, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.289339 ], [ -60.820312, 50.289339 ], [ -60.820312, 50.064192 ], [ -63.281250, 50.064192 ], [ -63.281250, 50.289339 ], [ -66.445312, 50.289339 ], [ -66.445312, 50.064192 ], [ -66.796875, 50.064192 ], [ -66.796875, 49.610710 ], [ -67.148438, 49.610710 ], [ -67.148438, 49.382373 ], [ -67.851562, 49.382373 ], [ -67.851562, 49.152970 ], [ -68.554688, 49.152970 ], [ -68.554688, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.609375, 48.224673 ], [ -69.609375, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 46.800059 ], [ -70.312500, 46.800059 ], [ -70.312500, 47.040182 ], [ -69.960938, 47.040182 ], [ -69.960938, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 46.800059 ], [ -69.960938, 46.800059 ], [ -69.960938, 46.316584 ], [ -70.312500, 46.316584 ], [ -70.312500, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.336702 ], [ -71.367188, 45.336702 ], [ -71.367188, 45.089036 ], [ -74.882812, 45.089036 ], [ -74.882812, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.339565 ], [ -75.937500, 44.339565 ], [ -75.937500, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.834527 ], [ -76.992188, 43.834527 ], [ -76.992188, 43.580391 ], [ -79.101562, 43.580391 ], [ -79.101562, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.553080 ], [ -79.804688, 42.553080 ], [ -79.804688, 42.293564 ], [ -81.210938, 42.293564 ], [ -81.210938, 42.032974 ], [ -81.914062, 42.032974 ], [ -81.914062, 41.771312 ], [ -82.968750, 41.771312 ], [ -82.968750, 42.553080 ], [ -82.617188, 42.553080 ], [ -82.617188, 42.811522 ], [ -82.265625, 42.811522 ], [ -82.265625, 44.840291 ], [ -82.617188, 44.840291 ], [ -82.617188, 45.336702 ], [ -82.968750, 45.336702 ], [ -82.968750, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 45.828799 ], [ -83.320312, 45.828799 ], [ -83.320312, 46.073231 ], [ -84.023438, 46.073231 ], [ -84.023438, 46.316584 ], [ -84.726562, 46.316584 ], [ -84.726562, 46.800059 ], [ -85.078125, 46.800059 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.279229 ], [ -86.484375, 47.279229 ], [ -86.484375, 47.517201 ], [ -86.835938, 47.517201 ], [ -86.835938, 47.754098 ], [ -87.539062, 47.754098 ], [ -87.539062, 47.989922 ], [ -88.242188, 47.989922 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -91.757812, 48.224673 ], [ -91.757812, 56.365250 ], [ -87.539062, 56.365250 ], [ -87.539062, 55.973798 ], [ -86.835938, 55.973798 ], [ -86.835938, 55.776573 ], [ -86.132812, 55.776573 ], [ -86.132812, 55.578345 ], [ -85.429688, 55.578345 ], [ -85.429688, 55.379110 ], [ -84.375000, 55.379110 ], [ -84.375000, 55.178868 ], [ -82.265625, 55.178868 ], [ -82.265625, 52.908902 ], [ -81.914062, 52.908902 ], [ -81.914062, 52.268157 ], [ -81.562500, 52.268157 ], [ -81.562500, 51.835778 ], [ -81.210938, 51.835778 ], [ -81.210938, 51.618017 ], [ -80.507812, 51.618017 ], [ -80.507812, 51.399206 ], [ -80.156250, 51.399206 ], [ -80.156250, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 51.399206 ], [ -79.101562, 51.399206 ], [ -79.101562, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.101562, 53.330873 ], [ -79.101562, 54.162434 ], [ -79.453125, 54.162434 ], [ -79.453125, 54.367759 ], [ -79.804688, 54.367759 ], [ -79.804688, 54.572062 ], [ -79.453125, 54.572062 ], [ -79.453125, 54.775346 ], [ -78.750000, 54.775346 ], [ -78.750000, 54.977614 ], [ -78.398438, 54.977614 ], [ -78.398438, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 55.578345 ], [ -76.992188, 55.578345 ], [ -76.992188, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 56.365250 ], [ -61.875000, 56.365250 ] ] ], [ [ [ -65.039062, 49.152970 ], [ -65.039062, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 48.690960 ], [ -64.335938, 48.690960 ], [ -64.335938, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.039062, 47.989922 ], [ -65.039062, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 45.828799 ], [ -61.171875, 45.828799 ], [ -61.171875, 46.316584 ], [ -60.820312, 46.316584 ], [ -60.820312, 46.800059 ], [ -60.468750, 46.800059 ], [ -60.468750, 46.073231 ], [ -60.117188, 46.073231 ], [ -60.117188, 45.828799 ], [ -59.765625, 45.828799 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.336702 ], [ -61.171875, 45.336702 ], [ -61.171875, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.840291 ], [ -62.578125, 44.840291 ], [ -62.578125, 44.590467 ], [ -63.632812, 44.590467 ], [ -63.632812, 44.339565 ], [ -64.335938, 44.339565 ], [ -64.335938, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.834527 ], [ -65.039062, 43.834527 ], [ -65.039062, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.339565 ], [ -65.742188, 44.339565 ], [ -65.742188, 44.590467 ], [ -65.390625, 44.590467 ], [ -65.390625, 44.840291 ], [ -64.687500, 44.840291 ], [ -64.687500, 45.089036 ], [ -64.335938, 45.089036 ], [ -64.335938, 45.336702 ], [ -66.445312, 45.336702 ], [ -66.445312, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 45.336702 ], [ -67.851562, 45.336702 ], [ -67.851562, 47.040182 ], [ -68.203125, 47.040182 ], [ -68.203125, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 47.517201 ], [ -69.257812, 47.517201 ], [ -69.257812, 47.754098 ], [ -68.906250, 47.754098 ], [ -68.906250, 47.989922 ], [ -68.554688, 47.989922 ], [ -68.554688, 48.224673 ], [ -68.203125, 48.224673 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.690960 ], [ -67.148438, 48.690960 ], [ -67.148438, 48.922499 ], [ -66.445312, 48.922499 ], [ -66.445312, 49.152970 ], [ -65.039062, 49.152970 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -55.546875, 51.179343 ], [ -55.898438, 51.179343 ], [ -55.898438, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.513427 ], [ -56.601562, 50.513427 ], [ -56.601562, 50.064192 ], [ -56.953125, 50.064192 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.152970 ], [ -53.437500, 49.152970 ], [ -53.437500, 48.690960 ], [ -53.789062, 48.690960 ], [ -53.789062, 48.458352 ], [ -53.085938, 48.458352 ], [ -53.085938, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.040182 ], [ -53.085938, 47.040182 ], [ -53.085938, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -53.789062, 47.040182 ], [ -53.789062, 47.517201 ], [ -54.492188, 47.517201 ], [ -54.492188, 47.279229 ], [ -54.843750, 47.279229 ], [ -54.843750, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 47.279229 ], [ -55.898438, 47.279229 ], [ -55.898438, 47.517201 ], [ -59.414062, 47.517201 ], [ -59.414062, 47.989922 ], [ -58.710938, 47.989922 ], [ -58.710938, 48.224673 ], [ -59.062500, 48.224673 ], [ -59.062500, 48.458352 ], [ -58.710938, 48.458352 ], [ -58.710938, 48.922499 ], [ -58.359375, 48.922499 ], [ -58.359375, 49.382373 ], [ -58.007812, 49.382373 ], [ -58.007812, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.289339 ], [ -57.304688, 50.289339 ], [ -57.304688, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 50.958427 ], [ -56.601562, 50.958427 ], [ -56.601562, 51.179343 ], [ -56.250000, 51.179343 ], [ -56.250000, 51.399206 ], [ -55.898438, 51.399206 ], [ -55.898438, 51.618017 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -55.195312, 47.040182 ], [ -55.195312, 46.800059 ], [ -55.546875, 46.800059 ], [ -55.546875, 47.040182 ], [ -55.195312, 47.040182 ] ] ], [ [ [ -63.632812, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 46.316584 ] ] ], [ [ [ -61.875000, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.316584 ] ] ], [ [ [ -63.632812, 49.837982 ], [ -63.632812, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 49.152970 ], [ -63.281250, 49.152970 ], [ -63.281250, 49.382373 ], [ -63.984375, 49.382373 ], [ -63.984375, 49.610710 ], [ -64.687500, 49.610710 ], [ -64.687500, 49.837982 ], [ -63.632812, 49.837982 ] ] ], [ [ [ -63.632812, 46.316584 ], [ -63.984375, 46.316584 ], [ -63.984375, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.800059 ], [ -63.632812, 46.800059 ], [ -63.632812, 46.316584 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.875000, 56.365250 ], [ -61.875000, 56.170023 ], [ -61.523438, 56.170023 ], [ -61.523438, 55.973798 ], [ -60.820312, 55.973798 ], [ -60.820312, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.379110 ], [ -59.765625, 55.379110 ], [ -59.765625, 55.178868 ], [ -59.062500, 55.178868 ], [ -59.062500, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.775346 ], [ -57.656250, 54.775346 ], [ -57.656250, 54.572062 ], [ -57.304688, 54.572062 ], [ -57.304688, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 52.696361 ], [ -55.546875, 52.696361 ], [ -55.546875, 51.835778 ], [ -56.250000, 51.835778 ], [ -56.250000, 51.618017 ], [ -56.601562, 51.618017 ], [ -56.601562, 51.399206 ], [ -57.304688, 51.399206 ], [ -57.304688, 51.179343 ], [ -58.007812, 51.179343 ], [ -58.007812, 50.958427 ], [ -58.710938, 50.958427 ], [ -58.710938, 50.736455 ], [ -59.062500, 50.736455 ], [ -59.062500, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.289339 ], [ -60.820312, 50.289339 ], [ -60.820312, 50.064192 ], [ -63.281250, 50.064192 ], [ -63.281250, 50.289339 ], [ -66.445312, 50.289339 ], [ -66.445312, 50.064192 ], [ -66.796875, 50.064192 ], [ -66.796875, 49.610710 ], [ -67.148438, 49.610710 ], [ -67.148438, 49.382373 ], [ -67.851562, 49.382373 ], [ -67.851562, 49.152970 ], [ -68.554688, 49.152970 ], [ -68.554688, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.609375, 48.224673 ], [ -69.609375, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 46.800059 ], [ -70.312500, 46.800059 ], [ -70.312500, 47.040182 ], [ -69.960938, 47.040182 ], [ -69.960938, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 46.800059 ], [ -69.960938, 46.800059 ], [ -69.960938, 46.316584 ], [ -70.312500, 46.316584 ], [ -70.312500, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.336702 ], [ -71.367188, 45.336702 ], [ -71.367188, 45.089036 ], [ -74.882812, 45.089036 ], [ -74.882812, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.339565 ], [ -75.937500, 44.339565 ], [ -75.937500, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.834527 ], [ -76.992188, 43.834527 ], [ -76.992188, 43.580391 ], [ -79.101562, 43.580391 ], [ -79.101562, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.553080 ], [ -79.804688, 42.553080 ], [ -79.804688, 42.293564 ], [ -81.210938, 42.293564 ], [ -81.210938, 42.032974 ], [ -81.914062, 42.032974 ], [ -81.914062, 41.771312 ], [ -82.968750, 41.771312 ], [ -82.968750, 42.553080 ], [ -82.617188, 42.553080 ], [ -82.617188, 42.811522 ], [ -82.265625, 42.811522 ], [ -82.265625, 44.840291 ], [ -82.617188, 44.840291 ], [ -82.617188, 45.336702 ], [ -82.968750, 45.336702 ], [ -82.968750, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 45.828799 ], [ -83.320312, 45.828799 ], [ -83.320312, 46.073231 ], [ -84.023438, 46.073231 ], [ -84.023438, 46.316584 ], [ -84.726562, 46.316584 ], [ -84.726562, 46.800059 ], [ -85.078125, 46.800059 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.279229 ], [ -86.484375, 47.279229 ], [ -86.484375, 47.517201 ], [ -86.835938, 47.517201 ], [ -86.835938, 47.754098 ], [ -87.539062, 47.754098 ], [ -87.539062, 47.989922 ], [ -88.242188, 47.989922 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -91.757812, 48.224673 ], [ -91.757812, 56.365250 ], [ -87.539062, 56.365250 ], [ -87.539062, 55.973798 ], [ -86.835938, 55.973798 ], [ -86.835938, 55.776573 ], [ -86.132812, 55.776573 ], [ -86.132812, 55.578345 ], [ -85.429688, 55.578345 ], [ -85.429688, 55.379110 ], [ -84.375000, 55.379110 ], [ -84.375000, 55.178868 ], [ -82.265625, 55.178868 ], [ -82.265625, 52.908902 ], [ -81.914062, 52.908902 ], [ -81.914062, 52.268157 ], [ -81.562500, 52.268157 ], [ -81.562500, 51.835778 ], [ -81.210938, 51.835778 ], [ -81.210938, 51.618017 ], [ -80.507812, 51.618017 ], [ -80.507812, 51.399206 ], [ -80.156250, 51.399206 ], [ -80.156250, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 51.399206 ], [ -79.101562, 51.399206 ], [ -79.101562, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.101562, 53.330873 ], [ -79.101562, 54.162434 ], [ -79.453125, 54.162434 ], [ -79.453125, 54.367759 ], [ -79.804688, 54.367759 ], [ -79.804688, 54.572062 ], [ -79.453125, 54.572062 ], [ -79.453125, 54.775346 ], [ -78.750000, 54.775346 ], [ -78.750000, 54.977614 ], [ -78.398438, 54.977614 ], [ -78.398438, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 55.578345 ], [ -76.992188, 55.578345 ], [ -76.992188, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 56.365250 ], [ -61.875000, 56.365250 ] ] ], [ [ [ -65.039062, 49.152970 ], [ -65.039062, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 48.690960 ], [ -64.335938, 48.690960 ], [ -64.335938, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.039062, 47.989922 ], [ -65.039062, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 45.828799 ], [ -61.171875, 45.828799 ], [ -61.171875, 46.316584 ], [ -60.820312, 46.316584 ], [ -60.820312, 46.800059 ], [ -60.468750, 46.800059 ], [ -60.468750, 46.073231 ], [ -60.117188, 46.073231 ], [ -60.117188, 45.828799 ], [ -59.765625, 45.828799 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.336702 ], [ -61.171875, 45.336702 ], [ -61.171875, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.840291 ], [ -62.578125, 44.840291 ], [ -62.578125, 44.590467 ], [ -63.632812, 44.590467 ], [ -63.632812, 44.339565 ], [ -64.335938, 44.339565 ], [ -64.335938, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.834527 ], [ -65.039062, 43.834527 ], [ -65.039062, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.339565 ], [ -65.742188, 44.339565 ], [ -65.742188, 44.590467 ], [ -65.390625, 44.590467 ], [ -65.390625, 44.840291 ], [ -64.687500, 44.840291 ], [ -64.687500, 45.089036 ], [ -64.335938, 45.089036 ], [ -64.335938, 45.336702 ], [ -66.445312, 45.336702 ], [ -66.445312, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 45.336702 ], [ -67.851562, 45.336702 ], [ -67.851562, 47.040182 ], [ -68.203125, 47.040182 ], [ -68.203125, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 47.517201 ], [ -69.257812, 47.517201 ], [ -69.257812, 47.754098 ], [ -68.906250, 47.754098 ], [ -68.906250, 47.989922 ], [ -68.554688, 47.989922 ], [ -68.554688, 48.224673 ], [ -68.203125, 48.224673 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.690960 ], [ -67.148438, 48.690960 ], [ -67.148438, 48.922499 ], [ -66.445312, 48.922499 ], [ -66.445312, 49.152970 ], [ -65.039062, 49.152970 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -55.546875, 51.179343 ], [ -55.898438, 51.179343 ], [ -55.898438, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.513427 ], [ -56.601562, 50.513427 ], [ -56.601562, 50.064192 ], [ -56.953125, 50.064192 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.152970 ], [ -53.437500, 49.152970 ], [ -53.437500, 48.690960 ], [ -53.789062, 48.690960 ], [ -53.789062, 48.458352 ], [ -53.085938, 48.458352 ], [ -53.085938, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.040182 ], [ -53.085938, 47.040182 ], [ -53.085938, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -53.789062, 47.040182 ], [ -53.789062, 47.517201 ], [ -54.492188, 47.517201 ], [ -54.492188, 47.279229 ], [ -54.843750, 47.279229 ], [ -54.843750, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 47.279229 ], [ -55.898438, 47.279229 ], [ -55.898438, 47.517201 ], [ -59.414062, 47.517201 ], [ -59.414062, 47.989922 ], [ -58.710938, 47.989922 ], [ -58.710938, 48.224673 ], [ -59.062500, 48.224673 ], [ -59.062500, 48.458352 ], [ -58.710938, 48.458352 ], [ -58.710938, 48.922499 ], [ -58.359375, 48.922499 ], [ -58.359375, 49.382373 ], [ -58.007812, 49.382373 ], [ -58.007812, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.289339 ], [ -57.304688, 50.289339 ], [ -57.304688, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 50.958427 ], [ -56.601562, 50.958427 ], [ -56.601562, 51.179343 ], [ -56.250000, 51.179343 ], [ -56.250000, 51.399206 ], [ -55.898438, 51.399206 ], [ -55.898438, 51.618017 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -55.195312, 47.040182 ], [ -55.195312, 46.800059 ], [ -55.546875, 46.800059 ], [ -55.546875, 47.040182 ], [ -55.195312, 47.040182 ] ] ], [ [ [ -63.632812, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 46.316584 ] ] ], [ [ [ -61.875000, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.316584 ] ] ], [ [ [ -63.632812, 49.837982 ], [ -63.632812, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.152970 ], [ -63.281250, 49.152970 ], [ -63.281250, 49.382373 ], [ -63.984375, 49.382373 ], [ -63.984375, 49.610710 ], [ -64.687500, 49.610710 ], [ -64.687500, 49.837982 ], [ -63.632812, 49.837982 ] ] ], [ [ [ -63.632812, 46.316584 ], [ -63.984375, 46.316584 ], [ -63.984375, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.800059 ], [ -63.632812, 46.800059 ], [ -63.632812, 46.316584 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.234375, 39.095963 ], [ -75.234375, 38.548165 ], [ -74.882812, 38.548165 ], [ -74.882812, 37.996163 ], [ -75.234375, 37.996163 ], [ -75.234375, 37.718590 ], [ -75.585938, 37.718590 ], [ -75.585938, 37.996163 ], [ -76.289062, 37.996163 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.585938, 36.031332 ], [ -75.585938, 35.173808 ], [ -75.937500, 35.173808 ], [ -75.937500, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.597042 ], [ -77.343750, 34.597042 ], [ -77.343750, 34.307144 ], [ -77.695312, 34.307144 ], [ -77.695312, 34.016242 ], [ -78.046875, 34.016242 ], [ -78.046875, 33.724340 ], [ -78.398438, 33.724340 ], [ -78.398438, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.546813 ], [ -80.156250, 32.546813 ], [ -80.156250, 32.249974 ], [ -80.507812, 32.249974 ], [ -80.507812, 31.952162 ], [ -80.859375, 31.952162 ], [ -80.859375, 31.653381 ], [ -81.210938, 31.653381 ], [ -81.210938, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.448674 ], [ -81.210938, 30.448674 ], [ -81.210938, 29.535230 ], [ -80.859375, 29.535230 ], [ -80.859375, 28.921631 ], [ -80.507812, 28.921631 ], [ -80.507812, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 25.482951 ], [ -80.507812, 25.482951 ], [ -80.507812, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.482951 ], [ -81.562500, 25.482951 ], [ -81.562500, 25.799891 ], [ -81.914062, 25.799891 ], [ -81.914062, 26.431228 ], [ -82.265625, 26.431228 ], [ -82.265625, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.683528 ], [ -82.968750, 27.683528 ], [ -82.968750, 28.304381 ], [ -82.617188, 28.304381 ], [ -82.617188, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.228890 ], [ -83.320312, 29.228890 ], [ -83.320312, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.535230 ], [ -85.429688, 29.535230 ], [ -85.429688, 29.840644 ], [ -85.781250, 29.840644 ], [ -85.781250, 30.145127 ], [ -86.484375, 30.145127 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.145127 ], [ -88.242188, 30.145127 ], [ -88.242188, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.840644 ], [ -89.296875, 29.840644 ], [ -89.296875, 29.228890 ], [ -91.757812, 29.228890 ], [ -91.757812, 48.224673 ], [ -90.351562, 48.224673 ], [ -90.351562, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.224673 ], [ -88.242188, 48.224673 ], [ -88.242188, 47.989922 ], [ -87.539062, 47.989922 ], [ -87.539062, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.279229 ], [ -85.781250, 47.279229 ], [ -85.781250, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.800059 ], [ -84.726562, 46.800059 ], [ -84.726562, 46.316584 ], [ -84.023438, 46.316584 ], [ -84.023438, 46.073231 ], [ -83.320312, 46.073231 ], [ -83.320312, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 45.583290 ], [ -82.968750, 45.583290 ], [ -82.968750, 45.336702 ], [ -82.617188, 45.336702 ], [ -82.617188, 44.840291 ], [ -82.265625, 44.840291 ], [ -82.265625, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 41.771312 ], [ -81.914062, 41.771312 ], [ -81.914062, 42.032974 ], [ -81.210938, 42.032974 ], [ -81.210938, 42.293564 ], [ -79.804688, 42.293564 ], [ -79.804688, 42.553080 ], [ -79.101562, 42.553080 ], [ -79.101562, 42.811522 ], [ -78.750000, 42.811522 ], [ -78.750000, 43.068888 ], [ -79.101562, 43.068888 ], [ -79.101562, 43.580391 ], [ -76.992188, 43.580391 ], [ -76.992188, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 44.339565 ], [ -75.585938, 44.339565 ], [ -75.585938, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 45.089036 ], [ -71.367188, 45.089036 ], [ -71.367188, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.583290 ], [ -70.312500, 45.583290 ], [ -70.312500, 46.316584 ], [ -69.960938, 46.316584 ], [ -69.960938, 46.800059 ], [ -69.609375, 46.800059 ], [ -69.609375, 47.279229 ], [ -68.203125, 47.279229 ], [ -68.203125, 47.040182 ], [ -67.851562, 47.040182 ], [ -67.851562, 45.336702 ], [ -67.500000, 45.336702 ], [ -67.500000, 45.089036 ], [ -67.148438, 45.089036 ], [ -67.148438, 44.840291 ], [ -66.796875, 44.840291 ], [ -66.796875, 44.590467 ], [ -67.500000, 44.590467 ], [ -67.500000, 44.339565 ], [ -68.203125, 44.339565 ], [ -68.203125, 44.087585 ], [ -68.906250, 44.087585 ], [ -68.906250, 43.834527 ], [ -69.609375, 43.834527 ], [ -69.609375, 43.580391 ], [ -69.960938, 43.580391 ], [ -69.960938, 43.325178 ], [ -70.312500, 43.325178 ], [ -70.312500, 43.068888 ], [ -70.664062, 43.068888 ], [ -70.664062, 41.771312 ], [ -70.312500, 41.771312 ], [ -70.312500, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.508577 ], [ -71.015625, 41.508577 ], [ -71.015625, 41.244772 ], [ -72.070312, 41.244772 ], [ -72.070312, 40.979898 ], [ -72.421875, 40.979898 ], [ -72.421875, 40.713956 ], [ -73.828125, 40.713956 ], [ -73.828125, 39.909736 ], [ -74.179688, 39.909736 ], [ -74.179688, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 38.822591 ], [ -74.882812, 38.822591 ], [ -74.882812, 39.095963 ], [ -75.234375, 39.095963 ] ], [ [ -76.640625, 38.822591 ], [ -76.640625, 38.272689 ], [ -76.289062, 38.272689 ], [ -76.289062, 38.822591 ], [ -76.640625, 38.822591 ] ], [ [ -72.773438, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.244772 ] ], [ [ -75.234375, 39.095963 ], [ -75.234375, 39.368279 ], [ -75.585938, 39.368279 ], [ -75.585938, 39.095963 ], [ -75.234375, 39.095963 ] ] ], [ [ [ -75.585938, 37.439974 ], [ -75.585938, 37.160317 ], [ -75.937500, 37.160317 ], [ -75.937500, 37.439974 ], [ -75.585938, 37.439974 ] ] ] ] } } , @@ -936,11 +936,11 @@ , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.398438, 67.204032 ], [ -33.398438, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.513260 ], [ -34.453125, 66.513260 ], [ -34.453125, 66.372755 ], [ -34.804688, 66.372755 ], [ -34.804688, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.089364 ], [ -35.859375, 66.089364 ], [ -35.859375, 65.946472 ], [ -36.914062, 65.946472 ], [ -36.914062, 65.802776 ], [ -37.617188, 65.802776 ], [ -37.617188, 65.658275 ], [ -38.671875, 65.658275 ], [ -38.671875, 65.512963 ], [ -39.726562, 65.512963 ], [ -39.726562, 65.366837 ], [ -40.078125, 65.366837 ], [ -40.078125, 65.072130 ], [ -40.429688, 65.072130 ], [ -40.429688, 64.774125 ], [ -40.781250, 64.774125 ], [ -40.781250, 63.860036 ], [ -41.132812, 63.860036 ], [ -41.132812, 63.391522 ], [ -41.484375, 63.391522 ], [ -41.484375, 63.233627 ], [ -41.835938, 63.233627 ], [ -41.835938, 63.074866 ], [ -42.187500, 63.074866 ], [ -42.187500, 62.915233 ], [ -42.539062, 62.915233 ], [ -42.539062, 62.754726 ], [ -42.890625, 62.754726 ], [ -42.890625, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 61.438767 ], [ -42.890625, 61.438767 ], [ -42.890625, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.703125, 60.413852 ], [ -45.703125, 60.586967 ], [ -46.054688, 60.586967 ], [ -46.054688, 60.759160 ], [ -46.406250, 60.759160 ], [ -46.406250, 60.930432 ], [ -48.515625, 60.930432 ], [ -48.515625, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.270233 ], [ -49.218750, 61.270233 ], [ -49.218750, 61.606396 ], [ -49.570312, 61.606396 ], [ -49.570312, 62.103883 ], [ -49.921875, 62.103883 ], [ -49.921875, 62.431074 ], [ -50.273438, 62.431074 ], [ -50.273438, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 63.074866 ], [ -50.976562, 63.074866 ], [ -50.976562, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 64.014496 ], [ -52.031250, 64.014496 ], [ -52.031250, 64.774125 ], [ -52.382812, 64.774125 ], [ -52.382812, 65.219894 ], [ -52.734375, 65.219894 ], [ -52.734375, 65.512963 ], [ -53.085938, 65.512963 ], [ -53.085938, 65.658275 ], [ -53.437500, 65.658275 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.372755 ], [ -53.437500, 66.372755 ], [ -53.437500, 66.791909 ], [ -53.789062, 66.791909 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.204032 ], [ -33.398438, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 24.846565 ], [ -77.695312, 24.527135 ], [ -77.695312, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.206890 ], [ -78.398438, 24.206890 ], [ -78.398438, 24.846565 ], [ -78.046875, 24.846565 ] ] ], [ [ [ -76.992188, 26.745610 ], [ -76.992188, 26.115986 ], [ -77.343750, 26.115986 ], [ -77.343750, 26.745610 ], [ -76.992188, 26.745610 ] ] ], [ [ [ -77.695312, 26.745610 ], [ -77.695312, 26.431228 ], [ -79.101562, 26.431228 ], [ -79.101562, 26.745610 ], [ -77.695312, 26.745610 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 24.846565 ], [ -77.695312, 24.527135 ], [ -77.695312, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.206890 ], [ -78.398438, 24.206890 ], [ -78.398438, 24.846565 ], [ -78.046875, 24.846565 ] ] ], [ [ [ -76.992188, 26.745610 ], [ -76.992188, 26.115986 ], [ -77.343750, 26.115986 ], [ -77.343750, 26.745610 ], [ -76.992188, 26.745610 ] ] ], [ [ [ -78.398438, 26.745610 ], [ -77.695312, 26.431228 ], [ -79.101562, 26.431228 ], [ -79.101562, 26.745610 ], [ -78.398438, 26.745610 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 16.299051 ], [ -88.593750, 16.299051 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -87.890625, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ] ] ] } } , { "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.284185 ], [ -83.320312, 15.284185 ], [ -83.320312, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.604847 ], [ -84.726562, 14.604847 ], [ -84.726562, 14.944785 ], [ -85.078125, 14.944785 ], [ -85.078125, 13.923404 ], [ -86.835938, 13.923404 ], [ -86.835938, 12.897489 ], [ -87.539062, 12.897489 ], [ -87.539062, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -88.945312, 13.923404 ], [ -88.945312, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.944785 ], [ -88.593750, 14.944785 ], [ -88.593750, 15.284185 ], [ -88.242188, 15.284185 ], [ -88.242188, 15.623037 ], [ -87.890625, 15.623037 ], [ -87.890625, 15.961329 ], [ -87.539062, 15.961329 ], [ -87.539062, 15.623037 ], [ -86.132812, 15.623037 ], [ -86.132812, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } , @@ -978,7 +978,7 @@ , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.437500, 5.615986 ], [ -53.437500, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 4.565474 ], [ -51.679688, 4.565474 ], [ -51.679688, 3.864255 ], [ -52.031250, 3.864255 ], [ -52.031250, 3.162456 ], [ -52.382812, 3.162456 ], [ -52.382812, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.460181 ], [ -53.789062, 2.460181 ], [ -53.789062, 2.108899 ], [ -54.492188, 2.108899 ], [ -54.492188, 2.460181 ], [ -54.140625, 2.460181 ], [ -54.140625, 3.864255 ], [ -54.492188, 3.864255 ], [ -54.492188, 4.915833 ], [ -54.140625, 4.915833 ], [ -54.140625, 5.266008 ], [ -53.789062, 5.266008 ], [ -53.789062, 5.615986 ], [ -53.437500, 5.615986 ] ] ], [ [ [ 1.757812, 50.513427 ], [ 1.757812, 42.293564 ], [ 1.406250, 42.293564 ], [ 1.406250, 42.553080 ], [ -0.351562, 42.553080 ], [ -0.351562, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 45.089036 ], [ -1.054688, 45.089036 ], [ -1.054688, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.558860 ], [ -1.757812, 46.558860 ], [ -1.757812, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 47.754098 ], [ -4.218750, 47.754098 ], [ -4.218750, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -3.515625, 48.690960 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.690960 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.382373 ], [ -0.351562, 49.382373 ], [ -0.351562, 49.610710 ], [ 0.351562, 49.610710 ], [ 0.351562, 49.837982 ], [ 1.054688, 49.837982 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.757812, 50.513427 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.799891 ], [ -11.953125, 23.241346 ], [ -13.007812, 23.241346 ], [ -13.007812, 21.289374 ], [ -15.468750, 21.289374 ], [ -15.468750, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.563987 ], [ -13.710938, 23.563987 ], [ -13.710938, 23.885838 ], [ -13.359375, 23.885838 ], [ -13.359375, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.165173 ], [ -12.304688, 25.165173 ], [ -12.304688, 25.799891 ], [ -11.953125, 25.799891 ] ] ], [ [ [ -8.789062, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.115986 ], [ -11.601562, 26.115986 ], [ -11.601562, 26.431228 ], [ -11.250000, 26.431228 ], [ -11.250000, 26.745610 ], [ -9.492188, 26.745610 ], [ -8.789062, 27.059126 ], [ -8.789062, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.799891 ], [ -11.953125, 23.241346 ], [ -13.007812, 23.241346 ], [ -13.007812, 21.289374 ], [ -15.468750, 21.289374 ], [ -15.468750, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.563987 ], [ -13.710938, 23.563987 ], [ -13.710938, 23.885838 ], [ -13.359375, 23.885838 ], [ -13.359375, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.165173 ], [ -12.304688, 25.165173 ], [ -12.304688, 25.799891 ], [ -11.953125, 25.799891 ] ] ], [ [ [ -8.789062, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.115986 ], [ -11.601562, 26.115986 ], [ -11.601562, 26.431228 ], [ -11.250000, 26.431228 ], [ -11.250000, 26.745610 ], [ -9.843750, 26.745610 ], [ -8.789062, 27.059126 ], [ -8.789062, 25.799891 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 42.032974 ], [ -8.085938, 41.771312 ], [ -6.679688, 41.771312 ], [ -6.679688, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 40.713956 ], [ -7.031250, 40.713956 ], [ -7.031250, 39.639538 ], [ -7.382812, 39.639538 ], [ -7.382812, 39.368279 ], [ -7.031250, 39.368279 ], [ -7.031250, 38.548165 ], [ -7.382812, 38.548165 ], [ -7.382812, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 36.879621 ], [ -8.789062, 36.879621 ], [ -8.789062, 38.272689 ], [ -9.140625, 38.272689 ], [ -9.140625, 38.548165 ], [ -9.492188, 38.548165 ], [ -9.492188, 39.368279 ], [ -9.140625, 39.368279 ], [ -9.140625, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.244772 ], [ -9.140625, 41.244772 ], [ -9.140625, 41.771312 ], [ -8.789062, 41.771312 ], [ -8.789062, 42.032974 ], [ -8.085938, 42.032974 ] ] ] } } , @@ -1002,7 +1002,7 @@ , { "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.239945 ], [ 1.054688, 13.239945 ], [ 1.054688, 12.554564 ], [ 1.757812, 12.554564 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 10.833306 ], [ 0.351562, 10.833306 ], [ 0.351562, 11.178402 ], [ -0.351562, 11.178402 ], [ -0.351562, 10.833306 ], [ -1.054688, 10.833306 ], [ -1.054688, 11.178402 ], [ -1.757812, 11.178402 ], [ -1.757812, 10.833306 ], [ -2.812500, 10.833306 ], [ -2.812500, 9.795678 ], [ -3.867188, 9.795678 ], [ -3.867188, 9.449062 ], [ -4.921875, 9.449062 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 12.897489 ], [ -4.218750, 12.897489 ], [ -4.218750, 13.239945 ], [ -3.164062, 13.239945 ], [ -3.164062, 13.581921 ], [ -2.812500, 13.581921 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 7.362467 ], [ -8.789062, 7.362467 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 5.965754 ], [ -8.085938, 5.965754 ], [ -8.085938, 5.615986 ], [ -7.734375, 5.615986 ], [ -7.734375, 4.214943 ], [ -8.437500, 4.214943 ], [ -8.437500, 4.565474 ], [ -9.140625, 4.565474 ], [ -9.140625, 4.915833 ], [ -9.492188, 4.915833 ], [ -9.492188, 5.266008 ], [ -9.843750, 5.266008 ], [ -9.843750, 5.615986 ], [ -10.195312, 5.615986 ], [ -10.195312, 5.965754 ], [ -10.898438, 5.965754 ], [ -10.898438, 6.315299 ], [ -11.601562, 6.315299 ], [ -11.601562, 6.664608 ], [ -11.250000, 6.664608 ], [ -11.250000, 7.362467 ], [ -10.898438, 7.362467 ], [ -10.898438, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.059230 ], [ -10.195312, 8.059230 ], [ -10.195312, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 7.362467 ], [ -8.789062, 7.362467 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 5.965754 ], [ -8.085938, 5.965754 ], [ -8.085938, 5.615986 ], [ -7.734375, 5.615986 ], [ -7.734375, 5.266008 ], [ -7.382812, 5.266008 ], [ -7.734375, 4.214943 ], [ -8.437500, 4.214943 ], [ -8.437500, 4.565474 ], [ -9.140625, 4.565474 ], [ -9.140625, 4.915833 ], [ -9.492188, 4.915833 ], [ -9.492188, 5.266008 ], [ -9.843750, 5.266008 ], [ -9.843750, 5.615986 ], [ -10.195312, 5.615986 ], [ -10.195312, 5.965754 ], [ -10.898438, 5.965754 ], [ -10.898438, 6.315299 ], [ -11.601562, 6.315299 ], [ -11.601562, 6.664608 ], [ -11.250000, 6.664608 ], [ -11.250000, 7.362467 ], [ -10.898438, 7.362467 ], [ -10.898438, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.059230 ], [ -10.195312, 8.059230 ], [ -10.195312, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } , { "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 10.487812 ], [ -6.328125, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.449062 ], [ -3.867188, 9.449062 ], [ -3.867188, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 8.754795 ], [ -2.460938, 8.754795 ], [ -2.460938, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 6.664608 ], [ -3.164062, 6.664608 ], [ -3.164062, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.867188, 4.915833 ], [ -3.867188, 5.266008 ], [ -4.921875, 5.266008 ], [ -4.921875, 4.915833 ], [ -5.976562, 4.915833 ], [ -5.976562, 4.565474 ], [ -6.679688, 4.565474 ], [ -6.679688, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 5.615986 ], [ -8.085938, 5.615986 ], [ -8.085938, 5.965754 ], [ -8.437500, 5.965754 ], [ -8.437500, 7.710992 ], [ -8.085938, 7.710992 ], [ -8.085938, 8.059230 ], [ -8.437500, 8.059230 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 8.754795 ], [ -8.085938, 8.754795 ], [ -8.085938, 9.449062 ], [ -8.437500, 9.449062 ], [ -8.437500, 9.795678 ], [ -8.085938, 9.795678 ], [ -8.085938, 10.141932 ], [ -6.679688, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.328125, 10.487812 ] ] ] } } , @@ -1020,7 +1020,7 @@ , { "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 10.833306 ], [ 1.054688, 10.833306 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.757812, 9.102097 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 7.013668 ], [ 0.351562, 7.013668 ], [ 0.351562, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.523088 ], [ 1.757812, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.054688, 9.795678 ], [ 1.054688, 10.141932 ], [ 0.703125, 10.141932 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.833306 ], [ 1.406250, 10.833306 ], [ 1.406250, 11.523088 ], [ 1.757812, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.523088 ], [ 1.757812, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.054688, 9.795678 ], [ 1.054688, 10.141932 ], [ 0.703125, 10.141932 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.833306 ], [ 1.406250, 10.833306 ], [ 1.406250, 11.178402 ], [ 1.757812, 11.523088 ] ] ] } } ] } ] } , @@ -1050,7 +1050,7 @@ , { "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.757537 ], [ 11.250000, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.757537 ], [ 11.250000, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.804688, 1.757537 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 34.804688, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.804688, 1.757537 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 34.804688, 1.757537 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.132812, 1.757537 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.460181 ], [ 40.429688, -2.460181 ], [ 40.429688, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.513421 ], [ 39.726562, -3.513421 ], [ 39.726562, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.214943 ], [ 38.320312, -4.214943 ], [ 38.320312, -3.864255 ], [ 37.617188, -3.864255 ], [ 37.617188, -3.162456 ], [ 37.265625, -3.162456 ], [ 37.265625, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.460181 ], [ 35.859375, -2.460181 ], [ 35.859375, -2.108899 ], [ 35.507812, -2.108899 ], [ 35.507812, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.000000 ], [ 34.101562, 0.000000 ], [ 34.101562, 0.351560 ], [ 34.453125, 0.351560 ], [ 34.453125, 0.703107 ], [ 34.804688, 0.703107 ], [ 34.804688, 1.757537 ], [ 41.132812, 1.757537 ] ] ] } } , @@ -1110,7 +1110,7 @@ , { "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.013668 ], [ 0.703125, 7.013668 ], [ 0.703125, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.266008 ], [ -0.351562, 5.266008 ], [ -0.351562, 4.915833 ], [ -1.757812, 4.915833 ], [ -1.757812, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 67.204032 ], [ 45.703125, 66.930060 ], [ 46.054688, 66.930060 ], [ 46.054688, 66.652977 ], [ 47.109375, 66.652977 ], [ 47.109375, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 50.064192 ], [ 47.109375, 50.064192 ], [ 47.109375, 49.610710 ], [ 46.757812, 49.610710 ], [ 46.757812, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 48.922499 ], [ 46.757812, 48.922499 ], [ 46.757812, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 48.224673 ], [ 46.757812, 48.224673 ], [ 46.757812, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.754098 ], [ 47.460938, 47.754098 ], [ 47.460938, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.339565 ], [ 47.109375, 44.339565 ], [ 47.109375, 43.834527 ], [ 47.460938, 43.834527 ], [ 47.460938, 41.244772 ], [ 47.109375, 41.244772 ], [ 47.109375, 41.508577 ], [ 46.757812, 41.508577 ], [ 46.757812, 41.771312 ], [ 45.703125, 41.771312 ], [ 45.703125, 42.293564 ], [ 45.351562, 42.293564 ], [ 45.351562, 42.553080 ], [ 43.593750, 42.553080 ], [ 43.593750, 42.811522 ], [ 43.242188, 42.811522 ], [ 43.242188, 43.068888 ], [ 42.539062, 43.068888 ], [ 42.539062, 43.325178 ], [ 39.726562, 43.325178 ], [ 39.726562, 43.580391 ], [ 39.375000, 43.580391 ], [ 39.375000, 43.834527 ], [ 39.023438, 43.834527 ], [ 39.023438, 44.087585 ], [ 38.671875, 44.087585 ], [ 38.671875, 44.339565 ], [ 37.968750, 44.339565 ], [ 37.968750, 44.590467 ], [ 37.265625, 44.590467 ], [ 37.265625, 44.840291 ], [ 36.914062, 44.840291 ], [ 36.914062, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 45.336702 ], [ 37.617188, 45.336702 ], [ 37.617188, 45.828799 ], [ 37.968750, 45.828799 ], [ 37.968750, 46.073231 ], [ 38.320312, 46.073231 ], [ 38.320312, 46.316584 ], [ 37.617188, 46.316584 ], [ 37.617188, 46.558860 ], [ 38.320312, 46.558860 ], [ 38.320312, 46.800059 ], [ 39.023438, 46.800059 ], [ 39.023438, 47.040182 ], [ 38.320312, 47.040182 ], [ 38.320312, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.754098 ], [ 39.375000, 47.754098 ], [ 39.375000, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.610710 ], [ 39.023438, 49.610710 ], [ 39.023438, 49.837982 ], [ 37.617188, 49.837982 ], [ 37.617188, 50.064192 ], [ 37.265625, 50.064192 ], [ 37.265625, 50.289339 ], [ 35.859375, 50.289339 ], [ 35.859375, 50.513427 ], [ 35.507812, 50.513427 ], [ 35.507812, 50.958427 ], [ 35.156250, 50.958427 ], [ 35.156250, 51.179343 ], [ 34.101562, 51.179343 ], [ 34.101562, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.835778 ], [ 34.101562, 51.835778 ], [ 34.101562, 52.052490 ], [ 33.750000, 52.052490 ], [ 33.750000, 52.268157 ], [ 32.343750, 52.268157 ], [ 32.343750, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 32.695312, 53.120405 ], [ 32.695312, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.540307 ], [ 31.640625, 53.540307 ], [ 31.640625, 53.956086 ], [ 31.289062, 53.956086 ], [ 31.289062, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 54.572062 ], [ 30.585938, 54.572062 ], [ 30.585938, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.578345 ], [ 30.234375, 55.578345 ], [ 30.234375, 55.776573 ], [ 29.882812, 55.776573 ], [ 29.882812, 55.578345 ], [ 29.531250, 55.578345 ], [ 29.531250, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.365250 ], [ 27.773438, 56.365250 ], [ 27.773438, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.515823 ], [ 27.773438, 57.515823 ], [ 27.773438, 58.263287 ], [ 27.421875, 58.263287 ], [ 27.421875, 58.813742 ], [ 27.773438, 58.813742 ], [ 27.773438, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.534318 ], [ 28.476562, 59.534318 ], [ 28.476562, 59.712097 ], [ 28.828125, 59.712097 ], [ 28.828125, 59.888937 ], [ 29.179688, 59.888937 ], [ 29.179688, 60.064840 ], [ 28.828125, 60.064840 ], [ 28.828125, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.586967 ], [ 28.476562, 60.586967 ], [ 28.476562, 60.759160 ], [ 28.828125, 60.759160 ], [ 28.828125, 60.930432 ], [ 29.179688, 60.930432 ], [ 29.179688, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.438767 ], [ 29.882812, 61.438767 ], [ 29.882812, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.773123 ], [ 30.585938, 61.773123 ], [ 30.585938, 62.103883 ], [ 30.937500, 62.103883 ], [ 30.937500, 62.267923 ], [ 31.289062, 62.267923 ], [ 31.289062, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 63.391522 ], [ 29.882812, 63.391522 ], [ 29.882812, 63.704722 ], [ 30.234375, 63.704722 ], [ 30.234375, 64.014496 ], [ 30.585938, 64.014496 ], [ 30.585938, 64.168107 ], [ 30.234375, 64.168107 ], [ 30.234375, 64.472794 ], [ 29.882812, 64.472794 ], [ 29.882812, 64.774125 ], [ 29.531250, 64.774125 ], [ 29.531250, 65.072130 ], [ 29.882812, 65.072130 ], [ 29.882812, 65.512963 ], [ 30.234375, 65.512963 ], [ 30.234375, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.204032 ], [ 41.132812, 67.204032 ], [ 41.132812, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.429688, 66.513260 ], [ 40.429688, 66.231457 ], [ 39.726562, 66.231457 ], [ 39.726562, 66.089364 ], [ 39.023438, 66.089364 ], [ 39.023438, 65.946472 ], [ 37.617188, 65.946472 ], [ 37.617188, 66.089364 ], [ 36.914062, 66.089364 ], [ 36.914062, 66.231457 ], [ 36.210938, 66.231457 ], [ 36.210938, 66.372755 ], [ 35.507812, 66.372755 ], [ 35.507812, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.320872 ], [ 35.507812, 64.320872 ], [ 35.507812, 64.168107 ], [ 36.210938, 64.168107 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.860036 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.014496 ], [ 37.265625, 64.014496 ], [ 37.265625, 64.320872 ], [ 36.914062, 64.320872 ], [ 36.914062, 64.623877 ], [ 36.562500, 64.623877 ], [ 36.562500, 64.774125 ], [ 36.914062, 64.774125 ], [ 36.914062, 64.923542 ], [ 37.968750, 64.923542 ], [ 37.968750, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.472794 ], [ 40.078125, 64.472794 ], [ 40.078125, 64.623877 ], [ 40.429688, 64.623877 ], [ 40.429688, 64.923542 ], [ 40.078125, 64.923542 ], [ 40.078125, 65.219894 ], [ 39.726562, 65.219894 ], [ 39.726562, 65.512963 ], [ 40.078125, 65.512963 ], [ 40.078125, 65.658275 ], [ 40.429688, 65.658275 ], [ 40.429688, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.089364 ], [ 41.484375, 66.089364 ], [ 41.484375, 66.231457 ], [ 41.835938, 66.231457 ], [ 41.835938, 66.372755 ], [ 42.890625, 66.372755 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.231457 ], [ 44.296875, 66.231457 ], [ 44.296875, 66.513260 ], [ 44.648438, 66.513260 ], [ 44.648438, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 45.703125, 67.204032 ] ] ], [ [ [ 21.445312, 55.178868 ], [ 21.445312, 54.977614 ], [ 22.148438, 54.977614 ], [ 22.148438, 54.775346 ], [ 22.851562, 54.775346 ], [ 22.851562, 54.572062 ], [ 22.500000, 54.572062 ], [ 22.500000, 54.367759 ], [ 19.687500, 54.367759 ], [ 19.687500, 54.572062 ], [ 20.039062, 54.572062 ], [ 20.039062, 54.775346 ], [ 20.390625, 54.775346 ], [ 20.390625, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.178868 ], [ 21.445312, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 67.204032 ], [ 45.703125, 66.930060 ], [ 46.054688, 66.930060 ], [ 46.054688, 66.652977 ], [ 47.109375, 66.652977 ], [ 47.109375, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 50.064192 ], [ 47.109375, 50.064192 ], [ 47.109375, 49.610710 ], [ 46.757812, 49.610710 ], [ 46.757812, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 48.922499 ], [ 46.757812, 48.922499 ], [ 46.757812, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 48.224673 ], [ 46.757812, 48.224673 ], [ 46.757812, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.754098 ], [ 47.460938, 47.754098 ], [ 47.460938, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.339565 ], [ 47.109375, 44.339565 ], [ 47.109375, 43.834527 ], [ 47.460938, 43.834527 ], [ 47.460938, 41.244772 ], [ 47.109375, 41.244772 ], [ 47.109375, 41.508577 ], [ 46.757812, 41.508577 ], [ 46.757812, 41.771312 ], [ 45.703125, 41.771312 ], [ 45.703125, 42.293564 ], [ 45.351562, 42.293564 ], [ 45.351562, 42.553080 ], [ 43.593750, 42.553080 ], [ 43.593750, 42.811522 ], [ 43.242188, 42.811522 ], [ 43.242188, 43.068888 ], [ 42.539062, 43.068888 ], [ 42.539062, 43.325178 ], [ 39.726562, 43.325178 ], [ 39.726562, 43.580391 ], [ 39.375000, 43.580391 ], [ 39.375000, 43.834527 ], [ 39.023438, 43.834527 ], [ 39.023438, 44.087585 ], [ 38.671875, 44.087585 ], [ 38.671875, 44.339565 ], [ 37.968750, 44.339565 ], [ 37.968750, 44.590467 ], [ 37.265625, 44.590467 ], [ 37.265625, 44.840291 ], [ 36.914062, 44.840291 ], [ 36.914062, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 45.336702 ], [ 37.617188, 45.336702 ], [ 37.617188, 45.828799 ], [ 37.968750, 45.828799 ], [ 37.968750, 46.073231 ], [ 38.320312, 46.073231 ], [ 38.320312, 46.316584 ], [ 37.617188, 46.316584 ], [ 37.617188, 46.558860 ], [ 38.320312, 46.558860 ], [ 38.320312, 46.800059 ], [ 39.023438, 46.800059 ], [ 39.023438, 47.040182 ], [ 38.320312, 47.040182 ], [ 38.320312, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.754098 ], [ 39.375000, 47.754098 ], [ 39.375000, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.610710 ], [ 39.023438, 49.610710 ], [ 39.023438, 49.837982 ], [ 37.617188, 49.837982 ], [ 37.617188, 50.064192 ], [ 37.265625, 50.064192 ], [ 37.265625, 50.289339 ], [ 35.859375, 50.289339 ], [ 35.859375, 50.513427 ], [ 35.507812, 50.513427 ], [ 35.507812, 50.958427 ], [ 35.156250, 50.958427 ], [ 35.156250, 51.179343 ], [ 34.101562, 51.179343 ], [ 34.101562, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.835778 ], [ 34.101562, 51.835778 ], [ 34.101562, 52.052490 ], [ 33.750000, 52.052490 ], [ 33.750000, 52.268157 ], [ 32.343750, 52.268157 ], [ 32.343750, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 32.695312, 53.120405 ], [ 32.695312, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.540307 ], [ 31.640625, 53.540307 ], [ 31.640625, 53.956086 ], [ 31.289062, 53.956086 ], [ 31.289062, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 54.572062 ], [ 30.585938, 54.572062 ], [ 30.585938, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.578345 ], [ 30.234375, 55.578345 ], [ 30.234375, 55.776573 ], [ 29.882812, 55.776573 ], [ 29.882812, 55.578345 ], [ 29.531250, 55.578345 ], [ 29.531250, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.365250 ], [ 27.773438, 56.365250 ], [ 27.773438, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.515823 ], [ 27.773438, 57.515823 ], [ 27.773438, 58.263287 ], [ 27.421875, 58.263287 ], [ 27.421875, 58.813742 ], [ 27.773438, 58.813742 ], [ 27.773438, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.534318 ], [ 28.476562, 59.534318 ], [ 28.476562, 59.712097 ], [ 28.828125, 59.712097 ], [ 28.828125, 59.888937 ], [ 29.179688, 59.888937 ], [ 29.179688, 60.064840 ], [ 28.828125, 60.064840 ], [ 28.828125, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.586967 ], [ 28.476562, 60.586967 ], [ 28.476562, 60.759160 ], [ 28.828125, 60.759160 ], [ 28.828125, 60.930432 ], [ 29.179688, 60.930432 ], [ 29.179688, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.438767 ], [ 29.882812, 61.438767 ], [ 29.882812, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.773123 ], [ 30.585938, 61.773123 ], [ 30.585938, 62.103883 ], [ 30.937500, 62.103883 ], [ 30.937500, 62.267923 ], [ 31.289062, 62.267923 ], [ 31.289062, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 63.391522 ], [ 29.882812, 63.391522 ], [ 29.882812, 63.704722 ], [ 30.234375, 63.704722 ], [ 30.234375, 64.014496 ], [ 30.585938, 64.014496 ], [ 30.585938, 64.168107 ], [ 30.234375, 64.168107 ], [ 30.234375, 64.472794 ], [ 29.882812, 64.472794 ], [ 29.882812, 64.774125 ], [ 29.531250, 64.774125 ], [ 29.531250, 65.072130 ], [ 29.882812, 65.072130 ], [ 29.882812, 65.512963 ], [ 30.234375, 65.512963 ], [ 30.234375, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.204032 ], [ 41.132812, 67.204032 ], [ 41.132812, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.429688, 66.513260 ], [ 40.429688, 66.231457 ], [ 39.726562, 66.231457 ], [ 39.726562, 66.089364 ], [ 39.023438, 66.089364 ], [ 39.023438, 65.946472 ], [ 37.617188, 65.946472 ], [ 37.617188, 66.089364 ], [ 36.914062, 66.089364 ], [ 36.914062, 66.231457 ], [ 36.210938, 66.231457 ], [ 36.210938, 66.372755 ], [ 35.507812, 66.372755 ], [ 35.507812, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.320872 ], [ 35.507812, 64.320872 ], [ 35.507812, 64.168107 ], [ 36.210938, 64.168107 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.860036 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.014496 ], [ 37.265625, 64.014496 ], [ 37.265625, 64.320872 ], [ 36.914062, 64.320872 ], [ 36.914062, 64.623877 ], [ 36.562500, 64.623877 ], [ 36.562500, 64.774125 ], [ 36.914062, 64.774125 ], [ 36.914062, 64.923542 ], [ 37.968750, 64.923542 ], [ 37.968750, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.472794 ], [ 40.078125, 64.472794 ], [ 40.078125, 64.623877 ], [ 40.429688, 64.623877 ], [ 40.429688, 64.923542 ], [ 40.078125, 64.923542 ], [ 40.078125, 65.219894 ], [ 39.726562, 65.219894 ], [ 39.726562, 65.512963 ], [ 40.078125, 65.512963 ], [ 40.078125, 65.658275 ], [ 40.429688, 65.658275 ], [ 40.429688, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.089364 ], [ 41.484375, 66.089364 ], [ 41.484375, 66.231457 ], [ 41.835938, 66.231457 ], [ 41.835938, 66.372755 ], [ 42.890625, 66.372755 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.231457 ], [ 44.296875, 66.231457 ], [ 44.296875, 66.513260 ], [ 44.648438, 66.513260 ], [ 44.648438, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 45.703125, 67.204032 ] ] ], [ [ [ 21.445312, 55.178868 ], [ 21.445312, 54.977614 ], [ 22.148438, 54.977614 ], [ 22.148438, 54.775346 ], [ 22.851562, 54.775346 ], [ 22.851562, 54.572062 ], [ 22.500000, 54.367759 ], [ 19.687500, 54.367759 ], [ 19.687500, 54.572062 ], [ 20.039062, 54.572062 ], [ 20.039062, 54.775346 ], [ 20.390625, 54.775346 ], [ 20.390625, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.178868 ], [ 21.445312, 55.178868 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.460938, 42.811522 ], [ 47.812500, 42.811522 ], [ 47.812500, 42.293564 ], [ 48.164062, 42.293564 ], [ 48.164062, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 42.811522 ] ] ], [ [ [ 47.460938, 47.754098 ], [ 48.164062, 47.754098 ], [ 48.164062, 47.517201 ], [ 48.515625, 47.517201 ], [ 48.515625, 47.040182 ], [ 48.867188, 47.040182 ], [ 48.867188, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.316584 ], [ 49.218750, 46.316584 ], [ 49.218750, 46.073231 ], [ 48.867188, 46.073231 ], [ 48.867188, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.583290 ], [ 47.812500, 45.583290 ], [ 47.812500, 45.336702 ], [ 47.460938, 45.336702 ], [ 47.460938, 47.754098 ] ] ], [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.513427 ], [ 91.054688, 50.513427 ], [ 91.054688, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.382373 ], [ 87.890625, 49.382373 ], [ 87.890625, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 49.382373 ], [ 86.835938, 49.382373 ], [ 86.835938, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.610710 ], [ 85.429688, 49.610710 ], [ 85.429688, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.064192 ], [ 84.375000, 50.064192 ], [ 84.375000, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.958427 ], [ 82.617188, 50.958427 ], [ 82.617188, 50.736455 ], [ 81.562500, 50.736455 ], [ 81.562500, 50.958427 ], [ 80.859375, 50.958427 ], [ 80.859375, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.101562, 51.618017 ], [ 79.101562, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.482780 ], [ 78.398438, 52.482780 ], [ 78.398438, 52.696361 ], [ 78.046875, 52.696361 ], [ 78.046875, 53.120405 ], [ 77.695312, 53.120405 ], [ 77.695312, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.367759 ], [ 76.289062, 54.367759 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 53.956086 ], [ 75.585938, 53.956086 ], [ 75.585938, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 53.956086 ], [ 72.773438, 53.956086 ], [ 72.773438, 54.162434 ], [ 72.070312, 54.162434 ], [ 72.070312, 54.367759 ], [ 71.718750, 54.367759 ], [ 71.718750, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 55.178868 ], [ 69.609375, 55.178868 ], [ 69.609375, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 54.977614 ], [ 67.851562, 54.977614 ], [ 67.851562, 54.775346 ], [ 66.445312, 54.775346 ], [ 66.445312, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.367759 ], [ 64.335938, 54.367759 ], [ 64.335938, 54.162434 ], [ 62.578125, 54.162434 ], [ 62.578125, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.748711 ], [ 60.820312, 53.748711 ], [ 60.820312, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.523438, 53.330873 ], [ 61.523438, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.268157 ], [ 60.468750, 52.268157 ], [ 60.468750, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.835778 ], [ 60.468750, 51.835778 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.399206 ], [ 61.171875, 51.399206 ], [ 61.171875, 51.179343 ], [ 61.523438, 51.179343 ], [ 61.523438, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.171875, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.062500, 50.513427 ], [ 59.062500, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 50.958427 ], [ 56.953125, 50.958427 ], [ 56.953125, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 50.513427 ], [ 55.195312, 50.513427 ], [ 55.195312, 50.736455 ], [ 54.492188, 50.736455 ], [ 54.492188, 50.958427 ], [ 53.789062, 50.958427 ], [ 53.789062, 51.179343 ], [ 53.085938, 51.179343 ], [ 53.085938, 51.399206 ], [ 52.382812, 51.399206 ], [ 52.382812, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.399206 ], [ 50.273438, 51.399206 ], [ 50.273438, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 50.958427 ], [ 49.570312, 50.958427 ], [ 49.570312, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 50.513427 ], [ 48.867188, 50.513427 ], [ 48.867188, 50.064192 ], [ 48.515625, 50.064192 ], [ 48.515625, 49.837982 ], [ 48.164062, 49.837982 ], [ 48.164062, 50.064192 ], [ 47.812500, 50.064192 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.067433 ], [ 48.164062, 67.067433 ], [ 48.164062, 67.204032 ], [ 72.421875, 67.204032 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.372755 ], [ 71.718750, 66.372755 ], [ 71.718750, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 73.125000, 66.513260 ], [ 73.125000, 66.652977 ], [ 73.828125, 66.652977 ], [ 73.828125, 66.930060 ], [ 74.179688, 66.930060 ], [ 74.179688, 67.204032 ], [ 91.757812, 67.204032 ] ] ] ] } } , @@ -1168,7 +1168,7 @@ , { "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, 56.170023 ], [ 28.476562, 55.973798 ], [ 29.179688, 55.973798 ], [ 29.179688, 55.776573 ], [ 29.531250, 55.776573 ], [ 29.531250, 55.578345 ], [ 29.882812, 55.578345 ], [ 29.882812, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.578345 ], [ 30.937500, 55.578345 ], [ 30.937500, 54.977614 ], [ 30.585938, 54.977614 ], [ 30.585938, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 53.956086 ], [ 31.640625, 53.956086 ], [ 31.640625, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.640625, 52.908902 ], [ 31.640625, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.835778 ], [ 30.585938, 51.835778 ], [ 30.585938, 51.399206 ], [ 28.125000, 51.399206 ], [ 28.125000, 51.618017 ], [ 26.718750, 51.618017 ], [ 26.718750, 51.835778 ], [ 24.609375, 51.835778 ], [ 24.609375, 51.618017 ], [ 23.554688, 51.618017 ], [ 23.554688, 52.268157 ], [ 23.203125, 52.268157 ], [ 23.203125, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 53.330873 ], [ 23.554688, 53.330873 ], [ 23.554688, 53.956086 ], [ 24.960938, 53.956086 ], [ 24.960938, 54.162434 ], [ 25.664062, 54.162434 ], [ 25.664062, 54.775346 ], [ 26.015625, 54.775346 ], [ 26.015625, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.379110 ], [ 26.367188, 55.379110 ], [ 26.367188, 55.578345 ], [ 27.070312, 55.578345 ], [ 27.070312, 55.776573 ], [ 27.421875, 55.776573 ], [ 27.421875, 55.973798 ], [ 28.125000, 55.973798 ], [ 28.125000, 56.170023 ], [ 28.476562, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 48.224673 ], [ 27.070312, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 46.800059 ], [ 28.125000, 46.800059 ], [ 28.125000, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.087585 ], [ 28.476562, 44.087585 ], [ 28.476562, 43.580391 ], [ 28.125000, 43.580391 ], [ 28.125000, 43.834527 ], [ 27.421875, 43.834527 ], [ 27.421875, 44.087585 ], [ 26.718750, 44.087585 ], [ 26.718750, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.580391 ], [ 24.609375, 43.580391 ], [ 24.609375, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.339565 ], [ 22.851562, 44.339565 ], [ 22.851562, 44.590467 ], [ 21.445312, 44.590467 ], [ 21.445312, 45.089036 ], [ 20.742188, 45.089036 ], [ 20.742188, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.316584 ], [ 21.445312, 46.316584 ], [ 21.445312, 46.800059 ], [ 21.796875, 46.800059 ], [ 21.796875, 47.279229 ], [ 22.148438, 47.279229 ], [ 22.148438, 47.754098 ], [ 22.851562, 47.989922 ], [ 24.257812, 47.989922 ], [ 24.257812, 47.754098 ], [ 25.312500, 47.754098 ], [ 25.312500, 47.989922 ], [ 26.367188, 47.989922 ], [ 26.367188, 48.224673 ], [ 27.070312, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 48.224673 ], [ 27.070312, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 46.800059 ], [ 28.125000, 46.800059 ], [ 28.125000, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.087585 ], [ 28.476562, 44.087585 ], [ 28.476562, 43.580391 ], [ 28.125000, 43.580391 ], [ 28.125000, 43.834527 ], [ 27.421875, 43.834527 ], [ 27.421875, 44.087585 ], [ 26.718750, 44.087585 ], [ 26.718750, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.580391 ], [ 24.609375, 43.580391 ], [ 24.609375, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.339565 ], [ 22.851562, 44.339565 ], [ 22.851562, 44.590467 ], [ 21.445312, 44.590467 ], [ 21.445312, 45.089036 ], [ 20.742188, 45.089036 ], [ 20.742188, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.316584 ], [ 21.445312, 46.316584 ], [ 21.445312, 46.800059 ], [ 21.796875, 46.800059 ], [ 21.796875, 47.279229 ], [ 22.148438, 47.279229 ], [ 22.851562, 47.989922 ], [ 24.257812, 47.989922 ], [ 24.257812, 47.754098 ], [ 25.312500, 47.754098 ], [ 25.312500, 47.989922 ], [ 26.367188, 47.989922 ], [ 26.367188, 48.224673 ], [ 27.070312, 48.224673 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 44.087585 ], [ 27.421875, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.580391 ], [ 28.476562, 43.580391 ], [ 28.476562, 43.325178 ], [ 28.125000, 43.325178 ], [ 28.125000, 42.811522 ], [ 27.773438, 42.811522 ], [ 27.773438, 42.293564 ], [ 28.125000, 42.293564 ], [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 41.771312 ], [ 26.015625, 41.771312 ], [ 26.015625, 41.244772 ], [ 24.609375, 41.244772 ], [ 24.609375, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.244772 ], [ 22.851562, 41.244772 ], [ 22.851562, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 43.325178 ], [ 22.500000, 43.325178 ], [ 22.500000, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 24.609375, 43.834527 ], [ 24.609375, 43.580391 ], [ 26.015625, 43.580391 ], [ 26.015625, 43.834527 ], [ 26.718750, 43.834527 ], [ 26.718750, 44.087585 ], [ 27.421875, 44.087585 ] ] ] } } , @@ -1196,7 +1196,7 @@ , { "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 23.241346 ], [ 16.523438, 22.917923 ], [ 17.226562, 22.917923 ], [ 17.226562, 22.593726 ], [ 17.929688, 22.593726 ], [ 17.929688, 22.268764 ], [ 18.632812, 22.268764 ], [ 18.632812, 21.943046 ], [ 19.335938, 21.943046 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.642588 ], [ 23.906250, 19.642588 ], [ 23.906250, 15.623037 ], [ 22.851562, 15.623037 ], [ 22.851562, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 14.604847 ], [ 22.148438, 14.604847 ], [ 22.148438, 12.211180 ], [ 22.500000, 12.211180 ], [ 22.500000, 11.523088 ], [ 22.851562, 11.523088 ], [ 22.851562, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 9.449062 ], [ 20.742188, 9.449062 ], [ 20.742188, 9.102097 ], [ 18.984375, 9.102097 ], [ 18.984375, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 8.059230 ], [ 17.929688, 8.059230 ], [ 17.929688, 7.710992 ], [ 17.226562, 7.710992 ], [ 17.226562, 7.362467 ], [ 16.523438, 7.362467 ], [ 16.523438, 7.710992 ], [ 16.171875, 7.710992 ], [ 16.171875, 7.362467 ], [ 15.468750, 7.362467 ], [ 15.468750, 8.059230 ], [ 15.117188, 8.059230 ], [ 15.117188, 8.754795 ], [ 14.414062, 8.754795 ], [ 14.414062, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.795678 ], [ 14.765625, 9.795678 ], [ 14.765625, 10.141932 ], [ 15.117188, 10.141932 ], [ 15.117188, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 11.178402 ], [ 15.117188, 11.178402 ], [ 15.117188, 11.867351 ], [ 14.765625, 11.867351 ], [ 14.765625, 12.554564 ], [ 14.414062, 12.554564 ], [ 14.414062, 12.897489 ], [ 14.765625, 12.897489 ], [ 14.765625, 13.239945 ], [ 14.062500, 13.239945 ], [ 14.062500, 13.923404 ], [ 13.710938, 13.923404 ], [ 13.710938, 14.944785 ], [ 14.062500, 14.944785 ], [ 14.062500, 15.623037 ], [ 14.414062, 15.623037 ], [ 14.414062, 15.961329 ], [ 14.765625, 15.961329 ], [ 14.765625, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 17.308688 ], [ 15.468750, 17.308688 ], [ 15.468750, 18.979026 ], [ 15.820312, 18.979026 ], [ 15.820312, 20.303418 ], [ 15.468750, 20.303418 ], [ 15.468750, 20.961440 ], [ 15.117188, 20.961440 ], [ 15.117188, 21.943046 ], [ 14.765625, 21.943046 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.241346 ], [ 16.523438, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.414062, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ], [ 15.117188, 11.867351 ], [ 15.117188, 11.178402 ], [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.117188, 10.487812 ], [ 15.117188, 10.141932 ], [ 14.765625, 10.141932 ], [ 14.765625, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.414062, 9.102097 ], [ 14.414062, 8.754795 ], [ 15.117188, 8.754795 ], [ 15.117188, 8.059230 ], [ 15.468750, 8.059230 ], [ 15.468750, 7.362467 ], [ 15.117188, 7.362467 ], [ 15.117188, 6.664608 ], [ 14.765625, 6.664608 ], [ 14.765625, 6.315299 ], [ 14.414062, 6.315299 ], [ 14.414062, 4.214943 ], [ 15.117188, 4.214943 ], [ 15.117188, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 3.162456 ], [ 15.820312, 3.162456 ], [ 15.820312, 2.108899 ], [ 16.171875, 2.108899 ], [ 16.171875, 1.757537 ], [ 15.117188, 2.108899 ], [ 9.492188, 2.108899 ], [ 9.492188, 2.460181 ], [ 9.843750, 2.460181 ], [ 9.843750, 3.513421 ], [ 9.492188, 3.513421 ], [ 9.492188, 3.864255 ], [ 8.789062, 3.864255 ], [ 8.789062, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.266008 ], [ 8.789062, 5.266008 ], [ 8.789062, 5.965754 ], [ 9.140625, 5.965754 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 6.664608 ], [ 10.195312, 6.664608 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.664608 ], [ 11.601562, 6.664608 ], [ 11.601562, 7.013668 ], [ 11.953125, 7.013668 ], [ 11.953125, 8.059230 ], [ 12.304688, 8.059230 ], [ 12.304688, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.007812, 9.102097 ], [ 13.007812, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 10.487812 ], [ 13.710938, 10.487812 ], [ 13.710938, 10.833306 ], [ 14.062500, 10.833306 ], [ 14.062500, 11.178402 ], [ 14.414062, 11.178402 ], [ 14.414062, 12.211180 ], [ 14.062500, 12.211180 ], [ 14.062500, 12.897489 ], [ 14.414062, 12.897489 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.414062, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ], [ 15.117188, 11.867351 ], [ 15.117188, 11.178402 ], [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.117188, 10.487812 ], [ 15.117188, 10.141932 ], [ 14.765625, 10.141932 ], [ 14.765625, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.414062, 9.102097 ], [ 14.414062, 8.754795 ], [ 15.117188, 8.754795 ], [ 15.117188, 8.059230 ], [ 15.468750, 8.059230 ], [ 15.468750, 7.362467 ], [ 15.117188, 7.362467 ], [ 15.117188, 6.664608 ], [ 14.765625, 6.664608 ], [ 14.765625, 6.315299 ], [ 14.414062, 6.315299 ], [ 14.414062, 4.214943 ], [ 15.117188, 4.214943 ], [ 15.117188, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 3.162456 ], [ 15.820312, 3.162456 ], [ 15.820312, 2.108899 ], [ 9.492188, 2.108899 ], [ 9.492188, 2.460181 ], [ 9.843750, 2.460181 ], [ 9.843750, 3.513421 ], [ 9.492188, 3.513421 ], [ 9.492188, 3.864255 ], [ 8.789062, 3.864255 ], [ 8.789062, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.266008 ], [ 8.789062, 5.266008 ], [ 8.789062, 5.965754 ], [ 9.140625, 5.965754 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 6.664608 ], [ 10.195312, 6.664608 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.664608 ], [ 11.601562, 6.664608 ], [ 11.601562, 7.013668 ], [ 11.953125, 7.013668 ], [ 11.953125, 8.059230 ], [ 12.304688, 8.059230 ], [ 12.304688, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.007812, 9.102097 ], [ 13.007812, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 10.487812 ], [ 13.710938, 10.487812 ], [ 13.710938, 10.833306 ], [ 14.062500, 10.833306 ], [ 14.062500, 11.178402 ], [ 14.414062, 11.178402 ], [ 14.414062, 12.211180 ], [ 14.062500, 12.211180 ], [ 14.062500, 12.897489 ], [ 14.414062, 12.897489 ] ] ] } } , { "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 10.833306 ], [ 22.851562, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 8.754795 ], [ 23.906250, 8.754795 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 7.710992 ], [ 24.960938, 7.710992 ], [ 24.960938, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 6.664608 ], [ 26.367188, 6.664608 ], [ 26.367188, 5.615986 ], [ 27.070312, 5.615986 ], [ 27.070312, 5.266008 ], [ 25.312500, 5.266008 ], [ 25.312500, 4.915833 ], [ 23.554688, 4.915833 ], [ 23.554688, 4.565474 ], [ 22.851562, 4.565474 ], [ 22.851562, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 3.864255 ], [ 21.796875, 3.864255 ], [ 21.796875, 4.214943 ], [ 20.390625, 4.214943 ], [ 20.390625, 4.565474 ], [ 19.687500, 4.565474 ], [ 19.687500, 4.915833 ], [ 19.335938, 4.915833 ], [ 19.335938, 4.565474 ], [ 18.984375, 4.565474 ], [ 18.984375, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 3.864255 ], [ 18.281250, 3.864255 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 2.460181 ], [ 16.171875, 2.460181 ], [ 16.171875, 2.108899 ], [ 15.820312, 2.108899 ], [ 15.820312, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.513421 ], [ 15.117188, 3.513421 ], [ 15.117188, 4.214943 ], [ 14.414062, 4.214943 ], [ 14.414062, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.664608 ], [ 15.117188, 6.664608 ], [ 15.117188, 7.362467 ], [ 16.171875, 7.362467 ], [ 16.171875, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.362467 ], [ 17.226562, 7.362467 ], [ 17.226562, 7.710992 ], [ 17.929688, 7.710992 ], [ 17.929688, 8.059230 ], [ 18.281250, 8.059230 ], [ 18.281250, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 9.102097 ], [ 20.742188, 9.102097 ], [ 20.742188, 9.449062 ], [ 21.445312, 9.449062 ], [ 21.445312, 10.141932 ], [ 21.796875, 10.141932 ], [ 21.796875, 10.487812 ], [ 22.148438, 10.487812 ], [ 22.148438, 10.833306 ], [ 22.851562, 10.833306 ] ] ] } } , @@ -1224,9 +1224,9 @@ , { "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.914062, 21.943046 ], [ 36.914062, 21.289374 ], [ 37.265625, 21.289374 ], [ 37.265625, 20.961440 ], [ 36.914062, 20.961440 ], [ 36.914062, 20.303418 ], [ 37.265625, 20.303418 ], [ 37.265625, 18.979026 ], [ 37.617188, 18.979026 ], [ 37.617188, 18.312811 ], [ 37.968750, 18.312811 ], [ 37.968750, 17.978733 ], [ 38.320312, 17.978733 ], [ 38.320312, 17.644022 ], [ 37.968750, 17.644022 ], [ 37.968750, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 16.972741 ], [ 36.914062, 16.972741 ], [ 36.914062, 15.961329 ], [ 36.562500, 15.961329 ], [ 36.562500, 15.284185 ], [ 36.210938, 15.284185 ], [ 36.210938, 14.604847 ], [ 36.562500, 14.604847 ], [ 36.562500, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 12.897489 ], [ 35.859375, 12.897489 ], [ 35.859375, 12.211180 ], [ 35.156250, 12.211180 ], [ 35.156250, 11.523088 ], [ 34.804688, 11.523088 ], [ 34.804688, 10.487812 ], [ 34.101562, 10.487812 ], [ 34.101562, 9.449062 ], [ 33.750000, 9.449062 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 12.211180 ], [ 32.695312, 12.211180 ], [ 32.695312, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 11.523088 ], [ 32.343750, 11.523088 ], [ 32.343750, 10.833306 ], [ 31.992188, 10.833306 ], [ 31.992188, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 9.795678 ], [ 30.234375, 9.795678 ], [ 30.234375, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.449062 ], [ 26.367188, 9.449062 ], [ 26.367188, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 9.102097 ], [ 24.609375, 9.102097 ], [ 24.609375, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 10.141932 ], [ 23.203125, 10.141932 ], [ 23.203125, 10.487812 ], [ 22.851562, 10.487812 ], [ 22.851562, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.211180 ], [ 22.148438, 12.211180 ], [ 22.148438, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.623037 ], [ 23.906250, 15.623037 ], [ 23.906250, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 21.943046 ], [ 36.914062, 21.943046 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.211180 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 9.449062 ], [ 34.101562, 9.449062 ], [ 34.101562, 8.407168 ], [ 33.398438, 8.407168 ], [ 33.398438, 8.059230 ], [ 33.046875, 8.059230 ], [ 33.046875, 7.710992 ], [ 33.398438, 7.710992 ], [ 33.398438, 7.362467 ], [ 34.101562, 7.362467 ], [ 34.101562, 6.664608 ], [ 34.804688, 6.664608 ], [ 34.804688, 5.965754 ], [ 35.156250, 5.965754 ], [ 35.156250, 5.266008 ], [ 34.804688, 5.266008 ], [ 34.804688, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.565474 ], [ 34.101562, 4.565474 ], [ 34.101562, 3.864255 ], [ 32.695312, 3.864255 ], [ 32.695312, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.864255 ], [ 29.882812, 3.864255 ], [ 29.882812, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.565474 ], [ 27.773438, 4.565474 ], [ 27.773438, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 5.266008 ], [ 27.070312, 5.266008 ], [ 27.070312, 5.615986 ], [ 26.367188, 5.615986 ], [ 26.367188, 6.664608 ], [ 25.664062, 6.664608 ], [ 25.664062, 7.013668 ], [ 24.960938, 7.013668 ], [ 24.960938, 7.710992 ], [ 24.609375, 7.710992 ], [ 24.609375, 8.059230 ], [ 24.257812, 8.059230 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.102097 ], [ 24.960938, 9.102097 ], [ 24.960938, 10.141932 ], [ 26.015625, 10.141932 ], [ 26.015625, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.449062 ], [ 29.531250, 9.449062 ], [ 29.531250, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.795678 ], [ 31.640625, 9.795678 ], [ 31.640625, 10.141932 ], [ 31.992188, 10.141932 ], [ 31.992188, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.523088 ], [ 31.992188, 11.523088 ], [ 31.992188, 11.867351 ], [ 32.695312, 11.867351 ], [ 32.695312, 12.211180 ], [ 33.046875, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.211180 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 10.141932 ], [ 34.101562, 9.449062 ], [ 34.101562, 8.407168 ], [ 33.398438, 8.407168 ], [ 33.398438, 8.059230 ], [ 33.046875, 8.059230 ], [ 33.046875, 7.710992 ], [ 33.398438, 7.710992 ], [ 33.398438, 7.362467 ], [ 34.101562, 7.362467 ], [ 34.101562, 6.664608 ], [ 34.804688, 6.664608 ], [ 34.804688, 5.965754 ], [ 35.156250, 5.965754 ], [ 35.156250, 5.266008 ], [ 34.804688, 5.266008 ], [ 34.804688, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.565474 ], [ 34.101562, 4.565474 ], [ 34.101562, 3.864255 ], [ 32.695312, 3.864255 ], [ 32.695312, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.864255 ], [ 29.882812, 3.864255 ], [ 29.882812, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.565474 ], [ 27.773438, 4.565474 ], [ 27.773438, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 5.266008 ], [ 27.070312, 5.266008 ], [ 27.070312, 5.615986 ], [ 26.367188, 5.615986 ], [ 26.367188, 6.664608 ], [ 25.664062, 6.664608 ], [ 25.664062, 7.013668 ], [ 24.960938, 7.013668 ], [ 24.960938, 7.710992 ], [ 24.609375, 7.710992 ], [ 24.609375, 8.059230 ], [ 24.257812, 8.059230 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.102097 ], [ 24.960938, 9.102097 ], [ 24.960938, 10.141932 ], [ 26.015625, 10.141932 ], [ 26.015625, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.449062 ], [ 29.531250, 9.449062 ], [ 29.531250, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.795678 ], [ 31.640625, 9.795678 ], [ 31.640625, 10.141932 ], [ 31.992188, 10.141932 ], [ 31.992188, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.523088 ], [ 31.992188, 11.523088 ], [ 31.992188, 11.867351 ], [ 32.695312, 11.867351 ], [ 32.695312, 12.211180 ], [ 33.046875, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.864255 ], [ 34.453125, 2.811371 ], [ 34.804688, 2.811371 ], [ 34.804688, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 31.289062, 1.757537 ], [ 31.289062, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 3.513421 ], [ 32.695312, 3.513421 ], [ 32.695312, 3.864255 ], [ 34.453125, 3.864255 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.864255 ], [ 34.453125, 2.811371 ], [ 34.804688, 2.811371 ], [ 34.804688, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 31.289062, 1.757537 ], [ 31.289062, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 3.513421 ], [ 32.695312, 3.513421 ], [ 32.695312, 3.864255 ], [ 34.453125, 3.864255 ] ] ] } } , { "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 17.644022 ], [ 38.671875, 16.972741 ], [ 39.023438, 16.972741 ], [ 39.023438, 16.299051 ], [ 39.375000, 16.299051 ], [ 39.375000, 15.623037 ], [ 39.726562, 15.623037 ], [ 39.726562, 14.944785 ], [ 40.429688, 14.944785 ], [ 40.429688, 14.604847 ], [ 41.132812, 14.604847 ], [ 41.132812, 14.264383 ], [ 41.484375, 14.264383 ], [ 41.484375, 13.923404 ], [ 41.835938, 13.923404 ], [ 41.835938, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 12.897489 ], [ 42.539062, 12.897489 ], [ 42.539062, 12.554564 ], [ 41.835938, 12.554564 ], [ 41.835938, 13.239945 ], [ 41.484375, 13.239945 ], [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.781250, 13.923404 ], [ 40.781250, 14.264383 ], [ 40.078125, 14.264383 ], [ 40.078125, 14.604847 ], [ 37.617188, 14.604847 ], [ 37.617188, 14.264383 ], [ 36.562500, 14.264383 ], [ 36.562500, 14.604847 ], [ 36.210938, 14.604847 ], [ 36.210938, 15.284185 ], [ 36.562500, 15.284185 ], [ 36.562500, 15.961329 ], [ 36.914062, 15.961329 ], [ 36.914062, 16.972741 ], [ 37.265625, 16.972741 ], [ 37.265625, 17.308688 ], [ 37.968750, 17.308688 ], [ 37.968750, 17.644022 ], [ 38.671875, 17.644022 ] ] ] } } , @@ -1234,7 +1234,7 @@ , { "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 5.266008 ], [ 35.859375, 4.565474 ], [ 36.914062, 4.565474 ], [ 36.914062, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 3.864255 ], [ 37.617188, 3.864255 ], [ 37.617188, 3.513421 ], [ 39.726562, 3.513421 ], [ 39.726562, 3.864255 ], [ 40.429688, 3.864255 ], [ 40.429688, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.000000 ], [ 34.101562, 0.000000 ], [ 34.101562, 0.351560 ], [ 34.453125, 0.351560 ], [ 34.453125, 0.703107 ], [ 34.804688, 0.703107 ], [ 34.804688, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.811371 ], [ 34.453125, 2.811371 ], [ 34.453125, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.266008 ], [ 35.859375, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 14.604847 ], [ 40.078125, 14.264383 ], [ 40.781250, 14.264383 ], [ 40.781250, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.211180 ], [ 41.835938, 12.211180 ], [ 41.835938, 11.178402 ], [ 42.539062, 11.178402 ], [ 42.539062, 10.833306 ], [ 42.890625, 10.833306 ], [ 42.890625, 10.487812 ], [ 42.539062, 10.487812 ], [ 42.539062, 10.141932 ], [ 42.890625, 10.141932 ], [ 42.890625, 9.795678 ], [ 43.242188, 9.795678 ], [ 43.242188, 9.102097 ], [ 43.945312, 9.102097 ], [ 43.945312, 8.754795 ], [ 45.000000, 8.754795 ], [ 45.000000, 8.407168 ], [ 46.406250, 8.407168 ], [ 46.406250, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.013668 ], [ 46.757812, 7.013668 ], [ 46.757812, 6.664608 ], [ 46.406250, 6.664608 ], [ 46.406250, 5.965754 ], [ 46.054688, 5.965754 ], [ 46.054688, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 5.266008 ], [ 45.351562, 5.266008 ], [ 45.351562, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.565474 ], [ 43.242188, 4.565474 ], [ 43.242188, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.864255 ], [ 40.781250, 3.864255 ], [ 40.781250, 4.214943 ], [ 40.429688, 4.214943 ], [ 40.429688, 3.864255 ], [ 39.726562, 3.864255 ], [ 39.726562, 3.513421 ], [ 37.617188, 3.513421 ], [ 37.617188, 3.864255 ], [ 37.265625, 3.864255 ], [ 37.265625, 4.214943 ], [ 36.914062, 4.214943 ], [ 36.914062, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.965754 ], [ 34.804688, 5.965754 ], [ 34.804688, 6.664608 ], [ 34.101562, 6.664608 ], [ 34.101562, 7.362467 ], [ 33.398438, 7.362467 ], [ 33.398438, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.059230 ], [ 33.398438, 8.059230 ], [ 33.398438, 8.407168 ], [ 34.101562, 8.407168 ], [ 34.101562, 10.487812 ], [ 34.804688, 10.487812 ], [ 34.804688, 11.523088 ], [ 35.156250, 11.523088 ], [ 35.156250, 12.211180 ], [ 35.859375, 12.211180 ], [ 35.859375, 12.897489 ], [ 36.210938, 12.897489 ], [ 36.210938, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 14.264383 ], [ 37.617188, 14.604847 ], [ 40.078125, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 14.604847 ], [ 40.078125, 14.264383 ], [ 40.781250, 14.264383 ], [ 40.781250, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.211180 ], [ 41.835938, 12.211180 ], [ 41.835938, 11.178402 ], [ 42.539062, 11.178402 ], [ 42.539062, 10.833306 ], [ 42.890625, 10.833306 ], [ 42.890625, 10.487812 ], [ 42.539062, 10.487812 ], [ 42.539062, 10.141932 ], [ 42.890625, 10.141932 ], [ 42.890625, 9.795678 ], [ 43.242188, 9.795678 ], [ 43.242188, 9.102097 ], [ 43.945312, 9.102097 ], [ 43.945312, 8.754795 ], [ 45.000000, 8.754795 ], [ 45.000000, 8.407168 ], [ 46.406250, 8.407168 ], [ 46.406250, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.013668 ], [ 46.757812, 7.013668 ], [ 46.757812, 6.664608 ], [ 46.406250, 6.664608 ], [ 46.406250, 5.965754 ], [ 46.054688, 5.965754 ], [ 46.054688, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 5.266008 ], [ 45.351562, 5.266008 ], [ 45.351562, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.565474 ], [ 43.242188, 4.565474 ], [ 43.242188, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.864255 ], [ 40.781250, 3.864255 ], [ 40.781250, 4.214943 ], [ 40.429688, 4.214943 ], [ 40.429688, 3.864255 ], [ 39.726562, 3.864255 ], [ 39.726562, 3.513421 ], [ 37.617188, 3.513421 ], [ 37.617188, 3.864255 ], [ 37.265625, 3.864255 ], [ 37.265625, 4.214943 ], [ 36.914062, 4.214943 ], [ 36.914062, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.965754 ], [ 34.804688, 5.965754 ], [ 34.804688, 6.664608 ], [ 34.101562, 6.664608 ], [ 34.101562, 7.362467 ], [ 33.398438, 7.362467 ], [ 33.398438, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.059230 ], [ 33.398438, 8.059230 ], [ 33.398438, 8.407168 ], [ 34.101562, 8.407168 ], [ 34.101562, 10.487812 ], [ 34.804688, 10.487812 ], [ 34.804688, 11.523088 ], [ 35.156250, 11.523088 ], [ 35.156250, 12.211180 ], [ 35.859375, 12.211180 ], [ 35.859375, 12.897489 ], [ 36.210938, 12.897489 ], [ 36.210938, 13.923404 ], [ 37.617188, 14.604847 ], [ 40.078125, 14.604847 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.609375, 55.379110 ], [ 69.609375, 55.178868 ], [ 71.015625, 55.178868 ], [ 71.015625, 54.162434 ], [ 71.718750, 54.162434 ], [ 71.718750, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 53.956086 ], [ 73.476562, 53.956086 ], [ 73.476562, 53.540307 ], [ 74.882812, 53.540307 ], [ 74.882812, 53.748711 ], [ 75.585938, 53.748711 ], [ 75.585938, 53.956086 ], [ 75.937500, 53.956086 ], [ 75.937500, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.367759 ], [ 76.640625, 54.367759 ], [ 76.640625, 53.956086 ], [ 76.992188, 53.956086 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 77.695312, 53.330873 ], [ 77.695312, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.804688, 51.399206 ], [ 79.804688, 50.958427 ], [ 80.156250, 50.958427 ], [ 80.156250, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 50.958427 ], [ 81.562500, 50.958427 ], [ 81.562500, 50.736455 ], [ 82.617188, 50.736455 ], [ 82.617188, 50.958427 ], [ 84.023438, 50.958427 ], [ 84.023438, 50.513427 ], [ 84.375000, 50.513427 ], [ 84.375000, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.610710 ], [ 86.484375, 49.610710 ], [ 86.484375, 49.837982 ], [ 86.835938, 49.837982 ], [ 86.835938, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.835938, 48.922499 ], [ 86.835938, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.279229 ], [ 85.429688, 47.279229 ], [ 85.429688, 47.040182 ], [ 84.023438, 47.040182 ], [ 84.023438, 47.279229 ], [ 83.320312, 47.279229 ], [ 83.320312, 46.800059 ], [ 82.968750, 46.800059 ], [ 82.968750, 45.828799 ], [ 82.617188, 45.828799 ], [ 82.617188, 45.336702 ], [ 81.562500, 45.336702 ], [ 81.562500, 45.089036 ], [ 80.507812, 45.089036 ], [ 80.507812, 44.840291 ], [ 79.804688, 44.840291 ], [ 79.804688, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 43.834527 ], [ 80.507812, 43.834527 ], [ 80.507812, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 42.811522 ], [ 80.156250, 42.811522 ], [ 80.156250, 42.293564 ], [ 79.804688, 42.293564 ], [ 79.804688, 42.553080 ], [ 79.101562, 42.553080 ], [ 79.101562, 42.811522 ], [ 78.046875, 42.811522 ], [ 78.046875, 43.068888 ], [ 75.937500, 43.068888 ], [ 75.937500, 42.811522 ], [ 74.882812, 42.811522 ], [ 74.882812, 43.068888 ], [ 73.476562, 43.068888 ], [ 73.476562, 42.553080 ], [ 72.421875, 42.553080 ], [ 72.421875, 42.811522 ], [ 71.015625, 42.811522 ], [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.771312 ], [ 69.609375, 41.771312 ], [ 69.609375, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.979898 ], [ 68.554688, 40.979898 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.979898 ], [ 67.851562, 40.979898 ], [ 67.851562, 41.244772 ], [ 66.796875, 41.244772 ], [ 66.796875, 41.508577 ], [ 66.445312, 41.508577 ], [ 66.445312, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.325178 ], [ 65.390625, 43.325178 ], [ 65.390625, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.834527 ], [ 64.335938, 43.834527 ], [ 64.335938, 43.580391 ], [ 61.523438, 43.580391 ], [ 61.523438, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.339565 ], [ 60.820312, 44.339565 ], [ 60.820312, 44.590467 ], [ 60.117188, 44.590467 ], [ 60.117188, 44.840291 ], [ 59.765625, 44.840291 ], [ 59.765625, 45.089036 ], [ 59.062500, 45.089036 ], [ 59.062500, 45.336702 ], [ 58.710938, 45.336702 ], [ 58.710938, 45.583290 ], [ 58.007812, 45.583290 ], [ 58.007812, 45.336702 ], [ 56.601562, 45.336702 ], [ 56.601562, 45.089036 ], [ 55.898438, 45.089036 ], [ 55.898438, 41.244772 ], [ 55.195312, 41.244772 ], [ 55.195312, 41.771312 ], [ 54.843750, 41.771312 ], [ 54.843750, 42.032974 ], [ 54.140625, 42.032974 ], [ 54.140625, 42.293564 ], [ 53.789062, 42.293564 ], [ 53.789062, 42.032974 ], [ 53.085938, 42.032974 ], [ 53.085938, 41.771312 ], [ 52.382812, 41.771312 ], [ 52.382812, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.553080 ], [ 52.382812, 42.553080 ], [ 52.382812, 42.811522 ], [ 51.679688, 42.811522 ], [ 51.679688, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.580391 ], [ 50.976562, 43.580391 ], [ 50.976562, 44.087585 ], [ 50.273438, 44.087585 ], [ 50.273438, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.336702 ], [ 53.085938, 45.336702 ], [ 53.085938, 46.800059 ], [ 50.625000, 46.800059 ], [ 50.625000, 46.558860 ], [ 49.921875, 46.558860 ], [ 49.921875, 46.316584 ], [ 48.515625, 46.316584 ], [ 48.515625, 46.800059 ], [ 48.867188, 46.800059 ], [ 48.867188, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 47.517201 ], [ 48.164062, 47.517201 ], [ 48.164062, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.989922 ], [ 46.757812, 47.989922 ], [ 46.757812, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.458352 ], [ 46.757812, 48.458352 ], [ 46.757812, 48.922499 ], [ 47.109375, 48.922499 ], [ 47.109375, 49.152970 ], [ 46.757812, 49.152970 ], [ 46.757812, 49.610710 ], [ 47.109375, 49.610710 ], [ 47.109375, 50.064192 ], [ 47.460938, 50.064192 ], [ 47.460938, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.064192 ], [ 48.867188, 50.064192 ], [ 48.867188, 50.513427 ], [ 49.218750, 50.513427 ], [ 49.218750, 50.736455 ], [ 49.570312, 50.736455 ], [ 49.570312, 50.958427 ], [ 49.921875, 50.958427 ], [ 49.921875, 51.179343 ], [ 50.273438, 51.179343 ], [ 50.273438, 51.399206 ], [ 50.625000, 51.399206 ], [ 50.625000, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.513427 ], [ 56.250000, 50.513427 ], [ 56.250000, 50.736455 ], [ 56.953125, 50.736455 ], [ 56.953125, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.513427 ], [ 59.765625, 50.513427 ], [ 59.765625, 50.736455 ], [ 61.171875, 50.736455 ], [ 61.171875, 50.958427 ], [ 61.523438, 50.958427 ], [ 61.523438, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.399206 ], [ 60.820312, 51.399206 ], [ 60.820312, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.835778 ], [ 60.117188, 51.835778 ], [ 60.117188, 52.052490 ], [ 60.468750, 52.052490 ], [ 60.468750, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.696361 ], [ 61.523438, 52.696361 ], [ 61.523438, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.540307 ], [ 60.820312, 53.540307 ], [ 60.820312, 53.748711 ], [ 61.523438, 53.748711 ], [ 61.523438, 53.956086 ], [ 62.578125, 53.956086 ], [ 62.578125, 54.162434 ], [ 64.335938, 54.162434 ], [ 64.335938, 54.367759 ], [ 65.742188, 54.367759 ], [ 65.742188, 54.572062 ], [ 66.445312, 54.572062 ], [ 66.445312, 54.775346 ], [ 67.851562, 54.775346 ], [ 67.851562, 54.977614 ], [ 68.554688, 54.977614 ], [ 68.554688, 55.178868 ], [ 68.906250, 55.178868 ], [ 68.906250, 55.379110 ], [ 69.609375, 55.379110 ] ] ] } } , @@ -1288,7 +1288,7 @@ , { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.108899 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.054628 ], [ 14.414062, 1.054628 ], [ 14.414062, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, -0.351560 ], [ 14.062500, -0.351560 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, -0.703107 ], [ 9.140625, -0.703107 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.108899 ], [ 13.007812, 2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 2.460181 ], [ 17.929688, 2.460181 ], [ 17.929688, 0.000000 ], [ 17.578125, 0.000000 ], [ 17.578125, -1.054628 ], [ 16.875000, -1.054628 ], [ 16.875000, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -1.757537 ], [ 14.414062, -1.757537 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, -0.351560 ], [ 13.710938, -0.351560 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, 0.703107 ], [ 14.414062, 0.703107 ], [ 14.414062, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 2.108899 ], [ 15.117188, 2.108899 ], [ 15.117188, 1.757537 ], [ 16.171875, 1.757537 ], [ 16.171875, 2.460181 ], [ 16.523438, 2.460181 ], [ 16.523438, 3.162456 ], [ 16.875000, 3.162456 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 2.460181 ], [ 17.929688, 2.460181 ], [ 17.929688, 0.000000 ], [ 17.578125, 0.000000 ], [ 17.578125, -1.054628 ], [ 16.875000, -1.054628 ], [ 16.875000, -1.406109 ], [ 16.523438, -1.406109 ], [ 14.414062, -1.757537 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, -0.351560 ], [ 13.710938, -0.351560 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, 0.703107 ], [ 14.414062, 0.703107 ], [ 14.414062, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 2.108899 ], [ 15.117188, 2.108899 ], [ 15.117188, 1.757537 ], [ 16.171875, 1.757537 ], [ 16.171875, 2.460181 ], [ 16.523438, 2.460181 ], [ 16.523438, 3.162456 ], [ 16.875000, 3.162456 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } , { "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 5.266008 ], [ 27.421875, 4.915833 ], [ 27.773438, 4.915833 ], [ 27.773438, 4.565474 ], [ 28.125000, 4.565474 ], [ 28.125000, 4.214943 ], [ 29.882812, 4.214943 ], [ 29.882812, 3.864255 ], [ 30.585938, 3.864255 ], [ 30.937500, 3.513421 ], [ 30.937500, 2.108899 ], [ 31.289062, 2.108899 ], [ 31.289062, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.703107 ], [ 29.531250, -0.703107 ], [ 29.531250, -1.757537 ], [ 16.523438, -1.757537 ], [ 16.523438, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.054628 ], [ 17.578125, -1.054628 ], [ 17.578125, 0.000000 ], [ 17.929688, 0.000000 ], [ 17.929688, 2.460181 ], [ 18.281250, 2.460181 ], [ 18.281250, 3.864255 ], [ 18.632812, 3.864255 ], [ 18.632812, 4.214943 ], [ 18.984375, 4.214943 ], [ 18.984375, 4.565474 ], [ 19.335938, 4.565474 ], [ 19.335938, 4.915833 ], [ 19.687500, 4.915833 ], [ 19.687500, 4.565474 ], [ 20.390625, 4.565474 ], [ 20.390625, 4.214943 ], [ 21.796875, 4.214943 ], [ 21.796875, 3.864255 ], [ 22.500000, 3.864255 ], [ 22.500000, 4.214943 ], [ 22.851562, 4.214943 ], [ 22.851562, 4.565474 ], [ 23.554688, 4.565474 ], [ 23.554688, 4.915833 ], [ 25.312500, 4.915833 ], [ 25.312500, 5.266008 ], [ 27.421875, 5.266008 ] ] ] } } , @@ -1314,13 +1314,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.802776 ], [ 135.703125, -66.231457 ], [ 136.054688, -66.231457 ], [ 136.054688, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 146.250000, -67.204032 ], [ 146.250000, -67.474922 ], [ 145.898438, -67.474922 ], [ 145.898438, -67.742759 ], [ 146.250000, -67.742759 ], [ 146.250000, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -68.007571 ], [ 147.304688, -68.007571 ], [ 147.304688, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.269387 ], [ 148.359375, -68.269387 ], [ 148.359375, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.528235 ], [ 150.468750, -68.528235 ], [ 150.468750, -68.656555 ], [ 151.523438, -68.656555 ], [ 151.523438, -68.784144 ], [ 152.226562, -68.784144 ], [ 152.226562, -68.911005 ], [ 153.984375, -68.911005 ], [ 153.984375, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.037142 ], [ 155.742188, -69.037142 ], [ 155.742188, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.287257 ], [ 156.445312, -69.287257 ], [ 156.445312, -69.411242 ], [ 157.148438, -69.411242 ], [ 157.148438, -69.534518 ], [ 158.203125, -69.534518 ], [ 158.203125, -69.657086 ], [ 159.257812, -69.657086 ], [ 159.257812, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.259452 ], [ 160.664062, -70.259452 ], [ 160.664062, -70.377854 ], [ 161.015625, -70.377854 ], [ 161.015625, -70.495574 ], [ 161.367188, -70.495574 ], [ 161.367188, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.728979 ], [ 166.640625, -70.728979 ], [ 166.640625, -70.844673 ], [ 167.695312, -70.844673 ], [ 167.695312, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.074056 ], [ 169.101562, -71.074056 ], [ 169.101562, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -71.746432 ], [ 171.210938, -71.746432 ], [ 171.210938, -72.181804 ], [ 170.859375, -72.181804 ], [ 170.859375, -72.395706 ], [ 170.507812, -72.395706 ], [ 170.507812, -72.711903 ], [ 170.156250, -72.711903 ], [ 170.156250, -73.124945 ], [ 169.804688, -73.124945 ], [ 169.804688, -73.428424 ], [ 169.453125, -73.428424 ], [ 169.453125, -73.726595 ], [ 168.750000, -73.726595 ], [ 168.750000, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -73.922469 ], [ 167.695312, -73.922469 ], [ 167.695312, -74.116047 ], [ 167.343750, -74.116047 ], [ 167.343750, -74.307353 ], [ 166.640625, -74.307353 ], [ 166.640625, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -74.590108 ], [ 165.585938, -74.590108 ], [ 165.585938, -74.867889 ], [ 165.234375, -74.867889 ], [ 165.234375, -75.050354 ], [ 164.882812, -75.050354 ], [ 164.882812, -75.230667 ], [ 164.531250, -75.230667 ], [ 164.531250, -75.408854 ], [ 164.179688, -75.408854 ], [ 164.179688, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -76.100796 ], [ 163.476562, -76.100796 ], [ 163.476562, -77.235074 ], [ 163.828125, -77.235074 ], [ 163.828125, -77.389504 ], [ 164.179688, -77.389504 ], [ 164.179688, -77.989049 ], [ 164.531250, -77.989049 ], [ 164.531250, -78.134493 ], [ 164.882812, -78.134493 ], [ 164.882812, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.278201 ], [ 165.937500, -78.278201 ], [ 165.937500, -78.349411 ], [ 166.640625, -78.349411 ], [ 166.640625, -78.560488 ], [ 166.992188, -78.560488 ], [ 166.992188, -78.767792 ], [ 166.640625, -78.767792 ], [ 166.640625, -78.836065 ], [ 165.937500, -78.836065 ], [ 165.937500, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -78.971386 ], [ 164.882812, -78.971386 ], [ 164.882812, -79.038437 ], [ 164.179688, -79.038437 ], [ 164.179688, -79.105086 ], [ 163.125000, -79.105086 ], [ 163.125000, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.367701 ], [ 161.367188, -79.367701 ], [ 161.367188, -79.624056 ], [ 161.015625, -79.624056 ], [ 161.015625, -79.997168 ], [ 160.664062, -79.997168 ], [ 160.664062, -80.415707 ], [ 160.312500, -80.415707 ], [ 160.312500, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.983688 ], [ 160.312500, -80.983688 ], [ 160.312500, -81.093214 ], [ 160.664062, -81.093214 ], [ 160.664062, -81.201420 ], [ 161.015625, -81.201420 ], [ 161.015625, -81.361287 ], [ 161.367188, -81.361287 ], [ 161.367188, -81.569968 ], [ 161.718750, -81.569968 ], [ 161.718750, -81.773644 ], [ 162.070312, -81.773644 ], [ 162.070312, -81.972431 ], [ 162.421875, -81.972431 ], [ 162.421875, -82.118384 ], [ 162.773438, -82.118384 ], [ 162.773438, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.308893 ], [ 163.476562, -82.308893 ], [ 163.476562, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.448764 ], [ 164.179688, -82.448764 ], [ 164.179688, -82.540604 ], [ 164.531250, -82.540604 ], [ 164.531250, -82.631333 ], [ 164.882812, -82.631333 ], [ 164.882812, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.585938, -82.765373 ], [ 165.585938, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -82.940327 ], [ 166.289062, -82.940327 ], [ 166.289062, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.153111 ], [ 167.695312, -83.153111 ], [ 167.695312, -83.236426 ], [ 168.046875, -83.236426 ], [ 168.046875, -83.277705 ], [ 168.398438, -83.277705 ], [ 168.398438, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.480366 ], [ 169.101562, -83.480366 ], [ 169.101562, -83.715544 ], [ 169.453125, -83.715544 ], [ 169.453125, -83.867616 ], [ 169.804688, -83.867616 ], [ 169.804688, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.942272 ], [ 170.859375, -83.942272 ], [ 170.859375, -83.979259 ], [ 171.210938, -83.979259 ], [ 171.210938, -84.016022 ], [ 171.914062, -84.016022 ], [ 171.914062, -84.052561 ], [ 172.265625, -84.052561 ], [ 172.265625, -84.088878 ], [ 172.617188, -84.088878 ], [ 172.617188, -84.196507 ], [ 172.968750, -84.196507 ], [ 172.968750, -84.336980 ], [ 173.320312, -84.336980 ], [ 173.320312, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.371566 ], [ 174.023438, -84.371566 ], [ 174.023438, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.302183 ], [ 175.078125, -84.302183 ], [ 175.078125, -84.267172 ], [ 175.429688, -84.267172 ], [ 175.429688, -84.231947 ], [ 175.781250, -84.231947 ], [ 175.781250, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 176.835938, -84.267172 ], [ 176.835938, -84.302183 ], [ 177.187500, -84.302183 ], [ 177.187500, -84.371566 ], [ 177.539062, -84.371566 ], [ 177.539062, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.242188, -84.474065 ], [ 178.242188, -84.507816 ], [ 178.593750, -84.507816 ], [ 178.593750, -84.574702 ], [ 178.945312, -84.574702 ], [ 178.945312, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.640777 ], [ 179.648438, -84.640777 ], [ 179.648438, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 94.921875, -67.204032 ], [ 94.921875, -67.339861 ], [ 96.328125, -67.339861 ], [ 96.328125, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.067433 ], [ 99.140625, -67.067433 ], [ 99.140625, -67.204032 ], [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 113.203125, -66.089364 ], [ 113.203125, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -66.089364 ], [ 135.000000, -66.089364 ], [ 135.000000, -65.802776 ], [ 135.703125, -65.802776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.802776 ], [ 135.703125, -66.231457 ], [ 136.054688, -66.231457 ], [ 136.054688, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 146.250000, -67.204032 ], [ 146.250000, -67.474922 ], [ 145.898438, -67.474922 ], [ 145.898438, -67.742759 ], [ 146.250000, -67.742759 ], [ 146.250000, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -68.007571 ], [ 147.304688, -68.007571 ], [ 147.304688, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.269387 ], [ 148.359375, -68.269387 ], [ 148.359375, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.528235 ], [ 150.468750, -68.528235 ], [ 150.468750, -68.656555 ], [ 151.523438, -68.656555 ], [ 151.523438, -68.784144 ], [ 152.226562, -68.784144 ], [ 152.226562, -68.911005 ], [ 153.984375, -68.911005 ], [ 153.984375, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.037142 ], [ 155.742188, -69.037142 ], [ 155.742188, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.287257 ], [ 156.445312, -69.287257 ], [ 156.445312, -69.411242 ], [ 157.148438, -69.411242 ], [ 157.148438, -69.534518 ], [ 158.203125, -69.534518 ], [ 158.203125, -69.657086 ], [ 159.257812, -69.657086 ], [ 159.257812, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.259452 ], [ 160.664062, -70.259452 ], [ 160.664062, -70.377854 ], [ 161.015625, -70.377854 ], [ 161.015625, -70.495574 ], [ 161.367188, -70.495574 ], [ 161.367188, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.728979 ], [ 166.640625, -70.728979 ], [ 166.640625, -70.844673 ], [ 167.695312, -70.844673 ], [ 167.695312, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.074056 ], [ 169.101562, -71.074056 ], [ 169.101562, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -71.746432 ], [ 171.210938, -71.746432 ], [ 171.210938, -72.181804 ], [ 170.859375, -72.181804 ], [ 170.859375, -72.395706 ], [ 170.507812, -72.395706 ], [ 170.507812, -72.711903 ], [ 170.156250, -72.711903 ], [ 170.156250, -73.124945 ], [ 169.804688, -73.124945 ], [ 169.804688, -73.428424 ], [ 169.453125, -73.428424 ], [ 169.453125, -73.726595 ], [ 168.750000, -73.726595 ], [ 168.750000, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -73.922469 ], [ 167.695312, -73.922469 ], [ 167.695312, -74.116047 ], [ 167.343750, -74.116047 ], [ 167.343750, -74.307353 ], [ 166.640625, -74.307353 ], [ 166.640625, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -74.590108 ], [ 165.585938, -74.590108 ], [ 165.585938, -74.867889 ], [ 165.234375, -74.867889 ], [ 165.234375, -75.050354 ], [ 164.882812, -75.050354 ], [ 164.882812, -75.230667 ], [ 164.531250, -75.230667 ], [ 164.531250, -75.408854 ], [ 164.179688, -75.408854 ], [ 164.179688, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -76.100796 ], [ 163.476562, -76.100796 ], [ 163.476562, -77.235074 ], [ 163.828125, -77.235074 ], [ 163.828125, -77.389504 ], [ 164.179688, -77.389504 ], [ 164.179688, -77.989049 ], [ 164.531250, -77.989049 ], [ 164.531250, -78.134493 ], [ 164.882812, -78.134493 ], [ 164.882812, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.278201 ], [ 165.937500, -78.278201 ], [ 165.937500, -78.349411 ], [ 166.640625, -78.349411 ], [ 166.640625, -78.560488 ], [ 166.992188, -78.560488 ], [ 166.992188, -78.767792 ], [ 166.640625, -78.767792 ], [ 166.640625, -78.836065 ], [ 165.937500, -78.836065 ], [ 165.937500, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -78.971386 ], [ 164.882812, -78.971386 ], [ 164.882812, -79.038437 ], [ 164.179688, -79.038437 ], [ 164.179688, -79.105086 ], [ 163.125000, -79.105086 ], [ 163.125000, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.367701 ], [ 161.367188, -79.367701 ], [ 161.367188, -79.624056 ], [ 161.015625, -79.624056 ], [ 161.015625, -79.997168 ], [ 160.664062, -79.997168 ], [ 160.664062, -80.415707 ], [ 160.312500, -80.415707 ], [ 160.312500, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.983688 ], [ 160.312500, -80.983688 ], [ 160.312500, -81.093214 ], [ 160.664062, -81.093214 ], [ 160.664062, -81.201420 ], [ 161.015625, -81.201420 ], [ 161.015625, -81.361287 ], [ 161.367188, -81.361287 ], [ 161.367188, -81.569968 ], [ 161.718750, -81.569968 ], [ 161.718750, -81.773644 ], [ 162.070312, -81.773644 ], [ 162.070312, -81.972431 ], [ 162.421875, -81.972431 ], [ 162.421875, -82.118384 ], [ 162.773438, -82.118384 ], [ 162.773438, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.308893 ], [ 163.476562, -82.308893 ], [ 163.476562, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.448764 ], [ 164.179688, -82.448764 ], [ 164.179688, -82.540604 ], [ 164.531250, -82.540604 ], [ 164.531250, -82.631333 ], [ 164.882812, -82.631333 ], [ 164.882812, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.585938, -82.765373 ], [ 165.585938, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -82.940327 ], [ 166.289062, -82.940327 ], [ 166.289062, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.153111 ], [ 167.695312, -83.153111 ], [ 167.695312, -83.236426 ], [ 168.046875, -83.236426 ], [ 168.046875, -83.277705 ], [ 168.398438, -83.277705 ], [ 168.398438, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.480366 ], [ 169.101562, -83.480366 ], [ 169.101562, -83.715544 ], [ 169.453125, -83.715544 ], [ 169.453125, -83.867616 ], [ 169.804688, -83.867616 ], [ 169.804688, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.942272 ], [ 170.859375, -83.942272 ], [ 170.859375, -83.979259 ], [ 171.210938, -83.979259 ], [ 171.210938, -84.016022 ], [ 171.914062, -84.016022 ], [ 171.914062, -84.052561 ], [ 172.265625, -84.052561 ], [ 172.265625, -84.088878 ], [ 172.617188, -84.088878 ], [ 172.617188, -84.196507 ], [ 172.968750, -84.196507 ], [ 172.968750, -84.336980 ], [ 173.320312, -84.336980 ], [ 173.320312, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.371566 ], [ 174.023438, -84.371566 ], [ 174.023438, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.302183 ], [ 175.078125, -84.302183 ], [ 175.078125, -84.267172 ], [ 175.429688, -84.267172 ], [ 175.429688, -84.231947 ], [ 175.781250, -84.231947 ], [ 175.781250, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 176.835938, -84.267172 ], [ 176.835938, -84.302183 ], [ 177.187500, -84.302183 ], [ 177.187500, -84.371566 ], [ 177.539062, -84.371566 ], [ 177.539062, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.242188, -84.474065 ], [ 178.242188, -84.507816 ], [ 178.593750, -84.507816 ], [ 178.593750, -84.574702 ], [ 178.945312, -84.574702 ], [ 178.945312, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.640777 ], [ 179.648438, -84.640777 ], [ 179.648438, -84.706049 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 94.921875, -67.204032 ], [ 94.921875, -67.339861 ], [ 96.328125, -67.339861 ], [ 96.328125, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.067433 ], [ 99.140625, -67.067433 ], [ 99.140625, -67.204032 ], [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 113.203125, -66.089364 ], [ 113.203125, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -66.089364 ], [ 135.000000, -66.089364 ], [ 135.000000, -65.802776 ], [ 135.703125, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ] ] ], [ [ [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ] ] ], [ [ [ 103.359375, -65.802776 ], [ 104.062500, -65.802776 ], [ 104.062500, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.372755 ], [ 101.953125, -66.372755 ], [ 101.953125, -66.089364 ], [ 102.304688, -66.089364 ], [ 102.304688, -65.946472 ], [ 102.656250, -65.946472 ], [ 102.656250, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.802776 ] ] ], [ [ [ 135.703125, -66.372755 ], [ 136.054688, -66.372755 ], [ 136.054688, -66.652977 ], [ 136.406250, -66.652977 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -65.512963 ], [ 135.703125, -65.512963 ], [ 135.703125, -66.372755 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ] ] ], [ [ [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ] ] ], [ [ [ 103.359375, -65.658275 ], [ 103.359375, -65.802776 ], [ 104.062500, -65.802776 ], [ 104.062500, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.372755 ], [ 101.953125, -66.372755 ], [ 101.953125, -66.089364 ], [ 102.304688, -66.089364 ], [ 102.304688, -65.946472 ], [ 102.656250, -65.946472 ], [ 102.656250, -65.658275 ], [ 103.359375, -65.658275 ] ] ], [ [ [ 135.703125, -65.512963 ], [ 135.703125, -66.372755 ], [ 136.054688, -66.372755 ], [ 136.054688, -66.652977 ], [ 136.406250, -66.652977 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -65.512963 ], [ 135.703125, -65.512963 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.609375, 1.757537 ], [ 114.609375, 1.054628 ], [ 113.203125, 1.054628 ], [ 113.203125, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.703107 ], [ 110.039062, 0.703107 ], [ 110.039062, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 114.609375, 1.757537 ] ] ], [ [ [ 104.414062, 1.757537 ], [ 104.414062, 1.406109 ], [ 103.007812, 1.406109 ], [ 103.007812, 1.757537 ], [ 104.414062, 1.757537 ] ] ] ] } } , @@ -1338,7 +1338,7 @@ , { "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, -2.460181 ], [ 141.328125, -2.811371 ], [ 142.031250, -2.811371 ], [ 142.031250, -3.162456 ], [ 143.085938, -3.162456 ], [ 143.085938, -3.513421 ], [ 143.789062, -3.513421 ], [ 143.789062, -3.864255 ], [ 144.492188, -3.864255 ], [ 144.492188, -4.214943 ], [ 145.195312, -4.214943 ], [ 145.195312, -4.565474 ], [ 145.546875, -4.565474 ], [ 145.546875, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.615986 ], [ 146.601562, -5.615986 ], [ 146.601562, -5.965754 ], [ 147.656250, -5.965754 ], [ 147.656250, -6.315299 ], [ 148.007812, -6.315299 ], [ 148.007812, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.304688, -7.013668 ], [ 147.304688, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -8.059230 ], [ 148.007812, -8.059230 ], [ 148.007812, -8.407168 ], [ 148.359375, -8.407168 ], [ 148.359375, -9.102097 ], [ 149.414062, -9.102097 ], [ 149.414062, -9.795678 ], [ 150.117188, -9.795678 ], [ 150.117188, -10.141932 ], [ 150.820312, -10.141932 ], [ 150.820312, -10.487812 ], [ 149.062500, -10.487812 ], [ 149.062500, -10.141932 ], [ 147.656250, -10.141932 ], [ 147.656250, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.449062 ], [ 146.601562, -9.449062 ], [ 146.601562, -9.102097 ], [ 146.250000, -9.102097 ], [ 146.250000, -8.407168 ], [ 145.898438, -8.407168 ], [ 145.898438, -8.059230 ], [ 145.195312, -8.059230 ], [ 145.195312, -7.710992 ], [ 144.492188, -7.710992 ], [ 144.492188, -8.059230 ], [ 143.789062, -8.059230 ], [ 143.789062, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.449062 ], [ 142.031250, -9.449062 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.460181 ], [ 141.328125, -2.460181 ] ] ], [ [ [ 155.039062, -5.615986 ], [ 155.039062, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.664608 ], [ 155.742188, -6.664608 ], [ 155.742188, -7.013668 ], [ 155.039062, -7.013668 ], [ 155.039062, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ], [ 155.039062, -5.615986 ] ] ], [ [ [ 152.226562, -4.214943 ], [ 152.226562, -5.266008 ], [ 151.875000, -5.266008 ], [ 151.875000, -5.615986 ], [ 151.523438, -5.615986 ], [ 151.523438, -5.965754 ], [ 150.820312, -5.965754 ], [ 150.820312, -6.315299 ], [ 149.062500, -6.315299 ], [ 149.062500, -5.965754 ], [ 148.359375, -5.965754 ], [ 148.359375, -5.266008 ], [ 148.710938, -5.266008 ], [ 148.710938, -5.615986 ], [ 149.765625, -5.615986 ], [ 149.765625, -5.266008 ], [ 150.117188, -5.266008 ], [ 150.117188, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -5.266008 ], [ 151.523438, -5.266008 ], [ 151.523438, -4.214943 ], [ 152.226562, -4.214943 ] ] ], [ [ [ 151.523438, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.513421 ], [ 152.578125, -3.513421 ], [ 152.578125, -3.864255 ], [ 151.875000, -3.864255 ], [ 151.875000, -3.513421 ], [ 151.523438, -3.513421 ], [ 151.523438, -3.162456 ] ] ], [ [ [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.214943 ], [ 153.281250, -4.214943 ], [ 153.281250, -4.915833 ], [ 152.929688, -4.915833 ], [ 152.929688, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -3.864255 ] ] ], [ [ [ 151.523438, -3.162456 ], [ 150.820312, -3.162456 ], [ 150.820312, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -3.162456 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.070312, -10.487812 ], [ 162.070312, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.718750, -10.487812 ], [ 162.070312, -10.487812 ] ] ], [ [ [ 160.312500, -9.449062 ], [ 160.664062, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.449062 ], [ 160.312500, -9.449062 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -8.754795 ], [ 161.367188, -8.754795 ], [ 161.367188, -9.449062 ], [ 161.718750, -9.449062 ], [ 161.718750, -9.795678 ], [ 161.015625, -9.795678 ], [ 161.015625, -9.102097 ], [ 160.664062, -9.102097 ], [ 160.664062, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 158.906250, -8.059230 ], [ 158.554688, -8.059230 ], [ 158.554688, -7.710992 ], [ 158.906250, -7.710992 ], [ 158.906250, -8.059230 ] ] ], [ [ [ 157.148438, -7.013668 ], [ 157.148438, -7.362467 ], [ 156.796875, -7.362467 ], [ 156.796875, -7.013668 ], [ 157.148438, -7.013668 ] ] ], [ [ [ 159.257812, -8.059230 ], [ 159.609375, -8.059230 ], [ 159.609375, -8.407168 ], [ 159.257812, -8.407168 ], [ 159.257812, -8.059230 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.070312, -10.487812 ], [ 162.070312, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.718750, -10.487812 ], [ 162.070312, -10.487812 ] ] ], [ [ [ 159.609375, -9.449062 ], [ 160.664062, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.449062 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -8.754795 ], [ 161.367188, -8.754795 ], [ 161.367188, -9.449062 ], [ 161.718750, -9.449062 ], [ 161.718750, -9.795678 ], [ 161.015625, -9.795678 ], [ 161.015625, -9.102097 ], [ 160.664062, -9.102097 ], [ 160.664062, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 158.906250, -8.059230 ], [ 158.554688, -8.059230 ], [ 158.554688, -7.710992 ], [ 158.906250, -7.710992 ], [ 158.906250, -8.059230 ] ] ], [ [ [ 157.148438, -7.013668 ], [ 157.148438, -7.362467 ], [ 156.796875, -7.362467 ], [ 156.796875, -7.013668 ], [ 157.148438, -7.013668 ] ] ], [ [ [ 159.257812, -8.059230 ], [ 159.609375, -8.059230 ], [ 159.609375, -8.407168 ], [ 159.257812, -8.407168 ], [ 159.257812, -8.059230 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.695312, -16.299051 ], [ 167.695312, -16.636192 ], [ 167.343750, -16.636192 ], [ 167.343750, -16.299051 ], [ 167.695312, -16.299051 ] ] ], [ [ [ 166.992188, -14.944785 ], [ 166.992188, -15.284185 ], [ 167.343750, -15.284185 ], [ 167.343750, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.944785 ], [ 166.992188, -14.944785 ] ] ] ] } } , @@ -1368,7 +1368,7 @@ , { "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.085938, 28.304381 ], [ 98.085938, 27.371767 ], [ 98.789062, 27.371767 ], [ 98.789062, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 24.206890 ], [ 98.789062, 24.206890 ], [ 98.789062, 22.917923 ], [ 99.492188, 22.917923 ], [ 99.492188, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.492188, 21.943046 ], [ 99.492188, 21.616579 ], [ 101.250000, 21.616579 ], [ 101.250000, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.303418 ], [ 99.492188, 20.303418 ], [ 99.492188, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 19.642588 ], [ 98.085938, 19.642588 ], [ 98.085938, 18.979026 ], [ 97.734375, 18.979026 ], [ 97.734375, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.308688 ], [ 98.085938, 17.308688 ], [ 98.085938, 16.972741 ], [ 98.437500, 16.972741 ], [ 98.437500, 16.636192 ], [ 98.789062, 16.636192 ], [ 98.789062, 15.623037 ], [ 98.437500, 15.623037 ], [ 98.437500, 15.284185 ], [ 98.085938, 15.284185 ], [ 98.085938, 14.944785 ], [ 98.437500, 14.944785 ], [ 98.437500, 14.264383 ], [ 98.789062, 14.264383 ], [ 98.789062, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.789062, 10.487812 ], [ 98.789062, 9.795678 ], [ 98.437500, 9.795678 ], [ 98.437500, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 11.523088 ], [ 98.437500, 11.523088 ], [ 98.437500, 13.239945 ], [ 98.085938, 13.239945 ], [ 98.085938, 14.264383 ], [ 97.734375, 14.264383 ], [ 97.734375, 15.961329 ], [ 97.382812, 15.961329 ], [ 97.382812, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 15.961329 ], [ 95.976562, 15.961329 ], [ 95.976562, 15.623037 ], [ 94.921875, 15.623037 ], [ 94.921875, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.636192 ], [ 94.570312, 16.636192 ], [ 94.570312, 17.644022 ], [ 94.218750, 17.644022 ], [ 94.218750, 18.312811 ], [ 93.867188, 18.312811 ], [ 93.867188, 18.979026 ], [ 93.515625, 18.979026 ], [ 93.515625, 19.642588 ], [ 93.164062, 19.642588 ], [ 93.164062, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.303418 ], [ 92.460938, 20.303418 ], [ 92.460938, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.164062, 21.943046 ], [ 93.164062, 24.206890 ], [ 93.515625, 24.206890 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.206890 ], [ 94.570312, 24.206890 ], [ 94.570312, 25.165173 ], [ 94.921875, 25.165173 ], [ 94.921875, 25.799891 ], [ 95.273438, 25.799891 ], [ 95.273438, 26.431228 ], [ 95.625000, 26.431228 ], [ 95.625000, 26.745610 ], [ 95.976562, 26.745610 ], [ 95.976562, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.683528 ], [ 97.382812, 28.304381 ], [ 98.085938, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.304688, 22.268764 ], [ 102.304688, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.632784 ], [ 104.414062, 20.632784 ], [ 104.414062, 20.303418 ], [ 104.765625, 20.303418 ], [ 104.765625, 19.642588 ], [ 104.062500, 19.642588 ], [ 104.062500, 18.979026 ], [ 104.765625, 18.979026 ], [ 104.765625, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.312811 ], [ 105.468750, 18.312811 ], [ 105.468750, 17.644022 ], [ 105.820312, 17.644022 ], [ 105.820312, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.623037 ], [ 107.578125, 15.623037 ], [ 107.578125, 14.604847 ], [ 107.226562, 14.604847 ], [ 107.226562, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.623037 ], [ 105.117188, 15.623037 ], [ 105.117188, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.414062, 17.308688 ], [ 104.414062, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.312811 ], [ 103.359375, 18.312811 ], [ 103.359375, 17.978733 ], [ 101.601562, 17.978733 ], [ 101.601562, 17.644022 ], [ 100.898438, 17.644022 ], [ 100.898438, 18.646245 ], [ 101.250000, 18.646245 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 100.195312, 19.973349 ], [ 100.195312, 20.632784 ], [ 100.546875, 20.632784 ], [ 100.546875, 20.961440 ], [ 101.250000, 20.961440 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.616579 ], [ 101.601562, 21.616579 ], [ 101.601562, 22.268764 ], [ 102.304688, 22.268764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.304688, 22.268764 ], [ 102.304688, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.632784 ], [ 104.414062, 20.632784 ], [ 104.414062, 20.303418 ], [ 104.765625, 20.303418 ], [ 104.765625, 19.642588 ], [ 104.062500, 19.642588 ], [ 104.062500, 18.979026 ], [ 104.765625, 18.979026 ], [ 104.765625, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.312811 ], [ 105.468750, 18.312811 ], [ 105.468750, 17.644022 ], [ 105.820312, 17.644022 ], [ 105.820312, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.623037 ], [ 107.578125, 15.623037 ], [ 107.578125, 14.604847 ], [ 107.226562, 14.604847 ], [ 107.226562, 14.264383 ], [ 106.171875, 14.264383 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.623037 ], [ 105.117188, 15.623037 ], [ 105.117188, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.414062, 17.308688 ], [ 104.414062, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.312811 ], [ 103.359375, 18.312811 ], [ 103.359375, 17.978733 ], [ 101.601562, 17.978733 ], [ 101.601562, 17.644022 ], [ 100.898438, 17.644022 ], [ 100.898438, 18.646245 ], [ 101.250000, 18.646245 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 100.195312, 19.973349 ], [ 100.195312, 20.632784 ], [ 100.546875, 20.632784 ], [ 100.546875, 20.961440 ], [ 101.250000, 20.961440 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.616579 ], [ 101.601562, 21.616579 ], [ 101.601562, 22.268764 ], [ 102.304688, 22.268764 ] ] ] } } , { "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.492188, 11.178402 ], [ 99.492188, 10.141932 ], [ 99.140625, 10.141932 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 99.843750, 8.754795 ], [ 100.195312, 8.754795 ], [ 100.195312, 7.710992 ], [ 100.546875, 7.710992 ], [ 100.546875, 7.013668 ], [ 100.898438, 7.013668 ], [ 100.898438, 6.664608 ], [ 101.601562, 6.664608 ], [ 101.601562, 6.315299 ], [ 102.304688, 6.315299 ], [ 102.304688, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 5.615986 ], [ 101.250000, 5.615986 ], [ 101.250000, 6.315299 ], [ 100.546875, 6.315299 ], [ 100.546875, 6.664608 ], [ 99.843750, 6.664608 ], [ 99.843750, 7.013668 ], [ 99.492188, 7.013668 ], [ 99.492188, 7.710992 ], [ 99.140625, 7.710992 ], [ 99.140625, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 9.449062 ], [ 98.437500, 9.449062 ], [ 98.437500, 9.795678 ], [ 98.789062, 9.795678 ], [ 98.789062, 10.487812 ], [ 99.140625, 10.487812 ], [ 99.140625, 11.178402 ], [ 99.492188, 11.178402 ] ] ], [ [ [ 100.195312, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 18.646245 ], [ 100.898438, 18.646245 ], [ 100.898438, 17.644022 ], [ 101.601562, 17.644022 ], [ 101.601562, 17.978733 ], [ 103.359375, 17.978733 ], [ 103.359375, 18.312811 ], [ 104.062500, 18.312811 ], [ 104.062500, 17.978733 ], [ 104.414062, 17.978733 ], [ 104.414062, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.117188, 15.961329 ], [ 105.117188, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 14.264383 ], [ 103.007812, 14.264383 ], [ 103.007812, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 13.239945 ], [ 102.304688, 13.239945 ], [ 102.304688, 12.554564 ], [ 102.656250, 12.554564 ], [ 102.656250, 12.211180 ], [ 101.953125, 12.211180 ], [ 101.953125, 12.554564 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.239945 ], [ 100.195312, 13.239945 ], [ 100.195312, 12.554564 ], [ 99.843750, 12.554564 ], [ 99.843750, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 12.211180 ], [ 99.140625, 12.211180 ], [ 99.140625, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.264383 ], [ 98.437500, 14.264383 ], [ 98.437500, 14.944785 ], [ 98.085938, 14.944785 ], [ 98.085938, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 15.623037 ], [ 98.789062, 15.623037 ], [ 98.789062, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.972741 ], [ 98.085938, 16.972741 ], [ 98.085938, 17.308688 ], [ 97.734375, 17.308688 ], [ 97.734375, 17.978733 ], [ 97.382812, 17.978733 ], [ 97.382812, 18.312811 ], [ 97.734375, 18.312811 ], [ 97.734375, 18.979026 ], [ 98.085938, 18.979026 ], [ 98.085938, 19.642588 ], [ 99.140625, 19.642588 ], [ 99.140625, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.303418 ], [ 100.195312, 20.303418 ], [ 100.195312, 19.973349 ] ] ] ] } } , @@ -1398,7 +1398,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.765625, 77.617709 ], [ 104.765625, 77.542096 ], [ 105.468750, 77.542096 ], [ 105.468750, 77.466028 ], [ 105.820312, 77.466028 ], [ 105.820312, 77.389504 ], [ 106.171875, 77.389504 ], [ 106.171875, 77.312520 ], [ 105.820312, 77.312520 ], [ 105.820312, 77.235074 ], [ 105.117188, 77.235074 ], [ 105.117188, 77.078784 ], [ 106.171875, 77.078784 ], [ 106.171875, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.760541 ], [ 107.226562, 76.760541 ], [ 107.226562, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.598545 ], [ 107.929688, 76.598545 ], [ 107.929688, 76.679785 ], [ 108.281250, 76.679785 ], [ 108.281250, 76.760541 ], [ 109.335938, 76.760541 ], [ 109.335938, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.598545 ], [ 111.445312, 76.598545 ], [ 111.445312, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.434604 ], [ 112.148438, 76.434604 ], [ 112.148438, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.268695 ], [ 112.851562, 76.268695 ], [ 112.851562, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.100796 ], [ 113.554688, 76.100796 ], [ 113.554688, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.845169 ], [ 114.257812, 75.845169 ], [ 114.257812, 75.584937 ], [ 113.906250, 75.584937 ], [ 113.906250, 75.230667 ], [ 113.554688, 75.230667 ], [ 113.554688, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 75.050354 ], [ 112.851562, 75.050354 ], [ 112.851562, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.867889 ], [ 111.796875, 74.867889 ], [ 111.796875, 74.775843 ], [ 111.445312, 74.775843 ], [ 111.445312, 74.683250 ], [ 111.093750, 74.683250 ], [ 111.093750, 74.590108 ], [ 110.390625, 74.590108 ], [ 110.390625, 74.496413 ], [ 110.039062, 74.496413 ], [ 110.039062, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.211983 ], [ 109.335938, 74.211983 ], [ 109.335938, 74.116047 ], [ 110.039062, 74.116047 ], [ 110.039062, 74.019543 ], [ 110.742188, 74.019543 ], [ 110.742188, 73.922469 ], [ 111.445312, 73.922469 ], [ 111.445312, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.922469 ], [ 112.851562, 73.922469 ], [ 112.851562, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 114.960938, 73.627789 ], [ 114.960938, 73.726595 ], [ 117.070312, 73.726595 ], [ 117.070312, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.327858 ], [ 119.179688, 73.327858 ], [ 119.179688, 73.124945 ], [ 120.937500, 73.124945 ], [ 120.937500, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.327858 ], [ 123.398438, 73.327858 ], [ 123.398438, 73.726595 ], [ 123.750000, 73.726595 ], [ 123.750000, 73.627789 ], [ 124.804688, 73.627789 ], [ 124.804688, 73.528399 ], [ 126.914062, 73.528399 ], [ 126.914062, 73.428424 ], [ 127.265625, 73.428424 ], [ 127.265625, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.140778 ], [ 88.593750, 75.140778 ], [ 88.593750, 75.230667 ], [ 88.945312, 75.230667 ], [ 88.945312, 75.320025 ], [ 89.296875, 75.320025 ], [ 89.296875, 75.408854 ], [ 89.648438, 75.408854 ], [ 89.648438, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.584937 ], [ 90.351562, 75.584937 ], [ 90.351562, 75.672197 ], [ 91.757812, 75.672197 ], [ 91.757812, 75.758940 ], [ 92.812500, 75.758940 ], [ 92.812500, 75.845169 ], [ 93.164062, 75.845169 ], [ 93.164062, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.930885 ], [ 97.031250, 75.930885 ], [ 97.031250, 76.016094 ], [ 97.382812, 76.016094 ], [ 97.382812, 76.100796 ], [ 97.734375, 76.100796 ], [ 97.734375, 76.184995 ], [ 98.085938, 76.184995 ], [ 98.085938, 76.268695 ], [ 98.437500, 76.268695 ], [ 98.437500, 76.351896 ], [ 98.789062, 76.351896 ], [ 98.789062, 76.434604 ], [ 100.898438, 76.434604 ], [ 100.898438, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.389504 ], [ 103.007812, 77.389504 ], [ 103.007812, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.542096 ], [ 103.710938, 77.542096 ], [ 103.710938, 77.617709 ], [ 104.765625, 77.617709 ] ] ], [ [ [ 102.304688, 79.367701 ], [ 102.304688, 79.302640 ], [ 103.007812, 79.302640 ], [ 103.007812, 79.237185 ], [ 103.359375, 79.237185 ], [ 103.359375, 79.171335 ], [ 103.710938, 79.171335 ], [ 103.710938, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.971386 ], [ 104.414062, 78.971386 ], [ 104.414062, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.117188, 78.767792 ], [ 105.117188, 78.699106 ], [ 105.468750, 78.699106 ], [ 105.468750, 78.490552 ], [ 105.117188, 78.490552 ], [ 105.117188, 78.278201 ], [ 104.765625, 78.278201 ], [ 104.765625, 78.206563 ], [ 103.710938, 78.206563 ], [ 103.710938, 78.134493 ], [ 102.656250, 78.134493 ], [ 102.656250, 78.061989 ], [ 101.250000, 78.061989 ], [ 101.250000, 77.989049 ], [ 100.195312, 77.989049 ], [ 100.195312, 77.915669 ], [ 99.492188, 77.915669 ], [ 99.492188, 77.989049 ], [ 99.843750, 77.989049 ], [ 99.843750, 78.278201 ], [ 100.195312, 78.278201 ], [ 100.195312, 78.560488 ], [ 100.546875, 78.560488 ], [ 100.546875, 78.836065 ], [ 100.898438, 78.836065 ], [ 100.898438, 79.105086 ], [ 101.250000, 79.105086 ], [ 101.250000, 79.237185 ], [ 101.601562, 79.237185 ], [ 101.601562, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.367701 ], [ 102.304688, 79.367701 ] ] ], [ [ [ 96.328125, 81.201420 ], [ 96.328125, 81.093214 ], [ 96.679688, 81.093214 ], [ 96.679688, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.872827 ], [ 97.382812, 80.872827 ], [ 97.382812, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.647035 ], [ 98.085938, 80.647035 ], [ 98.085938, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.356995 ], [ 98.789062, 80.356995 ], [ 98.789062, 80.238501 ], [ 99.140625, 80.238501 ], [ 99.140625, 80.118564 ], [ 99.492188, 80.118564 ], [ 99.492188, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 79.812302 ], [ 100.195312, 79.812302 ], [ 100.195312, 79.302640 ], [ 99.843750, 79.302640 ], [ 99.843750, 78.903929 ], [ 99.492188, 78.903929 ], [ 99.492188, 78.836065 ], [ 98.437500, 78.836065 ], [ 98.437500, 78.767792 ], [ 97.031250, 78.767792 ], [ 97.031250, 78.836065 ], [ 96.328125, 78.836065 ], [ 96.328125, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 78.971386 ], [ 94.921875, 78.971386 ], [ 94.921875, 79.038437 ], [ 94.570312, 79.038437 ], [ 94.570312, 79.105086 ], [ 94.218750, 79.105086 ], [ 94.218750, 79.237185 ], [ 93.867188, 79.237185 ], [ 93.867188, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 79.367701 ], [ 93.164062, 79.367701 ], [ 93.164062, 79.560546 ], [ 92.812500, 79.560546 ], [ 92.812500, 79.935918 ], [ 92.460938, 79.935918 ], [ 92.460938, 80.118564 ], [ 92.109375, 80.118564 ], [ 92.109375, 80.178713 ], [ 91.757812, 80.178713 ], [ 91.757812, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.474065 ], [ 91.757812, 80.474065 ], [ 91.757812, 80.532071 ], [ 92.109375, 80.532071 ], [ 92.109375, 80.647035 ], [ 92.460938, 80.647035 ], [ 92.460938, 80.703997 ], [ 92.812500, 80.703997 ], [ 92.812500, 80.816891 ], [ 93.164062, 80.816891 ], [ 93.164062, 80.872827 ], [ 93.515625, 80.872827 ], [ 93.515625, 80.983688 ], [ 93.867188, 80.983688 ], [ 93.867188, 81.038617 ], [ 94.218750, 81.038617 ], [ 94.218750, 81.093214 ], [ 94.921875, 81.093214 ], [ 94.921875, 81.147481 ], [ 95.273438, 81.147481 ], [ 95.273438, 81.201420 ], [ 96.328125, 81.201420 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.617188, 73.327858 ], [ 127.617188, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.711903 ], [ 129.023438, 72.711903 ], [ 129.023438, 72.289067 ], [ 128.671875, 72.289067 ], [ 128.671875, 72.073911 ], [ 128.320312, 72.073911 ], [ 128.320312, 71.856229 ], [ 128.671875, 71.856229 ], [ 128.671875, 71.635993 ], [ 129.023438, 71.635993 ], [ 129.023438, 71.413177 ], [ 129.375000, 71.413177 ], [ 129.375000, 71.187754 ], [ 129.726562, 71.187754 ], [ 129.726562, 71.074056 ], [ 130.078125, 71.074056 ], [ 130.078125, 70.959697 ], [ 130.781250, 70.959697 ], [ 130.781250, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.959697 ], [ 131.484375, 70.959697 ], [ 131.484375, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.635993 ], [ 132.187500, 71.635993 ], [ 132.187500, 71.746432 ], [ 132.539062, 71.746432 ], [ 132.539062, 71.635993 ], [ 133.242188, 71.635993 ], [ 133.242188, 71.524909 ], [ 133.593750, 71.524909 ], [ 133.593750, 71.413177 ], [ 134.648438, 71.413177 ], [ 134.648438, 71.524909 ], [ 135.351562, 71.524909 ], [ 135.351562, 71.635993 ], [ 135.703125, 71.635993 ], [ 135.703125, 71.524909 ], [ 136.406250, 71.524909 ], [ 136.406250, 71.413177 ], [ 137.109375, 71.413177 ], [ 137.109375, 71.300793 ], [ 137.812500, 71.300793 ], [ 137.812500, 71.524909 ], [ 138.164062, 71.524909 ], [ 138.164062, 71.635993 ], [ 138.867188, 71.635993 ], [ 138.867188, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.746432 ], [ 139.570312, 71.746432 ], [ 139.570312, 72.181804 ], [ 139.218750, 72.181804 ], [ 139.218750, 72.395706 ], [ 139.570312, 72.395706 ], [ 139.570312, 72.501722 ], [ 139.921875, 72.501722 ], [ 139.921875, 72.607120 ], [ 140.273438, 72.607120 ], [ 140.273438, 72.711903 ], [ 140.625000, 72.711903 ], [ 140.625000, 72.816074 ], [ 141.328125, 72.816074 ], [ 141.328125, 72.711903 ], [ 142.734375, 72.711903 ], [ 142.734375, 72.607120 ], [ 144.140625, 72.607120 ], [ 144.140625, 72.501722 ], [ 145.546875, 72.501722 ], [ 145.546875, 72.395706 ], [ 146.953125, 72.395706 ], [ 146.953125, 72.289067 ], [ 148.359375, 72.289067 ], [ 148.359375, 72.181804 ], [ 149.414062, 72.181804 ], [ 149.414062, 72.073911 ], [ 149.765625, 72.073911 ], [ 149.765625, 71.856229 ], [ 150.117188, 71.856229 ], [ 150.117188, 71.635993 ], [ 150.468750, 71.635993 ], [ 150.468750, 71.524909 ], [ 150.820312, 71.524909 ], [ 150.820312, 71.413177 ], [ 151.171875, 71.413177 ], [ 151.171875, 71.300793 ], [ 151.523438, 71.300793 ], [ 151.523438, 71.187754 ], [ 151.875000, 71.187754 ], [ 151.875000, 71.074056 ], [ 152.226562, 71.074056 ], [ 152.226562, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.844673 ], [ 154.335938, 70.844673 ], [ 154.335938, 70.959697 ], [ 156.445312, 70.959697 ], [ 156.445312, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.959697 ], [ 158.203125, 70.959697 ], [ 158.203125, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.728979 ], [ 159.257812, 70.728979 ], [ 159.257812, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 70.495574 ], [ 159.960938, 70.495574 ], [ 159.960938, 70.140364 ], [ 159.609375, 70.140364 ], [ 159.609375, 69.657086 ], [ 159.960938, 69.657086 ], [ 159.960938, 69.534518 ], [ 160.664062, 69.534518 ], [ 160.664062, 69.411242 ], [ 161.718750, 69.411242 ], [ 161.718750, 69.534518 ], [ 162.421875, 69.534518 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.534518 ], [ 165.234375, 69.534518 ], [ 165.234375, 69.411242 ], [ 166.992188, 69.411242 ], [ 166.992188, 69.534518 ], [ 167.695312, 69.534518 ], [ 167.695312, 69.411242 ], [ 168.046875, 69.411242 ], [ 168.046875, 69.162558 ], [ 168.398438, 69.162558 ], [ 168.398438, 69.037142 ], [ 168.750000, 69.037142 ], [ 168.750000, 68.911005 ], [ 169.101562, 68.911005 ], [ 169.101562, 68.656555 ], [ 169.804688, 68.656555 ], [ 169.804688, 68.784144 ], [ 170.507812, 68.784144 ], [ 170.507812, 68.911005 ], [ 170.859375, 68.911005 ], [ 170.859375, 69.162558 ], [ 170.507812, 69.162558 ], [ 170.507812, 69.411242 ], [ 170.156250, 69.411242 ], [ 170.156250, 69.900118 ], [ 170.507812, 69.900118 ], [ 170.507812, 70.140364 ], [ 170.859375, 70.140364 ], [ 170.859375, 70.020587 ], [ 171.914062, 70.020587 ], [ 171.914062, 69.900118 ], [ 172.968750, 69.900118 ], [ 172.968750, 69.778952 ], [ 175.078125, 69.778952 ], [ 175.078125, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 69.037142 ], [ 179.648438, 69.037142 ], [ 179.648438, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 65.802776 ], [ 127.265625, 65.802776 ], [ 127.265625, 73.327858 ], [ 127.617188, 73.327858 ] ] ], [ [ [ 180.000000, 71.413177 ], [ 180.000000, 70.844673 ], [ 179.648438, 70.844673 ], [ 179.648438, 70.728979 ], [ 178.945312, 70.728979 ], [ 178.945312, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 178.945312, 71.074056 ], [ 178.945312, 71.187754 ], [ 179.296875, 71.187754 ], [ 179.296875, 71.300793 ], [ 179.648438, 71.300793 ], [ 179.648438, 71.413177 ], [ 180.000000, 71.413177 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 142.031250, 73.726595 ], [ 142.382812, 73.726595 ], [ 142.382812, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.528399 ], [ 143.085938, 73.528399 ], [ 143.085938, 73.428424 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.327858 ], [ 140.273438, 73.327858 ], [ 140.273438, 73.528399 ], [ 140.625000, 73.528399 ], [ 140.625000, 73.627789 ], [ 140.976562, 73.627789 ], [ 140.976562, 73.726595 ], [ 141.679688, 73.726595 ], [ 141.679688, 73.824820 ], [ 142.031250, 73.824820 ] ] ], [ [ [ 141.328125, 76.100796 ], [ 141.328125, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.930885 ], [ 142.734375, 75.930885 ], [ 142.734375, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.758940 ], [ 144.140625, 75.758940 ], [ 144.140625, 75.672197 ], [ 144.843750, 75.672197 ], [ 144.843750, 75.584937 ], [ 145.195312, 75.584937 ], [ 145.195312, 75.408854 ], [ 144.843750, 75.408854 ], [ 144.843750, 75.140778 ], [ 144.492188, 75.140778 ], [ 144.492188, 74.867889 ], [ 144.140625, 74.867889 ], [ 144.140625, 74.775843 ], [ 142.031250, 74.775843 ], [ 142.031250, 74.867889 ], [ 140.625000, 74.867889 ], [ 140.625000, 74.775843 ], [ 139.921875, 74.775843 ], [ 139.921875, 74.683250 ], [ 139.218750, 74.683250 ], [ 139.218750, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.775843 ], [ 138.164062, 74.775843 ], [ 138.164062, 74.867889 ], [ 137.812500, 74.867889 ], [ 137.812500, 74.959392 ], [ 137.460938, 74.959392 ], [ 137.460938, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.584937 ], [ 137.460938, 75.584937 ], [ 137.460938, 75.930885 ], [ 138.164062, 75.930885 ], [ 138.164062, 76.016094 ], [ 138.867188, 76.016094 ], [ 138.867188, 76.100796 ], [ 141.328125, 76.100796 ] ] ], [ [ [ 146.601562, 75.497157 ], [ 146.601562, 75.408854 ], [ 147.656250, 75.408854 ], [ 147.656250, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.230667 ], [ 149.414062, 75.230667 ], [ 149.414062, 75.140778 ], [ 150.117188, 75.140778 ], [ 150.117188, 75.050354 ], [ 150.820312, 75.050354 ], [ 150.820312, 74.959392 ], [ 150.468750, 74.959392 ], [ 150.468750, 74.867889 ], [ 150.117188, 74.867889 ], [ 150.117188, 74.775843 ], [ 149.765625, 74.775843 ], [ 149.765625, 74.683250 ], [ 148.359375, 74.683250 ], [ 148.359375, 74.775843 ], [ 147.656250, 74.775843 ], [ 147.656250, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.959392 ], [ 146.601562, 74.959392 ], [ 146.601562, 75.050354 ], [ 146.250000, 75.050354 ], [ 146.250000, 75.497157 ], [ 146.601562, 75.497157 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.617188, 73.327858 ], [ 127.617188, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.711903 ], [ 129.023438, 72.711903 ], [ 129.023438, 72.289067 ], [ 128.671875, 72.289067 ], [ 128.671875, 72.073911 ], [ 128.320312, 72.073911 ], [ 128.320312, 71.856229 ], [ 128.671875, 71.856229 ], [ 128.671875, 71.635993 ], [ 129.023438, 71.635993 ], [ 129.023438, 71.413177 ], [ 129.375000, 71.413177 ], [ 129.375000, 71.187754 ], [ 129.726562, 71.187754 ], [ 129.726562, 71.074056 ], [ 130.078125, 71.074056 ], [ 130.078125, 70.959697 ], [ 130.781250, 70.959697 ], [ 130.781250, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.959697 ], [ 131.484375, 70.959697 ], [ 131.484375, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.635993 ], [ 132.187500, 71.635993 ], [ 132.187500, 71.746432 ], [ 132.539062, 71.746432 ], [ 132.539062, 71.635993 ], [ 133.242188, 71.635993 ], [ 133.242188, 71.524909 ], [ 133.593750, 71.524909 ], [ 133.593750, 71.413177 ], [ 134.648438, 71.413177 ], [ 134.648438, 71.524909 ], [ 135.351562, 71.524909 ], [ 135.351562, 71.635993 ], [ 135.703125, 71.635993 ], [ 135.703125, 71.524909 ], [ 136.406250, 71.524909 ], [ 136.406250, 71.413177 ], [ 137.109375, 71.413177 ], [ 137.109375, 71.300793 ], [ 137.812500, 71.300793 ], [ 137.812500, 71.524909 ], [ 138.164062, 71.524909 ], [ 138.164062, 71.635993 ], [ 138.867188, 71.635993 ], [ 138.867188, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.746432 ], [ 139.570312, 71.746432 ], [ 139.570312, 72.181804 ], [ 139.218750, 72.181804 ], [ 139.218750, 72.395706 ], [ 139.570312, 72.395706 ], [ 139.570312, 72.501722 ], [ 139.921875, 72.501722 ], [ 139.921875, 72.607120 ], [ 140.273438, 72.607120 ], [ 140.273438, 72.711903 ], [ 140.625000, 72.711903 ], [ 140.625000, 72.816074 ], [ 141.328125, 72.816074 ], [ 141.328125, 72.711903 ], [ 142.734375, 72.711903 ], [ 142.734375, 72.607120 ], [ 144.140625, 72.607120 ], [ 144.140625, 72.501722 ], [ 145.546875, 72.501722 ], [ 145.546875, 72.395706 ], [ 146.953125, 72.395706 ], [ 146.953125, 72.289067 ], [ 148.359375, 72.289067 ], [ 148.359375, 72.181804 ], [ 149.414062, 72.181804 ], [ 149.414062, 72.073911 ], [ 149.765625, 72.073911 ], [ 149.765625, 71.856229 ], [ 150.117188, 71.856229 ], [ 150.117188, 71.635993 ], [ 150.468750, 71.635993 ], [ 150.468750, 71.524909 ], [ 150.820312, 71.524909 ], [ 150.820312, 71.413177 ], [ 151.171875, 71.413177 ], [ 151.171875, 71.300793 ], [ 151.523438, 71.300793 ], [ 151.523438, 71.187754 ], [ 151.875000, 71.187754 ], [ 151.875000, 71.074056 ], [ 152.226562, 71.074056 ], [ 152.226562, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.844673 ], [ 154.335938, 70.844673 ], [ 154.335938, 70.959697 ], [ 156.445312, 70.959697 ], [ 156.445312, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.959697 ], [ 158.203125, 70.959697 ], [ 158.203125, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.728979 ], [ 159.257812, 70.728979 ], [ 159.257812, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 70.495574 ], [ 159.960938, 70.495574 ], [ 159.960938, 70.140364 ], [ 159.609375, 70.140364 ], [ 159.609375, 69.657086 ], [ 159.960938, 69.657086 ], [ 159.960938, 69.534518 ], [ 160.664062, 69.534518 ], [ 160.664062, 69.411242 ], [ 161.718750, 69.411242 ], [ 161.718750, 69.534518 ], [ 162.421875, 69.534518 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.534518 ], [ 165.234375, 69.534518 ], [ 165.234375, 69.411242 ], [ 166.992188, 69.411242 ], [ 166.992188, 69.534518 ], [ 167.695312, 69.534518 ], [ 167.695312, 69.411242 ], [ 168.046875, 69.411242 ], [ 168.046875, 69.162558 ], [ 168.398438, 69.162558 ], [ 168.398438, 69.037142 ], [ 168.750000, 69.037142 ], [ 168.750000, 68.911005 ], [ 169.101562, 68.911005 ], [ 169.101562, 68.656555 ], [ 169.804688, 68.656555 ], [ 169.804688, 68.784144 ], [ 170.507812, 68.784144 ], [ 170.507812, 68.911005 ], [ 170.859375, 68.911005 ], [ 170.859375, 69.162558 ], [ 170.507812, 69.162558 ], [ 170.507812, 69.411242 ], [ 170.156250, 69.411242 ], [ 170.156250, 69.900118 ], [ 170.507812, 69.900118 ], [ 170.507812, 70.140364 ], [ 170.859375, 70.140364 ], [ 170.859375, 70.020587 ], [ 171.914062, 70.020587 ], [ 171.914062, 69.900118 ], [ 172.968750, 69.900118 ], [ 172.968750, 69.778952 ], [ 175.078125, 69.778952 ], [ 175.078125, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 69.037142 ], [ 179.648438, 69.037142 ], [ 179.648438, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 65.802776 ], [ 127.265625, 65.802776 ], [ 127.265625, 73.327858 ], [ 127.617188, 73.327858 ] ] ], [ [ [ 180.000000, 71.413177 ], [ 180.000000, 70.844673 ], [ 179.648438, 70.844673 ], [ 179.648438, 70.728979 ], [ 178.945312, 70.728979 ], [ 178.945312, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 178.945312, 71.074056 ], [ 178.945312, 71.187754 ], [ 179.296875, 71.187754 ], [ 179.296875, 71.300793 ], [ 179.648438, 71.300793 ], [ 179.648438, 71.413177 ], [ 180.000000, 71.413177 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 142.031250, 73.726595 ], [ 142.382812, 73.726595 ], [ 142.382812, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.528399 ], [ 143.085938, 73.528399 ], [ 143.085938, 73.428424 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.327858 ], [ 140.273438, 73.327858 ], [ 140.273438, 73.528399 ], [ 140.625000, 73.528399 ], [ 140.625000, 73.627789 ], [ 140.976562, 73.627789 ], [ 140.976562, 73.726595 ], [ 141.679688, 73.726595 ], [ 141.679688, 73.824820 ], [ 142.031250, 73.824820 ] ] ], [ [ [ 141.328125, 76.100796 ], [ 141.328125, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.930885 ], [ 142.734375, 75.930885 ], [ 142.734375, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.758940 ], [ 144.140625, 75.758940 ], [ 144.140625, 75.672197 ], [ 144.843750, 75.672197 ], [ 144.843750, 75.584937 ], [ 145.195312, 75.584937 ], [ 145.195312, 75.408854 ], [ 144.843750, 75.408854 ], [ 144.843750, 75.140778 ], [ 144.492188, 75.140778 ], [ 144.492188, 74.867889 ], [ 144.140625, 74.867889 ], [ 144.140625, 74.775843 ], [ 142.031250, 74.775843 ], [ 142.031250, 74.867889 ], [ 140.625000, 74.867889 ], [ 140.625000, 74.775843 ], [ 139.921875, 74.775843 ], [ 139.921875, 74.683250 ], [ 139.218750, 74.683250 ], [ 139.218750, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.775843 ], [ 138.164062, 74.775843 ], [ 138.164062, 74.867889 ], [ 137.812500, 74.867889 ], [ 137.812500, 74.959392 ], [ 137.460938, 74.959392 ], [ 137.460938, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.584937 ], [ 137.460938, 75.584937 ], [ 137.460938, 75.930885 ], [ 138.164062, 75.930885 ], [ 138.164062, 76.016094 ], [ 138.867188, 76.016094 ], [ 138.867188, 76.100796 ], [ 141.328125, 76.100796 ] ] ], [ [ [ 146.601562, 75.497157 ], [ 146.601562, 75.408854 ], [ 147.656250, 75.408854 ], [ 147.656250, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.230667 ], [ 149.414062, 75.230667 ], [ 149.414062, 75.140778 ], [ 150.117188, 75.140778 ], [ 150.117188, 75.050354 ], [ 150.820312, 75.050354 ], [ 150.820312, 74.959392 ], [ 150.468750, 74.959392 ], [ 150.468750, 74.867889 ], [ 150.117188, 74.867889 ], [ 150.117188, 74.775843 ], [ 149.765625, 74.775843 ], [ 149.765625, 74.683250 ], [ 148.359375, 74.683250 ], [ 148.359375, 74.775843 ], [ 147.656250, 74.775843 ], [ 147.656250, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.959392 ], [ 146.601562, 74.959392 ], [ 146.601562, 75.050354 ], [ 146.250000, 75.050354 ], [ 146.250000, 75.497157 ], [ 146.601562, 75.497157 ] ] ] ] } } ] } ] } , @@ -1410,7 +1410,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -162.949219, -78.206563 ], [ -162.949219, -78.242436 ], [ -162.597656, -78.242436 ], [ -162.597656, -78.278201 ], [ -162.246094, -78.278201 ], [ -162.246094, -78.313860 ], [ -161.894531, -78.313860 ], [ -161.894531, -78.349411 ], [ -161.542969, -78.349411 ], [ -161.542969, -78.384855 ], [ -161.191406, -78.384855 ], [ -161.191406, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.490552 ], [ -160.839844, -78.490552 ], [ -160.839844, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.630006 ], [ -160.488281, -78.630006 ], [ -160.488281, -78.699106 ], [ -160.312500, -78.699106 ], [ -160.312500, -78.733501 ], [ -160.136719, -78.733501 ], [ -160.136719, -78.801980 ], [ -159.960938, -78.801980 ], [ -159.960938, -78.870048 ], [ -159.785156, -78.870048 ], [ -159.785156, -78.937708 ], [ -159.609375, -78.937708 ], [ -159.609375, -79.004962 ], [ -159.433594, -79.004962 ], [ -159.433594, -79.204309 ], [ -159.257812, -79.204309 ], [ -159.257812, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.246094, -79.302640 ], [ -162.421875, -79.302640 ], [ -162.421875, -79.237185 ], [ -162.597656, -79.237185 ], [ -162.597656, -79.105086 ], [ -162.773438, -79.105086 ], [ -162.773438, -79.004962 ], [ -162.949219, -79.004962 ], [ -162.949219, -78.903929 ], [ -163.125000, -78.903929 ], [ -163.125000, -78.836065 ], [ -163.300781, -78.836065 ], [ -163.300781, -78.733501 ], [ -163.476562, -78.733501 ], [ -163.476562, -78.664608 ], [ -163.652344, -78.664608 ], [ -163.652344, -78.560488 ], [ -163.476562, -78.560488 ], [ -163.476562, -78.420193 ], [ -163.300781, -78.420193 ], [ -163.300781, -78.278201 ], [ -163.125000, -78.278201 ], [ -163.125000, -78.206563 ], [ -162.949219, -78.206563 ] ] ], [ [ [ -135.000000, -74.307353 ], [ -135.000000, -74.354828 ], [ -134.472656, -74.354828 ], [ -134.472656, -74.402163 ], [ -134.121094, -74.402163 ], [ -134.121094, -79.335219 ], [ -150.996094, -79.335219 ], [ -150.996094, -79.302640 ], [ -151.875000, -79.302640 ], [ -151.875000, -79.269962 ], [ -152.402344, -79.269962 ], [ -152.402344, -79.237185 ], [ -152.753906, -79.237185 ], [ -152.753906, -79.204309 ], [ -153.281250, -79.204309 ], [ -153.281250, -79.171335 ], [ -153.808594, -79.171335 ], [ -153.808594, -79.138260 ], [ -154.511719, -79.138260 ], [ -154.511719, -79.105086 ], [ -155.214844, -79.105086 ], [ -155.214844, -79.071812 ], [ -155.390625, -79.071812 ], [ -155.390625, -79.038437 ], [ -155.566406, -79.038437 ], [ -155.566406, -78.903929 ], [ -155.742188, -78.903929 ], [ -155.742188, -78.767792 ], [ -155.917969, -78.767792 ], [ -155.917969, -78.699106 ], [ -156.093750, -78.699106 ], [ -156.093750, -78.664608 ], [ -156.269531, -78.664608 ], [ -156.269531, -78.630006 ], [ -156.445312, -78.630006 ], [ -156.445312, -78.595299 ], [ -156.621094, -78.595299 ], [ -156.621094, -78.525573 ], [ -156.796875, -78.525573 ], [ -156.796875, -78.490552 ], [ -156.972656, -78.490552 ], [ -156.972656, -78.455425 ], [ -157.148438, -78.455425 ], [ -157.148438, -78.420193 ], [ -157.324219, -78.420193 ], [ -157.324219, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.278201 ], [ -157.675781, -78.278201 ], [ -157.675781, -78.170582 ], [ -157.851562, -78.170582 ], [ -157.851562, -78.098296 ], [ -158.027344, -78.098296 ], [ -158.027344, -77.767582 ], [ -158.203125, -77.767582 ], [ -158.203125, -77.196176 ], [ -158.378906, -77.196176 ], [ -158.378906, -76.920614 ], [ -158.203125, -76.920614 ], [ -158.203125, -76.960334 ], [ -158.027344, -76.960334 ], [ -158.027344, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.039418 ], [ -157.675781, -77.039418 ], [ -157.675781, -77.118032 ], [ -157.500000, -77.118032 ], [ -157.500000, -77.157163 ], [ -157.324219, -77.157163 ], [ -157.324219, -77.235074 ], [ -157.148438, -77.235074 ], [ -157.148438, -77.312520 ], [ -156.621094, -77.312520 ], [ -156.621094, -77.273855 ], [ -156.093750, -77.273855 ], [ -156.093750, -77.235074 ], [ -155.566406, -77.235074 ], [ -155.566406, -77.196176 ], [ -155.039062, -77.196176 ], [ -155.039062, -77.157163 ], [ -154.511719, -77.157163 ], [ -154.511719, -77.118032 ], [ -153.984375, -77.118032 ], [ -153.984375, -77.078784 ], [ -153.808594, -77.078784 ], [ -153.808594, -77.157163 ], [ -153.632812, -77.157163 ], [ -153.632812, -77.235074 ], [ -153.457031, -77.235074 ], [ -153.457031, -77.312520 ], [ -153.281250, -77.312520 ], [ -153.281250, -77.389504 ], [ -153.105469, -77.389504 ], [ -153.105469, -77.466028 ], [ -152.929688, -77.466028 ], [ -152.929688, -77.504119 ], [ -152.578125, -77.504119 ], [ -152.578125, -77.466028 ], [ -152.050781, -77.466028 ], [ -152.050781, -77.427824 ], [ -151.523438, -77.427824 ], [ -151.523438, -77.389504 ], [ -151.171875, -77.389504 ], [ -151.171875, -77.351070 ], [ -150.820312, -77.351070 ], [ -150.820312, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.273855 ], [ -150.292969, -77.273855 ], [ -150.292969, -77.235074 ], [ -149.941406, -77.235074 ], [ -149.941406, -77.196176 ], [ -149.765625, -77.196176 ], [ -149.765625, -77.157163 ], [ -149.589844, -77.157163 ], [ -149.589844, -77.118032 ], [ -149.414062, -77.118032 ], [ -149.414062, -77.078784 ], [ -149.238281, -77.078784 ], [ -149.238281, -77.039418 ], [ -149.062500, -77.039418 ], [ -149.062500, -76.999935 ], [ -148.886719, -76.999935 ], [ -148.886719, -76.960334 ], [ -148.710938, -76.960334 ], [ -148.710938, -76.920614 ], [ -148.535156, -76.920614 ], [ -148.535156, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.800739 ], [ -148.183594, -76.800739 ], [ -148.183594, -76.720223 ], [ -148.007812, -76.720223 ], [ -148.007812, -76.679785 ], [ -147.832031, -76.679785 ], [ -147.832031, -76.598545 ], [ -147.656250, -76.598545 ], [ -147.656250, -76.557743 ], [ -147.128906, -76.557743 ], [ -147.128906, -76.516819 ], [ -146.425781, -76.516819 ], [ -146.425781, -76.475773 ], [ -146.074219, -76.475773 ], [ -146.074219, -76.016094 ], [ -146.250000, -76.016094 ], [ -146.250000, -75.845169 ], [ -146.425781, -75.845169 ], [ -146.425781, -75.541113 ], [ -146.250000, -75.541113 ], [ -146.250000, -75.364506 ], [ -145.898438, -75.364506 ], [ -145.898438, -75.320025 ], [ -145.546875, -75.320025 ], [ -145.546875, -75.275413 ], [ -145.195312, -75.275413 ], [ -145.195312, -75.230667 ], [ -144.843750, -75.230667 ], [ -144.843750, -75.275413 ], [ -144.667969, -75.275413 ], [ -144.667969, -75.364506 ], [ -144.492188, -75.364506 ], [ -144.492188, -75.497157 ], [ -144.316406, -75.497157 ], [ -144.316406, -75.541113 ], [ -144.140625, -75.541113 ], [ -144.140625, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.453071 ], [ -143.437500, -75.453071 ], [ -143.437500, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.364506 ], [ -142.734375, -75.364506 ], [ -142.734375, -75.320025 ], [ -142.558594, -75.320025 ], [ -142.558594, -75.275413 ], [ -142.382812, -75.275413 ], [ -142.382812, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.185789 ], [ -141.855469, -75.185789 ], [ -141.855469, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.095633 ], [ -140.800781, -75.095633 ], [ -140.800781, -75.050354 ], [ -139.746094, -75.050354 ], [ -139.746094, -75.004940 ], [ -139.042969, -75.004940 ], [ -139.042969, -74.959392 ], [ -138.691406, -74.959392 ], [ -138.691406, -74.913708 ], [ -138.339844, -74.913708 ], [ -138.339844, -74.867889 ], [ -137.988281, -74.867889 ], [ -137.988281, -74.821934 ], [ -137.812500, -74.821934 ], [ -137.812500, -74.775843 ], [ -137.460938, -74.775843 ], [ -137.460938, -74.729615 ], [ -137.285156, -74.729615 ], [ -137.285156, -74.683250 ], [ -137.109375, -74.683250 ], [ -137.109375, -74.636748 ], [ -136.757812, -74.636748 ], [ -136.757812, -74.590108 ], [ -136.582031, -74.590108 ], [ -136.582031, -74.543330 ], [ -136.406250, -74.543330 ], [ -136.406250, -74.496413 ], [ -136.230469, -74.496413 ], [ -136.230469, -74.449358 ], [ -135.878906, -74.449358 ], [ -135.878906, -74.402163 ], [ -135.527344, -74.402163 ], [ -135.527344, -74.354828 ], [ -135.175781, -74.354828 ], [ -135.175781, -74.307353 ], [ -135.000000, -74.307353 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -162.949219, -78.206563 ], [ -162.949219, -78.242436 ], [ -162.597656, -78.242436 ], [ -162.597656, -78.278201 ], [ -162.246094, -78.278201 ], [ -162.246094, -78.313860 ], [ -161.894531, -78.313860 ], [ -161.894531, -78.349411 ], [ -161.542969, -78.349411 ], [ -161.542969, -78.384855 ], [ -161.191406, -78.384855 ], [ -161.191406, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.490552 ], [ -160.839844, -78.490552 ], [ -160.839844, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.630006 ], [ -160.488281, -78.630006 ], [ -160.488281, -78.699106 ], [ -160.312500, -78.699106 ], [ -160.312500, -78.733501 ], [ -160.136719, -78.733501 ], [ -160.136719, -78.801980 ], [ -159.960938, -78.801980 ], [ -159.960938, -78.870048 ], [ -159.785156, -78.870048 ], [ -159.785156, -78.937708 ], [ -159.609375, -78.937708 ], [ -159.609375, -79.004962 ], [ -159.433594, -79.004962 ], [ -159.433594, -79.204309 ], [ -159.257812, -79.204309 ], [ -159.257812, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.246094, -79.302640 ], [ -162.421875, -79.302640 ], [ -162.421875, -79.237185 ], [ -162.597656, -79.237185 ], [ -162.597656, -79.105086 ], [ -162.773438, -79.105086 ], [ -162.773438, -79.004962 ], [ -162.949219, -79.004962 ], [ -162.949219, -78.903929 ], [ -163.125000, -78.903929 ], [ -163.125000, -78.836065 ], [ -163.300781, -78.836065 ], [ -163.300781, -78.733501 ], [ -163.476562, -78.733501 ], [ -163.476562, -78.664608 ], [ -163.652344, -78.664608 ], [ -163.652344, -78.560488 ], [ -163.476562, -78.560488 ], [ -163.476562, -78.420193 ], [ -163.300781, -78.420193 ], [ -163.300781, -78.278201 ], [ -163.125000, -78.278201 ], [ -163.125000, -78.206563 ], [ -162.949219, -78.206563 ] ] ], [ [ [ -135.000000, -74.307353 ], [ -135.000000, -74.354828 ], [ -134.472656, -74.354828 ], [ -134.472656, -74.402163 ], [ -134.121094, -79.335219 ], [ -150.996094, -79.335219 ], [ -150.996094, -79.302640 ], [ -151.875000, -79.302640 ], [ -151.875000, -79.269962 ], [ -152.402344, -79.269962 ], [ -152.402344, -79.237185 ], [ -152.753906, -79.237185 ], [ -152.753906, -79.204309 ], [ -153.281250, -79.204309 ], [ -153.281250, -79.171335 ], [ -153.808594, -79.171335 ], [ -153.808594, -79.138260 ], [ -154.511719, -79.138260 ], [ -154.511719, -79.105086 ], [ -155.214844, -79.105086 ], [ -155.214844, -79.071812 ], [ -155.390625, -79.071812 ], [ -155.390625, -79.038437 ], [ -155.566406, -79.038437 ], [ -155.566406, -78.903929 ], [ -155.742188, -78.903929 ], [ -155.742188, -78.767792 ], [ -155.917969, -78.767792 ], [ -155.917969, -78.699106 ], [ -156.093750, -78.699106 ], [ -156.093750, -78.664608 ], [ -156.269531, -78.664608 ], [ -156.269531, -78.630006 ], [ -156.445312, -78.630006 ], [ -156.445312, -78.595299 ], [ -156.621094, -78.595299 ], [ -156.621094, -78.525573 ], [ -156.796875, -78.525573 ], [ -156.796875, -78.490552 ], [ -156.972656, -78.490552 ], [ -156.972656, -78.455425 ], [ -157.148438, -78.455425 ], [ -157.148438, -78.420193 ], [ -157.324219, -78.420193 ], [ -157.324219, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.278201 ], [ -157.675781, -78.278201 ], [ -157.675781, -78.170582 ], [ -157.851562, -78.170582 ], [ -157.851562, -78.098296 ], [ -158.027344, -78.098296 ], [ -158.027344, -77.767582 ], [ -158.203125, -77.767582 ], [ -158.203125, -77.196176 ], [ -158.378906, -77.196176 ], [ -158.378906, -76.920614 ], [ -158.203125, -76.920614 ], [ -158.203125, -76.960334 ], [ -158.027344, -76.960334 ], [ -158.027344, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.039418 ], [ -157.675781, -77.039418 ], [ -157.675781, -77.118032 ], [ -157.500000, -77.118032 ], [ -157.500000, -77.157163 ], [ -157.324219, -77.157163 ], [ -157.324219, -77.235074 ], [ -157.148438, -77.235074 ], [ -157.148438, -77.312520 ], [ -156.621094, -77.312520 ], [ -156.621094, -77.273855 ], [ -156.093750, -77.273855 ], [ -156.093750, -77.235074 ], [ -155.566406, -77.235074 ], [ -155.566406, -77.196176 ], [ -155.039062, -77.196176 ], [ -155.039062, -77.157163 ], [ -154.511719, -77.157163 ], [ -154.511719, -77.118032 ], [ -153.984375, -77.118032 ], [ -153.984375, -77.078784 ], [ -153.808594, -77.078784 ], [ -153.808594, -77.157163 ], [ -153.632812, -77.157163 ], [ -153.632812, -77.235074 ], [ -153.457031, -77.235074 ], [ -153.457031, -77.312520 ], [ -153.281250, -77.312520 ], [ -153.281250, -77.389504 ], [ -153.105469, -77.389504 ], [ -153.105469, -77.466028 ], [ -152.929688, -77.466028 ], [ -152.929688, -77.504119 ], [ -152.578125, -77.504119 ], [ -152.578125, -77.466028 ], [ -152.050781, -77.466028 ], [ -152.050781, -77.427824 ], [ -151.523438, -77.427824 ], [ -151.523438, -77.389504 ], [ -151.171875, -77.389504 ], [ -151.171875, -77.351070 ], [ -150.820312, -77.351070 ], [ -150.820312, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.273855 ], [ -150.292969, -77.273855 ], [ -150.292969, -77.235074 ], [ -149.941406, -77.235074 ], [ -149.941406, -77.196176 ], [ -149.765625, -77.196176 ], [ -149.765625, -77.157163 ], [ -149.589844, -77.157163 ], [ -149.589844, -77.118032 ], [ -149.414062, -77.118032 ], [ -149.414062, -77.078784 ], [ -149.238281, -77.078784 ], [ -149.238281, -77.039418 ], [ -149.062500, -77.039418 ], [ -149.062500, -76.999935 ], [ -148.886719, -76.999935 ], [ -148.886719, -76.960334 ], [ -148.710938, -76.960334 ], [ -148.710938, -76.920614 ], [ -148.535156, -76.920614 ], [ -148.535156, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.800739 ], [ -148.183594, -76.800739 ], [ -148.183594, -76.720223 ], [ -148.007812, -76.720223 ], [ -148.007812, -76.679785 ], [ -147.832031, -76.679785 ], [ -147.832031, -76.598545 ], [ -147.656250, -76.598545 ], [ -147.656250, -76.557743 ], [ -147.128906, -76.557743 ], [ -147.128906, -76.516819 ], [ -146.425781, -76.516819 ], [ -146.425781, -76.475773 ], [ -146.074219, -76.475773 ], [ -146.074219, -76.016094 ], [ -146.250000, -76.016094 ], [ -146.250000, -75.845169 ], [ -146.425781, -75.845169 ], [ -146.425781, -75.541113 ], [ -146.250000, -75.541113 ], [ -146.250000, -75.364506 ], [ -145.898438, -75.364506 ], [ -145.898438, -75.320025 ], [ -145.546875, -75.320025 ], [ -145.546875, -75.275413 ], [ -145.195312, -75.275413 ], [ -145.195312, -75.230667 ], [ -144.843750, -75.230667 ], [ -144.843750, -75.275413 ], [ -144.667969, -75.275413 ], [ -144.667969, -75.364506 ], [ -144.492188, -75.364506 ], [ -144.492188, -75.497157 ], [ -144.316406, -75.497157 ], [ -144.316406, -75.541113 ], [ -144.140625, -75.541113 ], [ -144.140625, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.453071 ], [ -143.437500, -75.453071 ], [ -143.437500, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.364506 ], [ -142.734375, -75.364506 ], [ -142.734375, -75.320025 ], [ -142.558594, -75.320025 ], [ -142.558594, -75.275413 ], [ -142.382812, -75.275413 ], [ -142.382812, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.185789 ], [ -141.855469, -75.185789 ], [ -141.855469, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.095633 ], [ -140.800781, -75.095633 ], [ -140.800781, -75.050354 ], [ -139.746094, -75.050354 ], [ -139.746094, -75.004940 ], [ -139.042969, -75.004940 ], [ -139.042969, -74.959392 ], [ -138.691406, -74.959392 ], [ -138.691406, -74.913708 ], [ -138.339844, -74.913708 ], [ -138.339844, -74.867889 ], [ -137.988281, -74.867889 ], [ -137.988281, -74.821934 ], [ -137.812500, -74.821934 ], [ -137.812500, -74.775843 ], [ -137.460938, -74.775843 ], [ -137.460938, -74.729615 ], [ -137.285156, -74.729615 ], [ -137.285156, -74.683250 ], [ -137.109375, -74.683250 ], [ -137.109375, -74.636748 ], [ -136.757812, -74.636748 ], [ -136.757812, -74.590108 ], [ -136.582031, -74.590108 ], [ -136.582031, -74.543330 ], [ -136.406250, -74.543330 ], [ -136.406250, -74.496413 ], [ -136.230469, -74.496413 ], [ -136.230469, -74.449358 ], [ -135.878906, -74.449358 ], [ -135.878906, -74.402163 ], [ -135.527344, -74.402163 ], [ -135.527344, -74.354828 ], [ -135.175781, -74.354828 ], [ -135.175781, -74.307353 ], [ -135.000000, -74.307353 ] ] ] ] } } ] } ] } , @@ -1422,7 +1422,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 20.303418 ], [ -155.742188, 20.138470 ], [ -155.390625, 20.138470 ], [ -155.390625, 19.973349 ], [ -155.214844, 19.973349 ], [ -155.214844, 19.808054 ], [ -155.039062, 19.808054 ], [ -155.039062, 19.642588 ], [ -154.863281, 19.642588 ], [ -154.863281, 19.311143 ], [ -155.214844, 19.311143 ], [ -155.214844, 19.145168 ], [ -155.566406, 19.145168 ], [ -155.566406, 18.979026 ], [ -155.917969, 18.979026 ], [ -155.917969, 19.476950 ], [ -156.093750, 19.476950 ], [ -156.093750, 19.808054 ], [ -155.917969, 19.808054 ], [ -155.917969, 20.303418 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.269531, 20.797201 ], [ -155.917969, 20.797201 ], [ -155.917969, 20.632784 ], [ -156.621094, 20.632784 ], [ -156.621094, 20.797201 ], [ -156.796875, 20.797201 ], [ -156.796875, 20.961440 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -157.148438, 21.289374 ], [ -157.148438, 21.125498 ], [ -157.324219, 21.125498 ], [ -157.324219, 21.289374 ], [ -157.148438, 21.289374 ] ] ], [ [ [ -158.027344, 21.616579 ], [ -158.027344, 21.453069 ], [ -157.851562, 21.453069 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -158.027344, 21.616579 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.433594, 22.105999 ], [ -159.257812, 21.943046 ], [ -159.785156, 21.943046 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 20.303418 ], [ -155.742188, 20.138470 ], [ -155.390625, 20.138470 ], [ -155.390625, 19.973349 ], [ -155.214844, 19.973349 ], [ -155.214844, 19.808054 ], [ -155.039062, 19.808054 ], [ -155.039062, 19.642588 ], [ -154.863281, 19.642588 ], [ -154.863281, 19.311143 ], [ -155.214844, 19.311143 ], [ -155.214844, 19.145168 ], [ -155.566406, 19.145168 ], [ -155.566406, 18.979026 ], [ -155.917969, 18.979026 ], [ -155.917969, 19.476950 ], [ -156.093750, 19.476950 ], [ -156.093750, 19.808054 ], [ -155.917969, 19.808054 ], [ -155.917969, 20.303418 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.269531, 20.797201 ], [ -155.917969, 20.632784 ], [ -156.621094, 20.632784 ], [ -156.621094, 20.797201 ], [ -156.796875, 20.797201 ], [ -156.796875, 20.961440 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -157.148438, 21.289374 ], [ -157.148438, 21.125498 ], [ -157.324219, 21.125498 ], [ -157.324219, 21.289374 ], [ -157.148438, 21.289374 ] ] ], [ [ [ -158.027344, 21.616579 ], [ -158.027344, 21.453069 ], [ -157.851562, 21.453069 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -158.027344, 21.616579 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.433594, 22.105999 ], [ -159.257812, 21.943046 ], [ -159.785156, 21.943046 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ] ] } } ] } ] } , @@ -1472,9 +1472,9 @@ , { "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 16.467695 ], [ -89.121094, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.121094, 16.467695 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.434680 ], [ -89.121094, 13.410994 ], [ -89.648438, 13.410994 ], [ -89.648438, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.000000, 13.752725 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.093957 ], [ -89.472656, 14.093957 ], [ -89.472656, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.121094, 14.434680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 14.434680 ], [ -89.121094, 13.410994 ], [ -89.648438, 13.410994 ], [ -89.648438, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.000000, 13.752725 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.093957 ], [ -89.472656, 14.093957 ], [ -89.472656, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.296875, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.944785 ], [ -89.121094, 14.774883 ], [ -89.296875, 14.774883 ], [ -89.296875, 14.944785 ], [ -89.121094, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 14.774883 ], [ -89.121094, 14.774883 ], [ -89.121094, 14.604847 ], [ -89.296875, 14.604847 ], [ -89.296875, 14.774883 ] ] ] } } ] } ] } , @@ -1508,7 +1508,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, -79.004962 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.302640 ], [ -77.519531, -79.302640 ], [ -77.519531, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.432371 ], [ -77.167969, -79.432371 ], [ -77.167969, -79.464560 ], [ -76.992188, -79.464560 ], [ -76.992188, -79.528647 ], [ -76.816406, -79.528647 ], [ -76.816406, -79.718605 ], [ -76.640625, -79.718605 ], [ -76.640625, -79.905154 ], [ -76.464844, -79.905154 ], [ -76.464844, -79.966590 ], [ -76.289062, -79.966590 ], [ -76.289062, -80.027655 ], [ -76.113281, -80.027655 ], [ -76.113281, -80.088352 ], [ -75.937500, -80.088352 ], [ -75.937500, -80.148684 ], [ -75.761719, -80.148684 ], [ -75.761719, -80.208652 ], [ -75.585938, -80.208652 ], [ -75.585938, -80.268259 ], [ -75.234375, -80.268259 ], [ -75.234375, -80.297927 ], [ -74.882812, -80.297927 ], [ -74.882812, -80.327506 ], [ -74.531250, -80.327506 ], [ -74.531250, -80.356995 ], [ -74.003906, -80.356995 ], [ -74.003906, -80.386396 ], [ -73.652344, -80.386396 ], [ -73.652344, -80.415707 ], [ -73.300781, -80.415707 ], [ -73.300781, -80.444931 ], [ -73.125000, -80.444931 ], [ -73.125000, -80.474065 ], [ -72.949219, -80.474065 ], [ -72.949219, -80.503112 ], [ -72.773438, -80.503112 ], [ -72.773438, -80.532071 ], [ -72.597656, -80.532071 ], [ -72.597656, -80.560943 ], [ -72.246094, -80.560943 ], [ -72.246094, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.618424 ], [ -71.894531, -80.618424 ], [ -71.894531, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.675559 ], [ -71.542969, -80.675559 ], [ -71.542969, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.732349 ], [ -71.191406, -80.732349 ], [ -71.191406, -80.788795 ], [ -71.015625, -80.788795 ], [ -71.015625, -80.816891 ], [ -70.839844, -80.816891 ], [ -70.839844, -80.844901 ], [ -70.664062, -80.844901 ], [ -70.664062, -80.900669 ], [ -70.488281, -80.900669 ], [ -70.488281, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.956099 ], [ -70.136719, -80.956099 ], [ -70.136719, -81.011194 ], [ -69.960938, -81.011194 ], [ -69.960938, -81.038617 ], [ -69.785156, -81.038617 ], [ -69.785156, -81.065957 ], [ -69.609375, -81.065957 ], [ -69.609375, -81.093214 ], [ -69.433594, -81.093214 ], [ -69.433594, -81.120388 ], [ -69.257812, -81.120388 ], [ -69.257812, -81.147481 ], [ -69.082031, -81.147481 ], [ -69.082031, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.228267 ], [ -68.730469, -81.228267 ], [ -68.730469, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.281717 ], [ -68.378906, -81.281717 ], [ -68.378906, -81.308321 ], [ -68.027344, -81.308321 ], [ -68.027344, -81.334844 ], [ -67.675781, -81.334844 ], [ -67.675781, -81.361287 ], [ -67.324219, -81.361287 ], [ -67.324219, -81.387650 ], [ -66.796875, -81.387650 ], [ -66.796875, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.440137 ], [ -66.093750, -81.440137 ], [ -66.093750, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.492306 ], [ -65.566406, -81.492306 ], [ -65.566406, -81.518272 ], [ -65.214844, -81.518272 ], [ -65.214844, -81.544159 ], [ -65.039062, -81.544159 ], [ -65.039062, -81.569968 ], [ -64.863281, -81.569968 ], [ -64.863281, -81.595699 ], [ -64.687500, -81.595699 ], [ -64.687500, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.646927 ], [ -64.160156, -81.646927 ], [ -64.160156, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.697844 ], [ -63.632812, -81.697844 ], [ -63.632812, -81.723188 ], [ -63.457031, -81.723188 ], [ -63.457031, -81.748454 ], [ -63.281250, -81.748454 ], [ -63.281250, -81.773644 ], [ -63.105469, -81.773644 ], [ -63.105469, -81.798757 ], [ -62.929688, -81.798757 ], [ -62.929688, -81.823794 ], [ -62.753906, -81.823794 ], [ -62.753906, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.898451 ], [ -62.402344, -81.898451 ], [ -62.402344, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.947846 ], [ -62.050781, -81.947846 ], [ -62.050781, -81.972431 ], [ -61.875000, -81.972431 ], [ -61.875000, -82.021378 ], [ -61.699219, -82.021378 ], [ -61.699219, -82.045740 ], [ -61.523438, -82.045740 ], [ -61.523438, -82.070028 ], [ -61.347656, -82.070028 ], [ -61.347656, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.142451 ], [ -60.996094, -82.142451 ], [ -60.996094, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.214217 ], [ -60.644531, -82.214217 ], [ -60.644531, -82.237994 ], [ -60.468750, -82.237994 ], [ -60.468750, -82.285331 ], [ -60.292969, -82.285331 ], [ -60.292969, -82.308893 ], [ -60.117188, -82.308893 ], [ -60.117188, -82.332382 ], [ -59.941406, -82.332382 ], [ -59.941406, -82.379147 ], [ -59.765625, -82.379147 ], [ -59.765625, -82.425629 ], [ -59.589844, -82.425629 ], [ -59.589844, -82.517749 ], [ -59.414062, -82.517749 ], [ -59.414062, -82.586106 ], [ -59.238281, -82.586106 ], [ -59.238281, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -82.743202 ], [ -58.886719, -82.743202 ], [ -58.886719, -82.831480 ], [ -58.710938, -82.831480 ], [ -58.710938, -82.918690 ], [ -58.535156, -82.918690 ], [ -58.535156, -83.047529 ], [ -58.359375, -83.047529 ], [ -58.359375, -83.174035 ], [ -58.183594, -83.174035 ], [ -58.183594, -83.194896 ], [ -58.007812, -83.194896 ], [ -58.007812, -83.153111 ], [ -57.832031, -83.153111 ], [ -57.832031, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -83.047529 ], [ -57.480469, -83.047529 ], [ -57.480469, -83.004844 ], [ -57.304688, -83.004844 ], [ -57.304688, -82.961898 ], [ -57.128906, -82.961898 ], [ -57.128906, -82.918690 ], [ -56.953125, -82.918690 ], [ -56.953125, -82.875218 ], [ -56.777344, -82.875218 ], [ -56.777344, -82.831480 ], [ -56.601562, -82.831480 ], [ -56.601562, -82.809511 ], [ -56.425781, -82.809511 ], [ -56.425781, -82.765373 ], [ -56.250000, -82.765373 ], [ -56.250000, -82.720964 ], [ -56.074219, -82.720964 ], [ -56.074219, -82.698659 ], [ -55.898438, -82.698659 ], [ -55.898438, -82.653843 ], [ -55.722656, -82.653843 ], [ -55.722656, -82.631333 ], [ -55.546875, -82.631333 ], [ -55.546875, -82.586106 ], [ -55.371094, -82.586106 ], [ -55.371094, -82.563390 ], [ -55.195312, -82.563390 ], [ -55.195312, -82.540604 ], [ -55.019531, -82.540604 ], [ -55.019531, -82.494824 ], [ -54.843750, -82.494824 ], [ -54.843750, -82.471829 ], [ -54.667969, -82.471829 ], [ -54.667969, -82.448764 ], [ -54.492188, -82.448764 ], [ -54.492188, -82.402423 ], [ -54.316406, -82.402423 ], [ -54.316406, -82.379147 ], [ -54.140625, -82.379147 ], [ -54.140625, -82.355800 ], [ -53.964844, -82.355800 ], [ -53.964844, -82.308893 ], [ -53.789062, -82.308893 ], [ -53.789062, -82.285331 ], [ -53.613281, -82.285331 ], [ -53.613281, -82.261699 ], [ -53.437500, -82.261699 ], [ -53.437500, -82.237994 ], [ -53.261719, -82.237994 ], [ -53.261719, -82.214217 ], [ -53.085938, -82.214217 ], [ -53.085938, -82.190368 ], [ -52.910156, -82.190368 ], [ -52.910156, -82.166446 ], [ -52.734375, -82.166446 ], [ -52.734375, -82.142451 ], [ -52.382812, -82.142451 ], [ -52.382812, -82.118384 ], [ -52.207031, -82.118384 ], [ -52.207031, -82.094243 ], [ -52.031250, -82.094243 ], [ -52.031250, -82.070028 ], [ -51.855469, -82.070028 ], [ -51.855469, -82.045740 ], [ -51.679688, -82.045740 ], [ -51.679688, -82.021378 ], [ -51.503906, -82.021378 ], [ -51.503906, -81.996942 ], [ -51.328125, -81.996942 ], [ -51.328125, -81.972431 ], [ -51.152344, -81.972431 ], [ -51.152344, -81.947846 ], [ -50.976562, -81.947846 ], [ -50.976562, -81.923186 ], [ -50.800781, -81.923186 ], [ -50.800781, -81.898451 ], [ -50.625000, -81.898451 ], [ -50.625000, -81.848756 ], [ -50.449219, -81.848756 ], [ -50.449219, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.798757 ], [ -50.097656, -81.798757 ], [ -50.097656, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.748454 ], [ -49.746094, -81.748454 ], [ -49.746094, -81.723188 ], [ -48.339844, -81.723188 ], [ -48.339844, -81.697844 ], [ -47.109375, -81.697844 ], [ -47.109375, -81.723188 ], [ -46.757812, -81.723188 ], [ -46.757812, -81.748454 ], [ -46.406250, -81.748454 ], [ -46.406250, -81.773644 ], [ -45.878906, -81.773644 ], [ -45.878906, -81.798757 ], [ -45.527344, -81.798757 ], [ -45.527344, -81.823794 ], [ -45.175781, -81.823794 ], [ -45.175781, -81.848756 ], [ -44.824219, -81.848756 ], [ -44.824219, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.046875, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.327506 ], [ -44.824219, -80.327506 ], [ -44.824219, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.386396 ], [ -45.175781, -80.386396 ], [ -45.175781, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.444931 ], [ -45.527344, -80.444931 ], [ -45.527344, -80.474065 ], [ -45.878906, -80.474065 ], [ -45.878906, -80.503112 ], [ -46.054688, -80.503112 ], [ -46.054688, -80.532071 ], [ -46.230469, -80.532071 ], [ -46.230469, -80.560943 ], [ -46.406250, -80.560943 ], [ -46.406250, -80.589727 ], [ -46.582031, -80.589727 ], [ -46.582031, -80.618424 ], [ -46.757812, -80.618424 ], [ -46.757812, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.675559 ], [ -47.285156, -80.675559 ], [ -47.285156, -80.703997 ], [ -47.460938, -80.703997 ], [ -47.460938, -80.732349 ], [ -47.636719, -80.732349 ], [ -47.636719, -80.760615 ], [ -47.988281, -80.760615 ], [ -47.988281, -80.788795 ], [ -48.164062, -80.788795 ], [ -48.164062, -80.816891 ], [ -48.339844, -80.816891 ], [ -48.339844, -80.844901 ], [ -48.691406, -80.844901 ], [ -48.691406, -80.872827 ], [ -48.867188, -80.872827 ], [ -48.867188, -80.900669 ], [ -49.218750, -80.900669 ], [ -49.218750, -80.928426 ], [ -49.394531, -80.928426 ], [ -49.394531, -80.956099 ], [ -49.746094, -80.956099 ], [ -49.746094, -80.983688 ], [ -49.921875, -80.983688 ], [ -49.921875, -81.011194 ], [ -50.273438, -81.011194 ], [ -50.273438, -81.038617 ], [ -50.976562, -81.038617 ], [ -50.976562, -81.011194 ], [ -51.855469, -81.011194 ], [ -51.855469, -80.983688 ], [ -52.558594, -80.983688 ], [ -52.558594, -80.956099 ], [ -53.085938, -80.956099 ], [ -53.085938, -80.900669 ], [ -53.261719, -80.900669 ], [ -53.261719, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.613281, -80.816891 ], [ -53.613281, -80.760615 ], [ -53.789062, -80.760615 ], [ -53.789062, -80.732349 ], [ -53.964844, -80.732349 ], [ -53.964844, -80.675559 ], [ -54.140625, -80.675559 ], [ -54.140625, -80.444931 ], [ -53.964844, -80.444931 ], [ -53.964844, -80.208652 ], [ -53.789062, -80.208652 ], [ -53.789062, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.148684 ], [ -53.261719, -80.148684 ], [ -53.261719, -80.118564 ], [ -53.085938, -80.118564 ], [ -53.085938, -80.088352 ], [ -52.734375, -80.088352 ], [ -52.734375, -80.058050 ], [ -52.558594, -80.058050 ], [ -52.558594, -80.027655 ], [ -52.382812, -80.027655 ], [ -52.382812, -79.997168 ], [ -52.031250, -79.997168 ], [ -52.031250, -79.966590 ], [ -51.855469, -79.966590 ], [ -51.855469, -79.905154 ], [ -51.679688, -79.905154 ], [ -51.679688, -79.843346 ], [ -51.503906, -79.843346 ], [ -51.503906, -79.781164 ], [ -51.328125, -79.781164 ], [ -51.328125, -79.718605 ], [ -51.152344, -79.718605 ], [ -51.152344, -79.655668 ], [ -50.976562, -79.655668 ], [ -50.976562, -79.560546 ], [ -50.800781, -79.560546 ], [ -50.800781, -79.400085 ], [ -50.625000, -79.400085 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.071812 ], [ -50.097656, -79.071812 ], [ -50.097656, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.749932 ], [ -60.292969, -79.749932 ], [ -60.292969, -79.812302 ], [ -60.117188, -79.812302 ], [ -60.117188, -79.874297 ], [ -59.941406, -79.874297 ], [ -59.941406, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -79.997168 ], [ -59.589844, -79.997168 ], [ -59.589844, -80.178713 ], [ -59.765625, -80.178713 ], [ -59.765625, -80.444931 ], [ -59.941406, -80.444931 ], [ -59.941406, -80.788795 ], [ -60.117188, -80.788795 ], [ -60.117188, -81.011194 ], [ -60.468750, -81.011194 ], [ -60.468750, -80.983688 ], [ -60.820312, -80.983688 ], [ -60.820312, -80.956099 ], [ -61.347656, -80.956099 ], [ -61.347656, -80.928426 ], [ -61.699219, -80.928426 ], [ -61.699219, -80.900669 ], [ -62.050781, -80.900669 ], [ -62.050781, -80.872827 ], [ -62.753906, -80.872827 ], [ -62.753906, -80.900669 ], [ -63.808594, -80.900669 ], [ -63.808594, -80.928426 ], [ -64.687500, -80.928426 ], [ -64.687500, -80.872827 ], [ -64.863281, -80.872827 ], [ -64.863281, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.760615 ], [ -65.214844, -80.760615 ], [ -65.214844, -80.732349 ], [ -65.390625, -80.732349 ], [ -65.390625, -80.675559 ], [ -65.566406, -80.675559 ], [ -65.566406, -80.618424 ], [ -65.742188, -80.618424 ], [ -65.742188, -80.532071 ], [ -65.917969, -80.532071 ], [ -65.917969, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.327506 ], [ -66.269531, -80.327506 ], [ -66.269531, -80.268259 ], [ -65.214844, -80.268259 ], [ -65.214844, -80.297927 ], [ -63.808594, -80.297927 ], [ -63.808594, -80.327506 ], [ -63.105469, -80.327506 ], [ -63.105469, -80.356995 ], [ -62.402344, -80.356995 ], [ -62.402344, -80.386396 ], [ -61.875000, -80.386396 ], [ -61.875000, -80.356995 ], [ -61.699219, -80.356995 ], [ -61.699219, -80.238501 ], [ -61.523438, -80.238501 ], [ -61.523438, -80.148684 ], [ -61.347656, -80.148684 ], [ -61.347656, -80.027655 ], [ -61.171875, -80.027655 ], [ -61.171875, -79.935918 ], [ -60.996094, -79.935918 ], [ -60.996094, -79.812302 ], [ -60.820312, -79.812302 ], [ -60.820312, -79.687184 ], [ -60.468750, -79.687184 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, -79.004962 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.302640 ], [ -77.519531, -79.302640 ], [ -77.519531, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.432371 ], [ -77.167969, -79.432371 ], [ -77.167969, -79.464560 ], [ -76.992188, -79.464560 ], [ -76.992188, -79.528647 ], [ -76.816406, -79.528647 ], [ -76.816406, -79.718605 ], [ -76.640625, -79.718605 ], [ -76.640625, -79.905154 ], [ -76.464844, -79.905154 ], [ -76.464844, -79.966590 ], [ -76.289062, -79.966590 ], [ -76.289062, -80.027655 ], [ -76.113281, -80.027655 ], [ -76.113281, -80.088352 ], [ -75.937500, -80.088352 ], [ -75.937500, -80.148684 ], [ -75.761719, -80.148684 ], [ -75.761719, -80.208652 ], [ -75.585938, -80.208652 ], [ -75.585938, -80.268259 ], [ -75.234375, -80.268259 ], [ -75.234375, -80.297927 ], [ -74.882812, -80.297927 ], [ -74.882812, -80.327506 ], [ -74.531250, -80.327506 ], [ -74.531250, -80.356995 ], [ -74.003906, -80.356995 ], [ -74.003906, -80.386396 ], [ -73.652344, -80.386396 ], [ -73.652344, -80.415707 ], [ -73.300781, -80.415707 ], [ -73.300781, -80.444931 ], [ -73.125000, -80.444931 ], [ -73.125000, -80.474065 ], [ -72.949219, -80.474065 ], [ -72.949219, -80.503112 ], [ -72.773438, -80.503112 ], [ -72.773438, -80.532071 ], [ -72.597656, -80.532071 ], [ -72.597656, -80.560943 ], [ -72.246094, -80.560943 ], [ -72.246094, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.618424 ], [ -71.894531, -80.618424 ], [ -71.894531, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.675559 ], [ -71.542969, -80.675559 ], [ -71.542969, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.732349 ], [ -71.191406, -80.732349 ], [ -71.191406, -80.788795 ], [ -71.015625, -80.788795 ], [ -71.015625, -80.816891 ], [ -70.839844, -80.816891 ], [ -70.839844, -80.844901 ], [ -70.664062, -80.844901 ], [ -70.664062, -80.900669 ], [ -70.488281, -80.900669 ], [ -70.488281, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.956099 ], [ -70.136719, -80.956099 ], [ -70.136719, -81.011194 ], [ -69.960938, -81.011194 ], [ -69.960938, -81.038617 ], [ -69.785156, -81.038617 ], [ -69.785156, -81.065957 ], [ -69.609375, -81.065957 ], [ -69.609375, -81.093214 ], [ -69.433594, -81.093214 ], [ -69.433594, -81.120388 ], [ -69.257812, -81.120388 ], [ -69.257812, -81.147481 ], [ -69.082031, -81.147481 ], [ -69.082031, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.228267 ], [ -68.730469, -81.228267 ], [ -68.730469, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.281717 ], [ -68.378906, -81.281717 ], [ -68.378906, -81.308321 ], [ -68.027344, -81.308321 ], [ -68.027344, -81.334844 ], [ -67.675781, -81.334844 ], [ -67.675781, -81.361287 ], [ -67.324219, -81.361287 ], [ -67.324219, -81.387650 ], [ -66.796875, -81.387650 ], [ -66.796875, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.440137 ], [ -66.093750, -81.440137 ], [ -66.093750, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.492306 ], [ -65.566406, -81.492306 ], [ -65.566406, -81.518272 ], [ -65.214844, -81.518272 ], [ -65.214844, -81.544159 ], [ -65.039062, -81.544159 ], [ -65.039062, -81.569968 ], [ -64.863281, -81.569968 ], [ -64.863281, -81.595699 ], [ -64.687500, -81.595699 ], [ -64.687500, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.646927 ], [ -64.160156, -81.646927 ], [ -64.160156, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.697844 ], [ -63.632812, -81.697844 ], [ -63.632812, -81.723188 ], [ -63.457031, -81.723188 ], [ -63.457031, -81.748454 ], [ -63.281250, -81.748454 ], [ -63.281250, -81.773644 ], [ -63.105469, -81.773644 ], [ -63.105469, -81.798757 ], [ -62.929688, -81.798757 ], [ -62.929688, -81.823794 ], [ -62.753906, -81.823794 ], [ -62.753906, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.898451 ], [ -62.402344, -81.898451 ], [ -62.402344, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.947846 ], [ -62.050781, -81.947846 ], [ -62.050781, -81.972431 ], [ -61.875000, -81.972431 ], [ -61.875000, -82.021378 ], [ -61.699219, -82.021378 ], [ -61.699219, -82.045740 ], [ -61.523438, -82.045740 ], [ -61.523438, -82.070028 ], [ -61.347656, -82.070028 ], [ -61.347656, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.142451 ], [ -60.996094, -82.142451 ], [ -60.996094, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.214217 ], [ -60.644531, -82.214217 ], [ -60.644531, -82.237994 ], [ -60.468750, -82.237994 ], [ -60.468750, -82.285331 ], [ -60.292969, -82.285331 ], [ -60.292969, -82.308893 ], [ -60.117188, -82.308893 ], [ -60.117188, -82.332382 ], [ -59.941406, -82.332382 ], [ -59.941406, -82.379147 ], [ -59.765625, -82.379147 ], [ -59.765625, -82.425629 ], [ -59.589844, -82.425629 ], [ -59.589844, -82.517749 ], [ -59.414062, -82.517749 ], [ -59.414062, -82.586106 ], [ -59.238281, -82.586106 ], [ -59.238281, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -82.743202 ], [ -58.886719, -82.743202 ], [ -58.886719, -82.831480 ], [ -58.710938, -82.831480 ], [ -58.710938, -82.918690 ], [ -58.535156, -82.918690 ], [ -58.535156, -83.047529 ], [ -58.359375, -83.047529 ], [ -58.359375, -83.174035 ], [ -58.183594, -83.174035 ], [ -58.183594, -83.194896 ], [ -58.007812, -83.194896 ], [ -58.007812, -83.153111 ], [ -57.832031, -83.153111 ], [ -57.832031, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -83.047529 ], [ -57.480469, -83.047529 ], [ -57.480469, -83.004844 ], [ -57.304688, -83.004844 ], [ -57.304688, -82.961898 ], [ -57.128906, -82.961898 ], [ -57.128906, -82.918690 ], [ -56.953125, -82.918690 ], [ -56.953125, -82.875218 ], [ -56.777344, -82.875218 ], [ -56.777344, -82.831480 ], [ -56.601562, -82.831480 ], [ -56.601562, -82.809511 ], [ -56.425781, -82.809511 ], [ -56.425781, -82.765373 ], [ -56.250000, -82.765373 ], [ -56.250000, -82.720964 ], [ -56.074219, -82.720964 ], [ -56.074219, -82.698659 ], [ -55.898438, -82.698659 ], [ -55.898438, -82.653843 ], [ -55.722656, -82.653843 ], [ -55.722656, -82.631333 ], [ -55.546875, -82.631333 ], [ -55.546875, -82.586106 ], [ -55.371094, -82.586106 ], [ -55.371094, -82.563390 ], [ -55.195312, -82.563390 ], [ -55.195312, -82.540604 ], [ -55.019531, -82.540604 ], [ -55.019531, -82.494824 ], [ -54.843750, -82.494824 ], [ -54.843750, -82.471829 ], [ -54.667969, -82.471829 ], [ -54.667969, -82.448764 ], [ -54.492188, -82.448764 ], [ -54.492188, -82.402423 ], [ -54.316406, -82.402423 ], [ -54.316406, -82.379147 ], [ -54.140625, -82.379147 ], [ -54.140625, -82.355800 ], [ -53.964844, -82.355800 ], [ -53.964844, -82.308893 ], [ -53.789062, -82.308893 ], [ -53.789062, -82.285331 ], [ -53.613281, -82.285331 ], [ -53.613281, -82.261699 ], [ -53.437500, -82.261699 ], [ -53.437500, -82.237994 ], [ -53.261719, -82.237994 ], [ -53.261719, -82.214217 ], [ -53.085938, -82.214217 ], [ -53.085938, -82.190368 ], [ -52.910156, -82.190368 ], [ -52.910156, -82.166446 ], [ -52.734375, -82.166446 ], [ -52.734375, -82.142451 ], [ -52.382812, -82.142451 ], [ -52.382812, -82.118384 ], [ -52.207031, -82.118384 ], [ -52.207031, -82.094243 ], [ -52.031250, -82.094243 ], [ -52.031250, -82.070028 ], [ -51.855469, -82.070028 ], [ -51.855469, -82.045740 ], [ -51.679688, -82.045740 ], [ -51.679688, -82.021378 ], [ -51.503906, -82.021378 ], [ -51.503906, -81.996942 ], [ -51.328125, -81.996942 ], [ -51.328125, -81.972431 ], [ -51.152344, -81.972431 ], [ -51.152344, -81.947846 ], [ -50.976562, -81.947846 ], [ -50.976562, -81.923186 ], [ -50.800781, -81.923186 ], [ -50.800781, -81.898451 ], [ -50.625000, -81.898451 ], [ -50.625000, -81.848756 ], [ -50.449219, -81.848756 ], [ -50.449219, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.798757 ], [ -50.097656, -81.798757 ], [ -50.097656, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.748454 ], [ -49.746094, -81.748454 ], [ -49.746094, -81.723188 ], [ -48.339844, -81.723188 ], [ -48.339844, -81.697844 ], [ -47.109375, -81.697844 ], [ -47.109375, -81.723188 ], [ -46.757812, -81.723188 ], [ -46.757812, -81.748454 ], [ -46.406250, -81.748454 ], [ -46.406250, -81.773644 ], [ -45.878906, -81.773644 ], [ -45.878906, -81.798757 ], [ -45.527344, -81.798757 ], [ -45.527344, -81.823794 ], [ -45.175781, -81.823794 ], [ -45.175781, -81.848756 ], [ -44.824219, -81.848756 ], [ -44.824219, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.046875, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.327506 ], [ -44.824219, -80.327506 ], [ -44.824219, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.386396 ], [ -45.175781, -80.386396 ], [ -45.175781, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.444931 ], [ -45.527344, -80.444931 ], [ -45.527344, -80.474065 ], [ -45.878906, -80.474065 ], [ -45.878906, -80.503112 ], [ -46.054688, -80.503112 ], [ -46.054688, -80.532071 ], [ -46.230469, -80.532071 ], [ -46.230469, -80.560943 ], [ -46.406250, -80.560943 ], [ -46.406250, -80.589727 ], [ -46.582031, -80.589727 ], [ -46.582031, -80.618424 ], [ -46.757812, -80.618424 ], [ -46.757812, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.675559 ], [ -47.285156, -80.675559 ], [ -47.285156, -80.703997 ], [ -47.460938, -80.703997 ], [ -47.460938, -80.732349 ], [ -47.636719, -80.732349 ], [ -47.636719, -80.760615 ], [ -47.988281, -80.760615 ], [ -47.988281, -80.788795 ], [ -48.164062, -80.788795 ], [ -48.164062, -80.816891 ], [ -48.339844, -80.816891 ], [ -48.339844, -80.844901 ], [ -48.691406, -80.844901 ], [ -48.691406, -80.872827 ], [ -48.867188, -80.872827 ], [ -48.867188, -80.900669 ], [ -49.218750, -80.900669 ], [ -49.218750, -80.928426 ], [ -49.394531, -80.928426 ], [ -49.394531, -80.956099 ], [ -49.746094, -80.956099 ], [ -49.746094, -80.983688 ], [ -49.921875, -80.983688 ], [ -49.921875, -81.011194 ], [ -50.273438, -81.011194 ], [ -50.273438, -81.038617 ], [ -50.976562, -81.038617 ], [ -50.976562, -81.011194 ], [ -51.855469, -81.011194 ], [ -51.855469, -80.983688 ], [ -52.558594, -80.983688 ], [ -52.558594, -80.956099 ], [ -53.085938, -80.956099 ], [ -53.085938, -80.900669 ], [ -53.261719, -80.900669 ], [ -53.261719, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.613281, -80.816891 ], [ -53.613281, -80.760615 ], [ -53.789062, -80.760615 ], [ -53.789062, -80.732349 ], [ -53.964844, -80.732349 ], [ -53.964844, -80.675559 ], [ -54.140625, -80.675559 ], [ -54.140625, -80.444931 ], [ -53.964844, -80.444931 ], [ -53.964844, -80.208652 ], [ -53.789062, -80.208652 ], [ -53.789062, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.148684 ], [ -53.261719, -80.148684 ], [ -53.261719, -80.118564 ], [ -53.085938, -80.118564 ], [ -53.085938, -80.088352 ], [ -52.734375, -80.088352 ], [ -52.734375, -80.058050 ], [ -52.558594, -80.058050 ], [ -52.558594, -80.027655 ], [ -52.382812, -80.027655 ], [ -52.382812, -79.997168 ], [ -52.031250, -79.997168 ], [ -52.031250, -79.966590 ], [ -51.855469, -79.966590 ], [ -51.855469, -79.905154 ], [ -51.679688, -79.905154 ], [ -51.679688, -79.843346 ], [ -51.503906, -79.843346 ], [ -51.503906, -79.781164 ], [ -51.328125, -79.781164 ], [ -51.328125, -79.718605 ], [ -51.152344, -79.718605 ], [ -51.152344, -79.655668 ], [ -50.976562, -79.655668 ], [ -50.976562, -79.560546 ], [ -50.800781, -79.560546 ], [ -50.800781, -79.400085 ], [ -50.625000, -79.400085 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.071812 ], [ -50.097656, -79.071812 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.749932 ], [ -60.292969, -79.749932 ], [ -60.292969, -79.812302 ], [ -60.117188, -79.812302 ], [ -60.117188, -79.874297 ], [ -59.941406, -79.874297 ], [ -59.941406, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -79.997168 ], [ -59.589844, -79.997168 ], [ -59.589844, -80.178713 ], [ -59.765625, -80.178713 ], [ -59.765625, -80.444931 ], [ -59.941406, -80.444931 ], [ -59.941406, -80.788795 ], [ -60.117188, -80.788795 ], [ -60.117188, -81.011194 ], [ -60.468750, -81.011194 ], [ -60.468750, -80.983688 ], [ -60.820312, -80.983688 ], [ -60.820312, -80.956099 ], [ -61.347656, -80.956099 ], [ -61.347656, -80.928426 ], [ -61.699219, -80.928426 ], [ -61.699219, -80.900669 ], [ -62.050781, -80.900669 ], [ -62.050781, -80.872827 ], [ -62.753906, -80.872827 ], [ -62.753906, -80.900669 ], [ -63.808594, -80.900669 ], [ -63.808594, -80.928426 ], [ -64.687500, -80.928426 ], [ -64.687500, -80.872827 ], [ -64.863281, -80.872827 ], [ -64.863281, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.760615 ], [ -65.214844, -80.760615 ], [ -65.214844, -80.732349 ], [ -65.390625, -80.732349 ], [ -65.390625, -80.675559 ], [ -65.566406, -80.675559 ], [ -65.566406, -80.618424 ], [ -65.742188, -80.618424 ], [ -65.742188, -80.532071 ], [ -65.917969, -80.532071 ], [ -65.917969, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.327506 ], [ -66.269531, -80.327506 ], [ -66.269531, -80.268259 ], [ -65.214844, -80.268259 ], [ -65.214844, -80.297927 ], [ -63.808594, -80.297927 ], [ -63.808594, -80.327506 ], [ -63.105469, -80.327506 ], [ -63.105469, -80.356995 ], [ -62.402344, -80.356995 ], [ -62.402344, -80.386396 ], [ -61.875000, -80.386396 ], [ -61.875000, -80.356995 ], [ -61.699219, -80.356995 ], [ -61.699219, -80.238501 ], [ -61.523438, -80.238501 ], [ -61.523438, -80.148684 ], [ -61.347656, -80.148684 ], [ -61.347656, -80.027655 ], [ -61.171875, -80.027655 ], [ -61.171875, -79.935918 ], [ -60.996094, -79.935918 ], [ -60.996094, -79.812302 ], [ -60.820312, -79.812302 ], [ -60.820312, -79.687184 ], [ -60.468750, -79.687184 ] ] ] ] } } ] } ] } , @@ -1524,7 +1524,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.015625, -53.852527 ], [ -71.718750, -53.852527 ], [ -71.718750, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.644638 ], [ -72.421875, -53.644638 ], [ -72.421875, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.435719 ], [ -72.949219, -53.435719 ], [ -72.949219, -53.330873 ], [ -73.125000, -53.330873 ], [ -73.125000, -53.120405 ], [ -73.300781, -53.120405 ], [ -73.300781, -53.014783 ], [ -73.476562, -53.014783 ], [ -73.476562, -52.908902 ], [ -73.652344, -52.908902 ], [ -73.652344, -52.802761 ], [ -73.828125, -52.802761 ], [ -73.828125, -52.696361 ], [ -74.179688, -52.696361 ], [ -74.179688, -52.589701 ], [ -74.355469, -52.589701 ], [ -74.355469, -52.482780 ], [ -74.531250, -52.482780 ], [ -74.531250, -52.375599 ], [ -74.882812, -52.375599 ], [ -74.882812, -52.160455 ], [ -75.058594, -52.160455 ], [ -75.058594, -51.835778 ], [ -75.234375, -51.835778 ], [ -75.234375, -51.399206 ], [ -75.058594, -51.399206 ], [ -75.058594, -50.958427 ], [ -75.234375, -50.958427 ], [ -75.234375, -50.625073 ], [ -75.410156, -50.625073 ], [ -75.410156, -49.610710 ], [ -75.585938, -49.610710 ], [ -75.585938, -48.458352 ], [ -75.410156, -48.458352 ], [ -75.410156, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.754098 ], [ -75.058594, -47.754098 ], [ -75.058594, -47.635784 ], [ -74.882812, -47.635784 ], [ -74.882812, -47.517201 ], [ -74.707031, -47.517201 ], [ -74.707031, -47.279229 ], [ -74.531250, -47.279229 ], [ -74.531250, -47.159840 ], [ -74.355469, -47.159840 ], [ -74.355469, -47.040182 ], [ -74.179688, -47.040182 ], [ -74.179688, -46.920255 ], [ -74.707031, -46.920255 ], [ -74.707031, -46.800059 ], [ -75.410156, -46.800059 ], [ -75.410156, -46.437857 ], [ -75.234375, -46.437857 ], [ -75.234375, -46.195042 ], [ -75.058594, -46.195042 ], [ -75.058594, -46.073231 ], [ -74.882812, -46.073231 ], [ -74.882812, -45.828799 ], [ -74.707031, -45.828799 ], [ -74.707031, -45.336702 ], [ -74.531250, -45.336702 ], [ -74.531250, -44.590467 ], [ -74.355469, -44.590467 ], [ -74.355469, -44.213710 ], [ -74.003906, -44.213710 ], [ -74.003906, -44.339565 ], [ -73.652344, -44.339565 ], [ -73.652344, -44.465151 ], [ -73.300781, -44.465151 ], [ -73.300781, -44.213710 ], [ -73.125000, -44.213710 ], [ -73.125000, -43.452919 ], [ -72.949219, -43.452919 ], [ -72.949219, -42.811522 ], [ -72.773438, -42.811522 ], [ -72.773438, -42.423457 ], [ -73.125000, -42.423457 ], [ -73.125000, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.652344, -42.811522 ], [ -73.652344, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -43.197167 ], [ -74.355469, -43.197167 ], [ -74.355469, -42.940339 ], [ -74.179688, -42.940339 ], [ -74.179688, -42.163403 ], [ -74.003906, -42.163403 ], [ -74.003906, -41.112469 ], [ -73.828125, -41.112469 ], [ -73.828125, -40.313043 ], [ -71.718750, -40.313043 ], [ -71.718750, -40.580585 ], [ -71.894531, -40.580585 ], [ -71.894531, -41.508577 ], [ -71.718750, -41.508577 ], [ -71.718750, -42.163403 ], [ -71.894531, -42.163403 ], [ -71.894531, -42.293564 ], [ -72.070312, -42.293564 ], [ -72.070312, -42.940339 ], [ -71.894531, -42.940339 ], [ -71.894531, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -71.542969, -43.834527 ], [ -71.542969, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -44.339565 ], [ -71.542969, -44.339565 ], [ -71.542969, -44.465151 ], [ -71.367188, -44.465151 ], [ -71.367188, -44.715514 ], [ -71.191406, -44.715514 ], [ -71.191406, -44.840291 ], [ -71.367188, -44.840291 ], [ -71.367188, -44.964798 ], [ -71.718750, -44.964798 ], [ -71.718750, -45.336702 ], [ -71.542969, -45.336702 ], [ -71.542969, -45.951150 ], [ -71.718750, -45.951150 ], [ -71.718750, -46.679594 ], [ -71.894531, -46.679594 ], [ -71.894531, -47.159840 ], [ -72.070312, -47.159840 ], [ -72.070312, -47.398349 ], [ -72.246094, -47.398349 ], [ -72.246094, -47.635784 ], [ -72.421875, -47.635784 ], [ -72.421875, -47.989922 ], [ -72.246094, -47.989922 ], [ -72.246094, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -48.806863 ], [ -72.597656, -48.806863 ], [ -72.597656, -49.037868 ], [ -72.949219, -49.037868 ], [ -72.949219, -49.152970 ], [ -73.300781, -49.152970 ], [ -73.300781, -49.267805 ], [ -73.476562, -49.267805 ], [ -73.476562, -49.837982 ], [ -73.300781, -49.837982 ], [ -73.300781, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -50.625073 ], [ -72.246094, -50.625073 ], [ -72.246094, -51.618017 ], [ -72.070312, -51.618017 ], [ -72.070312, -51.944265 ], [ -71.894531, -51.944265 ], [ -71.894531, -52.052490 ], [ -70.839844, -52.052490 ], [ -70.839844, -52.160455 ], [ -69.082031, -52.160455 ], [ -69.082031, -52.268157 ], [ -69.433594, -52.268157 ], [ -69.433594, -52.375599 ], [ -69.609375, -52.375599 ], [ -69.609375, -52.482780 ], [ -69.785156, -52.482780 ], [ -69.785156, -52.589701 ], [ -69.960938, -52.589701 ], [ -69.960938, -52.696361 ], [ -70.312500, -52.696361 ], [ -70.312500, -52.802761 ], [ -70.664062, -52.802761 ], [ -70.664062, -52.908902 ], [ -70.839844, -52.908902 ], [ -70.839844, -53.435719 ], [ -71.015625, -53.435719 ], [ -71.015625, -53.852527 ] ] ], [ [ [ -74.531250, -52.908902 ], [ -74.179688, -52.908902 ], [ -74.179688, -53.014783 ], [ -73.828125, -53.014783 ], [ -73.828125, -53.120405 ], [ -73.652344, -53.120405 ], [ -73.652344, -53.225768 ], [ -73.476562, -53.225768 ], [ -73.476562, -53.330873 ], [ -73.300781, -53.330873 ], [ -73.300781, -53.435719 ], [ -72.949219, -53.435719 ], [ -72.949219, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.644638 ], [ -72.597656, -53.644638 ], [ -72.597656, -53.748711 ], [ -72.246094, -53.748711 ], [ -72.246094, -53.852527 ], [ -71.894531, -53.852527 ], [ -71.894531, -53.956086 ], [ -71.542969, -53.956086 ], [ -71.542969, -54.059388 ], [ -71.015625, -54.059388 ], [ -71.015625, -53.852527 ], [ -70.839844, -53.852527 ], [ -70.839844, -53.748711 ], [ -70.664062, -53.748711 ], [ -70.664062, -53.540307 ], [ -70.488281, -53.540307 ], [ -70.488281, -53.120405 ], [ -70.312500, -53.120405 ], [ -70.312500, -52.908902 ], [ -70.136719, -52.908902 ], [ -70.136719, -52.802761 ], [ -69.785156, -52.802761 ], [ -69.785156, -52.696361 ], [ -69.609375, -52.696361 ], [ -69.609375, -52.589701 ], [ -69.257812, -52.589701 ], [ -69.257812, -52.482780 ], [ -69.082031, -52.482780 ], [ -69.082031, -52.589701 ], [ -68.554688, -52.589701 ], [ -68.554688, -54.876607 ], [ -66.972656, -54.876607 ], [ -66.972656, -54.977614 ], [ -67.148438, -54.977614 ], [ -67.148438, -55.178868 ], [ -67.324219, -55.178868 ], [ -67.324219, -55.379110 ], [ -67.675781, -55.379110 ], [ -67.675781, -55.478853 ], [ -68.027344, -55.478853 ], [ -68.027344, -55.578345 ], [ -69.082031, -55.578345 ], [ -69.082031, -55.478853 ], [ -69.433594, -55.478853 ], [ -69.433594, -55.379110 ], [ -69.785156, -55.379110 ], [ -69.785156, -55.279115 ], [ -69.960938, -55.279115 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -55.078367 ], [ -71.191406, -55.078367 ], [ -71.191406, -54.977614 ], [ -71.367188, -54.977614 ], [ -71.367188, -54.876607 ], [ -71.542969, -54.876607 ], [ -71.542969, -54.775346 ], [ -71.894531, -54.775346 ], [ -71.894531, -54.673831 ], [ -72.070312, -54.673831 ], [ -72.070312, -54.572062 ], [ -72.246094, -54.572062 ], [ -72.246094, -54.470038 ], [ -72.421875, -54.470038 ], [ -72.421875, -54.367759 ], [ -72.597656, -54.367759 ], [ -72.597656, -54.265224 ], [ -72.949219, -54.265224 ], [ -72.949219, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -54.059388 ], [ -73.300781, -54.059388 ], [ -73.300781, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.652344, -53.748711 ], [ -73.652344, -53.644638 ], [ -73.828125, -53.644638 ], [ -73.828125, -53.540307 ], [ -74.003906, -53.540307 ], [ -74.003906, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.225768 ], [ -74.355469, -53.225768 ], [ -74.355469, -53.120405 ], [ -74.531250, -53.120405 ], [ -74.531250, -52.908902 ] ] ], [ [ [ -74.531250, -52.908902 ], [ -74.707031, -52.908902 ], [ -74.707031, -52.802761 ], [ -74.531250, -52.802761 ], [ -74.531250, -52.908902 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.378906, -52.802761 ], [ -68.378906, -53.014783 ], [ -68.203125, -53.014783 ], [ -68.203125, -53.330873 ], [ -68.027344, -53.330873 ], [ -68.027344, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.748711 ], [ -67.675781, -53.748711 ], [ -67.675781, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.059388 ], [ -67.324219, -54.059388 ], [ -67.324219, -54.162434 ], [ -66.972656, -54.162434 ], [ -66.972656, -54.265224 ], [ -66.796875, -54.265224 ], [ -66.796875, -54.367759 ], [ -66.621094, -54.367759 ], [ -66.621094, -54.470038 ], [ -66.269531, -54.470038 ], [ -66.269531, -54.572062 ], [ -65.566406, -54.572062 ], [ -65.566406, -54.673831 ], [ -65.039062, -54.673831 ], [ -65.039062, -54.775346 ], [ -65.214844, -54.775346 ], [ -65.214844, -54.977614 ], [ -65.390625, -54.977614 ], [ -65.390625, -55.178868 ], [ -65.917969, -55.178868 ], [ -65.917969, -55.279115 ], [ -66.621094, -55.279115 ], [ -66.621094, -55.078367 ], [ -66.796875, -55.078367 ], [ -66.796875, -54.977614 ], [ -66.972656, -54.977614 ], [ -66.972656, -54.876607 ], [ -68.554688, -54.876607 ], [ -68.554688, -52.802761 ], [ -68.378906, -52.802761 ] ] ], [ [ [ -62.226562, -40.313043 ], [ -62.226562, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -64.687500, -40.847060 ], [ -64.687500, -40.979898 ], [ -64.863281, -40.979898 ], [ -64.863281, -41.112469 ], [ -65.039062, -41.112469 ], [ -65.039062, -42.163403 ], [ -64.863281, -42.163403 ], [ -64.863281, -42.293564 ], [ -64.511719, -42.293564 ], [ -64.511719, -42.423457 ], [ -64.160156, -42.423457 ], [ -64.160156, -42.293564 ], [ -63.984375, -42.293564 ], [ -63.984375, -42.163403 ], [ -63.632812, -42.163403 ], [ -63.632812, -42.423457 ], [ -63.457031, -42.423457 ], [ -63.457031, -42.553080 ], [ -63.632812, -42.553080 ], [ -63.632812, -42.682435 ], [ -63.984375, -42.682435 ], [ -63.984375, -42.811522 ], [ -64.335938, -42.811522 ], [ -64.335938, -42.940339 ], [ -64.511719, -42.940339 ], [ -64.511719, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.197167 ], [ -64.863281, -43.197167 ], [ -64.863281, -43.325178 ], [ -65.039062, -43.325178 ], [ -65.039062, -43.452919 ], [ -65.214844, -43.452919 ], [ -65.214844, -43.961191 ], [ -65.390625, -43.961191 ], [ -65.390625, -44.840291 ], [ -65.566406, -44.840291 ], [ -65.566406, -45.089036 ], [ -66.445312, -45.089036 ], [ -66.445312, -45.213004 ], [ -66.621094, -45.213004 ], [ -66.621094, -45.336702 ], [ -66.972656, -45.336702 ], [ -66.972656, -45.460131 ], [ -67.148438, -45.460131 ], [ -67.148438, -45.583290 ], [ -67.324219, -45.583290 ], [ -67.324219, -45.951150 ], [ -67.500000, -45.951150 ], [ -67.500000, -46.437857 ], [ -67.324219, -46.437857 ], [ -67.324219, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.679594 ], [ -66.972656, -46.679594 ], [ -66.972656, -46.920255 ], [ -66.796875, -46.920255 ], [ -66.796875, -47.040182 ], [ -66.445312, -47.040182 ], [ -66.445312, -47.159840 ], [ -65.917969, -47.159840 ], [ -65.917969, -47.279229 ], [ -65.566406, -47.279229 ], [ -65.566406, -47.517201 ], [ -65.742188, -47.517201 ], [ -65.742188, -47.989922 ], [ -65.917969, -47.989922 ], [ -65.917969, -48.224673 ], [ -66.269531, -48.224673 ], [ -66.269531, -48.341646 ], [ -66.445312, -48.341646 ], [ -66.445312, -48.458352 ], [ -66.621094, -48.458352 ], [ -66.621094, -48.574790 ], [ -66.972656, -48.574790 ], [ -66.972656, -48.690960 ], [ -67.148438, -48.690960 ], [ -67.148438, -48.922499 ], [ -67.324219, -48.922499 ], [ -67.324219, -49.152970 ], [ -67.500000, -49.152970 ], [ -67.500000, -49.496675 ], [ -67.675781, -49.496675 ], [ -67.675781, -49.724479 ], [ -67.851562, -49.724479 ], [ -67.851562, -49.951220 ], [ -68.027344, -49.951220 ], [ -68.027344, -50.064192 ], [ -68.378906, -50.064192 ], [ -68.378906, -50.176898 ], [ -68.554688, -50.176898 ], [ -68.554688, -50.289339 ], [ -68.730469, -50.289339 ], [ -68.730469, -50.401515 ], [ -68.906250, -50.401515 ], [ -68.906250, -50.625073 ], [ -69.082031, -50.625073 ], [ -69.082031, -51.069017 ], [ -68.906250, -51.069017 ], [ -68.906250, -51.508742 ], [ -68.730469, -51.508742 ], [ -68.730469, -51.835778 ], [ -68.554688, -51.835778 ], [ -68.554688, -52.052490 ], [ -68.378906, -52.052490 ], [ -68.378906, -52.268157 ], [ -68.203125, -52.268157 ], [ -68.203125, -52.375599 ], [ -68.554688, -52.375599 ], [ -68.554688, -52.268157 ], [ -69.082031, -52.268157 ], [ -69.082031, -52.160455 ], [ -70.839844, -52.160455 ], [ -70.839844, -52.052490 ], [ -71.894531, -52.052490 ], [ -71.894531, -51.944265 ], [ -72.070312, -51.944265 ], [ -72.070312, -51.618017 ], [ -72.246094, -51.618017 ], [ -72.246094, -50.625073 ], [ -72.421875, -50.625073 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.300781, -50.513427 ], [ -73.300781, -49.837982 ], [ -73.476562, -49.837982 ], [ -73.476562, -49.267805 ], [ -73.300781, -49.267805 ], [ -73.300781, -49.152970 ], [ -72.949219, -49.152970 ], [ -72.949219, -49.037868 ], [ -72.597656, -49.037868 ], [ -72.597656, -48.806863 ], [ -72.421875, -48.806863 ], [ -72.421875, -48.458352 ], [ -72.246094, -48.458352 ], [ -72.246094, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -47.635784 ], [ -72.246094, -47.635784 ], [ -72.246094, -47.398349 ], [ -72.070312, -47.398349 ], [ -72.070312, -47.159840 ], [ -71.894531, -47.159840 ], [ -71.894531, -46.679594 ], [ -71.718750, -46.679594 ], [ -71.718750, -45.951150 ], [ -71.542969, -45.951150 ], [ -71.542969, -45.336702 ], [ -71.718750, -45.336702 ], [ -71.718750, -44.964798 ], [ -71.367188, -44.964798 ], [ -71.367188, -44.840291 ], [ -71.191406, -44.840291 ], [ -71.191406, -44.715514 ], [ -71.367188, -44.715514 ], [ -71.367188, -44.465151 ], [ -71.542969, -44.465151 ], [ -71.542969, -44.339565 ], [ -71.718750, -44.339565 ], [ -71.718750, -44.087585 ], [ -71.542969, -44.087585 ], [ -71.542969, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -71.894531, -43.580391 ], [ -71.894531, -42.940339 ], [ -72.070312, -42.940339 ], [ -72.070312, -42.293564 ], [ -71.894531, -42.293564 ], [ -71.894531, -42.163403 ], [ -71.718750, -42.163403 ], [ -71.718750, -41.508577 ], [ -71.894531, -41.508577 ], [ -71.894531, -40.580585 ], [ -71.718750, -40.580585 ], [ -71.718750, -40.313043 ], [ -62.226562, -40.313043 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.378906, -52.802761 ], [ -68.378906, -53.014783 ], [ -68.203125, -53.014783 ], [ -68.203125, -53.330873 ], [ -68.027344, -53.330873 ], [ -68.027344, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.748711 ], [ -67.675781, -53.748711 ], [ -67.675781, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.059388 ], [ -67.324219, -54.059388 ], [ -67.324219, -54.162434 ], [ -66.972656, -54.162434 ], [ -66.972656, -54.265224 ], [ -66.796875, -54.265224 ], [ -66.796875, -54.367759 ], [ -66.621094, -54.367759 ], [ -66.621094, -54.470038 ], [ -66.269531, -54.470038 ], [ -66.269531, -54.572062 ], [ -65.566406, -54.572062 ], [ -65.566406, -54.673831 ], [ -65.039062, -54.673831 ], [ -65.039062, -54.775346 ], [ -65.214844, -54.775346 ], [ -65.214844, -54.977614 ], [ -65.390625, -54.977614 ], [ -65.390625, -55.178868 ], [ -65.917969, -55.178868 ], [ -65.917969, -55.279115 ], [ -66.621094, -55.279115 ], [ -66.621094, -55.078367 ], [ -66.796875, -55.078367 ], [ -66.796875, -54.977614 ], [ -66.972656, -54.977614 ], [ -66.972656, -54.876607 ], [ -68.554688, -54.876607 ], [ -68.554688, -52.802761 ], [ -68.378906, -52.802761 ] ] ], [ [ [ -62.226562, -40.313043 ], [ -62.226562, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -64.687500, -40.847060 ], [ -64.687500, -40.979898 ], [ -64.863281, -40.979898 ], [ -64.863281, -41.112469 ], [ -65.039062, -41.112469 ], [ -65.039062, -42.163403 ], [ -64.863281, -42.163403 ], [ -64.863281, -42.293564 ], [ -64.511719, -42.293564 ], [ -64.511719, -42.423457 ], [ -64.160156, -42.423457 ], [ -64.160156, -42.293564 ], [ -63.984375, -42.293564 ], [ -63.984375, -42.163403 ], [ -63.632812, -42.163403 ], [ -63.632812, -42.423457 ], [ -63.457031, -42.423457 ], [ -63.457031, -42.553080 ], [ -63.632812, -42.553080 ], [ -63.632812, -42.682435 ], [ -63.984375, -42.682435 ], [ -63.984375, -42.811522 ], [ -64.335938, -42.811522 ], [ -64.335938, -42.940339 ], [ -64.511719, -42.940339 ], [ -64.511719, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.197167 ], [ -64.863281, -43.197167 ], [ -64.863281, -43.325178 ], [ -65.039062, -43.325178 ], [ -65.039062, -43.452919 ], [ -65.214844, -43.452919 ], [ -65.214844, -43.961191 ], [ -65.390625, -43.961191 ], [ -65.390625, -44.840291 ], [ -65.566406, -44.840291 ], [ -65.566406, -45.089036 ], [ -66.445312, -45.089036 ], [ -66.445312, -45.213004 ], [ -66.621094, -45.213004 ], [ -66.621094, -45.336702 ], [ -66.972656, -45.336702 ], [ -66.972656, -45.460131 ], [ -67.148438, -45.460131 ], [ -67.148438, -45.583290 ], [ -67.324219, -45.583290 ], [ -67.324219, -45.951150 ], [ -67.500000, -45.951150 ], [ -67.500000, -46.437857 ], [ -67.324219, -46.437857 ], [ -67.324219, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.679594 ], [ -66.972656, -46.679594 ], [ -66.972656, -46.920255 ], [ -66.796875, -46.920255 ], [ -66.796875, -47.040182 ], [ -66.445312, -47.040182 ], [ -66.445312, -47.159840 ], [ -65.917969, -47.159840 ], [ -65.917969, -47.279229 ], [ -65.566406, -47.279229 ], [ -65.566406, -47.517201 ], [ -65.742188, -47.517201 ], [ -65.742188, -47.989922 ], [ -65.917969, -47.989922 ], [ -65.917969, -48.224673 ], [ -66.269531, -48.224673 ], [ -66.269531, -48.341646 ], [ -66.445312, -48.341646 ], [ -66.445312, -48.458352 ], [ -66.621094, -48.458352 ], [ -66.621094, -48.574790 ], [ -66.972656, -48.574790 ], [ -66.972656, -48.690960 ], [ -67.148438, -48.690960 ], [ -67.148438, -48.922499 ], [ -67.324219, -48.922499 ], [ -67.324219, -49.152970 ], [ -67.500000, -49.152970 ], [ -67.500000, -49.496675 ], [ -67.675781, -49.496675 ], [ -67.675781, -49.724479 ], [ -67.851562, -49.724479 ], [ -67.851562, -49.951220 ], [ -68.027344, -49.951220 ], [ -68.027344, -50.064192 ], [ -68.378906, -50.064192 ], [ -68.378906, -50.176898 ], [ -68.554688, -50.176898 ], [ -68.554688, -50.289339 ], [ -68.730469, -50.289339 ], [ -68.730469, -50.401515 ], [ -68.906250, -50.401515 ], [ -68.906250, -50.625073 ], [ -69.082031, -50.625073 ], [ -69.082031, -51.069017 ], [ -68.906250, -51.069017 ], [ -68.906250, -51.508742 ], [ -68.730469, -51.508742 ], [ -68.730469, -51.835778 ], [ -68.554688, -51.835778 ], [ -68.554688, -52.052490 ], [ -68.378906, -52.052490 ], [ -68.378906, -52.268157 ], [ -68.203125, -52.268157 ], [ -68.203125, -52.375599 ], [ -68.554688, -52.375599 ], [ -68.554688, -52.268157 ], [ -69.082031, -52.268157 ], [ -69.082031, -52.160455 ], [ -70.839844, -52.160455 ], [ -70.839844, -52.052490 ], [ -71.894531, -52.052490 ], [ -71.894531, -51.944265 ], [ -72.070312, -51.944265 ], [ -72.070312, -51.618017 ], [ -72.246094, -51.618017 ], [ -72.246094, -50.625073 ], [ -72.421875, -50.625073 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.300781, -50.513427 ], [ -73.300781, -49.837982 ], [ -73.476562, -49.837982 ], [ -73.476562, -49.267805 ], [ -73.300781, -49.267805 ], [ -73.300781, -49.152970 ], [ -72.949219, -49.152970 ], [ -72.949219, -49.037868 ], [ -72.597656, -49.037868 ], [ -72.597656, -48.806863 ], [ -72.421875, -48.806863 ], [ -72.421875, -48.458352 ], [ -72.246094, -48.458352 ], [ -72.246094, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -47.635784 ], [ -72.246094, -47.635784 ], [ -72.246094, -47.398349 ], [ -72.070312, -47.398349 ], [ -72.070312, -47.159840 ], [ -71.894531, -47.159840 ], [ -71.894531, -46.679594 ], [ -71.718750, -46.679594 ], [ -71.718750, -45.951150 ], [ -71.542969, -45.951150 ], [ -71.542969, -45.336702 ], [ -71.718750, -45.336702 ], [ -71.718750, -44.964798 ], [ -71.367188, -44.964798 ], [ -71.367188, -44.840291 ], [ -71.191406, -44.840291 ], [ -71.191406, -44.715514 ], [ -71.367188, -44.715514 ], [ -71.367188, -44.465151 ], [ -71.542969, -44.465151 ], [ -71.542969, -44.339565 ], [ -71.718750, -44.339565 ], [ -71.718750, -44.087585 ], [ -71.542969, -44.087585 ], [ -71.542969, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -71.894531, -43.580391 ], [ -71.894531, -42.940339 ], [ -72.070312, -42.940339 ], [ -72.070312, -42.293564 ], [ -71.894531, -42.293564 ], [ -71.894531, -42.163403 ], [ -71.718750, -42.163403 ], [ -71.718750, -41.508577 ], [ -71.894531, -41.508577 ], [ -71.894531, -40.580585 ], [ -71.718750, -40.580585 ], [ -62.226562, -40.313043 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -51.179343 ], [ -58.359375, -51.289406 ], [ -58.183594, -51.289406 ], [ -58.183594, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.508742 ], [ -57.832031, -51.508742 ], [ -57.832031, -51.727028 ], [ -58.007812, -51.727028 ], [ -58.007812, -51.944265 ], [ -58.183594, -51.944265 ], [ -58.183594, -52.052490 ], [ -58.886719, -52.052490 ], [ -58.886719, -52.160455 ], [ -59.589844, -52.160455 ], [ -59.589844, -51.944265 ], [ -59.941406, -51.944265 ], [ -59.941406, -52.052490 ], [ -60.292969, -52.052490 ], [ -60.292969, -52.160455 ], [ -60.468750, -52.160455 ], [ -60.468750, -52.268157 ], [ -60.820312, -52.268157 ], [ -60.820312, -52.052490 ], [ -60.996094, -52.052490 ], [ -60.996094, -51.944265 ], [ -61.171875, -51.944265 ], [ -61.171875, -51.835778 ], [ -60.996094, -51.835778 ], [ -60.996094, -51.727028 ], [ -60.644531, -51.727028 ], [ -60.644531, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.508742 ], [ -60.292969, -51.508742 ], [ -60.292969, -51.399206 ], [ -59.941406, -51.399206 ], [ -59.941406, -51.289406 ], [ -59.765625, -51.289406 ], [ -59.765625, -51.399206 ], [ -59.414062, -51.399206 ], [ -59.414062, -51.508742 ], [ -58.886719, -51.508742 ], [ -58.886719, -51.289406 ], [ -58.710938, -51.289406 ], [ -58.710938, -51.179343 ], [ -58.359375, -51.179343 ] ] ] } } , @@ -1558,7 +1558,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.816406, 38.134557 ], [ -76.816406, 37.996163 ], [ -76.464844, 37.996163 ], [ -76.464844, 37.857507 ], [ -76.289062, 37.857507 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.761719, 36.031332 ], [ -75.761719, 35.460670 ], [ -75.937500, 35.460670 ], [ -75.937500, 35.173808 ], [ -76.113281, 35.173808 ], [ -76.113281, 34.885931 ], [ -76.289062, 34.885931 ], [ -76.289062, 34.741612 ], [ -76.464844, 34.741612 ], [ -76.464844, 34.597042 ], [ -76.992188, 34.597042 ], [ -76.992188, 34.452218 ], [ -77.343750, 34.452218 ], [ -77.343750, 34.307144 ], [ -77.519531, 34.307144 ], [ -77.519531, 34.161818 ], [ -77.695312, 34.161818 ], [ -77.695312, 34.016242 ], [ -77.871094, 34.016242 ], [ -77.871094, 33.870416 ], [ -78.574219, 33.870416 ], [ -78.574219, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.578015 ], [ -78.925781, 33.578015 ], [ -78.925781, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 33.284620 ], [ -79.277344, 33.284620 ], [ -79.277344, 32.990236 ], [ -79.628906, 32.990236 ], [ -79.628906, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.694866 ], [ -80.156250, 32.694866 ], [ -80.156250, 32.546813 ], [ -80.332031, 32.546813 ], [ -80.332031, 32.398516 ], [ -80.507812, 32.398516 ], [ -80.507812, 32.249974 ], [ -80.683594, 32.249974 ], [ -80.683594, 32.101190 ], [ -80.859375, 32.101190 ], [ -80.859375, 31.952162 ], [ -81.035156, 31.952162 ], [ -81.035156, 31.802893 ], [ -81.210938, 31.802893 ], [ -81.210938, 31.503629 ], [ -81.386719, 31.503629 ], [ -81.386719, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.297018 ], [ -81.386719, 30.297018 ], [ -81.386719, 29.688053 ], [ -81.210938, 29.688053 ], [ -81.210938, 29.382175 ], [ -81.035156, 29.382175 ], [ -81.035156, 29.075375 ], [ -80.859375, 29.075375 ], [ -80.859375, 28.767659 ], [ -80.683594, 28.767659 ], [ -80.683594, 28.459033 ], [ -80.507812, 28.459033 ], [ -80.507812, 27.683528 ], [ -80.332031, 27.683528 ], [ -80.332031, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 27.059126 ], [ -79.980469, 27.059126 ], [ -79.980469, 26.588527 ], [ -80.156250, 26.588527 ], [ -80.156250, 25.482951 ], [ -80.332031, 25.482951 ], [ -80.332031, 25.005973 ], [ -81.035156, 25.005973 ], [ -81.035156, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.324167 ], [ -81.386719, 25.324167 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.641526 ], [ -81.738281, 25.958045 ], [ -81.914062, 25.958045 ], [ -81.914062, 26.273714 ], [ -82.089844, 26.273714 ], [ -82.089844, 26.588527 ], [ -82.265625, 26.588527 ], [ -82.265625, 26.745610 ], [ -82.441406, 26.745610 ], [ -82.441406, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.371767 ], [ -82.792969, 27.371767 ], [ -82.792969, 28.149503 ], [ -82.617188, 28.149503 ], [ -82.617188, 28.613459 ], [ -82.792969, 28.613459 ], [ -82.792969, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.075375 ], [ -83.144531, 29.075375 ], [ -83.144531, 29.382175 ], [ -83.320312, 29.382175 ], [ -83.320312, 29.535230 ], [ -83.496094, 29.535230 ], [ -83.496094, 29.840644 ], [ -83.671875, 29.840644 ], [ -83.671875, 29.993002 ], [ -84.375000, 29.993002 ], [ -84.375000, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.688053 ], [ -85.429688, 29.688053 ], [ -85.429688, 29.840644 ], [ -85.605469, 29.840644 ], [ -85.605469, 29.993002 ], [ -85.781250, 29.993002 ], [ -85.781250, 30.145127 ], [ -86.132812, 30.145127 ], [ -86.132812, 30.297018 ], [ -86.484375, 30.297018 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.297018 ], [ -88.066406, 30.297018 ], [ -88.066406, 30.448674 ], [ -88.593750, 30.448674 ], [ -88.593750, 30.297018 ], [ -89.296875, 30.297018 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.993002 ], [ -89.472656, 29.993002 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.000000, 29.228890 ], [ -90.000000, 29.075375 ], [ -90.878906, 29.075375 ], [ -90.878906, 41.640078 ], [ -70.136719, 41.640078 ], [ -70.136719, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -71.894531, 41.376809 ], [ -71.894531, 41.244772 ], [ -72.949219, 41.244772 ], [ -72.949219, 41.112469 ], [ -73.300781, 41.112469 ], [ -73.300781, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.112469 ], [ -72.246094, 41.112469 ], [ -72.246094, 40.979898 ], [ -72.070312, 40.979898 ], [ -72.070312, 40.847060 ], [ -72.421875, 40.847060 ], [ -72.421875, 40.713956 ], [ -72.949219, 40.713956 ], [ -72.949219, 40.580585 ], [ -74.179688, 40.580585 ], [ -74.179688, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.044438 ], [ -74.179688, 40.044438 ], [ -74.179688, 39.639538 ], [ -74.355469, 39.639538 ], [ -74.355469, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 39.232253 ], [ -74.707031, 39.232253 ], [ -74.707031, 38.959409 ], [ -74.882812, 38.959409 ], [ -74.882812, 39.095963 ], [ -75.058594, 39.095963 ], [ -75.058594, 39.232253 ], [ -75.410156, 39.232253 ], [ -75.410156, 39.095963 ], [ -75.234375, 39.095963 ], [ -75.234375, 38.822591 ], [ -75.058594, 38.822591 ], [ -75.058594, 38.272689 ], [ -75.234375, 38.272689 ], [ -75.234375, 37.996163 ], [ -75.410156, 37.996163 ], [ -75.410156, 37.857507 ], [ -75.585938, 37.857507 ], [ -75.585938, 37.579413 ], [ -75.761719, 37.579413 ], [ -75.761719, 37.300275 ], [ -75.937500, 37.300275 ], [ -75.937500, 37.160317 ], [ -76.113281, 37.160317 ], [ -76.113281, 37.439974 ], [ -75.937500, 37.439974 ], [ -75.937500, 37.718590 ], [ -75.761719, 37.718590 ], [ -75.761719, 37.996163 ], [ -75.937500, 37.996163 ], [ -75.937500, 38.134557 ], [ -76.816406, 38.134557 ] ], [ [ -76.464844, 38.822591 ], [ -76.464844, 38.410558 ], [ -76.289062, 38.410558 ], [ -76.289062, 38.822591 ], [ -76.464844, 38.822591 ] ], [ [ -76.816406, 38.134557 ], [ -76.816406, 38.272689 ], [ -76.992188, 38.272689 ], [ -76.992188, 38.134557 ], [ -76.816406, 38.134557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.816406, 38.134557 ], [ -76.816406, 37.996163 ], [ -76.464844, 37.996163 ], [ -76.464844, 37.857507 ], [ -76.289062, 37.857507 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.761719, 36.031332 ], [ -75.761719, 35.460670 ], [ -75.937500, 35.460670 ], [ -75.937500, 35.173808 ], [ -76.113281, 35.173808 ], [ -76.113281, 34.885931 ], [ -76.289062, 34.885931 ], [ -76.289062, 34.741612 ], [ -76.464844, 34.741612 ], [ -76.464844, 34.597042 ], [ -76.992188, 34.597042 ], [ -76.992188, 34.452218 ], [ -77.343750, 34.452218 ], [ -77.343750, 34.307144 ], [ -77.519531, 34.307144 ], [ -77.519531, 34.161818 ], [ -77.695312, 34.161818 ], [ -77.695312, 34.016242 ], [ -77.871094, 34.016242 ], [ -77.871094, 33.870416 ], [ -78.574219, 33.870416 ], [ -78.574219, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.578015 ], [ -78.925781, 33.578015 ], [ -78.925781, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 33.284620 ], [ -79.277344, 33.284620 ], [ -79.277344, 32.990236 ], [ -79.628906, 32.990236 ], [ -79.628906, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.694866 ], [ -80.156250, 32.694866 ], [ -80.156250, 32.546813 ], [ -80.332031, 32.546813 ], [ -80.332031, 32.398516 ], [ -80.507812, 32.398516 ], [ -80.507812, 32.249974 ], [ -80.683594, 32.249974 ], [ -80.683594, 32.101190 ], [ -80.859375, 32.101190 ], [ -80.859375, 31.952162 ], [ -81.035156, 31.952162 ], [ -81.035156, 31.802893 ], [ -81.210938, 31.802893 ], [ -81.210938, 31.503629 ], [ -81.386719, 31.503629 ], [ -81.386719, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.297018 ], [ -81.386719, 30.297018 ], [ -81.386719, 29.688053 ], [ -81.210938, 29.688053 ], [ -81.210938, 29.382175 ], [ -81.035156, 29.382175 ], [ -81.035156, 29.075375 ], [ -80.859375, 29.075375 ], [ -80.859375, 28.767659 ], [ -80.683594, 28.767659 ], [ -80.683594, 28.459033 ], [ -80.507812, 28.459033 ], [ -80.507812, 27.683528 ], [ -80.332031, 27.683528 ], [ -80.332031, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 27.059126 ], [ -79.980469, 27.059126 ], [ -79.980469, 26.588527 ], [ -80.156250, 26.588527 ], [ -80.156250, 25.482951 ], [ -80.332031, 25.482951 ], [ -80.332031, 25.005973 ], [ -81.035156, 25.005973 ], [ -81.035156, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.324167 ], [ -81.386719, 25.324167 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.641526 ], [ -81.738281, 25.958045 ], [ -81.914062, 25.958045 ], [ -81.914062, 26.273714 ], [ -82.089844, 26.273714 ], [ -82.089844, 26.588527 ], [ -82.265625, 26.588527 ], [ -82.265625, 26.745610 ], [ -82.441406, 26.745610 ], [ -82.441406, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.371767 ], [ -82.792969, 27.371767 ], [ -82.792969, 28.149503 ], [ -82.617188, 28.149503 ], [ -82.617188, 28.613459 ], [ -82.792969, 28.613459 ], [ -82.792969, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.075375 ], [ -83.144531, 29.075375 ], [ -83.144531, 29.382175 ], [ -83.320312, 29.382175 ], [ -83.320312, 29.535230 ], [ -83.496094, 29.535230 ], [ -83.496094, 29.840644 ], [ -83.671875, 29.840644 ], [ -83.671875, 29.993002 ], [ -84.375000, 29.993002 ], [ -84.375000, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.688053 ], [ -85.429688, 29.688053 ], [ -85.429688, 29.840644 ], [ -85.605469, 29.840644 ], [ -85.605469, 29.993002 ], [ -85.781250, 29.993002 ], [ -85.781250, 30.145127 ], [ -86.132812, 30.145127 ], [ -86.132812, 30.297018 ], [ -86.484375, 30.297018 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.297018 ], [ -88.066406, 30.297018 ], [ -88.066406, 30.448674 ], [ -88.593750, 30.448674 ], [ -88.593750, 30.297018 ], [ -89.296875, 30.297018 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.993002 ], [ -89.472656, 29.993002 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.000000, 29.228890 ], [ -90.000000, 29.075375 ], [ -90.175781, 29.075375 ], [ -90.878906, 41.640078 ], [ -70.136719, 41.640078 ], [ -70.136719, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -71.894531, 41.376809 ], [ -71.894531, 41.244772 ], [ -72.949219, 41.244772 ], [ -72.949219, 41.112469 ], [ -73.300781, 41.112469 ], [ -73.300781, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.112469 ], [ -72.246094, 41.112469 ], [ -72.246094, 40.979898 ], [ -72.070312, 40.979898 ], [ -72.070312, 40.847060 ], [ -72.421875, 40.847060 ], [ -72.421875, 40.713956 ], [ -72.949219, 40.713956 ], [ -72.949219, 40.580585 ], [ -74.179688, 40.580585 ], [ -74.179688, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.044438 ], [ -74.179688, 40.044438 ], [ -74.179688, 39.639538 ], [ -74.355469, 39.639538 ], [ -74.355469, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 39.232253 ], [ -74.707031, 39.232253 ], [ -74.707031, 38.959409 ], [ -74.882812, 38.959409 ], [ -74.882812, 39.095963 ], [ -75.058594, 39.095963 ], [ -75.058594, 39.232253 ], [ -75.410156, 39.232253 ], [ -75.410156, 39.095963 ], [ -75.234375, 39.095963 ], [ -75.234375, 38.822591 ], [ -75.058594, 38.822591 ], [ -75.058594, 38.272689 ], [ -75.234375, 38.272689 ], [ -75.234375, 37.996163 ], [ -75.410156, 37.996163 ], [ -75.410156, 37.857507 ], [ -75.585938, 37.857507 ], [ -75.585938, 37.579413 ], [ -75.761719, 37.579413 ], [ -75.761719, 37.300275 ], [ -75.937500, 37.300275 ], [ -75.937500, 37.160317 ], [ -76.113281, 37.160317 ], [ -76.113281, 37.439974 ], [ -75.937500, 37.439974 ], [ -75.937500, 37.718590 ], [ -75.761719, 37.718590 ], [ -75.761719, 37.996163 ], [ -75.937500, 37.996163 ], [ -75.937500, 38.134557 ], [ -76.816406, 38.134557 ] ], [ [ -76.464844, 38.822591 ], [ -76.464844, 38.410558 ], [ -76.289062, 38.410558 ], [ -76.289062, 38.822591 ], [ -76.464844, 38.822591 ] ], [ [ -76.816406, 38.134557 ], [ -76.816406, 38.272689 ], [ -76.992188, 38.272689 ], [ -76.992188, 38.134557 ], [ -76.816406, 38.134557 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.527344, 16.467695 ], [ -90.527344, 16.130262 ], [ -90.878906, 16.130262 ], [ -90.878906, 16.636192 ] ] ], [ [ [ -87.011719, 21.453069 ], [ -86.835938, 21.453069 ], [ -86.835938, 20.632784 ], [ -87.011719, 20.632784 ], [ -87.011719, 20.468189 ], [ -87.187500, 20.468189 ], [ -87.187500, 20.303418 ], [ -87.363281, 20.303418 ], [ -87.363281, 19.973349 ], [ -87.539062, 19.973349 ], [ -87.539062, 19.476950 ], [ -87.363281, 19.476950 ], [ -87.363281, 19.145168 ], [ -87.539062, 19.145168 ], [ -87.539062, 18.812718 ], [ -87.714844, 18.812718 ], [ -87.714844, 18.479609 ], [ -87.890625, 18.479609 ], [ -87.890625, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 18.479609 ], [ -88.417969, 18.479609 ], [ -88.417969, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 17.978733 ], [ -88.769531, 17.978733 ], [ -88.769531, 17.811456 ], [ -88.945312, 17.811456 ], [ -88.945312, 17.978733 ], [ -89.121094, 17.978733 ], [ -89.121094, 17.811456 ], [ -90.878906, 17.811456 ], [ -90.878906, 19.145168 ], [ -90.703125, 19.145168 ], [ -90.703125, 19.476950 ], [ -90.527344, 19.476950 ], [ -90.527344, 20.797201 ], [ -90.351562, 20.797201 ], [ -90.351562, 20.961440 ], [ -90.000000, 20.961440 ], [ -90.000000, 21.125498 ], [ -89.648438, 21.125498 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.453069 ], [ -87.187500, 21.453069 ], [ -87.187500, 21.616579 ], [ -87.011719, 21.616579 ], [ -87.011719, 21.453069 ] ] ] ] } } , @@ -1666,7 +1666,7 @@ , { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.503906, 41.640078 ], [ -6.503906, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.178873 ], [ -7.031250, 40.178873 ], [ -7.031250, 39.774769 ], [ -7.207031, 39.774769 ], [ -7.207031, 39.639538 ], [ -7.558594, 39.639538 ], [ -7.558594, 39.504041 ], [ -7.382812, 39.504041 ], [ -7.382812, 39.368279 ], [ -7.207031, 39.368279 ], [ -7.207031, 39.095963 ], [ -7.031250, 39.095963 ], [ -7.031250, 38.822591 ], [ -7.207031, 38.822591 ], [ -7.207031, 38.548165 ], [ -7.382812, 38.548165 ], [ -7.382812, 38.272689 ], [ -7.207031, 38.272689 ], [ -7.207031, 38.134557 ], [ -7.031250, 38.134557 ], [ -7.031250, 37.996163 ], [ -7.207031, 37.996163 ], [ -7.207031, 37.718590 ], [ -7.382812, 37.718590 ], [ -7.382812, 37.439974 ], [ -7.558594, 37.439974 ], [ -7.558594, 37.300275 ], [ -7.382812, 37.300275 ], [ -7.382812, 37.020098 ], [ -7.734375, 37.020098 ], [ -7.734375, 36.879621 ], [ -8.261719, 36.879621 ], [ -8.261719, 37.020098 ], [ -8.613281, 37.020098 ], [ -8.613281, 36.879621 ], [ -8.964844, 36.879621 ], [ -8.964844, 37.300275 ], [ -8.789062, 37.300275 ], [ -8.789062, 38.272689 ], [ -9.140625, 38.272689 ], [ -9.140625, 38.410558 ], [ -9.316406, 38.410558 ], [ -9.316406, 38.548165 ], [ -9.492188, 38.548165 ], [ -9.492188, 39.368279 ], [ -9.316406, 39.368279 ], [ -9.316406, 39.504041 ], [ -9.140625, 39.504041 ], [ -9.140625, 39.639538 ], [ -8.964844, 39.639538 ], [ -8.964844, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.376809 ], [ -8.964844, 41.376809 ], [ -8.964844, 41.640078 ], [ -6.503906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.175781, 40.178873 ], [ 0.175781, 40.044438 ], [ 0.000000, 40.044438 ], [ 0.000000, 39.774769 ], [ -0.175781, 39.774769 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ 0.175781, 38.685510 ], [ 0.175781, 38.548165 ], [ 0.000000, 38.548165 ], [ 0.000000, 38.410558 ], [ -0.351562, 38.410558 ], [ -0.351562, 38.272689 ], [ -0.527344, 38.272689 ], [ -0.527344, 37.857507 ], [ -0.703125, 37.857507 ], [ -0.703125, 37.579413 ], [ -0.878906, 37.579413 ], [ -0.878906, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.300275 ], [ -1.582031, 37.300275 ], [ -1.582031, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 36.879621 ], [ -1.933594, 36.879621 ], [ -1.933594, 36.738884 ], [ -2.636719, 36.738884 ], [ -2.636719, 36.597889 ], [ -4.042969, 36.597889 ], [ -4.042969, 36.738884 ], [ -4.394531, 36.738884 ], [ -4.394531, 36.597889 ], [ -4.570312, 36.597889 ], [ -4.570312, 36.456636 ], [ -4.746094, 36.456636 ], [ -4.746094, 36.315125 ], [ -4.921875, 36.315125 ], [ -4.921875, 36.173357 ], [ -5.097656, 36.173357 ], [ -5.097656, 36.031332 ], [ -5.273438, 36.031332 ], [ -5.273438, 35.889050 ], [ -5.800781, 35.889050 ], [ -5.800781, 36.031332 ], [ -5.976562, 36.031332 ], [ -5.976562, 36.173357 ], [ -6.152344, 36.173357 ], [ -6.152344, 36.456636 ], [ -6.328125, 36.456636 ], [ -6.328125, 36.738884 ], [ -6.503906, 36.738884 ], [ -6.503906, 36.879621 ], [ -6.855469, 36.879621 ], [ -6.855469, 37.020098 ], [ -7.207031, 37.020098 ], [ -7.207031, 37.160317 ], [ -7.382812, 37.160317 ], [ -7.382812, 37.300275 ], [ -7.558594, 37.300275 ], [ -7.558594, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 37.718590 ], [ -7.207031, 37.718590 ], [ -7.207031, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 38.134557 ], [ -7.207031, 38.134557 ], [ -7.207031, 38.272689 ], [ -7.382812, 38.272689 ], [ -7.382812, 38.548165 ], [ -7.207031, 38.548165 ], [ -7.207031, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 39.095963 ], [ -7.207031, 39.095963 ], [ -7.207031, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 39.504041 ], [ -7.558594, 39.504041 ], [ -7.558594, 39.639538 ], [ -7.207031, 39.639538 ], [ -7.207031, 39.774769 ], [ -7.031250, 39.774769 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.178873 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.175781, 40.178873 ], [ 0.175781, 40.044438 ], [ 0.000000, 40.044438 ], [ 0.000000, 39.774769 ], [ -0.175781, 39.774769 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ 0.175781, 38.685510 ], [ 0.175781, 38.548165 ], [ 0.000000, 38.548165 ], [ 0.000000, 38.410558 ], [ -0.351562, 38.410558 ], [ -0.351562, 38.272689 ], [ -0.527344, 38.272689 ], [ -0.527344, 37.857507 ], [ -0.703125, 37.857507 ], [ -0.703125, 37.579413 ], [ -0.878906, 37.579413 ], [ -0.878906, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.300275 ], [ -1.582031, 37.300275 ], [ -1.582031, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 36.879621 ], [ -1.933594, 36.879621 ], [ -1.933594, 36.738884 ], [ -2.636719, 36.738884 ], [ -2.636719, 36.597889 ], [ -4.042969, 36.597889 ], [ -4.042969, 36.738884 ], [ -4.394531, 36.738884 ], [ -4.394531, 36.597889 ], [ -4.570312, 36.597889 ], [ -4.570312, 36.456636 ], [ -4.746094, 36.456636 ], [ -4.746094, 36.315125 ], [ -4.921875, 36.315125 ], [ -4.921875, 36.173357 ], [ -5.097656, 36.173357 ], [ -5.097656, 36.031332 ], [ -5.273438, 36.031332 ], [ -5.273438, 35.889050 ], [ -5.800781, 35.889050 ], [ -5.800781, 36.031332 ], [ -5.976562, 36.031332 ], [ -5.976562, 36.173357 ], [ -6.152344, 36.173357 ], [ -6.152344, 36.456636 ], [ -6.328125, 36.456636 ], [ -6.328125, 36.738884 ], [ -6.503906, 36.738884 ], [ -6.503906, 36.879621 ], [ -6.855469, 36.879621 ], [ -6.855469, 37.020098 ], [ -7.207031, 37.020098 ], [ -7.207031, 37.160317 ], [ -7.382812, 37.160317 ], [ -7.382812, 37.300275 ], [ -7.558594, 37.300275 ], [ -7.558594, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 37.718590 ], [ -7.207031, 37.718590 ], [ -7.207031, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 38.134557 ], [ -7.207031, 38.134557 ], [ -7.207031, 38.272689 ], [ -7.382812, 38.272689 ], [ -7.382812, 38.548165 ], [ -7.207031, 38.548165 ], [ -7.207031, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 39.095963 ], [ -7.207031, 39.095963 ], [ -7.207031, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 39.504041 ], [ -7.558594, 39.504041 ], [ -7.558594, 39.639538 ], [ -7.207031, 39.639538 ], [ -7.207031, 39.774769 ], [ -7.031250, 39.774769 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.178873 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ 0.878906, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.746512 ], [ -5.273438, 35.603719 ], [ -5.097656, 35.603719 ], [ -5.097656, 35.460670 ], [ -4.746094, 35.460670 ], [ -4.746094, 35.317366 ], [ -4.042969, 35.317366 ], [ -4.042969, 35.460670 ], [ -3.515625, 35.460670 ], [ -3.515625, 35.317366 ], [ -2.988281, 35.317366 ], [ -2.988281, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 35.029996 ], [ -1.933594, 35.029996 ], [ -1.933594, 34.741612 ], [ -1.757812, 34.741612 ], [ -1.757812, 33.578015 ], [ -1.582031, 33.578015 ], [ -1.582031, 32.990236 ], [ -1.406250, 32.990236 ], [ -1.406250, 32.694866 ], [ -1.054688, 32.694866 ], [ -1.054688, 32.398516 ], [ -1.230469, 32.398516 ], [ -1.230469, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 32.101190 ], [ -2.636719, 32.101190 ], [ -2.636719, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 31.653381 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -3.867188, 30.902225 ], [ -3.867188, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 30.600094 ], [ -4.570312, 30.600094 ], [ -4.570312, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.297018 ], [ -5.097656, 30.297018 ], [ -5.097656, 29.993002 ], [ -5.273438, 29.993002 ], [ -5.273438, 29.840644 ], [ -5.625000, 29.840644 ], [ -5.625000, 29.688053 ], [ -6.328125, 29.688053 ], [ -6.328125, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 29.382175 ], [ -7.382812, 29.382175 ], [ -7.382812, 29.228890 ], [ -7.734375, 29.228890 ], [ -7.734375, 29.075375 ], [ -8.085938, 29.075375 ], [ -8.085938, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 28.767659 ], [ -8.613281, 28.767659 ], [ -8.613281, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 26.902477 ], [ -10.546875, 26.902477 ], [ -10.546875, 27.059126 ], [ -10.898438, 27.059126 ], [ -10.898438, 26.902477 ], [ -11.425781, 26.902477 ], [ -11.425781, 26.588527 ], [ -11.601562, 26.588527 ], [ -11.601562, 26.273714 ], [ -11.777344, 26.273714 ], [ -11.777344, 25.958045 ], [ -11.953125, 25.958045 ], [ -11.953125, 25.641526 ], [ -12.128906, 25.641526 ], [ -12.128906, 25.324167 ], [ -12.304688, 25.324167 ], [ -12.304688, 25.005973 ], [ -12.480469, 25.005973 ], [ -12.480469, 24.686952 ], [ -12.656250, 24.686952 ], [ -12.656250, 24.527135 ], [ -12.832031, 24.527135 ], [ -12.832031, 24.367114 ], [ -13.007812, 24.367114 ], [ -13.007812, 24.206890 ], [ -13.359375, 24.206890 ], [ -13.359375, 24.046464 ], [ -13.535156, 24.046464 ], [ -13.535156, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 23.725012 ], [ -13.886719, 23.725012 ], [ -13.886719, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 22.593726 ], [ -14.238281, 22.593726 ], [ -14.238281, 22.105999 ], [ -14.414062, 22.105999 ], [ -14.414062, 21.779905 ], [ -14.589844, 21.779905 ], [ -14.589844, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.453069 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.699219, 21.943046 ], [ -16.699219, 22.105999 ], [ -16.523438, 22.105999 ], [ -16.523438, 22.431340 ], [ -16.347656, 22.431340 ], [ -16.347656, 23.241346 ], [ -16.171875, 23.241346 ], [ -16.171875, 23.563987 ], [ -15.996094, 23.563987 ], [ -15.996094, 23.725012 ], [ -15.820312, 23.725012 ], [ -15.820312, 24.046464 ], [ -15.644531, 24.046464 ], [ -15.644531, 24.206890 ], [ -15.468750, 24.206890 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.367114 ], [ -15.117188, 24.686952 ], [ -14.941406, 24.686952 ], [ -14.941406, 25.005973 ], [ -14.765625, 25.005973 ], [ -14.765625, 25.799891 ], [ -14.589844, 25.799891 ], [ -14.589844, 26.115986 ], [ -14.414062, 26.115986 ], [ -14.414062, 26.273714 ], [ -14.062500, 26.273714 ], [ -14.062500, 26.431228 ], [ -13.710938, 26.431228 ], [ -13.710938, 26.745610 ], [ -13.535156, 26.745610 ], [ -13.535156, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.371767 ], [ -13.183594, 27.371767 ], [ -13.183594, 27.683528 ], [ -13.007812, 27.683528 ], [ -13.007812, 27.839076 ], [ -12.656250, 27.839076 ], [ -12.656250, 27.994401 ], [ -11.953125, 27.994401 ], [ -11.953125, 28.149503 ], [ -11.425781, 28.149503 ], [ -11.425781, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.459033 ], [ -11.074219, 28.459033 ], [ -11.074219, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.767659 ], [ -10.722656, 28.767659 ], [ -10.722656, 28.921631 ], [ -10.371094, 28.921631 ], [ -10.371094, 29.075375 ], [ -10.195312, 29.075375 ], [ -10.195312, 29.228890 ], [ -10.019531, 29.228890 ], [ -10.019531, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 29.688053 ], [ -9.667969, 29.688053 ], [ -9.667969, 29.840644 ], [ -9.492188, 29.840644 ], [ -9.492188, 30.297018 ], [ -9.667969, 30.297018 ], [ -9.667969, 30.902225 ], [ -9.843750, 30.902225 ], [ -9.843750, 31.353637 ], [ -9.667969, 31.353637 ], [ -9.667969, 31.802893 ], [ -9.492188, 31.802893 ], [ -9.492188, 32.249974 ], [ -9.316406, 32.249974 ], [ -9.316406, 32.546813 ], [ -9.140625, 32.546813 ], [ -9.140625, 32.694866 ], [ -8.964844, 32.694866 ], [ -8.964844, 32.990236 ], [ -8.789062, 32.990236 ], [ -8.789062, 33.137551 ], [ -8.613281, 33.137551 ], [ -8.613281, 33.284620 ], [ -8.437500, 33.284620 ], [ -8.437500, 33.431441 ], [ -8.085938, 33.431441 ], [ -8.085938, 33.578015 ], [ -7.734375, 33.578015 ], [ -7.734375, 33.724340 ], [ -7.558594, 33.724340 ], [ -7.558594, 33.870416 ], [ -7.207031, 33.870416 ], [ -7.207031, 34.016242 ], [ -6.855469, 34.016242 ], [ -6.855469, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.597042 ], [ -6.503906, 34.597042 ], [ -6.503906, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.317366 ], [ -6.152344, 35.317366 ], [ -6.152344, 35.603719 ], [ -5.976562, 35.603719 ], [ -5.976562, 35.746512 ], [ -5.273438, 35.746512 ] ] ] } } , @@ -1712,7 +1712,7 @@ , { "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.988281, 58.631217 ], [ -2.988281, 58.539595 ], [ -3.164062, 58.539595 ], [ -3.164062, 58.355630 ], [ -3.339844, 58.355630 ], [ -3.339844, 58.170702 ], [ -3.515625, 58.170702 ], [ -3.515625, 57.984808 ], [ -3.691406, 57.984808 ], [ -3.691406, 57.797944 ], [ -3.867188, 57.797944 ], [ -3.867188, 57.610107 ], [ -4.042969, 57.610107 ], [ -4.042969, 57.515823 ], [ -3.691406, 57.515823 ], [ -3.691406, 57.610107 ], [ -3.164062, 57.610107 ], [ -3.164062, 57.704147 ], [ -1.933594, 57.704147 ], [ -1.933594, 57.421294 ], [ -2.109375, 57.421294 ], [ -2.109375, 57.040730 ], [ -2.285156, 57.040730 ], [ -2.285156, 56.752723 ], [ -2.460938, 56.752723 ], [ -2.460938, 56.559482 ], [ -2.636719, 56.559482 ], [ -2.636719, 56.365250 ], [ -2.812500, 56.365250 ], [ -2.812500, 56.170023 ], [ -2.988281, 56.170023 ], [ -2.988281, 55.973798 ], [ -2.812500, 55.973798 ], [ -2.812500, 55.875311 ], [ -2.109375, 55.875311 ], [ -2.109375, 55.776573 ], [ -1.933594, 55.776573 ], [ -1.933594, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 55.379110 ], [ -1.582031, 55.379110 ], [ -1.582031, 55.178868 ], [ -1.406250, 55.178868 ], [ -1.406250, 54.977614 ], [ -1.230469, 54.977614 ], [ -1.230469, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 54.470038 ], [ -0.351562, 54.470038 ], [ -0.351562, 54.265224 ], [ -0.175781, 54.265224 ], [ -0.175781, 53.852527 ], [ 0.000000, 53.852527 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.225768 ], [ 0.351562, 53.225768 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.878906, 52.908902 ], [ 0.878906, 50.847573 ], [ 0.703125, 50.847573 ], [ 0.703125, 50.736455 ], [ -1.054688, 50.736455 ], [ -1.054688, 50.625073 ], [ -1.933594, 50.625073 ], [ -1.933594, 50.513427 ], [ -2.636719, 50.513427 ], [ -2.636719, 50.625073 ], [ -3.164062, 50.625073 ], [ -3.164062, 50.513427 ], [ -3.339844, 50.513427 ], [ -3.339844, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 50.176898 ], [ -4.218750, 50.176898 ], [ -4.218750, 50.289339 ], [ -4.570312, 50.289339 ], [ -4.570312, 50.176898 ], [ -4.746094, 50.176898 ], [ -4.746094, 50.064192 ], [ -5.097656, 50.064192 ], [ -5.097656, 49.951220 ], [ -5.449219, 49.951220 ], [ -5.449219, 50.064192 ], [ -5.800781, 50.064192 ], [ -5.800781, 50.176898 ], [ -5.625000, 50.176898 ], [ -5.625000, 50.289339 ], [ -5.449219, 50.289339 ], [ -5.449219, 50.401515 ], [ -5.273438, 50.401515 ], [ -5.273438, 50.513427 ], [ -5.097656, 50.513427 ], [ -5.097656, 50.736455 ], [ -4.921875, 50.736455 ], [ -4.921875, 50.847573 ], [ -4.746094, 50.847573 ], [ -4.746094, 50.958427 ], [ -4.570312, 50.958427 ], [ -4.570312, 51.069017 ], [ -4.394531, 51.069017 ], [ -4.394531, 51.179343 ], [ -4.042969, 51.179343 ], [ -4.042969, 51.289406 ], [ -3.515625, 51.289406 ], [ -3.515625, 51.399206 ], [ -3.867188, 51.399206 ], [ -3.867188, 51.508742 ], [ -4.570312, 51.508742 ], [ -4.570312, 51.618017 ], [ -5.097656, 51.618017 ], [ -5.097656, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 51.944265 ], [ -4.921875, 51.944265 ], [ -4.921875, 52.052490 ], [ -4.570312, 52.052490 ], [ -4.570312, 52.160455 ], [ -4.218750, 52.160455 ], [ -4.218750, 52.268157 ], [ -4.394531, 52.268157 ], [ -4.394531, 52.482780 ], [ -4.570312, 52.482780 ], [ -4.570312, 52.696361 ], [ -4.746094, 52.696361 ], [ -4.746094, 53.120405 ], [ -4.570312, 53.120405 ], [ -4.570312, 53.540307 ], [ -4.042969, 53.540307 ], [ -4.042969, 53.435719 ], [ -3.164062, 53.435719 ], [ -3.164062, 53.644638 ], [ -2.988281, 53.644638 ], [ -2.988281, 53.956086 ], [ -3.164062, 53.956086 ], [ -3.164062, 54.162434 ], [ -3.339844, 54.162434 ], [ -3.339844, 54.265224 ], [ -3.515625, 54.265224 ], [ -3.515625, 54.470038 ], [ -3.691406, 54.470038 ], [ -3.691406, 54.572062 ], [ -4.042969, 54.572062 ], [ -4.042969, 54.673831 ], [ -4.746094, 54.673831 ], [ -4.746094, 54.775346 ], [ -4.921875, 54.775346 ], [ -4.921875, 54.876607 ], [ -5.097656, 54.876607 ], [ -5.097656, 55.178868 ], [ -4.921875, 55.178868 ], [ -4.921875, 55.379110 ], [ -4.746094, 55.379110 ], [ -4.746094, 55.478853 ], [ -4.921875, 55.478853 ], [ -4.921875, 55.677584 ], [ -5.273438, 55.677584 ], [ -5.273438, 55.478853 ], [ -5.449219, 55.478853 ], [ -5.449219, 55.279115 ], [ -5.625000, 55.279115 ], [ -5.625000, 56.267761 ], [ -5.800781, 56.267761 ], [ -5.800781, 56.462490 ], [ -5.976562, 56.462490 ], [ -5.976562, 56.656226 ], [ -6.152344, 56.656226 ], [ -6.152344, 56.944974 ], [ -5.976562, 56.944974 ], [ -5.976562, 57.515823 ], [ -5.800781, 57.515823 ], [ -5.800781, 57.891497 ], [ -5.625000, 57.891497 ], [ -5.625000, 58.077876 ], [ -5.449219, 58.077876 ], [ -5.449219, 58.263287 ], [ -5.273438, 58.263287 ], [ -5.273438, 58.447733 ], [ -5.097656, 58.447733 ], [ -5.097656, 58.631217 ], [ -4.746094, 58.631217 ], [ -4.746094, 58.539595 ], [ -3.515625, 58.539595 ], [ -3.515625, 58.631217 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -6.679688, 55.178868 ], [ -6.679688, 55.078367 ], [ -6.503906, 55.078367 ], [ -6.503906, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.876607 ], [ -6.152344, 54.876607 ], [ -6.152344, 54.775346 ], [ -5.976562, 54.775346 ], [ -5.976562, 54.673831 ], [ -5.800781, 54.673831 ], [ -5.800781, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.367759 ], [ -5.800781, 54.367759 ], [ -5.800781, 54.162434 ], [ -5.976562, 54.162434 ], [ -5.976562, 53.956086 ], [ -6.152344, 53.956086 ], [ -6.152344, 53.852527 ], [ -6.503906, 53.852527 ], [ -6.503906, 53.956086 ], [ -6.855469, 53.956086 ], [ -6.855469, 54.059388 ], [ -7.558594, 54.059388 ], [ -7.558594, 54.265224 ], [ -7.382812, 54.265224 ], [ -7.382812, 54.876607 ], [ -7.558594, 54.876607 ], [ -7.558594, 55.178868 ], [ -6.679688, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.951220 ], [ 0.878906, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.553080 ], [ 0.000000, 42.553080 ], [ 0.000000, 42.682435 ], [ -0.527344, 42.682435 ], [ -0.527344, 42.811522 ], [ -0.878906, 42.811522 ], [ -0.878906, 42.940339 ], [ -1.406250, 42.940339 ], [ -1.406250, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.325178 ], [ -1.933594, 43.325178 ], [ -1.933594, 43.452919 ], [ -1.757812, 43.452919 ], [ -1.757812, 43.707594 ], [ -1.582031, 43.707594 ], [ -1.582031, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 44.964798 ], [ -1.230469, 44.964798 ], [ -1.230469, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.582031, 46.316584 ], [ -1.582031, 46.437857 ], [ -1.757812, 46.437857 ], [ -1.757812, 46.558860 ], [ -1.933594, 46.558860 ], [ -1.933594, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 46.920255 ], [ -2.285156, 46.920255 ], [ -2.285156, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.159840 ], [ -2.636719, 47.159840 ], [ -2.636719, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.398349 ], [ -2.988281, 47.398349 ], [ -2.988281, 47.517201 ], [ -3.339844, 47.517201 ], [ -3.339844, 47.635784 ], [ -3.691406, 47.635784 ], [ -3.691406, 47.754098 ], [ -4.042969, 47.754098 ], [ -4.042969, 47.872144 ], [ -4.394531, 47.872144 ], [ -4.394531, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -4.218750, 48.690960 ], [ -4.218750, 48.806863 ], [ -3.515625, 48.806863 ], [ -3.515625, 48.922499 ], [ -2.988281, 48.922499 ], [ -2.988281, 48.806863 ], [ -2.109375, 48.806863 ], [ -2.109375, 48.690960 ], [ -1.582031, 48.690960 ], [ -1.582031, 48.922499 ], [ -1.757812, 48.922499 ], [ -1.757812, 49.382373 ], [ -1.933594, 49.382373 ], [ -1.933594, 49.610710 ], [ -1.582031, 49.610710 ], [ -1.582031, 49.496675 ], [ -1.230469, 49.496675 ], [ -1.230469, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.496675 ], [ -0.351562, 49.496675 ], [ -0.351562, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.724479 ], [ 0.351562, 49.724479 ], [ 0.351562, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 49.951220 ], [ 0.878906, 49.951220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 49.837982 ], [ 0.878906, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.553080 ], [ 0.000000, 42.553080 ], [ 0.000000, 42.682435 ], [ -0.527344, 42.682435 ], [ -0.527344, 42.811522 ], [ -0.878906, 42.811522 ], [ -0.878906, 42.940339 ], [ -1.406250, 42.940339 ], [ -1.406250, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.325178 ], [ -1.933594, 43.325178 ], [ -1.933594, 43.452919 ], [ -1.757812, 43.452919 ], [ -1.757812, 43.707594 ], [ -1.582031, 43.707594 ], [ -1.582031, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 44.964798 ], [ -1.230469, 44.964798 ], [ -1.230469, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.582031, 46.316584 ], [ -1.582031, 46.437857 ], [ -1.757812, 46.437857 ], [ -1.757812, 46.558860 ], [ -1.933594, 46.558860 ], [ -1.933594, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 46.920255 ], [ -2.285156, 46.920255 ], [ -2.285156, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.159840 ], [ -2.636719, 47.159840 ], [ -2.636719, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.398349 ], [ -2.988281, 47.398349 ], [ -2.988281, 47.517201 ], [ -3.339844, 47.517201 ], [ -3.339844, 47.635784 ], [ -3.691406, 47.635784 ], [ -3.691406, 47.754098 ], [ -4.042969, 47.754098 ], [ -4.042969, 47.872144 ], [ -4.394531, 47.872144 ], [ -4.394531, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -4.218750, 48.690960 ], [ -4.218750, 48.806863 ], [ -3.515625, 48.806863 ], [ -3.515625, 48.922499 ], [ -2.988281, 48.922499 ], [ -2.988281, 48.806863 ], [ -2.109375, 48.806863 ], [ -2.109375, 48.690960 ], [ -1.582031, 48.690960 ], [ -1.582031, 48.922499 ], [ -1.757812, 48.922499 ], [ -1.757812, 49.382373 ], [ -1.933594, 49.382373 ], [ -1.933594, 49.610710 ], [ -1.582031, 49.610710 ], [ -1.582031, 49.496675 ], [ -1.230469, 49.496675 ], [ -1.230469, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.496675 ], [ -0.351562, 49.496675 ], [ -0.351562, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.724479 ], [ 0.351562, 49.724479 ], [ 0.351562, 49.837982 ], [ 0.703125, 49.837982 ] ] ] } } , { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.163403 ], [ -8.261719, 42.032974 ], [ -8.085938, 42.032974 ], [ -8.085938, 41.771312 ], [ -7.207031, 41.771312 ], [ -7.207031, 41.902277 ], [ -6.679688, 41.902277 ], [ -6.679688, 41.771312 ], [ -6.503906, 41.771312 ], [ -6.503906, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.313043 ], [ -8.964844, 40.313043 ], [ -8.964844, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.376809 ], [ -8.964844, 41.376809 ], [ -8.964844, 41.902277 ], [ -8.789062, 41.902277 ], [ -8.789062, 42.032974 ], [ -8.613281, 42.032974 ], [ -8.613281, 42.163403 ], [ -8.261719, 42.163403 ] ] ] } } , @@ -1798,11 +1798,11 @@ , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 22.268764 ], [ -0.527344, 22.105999 ], [ -0.351562, 22.105999 ], [ -0.351562, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.527344, 21.453069 ], [ 0.527344, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 21.125498 ], [ 1.054688, 21.125498 ], [ 1.054688, 20.961440 ], [ 1.230469, 20.961440 ], [ 1.230469, 20.797201 ], [ 1.582031, 20.797201 ], [ 1.582031, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.468189 ], [ 1.933594, 20.468189 ], [ 1.933594, 20.138470 ], [ 2.109375, 20.138470 ], [ 2.109375, 19.973349 ], [ 2.460938, 19.973349 ], [ 2.460938, 19.808054 ], [ 2.812500, 19.808054 ], [ 2.812500, 19.642588 ], [ 3.164062, 19.642588 ], [ 3.164062, 18.979026 ], [ 3.867188, 18.979026 ], [ 3.867188, 19.145168 ], [ 4.218750, 19.145168 ], [ 4.218750, 16.636192 ], [ 4.042969, 16.636192 ], [ 4.042969, 16.467695 ], [ 3.867188, 16.467695 ], [ 3.867188, 16.130262 ], [ 3.691406, 16.130262 ], [ 3.691406, 15.623037 ], [ 3.339844, 15.623037 ], [ 3.339844, 15.453680 ], [ 2.285156, 15.453680 ], [ 2.285156, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 15.114553 ], [ 1.230469, 15.114553 ], [ 1.230469, 14.944785 ], [ -0.878906, 14.944785 ], [ -0.878906, 22.268764 ], [ -0.527344, 22.268764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.581921 ], [ 0.878906, 13.581921 ], [ 0.878906, 13.410994 ], [ 1.054688, 13.410994 ], [ 1.054688, 12.897489 ], [ 1.230469, 12.897489 ], [ 1.230469, 12.726084 ], [ 1.757812, 12.726084 ], [ 1.757812, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.695273 ], [ 1.757812, 11.695273 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 11.350797 ], [ 1.230469, 11.350797 ], [ 1.230469, 11.005904 ], [ -0.351562, 11.005904 ], [ -0.351562, 11.178402 ], [ -0.527344, 11.178402 ], [ -0.527344, 11.005904 ], [ -0.703125, 11.005904 ], [ -0.878906, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.581921 ], [ 0.878906, 13.581921 ], [ 0.878906, 13.410994 ], [ 1.054688, 13.410994 ], [ 1.054688, 12.897489 ], [ 1.230469, 12.897489 ], [ 1.230469, 12.726084 ], [ 1.757812, 12.726084 ], [ 1.757812, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.695273 ], [ 1.757812, 11.695273 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 11.350797 ], [ 1.230469, 11.350797 ], [ 1.230469, 11.005904 ], [ -0.351562, 11.005904 ], [ -0.351562, 11.178402 ], [ -0.527344, 11.178402 ], [ -0.878906, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.351562, 11.178402 ], [ -0.351562, 11.005904 ], [ 0.000000, 11.005904 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.141932 ], [ 0.351562, 10.141932 ], [ 0.351562, 9.102097 ], [ 0.527344, 9.102097 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 6.140555 ], [ 1.054688, 6.140555 ], [ 1.054688, 5.965754 ], [ 0.878906, 5.965754 ], [ 0.878906, 5.790897 ], [ 0.527344, 5.790897 ], [ 0.527344, 5.615986 ], [ 0.175781, 5.615986 ], [ 0.175781, 5.441022 ], [ -0.175781, 5.441022 ], [ -0.175781, 5.266008 ], [ -0.527344, 5.266008 ], [ -0.527344, 5.090944 ], [ -0.878906, 5.090944 ], [ -0.878906, 11.005904 ], [ -0.527344, 11.005904 ], [ -0.527344, 11.178402 ], [ -0.351562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.996163 ], [ 15.292969, 37.996163 ], [ 15.292969, 37.579413 ], [ 15.117188, 37.579413 ], [ 15.117188, 37.300275 ], [ 15.292969, 37.300275 ], [ 15.292969, 36.879621 ], [ 15.117188, 36.879621 ], [ 15.117188, 36.597889 ], [ 14.941406, 36.597889 ], [ 14.941406, 36.738884 ], [ 14.589844, 36.738884 ], [ 14.589844, 36.879621 ], [ 14.414062, 36.879621 ], [ 14.414062, 37.020098 ], [ 14.062500, 37.020098 ], [ 14.062500, 37.160317 ], [ 13.535156, 37.160317 ], [ 13.535156, 37.300275 ], [ 13.007812, 37.300275 ], [ 13.007812, 37.439974 ], [ 12.656250, 37.439974 ], [ 12.656250, 37.579413 ], [ 12.480469, 37.579413 ], [ 12.480469, 37.857507 ], [ 12.656250, 37.857507 ], [ 12.656250, 38.134557 ], [ 13.007812, 38.134557 ], [ 13.007812, 37.996163 ], [ 14.414062, 37.996163 ], [ 14.414062, 38.134557 ], [ 15.292969, 38.134557 ], [ 15.292969, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 15.996094, 41.640078 ], [ 15.996094, 41.376809 ], [ 16.347656, 41.376809 ], [ 16.347656, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.753906, 40.713956 ], [ 17.753906, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 18.457031, 40.313043 ], [ 18.457031, 39.909736 ], [ 18.281250, 39.909736 ], [ 18.281250, 39.774769 ], [ 18.105469, 39.774769 ], [ 18.105469, 40.044438 ], [ 17.929688, 40.044438 ], [ 17.929688, 40.178873 ], [ 17.753906, 40.178873 ], [ 17.753906, 40.313043 ], [ 17.226562, 40.313043 ], [ 17.226562, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 40.178873 ], [ 16.699219, 40.178873 ], [ 16.699219, 39.909736 ], [ 16.523438, 39.909736 ], [ 16.523438, 39.639538 ], [ 16.699219, 39.639538 ], [ 16.699219, 39.504041 ], [ 17.050781, 39.504041 ], [ 17.050781, 39.368279 ], [ 17.226562, 39.368279 ], [ 17.226562, 39.095963 ], [ 17.050781, 39.095963 ], [ 17.050781, 38.822591 ], [ 16.699219, 38.822591 ], [ 16.699219, 38.685510 ], [ 16.523438, 38.685510 ], [ 16.523438, 38.410558 ], [ 16.347656, 38.410558 ], [ 16.347656, 38.134557 ], [ 16.171875, 38.134557 ], [ 16.171875, 37.996163 ], [ 15.996094, 37.996163 ], [ 15.996094, 37.857507 ], [ 15.644531, 37.857507 ], [ 15.644531, 38.410558 ], [ 15.820312, 38.410558 ], [ 15.820312, 38.685510 ], [ 15.996094, 38.685510 ], [ 15.996094, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 38.959409 ], [ 15.996094, 38.959409 ], [ 15.996094, 39.232253 ], [ 15.820312, 39.232253 ], [ 15.820312, 39.368279 ], [ 15.644531, 39.368279 ], [ 15.644531, 39.774769 ], [ 15.468750, 39.774769 ], [ 15.468750, 40.044438 ], [ 15.117188, 40.044438 ], [ 15.117188, 40.178873 ], [ 14.941406, 40.178873 ], [ 14.941406, 40.313043 ], [ 14.765625, 40.313043 ], [ 14.765625, 40.580585 ], [ 14.414062, 40.580585 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 41.112469 ], [ 13.710938, 41.112469 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.376809 ], [ 12.304688, 41.376809 ], [ 12.304688, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 15.996094, 41.640078 ] ] ], [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.713956 ], [ 9.667969, 40.713956 ], [ 9.667969, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.774769 ], [ 9.667969, 39.774769 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.232253 ], [ 9.140625, 39.095963 ], [ 8.964844, 39.095963 ], [ 8.964844, 38.959409 ], [ 8.613281, 38.959409 ], [ 8.613281, 39.095963 ], [ 8.437500, 39.095963 ], [ 8.437500, 40.446947 ], [ 8.261719, 40.446947 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.261719, 40.979898 ], [ 8.261719, 40.847060 ], [ 8.964844, 40.847060 ], [ 8.964844, 41.112469 ], [ 9.316406, 41.112469 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.996163 ], [ 15.292969, 37.996163 ], [ 15.292969, 37.579413 ], [ 15.117188, 37.579413 ], [ 15.117188, 37.300275 ], [ 15.292969, 37.300275 ], [ 15.292969, 36.879621 ], [ 15.117188, 36.879621 ], [ 15.117188, 36.597889 ], [ 14.941406, 36.597889 ], [ 14.941406, 36.738884 ], [ 14.589844, 36.738884 ], [ 14.589844, 36.879621 ], [ 14.414062, 36.879621 ], [ 14.414062, 37.020098 ], [ 14.062500, 37.020098 ], [ 14.062500, 37.160317 ], [ 13.535156, 37.160317 ], [ 13.535156, 37.300275 ], [ 13.007812, 37.300275 ], [ 13.007812, 37.439974 ], [ 12.656250, 37.439974 ], [ 12.656250, 37.579413 ], [ 12.480469, 37.579413 ], [ 12.480469, 37.857507 ], [ 12.656250, 37.857507 ], [ 12.656250, 38.134557 ], [ 13.007812, 38.134557 ], [ 13.007812, 37.996163 ], [ 14.414062, 37.996163 ], [ 14.414062, 38.134557 ], [ 15.292969, 38.134557 ], [ 15.292969, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 15.996094, 41.640078 ], [ 15.996094, 41.376809 ], [ 16.347656, 41.376809 ], [ 16.347656, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.753906, 40.713956 ], [ 17.753906, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 18.457031, 40.313043 ], [ 18.457031, 39.909736 ], [ 18.281250, 39.909736 ], [ 18.281250, 39.774769 ], [ 18.105469, 39.774769 ], [ 18.105469, 40.044438 ], [ 17.929688, 40.044438 ], [ 17.929688, 40.178873 ], [ 17.753906, 40.178873 ], [ 17.753906, 40.313043 ], [ 17.226562, 40.313043 ], [ 17.226562, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 40.178873 ], [ 16.699219, 40.178873 ], [ 16.699219, 39.909736 ], [ 16.523438, 39.909736 ], [ 16.523438, 39.639538 ], [ 16.699219, 39.639538 ], [ 16.699219, 39.504041 ], [ 17.050781, 39.504041 ], [ 17.050781, 39.368279 ], [ 17.226562, 39.368279 ], [ 17.226562, 39.095963 ], [ 17.050781, 39.095963 ], [ 17.050781, 38.822591 ], [ 16.699219, 38.822591 ], [ 16.699219, 38.685510 ], [ 16.523438, 38.685510 ], [ 16.523438, 38.410558 ], [ 16.347656, 38.410558 ], [ 16.347656, 38.134557 ], [ 16.171875, 38.134557 ], [ 16.171875, 37.996163 ], [ 15.996094, 37.996163 ], [ 15.996094, 37.857507 ], [ 15.644531, 37.857507 ], [ 15.644531, 38.410558 ], [ 15.820312, 38.410558 ], [ 15.820312, 38.685510 ], [ 15.996094, 38.685510 ], [ 15.996094, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 38.959409 ], [ 15.996094, 38.959409 ], [ 15.996094, 39.232253 ], [ 15.820312, 39.232253 ], [ 15.820312, 39.368279 ], [ 15.644531, 39.368279 ], [ 15.644531, 39.774769 ], [ 15.468750, 39.774769 ], [ 15.468750, 40.044438 ], [ 15.117188, 40.044438 ], [ 15.117188, 40.178873 ], [ 14.941406, 40.178873 ], [ 14.941406, 40.313043 ], [ 14.765625, 40.313043 ], [ 14.765625, 40.580585 ], [ 14.414062, 40.580585 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 41.112469 ], [ 13.710938, 41.112469 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.376809 ], [ 12.304688, 41.376809 ], [ 12.304688, 41.508577 ], [ 15.996094, 41.640078 ] ] ], [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.713956 ], [ 9.667969, 40.713956 ], [ 9.667969, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.774769 ], [ 9.667969, 39.774769 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.232253 ], [ 9.140625, 39.095963 ], [ 8.964844, 39.095963 ], [ 8.964844, 38.959409 ], [ 8.613281, 38.959409 ], [ 8.613281, 39.095963 ], [ 8.437500, 39.095963 ], [ 8.437500, 40.446947 ], [ 8.261719, 40.446947 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.261719, 40.979898 ], [ 8.261719, 40.847060 ], [ 8.964844, 40.847060 ], [ 8.964844, 41.112469 ], [ 9.316406, 41.112469 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 41.640078 ], [ 20.566406, 41.508577 ], [ 20.390625, 41.508577 ], [ 20.390625, 41.244772 ], [ 20.566406, 41.244772 ], [ 20.566406, 40.979898 ], [ 20.917969, 40.979898 ], [ 20.917969, 40.847060 ], [ 21.093750, 40.847060 ], [ 21.093750, 40.713956 ], [ 20.917969, 40.713956 ], [ 20.917969, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.178873 ], [ 20.566406, 40.178873 ], [ 20.566406, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 39.639538 ], [ 20.039062, 39.639538 ], [ 20.039062, 39.909736 ], [ 19.863281, 39.909736 ], [ 19.863281, 40.044438 ], [ 19.511719, 40.044438 ], [ 19.511719, 40.178873 ], [ 19.335938, 40.178873 ], [ 19.335938, 41.508577 ], [ 19.511719, 41.508577 ], [ 19.511719, 41.640078 ], [ 20.566406, 41.640078 ] ] ] } } , @@ -1858,7 +1858,7 @@ , { "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.914062, 21.943046 ], [ 36.914062, 21.616579 ], [ 37.089844, 21.616579 ], [ 37.089844, 21.125498 ], [ 37.265625, 21.125498 ], [ 37.265625, 20.797201 ], [ 36.914062, 20.797201 ], [ 36.914062, 20.303418 ], [ 37.089844, 20.303418 ], [ 37.089844, 19.476950 ], [ 37.265625, 19.476950 ], [ 37.265625, 18.812718 ], [ 37.441406, 18.812718 ], [ 37.441406, 18.479609 ], [ 37.617188, 18.479609 ], [ 37.617188, 18.312811 ], [ 37.792969, 18.312811 ], [ 37.792969, 18.145852 ], [ 38.144531, 18.145852 ], [ 38.144531, 17.978733 ], [ 38.496094, 17.978733 ], [ 38.496094, 17.811456 ], [ 38.320312, 17.811456 ], [ 38.320312, 17.644022 ], [ 38.144531, 17.644022 ], [ 38.144531, 17.476432 ], [ 37.617188, 17.476432 ], [ 37.617188, 17.308688 ], [ 37.089844, 17.308688 ], [ 37.089844, 17.140790 ], [ 36.914062, 17.140790 ], [ 36.914062, 16.636192 ], [ 36.738281, 16.636192 ], [ 36.738281, 15.792254 ], [ 36.562500, 15.792254 ], [ 36.562500, 15.114553 ], [ 36.386719, 15.114553 ], [ 36.386719, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 13.239945 ], [ 36.035156, 13.239945 ], [ 36.035156, 12.726084 ], [ 35.859375, 12.726084 ], [ 35.859375, 12.382928 ], [ 35.683594, 12.382928 ], [ 35.683594, 12.211180 ], [ 35.507812, 12.211180 ], [ 35.507812, 12.039321 ], [ 35.332031, 12.039321 ], [ 35.332031, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 11.695273 ], [ 34.980469, 11.695273 ], [ 34.980469, 11.350797 ], [ 34.804688, 11.350797 ], [ 34.804688, 10.833306 ], [ 34.628906, 10.833306 ], [ 34.628906, 10.660608 ], [ 34.277344, 10.660608 ], [ 34.277344, 10.314919 ], [ 34.101562, 10.314919 ], [ 34.101562, 9.795678 ], [ 33.925781, 9.795678 ], [ 33.925781, 10.141932 ], [ 33.750000, 10.141932 ], [ 33.750000, 10.314919 ], [ 33.574219, 10.314919 ], [ 33.574219, 10.487812 ], [ 33.222656, 10.487812 ], [ 33.222656, 11.005904 ], [ 33.046875, 11.005904 ], [ 33.046875, 11.867351 ], [ 33.222656, 11.867351 ], [ 33.222656, 12.211180 ], [ 32.695312, 12.211180 ], [ 32.695312, 12.039321 ], [ 31.992188, 12.039321 ], [ 31.992188, 11.867351 ], [ 32.167969, 11.867351 ], [ 32.167969, 11.695273 ], [ 32.343750, 11.695273 ], [ 32.343750, 10.833306 ], [ 32.167969, 10.833306 ], [ 32.167969, 10.660608 ], [ 31.992188, 10.660608 ], [ 31.992188, 10.487812 ], [ 31.816406, 10.487812 ], [ 31.816406, 10.314919 ], [ 31.640625, 10.314919 ], [ 31.640625, 10.141932 ], [ 31.464844, 10.141932 ], [ 31.464844, 9.795678 ], [ 31.113281, 9.795678 ], [ 31.113281, 9.622414 ], [ 30.585938, 9.622414 ], [ 30.585938, 9.795678 ], [ 30.410156, 9.795678 ], [ 30.410156, 9.968851 ], [ 30.234375, 9.968851 ], [ 30.234375, 10.141932 ], [ 30.058594, 10.141932 ], [ 30.058594, 10.314919 ], [ 29.882812, 10.314919 ], [ 29.882812, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.795678 ], [ 29.355469, 9.795678 ], [ 29.355469, 9.622414 ], [ 29.003906, 9.622414 ], [ 29.003906, 9.449062 ], [ 27.773438, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.622414 ], [ 27.070312, 9.449062 ], [ 26.542969, 9.449062 ], [ 26.542969, 9.622414 ], [ 26.367188, 9.622414 ], [ 26.367188, 9.795678 ], [ 26.191406, 9.795678 ], [ 26.191406, 9.968851 ], [ 26.015625, 9.968851 ], [ 26.015625, 10.314919 ], [ 25.839844, 10.314919 ], [ 25.839844, 10.487812 ], [ 25.664062, 10.487812 ], [ 25.664062, 10.314919 ], [ 25.136719, 10.314919 ], [ 25.136719, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 9.795678 ], [ 24.785156, 9.795678 ], [ 24.785156, 9.275622 ], [ 24.609375, 9.275622 ], [ 24.609375, 8.754795 ], [ 24.257812, 8.754795 ], [ 24.257812, 8.581021 ], [ 23.554688, 8.581021 ], [ 23.554688, 8.754795 ], [ 23.378906, 8.754795 ], [ 23.378906, 9.449062 ], [ 23.554688, 9.449062 ], [ 23.554688, 10.141932 ], [ 23.378906, 10.141932 ], [ 23.378906, 10.314919 ], [ 23.203125, 10.314919 ], [ 23.203125, 10.487812 ], [ 23.027344, 10.487812 ], [ 23.027344, 10.833306 ], [ 22.851562, 10.833306 ], [ 22.851562, 11.350797 ], [ 22.675781, 11.350797 ], [ 22.675781, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.382928 ], [ 22.324219, 12.382928 ], [ 22.324219, 12.554564 ], [ 21.972656, 12.554564 ], [ 21.972656, 12.897489 ], [ 22.148438, 12.897489 ], [ 22.148438, 13.239945 ], [ 22.324219, 13.239945 ], [ 22.324219, 13.581921 ], [ 22.148438, 13.581921 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.752725 ], [ 22.324219, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 14.093957 ], [ 22.324219, 14.093957 ], [ 22.324219, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 14.944785 ], [ 22.675781, 14.944785 ], [ 22.675781, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.453680 ], [ 23.027344, 15.453680 ], [ 23.027344, 15.623037 ], [ 23.906250, 15.623037 ], [ 23.906250, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 21.943046 ], [ 36.914062, 21.943046 ] ] ], [ [ [ 33.925781, 9.622414 ], [ 33.925781, 9.449062 ], [ 33.750000, 9.449062 ], [ 33.750000, 9.622414 ], [ 33.925781, 9.622414 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.222656, 12.211180 ], [ 33.222656, 11.867351 ], [ 33.046875, 11.867351 ], [ 33.046875, 11.005904 ], [ 33.222656, 11.005904 ], [ 33.222656, 10.487812 ], [ 33.574219, 10.487812 ], [ 33.574219, 10.314919 ], [ 33.750000, 10.314919 ], [ 33.750000, 10.141932 ], [ 33.925781, 10.141932 ], [ 33.925781, 9.622414 ], [ 33.750000, 9.622414 ], [ 33.750000, 9.449062 ], [ 33.925781, 9.449062 ], [ 33.925781, 8.581021 ], [ 33.750000, 8.581021 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 33.222656, 8.233237 ], [ 33.046875, 8.233237 ], [ 33.046875, 7.885147 ], [ 32.871094, 7.885147 ], [ 32.871094, 7.710992 ], [ 33.574219, 7.710992 ], [ 33.574219, 7.536764 ], [ 33.750000, 7.536764 ], [ 33.750000, 7.362467 ], [ 33.925781, 7.362467 ], [ 33.925781, 7.188101 ], [ 34.101562, 7.188101 ], [ 34.101562, 7.013668 ], [ 34.277344, 7.013668 ], [ 34.277344, 6.664608 ], [ 34.628906, 6.664608 ], [ 34.628906, 6.489983 ], [ 34.804688, 6.489983 ], [ 34.804688, 6.140555 ], [ 34.980469, 6.140555 ], [ 34.980469, 5.790897 ], [ 35.156250, 5.790897 ], [ 35.156250, 5.441022 ], [ 35.332031, 5.441022 ], [ 35.332031, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.090944 ], [ 34.804688, 5.090944 ], [ 34.804688, 4.915833 ], [ 34.628906, 4.915833 ], [ 34.628906, 4.740675 ], [ 34.453125, 4.740675 ], [ 34.453125, 4.565474 ], [ 34.277344, 4.565474 ], [ 34.277344, 4.390229 ], [ 34.101562, 4.390229 ], [ 34.101562, 4.214943 ], [ 33.925781, 4.214943 ], [ 33.925781, 4.039618 ], [ 33.574219, 4.039618 ], [ 33.574219, 3.864255 ], [ 32.519531, 3.864255 ], [ 32.519531, 3.688855 ], [ 32.167969, 3.688855 ], [ 32.167969, 3.513421 ], [ 31.640625, 3.513421 ], [ 31.640625, 3.688855 ], [ 30.937500, 3.688855 ], [ 30.937500, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.688855 ], [ 30.410156, 3.688855 ], [ 30.410156, 3.864255 ], [ 30.058594, 3.864255 ], [ 30.058594, 4.039618 ], [ 29.882812, 4.039618 ], [ 29.882812, 4.390229 ], [ 29.707031, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.531250, 4.565474 ], [ 29.531250, 4.390229 ], [ 28.652344, 4.390229 ], [ 28.652344, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.390229 ], [ 27.773438, 4.390229 ], [ 27.773438, 4.740675 ], [ 27.597656, 4.740675 ], [ 27.597656, 5.090944 ], [ 27.421875, 5.090944 ], [ 27.421875, 5.441022 ], [ 27.246094, 5.441022 ], [ 27.246094, 5.615986 ], [ 26.894531, 5.615986 ], [ 26.894531, 5.790897 ], [ 26.542969, 5.790897 ], [ 26.542969, 5.965754 ], [ 26.367188, 5.965754 ], [ 26.367188, 6.315299 ], [ 26.191406, 6.315299 ], [ 26.191406, 6.489983 ], [ 26.015625, 6.489983 ], [ 26.015625, 6.839170 ], [ 25.839844, 6.839170 ], [ 25.839844, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 7.188101 ], [ 25.312500, 7.188101 ], [ 25.312500, 7.362467 ], [ 25.136719, 7.362467 ], [ 25.136719, 7.885147 ], [ 24.960938, 7.885147 ], [ 24.960938, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 8.233237 ], [ 24.257812, 8.233237 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.581021 ], [ 24.257812, 8.581021 ], [ 24.257812, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.275622 ], [ 24.785156, 9.275622 ], [ 24.785156, 9.795678 ], [ 24.960938, 9.795678 ], [ 24.960938, 10.141932 ], [ 25.136719, 10.141932 ], [ 25.136719, 10.314919 ], [ 25.664062, 10.314919 ], [ 25.664062, 10.487812 ], [ 25.839844, 10.487812 ], [ 25.839844, 10.314919 ], [ 26.015625, 10.314919 ], [ 26.015625, 9.968851 ], [ 26.191406, 9.968851 ], [ 26.191406, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.622414 ], [ 26.542969, 9.622414 ], [ 26.542969, 9.449062 ], [ 27.070312, 9.449062 ], [ 27.070312, 9.622414 ], [ 27.773438, 9.622414 ], [ 27.773438, 9.449062 ], [ 29.003906, 9.449062 ], [ 29.003906, 9.622414 ], [ 29.355469, 9.622414 ], [ 29.355469, 9.795678 ], [ 29.531250, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.882812, 10.141932 ], [ 29.882812, 10.314919 ], [ 30.058594, 10.314919 ], [ 30.058594, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.968851 ], [ 30.410156, 9.968851 ], [ 30.410156, 9.795678 ], [ 30.585938, 9.795678 ], [ 30.585938, 9.622414 ], [ 31.113281, 9.622414 ], [ 31.113281, 9.795678 ], [ 31.464844, 9.795678 ], [ 31.464844, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 10.314919 ], [ 31.816406, 10.314919 ], [ 31.816406, 10.487812 ], [ 31.992188, 10.487812 ], [ 31.992188, 10.660608 ], [ 32.167969, 10.660608 ], [ 32.167969, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.695273 ], [ 32.167969, 11.695273 ], [ 32.167969, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 12.039321 ], [ 32.695312, 12.039321 ], [ 32.695312, 12.211180 ], [ 33.222656, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 8.581021 ], [ 33.750000, 8.581021 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 33.222656, 8.233237 ], [ 33.046875, 8.233237 ], [ 33.046875, 7.885147 ], [ 32.871094, 7.885147 ], [ 32.871094, 7.710992 ], [ 33.574219, 7.710992 ], [ 33.574219, 7.536764 ], [ 33.750000, 7.536764 ], [ 33.750000, 7.362467 ], [ 33.925781, 7.362467 ], [ 33.925781, 7.188101 ], [ 34.101562, 7.188101 ], [ 34.101562, 7.013668 ], [ 34.277344, 7.013668 ], [ 34.277344, 6.664608 ], [ 34.628906, 6.664608 ], [ 34.628906, 6.489983 ], [ 34.804688, 6.489983 ], [ 34.804688, 6.140555 ], [ 34.980469, 6.140555 ], [ 34.980469, 5.790897 ], [ 35.156250, 5.790897 ], [ 35.156250, 5.441022 ], [ 35.332031, 5.441022 ], [ 35.332031, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.090944 ], [ 34.804688, 5.090944 ], [ 34.804688, 4.915833 ], [ 34.628906, 4.915833 ], [ 34.628906, 4.740675 ], [ 34.453125, 4.740675 ], [ 34.453125, 4.565474 ], [ 34.277344, 4.565474 ], [ 34.277344, 4.390229 ], [ 34.101562, 4.390229 ], [ 34.101562, 4.214943 ], [ 33.925781, 4.214943 ], [ 33.925781, 4.039618 ], [ 33.574219, 4.039618 ], [ 33.574219, 3.864255 ], [ 32.519531, 3.864255 ], [ 32.519531, 3.688855 ], [ 32.167969, 3.688855 ], [ 32.167969, 3.513421 ], [ 31.640625, 3.513421 ], [ 31.640625, 3.688855 ], [ 30.937500, 3.688855 ], [ 30.937500, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.688855 ], [ 30.410156, 3.688855 ], [ 30.410156, 3.864255 ], [ 30.058594, 3.864255 ], [ 30.058594, 4.039618 ], [ 29.882812, 4.039618 ], [ 29.882812, 4.390229 ], [ 29.707031, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.531250, 4.565474 ], [ 29.531250, 4.390229 ], [ 28.652344, 4.390229 ], [ 28.652344, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.390229 ], [ 27.773438, 4.390229 ], [ 27.773438, 4.740675 ], [ 27.597656, 4.740675 ], [ 27.597656, 5.090944 ], [ 27.421875, 5.090944 ], [ 27.421875, 5.441022 ], [ 27.246094, 5.441022 ], [ 27.246094, 5.615986 ], [ 26.894531, 5.615986 ], [ 26.894531, 5.790897 ], [ 26.542969, 5.790897 ], [ 26.542969, 5.965754 ], [ 26.367188, 5.965754 ], [ 26.367188, 6.315299 ], [ 26.191406, 6.315299 ], [ 26.191406, 6.489983 ], [ 26.015625, 6.489983 ], [ 26.015625, 6.839170 ], [ 25.839844, 6.839170 ], [ 25.839844, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 7.188101 ], [ 25.312500, 7.188101 ], [ 25.312500, 7.362467 ], [ 25.136719, 7.362467 ], [ 25.136719, 7.885147 ], [ 24.960938, 7.885147 ], [ 24.960938, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 8.233237 ], [ 24.257812, 8.233237 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.581021 ], [ 24.257812, 8.581021 ], [ 24.257812, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.275622 ], [ 24.785156, 9.275622 ], [ 24.785156, 9.795678 ], [ 24.960938, 9.795678 ], [ 24.960938, 10.141932 ], [ 25.136719, 10.141932 ], [ 25.136719, 10.314919 ], [ 25.664062, 10.314919 ], [ 25.664062, 10.487812 ], [ 25.839844, 10.487812 ], [ 25.839844, 10.314919 ], [ 26.015625, 10.314919 ], [ 26.015625, 9.968851 ], [ 26.191406, 9.968851 ], [ 26.191406, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.622414 ], [ 26.542969, 9.622414 ], [ 26.542969, 9.449062 ], [ 27.070312, 9.449062 ], [ 27.070312, 9.622414 ], [ 27.773438, 9.622414 ], [ 27.773438, 9.449062 ], [ 29.003906, 9.449062 ], [ 29.003906, 9.622414 ], [ 29.355469, 9.622414 ], [ 29.355469, 9.795678 ], [ 29.531250, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.882812, 10.141932 ], [ 29.882812, 10.314919 ], [ 30.058594, 10.314919 ], [ 30.058594, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.968851 ], [ 30.410156, 9.968851 ], [ 30.410156, 9.795678 ], [ 30.585938, 9.795678 ], [ 30.585938, 9.622414 ], [ 31.113281, 9.622414 ], [ 31.113281, 9.795678 ], [ 31.464844, 9.795678 ], [ 31.464844, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 10.314919 ], [ 31.816406, 10.314919 ], [ 31.816406, 10.487812 ], [ 31.992188, 10.487812 ], [ 31.992188, 10.660608 ], [ 32.167969, 10.660608 ], [ 32.167969, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.695273 ], [ 32.167969, 11.695273 ], [ 32.167969, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 12.039321 ], [ 32.695312, 12.039321 ], [ 32.695312, 12.211180 ], [ 33.222656, 12.211180 ], [ 33.222656, 11.867351 ], [ 33.046875, 11.867351 ], [ 33.046875, 11.005904 ], [ 33.222656, 11.005904 ], [ 33.222656, 10.487812 ], [ 33.574219, 10.487812 ], [ 33.574219, 10.314919 ], [ 33.750000, 10.314919 ], [ 33.750000, 10.141932 ], [ 33.925781, 10.141932 ], [ 33.925781, 8.581021 ] ] ] } } , { "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 4.039618 ], [ 34.101562, 3.864255 ], [ 34.277344, 3.864255 ], [ 34.277344, 3.513421 ], [ 34.453125, 3.513421 ], [ 34.453125, 3.162456 ], [ 34.628906, 3.162456 ], [ 34.628906, 2.635789 ], [ 34.804688, 2.635789 ], [ 34.804688, 2.108899 ], [ 34.980469, 2.108899 ], [ 34.980469, 1.757537 ], [ 34.804688, 1.757537 ], [ 34.804688, 1.406109 ], [ 34.628906, 1.406109 ], [ 34.628906, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 0.878872 ], [ 34.277344, 0.878872 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, -0.878872 ], [ 29.531250, -0.878872 ], [ 29.531250, -0.527336 ], [ 29.707031, -0.527336 ], [ 29.707031, -0.351560 ], [ 29.882812, -0.351560 ], [ 29.882812, 0.703107 ], [ 30.058594, 0.703107 ], [ 30.058594, 1.054628 ], [ 30.234375, 1.054628 ], [ 30.234375, 1.406109 ], [ 30.410156, 1.406109 ], [ 30.410156, 1.581830 ], [ 30.585938, 1.581830 ], [ 30.585938, 1.757537 ], [ 30.937500, 1.757537 ], [ 30.937500, 2.108899 ], [ 31.113281, 2.108899 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.284551 ], [ 30.761719, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 3.688855 ], [ 31.640625, 3.688855 ], [ 31.640625, 3.513421 ], [ 32.167969, 3.513421 ], [ 32.167969, 3.688855 ], [ 32.519531, 3.688855 ], [ 32.519531, 3.864255 ], [ 33.574219, 3.864255 ], [ 33.574219, 4.039618 ], [ 34.101562, 4.039618 ] ] ] } } , @@ -1972,7 +1972,7 @@ , { "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.446947 ], [ 43.769531, 40.446947 ], [ 43.769531, 40.847060 ], [ 43.593750, 40.847060 ], [ 43.593750, 41.112469 ], [ 44.472656, 41.112469 ], [ 44.472656, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 45.878906, 41.112469 ], [ 45.878906, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 45.878906, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ] ] ] } } ] } ] } , @@ -2076,17 +2076,17 @@ , { "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.332031, 9.622414 ], [ 80.332031, 9.449062 ], [ 80.683594, 9.449062 ], [ 80.683594, 9.275622 ], [ 80.859375, 9.275622 ], [ 80.859375, 9.102097 ], [ 81.035156, 9.102097 ], [ 81.035156, 8.928487 ], [ 81.210938, 8.928487 ], [ 81.210938, 8.581021 ], [ 81.386719, 8.581021 ], [ 81.386719, 8.233237 ], [ 81.562500, 8.233237 ], [ 81.562500, 7.710992 ], [ 81.738281, 7.710992 ], [ 81.738281, 7.013668 ], [ 81.562500, 7.013668 ], [ 81.562500, 6.315299 ], [ 81.386719, 6.315299 ], [ 81.386719, 6.140555 ], [ 80.859375, 6.140555 ], [ 80.859375, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.980469, 6.315299 ], [ 79.980469, 6.664608 ], [ 79.804688, 6.664608 ], [ 79.804688, 7.536764 ], [ 79.628906, 7.536764 ], [ 79.628906, 8.407168 ], [ 79.804688, 8.407168 ], [ 79.804688, 8.928487 ], [ 79.980469, 8.928487 ], [ 79.980469, 9.449062 ], [ 80.156250, 9.449062 ], [ 80.156250, 9.622414 ], [ 80.332031, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.351562, 28.149503 ], [ 90.351562, 27.994401 ], [ 90.878906, 27.994401 ], [ 90.878906, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 88.945312, 26.902477 ], [ 88.945312, 27.059126 ], [ 88.769531, 27.059126 ], [ 88.769531, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.527758 ], [ 89.121094, 27.527758 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.839076 ], [ 89.472656, 27.839076 ], [ 89.472656, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 28.149503 ], [ 90.351562, 28.149503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.351562, 28.149503 ], [ 90.351562, 27.994401 ], [ 90.703125, 27.994401 ], [ 90.878906, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 88.945312, 26.902477 ], [ 88.945312, 27.059126 ], [ 88.769531, 27.059126 ], [ 88.769531, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.527758 ], [ 89.121094, 27.527758 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.839076 ], [ 89.472656, 27.839076 ], [ 89.472656, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 28.149503 ], [ 90.351562, 28.149503 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.769531, 26.273714 ], [ 88.769531, 26.115986 ], [ 89.121094, 26.115986 ], [ 89.121094, 25.958045 ], [ 89.824219, 25.958045 ], [ 89.824219, 25.641526 ], [ 90.000000, 25.641526 ], [ 90.000000, 25.324167 ], [ 90.351562, 25.324167 ], [ 90.351562, 25.165173 ], [ 90.878906, 25.165173 ], [ 90.878906, 22.755921 ], [ 90.527344, 22.755921 ], [ 90.527344, 22.105999 ], [ 90.351562, 22.105999 ], [ 90.351562, 21.779905 ], [ 90.175781, 21.779905 ], [ 90.175781, 21.943046 ], [ 89.648438, 21.943046 ], [ 89.648438, 21.779905 ], [ 89.472656, 21.779905 ], [ 89.472656, 21.943046 ], [ 89.121094, 21.943046 ], [ 89.121094, 22.105999 ], [ 88.945312, 22.105999 ], [ 88.945312, 23.079732 ], [ 88.769531, 23.079732 ], [ 88.769531, 23.402765 ], [ 88.593750, 23.402765 ], [ 88.593750, 23.885838 ], [ 88.769531, 23.885838 ], [ 88.769531, 24.206890 ], [ 88.417969, 24.206890 ], [ 88.417969, 24.367114 ], [ 88.066406, 24.367114 ], [ 88.066406, 24.686952 ], [ 88.242188, 24.686952 ], [ 88.242188, 24.846565 ], [ 88.593750, 24.846565 ], [ 88.593750, 25.005973 ], [ 88.945312, 25.005973 ], [ 88.945312, 25.165173 ], [ 88.769531, 25.165173 ], [ 88.769531, 25.324167 ], [ 88.593750, 25.324167 ], [ 88.593750, 25.482951 ], [ 88.417969, 25.482951 ], [ 88.417969, 25.641526 ], [ 88.242188, 25.641526 ], [ 88.242188, 25.958045 ], [ 88.417969, 25.958045 ], [ 88.417969, 26.273714 ], [ 88.769531, 26.273714 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 27.994401 ], [ 90.351562, 27.994401 ], [ 90.351562, 28.149503 ], [ 89.648438, 28.149503 ], [ 89.648438, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 27.527758 ], [ 88.945312, 27.527758 ], [ 88.945312, 27.371767 ], [ 88.769531, 27.371767 ], [ 88.769531, 27.994401 ], [ 88.417969, 27.994401 ], [ 88.417969, 27.839076 ], [ 87.363281, 27.839076 ], [ 87.363281, 27.994401 ], [ 86.308594, 27.994401 ], [ 86.308594, 28.149503 ], [ 85.605469, 28.149503 ], [ 85.605469, 28.304381 ], [ 85.253906, 28.304381 ], [ 85.253906, 28.459033 ], [ 85.078125, 28.459033 ], [ 85.078125, 28.613459 ], [ 84.550781, 28.613459 ], [ 84.550781, 28.767659 ], [ 84.199219, 28.767659 ], [ 84.199219, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.847656, 29.228890 ], [ 83.847656, 29.382175 ], [ 83.496094, 29.382175 ], [ 83.496094, 29.535230 ], [ 83.144531, 29.535230 ], [ 83.144531, 29.688053 ], [ 82.792969, 29.688053 ], [ 82.792969, 29.840644 ], [ 82.617188, 29.840644 ], [ 82.617188, 29.993002 ], [ 82.265625, 29.993002 ], [ 82.265625, 30.145127 ], [ 81.914062, 30.145127 ], [ 81.914062, 30.297018 ], [ 81.210938, 30.297018 ], [ 81.210938, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 30.297018 ], [ 80.507812, 30.297018 ], [ 80.507812, 30.448674 ], [ 80.332031, 30.448674 ], [ 80.332031, 30.600094 ], [ 80.156250, 30.600094 ], [ 80.156250, 30.751278 ], [ 79.804688, 30.751278 ], [ 79.804688, 30.902225 ], [ 79.628906, 30.902225 ], [ 79.628906, 31.052934 ], [ 79.277344, 31.052934 ], [ 79.277344, 31.203405 ], [ 79.101562, 31.203405 ], [ 79.101562, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.653381 ], [ 78.574219, 31.653381 ], [ 78.574219, 32.249974 ], [ 78.398438, 32.249974 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 32.694866 ], [ 79.277344, 32.694866 ], [ 79.277344, 32.990236 ], [ 79.101562, 32.990236 ], [ 79.101562, 33.284620 ], [ 78.925781, 33.284620 ], [ 78.925781, 33.431441 ], [ 78.750000, 33.431441 ], [ 78.750000, 33.870416 ], [ 78.925781, 33.870416 ], [ 78.925781, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 34.597042 ], [ 78.574219, 34.597042 ], [ 78.574219, 34.741612 ], [ 78.398438, 34.741612 ], [ 78.398438, 34.885931 ], [ 78.222656, 34.885931 ], [ 78.222656, 35.173808 ], [ 78.046875, 35.173808 ], [ 78.046875, 35.317366 ], [ 77.871094, 35.317366 ], [ 77.871094, 35.460670 ], [ 77.519531, 35.460670 ], [ 77.519531, 35.603719 ], [ 76.816406, 35.603719 ], [ 76.816406, 35.746512 ], [ 76.289062, 35.746512 ], [ 76.289062, 35.889050 ], [ 76.113281, 35.889050 ], [ 76.113281, 36.173357 ], [ 75.937500, 36.173357 ], [ 75.937500, 36.597889 ], [ 75.761719, 36.597889 ], [ 75.761719, 36.738884 ], [ 75.585938, 36.738884 ], [ 75.585938, 36.879621 ], [ 75.410156, 36.879621 ], [ 75.410156, 37.020098 ], [ 75.234375, 37.020098 ], [ 75.234375, 37.300275 ], [ 75.058594, 37.300275 ], [ 75.058594, 37.718590 ], [ 74.882812, 37.718590 ], [ 74.882812, 38.410558 ], [ 74.355469, 38.410558 ], [ 74.355469, 38.548165 ], [ 74.003906, 38.548165 ], [ 74.003906, 38.685510 ], [ 73.828125, 38.685510 ], [ 73.828125, 39.095963 ], [ 73.652344, 39.095963 ], [ 73.652344, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 39.504041 ], [ 74.003906, 39.504041 ], [ 74.003906, 39.774769 ], [ 73.828125, 39.774769 ], [ 73.828125, 39.909736 ], [ 74.003906, 39.909736 ], [ 74.003906, 40.044438 ], [ 74.355469, 40.044438 ], [ 74.355469, 40.178873 ], [ 74.707031, 40.178873 ], [ 74.707031, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 41.640078 ], [ 90.878906, 27.994401 ], [ 90.351562, 27.994401 ], [ 90.351562, 28.149503 ], [ 89.648438, 28.149503 ], [ 89.648438, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 27.527758 ], [ 88.945312, 27.527758 ], [ 88.945312, 27.371767 ], [ 88.769531, 27.371767 ], [ 88.769531, 27.994401 ], [ 88.417969, 27.994401 ], [ 88.417969, 27.839076 ], [ 87.363281, 27.839076 ], [ 87.363281, 27.994401 ], [ 86.308594, 27.994401 ], [ 86.308594, 28.149503 ], [ 85.605469, 28.149503 ], [ 85.605469, 28.304381 ], [ 85.253906, 28.304381 ], [ 85.253906, 28.459033 ], [ 85.078125, 28.459033 ], [ 85.078125, 28.613459 ], [ 84.550781, 28.613459 ], [ 84.550781, 28.767659 ], [ 84.199219, 28.767659 ], [ 84.199219, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.847656, 29.228890 ], [ 83.847656, 29.382175 ], [ 83.496094, 29.382175 ], [ 83.496094, 29.535230 ], [ 83.144531, 29.535230 ], [ 83.144531, 29.688053 ], [ 82.792969, 29.688053 ], [ 82.792969, 29.840644 ], [ 82.617188, 29.840644 ], [ 82.617188, 29.993002 ], [ 82.265625, 29.993002 ], [ 82.265625, 30.145127 ], [ 81.914062, 30.145127 ], [ 81.914062, 30.297018 ], [ 81.210938, 30.297018 ], [ 81.210938, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 30.297018 ], [ 80.507812, 30.297018 ], [ 80.507812, 30.448674 ], [ 80.332031, 30.448674 ], [ 80.332031, 30.600094 ], [ 80.156250, 30.600094 ], [ 80.156250, 30.751278 ], [ 79.804688, 30.751278 ], [ 79.804688, 30.902225 ], [ 79.628906, 30.902225 ], [ 79.628906, 31.052934 ], [ 79.277344, 31.052934 ], [ 79.277344, 31.203405 ], [ 79.101562, 31.203405 ], [ 79.101562, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.653381 ], [ 78.574219, 31.653381 ], [ 78.574219, 32.249974 ], [ 78.398438, 32.249974 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 32.694866 ], [ 79.277344, 32.694866 ], [ 79.277344, 32.990236 ], [ 79.101562, 32.990236 ], [ 79.101562, 33.284620 ], [ 78.925781, 33.284620 ], [ 78.925781, 33.431441 ], [ 78.750000, 33.431441 ], [ 78.750000, 33.870416 ], [ 78.925781, 33.870416 ], [ 78.925781, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 34.597042 ], [ 78.574219, 34.597042 ], [ 78.574219, 34.741612 ], [ 78.398438, 34.741612 ], [ 78.398438, 34.885931 ], [ 78.222656, 34.885931 ], [ 78.222656, 35.173808 ], [ 78.046875, 35.173808 ], [ 78.046875, 35.317366 ], [ 77.871094, 35.317366 ], [ 77.871094, 35.460670 ], [ 77.519531, 35.460670 ], [ 77.519531, 35.603719 ], [ 76.816406, 35.603719 ], [ 76.816406, 35.746512 ], [ 76.289062, 35.746512 ], [ 76.289062, 35.889050 ], [ 76.113281, 35.889050 ], [ 76.113281, 36.173357 ], [ 75.937500, 36.173357 ], [ 75.937500, 36.597889 ], [ 75.761719, 36.597889 ], [ 75.761719, 36.738884 ], [ 75.585938, 36.738884 ], [ 75.585938, 36.879621 ], [ 75.410156, 36.879621 ], [ 75.410156, 37.020098 ], [ 75.234375, 37.020098 ], [ 75.234375, 37.300275 ], [ 75.058594, 37.300275 ], [ 75.058594, 37.718590 ], [ 74.882812, 37.718590 ], [ 74.882812, 38.410558 ], [ 74.355469, 38.410558 ], [ 74.355469, 38.548165 ], [ 74.003906, 38.548165 ], [ 74.003906, 38.685510 ], [ 73.828125, 38.685510 ], [ 73.828125, 39.095963 ], [ 73.652344, 39.095963 ], [ 73.652344, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 39.504041 ], [ 74.003906, 39.504041 ], [ 74.003906, 39.774769 ], [ 73.828125, 39.774769 ], [ 73.828125, 39.909736 ], [ 74.003906, 39.909736 ], [ 74.003906, 40.044438 ], [ 74.355469, 40.044438 ], [ 74.355469, 40.178873 ], [ 74.707031, 40.178873 ], [ 74.707031, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 78.750000, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 49.837982 ], [ 89.472656, 49.837982 ], [ 89.472656, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.496675 ], [ 88.593750, 49.496675 ], [ 88.593750, 49.382373 ], [ 88.066406, 49.382373 ], [ 88.066406, 49.267805 ], [ 87.187500, 49.267805 ], [ 87.187500, 49.496675 ], [ 87.011719, 49.496675 ], [ 87.011719, 49.724479 ], [ 86.835938, 49.724479 ], [ 86.835938, 49.837982 ], [ 86.308594, 49.837982 ], [ 86.308594, 49.724479 ], [ 85.429688, 49.724479 ], [ 85.429688, 49.837982 ], [ 85.253906, 49.837982 ], [ 85.253906, 49.951220 ], [ 85.078125, 49.951220 ], [ 85.078125, 50.064192 ], [ 84.726562, 50.064192 ], [ 84.726562, 50.176898 ], [ 84.375000, 50.176898 ], [ 84.375000, 50.289339 ], [ 84.199219, 50.289339 ], [ 84.199219, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.736455 ], [ 83.847656, 50.736455 ], [ 83.847656, 50.847573 ], [ 83.671875, 50.847573 ], [ 83.671875, 50.958427 ], [ 83.320312, 50.958427 ], [ 83.320312, 51.069017 ], [ 83.144531, 51.069017 ], [ 83.144531, 50.958427 ], [ 82.441406, 50.958427 ], [ 82.441406, 50.847573 ], [ 81.738281, 50.847573 ], [ 81.738281, 50.958427 ], [ 81.386719, 50.958427 ], [ 81.386719, 51.069017 ], [ 81.035156, 51.069017 ], [ 81.035156, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 51.289406 ], [ 80.332031, 51.289406 ], [ 80.332031, 51.069017 ], [ 80.156250, 51.069017 ], [ 80.156250, 50.847573 ], [ 79.980469, 50.847573 ], [ 79.980469, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.179343 ], [ 79.628906, 51.179343 ], [ 79.628906, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.277344, 51.618017 ], [ 79.277344, 51.835778 ], [ 79.101562, 51.835778 ], [ 79.101562, 52.052490 ], [ 78.925781, 52.052490 ], [ 78.925781, 52.268157 ], [ 78.750000, 52.268157 ], [ 78.750000, 52.482780 ], [ 78.574219, 52.482780 ], [ 78.574219, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.908902 ], [ 78.222656, 52.908902 ], [ 78.222656, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 53.330873 ], [ 77.871094, 53.330873 ], [ 77.871094, 53.435719 ], [ 77.695312, 53.435719 ], [ 77.695312, 53.540307 ], [ 77.519531, 53.540307 ], [ 77.519531, 53.644638 ], [ 77.343750, 53.644638 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.852527 ], [ 76.816406, 53.852527 ], [ 76.816406, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.059388 ], [ 76.464844, 54.059388 ], [ 76.464844, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 54.367759 ], [ 76.464844, 54.367759 ], [ 76.464844, 54.265224 ], [ 76.289062, 54.265224 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 54.059388 ], [ 75.761719, 54.059388 ], [ 75.761719, 53.956086 ], [ 75.410156, 53.956086 ], [ 75.410156, 53.852527 ], [ 75.058594, 53.852527 ], [ 75.058594, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.644638 ], [ 74.531250, 53.644638 ], [ 74.531250, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 54.059388 ], [ 73.125000, 54.059388 ], [ 73.125000, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 54.265224 ], [ 72.421875, 54.265224 ], [ 72.421875, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.265224 ], [ 71.542969, 54.265224 ], [ 71.542969, 54.162434 ], [ 71.191406, 54.162434 ], [ 71.191406, 54.367759 ], [ 71.015625, 54.367759 ], [ 71.015625, 54.876607 ], [ 70.839844, 54.876607 ], [ 70.839844, 55.178868 ], [ 70.312500, 55.178868 ], [ 70.312500, 55.279115 ], [ 69.433594, 55.279115 ], [ 69.433594, 55.379110 ], [ 69.082031, 55.379110 ], [ 69.082031, 55.279115 ], [ 68.906250, 55.279115 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 55.078367 ], [ 68.378906, 55.078367 ], [ 68.378906, 54.977614 ], [ 68.027344, 54.977614 ], [ 68.027344, 54.876607 ], [ 67.324219, 54.876607 ], [ 67.324219, 54.775346 ], [ 66.796875, 54.775346 ], [ 66.796875, 54.673831 ], [ 66.093750, 54.673831 ], [ 66.093750, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.470038 ], [ 65.390625, 54.470038 ], [ 65.390625, 54.367759 ], [ 64.863281, 54.367759 ], [ 64.863281, 54.265224 ], [ 63.984375, 54.265224 ], [ 63.984375, 54.162434 ], [ 62.929688, 54.162434 ], [ 62.929688, 54.059388 ], [ 62.050781, 54.059388 ], [ 62.050781, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.852527 ], [ 61.347656, 53.852527 ], [ 61.347656, 53.748711 ], [ 61.171875, 53.748711 ], [ 61.171875, 53.644638 ], [ 60.996094, 53.644638 ], [ 60.996094, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.347656, 53.330873 ], [ 61.347656, 53.225768 ], [ 61.523438, 53.225768 ], [ 61.523438, 53.014783 ], [ 61.699219, 53.014783 ], [ 61.699219, 52.908902 ], [ 61.347656, 52.908902 ], [ 61.347656, 52.802761 ], [ 60.996094, 52.802761 ], [ 60.996094, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.589701 ], [ 60.996094, 52.589701 ], [ 60.996094, 52.375599 ], [ 60.820312, 52.375599 ], [ 60.820312, 52.268157 ], [ 60.644531, 52.268157 ], [ 60.644531, 52.160455 ], [ 60.292969, 52.160455 ], [ 60.292969, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.944265 ], [ 59.941406, 51.944265 ], [ 59.941406, 51.835778 ], [ 60.292969, 51.835778 ], [ 60.292969, 51.727028 ], [ 60.468750, 51.727028 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.508742 ], [ 60.996094, 51.508742 ], [ 60.996094, 51.399206 ], [ 61.347656, 51.399206 ], [ 61.347656, 51.289406 ], [ 61.523438, 51.289406 ], [ 61.523438, 51.069017 ], [ 61.347656, 51.069017 ], [ 61.347656, 50.847573 ], [ 59.941406, 50.847573 ], [ 59.941406, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.414062, 50.513427 ], [ 59.414062, 50.625073 ], [ 59.062500, 50.625073 ], [ 59.062500, 50.736455 ], [ 58.886719, 50.736455 ], [ 58.886719, 50.847573 ], [ 58.710938, 50.847573 ], [ 58.710938, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 56.777344, 50.958427 ], [ 56.425781, 50.958427 ], [ 56.425781, 50.847573 ], [ 56.250000, 50.847573 ], [ 56.250000, 50.736455 ], [ 55.898438, 50.736455 ], [ 55.898438, 50.625073 ], [ 55.546875, 50.625073 ], [ 55.546875, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.847573 ], [ 54.843750, 50.847573 ], [ 54.843750, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 51.069017 ], [ 54.140625, 51.069017 ], [ 54.140625, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 51.289406 ], [ 53.437500, 51.289406 ], [ 53.437500, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.508742 ], [ 52.734375, 51.508742 ], [ 52.734375, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.727028 ], [ 50.800781, 51.727028 ], [ 50.800781, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.508742 ], [ 50.449219, 51.508742 ], [ 50.449219, 51.399206 ], [ 50.097656, 51.399206 ], [ 50.097656, 51.289406 ], [ 49.921875, 51.289406 ], [ 49.921875, 51.179343 ], [ 49.746094, 51.179343 ], [ 49.746094, 51.069017 ], [ 49.570312, 51.069017 ], [ 49.570312, 50.958427 ], [ 49.394531, 50.958427 ], [ 49.394531, 50.847573 ], [ 49.042969, 50.847573 ], [ 49.042969, 50.736455 ], [ 48.867188, 50.736455 ], [ 48.867188, 50.625073 ], [ 48.691406, 50.625073 ], [ 48.691406, 50.176898 ], [ 48.515625, 50.176898 ], [ 48.515625, 49.837982 ], [ 48.339844, 49.837982 ], [ 48.339844, 49.951220 ], [ 48.164062, 49.951220 ], [ 48.164062, 50.064192 ], [ 47.988281, 50.064192 ], [ 47.988281, 50.176898 ], [ 47.812500, 50.176898 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 50.064192 ], [ 47.285156, 50.064192 ], [ 47.285156, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.610710 ], [ 46.933594, 49.610710 ], [ 46.933594, 49.382373 ], [ 46.757812, 49.382373 ], [ 46.757812, 49.267805 ], [ 46.933594, 49.267805 ], [ 46.933594, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 49.037868 ], [ 46.933594, 49.037868 ], [ 46.933594, 48.806863 ], [ 46.757812, 48.806863 ], [ 46.757812, 48.574790 ], [ 46.582031, 48.574790 ], [ 46.582031, 48.341646 ], [ 46.406250, 48.341646 ], [ 46.406250, 48.224673 ], [ 46.582031, 48.224673 ], [ 46.582031, 48.107431 ], [ 46.757812, 48.107431 ], [ 46.757812, 47.989922 ], [ 46.933594, 47.989922 ], [ 46.933594, 47.872144 ], [ 47.109375, 47.872144 ], [ 47.109375, 47.754098 ], [ 47.988281, 47.754098 ], [ 47.988281, 47.635784 ], [ 48.164062, 47.635784 ], [ 48.164062, 47.398349 ], [ 48.339844, 47.398349 ], [ 48.339844, 47.279229 ], [ 48.515625, 47.279229 ], [ 48.515625, 47.040182 ], [ 48.691406, 47.040182 ], [ 48.691406, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.558860 ], [ 48.691406, 46.558860 ], [ 48.691406, 46.437857 ], [ 49.042969, 46.437857 ], [ 49.042969, 46.195042 ], [ 48.867188, 46.195042 ], [ 48.867188, 45.951150 ], [ 48.691406, 45.951150 ], [ 48.691406, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.706179 ], [ 47.988281, 45.706179 ], [ 47.988281, 45.583290 ], [ 47.636719, 45.583290 ], [ 47.636719, 45.460131 ], [ 47.460938, 45.460131 ], [ 47.460938, 45.213004 ], [ 47.285156, 45.213004 ], [ 47.285156, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.840291 ], [ 46.933594, 44.840291 ], [ 46.933594, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.465151 ], [ 46.933594, 44.465151 ], [ 46.933594, 44.213710 ], [ 47.109375, 44.213710 ], [ 47.109375, 44.087585 ], [ 47.285156, 44.087585 ], [ 47.285156, 43.961191 ], [ 47.460938, 43.961191 ], [ 47.460938, 43.707594 ], [ 47.636719, 43.707594 ], [ 47.636719, 43.325178 ], [ 47.460938, 43.325178 ], [ 47.460938, 42.811522 ], [ 47.636719, 42.811522 ], [ 47.636719, 42.553080 ], [ 47.812500, 42.553080 ], [ 47.812500, 42.423457 ], [ 47.988281, 42.423457 ], [ 47.988281, 42.163403 ], [ 48.164062, 42.163403 ], [ 48.164062, 42.032974 ], [ 48.339844, 42.032974 ], [ 48.339844, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.640078 ], [ 48.339844, 41.640078 ], [ 48.339844, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.112469 ], [ 47.460938, 41.112469 ], [ 47.460938, 41.244772 ], [ 47.285156, 41.244772 ], [ 47.285156, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.640078 ], [ 46.757812, 41.640078 ], [ 46.757812, 41.771312 ], [ 46.406250, 41.771312 ], [ 46.406250, 41.902277 ], [ 45.878906, 41.902277 ], [ 45.878906, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.527344, 42.293564 ], [ 45.527344, 42.553080 ], [ 44.824219, 42.553080 ], [ 44.824219, 42.682435 ], [ 44.472656, 42.682435 ], [ 44.472656, 42.553080 ], [ 44.121094, 42.553080 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.230469, 66.722541 ], [ 46.230469, 66.652977 ], [ 46.757812, 66.652977 ], [ 46.757812, 66.722541 ], [ 47.109375, 66.722541 ], [ 47.109375, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 66.861082 ], [ 72.070312, 66.861082 ], [ 72.070312, 66.791909 ], [ 71.894531, 66.791909 ], [ 71.894531, 66.652977 ], [ 71.718750, 66.652977 ], [ 71.718750, 66.513260 ], [ 71.542969, 66.513260 ], [ 71.542969, 66.372755 ], [ 71.367188, 66.372755 ], [ 71.367188, 66.302205 ], [ 71.542969, 66.302205 ], [ 71.542969, 66.231457 ], [ 72.070312, 66.231457 ], [ 72.070312, 66.160511 ], [ 72.421875, 66.160511 ], [ 72.421875, 66.231457 ], [ 72.597656, 66.231457 ], [ 72.597656, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 72.949219, 66.513260 ], [ 72.949219, 66.583217 ], [ 73.300781, 66.583217 ], [ 73.300781, 66.652977 ], [ 73.652344, 66.652977 ], [ 73.652344, 66.722541 ], [ 74.003906, 66.722541 ], [ 74.003906, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.070312, 66.861082 ], [ 72.070312, 66.791909 ], [ 71.894531, 66.791909 ], [ 71.894531, 66.652977 ], [ 71.718750, 66.652977 ], [ 71.718750, 66.513260 ], [ 71.542969, 66.513260 ], [ 71.542969, 66.372755 ], [ 71.367188, 66.372755 ], [ 71.367188, 66.302205 ], [ 71.542969, 66.302205 ], [ 71.542969, 66.231457 ], [ 72.070312, 66.231457 ], [ 72.070312, 66.160511 ], [ 72.421875, 66.160511 ], [ 72.421875, 66.231457 ], [ 72.597656, 66.231457 ], [ 72.597656, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 72.949219, 66.513260 ], [ 72.949219, 66.583217 ], [ 73.300781, 66.583217 ], [ 73.300781, 66.652977 ], [ 73.652344, 66.652977 ], [ 73.652344, 66.722541 ], [ 74.003906, 66.722541 ], [ 74.003906, 66.791909 ], [ 90.878906, 66.861082 ], [ 90.878906, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 49.837982 ], [ 89.472656, 49.837982 ], [ 89.472656, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.496675 ], [ 88.593750, 49.496675 ], [ 88.593750, 49.382373 ], [ 88.066406, 49.382373 ], [ 88.066406, 49.267805 ], [ 87.187500, 49.267805 ], [ 87.187500, 49.496675 ], [ 87.011719, 49.496675 ], [ 87.011719, 49.724479 ], [ 86.835938, 49.724479 ], [ 86.835938, 49.837982 ], [ 86.308594, 49.837982 ], [ 86.308594, 49.724479 ], [ 85.429688, 49.724479 ], [ 85.429688, 49.837982 ], [ 85.253906, 49.837982 ], [ 85.253906, 49.951220 ], [ 85.078125, 49.951220 ], [ 85.078125, 50.064192 ], [ 84.726562, 50.064192 ], [ 84.726562, 50.176898 ], [ 84.375000, 50.176898 ], [ 84.375000, 50.289339 ], [ 84.199219, 50.289339 ], [ 84.199219, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.736455 ], [ 83.847656, 50.736455 ], [ 83.847656, 50.847573 ], [ 83.671875, 50.847573 ], [ 83.671875, 50.958427 ], [ 83.320312, 50.958427 ], [ 83.320312, 51.069017 ], [ 83.144531, 51.069017 ], [ 83.144531, 50.958427 ], [ 82.441406, 50.958427 ], [ 82.441406, 50.847573 ], [ 81.738281, 50.847573 ], [ 81.738281, 50.958427 ], [ 81.386719, 50.958427 ], [ 81.386719, 51.069017 ], [ 81.035156, 51.069017 ], [ 81.035156, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 51.289406 ], [ 80.332031, 51.289406 ], [ 80.332031, 51.069017 ], [ 80.156250, 51.069017 ], [ 80.156250, 50.847573 ], [ 79.980469, 50.847573 ], [ 79.980469, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.179343 ], [ 79.628906, 51.179343 ], [ 79.628906, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.277344, 51.618017 ], [ 79.277344, 51.835778 ], [ 79.101562, 51.835778 ], [ 79.101562, 52.052490 ], [ 78.925781, 52.052490 ], [ 78.925781, 52.268157 ], [ 78.750000, 52.268157 ], [ 78.750000, 52.482780 ], [ 78.574219, 52.482780 ], [ 78.574219, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.908902 ], [ 78.222656, 52.908902 ], [ 78.222656, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 53.330873 ], [ 77.871094, 53.330873 ], [ 77.871094, 53.435719 ], [ 77.695312, 53.435719 ], [ 77.695312, 53.540307 ], [ 77.519531, 53.540307 ], [ 77.519531, 53.644638 ], [ 77.343750, 53.644638 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.852527 ], [ 76.816406, 53.852527 ], [ 76.816406, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.059388 ], [ 76.464844, 54.059388 ], [ 76.464844, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 54.367759 ], [ 76.464844, 54.367759 ], [ 76.464844, 54.265224 ], [ 76.289062, 54.265224 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 54.059388 ], [ 75.761719, 54.059388 ], [ 75.761719, 53.956086 ], [ 75.410156, 53.956086 ], [ 75.410156, 53.852527 ], [ 75.058594, 53.852527 ], [ 75.058594, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.644638 ], [ 74.531250, 53.644638 ], [ 74.531250, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 54.059388 ], [ 73.125000, 54.059388 ], [ 73.125000, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 54.265224 ], [ 72.421875, 54.265224 ], [ 72.421875, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.265224 ], [ 71.542969, 54.265224 ], [ 71.542969, 54.162434 ], [ 71.191406, 54.162434 ], [ 71.191406, 54.367759 ], [ 71.015625, 54.367759 ], [ 71.015625, 54.876607 ], [ 70.839844, 54.876607 ], [ 70.839844, 55.178868 ], [ 70.312500, 55.178868 ], [ 70.312500, 55.279115 ], [ 69.433594, 55.279115 ], [ 69.433594, 55.379110 ], [ 69.082031, 55.379110 ], [ 69.082031, 55.279115 ], [ 68.906250, 55.279115 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 55.078367 ], [ 68.378906, 55.078367 ], [ 68.378906, 54.977614 ], [ 68.027344, 54.977614 ], [ 68.027344, 54.876607 ], [ 67.324219, 54.876607 ], [ 67.324219, 54.775346 ], [ 66.796875, 54.775346 ], [ 66.796875, 54.673831 ], [ 66.093750, 54.673831 ], [ 66.093750, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.470038 ], [ 65.390625, 54.470038 ], [ 65.390625, 54.367759 ], [ 64.863281, 54.367759 ], [ 64.863281, 54.265224 ], [ 63.984375, 54.265224 ], [ 63.984375, 54.162434 ], [ 62.929688, 54.162434 ], [ 62.929688, 54.059388 ], [ 62.050781, 54.059388 ], [ 62.050781, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.852527 ], [ 61.347656, 53.852527 ], [ 61.347656, 53.748711 ], [ 61.171875, 53.748711 ], [ 61.171875, 53.644638 ], [ 60.996094, 53.644638 ], [ 60.996094, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.347656, 53.330873 ], [ 61.347656, 53.225768 ], [ 61.523438, 53.225768 ], [ 61.523438, 53.014783 ], [ 61.699219, 53.014783 ], [ 61.699219, 52.908902 ], [ 61.347656, 52.908902 ], [ 61.347656, 52.802761 ], [ 60.996094, 52.802761 ], [ 60.996094, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.589701 ], [ 60.996094, 52.589701 ], [ 60.996094, 52.375599 ], [ 60.820312, 52.375599 ], [ 60.820312, 52.268157 ], [ 60.644531, 52.268157 ], [ 60.644531, 52.160455 ], [ 60.292969, 52.160455 ], [ 60.292969, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.944265 ], [ 59.941406, 51.944265 ], [ 59.941406, 51.835778 ], [ 60.292969, 51.835778 ], [ 60.292969, 51.727028 ], [ 60.468750, 51.727028 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.508742 ], [ 60.996094, 51.508742 ], [ 60.996094, 51.399206 ], [ 61.347656, 51.399206 ], [ 61.347656, 51.289406 ], [ 61.523438, 51.289406 ], [ 61.523438, 51.069017 ], [ 61.347656, 51.069017 ], [ 61.347656, 50.847573 ], [ 59.941406, 50.847573 ], [ 59.941406, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.414062, 50.513427 ], [ 59.414062, 50.625073 ], [ 59.062500, 50.625073 ], [ 59.062500, 50.736455 ], [ 58.886719, 50.736455 ], [ 58.886719, 50.847573 ], [ 58.710938, 50.847573 ], [ 58.710938, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 56.777344, 50.958427 ], [ 56.425781, 50.958427 ], [ 56.425781, 50.847573 ], [ 56.250000, 50.847573 ], [ 56.250000, 50.736455 ], [ 55.898438, 50.736455 ], [ 55.898438, 50.625073 ], [ 55.546875, 50.625073 ], [ 55.546875, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.847573 ], [ 54.843750, 50.847573 ], [ 54.843750, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 51.069017 ], [ 54.140625, 51.069017 ], [ 54.140625, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 51.289406 ], [ 53.437500, 51.289406 ], [ 53.437500, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.508742 ], [ 52.734375, 51.508742 ], [ 52.734375, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.727028 ], [ 50.800781, 51.727028 ], [ 50.800781, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.508742 ], [ 50.449219, 51.508742 ], [ 50.449219, 51.399206 ], [ 50.097656, 51.399206 ], [ 50.097656, 51.289406 ], [ 49.921875, 51.289406 ], [ 49.921875, 51.179343 ], [ 49.746094, 51.179343 ], [ 49.746094, 51.069017 ], [ 49.570312, 51.069017 ], [ 49.570312, 50.958427 ], [ 49.394531, 50.958427 ], [ 49.394531, 50.847573 ], [ 49.042969, 50.847573 ], [ 49.042969, 50.736455 ], [ 48.867188, 50.736455 ], [ 48.867188, 50.625073 ], [ 48.691406, 50.625073 ], [ 48.691406, 50.176898 ], [ 48.515625, 50.176898 ], [ 48.515625, 49.837982 ], [ 48.339844, 49.837982 ], [ 48.339844, 49.951220 ], [ 48.164062, 49.951220 ], [ 48.164062, 50.064192 ], [ 47.988281, 50.064192 ], [ 47.988281, 50.176898 ], [ 47.812500, 50.176898 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 50.064192 ], [ 47.285156, 50.064192 ], [ 47.285156, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.610710 ], [ 46.933594, 49.610710 ], [ 46.933594, 49.382373 ], [ 46.757812, 49.382373 ], [ 46.757812, 49.267805 ], [ 46.933594, 49.267805 ], [ 46.933594, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 49.037868 ], [ 46.933594, 49.037868 ], [ 46.933594, 48.806863 ], [ 46.757812, 48.806863 ], [ 46.757812, 48.574790 ], [ 46.582031, 48.574790 ], [ 46.582031, 48.341646 ], [ 46.406250, 48.341646 ], [ 46.406250, 48.224673 ], [ 46.582031, 48.224673 ], [ 46.582031, 48.107431 ], [ 46.757812, 48.107431 ], [ 46.757812, 47.989922 ], [ 46.933594, 47.989922 ], [ 46.933594, 47.872144 ], [ 47.109375, 47.872144 ], [ 47.109375, 47.754098 ], [ 47.988281, 47.754098 ], [ 47.988281, 47.635784 ], [ 48.164062, 47.635784 ], [ 48.164062, 47.398349 ], [ 48.339844, 47.398349 ], [ 48.339844, 47.279229 ], [ 48.515625, 47.279229 ], [ 48.515625, 47.040182 ], [ 48.691406, 47.040182 ], [ 48.691406, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.558860 ], [ 48.691406, 46.558860 ], [ 48.691406, 46.437857 ], [ 49.042969, 46.437857 ], [ 49.042969, 46.195042 ], [ 48.867188, 46.195042 ], [ 48.867188, 45.951150 ], [ 48.691406, 45.951150 ], [ 48.691406, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.706179 ], [ 47.988281, 45.706179 ], [ 47.988281, 45.583290 ], [ 47.636719, 45.583290 ], [ 47.636719, 45.460131 ], [ 47.460938, 45.460131 ], [ 47.460938, 45.213004 ], [ 47.285156, 45.213004 ], [ 47.285156, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.840291 ], [ 46.933594, 44.840291 ], [ 46.933594, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.465151 ], [ 46.933594, 44.465151 ], [ 46.933594, 44.213710 ], [ 47.109375, 44.213710 ], [ 47.109375, 44.087585 ], [ 47.285156, 44.087585 ], [ 47.285156, 43.961191 ], [ 47.460938, 43.961191 ], [ 47.460938, 43.707594 ], [ 47.636719, 43.707594 ], [ 47.636719, 43.325178 ], [ 47.460938, 43.325178 ], [ 47.460938, 42.811522 ], [ 47.636719, 42.811522 ], [ 47.636719, 42.553080 ], [ 47.812500, 42.553080 ], [ 47.812500, 42.423457 ], [ 47.988281, 42.423457 ], [ 47.988281, 42.163403 ], [ 48.164062, 42.163403 ], [ 48.164062, 42.032974 ], [ 48.339844, 42.032974 ], [ 48.339844, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.640078 ], [ 48.339844, 41.640078 ], [ 48.339844, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.112469 ], [ 47.460938, 41.112469 ], [ 47.460938, 41.244772 ], [ 47.285156, 41.244772 ], [ 47.285156, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.640078 ], [ 46.757812, 41.640078 ], [ 46.757812, 41.771312 ], [ 46.406250, 41.771312 ], [ 46.406250, 41.902277 ], [ 45.878906, 41.902277 ], [ 45.878906, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.527344, 42.293564 ], [ 45.527344, 42.553080 ], [ 44.824219, 42.553080 ], [ 44.824219, 42.682435 ], [ 44.472656, 42.682435 ], [ 44.472656, 42.553080 ], [ 44.121094, 42.553080 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.230469, 66.722541 ], [ 46.230469, 66.652977 ], [ 46.757812, 66.652977 ], [ 46.757812, 66.722541 ], [ 47.109375, 66.722541 ], [ 47.109375, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 66.861082 ], [ 72.070312, 66.861082 ] ] ] } } , { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 42.682435 ], [ 44.824219, 42.553080 ], [ 45.527344, 42.553080 ], [ 45.527344, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 45.878906, 42.032974 ], [ 45.878906, 41.902277 ], [ 46.406250, 41.902277 ], [ 46.406250, 41.771312 ], [ 46.230469, 41.771312 ], [ 46.230469, 41.640078 ], [ 46.406250, 41.640078 ], [ 46.406250, 41.376809 ], [ 46.582031, 41.376809 ], [ 46.582031, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.112469 ], [ 44.121094, 41.112469 ], [ 44.121094, 42.553080 ], [ 44.472656, 42.553080 ], [ 44.472656, 42.682435 ], [ 44.824219, 42.682435 ] ] ] } } , @@ -2108,7 +2108,7 @@ , { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.437857 ], [ 90.878906, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.527344, 45.583290 ], [ 90.527344, 45.951150 ], [ 90.703125, 45.951150 ], [ 90.703125, 46.437857 ], [ 90.878906, 46.437857 ] ] ], [ [ [ 90.878906, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.635784 ], [ 90.000000, 47.635784 ], [ 90.000000, 47.754098 ], [ 89.648438, 47.754098 ], [ 89.648438, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 88.945312, 47.989922 ], [ 88.945312, 48.107431 ], [ 88.593750, 48.107431 ], [ 88.593750, 48.224673 ], [ 88.417969, 48.224673 ], [ 88.417969, 48.341646 ], [ 88.242188, 48.341646 ], [ 88.242188, 48.458352 ], [ 88.066406, 48.458352 ], [ 88.066406, 48.690960 ], [ 87.890625, 48.690960 ], [ 87.890625, 49.037868 ], [ 87.714844, 49.037868 ], [ 87.714844, 49.267805 ], [ 88.066406, 49.267805 ], [ 88.066406, 49.382373 ], [ 88.593750, 49.382373 ], [ 88.593750, 49.496675 ], [ 88.945312, 49.496675 ], [ 88.945312, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.472656, 49.724479 ], [ 89.472656, 49.837982 ], [ 89.824219, 49.837982 ], [ 89.824219, 49.951220 ], [ 90.175781, 49.951220 ], [ 90.175781, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 50.176898 ], [ 90.703125, 50.176898 ], [ 90.703125, 50.289339 ], [ 90.878906, 50.289339 ], [ 90.878906, 47.040182 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.714844, 49.267805 ], [ 87.714844, 49.037868 ], [ 87.890625, 49.037868 ], [ 87.890625, 48.690960 ], [ 88.066406, 48.690960 ], [ 88.066406, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.341646 ], [ 88.417969, 48.341646 ], [ 88.417969, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 48.107431 ], [ 88.945312, 48.107431 ], [ 88.945312, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.648438, 47.872144 ], [ 89.648438, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.517201 ], [ 90.527344, 47.517201 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.040182 ], [ 90.878906, 47.040182 ], [ 90.878906, 46.437857 ], [ 90.703125, 46.437857 ], [ 90.703125, 45.951150 ], [ 90.527344, 45.951150 ], [ 90.527344, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 90.878906, 45.336702 ], [ 90.878906, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 78.925781, 41.640078 ], [ 78.925781, 41.771312 ], [ 79.277344, 41.771312 ], [ 79.277344, 41.902277 ], [ 79.628906, 41.902277 ], [ 79.628906, 42.032974 ], [ 79.980469, 42.032974 ], [ 79.980469, 42.163403 ], [ 80.332031, 42.163403 ], [ 80.332031, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 42.940339 ], [ 80.507812, 42.940339 ], [ 80.507812, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.325178 ], [ 80.683594, 43.325178 ], [ 80.683594, 43.707594 ], [ 80.507812, 43.707594 ], [ 80.507812, 44.087585 ], [ 80.332031, 44.087585 ], [ 80.332031, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 44.715514 ], [ 79.980469, 44.715514 ], [ 79.980469, 44.964798 ], [ 80.332031, 44.964798 ], [ 80.332031, 45.089036 ], [ 81.035156, 45.089036 ], [ 81.035156, 45.213004 ], [ 81.738281, 45.213004 ], [ 81.738281, 45.336702 ], [ 82.089844, 45.336702 ], [ 82.089844, 45.460131 ], [ 82.441406, 45.460131 ], [ 82.441406, 45.706179 ], [ 82.617188, 45.706179 ], [ 82.617188, 46.195042 ], [ 82.792969, 46.195042 ], [ 82.792969, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.040182 ], [ 83.144531, 47.040182 ], [ 83.144531, 47.279229 ], [ 83.496094, 47.279229 ], [ 83.496094, 47.159840 ], [ 84.550781, 47.159840 ], [ 84.550781, 47.040182 ], [ 85.253906, 47.040182 ], [ 85.253906, 47.159840 ], [ 85.605469, 47.159840 ], [ 85.605469, 47.279229 ], [ 85.781250, 47.279229 ], [ 85.781250, 48.458352 ], [ 86.308594, 48.458352 ], [ 86.308594, 48.574790 ], [ 86.835938, 48.574790 ], [ 86.835938, 48.806863 ], [ 87.011719, 48.806863 ], [ 87.011719, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.152970 ], [ 87.363281, 49.152970 ], [ 87.363281, 49.267805 ], [ 87.714844, 49.267805 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.714844, 49.267805 ], [ 87.714844, 49.037868 ], [ 87.890625, 49.037868 ], [ 87.890625, 48.690960 ], [ 88.066406, 48.690960 ], [ 88.066406, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.341646 ], [ 88.417969, 48.341646 ], [ 88.417969, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 48.107431 ], [ 88.945312, 48.107431 ], [ 88.945312, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.648438, 47.872144 ], [ 89.648438, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.517201 ], [ 90.527344, 47.517201 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.040182 ], [ 90.878906, 47.040182 ], [ 90.878906, 46.437857 ], [ 90.703125, 46.437857 ], [ 90.703125, 45.951150 ], [ 90.527344, 45.951150 ], [ 90.527344, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 90.878906, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 78.925781, 41.640078 ], [ 78.925781, 41.771312 ], [ 79.277344, 41.771312 ], [ 79.277344, 41.902277 ], [ 79.628906, 41.902277 ], [ 79.628906, 42.032974 ], [ 79.980469, 42.032974 ], [ 79.980469, 42.163403 ], [ 80.332031, 42.163403 ], [ 80.332031, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 42.940339 ], [ 80.507812, 42.940339 ], [ 80.507812, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.325178 ], [ 80.683594, 43.325178 ], [ 80.683594, 43.707594 ], [ 80.507812, 43.707594 ], [ 80.507812, 44.087585 ], [ 80.332031, 44.087585 ], [ 80.332031, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 44.715514 ], [ 79.980469, 44.715514 ], [ 79.980469, 44.964798 ], [ 80.332031, 44.964798 ], [ 80.332031, 45.089036 ], [ 81.035156, 45.089036 ], [ 81.035156, 45.213004 ], [ 81.738281, 45.213004 ], [ 81.738281, 45.336702 ], [ 82.089844, 45.336702 ], [ 82.089844, 45.460131 ], [ 82.441406, 45.460131 ], [ 82.441406, 45.706179 ], [ 82.617188, 45.706179 ], [ 82.617188, 46.195042 ], [ 82.792969, 46.195042 ], [ 82.792969, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.040182 ], [ 83.144531, 47.040182 ], [ 83.144531, 47.279229 ], [ 83.496094, 47.279229 ], [ 83.496094, 47.159840 ], [ 84.550781, 47.159840 ], [ 84.550781, 47.040182 ], [ 85.253906, 47.040182 ], [ 85.253906, 47.159840 ], [ 85.605469, 47.159840 ], [ 85.605469, 47.279229 ], [ 85.781250, 47.279229 ], [ 85.781250, 48.458352 ], [ 86.308594, 48.458352 ], [ 86.308594, 48.574790 ], [ 86.835938, 48.574790 ], [ 86.835938, 48.806863 ], [ 87.011719, 48.806863 ], [ 87.011719, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.152970 ], [ 87.363281, 49.152970 ], [ 87.363281, 49.267805 ], [ 87.714844, 49.267805 ] ] ] } } ] } ] } , @@ -2276,7 +2276,7 @@ , { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.458352 ], [ 135.000000, 48.224673 ], [ 134.824219, 48.224673 ], [ 134.824219, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 48.341646 ], [ 134.648438, 48.341646 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.847060 ], [ 141.679688, 40.847060 ], [ 141.679688, 40.446947 ], [ 141.855469, 40.446947 ], [ 141.855469, 40.313043 ], [ 139.921875, 40.313043 ], [ 139.921875, 40.713956 ], [ 140.097656, 40.713956 ], [ 140.097656, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 142.207031, 45.460131 ], [ 142.207031, 45.213004 ], [ 142.382812, 45.213004 ], [ 142.382812, 45.089036 ], [ 142.558594, 45.089036 ], [ 142.558594, 44.840291 ], [ 142.734375, 44.840291 ], [ 142.734375, 44.715514 ], [ 142.910156, 44.715514 ], [ 142.910156, 44.465151 ], [ 143.261719, 44.465151 ], [ 143.261719, 44.339565 ], [ 143.613281, 44.339565 ], [ 143.613281, 44.213710 ], [ 143.964844, 44.213710 ], [ 143.964844, 44.087585 ], [ 144.316406, 44.087585 ], [ 144.316406, 43.961191 ], [ 144.843750, 43.961191 ], [ 144.843750, 44.087585 ], [ 145.195312, 44.087585 ], [ 145.195312, 44.213710 ], [ 145.371094, 44.213710 ], [ 145.371094, 43.834527 ], [ 145.546875, 43.834527 ], [ 145.546875, 43.325178 ], [ 145.371094, 43.325178 ], [ 145.371094, 43.197167 ], [ 145.019531, 43.197167 ], [ 145.019531, 43.068888 ], [ 144.492188, 43.068888 ], [ 144.492188, 42.940339 ], [ 144.140625, 42.940339 ], [ 144.140625, 42.811522 ], [ 143.964844, 42.811522 ], [ 143.964844, 42.553080 ], [ 143.789062, 42.553080 ], [ 143.789062, 42.423457 ], [ 143.613281, 42.423457 ], [ 143.613281, 42.293564 ], [ 143.437500, 42.293564 ], [ 143.437500, 42.032974 ], [ 143.085938, 42.032974 ], [ 143.085938, 42.163403 ], [ 142.734375, 42.163403 ], [ 142.734375, 42.293564 ], [ 142.382812, 42.293564 ], [ 142.382812, 42.423457 ], [ 142.031250, 42.423457 ], [ 142.031250, 42.553080 ], [ 141.679688, 42.553080 ], [ 141.679688, 42.423457 ], [ 141.503906, 42.423457 ], [ 141.503906, 42.163403 ], [ 141.328125, 42.163403 ], [ 141.328125, 41.771312 ], [ 141.152344, 41.771312 ], [ 141.152344, 41.640078 ], [ 140.625000, 41.640078 ], [ 140.625000, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.032974 ], [ 139.746094, 42.032974 ], [ 139.746094, 42.682435 ], [ 139.921875, 42.682435 ], [ 139.921875, 42.940339 ], [ 140.097656, 42.940339 ], [ 140.097656, 43.197167 ], [ 140.273438, 43.197167 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 141.328125, 43.580391 ], [ 141.503906, 43.580391 ], [ 141.503906, 44.339565 ], [ 141.679688, 44.339565 ], [ 141.679688, 44.840291 ], [ 141.855469, 44.840291 ], [ 141.855469, 45.336702 ], [ 142.031250, 45.336702 ], [ 142.031250, 45.460131 ], [ 142.207031, 45.460131 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.847060 ], [ 141.679688, 40.847060 ], [ 141.679688, 40.446947 ], [ 139.921875, 40.313043 ], [ 139.921875, 40.713956 ], [ 140.097656, 40.713956 ], [ 140.097656, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 142.207031, 45.460131 ], [ 142.207031, 45.213004 ], [ 142.382812, 45.213004 ], [ 142.382812, 45.089036 ], [ 142.558594, 45.089036 ], [ 142.558594, 44.840291 ], [ 142.734375, 44.840291 ], [ 142.734375, 44.715514 ], [ 142.910156, 44.715514 ], [ 142.910156, 44.465151 ], [ 143.261719, 44.465151 ], [ 143.261719, 44.339565 ], [ 143.613281, 44.339565 ], [ 143.613281, 44.213710 ], [ 143.964844, 44.213710 ], [ 143.964844, 44.087585 ], [ 144.316406, 44.087585 ], [ 144.316406, 43.961191 ], [ 144.843750, 43.961191 ], [ 144.843750, 44.087585 ], [ 145.195312, 44.087585 ], [ 145.195312, 44.213710 ], [ 145.371094, 44.213710 ], [ 145.371094, 43.834527 ], [ 145.546875, 43.834527 ], [ 145.546875, 43.325178 ], [ 145.371094, 43.325178 ], [ 145.371094, 43.197167 ], [ 145.019531, 43.197167 ], [ 145.019531, 43.068888 ], [ 144.492188, 43.068888 ], [ 144.492188, 42.940339 ], [ 144.140625, 42.940339 ], [ 144.140625, 42.811522 ], [ 143.964844, 42.811522 ], [ 143.964844, 42.553080 ], [ 143.789062, 42.553080 ], [ 143.789062, 42.423457 ], [ 143.613281, 42.423457 ], [ 143.613281, 42.293564 ], [ 143.437500, 42.293564 ], [ 143.437500, 42.032974 ], [ 143.085938, 42.032974 ], [ 143.085938, 42.163403 ], [ 142.734375, 42.163403 ], [ 142.734375, 42.293564 ], [ 142.382812, 42.293564 ], [ 142.382812, 42.423457 ], [ 142.031250, 42.423457 ], [ 142.031250, 42.553080 ], [ 141.679688, 42.553080 ], [ 141.679688, 42.423457 ], [ 141.503906, 42.423457 ], [ 141.503906, 42.163403 ], [ 141.328125, 42.163403 ], [ 141.328125, 41.771312 ], [ 141.152344, 41.771312 ], [ 141.152344, 41.640078 ], [ 140.625000, 41.640078 ], [ 140.625000, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.032974 ], [ 139.746094, 42.032974 ], [ 139.746094, 42.682435 ], [ 139.921875, 42.682435 ], [ 139.921875, 42.940339 ], [ 140.097656, 42.940339 ], [ 140.097656, 43.197167 ], [ 140.273438, 43.197167 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 141.328125, 43.580391 ], [ 141.503906, 43.580391 ], [ 141.503906, 44.339565 ], [ 141.679688, 44.339565 ], [ 141.679688, 44.840291 ], [ 141.855469, 44.840291 ], [ 141.855469, 45.336702 ], [ 142.031250, 45.336702 ], [ 142.031250, 45.460131 ], [ 142.207031, 45.460131 ] ] ] ] } } ] } ] } , From 275d25739d66df2be4e03d19b514607ac89455e5 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 14 Dec 2016 14:14:55 -0800 Subject: [PATCH 6/7] Update to wagyu-0.2.1 (eec53a6) --- mapbox/geometry/wagyu/active_bound_list.hpp | 5 +++-- mapbox/geometry/wagyu/build_edges.hpp | 3 ++- mapbox/geometry/wagyu/intersect_util.hpp | 12 ++++++------ mapbox/geometry/wagyu/local_minimum.hpp | 2 ++ mapbox/geometry/wagyu/ring.hpp | 1 + mapbox/geometry/wagyu/topology_correction.hpp | 1 + 6 files changed, 15 insertions(+), 9 deletions(-) diff --git a/mapbox/geometry/wagyu/active_bound_list.hpp b/mapbox/geometry/wagyu/active_bound_list.hpp index 2f1c970..e08c568 100644 --- a/mapbox/geometry/wagyu/active_bound_list.hpp +++ b/mapbox/geometry/wagyu/active_bound_list.hpp @@ -2,6 +2,7 @@ #ifdef DEBUG #include +#include #endif #include @@ -246,7 +247,7 @@ void set_winding_count(active_bound_list_itr& bnd_itr, if ((*rev_bnd_itr)->winding_count * (*rev_bnd_itr)->winding_delta < 0) { // prev edge is 'decreasing' WindCount (WC) toward zero // so we're outside the previous polygon ... - if (std::abs((*rev_bnd_itr)->winding_count) > 1) { + if (std::abs(static_cast((*rev_bnd_itr)->winding_count)) > 1) { // outside prev poly but still inside another. // when reversing direction of prev poly use the same WC if ((*rev_bnd_itr)->winding_delta * (*bnd_itr)->winding_delta < 0) { @@ -320,7 +321,7 @@ bool is_contributing(bound const& bnd, } break; case fill_type_non_zero: - if (std::abs(bnd.winding_count) != 1) { + if (std::abs(static_cast(bnd.winding_count)) != 1) { return false; } break; diff --git a/mapbox/geometry/wagyu/build_edges.hpp b/mapbox/geometry/wagyu/build_edges.hpp index b7ce6d4..37d5fe4 100644 --- a/mapbox/geometry/wagyu/build_edges.hpp +++ b/mapbox/geometry/wagyu/build_edges.hpp @@ -79,10 +79,11 @@ bool build_edge_list(mapbox::geometry::linear_ring const& path_geometry, edge // Find next non repeated point going backwards from // end for pt1 while (pt1 == pt2) { - pt1 = *(++itr_rev); + ++itr_rev; if (itr_rev == path_geometry.rend()) { return false; } + pt1 = *itr_rev; } ++itr; mapbox::geometry::point pt3 = *itr; diff --git a/mapbox/geometry/wagyu/intersect_util.hpp b/mapbox/geometry/wagyu/intersect_util.hpp index 77be594..2f6c40c 100644 --- a/mapbox/geometry/wagyu/intersect_util.hpp +++ b/mapbox/geometry/wagyu/intersect_util.hpp @@ -141,13 +141,13 @@ void intersect_bounds(active_bound_list_itr& b1, } } else if ((*b1)->poly_type != (*b2)->poly_type) { // toggle subj open path index on/off when std::abs(clip.WndCnt) == 1 - if (((*b1)->winding_delta == 0) && std::abs((*b2)->winding_count) == 1 && + if (((*b1)->winding_delta == 0) && std::abs(static_cast((*b2)->winding_count)) == 1 && (cliptype != clip_type_union || (*b2)->winding_count2 == 0)) { add_point(b1, active_bounds, pt, rings); if (b1Contributing) { (*b1)->ring = nullptr; } - } else if (((*b2)->winding_delta == 0) && (std::abs((*b1)->winding_count) == 1) && + } else if (((*b2)->winding_delta == 0) && (std::abs(static_cast((*b1)->winding_count)) == 1) && (cliptype != clip_type_union || (*b1)->winding_count2 == 0)) { add_point(b2, active_bounds, pt, rings); if (b2Contributing) { @@ -217,7 +217,7 @@ void intersect_bounds(active_bound_list_itr& b1, case fill_type_even_odd: case fill_type_non_zero: default: - b1Wc = std::abs((*b1)->winding_count); + b1Wc = std::abs(static_cast((*b1)->winding_count)); } switch (b2FillType) { case fill_type_positive: @@ -229,7 +229,7 @@ void intersect_bounds(active_bound_list_itr& b1, case fill_type_even_odd: case fill_type_non_zero: default: - b2Wc = std::abs((*b2)->winding_count); + b2Wc = std::abs(static_cast((*b2)->winding_count)); } if (b1Contributing && b2Contributing) { if ((b1Wc != 0 && b1Wc != 1) || (b2Wc != 0 && b2Wc != 1) || @@ -269,7 +269,7 @@ void intersect_bounds(active_bound_list_itr& b1, case fill_type_even_odd: case fill_type_non_zero: default: - b1Wc2 = std::abs((*b1)->winding_count2); + b1Wc2 = std::abs(static_cast((*b1)->winding_count2)); } switch (b2FillType2) { case fill_type_positive: @@ -281,7 +281,7 @@ void intersect_bounds(active_bound_list_itr& b1, case fill_type_even_odd: case fill_type_non_zero: default: - b2Wc2 = std::abs((*b2)->winding_count2); + b2Wc2 = std::abs(static_cast((*b2)->winding_count2)); } if ((*b1)->poly_type != (*b2)->poly_type) { diff --git a/mapbox/geometry/wagyu/local_minimum.hpp b/mapbox/geometry/wagyu/local_minimum.hpp index afd0a69..fe03d84 100644 --- a/mapbox/geometry/wagyu/local_minimum.hpp +++ b/mapbox/geometry/wagyu/local_minimum.hpp @@ -2,7 +2,9 @@ #ifdef DEBUG #include +#include #endif + #include #include diff --git a/mapbox/geometry/wagyu/ring.hpp b/mapbox/geometry/wagyu/ring.hpp index b4eda27..d4cf303 100644 --- a/mapbox/geometry/wagyu/ring.hpp +++ b/mapbox/geometry/wagyu/ring.hpp @@ -13,6 +13,7 @@ #ifdef DEBUG #include #include +#include #include // // void* callstack[128]; diff --git a/mapbox/geometry/wagyu/topology_correction.hpp b/mapbox/geometry/wagyu/topology_correction.hpp index d65e1ff..ffbfc25 100644 --- a/mapbox/geometry/wagyu/topology_correction.hpp +++ b/mapbox/geometry/wagyu/topology_correction.hpp @@ -16,6 +16,7 @@ #ifdef DEBUG #include +#include #endif namespace mapbox { From 6a2e80769e4cbe1fc4f6e1915682c26f386a1b26 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Fri, 16 Dec 2016 12:20:57 -0800 Subject: [PATCH 7/7] Choose a deeper initial tile than 0/0/0 if one contains all the features --- CHANGELOG.md | 5 +++ main.cpp | 100 +++++++++++++++++++++++++++++++-------------------- version.hpp | 2 +- 3 files changed, 67 insertions(+), 40 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6232f8..b63981b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.16.1 + +* Choose a deeper starting tile than 0/0/0 if there is one that contains + all the features + ## 1.16.0 * Switch from Clipper to Wagyu for polygon topology correction diff --git a/main.cpp b/main.cpp index ca4bd86..30cc4a7 100644 --- a/main.cpp +++ b/main.cpp @@ -943,7 +943,58 @@ void radix(struct reader *reader, int nreaders, FILE *geomfile, int geomfd, FILE } } -int read_input(std::vector &sources, char *fname, const char *layername, int maxzoom, int minzoom, int basezoom, double basezoom_marker_width, sqlite3 *outdb, std::set *exclude, std::set *include, int exclude_all, double droprate, int buffer, const char *tmpdir, double gamma, int read_parallel, int forcetable, const char *attribution, bool uses_gamma) { +void choose_first_zoom(long long *file_bbox, struct reader *reader, unsigned *iz, unsigned *ix, unsigned *iy, int minzoom, int buffer) { + for (size_t i = 0; i < CPUS; i++) { + if (reader[i].file_bbox[0] < file_bbox[0]) { + file_bbox[0] = reader[i].file_bbox[0]; + } + if (reader[i].file_bbox[1] < file_bbox[1]) { + file_bbox[1] = reader[i].file_bbox[1]; + } + if (reader[i].file_bbox[2] > file_bbox[2]) { + file_bbox[2] = reader[i].file_bbox[2]; + } + if (reader[i].file_bbox[3] > file_bbox[3]) { + file_bbox[3] = reader[i].file_bbox[3]; + } + } + + // If the bounding box extends off the plane on either side, + // a feature wrapped across the date line, so the width of the + // bounding box is the whole world. + if (file_bbox[0] < 0) { + file_bbox[0] = 0; + file_bbox[2] = (1LL << 32) - 1; + } + if (file_bbox[2] > (1LL << 32) - 1) { + file_bbox[0] = 0; + file_bbox[2] = (1LL << 32) - 1; + } + if (file_bbox[1] < 0) { + file_bbox[1] = 0; + } + if (file_bbox[3] > (1LL << 32) - 1) { + file_bbox[3] = (1LL << 32) - 1; + } + + for (ssize_t z = minzoom; z >= 0; z--) { + long long shift = 1LL << (32 - z); + + long long left = (file_bbox[0] - buffer * shift / 256) / shift; + long long top = (file_bbox[1] - buffer * shift / 256) / shift; + long long right = (file_bbox[2] + buffer * shift / 256) / shift; + long long bottom = (file_bbox[3] + buffer * shift / 256) / shift; + + if (left == right && top == bottom) { + *iz = z; + *ix = left; + *iy = top; + break; + } + } +} + +int read_input(std::vector &sources, char *fname, const char *layername, int maxzoom, int minzoom, int basezoom, double basezoom_marker_width, sqlite3 *outdb, std::set *exclude, std::set *include, int exclude_all, double droprate, int buffer, const char *tmpdir, double gamma, int read_parallel, int forcetable, const char *attribution, bool uses_gamma, long long *file_bbox) { int ret = EXIT_SUCCESS; struct reader reader[CPUS]; @@ -1462,12 +1513,15 @@ int read_input(std::vector &sources, char *fname, const char *layername, } unlink(geomname); + unsigned iz = 0, ix = 0, iy = 0; + choose_first_zoom(file_bbox, reader, &iz, &ix, &iy, minzoom, buffer); + long long geompos = 0; /* initial tile is 0/0/0 */ - serialize_int(geomfile, 0, &geompos, fname); - serialize_uint(geomfile, 0, &geompos, fname); - serialize_uint(geomfile, 0, &geompos, fname); + serialize_int(geomfile, iz, &geompos, fname); + serialize_uint(geomfile, ix, &geompos, fname); + serialize_uint(geomfile, iy, &geompos, fname); radix(reader, CPUS, geomfile, geomfd, indexfile, indexfd, tmpdir, &geompos, maxzoom, basezoom, droprate, gamma); @@ -1759,40 +1813,6 @@ int read_input(std::vector &sources, char *fname, const char *layername, midlat = (maxlat + minlat) / 2; midlon = (maxlon + minlon) / 2; - long long file_bbox[4] = {UINT_MAX, UINT_MAX, 0, 0}; - for (size_t i = 0; i < CPUS; i++) { - if (reader[i].file_bbox[0] < file_bbox[0]) { - file_bbox[0] = reader[i].file_bbox[0]; - } - if (reader[i].file_bbox[1] < file_bbox[1]) { - file_bbox[1] = reader[i].file_bbox[1]; - } - if (reader[i].file_bbox[2] > file_bbox[2]) { - file_bbox[2] = reader[i].file_bbox[2]; - } - if (reader[i].file_bbox[3] > file_bbox[3]) { - file_bbox[3] = reader[i].file_bbox[3]; - } - } - - // If the bounding box extends off the plane on either side, - // a feature wrapped across the date line, so the width of the - // bounding box is the whole world. - if (file_bbox[0] < 0) { - file_bbox[0] = 0; - file_bbox[2] = (1LL << 32) - 1; - } - if (file_bbox[2] > (1LL << 32) - 1) { - file_bbox[0] = 0; - file_bbox[2] = (1LL << 32) - 1; - } - if (file_bbox[1] < 0) { - file_bbox[1] = 0; - } - if (file_bbox[3] > (1LL << 32) - 1) { - file_bbox[3] = (1LL << 32) - 1; - } - tile2lonlat(file_bbox[0], file_bbox[1], 32, &minlon, &maxlat); tile2lonlat(file_bbox[2], file_bbox[3], 32, &maxlon, &minlat); @@ -2230,7 +2250,9 @@ int main(int argc, char **argv) { sources.push_back(src); } - ret = read_input(sources, name ? name : outdir, layer, maxzoom, minzoom, basezoom, basezoom_marker_width, outdb, &exclude, &include, exclude_all, droprate, buffer, tmpdir, gamma, read_parallel, forcetable, attribution, gamma != 0); + long long file_bbox[4] = {UINT_MAX, UINT_MAX, 0, 0}; + + ret = read_input(sources, name ? name : outdir, layer, maxzoom, minzoom, basezoom, basezoom_marker_width, outdb, &exclude, &include, exclude_all, droprate, buffer, tmpdir, gamma, read_parallel, forcetable, attribution, gamma != 0, file_bbox); mbtiles_close(outdb, argv); diff --git a/version.hpp b/version.hpp index 9123a80..3780171 100644 --- a/version.hpp +++ b/version.hpp @@ -1 +1 @@ -#define VERSION "tippecanoe v1.16.0\n" +#define VERSION "tippecanoe v1.16.1\n"